diff --git a/.circleci/config.yml b/.circleci/config.yml index d08f6996f1a..a9fa8cc5fd0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -31,9 +31,10 @@ jobs: - run: make deps - run: make lint - run: make check-docs + - run: make check-examples - run: make format - run: - name: "Run all tests" + name: "Run unit tests." # taskset sets CPU affinity to 2 (current CPU limit). command: | if [ -z ${GCP_PROJECT} ]; then diff --git a/.github/stale.yml b/.github/stale.yml index ab344e9349f..d2431d4911e 100644 --- a/.github/stale.yml +++ b/.github/stale.yml @@ -12,7 +12,9 @@ onlyLabels: [] # Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable. # We want stale bot to notify us that something is stale so we can revisit it. -exemptLabels: [] +# If one issue is marked as 'reminder' by the reminder bot, we don't mark it as 'stale' again. +exemptLabels: + - reminder # Set to true to ignore issues in a project (defaults to false) exemptProjects: false diff --git a/.github/workflows/ci.yaml b/.github/workflows/cross-build.yaml similarity index 69% rename from .github/workflows/ci.yaml rename to .github/workflows/cross-build.yaml index a106831af92..832ffa8fadc 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/cross-build.yaml @@ -1,11 +1,20 @@ -name: CI -on: [pull_request] +name: cross-build + +on: + push: + branches: + - master + pull_request: jobs: cross-build-check: - name: Cross build check runs-on: ubuntu-latest steps: + - name: Install Go. + uses: actions/setup-go@v1 + with: + go-version: 1.13.6 + - name: Check out code into the Go module directory uses: actions/checkout@v1 diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml new file mode 100644 index 00000000000..1cc20d0dc21 --- /dev/null +++ b/.github/workflows/e2e.yaml @@ -0,0 +1,28 @@ +name: e2e + +on: + push: + branches: + - master + tags: + pull_request: + +jobs: + e2e: + runs-on: ubuntu-latest + steps: + - name: Install Go. + uses: actions/setup-go@v1 + with: + go-version: 1.13.6 + + - name: Check out code into the Go module directory. + uses: actions/checkout@v2 + + - uses: actions/cache@v1 + with: + path: ~/go/pkg/mod + key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} + + - name: Run e2e docker-based tests. + run: make test-e2e diff --git a/.gitignore b/.gitignore index cbc1c60d41f..7ca86f24bad 100644 --- a/.gitignore +++ b/.gitignore @@ -30,3 +30,6 @@ pkg/ui/static/react tmp/bin examples/tmp/ + +# Ignore the MacOS Trash (DS-Store) +.DS_Store diff --git a/CHANGELOG.md b/CHANGELOG.md index 8aa3246bcbc..017ec2e4154 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,27 +13,71 @@ We use *breaking* word for marking changes that are not backward compatible (rel ### Fixed -- [#2033](https://github.com/thanos-io/thanos/pull/2033) minio-go: Fixed Issue #1494 support Web Identity providers for IAM credentials for AWS EKS -- [#1985](https://github.com/thanos-io/thanos/pull/1985) store gateway: Fixed case where series entry is larger than 64KB in index. -- [#2051](https://github.com/thanos-io/thanos/pull/2051) ruler: Fixed issue where ruler does not expose shipper metrics. -- [#2101](https://github.com/thanos-io/thanos/pull/2101) ruler: Fixed bug where thanos_alert_sender_errors_total was not registered. +- [#2288](https://github.com/thanos-io/thanos/pull/2288) Ruler: Fixes issue #2281 bug in ruler with parsing query addr with path prefix +- [#2238](https://github.com/thanos-io/thanos/pull/2238) Ruler: Fixed Issue #2204 bug in alert queue signalling filled up queue and alerts were dropped +- [#2231](https://github.com/thanos-io/thanos/pull/2231) Bucket Web - Sort chunks by thanos.downsample.resolution for better grouping +- [#2254](https://github.com/thanos-io/thanos/pull/2254) Bucket: Fix metrics registered multiple times in bucket replicate +- [#2271](https://github.com/thanos-io/thanos/pull/2271) Bucket Web: Fixed Issue #2260 bucket passes null when storage is empty +- [#2339](https://github.com/thanos-io/thanos/pull/2339) Query: fix a bug where `--store.unhealthy-timeout` was never respected ### Added -- [#1969](https://github.com/thanos-io/thanos/pull/1969) Sidecar: allow setting http connection pool size via flags -- [#1967](https://github.com/thanos-io/thanos/issues/1967) Receive: Allow local TSDB compaction -- [#1970](https://github.com/thanos-io/thanos/issues/1970) *breaking* Receive: Use gRPC for forwarding requests between peers. Note that existing values for the `--receive.local-endpoint` flag and the endpoints in the hashring configuration file must now specify the receive gRPC port and must be updated to be a simple `host:port` combination, e.g. `127.0.0.1:10901`, rather than a full HTTP URL, e.g. `http://127.0.0.1:10902/api/v1/receive`. +- [#2252](https://github.com/thanos-io/thanos/pull/2252) Query: add new `--store-strict` flag. More information available [here](/docs/proposals/202001_thanos_query_health_handling.md). +- [#2265](https://github.com/thanos-io/thanos/pull/2265) Compactor: Add `--wait-interval` to specify compaction wait interval between consecutive compact runs when `--wait` enabled. +- [#2250](https://github.com/thanos-io/thanos/pull/2250) Compactor: Enable vertical compaction for offline deduplication (Experimental). Uses `--deduplication.replica-label` flag to specify the replica label to deduplicate on (Hidden). Please note that this uses a NAIVE algorithm for merging (no smart replica deduplication, just chaining samples together). This works well for deduplication of blocks with **precisely the same samples** like produced by Receiver replication. We plan to add a smarter algorithm in the following weeks. +- [#1714](https://github.com/thanos-io/thanos/pull/1714) Run the bucket web UI in the compact component when it is run as a long-lived process. +- [#2304](https://github.com/thanos-io/thanos/pull/2304) Store: Added `max_item_size` config option to memcached-based index cache. This should be set to the max item size configured in memcached (`-I` flag) in order to not waste network round-trips to cache items larger than the limit configured in memcached. +- [#2297](https://github.com/thanos-io/thanos/pull/2297) Store Gateway: Add `--experimental.enable-index-cache-postings-compression` flag to enable reencoding and compressing postings before storing them into cache. Compressed postings take about 10% of the original size. +- [#2357](https://github.com/thanos-io/thanos/pull/2357) Compactor and Store Gateway now have serve BucketUI on `:/loaded` and shows exactly the blocks that are currently seen by compactor and store gateway. Compactor also serves different BucketUI on `:/global` that shows the status of object storage without any filters. + +### Changed + +- [#2136](https://github.com/thanos-io/thanos/pull/2136) *breaking* store, compact, bucket: schedule block deletion by adding deletion-mark.json. This adds a consistent way for multiple readers and writers to access object storage. +Since there are no consistency guarantees provided by some Object Storage providers, this PR adds a consistent lock-free way of dealing with Object Storage irrespective of the choice of object storage. In order to achieve this co-ordination, blocks are not deleted directly. Instead, blocks are marked for deletion by uploading `deletion-mark.json` file for the block that was chosen to be deleted. This file contains unix time of when the block was marked for deletion. If you want to keep existing behavior, you should add `--delete-delay=0s` as a flag. +- [#2090](https://github.com/thanos-io/thanos/issues/2090) *breaking* Downsample command: the `downsample` command has moved as the `thanos bucket` sub-command, and cannot be called via `thanos downsample` any more. +- [#2294](https://github.com/thanos-io/thanos/pull/2294) store: optimizations for fetching postings. Queries using `=~".*"` matchers or negation matchers (`!=...` or `!~...`) benefit the most. +- [#2301](https://github.com/thanos-io/thanos/pull/2301) Ruler: initlialization fails with filepath bad pattern error and rule manager update error. +- [#2310](https://github.com/thanos-io/thanos/pull/2310) query: Report timespan 0 to 0 when discovering no stores. +- [#2330](https://github.com/thanos-io/thanos/pull/2330) store: index-header is no longer experimental. It is enabled by default for store Gateway. You can disable it with new hidden flag: `--store.disable-index-header`. `--experimental.enable-index-header` flag was removed. + +## [v0.11.0](https://github.com/thanos-io/thanos/releases/tag/v0.11.0) - 2020.03.02 + +### Fixed + +- [#2033](https://github.com/thanos-io/thanos/pull/2033) Minio-go: Fixed Issue #1494 support Web Identity providers for IAM credentials for AWS EKS. +- [#1985](https://github.com/thanos-io/thanos/pull/1985) Store Gateway: Fixed case where series entry is larger than 64KB in index. +- [#2051](https://github.com/thanos-io/thanos/pull/2051) Ruler: Fixed issue where ruler does not expose shipper metrics. +- [#2101](https://github.com/thanos-io/thanos/pull/2101) Ruler: Fixed bug where thanos_alert_sender_errors_total was not registered. +- [#1789](https://github.com/thanos-io/thanos/pull/1789) Store Gateway: Improve timeouts. +- [#2139](https://github.com/thanos-io/thanos/pull/2139) Properly handle SIGHUP for reloading. +- [#2040](https://github.com/thanos-io/thanos/pull/2040) UI: Fix URL of alerts in Ruler +- [#2033](https://github.com/thanos-io/thanos/pull/1978) Ruler: Fix tracing in Thanos Ruler + +### Added + +- [#2003](https://github.com/thanos-io/thanos/pull/2003) Query: Support downsampling for /series. +- [#1952](https://github.com/thanos-io/thanos/pull/1952) Store Gateway: Implemented [binary index header](https://thanos.io/proposals/201912_thanos_binary_index_header.md/). This significantly reduces resource consumption (memory, CPU, net bandwidth) for startup and data loading processes as well as baseline memory. This means that adding more blocks into object storage, without querying them will use almost no resources. This, however, **still means that querying large amounts of data** will result in high spikes of memory and CPU use as before, due to simply fetching large amounts of metrics data. Since we fixed baseline, we are now focusing on query performance optimizations in separate initiatives. To enable experimental `index-header` mode run store with hidden `experimental.enable-index-header` flag. +- [#2009](https://github.com/thanos-io/thanos/pull/2009) Store Gateway: Minimum age of all blocks before they are being read. Set it to a safe value (e.g 30m) if your object storage is eventually consistent. GCS and S3 are (roughly) strongly consistent. +- [#1963](https://github.com/thanos-io/thanos/pull/1963) Mixin: Add Thanos Ruler alerts. +- [#1984](https://github.com/thanos-io/thanos/pull/1984) Query: Add cache-control header to not cache on error. +- [#1870](https://github.com/thanos-io/thanos/pull/1870) UI: Persist settings in query. +- [#1969](https://github.com/thanos-io/thanos/pull/1969) Sidecar: allow setting http connection pool size via flags. +- [#1967](https://github.com/thanos-io/thanos/issues/1967) Receive: Allow local TSDB compaction. - [#1939](https://github.com/thanos-io/thanos/pull/1939) Ruler: Add TLS and authentication support for query endpoints with the `--query.config` and `--query.config-file` CLI flags. See [documentation](docs/components/rule.md/#configuration) for further information. - [#1982](https://github.com/thanos-io/thanos/pull/1982) Ruler: Add support for Alertmanager v2 API endpoints. - [#2030](https://github.com/thanos-io/thanos/pull/2030) Query: Add `thanos_proxy_store_empty_stream_responses_total` metric for number of empty responses from stores. - [#2049](https://github.com/thanos-io/thanos/pull/2049) Tracing: Support sampling on Elastic APM with new sample_rate setting. - [#2008](https://github.com/thanos-io/thanos/pull/2008) Querier, Receiver, Sidecar, Store: Add gRPC [health check](https://github.com/grpc/grpc/blob/master/doc/health-checking.md) endpoints. -- [#2121](https://github.com/thanos-io/thanos/pull/2121) ui: Add React UI from Prometheus upstream +- [#2145](https://github.com/thanos-io/thanos/pull/2145) Tracing: track query sent to prometheus via remote read api. +- [#1848](https://github.com/thanos-io/thanos/pull/1848) Ruler: Return error messages when trigger reload with http. +- [#2113](https://github.com/thanos-io/thanos/pull/2113) Bucket: Added `thanos bucket replicate`. ### Changed +- [#1970](https://github.com/thanos-io/thanos/issues/1970) *breaking* Receive: Use gRPC for forwarding requests between peers. Note that existing values for the `--receive.local-endpoint` flag and the endpoints in the hashring configuration file must now specify the receive gRPC port and must be updated to be a simple `host:port` combination, e.g. `127.0.0.1:10901`, rather than a full HTTP URL, e.g. `http://127.0.0.1:10902/api/v1/receive`. - [#1933](https://github.com/thanos-io/thanos/pull/1933) Add a flag `--tsdb.wal-compression` to configure whether to enable tsdb wal compression in ruler and receiver. - [#2021](https://github.com/thanos-io/thanos/pull/2021) Rename metric `thanos_query_duplicated_store_address` to `thanos_query_duplicated_store_addresses_total` and `thanos_rule_duplicated_query_address` to `thanos_rule_duplicated_query_addresses_total`. +- [#2166](https://github.com/thanos-io/thanos/pull/2166) Improve tooltip for bucket web UI. ## [v0.10.1](https://github.com/thanos-io/thanos/releases/tag/v0.10.1) - 2020.01.24 diff --git a/MAINTAINERS.md b/MAINTAINERS.md index 08ad64261d0..f87c26a3379 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -3,7 +3,6 @@ | Name | Email | Slack | GitHub | Company | |-----------------------|------------------------|--------------------------|---------------------------------------------|-------------------| | Bartłomiej Płotka | bwplotka@gmail.com | `@bwplotka` | [@bwplotka](https://github.com/bwplotka) | Red Hat | -| Dominic Green | dom@improbable.io | `@domgreen` | [@domgreen](https://github.com/domgreen) | Improbable | | Frederic Branczyk | fbranczyk@gmail.com | `@brancz` | [@brancz](https://github.com/brancz) | Red Hat | | Giedrius Statkevičius | giedriuswork@gmail.com | `@Giedrius Statkevičius` | [@GiedriusS](https://github.com/GiedriusS) | AdForm | | Povilas Versockas | p.versockas@gmail.com | `@povilasv` | [@povilasv](https://github.com/povilasv) | Utility Warehouse | @@ -33,6 +32,8 @@ Full list of triage persons is displayed below: | Ben Ye | `@yeya24` | [@yeya24](https://github.com/yeya24) | | Martin Chodur | `@FUSAKLA` | [@fusakla](https://github.com/fusakla) | | Michael Dai | `@jojohappy` | [@jojohappy](https://github.com/jojohappy) | +| Kemal Akkoyun | `@kakkoyun` | [@kakkoyun](https://github.com/kakkoyun) | +| Xiang Dai | `@daixiang0` | [@daixiang0](https://github.com/daixiang0) | Please reach any of the maintainer on slack or email if you want to help as well. diff --git a/Makefile b/Makefile index c88e99af9e3..833e70dfec1 100644 --- a/Makefile +++ b/Makefile @@ -44,9 +44,10 @@ MISSPELL ?= $(GOBIN)/misspell-$(MISSPELL_VERSION) GOJSONTOYAML_VERSION ?= e8bd32d46b3d764bef60f12b3bada1c132c4be55 GOJSONTOYAML ?= $(GOBIN)/gojsontoyaml-$(GOJSONTOYAML_VERSION) # v0.14.0 -JSONNET_VERSION ?= fbde25be2182caa4345b03f1532450911ac7d1f3 +JSONNET_VERSION ?= 724650d358b67909a7bea00ea443e23afc3d2a17 JSONNET ?= $(GOBIN)/jsonnet-$(JSONNET_VERSION) -JSONNET_BUNDLER_VERSION ?= d7829f6c7e632e954c0e5db8b3eece8f111f9461 +JSONNETFMT ?= $(GOBIN)/jsonnetfmt-$(JSONNET_VERSION) +JSONNET_BUNDLER_VERSION ?= efe0c9e864431e93d5c3376bd5931d0fb9b2a296 JSONNET_BUNDLER ?= $(GOBIN)/jb-$(JSONNET_BUNDLER_VERSION) # Prometheus v2.14.0 PROMTOOL_VERSION ?= edeb7a44cbf745f1d8be4ea6f215e79e651bfe19 @@ -56,7 +57,8 @@ PROMTOOL ?= $(GOBIN)/promtool-$(PROMTOOL_VERSION) # systems gsed won't be installed, so will use sed as expected. SED ?= $(shell which gsed 2>/dev/null || which sed) -MIXIN_ROOT ?= mixin/thanos +MIXIN_ROOT ?= mixin +THANOS_MIXIN ?= mixin/thanos JSONNET_VENDOR_DIR ?= mixin/vendor WEB_DIR ?= website @@ -83,6 +85,9 @@ REACT_APP_OUTPUT_DIR = pkg/ui/static/react REACT_APP_NODE_MODULES_PATH = $(REACT_APP_PATH)/node_modules REACT_APP_NPM_LICENSES_TARBALL = "npm_licenses.tar.bz2" +FAILLINT_VERSION ?= v1.2.0 +FAILLINT ?=$(GOBIN)/faillint-$(FAILLINT_VERSION) + # fetch_go_bin_version downloads (go gets) the binary from specific version and installs it in $(GOBIN)/- # arguments: # $(1): Install path. (e.g github.com/campoy/embedmd) @@ -125,6 +130,9 @@ define require_clean_work_tree endef +help: ## Displays help. + @awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m\033[0m\n\nTargets:\n"} /^[a-zA-Z_-]+:.*?##/ { printf " \033[36m%-10s\033[0m %s\n", $$1, $$2 }' $(MAKEFILE_LIST) + .PHONY: all all: format build @@ -135,8 +143,8 @@ $(REACT_APP_OUTPUT_DIR): $(REACT_APP_NODE_MODULES_PATH) $(REACT_APP_SOURCE_FILES @echo ">> building React app" @./scripts/build-react-app.sh -# assets repacks all static assets into go file for easier deploy. .PHONY: assets +assets: ## Repacks all static assets into go file for easier deploy. assets: $(GOBINDATA) $(REACT_APP_OUTPUT_DIR) @echo ">> deleting asset file" @rm pkg/ui/bindata.go || true @@ -164,54 +172,50 @@ react-app-start: $(REACT_APP_NODE_MODULES_PATH) @echo ">> running React app" cd $(REACT_APP_PATH) && yarn start -# build builds Thanos binary using `promu`. .PHONY: build +build: ## Builds Thanos binary using `promu`. build: check-git deps $(PROMU) @echo ">> building binaries $(GOBIN)" @$(PROMU) build --prefix $(PREFIX) -# crossbuild builds all binaries for all platforms. .PHONY: crossbuild +crossbuild: ## Builds all binaries for all platforms. crossbuild: $(PROMU) @echo ">> crossbuilding all binaries" $(PROMU) crossbuild -v -# deps ensures fresh go.mod and go.sum. .PHONY: deps -deps: +deps: ## Ensures fresh go.mod and go.sum. @go mod tidy @go mod verify -# docker builds docker with no tag. .PHONY: docker +docker: ## Builds 'thanos' docker with no tag. docker: build @echo ">> building docker image 'thanos'" @docker build -t "thanos" . -#docker-multi-stage builds docker image using multi-stage. .PHONY: docker-multi-stage +docker-multi-stage: ## Builds 'thanos' docker image using multi-stage. docker-multi-stage: @echo ">> building docker image 'thanos' with Dockerfile.multi-stage" @docker build -f Dockerfile.multi-stage -t "thanos" . -# docker-push pushes docker image build under `thanos` to "$(DOCKER_IMAGE_REPO):$(DOCKER_IMAGE_TAG)" .PHONY: docker-push +docker-push: ## Pushes 'thanos' docker image build to "$(DOCKER_IMAGE_REPO):$(DOCKER_IMAGE_TAG)". docker-push: @echo ">> pushing image" @docker tag "thanos" "$(DOCKER_IMAGE_REPO):$(DOCKER_IMAGE_TAG)" @docker push "$(DOCKER_IMAGE_REPO):$(DOCKER_IMAGE_TAG)" -# docs regenerates flags in docs for all thanos commands. .PHONY: docs +docs: ## Regenerates flags in docs for all thanos commands. docs: $(EMBEDMD) build @EMBEDMD_BIN="$(EMBEDMD)" SED_BIN="$(SED)" scripts/genflagdocs.sh @find . -type f -name "*.md" | SED_BIN="$(SED)" xargs scripts/cleanup-white-noise.sh -# check-docs checks: -# - discrepancy with flags is valid -# - links are valid -# - white noise .PHONY: check-docs +check-docs: ## checks docs against discrepancy with flags, links, white noise. check-docs: $(EMBEDMD) $(LICHE) build @EMBEDMD_BIN="$(EMBEDMD)" SED_BIN="$(SED)" scripts/genflagdocs.sh check @$(LICHE) --recursive docs --exclude "(couchdb.apache.org/bylaws.html|cloud.tencent.com|alibabacloud.com)" --document-root . @@ -219,24 +223,20 @@ check-docs: $(EMBEDMD) $(LICHE) build @find . -type f -name "*.md" | SED_BIN="$(SED)" xargs scripts/cleanup-white-noise.sh $(call require_clean_work_tree,"check documentation") -# checks Go code comments if they have trailing period (excludes protobuffers and vendor files). -# Comments with more than 3 spaces at beginning are omitted from the check, example: '// - foo'. .PHONY: check-comments -check-comments: +check-comments: ## Checks Go code comments if they have trailing period (excludes protobuffers and vendor files). Comments with more than 3 spaces at beginning are omitted from the check, example: '// - foo'. @printf ">> checking Go comments trailing periods\n\n\n" @./scripts/build-check-comments.sh -# format the code: -# - format code (including imports format) -# - clean up all white noise .PHONY: format +format: ## Formats Go code including imports and cleans up white noise. format: $(GOIMPORTS) check-comments @echo ">> formatting code" @$(GOIMPORTS) -w $(FILES_TO_FMT) @SED_BIN="$(SED)" scripts/cleanup-white-noise.sh $(FILES_TO_FMT) -# proto generates golang files from Thanos proto files. .PHONY: proto +proto: ## Generates Go files from Thanos proto files. proto: check-git $(GOIMPORTS) $(PROTOC) @GOIMPORTS_BIN="$(GOIMPORTS)" PROTOC_BIN="$(PROTOC)" scripts/genproto.sh @@ -244,46 +244,56 @@ proto: check-git $(GOIMPORTS) $(PROTOC) promu: $(PROMU) .PHONY: tarballs-release +tarballs-release: ## Build tarballs. tarballs-release: $(PROMU) @echo ">> Publishing tarballs" $(PROMU) crossbuild -v tarballs $(PROMU) checksum -v .tarballs $(PROMU) release -v .tarballs -# test runs all Thanos golang tests against each supported version of Prometheus. .PHONY: test +test: ## Runs all Thanos Go unit tests against each supported version of Prometheus. This excludes tests in ./test/e2e. test: export GOCACHE= $(TMP_GOPATH)/gocache test: export THANOS_TEST_MINIO_PATH= $(MINIO_SERVER) test: export THANOS_TEST_PROMETHEUS_VERSIONS= $(PROM_VERSIONS) test: export THANOS_TEST_ALERTMANAGER_PATH= $(ALERTMANAGER) test: check-git install-deps @echo ">> install thanos GOOPTS=${GOOPTS}" - # Thanos binary is required by e2e tests. - @go install github.com/thanos-io/thanos/cmd/thanos - # Be careful on GOCACHE. Those tests are sometimes using built Thanos/Prometheus binaries directly. Don't cache those. - @rm -rf ${GOCACHE} - @echo ">> running all tests. Do export THANOS_TEST_OBJSTORE_SKIP=GCS,S3,AZURE,SWIFT,COS,ALIYUNOSS if you want to skip e2e tests against all real store buckets. Current value: ${THANOS_TEST_OBJSTORE_SKIP}" - @go test $(shell go list ./... | grep -v /vendor/); + @echo ">> running unit tests (without /test/e2e). Do export THANOS_TEST_OBJSTORE_SKIP=GCS,S3,AZURE,SWIFT,COS,ALIYUNOSS if you want to skip e2e tests against all real store buckets. Current value: ${THANOS_TEST_OBJSTORE_SKIP}" + @go test $(shell go list ./... | grep -v /vendor/ | grep -v /test/e2e); .PHONY: test-ci +test-ci: ## Runs test for CI, so excluding object storage integrations that we don't have configured yet. test-ci: export THANOS_TEST_OBJSTORE_SKIP=AZURE,SWIFT,COS,ALIYUNOSS test-ci: @echo ">> Skipping ${THANOS_TEST_OBJSTORE_SKIP} tests" $(MAKE) test .PHONY: test-local +test-local: ## Runs test excluding tests for ALL object storage integrations. test-local: export THANOS_TEST_OBJSTORE_SKIP=GCS,S3,AZURE,SWIFT,COS,ALIYUNOSS test-local: $(MAKE) test -# install-deps installs dependencies for e2e tetss. -# It installs supported versions of Prometheus and alertmanager to test against in e2e. +.PHONY: test-e2e +test-e2e: ## Runs all Thanos e2e docker-based e2e tests from test/e2e. Required access to docker daemon. +test-e2e: docker + @echo ">> cleaning docker environment." + @docker system prune -f --volumes + @echo ">> cleaning e2e test garbage." + @rm -rf ./test/e2e/e2e_integration_test* + @echo ">> running /test/e2e tests." + # NOTE(bwplotka): + # * If you see errors on CI (timeouts), but not locally, try to add -parallel 1 to limit to single CPU to reproduce small 1CPU machine. + @go test -failfast -timeout 10m -v ./test/e2e/... + .PHONY: install-deps +install-deps: ## Installs dependencies for integration tests. It installs supported versions of Prometheus and alertmanager to test against in integration tests. install-deps: $(ALERTMANAGER) $(MINIO_SERVER) $(PROMS) @echo ">>GOBIN=$(GOBIN)" .PHONY: docker-ci -# To be run by Thanos maintainer. +docker-ci: ## Builds and pushes docker image used by our CI. This is done to cache our tools and dependencies. To be run by Thanos maintainer. docker-ci: install-deps # Copy all to tmp local dir as this is required by docker. @rm -rf ./tmp/bin @@ -294,7 +304,6 @@ docker-ci: install-deps @docker tag "thanos-ci" "quay.io/thanos/thanos-ci:$(DOCKER_CI_TAG)" @docker push "quay.io/thanos/thanos-ci:$(DOCKER_CI_TAG)" -# tooling deps. TODO(bwplotka): Pin them all to certain version! .PHONY: check-git check-git: ifneq ($(GIT),) @@ -309,22 +318,35 @@ web-pre-process: @bash scripts/websitepreprocess.sh .PHONY: web +web: ## Builds our website. web: web-pre-process $(HUGO) @echo ">> building documentation website" # TODO(bwplotka): Make it --gc @cd $(WEB_DIR) && HUGO_ENV=production $(HUGO) --config hugo.yaml --minify -v -b $(WEBSITE_BASE_URL) -.PHONY:lint -lint: go-lint react-app-lint - -.PHONY: go-lint # PROTIP: # Add # --cpu-profile-path string Path to CPU profile output file # --mem-profile-path string Path to memory profile output file -# # to debug big allocations during linting. -go-lint: check-git $(GOLANGCILINT) $(MISSPELL) +.PHONY:lint +lint: ## Runs various static analysis against our code. +lint: go-lint react-app-lint + +.PHONY: go-lint +go-lint: ## Runs various static analysis against our go code. +go-lint: check-git deps $(GOLANGCILINT) $(MISSPELL) $(FAILLINT) + $(call require_clean_work_tree,"detected not clean master before running lint") + @echo ">> verifying modules being imported" + @# TODO(bwplotka): Add, Printf, DefaultRegisterer, NewGaugeFunc and MustRegister once exception are accepted. Add fmt.{Errorf}=github.com/pkg/errors.{Errorf} once https://github.com/fatih/faillint/issues/10 is addressed. + @$(FAILLINT) -paths "errors=github.com/pkg/errors,\ +github.com/prometheus/tsdb=github.com/prometheus/prometheus/tsdb,\ +github.com/prometheus/prometheus/pkg/testutils=github.com/thanos-io/thanos/pkg/testutil,\ +github.com/prometheus/client_golang/prometheus.{DefaultGatherer,DefBuckets,NewUntypedFunc,UntypedFunc},\ +github.com/prometheus/client_golang/prometheus.{NewCounter,NewCounterVec,NewCounterVec,NewGauge,NewGaugeVec,NewGaugeFunc,\ +NewHistorgram,NewHistogramVec,NewSummary,NewSummaryVec}=github.com/prometheus/client_golang/prometheus/promauto.{NewCounter,\ +NewCounterVec,NewCounterVec,NewGauge,NewGaugeVec,NewGaugeFunc,NewHistorgram,NewHistogramVec,NewSummary,NewSummaryVec}" ./... + @$(FAILLINT) -paths "fmt.{Print,Println,Sprint}" -ignore-tests ./... @echo ">> examining all of the Go files" @go vet -stdmethods=false ./pkg/... ./cmd/... && go vet doc.go @echo ">> linting all of the Go files GOGC=${GOGC}" @@ -339,6 +361,7 @@ go-lint: check-git $(GOLANGCILINT) $(MISSPELL) $(call require_clean_work_tree,"detected files without copyright") .PHONY: web-serve +web-serve: ## Builds and serves Thanos website on localhost. web-serve: web-pre-process $(HUGO) @echo ">> serving documentation website" @cd $(WEB_DIR) && $(HUGO) --config hugo.yaml -v server @@ -351,7 +374,7 @@ JSONNET_CONTAINER_CMD:=docker run --rm \ -w "/go/src/github.com/thanos-io/thanos" \ -e USER=deadbeef \ -e GO111MODULE=on \ - quay.io/coreos/jsonnet-ci:release-0.35 + quay.io/coreos/jsonnet-ci:release-0.36 .PHONY: examples-in-container examples-in-container: @@ -367,51 +390,53 @@ examples-in-container: examples .PHONY: examples -examples: jsonnet-format mixin/thanos/README.md examples/alerts/alerts.md examples/alerts/alerts.yaml examples/alerts/rules.yaml examples/dashboards examples/tmp +examples: jsonnet-vendor jsonnet-format $(EMBEDMD) ${THANOS_MIXIN}/README.md examples/alerts/alerts.md examples/alerts/alerts.yaml examples/alerts/rules.yaml examples/dashboards examples/tmp $(EMBEDMD) -w examples/alerts/alerts.md - $(EMBEDMD) -w mixin/thanos/README.md + $(EMBEDMD) -w ${THANOS_MIXIN}/README.md .PHONY: examples/tmp examples/tmp: -rm -rf examples/tmp/ -mkdir -p examples/tmp/ - $(JSONNET) -J ${JSONNET_VENDOR_DIR} -m examples/tmp/ ${MIXIN_ROOT}/separated_alerts.jsonnet | xargs -I{} sh -c 'cat {} | $(GOJSONTOYAML) > {}.yaml; rm -f {}' -- {} + $(JSONNET) -J ${JSONNET_VENDOR_DIR} -m examples/tmp/ ${THANOS_MIXIN}/separated_alerts.jsonnet | xargs -I{} sh -c 'cat {} | $(GOJSONTOYAML) > {}.yaml; rm -f {}' -- {} .PHONY: examples/dashboards # to keep examples/dashboards/dashboards.md. -examples/dashboards: $(JSONNET) ${MIXIN_ROOT}/mixin.libsonnet ${MIXIN_ROOT}/defaults.libsonnet ${MIXIN_ROOT}/dashboards/* +examples/dashboards: $(JSONNET) ${THANOS_MIXIN}/mixin.libsonnet ${THANOS_MIXIN}/defaults.libsonnet ${THANOS_MIXIN}/dashboards/* -rm -rf examples/dashboards/*.json - $(JSONNET) -J ${JSONNET_VENDOR_DIR} -m examples/dashboards ${MIXIN_ROOT}/dashboards.jsonnet + $(JSONNET) -J ${JSONNET_VENDOR_DIR} -m examples/dashboards ${THANOS_MIXIN}/dashboards.jsonnet -examples/alerts/alerts.yaml: $(JSONNET) $(GOJSONTOYAML) ${MIXIN_ROOT}/mixin.libsonnet ${MIXIN_ROOT}/defaults.libsonnet ${MIXIN_ROOT}/alerts/* - $(JSONNET) ${MIXIN_ROOT}/alerts.jsonnet | $(GOJSONTOYAML) > $@ +examples/alerts/alerts.yaml: $(JSONNET) $(GOJSONTOYAML) ${THANOS_MIXIN}/mixin.libsonnet ${THANOS_MIXIN}/defaults.libsonnet ${THANOS_MIXIN}/alerts/* + $(JSONNET) ${THANOS_MIXIN}/alerts.jsonnet | $(GOJSONTOYAML) > $@ -examples/alerts/rules.yaml: $(JSONNET) $(GOJSONTOYAML) ${MIXIN_ROOT}/mixin.libsonnet ${MIXIN_ROOT}/defaults.libsonnet ${MIXIN_ROOT}/rules/* - $(JSONNET) ${MIXIN_ROOT}/rules.jsonnet | $(GOJSONTOYAML) > $@ +examples/alerts/rules.yaml: $(JSONNET) $(GOJSONTOYAML) ${THANOS_MIXIN}/mixin.libsonnet ${THANOS_MIXIN}/defaults.libsonnet ${THANOS_MIXIN}/rules/* + $(JSONNET) ${THANOS_MIXIN}/rules.jsonnet | $(GOJSONTOYAML) > $@ .PHONY: jsonnet-vendor -jsonnet-vendor: $(JSONNET_BUNDLER) jsonnetfile.json jsonnetfile.lock.json +jsonnet-vendor: $(JSONNET_BUNDLER) $(MIXIN_ROOT)/jsonnetfile.json $(MIXIN_ROOT)/jsonnetfile.lock.json rm -rf ${JSONNET_VENDOR_DIR} - $(JSONNET_BUNDLER) install --jsonnetpkg-home="${JSONNET_VENDOR_DIR}" + cd ${MIXIN_ROOT} && $(JSONNET_BUNDLER) install -JSONNET_FMT := jsonnetfmt -n 2 --max-blank-lines 2 --string-style s --comment-style s +JSONNETFMT_CMD := $(JSONNETFMT) -n 2 --max-blank-lines 2 --string-style s --comment-style s .PHONY: jsonnet-format -jsonnet-format: - @which jsonnetfmt 2>/dev/null || ( \ - echo "Cannot find jsonnetfmt command, please install from https://github.com/google/jsonnet/releases. If your C++ does not support GLIBCXX_3.4.20, please use xxx-in-container target like jsonnet-format-in-container." && exit 1 - ) +jsonnet-format: $(JSONNETFMT) find . -name 'vendor' -prune -o -name '*.libsonnet' -print -o -name '*.jsonnet' -print | \ - xargs -n 1 -- $(JSONNET_FMT) -i + xargs -n 1 -- $(JSONNETFMT_CMD) -i .PHONY: jsonnet-format-in-container jsonnet-format-in-container: - $(JSONNET_CONTAINER_CMD) make $(MFLAGS) jsonnet-format + $(JSONNET_CONTAINER_CMD) find . -name 'vendor' -prune -o -name '*.libsonnet' -print -o -name '*.jsonnet' -print | \ + xargs -n 1 -- jsonnetfmt -n 2 --max-blank-lines 2 --string-style s --comment-style s -i .PHONY: example-rules-lint example-rules-lint: $(PROMTOOL) examples/alerts/alerts.yaml examples/alerts/rules.yaml $(PROMTOOL) check rules examples/alerts/alerts.yaml examples/alerts/rules.yaml $(PROMTOOL) test rules examples/alerts/tests.yaml +.PHONY: check-examples +check-examples: examples example-rules-lint + $(call require_clean_work_tree,'all generated files should be committed,check examples') + .PHONY: examples-clean examples-clean: rm -f examples/alerts/alerts.yaml @@ -452,6 +477,9 @@ $(ALERTMANAGER): $(MINIO_SERVER): $(call fetch_go_bin_version,github.com/minio/minio,$(MINIO_SERVER_VERSION)) +$(FAILLINT): + $(call fetch_go_bin_version,github.com/fatih/faillint,$(FAILLINT_VERSION)) + $(PROMS): $(foreach ver,$(PROM_VERSIONS),$(call fetch_go_bin_version,github.com/prometheus/prometheus/cmd/prometheus,$(ver))) @@ -466,6 +494,9 @@ $(PROTOC): $(JSONNET): $(call fetch_go_bin_version,github.com/google/go-jsonnet/cmd/jsonnet,$(JSONNET_VERSION)) +$(JSONNETFMT): + $(call fetch_go_bin_version,github.com/google/go-jsonnet/cmd/jsonnetfmt,$(JSONNET_VERSION)) + $(GOJSONTOYAML): $(call fetch_go_bin_version,github.com/brancz/gojsontoyaml,$(GOJSONTOYAML_VERSION)) diff --git a/README.md b/README.md index 71a4c9ad0f0..e163a9cc970 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,9 @@

Thanos Logo

-[![CircleCI](https://circleci.com/gh/thanos-io/thanos.svg?style=svg)](https://circleci.com/gh/thanos-io/thanos) +[![Latest Release](https://img.shields.io/github/release/thanos-io/thanos.svg?style=flat-square)](https://github.com/thanos-io/thanos/releases/latest) +[![CI](https://circleci.com/gh/thanos-io/thanos.svg?style=svg)](https://circleci.com/gh/thanos-io/thanos) +[![Cross Build](https://github.com/thanos-io/thanos/workflows/cross-build/badge.svg)](https://github.com/thanos-io/thanos/actions?query=workflow%3Across-build) +[![End-to-End Tests](https://github.com/thanos-io/thanos/workflows/e2e/badge.svg)](https://github.com/thanos-io/thanos/actions?query=workflow%3Ae2e) [![Go Report Card](https://goreportcard.com/badge/github.com/thanos-io/thanos)](https://goreportcard.com/report/github.com/thanos-io/thanos) [![Go Code reference](https://img.shields.io/badge/code%20reference-go.dev-darkblue.svg)](https://pkg.go.dev/github.com/thanos-io/thanos?tab=subdirectories) [![Slack](https://img.shields.io/badge/join%20slack-%23thanos-brightgreen.svg)](https://slack.cncf.io/) @@ -64,7 +67,7 @@ The philosophy of Thanos and our community is borrowing much from UNIX philosoph ## Releases -Master should be stable and usable. Every commit to master builds docker image named `master--` in [quay.io/thanos/thanos](https://quay.io/repository/thanos/thanos) and [thanosio/thanos dockerhub (mirror)](https://hub.docker.com/r/thanosio/thanos) +Master should be stable and usable. Every commit to master builds docker image named `master--` in [quay.io/thanos/thanos](https://quay.io/repository/thanos/thanos) and [thanosio/thanos dockerhub (mirror)](https://hub.docker.com/r/thanosio/thanos) We also perform minor releases every 6 weeks. diff --git a/VERSION b/VERSION index 539f9fc668f..20c48e9965f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.10.1-dev +0.12.0-dev diff --git a/cmd/thanos/bucket.go b/cmd/thanos/bucket.go index 1aed48e7818..375814fc68b 100644 --- a/cmd/thanos/bucket.go +++ b/cmd/thanos/bucket.go @@ -9,6 +9,7 @@ import ( "fmt" "os" "sort" + "strconv" "strings" "text/template" "time" @@ -26,6 +27,7 @@ import ( "github.com/thanos-io/thanos/pkg/block" "github.com/thanos-io/thanos/pkg/block/metadata" "github.com/thanos-io/thanos/pkg/compact" + "github.com/thanos-io/thanos/pkg/compact/downsample" "github.com/thanos-io/thanos/pkg/component" "github.com/thanos-io/thanos/pkg/extflag" "github.com/thanos-io/thanos/pkg/extprom" @@ -33,6 +35,7 @@ import ( "github.com/thanos-io/thanos/pkg/objstore" "github.com/thanos-io/thanos/pkg/objstore/client" "github.com/thanos-io/thanos/pkg/prober" + "github.com/thanos-io/thanos/pkg/replicate" "github.com/thanos-io/thanos/pkg/runutil" httpserver "github.com/thanos-io/thanos/pkg/server/http" "github.com/thanos-io/thanos/pkg/ui" @@ -69,6 +72,8 @@ func registerBucket(m map[string]setupFunc, app *kingpin.Application, name strin registerBucketLs(m, cmd, name, objStoreConfig) registerBucketInspect(m, cmd, name, objStoreConfig) registerBucketWeb(m, cmd, name, objStoreConfig) + registerBucketReplicate(m, cmd, name, objStoreConfig) + registerBucketDownsample(m, cmd, name, objStoreConfig) } func registerBucketVerify(m map[string]setupFunc, root *kingpin.CmdClause, name string, objStoreConfig *extflag.PathOrContent) { @@ -80,7 +85,13 @@ func registerBucketVerify(m map[string]setupFunc, root *kingpin.CmdClause, name Short('i').Default(verifier.IndexIssueID, verifier.OverlappedBlocksIssueID).Strings() idWhitelist := cmd.Flag("id-whitelist", "Block IDs to verify (and optionally repair) only. "+ "If none is specified, all blocks will be verified. Repeated field").Strings() - m[name+" verify"] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, _ opentracing.Tracer, _ bool) error { + deleteDelay := modelDuration(cmd.Flag("delete-delay", "Duration after which blocks marked for deletion would be deleted permanently from source bucket by compactor component. "+ + "If delete-delay is non zero, blocks will be marked for deletion and compactor component is required to delete blocks from source bucket. "+ + "If delete-delay is 0, blocks will be deleted straight away. Use this if you want to get rid of or move the block immediately. "+ + "Note that deleting blocks immediately can cause query failures, if store gateway still has the block loaded, "+ + "or compactor is ignoring the deletion because it's compacting the block at the same time."). + Default("0s")) + m[name+" verify"] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, _ opentracing.Tracer, _ <-chan struct{}, _ bool) error { confContentYaml, err := objStoreConfig.Content() if err != nil { return err @@ -129,15 +140,15 @@ func registerBucketVerify(m map[string]setupFunc, root *kingpin.CmdClause, name issues = append(issues, issueFn) } - fetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, "", extprom.WrapRegistererWithPrefix(extpromPrefix, reg)) + fetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, "", extprom.WrapRegistererWithPrefix(extpromPrefix, reg), nil, nil) if err != nil { return err } if *repair { - v = verifier.NewWithRepair(logger, bkt, backupBkt, fetcher, issues) + v = verifier.NewWithRepair(logger, reg, bkt, backupBkt, fetcher, time.Duration(*deleteDelay), issues) } else { - v = verifier.New(logger, bkt, fetcher, issues) + v = verifier.New(logger, reg, bkt, fetcher, time.Duration(*deleteDelay), issues) } var idMatcher func(ulid.ULID) bool = nil @@ -167,7 +178,7 @@ func registerBucketLs(m map[string]setupFunc, root *kingpin.CmdClause, name stri cmd := root.Command("ls", "List all blocks in the bucket") output := cmd.Flag("output", "Optional format in which to print each block's information. Options are 'json', 'wide' or a custom template."). Short('o').Default("").String() - m[name+" ls"] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, _ opentracing.Tracer, _ bool) error { + m[name+" ls"] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, _ opentracing.Tracer, _ <-chan struct{}, _ bool) error { confContentYaml, err := objStoreConfig.Content() if err != nil { return err @@ -178,7 +189,7 @@ func registerBucketLs(m map[string]setupFunc, root *kingpin.CmdClause, name stri return err } - fetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, "", extprom.WrapRegistererWithPrefix(extpromPrefix, reg)) + fetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, "", extprom.WrapRegistererWithPrefix(extpromPrefix, reg), nil, nil) if err != nil { return err } @@ -260,12 +271,12 @@ func registerBucketInspect(m map[string]setupFunc, root *kingpin.CmdClause, name Default("FROM", "UNTIL").Enums(inspectColumns...) timeout := cmd.Flag("timeout", "Timeout to download metadata from remote storage").Default("5m").Duration() - m[name+" inspect"] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, _ opentracing.Tracer, _ bool) error { + m[name+" inspect"] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, _ opentracing.Tracer, _ <-chan struct{}, _ bool) error { // Parse selector. selectorLabels, err := parseFlagLabels(*selector) if err != nil { - return fmt.Errorf("error parsing selector flag: %v", err) + return errors.Wrap(err, "error parsing selector flag") } confContentYaml, err := objStoreConfig.Content() @@ -278,7 +289,7 @@ func registerBucketInspect(m map[string]setupFunc, root *kingpin.CmdClause, name return err } - fetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, "", extprom.WrapRegistererWithPrefix(extpromPrefix, reg)) + fetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, "", extprom.WrapRegistererWithPrefix(extpromPrefix, reg), nil, nil) if err != nil { return err } @@ -316,14 +327,12 @@ func registerBucketWeb(m map[string]setupFunc, root *kingpin.CmdClause, name str timeout := cmd.Flag("timeout", "Timeout to download metadata from remote storage").Default("5m").Duration() label := cmd.Flag("label", "Prometheus label to use as timeline title").String() - m[name+" web"] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, _ opentracing.Tracer, _ bool) error { - ctx, cancel := context.WithCancel(context.Background()) - + m[name+" web"] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, _ opentracing.Tracer, _ <-chan struct{}, _ bool) error { comp := component.Bucket httpProbe := prober.NewHTTP() statusProber := prober.Combine( httpProbe, - prober.NewInstrumentation(comp, logger, prometheus.WrapRegistererWithPrefix("thanos_", reg)), + prober.NewInstrumentation(comp, logger, extprom.WrapRegistererWithPrefix("thanos_", reg)), ) srv := httpserver.New(logger, reg, comp, httpProbe, @@ -331,15 +340,10 @@ func registerBucketWeb(m map[string]setupFunc, root *kingpin.CmdClause, name str httpserver.WithGracePeriod(time.Duration(*httpGracePeriod)), ) - flagsMap := map[string]string{ - "web.external-prefix": *webExternalPrefix, - "web.prefix-header": *webPrefixHeaderName, - } - router := route.New() - bucketUI := ui.NewBucketUI(logger, *label, flagsMap) - bucketUI.Register(router.WithPrefix(*webExternalPrefix), extpromhttp.NewInstrumentationMiddleware(reg)) + bucketUI := ui.NewBucketUI(logger, *label, *webExternalPrefix, *webPrefixHeaderName) + bucketUI.Register(router, extpromhttp.NewInstrumentationMiddleware(reg)) srv.Handle("/", router) if *interval < 5*time.Minute { @@ -354,10 +358,39 @@ func registerBucketWeb(m map[string]setupFunc, root *kingpin.CmdClause, name str level.Warn(logger).Log("msg", "Refresh interval should be at least 2 times the timeout") } + confContentYaml, err := objStoreConfig.Content() + if err != nil { + return err + } + + bkt, err := client.NewBucket(logger, confContentYaml, reg, component.Bucket.String()) + if err != nil { + return errors.Wrap(err, "bucket client") + } + + // TODO(bwplotka): Allow Bucket UI to visualize the state of block as well. + fetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, "", extprom.WrapRegistererWithPrefix(extpromPrefix, reg), nil, nil) + if err != nil { + return err + } + fetcher.UpdateOnChange(bucketUI.Set) + + ctx, cancel := context.WithCancel(context.Background()) g.Add(func() error { statusProber.Ready() - - return refresh(ctx, logger, bucketUI, *interval, *timeout, name, reg, objStoreConfig) + defer runutil.CloseWithLogOnErr(logger, bkt, "bucket client") + return runutil.Repeat(*interval, ctx.Done(), func() error { + return runutil.RetryWithLog(logger, time.Minute, ctx.Done(), func() error { + iterCtx, iterCancel := context.WithTimeout(ctx, *timeout) + defer iterCancel() + + _, _, err := fetcher.Fetch(iterCtx) + if err != nil { + return err + } + return nil + }) + }) }, func(error) { cancel() }) @@ -377,60 +410,61 @@ func registerBucketWeb(m map[string]setupFunc, root *kingpin.CmdClause, name str } } -// refresh metadata from remote storage periodically and update UI. -func refresh(ctx context.Context, logger log.Logger, bucketUI *ui.Bucket, duration time.Duration, timeout time.Duration, name string, reg *prometheus.Registry, objStoreConfig *extflag.PathOrContent) error { - confContentYaml, err := objStoreConfig.Content() - if err != nil { - return err - } - - bkt, err := client.NewBucket(logger, confContentYaml, reg, name) - if err != nil { - return errors.Wrap(err, "bucket client") - } +// Provide a list of resolution, can not use Enum directly, since string does not implement int64 function. +func listResLevel() []string { + return []string{ + strconv.FormatInt(downsample.ResLevel0, 10), + strconv.FormatInt(downsample.ResLevel1, 10), + strconv.FormatInt(downsample.ResLevel2, 10)} +} - fetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, "", extprom.WrapRegistererWithPrefix(extpromPrefix, reg)) - if err != nil { - return err +func registerBucketReplicate(m map[string]setupFunc, root *kingpin.CmdClause, name string, objStoreConfig *extflag.PathOrContent) { + cmd := root.Command("replicate", fmt.Sprintf("Replicate data from one object storage to another. NOTE: Currently it works only with Thanos blocks (%v has to have Thanos metadata).", block.MetaFilename)) + httpBindAddr, httpGracePeriod := regHTTPFlags(cmd) + toObjStoreConfig := regCommonObjStoreFlags(cmd, "-to", false, "The object storage which replicate data to.") + // TODO(bwplotka): Allow to replicate many resolution levels. + resolution := cmd.Flag("resolution", "Only blocks with this resolution will be replicated.").Default(strconv.FormatInt(downsample.ResLevel0, 10)).HintAction(listResLevel).Int64() + // TODO(bwplotka): Allow to replicate many compaction levels. + compaction := cmd.Flag("compaction", "Only blocks with this compaction level will be replicated.").Default("1").Int() + matcherStrs := cmd.Flag("matcher", "Only blocks whose external labels exactly match this matcher will be replicated.").PlaceHolder("key=\"value\"").Strings() + singleRun := cmd.Flag("single-run", "Run replication only one time, then exit.").Default("false").Bool() + + m[name+" replicate"] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, tracer opentracing.Tracer, _ <-chan struct{}, _ bool) error { + matchers, err := replicate.ParseFlagMatchers(*matcherStrs) + if err != nil { + return errors.Wrap(err, "parse block label matchers") + } + + return replicate.RunReplicate( + g, + logger, + reg, + tracer, + *httpBindAddr, + time.Duration(*httpGracePeriod), + matchers, + compact.ResolutionLevel(*resolution), + *compaction, + objStoreConfig, + toObjStoreConfig, + *singleRun, + ) } - defer runutil.CloseWithLogOnErr(logger, bkt, "bucket client") - return runutil.Repeat(duration, ctx.Done(), func() error { - return runutil.RetryWithLog(logger, time.Minute, ctx.Done(), func() error { - iterCtx, iterCancel := context.WithTimeout(ctx, timeout) - defer iterCancel() - - blocks, err := download(iterCtx, logger, bkt, fetcher) - if err != nil { - bucketUI.Set("[]", err) - return err - } - - data, err := json.Marshal(blocks) - if err != nil { - bucketUI.Set("[]", err) - return err - } - bucketUI.Set(string(data), nil) - return nil - }) - }) } -func download(ctx context.Context, logger log.Logger, bkt objstore.Bucket, fetcher *block.MetaFetcher) (blocks []metadata.Meta, err error) { - level.Info(logger).Log("msg", "synchronizing block metadata") +func registerBucketDownsample(m map[string]setupFunc, root *kingpin.CmdClause, name string, objStoreConfig *extflag.PathOrContent) { + comp := component.Downsample + cmd := root.Command(comp.String(), "continuously downsamples blocks in an object store bucket") - metas, _, err := fetcher.Fetch(ctx) - if err != nil { - return nil, err - } + httpAddr, httpGracePeriod := regHTTPFlags(cmd) - for _, meta := range metas { - blocks = append(blocks, *meta) - } + dataDir := cmd.Flag("data-dir", "Data directory in which to cache blocks and process downsamplings."). + Default("./data").String() - level.Info(logger).Log("msg", "downloaded blocks meta.json", "num", len(blocks)) - return blocks, nil + m[name+" "+comp.String()] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, tracer opentracing.Tracer, _ <-chan struct{}, _ bool) error { + return RunDownsample(g, logger, reg, *httpAddr, time.Duration(*httpGracePeriod), *dataDir, objStoreConfig, comp) + } } func printTable(blockMetas []*metadata.Meta, selectorLabels labels.Labels, sortBy []string) error { @@ -476,7 +510,7 @@ func printTable(blockMetas []*metadata.Meta, selectorLabels labels.Labels, sortB for _, col := range sortBy { index := getIndex(header, col) if index == -1 { - return fmt.Errorf("column %s not found", col) + return errors.Errorf("column %s not found", col) } sortByColNum = append(sortByColNum, index) } diff --git a/cmd/thanos/check.go b/cmd/thanos/check.go index d42c12052ce..ae0d43fa275 100644 --- a/cmd/thanos/check.go +++ b/cmd/thanos/check.go @@ -29,7 +29,7 @@ func registerCheckRules(m map[string]setupFunc, root *kingpin.CmdClause, name st "The rule files to check.", ).Required().ExistingFiles() - m[name+" rules"] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, _ opentracing.Tracer, _ bool) error { + m[name+" rules"] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, _ opentracing.Tracer, _ <-chan struct{}, _ bool) error { // Dummy actor to immediately kill the group after the run function returns. g.Add(func() error { return nil }, func(error) {}) return checkRulesFiles(logger, ruleFiles) diff --git a/cmd/thanos/compact.go b/cmd/thanos/compact.go index 4bdd9cc351d..0b1c22769f6 100644 --- a/cmd/thanos/compact.go +++ b/cmd/thanos/compact.go @@ -16,10 +16,11 @@ import ( "github.com/go-kit/kit/log" "github.com/go-kit/kit/log/level" "github.com/oklog/run" - "github.com/oklog/ulid" "github.com/opentracing/opentracing-go" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" + "github.com/prometheus/common/route" "github.com/prometheus/prometheus/tsdb" "github.com/thanos-io/thanos/pkg/block" "github.com/thanos-io/thanos/pkg/block/indexheader" @@ -29,11 +30,13 @@ import ( "github.com/thanos-io/thanos/pkg/component" "github.com/thanos-io/thanos/pkg/extflag" "github.com/thanos-io/thanos/pkg/extprom" + extpromhttp "github.com/thanos-io/thanos/pkg/extprom/http" "github.com/thanos-io/thanos/pkg/objstore" "github.com/thanos-io/thanos/pkg/objstore/client" "github.com/thanos-io/thanos/pkg/prober" "github.com/thanos-io/thanos/pkg/runutil" httpserver "github.com/thanos-io/thanos/pkg/server/http" + "github.com/thanos-io/thanos/pkg/ui" "gopkg.in/alecthomas/kingpin.v2" ) @@ -103,9 +106,13 @@ func registerCompact(m map[string]setupFunc, app *kingpin.Application) { retention5m := modelDuration(cmd.Flag("retention.resolution-5m", "How long to retain samples of resolution 1 (5 minutes) in bucket. Setting this to 0d will retain samples of this resolution forever").Default("0d")) retention1h := modelDuration(cmd.Flag("retention.resolution-1h", "How long to retain samples of resolution 2 (1 hour) in bucket. Setting this to 0d will retain samples of this resolution forever").Default("0d")) + // TODO(kakkoyun): https://github.com/thanos-io/thanos/issues/2266. wait := cmd.Flag("wait", "Do not exit after all compactions have been processed and wait for new work."). Short('w').Bool() + waitInterval := cmd.Flag("wait-interval", "Wait interval between consecutive compaction runs and bucket refreshes. Only works when --wait flag specified."). + Default("5m").Duration() + generateMissingIndexCacheFiles := cmd.Flag("index.generate-missing-cache-file", "If enabled, on startup compactor runs an on-off job that scans all the blocks to find all blocks with missing index cache file. It generates those if needed and upload."). Hidden().Default("false").Bool() @@ -122,15 +129,33 @@ func registerCompact(m map[string]setupFunc, app *kingpin.Application) { compactionConcurrency := cmd.Flag("compact.concurrency", "Number of goroutines to use when compacting groups."). Default("1").Int() + deleteDelay := modelDuration(cmd.Flag("delete-delay", "Time before a block marked for deletion is deleted from bucket. "+ + "If delete-delay is non zero, blocks will be marked for deletion and compactor component will delete blocks marked for deletion from the bucket. "+ + "If delete-delay is 0, blocks will be deleted straight away. "+ + "Note that deleting blocks immediately can cause query failures, if store gateway still has the block loaded, "+ + "or compactor is ignoring the deletion because it's compacting the block at the same time."). + Default("48h")) + + dedupReplicaLabels := cmd.Flag("deduplication.replica-label", "Label to treat as a replica indicator of blocks that can be deduplicated (repeated flag). This will merge multiple replica blocks into one. This process is irreversible."+ + "Experimental. When it is set true, this will given labels from blocks so that vertical compaction could merge blocks."+ + "Please note that this uses a NAIVE algorithm for merging (no smart replica deduplication, just chaining samples together)."+ + "This works well for deduplication of blocks with **precisely the same samples** like produced by Receiver replication."). + Hidden().Strings() + selectorRelabelConf := regSelectorRelabelFlags(cmd) - m[component.Compact.String()] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, tracer opentracing.Tracer, _ bool) error { + webExternalPrefix := cmd.Flag("web.external-prefix", "Static prefix for all HTML links and redirect URLs in the bucket web UI interface. Actual endpoints are still served on / or the web.route-prefix. This allows thanos bucket web UI to be served behind a reverse proxy that strips a URL sub-path.").Default("").String() + webPrefixHeaderName := cmd.Flag("web.prefix-header", "Name of HTTP request header used for dynamic prefixing of UI links and redirects. This option is ignored if web.external-prefix argument is set. Security risk: enable this option only if a reverse proxy in front of thanos is resetting the header. The --web.prefix-header=X-Forwarded-Prefix option can be useful, for example, if Thanos UI is served via Traefik reverse proxy with PathPrefixStrip option enabled, which sends the stripped prefix value in X-Forwarded-Prefix header. This allows thanos UI to be served on a sub-path.").Default("").String() + label := cmd.Flag("bucket-web-label", "Prometheus label to use as timeline title in the bucket web UI").String() + + m[component.Compact.String()] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, tracer opentracing.Tracer, _ <-chan struct{}, _ bool) error { return runCompact(g, logger, reg, *httpAddr, time.Duration(*httpGracePeriod), *dataDir, objStoreConfig, time.Duration(*consistencyDelay), + time.Duration(*deleteDelay), *haltOnError, *acceptMalformedIndex, *wait, @@ -145,7 +170,12 @@ func registerCompact(m map[string]setupFunc, app *kingpin.Application) { *maxCompactionLevel, *blockSyncConcurrency, *compactionConcurrency, + *dedupReplicaLabels, selectorRelabelConf, + *waitInterval, + *label, + *webExternalPrefix, + *webPrefixHeaderName, ) } } @@ -159,49 +189,61 @@ func runCompact( dataDir string, objStoreConfig *extflag.PathOrContent, consistencyDelay time.Duration, - haltOnError bool, - acceptMalformedIndex bool, - wait bool, - generateMissingIndexCacheFiles bool, + deleteDelay time.Duration, + haltOnError, acceptMalformedIndex, wait, generateMissingIndexCacheFiles bool, retentionByResolution map[compact.ResolutionLevel]time.Duration, component component.Component, disableDownsampling bool, - maxCompactionLevel int, - blockSyncConcurrency int, + maxCompactionLevel, blockSyncConcurrency int, concurrency int, + dedupReplicaLabels []string, selectorRelabelConf *extflag.PathOrContent, + waitInterval time.Duration, + label string, + externalPrefix, prefixHeader string, ) error { - halted := prometheus.NewGauge(prometheus.GaugeOpts{ + halted := promauto.With(reg).NewGauge(prometheus.GaugeOpts{ Name: "thanos_compactor_halted", Help: "Set to 1 if the compactor halted due to an unexpected error.", }) halted.Set(0) - retried := prometheus.NewCounter(prometheus.CounterOpts{ + retried := promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_compactor_retries_total", Help: "Total number of retries after retriable compactor error.", }) - iterations := prometheus.NewCounter(prometheus.CounterOpts{ + iterations := promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_compactor_iterations_total", Help: "Total number of iterations that were executed successfully.", }) - consistencyDelayMetric := prometheus.NewGaugeFunc(prometheus.GaugeOpts{ - Name: "thanos_consistency_delay_seconds", - Help: "Configured consistency delay in seconds.", - }, func() float64 { - return consistencyDelay.Seconds() - }) - partialUploadDeleteAttempts := prometheus.NewCounter(prometheus.CounterOpts{ + partialUploadDeleteAttempts := promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_compactor_aborted_partial_uploads_deletion_attempts_total", Help: "Total number of started deletions of blocks that are assumed aborted and only partially uploaded.", }) - reg.MustRegister(halted, retried, iterations, consistencyDelayMetric, partialUploadDeleteAttempts) + blocksCleaned := promauto.With(reg).NewCounter(prometheus.CounterOpts{ + Name: "thanos_compactor_blocks_cleaned_total", + Help: "Total number of blocks deleted in compactor.", + }) + blockCleanupFailures := promauto.With(reg).NewCounter(prometheus.CounterOpts{ + Name: "thanos_compactor_block_cleanup_failures_total", + Help: "Failures encountered while deleting blocks in compactor.", + }) + blocksMarkedForDeletion := promauto.With(reg).NewCounter(prometheus.CounterOpts{ + Name: "thanos_compactor_blocks_marked_for_deletion_total", + Help: "Total number of blocks marked for deletion in compactor.", + }) + _ = promauto.With(reg).NewGaugeFunc(prometheus.GaugeOpts{ + Name: "thanos_delete_delay_seconds", + Help: "Configured delete delay in seconds.", + }, func() float64 { + return deleteDelay.Seconds() + }) downsampleMetrics := newDownsampleMetrics(reg) httpProbe := prober.NewHTTP() statusProber := prober.Combine( httpProbe, - prober.NewInstrumentation(component, logger, prometheus.WrapRegistererWithPrefix("thanos_", reg)), + prober.NewInstrumentation(component, logger, extprom.WrapRegistererWithPrefix("thanos_", reg)), ) srv := httpserver.New(logger, reg, component, httpProbe, @@ -247,15 +289,28 @@ func runCompact( } }() - metaFetcher, err := block.NewMetaFetcher(logger, 32, bkt, "", extprom.WrapRegistererWithPrefix("thanos_", reg), - block.NewLabelShardedMetaFilter(relabelConfig).Filter, - (&consistencyDelayMetaFilter{logger: logger, consistencyDelay: consistencyDelay}).Filter, - ) + // While fetching blocks, we filter out blocks that were marked for deletion by using IgnoreDeletionMarkFilter. + // The delay of deleteDelay/2 is added to ensure we fetch blocks that are meant to be deleted but do not have a replacement yet. + ignoreDeletionMarkFilter := block.NewIgnoreDeletionMarkFilter(logger, bkt, time.Duration(deleteDelay.Seconds()/2)*time.Second) + duplicateBlocksFilter := block.NewDeduplicateFilter() + + baseMetaFetcher, err := block.NewBaseFetcher(logger, 32, bkt, "", extprom.WrapRegistererWithPrefix("thanos_", reg)) if err != nil { return errors.Wrap(err, "create meta fetcher") } + compactFetcher := baseMetaFetcher.NewMetaFetcher(extprom.WrapRegistererWithPrefix("thanos_", reg), []block.MetadataFilter{ + block.NewLabelShardedMetaFilter(relabelConfig), + block.NewConsistencyDelayMetaFilter(logger, consistencyDelay, extprom.WrapRegistererWithPrefix("thanos_", reg)), + ignoreDeletionMarkFilter, + duplicateBlocksFilter, + }, []block.MetadataModifier{block.NewReplicaLabelRemover(logger, dedupReplicaLabels)}) + enableVerticalCompaction := false + if len(dedupReplicaLabels) > 0 { + enableVerticalCompaction = true + level.Info(logger).Log("msg", "deduplication.replica-label specified, vertical compaction is enabled", "dedupReplicaLabels", strings.Join(dedupReplicaLabels, ",")) + } - sy, err := compact.NewSyncer(logger, reg, bkt, metaFetcher, blockSyncConcurrency, acceptMalformedIndex, false) + sy, err := compact.NewSyncer(logger, reg, bkt, compactFetcher, duplicateBlocksFilter, ignoreDeletionMarkFilter, blocksMarkedForDeletion, blockSyncConcurrency, acceptMalformedIndex, enableVerticalCompaction) if err != nil { return errors.Wrap(err, "create syncer") } @@ -289,6 +344,7 @@ func runCompact( return errors.Wrap(err, "clean working downsample directory") } + blocksCleaner := compact.NewBlocksCleaner(logger, bkt, ignoreDeletionMarkFilter, deleteDelay, blocksCleaned, blockCleanupFailures) compactor, err := compact.NewBucketCompactor(logger, sy, comp, compactDir, bkt, concurrency) if err != nil { cancel() @@ -307,7 +363,7 @@ func runCompact( compactMainFn := func() error { if err := compactor.Compact(ctx); err != nil { - return errors.Wrap(err, "compaction failed") + return errors.Wrap(err, "compaction") } if !disableDownsampling { @@ -316,13 +372,13 @@ func runCompact( // for 5m downsamplings created in the first run. level.Info(logger).Log("msg", "start first pass of downsampling") - if err := downsampleBucket(ctx, logger, downsampleMetrics, bkt, metaFetcher, downsamplingDir); err != nil { + if err := downsampleBucket(ctx, logger, downsampleMetrics, bkt, compactFetcher, downsamplingDir); err != nil { return errors.Wrap(err, "first pass of downsampling failed") } level.Info(logger).Log("msg", "start second pass of downsampling") - if err := downsampleBucket(ctx, logger, downsampleMetrics, bkt, metaFetcher, downsamplingDir); err != nil { + if err := downsampleBucket(ctx, logger, downsampleMetrics, bkt, compactFetcher, downsamplingDir); err != nil { return errors.Wrap(err, "second pass of downsampling failed") } level.Info(logger).Log("msg", "downsampling iterations done") @@ -330,11 +386,15 @@ func runCompact( level.Warn(logger).Log("msg", "downsampling was explicitly disabled") } - if err := compact.ApplyRetentionPolicyByResolution(ctx, logger, bkt, metaFetcher, retentionByResolution); err != nil { + if err := compact.ApplyRetentionPolicyByResolution(ctx, logger, bkt, compactFetcher, retentionByResolution, blocksMarkedForDeletion); err != nil { return errors.Wrap(err, fmt.Sprintf("retention failed")) } - compact.BestEffortCleanAbortedPartialUploads(ctx, logger, metaFetcher, bkt, partialUploadDeleteAttempts) + if err := blocksCleaner.DeleteMarkedBlocks(ctx); err != nil { + return errors.Wrap(err, "error cleaning blocks") + } + + compact.BestEffortCleanAbortedPartialUploads(ctx, logger, compactFetcher, bkt, partialUploadDeleteAttempts, blocksMarkedForDeletion) return nil } @@ -343,7 +403,7 @@ func runCompact( // Generate index file. if generateMissingIndexCacheFiles { - if err := genMissingIndexCacheFiles(ctx, logger, reg, bkt, metaFetcher, indexCacheDir); err != nil { + if err := genMissingIndexCacheFiles(ctx, logger, reg, bkt, compactFetcher, indexCacheDir); err != nil { return err } } @@ -353,7 +413,7 @@ func runCompact( } // --wait=true is specified. - return runutil.Repeat(5*time.Minute, ctx.Done(), func() error { + return runutil.Repeat(waitInterval, ctx.Done(), func() error { err := compactMainFn() if err == nil { iterations.Inc() @@ -387,37 +447,58 @@ func runCompact( cancel() }) + if wait { + r := route.New() + + ins := extpromhttp.NewInstrumentationMiddleware(reg) + compactorView := ui.NewBucketUI(logger, label, path.Join(externalPrefix, "/loaded"), prefixHeader) + compactorView.Register(r, ins) + compactFetcher.UpdateOnChange(compactorView.Set) + + global := ui.NewBucketUI(logger, label, path.Join(externalPrefix, "/global"), prefixHeader) + global.Register(r, ins) + + // Separate fetcher for global view. + // TODO(bwplotka): Allow Bucket UI to visualize the state of the block as well. + f := baseMetaFetcher.NewMetaFetcher(extprom.WrapRegistererWithPrefix("thanos_bucket_ui", reg), nil, nil) + f.UpdateOnChange(global.Set) + + srv.Handle("/", r) + + g.Add(func() error { + iterCtx, iterCancel := context.WithTimeout(ctx, waitInterval) + _, _, _ = f.Fetch(iterCtx) + iterCancel() + + // For /global state make sure to fetch periodically. + return runutil.Repeat(time.Minute, ctx.Done(), func() error { + return runutil.RetryWithLog(logger, time.Minute, ctx.Done(), func() error { + iterCtx, iterCancel := context.WithTimeout(ctx, waitInterval) + defer iterCancel() + + _, _, err := f.Fetch(iterCtx) + if err != nil { + return err + } + return nil + }) + }) + }, func(error) { + cancel() + }) + } + level.Info(logger).Log("msg", "starting compact node") statusProber.Ready() return nil } -type consistencyDelayMetaFilter struct { - logger log.Logger - consistencyDelay time.Duration -} - -func (f *consistencyDelayMetaFilter) Filter(metas map[ulid.ULID]*metadata.Meta, synced block.GaugeLabeled, _ bool) { - for id, meta := range metas { - if ulid.Now()-id.Time() < uint64(f.consistencyDelay/time.Millisecond) && - meta.Thanos.Source != metadata.BucketRepairSource && - meta.Thanos.Source != metadata.CompactorSource && - meta.Thanos.Source != metadata.CompactorRepairSource { - - level.Debug(f.logger).Log("msg", "block is too fresh for now", "block", id) - synced.WithLabelValues(block.TooFreshMeta).Inc() - delete(metas, id) - } - } -} - // genMissingIndexCacheFiles scans over all blocks, generates missing index cache files and uploads them to object storage. func genMissingIndexCacheFiles(ctx context.Context, logger log.Logger, reg *prometheus.Registry, bkt objstore.Bucket, fetcher block.MetadataFetcher, dir string) error { - genIndex := prometheus.NewCounter(prometheus.CounterOpts{ + genIndex := promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: metricIndexGenerateName, Help: metricIndexGenerateHelp, }) - reg.MustRegister(genIndex) if err := os.RemoveAll(dir); err != nil { return errors.Wrap(err, "clean index cache directory") @@ -479,7 +560,7 @@ func generateIndexCacheFile( cachePath := filepath.Join(bdir, block.IndexCacheFilename) cache := path.Join(meta.ULID.String(), block.IndexCacheFilename) - ok, err := objstore.Exists(ctx, bkt, cache) + ok, err := bkt.Exists(ctx, cache) if ok { return nil } diff --git a/cmd/thanos/downsample.go b/cmd/thanos/downsample.go index b7b65369fa4..c98335fd0cf 100644 --- a/cmd/thanos/downsample.go +++ b/cmd/thanos/downsample.go @@ -13,9 +13,9 @@ import ( "github.com/go-kit/kit/log/level" "github.com/oklog/run" "github.com/oklog/ulid" - opentracing "github.com/opentracing/opentracing-go" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/prometheus/tsdb" "github.com/prometheus/prometheus/tsdb/chunkenc" "github.com/thanos-io/thanos/pkg/block" @@ -30,25 +30,8 @@ import ( "github.com/thanos-io/thanos/pkg/prober" "github.com/thanos-io/thanos/pkg/runutil" httpserver "github.com/thanos-io/thanos/pkg/server/http" - kingpin "gopkg.in/alecthomas/kingpin.v2" ) -func registerDownsample(m map[string]setupFunc, app *kingpin.Application) { - comp := component.Downsample - cmd := app.Command(comp.String(), "continuously downsamples blocks in an object store bucket") - - httpAddr, httpGracePeriod := regHTTPFlags(cmd) - - dataDir := cmd.Flag("data-dir", "Data directory in which to cache blocks and process downsamplings."). - Default("./data").String() - - objStoreConfig := regCommonObjStoreFlags(cmd, "", true) - - m[comp.String()] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, tracer opentracing.Tracer, _ bool) error { - return runDownsample(g, logger, reg, *httpAddr, time.Duration(*httpGracePeriod), *dataDir, objStoreConfig, comp) - } -} - type DownsampleMetrics struct { downsamples *prometheus.CounterVec downsampleFailures *prometheus.CounterVec @@ -57,22 +40,19 @@ type DownsampleMetrics struct { func newDownsampleMetrics(reg *prometheus.Registry) *DownsampleMetrics { m := new(DownsampleMetrics) - m.downsamples = prometheus.NewCounterVec(prometheus.CounterOpts{ + m.downsamples = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_compact_downsample_total", Help: "Total number of downsampling attempts.", }, []string{"group"}) - m.downsampleFailures = prometheus.NewCounterVec(prometheus.CounterOpts{ + m.downsampleFailures = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_compact_downsample_failures_total", Help: "Total number of failed downsampling attempts.", }, []string{"group"}) - reg.MustRegister(m.downsamples) - reg.MustRegister(m.downsampleFailures) - return m } -func runDownsample( +func RunDownsample( g *run.Group, logger log.Logger, reg *prometheus.Registry, @@ -92,7 +72,9 @@ func runDownsample( return err } - metaFetcher, err := block.NewMetaFetcher(logger, 32, bkt, "", extprom.WrapRegistererWithPrefix("thanos_", reg)) + metaFetcher, err := block.NewMetaFetcher(logger, 32, bkt, "", extprom.WrapRegistererWithPrefix("thanos_", reg), []block.MetadataFilter{ + block.NewDeduplicateFilter(), + }, nil) if err != nil { return errors.Wrap(err, "create meta fetcher") } @@ -107,7 +89,7 @@ func runDownsample( httpProbe := prober.NewHTTP() statusProber := prober.Combine( httpProbe, - prober.NewInstrumentation(comp, logger, prometheus.WrapRegistererWithPrefix("thanos_", reg)), + prober.NewInstrumentation(comp, logger, extprom.WrapRegistererWithPrefix("thanos_", reg)), ) metrics := newDownsampleMetrics(reg) diff --git a/cmd/thanos/main.go b/cmd/thanos/main.go index 9c38acca4b9..0207cd1a86d 100644 --- a/cmd/thanos/main.go +++ b/cmd/thanos/main.go @@ -32,7 +32,7 @@ const ( logFormatJson = "json" ) -type setupFunc func(*run.Group, log.Logger, *prometheus.Registry, opentracing.Tracer, bool) error +type setupFunc func(*run.Group, log.Logger, *prometheus.Registry, opentracing.Tracer, <-chan struct{}, bool) error func main() { if os.Getenv("DEBUG") != "" { @@ -61,7 +61,6 @@ func main() { registerRule(cmds, app) registerCompact(cmds, app) registerBucket(cmds, app, "bucket") - registerDownsample(cmds, app) registerReceive(cmds, app) registerChecks(cmds, app, "check") @@ -119,6 +118,7 @@ func main() { prometheus.NewProcessCollector(prometheus.ProcessCollectorOpts{}), ) + // Some packages still use default Register. Replace to have those metrics. prometheus.DefaultRegisterer = metrics // Memberlist uses go-metrics. sink, err := gprom.NewPrometheusSink() @@ -178,8 +178,12 @@ func main() { }) } - if err := cmds[cmd](&g, logger, metrics, tracer, *logLevel == "debug"); err != nil { - level.Error(logger).Log("err", errors.Wrapf(err, "%s command failed", cmd)) + // Create a signal channel to dispatch reload events to sub-commands. + reloadCh := make(chan struct{}, 1) + + if err := cmds[cmd](&g, logger, metrics, tracer, reloadCh, *logLevel == "debug"); err != nil { + // Use %+v for github.com/pkg/errors error to print with stack. + level.Error(logger).Log("err", fmt.Sprintf("%+v", errors.Wrapf(err, "preparing %s command failed", cmd))) os.Exit(1) } @@ -193,8 +197,19 @@ func main() { }) } + // Listen for reload signals. + { + cancel := make(chan struct{}) + g.Add(func() error { + return reload(logger, cancel, reloadCh) + }, func(error) { + close(cancel) + }) + } + if err := g.Run(); err != nil { - level.Error(logger).Log("msg", "running command failed", "err", err) + // Use %+v for github.com/pkg/errors error to print with stack. + level.Error(logger).Log("err", fmt.Sprintf("%+v", errors.Wrapf(err, "%s command failed", cmd))) os.Exit(1) } level.Info(logger).Log("msg", "exiting") @@ -211,3 +226,21 @@ func interrupt(logger log.Logger, cancel <-chan struct{}) error { return errors.New("canceled") } } + +func reload(logger log.Logger, cancel <-chan struct{}, r chan<- struct{}) error { + c := make(chan os.Signal, 1) + signal.Notify(c, syscall.SIGHUP) + for { + select { + case s := <-c: + level.Info(logger).Log("msg", "caught signal. Reloading.", "signal", s) + select { + case r <- struct{}{}: + level.Info(logger).Log("msg", "relaod dispatched.") + default: + } + case <-cancel: + return errors.New("canceled") + } + } +} diff --git a/cmd/thanos/main_test.go b/cmd/thanos/main_test.go index 1917a79f208..a9930139959 100644 --- a/cmd/thanos/main_test.go +++ b/cmd/thanos/main_test.go @@ -15,6 +15,7 @@ import ( "github.com/go-kit/kit/log" "github.com/oklog/ulid" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" promtest "github.com/prometheus/client_golang/prometheus/testutil" "github.com/prometheus/prometheus/pkg/labels" "github.com/thanos-io/thanos/pkg/block" @@ -71,13 +72,11 @@ func TestCleanupIndexCacheFolder(t *testing.T) { reg := prometheus.NewRegistry() expReg := prometheus.NewRegistry() - genIndexExp := prometheus.NewCounter(prometheus.CounterOpts{ + genIndexExp := promauto.With(expReg).NewCounter(prometheus.CounterOpts{ Name: metricIndexGenerateName, Help: metricIndexGenerateHelp, }) - expReg.MustRegister(genIndexExp) - - metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil) + metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil, nil, nil) testutil.Ok(t, err) testutil.Ok(t, genMissingIndexCacheFiles(ctx, logger, reg, bkt, metaFetcher, dir)) @@ -117,7 +116,7 @@ func TestCleanupDownsampleCacheFolder(t *testing.T) { metrics := newDownsampleMetrics(prometheus.NewRegistry()) testutil.Equals(t, 0.0, promtest.ToFloat64(metrics.downsamples.WithLabelValues(compact.GroupKey(meta.Thanos)))) - metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil) + metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil, nil, nil) testutil.Ok(t, err) testutil.Ok(t, downsampleBucket(ctx, logger, metrics, bkt, metaFetcher, dir)) diff --git a/cmd/thanos/query.go b/cmd/thanos/query.go index 2aeea6e0a91..6225f293ac9 100644 --- a/cmd/thanos/query.go +++ b/cmd/thanos/query.go @@ -9,6 +9,7 @@ import ( "math" "net/http" "path" + "strings" "time" "github.com/go-kit/kit/log" @@ -17,6 +18,7 @@ import ( opentracing "github.com/opentracing/opentracing-go" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/common/route" "github.com/prometheus/prometheus/discovery/file" "github.com/prometheus/prometheus/discovery/targetgroup" @@ -76,6 +78,9 @@ func registerQuery(m map[string]setupFunc, app *kingpin.Application) { stores := cmd.Flag("store", "Addresses of statically configured store API servers (repeatable). The scheme may be prefixed with 'dns+' or 'dnssrv+' to detect store API servers through respective DNS lookups."). PlaceHolder("").Strings() + strictStores := cmd.Flag("store-strict", "Addresses of only statically configured store API servers that are always used, even if the health check fails. Useful if you have a caching layer on top."). + PlaceHolder("").Strings() + fileSDFiles := cmd.Flag("store.sd-files", "Path to files that contain addresses of store API servers. The path can be a glob pattern (repeatable)."). PlaceHolder("").Strings() @@ -101,7 +106,7 @@ func registerQuery(m map[string]setupFunc, app *kingpin.Application) { storeResponseTimeout := modelDuration(cmd.Flag("store.response-timeout", "If a Store doesn't send any data in this specified duration then a Store will be ignored and partial data will be returned if it's enabled. 0 disables timeout.").Default("0ms")) - m[comp.String()] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, tracer opentracing.Tracer, _ bool) error { + m[comp.String()] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, tracer opentracing.Tracer, _ <-chan struct{}, _ bool) error { selectorLset, err := parseFlagLabels(*selectorLabels) if err != nil { return errors.Wrap(err, "parse federation labels") @@ -160,6 +165,7 @@ func registerQuery(m map[string]setupFunc, app *kingpin.Application) { *dnsSDResolver, time.Duration(*unhealthyStoreTimeout), time.Duration(*instantDefaultMaxSourceResolution), + *strictStores, component.Query, ) } @@ -200,14 +206,14 @@ func runQuery( dnsSDResolver string, unhealthyStoreTimeout time.Duration, instantDefaultMaxSourceResolution time.Duration, + strictStores []string, comp component.Component, ) error { // TODO(bplotka in PR #513 review): Move arguments into struct. - duplicatedStores := prometheus.NewCounter(prometheus.CounterOpts{ + duplicatedStores := promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_query_duplicated_store_addresses_total", Help: "The number of times a duplicated store addresses is detected from the different configs in query", }) - reg.MustRegister(duplicatedStores) dialOpts, err := extgrpc.StoreClientGRPCOpts(logger, reg, tracer, secure, cert, key, caCert, serverName) if err != nil { @@ -221,14 +227,24 @@ func runQuery( dns.ResolverType(dnsSDResolver), ) + for _, store := range strictStores { + if dns.IsDynamicNode(store) { + return errors.Errorf("%s is a dynamically specified store i.e. it uses SD and that is not permitted under strict mode. Use --store for this", store) + } + } + var ( stores = query.NewStoreSet( logger, reg, func() (specs []query.StoreSpec) { - // Add DNS resolved addresses from static flags and file SD. + // Add DNS resolved addresses. for _, addr := range dnsProvider.Addresses() { - specs = append(specs, query.NewGRPCStoreSpec(addr)) + specs = append(specs, query.NewGRPCStoreSpec(addr, false)) + } + // Add strict & static nodes. + for _, addr := range strictStores { + specs = append(specs, query.NewGRPCStoreSpec(addr, true)) } specs = removeDuplicateStoreSpecs(logger, duplicatedStores, specs) @@ -317,28 +333,27 @@ func runQuery( statusProber := prober.Combine( httpProbe, grpcProbe, - prober.NewInstrumentation(comp, logger, reg), + prober.NewInstrumentation(comp, logger, extprom.WrapRegistererWithPrefix("thanos_", reg)), ) // Start query API + UI HTTP server. { router := route.New() + // RoutePrefix must always start with '/'. + webRoutePrefix = "/" + strings.Trim(webRoutePrefix, "/") + // Redirect from / to /webRoutePrefix. - if webRoutePrefix != "" { + if webRoutePrefix != "/" { router.Get("/", func(w http.ResponseWriter, r *http.Request) { http.Redirect(w, r, webRoutePrefix, http.StatusFound) }) - } - - flagsMap := map[string]string{ - // TODO(bplotka in PR #513 review): pass all flags, not only the flags needed by prefix rewriting. - "web.external-prefix": webExternalPrefix, - "web.prefix-header": webPrefixHeaderName, + router = router.WithPrefix(webRoutePrefix) } ins := extpromhttp.NewInstrumentationMiddleware(reg) - ui.NewQueryUI(logger, reg, stores, flagsMap).Register(router.WithPrefix(webRoutePrefix), ins) + // TODO(bplotka in PR #513 review): pass all flags, not only the flags needed by prefix rewriting. + ui.NewQueryUI(logger, reg, stores, webExternalPrefix, webPrefixHeaderName).Register(router, ins) api := v1.NewAPI(logger, reg, stores, engine, queryableCreator, enableAutodownsampling, enablePartialResponse, replicaLabels, instantDefaultMaxSourceResolution) diff --git a/cmd/thanos/receive.go b/cmd/thanos/receive.go index 6f5e2386189..2296e4649eb 100644 --- a/cmd/thanos/receive.go +++ b/cmd/thanos/receive.go @@ -24,6 +24,7 @@ import ( "github.com/thanos-io/thanos/pkg/component" "github.com/thanos-io/thanos/pkg/extflag" "github.com/thanos-io/thanos/pkg/extgrpc" + "github.com/thanos-io/thanos/pkg/extprom" "github.com/thanos-io/thanos/pkg/objstore/client" "github.com/thanos-io/thanos/pkg/prober" "github.com/thanos-io/thanos/pkg/receive" @@ -81,7 +82,7 @@ func registerReceive(m map[string]setupFunc, app *kingpin.Application) { walCompression := cmd.Flag("tsdb.wal-compression", "Compress the tsdb WAL.").Default("true").Bool() - m[comp.String()] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, tracer opentracing.Tracer, _ bool) error { + m[comp.String()] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, tracer opentracing.Tracer, _ <-chan struct{}, _ bool) error { lset, err := parseFlagLabels(*labelStrs) if err != nil { return errors.Wrap(err, "parse labels") @@ -190,10 +191,6 @@ func runReceive( if err != nil { return err } - rwTLSClientConfig, err := tls.NewClientConfig(logger, rwClientCert, rwClientKey, rwClientServerCA, rwClientServerName) - if err != nil { - return err - } dialOpts, err := extgrpc.StoreClientGRPCOpts(logger, reg, tracer, rwServerCert != "", rwClientCert, rwClientKey, rwClientServerCA, rwClientServerName) if err != nil { return err @@ -208,7 +205,6 @@ func runReceive( ReplicationFactor: replicationFactor, Tracer: tracer, TLSConfig: rwTLSConfig, - TLSClientConfig: rwTLSClientConfig, DialOpts: dialOpts, }) @@ -217,7 +213,7 @@ func runReceive( statusProber := prober.Combine( httpProbe, grpcProbe, - prober.NewInstrumentation(comp, logger, prometheus.WrapRegistererWithPrefix("thanos_", reg)), + prober.NewInstrumentation(comp, logger, extprom.WrapRegistererWithPrefix("thanos_", reg)), ) confContentYaml, err := objStoreConfig.Content() @@ -284,6 +280,9 @@ func runReceive( if !ok { return nil } + + level.Info(logger).Log("msg", "updating DB") + if err := db.Flush(); err != nil { return errors.Wrap(err, "flushing storage") } @@ -298,7 +297,7 @@ func runReceive( localStorage.Set(db.Get(), startTimeMargin) webHandler.SetWriter(receive.NewWriter(log.With(logger, "component", "receive-writer"), localStorage)) statusProber.Ready() - level.Info(logger).Log("msg", "server is ready to receive web requests.") + level.Info(logger).Log("msg", "server is ready to receive web requests") dbReady <- struct{}{} } } @@ -315,11 +314,17 @@ func runReceive( // In the single-node case, which has no configuration // watcher, we close the chan ourselves. updates := make(chan receive.Hashring, 1) + if cw != nil { + // Check the hashring configuration on before running the watcher. + if err := cw.ValidateConfig(); err != nil { + close(updates) + return errors.Wrap(err, "failed to validate hashring configuration file") + } + ctx, cancel := context.WithCancel(context.Background()) g.Add(func() error { - receive.HashringFromConfig(ctx, updates, cw) - return nil + return receive.HashringFromConfig(ctx, updates, cw) }, func(error) { cancel() }) @@ -405,17 +410,15 @@ func runReceive( ) startGRPC <- struct{}{} } - return nil - }, func(err error) { if s != nil { s.Shutdown(err) } - }) + return nil + }, func(error) {}) // We need to be able to start and stop the gRPC server // whenever the DB changes, thus it needs its own run group. g.Add(func() error { for range startGRPC { - level.Info(logger).Log("msg", "listening for StoreAPI gRPC", "address", grpcBindAddr) if err := s.ListenAndServe(); err != nil { return errors.Wrap(err, "serve gRPC") } diff --git a/cmd/thanos/rule.go b/cmd/thanos/rule.go index 7357f7ae485..3c021dec2b6 100644 --- a/cmd/thanos/rule.go +++ b/cmd/thanos/rule.go @@ -8,13 +8,10 @@ import ( "math/rand" "net/http" "net/url" - "os" - "os/signal" "path" "path/filepath" "strconv" "strings" - "syscall" "time" "github.com/go-kit/kit/log" @@ -23,12 +20,14 @@ import ( "github.com/opentracing/opentracing-go" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/common/model" "github.com/prometheus/common/route" "github.com/prometheus/prometheus/pkg/labels" "github.com/prometheus/prometheus/promql" "github.com/prometheus/prometheus/rules" "github.com/prometheus/prometheus/storage/tsdb" + tsdberrors "github.com/prometheus/prometheus/tsdb/errors" "github.com/prometheus/prometheus/util/strutil" "github.com/thanos-io/thanos/pkg/alert" "github.com/thanos-io/thanos/pkg/block/metadata" @@ -116,7 +115,7 @@ func registerRule(m map[string]setupFunc, app *kingpin.Application) { dnsSDResolver := cmd.Flag("query.sd-dns-resolver", "Resolver to use. Possible options: [golang, miekgdns]"). Default("golang").Hidden().String() - m[comp.String()] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, tracer opentracing.Tracer, _ bool) error { + m[comp.String()] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, tracer opentracing.Tracer, reload <-chan struct{}, _ bool) error { lset, err := parseFlagLabels(*labelStrs) if err != nil { return errors.Wrap(err, "parse labels") @@ -168,6 +167,7 @@ func registerRule(m map[string]setupFunc, app *kingpin.Application) { logger, reg, tracer, + reload, lset, *alertmgrs, *alertmgrsTimeout, @@ -202,6 +202,50 @@ func registerRule(m map[string]setupFunc, app *kingpin.Application) { } } +// RuleMetrics defines thanos rule metrics. +type RuleMetrics struct { + configSuccess prometheus.Gauge + configSuccessTime prometheus.Gauge + duplicatedQuery prometheus.Counter + rulesLoaded *prometheus.GaugeVec + ruleEvalWarnings *prometheus.CounterVec +} + +func newRuleMetrics(reg *prometheus.Registry) *RuleMetrics { + m := new(RuleMetrics) + + factory := promauto.With(reg) + m.configSuccess = factory.NewGauge(prometheus.GaugeOpts{ + Name: "thanos_rule_config_last_reload_successful", + Help: "Whether the last configuration reload attempt was successful.", + }) + m.configSuccessTime = factory.NewGauge(prometheus.GaugeOpts{ + Name: "thanos_rule_config_last_reload_success_timestamp_seconds", + Help: "Timestamp of the last successful configuration reload.", + }) + m.duplicatedQuery = factory.NewCounter(prometheus.CounterOpts{ + Name: "thanos_rule_duplicated_query_addresses_total", + Help: "The number of times a duplicated query addresses is detected from the different configs in rule.", + }) + m.rulesLoaded = factory.NewGaugeVec( + prometheus.GaugeOpts{ + Name: "thanos_rule_loaded_rules", + Help: "Loaded rules partitioned by file and group.", + }, + []string{"strategy", "file", "group"}, + ) + m.ruleEvalWarnings = factory.NewCounterVec( + prometheus.CounterOpts{ + Name: "thanos_rule_evaluation_with_warnings_total", + Help: "The total number of rule evaluation that were successful but had warnings which can indicate partial error.", + }, []string{"strategy"}, + ) + m.ruleEvalWarnings.WithLabelValues(strings.ToLower(storepb.PartialResponseStrategy_ABORT.String())) + m.ruleEvalWarnings.WithLabelValues(strings.ToLower(storepb.PartialResponseStrategy_WARN.String())) + + return m +} + // runRule runs a rule evaluation component that continuously evaluates alerting and recording // rules. It sends alert notifications and writes TSDB data for results like a regular Prometheus server. func runRule( @@ -209,6 +253,7 @@ func runRule( logger log.Logger, reg *prometheus.Registry, tracer opentracing.Tracer, + reloadSignal <-chan struct{}, lset labels.Labels, alertmgrURLs []string, alertmgrsTimeout time.Duration, @@ -240,52 +285,19 @@ func runRule( dnsSDResolver string, comp component.Component, ) error { - configSuccess := prometheus.NewGauge(prometheus.GaugeOpts{ - Name: "thanos_rule_config_last_reload_successful", - Help: "Whether the last configuration reload attempt was successful.", - }) - configSuccessTime := prometheus.NewGauge(prometheus.GaugeOpts{ - Name: "thanos_rule_config_last_reload_success_timestamp_seconds", - Help: "Timestamp of the last successful configuration reload.", - }) - duplicatedQuery := prometheus.NewCounter(prometheus.CounterOpts{ - Name: "thanos_rule_duplicated_query_addresses_total", - Help: "The number of times a duplicated query addresses is detected from the different configs in rule", - }) - rulesLoaded := prometheus.NewGaugeVec( - prometheus.GaugeOpts{ - Name: "thanos_rule_loaded_rules", - Help: "Loaded rules partitioned by file and group", - }, - []string{"strategy", "file", "group"}, - ) - ruleEvalWarnings := prometheus.NewCounterVec( - prometheus.CounterOpts{ - Name: "thanos_rule_evaluation_with_warnings_total", - Help: "The total number of rule evaluation that were successful but had warnings which can indicate partial error.", - }, []string{"strategy"}, - ) - ruleEvalWarnings.WithLabelValues(strings.ToLower(storepb.PartialResponseStrategy_ABORT.String())) - ruleEvalWarnings.WithLabelValues(strings.ToLower(storepb.PartialResponseStrategy_WARN.String())) - - reg.MustRegister(configSuccess) - reg.MustRegister(configSuccessTime) - reg.MustRegister(duplicatedQuery) - reg.MustRegister(rulesLoaded) - reg.MustRegister(ruleEvalWarnings) + metrics := newRuleMetrics(reg) var queryCfg []query.Config + var err error if len(queryConfigYAML) > 0 { - var err error queryCfg, err = query.LoadConfigs(queryConfigYAML) if err != nil { return err } } else { - for _, addr := range queryAddrs { - if addr == "" { - return errors.New("static querier address cannot be empty") - } + queryCfg, err = query.BuildQueryConfig(queryAddrs) + if err != nil { + return err } // Build the query configuration from the legacy query flags. @@ -295,16 +307,15 @@ func runRule( Files: querySDFiles, RefreshInterval: model.Duration(querySDInterval), }) - } - queryCfg = append(queryCfg, - query.Config{ - EndpointsConfig: http_util.EndpointsConfig{ - Scheme: "http", - StaticAddresses: queryAddrs, - FileSDConfigs: fileSDConfigs, + queryCfg = append(queryCfg, + query.Config{ + EndpointsConfig: http_util.EndpointsConfig{ + Scheme: "http", + FileSDConfigs: fileSDConfigs, + }, }, - }, - ) + ) + } } queryProvider := dns.NewProvider( @@ -436,7 +447,7 @@ func runRule( opts := opts opts.Registerer = extprom.WrapRegistererWith(prometheus.Labels{"strategy": strings.ToLower(s.String())}, reg) opts.Context = ctx - opts.QueryFunc = queryFunc(logger, queryClients, duplicatedQuery, ruleEvalWarnings, s) + opts.QueryFunc = queryFunc(logger, queryClients, metrics.duplicatedQuery, metrics.ruleEvalWarnings, s) mgr := rules.NewManager(&opts) ruleMgr.SetRuleManager(s, mgr) @@ -459,7 +470,9 @@ func runRule( g.Add(func() error { for { - sdr.Send(ctx, alertQ.Pop(ctx.Done())) + tracing.DoInSpan(ctx, "/send_alerts", func(ctx context.Context) { + sdr.Send(ctx, alertQ.Pop(ctx.Done())) + }) select { case <-ctx.Done(): @@ -473,72 +486,33 @@ func runRule( } // Handle reload and termination interrupts. - reload := make(chan struct{}, 1) + reloadWebhandler := make(chan chan error) { - cancel := make(chan struct{}) - reload <- struct{}{} // Initial reload. - + ctx, cancel := context.WithCancel(context.Background()) g.Add(func() error { - for { - select { - case <-cancel: - return errors.New("canceled") - case <-reload: - } - - level.Debug(logger).Log("msg", "configured rule files", "files", strings.Join(ruleFiles, ",")) - var files []string - for _, pat := range ruleFiles { - fs, err := filepath.Glob(pat) - if err != nil { - // The only error can be a bad pattern. - level.Error(logger).Log("msg", "retrieving rule files failed. Ignoring file.", "pattern", pat, "err", err) - continue - } - - files = append(files, fs...) - } - - level.Info(logger).Log("msg", "reload rule files", "numFiles", len(files)) - - if err := ruleMgr.Update(evalInterval, files); err != nil { - configSuccess.Set(0) - level.Error(logger).Log("msg", "reloading rules failed", "err", err) - continue - } - - configSuccess.Set(1) - configSuccessTime.SetToCurrentTime() - - rulesLoaded.Reset() - for _, group := range ruleMgr.RuleGroups() { - rulesLoaded.WithLabelValues(group.PartialResponseStrategy.String(), group.File(), group.Name()).Set(float64(len(group.Rules()))) - } - + // Initialize rules. + if err := reloadRules(logger, ruleFiles, ruleMgr, evalInterval, metrics); err != nil { + level.Error(logger).Log("msg", "initialize rules failed", "err", err) + return err } - }, func(error) { - close(cancel) - }) - } - { - cancel := make(chan struct{}) - - g.Add(func() error { - c := make(chan os.Signal, 1) for { - signal.Notify(c, syscall.SIGHUP) select { - case <-c: - select { - case reload <- struct{}{}: - default: + case <-reloadSignal: + if err := reloadRules(logger, ruleFiles, ruleMgr, evalInterval, metrics); err != nil { + level.Error(logger).Log("msg", "reload rules by sighup failed", "err", err) + } + case reloadMsg := <-reloadWebhandler: + err := reloadRules(logger, ruleFiles, ruleMgr, evalInterval, metrics) + if err != nil { + level.Error(logger).Log("msg", "reload rules by webhandler failed", "err", err) } - case <-cancel: - return errors.New("canceled") + reloadMsg <- err + case <-ctx.Done(): + return ctx.Err() } } }, func(error) { - close(cancel) + cancel() }) } @@ -547,7 +521,7 @@ func runRule( statusProber := prober.Combine( httpProbe, grpcProbe, - prober.NewInstrumentation(comp, logger, prometheus.WrapRegistererWithPrefix("thanos_", reg)), + prober.NewInstrumentation(comp, logger, extprom.WrapRegistererWithPrefix("thanos_", reg)), ) // Start gRPC server. @@ -577,26 +551,29 @@ func runRule( { router := route.New() + // RoutePrefix must always start with '/'. + webRoutePrefix = "/" + strings.Trim(webRoutePrefix, "/") + // Redirect from / to /webRoutePrefix. - if webRoutePrefix != "" { + if webRoutePrefix != "/" { router.Get("/", func(w http.ResponseWriter, r *http.Request) { http.Redirect(w, r, webRoutePrefix, http.StatusFound) }) + router = router.WithPrefix(webRoutePrefix) } router.WithPrefix(webRoutePrefix).Post("/-/reload", func(w http.ResponseWriter, r *http.Request) { - reload <- struct{}{} + reloadMsg := make(chan error) + reloadWebhandler <- reloadMsg + if err := <-reloadMsg; err != nil { + http.Error(w, err.Error(), http.StatusInternalServerError) + } }) - flagsMap := map[string]string{ - // TODO(bplotka in PR #513 review): pass all flags, not only the flags needed by prefix rewriting. - "web.external-prefix": webExternalPrefix, - "web.prefix-header": webPrefixHeaderName, - } - ins := extpromhttp.NewInstrumentationMiddleware(reg) - ui.NewRuleUI(logger, reg, ruleMgr, alertQueryURL.String(), flagsMap).Register(router.WithPrefix(webRoutePrefix), ins) + // TODO(bplotka in PR #513 review): pass all flags, not only the flags needed by prefix rewriting. + ui.NewRuleUI(logger, reg, ruleMgr, alertQueryURL.String(), webExternalPrefix, webPrefixHeaderName).Register(router, ins) api := v1.NewAPI(logger, reg, ruleMgr) api.Register(router.WithPrefix(path.Join(webRoutePrefix, "/api/v1")), tracer, logger, ins) @@ -733,18 +710,18 @@ func queryFunc( promClients = append(promClients, promclient.NewClient(logger, q)) } - return func(ctx context.Context, q string, t time.Time) (promql.Vector, error) { + return func(ctx context.Context, q string, t time.Time) (v promql.Vector, err error) { for _, i := range rand.Perm(len(queriers)) { promClient := promClients[i] endpoints := removeDuplicateQueryEndpoints(logger, duplicatedQuery, queriers[i].Endpoints()) for _, i := range rand.Perm(len(endpoints)) { - span, ctx := tracing.StartSpan(ctx, spanID) - v, warns, err := promClient.PromqlQueryInstant(ctx, endpoints[i], q, t, promclient.QueryOptions{ - Deduplicate: true, - PartialResponseStrategy: partialResponseStrategy, + var warns []string + tracing.DoInSpan(ctx, spanID, func(ctx context.Context) { + v, warns, err = promClient.PromqlQueryInstant(ctx, endpoints[i], q, t, promclient.QueryOptions{ + Deduplicate: true, + PartialResponseStrategy: partialResponseStrategy, + }) }) - span.Finish() - if err != nil { level.Error(logger).Log("err", err, "query", q) continue @@ -757,7 +734,7 @@ func queryFunc( return v, nil } } - return nil, errors.Errorf("no query API server reachable") + return nil, errors.New("no query API server reachable") } } @@ -779,3 +756,42 @@ func addDiscoveryGroups(g *run.Group, c *http_util.Client, interval time.Duratio cancel() }) } + +func reloadRules(logger log.Logger, + ruleFiles []string, + ruleMgr *thanosrule.Manager, + evalInterval time.Duration, + metrics *RuleMetrics) error { + level.Debug(logger).Log("msg", "configured rule files", "files", strings.Join(ruleFiles, ",")) + var ( + errs tsdberrors.MultiError + files []string + ) + for _, pat := range ruleFiles { + fs, err := filepath.Glob(pat) + if err != nil { + // The only error can be a bad pattern. + errs.Add(errors.Wrapf(err, "retrieving rule files failed. Ignoring file. pattern %s", pat)) + continue + } + + files = append(files, fs...) + } + + level.Info(logger).Log("msg", "reload rule files", "numFiles", len(files)) + + if err := ruleMgr.Update(evalInterval, files); err != nil { + metrics.configSuccess.Set(0) + errs.Add(errors.Wrap(err, "reloading rules failed")) + return errs.Err() + } + + metrics.configSuccess.Set(1) + metrics.configSuccessTime.Set(float64(time.Now().UnixNano()) / 1e9) + + metrics.rulesLoaded.Reset() + for _, group := range ruleMgr.RuleGroups() { + metrics.rulesLoaded.WithLabelValues(group.PartialResponseStrategy.String(), group.File(), group.Name()).Set(float64(len(group.Rules()))) + } + return errs.Err() +} diff --git a/cmd/thanos/sidecar.go b/cmd/thanos/sidecar.go index 14d559c49fd..caed499963d 100644 --- a/cmd/thanos/sidecar.go +++ b/cmd/thanos/sidecar.go @@ -17,12 +17,14 @@ import ( "github.com/opentracing/opentracing-go" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/common/model" "github.com/prometheus/prometheus/pkg/labels" "github.com/thanos-io/thanos/pkg/block/metadata" "github.com/thanos-io/thanos/pkg/component" "github.com/thanos-io/thanos/pkg/extflag" "github.com/thanos-io/thanos/pkg/exthttp" + "github.com/thanos-io/thanos/pkg/extprom" thanosmodel "github.com/thanos-io/thanos/pkg/model" "github.com/thanos-io/thanos/pkg/objstore/client" "github.com/thanos-io/thanos/pkg/prober" @@ -75,7 +77,7 @@ func registerSidecar(m map[string]setupFunc, app *kingpin.Application) { minTime := thanosmodel.TimeOrDuration(cmd.Flag("min-time", "Start of time range limit to serve. Thanos sidecar will serve only metrics, which happened later than this value. Option can be a constant time in RFC3339 format or time duration relative to current time, such as -1d or 2h45m. Valid duration units are ms, s, m, h, d, w, y."). Default("0000-01-01T00:00:00Z")) - m[component.Sidecar.String()] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, tracer opentracing.Tracer, _ bool) error { + m[component.Sidecar.String()] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, tracer opentracing.Tracer, _ <-chan struct{}, _ bool) error { rl := reloader.New( log.With(logger, "component", "reloader"), reloader.ReloadURLFromBase(*promURL), @@ -162,7 +164,7 @@ func runSidecar( statusProber := prober.Combine( httpProbe, grpcProbe, - prober.NewInstrumentation(comp, logger, prometheus.WrapRegistererWithPrefix("thanos_", reg)), + prober.NewInstrumentation(comp, logger, extprom.WrapRegistererWithPrefix("thanos_", reg)), ) srv := httpserver.New(logger, reg, comp, httpProbe, @@ -183,15 +185,14 @@ func runSidecar( // Setup all the concurrent groups. { - promUp := prometheus.NewGauge(prometheus.GaugeOpts{ + promUp := promauto.With(reg).NewGauge(prometheus.GaugeOpts{ Name: "thanos_sidecar_prometheus_up", Help: "Boolean indicator whether the sidecar can reach its Prometheus peer.", }) - lastHeartbeat := prometheus.NewGauge(prometheus.GaugeOpts{ + lastHeartbeat := promauto.With(reg).NewGauge(prometheus.GaugeOpts{ Name: "thanos_sidecar_last_heartbeat_success_time_seconds", Help: "Second timestamp of the last successful heartbeat.", }) - reg.MustRegister(promUp, lastHeartbeat) ctx, cancel := context.WithCancel(context.Background()) g.Add(func() error { diff --git a/cmd/thanos/store.go b/cmd/thanos/store.go index bb2a547d68d..54421d6e490 100644 --- a/cmd/thanos/store.go +++ b/cmd/thanos/store.go @@ -5,6 +5,7 @@ package main import ( "context" + "path" "time" "github.com/go-kit/kit/log" @@ -13,11 +14,13 @@ import ( "github.com/opentracing/opentracing-go" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/common/route" "github.com/prometheus/prometheus/pkg/relabel" "github.com/thanos-io/thanos/pkg/block" "github.com/thanos-io/thanos/pkg/component" "github.com/thanos-io/thanos/pkg/extflag" "github.com/thanos-io/thanos/pkg/extprom" + extpromhttp "github.com/thanos-io/thanos/pkg/extprom/http" "github.com/thanos-io/thanos/pkg/model" "github.com/thanos-io/thanos/pkg/objstore/client" "github.com/thanos-io/thanos/pkg/prober" @@ -27,6 +30,7 @@ import ( "github.com/thanos-io/thanos/pkg/store" storecache "github.com/thanos-io/thanos/pkg/store/cache" "github.com/thanos-io/thanos/pkg/tls" + "github.com/thanos-io/thanos/pkg/ui" "gopkg.in/alecthomas/kingpin.v2" yaml "gopkg.in/yaml.v2" ) @@ -78,10 +82,27 @@ func registerStore(m map[string]setupFunc, app *kingpin.Application) { selectorRelabelConf := regSelectorRelabelFlags(cmd) - enableIndexHeader := cmd.Flag("experimental.enable-index-header", "If true, Store Gateway will recreate index-header instead of index-cache.json for each block. This will replace index-cache.json permanently once it will be out of experimental stage."). + // TODO(bwplotka): Remove in v0.13.0 if no issues. + disableIndexHeader := cmd.Flag("store.disable-index-header", "If specified, Store Gateway will use index-cache.json for each block instead of recreating binary index-header"). Hidden().Default("false").Bool() - m[component.Store.String()] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, tracer opentracing.Tracer, debugLogging bool) error { + enablePostingsCompression := cmd.Flag("experimental.enable-index-cache-postings-compression", "If true, Store Gateway will reencode and compress postings before storing them into cache. Compressed postings take about 10% of the original size."). + Hidden().Default("false").Bool() + + consistencyDelay := modelDuration(cmd.Flag("consistency-delay", "Minimum age of all blocks before they are being read. Set it to safe value (e.g 30m) if your object storage is eventually consistent. GCS and S3 are (roughly) strongly consistent."). + Default("0s")) + + ignoreDeletionMarksDelay := modelDuration(cmd.Flag("ignore-deletion-marks-delay", "Duration after which the blocks marked for deletion will be filtered out while fetching blocks. "+ + "The idea of ignore-deletion-marks-delay is to ignore blocks that are marked for deletion with some delay. This ensures store can still serve blocks that are meant to be deleted but do not have a replacement yet. "+ + "If delete-delay duration is provided to compactor or bucket verify component, it will upload deletion-mark.json file to mark after what duration the block should be deleted rather than deleting the block straight away. "+ + "If delete-delay is non-zero for compactor or bucket verify component, ignore-deletion-marks-delay should be set to (delete-delay)/2 so that blocks marked for deletion are filtered out while fetching blocks before being deleted from bucket. "+ + "Default is 24h, half of the default value for --delete-delay on compactor."). + Default("24h")) + + webExternalPrefix := cmd.Flag("web.external-prefix", "Static prefix for all HTML links and redirect URLs in the bucket web UI interface. Actual endpoints are still served on / or the web.route-prefix. This allows thanos bucket web UI to be served behind a reverse proxy that strips a URL sub-path.").Default("").String() + webPrefixHeaderName := cmd.Flag("web.prefix-header", "Name of HTTP request header used for dynamic prefixing of UI links and redirects. This option is ignored if web.external-prefix argument is set. Security risk: enable this option only if a reverse proxy in front of thanos is resetting the header. The --web.prefix-header=X-Forwarded-Prefix option can be useful, for example, if Thanos UI is served via Traefik reverse proxy with PathPrefixStrip option enabled, which sends the stripped prefix value in X-Forwarded-Prefix header. This allows thanos UI to be served on a sub-path.").Default("").String() + + m[component.Store.String()] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, tracer opentracing.Tracer, _ <-chan struct{}, debugLogging bool) error { if minTime.PrometheusTimestamp() > maxTime.PrometheusTimestamp() { return errors.Errorf("invalid argument: --min-time '%s' can't be greater than --max-time '%s'", minTime, maxTime) @@ -104,7 +125,7 @@ func registerStore(m map[string]setupFunc, app *kingpin.Application) { uint64(*indexCacheSize), uint64(*chunkPoolSize), uint64(*maxSampleCount), - int(*maxConcurrent), + *maxConcurrent, component.Store, debugLogging, *syncInterval, @@ -115,7 +136,12 @@ func registerStore(m map[string]setupFunc, app *kingpin.Application) { }, selectorRelabelConf, *advertiseCompatibilityLabel, - *enableIndexHeader, + *disableIndexHeader, + *enablePostingsCompression, + time.Duration(*consistencyDelay), + time.Duration(*ignoreDeletionMarksDelay), + *webExternalPrefix, + *webPrefixHeaderName, ) } } @@ -131,14 +157,9 @@ func runStore( dataDir string, grpcBindAddr string, grpcGracePeriod time.Duration, - grpcCert string, - grpcKey string, - grpcClientCA string, - httpBindAddr string, + grpcCert, grpcKey, grpcClientCA, httpBindAddr string, httpGracePeriod time.Duration, - indexCacheSizeBytes uint64, - chunkPoolSizeBytes uint64, - maxSampleCount uint64, + indexCacheSizeBytes, chunkPoolSizeBytes, maxSampleCount uint64, maxConcurrency int, component component.Component, verbose bool, @@ -146,15 +167,17 @@ func runStore( blockSyncConcurrency int, filterConf *store.FilterConfig, selectorRelabelConf *extflag.PathOrContent, - advertiseCompatibilityLabel bool, - enableIndexHeader bool, + advertiseCompatibilityLabel, disableIndexHeader, enablePostingsCompression bool, + consistencyDelay time.Duration, + ignoreDeletionMarksDelay time.Duration, + externalPrefix, prefixHeader string, ) error { grpcProbe := prober.NewGRPC() httpProbe := prober.NewHTTP() statusProber := prober.Combine( httpProbe, grpcProbe, - prober.NewInstrumentation(component, logger, prometheus.WrapRegistererWithPrefix("thanos_", reg)), + prober.NewInstrumentation(component, logger, extprom.WrapRegistererWithPrefix("thanos_", reg)), ) srv := httpserver.New(logger, reg, component, httpProbe, @@ -212,7 +235,7 @@ func runStore( indexCache, err = storecache.NewIndexCache(logger, indexCacheContentYaml, reg) } else { indexCache, err = storecache.NewInMemoryIndexCacheWithConfig(logger, reg, storecache.InMemoryIndexCacheConfig{ - MaxSize: storecache.Bytes(indexCacheSizeBytes), + MaxSize: model.Bytes(indexCacheSizeBytes), MaxItemSize: storecache.DefaultInMemoryIndexCacheConfig.MaxItemSize, }) } @@ -220,16 +243,20 @@ func runStore( return errors.Wrap(err, "create index cache") } + ignoreDeletionMarkFilter := block.NewIgnoreDeletionMarkFilter(logger, bkt, ignoreDeletionMarksDelay) metaFetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, dataDir, extprom.WrapRegistererWithPrefix("thanos_", reg), - block.NewTimePartitionMetaFilter(filterConf.MinTime, filterConf.MaxTime).Filter, - block.NewLabelShardedMetaFilter(relabelConfig).Filter, - block.NewDeduplicateFilter().Filter, - ) + []block.MetadataFilter{ + block.NewTimePartitionMetaFilter(filterConf.MinTime, filterConf.MaxTime), + block.NewLabelShardedMetaFilter(relabelConfig), + block.NewConsistencyDelayMetaFilter(logger, consistencyDelay, extprom.WrapRegistererWithPrefix("thanos_", reg)), + ignoreDeletionMarkFilter, + block.NewDeduplicateFilter(), + }, nil) if err != nil { return errors.Wrap(err, "meta fetcher") } - if enableIndexHeader { + if !disableIndexHeader { level.Info(logger).Log("msg", "index-header instead of index-cache.json enabled") } bs, err := store.NewBucketStore( @@ -246,7 +273,8 @@ func runStore( blockSyncConcurrency, filterConf, advertiseCompatibilityLabel, - enableIndexHeader, + !disableIndexHeader, + enablePostingsCompression, ) if err != nil { return errors.Wrap(err, "create object storage store") @@ -303,6 +331,14 @@ func runStore( s.Shutdown(err) }) } + // Add bucket UI for loaded blocks. + { + r := route.New() + compactorView := ui.NewBucketUI(logger, "", path.Join(externalPrefix, "/loaded"), prefixHeader) + compactorView.Register(r, extpromhttp.NewInstrumentationMiddleware(reg)) + metaFetcher.UpdateOnChange(compactorView.Set) + srv.Handle("/", r) + } level.Info(logger).Log("msg", "starting store node") return nil diff --git a/docs/components/_index.md b/docs/components/_index.md new file mode 100644 index 00000000000..869b07d88a7 --- /dev/null +++ b/docs/components/_index.md @@ -0,0 +1,3 @@ +--- +title: "Components:" +--- diff --git a/docs/components/bucket.md b/docs/components/bucket.md index 20efeeea475..fcb492b30fd 100644 --- a/docs/components/bucket.md +++ b/docs/components/bucket.md @@ -26,11 +26,12 @@ config: Bucket can be extended to add more subcommands that will be helpful when working with object storage buckets by adding a new command within `/cmd/thanos/bucket.go`. - ## Deployment + ## Flags -[embedmd]:# (flags/bucket.txt $) +[embedmd]: # "flags/bucket.txt $" + ```$ usage: thanos bucket [] [ ...] @@ -74,6 +75,13 @@ Subcommands: bucket web [] Web interface for remote storage bucket + bucket replicate [] + Replicate data from one object storage to another. NOTE: Currently it works + only with Thanos blocks (meta.json has to have Thanos metadata). + + bucket downsample [] + continuously downsamples blocks in an object store bucket + ``` @@ -91,7 +99,8 @@ Example: $ thanos bucket web --objstore.config-file="..." ``` -[embedmd]:# (flags/bucket_web.txt) +[embedmd]: # "flags/bucket_web.txt" + ```txt usage: thanos bucket web [] @@ -163,7 +172,8 @@ Example: $ thanos bucket verify --objstore.config-file="..." ``` -[embedmd]:# (flags/bucket_verify.txt) +[embedmd]: # "flags/bucket_verify.txt" + ```txt usage: thanos bucket verify [] @@ -215,7 +225,11 @@ Flags: Block IDs to verify (and optionally repair) only. If none is specified, all blocks will be verified. Repeated field - + --delete-delay=0s Duration after which blocks marked for deletion would be deleted permanently from source bucket by compactor component. + If delete-delay is non zero, blocks will be marked for deletion and compactor component is required to delete blocks from source bucket. + If delete-delay is 0, blocks will be deleted straight away. Use this if you want to get rid of or move the block immediately. + Note that deleting blocks immediately can cause query failures, if store gateway still has the block + loaded, or compactor is ignoring the deletion because it's compacting the block at the same time. ``` ### ls @@ -228,7 +242,8 @@ Example: $ thanos bucket ls -o json --objstore.config-file="..." ``` -[embedmd]:# (flags/bucket_ls.txt) +[embedmd]: # "flags/bucket_ls.txt" + ```txt usage: thanos bucket ls [] @@ -269,11 +284,13 @@ Flags: `bucket inspect` is used to inspect buckets in a detailed way using stdout in ASCII table format. Example: + ``` $ thanos bucket inspect -l environment=\"prod\" --objstore.config-file="..." ``` -[embedmd]:# (flags/bucket_inspect.txt) +[embedmd]: # "flags/bucket_inspect.txt" + ```txt usage: thanos bucket inspect [] @@ -315,3 +332,141 @@ Flags: --timeout=5m Timeout to download metadata from remote storage ``` + +### replicate + +`bucket replicate` is used to replicate buckets from one object storage to another. + +NOTE: Currently it works only with Thanos blocks (meta.json has to have Thanos metadata). + +Example: +``` +$ thanos bucket replicate --objstore.config-file="..." --objstore-to.config="..." +``` + +[embedmd]:# (flags/bucket_replicate.txt) +```txt +usage: thanos bucket replicate [] + +Replicate data from one object storage to another. NOTE: Currently it works only +with Thanos blocks (meta.json has to have Thanos metadata). + +Flags: + -h, --help Show context-sensitive help (also try + --help-long and --help-man). + --version Show application version. + --log.level=info Log filtering level. + --log.format=logfmt Log format to use. Possible options: logfmt or + json. + --tracing.config-file= + Path to YAML file with tracing configuration. + See format details: + https://thanos.io/tracing.md/#configuration + --tracing.config= + Alternative to 'tracing.config-file' flag + (lower priority). Content of YAML file with + tracing configuration. See format details: + https://thanos.io/tracing.md/#configuration + --objstore.config-file= + Path to YAML file that contains object store + configuration. See format details: + https://thanos.io/storage.md/#configuration + --objstore.config= + Alternative to 'objstore.config-file' flag + (lower priority). Content of YAML file that + contains object store configuration. See format + details: + https://thanos.io/storage.md/#configuration + --http-address="0.0.0.0:10902" + Listen host:port for HTTP endpoints. + --http-grace-period=2m Time to wait after an interrupt received for + HTTP Server. + --objstore-to.config-file= + Path to YAML file that contains object store-to + configuration. See format details: + https://thanos.io/storage.md/#configuration The + object storage which replicate data to. + --objstore-to.config= + Alternative to 'objstore-to.config-file' flag + (lower priority). Content of YAML file that + contains object store-to configuration. See + format details: + https://thanos.io/storage.md/#configuration The + object storage which replicate data to. + --resolution=0 Only blocks with this resolution will be + replicated. + --compaction=1 Only blocks with this compaction level will be + replicated. + --matcher=key="value" ... Only blocks whose external labels exactly match + this matcher will be replicated. + --single-run Run replication only one time, then exit. + +``` + +### Downsample + +The downsample component of Thanos implements the downsample API on top of historical data in an object storage bucket. It continuously downsamples blocks in an object store bucket as a service. + +```bash +$ thanos downsample \ + --data-dir "/local/state/data/dir" \ + --objstore.config-file "bucket.yml" +``` + +The content of `bucket.yml`: + +```yaml +type: GCS +config: + bucket: example-bucket +``` + +#### Flags + +[embedmd]:# (flags/bucket_downsample.txt $) +```$ +usage: thanos bucket downsample [] + +continuously downsamples blocks in an object store bucket + +Flags: + -h, --help Show context-sensitive help (also try --help-long + and --help-man). + --version Show application version. + --log.level=info Log filtering level. + --log.format=logfmt Log format to use. Possible options: logfmt or + json. + --tracing.config-file= + Path to YAML file with tracing configuration. See + format details: + https://thanos.io/tracing.md/#configuration + --tracing.config= + Alternative to 'tracing.config-file' flag (lower + priority). Content of YAML file with tracing + configuration. See format details: + https://thanos.io/tracing.md/#configuration + --objstore.config-file= + Path to YAML file that contains object store + configuration. See format details: + https://thanos.io/storage.md/#configuration + --objstore.config= + Alternative to 'objstore.config-file' flag (lower + priority). Content of YAML file that contains + object store configuration. See format details: + https://thanos.io/storage.md/#configuration + --http-address="0.0.0.0:10902" + Listen host:port for HTTP endpoints. + --http-grace-period=2m Time to wait after an interrupt received for HTTP + Server. + --data-dir="./data" Data directory in which to cache blocks and + process downsamplings. + +``` + +#### Probes + +- Thanos downsample exposes two endpoints for probing. + - `/-/healthy` starts as soon as initial setup completed. + - `/-/ready` starts after all the bootstrapping completed (e.g object store bucket connection) and ready to serve traffic. + +> NOTE: Metric endpoint starts immediately so, make sure you set up readiness probe on designated HTTP `/-/ready` path. diff --git a/docs/components/compact.md b/docs/components/compact.md index edd71eb7b11..2fd3d80883f 100644 --- a/docs/components/compact.md +++ b/docs/components/compact.md @@ -11,8 +11,8 @@ It is generally not semantically concurrency safe and must be deployed as a sing It is also responsible for downsampling of data: -* creating 5m downsampling for blocks larger than **40 hours** (2d, 2w) -* creating 1h downsampling for blocks larger than **10 days** (2w). +- creating 5m downsampling for blocks larger than **40 hours** (2d, 2w) +- creating 1h downsampling for blocks larger than **10 days** (2w). Example: @@ -35,9 +35,9 @@ On-disk data is safe to delete between restarts and should be the first attempt Resolution - distance between data points on your graphs. E.g. -* raw - the same as scrape interval at the moment of data ingestion -* 5m - data point is every 5 minutes -* 1h - data point is every 1h +- raw - the same as scrape interval at the moment of data ingestion +- 5m - data point is every 5 minutes +- 1h - data point is every 1h Keep in mind, that the initial goal of downsampling is not saving disk space (Read further for elaboration on storage space consumption). The goal of downsampling is providing an opportunity to get fast results for range queries of big time intervals like months or years. In other words, if you set `--retention.resolution-raw` less then `--retention.resolution-5m` and `--retention.resolution-1h` - you might run into a problem of not being able to "zoom in" to your historical data. @@ -64,85 +64,131 @@ your Prometheus instances, so that the compactor will be able to group blocks by By _persistent_, we mean that one Prometheus instance must keep the same labels if it restarts, so that the compactor will keep compacting blocks from an instance even when a Prometheus instance goes down for some time. +## Block Deletion + +Depending on the Object Storage provider like S3, GCS, Ceph etc; we can divide the storages into strongly consistent or eventually consistent. +Since there are no consistency guarantees provided by some Object Storage providers, we have to make sure that we have a consistent lock-free way of dealing with Object Storage irrespective of the choice of object storage. + +In order to achieve this co-ordination, blocks are not deleted directly. Instead, blocks are marked for deletion by uploading +`deletion-mark.json` file for the block that was chosen to be deleted. This file contains unix time of when the block was marked for deletion. + ## Flags -[embedmd]:# (flags/compact.txt $) +[embedmd]: # "flags/compact.txt $" + ```$ usage: thanos compact [] continuously compacts blocks in an object store bucket Flags: - -h, --help Show context-sensitive help (also try --help-long - and --help-man). - --version Show application version. - --log.level=info Log filtering level. - --log.format=logfmt Log format to use. Possible options: logfmt or - json. + -h, --help Show context-sensitive help (also try + --help-long and --help-man). + --version Show application version. + --log.level=info Log filtering level. + --log.format=logfmt Log format to use. Possible options: logfmt or + json. --tracing.config-file= - Path to YAML file with tracing configuration. See - format details: - https://thanos.io/tracing.md/#configuration + Path to YAML file with tracing configuration. + See format details: + https://thanos.io/tracing.md/#configuration --tracing.config= - Alternative to 'tracing.config-file' flag (lower - priority). Content of YAML file with tracing - configuration. See format details: - https://thanos.io/tracing.md/#configuration + Alternative to 'tracing.config-file' flag (lower + priority). Content of YAML file with tracing + configuration. See format details: + https://thanos.io/tracing.md/#configuration --http-address="0.0.0.0:10902" - Listen host:port for HTTP endpoints. - --http-grace-period=2m Time to wait after an interrupt received for HTTP - Server. - --data-dir="./data" Data directory in which to cache blocks and - process compactions. + Listen host:port for HTTP endpoints. + --http-grace-period=2m Time to wait after an interrupt received for + HTTP Server. + --data-dir="./data" Data directory in which to cache blocks and + process compactions. --objstore.config-file= - Path to YAML file that contains object store - configuration. See format details: - https://thanos.io/storage.md/#configuration + Path to YAML file that contains object store + configuration. See format details: + https://thanos.io/storage.md/#configuration --objstore.config= - Alternative to 'objstore.config-file' flag (lower - priority). Content of YAML file that contains - object store configuration. See format details: - https://thanos.io/storage.md/#configuration - --consistency-delay=30m Minimum age of fresh (non-compacted) blocks - before they are being processed. Malformed blocks - older than the maximum of consistency-delay and - 48h0m0s will be removed. + Alternative to 'objstore.config-file' flag + (lower priority). Content of YAML file that + contains object store configuration. See format + details: + https://thanos.io/storage.md/#configuration + --consistency-delay=30m Minimum age of fresh (non-compacted) blocks + before they are being processed. Malformed + blocks older than the maximum of + consistency-delay and 48h0m0s will be removed. --retention.resolution-raw=0d - How long to retain raw samples in bucket. Setting - this to 0d will retain samples of this resolution - forever + How long to retain raw samples in bucket. + Setting this to 0d will retain samples of this + resolution forever --retention.resolution-5m=0d - How long to retain samples of resolution 1 (5 - minutes) in bucket. Setting this to 0d will - retain samples of this resolution forever + How long to retain samples of resolution 1 (5 + minutes) in bucket. Setting this to 0d will + retain samples of this resolution forever --retention.resolution-1h=0d - How long to retain samples of resolution 2 (1 - hour) in bucket. Setting this to 0d will retain - samples of this resolution forever - -w, --wait Do not exit after all compactions have been - processed and wait for new work. - --downsampling.disable Disables downsampling. This is not recommended as - querying long time ranges without non-downsampled - data is not efficient and useful e.g it is not - possible to render all samples for a human eye - anyway + How long to retain samples of resolution 2 (1 + hour) in bucket. Setting this to 0d will retain + samples of this resolution forever + -w, --wait Do not exit after all compactions have been + processed and wait for new work. + --wait-interval=5m Wait interval between consecutive compaction + runs and bucket refreshes. Only works when + --wait flag specified. + --downsampling.disable Disables downsampling. This is not recommended + as querying long time ranges without + non-downsampled data is not efficient and useful + e.g it is not possible to render all samples for + a human eye anyway --block-sync-concurrency=20 - Number of goroutines to use when syncing block - metadata from object storage. - --compact.concurrency=1 Number of goroutines to use when compacting - groups. + Number of goroutines to use when syncing block + metadata from object storage. + --compact.concurrency=1 Number of goroutines to use when compacting + groups. + --delete-delay=48h Time before a block marked for deletion is + deleted from bucket. If delete-delay is non + zero, blocks will be marked for deletion and + compactor component will delete blocks marked + for deletion from the bucket. If delete-delay is + 0, blocks will be deleted straight away. Note + that deleting blocks immediately can cause query + failures, if store gateway still has the block + loaded, or compactor is ignoring the deletion + because it's compacting the block at the same + time. --selector.relabel-config-file= - Path to YAML file that contains relabeling - configuration that allows selecting blocks. It - follows native Prometheus relabel-config syntax. - See format details: - https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config + Path to YAML file that contains relabeling + configuration that allows selecting blocks. It + follows native Prometheus relabel-config syntax. + See format details: + https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config --selector.relabel-config= - Alternative to 'selector.relabel-config-file' - flag (lower priority). Content of YAML file that - contains relabeling configuration that allows - selecting blocks. It follows native Prometheus - relabel-config syntax. See format details: - https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config + Alternative to 'selector.relabel-config-file' + flag (lower priority). Content of YAML file that + contains relabeling configuration that allows + selecting blocks. It follows native Prometheus + relabel-config syntax. See format details: + https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config + --web.external-prefix="" Static prefix for all HTML links and redirect + URLs in the bucket web UI interface. Actual + endpoints are still served on / or the + web.route-prefix. This allows thanos bucket web + UI to be served behind a reverse proxy that + strips a URL sub-path. + --web.prefix-header="" Name of HTTP request header used for dynamic + prefixing of UI links and redirects. This option + is ignored if web.external-prefix argument is + set. Security risk: enable this option only if a + reverse proxy in front of thanos is resetting + the header. The + --web.prefix-header=X-Forwarded-Prefix option + can be useful, for example, if Thanos UI is + served via Traefik reverse proxy with + PathPrefixStrip option enabled, which sends the + stripped prefix value in X-Forwarded-Prefix + header. This allows thanos UI to be served on a + sub-path. + --bucket-web-label=BUCKET-WEB-LABEL + Prometheus label to use as timeline title in the + bucket web UI ``` diff --git a/docs/components/query.md b/docs/components/query.md index 96f12e3217e..563fd5ce4be 100644 --- a/docs/components/query.md +++ b/docs/components/query.md @@ -327,6 +327,11 @@ Flags: prefixed with 'dns+' or 'dnssrv+' to detect store API servers through respective DNS lookups. + --store-strict= ... + Addresses of only statically configured store + API servers that are always used, even if the + health check fails. Useful if you have a + caching layer on top. --store.sd-files= ... Path to files that contain addresses of store API servers. The path can be a glob pattern diff --git a/docs/components/rule.md b/docs/components/rule.md index ffa3dfa6fcb..85c7ed5b0b4 100644 --- a/docs/components/rule.md +++ b/docs/components/rule.md @@ -25,7 +25,7 @@ $ thanos rule \ --eval-interval "30s" \ --rule-file "/path/to/rules/*.rules.yaml" \ --alert.query-url "http://0.0.0.0:9090" \ # This tells what query URL to link to in UI. - --alertmanagers.url "alert.thanos.io" \ + --alertmanagers.url "http://alert.thanos.io" \ --query "query.example.org" \ --query "query2.example.org" \ --objstore.config-file "bucket.yml" \ diff --git a/docs/components/store.md b/docs/components/store.md index 3bda0a73510..f5195229807 100644 --- a/docs/components/store.md +++ b/docs/components/store.md @@ -27,7 +27,8 @@ In general about 1MB of local disk space is required per TSDB block stored in th ## Flags -[embedmd]:# (flags/store.txt $) +[embedmd]: # "flags/store.txt $" + ```$ usage: thanos store [] @@ -137,7 +138,11 @@ Flags: Prometheus relabel-config syntax. See format details: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config - + --consistency-delay=30m Minimum age of all blocks before they are being read. + --ignore-deletion-marks-delay=24h + Duration after which the blocks marked for deletion will be filtered out while fetching blocks. + The idea of ignore-deletion-marks-delay is to ignore blocks that are marked for deletion with some delay. This ensures store can still serve blocks that are meant to be deleted but do not have a replacement yet. If delete-delay duration is provided to compactor or bucket verify component, it will upload deletion-mark.json file to mark after what duration the block should be deleted rather than deleting the block straight away. + If delete-delay is non-zero for compactor or bucket verify component, ignore-deletion-marks-delay should be set to (delete-delay)/2 so that blocks marked for deletion are filtered out while fetching blocks before being deleted from bucket. Default is 24h, half of the default value for --delete-delay on compactor. ``` ## Time based partitioning @@ -179,7 +184,8 @@ The `in-memory` index cache is enabled by default and its max size can be config Alternatively, the `in-memory` index cache can also by configured using `--index-cache.config-file` to reference to the configuration file or `--index-cache.config` to put yaml config directly: -[embedmd]:# (../flags/config_index_cache_in_memory.txt yaml) +[embedmd]: # "../flags/config_index_cache_in_memory.txt yaml" + ```yaml type: IN-MEMORY config: @@ -196,7 +202,8 @@ All the settings are **optional**: The `memcached` index cache allows to use [Memcached](https://memcached.org) as cache backend. This cache type is configured using `--index-cache.config-file` to reference to the configuration file or `--index-cache.config` to put yaml config directly: -[embedmd]:# (../flags/config_index_cache_memcached.txt yaml) +[embedmd]: # "../flags/config_index_cache_memcached.txt yaml" + ```yaml type: MEMCACHED config: @@ -205,6 +212,7 @@ config: max_idle_connections: 0 max_async_concurrency: 0 max_async_buffer_size: 0 + max_item_size: 1MiB max_get_multi_concurrency: 0 max_get_multi_batch_size: 0 dns_provider_update_interval: 0s @@ -222,15 +230,15 @@ While the remaining settings are **optional**: - `max_async_buffer_size`: maximum number of enqueued asynchronous operations allowed. - `max_get_multi_concurrency`: maximum number of concurrent connections when fetching keys. If set to `0`, the concurrency is unlimited. - `max_get_multi_batch_size`: maximum number of keys a single underlying operation should fetch. If more keys are specified, internally keys are splitted into multiple batches and fetched concurrently, honoring `max_get_multi_concurrency`. If set to `0`, the batch size is unlimited. +- `max_item_size`: maximum size of an item to be stored in memcached. This option should be set to the same value of memcached `-I` flag (defaults to 1MB) in order to avoid wasting network round trips to store items larger than the max item size allowed in memcached. If set to `0`, the item size is unlimited. - `dns_provider_update_interval`: the DNS discovery update interval. - ## Index Header In order to query series inside blocks from object storage, Store Gateway has to know certain initial info about each block such as: -* symbols table to unintern string values -* postings offset for posting lookup +- symbols table to unintern string values +- postings offset for posting lookup In order to achieve so, on startup for each block `index-header` is built from pieces of original block's index and stored on disk. Such `index-header` file is then mmaped and used by Store Gateway. diff --git a/docs/contributing/how-to-change-go-version.md b/docs/contributing/how-to-change-go-version.md index 244784e786a..d3418742d4c 100644 --- a/docs/contributing/how-to-change-go-version.md +++ b/docs/contributing/how-to-change-go-version.md @@ -15,3 +15,4 @@ To update Thanos build system to newer Golang: 1. Edit [.circleci/config.yaml](/.circleci/config.yml) and update ` - image: circleci/golang:` to desired Golang version. This will ensure that all docker images and go tests are using desired Golang version. How to verify? Invoke `docker pull quay.io/thanos/thanos: --version` 1. Edit [.Dockerfile.thanos-ci](/Dockerfile.thanos-ci) and update Go version. Run `make docker-ci DOCKER_CI_TAG=`. Update [.circleci/config.yaml](/.circleci/config.yml) thanos-ci image to ``. +1. Edit [.github/workflows/e2e.yaml](/.github/workflows/e2e.yaml), [.github/workflows/cross-build.yaml](/.github/workflows/cross-build.yaml) and update Go version. diff --git a/docs/operating/_index.md b/docs/operating/_index.md new file mode 100644 index 00000000000..1e0094aab9b --- /dev/null +++ b/docs/operating/_index.md @@ -0,0 +1,3 @@ +--- +title: "Operating Guides:" +--- diff --git a/docs/operating/troubleshooting.md b/docs/operating/troubleshooting.md new file mode 100644 index 00000000000..444b34fced8 --- /dev/null +++ b/docs/operating/troubleshooting.md @@ -0,0 +1,42 @@ +--- +title: Troubleshooting +type: docs +menu: operating +slug: /troubleshooting.md +--- + +# Troubleshooting; Common cases + + +## Overlaps + +**Block overlap**: Set of blocks with exactly the same external labels in meta.json and for the same time or overlapping time period. + +Thanos is designed to never end up with overlapped blocks. This means that (uncontrolled) block overlap should never happen in a healthy and well configured Thanos system. That's why there is no automatic repair for this. Since it's an unexpected incident: +* All reader components like Store Gateway will handle this gracefully (overlapped samples will be deduplicated). +* Thanos compactor will stop all activities and HALT or crash (with metric and will error log). This is because it cannot perform compactions and downsampling. In the overlap situation, we know something unexpected happened (e.g manual block upload, some malformed data etc), so it's safer to stop or crash loop (it's configurable). + +Let's take an example: + +- `msg="critical error detected; halting" err="compaction failed: compaction: pre compaction overlap check: overlaps found while gathering blocks. [mint: 1555128000000, maxt: 1555135200000, range: 2h0m0s, blocks: 2]: , ` + +In this halted example, we can read that compactor detected 2 overlapped blocks. What's interesting is that those two blocks look like they are "similar". They are exactly for the same period of time. This might mean that potential reasons are: + +* Duplicated upload with different ULID (non-persistent storage for Prometheus can cause this) +* 2 Prometheus instances are misconfigured and they are uploading the data with exactly the same external labels. This is wrong, they should be unique. + +Checking producers log for such ULID, and checking meta.json (e.g if sample stats are the same or not) helps. Checksum the index and chunks files as well to reveal if data is exactly the same, thus ok to be removed manually. + +### Reasons + +- Misconfiguraiton of sidecar/ruler: Same external labels or no external labels across many block producers. +- Running multiple compactors for single block "stream", even for short duration. +- Manually uploading blocks to the bucket. +- Eventually consistent block storage until we fully implement [RW for bucket](https://thanos.io/proposals/201901-read-write-operations-bucket.md) + +### Solutions + +- Compactor can be blocked for some time, but if it is urgent. Mitigate by removing overlap or better: Backing up somewhere else (you can rename block ULID to non-ulid). +- Who uploaded the block? Search for logs with this ULID across all sidecars/rulers. Check access logs to object storage. Check debug/metas or meta.json of problematic block to see how blocks looks like and what is the `source`. +- Determine what you misconfigured. +- If all looks sane and you double-checked everything: Then post an issue on Github, Bugs can happen but we heavily test against such problems. diff --git a/docs/proposals/201901-read-write-operations-bucket.md b/docs/proposals/201901-read-write-operations-bucket.md index bb58acbe79e..326fe79200c 100644 --- a/docs/proposals/201901-read-write-operations-bucket.md +++ b/docs/proposals/201901-read-write-operations-bucket.md @@ -2,7 +2,7 @@ title: Read-Write coordination free operational contract for object storage type: proposal menu: proposals -status: accepted +status: complete owner: bwplotka --- @@ -138,7 +138,18 @@ manual actions. This is on purpose to not allow block malformation by blocks whi *Newer block from two or more overlapping blocks fully submatches the source blocks of older blocks. Older blocks can be then ignored.* -The word **fully** is crucial. For example we won't be able to resolve case with block ABCD and CDEF. This is because there is no logic for decompact or vertical compaction. +The word **fully** is crucial. + +We will determine overlaps in data by using **Full Overlap Block Detection Algorithm** which is defined as following: +Consider the below diagram which shows different tsdb blocks: + +[![Diagram](https://docs.google.com/drawings/d/e/2PACX-1vTVX4WgIa4O0rcvN8R_oZJBDOGNe0-eTJW7Ucqw0CnwcjuswATupMRD3r97b94cW6xasVsU7MPQPpVf/pub?w=950&h=720)](https://docs.google.com/drawings/d/1RsP7q2JPUrOZG_6uDAJo4D5hWM9zjqV0wHTLPQchpKE/edit?usp=sharing) + +In the first example, we see that the block F is a compacted block containing data of blocks ABCD. The blocks ABCD are source blocks that contain data of ABCD blocks. +Since block F contains data for all blocks that blocks ABCD contain, the block F completely overlaps with blocks ABCD, we can safely delete ABCD. + +In the second example, the block F is a compacted block containing data of blocks ABCD. The blocks ABCD are blocks contains data of ABCDE blocks. +Since block F doesn't contain data related to block E, the block F cannot be safely deleted. Having this kind of overlap support, we can delay deletion by forming 6th rule: @@ -162,17 +173,23 @@ To match partial upload safeguards we want to delete block in reverse order: > 7 . To schedule delete operation, delete `meta.json` file. All components will exclude this block and compactor will do eventual deletion assuming the block is partially uploaded. [Compactor change needed] We schedule deletions instead of doing them straight away for 3 reasons: + * Readers that have loaded this block can still access index and metrics for some time. On next sync they will notice lack of meta.json and assume partial block which excludes it from block being loaded. * Only compactor deletes metrics and index. * In further delete steps, starting with meta.json first ensures integrity mark being deleted first, so in case of deletion process being stopped, we can treat this block as partial block (rule 4th) and delete it gracefully. +Along with this, we also store information about when the block was scheduled to be deleted so that it can be deleted at a later point in time. +To do so, we create a file `deletion-mark.json` where we store information about when the block was scheduled to be deleted. +Storing the information in a file makes it resilient to failures that result in restarts. + There might be exception for malformed blocks that blocks compaction or reader operations. Since we may need to unblock the system immediately the block can be forcibly removed meaning that query failures may occur (reader loaded block, but not aware block was deleted). > 8 . Compactor waits minimum 15m (`deleteDelay`) before deleting the whole `To Delete` block. [Compactor change needed] -This is to make sure we don't forcibly remove block which is still loaded on reader side. We do that by counting time from -spotting lack of meta.json first. After 15 minutes we are ok to delete the whole directory. +This is to make sure we don't forcibly remove block which is still loaded on reader side. + +We check the `deletion-mark.json` file to identify if the block has to be deleted. After 15 minutes of marking the block to be deleted, we are ok to delete the whole block directory. ## Risks diff --git a/docs/proposals/202001_thanos_query_health_handling.md b/docs/proposals/202001_thanos_query_health_handling.md new file mode 100644 index 00000000000..a07b19b2a47 --- /dev/null +++ b/docs/proposals/202001_thanos_query_health_handling.md @@ -0,0 +1,97 @@ +--- +title: Thanos Query store nodes healthiness handling +type: proposal +menu: proposals +status: complete +owner: GiedriusS +--- + +### Related Tickets + +* https://github.com/thanos-io/thanos/issues/1651 (Response caching for Thanos) +* https://github.com/thanos-io/thanos/pull/2072 (query: add 'sticky' nodes) +* https://github.com/cortexproject/cortex/pull/1974 (frontend: implement cache control) +* https://github.com/thanos-io/thanos/pull/1984 (api/v1: add cache-control header) + +## Summary + +This proposal document describes how currently the healthiness of store nodes is handled and why it should be changed (e.g. to improve response caching and avoid surprises). + +It explores a few options that are available - weighs their pros and cons, and finally proposes one final variant which we believe is the best out of the possible ones. + +## Motivation + +Currently Thanos Query updates the list of healthy store nodes every 5 seconds. It does that by sending the `Info()` call via gRPC. The last successful check is noted in the `LastCheck` field. At this point if it fails then we note the error and remove it from the set of active store nodes. If that succeeds then it becomes a part of the active store set. + +After `--store.unhealthy-timeout` passes since `LastCheck` then it also gets removed from the UI. At this point we would forget about it completely. + +Every time a query is executed, we consult the active store set and send the query to all of the nodes which match according to the external labels and the min/max times that they advertise. However, if a node goes down according to our previous definition then in 5 seconds we will not send anything to it anymore. This means that we won't even be able to control this via the partial response options since no query is sent to those nodes in the first place. + +This is problematic in the cache of end-response caching. If we know that certain StoreAPI nodes should always be up then we always want to have not just an error (if partial response is disabled) but also the appropriate `Cache-Control` header in the response. But right now we would only get it for maximum 5 seconds after a store node would go down. + +Thus, this logic needs to be changed somehow. There are a few possible options: + +1. `--store.unhealthy-timeout` could be made to apply to this case as well - we could still consider it a part of the active store set while it is still visible in the UI. +2. Another option could be introduced such as `--store.hold-timeout` which would be `--store.unhealthy-timeout`'s brother and we would hold the StoreAPI nodes for `max(hold_timeout, unhealthy_timeout)`. +3. Another option such as `--store.strict-mode` could be introduced which means that we would always retain the last information of the StoreAPI nodes of the last successful check. +4. The StoreAPI node specification format that is used in `--store` could be extended to include another flag which would let specify the previous option per-specific node. +5. Instead of extending the specification format, we could move the same inforamtion to the command line options themselves. This would increase the explicitness of this new mode i.e. that it only applies to statically defined nodes. + +Lets look through their pros and cons: + +* In general it would be nice to avoid adding new options so the first option seems the most attractive in this regard but it is also the most invasive one. +* Second option increases the configuration complexity the most since you would have to think about the other option `--store.unhealthy-timeout` as well while setting it. +* The last option is the most complex from code's perspective but it is also least invasive; however it has some downsides like the syntax for specifying store nodes becomes really ugly and hard to understand because we would have not only the DNS query type in there but also a special marker to enable that mode. + +If we were to graph these choices in terms of their incisiveness and complexity it would look something like this: + +```text +Most incisive / Least Complex ------------ Least incisive / Most Complex +#1 #2 #4 + #3 #5 +``` + +After careful consideration and with the rationale in this proposal, we have decided to go with the fifth option. It should provide a sweet spot between being too invasive and providing our users the ability to fall-back to the old behavior. + +## Goals + +* Update the health check logic to properly handle the case when a node disappears in terms of a caching layer. + +## No Goals + +* Fixing the cache handling in the cases where a **new** StoreAPI gets added to the active store set. + +This deserves a separate discussion and/or proposal. The issue when adding a completely new store node via service discovery is that a new node may suddenly provide new information in the past. In this paragraph when we are saying "new" it means new in terms of the data that it provides. Generally over time only a limited number of Prometheus instances will be providing data that can only change in the future (relatively to the current time). + +When this happens, we will need to most likely somehow signal the caching layer that it needs to drop (some of the) results cache that it has depending on: + +* Time ranges of a new node. +* Its external labels. +* The data that the node itself has by using some kind of hashing mechanism. + +The way this will need to be done should be as generic as possible so the design and solution of this is still an open question that this proposal does not solve. + +## Verification + +* Unit tests which would fire up a dummy StoreAPI and check different scenarios. +* Ad-hoc testing. + +## Proposal + +* Add a new flag to Thanos Query `--store-strict` which will only accept statically specified nodes and Thanos Query will always retain the last successfully retrieved information of them via the `Info()` gRPC method. Thus, they will always be considered as part of the active store set. + +## Risk + +* Users might have problems removing the store nodes from the active store set since they will be there forever with this option set. However, one might argue that if the nodes go down then something like DNS service discovery needs to be used which would dynamically add and remove those nodes. + +## Work Plan + +* Implement the new flag `--store-strict` in Thanos Query which will only accept statically defined nodes that will be permanently kept around. It is optional to use so there will be no surprises when upgrading. +* Implement tests with dummy store nodes. +* Document the new behavior. + +## Future Work + +* Handle the case when a new node appears in terms of the end-result cache i.e. when using SD: + 1. Need to somehow signal the upper layer to clear the end-result cache. Ideally we would only clear the relevant parts. + 2. Perhaps some kind of hashing can be used for this. diff --git a/docs/proposals/_index.md b/docs/proposals/_index.md new file mode 100644 index 00000000000..906e867f16e --- /dev/null +++ b/docs/proposals/_index.md @@ -0,0 +1,3 @@ +--- +title: "Proposals:" +--- diff --git a/docs/quick-tutorial.md b/docs/quick-tutorial.md index 78a12d786f6..ee021103ecd 100644 --- a/docs/quick-tutorial.md +++ b/docs/quick-tutorial.md @@ -39,9 +39,9 @@ Following the [KISS](https://en.wikipedia.org/wiki/KISS_principle) and Unix phil * Sidecar: connects to Prometheus, reads its data for query and/or uploads it to cloud storage. * Store Gateway: serves metrics inside of a cloud storage bucket. * Compactor: compacts, downsamples and applies retention on the data stored in cloud storage bucket. -* Receiver: receives data from Prometheus' remote-write WAL, exposes it and/or upload it to cloud storage. +* Receiver: receives data from Prometheus's remote-write WAL, exposes it and/or upload it to cloud storage. * Ruler/Rule: evaluates recording and alerting rules against data in Thanos for exposition and/or upload. -* Querier/Query: implements Prometheus' v1 API to aggregate data from the underlying components. +* Querier/Query: implements Prometheus's v1 API to aggregate data from the underlying components. See those components on this diagram: @@ -57,7 +57,7 @@ The Sidecar makes use of the `reload` Prometheus endpoint. Make sure it's enable #### External storage -The following configures the sidecar to write Prometheus' data into a configured object storage: +The following configures the sidecar to write Prometheus's data into a configured object storage: ```bash thanos sidecar \ @@ -163,7 +163,7 @@ thanos query \ Go to the configured HTTP address, and you should now be able to query across all Prometheus instances and receive de-duplicated data. -* _[Example Kubernetes manifest](https://github.com/thanos-io/kube-thanos/blob/master/manifests/thanos-querier-deployment.yaml)_ +* _[Example Kubernetes manifest](https://github.com/thanos-io/kube-thanos/blob/master/manifests/thanos-query-deployment.yaml)_ #### Communication Between Components @@ -208,7 +208,7 @@ The store gateway occupies small amounts of disk space for caching basic informa A local Prometheus installation periodically compacts older data to improve query efficiency. Since the sidecar backs up data as soon as possible, we need a way to apply the same process to data in the object storage. -The compactor component simple scans the object storage and processes compaction where required. At the same time it is responsible for creating downsampled copies of data to speed up queries. +The compactor component simply scans the object storage and processes compaction where required. At the same time it is responsible for creating downsampled copies of data to speed up queries. ```bash thanos compact \ diff --git a/docs/release-process.md b/docs/release-process.md index 9a490fa4b50..774a24f8e25 100644 --- a/docs/release-process.md +++ b/docs/release-process.md @@ -32,7 +32,8 @@ Release shepherd responsibilities: | Release | Time of first RC | Shepherd (GitHub handle) | |-----------|--------------------------|--------------------------| -| v0.12.0 | (planned) 2020.04.01 | TBD | +| v0.13.0 | (planned) 2020.05.13 | `TBD` | +| v0.12.0 | (planned) 2020.04.01 | `@squat` | | v0.11.0 | 2020.02.19 | `@metalmatze` | | v0.10.0 | 2020.01.08 | `@GiedriusS` | | v0.9.0 | 2019.11.26 | `@bwplotka` | @@ -55,6 +56,12 @@ Release is happening on separate `release-.` branch. 1. Prepare PR to branch `release-.` that will start minor release branch and prepare changes to cut release. + Push the created branch to origin (Thanos repository) to be able to make your PR with the CHANGELOG.md changes against this branch later. + + ```bash + $ git push origin release-. + ``` + For release candidate just reuse same branch and rebase it on every candidate until the actual release happens. 1. Update [CHANGELOG file](/CHANGELOG.md) @@ -82,7 +89,7 @@ Release is happening on separate `release-.` branch. 1. After review, merge the PR and immediately after this tag a version: ```bash - $ tag=x.y.z + $ tag=$(cat VERSION) $ git tag -s "v${tag}" -m "v${tag}" $ git push origin "v${tag}" ``` diff --git a/docs/sharding.md b/docs/sharding.md new file mode 100644 index 00000000000..6fc3bcc3809 --- /dev/null +++ b/docs/sharding.md @@ -0,0 +1,77 @@ +--- +title: Sharding +type: docs +menu: thanos +slug: /sharding.md +--- + +# Background + +Currently all components that read from object store assume that all the operations and functionality should be done based +on **all** the available blocks that are present in the certain bucket's root directory. + +This is in most cases totally fine, however with time and allowance of storing blocks from multiple `Sources` into the same bucket, +the number of objects in a bucket can grow drastically. + +This means that with time you might want to scale out certain components e.g: + +* Compactor: Larger number of objects does not matter much, however compactor has to scale (CPU, network, disk, memory) with number of Sources pushing blocks to the object storage. + +* Store Gateway: Queries against store gateway which are touching large number of Sources might be expensive, so it has to scale up with number of Sources if we assume those queries. + * Orthogonally we did not advertise any labels on Store Gateway's Info. This means that querier was not able to do any pre-filtering, so all store gateways in system are always touched for each query. + +# Relabelling + +Similar to [promtail](https://github.com/grafana/loki/blob/master/docs/clients/promtail/configuration.md#relabel_config) this config will follow native +[Prometheus relabel-config](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config) syntax. + +Now, thanos only support following relabel actions: + +* keep + +* drop + +* hashmod + * `external labels` for all components + + * `__block_id` for store gateway, see this [example](https://github.com/observatorium/configuration/blob/bf1304b0d7bce2ae3fefa80412bb358f9aa176fb/environments/openshift/manifests/observatorium-template.yaml#L1514-L1521) + +The relabel config defines filtering process done on **every** synchronization with object storage. + +We will allow potentially manipulating with several of inputs: + +* External labels: + * `` + +Output: + +* If output is empty, drop block. + +By default, on empty relabel-config, all external labels are assumed. + +Example usages would be: + +* Drop blocks which contains external labels cluster=A + +```yaml +- action: drop + regex: "A" + source_labels: + - cluster +``` + +* Keep only blocks which contains external labels cluster=A +```yaml +- action: keep + regex: "A" + source_labels: + - cluster +``` + +We can shard by adjusting which labels should be included in the blocks. + +# Time Partitioning + +For store gateway, we can specify `--min-time` and `--max-time` flags to filter for what blocks store gateway should be responsible for. + +More details can refer to "Time based partitioning" chapter in [Store gateway](components/store.md). diff --git a/docs/storage.md b/docs/storage.md index 999e0b156f6..bb0a55a0f01 100644 --- a/docs/storage.md +++ b/docs/storage.md @@ -97,7 +97,7 @@ config: At a minimum, you will need to provide a value for the `bucket`, `endpoint`, `access_key`, and `secret_key` keys. The rest of the keys are optional. -The AWS region to endpoint mapping can be found in this [link](https://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region). +The AWS region to endpoint mapping can be found in this [link](https://docs.aws.amazon.com/general/latest/gr/s3.html). Make sure you use a correct signature version. Currently AWS requires signature v4, so it needs `signature-version2: false`. If you don't specify it, you will get an `Access Denied` error. On the other hand, several S3 compatible APIs use `signature-version2: true`. diff --git a/examples/alerts/alerts.md b/examples/alerts/alerts.md index e9b7da30176..61098e7cee1 100644 --- a/examples/alerts/alerts.md +++ b/examples/alerts/alerts.md @@ -4,57 +4,57 @@ Here are some example alerts configured for Kubernetes environment. ## Compaction -[embedmd]:# (../tmp/thanos-compactor.rules.yaml yaml) +[embedmd]:# (../tmp/thanos-compact.rules.yaml yaml) ```yaml -name: thanos-compactor.rules +name: thanos-compact.rules rules: -- alert: ThanosCompactorMultipleCompactorsAreRunning +- alert: ThanosCompactMultipleRunning annotations: - message: You should never run more than one Thanos Compactor at once. You have - {{ $value }} - expr: sum(up{job=~"thanos-compactor.*"}) > 1 + message: No more than one Thanos Compact instance should be running at once. There + are {{ $value }} + expr: sum(up{job=~"thanos-compact.*"}) > 1 for: 5m labels: severity: warning -- alert: ThanosCompactorHalted +- alert: ThanosCompactHalted annotations: - message: Thanos Compactor {{$labels.job}} has failed to run and now is halted. - expr: thanos_compactor_halted{job=~"thanos-compactor.*"} == 1 + message: Thanos Compact {{$labels.job}} has failed to run and now is halted. + expr: thanos_compactor_halted{job=~"thanos-compact.*"} == 1 for: 5m labels: severity: warning -- alert: ThanosCompactorHighCompactionFailures +- alert: ThanosCompactHighCompactionFailures annotations: - message: Thanos Compactor {{$labels.job}} is failing to execute {{ $value | humanize + message: Thanos Compact {{$labels.job}} is failing to execute {{ $value | humanize }}% of compactions. expr: | ( - sum by (job) (rate(thanos_compact_group_compactions_failures_total{job=~"thanos-compactor.*"}[5m])) + sum by (job) (rate(thanos_compact_group_compactions_failures_total{job=~"thanos-compact.*"}[5m])) / - sum by (job) (rate(thanos_compact_group_compactions_total{job=~"thanos-compactor.*"}[5m])) + sum by (job) (rate(thanos_compact_group_compactions_total{job=~"thanos-compact.*"}[5m])) * 100 > 5 ) for: 15m labels: severity: warning -- alert: ThanosCompactorBucketHighOperationFailures +- alert: ThanosCompactBucketHighOperationFailures annotations: - message: Thanos Compactor {{$labels.job}} Bucket is failing to execute {{ $value + message: Thanos Compact {{$labels.job}} Bucket is failing to execute {{ $value | humanize }}% of operations. expr: | ( - sum by (job) (rate(thanos_objstore_bucket_operation_failures_total{job=~"thanos-compactor.*"}[5m])) + sum by (job) (rate(thanos_objstore_bucket_operation_failures_total{job=~"thanos-compact.*"}[5m])) / - sum by (job) (rate(thanos_objstore_bucket_operations_total{job=~"thanos-compactor.*"}[5m])) + sum by (job) (rate(thanos_objstore_bucket_operations_total{job=~"thanos-compact.*"}[5m])) * 100 > 5 ) for: 15m labels: severity: warning -- alert: ThanosCompactorHasNotRun +- alert: ThanosCompactHasNotRun annotations: - message: Thanos Compactor {{$labels.job}} has not uploaded anything for 24 hours. - expr: (time() - max(thanos_objstore_bucket_last_successful_upload_time{job=~"thanos-compactor.*"})) + message: Thanos Compact {{$labels.job}} has not uploaded anything for 24 hours. + expr: (time() - max(thanos_objstore_bucket_last_successful_upload_time{job=~"thanos-compact.*"})) / 60 / 60 > 24 labels: severity: warning @@ -64,112 +64,133 @@ rules: For Thanos ruler we run some alerts in local Prometheus, to make sure that Thanos Rule is working: -[embedmd]:# (../tmp/thanos-ruler.rules.yaml yaml) +[embedmd]:# (../tmp/thanos-rule.rules.yaml yaml) ```yaml -name: thanos-ruler.rules +name: thanos-rule.rules rules: -- alert: ThanosRulerQueueIsDroppingAlerts +- alert: ThanosRuleQueueIsDroppingAlerts annotations: - message: Thanos Ruler {{$labels.job}} {{$labels.pod}} is failing to queue alerts. + message: Thanos Rule {{$labels.job}} {{$labels.pod}} is failing to queue alerts. expr: | - sum by (job) (rate(thanos_alert_queue_alerts_dropped_total{job=~"thanos-ruler.*"}[5m])) > 0 + sum by (job) (rate(thanos_alert_queue_alerts_dropped_total{job=~"thanos-rule.*"}[5m])) > 0 for: 5m labels: severity: critical -- alert: ThanosRulerSenderIsFailingAlerts +- alert: ThanosRuleSenderIsFailingAlerts annotations: - message: Thanos Ruler {{$labels.job}} {{$labels.pod}} is failing to send alerts + message: Thanos Rule {{$labels.job}} {{$labels.pod}} is failing to send alerts to alertmanager. expr: | - sum by (job) (rate(thanos_alert_sender_alerts_dropped_total{job=~"thanos-ruler.*"}[5m])) > 0 + sum by (job) (rate(thanos_alert_sender_alerts_dropped_total{job=~"thanos-rule.*"}[5m])) > 0 for: 5m labels: severity: critical -- alert: ThanosRulerHighRuleEvaluationFailures +- alert: ThanosRuleHighRuleEvaluationFailures annotations: - message: Thanos Ruler {{$labels.job}} {{$labels.pod}} is failing to evaluate rules. + message: Thanos Rule {{$labels.job}} {{$labels.pod}} is failing to evaluate rules. expr: | ( - sum by (job) (rate(prometheus_rule_evaluation_failures_total{job=~"thanos-ruler.*"}[5m])) + sum by (job) (rate(prometheus_rule_evaluation_failures_total{job=~"thanos-rule.*"}[5m])) / - sum by (job) (rate(prometheus_rule_evaluations_total{job=~"thanos-ruler.*"}[5m])) + sum by (job) (rate(prometheus_rule_evaluations_total{job=~"thanos-rule.*"}[5m])) * 100 > 5 ) for: 5m labels: - severity: warning -- alert: ThanosRulerHighRuleEvaluationWarnings + severity: critical +- alert: ThanosRuleHighRuleEvaluationWarnings annotations: - message: Thanos Ruler {{$labels.job}} {{$labels.pod}} has high number of evaluation + message: Thanos Rule {{$labels.job}} {{$labels.pod}} has high number of evaluation warnings. expr: | - sum by (job) (rate(thanos_rule_evaluation_with_warnings_total{job=~"thanos-ruler.*"}[5m])) > 0 + sum by (job) (rate(thanos_rule_evaluation_with_warnings_total{job=~"thanos-rule.*"}[5m])) > 0 for: 15m labels: - severity: warning -- alert: ThanosRulerRuleEvaluationLatencyHigh + severity: info +- alert: ThanosRuleRuleEvaluationLatencyHigh annotations: - message: Thanos Ruler {{$labels.job}}/{{$labels.pod}} has higher evaluation latency + message: Thanos Rule {{$labels.job}}/{{$labels.pod}} has higher evaluation latency than interval for {{$labels.rule_group}}. expr: | ( - sum by (job, pod, rule_group) (prometheus_rule_group_last_duration_seconds{job=~"thanos-ruler.*"}) + sum by (job, pod, rule_group) (prometheus_rule_group_last_duration_seconds{job=~"thanos-rule.*"}) > - sum by (job, pod, rule_group) (prometheus_rule_group_interval_seconds{job=~"thanos-ruler.*"}) + sum by (job, pod, rule_group) (prometheus_rule_group_interval_seconds{job=~"thanos-rule.*"}) ) for: 5m labels: severity: warning -- alert: ThanosRulerGrpcErrorRate +- alert: ThanosRuleGrpcErrorRate annotations: - message: Thanos Ruler {{$labels.job}} is failing to handle {{ $value | humanize + message: Thanos Rule {{$labels.job}} is failing to handle {{ $value | humanize }}% of requests. expr: | ( - sum by (job) (rate(grpc_server_handled_total{grpc_code=~"Unknown|ResourceExhausted|Internal|Unavailable|DataLoss|DeadlineExceeded", job=~"thanos-ruler.*"}[5m])) + sum by (job) (rate(grpc_server_handled_total{grpc_code=~"Unknown|ResourceExhausted|Internal|Unavailable|DataLoss|DeadlineExceeded", job=~"thanos-rule.*"}[5m])) / - sum by (job) (rate(grpc_server_started_total{job=~"thanos-ruler.*"}[5m])) + sum by (job) (rate(grpc_server_started_total{job=~"thanos-rule.*"}[5m])) * 100 > 5 ) for: 5m labels: severity: warning -- alert: ThanosRulerConfigReloadFailure +- alert: ThanosRuleConfigReloadFailure annotations: - message: Thanos Ruler {{$labels.job}} has not been able to reload its configuration. - expr: avg(thanos_rule_config_last_reload_successful{job=~"thanos-ruler.*"}) by (job) + message: Thanos Rule {{$labels.job}} has not been able to reload its configuration. + expr: avg(thanos_rule_config_last_reload_successful{job=~"thanos-rule.*"}) by (job) != 1 for: 5m labels: - severity: warning -- alert: ThanosRulerQueryHighDNSFailures + severity: info +- alert: ThanosRuleQueryHighDNSFailures annotations: - message: Thanos Ruler {{$labels.job}} have {{ $value | humanize }}% of failing - DNS queries for query endpoints. + message: Thanos Rule {{$labels.job}} has {{ $value | humanize }}% of failing DNS + queries for query endpoints. expr: | ( - sum by (job) (rate(thanos_ruler_query_apis_dns_failures_total{job=~"thanos-ruler.*"}[5m])) + sum by (job) (rate(thanos_ruler_query_apis_dns_failures_total{job=~"thanos-rule.*"}[5m])) / - sum by (job) (rate(thanos_ruler_query_apis_dns_lookups_total{job=~"thanos-ruler.*"}[5m])) + sum by (job) (rate(thanos_ruler_query_apis_dns_lookups_total{job=~"thanos-rule.*"}[5m])) * 100 > 1 ) for: 15m labels: severity: warning -- alert: ThanosRulerAlertmanagerHighDNSFailures +- alert: ThanosRuleAlertmanagerHighDNSFailures annotations: - message: Thanos Ruler {{$labels.job}} have {{ $value | humanize }}% of failing - DNS queries for Alertmanager endpoints. + message: Thanos Rule {{$labels.job}} has {{ $value | humanize }}% of failing DNS + queries for Alertmanager endpoints. expr: | ( - sum by (job) (rate(thanos_ruler_alertmanagers_dns_failures_total{job=~"thanos-ruler.*"}[5m])) + sum by (job) (rate(thanos_ruler_alertmanagers_dns_failures_total{job=~"thanos-rule.*"}[5m])) / - sum by (job) (rate(thanos_ruler_alertmanagers_dns_lookups_total{job=~"thanos-ruler.*"}[5m])) + sum by (job) (rate(thanos_ruler_alertmanagers_dns_lookups_total{job=~"thanos-rule.*"}[5m])) * 100 > 1 ) for: 15m labels: severity: warning +- alert: ThanosRuleNoEvaluationFor10Intervals + annotations: + message: Thanos Rule {{$labels.job}} has {{ $value | humanize }}% rule groups + that did not evaluate for at least 10x of their expected interval. + expr: | + time() - max by (job, group) (prometheus_rule_group_last_evaluation_timestamp_seconds{job=~"thanos-rule.*"}) + > + 10 * max by (job, group) (prometheus_rule_group_interval_seconds{job=~"thanos-rule.*"}) + for: 5m + labels: + severity: info +- alert: ThanosNoRuleEvaluations + annotations: + message: Thanos Rule {{$labels.job}} did not perform any rule evaluations in the + past 2 minutes. + expr: | + sum(rate(prometheus_rule_evaluations_total{job=~"thanos-rule.*"}[2m])) <= 0 + and + sum(thanos_rule_loaded_rules{job=~"thanos-rule.*"}) > 0 + labels: + severity: critical ``` ## Store Gateway @@ -198,7 +219,7 @@ rules: }} seconds for store series gate requests. expr: | ( - histogram_quantile(0.9, sum by (job, le) (thanos_bucket_store_series_gate_duration_seconds_bucket{job=~"thanos-store.*"})) > 2 + histogram_quantile(0.9, sum by (job, le) (rate(thanos_bucket_store_series_gate_duration_seconds_bucket{job=~"thanos-store.*"}[5m]))) > 2 and sum by (job) (rate(thanos_bucket_store_series_gate_duration_seconds_count{job=~"thanos-store.*"}[5m])) > 0 ) @@ -225,7 +246,7 @@ rules: {{ $value }} seconds for the bucket operations. expr: | ( - histogram_quantile(0.9, sum by (job, le) (thanos_objstore_bucket_operation_duration_seconds_bucket{job=~"thanos-store.*"})) > 15 + histogram_quantile(0.9, sum by (job, le) (rate(thanos_objstore_bucket_operation_duration_seconds_bucket{job=~"thanos-store.*"}[5m]))) > 2 and sum by (job) (rate(thanos_objstore_bucket_operation_duration_seconds_count{job=~"thanos-store.*"}[5m])) > 0 ) @@ -260,98 +281,98 @@ rules: ## Query -[embedmd]:# (../tmp/thanos-querier.rules.yaml yaml) +[embedmd]:# (../tmp/thanos-query.rules.yaml yaml) ```yaml -name: thanos-querier.rules +name: thanos-query.rules rules: -- alert: ThanosQuerierHttpRequestQueryErrorRateHigh +- alert: ThanosQueryHttpRequestQueryErrorRateHigh annotations: - message: Thanos Querier {{$labels.job}} is failing to handle {{ $value | humanize + message: Thanos Query {{$labels.job}} is failing to handle {{ $value | humanize }}% of "query" requests. expr: | ( - sum(rate(http_requests_total{code=~"5..", job=~"thanos-querier.*", handler="query"}[5m])) + sum(rate(http_requests_total{code=~"5..", job=~"thanos-query.*", handler="query"}[5m])) / - sum(rate(http_requests_total{job=~"thanos-querier.*", handler="query"}[5m])) + sum(rate(http_requests_total{job=~"thanos-query.*", handler="query"}[5m])) ) * 100 > 5 for: 5m labels: severity: critical -- alert: ThanosQuerierHttpRequestQueryRangeErrorRateHigh +- alert: ThanosQueryHttpRequestQueryRangeErrorRateHigh annotations: - message: Thanos Querier {{$labels.job}} is failing to handle {{ $value | humanize + message: Thanos Query {{$labels.job}} is failing to handle {{ $value | humanize }}% of "query_range" requests. expr: | ( - sum(rate(http_requests_total{code=~"5..", job=~"thanos-querier.*", handler="query_range"}[5m])) + sum(rate(http_requests_total{code=~"5..", job=~"thanos-query.*", handler="query_range"}[5m])) / - sum(rate(http_requests_total{job=~"thanos-querier.*", handler="query_range"}[5m])) + sum(rate(http_requests_total{job=~"thanos-query.*", handler="query_range"}[5m])) ) * 100 > 5 for: 5m labels: severity: critical -- alert: ThanosQuerierGrpcServerErrorRate +- alert: ThanosQueryGrpcServerErrorRate annotations: - message: Thanos Querier {{$labels.job}} is failing to handle {{ $value | humanize + message: Thanos Query {{$labels.job}} is failing to handle {{ $value | humanize }}% of requests. expr: | ( - sum by (job) (rate(grpc_server_handled_total{grpc_code=~"Unknown|ResourceExhausted|Internal|Unavailable|DataLoss|DeadlineExceeded", job=~"thanos-querier.*"}[5m])) + sum by (job) (rate(grpc_server_handled_total{grpc_code=~"Unknown|ResourceExhausted|Internal|Unavailable|DataLoss|DeadlineExceeded", job=~"thanos-query.*"}[5m])) / - sum by (job) (rate(grpc_server_started_total{job=~"thanos-querier.*"}[5m])) + sum by (job) (rate(grpc_server_started_total{job=~"thanos-query.*"}[5m])) * 100 > 5 ) for: 5m labels: severity: warning -- alert: ThanosQuerierGrpcClientErrorRate +- alert: ThanosQueryGrpcClientErrorRate annotations: - message: Thanos Querier {{$labels.job}} is failing to send {{ $value | humanize + message: Thanos Query {{$labels.job}} is failing to send {{ $value | humanize }}% of requests. expr: | ( - sum by (job) (rate(grpc_client_handled_total{grpc_code!="OK", job=~"thanos-querier.*"}[5m])) + sum by (job) (rate(grpc_client_handled_total{grpc_code!="OK", job=~"thanos-query.*"}[5m])) / - sum by (job) (rate(grpc_client_started_total{job=~"thanos-querier.*"}[5m])) + sum by (job) (rate(grpc_client_started_total{job=~"thanos-query.*"}[5m])) ) * 100 > 5 for: 5m labels: severity: warning -- alert: ThanosQuerierHighDNSFailures +- alert: ThanosQueryHighDNSFailures annotations: - message: Thanos Queriers {{$labels.job}} have {{ $value | humanize }}% of failing + message: Thanos Query {{$labels.job}} have {{ $value | humanize }}% of failing DNS queries for store endpoints. expr: | ( - sum by (job) (rate(thanos_querier_store_apis_dns_failures_total{job=~"thanos-querier.*"}[5m])) + sum by (job) (rate(thanos_querier_store_apis_dns_failures_total{job=~"thanos-query.*"}[5m])) / - sum by (job) (rate(thanos_querier_store_apis_dns_lookups_total{job=~"thanos-querier.*"}[5m])) + sum by (job) (rate(thanos_querier_store_apis_dns_lookups_total{job=~"thanos-query.*"}[5m])) ) * 100 > 1 for: 15m labels: severity: warning -- alert: ThanosQuerierInstantLatencyHigh +- alert: ThanosQueryInstantLatencyHigh annotations: - message: Thanos Querier {{$labels.job}} has a 99th percentile latency of {{ $value + message: Thanos Query {{$labels.job}} has a 99th percentile latency of {{ $value }} seconds for instant queries. expr: | ( - histogram_quantile(0.99, sum by (job, le) (http_request_duration_seconds_bucket{job=~"thanos-querier.*", handler="query"})) > 10 + histogram_quantile(0.99, sum by (job, le) (rate(http_request_duration_seconds_bucket{job=~"thanos-query.*", handler="query"}[5m]))) > 40 and - sum by (job) (rate(http_request_duration_seconds_bucket{job=~"thanos-querier.*", handler="query"}[5m])) > 0 + sum by (job) (rate(http_request_duration_seconds_bucket{job=~"thanos-query.*", handler="query"}[5m])) > 0 ) for: 10m labels: severity: critical -- alert: ThanosQuerierRangeLatencyHigh +- alert: ThanosQueryRangeLatencyHigh annotations: - message: Thanos Querier {{$labels.job}} has a 99th percentile latency of {{ $value - }} seconds for instant queries. + message: Thanos Query {{$labels.job}} has a 99th percentile latency of {{ $value + }} seconds for range queries. expr: | ( - histogram_quantile(0.99, sum by (job, le) (http_request_duration_seconds_bucket{job=~"thanos-querier.*", handler="query_range"})) > 10 + histogram_quantile(0.99, sum by (job, le) (rate(http_request_duration_seconds_bucket{job=~"thanos-query.*", handler="query_range"}[5m]))) > 90 and - sum by (job) (rate(http_request_duration_seconds_count{job=~"thanos-querier.*", handler="query_range"}[5m])) > 0 + sum by (job) (rate(http_request_duration_seconds_count{job=~"thanos-query.*", handler="query_range"}[5m])) > 0 ) for: 10m labels: @@ -360,74 +381,116 @@ rules: ## Receive -[embedmd]:# (../tmp/thanos-receiver.rules.yaml yaml) +[embedmd]:# (../tmp/thanos-receive.rules.yaml yaml) ```yaml -name: thanos-receiver.rules +name: thanos-receive.rules rules: -- alert: ThanosReceiverHttpRequestErrorRateHigh +- alert: ThanosReceiveHttpRequestErrorRateHigh annotations: message: Thanos Receive {{$labels.job}} is failing to handle {{ $value | humanize }}% of requests. expr: | ( - sum(rate(http_requests_total{code=~"5..", job=~"thanos-receiver.*", handler="receive"}[5m])) + sum(rate(http_requests_total{code=~"5..", job=~"thanos-receive.*", handler="receive"}[5m])) / - sum(rate(http_requests_total{job=~"thanos-receiver.*", handler="receive"}[5m])) + sum(rate(http_requests_total{job=~"thanos-receive.*", handler="receive"}[5m])) ) * 100 > 5 for: 5m labels: severity: critical -- alert: ThanosReceiverHttpRequestLatencyHigh +- alert: ThanosReceiveHttpRequestLatencyHigh annotations: message: Thanos Receive {{$labels.job}} has a 99th percentile latency of {{ $value }} seconds for requests. expr: | ( - histogram_quantile(0.99, sum by (job, le) (http_request_duration_seconds_bucket{job=~"thanos-receiver.*", handler="receive"})) > 10 + histogram_quantile(0.99, sum by (job, le) (rate(http_request_duration_seconds_bucket{job=~"thanos-receive.*", handler="receive"}[5m]))) > 10 and - sum by (job) (rate(http_request_duration_seconds_count{job=~"thanos-receiver.*", handler="receive"}[5m])) > 0 + sum by (job) (rate(http_request_duration_seconds_count{job=~"thanos-receive.*", handler="receive"}[5m])) > 0 ) for: 10m labels: severity: critical -- alert: ThanosReceiverHighForwardRequestFailures +- alert: ThanosReceiveHighForwardRequestFailures annotations: message: Thanos Receive {{$labels.job}} is failing to forward {{ $value | humanize }}% of requests. expr: | ( - sum by (job) (rate(thanos_receive_forward_requests_total{result="error", job=~"thanos-receiver.*"}[5m])) + sum by (job) (rate(thanos_receive_forward_requests_total{result="error", job=~"thanos-receive.*"}[5m])) / - sum by (job) (rate(thanos_receive_forward_requests_total{job=~"thanos-receiver.*"}[5m])) + sum by (job) (rate(thanos_receive_forward_requests_total{job=~"thanos-receive.*"}[5m])) * 100 > 5 ) for: 5m labels: - severity: critical -- alert: ThanosReceiverHighHashringFileRefreshFailures + severity: warning +- alert: ThanosReceiveHighHashringFileRefreshFailures annotations: message: Thanos Receive {{$labels.job}} is failing to refresh hashring file, {{ $value | humanize }} of attempts failed. expr: | ( - sum by (job) (rate(thanos_receive_hashrings_file_errors_total{job=~"thanos-receiver.*"}[5m])) + sum by (job) (rate(thanos_receive_hashrings_file_errors_total{job=~"thanos-receive.*"}[5m])) / - sum by (job) (rate(thanos_receive_hashrings_file_refreshes_total{job=~"thanos-receiver.*"}[5m])) + sum by (job) (rate(thanos_receive_hashrings_file_refreshes_total{job=~"thanos-receive.*"}[5m])) > 0 ) for: 15m labels: severity: warning -- alert: ThanosReceiverConfigReloadFailure +- alert: ThanosReceiveConfigReloadFailure annotations: message: Thanos Receive {{$labels.job}} has not been able to reload hashring configurations. - expr: avg(thanos_receive_config_last_reload_successful{job=~"thanos-receiver.*"}) + expr: avg(thanos_receive_config_last_reload_successful{job=~"thanos-receive.*"}) by (job) != 1 for: 5m labels: severity: warning ``` +## Replicate + +[embedmd]:# (../tmp/thanos-bucket-replicate.rules.yaml yaml) +```yaml +name: thanos-bucket-replicate.rules +rules: +- alert: ThanosBucketReplicateIsDown + annotations: + message: Thanos Replicate has disappeared from Prometheus target discovery. + expr: | + absent(up{job=~"thanos-bucket-replicate.*"}) + for: 5m + labels: + severity: critical +- alert: ThanosBucketReplicateErrorRate + annotations: + message: Thanos Replicate failing to run, {{ $value | humanize }}% of attempts + failed. + expr: | + ( + sum(rate(thanos_replicate_replication_runs_total{result="error", job=~"thanos-bucket-replicate.*"}[5m])) + / on (namespace) group_left + sum(rate(thanos_replicate_replication_runs_total{job=~"thanos-bucket-replicate.*"}[5m])) + ) * 100 >= 10 + for: 5m + labels: + severity: critical +- alert: ThanosBucketReplicateRunLatency + annotations: + message: Thanos Replicate {{$labels.job}} has a 99th percentile latency of {{ + $value }} seconds for the replicate operations. + expr: | + ( + histogram_quantile(0.9, sum by (job, le) (rate(thanos_replicate_replication_run_duration_seconds_bucket{job=~"thanos-bucket-replicate.*"}[5m]))) > 20 + and + sum by (job) (rate(thanos_replicate_replication_run_duration_seconds_bucket{job=~"thanos-bucket-replicate.*"}[5m])) > 0 + ) + for: 5m + labels: + severity: critical +``` + ## Extras ### Absent Rules @@ -436,35 +499,35 @@ rules: ```yaml name: thanos-component-absent.rules rules: -- alert: ThanosCompactorIsDown +- alert: ThanosCompactIsDown annotations: - message: ThanosCompactor has disappeared from Prometheus target discovery. + message: ThanosCompact has disappeared from Prometheus target discovery. expr: | - absent(up{job=~"thanos-compactor.*"} == 1) + absent(up{job=~"thanos-compact.*"} == 1) for: 5m labels: severity: critical -- alert: ThanosQuerierIsDown +- alert: ThanosQueryIsDown annotations: - message: ThanosQuerier has disappeared from Prometheus target discovery. + message: ThanosQuery has disappeared from Prometheus target discovery. expr: | - absent(up{job=~"thanos-querier.*"} == 1) + absent(up{job=~"thanos-query.*"} == 1) for: 5m labels: severity: critical -- alert: ThanosReceiverIsDown +- alert: ThanosReceiveIsDown annotations: - message: ThanosReceiver has disappeared from Prometheus target discovery. + message: ThanosReceive has disappeared from Prometheus target discovery. expr: | - absent(up{job=~"thanos-receiver.*"} == 1) + absent(up{job=~"thanos-receive.*"} == 1) for: 5m labels: severity: critical -- alert: ThanosRulerIsDown +- alert: ThanosRuleIsDown annotations: - message: ThanosRuler has disappeared from Prometheus target discovery. + message: ThanosRule has disappeared from Prometheus target discovery. expr: | - absent(up{job=~"thanos-ruler.*"} == 1) + absent(up{job=~"thanos-rule.*"} == 1) for: 5m labels: severity: critical diff --git a/examples/alerts/alerts.yaml b/examples/alerts/alerts.yaml index 8db66744429..f9c3d099450 100644 --- a/examples/alerts/alerts.yaml +++ b/examples/alerts/alerts.yaml @@ -1,211 +1,211 @@ groups: -- name: thanos-compactor.rules +- name: thanos-compact.rules rules: - - alert: ThanosCompactorMultipleCompactorsAreRunning + - alert: ThanosCompactMultipleRunning annotations: - message: You should never run more than one Thanos Compactor at once. You have - {{ $value }} - expr: sum(up{job=~"thanos-compactor.*"}) > 1 + message: No more than one Thanos Compact instance should be running at once. + There are {{ $value }} + expr: sum(up{job=~"thanos-compact.*"}) > 1 for: 5m labels: severity: warning - - alert: ThanosCompactorHalted + - alert: ThanosCompactHalted annotations: - message: Thanos Compactor {{$labels.job}} has failed to run and now is halted. - expr: thanos_compactor_halted{job=~"thanos-compactor.*"} == 1 + message: Thanos Compact {{$labels.job}} has failed to run and now is halted. + expr: thanos_compactor_halted{job=~"thanos-compact.*"} == 1 for: 5m labels: severity: warning - - alert: ThanosCompactorHighCompactionFailures + - alert: ThanosCompactHighCompactionFailures annotations: - message: Thanos Compactor {{$labels.job}} is failing to execute {{ $value | - humanize }}% of compactions. + message: Thanos Compact {{$labels.job}} is failing to execute {{ $value | humanize + }}% of compactions. expr: | ( - sum by (job) (rate(thanos_compact_group_compactions_failures_total{job=~"thanos-compactor.*"}[5m])) + sum by (job) (rate(thanos_compact_group_compactions_failures_total{job=~"thanos-compact.*"}[5m])) / - sum by (job) (rate(thanos_compact_group_compactions_total{job=~"thanos-compactor.*"}[5m])) + sum by (job) (rate(thanos_compact_group_compactions_total{job=~"thanos-compact.*"}[5m])) * 100 > 5 ) for: 15m labels: severity: warning - - alert: ThanosCompactorBucketHighOperationFailures + - alert: ThanosCompactBucketHighOperationFailures annotations: - message: Thanos Compactor {{$labels.job}} Bucket is failing to execute {{ $value + message: Thanos Compact {{$labels.job}} Bucket is failing to execute {{ $value | humanize }}% of operations. expr: | ( - sum by (job) (rate(thanos_objstore_bucket_operation_failures_total{job=~"thanos-compactor.*"}[5m])) + sum by (job) (rate(thanos_objstore_bucket_operation_failures_total{job=~"thanos-compact.*"}[5m])) / - sum by (job) (rate(thanos_objstore_bucket_operations_total{job=~"thanos-compactor.*"}[5m])) + sum by (job) (rate(thanos_objstore_bucket_operations_total{job=~"thanos-compact.*"}[5m])) * 100 > 5 ) for: 15m labels: severity: warning - - alert: ThanosCompactorHasNotRun + - alert: ThanosCompactHasNotRun annotations: - message: Thanos Compactor {{$labels.job}} has not uploaded anything for 24 hours. - expr: (time() - max(thanos_objstore_bucket_last_successful_upload_time{job=~"thanos-compactor.*"})) + message: Thanos Compact {{$labels.job}} has not uploaded anything for 24 hours. + expr: (time() - max(thanos_objstore_bucket_last_successful_upload_time{job=~"thanos-compact.*"})) / 60 / 60 > 24 labels: severity: warning -- name: thanos-querier.rules +- name: thanos-query.rules rules: - - alert: ThanosQuerierHttpRequestQueryErrorRateHigh + - alert: ThanosQueryHttpRequestQueryErrorRateHigh annotations: - message: Thanos Querier {{$labels.job}} is failing to handle {{ $value | humanize + message: Thanos Query {{$labels.job}} is failing to handle {{ $value | humanize }}% of "query" requests. expr: | ( - sum(rate(http_requests_total{code=~"5..", job=~"thanos-querier.*", handler="query"}[5m])) + sum(rate(http_requests_total{code=~"5..", job=~"thanos-query.*", handler="query"}[5m])) / - sum(rate(http_requests_total{job=~"thanos-querier.*", handler="query"}[5m])) + sum(rate(http_requests_total{job=~"thanos-query.*", handler="query"}[5m])) ) * 100 > 5 for: 5m labels: severity: critical - - alert: ThanosQuerierHttpRequestQueryRangeErrorRateHigh + - alert: ThanosQueryHttpRequestQueryRangeErrorRateHigh annotations: - message: Thanos Querier {{$labels.job}} is failing to handle {{ $value | humanize + message: Thanos Query {{$labels.job}} is failing to handle {{ $value | humanize }}% of "query_range" requests. expr: | ( - sum(rate(http_requests_total{code=~"5..", job=~"thanos-querier.*", handler="query_range"}[5m])) + sum(rate(http_requests_total{code=~"5..", job=~"thanos-query.*", handler="query_range"}[5m])) / - sum(rate(http_requests_total{job=~"thanos-querier.*", handler="query_range"}[5m])) + sum(rate(http_requests_total{job=~"thanos-query.*", handler="query_range"}[5m])) ) * 100 > 5 for: 5m labels: severity: critical - - alert: ThanosQuerierGrpcServerErrorRate + - alert: ThanosQueryGrpcServerErrorRate annotations: - message: Thanos Querier {{$labels.job}} is failing to handle {{ $value | humanize + message: Thanos Query {{$labels.job}} is failing to handle {{ $value | humanize }}% of requests. expr: | ( - sum by (job) (rate(grpc_server_handled_total{grpc_code=~"Unknown|ResourceExhausted|Internal|Unavailable|DataLoss|DeadlineExceeded", job=~"thanos-querier.*"}[5m])) + sum by (job) (rate(grpc_server_handled_total{grpc_code=~"Unknown|ResourceExhausted|Internal|Unavailable|DataLoss|DeadlineExceeded", job=~"thanos-query.*"}[5m])) / - sum by (job) (rate(grpc_server_started_total{job=~"thanos-querier.*"}[5m])) + sum by (job) (rate(grpc_server_started_total{job=~"thanos-query.*"}[5m])) * 100 > 5 ) for: 5m labels: severity: warning - - alert: ThanosQuerierGrpcClientErrorRate + - alert: ThanosQueryGrpcClientErrorRate annotations: - message: Thanos Querier {{$labels.job}} is failing to send {{ $value | humanize + message: Thanos Query {{$labels.job}} is failing to send {{ $value | humanize }}% of requests. expr: | ( - sum by (job) (rate(grpc_client_handled_total{grpc_code!="OK", job=~"thanos-querier.*"}[5m])) + sum by (job) (rate(grpc_client_handled_total{grpc_code!="OK", job=~"thanos-query.*"}[5m])) / - sum by (job) (rate(grpc_client_started_total{job=~"thanos-querier.*"}[5m])) + sum by (job) (rate(grpc_client_started_total{job=~"thanos-query.*"}[5m])) ) * 100 > 5 for: 5m labels: severity: warning - - alert: ThanosQuerierHighDNSFailures + - alert: ThanosQueryHighDNSFailures annotations: - message: Thanos Queriers {{$labels.job}} have {{ $value | humanize }}% of failing + message: Thanos Query {{$labels.job}} have {{ $value | humanize }}% of failing DNS queries for store endpoints. expr: | ( - sum by (job) (rate(thanos_querier_store_apis_dns_failures_total{job=~"thanos-querier.*"}[5m])) + sum by (job) (rate(thanos_querier_store_apis_dns_failures_total{job=~"thanos-query.*"}[5m])) / - sum by (job) (rate(thanos_querier_store_apis_dns_lookups_total{job=~"thanos-querier.*"}[5m])) + sum by (job) (rate(thanos_querier_store_apis_dns_lookups_total{job=~"thanos-query.*"}[5m])) ) * 100 > 1 for: 15m labels: severity: warning - - alert: ThanosQuerierInstantLatencyHigh + - alert: ThanosQueryInstantLatencyHigh annotations: - message: Thanos Querier {{$labels.job}} has a 99th percentile latency of {{ - $value }} seconds for instant queries. + message: Thanos Query {{$labels.job}} has a 99th percentile latency of {{ $value + }} seconds for instant queries. expr: | ( - histogram_quantile(0.99, sum by (job, le) (http_request_duration_seconds_bucket{job=~"thanos-querier.*", handler="query"})) > 10 + histogram_quantile(0.99, sum by (job, le) (rate(http_request_duration_seconds_bucket{job=~"thanos-query.*", handler="query"}[5m]))) > 40 and - sum by (job) (rate(http_request_duration_seconds_bucket{job=~"thanos-querier.*", handler="query"}[5m])) > 0 + sum by (job) (rate(http_request_duration_seconds_bucket{job=~"thanos-query.*", handler="query"}[5m])) > 0 ) for: 10m labels: severity: critical - - alert: ThanosQuerierRangeLatencyHigh + - alert: ThanosQueryRangeLatencyHigh annotations: - message: Thanos Querier {{$labels.job}} has a 99th percentile latency of {{ - $value }} seconds for instant queries. + message: Thanos Query {{$labels.job}} has a 99th percentile latency of {{ $value + }} seconds for range queries. expr: | ( - histogram_quantile(0.99, sum by (job, le) (http_request_duration_seconds_bucket{job=~"thanos-querier.*", handler="query_range"})) > 10 + histogram_quantile(0.99, sum by (job, le) (rate(http_request_duration_seconds_bucket{job=~"thanos-query.*", handler="query_range"}[5m]))) > 90 and - sum by (job) (rate(http_request_duration_seconds_count{job=~"thanos-querier.*", handler="query_range"}[5m])) > 0 + sum by (job) (rate(http_request_duration_seconds_count{job=~"thanos-query.*", handler="query_range"}[5m])) > 0 ) for: 10m labels: severity: critical -- name: thanos-receiver.rules +- name: thanos-receive.rules rules: - - alert: ThanosReceiverHttpRequestErrorRateHigh + - alert: ThanosReceiveHttpRequestErrorRateHigh annotations: message: Thanos Receive {{$labels.job}} is failing to handle {{ $value | humanize }}% of requests. expr: | ( - sum(rate(http_requests_total{code=~"5..", job=~"thanos-receiver.*", handler="receive"}[5m])) + sum(rate(http_requests_total{code=~"5..", job=~"thanos-receive.*", handler="receive"}[5m])) / - sum(rate(http_requests_total{job=~"thanos-receiver.*", handler="receive"}[5m])) + sum(rate(http_requests_total{job=~"thanos-receive.*", handler="receive"}[5m])) ) * 100 > 5 for: 5m labels: severity: critical - - alert: ThanosReceiverHttpRequestLatencyHigh + - alert: ThanosReceiveHttpRequestLatencyHigh annotations: message: Thanos Receive {{$labels.job}} has a 99th percentile latency of {{ $value }} seconds for requests. expr: | ( - histogram_quantile(0.99, sum by (job, le) (http_request_duration_seconds_bucket{job=~"thanos-receiver.*", handler="receive"})) > 10 + histogram_quantile(0.99, sum by (job, le) (rate(http_request_duration_seconds_bucket{job=~"thanos-receive.*", handler="receive"}[5m]))) > 10 and - sum by (job) (rate(http_request_duration_seconds_count{job=~"thanos-receiver.*", handler="receive"}[5m])) > 0 + sum by (job) (rate(http_request_duration_seconds_count{job=~"thanos-receive.*", handler="receive"}[5m])) > 0 ) for: 10m labels: severity: critical - - alert: ThanosReceiverHighForwardRequestFailures + - alert: ThanosReceiveHighForwardRequestFailures annotations: message: Thanos Receive {{$labels.job}} is failing to forward {{ $value | humanize }}% of requests. expr: | ( - sum by (job) (rate(thanos_receive_forward_requests_total{result="error", job=~"thanos-receiver.*"}[5m])) + sum by (job) (rate(thanos_receive_forward_requests_total{result="error", job=~"thanos-receive.*"}[5m])) / - sum by (job) (rate(thanos_receive_forward_requests_total{job=~"thanos-receiver.*"}[5m])) + sum by (job) (rate(thanos_receive_forward_requests_total{job=~"thanos-receive.*"}[5m])) * 100 > 5 ) for: 5m labels: - severity: critical - - alert: ThanosReceiverHighHashringFileRefreshFailures + severity: warning + - alert: ThanosReceiveHighHashringFileRefreshFailures annotations: message: Thanos Receive {{$labels.job}} is failing to refresh hashring file, {{ $value | humanize }} of attempts failed. expr: | ( - sum by (job) (rate(thanos_receive_hashrings_file_errors_total{job=~"thanos-receiver.*"}[5m])) + sum by (job) (rate(thanos_receive_hashrings_file_errors_total{job=~"thanos-receive.*"}[5m])) / - sum by (job) (rate(thanos_receive_hashrings_file_refreshes_total{job=~"thanos-receiver.*"}[5m])) + sum by (job) (rate(thanos_receive_hashrings_file_refreshes_total{job=~"thanos-receive.*"}[5m])) > 0 ) for: 15m labels: severity: warning - - alert: ThanosReceiverConfigReloadFailure + - alert: ThanosReceiveConfigReloadFailure annotations: message: Thanos Receive {{$labels.job}} has not been able to reload hashring configurations. - expr: avg(thanos_receive_config_last_reload_successful{job=~"thanos-receiver.*"}) + expr: avg(thanos_receive_config_last_reload_successful{job=~"thanos-receive.*"}) by (job) != 1 for: 5m labels: @@ -250,7 +250,7 @@ groups: }} seconds for store series gate requests. expr: | ( - histogram_quantile(0.9, sum by (job, le) (thanos_bucket_store_series_gate_duration_seconds_bucket{job=~"thanos-store.*"})) > 2 + histogram_quantile(0.9, sum by (job, le) (rate(thanos_bucket_store_series_gate_duration_seconds_bucket{job=~"thanos-store.*"}[5m]))) > 2 and sum by (job) (rate(thanos_bucket_store_series_gate_duration_seconds_count{job=~"thanos-store.*"}[5m])) > 0 ) @@ -277,149 +277,170 @@ groups: {{ $value }} seconds for the bucket operations. expr: | ( - histogram_quantile(0.9, sum by (job, le) (thanos_objstore_bucket_operation_duration_seconds_bucket{job=~"thanos-store.*"})) > 15 + histogram_quantile(0.9, sum by (job, le) (rate(thanos_objstore_bucket_operation_duration_seconds_bucket{job=~"thanos-store.*"}[5m]))) > 2 and sum by (job) (rate(thanos_objstore_bucket_operation_duration_seconds_count{job=~"thanos-store.*"}[5m])) > 0 ) for: 10m labels: severity: warning -- name: thanos-ruler.rules +- name: thanos-rule.rules rules: - - alert: ThanosRulerQueueIsDroppingAlerts + - alert: ThanosRuleQueueIsDroppingAlerts annotations: - message: Thanos Ruler {{$labels.job}} {{$labels.pod}} is failing to queue alerts. + message: Thanos Rule {{$labels.job}} {{$labels.pod}} is failing to queue alerts. expr: | - sum by (job) (rate(thanos_alert_queue_alerts_dropped_total{job=~"thanos-ruler.*"}[5m])) > 0 + sum by (job) (rate(thanos_alert_queue_alerts_dropped_total{job=~"thanos-rule.*"}[5m])) > 0 for: 5m labels: severity: critical - - alert: ThanosRulerSenderIsFailingAlerts + - alert: ThanosRuleSenderIsFailingAlerts annotations: - message: Thanos Ruler {{$labels.job}} {{$labels.pod}} is failing to send alerts + message: Thanos Rule {{$labels.job}} {{$labels.pod}} is failing to send alerts to alertmanager. expr: | - sum by (job) (rate(thanos_alert_sender_alerts_dropped_total{job=~"thanos-ruler.*"}[5m])) > 0 + sum by (job) (rate(thanos_alert_sender_alerts_dropped_total{job=~"thanos-rule.*"}[5m])) > 0 for: 5m labels: severity: critical - - alert: ThanosRulerHighRuleEvaluationFailures + - alert: ThanosRuleHighRuleEvaluationFailures annotations: - message: Thanos Ruler {{$labels.job}} {{$labels.pod}} is failing to evaluate + message: Thanos Rule {{$labels.job}} {{$labels.pod}} is failing to evaluate rules. expr: | ( - sum by (job) (rate(prometheus_rule_evaluation_failures_total{job=~"thanos-ruler.*"}[5m])) + sum by (job) (rate(prometheus_rule_evaluation_failures_total{job=~"thanos-rule.*"}[5m])) / - sum by (job) (rate(prometheus_rule_evaluations_total{job=~"thanos-ruler.*"}[5m])) + sum by (job) (rate(prometheus_rule_evaluations_total{job=~"thanos-rule.*"}[5m])) * 100 > 5 ) for: 5m labels: - severity: warning - - alert: ThanosRulerHighRuleEvaluationWarnings + severity: critical + - alert: ThanosRuleHighRuleEvaluationWarnings annotations: - message: Thanos Ruler {{$labels.job}} {{$labels.pod}} has high number of evaluation + message: Thanos Rule {{$labels.job}} {{$labels.pod}} has high number of evaluation warnings. expr: | - sum by (job) (rate(thanos_rule_evaluation_with_warnings_total{job=~"thanos-ruler.*"}[5m])) > 0 + sum by (job) (rate(thanos_rule_evaluation_with_warnings_total{job=~"thanos-rule.*"}[5m])) > 0 for: 15m labels: - severity: warning - - alert: ThanosRulerRuleEvaluationLatencyHigh + severity: info + - alert: ThanosRuleRuleEvaluationLatencyHigh annotations: - message: Thanos Ruler {{$labels.job}}/{{$labels.pod}} has higher evaluation - latency than interval for {{$labels.rule_group}}. + message: Thanos Rule {{$labels.job}}/{{$labels.pod}} has higher evaluation latency + than interval for {{$labels.rule_group}}. expr: | ( - sum by (job, pod, rule_group) (prometheus_rule_group_last_duration_seconds{job=~"thanos-ruler.*"}) + sum by (job, pod, rule_group) (prometheus_rule_group_last_duration_seconds{job=~"thanos-rule.*"}) > - sum by (job, pod, rule_group) (prometheus_rule_group_interval_seconds{job=~"thanos-ruler.*"}) + sum by (job, pod, rule_group) (prometheus_rule_group_interval_seconds{job=~"thanos-rule.*"}) ) for: 5m labels: severity: warning - - alert: ThanosRulerGrpcErrorRate + - alert: ThanosRuleGrpcErrorRate annotations: - message: Thanos Ruler {{$labels.job}} is failing to handle {{ $value | humanize + message: Thanos Rule {{$labels.job}} is failing to handle {{ $value | humanize }}% of requests. expr: | ( - sum by (job) (rate(grpc_server_handled_total{grpc_code=~"Unknown|ResourceExhausted|Internal|Unavailable|DataLoss|DeadlineExceeded", job=~"thanos-ruler.*"}[5m])) + sum by (job) (rate(grpc_server_handled_total{grpc_code=~"Unknown|ResourceExhausted|Internal|Unavailable|DataLoss|DeadlineExceeded", job=~"thanos-rule.*"}[5m])) / - sum by (job) (rate(grpc_server_started_total{job=~"thanos-ruler.*"}[5m])) + sum by (job) (rate(grpc_server_started_total{job=~"thanos-rule.*"}[5m])) * 100 > 5 ) for: 5m labels: severity: warning - - alert: ThanosRulerConfigReloadFailure + - alert: ThanosRuleConfigReloadFailure annotations: - message: Thanos Ruler {{$labels.job}} has not been able to reload its configuration. - expr: avg(thanos_rule_config_last_reload_successful{job=~"thanos-ruler.*"}) by + message: Thanos Rule {{$labels.job}} has not been able to reload its configuration. + expr: avg(thanos_rule_config_last_reload_successful{job=~"thanos-rule.*"}) by (job) != 1 for: 5m labels: - severity: warning - - alert: ThanosRulerQueryHighDNSFailures + severity: info + - alert: ThanosRuleQueryHighDNSFailures annotations: - message: Thanos Ruler {{$labels.job}} have {{ $value | humanize }}% of failing + message: Thanos Rule {{$labels.job}} has {{ $value | humanize }}% of failing DNS queries for query endpoints. expr: | ( - sum by (job) (rate(thanos_ruler_query_apis_dns_failures_total{job=~"thanos-ruler.*"}[5m])) + sum by (job) (rate(thanos_ruler_query_apis_dns_failures_total{job=~"thanos-rule.*"}[5m])) / - sum by (job) (rate(thanos_ruler_query_apis_dns_lookups_total{job=~"thanos-ruler.*"}[5m])) + sum by (job) (rate(thanos_ruler_query_apis_dns_lookups_total{job=~"thanos-rule.*"}[5m])) * 100 > 1 ) for: 15m labels: severity: warning - - alert: ThanosRulerAlertmanagerHighDNSFailures + - alert: ThanosRuleAlertmanagerHighDNSFailures annotations: - message: Thanos Ruler {{$labels.job}} have {{ $value | humanize }}% of failing + message: Thanos Rule {{$labels.job}} has {{ $value | humanize }}% of failing DNS queries for Alertmanager endpoints. expr: | ( - sum by (job) (rate(thanos_ruler_alertmanagers_dns_failures_total{job=~"thanos-ruler.*"}[5m])) + sum by (job) (rate(thanos_ruler_alertmanagers_dns_failures_total{job=~"thanos-rule.*"}[5m])) / - sum by (job) (rate(thanos_ruler_alertmanagers_dns_lookups_total{job=~"thanos-ruler.*"}[5m])) + sum by (job) (rate(thanos_ruler_alertmanagers_dns_lookups_total{job=~"thanos-rule.*"}[5m])) * 100 > 1 ) for: 15m labels: severity: warning + - alert: ThanosRuleNoEvaluationFor10Intervals + annotations: + message: Thanos Rule {{$labels.job}} has {{ $value | humanize }}% rule groups + that did not evaluate for at least 10x of their expected interval. + expr: | + time() - max by (job, group) (prometheus_rule_group_last_evaluation_timestamp_seconds{job=~"thanos-rule.*"}) + > + 10 * max by (job, group) (prometheus_rule_group_interval_seconds{job=~"thanos-rule.*"}) + for: 5m + labels: + severity: info + - alert: ThanosNoRuleEvaluations + annotations: + message: Thanos Rule {{$labels.job}} did not perform any rule evaluations in + the past 2 minutes. + expr: | + sum(rate(prometheus_rule_evaluations_total{job=~"thanos-rule.*"}[2m])) <= 0 + and + sum(thanos_rule_loaded_rules{job=~"thanos-rule.*"}) > 0 + labels: + severity: critical - name: thanos-component-absent.rules rules: - - alert: ThanosCompactorIsDown + - alert: ThanosCompactIsDown annotations: - message: ThanosCompactor has disappeared from Prometheus target discovery. + message: ThanosCompact has disappeared from Prometheus target discovery. expr: | - absent(up{job=~"thanos-compactor.*"} == 1) + absent(up{job=~"thanos-compact.*"} == 1) for: 5m labels: severity: critical - - alert: ThanosQuerierIsDown + - alert: ThanosQueryIsDown annotations: - message: ThanosQuerier has disappeared from Prometheus target discovery. + message: ThanosQuery has disappeared from Prometheus target discovery. expr: | - absent(up{job=~"thanos-querier.*"} == 1) + absent(up{job=~"thanos-query.*"} == 1) for: 5m labels: severity: critical - - alert: ThanosReceiverIsDown + - alert: ThanosReceiveIsDown annotations: - message: ThanosReceiver has disappeared from Prometheus target discovery. + message: ThanosReceive has disappeared from Prometheus target discovery. expr: | - absent(up{job=~"thanos-receiver.*"} == 1) + absent(up{job=~"thanos-receive.*"} == 1) for: 5m labels: severity: critical - - alert: ThanosRulerIsDown + - alert: ThanosRuleIsDown annotations: - message: ThanosRuler has disappeared from Prometheus target discovery. + message: ThanosRule has disappeared from Prometheus target discovery. expr: | - absent(up{job=~"thanos-ruler.*"} == 1) + absent(up{job=~"thanos-rule.*"} == 1) for: 5m labels: severity: critical @@ -439,3 +460,39 @@ groups: for: 5m labels: severity: critical +- name: thanos-bucket-replicate.rules + rules: + - alert: ThanosBucketReplicateIsDown + annotations: + message: Thanos Replicate has disappeared from Prometheus target discovery. + expr: | + absent(up{job=~"thanos-bucket-replicate.*"}) + for: 5m + labels: + severity: critical + - alert: ThanosBucketReplicateErrorRate + annotations: + message: Thanos Replicate failing to run, {{ $value | humanize }}% of attempts + failed. + expr: | + ( + sum(rate(thanos_replicate_replication_runs_total{result="error", job=~"thanos-bucket-replicate.*"}[5m])) + / on (namespace) group_left + sum(rate(thanos_replicate_replication_runs_total{job=~"thanos-bucket-replicate.*"}[5m])) + ) * 100 >= 10 + for: 5m + labels: + severity: critical + - alert: ThanosBucketReplicateRunLatency + annotations: + message: Thanos Replicate {{$labels.job}} has a 99th percentile latency of {{ + $value }} seconds for the replicate operations. + expr: | + ( + histogram_quantile(0.9, sum by (job, le) (rate(thanos_replicate_replication_run_duration_seconds_bucket{job=~"thanos-bucket-replicate.*"}[5m]))) > 20 + and + sum by (job) (rate(thanos_replicate_replication_run_duration_seconds_bucket{job=~"thanos-bucket-replicate.*"}[5m])) > 0 + ) + for: 5m + labels: + severity: critical diff --git a/examples/alerts/rules.yaml b/examples/alerts/rules.yaml index 82190e63c63..7e847fcbe40 100644 --- a/examples/alerts/rules.yaml +++ b/examples/alerts/rules.yaml @@ -1,90 +1,90 @@ groups: -- name: thanos-querier.rules +- name: thanos-query.rules rules: - expr: | ( - sum(rate(grpc_client_handled_total{grpc_code=~"Unknown|ResourceExhausted|Internal|Unavailable|DataLoss|DeadlineExceeded", job=~"thanos-querier.*", grpc_type="unary"}[5m])) + sum(rate(grpc_client_handled_total{grpc_code=~"Unknown|ResourceExhausted|Internal|Unavailable|DataLoss|DeadlineExceeded", job=~"thanos-query.*", grpc_type="unary"}[5m])) / - sum(rate(grpc_client_started_total{job=~"thanos-querier.*", grpc_type="unary"}[5m])) + sum(rate(grpc_client_started_total{job=~"thanos-query.*", grpc_type="unary"}[5m])) ) labels: {} record: :grpc_client_failures_per_unary:sum_rate - expr: | ( - sum(rate(grpc_client_handled_total{grpc_code=~"Unknown|ResourceExhausted|Internal|Unavailable|DataLoss|DeadlineExceeded", job=~"thanos-querier.*", grpc_type="server_stream"}[5m])) + sum(rate(grpc_client_handled_total{grpc_code=~"Unknown|ResourceExhausted|Internal|Unavailable|DataLoss|DeadlineExceeded", job=~"thanos-query.*", grpc_type="server_stream"}[5m])) / - sum(rate(grpc_client_started_total{job=~"thanos-querier.*", grpc_type="server_stream"}[5m])) + sum(rate(grpc_client_started_total{job=~"thanos-query.*", grpc_type="server_stream"}[5m])) ) labels: {} record: :grpc_client_failures_per_stream:sum_rate - expr: | ( - sum(rate(thanos_querier_store_apis_dns_failures_total{job=~"thanos-querier.*"}[5m])) + sum(rate(thanos_querier_store_apis_dns_failures_total{job=~"thanos-query.*"}[5m])) / - sum(rate(thanos_querier_store_apis_dns_lookups_total{job=~"thanos-querier.*"}[5m])) + sum(rate(thanos_querier_store_apis_dns_lookups_total{job=~"thanos-query.*"}[5m])) ) labels: {} record: :thanos_querier_store_apis_dns_failures_per_lookup:sum_rate - expr: | histogram_quantile(0.99, - sum(rate(http_request_duration_seconds_bucket{job=~"thanos-querier.*", handler="query"}[5m])) by (le) + sum(rate(http_request_duration_seconds_bucket{job=~"thanos-query.*", handler="query"}[5m])) by (le) ) labels: quantile: "0.99" record: :query_duration_seconds:histogram_quantile - expr: | histogram_quantile(0.99, - sum(rate(http_request_duration_seconds_bucket{job=~"thanos-querier.*", handler="query_range"}[5m])) by (le) + sum(rate(http_request_duration_seconds_bucket{job=~"thanos-query.*", handler="query_range"}[5m])) by (le) ) labels: quantile: "0.99" record: :api_range_query_duration_seconds:histogram_quantile -- name: thanos-receiver.rules +- name: thanos-receive.rules rules: - expr: | sum( - rate(grpc_server_handled_total{grpc_code=~"Unknown|ResourceExhausted|Internal|Unavailable|DataLoss|DeadlineExceeded", job=~"thanos-receiver.*", grpc_type="unary"}[5m]) + rate(grpc_server_handled_total{grpc_code=~"Unknown|ResourceExhausted|Internal|Unavailable|DataLoss|DeadlineExceeded", job=~"thanos-receive.*", grpc_type="unary"}[5m]) / - rate(grpc_server_started_total{job=~"thanos-receiver.*", grpc_type="unary"}[5m]) + rate(grpc_server_started_total{job=~"thanos-receive.*", grpc_type="unary"}[5m]) ) labels: {} record: :grpc_server_failures_per_unary:sum_rate - expr: | sum( - rate(grpc_server_handled_total{grpc_code=~"Unknown|ResourceExhausted|Internal|Unavailable|DataLoss|DeadlineExceeded", job=~"thanos-receiver.*", grpc_type="server_stream"}[5m]) + rate(grpc_server_handled_total{grpc_code=~"Unknown|ResourceExhausted|Internal|Unavailable|DataLoss|DeadlineExceeded", job=~"thanos-receive.*", grpc_type="server_stream"}[5m]) / - rate(grpc_server_started_total{job=~"thanos-receiver.*", grpc_type="server_stream"}[5m]) + rate(grpc_server_started_total{job=~"thanos-receive.*", grpc_type="server_stream"}[5m]) ) labels: {} record: :grpc_server_failures_per_stream:sum_rate - expr: | sum( - rate(http_requests_total{handler="receive", job=~"thanos-receiver.*", code!~"5.."}[5m]) + rate(http_requests_total{handler="receive", job=~"thanos-receive.*", code!~"5.."}[5m]) / - rate(http_requests_total{handler="receive", job=~"thanos-receiver.*"}[5m]) + rate(http_requests_total{handler="receive", job=~"thanos-receive.*"}[5m]) ) labels: {} record: :http_failure_per_request:sum_rate - expr: | histogram_quantile(0.99, - sum(rate(http_request_duration_seconds_bucket{handler="receive", job=~"thanos-receiver.*"}[5m])) by (le) + sum(rate(http_request_duration_seconds_bucket{handler="receive", job=~"thanos-receive.*"}[5m])) by (le) ) labels: quantile: "0.99" record: :http_request_duration_seconds:histogram_quantile - expr: | ( - sum(rate(thanos_receive_forward_requests_total{result="error", job=~"thanos-receiver.*"}[5m])) + sum(rate(thanos_receive_forward_requests_total{result="error", job=~"thanos-receive.*"}[5m])) / - sum(rate(thanos_receive_forward_requests_total{job=~"thanos-receiver.*"}[5m])) + sum(rate(thanos_receive_forward_requests_total{job=~"thanos-receive.*"}[5m])) ) labels: {} record: :thanos_receive_forward_failure_per_requests:sum_rate - expr: | ( - sum(rate(thanos_receive_hashrings_file_errors_total{job=~"thanos-receiver.*"}[5m])) + sum(rate(thanos_receive_hashrings_file_errors_total{job=~"thanos-receive.*"}[5m])) / - sum(rate(thanos_receive_hashrings_file_refreshes_total{job=~"thanos-receiver.*"}[5m])) + sum(rate(thanos_receive_hashrings_file_refreshes_total{job=~"thanos-receive.*"}[5m])) ) labels: {} record: :thanos_receive_hashring_file_failure_per_refresh:sum_rate @@ -121,3 +121,5 @@ groups: labels: quantile: "0.99" record: :thanos_objstore_bucket_operation_duration_seconds:histogram_quantile +- name: thanos-bucket-replicate.rules + rules: [] diff --git a/examples/dashboards/bucket_replicate.json b/examples/dashboards/bucket_replicate.json new file mode 100644 index 00000000000..daf3c83aa2f --- /dev/null +++ b/examples/dashboards/bucket_replicate.json @@ -0,0 +1,515 @@ +{ + "annotations": { + "list": [ ] + }, + "editable": true, + "gnetId": null, + "graphTooltip": 0, + "hideControls": false, + "links": [ ], + "refresh": "10s", + "rows": [ + { + "collapse": false, + "height": "250px", + "panels": [ + { + "aliasColors": { + "error": "#E24D42" + }, + "bars": false, + "dashLength": 10, + "dashes": false, + "datasource": "$datasource", + "fill": 10, + "id": 1, + "legend": { + "avg": false, + "current": false, + "max": false, + "min": false, + "show": true, + "total": false, + "values": false + }, + "lines": true, + "linewidth": 0, + "links": [ ], + "nullPointMode": "null as zero", + "percentage": false, + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [ ], + "spaceLength": 10, + "span": 4, + "stack": true, + "steppedLine": false, + "targets": [ + { + "expr": "sum(rate(thanos_replicate_replication_runs_total{result=\"error\", namespace=\"$namespace\",job=~\"thanos-bucket-replicate.*\"}[$interval])) / sum(rate(thanos_replicate_replication_runs_total{namespace=\"$namespace\",job=~\"thanos-bucket-replicate.*\"}[$interval]))", + "format": "time_series", + "intervalFactor": 2, + "legendFormat": "error", + "refId": "A", + "step": 10 + } + ], + "thresholds": [ ], + "timeFrom": null, + "timeShift": null, + "title": "Rate", + "tooltip": { + "shared": false, + "sort": 0, + "value_type": "individual" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [ ] + }, + "yaxes": [ + { + "format": "percentunit", + "label": null, + "logBase": 1, + "max": null, + "min": 0, + "show": true + }, + { + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": false + } + ] + }, + { + "aliasColors": { }, + "bars": false, + "dashLength": 10, + "dashes": false, + "datasource": "$datasource", + "description": "Shows rate of errors.", + "fill": 10, + "id": 2, + "legend": { + "avg": false, + "current": false, + "max": false, + "min": false, + "show": true, + "total": false, + "values": false + }, + "lines": true, + "linewidth": 0, + "links": [ ], + "nullPointMode": "null as zero", + "percentage": false, + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [ ], + "spaceLength": 10, + "span": 4, + "stack": true, + "steppedLine": false, + "targets": [ + { + "expr": "sum(rate(thanos_replicate_replication_runs_total{result=\"error\", namespace=\"$namespace\",job=~\"thanos-bucket-replicate.*\"}[$interval])) by (result)", + "format": "time_series", + "intervalFactor": 2, + "legendFormat": "{{result}}", + "legendLink": null, + "step": 10 + } + ], + "thresholds": [ ], + "timeFrom": null, + "timeShift": null, + "title": "Errors", + "tooltip": { + "shared": false, + "sort": 0, + "value_type": "individual" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [ ] + }, + "yaxes": [ + { + "format": "percentunit", + "label": null, + "logBase": 1, + "max": null, + "min": 0, + "show": true + }, + { + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": false + } + ] + }, + { + "aliasColors": { }, + "bars": false, + "dashLength": 10, + "dashes": false, + "datasource": "$datasource", + "description": "Shows how long has it taken to run a replication cycle.", + "fill": 1, + "id": 3, + "legend": { + "avg": false, + "current": false, + "max": false, + "min": false, + "show": true, + "total": false, + "values": false + }, + "lines": true, + "linewidth": 1, + "links": [ ], + "nullPointMode": "null as zero", + "percentage": false, + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [ ], + "spaceLength": 10, + "span": 4, + "stack": false, + "steppedLine": false, + "targets": [ + { + "expr": "histogram_quantile(0.99, sum(rate(thanos_replicate_replication_run_duration_seconds_bucket{result=\"success\", namespace=\"$namespace\",job=~\"thanos-bucket-replicate.*\"}[$interval])) by (job, le)) * 1", + "format": "time_series", + "intervalFactor": 2, + "legendFormat": "P99 {{job}}", + "refId": "A", + "step": 10 + }, + { + "expr": "sum(rate(thanos_replicate_replication_run_duration_seconds_sum{result=\"success\", namespace=\"$namespace\",job=~\"thanos-bucket-replicate.*\"}[$interval])) by (job) * 1 / sum(rate(thanos_replicate_replication_run_duration_seconds_count{result=\"success\", namespace=\"$namespace\",job=~\"thanos-bucket-replicate.*\"}[$interval])) by (job)", + "format": "time_series", + "intervalFactor": 2, + "legendFormat": "mean {{job}}", + "refId": "B", + "step": 10 + }, + { + "expr": "histogram_quantile(0.50, sum(rate(thanos_replicate_replication_run_duration_seconds_bucket{result=\"success\", namespace=\"$namespace\",job=~\"thanos-bucket-replicate.*\"}[$interval])) by (job, le)) * 1", + "format": "time_series", + "intervalFactor": 2, + "legendFormat": "P50 {{job}}", + "refId": "C", + "step": 10 + } + ], + "thresholds": [ ], + "timeFrom": null, + "timeShift": null, + "title": "Duration", + "tooltip": { + "shared": false, + "sort": 0, + "value_type": "individual" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [ ] + }, + "yaxes": [ + { + "format": "s", + "label": null, + "logBase": 1, + "max": null, + "min": 0, + "show": true + }, + { + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": false + } + ] + } + ], + "repeat": null, + "repeatIteration": null, + "repeatRowId": null, + "showTitle": true, + "title": "Bucket Replicate Runs", + "titleSize": "h6" + }, + { + "collapse": false, + "height": "250px", + "panels": [ + { + "aliasColors": { }, + "bars": false, + "dashLength": 10, + "dashes": false, + "datasource": "$datasource", + "fill": 1, + "id": 4, + "legend": { + "avg": false, + "current": false, + "max": false, + "min": false, + "show": true, + "total": false, + "values": false + }, + "lines": true, + "linewidth": 1, + "links": [ ], + "nullPointMode": "null as zero", + "percentage": false, + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [ ], + "spaceLength": 10, + "span": 12, + "stack": false, + "steppedLine": false, + "targets": [ + { + "expr": "sum(rate(thanos_replicate_origin_iterations_total{namespace=\"$namespace\",job=~\"thanos-bucket-replicate.*\"}[$interval]))", + "format": "time_series", + "intervalFactor": 2, + "legendFormat": "iterations", + "legendLink": null, + "step": 10 + }, + { + "expr": "sum(rate(thanos_replicate_origin_meta_loads_total{namespace=\"$namespace\",job=~\"thanos-bucket-replicate.*\"}[$interval]))", + "format": "time_series", + "intervalFactor": 2, + "legendFormat": "meta loads", + "legendLink": null, + "step": 10 + }, + { + "expr": "sum(rate(thanos_replicate_origin_partial_meta_reads_total{namespace=\"$namespace\",job=~\"thanos-bucket-replicate.*\"}[$interval]))", + "format": "time_series", + "intervalFactor": 2, + "legendFormat": "partial meta reads", + "legendLink": null, + "step": 10 + }, + { + "expr": "sum(rate(thanos_replicate_blocks_already_replicated_total{namespace=\"$namespace\",job=~\"thanos-bucket-replicate.*\"}[$interval]))", + "format": "time_series", + "intervalFactor": 2, + "legendFormat": "already replicated blocks", + "legendLink": null, + "step": 10 + }, + { + "expr": "sum(rate(thanos_replicate_blocks_replicated_total{namespace=\"$namespace\",job=~\"thanos-bucket-replicate.*\"}[$interval]))", + "format": "time_series", + "intervalFactor": 2, + "legendFormat": "replicated blocks", + "legendLink": null, + "step": 10 + }, + { + "expr": "sum(rate(thanos_replicate_objects_replicated_total{namespace=\"$namespace\",job=~\"thanos-bucket-replicate.*\"}[$interval]))", + "format": "time_series", + "intervalFactor": 2, + "legendFormat": "replicated objects", + "legendLink": null, + "step": 10 + } + ], + "thresholds": [ ], + "timeFrom": null, + "timeShift": null, + "title": "Metrics", + "tooltip": { + "shared": false, + "sort": 0, + "value_type": "individual" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [ ] + }, + "yaxes": [ + { + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": 0, + "show": true + }, + { + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": false + } + ] + } + ], + "repeat": null, + "repeatIteration": null, + "repeatRowId": null, + "showTitle": true, + "title": "Bucket Replication", + "titleSize": "h6" + } + ], + "schemaVersion": 14, + "style": "dark", + "tags": [ + "thanos-mixin" + ], + "templating": { + "list": [ + { + "current": { + "text": "Prometheus", + "value": "Prometheus" + }, + "hide": 0, + "label": null, + "name": "datasource", + "options": [ ], + "query": "prometheus", + "refresh": 1, + "regex": "", + "type": "datasource" + }, + { + "allValue": null, + "current": { }, + "datasource": "$datasource", + "hide": 0, + "includeAll": false, + "label": "namespace", + "multi": false, + "name": "namespace", + "options": [ ], + "query": "label_values(kube_pod_info{}, namespace)", + "refresh": 1, + "regex": "", + "sort": 2, + "tagValuesQuery": "", + "tags": [ ], + "tagsQuery": "", + "type": "query", + "useTags": false + }, + { + "allValue": "thanos-bucket-replicate.*", + "current": { + "text": "all", + "value": "$__all" + }, + "datasource": "$datasource", + "hide": 0, + "includeAll": true, + "label": "job", + "multi": false, + "name": "job", + "options": [ ], + "query": "label_values(up{namespace=\"$namespace\",job=~\"thanos-bucket-replicate.*\"}, job)", + "refresh": 1, + "regex": "", + "sort": 2, + "tagValuesQuery": "", + "tags": [ ], + "tagsQuery": "", + "type": "query", + "useTags": false + }, + { + "auto": true, + "auto_count": 300, + "auto_min": "10s", + "current": { + "text": "5m", + "value": "5m" + }, + "hide": 0, + "label": "interval", + "name": "interval", + "query": "5m,10m,30m,1h,6h,12h", + "refresh": 2, + "type": "interval" + } + ] + }, + "time": { + "from": "now-1h", + "to": "now" + }, + "timepicker": { + "refresh_intervals": [ + "5s", + "10s", + "30s", + "1m", + "5m", + "15m", + "30m", + "1h", + "2h", + "1d" + ], + "time_options": [ + "5m", + "15m", + "1h", + "6h", + "12h", + "24h", + "2d", + "7d", + "30d" + ] + }, + "timezone": "", + "title": "Thanos / BucketReplicate", + "uid": "49f644ecf8e31dd1a5084ae2a5f10e80", + "version": 0 +} diff --git a/examples/dashboards/compactor.json b/examples/dashboards/compact.json similarity index 99% rename from examples/dashboards/compactor.json rename to examples/dashboards/compact.json index ba36ef58db3..9d321458302 100644 --- a/examples/dashboards/compactor.json +++ b/examples/dashboards/compact.json @@ -1215,7 +1215,7 @@ "thresholds": [ ], "timeFrom": null, "timeShift": null, - "title": "Memory Used", + "title": "Memory Used (Bytes)", "tooltip": { "shared": false, "sort": 0, @@ -1451,7 +1451,7 @@ "useTags": false }, { - "allValue": "thanos-compactor.*", + "allValue": "thanos-compact.*", "current": { "text": "all", "value": "$__all" @@ -1463,7 +1463,7 @@ "multi": false, "name": "job", "options": [ ], - "query": "label_values(up{namespace=\"$namespace\",job=~\"thanos-compactor.*\"}, job)", + "query": "label_values(up{namespace=\"$namespace\",job=~\"thanos-compact.*\"}, job)", "refresh": 1, "regex": "", "sort": 2, @@ -1486,7 +1486,7 @@ "multi": false, "name": "pod", "options": [ ], - "query": "label_values(kube_pod_info{namespace=\"$namespace\",created_by_name=~\"thanos-compactor.*\"}, pod)", + "query": "label_values(kube_pod_info{namespace=\"$namespace\",created_by_name=~\"thanos-compact.*\"}, pod)", "refresh": 1, "regex": "", "sort": 2, @@ -1543,7 +1543,7 @@ ] }, "timezone": "", - "title": "Thanos / Compactor", - "uid": "8378cc7f803b0bfae5809a101991ed76", + "title": "Thanos / Compact", + "uid": "651943d05a8123e32867b4673963f42b", "version": 0 } diff --git a/examples/dashboards/dashboards.md b/examples/dashboards/dashboards.md index df12f49bd5c..de2dd484230 100644 --- a/examples/dashboards/dashboards.md +++ b/examples/dashboards/dashboards.md @@ -2,13 +2,14 @@ There exists Grafana dashboards for each component (not all of them complete) targeted for environments running Kubernetes: -- [Thanos Overview](thanos-overview.json) -- [Thanos Compact](thanos-compactor.json) -- [Thanos Querier](thanos-querier.json) -- [Thanos Store](thanos-store.json) -- [Thanos Receiver](thanos-receiver.json) -- [Thanos Sidecar](thanos-sidecar.json) -- [Thanos Ruler](thanos-ruler.json) +- [Thanos Overview](overview.json) +- [Thanos Compact](compact.json) +- [Thanos Querier](query.json) +- [Thanos Store](store.json) +- [Thanos Receiver](receive.json) +- [Thanos Sidecar](sidecar.json) +- [Thanos Ruler](rule.json) +- [Thanos Replicate](bucket_replicate.json) You can import them via `Import -> Paste JSON` in Grafana. These dashboards require Grafana 5 or above, importing them in older versions are known not to work. diff --git a/examples/dashboards/overview.json b/examples/dashboards/overview.json index ebd45038ca1..79a383fd88c 100644 --- a/examples/dashboards/overview.json +++ b/examples/dashboards/overview.json @@ -43,10 +43,10 @@ "linewidth": 0, "links": [ { - "dashboard": "Thanos / Querier", + "dashboard": "Thanos / Query", "includeVars": true, "keepTime": true, - "title": "Thanos / Querier", + "title": "Thanos / Query", "type": "dashboard" } ], @@ -62,7 +62,7 @@ "steppedLine": false, "targets": [ { - "expr": "sum(label_replace(rate(http_requests_total{namespace=\"$namespace\",job=~\"thanos-querier.*\",handler=\"query\"}[$interval]),\"status_code\", \"${1}xx\", \"code\", \"([0-9])..\")) by (job, status_code)", + "expr": "sum(label_replace(rate(http_requests_total{namespace=\"$namespace\",job=~\"thanos-query.*\",handler=\"query\"}[$interval]),\"status_code\", \"${1}xx\", \"code\", \"([0-9])..\")) by (job, status_code)", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{job}} {{status_code}}", @@ -130,10 +130,10 @@ "linewidth": 0, "links": [ { - "dashboard": "Thanos / Querier", + "dashboard": "Thanos / Query", "includeVars": true, "keepTime": true, - "title": "Thanos / Querier", + "title": "Thanos / Query", "type": "dashboard" } ], @@ -149,7 +149,7 @@ "steppedLine": false, "targets": [ { - "expr": "sum(rate(http_requests_total{namespace=\"$namespace\",job=~\"thanos-querier.*\",handler=\"query\",code=~\"5..\"}[$interval])) / sum(rate(http_requests_total{namespace=\"$namespace\",job=~\"thanos-querier.*\",handler=\"query\"}[$interval]))", + "expr": "sum(rate(http_requests_total{namespace=\"$namespace\",job=~\"thanos-query.*\",handler=\"query\",code=~\"5..\"}[$interval])) / sum(rate(http_requests_total{namespace=\"$namespace\",job=~\"thanos-query.*\",handler=\"query\"}[$interval]))", "format": "time_series", "intervalFactor": 2, "legendFormat": "error", @@ -215,10 +215,10 @@ "linewidth": 1, "links": [ { - "dashboard": "Thanos / Querier", + "dashboard": "Thanos / Query", "includeVars": true, "keepTime": true, - "title": "Thanos / Querier", + "title": "Thanos / Query", "type": "dashboard" } ], @@ -234,7 +234,7 @@ "steppedLine": false, "targets": [ { - "expr": "histogram_quantile(0.99, sum(rate(http_request_duration_seconds_bucket{namespace=\"$namespace\",job=~\"thanos-querier.*\",handler=\"query\"}[$interval])) by (job, le))", + "expr": "histogram_quantile(0.99, sum(rate(http_request_duration_seconds_bucket{namespace=\"$namespace\",job=~\"thanos-query.*\",handler=\"query\"}[$interval])) by (job, le))", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{job}} P99", @@ -337,10 +337,10 @@ "linewidth": 0, "links": [ { - "dashboard": "Thanos / Querier", + "dashboard": "Thanos / Query", "includeVars": true, "keepTime": true, - "title": "Thanos / Querier", + "title": "Thanos / Query", "type": "dashboard" } ], @@ -356,7 +356,7 @@ "steppedLine": false, "targets": [ { - "expr": "sum(label_replace(rate(http_requests_total{namespace=\"$namespace\",job=~\"thanos-querier.*\",handler=\"query_range\"}[$interval]),\"status_code\", \"${1}xx\", \"code\", \"([0-9])..\")) by (job, status_code)", + "expr": "sum(label_replace(rate(http_requests_total{namespace=\"$namespace\",job=~\"thanos-query.*\",handler=\"query_range\"}[$interval]),\"status_code\", \"${1}xx\", \"code\", \"([0-9])..\")) by (job, status_code)", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{job}} {{status_code}}", @@ -424,10 +424,10 @@ "linewidth": 0, "links": [ { - "dashboard": "Thanos / Querier", + "dashboard": "Thanos / Query", "includeVars": true, "keepTime": true, - "title": "Thanos / Querier", + "title": "Thanos / Query", "type": "dashboard" } ], @@ -443,7 +443,7 @@ "steppedLine": false, "targets": [ { - "expr": "sum(rate(http_requests_total{namespace=\"$namespace\",job=~\"thanos-querier.*\",handler=\"query_range\",code=~\"5..\"}[$interval])) / sum(rate(http_requests_total{namespace=\"$namespace\",job=~\"thanos-querier.*\",handler=\"query_range\"}[$interval]))", + "expr": "sum(rate(http_requests_total{namespace=\"$namespace\",job=~\"thanos-query.*\",handler=\"query_range\",code=~\"5..\"}[$interval])) / sum(rate(http_requests_total{namespace=\"$namespace\",job=~\"thanos-query.*\",handler=\"query_range\"}[$interval]))", "format": "time_series", "intervalFactor": 2, "legendFormat": "error", @@ -509,10 +509,10 @@ "linewidth": 1, "links": [ { - "dashboard": "Thanos / Querier", + "dashboard": "Thanos / Query", "includeVars": true, "keepTime": true, - "title": "Thanos / Querier", + "title": "Thanos / Query", "type": "dashboard" } ], @@ -528,7 +528,7 @@ "steppedLine": false, "targets": [ { - "expr": "histogram_quantile(0.99, sum(rate(http_request_duration_seconds_bucket{namespace=\"$namespace\",job=~\"thanos-querier.*\",handler=\"query_range\"}[$interval])) by (job, le))", + "expr": "histogram_quantile(0.99, sum(rate(http_request_duration_seconds_bucket{namespace=\"$namespace\",job=~\"thanos-query.*\",handler=\"query_range\"}[$interval])) by (job, le))", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{job}} P99", @@ -1241,10 +1241,10 @@ "linewidth": 0, "links": [ { - "dashboard": "Thanos / Receiver", + "dashboard": "Thanos / Receive", "includeVars": true, "keepTime": true, - "title": "Thanos / Receiver", + "title": "Thanos / Receive", "type": "dashboard" } ], @@ -1260,7 +1260,7 @@ "steppedLine": false, "targets": [ { - "expr": "sum(label_replace(rate(http_requests_total{handler=\"receive\",namespace=\"$namespace\",job=~\"thanos-receiver.*\"}[$interval]),\"status_code\", \"${1}xx\", \"code\", \"([0-9])..\")) by (job, status_code)", + "expr": "sum(label_replace(rate(http_requests_total{handler=\"receive\",namespace=\"$namespace\",job=~\"thanos-receive.*\"}[$interval]),\"status_code\", \"${1}xx\", \"code\", \"([0-9])..\")) by (job, status_code)", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{job}} {{status_code}}", @@ -1328,10 +1328,10 @@ "linewidth": 0, "links": [ { - "dashboard": "Thanos / Receiver", + "dashboard": "Thanos / Receive", "includeVars": true, "keepTime": true, - "title": "Thanos / Receiver", + "title": "Thanos / Receive", "type": "dashboard" } ], @@ -1347,7 +1347,7 @@ "steppedLine": false, "targets": [ { - "expr": "sum(rate(http_requests_total{handler=\"receive\",namespace=\"$namespace\",job=~\"thanos-receiver.*\",code=~\"5..\"}[$interval])) / sum(rate(http_requests_total{handler=\"receive\",namespace=\"$namespace\",job=~\"thanos-receiver.*\"}[$interval]))", + "expr": "sum(rate(http_requests_total{handler=\"receive\",namespace=\"$namespace\",job=~\"thanos-receive.*\",code=~\"5..\"}[$interval])) / sum(rate(http_requests_total{handler=\"receive\",namespace=\"$namespace\",job=~\"thanos-receive.*\"}[$interval]))", "format": "time_series", "intervalFactor": 2, "legendFormat": "error", @@ -1413,10 +1413,10 @@ "linewidth": 1, "links": [ { - "dashboard": "Thanos / Receiver", + "dashboard": "Thanos / Receive", "includeVars": true, "keepTime": true, - "title": "Thanos / Receiver", + "title": "Thanos / Receive", "type": "dashboard" } ], @@ -1432,7 +1432,7 @@ "steppedLine": false, "targets": [ { - "expr": "histogram_quantile(0.99, sum(rate(http_request_duration_seconds_bucket{handler=\"receive\",namespace=\"$namespace\",job=~\"thanos-receiver.*\"}[$interval])) by (job, le))", + "expr": "histogram_quantile(0.99, sum(rate(http_request_duration_seconds_bucket{handler=\"receive\",namespace=\"$namespace\",job=~\"thanos-receive.*\"}[$interval])) by (job, le))", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{job}} P99", @@ -1527,10 +1527,10 @@ "linewidth": 0, "links": [ { - "dashboard": "Thanos / Ruler", + "dashboard": "Thanos / Rule", "includeVars": true, "keepTime": true, - "title": "Thanos / Ruler", + "title": "Thanos / Rule", "type": "dashboard" } ], @@ -1546,7 +1546,7 @@ "steppedLine": false, "targets": [ { - "expr": "sum(rate(thanos_alert_sender_alerts_sent_total{namespace=\"$namespace\",job=~\"thanos-ruler.*\"}[$interval])) by (job, alertmanager)", + "expr": "sum(rate(thanos_alert_sender_alerts_sent_total{namespace=\"$namespace\",job=~\"thanos-rule.*\"}[$interval])) by (job, alertmanager)", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{job}} {{alertmanager}}", @@ -1614,10 +1614,10 @@ "linewidth": 0, "links": [ { - "dashboard": "Thanos / Ruler", + "dashboard": "Thanos / Rule", "includeVars": true, "keepTime": true, - "title": "Thanos / Ruler", + "title": "Thanos / Rule", "type": "dashboard" } ], @@ -1633,7 +1633,7 @@ "steppedLine": false, "targets": [ { - "expr": "sum(rate(thanos_alert_sender_errors_total{namespace=\"$namespace\",job=~\"thanos-ruler.*\"}[$interval])) / sum(rate(thanos_alert_sender_alerts_sent_total{namespace=\"$namespace\",job=~\"thanos-ruler.*\"}[$interval]))", + "expr": "sum(rate(thanos_alert_sender_errors_total{namespace=\"$namespace\",job=~\"thanos-rule.*\"}[$interval])) / sum(rate(thanos_alert_sender_alerts_sent_total{namespace=\"$namespace\",job=~\"thanos-rule.*\"}[$interval]))", "format": "time_series", "intervalFactor": 2, "legendFormat": "error", @@ -1699,10 +1699,10 @@ "linewidth": 1, "links": [ { - "dashboard": "Thanos / Ruler", + "dashboard": "Thanos / Rule", "includeVars": true, "keepTime": true, - "title": "Thanos / Ruler", + "title": "Thanos / Rule", "type": "dashboard" } ], @@ -1718,7 +1718,7 @@ "steppedLine": false, "targets": [ { - "expr": "histogram_quantile(0.99, sum(rate(thanos_alert_sender_latency_seconds_bucket{namespace=\"$namespace\",job=~\"thanos-ruler.*\"}[$interval])) by (job, le))", + "expr": "histogram_quantile(0.99, sum(rate(thanos_alert_sender_latency_seconds_bucket{namespace=\"$namespace\",job=~\"thanos-rule.*\"}[$interval])) by (job, le))", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{job}} P99", @@ -1813,10 +1813,10 @@ "linewidth": 0, "links": [ { - "dashboard": "Thanos / Compactor", + "dashboard": "Thanos / Compact", "includeVars": true, "keepTime": true, - "title": "Thanos / Compactor", + "title": "Thanos / Compact", "type": "dashboard" } ], @@ -1832,7 +1832,7 @@ "steppedLine": false, "targets": [ { - "expr": "sum(rate(thanos_compact_group_compactions_total{namespace=\"$namespace\",job=~\"thanos-compactor.*\"}[$interval])) by (job)", + "expr": "sum(rate(thanos_compact_group_compactions_total{namespace=\"$namespace\",job=~\"thanos-compact.*\"}[$interval])) by (job)", "format": "time_series", "intervalFactor": 2, "legendFormat": "compaction {{job}}", @@ -1900,10 +1900,10 @@ "linewidth": 0, "links": [ { - "dashboard": "Thanos / Compactor", + "dashboard": "Thanos / Compact", "includeVars": true, "keepTime": true, - "title": "Thanos / Compactor", + "title": "Thanos / Compact", "type": "dashboard" } ], @@ -1919,7 +1919,7 @@ "steppedLine": false, "targets": [ { - "expr": "sum(rate(thanos_compact_group_compactions_failures_total{namespace=\"$namespace\",job=~\"thanos-compactor.*\"}[$interval])) / sum(rate(thanos_compact_group_compactions_total{namespace=\"$namespace\",job=~\"thanos-compactor.*\"}[$interval]))", + "expr": "sum(rate(thanos_compact_group_compactions_failures_total{namespace=\"$namespace\",job=~\"thanos-compact.*\"}[$interval])) / sum(rate(thanos_compact_group_compactions_total{namespace=\"$namespace\",job=~\"thanos-compact.*\"}[$interval]))", "format": "time_series", "intervalFactor": 2, "legendFormat": "error", @@ -1968,7 +1968,7 @@ "repeatIteration": null, "repeatRowId": null, "showTitle": true, - "title": "Compactor", + "title": "Compact", "titleSize": "h6" } ], diff --git a/examples/dashboards/querier.json b/examples/dashboards/query.json similarity index 99% rename from examples/dashboards/querier.json rename to examples/dashboards/query.json index f69e569ab8c..d64f1f625d3 100644 --- a/examples/dashboards/querier.json +++ b/examples/dashboards/query.json @@ -2147,7 +2147,7 @@ "thresholds": [ ], "timeFrom": null, "timeShift": null, - "title": "Memory Used", + "title": "Memory Used (Bytes)", "tooltip": { "shared": false, "sort": 0, @@ -2383,7 +2383,7 @@ "useTags": false }, { - "allValue": "thanos-querier.*", + "allValue": "thanos-query.*", "current": { "text": "all", "value": "$__all" @@ -2395,7 +2395,7 @@ "multi": false, "name": "job", "options": [ ], - "query": "label_values(up{namespace=\"$namespace\",job=~\"thanos-querier.*\"}, job)", + "query": "label_values(up{namespace=\"$namespace\",job=~\"thanos-query.*\"}, job)", "refresh": 1, "regex": "", "sort": 2, @@ -2418,7 +2418,7 @@ "multi": false, "name": "pod", "options": [ ], - "query": "label_values(kube_pod_info{namespace=\"$namespace\",created_by_name=~\"thanos-querier.*\"}, pod)", + "query": "label_values(kube_pod_info{namespace=\"$namespace\",created_by_name=~\"thanos-query.*\"}, pod)", "refresh": 1, "regex": "", "sort": 2, @@ -2475,7 +2475,7 @@ ] }, "timezone": "", - "title": "Thanos / Querier", - "uid": "98fde97ddeaf2981041745f1f2ba68c2", + "title": "Thanos / Query", + "uid": "af36c91291a603f1d9fbdabdd127ac4a", "version": 0 } diff --git a/examples/dashboards/receiver.json b/examples/dashboards/receive.json similarity index 99% rename from examples/dashboards/receiver.json rename to examples/dashboards/receive.json index 3abba13206e..6a2dc294683 100644 --- a/examples/dashboards/receiver.json +++ b/examples/dashboards/receive.json @@ -2002,7 +2002,7 @@ "thresholds": [ ], "timeFrom": null, "timeShift": null, - "title": "Memory Used", + "title": "Memory Used (Bytes)", "tooltip": { "shared": false, "sort": 0, @@ -2238,7 +2238,7 @@ "useTags": false }, { - "allValue": "thanos-receiver.*", + "allValue": "thanos-receive.*", "current": { "text": "all", "value": "$__all" @@ -2250,7 +2250,7 @@ "multi": false, "name": "job", "options": [ ], - "query": "label_values(up{namespace=\"$namespace\",job=~\"thanos-receiver.*\"}, job)", + "query": "label_values(up{namespace=\"$namespace\",job=~\"thanos-receive.*\"}, job)", "refresh": 1, "regex": "", "sort": 2, @@ -2273,7 +2273,7 @@ "multi": false, "name": "pod", "options": [ ], - "query": "label_values(kube_pod_info{namespace=\"$namespace\",created_by_name=~\"thanos-receiver.*\"}, pod)", + "query": "label_values(kube_pod_info{namespace=\"$namespace\",created_by_name=~\"thanos-receive.*\"}, pod)", "refresh": 1, "regex": "", "sort": 2, @@ -2330,7 +2330,7 @@ ] }, "timezone": "", - "title": "Thanos / Receiver", - "uid": "b5958da86b143e45752506d3c09c4f92", + "title": "Thanos / Receive", + "uid": "916a852b00ccc5ed81056644718fa4fb", "version": 0 } diff --git a/examples/dashboards/ruler.json b/examples/dashboards/rule.json similarity index 99% rename from examples/dashboards/ruler.json rename to examples/dashboards/rule.json index 6dc5f85a25b..55c0498172b 100644 --- a/examples/dashboards/ruler.json +++ b/examples/dashboards/rule.json @@ -1680,7 +1680,7 @@ "thresholds": [ ], "timeFrom": null, "timeShift": null, - "title": "Memory Used", + "title": "Memory Used (Bytes)", "tooltip": { "shared": false, "sort": 0, @@ -1916,7 +1916,7 @@ "useTags": false }, { - "allValue": "thanos-ruler.*", + "allValue": "thanos-rule.*", "current": { "text": "all", "value": "$__all" @@ -1928,7 +1928,7 @@ "multi": false, "name": "job", "options": [ ], - "query": "label_values(up{namespace=\"$namespace\",job=~\"thanos-ruler.*\"}, job)", + "query": "label_values(up{namespace=\"$namespace\",job=~\"thanos-rule.*\"}, job)", "refresh": 1, "regex": "", "sort": 2, @@ -1951,7 +1951,7 @@ "multi": false, "name": "pod", "options": [ ], - "query": "label_values(kube_pod_info{namespace=\"$namespace\",created_by_name=~\"thanos-ruler.*\"}, pod)", + "query": "label_values(kube_pod_info{namespace=\"$namespace\",created_by_name=~\"thanos-rule.*\"}, pod)", "refresh": 1, "regex": "", "sort": 2, @@ -2008,7 +2008,7 @@ ] }, "timezone": "", - "title": "Thanos / Ruler", - "uid": "ecc62fafbb8ae0213cb9188ec4f3b553", + "title": "Thanos / Rule", + "uid": "35da848f5f92b2dc612e0c3a0577b8a1", "version": 0 } diff --git a/examples/dashboards/sidecar.json b/examples/dashboards/sidecar.json index f0d5bbb4324..a408b048df7 100644 --- a/examples/dashboards/sidecar.json +++ b/examples/dashboards/sidecar.json @@ -864,7 +864,7 @@ "steppedLine": false, "targets": [ { - "expr": "sum(rate(grpc_client_handled_total{namespace=\"$namespace\",job=~\"$job\",grpc_type=\"server_stream\"}[$interval])) by (job, grpc_method, grpc_code)", + "expr": "sum(rate(grpc_server_handled_total{namespace=\"$namespace\",job=~\"$job\",grpc_type=\"server_stream\"}[$interval])) by (job, grpc_method, grpc_code)", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{job}} {{grpc_method}} {{grpc_code}}", @@ -941,7 +941,7 @@ "steppedLine": false, "targets": [ { - "expr": "sum(rate(grpc_client_handled_total{grpc_code!=\"OK\",namespace=\"$namespace\",job=~\"$job\",grpc_type=\"server_stream\"}[$interval])) by (job, grpc_method, grpc_code)\n", + "expr": "sum(rate(grpc_server_handled_total{grpc_code!=\"OK\",namespace=\"$namespace\",job=~\"$job\",grpc_type=\"server_stream\"}[$interval])) by (job, grpc_method, grpc_code)\n", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{job}} {{grpc_method}} {{grpc_code}}", @@ -1018,7 +1018,7 @@ "steppedLine": false, "targets": [ { - "expr": "histogram_quantile(0.99, sum(rate(grpc_client_handling_seconds_bucket{namespace=\"$namespace\",job=~\"$job\",grpc_type=\"server_stream\"}[$interval])) by (job, grpc_method, le)) * 1", + "expr": "histogram_quantile(0.99, sum(rate(grpc_server_handling_seconds_bucket{namespace=\"$namespace\",job=~\"$job\",grpc_type=\"server_stream\"}[$interval])) by (job, grpc_method, le)) * 1", "format": "time_series", "intervalFactor": 2, "legendFormat": "P99 {{job}} {{grpc_method}}", @@ -1026,7 +1026,7 @@ "step": 10 }, { - "expr": "sum(rate(grpc_client_handling_seconds_sum{namespace=\"$namespace\",job=~\"$job\",grpc_type=\"server_stream\"}[$interval])) by (job) * 1\n/\nsum(rate(grpc_client_handling_seconds_count{namespace=\"$namespace\",job=~\"$job\",grpc_type=\"server_stream\"}[$interval])) by (job)\n", + "expr": "sum(rate(grpc_server_handling_seconds_sum{namespace=\"$namespace\",job=~\"$job\",grpc_type=\"server_stream\"}[$interval])) by (job) * 1\n/\nsum(rate(grpc_server_handling_seconds_count{namespace=\"$namespace\",job=~\"$job\",grpc_type=\"server_stream\"}[$interval])) by (job)\n", "format": "time_series", "intervalFactor": 2, "legendFormat": "mean {{job}} {{grpc_method}}", @@ -1034,7 +1034,7 @@ "step": 10 }, { - "expr": "histogram_quantile(0.50, sum(rate(grpc_client_handling_seconds_bucket{namespace=\"$namespace\",job=~\"$job\",grpc_type=\"server_stream\"}[$interval])) by (job, grpc_method, le)) * 1", + "expr": "histogram_quantile(0.50, sum(rate(grpc_server_handling_seconds_bucket{namespace=\"$namespace\",job=~\"$job\",grpc_type=\"server_stream\"}[$interval])) by (job, grpc_method, le)) * 1", "format": "time_series", "intervalFactor": 2, "legendFormat": "P50 {{job}} {{grpc_method}}", @@ -1555,7 +1555,7 @@ "thresholds": [ ], "timeFrom": null, "timeShift": null, - "title": "Memory Used", + "title": "Memory Used (Bytes)", "tooltip": { "shared": false, "sort": 0, diff --git a/examples/dashboards/store.json b/examples/dashboards/store.json index 4b0f0aaba9e..231f327cd56 100644 --- a/examples/dashboards/store.json +++ b/examples/dashboards/store.json @@ -2056,7 +2056,7 @@ "thresholds": [ ], "timeFrom": null, "timeShift": null, - "title": "Chunk Size", + "title": "Chunk Size (bytes)", "tooltip": { "shared": false, "sort": 0, @@ -2217,6 +2217,7 @@ "dashLength": 10, "dashes": false, "datasource": "$datasource", + "description": "Show the size of data fetched, in bytes", "fill": 1, "id": 26, "legend": { @@ -2270,7 +2271,7 @@ "thresholds": [ ], "timeFrom": null, "timeShift": null, - "title": "Data Fetched", + "title": "Data Fetched (bytes)", "tooltip": { "shared": false, "sort": 0, @@ -2533,7 +2534,7 @@ "steppedLine": false, "targets": [ { - "expr": "histogram_quantile(0.99, sum(rate(thanos_bucket_store_series_merge_duration_seconds_bucket_bucket{namespace=\"$namespace\",job=~\"$job\"}[$interval])) by (job, le)) * 1", + "expr": "histogram_quantile(0.99, sum(rate(thanos_bucket_store_series_merge_duration_seconds_bucket{namespace=\"$namespace\",job=~\"$job\"}[$interval])) by (job, le)) * 1", "format": "time_series", "intervalFactor": 2, "legendFormat": "P99 {{job}}", @@ -2541,7 +2542,7 @@ "step": 10 }, { - "expr": "sum(rate(thanos_bucket_store_series_merge_duration_seconds_bucket_sum{namespace=\"$namespace\",job=~\"$job\"}[$interval])) by (job) * 1 / sum(rate(thanos_bucket_store_series_merge_duration_seconds_bucket_count{namespace=\"$namespace\",job=~\"$job\"}[$interval])) by (job)", + "expr": "sum(rate(thanos_bucket_store_series_merge_duration_seconds_sum{namespace=\"$namespace\",job=~\"$job\"}[$interval])) by (job) * 1 / sum(rate(thanos_bucket_store_series_merge_duration_seconds_count{namespace=\"$namespace\",job=~\"$job\"}[$interval])) by (job)", "format": "time_series", "intervalFactor": 2, "legendFormat": "mean {{job}}", @@ -2549,7 +2550,7 @@ "step": 10 }, { - "expr": "histogram_quantile(0.50, sum(rate(thanos_bucket_store_series_merge_duration_seconds_bucket_bucket{namespace=\"$namespace\",job=~\"$job\"}[$interval])) by (job, le)) * 1", + "expr": "histogram_quantile(0.50, sum(rate(thanos_bucket_store_series_merge_duration_seconds_bucket{namespace=\"$namespace\",job=~\"$job\"}[$interval])) by (job, le)) * 1", "format": "time_series", "intervalFactor": 2, "legendFormat": "P50 {{job}}", @@ -2626,7 +2627,7 @@ "steppedLine": false, "targets": [ { - "expr": "histogram_quantile(0.99, sum(rate(thanos_bucket_store_series_gate_duration_seconds_bucket_bucket{namespace=\"$namespace\",job=~\"$job\"}[$interval])) by (job, le)) * 1", + "expr": "histogram_quantile(0.99, sum(rate(thanos_bucket_store_series_gate_duration_seconds_bucket{namespace=\"$namespace\",job=~\"$job\"}[$interval])) by (job, le)) * 1", "format": "time_series", "intervalFactor": 2, "legendFormat": "P99 {{job}}", @@ -2634,7 +2635,7 @@ "step": 10 }, { - "expr": "sum(rate(thanos_bucket_store_series_gate_duration_seconds_bucket_sum{namespace=\"$namespace\",job=~\"$job\"}[$interval])) by (job) * 1 / sum(rate(thanos_bucket_store_series_gate_duration_seconds_bucket_count{namespace=\"$namespace\",job=~\"$job\"}[$interval])) by (job)", + "expr": "sum(rate(thanos_bucket_store_series_gate_duration_seconds_sum{namespace=\"$namespace\",job=~\"$job\"}[$interval])) by (job) * 1 / sum(rate(thanos_bucket_store_series_gate_duration_seconds_count{namespace=\"$namespace\",job=~\"$job\"}[$interval])) by (job)", "format": "time_series", "intervalFactor": 2, "legendFormat": "mean {{job}}", @@ -2642,7 +2643,7 @@ "step": 10 }, { - "expr": "histogram_quantile(0.50, sum(rate(thanos_bucket_store_series_gate_duration_seconds_bucket_bucket{namespace=\"$namespace\",job=~\"$job\"}[$interval])) by (job, le)) * 1", + "expr": "histogram_quantile(0.50, sum(rate(thanos_bucket_store_series_gate_duration_seconds_bucket{namespace=\"$namespace\",job=~\"$job\"}[$interval])) by (job, le)) * 1", "format": "time_series", "intervalFactor": 2, "legendFormat": "P50 {{job}}", @@ -2781,7 +2782,7 @@ "thresholds": [ ], "timeFrom": null, "timeShift": null, - "title": "Memory Used", + "title": "Memory Used (Bytes)", "tooltip": { "shared": false, "sort": 0, diff --git a/go.mod b/go.mod index beb3c75d701..620eda6f711 100644 --- a/go.mod +++ b/go.mod @@ -2,28 +2,16 @@ module github.com/thanos-io/thanos require ( cloud.google.com/go v0.49.0 - cloud.google.com/go/bigquery v1.3.0 // indirect cloud.google.com/go/storage v1.3.0 - github.com/Azure/azure-pipeline-go v0.2.2 // indirect - github.com/Azure/azure-sdk-for-go v36.1.0+incompatible // indirect github.com/Azure/azure-storage-blob-go v0.8.0 - github.com/Azure/go-autorest/autorest v0.9.3-0.20191028180845-3492b2aff503 // indirect - github.com/Azure/go-autorest/autorest/adal v0.8.1-0.20191028180845-3492b2aff503 // indirect - github.com/Azure/go-autorest/autorest/to v0.3.1-0.20191028180845-3492b2aff503 // indirect - github.com/Azure/go-autorest/autorest/validation v0.2.1-0.20191028180845-3492b2aff503 // indirect github.com/NYTimes/gziphandler v1.1.1 - github.com/OneOfOne/xxhash v1.2.6 // indirect github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d github.com/aliyun/aliyun-oss-go-sdk v2.0.4+incompatible github.com/armon/go-metrics v0.3.0 - github.com/baiyubin/aliyun-sts-go-sdk v0.0.0-20180326062324-cfa1a18b161f // indirect github.com/bradfitz/gomemcache v0.0.0-20190913173617-a41fca850d0b github.com/cespare/xxhash v1.1.0 - github.com/cespare/xxhash/v2 v2.1.1 // indirect - github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd // indirect - github.com/elastic/go-sysinfo v1.1.1 // indirect - github.com/elastic/go-windows v1.0.1 // indirect - github.com/evanphx/json-patch v4.5.0+incompatible // indirect + github.com/cortexproject/cortex v0.6.1-0.20200228110116-92ab6cbe0995 + github.com/davecgh/go-spew v1.1.1 github.com/facette/natsort v0.0.0-20181210072756-2cd4dd1e2dcb github.com/fatih/structtag v1.1.0 github.com/fortytw2/leaktest v1.3.0 @@ -31,82 +19,48 @@ require ( github.com/go-kit/kit v0.9.0 github.com/go-openapi/strfmt v0.19.2 github.com/gogo/protobuf v1.3.1 - github.com/golang/groupcache v0.0.0-20191027212112-611e8accdfc9 // indirect + github.com/golang/groupcache v0.0.0-20191027212112-611e8accdfc9 github.com/golang/snappy v0.0.1 github.com/googleapis/gax-go v2.0.2+incompatible - github.com/googleapis/gnostic v0.3.1 // indirect github.com/gophercloud/gophercloud v0.6.0 - github.com/gopherjs/gopherjs v0.0.0-20191106031601-ce3c9ade29de // indirect github.com/grpc-ecosystem/go-grpc-middleware v1.1.0 github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 - github.com/grpc-ecosystem/grpc-gateway v1.12.1 // indirect - github.com/hashicorp/consul/api v1.3.0 // indirect - github.com/hashicorp/go-immutable-radix v1.1.0 // indirect - github.com/hashicorp/go-msgpack v0.5.5 // indirect - github.com/hashicorp/go-rootcerts v1.0.1 // indirect github.com/hashicorp/golang-lru v0.5.3 - github.com/hashicorp/memberlist v0.1.5 // indirect - github.com/hashicorp/serf v0.8.5 // indirect - github.com/json-iterator/go v1.1.8 // indirect - github.com/jstemmer/go-junit-report v0.9.1 // indirect - github.com/julienschmidt/httprouter v1.3.0 // indirect github.com/leanovate/gopter v0.2.4 github.com/lightstep/lightstep-tracer-go v0.18.0 github.com/lovoo/gcloud-opentracing v0.3.0 - github.com/mattn/go-ieproxy v0.0.0-20191113090002-7c0f6868bffe // indirect - github.com/mattn/go-runewidth v0.0.6 // indirect github.com/miekg/dns v1.1.22 - github.com/minio/minio-go/v6 v6.0.45 + github.com/minio/minio-go/v6 v6.0.49 github.com/mozillazg/go-cos v0.13.0 github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f github.com/oklog/run v1.0.0 github.com/oklog/ulid v1.3.1 github.com/olekukonko/tablewriter v0.0.2 - github.com/onsi/ginkgo v1.10.3 // indirect - github.com/onsi/gomega v1.7.1 // indirect github.com/opentracing/basictracer-go v1.0.0 - github.com/opentracing/opentracing-go v1.1.0 - github.com/pkg/errors v0.8.1 + github.com/opentracing/opentracing-go v1.1.1-0.20200124165624-2876d2018785 + github.com/pkg/errors v0.9.1 + github.com/pmezard/go-difflib v1.0.0 github.com/prometheus/alertmanager v0.20.0 - github.com/prometheus/client_golang v1.2.1 - github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4 - github.com/prometheus/common v0.7.0 - github.com/prometheus/procfs v0.0.6 // indirect - github.com/prometheus/prometheus v1.8.2-0.20200110114423-1e64d757f711 // master ~ v2.15.2 - github.com/samuel/go-zookeeper v0.0.0-20190923202752-2cc03de413da // indirect - github.com/satori/go.uuid v1.2.0 // indirect - github.com/smartystreets/assertions v1.0.1 // indirect - github.com/smartystreets/goconvey v1.6.4 // indirect - github.com/spaolacci/murmur3 v1.1.0 // indirect - github.com/spf13/pflag v1.0.5 // indirect + github.com/prometheus/client_golang v1.5.0 + github.com/prometheus/client_model v0.2.0 + github.com/prometheus/common v0.9.1 + github.com/prometheus/prometheus v1.8.2-0.20200213233353-b90be6f32a33 github.com/uber/jaeger-client-go v2.20.1+incompatible github.com/uber/jaeger-lib v2.2.0+incompatible go.elastic.co/apm v1.5.0 go.elastic.co/apm/module/apmot v1.5.0 - go.opencensus.io v0.22.2 // indirect - go.uber.org/atomic v1.5.0 // indirect go.uber.org/automaxprocs v1.2.0 golang.org/x/crypto v0.0.0-20191112222119-e1110fd1c708 golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45 golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e - golang.org/x/sys v0.0.0-20191113165036-4c7a9d0fe056 // indirect golang.org/x/text v0.3.2 - golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect + golang.org/x/tools v0.0.0-20200306191617-51e69f71924f // indirect google.golang.org/api v0.14.0 - google.golang.org/appengine v1.6.5 // indirect google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9 google.golang.org/grpc v1.25.1 gopkg.in/alecthomas/kingpin.v2 v2.2.6 - gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect gopkg.in/fsnotify.v1 v1.4.7 - gopkg.in/inf.v0 v0.9.1 // indirect - gopkg.in/ini.v1 v1.51.0 // indirect - gopkg.in/yaml.v2 v2.2.5 - k8s.io/api v0.0.0-20191115095533-47f6de673b26 // indirect - k8s.io/apimachinery v0.0.0-20191115015347-3c7067801da2 // indirect - k8s.io/klog v1.0.0 // indirect - k8s.io/kube-openapi v0.0.0-20191107075043-30be4d16710a // indirect - k8s.io/utils v0.0.0-20191114200735-6ca3b61696b6 // indirect + gopkg.in/yaml.v2 v2.2.7 ) // We want to replace the client-go version with a specific commit hash, @@ -115,6 +69,8 @@ require ( replace ( // Mitigation for: https://github.com/Azure/go-autorest/issues/414 github.com/Azure/go-autorest => github.com/Azure/go-autorest v12.3.0+incompatible + // Make sure Cortex is not forcing us to some other Prometheus version. + github.com/prometheus/prometheus => github.com/prometheus/prometheus v1.8.2-0.20200110114423-1e64d757f711 // master ~ v2.15.2 k8s.io/api => k8s.io/api v0.0.0-20190620084959-7cf5895f2711 k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.0.0-20190620085554-14e95df34f1f k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20190612205821-1799e75a0719 diff --git a/go.sum b/go.sum index a4ddc0f20a9..80a19ed222b 100644 --- a/go.sum +++ b/go.sum @@ -1,5 +1,6 @@ cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +cloud.google.com/go v0.37.4/go.mod h1:NHPJ89PdicEuT9hdPXMROBD91xc5uRDxsMtSB16k7hw= cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU= cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= @@ -10,6 +11,7 @@ cloud.google.com/go v0.49.0/go.mod h1:hGvAdzcWNbyuxS3nWhD7H2cIJxjRRTRLQVB0bdputV cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= cloud.google.com/go/bigquery v1.3.0 h1:sAbMqjY1PEQKZBWfbu6Y6bsupJ9c4QdHnzg/VvYTLcE= cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= +cloud.google.com/go/bigtable v1.1.0/go.mod h1:B6ByKcIdYmhoyDzmOnQxyOhN6r05qnewYIxxG6L0/b4= cloud.google.com/go/datastore v1.0.0 h1:Kt+gOPPp2LEPWp8CSfxhsM8ik9CcyE/gYu+0r+RnZvM= cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= cloud.google.com/go/pubsub v1.0.1 h1:W9tAK3E57P75u0XLLR82LZyw8VpAnhmyTOxW9qzmyj8= @@ -27,6 +29,7 @@ github.com/Azure/azure-sdk-for-go v36.1.0+incompatible h1:smHlbChr/JDmsyUqELZXLs github.com/Azure/azure-sdk-for-go v36.1.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= github.com/Azure/azure-storage-blob-go v0.8.0 h1:53qhf0Oxa0nOjgbDeeYPUeyiNmafAFEY95rZLK0Tj6o= github.com/Azure/azure-storage-blob-go v0.8.0/go.mod h1:lPI3aLPpuLTeUwh1sViKXFxwl2B6teiRqI0deQUvsw0= +github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78/go.mod h1:LmzpDX56iTiv29bbRTIsUNlaFfuhWRQBWjQdVyAevI8= github.com/Azure/go-autorest v12.3.0+incompatible h1:iw0EvmwwEhv8JzEFfbKNJjnrHJqiH5NlKqhdYiKXRUQ= github.com/Azure/go-autorest v12.3.0+incompatible/go.mod h1:r+4oMnoxhatjLLJ6zxSWATqVooLgysK6ZNox3g/xq24= github.com/Azure/go-autorest/autorest v0.9.0/go.mod h1:xyHB1BMZT0cuDHU7I0+g046+BFDTQ8rEZB0s4Yfa6bI= @@ -54,8 +57,11 @@ github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= github.com/DataDog/datadog-go v3.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= +github.com/Masterminds/squirrel v0.0.0-20161115235646-20f192218cf5/go.mod h1:xnKTFzjGUiZtiOagBsfnvomW+nJg2usB1ZpordQWqNM= +github.com/Microsoft/go-winio v0.4.11/go.mod h1:VhR8bwka0BXejwEJY73c50VrPtXAaKcyvVC4A4RozmA= github.com/NYTimes/gziphandler v1.1.1 h1:ZUDjpQae29j0ryrS0u/B8HZfJBtBQHjqw2rQ2cqUQ3I= github.com/NYTimes/gziphandler v1.1.1/go.mod h1:n/CVRwUEOgIxrgPvAQhUUr9oeUtvrhMomdKFjzJNB0c= +github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5/go.mod h1:lmUJ/7eu/Q8D7ML55dXQrVaamCz2vxCfdQBasLZfHKk= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= github.com/OneOfOne/xxhash v1.2.6 h1:U68crOE3y3MPttCMQGywZOLrTeF5HHJ3/vDBCJn9/bA= github.com/OneOfOne/xxhash v1.2.6/go.mod h1:eZbhyaAYD41SGSSsnmcpxVoRiQ/MPUTjUdIIOT9Um7Q= @@ -85,9 +91,12 @@ github.com/armon/go-metrics v0.3.0/go.mod h1:zXjbSimjXTd7vOpY8B0/2LpvNvDoXBuplAD github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= github.com/armon/go-radix v1.0.0 h1:F4z6KzEeeQIMeLFa97iZU6vupzoecKdU5TX24SNppXI= github.com/armon/go-radix v1.0.0/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= +github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= github.com/asaskevich/govalidator v0.0.0-20180720115003-f9ffefc3facf/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY= github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a h1:idn718Q4B6AGu/h5Sxe66HYVdqdGu2l9Iebqhi/AEoA= github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY= +github.com/aws/aws-sdk-go v1.15.78/go.mod h1:E3/ieXAlvM0XWO57iftYVDLLvQ824smPP3ATZkfNZeM= +github.com/aws/aws-sdk-go v1.17.7/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= github.com/aws/aws-sdk-go v1.25.48 h1:J82DYDGZHOKHdhx6hD24Tm30c2C3GchYGfN0mf9iKUk= github.com/aws/aws-sdk-go v1.25.48/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= github.com/baiyubin/aliyun-sts-go-sdk v0.0.0-20180326062324-cfa1a18b161f h1:ZNv7On9kyUzm7fvRZumSyy/IUiSC7AzL0I1jKKtwooA= @@ -97,9 +106,14 @@ github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+Ce github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= +github.com/bitly/go-hostpool v0.0.0-20171023180738-a3a6125de932/go.mod h1:NOuUCSz6Q9T7+igc/hlvDOUdtWKryOrtFyIVABv/p7k= +github.com/blang/semver v3.5.0+incompatible h1:CGxCgetQ64DKk7rdZ++Vfnb1+ogGNnB17OJKJXD2Cfs= +github.com/blang/semver v3.5.0+incompatible/go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnwebNt5EWlYSAyrTnjyyk= +github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869/go.mod h1:Ekp36dRnpXw/yCqJaO+ZrUyxD+3VXMFFr56k5XYrpB4= github.com/bradfitz/gomemcache v0.0.0-20190913173617-a41fca850d0b h1:L/QXpzIa3pOvUGt1D1lA5KjYhPBAN/3iWdP7xeFS9F0= github.com/bradfitz/gomemcache v0.0.0-20190913173617-a41fca850d0b/go.mod h1:H0wQNHz2YrLsuXOZozoeDmnHXkNCRmMW0gwFWDfEZDA= github.com/cenkalti/backoff v0.0.0-20181003080854-62661b46c409/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= +github.com/cenkalti/backoff v1.0.0/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/xxhash v0.0.0-20181017004759-096ff4a8a059/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= github.com/cespare/xxhash v1.1.0 h1:a6HrQnmkObjyL+Gs60czilIUGqrzKutQD6XZog3p+ko= @@ -110,23 +124,53 @@ github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XL github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible/go.mod h1:nmEj6Dob7S7YxXgwXpfOuvO54S+tGdZdw9fuRZt25Ag= github.com/circonus-labs/circonusllhist v0.1.3/go.mod h1:kMXHVDlOchFAehlya5ePtbp5jckzBHf4XRpQvBOLI+I= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= +github.com/cockroachdb/apd v1.1.0/go.mod h1:8Sl8LxpKi29FqWXR16WEFZRNSz3SoPzUzeMeY4+DwBQ= +github.com/cockroachdb/cockroach-go v0.0.0-20181001143604-e0a95dfd547c/go.mod h1:XGLbWH/ujMcbPbhZq52Nv6UrCghb1yGn//133kEsvDk= +github.com/cockroachdb/datadriven v0.0.0-20190531201743-edce55837238/go.mod h1:zn76sxSg3SzpJ0PPJaLDCu+Bu0Lg3sKTORVIj19EIF8= github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd h1:qMd81Ts1T2OTKmB4acZcyKaMtRnY5Y44NuXGX2GFJ1w= github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd/go.mod h1:sE/e/2PUdi/liOCUjSTXgM1o87ZssimdTWN964YiIeI= +github.com/containerd/containerd v1.2.7/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= +github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= +github.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= +github.com/coreos/go-systemd v0.0.0-20180511133405-39ca1b05acc7/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= +github.com/coreos/go-systemd v0.0.0-20181012123002-c6f51f82210d/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= +github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= +github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= +github.com/cortexproject/cortex v0.6.1-0.20200228110116-92ab6cbe0995 h1:yt8dEfoUiSDnucukhKQiv6lnHWljj7rcIMT/qbpP2e8= +github.com/cortexproject/cortex v0.6.1-0.20200228110116-92ab6cbe0995/go.mod h1:3Xa3DjJxtpXqxcMGdk850lcIRb81M0fyY1MQ6udY134= +github.com/cznic/b v0.0.0-20180115125044-35e9bbe41f07/go.mod h1:URriBxXwVq5ijiJ12C7iIZqlA69nTlI+LgI6/pwftG8= +github.com/cznic/fileutil v0.0.0-20180108211300-6a051e75936f/go.mod h1:8S58EK26zhXSxzv7NQFpnliaOQsmDUxvoQO3rt154Vg= +github.com/cznic/golex v0.0.0-20170803123110-4ab7c5e190e4/go.mod h1:+bmmJDNmKlhWNG+gwWCkaBoTy39Fs+bzRxVBzoTQbIc= +github.com/cznic/internal v0.0.0-20180608152220-f44710a21d00/go.mod h1:olo7eAdKwJdXxb55TKGLiJ6xt1H0/tiiRCWKVLmtjY4= +github.com/cznic/lldb v1.1.0/go.mod h1:FIZVUmYUVhPwRiPzL8nD/mpFcJ/G7SSXjjXYG4uRI3A= +github.com/cznic/mathutil v0.0.0-20180504122225-ca4c9f2c1369/go.mod h1:e6NPNENfs9mPDVNRekM7lKScauxd5kXTr1Mfyig6TDM= +github.com/cznic/ql v1.2.0/go.mod h1:FbpzhyZrqr0PVlK6ury+PoW3T0ODUV22OeWIxcaOrSE= +github.com/cznic/sortutil v0.0.0-20150617083342-4c7342852e65/go.mod h1:q2w6Bg5jeox1B+QkJ6Wp/+Vn0G/bo3f1uY7Fn3vivIQ= +github.com/cznic/strutil v0.0.0-20171016134553-529a34b1c186/go.mod h1:AHHPPPXTw0h6pVabbcbyGRK1DckRn7r/STdZEeIDzZc= +github.com/cznic/zappy v0.0.0-20160723133515-2533cb5b45cc/go.mod h1:Y1SNZ4dRUOKXshKUbwUapqNncRrho4mkjQebgEHZLj8= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/denisenkom/go-mssqldb v0.0.0-20190515213511-eb9f6a1743f3/go.mod h1:zAg7JM8CkOJ43xKXIj7eRO9kmWm/TW578qo+oDO6tuM= github.com/dgrijalva/jwt-go v0.0.0-20160705203006-01aeca54ebda/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= github.com/dgrijalva/jwt-go v3.2.0+incompatible h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM= github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= github.com/dgryski/go-sip13 v0.0.0-20190329191031-25c5027a8c7b/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= +github.com/dhui/dktest v0.3.0/go.mod h1:cyzIUfGsBEbZ6BT7tnXqAShHSXCZhSNmFl70sZ7c1yc= +github.com/docker/distribution v2.7.0+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= +github.com/docker/docker v0.7.3-0.20190103212154-2b7e084dc98b/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= +github.com/docker/docker v0.7.3-0.20190817195342-4760db040282/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= +github.com/docker/go-connections v0.4.0/go.mod h1:Gbd7IOopHjR8Iph03tsViu4nIes5XhDvyHbTtUxmeec= github.com/docker/go-units v0.3.3/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk= github.com/docker/go-units v0.4.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk= github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96/go.mod h1:Qh8CwZgvJUkLughtfhJv5dyTYa91l1fOUCrgjqmcifM= github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE= +github.com/dustin/go-humanize v0.0.0-20171111073723-bb3d318650d4/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= github.com/eapache/go-resiliency v1.1.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs= github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1:+020luEh2TKB4/GOp8oxxtq0Daoen/Cii55CzbTV6DU= github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= +github.com/edsrzf/mmap-go v0.0.0-20170320065105-0bce6a688712/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaBNrHW5M= github.com/edsrzf/mmap-go v1.0.0 h1:CEBF7HpRnUCSJgGUb5h1Gm7e3VkmVDrR8lvWVLtrOFw= github.com/edsrzf/mmap-go v1.0.0/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaBNrHW5M= github.com/elastic/go-sysinfo v1.0.1/go.mod h1:O/D5m1VpYLwGjCYzEt63g3Z1uO3jXfwyzzjiW90t8cY= @@ -150,6 +194,7 @@ github.com/fortytw2/leaktest v1.3.0 h1:u8491cBMTQ8ft8aeV+adlcytMZylmA5nnwwkRZjI8 github.com/fortytw2/leaktest v1.3.0/go.mod h1:jDsjWgpAGjm2CA7WthBh/CdZYEPF31XHquHwclZch5g= github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= +github.com/fsouza/fake-gcs-server v1.7.0/go.mod h1:5XIRs4YvwNbNoz+1JF8j6KLAyDh7RHGAyAK3EP2EsNk= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= github.com/globalsign/mgo v0.0.0-20180905125535-1ca0a4f7cbcb/go.mod h1:xkRDCp4j0OGD1HRkm4kmhM+pmpv3AKq5SU7GMg4oO/Q= github.com/globalsign/mgo v0.0.0-20181015135952-eeefdecb41b8/go.mod h1:xkRDCp4j0OGD1HRkm4kmhM+pmpv3AKq5SU7GMg4oO/Q= @@ -195,6 +240,7 @@ github.com/go-openapi/runtime v0.0.0-20180920151709-4f900dc2ade9/go.mod h1:6v9a6 github.com/go-openapi/runtime v0.18.0 h1:ddoL4Uo/729XbNAS9UIsG7Oqa8R8l2edBe6Pq/i8AHM= github.com/go-openapi/runtime v0.18.0/go.mod h1:uI6pHuxWYTy94zZxgcwJkUWa9wbIlhteGfloI10GD4U= github.com/go-openapi/runtime v0.19.0/go.mod h1:OwNfisksmmaZse4+gpV3Ne9AyMOlP1lt4sK4FXt0O64= +github.com/go-openapi/runtime v0.19.3/go.mod h1:X277bwSUBxVlCYR3r7xgZZGKVvBd/29gLDlFGtJ8NL4= github.com/go-openapi/runtime v0.19.4 h1:csnOgcgAiuGoM/Po7PEpKDoNulCcF3FGbSnbHfxgjMI= github.com/go-openapi/runtime v0.19.4/go.mod h1:X277bwSUBxVlCYR3r7xgZZGKVvBd/29gLDlFGtJ8NL4= github.com/go-openapi/spec v0.17.0/go.mod h1:XkF/MOi14NmjsfZ8VtAKf8pIlbZzyoTvZsdfssdxcBI= @@ -214,6 +260,7 @@ github.com/go-openapi/swag v0.17.2 h1:K/ycE/XTUDFltNHSO32cGRUhrVGJD64o8WgAIZNyc3 github.com/go-openapi/swag v0.17.2/go.mod h1:AByQ+nYG6gQg71GINrmuDXCPWdL640yX49/kXLo40Tg= github.com/go-openapi/swag v0.18.0/go.mod h1:AByQ+nYG6gQg71GINrmuDXCPWdL640yX49/kXLo40Tg= github.com/go-openapi/swag v0.19.2/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= +github.com/go-openapi/swag v0.19.4/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= github.com/go-openapi/swag v0.19.5 h1:lTz6Ys4CmqqCQmZPBlbQENR1/GucA2bzYTE12Pw4tFY= github.com/go-openapi/swag v0.19.5/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= github.com/go-openapi/validate v0.17.2 h1:lwFfiS4sv5DvOrsYDsYq4N7UU8ghXiYtPJ+VcQnC3Xg= @@ -221,21 +268,32 @@ github.com/go-openapi/validate v0.17.2/go.mod h1:Uh4HdOzKt19xGIGm1qHf/ofbX1YQ4Y+ github.com/go-openapi/validate v0.18.0/go.mod h1:Uh4HdOzKt19xGIGm1qHf/ofbX1YQ4Y+MYsct2VUrAJ4= github.com/go-openapi/validate v0.19.2 h1:ky5l57HjyVRrsJfd2+Ro5Z9PjGuKbsmftwyMtk8H7js= github.com/go-openapi/validate v0.19.2/go.mod h1:1tRCw7m3jtI8eNWEEliiAqUIcBztB2KDnRCRMUi7GTA= +github.com/go-sql-driver/mysql v1.4.1/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= github.com/go-stack/stack v1.8.0 h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/gocql/gocql v0.0.0-20190301043612-f6df8288f9b4/go.mod h1:4Fw1eo5iaEhDUs8XyuhSVCVy52Jq3L+/3GJgYkwc+/0= +github.com/gocql/gocql v0.0.0-20200121121104-95d072f1b5bb/go.mod h1:DL0ekTmBSTdlNF25Orwt/JMzqIq3EJ4MVa/J/uK64OY= +github.com/gogo/googleapis v1.1.0 h1:kFkMAZBNAn4j7K0GiZr8cRYzejq68VbheufiV3YuyFI= +github.com/gogo/googleapis v1.1.0/go.mod h1:gf4bu3Q80BeJ6H1S1vYPm8/ELATdvryBaNFGgqEef3s= github.com/gogo/protobuf v0.0.0-20171007142547-342cbe0a0415/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= +github.com/gogo/protobuf v1.0.0/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.0/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= github.com/gogo/protobuf v1.2.2-0.20190730201129-28a6bbf47e48/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= +github.com/gogo/protobuf v1.3.0/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= github.com/gogo/protobuf v1.3.1 h1:DqDEcV5aeaTmdFBePNpYsp3FlcVH/2ISVVM9Qf8PSls= github.com/gogo/protobuf v1.3.1/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= +github.com/gogo/status v1.0.3 h1:WkVBY59mw7qUNTr/bLwO7J2vesJ0rQ2C3tMXrTd3w5M= +github.com/gogo/status v1.0.3/go.mod h1:SavQ51ycCLnc7dGyJxp8YAmudx8xqiVrRf+6IXRsugc= +github.com/golang-migrate/migrate/v4 v4.7.0/go.mod h1:Qvut3N4xKWjoH3sokBccML6WyHSnggXm/DvMMnTsQIc= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= github.com/golang/groupcache v0.0.0-20160516000752-02826c3e7903/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20191027212112-611e8accdfc9 h1:uHTyIjqVhYRhLbJ8nIiOJHkEZZ+5YoOsAbD3sk82NiE= github.com/golang/groupcache v0.0.0-20191027212112-611e8accdfc9/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/lint v0.0.0-20180702182130-06c8688daad7/go.mod h1:tluoj9z5200jBnyusfRPU2LqT6J+DAorxEvtC7LHB+E= github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y= @@ -243,10 +301,13 @@ github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5y github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.2 h1:6nsPYzhq5kReh6QImI3k5qWzO4PEbvbIW2cwSfR/6xs= github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/snappy v0.0.0-20170215233205-553a64147049/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.1 h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4= github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/gomodule/redigo v2.0.0+incompatible/go.mod h1:B4C85qUVwatsJoIUNIfCRsp7qO0iAmpGFZ4EELWSbC4= github.com/google/btree v0.0.0-20160524151835-7d79101e329e/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= +github.com/google/btree v0.0.0-20180124185431-e89373fe6b4a/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v1.0.0 h1:0udJVsspx3VBr5FwtLhQQtuAsVc79tTq0ocGIPAU6qo= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= @@ -254,6 +315,9 @@ github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5a github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.3.1 h1:Xye71clBPdm5HgqGwUkwhbynsUJZhDbS20FvLhQ2izg= github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-cmp v0.4.0 h1:xsAVV57WRhGj6kEIi8ReJzQlHHqcBYCElAvkovg3B/4= +github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-github v17.0.0+incompatible/go.mod h1:zLgOLi98H3fifZn+44m+umXrS52loVEgC2AApnigrVQ= github.com/google/go-querystring v1.0.0 h1:Xkwi/a1rcvNg1PPYe5vI8GbeBY/jrVuDX5ASuANWTrk= github.com/google/go-querystring v1.0.0/go.mod h1:odCYkC5MyYFN7vkCjXpyrEuKhc/BUO6wN/zVPAxq5ck= github.com/google/gofuzz v0.0.0-20170612174753-24818f796faf/go.mod h1:HP5RmnzzSNb993RKQDq4+1A4ia9nllfqcQFTQJedwGI= @@ -286,15 +350,22 @@ github.com/gopherjs/gopherjs v0.0.0-20191106031601-ce3c9ade29de h1:F7WD09S8QB4Lr github.com/gopherjs/gopherjs v0.0.0-20191106031601-ce3c9ade29de/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/gorilla/context v1.1.1/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg= github.com/gorilla/mux v1.6.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= +github.com/gorilla/mux v1.7.1 h1:Dw4jY2nghMMRsh1ol8dv1axHkDwMQK2DHerMNJsIpJU= +github.com/gorilla/mux v1.7.1/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= +github.com/gorilla/websocket v0.0.0-20170926233335-4201258b820c/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= +github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= github.com/gregjones/httpcache v0.0.0-20170728041850-787624de3eb7/go.mod h1:FecbI9+v66THATjSRHfNgh1IVFe/9kFxbXtjV0ctIMA= +github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20190118093823-f849b5445de4/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= github.com/grpc-ecosystem/go-grpc-middleware v1.1.0 h1:THDBEeQ9xZ8JEaCLyLQqXMMdRqNr0QAUJTIkQAUtFjg= github.com/grpc-ecosystem/go-grpc-middleware v1.1.0/go.mod h1:f5nM7jw/oeRSadq3xCzHAvxcr8HZnzsqU6ILg/0NiiE= github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 h1:Ovs26xHkKqVztRpIrF/92BcuyuQ/YW4NSIpoGtfXNho= github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= +github.com/grpc-ecosystem/grpc-gateway v1.4.1/go.mod h1:RSKVYQBd5MCa4OVpNdGskqpgL2+G+NZTnrVHpWWfpdw= github.com/grpc-ecosystem/grpc-gateway v1.9.4/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/grpc-ecosystem/grpc-gateway v1.9.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/grpc-ecosystem/grpc-gateway v1.12.1 h1:zCy2xE9ablevUOrUZc3Dl72Dt+ya2FNAvC2yLYMHzi4= github.com/grpc-ecosystem/grpc-gateway v1.12.1/go.mod h1:8XEsbTttt/W+VvjtQhLACqCisSPWTxCZ7sBRjU6iH9c= +github.com/hailocab/go-hostpool v0.0.0-20160125115350-e80d13ce29ed/go.mod h1:tMWxXQ9wFIaZeTI9F+hmhFiGpFmhOHzyShyFUhRm0H4= github.com/hashicorp/consul/api v1.1.0/go.mod h1:VmuI/Lkw1nC05EYQWNKwWGbkg+FbDBtguAZLlVdkD9Q= github.com/hashicorp/consul/api v1.3.0 h1:HXNYlRkkM/t+Y/Yhxtwcy02dlYwIaoxzvxPnS+cqy78= github.com/hashicorp/consul/api v1.3.0/go.mod h1:MmDNSzIMUjNpY/mQ398R4bk2FnqQLoPndWW5VkKPlCE= @@ -342,20 +413,28 @@ github.com/hashicorp/serf v0.8.5/go.mod h1:UpNcs7fFbpKIyZaUuSW6EPiH+eZC7OuyFD+wc github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= github.com/imdario/mergo v0.3.5/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA= +github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= github.com/influxdata/influxdb v1.7.7/go.mod h1:qZna6X/4elxqT3yI9iZYdZrWWdeFOOprn86kgg4+IzY= +github.com/jackc/fake v0.0.0-20150926172116-812a484cc733/go.mod h1:WrMFNQdiFJ80sQsxDoMokWK1W5TQtxBFNpzWTD84ibQ= +github.com/jackc/pgx v3.2.0+incompatible/go.mod h1:0ZGrqGqkRlliWnWB4zKnWtjbSWbGkVEFm4TeybAXq+I= github.com/jessevdk/go-flags v0.0.0-20180331124232-1c38ed7ad0cc/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= +github.com/jmespath/go-jmespath v0.0.0-20160202185014-0b12d6b521d8/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af h1:pmfjZENx5imkbgOkpRUYLnmbU7UEFbjtDA2hxJ1ichM= github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= github.com/joeshaw/multierror v0.0.0-20140124173710-69b34d4ec901 h1:rp+c0RAYOWj8l6qbCUTSiRLG/iKnW3K3/QfPPuSsBt4= github.com/joeshaw/multierror v0.0.0-20140124173710-69b34d4ec901/go.mod h1:Z86h9688Y0wesXCyonoVr47MasHilkuLMqGhRZ4Hpak= +github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= github.com/jpillora/backoff v1.0.0 h1:uvFg412JmmHBHw7iwprIxkPMI+sGQ4kzOWsMeHnm2EA= github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4= github.com/json-iterator/go v0.0.0-20180701071628-ab8a2e0c74be/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/json-iterator/go v1.1.5/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= github.com/json-iterator/go v1.1.7/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.8 h1:QiWkFLKq0T7mpzwOTu6BzNDbfTE8OLrYhVKYMLF46Ok= github.com/json-iterator/go v1.1.8/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/json-iterator/go v1.1.9 h1:9yzud/Ht36ygwatGx56VwCZtlI/2AD15T1X2sjSuGns= +github.com/json-iterator/go v1.1.9/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= github.com/jstemmer/go-junit-report v0.9.1 h1:6QPYqodiu3GuPL+7mfx+NwDdp2eTkp9IfEUpgAwUN0o= github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= @@ -364,21 +443,31 @@ github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfV github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/julienschmidt/httprouter v1.3.0 h1:U0609e9tgbseu3rBINet9P48AI/D3oJs4dN7jwJOQ1U= github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= +github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0/go.mod h1:1NbS8ALrpOvjt0rHPNLyCIeMtbizbir8U//inJ+zuB8= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/konsorten/go-windows-terminal-sequences v1.0.2 h1:DB17ag19krx9CFsz4o3enTrPXyIXCl+2iCXH/aMAp9s= +github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515 h1:T+h1c/A9Gawja4Y9mFVWj2vyii2bbUNDw3kt9VxK2EY= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= +github.com/kr/pty v1.0.0/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/pty v1.1.5/go.mod h1:9r2w37qlBe7rQ6e1fg1S/9xpWHSnaqNdHD3WcMdbPDA= github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= +github.com/kshvakov/clickhouse v1.3.5/go.mod h1:DMzX7FxRymoNkVgizH0DWAL8Cur7wHLgx3MUnGwJqpE= github.com/kylelemons/godebug v0.0.0-20160406211939-eadb3ce320cb/go.mod h1:B69LEHPfb2qLo0BaaOLcbitczOKLWTsrBG9LczfCD4k= +github.com/kylelemons/godebug v0.0.0-20170820004349-d65d576e9348/go.mod h1:B69LEHPfb2qLo0BaaOLcbitczOKLWTsrBG9LczfCD4k= +github.com/lann/builder v0.0.0-20150808151131-f22ce00fd939/go.mod h1:dXGbAdH5GtBTC4WfIxhKZfyBF/HBFgRZSWwZ9g/He9o= +github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0/go.mod h1:vmVJ0l/dxyfGW6FmdpVm2joNMFikkuWg0EoCKLGUMNw= github.com/leanovate/gopter v0.2.4 h1:U4YLBggDFhJdqQsG4Na2zX7joVTky9vHaj/AGEwSuXU= github.com/leanovate/gopter v0.2.4/go.mod h1:gNcbPWNEWRe4lm+bycKqxUYoH5uoVje5SkOJ3uoLer8= +github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= +github.com/lib/pq v1.3.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= github.com/lightstep/lightstep-tracer-common/golang/gogo v0.0.0-20190605223551-bc2310a04743 h1:143Bb8f8DuGWck/xpNUOckBVYfFbBTnLevfRZ1aVVqo= github.com/lightstep/lightstep-tracer-common/golang/gogo v0.0.0-20190605223551-bc2310a04743/go.mod h1:qklhhLq1aX+mtWk9cPHPzaBjWImj5ULL6C7HFJtXQMM= github.com/lightstep/lightstep-tracer-go v0.18.0 h1:fAazJekOWnfBeQYwk9jEgIWWKmBxq4ev3WfsAnezgc4= @@ -396,17 +485,23 @@ github.com/mattn/go-ieproxy v0.0.0-20190702010315-6dee0af9227d/go.mod h1:31jz6HN github.com/mattn/go-ieproxy v0.0.0-20191113090002-7c0f6868bffe h1:YioO2TiJyAHWHyCRQCP8jk5IzTqmsbGc5qQPIhHo6xs= github.com/mattn/go-ieproxy v0.0.0-20191113090002-7c0f6868bffe/go.mod h1:pYabZ6IHcRpFh7vIaLfK7rdcWgFEb3SFJ6/gNWuh88E= github.com/mattn/go-isatty v0.0.3/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= +github.com/mattn/go-isatty v0.0.4/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= +github.com/mattn/go-runewidth v0.0.2/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.6 h1:V2iyH+aX9C5fsYCpK60U8BYIvmhqxuOL3JZcqc1NB7k= github.com/mattn/go-runewidth v0.0.6/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= +github.com/mattn/go-sqlite3 v1.10.0/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc= +github.com/matttproud/golang_protobuf_extensions v1.0.0/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= github.com/matttproud/golang_protobuf_extensions v1.0.1 h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= +github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b/go.mod h1:01TrycV0kFyexm33Z7vhZRXopbI8J3TDReVlkTgMUxE= github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg= github.com/miekg/dns v1.1.15/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg= github.com/miekg/dns v1.1.22 h1:Jm64b3bO9kP43ddLjL2EY3Io6bmy1qGb9Xxz6TqS6rc= github.com/miekg/dns v1.1.22/go.mod h1:bPDLeHnStXmXAq1m/Ch/hvfNHr14JKNPMBo3VZKjuso= -github.com/minio/minio-go/v6 v6.0.45 h1:aY4NI/DOgSbZiwGN3fEF4NAkC9An4bhaIWuJrQrRYew= -github.com/minio/minio-go/v6 v6.0.45/go.mod h1:qD0lajrGW49lKZLtXKtCB4X/qkMf0a5tBvN2PaZg7Gg= +github.com/minio/minio-go/v6 v6.0.44/go.mod h1:qD0lajrGW49lKZLtXKtCB4X/qkMf0a5tBvN2PaZg7Gg= +github.com/minio/minio-go/v6 v6.0.49 h1:bU4kIa/qChTLC1jrWZ8F+8gOiw1MClubddAJVR4gW3w= +github.com/minio/minio-go/v6 v6.0.49/go.mod h1:qD0lajrGW49lKZLtXKtCB4X/qkMf0a5tBvN2PaZg7Gg= github.com/minio/sha256-simd v0.1.1 h1:5QHSlgo3nt5yKOJrC7W8w7X+NFl8cMPZm96iu8kKUJU= github.com/minio/sha256-simd v0.1.1/go.mod h1:B5e1o+1/KgNmWrSQK08Y6Z1Vb5pwIktudl0J58iy0KM= github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc= @@ -427,6 +522,7 @@ github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJ github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/modern-go/reflect2 v1.0.1 h1:9f412s+6RmYXLWZSEzVVgPGK7C2PphHj5RJrvfx9AWI= github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/morikuni/aec v0.0.0-20170113033406-39771216ff4c/go.mod h1:BbKIizmSmc5MMPqRYbxO4ZU0S0+P200+tUnFx7PXmsc= github.com/mozillazg/go-cos v0.13.0 h1:RylOpEESdWMLb13bl0ADhko12uMN3JmHqqwFu4OYGBY= github.com/mozillazg/go-cos v0.13.0/go.mod h1:Zp6DvvXn0RUOXGJ2chmWt2bLEqRAnJnS3DnAZsJsoaE= github.com/mozillazg/go-httpheader v0.2.1 h1:geV7TrjbL8KXSyvghnFm+NyTux/hxwueTSrwhe88TQQ= @@ -435,11 +531,13 @@ github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRW github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f h1:KUppIJq7/+SVif2QVs3tOP0zanoHgBEVAwHxUSIzRqU= github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f/go.mod h1:ZdcZmHo+o7JKHSa8/e818NopupXU1YMK5fe1lsApnBw= +github.com/nakagami/firebirdsql v0.0.0-20190310045651-3c02a58cfed8/go.mod h1:86wM1zFnC6/uDBfZGNwB65O+pR2OFi5q/YQaEUid1qA= github.com/oklog/run v1.0.0 h1:Ru7dDtJNOyC66gQ5dQmaCa0qIsAUFY3sFpK1Xk8igrw= github.com/oklog/run v1.0.0/go.mod h1:dlhp/R75TPv97u0XWUtDeV/lRKWPKSdTuV0TZvrmrQA= github.com/oklog/ulid v0.0.0-20170117200651-66bb6560562f/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= github.com/oklog/ulid v1.3.1 h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= +github.com/olekukonko/tablewriter v0.0.0-20170122224234-a0225b3f23b5/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/olekukonko/tablewriter v0.0.2 h1:sq53g+DWf0J6/ceFUHpQ0nAEb6WgM++fq16MZ91cS6o= github.com/olekukonko/tablewriter v0.0.2/go.mod h1:rSAaSIOAGT9odnlyGlUfAJaoc5w2fSBUmeGDbRWPxyQ= @@ -448,15 +546,23 @@ github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+W github.com/onsi/ginkgo v1.10.3 h1:OoxbjfXVZyod1fmWYhI7SEyaD8B00ynP3T+D5GiyHOY= github.com/onsi/ginkgo v1.10.3/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/gomega v0.0.0-20190113212917-5533ce8a0da3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= +github.com/onsi/gomega v1.4.2/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= github.com/onsi/gomega v1.7.1 h1:K0jcRCwNQM3vFGh1ppMtDh/+7ApJrjldlX8fA0jDTLQ= github.com/onsi/gomega v1.7.1/go.mod h1:XdKZgCCFLUoM/7CFJVPcG8C1xQ1AJ0vpAezJrB7JYyY= +github.com/opencontainers/go-digest v1.0.0-rc1/go.mod h1:cMLVZDEM3+U2I4VmLI6N8jQYUd2OVphdqWwCJHrFt2s= +github.com/opencontainers/image-spec v1.0.1/go.mod h1:BtxoFyWECRxE4U/7sNtV5W15zMzWCbyJoFRP3s7yZA0= +github.com/opentracing-contrib/go-grpc v0.0.0-20180928155321-4b5a12d3ff02 h1:0R5mDLI66Qw13qN80TRz85zthQ2nf2+uDyiV23w6c3Q= +github.com/opentracing-contrib/go-grpc v0.0.0-20180928155321-4b5a12d3ff02/go.mod h1:JNdpVEzCpXBgIiv4ds+TzhN1hrtxq6ClLrTlT9OQRSc= +github.com/opentracing-contrib/go-stdlib v0.0.0-20190519235532-cf7a6c988dc9 h1:QsgXACQhd9QJhEmRumbsMQQvBtmdS0mafoVEBplWXEg= github.com/opentracing-contrib/go-stdlib v0.0.0-20190519235532-cf7a6c988dc9/go.mod h1:PLldrQSroqzH70Xl+1DQcGnefIbqsKR7UDaiux3zV+w= github.com/opentracing/basictracer-go v1.0.0 h1:YyUAhaEfjoWXclZVJ9sGoNct7j4TVk7lZWlQw5UXuoo= github.com/opentracing/basictracer-go v1.0.0/go.mod h1:QfBfYuafItcjQuMwinw9GhYKwFXS9KnPs5lxoYwgW74= github.com/opentracing/opentracing-go v1.0.2/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= github.com/opentracing/opentracing-go v1.1.0 h1:pWlfV3Bxv7k65HYwkikxat0+s3pV4bsqf19k25Ur8rU= github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= +github.com/opentracing/opentracing-go v1.1.1-0.20200124165624-2876d2018785 h1:Oi9nYnU9jbiUVyoRTQfMpSdGzNVmEI+/9fija3lcnjU= +github.com/opentracing/opentracing-go v1.1.1-0.20200124165624-2876d2018785/go.mod h1:C+iumr2ni468+1jvcHXLCdqP9uQnoQbdX93F3aWahWU= github.com/openzipkin/zipkin-go v0.1.6/go.mod h1:QgAqvLzwWbR/WpD4A3cGpPtJrZXNIiJc5AZX7/PBEpw= github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= github.com/pascaldekloe/goe v0.1.0 h1:cBOtyMzM9HTpWjXfbbunk26uA6nG3a8n06Wieeh0MwY= @@ -467,30 +573,46 @@ github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +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 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI= github.com/prometheus/alertmanager v0.18.0 h1:sPppYFge7kdf9O96KIh3fd093D1xN8JxIp03wW6yAEE= github.com/prometheus/alertmanager v0.18.0/go.mod h1:WcxHBl40VSPuOaqWae6l6HpnEOVRIycEJ7i9iYkadEE= +github.com/prometheus/alertmanager v0.19.0/go.mod h1:Eyp94Yi/T+kdeb2qvq66E3RGuph5T/jm/RBVh4yz1xo= github.com/prometheus/alertmanager v0.20.0 h1:PBMNY7oyIvYMBBIag35/C0hO7xn8+35p4V5rNAph5N8= github.com/prometheus/alertmanager v0.20.0/go.mod h1:9g2i48FAyZW6BtbsnvHtMHQXl2aVtrORKwKVCQ+nbrg= +github.com/prometheus/client_golang v0.8.0/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= github.com/prometheus/client_golang v0.9.2/go.mod h1:OsXs2jCmiKlQ1lTBmv21f2mNfw4xf/QclQDMrYNZzcM= github.com/prometheus/client_golang v0.9.3-0.20190127221311-3c4408c8b829/go.mod h1:p2iRAGwDERtqlqzRXnrOVns+ignqQo//hLXqYxZYVNs= github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= +github.com/prometheus/client_golang v1.1.0/go.mod h1:I1FGZT9+L76gKKOs5djB6ezCbFQP1xR9D75/vuwEF3g= github.com/prometheus/client_golang v1.2.0/go.mod h1:XMU6Z2MjaRKVu/dC1qupJI9SiNkDYzz3xecMgSW/F+U= github.com/prometheus/client_golang v1.2.1 h1:JnMpQc6ppsNgw9QPAGF6Dod479itz7lvlsMzzNayLOI= github.com/prometheus/client_golang v1.2.1/go.mod h1:XMU6Z2MjaRKVu/dC1qupJI9SiNkDYzz3xecMgSW/F+U= +github.com/prometheus/client_golang v1.5.0 h1:Ctq0iGpCmr3jeP77kbF2UxgvRwzWWz+4Bh9/vJTyg1A= +github.com/prometheus/client_golang v1.5.0/go.mod h1:e9GMxYsXl05ICDXkRhurwBS4Q3OK1iX/F2sw+iXX5zU= +github.com/prometheus/client_model v0.0.0-20170216185247-6f3806018612/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190115171406-56726106282f/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4 h1:gQz4mCbXsO+nc9n1hCxHcGA3Zx3Eo+UHZoInFGUIXNM= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/client_model v0.2.0 h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M= +github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/common v0.0.0-20180518154759-7600349dcfe1/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= github.com/prometheus/common v0.0.0-20181126121408-4724e9255275/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= github.com/prometheus/common v0.2.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/common v0.6.0/go.mod h1:eBmuwkDJBwy6iBfxCBob6t6dR6ENT/y+J+Zk0j9GMYc= github.com/prometheus/common v0.7.0 h1:L+1lyG48J1zAQXA3RBX/nG/B3gjlHq0zTt2tlbJLyCY= github.com/prometheus/common v0.7.0/go.mod h1:DjGbpBbp5NYNiECxcL/VnbXCCaQpKd3tt26CguLLsqA= +github.com/prometheus/common v0.8.0/go.mod h1:PC/OgXc+UN7B4ALwvn1yzVZmVwvhXp5JsbBv6wSv6i0= +github.com/prometheus/common v0.9.1 h1:KOMtN28tlbam3/7ZKEYKHhKoJZYYj3gMH4uc62x7X7U= +github.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8bs7vj7HSQ4= +github.com/prometheus/procfs v0.0.0-20180612222113-7d6f385de8be/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.0-20190117184657-bf6a532e95b1/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= @@ -500,9 +622,11 @@ github.com/prometheus/procfs v0.0.3/go.mod h1:4A/X28fw3Fc593LaREMrKMqOKvUAntwMDa github.com/prometheus/procfs v0.0.5/go.mod h1:4A/X28fw3Fc593LaREMrKMqOKvUAntwMDaekg4FpcdQ= github.com/prometheus/procfs v0.0.6 h1:0qbH+Yqu/cj1ViVLvEWCP6qMQ4efWUj6bQqOEA0V0U4= github.com/prometheus/procfs v0.0.6/go.mod h1:7Qr8sr6344vo1JqZ6HhLceV9o3AJ1Ff+GxbHq6oeK9A= -github.com/prometheus/prometheus v0.0.0-20180315085919-58e2a31db8de/go.mod h1:oAIUtOny2rjMX0OWN5vPR5/q/twIROJvdqnQKDdil/s= +github.com/prometheus/procfs v0.0.8 h1:+fpWZdT24pJBiqJdAwYBjPSk+5YmQzYNPYzQsdzLkt8= +github.com/prometheus/procfs v0.0.8/go.mod h1:7Qr8sr6344vo1JqZ6HhLceV9o3AJ1Ff+GxbHq6oeK9A= github.com/prometheus/prometheus v1.8.2-0.20200110114423-1e64d757f711 h1:uEq+8hKI4kfycPLSKNw844YYkdMNpC2eZpov73AvlFk= github.com/prometheus/prometheus v1.8.2-0.20200110114423-1e64d757f711/go.mod h1:7U90zPoLkWjEIQcy/rweQla82OCTUzxVHE51G3OhJbI= +github.com/rafaeljusto/redigomock v0.0.0-20190202135759-257e089e14a1/go.mod h1:JaY6n2sDr+z2WTsXkOmNRUfDy6FN0L6Nk7x06ndm4tY= github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= @@ -520,11 +644,18 @@ github.com/satori/go.uuid v1.2.0 h1:0uYX9dsZ2yD7q2RtLRtPSdGDWzjeM3TbMJP9utgA0ww= github.com/satori/go.uuid v1.2.0/go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0= github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 h1:nn5Wsu0esKSJiIVhscUtVbo7ada43DJhG55ua/hjS5I= github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc= +github.com/segmentio/fasthash v0.0.0-20180216231524-a72b379d632e/go.mod h1:tm/wZFQ8e24NYaBGIlnO2WGCAi67re4HHuOm0sftE/M= +github.com/sercand/kuberesolver v2.1.0+incompatible h1:iJ1oCzPQ/aacsbCWLfJW1hPKkHMvCEgNSA9kvWcb9MY= +github.com/sercand/kuberesolver v2.1.0+incompatible/go.mod h1:lWF3GL0xptCB/vCiJPl/ZshwPsX/n4Y7u0CW9E7aQIQ= +github.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24/go.mod h1:M+9NzErvs504Cn4c5DxATwIqPbtswREoFCre64PpcG4= github.com/shurcooL/httpfs v0.0.0-20171119174359-809beceb2371/go.mod h1:ZY1cvUeJuFPAdZ/B6v7RHavJWZn2YPVFQ1OSXhCGOkg= github.com/shurcooL/httpfs v0.0.0-20190707220628-8d4bc4ba7749/go.mod h1:ZY1cvUeJuFPAdZ/B6v7RHavJWZn2YPVFQ1OSXhCGOkg= github.com/shurcooL/vfsgen v0.0.0-20180825020608-02ddb050ef6b/go.mod h1:TrYk7fJVaAttu97ZZKrO9UbRa8izdowaMIZcxYMbVaw= github.com/shurcooL/vfsgen v0.0.0-20181202132449-6a9ea43bcacd/go.mod h1:TrYk7fJVaAttu97ZZKrO9UbRa8izdowaMIZcxYMbVaw= +github.com/sirupsen/logrus v1.0.5/go.mod h1:pMByvHTf9Beacp5x1UXfOR9xyW/9antXMhjMPG0dEzc= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= +github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q= +github.com/sirupsen/logrus v1.4.2 h1:SPIRibHv4MatM3XXNO2BJeFLZwZ2LvZgfQ5+UNI2im4= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= github.com/smartystreets/assertions v1.0.1 h1:voD4ITNjPL5jjBfgR/r8fPIIBrliWrWHeiJApdr3r4w= @@ -537,6 +668,7 @@ github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasO github.com/spaolacci/murmur3 v1.1.0 h1:7c1g84S4BPRrfL5Xrdp6fOJ206sU9y293DDHaoy0bLI= github.com/spaolacci/murmur3 v1.1.0/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spf13/afero v1.2.2/go.mod h1:9ZxEEn6pIJ8Rxe320qSDBk6AsU0r9pR7Q4OcevTdifk= +github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= github.com/spf13/pflag v1.0.1/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= @@ -547,14 +679,30 @@ github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXf github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0 h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= +github.com/thanos-io/thanos v0.8.1-0.20200109203923-552ffa4c1a0d/go.mod h1:usT/TxtJQ7DzinTt+G9kinDQmRS5sxwu0unVKZ9vdcw= +github.com/tidwall/pretty v0.0.0-20180105212114-65a9db5fad51/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk= github.com/tidwall/pretty v1.0.0 h1:HsD+QiTn7sK6flMKIvNmpqz1qrpP3Ps6jOKIKMooyg4= github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk= +github.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= +github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926/go.mod h1:9ESjWnEqriFuLhtthL60Sar/7RFoluCcXsuvEwTV5KM= +github.com/uber/jaeger-client-go v2.15.0+incompatible/go.mod h1:WVhlPFC8FDjOFMMWRy2pZqQJSXxYSwNYOkTr/Z6d3Kk= github.com/uber/jaeger-client-go v2.20.1+incompatible h1:HgqpYBng0n7tLJIlyT4kPCIv5XgCsF+kai1NnnrJzEU= github.com/uber/jaeger-client-go v2.20.1+incompatible/go.mod h1:WVhlPFC8FDjOFMMWRy2pZqQJSXxYSwNYOkTr/Z6d3Kk= +github.com/uber/jaeger-lib v1.5.1-0.20181102163054-1fc5c315e03c/go.mod h1:ComeNDZlWwrWnDv8aPp0Ba6+uUTzImX/AauajbLI56U= github.com/uber/jaeger-lib v2.2.0+incompatible h1:MxZXOiR2JuoANZ3J6DE/U0kSFv/eJ/GfSYVCjK7dyaw= github.com/uber/jaeger-lib v2.2.0+incompatible/go.mod h1:ComeNDZlWwrWnDv8aPp0Ba6+uUTzImX/AauajbLI56U= +github.com/urfave/cli v1.20.0/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA= +github.com/weaveworks/common v0.0.0-20200206153930-760e36ae819a h1:4Sm4LnEnP1yQ2NeNgGqLTuN2xrTvcBOU+EsljpB8Ed0= +github.com/weaveworks/common v0.0.0-20200206153930-760e36ae819a/go.mod h1:6enWAqfQBFrE8X/XdJwZr8IKgh1chStuFR0mjU/UOUw= +github.com/weaveworks/promrus v1.2.0 h1:jOLf6pe6/vss4qGHjXmGz4oDJQA+AOCqEL3FvvZGz7M= +github.com/weaveworks/promrus v1.2.0/go.mod h1:SaE82+OJ91yqjrE1rsvBWVzNZKcHYFtMUyS1+Ogs/KA= +github.com/xanzy/go-gitlab v0.15.0/go.mod h1:8zdQa/ri1dfn8eS3Ir1SyfvOKlw7WBJ8DVThkpGiXrs= +github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c/go.mod h1:lB8K/P019DLNhemzwFU4jHLhdvlE6uDZjXFejJXr49I= +github.com/xdg/stringprep v1.0.0/go.mod h1:Jhud4/sHMO4oL310DaZAKk9ZaJ08SJfe+sJh0HrGL1Y= +github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= github.com/xlab/treeprint v0.0.0-20180616005107-d6fb6747feb6/go.mod h1:ce1O1j6UtZfjr22oyGxGLbauSBp2YVXpARAosm7dHBg= +gitlab.com/nyarla/go-crypt v0.0.0-20160106005555-d9a5dc2b789b/go.mod h1:T3BPAOm2cqquPa0MKWeNkmOM5RQsRhkrwMWonFMN7fE= go.elastic.co/apm v1.5.0 h1:arba7i+CVc36Jptww3R1ttW+O10ydvnBtidyd85DLpg= go.elastic.co/apm v1.5.0/go.mod h1:OdB9sPtM6Vt7oz3VXt7+KR96i9li74qrxBGHTQygFvk= go.elastic.co/apm/module/apmhttp v1.5.0 h1:sxntP97oENyWWi+6GAwXUo05oEpkwbiarZLqrzLRA4o= @@ -563,39 +711,50 @@ go.elastic.co/apm/module/apmot v1.5.0 h1:rPyHRI6Ooqjwny67au6e2eIxLZshqd7bJfAUpdg go.elastic.co/apm/module/apmot v1.5.0/go.mod h1:d2KYwhJParTpyw2WnTNy8geNlHKKFX+4oK3YLlsesWE= go.elastic.co/fastjson v1.0.0 h1:ooXV/ABvf+tBul26jcVViPT3sBir0PvXgibYB1IQQzg= go.elastic.co/fastjson v1.0.0/go.mod h1:PmeUOMMtLHQr9ZS9J9owrAVg0FkaZDRZJEFTTGHtchs= +go.etcd.io/bbolt v1.3.3/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= +go.etcd.io/etcd v0.0.0-20190709142735-eb7dd97135a5/go.mod h1:N0RPWo9FXJYZQI4BTkDtQylrstIigYHeR18ONnyTufk= go.mongodb.org/mongo-driver v1.0.3 h1:GKoji1ld3tw2aC+GX1wbr/J2fX13yNacEYoJ8Nhr0yU= go.mongodb.org/mongo-driver v1.0.3/go.mod h1:u7ryQJ+DOzQmeO7zB6MHyr8jkEQvC8vH7qLUO4lqsUM= +go.mongodb.org/mongo-driver v1.1.0 h1:aeOqSrhl9eDRAap/3T5pCfMBEBxZ0vuXBP+RMtp2KX8= +go.mongodb.org/mongo-driver v1.1.0/go.mod h1:u7ryQJ+DOzQmeO7zB6MHyr8jkEQvC8vH7qLUO4lqsUM= go.opencensus.io v0.20.1/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= go.opencensus.io v0.20.2/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= go.opencensus.io v0.22.2 h1:75k/FF0Q2YM8QYo07VPddOLBslDt1MZOdEslOHvmzAs= go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= +go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= go.uber.org/atomic v1.5.0 h1:OI5t8sDa1Or+q8AeE+yKeB/SDYioSHAgcVljj9JIETY= go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= go.uber.org/automaxprocs v1.2.0 h1:+RUihKM+nmYUoB9w0D0Ov5TJ2PpFO2FgenTxMJiZBZA= go.uber.org/automaxprocs v1.2.0/go.mod h1:YfO3fm683kQpzETxlTGZhGIVmXAhaw3gxeBADbpZtnU= go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= +go.uber.org/zap v1.9.1/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= +golang.org/x/crypto v0.0.0-20180608092829-8ac0e0d97ce4/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181025213731-e84da0312774/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190211182817-74369b46fc67/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190320223903-b7391e95e576/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/crypto v0.0.0-20190325154230-a5d413f7728c/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/crypto v0.0.0-20190426145343-a29dc8fdc734/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190513172903-22d7a77e9e5f/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190617133340-57b3e21c3d56/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190923035154-9ee001bba392/go.mod h1:/lpIB1dKB+9EgE3H3cr1v9wB50oz8l4C4h62xy7jSTY= +golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191112222119-e1110fd1c708 h1:pXVtWnwHkrWD9ru3sDxY/qFK/bfc0egRovX91EjWjf4= golang.org/x/crypto v0.0.0-20191112222119-e1110fd1c708/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek= +golang.org/x/exp v0.0.0-20191029154019-8994fa331a53/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY= golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136 h1:A1gGSx58LAGVHUUsOf7IiR0u8Xb6W51gRwfDBhkdcaw= golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= @@ -612,11 +771,14 @@ golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= golang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY= +golang.org/x/mod v0.2.0 h1:KU7oHjnv3XNWfa5COkzUifxZmxp1TyI7ImMXqFxLwvQ= +golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181005035420-146acd28ed58/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181023162649-9b4f9f5ad519/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20181108082009-03003ca0c849/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -627,6 +789,7 @@ golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73r golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190320064053-1272bf9dcd53/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190424112056-4829fb13d2c6/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190522155817-f3200d17e092/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= @@ -637,9 +800,13 @@ golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLL golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190923162816-aa69164e4478/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20191002035440-2ec189313ef0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20191004110552-13f9640d40b9/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20191112182307-2180aed22343 h1:00ohfJ4K98s3m6BGUoBd8nyfp4Yl0GoIKvw5abItTjI= golang.org/x/net v0.0.0-20191112182307-2180aed22343/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200226121028-0de0cce0169b h1:0mm1VjtFUOIlE1SbDlwjYaDxZVDP2S5ou6y0gSgXHu8= +golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= +golang.org/x/oauth2 v0.0.0-20181106182150-f42d05182288/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190402181905-9f3314589c9a/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45 h1:SVwTIAaPC2U/AvvLNZ2a7OVsmBpC8L5BlwK1whH3hm0= @@ -659,6 +826,7 @@ golang.org/x/sys v0.0.0-20181026203630-95b1ffbd15a5/go.mod h1:STP8DvDyc/dI5b8T5h golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181122145206-62eef0e2fa9b/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190102155601-82a175fd1598/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190209173611-3b5209105503/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -667,6 +835,7 @@ golang.org/x/sys v0.0.0-20190412213103-97732733099d h1:+R4KGOnez64A81RvjARKc4UT5 golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190425145619-16072639606e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190426135247-a129542de9ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -674,7 +843,9 @@ golang.org/x/sys v0.0.0-20190616124812-15dcb6c0061f/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190712062909-fae7ac547cb7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190801041406-cbf593c0f2f3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190826190057-c7b8b68b1456/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190922100055-0a153f010e69/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190924154521-2837fb4f24fe/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191010194322-b09406accb47/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -682,6 +853,8 @@ golang.org/x/sys v0.0.0-20191025021431-6c3a3bfe00ae/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20191112214154-59a1497f0cea/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191113165036-4c7a9d0fe056 h1:dHtDnRWQtSx0Hjq9kvKFpBh9uPPKfQN70NZZmvssGwk= golang.org/x/sys v0.0.0-20191113165036-4c7a9d0fe056/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200122134326-e047566fdf82 h1:ywK/j/KkyTHcdyYSZNXGjMwgmDSfjglYZ3vStQ/gSCU= +golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180805044716-cb6730876b98/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -689,6 +862,7 @@ golang.org/x/text v0.3.1-0.20181227161524-e6919f6577db/go.mod h1:bEr9sfX3Q8Zfm5f golang.org/x/text v0.3.2 h1:tW2bmiBqwgJj/UpqtC8EpXEZVYOwU0yG4iWbprSVAcs= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/time v0.0.0-20161028155119-f51c12702a4d/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0 h1:/5xXl8Y5W96D+TtHSlonuFqGHIWVuyCkGJLwGh9JJFs= @@ -705,6 +879,7 @@ golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3 golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190425222832-ad9eeb80039a/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= @@ -719,12 +894,20 @@ golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtn golang.org/x/tools v0.0.0-20190918214516-5a1a30219888/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191111182352-50fa39b762bc/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2 h1:EtTFh6h4SAKemS+CURDMTDIANuduG5zKEXShyy18bGA= golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20200306191617-51e69f71924f h1:bFIWQKTZ5vXyr7xMDvzbWUj5Y/WBE4a4sf35MAyZjx0= +golang.org/x/tools v0.0.0-20200306191617-51e69f71924f/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4= +golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= google.golang.org/api v0.3.1/go.mod h1:6wY9I6uQWHQ8EM57III9mq/AjF+i8G65rmVagqKMtkk= +google.golang.org/api v0.3.2/go.mod h1:6wY9I6uQWHQ8EM57III9mq/AjF+i8G65rmVagqKMtkk= google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= @@ -734,13 +917,16 @@ google.golang.org/api v0.13.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsb google.golang.org/api v0.14.0 h1:uMf5uLi4eQMRrMKhCplNik4U4H8Z6C1br3zOtAa/aDE= google.golang.org/api v0.14.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= +google.golang.org/appengine v1.3.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= google.golang.org/appengine v1.6.5 h1:tycE03LOZYQNhDpS27tcQdAzLCVMaj7QT2SXxebnpCM= google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= +google.golang.org/genproto v0.0.0-20180608181217-32ee49c4dd80/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190404172233-64821d5d2107/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= @@ -750,9 +936,11 @@ google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98 google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= google.golang.org/genproto v0.0.0-20190927181202-20e1ac93f88c/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= +google.golang.org/genproto v0.0.0-20191028173616-919d9bdd9fe6/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9 h1:6XzpBoANz1NqMNfDXzc2QmHmbb1vyMsvRfoP5rM+K1I= google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/grpc v1.14.0/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw= google.golang.org/grpc v1.17.0/go.mod h1:6QZJwpn2B+Zp71q/5VxRsJ6NXXVCE5NRUHRo+f3cWCs= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= @@ -764,17 +952,20 @@ google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyac google.golang.org/grpc v1.24.0/go.mod h1:XDChyiUovWa60DnaeDeZmSW86xtLtjtZbwvSiRnRtcA= google.golang.org/grpc v1.25.1 h1:wdKvqQk7IttEw92GoRyKG2IDrUIpgpj6H6m81yfeMW0= google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= +gopkg.in/airbrake/gobrake.v2 v2.0.9/go.mod h1:/h5ZAUhDkGaJfjzjKLSjv6zCL6O0LLBxU4K+aSYdM/U= gopkg.in/alecthomas/kingpin.v2 v2.2.6 h1:jMFz6MfLP0/4fUyZle81rXUoxOBFi19VUFKVDOQfozc= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/cheggaaa/pb.v1 v1.0.25/go.mod h1:V/YB90LKu/1FcN3WVnfiiE5oMCibMjukxqG/qStrOgw= gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/fsnotify.v1 v1.4.7 h1:xOHLXZwVvI9hhs+cLKq5+I5onOuwQLhQwiu63xxlHs4= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= gopkg.in/fsnotify/fsnotify.v1 v1.4.7 h1:XNNYLJHt73EyYiCZi6+xjupS9CpvmiDgjPTAjrBlQbo= gopkg.in/fsnotify/fsnotify.v1 v1.4.7/go.mod h1:Fyux9zXlo4rWoMSIzpn9fDAYjalPqJ/K1qJ27s+7ltE= +gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2/go.mod h1:Xk6kEKp8OKb+X14hQBKWaSkCsqBpgog8nAV2xsGOxlo= gopkg.in/inf.v0 v0.9.0/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= gopkg.in/inf.v0 v0.9.1 h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc= gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= @@ -791,6 +982,9 @@ gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.5 h1:ymVxjfMaHvXD8RqPRmzHHsB3VvucivSkIAvJFDI5O3c= gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.7 h1:VUgggvou5XRW9mHwD/yXxIYSMtY0zoKQf/v226p2nyo= +gopkg.in/yaml.v2 v2.2.7/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw= honnef.co/go/tools v0.0.0-20180728063816-88497007e858/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= diff --git a/jsonnetfile.json b/jsonnetfile.json deleted file mode 100644 index 1bcb73e8a9f..00000000000 --- a/jsonnetfile.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "dependencies": [ - { - "name": "thanos-mixin", - "source": { - "local": { - "directory": "mixin/thanos" - } - }, - "version": "." - }, - { - "name": "grafonnet", - "source": { - "git": { - "remote": "https://github.com/grafana/grafonnet-lib", - "subdir": "grafonnet" - } - }, - "version": "master" - }, - { - "name": "grafana-builder", - "source": { - "git": { - "remote": "https://github.com/grafana/jsonnet-libs", - "subdir": "grafana-builder" - } - }, - "version": "master" - } - ] -} diff --git a/mixin/jsonnetfile.json b/mixin/jsonnetfile.json new file mode 100644 index 00000000000..8f8d9d3559d --- /dev/null +++ b/mixin/jsonnetfile.json @@ -0,0 +1,32 @@ +{ + "dependencies": [ + { + "source": { + "git": { + "remote": "https://github.com/grafana/grafonnet-lib", + "subdir": "grafonnet" + } + }, + "version": "master" + }, + { + "source": { + "git": { + "remote": "https://github.com/grafana/jsonnet-libs", + "subdir": "grafana-builder" + } + }, + "version": "master" + }, + { + "source": { + "local": { + "directory": "thanos" + } + }, + "version": ".", + "name": "thanos-mixin" + } + ], + "legacyImports": true +} diff --git a/jsonnetfile.lock.json b/mixin/jsonnetfile.lock.json similarity index 81% rename from jsonnetfile.lock.json rename to mixin/jsonnetfile.lock.json index ae23cf5774b..f2a1581a484 100644 --- a/jsonnetfile.lock.json +++ b/mixin/jsonnetfile.lock.json @@ -1,35 +1,34 @@ { "dependencies": [ { - "name": "grafana-builder", "source": { "git": { - "remote": "https://github.com/grafana/jsonnet-libs", - "subdir": "grafana-builder" + "remote": "https://github.com/grafana/grafonnet-lib", + "subdir": "grafonnet" } }, - "version": "f4c59f64f80442f871a06c91edf74d014b82acaf", - "sum": "ELsYwK+kGdzX1mee2Yy+/b2mdO4Y503BOCDkFzwmGbE=" + "version": "69bc267211790a1c3f4ea6e6211f3e8ffe22f987", + "sum": "BjHfWzqSAgtAKEVD6ipoYOkb8XT5wSBIboY4ZLwhlOU=" }, { - "name": "grafonnet", "source": { "git": { - "remote": "https://github.com/grafana/grafonnet-lib", - "subdir": "grafonnet" + "remote": "https://github.com/grafana/jsonnet-libs", + "subdir": "grafana-builder" } }, - "version": "69bc267211790a1c3f4ea6e6211f3e8ffe22f987", - "sum": "BjHfWzqSAgtAKEVD6ipoYOkb8XT5wSBIboY4ZLwhlOU=" + "version": "f4c59f64f80442f871a06c91edf74d014b82acaf", + "sum": "ELsYwK+kGdzX1mee2Yy+/b2mdO4Y503BOCDkFzwmGbE=" }, { - "name": "thanos-mixin", "source": { "local": { - "directory": "mixin/thanos" + "directory": "thanos" } }, - "version": "" + "version": "", + "name": "thanos-mixin" } - ] + ], + "legacyImports": false } diff --git a/mixin/thanos/README.md b/mixin/thanos/README.md index f53e11c509d..7f35050e507 100644 --- a/mixin/thanos/README.md +++ b/mixin/thanos/README.md @@ -59,36 +59,41 @@ This project is intended to be used as a library. You can extend and customize d [embedmd]:# (defaults.libsonnet) ```libsonnet { - querier+:: { - jobPrefix: 'thanos-querier', + query+:: { + jobPrefix: 'thanos-query', selector: 'job=~"%s.*"' % self.jobPrefix, - title: '%(prefix)sQuerier' % $.dashboard.prefix, + title: '%(prefix)sQuery' % $.dashboard.prefix, }, store+:: { jobPrefix: 'thanos-store', selector: 'job=~"%s.*"' % self.jobPrefix, title: '%(prefix)sStore' % $.dashboard.prefix, }, - receiver+:: { - jobPrefix: 'thanos-receiver', + receive+:: { + jobPrefix: 'thanos-receive', selector: 'job=~"%s.*"' % self.jobPrefix, - title: '%(prefix)sReceiver' % $.dashboard.prefix, + title: '%(prefix)sReceive' % $.dashboard.prefix, }, - ruler+:: { - jobPrefix: 'thanos-ruler', + rule+:: { + jobPrefix: 'thanos-rule', selector: 'job=~"%s.*"' % self.jobPrefix, - title: '%(prefix)sRuler' % $.dashboard.prefix, + title: '%(prefix)sRule' % $.dashboard.prefix, }, - compactor+:: { - jobPrefix: 'thanos-compactor', + compact+:: { + jobPrefix: 'thanos-compact', selector: 'job=~"%s.*"' % self.jobPrefix, - title: '%(prefix)sCompactor' % $.dashboard.prefix, + title: '%(prefix)sCompact' % $.dashboard.prefix, }, sidecar+:: { jobPrefix: 'thanos-sidecar', selector: 'job=~"%s.*"' % self.jobPrefix, title: '%(prefix)sSidecar' % $.dashboard.prefix, }, + bucket_replicate+:: { + jobPrefix: 'thanos-bucket-replicate', + selector: 'job=~"%s.*"' % self.jobPrefix, + title: '%(prefix)sBucketReplicate' % $.dashboard.prefix, + }, overview+:: { title: '%(prefix)sOverview' % $.dashboard.prefix, }, diff --git a/mixin/thanos/alerts/absent.libsonnet b/mixin/thanos/alerts/absent.libsonnet index a134fc8f609..4c7bf6bdff1 100644 --- a/mixin/thanos/alerts/absent.libsonnet +++ b/mixin/thanos/alerts/absent.libsonnet @@ -3,11 +3,11 @@ // We build alerts for the presence of all these jobs. jobs:: { - ThanosQuerier: thanos.querier.selector, + ThanosQuery: thanos.query.selector, ThanosStore: thanos.store.selector, - ThanosReceiver: thanos.receiver.selector, - ThanosRuler: thanos.ruler.selector, - ThanosCompactor: thanos.compactor.selector, + ThanosReceive: thanos.receive.selector, + ThanosRule: thanos.rule.selector, + ThanosCompact: thanos.compact.selector, ThanosSidecar: thanos.sidecar.selector, }, diff --git a/mixin/thanos/alerts/alerts.libsonnet b/mixin/thanos/alerts/alerts.libsonnet index e3fa0040901..5067ec93323 100644 --- a/mixin/thanos/alerts/alerts.libsonnet +++ b/mixin/thanos/alerts/alerts.libsonnet @@ -1,7 +1,8 @@ -(import 'compactor.libsonnet') + -(import 'querier.libsonnet') + -(import 'receiver.libsonnet') + +(import 'compact.libsonnet') + +(import 'query.libsonnet') + +(import 'receive.libsonnet') + (import 'sidecar.libsonnet') + (import 'store.libsonnet') + -(import 'ruler.libsonnet') + -(import 'absent.libsonnet') +(import 'rule.libsonnet') + +(import 'absent.libsonnet') + +(import 'bucket_replicate.libsonnet') diff --git a/mixin/thanos/alerts/bucket_replicate.libsonnet b/mixin/thanos/alerts/bucket_replicate.libsonnet new file mode 100644 index 00000000000..7517187c4e2 --- /dev/null +++ b/mixin/thanos/alerts/bucket_replicate.libsonnet @@ -0,0 +1,64 @@ +{ + local thanos = self, + bucket_replicate+:: { + selector: error 'must provide selector for Thanos Bucket Replicate dashboard', + errorThreshold: 10, + p99LatencyThreshold: 20, + }, + prometheusAlerts+:: { + groups+: [ + { + name: 'thanos-bucket-replicate.rules', + rules: [ + { + alert: 'ThanosBucketReplicateIsDown', + expr: ||| + absent(up{%(selector)s}) + ||| % thanos.bucket_replicate, + 'for': '5m', + labels: { + severity: 'critical', + }, + annotations: { + message: 'Thanos Replicate has disappeared from Prometheus target discovery.', + }, + }, + { + alert: 'ThanosBucketReplicateErrorRate', + annotations: { + message: 'Thanos Replicate failing to run, {{ $value | humanize }}% of attempts failed.', + }, + expr: ||| + ( + sum(rate(thanos_replicate_replication_runs_total{result="error", %(selector)s}[5m])) + / on (namespace) group_left + sum(rate(thanos_replicate_replication_runs_total{%(selector)s}[5m])) + ) * 100 >= %(errorThreshold)s + ||| % thanos.bucket_replicate, + 'for': '5m', + labels: { + severity: 'critical', + }, + }, + { + alert: 'ThanosBucketReplicateRunLatency', + annotations: { + message: 'Thanos Replicate {{$labels.job}} has a 99th percentile latency of {{ $value }} seconds for the replicate operations.', + }, + expr: ||| + ( + histogram_quantile(0.9, sum by (job, le) (rate(thanos_replicate_replication_run_duration_seconds_bucket{%(selector)s}[5m]))) > %(p99LatencyThreshold)s + and + sum by (job) (rate(thanos_replicate_replication_run_duration_seconds_bucket{%(selector)s}[5m])) > 0 + ) + ||| % thanos.bucket_replicate, + 'for': '5m', + labels: { + severity: 'critical', + }, + }, + ], + }, + ], + }, +} diff --git a/mixin/thanos/alerts/compactor.libsonnet b/mixin/thanos/alerts/compact.libsonnet similarity index 56% rename from mixin/thanos/alerts/compactor.libsonnet rename to mixin/thanos/alerts/compact.libsonnet index 3baab8b7d32..87bcfa13a77 100644 --- a/mixin/thanos/alerts/compactor.libsonnet +++ b/mixin/thanos/alerts/compact.libsonnet @@ -1,78 +1,79 @@ { local thanos = self, - compactor+:: { - jobPrefix: error 'must provide job prefix for Thanos Compactor alerts', - selector: error 'must provide selector for Thanos Compactor alerts', + compact+:: { + selector: error 'must provide selector for Thanos Compact alerts', + compactionErrorThreshold: 5, + bucketOpsErrorThreshold: 5, }, prometheusAlerts+:: { groups+: [ { - name: 'thanos-compactor.rules', + name: 'thanos-compact.rules', rules: [ { - alert: 'ThanosCompactorMultipleCompactorsAreRunning', + alert: 'ThanosCompactMultipleRunning', annotations: { - message: 'You should never run more than one Thanos Compactor at once. You have {{ $value }}', + message: 'No more than one Thanos Compact instance should be running at once. There are {{ $value }}', }, - expr: 'sum(up{%(selector)s}) > 1' % thanos.compactor, + expr: 'sum(up{%(selector)s}) > 1' % thanos.compact, 'for': '5m', labels: { severity: 'warning', }, }, { - alert: 'ThanosCompactorHalted', + alert: 'ThanosCompactHalted', annotations: { - message: 'Thanos Compactor {{$labels.job}} has failed to run and now is halted.', + message: 'Thanos Compact {{$labels.job}} has failed to run and now is halted.', }, - expr: 'thanos_compactor_halted{%(selector)s} == 1' % thanos.compactor, + expr: 'thanos_compactor_halted{%(selector)s} == 1' % thanos.compact, 'for': '5m', labels: { severity: 'warning', }, }, { - alert: 'ThanosCompactorHighCompactionFailures', + alert: 'ThanosCompactHighCompactionFailures', annotations: { - message: 'Thanos Compactor {{$labels.job}} is failing to execute {{ $value | humanize }}% of compactions.', + message: 'Thanos Compact {{$labels.job}} is failing to execute {{ $value | humanize }}% of compactions.', }, expr: ||| ( sum by (job) (rate(thanos_compact_group_compactions_failures_total{%(selector)s}[5m])) / sum by (job) (rate(thanos_compact_group_compactions_total{%(selector)s}[5m])) - * 100 > 5 + * 100 > %(compactionErrorThreshold)s ) - ||| % thanos.compactor, + ||| % thanos.compact, 'for': '15m', labels: { severity: 'warning', }, }, { - alert: 'ThanosCompactorBucketHighOperationFailures', + alert: 'ThanosCompactBucketHighOperationFailures', annotations: { - message: 'Thanos Compactor {{$labels.job}} Bucket is failing to execute {{ $value | humanize }}% of operations.', + message: 'Thanos Compact {{$labels.job}} Bucket is failing to execute {{ $value | humanize }}% of operations.', }, expr: ||| ( sum by (job) (rate(thanos_objstore_bucket_operation_failures_total{%(selector)s}[5m])) / sum by (job) (rate(thanos_objstore_bucket_operations_total{%(selector)s}[5m])) - * 100 > 5 + * 100 > %(bucketOpsErrorThreshold)s ) - ||| % thanos.compactor, + ||| % thanos.compact, 'for': '15m', labels: { severity: 'warning', }, }, { - alert: 'ThanosCompactorHasNotRun', + alert: 'ThanosCompactHasNotRun', annotations: { - message: 'Thanos Compactor {{$labels.job}} has not uploaded anything for 24 hours.', + message: 'Thanos Compact {{$labels.job}} has not uploaded anything for 24 hours.', }, - expr: '(time() - max(thanos_objstore_bucket_last_successful_upload_time{%(selector)s})) / 60 / 60 > 24' % thanos.compactor, + expr: '(time() - max(thanos_objstore_bucket_last_successful_upload_time{%(selector)s})) / 60 / 60 > 24' % thanos.compact, labels: { severity: 'warning', }, diff --git a/mixin/thanos/alerts/querier.libsonnet b/mixin/thanos/alerts/query.libsonnet similarity index 57% rename from mixin/thanos/alerts/querier.libsonnet rename to mixin/thanos/alerts/query.libsonnet index ca3ae2a218f..6326c846a7c 100644 --- a/mixin/thanos/alerts/querier.libsonnet +++ b/mixin/thanos/alerts/query.libsonnet @@ -1,129 +1,133 @@ { local thanos = self, - querier+:: { - jobPrefix: error 'must provide job prefix for Thanos Query alerts', + query+:: { selector: error 'must provide selector for Thanos Query alerts', + httpErrorThreshold: 5, + grpcErrorThreshold: 5, + dnsErrorThreshold: 1, + p99QueryLatencyThreshold: 40, + p99QueryRangeLatencyThreshold: 90, }, prometheusAlerts+:: { groups+: [ { - name: 'thanos-querier.rules', + name: 'thanos-query.rules', rules: [ { - alert: 'ThanosQuerierHttpRequestQueryErrorRateHigh', + alert: 'ThanosQueryHttpRequestQueryErrorRateHigh', annotations: { - message: 'Thanos Querier {{$labels.job}} is failing to handle {{ $value | humanize }}% of "query" requests.', + message: 'Thanos Query {{$labels.job}} is failing to handle {{ $value | humanize }}% of "query" requests.', }, expr: ||| ( sum(rate(http_requests_total{code=~"5..", %(selector)s, handler="query"}[5m])) / sum(rate(http_requests_total{%(selector)s, handler="query"}[5m])) - ) * 100 > 5 - ||| % thanos.querier, + ) * 100 > %(httpErrorThreshold)s + ||| % thanos.query, 'for': '5m', labels: { severity: 'critical', }, }, { - alert: 'ThanosQuerierHttpRequestQueryRangeErrorRateHigh', + alert: 'ThanosQueryHttpRequestQueryRangeErrorRateHigh', annotations: { - message: 'Thanos Querier {{$labels.job}} is failing to handle {{ $value | humanize }}% of "query_range" requests.', + message: 'Thanos Query {{$labels.job}} is failing to handle {{ $value | humanize }}% of "query_range" requests.', }, expr: ||| ( sum(rate(http_requests_total{code=~"5..", %(selector)s, handler="query_range"}[5m])) / sum(rate(http_requests_total{%(selector)s, handler="query_range"}[5m])) - ) * 100 > 5 - ||| % thanos.querier, + ) * 100 > %(httpErrorThreshold)s + ||| % thanos.query, 'for': '5m', labels: { severity: 'critical', }, }, { - alert: 'ThanosQuerierGrpcServerErrorRate', + alert: 'ThanosQueryGrpcServerErrorRate', annotations: { - message: 'Thanos Querier {{$labels.job}} is failing to handle {{ $value | humanize }}% of requests.', + message: 'Thanos Query {{$labels.job}} is failing to handle {{ $value | humanize }}% of requests.', }, expr: ||| ( sum by (job) (rate(grpc_server_handled_total{grpc_code=~"Unknown|ResourceExhausted|Internal|Unavailable|DataLoss|DeadlineExceeded", %(selector)s}[5m])) / sum by (job) (rate(grpc_server_started_total{%(selector)s}[5m])) - * 100 > 5 + * 100 > %(grpcErrorThreshold)s ) - ||| % thanos.querier, + ||| % thanos.query, 'for': '5m', labels: { severity: 'warning', }, }, { - alert: 'ThanosQuerierGrpcClientErrorRate', + alert: 'ThanosQueryGrpcClientErrorRate', annotations: { - message: 'Thanos Querier {{$labels.job}} is failing to send {{ $value | humanize }}% of requests.', + message: 'Thanos Query {{$labels.job}} is failing to send {{ $value | humanize }}% of requests.', }, expr: ||| ( sum by (job) (rate(grpc_client_handled_total{grpc_code!="OK", %(selector)s}[5m])) / sum by (job) (rate(grpc_client_started_total{%(selector)s}[5m])) - ) * 100 > 5 - ||| % thanos.querier, + ) * 100 > %(grpcErrorThreshold)s + ||| % thanos.query, 'for': '5m', labels: { severity: 'warning', }, }, { - alert: 'ThanosQuerierHighDNSFailures', + alert: 'ThanosQueryHighDNSFailures', annotations: { - message: 'Thanos Queriers {{$labels.job}} have {{ $value | humanize }}% of failing DNS queries for store endpoints.', + message: 'Thanos Query {{$labels.job}} have {{ $value | humanize }}% of failing DNS queries for store endpoints.', }, expr: ||| ( sum by (job) (rate(thanos_querier_store_apis_dns_failures_total{%(selector)s}[5m])) / sum by (job) (rate(thanos_querier_store_apis_dns_lookups_total{%(selector)s}[5m])) - ) * 100 > 1 - ||| % thanos.querier, + ) * 100 > %(dnsErrorThreshold)s + ||| % thanos.query, 'for': '15m', labels: { severity: 'warning', }, }, { - alert: 'ThanosQuerierInstantLatencyHigh', + alert: 'ThanosQueryInstantLatencyHigh', annotations: { - message: 'Thanos Querier {{$labels.job}} has a 99th percentile latency of {{ $value }} seconds for instant queries.', + message: 'Thanos Query {{$labels.job}} has a 99th percentile latency of {{ $value }} seconds for instant queries.', }, expr: ||| ( - histogram_quantile(0.99, sum by (job, le) (http_request_duration_seconds_bucket{%(selector)s, handler="query"})) > 10 + histogram_quantile(0.99, sum by (job, le) (rate(http_request_duration_seconds_bucket{%(selector)s, handler="query"}[5m]))) > %(p99QueryLatencyThreshold)s and sum by (job) (rate(http_request_duration_seconds_bucket{%(selector)s, handler="query"}[5m])) > 0 ) - ||| % thanos.querier, + ||| % thanos.query, 'for': '10m', labels: { severity: 'critical', }, }, { - alert: 'ThanosQuerierRangeLatencyHigh', + alert: 'ThanosQueryRangeLatencyHigh', annotations: { - message: 'Thanos Querier {{$labels.job}} has a 99th percentile latency of {{ $value }} seconds for instant queries.', + message: 'Thanos Query {{$labels.job}} has a 99th percentile latency of {{ $value }} seconds for range queries.', }, expr: ||| ( - histogram_quantile(0.99, sum by (job, le) (http_request_duration_seconds_bucket{%(selector)s, handler="query_range"})) > 10 + histogram_quantile(0.99, sum by (job, le) (rate(http_request_duration_seconds_bucket{%(selector)s, handler="query_range"}[5m]))) > %(p99QueryRangeLatencyThreshold)s and sum by (job) (rate(http_request_duration_seconds_count{%(selector)s, handler="query_range"}[5m])) > 0 ) - ||| % thanos.querier, + ||| % thanos.query, 'for': '10m', labels: { severity: 'critical', diff --git a/mixin/thanos/alerts/receiver.libsonnet b/mixin/thanos/alerts/receive.libsonnet similarity index 72% rename from mixin/thanos/alerts/receiver.libsonnet rename to mixin/thanos/alerts/receive.libsonnet index 9441bcaf41c..a52bc193dec 100644 --- a/mixin/thanos/alerts/receiver.libsonnet +++ b/mixin/thanos/alerts/receive.libsonnet @@ -1,16 +1,19 @@ { local thanos = self, - receiver+:: { - jobPrefix: error 'must provide job prefix for Thanos Receive alerts', + receive+:: { selector: error 'must provide selector for Thanos Receive alerts', + httpErrorThreshold: 5, + forwardErrorThreshold: 5, + refreshErrorThreshold: 0, + p99LatencyThreshold: 10, }, prometheusAlerts+:: { groups+: [ { - name: 'thanos-receiver.rules', + name: 'thanos-receive.rules', rules: [ { - alert: 'ThanosReceiverHttpRequestErrorRateHigh', + alert: 'ThanosReceiveHttpRequestErrorRateHigh', annotations: { message: 'Thanos Receive {{$labels.job}} is failing to handle {{ $value | humanize }}% of requests.', }, @@ -19,32 +22,32 @@ sum(rate(http_requests_total{code=~"5..", %(selector)s, handler="receive"}[5m])) / sum(rate(http_requests_total{%(selector)s, handler="receive"}[5m])) - ) * 100 > 5 - ||| % thanos.receiver, + ) * 100 > %(httpErrorThreshold)s + ||| % thanos.receive, 'for': '5m', labels: { severity: 'critical', }, }, { - alert: 'ThanosReceiverHttpRequestLatencyHigh', + alert: 'ThanosReceiveHttpRequestLatencyHigh', annotations: { message: 'Thanos Receive {{$labels.job}} has a 99th percentile latency of {{ $value }} seconds for requests.', }, expr: ||| ( - histogram_quantile(0.99, sum by (job, le) (http_request_duration_seconds_bucket{%(selector)s, handler="receive"})) > 10 + histogram_quantile(0.99, sum by (job, le) (rate(http_request_duration_seconds_bucket{%(selector)s, handler="receive"}[5m]))) > %(p99LatencyThreshold)s and sum by (job) (rate(http_request_duration_seconds_count{%(selector)s, handler="receive"}[5m])) > 0 ) - ||| % thanos.receiver, + ||| % thanos.receive, 'for': '10m', labels: { severity: 'critical', }, }, { - alert: 'ThanosReceiverHighForwardRequestFailures', + alert: 'ThanosReceiveHighForwardRequestFailures', annotations: { message: 'Thanos Receive {{$labels.job}} is failing to forward {{ $value | humanize }}% of requests.', }, @@ -53,16 +56,16 @@ sum by (job) (rate(thanos_receive_forward_requests_total{result="error", %(selector)s}[5m])) / sum by (job) (rate(thanos_receive_forward_requests_total{%(selector)s}[5m])) - * 100 > 5 + * 100 > %(forwardErrorThreshold)s ) - ||| % thanos.receiver, + ||| % thanos.receive, 'for': '5m', labels: { - severity: 'critical', + severity: 'warning', }, }, { - alert: 'ThanosReceiverHighHashringFileRefreshFailures', + alert: 'ThanosReceiveHighHashringFileRefreshFailures', annotations: { message: 'Thanos Receive {{$labels.job}} is failing to refresh hashring file, {{ $value | humanize }} of attempts failed.', }, @@ -71,20 +74,20 @@ sum by (job) (rate(thanos_receive_hashrings_file_errors_total{%(selector)s}[5m])) / sum by (job) (rate(thanos_receive_hashrings_file_refreshes_total{%(selector)s}[5m])) - > 0 + > %(refreshErrorThreshold)s ) - ||| % thanos.receiver, + ||| % thanos.receive, 'for': '15m', labels: { severity: 'warning', }, }, { - alert: 'ThanosReceiverConfigReloadFailure', + alert: 'ThanosReceiveConfigReloadFailure', annotations: { message: 'Thanos Receive {{$labels.job}} has not been able to reload hashring configurations.', }, - expr: 'avg(thanos_receive_config_last_reload_successful{%(selector)s}) by (job) != 1' % thanos.receiver, + expr: 'avg(thanos_receive_config_last_reload_successful{%(selector)s}) by (job) != 1' % thanos.receive, 'for': '5m', labels: { severity: 'warning', diff --git a/mixin/thanos/alerts/rule.libsonnet b/mixin/thanos/alerts/rule.libsonnet new file mode 100644 index 00000000000..c0106bcfb06 --- /dev/null +++ b/mixin/thanos/alerts/rule.libsonnet @@ -0,0 +1,191 @@ +{ + local thanos = self, + rule+:: { + selector: error 'must provide selector for Thanos Rule alerts', + grpcErrorThreshold: 5, + rulerDnsErrorThreshold: 1, + alertManagerDnsErrorThreshold: 1, + evalErrorThreshold: 5, + }, + prometheusAlerts+:: { + groups+: [ + { + name: 'thanos-rule.rules', + rules: [ + { + alert: 'ThanosRuleQueueIsDroppingAlerts', + annotations: { + message: 'Thanos Rule {{$labels.job}} {{$labels.pod}} is failing to queue alerts.', + }, + expr: ||| + sum by (job) (rate(thanos_alert_queue_alerts_dropped_total{%(selector)s}[5m])) > 0 + ||| % thanos.rule, + 'for': '5m', + labels: { + severity: 'critical', + }, + }, + { + alert: 'ThanosRuleSenderIsFailingAlerts', + annotations: { + message: 'Thanos Rule {{$labels.job}} {{$labels.pod}} is failing to send alerts to alertmanager.', + }, + expr: ||| + sum by (job) (rate(thanos_alert_sender_alerts_dropped_total{%(selector)s}[5m])) > 0 + ||| % thanos.rule, + 'for': '5m', + labels: { + severity: 'critical', + }, + }, + { + alert: 'ThanosRuleHighRuleEvaluationFailures', + annotations: { + message: 'Thanos Rule {{$labels.job}} {{$labels.pod}} is failing to evaluate rules.', + }, + expr: ||| + ( + sum by (job) (rate(prometheus_rule_evaluation_failures_total{%(selector)s}[5m])) + / + sum by (job) (rate(prometheus_rule_evaluations_total{%(selector)s}[5m])) + * 100 > %(evalErrorThreshold)s + ) + ||| % thanos.rule, + + 'for': '5m', + labels: { + severity: 'critical', + }, + }, + { + alert: 'ThanosRuleHighRuleEvaluationWarnings', + annotations: { + message: 'Thanos Rule {{$labels.job}} {{$labels.pod}} has high number of evaluation warnings.', + }, + expr: ||| + sum by (job) (rate(thanos_rule_evaluation_with_warnings_total{%(selector)s}[5m])) > 0 + ||| % thanos.rule, + + 'for': '15m', + labels: { + severity: 'info', + }, + }, + { + alert: 'ThanosRuleRuleEvaluationLatencyHigh', + annotations: { + message: 'Thanos Rule {{$labels.job}}/{{$labels.pod}} has higher evaluation latency than interval for {{$labels.rule_group}}.', + }, + expr: ||| + ( + sum by (job, pod, rule_group) (prometheus_rule_group_last_duration_seconds{%(selector)s}) + > + sum by (job, pod, rule_group) (prometheus_rule_group_interval_seconds{%(selector)s}) + ) + ||| % thanos.rule, + 'for': '5m', + labels: { + severity: 'warning', + }, + }, + { + alert: 'ThanosRuleGrpcErrorRate', + annotations: { + message: 'Thanos Rule {{$labels.job}} is failing to handle {{ $value | humanize }}% of requests.', + }, + expr: ||| + ( + sum by (job) (rate(grpc_server_handled_total{grpc_code=~"Unknown|ResourceExhausted|Internal|Unavailable|DataLoss|DeadlineExceeded", %(selector)s}[5m])) + / + sum by (job) (rate(grpc_server_started_total{%(selector)s}[5m])) + * 100 > %(grpcErrorThreshold)s + ) + ||| % thanos.rule, + 'for': '5m', + labels: { + severity: 'warning', + }, + }, + { + alert: 'ThanosRuleConfigReloadFailure', + annotations: { + message: 'Thanos Rule {{$labels.job}} has not been able to reload its configuration.', + }, + expr: 'avg(thanos_rule_config_last_reload_successful{%(selector)s}) by (job) != 1' % thanos.rule, + 'for': '5m', + labels: { + severity: 'info', + }, + }, + { + alert: 'ThanosRuleQueryHighDNSFailures', + annotations: { + message: 'Thanos Rule {{$labels.job}} has {{ $value | humanize }}% of failing DNS queries for query endpoints.', + }, + expr: ||| + ( + sum by (job) (rate(thanos_ruler_query_apis_dns_failures_total{%(selector)s}[5m])) + / + sum by (job) (rate(thanos_ruler_query_apis_dns_lookups_total{%(selector)s}[5m])) + * 100 > %(rulerDnsErrorThreshold)s + ) + ||| % thanos.rule, + 'for': '15m', + labels: { + severity: 'warning', + }, + }, + { + alert: 'ThanosRuleAlertmanagerHighDNSFailures', + annotations: { + message: 'Thanos Rule {{$labels.job}} has {{ $value | humanize }}% of failing DNS queries for Alertmanager endpoints.', + }, + expr: ||| + ( + sum by (job) (rate(thanos_ruler_alertmanagers_dns_failures_total{%(selector)s}[5m])) + / + sum by (job) (rate(thanos_ruler_alertmanagers_dns_lookups_total{%(selector)s}[5m])) + * 100 > %(alertManagerDnsErrorThreshold)s + ) + ||| % thanos.rule, + 'for': '15m', + labels: { + severity: 'warning', + }, + }, + { + // NOTE: This alert will give false positive if no rules are configured. + alert: 'ThanosRuleNoEvaluationFor10Intervals', + annotations: { + message: 'Thanos Rule {{$labels.job}} has {{ $value | humanize }}% rule groups that did not evaluate for at least 10x of their expected interval.', + }, + expr: ||| + time() - max by (job, group) (prometheus_rule_group_last_evaluation_timestamp_seconds{%(selector)s}) + > + 10 * max by (job, group) (prometheus_rule_group_interval_seconds{%(selector)s}) + ||| % thanos.rule, + 'for': '5m', + labels: { + // TODO(bwplotka): Move to critical once we gain more confidence in this, it's not trivial as it looks. + severity: 'info', + }, + }, + { + alert: 'ThanosNoRuleEvaluations', + annotations: { + message: 'Thanos Rule {{$labels.job}} did not perform any rule evaluations in the past 2 minutes.', + }, + expr: ||| + sum(rate(prometheus_rule_evaluations_total{%(selector)s}[2m])) <= 0 + and + sum(thanos_rule_loaded_rules{%(selector)s}) > 0 + ||| % thanos.rule, + labels: { + severity: 'critical', + }, + }, + ], + }, + ], + }, +} diff --git a/mixin/thanos/alerts/ruler.libsonnet b/mixin/thanos/alerts/ruler.libsonnet deleted file mode 100644 index 83f4d59807c..00000000000 --- a/mixin/thanos/alerts/ruler.libsonnet +++ /dev/null @@ -1,157 +0,0 @@ -{ - local thanos = self, - ruler+:: { - jobPrefix: error 'must provide job prefix for Thanos Ruler alerts', - selector: error 'must provide selector for Thanos Ruler alerts', - }, - prometheusAlerts+:: { - groups+: [ - { - name: 'thanos-ruler.rules', - rules: [ - { - alert: 'ThanosRulerQueueIsDroppingAlerts', - annotations: { - message: 'Thanos Ruler {{$labels.job}} {{$labels.pod}} is failing to queue alerts.', - }, - expr: ||| - sum by (job) (rate(thanos_alert_queue_alerts_dropped_total{%(selector)s}[5m])) > 0 - ||| % thanos.ruler, - 'for': '5m', - labels: { - severity: 'critical', - }, - }, - { - alert: 'ThanosRulerSenderIsFailingAlerts', - annotations: { - message: 'Thanos Ruler {{$labels.job}} {{$labels.pod}} is failing to send alerts to alertmanager.', - }, - expr: ||| - sum by (job) (rate(thanos_alert_sender_alerts_dropped_total{%(selector)s}[5m])) > 0 - ||| % thanos.ruler, - 'for': '5m', - labels: { - severity: 'critical', - }, - }, - { - alert: 'ThanosRulerHighRuleEvaluationFailures', - annotations: { - message: 'Thanos Ruler {{$labels.job}} {{$labels.pod}} is failing to evaluate rules.', - }, - expr: ||| - ( - sum by (job) (rate(prometheus_rule_evaluation_failures_total{%(selector)s}[5m])) - / - sum by (job) (rate(prometheus_rule_evaluations_total{%(selector)s}[5m])) - * 100 > 5 - ) - ||| % thanos.ruler, - - 'for': '5m', - labels: { - severity: 'warning', - }, - }, - { - alert: 'ThanosRulerHighRuleEvaluationWarnings', - annotations: { - message: 'Thanos Ruler {{$labels.job}} {{$labels.pod}} has high number of evaluation warnings.', - }, - expr: ||| - sum by (job) (rate(thanos_rule_evaluation_with_warnings_total{%(selector)s}[5m])) > 0 - ||| % thanos.ruler, - - 'for': '15m', - labels: { - severity: 'warning', - }, - }, - { - alert: 'ThanosRulerRuleEvaluationLatencyHigh', - annotations: { - message: 'Thanos Ruler {{$labels.job}}/{{$labels.pod}} has higher evaluation latency than interval for {{$labels.rule_group}}.', - }, - expr: ||| - ( - sum by (job, pod, rule_group) (prometheus_rule_group_last_duration_seconds{%(selector)s}) - > - sum by (job, pod, rule_group) (prometheus_rule_group_interval_seconds{%(selector)s}) - ) - ||| % thanos.ruler, - 'for': '5m', - labels: { - severity: 'warning', - }, - }, - { - alert: 'ThanosRulerGrpcErrorRate', - annotations: { - message: 'Thanos Ruler {{$labels.job}} is failing to handle {{ $value | humanize }}% of requests.', - }, - expr: ||| - ( - sum by (job) (rate(grpc_server_handled_total{grpc_code=~"Unknown|ResourceExhausted|Internal|Unavailable|DataLoss|DeadlineExceeded", %(selector)s}[5m])) - / - sum by (job) (rate(grpc_server_started_total{%(selector)s}[5m])) - * 100 > 5 - ) - ||| % thanos.ruler, - 'for': '5m', - labels: { - severity: 'warning', - }, - }, - { - alert: 'ThanosRulerConfigReloadFailure', - annotations: { - message: 'Thanos Ruler {{$labels.job}} has not been able to reload its configuration.', - }, - expr: 'avg(thanos_rule_config_last_reload_successful{%(selector)s}) by (job) != 1' % thanos.ruler, - 'for': '5m', - labels: { - severity: 'warning', - }, - }, - { - alert: 'ThanosRulerQueryHighDNSFailures', - annotations: { - message: 'Thanos Ruler {{$labels.job}} have {{ $value | humanize }}% of failing DNS queries for query endpoints.', - }, - expr: ||| - ( - sum by (job) (rate(thanos_ruler_query_apis_dns_failures_total{%(selector)s}[5m])) - / - sum by (job) (rate(thanos_ruler_query_apis_dns_lookups_total{%(selector)s}[5m])) - * 100 > 1 - ) - ||| % thanos.ruler, - 'for': '15m', - labels: { - severity: 'warning', - }, - }, - { - alert: 'ThanosRulerAlertmanagerHighDNSFailures', - annotations: { - message: 'Thanos Ruler {{$labels.job}} have {{ $value | humanize }}% of failing DNS queries for Alertmanager endpoints.', - }, - expr: ||| - ( - sum by (job) (rate(thanos_ruler_alertmanagers_dns_failures_total{%(selector)s}[5m])) - / - sum by (job) (rate(thanos_ruler_alertmanagers_dns_lookups_total{%(selector)s}[5m])) - * 100 > 1 - ) - ||| % thanos.ruler, - 'for': '15m', - labels: { - severity: 'warning', - }, - }, - ], - }, - ], - }, -} diff --git a/mixin/thanos/alerts/sidecar.libsonnet b/mixin/thanos/alerts/sidecar.libsonnet index 58aee3bb0b3..c81e2ba0a91 100644 --- a/mixin/thanos/alerts/sidecar.libsonnet +++ b/mixin/thanos/alerts/sidecar.libsonnet @@ -1,7 +1,6 @@ { local thanos = self, sidecar+:: { - jobPrefix: error 'must provide job prefix for Thanos Sidecar alerts', selector: error 'must provide selector for Thanos Sidecar alerts', }, prometheusAlerts+:: { diff --git a/mixin/thanos/alerts/store.libsonnet b/mixin/thanos/alerts/store.libsonnet index 77ff1baedd7..04d723ffaa5 100644 --- a/mixin/thanos/alerts/store.libsonnet +++ b/mixin/thanos/alerts/store.libsonnet @@ -1,8 +1,12 @@ { local thanos = self, store+:: { - jobPrefix: error 'must provide job prefix for Thanos Store alerts', selector: error 'must provide selector for Thanos Store alerts', + grpcErrorThreshold: 5, + compactionErrorThreshold: 5, + seriesGateErrorThreshold: 2, + bucketOpsErrorThreshold: 5, + bucketOpsP99LatencyThreshold: 2, }, prometheusAlerts+:: { groups+: [ @@ -19,7 +23,7 @@ sum by (job) (rate(grpc_server_handled_total{grpc_code=~"Unknown|ResourceExhausted|Internal|Unavailable|DataLoss|DeadlineExceeded", %(selector)s}[5m])) / sum by (job) (rate(grpc_server_started_total{%(selector)s}[5m])) - * 100 > 5 + * 100 > %(grpcErrorThreshold)s ) ||| % thanos.store, 'for': '5m', @@ -34,7 +38,7 @@ }, expr: ||| ( - histogram_quantile(0.9, sum by (job, le) (thanos_bucket_store_series_gate_duration_seconds_bucket{%(selector)s})) > 2 + histogram_quantile(0.9, sum by (job, le) (rate(thanos_bucket_store_series_gate_duration_seconds_bucket{%(selector)s}[5m]))) > %(seriesGateErrorThreshold)s and sum by (job) (rate(thanos_bucket_store_series_gate_duration_seconds_count{%(selector)s}[5m])) > 0 ) @@ -54,7 +58,7 @@ sum by (job) (rate(thanos_objstore_bucket_operation_failures_total{%(selector)s}[5m])) / sum by (job) (rate(thanos_objstore_bucket_operations_total{%(selector)s}[5m])) - * 100 > 5 + * 100 > %(bucketOpsErrorThreshold)s ) ||| % thanos.store, 'for': '15m', @@ -69,7 +73,7 @@ }, expr: ||| ( - histogram_quantile(0.9, sum by (job, le) (thanos_objstore_bucket_operation_duration_seconds_bucket{%(selector)s})) > 15 + histogram_quantile(0.9, sum by (job, le) (rate(thanos_objstore_bucket_operation_duration_seconds_bucket{%(selector)s}[5m]))) > %(bucketOpsP99LatencyThreshold)s and sum by (job) (rate(thanos_objstore_bucket_operation_duration_seconds_count{%(selector)s}[5m])) > 0 ) diff --git a/mixin/thanos/dashboards/bucket_replicate.libsonnet b/mixin/thanos/dashboards/bucket_replicate.libsonnet new file mode 100644 index 00000000000..9e406f38333 --- /dev/null +++ b/mixin/thanos/dashboards/bucket_replicate.libsonnet @@ -0,0 +1,57 @@ +local g = import '../lib/thanos-grafana-builder/builder.libsonnet'; + +{ + local thanos = self, + bucket_replicate+:: { + jobPrefix: error 'must provide job prefix for Thanos Bucket Replicate dashboard', + selector: error 'must provide selector for Thanos Bucket Replicate dashboard', + title: error 'must provide title for Thanos Bucket Replicate dashboard', + }, + grafanaDashboards+:: { + 'bucket_replicate.json': + g.dashboard(thanos.bucket_replicate.title) + .addRow( + g.row('Bucket Replicate Runs') + .addPanel( + g.panel('Rate') + + g.qpsErrTotalPanel( + 'thanos_replicate_replication_runs_total{result="error", namespace="$namespace",%(selector)s}' % thanos.bucket_replicate, + 'thanos_replicate_replication_runs_total{namespace="$namespace",%(selector)s}' % thanos.bucket_replicate, + ) + ) + .addPanel( + g.panel('Errors', 'Shows rate of errors.') + + g.queryPanel( + 'sum(rate(thanos_replicate_replication_runs_total{result="error", namespace="$namespace",%(selector)s}[$interval])) by (result)' % thanos.bucket_replicate, + '{{result}}' + ) + + { yaxes: g.yaxes('percentunit') } + + g.stack + ) + .addPanel( + g.panel('Duration', 'Shows how long has it taken to run a replication cycle.') + + g.latencyPanel('thanos_replicate_replication_run_duration_seconds', 'result="success", namespace="$namespace",%(selector)s' % thanos.bucket_replicate) + ) + ) + .addRow( + g.row('Bucket Replication') + .addPanel( + g.panel('Metrics') + + g.queryPanel( + [ + 'sum(rate(thanos_replicate_origin_iterations_total{namespace="$namespace",%(selector)s}[$interval]))' % thanos.bucket_replicate, + 'sum(rate(thanos_replicate_origin_meta_loads_total{namespace="$namespace",%(selector)s}[$interval]))' % thanos.bucket_replicate, + 'sum(rate(thanos_replicate_origin_partial_meta_reads_total{namespace="$namespace",%(selector)s}[$interval]))' % thanos.bucket_replicate, + 'sum(rate(thanos_replicate_blocks_already_replicated_total{namespace="$namespace",%(selector)s}[$interval]))' % thanos.bucket_replicate, + 'sum(rate(thanos_replicate_blocks_replicated_total{namespace="$namespace",%(selector)s}[$interval]))' % thanos.bucket_replicate, + 'sum(rate(thanos_replicate_objects_replicated_total{namespace="$namespace",%(selector)s}[$interval]))' % thanos.bucket_replicate, + ], + ['iterations', 'meta loads', 'partial meta reads', 'already replicated blocks', 'replicated blocks', 'replicated objects'] + ) + ) + ) + + + g.template('namespace', 'kube_pod_info') + + g.template('job', 'up', 'namespace="$namespace",%(selector)s' % thanos.bucket_replicate, true, '%(jobPrefix)s.*' % thanos.bucket_replicate), + }, +} diff --git a/mixin/thanos/dashboards/compactor.libsonnet b/mixin/thanos/dashboards/compact.libsonnet similarity index 91% rename from mixin/thanos/dashboards/compactor.libsonnet rename to mixin/thanos/dashboards/compact.libsonnet index 35e9c18c61f..dbd30f926d0 100644 --- a/mixin/thanos/dashboards/compactor.libsonnet +++ b/mixin/thanos/dashboards/compact.libsonnet @@ -2,14 +2,14 @@ local g = import '../lib/thanos-grafana-builder/builder.libsonnet'; { local thanos = self, - compactor+:: { - jobPrefix: error 'must provide job prefix for Thanos Compactor dashboard', - selector: error 'must provide selector for Thanos Compactor dashboard', - title: error 'must provide title for Thanos Compactor dashboard', + compact+:: { + jobPrefix: error 'must provide job prefix for Thanos Compact dashboard', + selector: error 'must provide selector for Thanos Compact dashboard', + title: error 'must provide title for Thanos Compact dashboard', }, grafanaDashboards+:: { - 'compactor.json': - g.dashboard(thanos.compactor.title) + 'compact.json': + g.dashboard(thanos.compact.title) .addRow( g.row('Group Compaction') .addPanel( @@ -131,22 +131,22 @@ local g = import '../lib/thanos-grafana-builder/builder.libsonnet'; g.resourceUtilizationRow() ) + g.template('namespace', thanos.dashboard.namespaceQuery) + - g.template('job', 'up', 'namespace="$namespace",%(selector)s' % thanos.compactor, true, '%(jobPrefix)s.*' % thanos.compactor) + - g.template('pod', 'kube_pod_info', 'namespace="$namespace",created_by_name=~"%(jobPrefix)s.*"' % thanos.compactor, true, '.*'), + g.template('job', 'up', 'namespace="$namespace",%(selector)s' % thanos.compact, true, '%(jobPrefix)s.*' % thanos.compact) + + g.template('pod', 'kube_pod_info', 'namespace="$namespace",created_by_name=~"%(jobPrefix)s.*"' % thanos.compact, true, '.*'), __overviewRows__+:: [ - g.row('Compactor') + g.row('Compact') .addPanel( g.panel( 'Compaction Rate', 'Shows rate of execution for compactions against blocks that are stored in the bucket by compaction group.' ) + g.queryPanel( - 'sum(rate(thanos_compact_group_compactions_total{namespace="$namespace",%(selector)s}[$interval])) by (job)' % thanos.compactor, + 'sum(rate(thanos_compact_group_compactions_total{namespace="$namespace",%(selector)s}[$interval])) by (job)' % thanos.compact, 'compaction {{job}}' ) + g.stack + - g.addDashboardLink(thanos.compactor.title) + g.addDashboardLink(thanos.compact.title) ) .addPanel( g.panel( @@ -154,10 +154,10 @@ local g = import '../lib/thanos-grafana-builder/builder.libsonnet'; 'Shows ratio of errors compared to the total number of executed compactions against blocks that are stored in the bucket.' ) + g.qpsErrTotalPanel( - 'thanos_compact_group_compactions_failures_total{namespace="$namespace",%(selector)s}' % thanos.compactor, - 'thanos_compact_group_compactions_total{namespace="$namespace",%(selector)s}' % thanos.compactor, + 'thanos_compact_group_compactions_failures_total{namespace="$namespace",%(selector)s}' % thanos.compact, + 'thanos_compact_group_compactions_total{namespace="$namespace",%(selector)s}' % thanos.compact, ) + - g.addDashboardLink(thanos.compactor.title) + g.addDashboardLink(thanos.compact.title) ) + g.collapse, ], diff --git a/mixin/thanos/dashboards/dashboards.libsonnet b/mixin/thanos/dashboards/dashboards.libsonnet index f12f527103c..5bd99093f5f 100644 --- a/mixin/thanos/dashboards/dashboards.libsonnet +++ b/mixin/thanos/dashboards/dashboards.libsonnet @@ -1,8 +1,9 @@ -(import 'querier.libsonnet') + +(import 'query.libsonnet') + (import 'store.libsonnet') + (import 'sidecar.libsonnet') + -(import 'receiver.libsonnet') + -(import 'ruler.libsonnet') + -(import 'compactor.libsonnet') + +(import 'receive.libsonnet') + +(import 'rule.libsonnet') + +(import 'compact.libsonnet') + +(import 'bucket_replicate.libsonnet') + (import 'overview.libsonnet') + (import 'defaults.libsonnet') diff --git a/mixin/thanos/dashboards/querier.libsonnet b/mixin/thanos/dashboards/query.libsonnet similarity index 90% rename from mixin/thanos/dashboards/querier.libsonnet rename to mixin/thanos/dashboards/query.libsonnet index 18ef95c0645..d390f8c4d6a 100644 --- a/mixin/thanos/dashboards/querier.libsonnet +++ b/mixin/thanos/dashboards/query.libsonnet @@ -2,14 +2,14 @@ local g = import '../lib/thanos-grafana-builder/builder.libsonnet'; { local thanos = self, - querier+:: { + query+:: { jobPrefix: error 'must provide job prefix for Thanos Query dashboard', selector: error 'must provide selector for Thanos Query dashboard', title: error 'must provide title for Thanos Query dashboard', }, grafanaDashboards+:: { - 'querier.json': - g.dashboard(thanos.querier.title) + 'query.json': + g.dashboard(thanos.query.title) .addRow( g.row('Instant Query API') .addPanel( @@ -139,54 +139,54 @@ local g = import '../lib/thanos-grafana-builder/builder.libsonnet'; g.resourceUtilizationRow() ) + g.template('namespace', thanos.dashboard.namespaceQuery) + - g.template('job', 'up', 'namespace="$namespace",%(selector)s' % thanos.querier, true, '%(jobPrefix)s.*' % thanos.querier) + - g.template('pod', 'kube_pod_info', 'namespace="$namespace",created_by_name=~"%(jobPrefix)s.*"' % thanos.querier, true, '.*'), + g.template('job', 'up', 'namespace="$namespace",%(selector)s' % thanos.query, true, '%(jobPrefix)s.*' % thanos.query) + + g.template('pod', 'kube_pod_info', 'namespace="$namespace",created_by_name=~"%(jobPrefix)s.*"' % thanos.query, true, '.*'), __overviewRows__+:: [ g.row('Instant Query') .addPanel( g.panel('Requests Rate', 'Shows rate of requests against /query for the given time.') + - g.httpQpsPanel('http_requests_total', 'namespace="$namespace",%(selector)s,handler="query"' % thanos.querier) + - g.addDashboardLink(thanos.querier.title) + g.httpQpsPanel('http_requests_total', 'namespace="$namespace",%(selector)s,handler="query"' % thanos.query) + + g.addDashboardLink(thanos.query.title) ) .addPanel( g.panel('Requests Errors', 'Shows ratio of errors compared to the the total number of handled requests against /query.') + - g.httpErrPanel('http_requests_total', 'namespace="$namespace",%(selector)s,handler="query"' % thanos.querier) + - g.addDashboardLink(thanos.querier.title) + g.httpErrPanel('http_requests_total', 'namespace="$namespace",%(selector)s,handler="query"' % thanos.query) + + g.addDashboardLink(thanos.query.title) ) .addPanel( g.sloLatency( 'Latency 99th Percentile', 'Shows how long has it taken to handle requests.', - 'http_request_duration_seconds_bucket{namespace="$namespace",%(selector)s,handler="query"}' % thanos.querier, + 'http_request_duration_seconds_bucket{namespace="$namespace",%(selector)s,handler="query"}' % thanos.query, 0.99, 0.5, 1 ) + - g.addDashboardLink(thanos.querier.title) + g.addDashboardLink(thanos.query.title) ), g.row('Range Query') .addPanel( g.panel('Requests Rate', 'Shows rate of requests against /query_range for the given time range.') + - g.httpQpsPanel('http_requests_total', 'namespace="$namespace",%(selector)s,handler="query_range"' % thanos.querier) + - g.addDashboardLink(thanos.querier.title) + g.httpQpsPanel('http_requests_total', 'namespace="$namespace",%(selector)s,handler="query_range"' % thanos.query) + + g.addDashboardLink(thanos.query.title) ) .addPanel( g.panel('Requests Errors', 'Shows ratio of errors compared to the the total number of handled requests against /query_range.') + - g.httpErrPanel('http_requests_total', 'namespace="$namespace",%(selector)s,handler="query_range"' % thanos.querier) + - g.addDashboardLink(thanos.querier.title) + g.httpErrPanel('http_requests_total', 'namespace="$namespace",%(selector)s,handler="query_range"' % thanos.query) + + g.addDashboardLink(thanos.query.title) ) .addPanel( g.sloLatency( 'Latency 99th Percentile', 'Shows how long has it taken to handle requests.', - 'http_request_duration_seconds_bucket{namespace="$namespace",%(selector)s,handler="query_range"}' % thanos.querier, + 'http_request_duration_seconds_bucket{namespace="$namespace",%(selector)s,handler="query_range"}' % thanos.query, 0.99, 0.5, 1 ) + - g.addDashboardLink(thanos.querier.title) + g.addDashboardLink(thanos.query.title) ), ], }, diff --git a/mixin/thanos/dashboards/receiver.libsonnet b/mixin/thanos/dashboards/receive.libsonnet similarity index 93% rename from mixin/thanos/dashboards/receiver.libsonnet rename to mixin/thanos/dashboards/receive.libsonnet index dd35a6ee9ff..1d8346a20b0 100644 --- a/mixin/thanos/dashboards/receiver.libsonnet +++ b/mixin/thanos/dashboards/receive.libsonnet @@ -2,14 +2,14 @@ local g = import '../lib/thanos-grafana-builder/builder.libsonnet'; { local thanos = self, - receiver+:: { + receive+:: { jobPrefix: error 'must provide job prefix for Thanos Receive dashboard', selector: error 'must provide selector for Thanos Receive dashboard', title: error 'must provide title for Thanos Receive dashboard', }, grafanaDashboards+:: { - 'receiver.json': - g.dashboard(thanos.receiver.title) + 'receive.json': + g.dashboard(thanos.receive.title) .addRow( g.row('Incoming Request') .addPanel( @@ -140,31 +140,31 @@ local g = import '../lib/thanos-grafana-builder/builder.libsonnet'; g.resourceUtilizationRow() ) + g.template('namespace', thanos.dashboard.namespaceQuery) + - g.template('job', 'up', 'namespace="$namespace",%(selector)s' % thanos.receiver, true, '%(jobPrefix)s.*' % thanos.receiver) + - g.template('pod', 'kube_pod_info', 'namespace="$namespace",created_by_name=~"%(jobPrefix)s.*"' % thanos.receiver, true, '.*'), + g.template('job', 'up', 'namespace="$namespace",%(selector)s' % thanos.receive, true, '%(jobPrefix)s.*' % thanos.receive) + + g.template('pod', 'kube_pod_info', 'namespace="$namespace",created_by_name=~"%(jobPrefix)s.*"' % thanos.receive, true, '.*'), __overviewRows__+:: [ g.row('Receive') .addPanel( g.panel('Incoming Requests Rate', 'Shows rate of incoming requests.') + - g.httpQpsPanel('http_requests_total', 'handler="receive",namespace="$namespace",%(selector)s' % thanos.receiver) + - g.addDashboardLink(thanos.receiver.title) + g.httpQpsPanel('http_requests_total', 'handler="receive",namespace="$namespace",%(selector)s' % thanos.receive) + + g.addDashboardLink(thanos.receive.title) ) .addPanel( g.panel('Incoming Requests Errors', 'Shows ratio of errors compared to the total number of handled incoming requests.') + - g.httpErrPanel('http_requests_total', 'handler="receive",namespace="$namespace",%(selector)s' % thanos.receiver) + - g.addDashboardLink(thanos.receiver.title) + g.httpErrPanel('http_requests_total', 'handler="receive",namespace="$namespace",%(selector)s' % thanos.receive) + + g.addDashboardLink(thanos.receive.title) ) .addPanel( g.sloLatency( 'Incoming Requests Latency 99th Percentile', 'Shows how long has it taken to handle incoming requests.', - 'http_request_duration_seconds_bucket{handler="receive",namespace="$namespace",%(selector)s}' % thanos.receiver, + 'http_request_duration_seconds_bucket{handler="receive",namespace="$namespace",%(selector)s}' % thanos.receive, 0.99, 0.5, 1 ) + - g.addDashboardLink(thanos.receiver.title) + g.addDashboardLink(thanos.receive.title) ), ], }, diff --git a/mixin/thanos/dashboards/ruler.libsonnet b/mixin/thanos/dashboards/rule.libsonnet similarity index 90% rename from mixin/thanos/dashboards/ruler.libsonnet rename to mixin/thanos/dashboards/rule.libsonnet index 067e4d1af2a..d172b9f2b37 100644 --- a/mixin/thanos/dashboards/ruler.libsonnet +++ b/mixin/thanos/dashboards/rule.libsonnet @@ -2,14 +2,14 @@ local g = import '../lib/thanos-grafana-builder/builder.libsonnet'; { local thanos = self, - ruler+:: { - jobPrefix: error 'must provide job prefix for Thanos Ruler dashboard', - selector: error 'must provide selector for Thanos Ruler dashboard', - title: error 'must provide title for Thanos Ruler dashboard', + rule+:: { + jobPrefix: error 'must provide job prefix for Thanos Rule dashboard', + selector: error 'must provide selector for Thanos Rule dashboard', + title: error 'must provide title for Thanos Rule dashboard', }, grafanaDashboards+:: { - 'ruler.json': - g.dashboard(thanos.ruler.title) + 'rule.json': + g.dashboard(thanos.rule.title) .addRow( g.row('Alert Sent') .addPanel( @@ -122,38 +122,38 @@ local g = import '../lib/thanos-grafana-builder/builder.libsonnet'; g.resourceUtilizationRow() ) + g.template('namespace', thanos.dashboard.namespaceQuery) + - g.template('job', 'up', 'namespace="$namespace",%(selector)s' % thanos.ruler, true, '%(jobPrefix)s.*' % thanos.ruler) + - g.template('pod', 'kube_pod_info', 'namespace="$namespace",created_by_name=~"%(jobPrefix)s.*"' % thanos.ruler, true, '.*'), + g.template('job', 'up', 'namespace="$namespace",%(selector)s' % thanos.rule, true, '%(jobPrefix)s.*' % thanos.rule) + + g.template('pod', 'kube_pod_info', 'namespace="$namespace",created_by_name=~"%(jobPrefix)s.*"' % thanos.rule, true, '.*'), __overviewRows__+:: [ g.row('Rule') .addPanel( g.panel('Alert Sent Rate', 'Shows rate of alerts that successfully sent to alert manager.') + g.queryPanel( - 'sum(rate(thanos_alert_sender_alerts_sent_total{namespace="$namespace",%(selector)s}[$interval])) by (job, alertmanager)' % thanos.ruler, + 'sum(rate(thanos_alert_sender_alerts_sent_total{namespace="$namespace",%(selector)s}[$interval])) by (job, alertmanager)' % thanos.rule, '{{job}} {{alertmanager}}' ) + - g.addDashboardLink(thanos.ruler.title) + + g.addDashboardLink(thanos.rule.title) + g.stack ) .addPanel( g.panel('Alert Sent Errors', 'Shows ratio of errors compared to the total number of sent alerts.') + g.qpsErrTotalPanel( - 'thanos_alert_sender_errors_total{namespace="$namespace",%(selector)s}' % thanos.ruler, - 'thanos_alert_sender_alerts_sent_total{namespace="$namespace",%(selector)s}' % thanos.ruler, + 'thanos_alert_sender_errors_total{namespace="$namespace",%(selector)s}' % thanos.rule, + 'thanos_alert_sender_alerts_sent_total{namespace="$namespace",%(selector)s}' % thanos.rule, ) + - g.addDashboardLink(thanos.ruler.title) + g.addDashboardLink(thanos.rule.title) ) .addPanel( g.sloLatency( 'Alert Sent Duration', 'Shows how long has it taken to send alerts to alert manager.', - 'thanos_alert_sender_latency_seconds_bucket{namespace="$namespace",%(selector)s}' % thanos.ruler, + 'thanos_alert_sender_latency_seconds_bucket{namespace="$namespace",%(selector)s}' % thanos.rule, 0.99, 0.5, 1 ) + - g.addDashboardLink(thanos.ruler.title) + g.addDashboardLink(thanos.rule.title) ) + g.collapse, ], diff --git a/mixin/thanos/dashboards/sidecar.libsonnet b/mixin/thanos/dashboards/sidecar.libsonnet index 37878c7b119..986101fa0be 100644 --- a/mixin/thanos/dashboards/sidecar.libsonnet +++ b/mixin/thanos/dashboards/sidecar.libsonnet @@ -60,15 +60,15 @@ local g = import '../lib/thanos-grafana-builder/builder.libsonnet'; g.row('Detailed') .addPanel( g.panel('Rate', 'Shows rate of handled Streamed gRPC requests from queriers.') + - g.grpcQpsPanelDetailed('client', 'namespace="$namespace",job=~"$job",grpc_type="server_stream"') + g.grpcQpsPanelDetailed('server', 'namespace="$namespace",job=~"$job",grpc_type="server_stream"') ) .addPanel( g.panel('Errors', 'Shows ratio of errors compared to the total number of handled requests from queriers.') + - g.grpcErrDetailsPanel('client', 'namespace="$namespace",job=~"$job",grpc_type="server_stream"') + g.grpcErrDetailsPanel('server', 'namespace="$namespace",job=~"$job",grpc_type="server_stream"') ) .addPanel( g.panel('Duration', 'Shows how long has it taken to handle requests from queriers, in quantiles.') + - g.grpcLatencyPanelDetailed('client', 'namespace="$namespace",job=~"$job",grpc_type="server_stream"') + g.grpcLatencyPanelDetailed('server', 'namespace="$namespace",job=~"$job",grpc_type="server_stream"') ) + g.collapse ) diff --git a/mixin/thanos/dashboards/store.libsonnet b/mixin/thanos/dashboards/store.libsonnet index 2f8d27d2193..ba06753e048 100644 --- a/mixin/thanos/dashboards/store.libsonnet +++ b/mixin/thanos/dashboards/store.libsonnet @@ -165,7 +165,7 @@ local g = import '../lib/thanos-grafana-builder/builder.libsonnet'; .addRow( g.row('Store Sent') .addPanel( - g.panel('Chunk Size', 'Shows size of chunks that have sent to the bucket, in bytes.') + + g.panel('Chunk Size (bytes)', 'Shows size of chunks that have sent to the bucket, in bytes.') + g.queryPanel( [ 'histogram_quantile(0.99, sum(rate(thanos_bucket_store_sent_chunk_size_bytes_bucket{namespace="$namespace",job=~"$job"}[$interval])) by (job, le))', @@ -198,7 +198,7 @@ local g = import '../lib/thanos-grafana-builder/builder.libsonnet'; ) ) .addPanel( - g.panel('Data Fetched') + + g.panel('Data Fetched (bytes)', 'Show the size of data fetched, in bytes') + g.queryPanel( [ 'thanos_bucket_store_series_data_fetched{namespace="$namespace",job=~"$job",quantile="0.99"}', @@ -234,11 +234,11 @@ local g = import '../lib/thanos-grafana-builder/builder.libsonnet'; ) .addPanel( g.panel('Merge', 'Shows how long has it taken to merge series.') + - g.latencyPanel('thanos_bucket_store_series_merge_duration_seconds_bucket', 'namespace="$namespace",job=~"$job"') + g.latencyPanel('thanos_bucket_store_series_merge_duration_seconds', 'namespace="$namespace",job=~"$job"') ) .addPanel( g.panel('Gate', 'Shows how long has it taken for a series to wait at the gate.') + - g.latencyPanel('thanos_bucket_store_series_gate_duration_seconds_bucket', 'namespace="$namespace",job=~"$job"') + g.latencyPanel('thanos_bucket_store_series_gate_duration_seconds', 'namespace="$namespace",job=~"$job"') ) ) .addRow( diff --git a/mixin/thanos/defaults.libsonnet b/mixin/thanos/defaults.libsonnet index a6cf5e9cdc7..b2f99266dc9 100644 --- a/mixin/thanos/defaults.libsonnet +++ b/mixin/thanos/defaults.libsonnet @@ -1,34 +1,39 @@ { - querier+:: { - jobPrefix: 'thanos-querier', + query+:: { + jobPrefix: 'thanos-query', selector: 'job=~"%s.*"' % self.jobPrefix, - title: '%(prefix)sQuerier' % $.dashboard.prefix, + title: '%(prefix)sQuery' % $.dashboard.prefix, }, store+:: { jobPrefix: 'thanos-store', selector: 'job=~"%s.*"' % self.jobPrefix, title: '%(prefix)sStore' % $.dashboard.prefix, }, - receiver+:: { - jobPrefix: 'thanos-receiver', + receive+:: { + jobPrefix: 'thanos-receive', selector: 'job=~"%s.*"' % self.jobPrefix, - title: '%(prefix)sReceiver' % $.dashboard.prefix, + title: '%(prefix)sReceive' % $.dashboard.prefix, }, - ruler+:: { - jobPrefix: 'thanos-ruler', + rule+:: { + jobPrefix: 'thanos-rule', selector: 'job=~"%s.*"' % self.jobPrefix, - title: '%(prefix)sRuler' % $.dashboard.prefix, + title: '%(prefix)sRule' % $.dashboard.prefix, }, - compactor+:: { - jobPrefix: 'thanos-compactor', + compact+:: { + jobPrefix: 'thanos-compact', selector: 'job=~"%s.*"' % self.jobPrefix, - title: '%(prefix)sCompactor' % $.dashboard.prefix, + title: '%(prefix)sCompact' % $.dashboard.prefix, }, sidecar+:: { jobPrefix: 'thanos-sidecar', selector: 'job=~"%s.*"' % self.jobPrefix, title: '%(prefix)sSidecar' % $.dashboard.prefix, }, + bucket_replicate+:: { + jobPrefix: 'thanos-bucket-replicate', + selector: 'job=~"%s.*"' % self.jobPrefix, + title: '%(prefix)sBucketReplicate' % $.dashboard.prefix, + }, overview+:: { title: '%(prefix)sOverview' % $.dashboard.prefix, }, diff --git a/mixin/thanos/lib/thanos-grafana-builder/builder.libsonnet b/mixin/thanos/lib/thanos-grafana-builder/builder.libsonnet index a68e8065b33..8fb734739b1 100644 --- a/mixin/thanos/lib/thanos-grafana-builder/builder.libsonnet +++ b/mixin/thanos/lib/thanos-grafana-builder/builder.libsonnet @@ -150,7 +150,7 @@ local template = grafana.template; resourceUtilizationRow():: $.row('Resources') .addPanel( - $.panel('Memory Used') + + $.panel('Memory Used (Bytes)') + $.queryPanel( [ 'go_memstats_alloc_bytes{namespace="$namespace",job=~"$job",kubernetes_pod_name=~"$pod"}', diff --git a/mixin/thanos/rules/bucket_replicate.libsonnet b/mixin/thanos/rules/bucket_replicate.libsonnet new file mode 100644 index 00000000000..14eb5c945d4 --- /dev/null +++ b/mixin/thanos/rules/bucket_replicate.libsonnet @@ -0,0 +1,15 @@ +{ + local thanos = self, + bucket_replicate+:: { + selector: error 'must provide selector for Thanos Bucket Replicate dashboard', + }, + prometheusRules+:: { + groups+: [ + { + name: 'thanos-bucket-replicate.rules', + rules: [ + ], + }, + ], + }, +} diff --git a/mixin/thanos/rules/querier.libsonnet b/mixin/thanos/rules/query.libsonnet similarity index 90% rename from mixin/thanos/rules/querier.libsonnet rename to mixin/thanos/rules/query.libsonnet index 22706cf0e59..9e7e25c1cfa 100644 --- a/mixin/thanos/rules/querier.libsonnet +++ b/mixin/thanos/rules/query.libsonnet @@ -1,12 +1,12 @@ { local thanos = self, - querier+:: { + query+:: { selector: error 'must provide selector for Thanos Query recording rules', }, prometheusRules+:: { groups+: [ { - name: 'thanos-querier.rules', + name: 'thanos-query.rules', rules: [ { record: ':grpc_client_failures_per_unary:sum_rate', @@ -16,7 +16,7 @@ / sum(rate(grpc_client_started_total{%(selector)s, grpc_type="unary"}[5m])) ) - ||| % thanos.querier, + ||| % thanos.query, labels: { }, }, @@ -28,7 +28,7 @@ / sum(rate(grpc_client_started_total{%(selector)s, grpc_type="server_stream"}[5m])) ) - ||| % thanos.querier, + ||| % thanos.query, labels: { }, }, @@ -40,7 +40,7 @@ / sum(rate(thanos_querier_store_apis_dns_lookups_total{%(selector)s}[5m])) ) - ||| % thanos.querier, + ||| % thanos.query, labels: { }, }, @@ -50,7 +50,7 @@ histogram_quantile(0.99, sum(rate(http_request_duration_seconds_bucket{%(selector)s, handler="query"}[5m])) by (le) ) - ||| % thanos.querier, + ||| % thanos.query, labels: { quantile: '0.99', }, @@ -61,7 +61,7 @@ histogram_quantile(0.99, sum(rate(http_request_duration_seconds_bucket{%(selector)s, handler="query_range"}[5m])) by (le) ) - ||| % thanos.querier, + ||| % thanos.query, labels: { quantile: '0.99', }, diff --git a/mixin/thanos/rules/receiver.libsonnet b/mixin/thanos/rules/receive.libsonnet similarity index 90% rename from mixin/thanos/rules/receiver.libsonnet rename to mixin/thanos/rules/receive.libsonnet index fc01667e58a..d6e11558cdd 100644 --- a/mixin/thanos/rules/receiver.libsonnet +++ b/mixin/thanos/rules/receive.libsonnet @@ -1,12 +1,12 @@ { local thanos = self, - receiver+:: { + receive+:: { selector: error 'must provide selector for Thanos Receive recording rules', }, prometheusRules+:: { groups+: [ { - name: 'thanos-receiver.rules', + name: 'thanos-receive.rules', rules: [ { record: ':grpc_server_failures_per_unary:sum_rate', @@ -16,7 +16,7 @@ / rate(grpc_server_started_total{%(selector)s, grpc_type="unary"}[5m]) ) - ||| % thanos.receiver, + ||| % thanos.receive, labels: { }, }, @@ -28,7 +28,7 @@ / rate(grpc_server_started_total{%(selector)s, grpc_type="server_stream"}[5m]) ) - ||| % thanos.receiver, + ||| % thanos.receive, labels: { }, }, @@ -40,7 +40,7 @@ / rate(http_requests_total{handler="receive", %(selector)s}[5m]) ) - ||| % thanos.receiver, + ||| % thanos.receive, labels: { }, }, @@ -50,7 +50,7 @@ histogram_quantile(0.99, sum(rate(http_request_duration_seconds_bucket{handler="receive", %(selector)s}[5m])) by (le) ) - ||| % thanos.receiver, + ||| % thanos.receive, labels: { quantile: '0.99', }, @@ -63,7 +63,7 @@ / sum(rate(thanos_receive_forward_requests_total{%(selector)s}[5m])) ) - ||| % thanos.receiver, + ||| % thanos.receive, labels: { }, }, @@ -75,7 +75,7 @@ / sum(rate(thanos_receive_hashrings_file_refreshes_total{%(selector)s}[5m])) ) - ||| % thanos.receiver, + ||| % thanos.receive, labels: { }, }, diff --git a/mixin/thanos/rules/rules.libsonnet b/mixin/thanos/rules/rules.libsonnet index 656b267b4fc..a9b51ea839c 100644 --- a/mixin/thanos/rules/rules.libsonnet +++ b/mixin/thanos/rules/rules.libsonnet @@ -1,3 +1,4 @@ -(import 'querier.libsonnet') + -(import 'receiver.libsonnet') + -(import 'store.libsonnet') +(import 'query.libsonnet') + +(import 'receive.libsonnet') + +(import 'store.libsonnet') + +(import 'bucket_replicate.libsonnet') diff --git a/netlify.toml b/netlify.toml index 9d97ed3cc21..3d471bd9d0b 100644 --- a/netlify.toml +++ b/netlify.toml @@ -30,7 +30,7 @@ command = "(env && make web HUGO=$(which hugo) WEBSITE_BASE_URL=${DEPLOY_PRIME_U # Force HTTPS only. Strict-Transport-Security = "max-age=31536000; includeSubDomains" # Load scripts only via HTTPS and from allowed domains. - Content-Security-Policy = "default-src https:" + Content-Security-Policy = "default-src https:; script-src https: 'self' 'sha256-3qFt4qPvMCWVUpjUxP5X57GBKae6RHYZ0rMjn9WuNF4='; style-src https: 'self' 'sha256-ouaL9aaaKO9mYd9/M+uyzYAL1CrOXJVRjV2nFgbGI2E='; object-src 'self'" # Only send referred when HTTPS is used. Referrer-Policy = "strict-origin-when-cross-origin" # Disable certain magic features, lol. diff --git a/pkg/alert/alert.go b/pkg/alert/alert.go index 418cb5c8314..0a7b4b30e1f 100644 --- a/pkg/alert/alert.go +++ b/pkg/alert/alert.go @@ -23,6 +23,7 @@ import ( "github.com/pkg/errors" "github.com/prometheus/alertmanager/api/v2/models" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/prometheus/pkg/labels" "github.com/thanos-io/thanos/pkg/runutil" @@ -133,34 +134,31 @@ func NewQueue(logger log.Logger, reg prometheus.Registerer, capacity, maxBatchSi toAddLset: toAdd, toExcludeLabels: toExclude, - dropped: prometheus.NewCounter(prometheus.CounterOpts{ + dropped: promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_alert_queue_alerts_dropped_total", Help: "Total number of alerts that were dropped from the queue.", }), - pushed: prometheus.NewCounter(prometheus.CounterOpts{ + pushed: promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_alert_queue_alerts_pushed_total", Help: "Total number of alerts pushed to the queue.", }), - popped: prometheus.NewCounter(prometheus.CounterOpts{ + popped: promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_alert_queue_alerts_popped_total", Help: "Total number of alerts popped from the queue.", }), } - capMetric := prometheus.NewGaugeFunc(prometheus.GaugeOpts{ + _ = promauto.With(reg).NewGaugeFunc(prometheus.GaugeOpts{ Name: "thanos_alert_queue_capacity", Help: "Capacity of the alert queue.", }, func() float64 { return float64(q.Cap()) }) - lenMetric := prometheus.NewGaugeFunc(prometheus.GaugeOpts{ + _ = promauto.With(reg).NewGaugeFunc(prometheus.GaugeOpts{ Name: "thanos_alert_queue_length", Help: "Length of the alert queue.", }, func() float64 { return float64(q.Len()) }) - if reg != nil { - reg.MustRegister(q.pushed, q.popped, q.dropped, lenMetric, capMetric) - } return q } @@ -195,6 +193,12 @@ func (q *Queue) Pop(termc <-chan struct{}) []*Alert { q.popped.Add(float64(n)) + if len(q.queue) > 0 { + select { + case q.morec <- struct{}{}: + default: + } + } return as[:n] } @@ -292,29 +296,26 @@ func NewSender( alertmanagers: alertmanagers, versions: versions, - sent: prometheus.NewCounterVec(prometheus.CounterOpts{ + sent: promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_alert_sender_alerts_sent_total", Help: "Total number of alerts sent by alertmanager.", }, []string{"alertmanager"}), - errs: prometheus.NewCounterVec(prometheus.CounterOpts{ + errs: promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_alert_sender_errors_total", Help: "Total number of errors while sending alerts to alertmanager.", }, []string{"alertmanager"}), - dropped: prometheus.NewCounter(prometheus.CounterOpts{ + dropped: promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_alert_sender_alerts_dropped_total", Help: "Total number of alerts dropped in case of all sends to alertmanagers failed.", }), - latency: prometheus.NewHistogramVec(prometheus.HistogramOpts{ + latency: promauto.With(reg).NewHistogramVec(prometheus.HistogramOpts{ Name: "thanos_alert_sender_latency_seconds", Help: "Latency for sending alert notifications (not including dropped notifications).", }, []string{"alertmanager"}), } - if reg != nil { - reg.MustRegister(s.sent, s.errs, s.dropped, s.latency) - } return s } @@ -330,8 +331,6 @@ func toAPILabels(labels labels.Labels) models.LabelSet { // Send an alert batch to all given Alertmanager clients. // TODO(bwplotka): https://github.com/thanos-io/thanos/issues/660. func (s *Sender) Send(ctx context.Context, alerts []*Alert) { - span, ctx := tracing.StartSpan(ctx, "/send_alerts") - defer span.Finish() if len(alerts) == 0 { return } @@ -382,22 +381,23 @@ func (s *Sender) Send(ctx context.Context, alerts []*Alert) { level.Debug(s.logger).Log("msg", "sending alerts", "alertmanager", u.Host, "numAlerts", len(alerts)) start := time.Now() u.Path = path.Join(u.Path, fmt.Sprintf("/api/%s/alerts", string(am.version))) - span, ctx := tracing.StartSpan(ctx, "post_alerts HTTP[client]") - defer span.Finish() - if err := am.postAlerts(ctx, u, bytes.NewReader(payload[am.version])); err != nil { - level.Warn(s.logger).Log( - "msg", "sending alerts failed", - "alertmanager", u.Host, - "alerts", string(payload[am.version]), - "err", err, - ) - s.errs.WithLabelValues(u.Host).Inc() - return - } - s.latency.WithLabelValues(u.Host).Observe(time.Since(start).Seconds()) - s.sent.WithLabelValues(u.Host).Add(float64(len(alerts))) - - atomic.AddUint64(&numSuccess, 1) + + tracing.DoInSpan(ctx, "post_alerts HTTP[client]", func(ctx context.Context) { + if err := am.postAlerts(ctx, u, bytes.NewReader(payload[am.version])); err != nil { + level.Warn(s.logger).Log( + "msg", "sending alerts failed", + "alertmanager", u.Host, + "alerts", string(payload[am.version]), + "err", err, + ) + s.errs.WithLabelValues(u.Host).Inc() + return + } + s.latency.WithLabelValues(u.Host).Observe(time.Since(start).Seconds()) + s.sent.WithLabelValues(u.Host).Add(float64(len(alerts))) + + atomic.AddUint64(&numSuccess, 1) + }) }(am, *u) } } diff --git a/pkg/alert/alert_test.go b/pkg/alert/alert_test.go index 7139dfc6528..67f280280d9 100644 --- a/pkg/alert/alert_test.go +++ b/pkg/alert/alert_test.go @@ -19,6 +19,31 @@ import ( "github.com/thanos-io/thanos/pkg/testutil" ) +func TestQueue_Pop_all_Pushed(t *testing.T) { + qcapacity := 10 + batchsize := 1 + pushes := 3 + + q := NewQueue( + nil, nil, qcapacity, batchsize, nil, nil, + ) + for i := 0; i < pushes; i++ { + q.Push([]*Alert{ + {}, + {}, + }) + } + + timeoutc := make(chan struct{}, 1) + time.AfterFunc(time.Second, func() { timeoutc <- struct{}{} }) + popped := 0 + for p := q.Pop(timeoutc); p != nil; p = q.Pop(timeoutc) { + popped += len(p) + } + + testutil.Equals(t, pushes*2, popped) +} + func TestQueue_Push_Relabelled(t *testing.T) { q := NewQueue( nil, nil, 10, 10, diff --git a/pkg/block/block.go b/pkg/block/block.go index 740b3d63060..ddc877fb57c 100644 --- a/pkg/block/block.go +++ b/pkg/block/block.go @@ -6,6 +6,7 @@ package block import ( + "bytes" "context" "encoding/json" "fmt" @@ -14,6 +15,7 @@ import ( "path" "path/filepath" "strings" + "time" "github.com/go-kit/kit/log" "github.com/go-kit/kit/log/level" @@ -87,7 +89,7 @@ func Upload(ctx context.Context, logger log.Logger, bkt objstore.Bucket, bdir st } if meta.Thanos.Labels == nil || len(meta.Thanos.Labels) == 0 { - return errors.Errorf("empty external labels are not allowed for Thanos block.") + return errors.New("empty external labels are not allowed for Thanos block.") } if err := objstore.UploadFile(ctx, logger, bkt, path.Join(bdir, MetaFilename), path.Join(DebugMetas, fmt.Sprintf("%s.json", id))); err != nil { @@ -126,6 +128,34 @@ func cleanUp(logger log.Logger, bkt objstore.Bucket, id ulid.ULID, err error) er return err } +// MarkForDeletion creates a file which stores information about when the block was marked for deletion. +func MarkForDeletion(ctx context.Context, logger log.Logger, bkt objstore.Bucket, id ulid.ULID) error { + deletionMarkFile := path.Join(id.String(), metadata.DeletionMarkFilename) + deletionMarkExists, err := bkt.Exists(ctx, deletionMarkFile) + if err != nil { + return errors.Wrapf(err, "check exists %s in bucket", deletionMarkFile) + } + if deletionMarkExists { + return errors.Errorf("file %s already exists in bucket", deletionMarkFile) + } + + deletionMark, err := json.Marshal(metadata.DeletionMark{ + ID: id, + DeletionTime: time.Now().Unix(), + Version: metadata.DeletionMarkVersion1, + }) + if err != nil { + return errors.Wrap(err, "json encode deletion mark") + } + + if err := bkt.Upload(ctx, deletionMarkFile, bytes.NewBuffer(deletionMark)); err != nil { + return errors.Wrapf(err, "upload file %s to bucket", deletionMarkFile) + } + + level.Info(logger).Log("msg", "block has been marked for deletion", "block", id) + return nil +} + // Delete removes directory that is meant to be block directory. // NOTE: Always prefer this method for deleting blocks. // * We have to delete block's files in the certain order (meta.json first) @@ -145,16 +175,22 @@ func Delete(ctx context.Context, logger log.Logger, bkt objstore.Bucket, id ulid level.Debug(logger).Log("msg", "deleted file", "file", metaFile, "bucket", bkt.Name()) } - return deleteDir(ctx, logger, bkt, id.String()) + // Delete the bucket, but skip the metaFile as we just deleted that. This is required for eventual object storages (list after write). + return deleteDirRec(ctx, logger, bkt, id.String(), func(name string) bool { + return name == metaFile + }) } -// deleteDir removes all objects prefixed with dir from the bucket. +// deleteDirRec removes all objects prefixed with dir from the bucket. It skips objects that return true for the passed keep function. // NOTE: For objects removal use `block.Delete` strictly. -func deleteDir(ctx context.Context, logger log.Logger, bkt objstore.Bucket, dir string) error { +func deleteDirRec(ctx context.Context, logger log.Logger, bkt objstore.Bucket, dir string, keep func(name string) bool) error { return bkt.Iter(ctx, dir, func(name string) error { // If we hit a directory, call DeleteDir recursively. if strings.HasSuffix(name, objstore.DirDelim) { - return deleteDir(ctx, logger, bkt, name) + return deleteDirRec(ctx, logger, bkt, name, keep) + } + if keep(name) { + return nil } if err := bkt.Delete(ctx, name); err != nil { return err diff --git a/pkg/block/block_test.go b/pkg/block/block_test.go index e6bdfc8ce13..6e2193b5d7a 100644 --- a/pkg/block/block_test.go +++ b/pkg/block/block_test.go @@ -4,7 +4,10 @@ package block import ( + "bytes" "context" + "encoding/json" + "fmt" "io/ioutil" "os" "path" @@ -15,6 +18,7 @@ import ( "github.com/fortytw2/leaktest" "github.com/go-kit/kit/log" "github.com/prometheus/prometheus/pkg/labels" + "github.com/thanos-io/thanos/pkg/block/metadata" "github.com/thanos-io/thanos/pkg/objstore/inmem" "github.com/thanos-io/thanos/pkg/testutil" "github.com/thanos-io/thanos/pkg/testutil/e2eutil" @@ -218,3 +222,54 @@ func TestDelete(t *testing.T) { testutil.Equals(t, 2, len(bkt.Objects())) } } + +func TestMarkForDeletion(t *testing.T) { + defer leaktest.CheckTimeout(t, 10*time.Second)() + + ctx := context.Background() + + tmpDir, err := ioutil.TempDir("", "test-block-mark-for-delete") + testutil.Ok(t, err) + defer func() { testutil.Ok(t, os.RemoveAll(tmpDir)) }() + + bkt := inmem.NewBucket() + { + blockWithoutDeletionMark, err := e2eutil.CreateBlock(ctx, tmpDir, []labels.Labels{ + {{Name: "a", Value: "1"}}, + {{Name: "a", Value: "2"}}, + {{Name: "a", Value: "3"}}, + {{Name: "a", Value: "4"}}, + {{Name: "b", Value: "1"}}, + }, 100, 0, 1000, labels.Labels{{Name: "ext1", Value: "val1"}}, 124) + testutil.Ok(t, err) + testutil.Ok(t, Upload(ctx, log.NewNopLogger(), bkt, path.Join(tmpDir, blockWithoutDeletionMark.String()))) + + testutil.Ok(t, MarkForDeletion(ctx, log.NewNopLogger(), bkt, blockWithoutDeletionMark)) + exists, err := bkt.Exists(ctx, path.Join(blockWithoutDeletionMark.String(), metadata.DeletionMarkFilename)) + testutil.Ok(t, err) + testutil.Equals(t, true, exists) + } + { + blockWithDeletionMark, err := e2eutil.CreateBlock(ctx, tmpDir, []labels.Labels{ + {{Name: "a", Value: "1"}}, + {{Name: "a", Value: "2"}}, + {{Name: "a", Value: "3"}}, + {{Name: "a", Value: "4"}}, + {{Name: "b", Value: "1"}}, + }, 100, 0, 1000, labels.Labels{{Name: "ext1", Value: "val1"}}, 124) + testutil.Ok(t, err) + testutil.Ok(t, Upload(ctx, log.NewNopLogger(), bkt, path.Join(tmpDir, blockWithDeletionMark.String()))) + + deletionMark, err := json.Marshal(metadata.DeletionMark{ + ID: blockWithDeletionMark, + DeletionTime: time.Now().Unix(), + Version: metadata.DeletionMarkVersion1, + }) + testutil.Ok(t, err) + testutil.Ok(t, bkt.Upload(ctx, path.Join(blockWithDeletionMark.String(), metadata.DeletionMarkFilename), bytes.NewReader(deletionMark))) + + err = MarkForDeletion(ctx, log.NewNopLogger(), bkt, blockWithDeletionMark) + testutil.NotOk(t, err) + testutil.Equals(t, fmt.Sprintf("file %s already exists in bucket", path.Join(blockWithDeletionMark.String(), metadata.DeletionMarkFilename)), err.Error()) + } +} diff --git a/pkg/block/fetcher.go b/pkg/block/fetcher.go index b6411e5431b..e83bc5633dd 100644 --- a/pkg/block/fetcher.go +++ b/pkg/block/fetcher.go @@ -6,7 +6,6 @@ package block import ( "context" "encoding/json" - stderrors "errors" "io/ioutil" "os" "path" @@ -17,9 +16,11 @@ import ( "github.com/go-kit/kit/log" "github.com/go-kit/kit/log/level" + "github.com/golang/groupcache/singleflight" "github.com/oklog/ulid" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/prometheus/pkg/labels" "github.com/prometheus/prometheus/pkg/relabel" "github.com/prometheus/prometheus/tsdb" @@ -30,103 +31,128 @@ import ( "github.com/thanos-io/thanos/pkg/model" "github.com/thanos-io/thanos/pkg/objstore" "github.com/thanos-io/thanos/pkg/runutil" + "golang.org/x/sync/errgroup" ) -type syncMetrics struct { +type fetcherMetrics struct { syncs prometheus.Counter syncFailures prometheus.Counter syncDuration prometheus.Histogram - synced *extprom.TxGaugeVec + synced *extprom.TxGaugeVec + modified *extprom.TxGaugeVec +} + +func (s *fetcherMetrics) submit() { + s.synced.Submit() + s.modified.Submit() +} + +func (s *fetcherMetrics) resetTx() { + s.synced.ResetTx() + s.modified.ResetTx() } const ( - syncMetricSubSys = "blocks_meta" + fetcherSubSys = "blocks_meta" corruptedMeta = "corrupted-meta-json" noMeta = "no-meta-json" loadedMeta = "loaded" failedMeta = "failed" - // Filter's label values. + // Synced label values. labelExcludedMeta = "label-excluded" timeExcludedMeta = "time-excluded" - TooFreshMeta = "too-fresh" + tooFreshMeta = "too-fresh" duplicateMeta = "duplicate" + // Blocks that are marked for deletion can be loaded as well. This is done to make sure that we load blocks that are meant to be deleted, + // but don't have a replacement block yet. + markedForDeletionMeta = "marked-for-deletion" + + // Modified label values. + replicaRemovedMeta = "replica-label-removed" ) -func newSyncMetrics(r prometheus.Registerer) *syncMetrics { - var m syncMetrics +func newFetcherMetrics(reg prometheus.Registerer) *fetcherMetrics { + var m fetcherMetrics - m.syncs = prometheus.NewCounter(prometheus.CounterOpts{ - Subsystem: syncMetricSubSys, + m.syncs = promauto.With(reg).NewCounter(prometheus.CounterOpts{ + Subsystem: fetcherSubSys, Name: "syncs_total", Help: "Total blocks metadata synchronization attempts", }) - m.syncFailures = prometheus.NewCounter(prometheus.CounterOpts{ - Subsystem: syncMetricSubSys, + m.syncFailures = promauto.With(reg).NewCounter(prometheus.CounterOpts{ + Subsystem: fetcherSubSys, Name: "sync_failures_total", Help: "Total blocks metadata synchronization failures", }) - m.syncDuration = prometheus.NewHistogram(prometheus.HistogramOpts{ - Subsystem: syncMetricSubSys, + m.syncDuration = promauto.With(reg).NewHistogram(prometheus.HistogramOpts{ + Subsystem: fetcherSubSys, Name: "sync_duration_seconds", Help: "Duration of the blocks metadata synchronization in seconds", Buckets: []float64{0.01, 1, 10, 100, 1000}, }) - m.synced = extprom.NewTxGaugeVec(prometheus.GaugeOpts{ - Subsystem: syncMetricSubSys, - Name: "synced", - Help: "Number of block metadata synced", - }, + m.synced = extprom.NewTxGaugeVec( + reg, + prometheus.GaugeOpts{ + Subsystem: fetcherSubSys, + Name: "synced", + Help: "Number of block metadata synced", + }, []string{"state"}, []string{corruptedMeta}, []string{noMeta}, []string{loadedMeta}, - []string{TooFreshMeta}, + []string{tooFreshMeta}, []string{failedMeta}, []string{labelExcludedMeta}, []string{timeExcludedMeta}, []string{duplicateMeta}, + []string{markedForDeletionMeta}, + ) + m.modified = extprom.NewTxGaugeVec( + reg, + prometheus.GaugeOpts{ + Subsystem: fetcherSubSys, + Name: "modified", + Help: "Number of blocks whose metadata changed", + }, + []string{"modified"}, + []string{replicaRemovedMeta}, ) - if r != nil { - r.MustRegister( - m.syncs, - m.syncFailures, - m.syncDuration, - m.synced, - ) - } return &m } type MetadataFetcher interface { Fetch(ctx context.Context) (metas map[ulid.ULID]*metadata.Meta, partial map[ulid.ULID]error, err error) + UpdateOnChange(func([]metadata.Meta, error)) } -type GaugeLabeled interface { - WithLabelValues(lvs ...string) prometheus.Gauge +type MetadataFilter interface { + Filter(ctx context.Context, metas map[ulid.ULID]*metadata.Meta, synced *extprom.TxGaugeVec, incompleteView bool) error } -type MetaFetcherFilter func(metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, incompleteView bool) +type MetadataModifier interface { + Modify(ctx context.Context, metas map[ulid.ULID]*metadata.Meta, modified *extprom.TxGaugeVec, incompleteView bool) error +} -// MetaFetcher is a struct that synchronizes filtered metadata of all block in the object storage with the local state. -type MetaFetcher struct { +// BaseFetcher is a struct that synchronizes filtered metadata of all block in the object storage with the local state. +// Go-routine safe. +type BaseFetcher struct { logger log.Logger concurrency int bkt objstore.BucketReader // Optional local directory to cache meta.json files. cacheDir string - metrics *syncMetrics - - filters []MetaFetcherFilter - - cached map[ulid.ULID]*metadata.Meta + cached map[ulid.ULID]*metadata.Meta + syncs prometheus.Counter + g singleflight.Group } -// NewMetaFetcher constructs MetaFetcher. -func NewMetaFetcher(logger log.Logger, concurrency int, bkt objstore.BucketReader, dir string, r prometheus.Registerer, filters ...MetaFetcherFilter) (*MetaFetcher, error) { +// NewBaseFetcher constructs BaseFetcher. +func NewBaseFetcher(logger log.Logger, concurrency int, bkt objstore.BucketReader, dir string, reg prometheus.Registerer) (*BaseFetcher, error) { if logger == nil { logger = log.NewNopLogger() } @@ -139,17 +165,34 @@ func NewMetaFetcher(logger log.Logger, concurrency int, bkt objstore.BucketReade } } - return &MetaFetcher{ - logger: log.With(logger, "component", "block.MetaFetcher"), + return &BaseFetcher{ + logger: log.With(logger, "component", "block.BaseFetcher"), concurrency: concurrency, bkt: bkt, cacheDir: cacheDir, - metrics: newSyncMetrics(r), - filters: filters, cached: map[ulid.ULID]*metadata.Meta{}, + syncs: promauto.With(reg).NewCounter(prometheus.CounterOpts{ + Subsystem: fetcherSubSys, + Name: "base_syncs_total", + Help: "Total blocks metadata synchronization attempts by base Fetcher", + }), }, nil } +// NewMetaFetcher returns meta fetcher. +func NewMetaFetcher(logger log.Logger, concurrency int, bkt objstore.BucketReader, dir string, reg prometheus.Registerer, filters []MetadataFilter, modifiers []MetadataModifier) (*MetaFetcher, error) { + b, err := NewBaseFetcher(logger, concurrency, bkt, dir, reg) + if err != nil { + return nil, err + } + return b.NewMetaFetcher(reg, filters, modifiers), nil +} + +// NewMetaFetcher transforms BaseFetcher into actually usable *MetaFetcher. +func (f *BaseFetcher) NewMetaFetcher(reg prometheus.Registerer, filters []MetadataFilter, modifiers []MetadataModifier) *MetaFetcher { + return &MetaFetcher{metrics: newFetcherMetrics(reg), wrapped: f, filters: filters, modifiers: modifiers} +} + var ( ErrorSyncMetaNotFound = errors.New("meta.json not found") ErrorSyncMetaCorrupted = errors.New("meta.json corrupted") @@ -157,16 +200,16 @@ var ( // loadMeta returns metadata from object storage or error. // It returns `ErrorSyncMetaNotFound` and `ErrorSyncMetaCorrupted` sentinel errors in those cases. -func (s *MetaFetcher) loadMeta(ctx context.Context, id ulid.ULID) (*metadata.Meta, error) { +func (f *BaseFetcher) loadMeta(ctx context.Context, id ulid.ULID) (*metadata.Meta, error) { var ( metaFile = path.Join(id.String(), MetaFilename) - cachedBlockDir = filepath.Join(s.cacheDir, id.String()) + cachedBlockDir = filepath.Join(f.cacheDir, id.String()) ) // TODO(bwplotka): If that causes problems (obj store rate limits), add longer ttl to cached items. // For 1y and 100 block sources this generates ~1.5-3k HEAD RPM. AWS handles 330k RPM per prefix. // TODO(bwplotka): Consider filtering by consistency delay here (can't do until compactor healthyOverride work). - ok, err := s.bkt.Exists(ctx, metaFile) + ok, err := f.bkt.Exists(ctx, metaFile) if err != nil { return nil, errors.Wrapf(err, "meta.json file exists: %v", metaFile) } @@ -174,29 +217,27 @@ func (s *MetaFetcher) loadMeta(ctx context.Context, id ulid.ULID) (*metadata.Met return nil, ErrorSyncMetaNotFound } - if m, seen := s.cached[id]; seen { + if m, seen := f.cached[id]; seen { return m, nil } // Best effort load from local dir. - if s.cacheDir != "" { + if f.cacheDir != "" { m, err := metadata.Read(cachedBlockDir) if err == nil { return m, nil } - if !stderrors.Is(err, os.ErrNotExist) { - level.Warn(s.logger).Log("msg", "best effort read of the local meta.json failed; removing cached block dir", "dir", cachedBlockDir, "err", err) + if !errors.Is(err, os.ErrNotExist) { + level.Warn(f.logger).Log("msg", "best effort read of the local meta.json failed; removing cached block dir", "dir", cachedBlockDir, "err", err) if err := os.RemoveAll(cachedBlockDir); err != nil { - level.Warn(s.logger).Log("msg", "best effort remove of cached dir failed; ignoring", "dir", cachedBlockDir, "err", err) + level.Warn(f.logger).Log("msg", "best effort remove of cached dir failed; ignoring", "dir", cachedBlockDir, "err", err) } } } - level.Debug(s.logger).Log("msg", "download meta", "name", metaFile) - - r, err := s.bkt.Get(ctx, metaFile) - if s.bkt.IsObjNotFoundErr(err) { + r, err := f.bkt.Get(ctx, metaFile) + if f.bkt.IsObjNotFoundErr(err) { // Meta.json was deleted between bkt.Exists and here. return nil, errors.Wrapf(ErrorSyncMetaNotFound, "%v", err) } @@ -204,7 +245,7 @@ func (s *MetaFetcher) loadMeta(ctx context.Context, id ulid.ULID) (*metadata.Met return nil, errors.Wrapf(err, "get meta file: %v", metaFile) } - defer runutil.CloseWithLogOnErr(s.logger, r, "close bkt meta get") + defer runutil.CloseWithLogOnErr(f.logger, r, "close bkt meta get") metaContent, err := ioutil.ReadAll(r) if err != nil { @@ -221,157 +262,231 @@ func (s *MetaFetcher) loadMeta(ctx context.Context, id ulid.ULID) (*metadata.Met } // Best effort cache in local dir. - if s.cacheDir != "" { + if f.cacheDir != "" { if err := os.MkdirAll(cachedBlockDir, os.ModePerm); err != nil { - level.Warn(s.logger).Log("msg", "best effort mkdir of the meta.json block dir failed; ignoring", "dir", cachedBlockDir, "err", err) + level.Warn(f.logger).Log("msg", "best effort mkdir of the meta.json block dir failed; ignoring", "dir", cachedBlockDir, "err", err) } - if err := metadata.Write(s.logger, cachedBlockDir, m); err != nil { - level.Warn(s.logger).Log("msg", "best effort save of the meta.json to local dir failed; ignoring", "dir", cachedBlockDir, "err", err) + if err := metadata.Write(f.logger, cachedBlockDir, m); err != nil { + level.Warn(f.logger).Log("msg", "best effort save of the meta.json to local dir failed; ignoring", "dir", cachedBlockDir, "err", err) } } return m, nil } -// Fetch returns all block metas as well as partial blocks (blocks without or with corrupted meta file) from the bucket. -// It's caller responsibility to not change the returned metadata files. Maps can be modified. -// -// Returned error indicates a failure in fetching metadata. Returned meta can be assumed as correct, with some blocks missing. -func (s *MetaFetcher) Fetch(ctx context.Context) (metas map[ulid.ULID]*metadata.Meta, partial map[ulid.ULID]error, err error) { - start := time.Now() - defer func() { - s.metrics.syncDuration.Observe(time.Since(start).Seconds()) - if err != nil { - s.metrics.syncFailures.Inc() - } - }() - s.metrics.syncs.Inc() +type response struct { + metas map[ulid.ULID]*metadata.Meta + partial map[ulid.ULID]error + // If metaErr > 0 it means incomplete view, so some metas, failed to be loaded. + metaErrs tsdberrors.MultiError + + noMetas float64 + corruptedMetas float64 - metas = make(map[ulid.ULID]*metadata.Meta) - partial = make(map[ulid.ULID]error) + incompleteView bool +} + +func (f *BaseFetcher) fetchMetadata(ctx context.Context) (interface{}, error) { + f.syncs.Inc() var ( - wg sync.WaitGroup - ch = make(chan ulid.ULID, s.concurrency) + resp = response{ + metas: make(map[ulid.ULID]*metadata.Meta), + partial: make(map[ulid.ULID]error), + } + eg errgroup.Group + ch = make(chan ulid.ULID, f.concurrency) mtx sync.Mutex - - metaErrs tsdberrors.MultiError ) - - s.metrics.synced.ResetTx() - - for i := 0; i < s.concurrency; i++ { - wg.Add(1) - go func() { - defer wg.Done() - + for i := 0; i < f.concurrency; i++ { + eg.Go(func() error { for id := range ch { - meta, err := s.loadMeta(ctx, id) + meta, err := f.loadMeta(ctx, id) if err == nil { mtx.Lock() - metas[id] = meta + resp.metas[id] = meta mtx.Unlock() continue } switch errors.Cause(err) { default: - s.metrics.synced.WithLabelValues(failedMeta).Inc() mtx.Lock() - metaErrs.Add(err) + resp.metaErrs.Add(err) mtx.Unlock() continue case ErrorSyncMetaNotFound: - s.metrics.synced.WithLabelValues(noMeta).Inc() + mtx.Lock() + resp.noMetas++ + mtx.Unlock() case ErrorSyncMetaCorrupted: - s.metrics.synced.WithLabelValues(corruptedMeta).Inc() + mtx.Lock() + resp.corruptedMetas++ + mtx.Unlock() } mtx.Lock() - partial[id] = err + resp.partial[id] = err mtx.Unlock() } - }() + return nil + }) } // Workers scheduled, distribute blocks. - err = s.bkt.Iter(ctx, "", func(name string) error { - id, ok := IsBlockDir(name) - if !ok { - return nil - } + eg.Go(func() error { + defer close(ch) + return f.bkt.Iter(ctx, "", func(name string) error { + id, ok := IsBlockDir(name) + if !ok { + return nil + } - select { - case <-ctx.Done(): - return ctx.Err() - case ch <- id: - } + select { + case <-ctx.Done(): + return ctx.Err() + case ch <- id: + } - return nil + return nil + }) }) - close(ch) - wg.Wait() - if err != nil { - return nil, nil, errors.Wrap(err, "MetaFetcher: iter bucket") + if err := eg.Wait(); err != nil { + return nil, errors.Wrap(err, "BaseFetcher: iter bucket") } - incompleteView := len(metaErrs) > 0 + if len(resp.metaErrs) > 0 { + return resp, nil + } // Only for complete view of blocks update the cache. - if !incompleteView { - cached := make(map[ulid.ULID]*metadata.Meta, len(metas)) - for id, m := range metas { - cached[id] = m - } - s.cached = cached - - // Best effort cleanup of disk-cached metas. - if s.cacheDir != "" { - names, err := fileutil.ReadDir(s.cacheDir) - if err != nil { - level.Warn(s.logger).Log("msg", "best effort remove of not needed cached dirs failed; ignoring", "err", err) - } else { - for _, n := range names { - id, ok := IsBlockDir(n) - if !ok { - continue - } - - if _, ok := metas[id]; ok { - continue - } - - cachedBlockDir := filepath.Join(s.cacheDir, id.String()) - - // No such block loaded, remove the local dir. - if err := os.RemoveAll(cachedBlockDir); err != nil { - level.Warn(s.logger).Log("msg", "best effort remove of not needed cached dir failed; ignoring", "dir", cachedBlockDir, "err", err) - } + cached := make(map[ulid.ULID]*metadata.Meta, len(resp.metas)) + for id, m := range resp.metas { + cached[id] = m + } + f.cached = cached + + // Best effort cleanup of disk-cached metas. + if f.cacheDir != "" { + names, err := fileutil.ReadDir(f.cacheDir) + if err != nil { + level.Warn(f.logger).Log("msg", "best effort remove of not needed cached dirs failed; ignoring", "err", err) + } else { + for _, n := range names { + id, ok := IsBlockDir(n) + if !ok { + continue + } + + if _, ok := resp.metas[id]; ok { + continue + } + + cachedBlockDir := filepath.Join(f.cacheDir, id.String()) + + // No such block loaded, remove the local dir. + if err := os.RemoveAll(cachedBlockDir); err != nil { + level.Warn(f.logger).Log("msg", "best effort remove of not needed cached dir failed; ignoring", "dir", cachedBlockDir, "err", err) } } } } + return resp, nil +} + +func (f *BaseFetcher) fetch(ctx context.Context, metrics *fetcherMetrics, filters []MetadataFilter, modifiers []MetadataModifier) (_ map[ulid.ULID]*metadata.Meta, _ map[ulid.ULID]error, err error) { + start := time.Now() + defer func() { + metrics.syncDuration.Observe(time.Since(start).Seconds()) + if err != nil { + metrics.syncFailures.Inc() + } + }() + metrics.syncs.Inc() + metrics.resetTx() + + // Run this in thread safe run group. + // TODO(bwplotka): Consider custom singleflight with ttl. + v, err := f.g.Do("", func() (i interface{}, err error) { + // NOTE: First go routine context will go through. + return f.fetchMetadata(ctx) + }) + if err != nil { + return nil, nil, err + } + resp := v.(response) + + // Copy as same response might be reused by different goroutines. + metas := make(map[ulid.ULID]*metadata.Meta, len(resp.metas)) + for id, m := range resp.metas { + metas[id] = m + } + + metrics.synced.WithLabelValues(failedMeta).Set(float64(len(resp.metaErrs))) + metrics.synced.WithLabelValues(noMeta).Set(resp.noMetas) + metrics.synced.WithLabelValues(corruptedMeta).Set(resp.corruptedMetas) - for _, f := range s.filters { + for _, filter := range filters { // NOTE: filter can update synced metric accordingly to the reason of the exclude. - f(metas, s.metrics.synced, incompleteView) + if err := filter.Filter(ctx, metas, metrics.synced, resp.incompleteView); err != nil { + return nil, nil, errors.Wrap(err, "filter metas") + } } - s.metrics.synced.WithLabelValues(loadedMeta).Set(float64(len(metas))) - s.metrics.synced.Submit() + for _, m := range modifiers { + // NOTE: modifier can update modified metric accordingly to the reason of the modification. + if err := m.Modify(ctx, metas, metrics.modified, resp.incompleteView); err != nil { + return nil, nil, errors.Wrap(err, "modify metas") + } + } - if incompleteView { - return metas, partial, errors.Wrap(metaErrs, "incomplete view") + metrics.synced.WithLabelValues(loadedMeta).Set(float64(len(metas))) + metrics.submit() + + if len(resp.metaErrs) > 0 { + return metas, resp.partial, errors.Wrap(resp.metaErrs, "incomplete view") + } + + level.Debug(f.logger).Log("msg", "successfully fetched block metadata", "duration", time.Since(start).String(), "cached", len(f.cached), "returned", len(metas), "partial", len(resp.partial)) + return metas, resp.partial, nil +} + +type MetaFetcher struct { + wrapped *BaseFetcher + metrics *fetcherMetrics + + filters []MetadataFilter + modifiers []MetadataModifier + + listener func([]metadata.Meta, error) +} + +// Fetch returns all block metas as well as partial blocks (blocks without or with corrupted meta file) from the bucket. +// It's caller responsibility to not change the returned metadata files. Maps can be modified. +// +// Returned error indicates a failure in fetching metadata. Returned meta can be assumed as correct, with some blocks missing. +func (f *MetaFetcher) Fetch(ctx context.Context) (metas map[ulid.ULID]*metadata.Meta, partial map[ulid.ULID]error, err error) { + metas, partial, err = f.wrapped.fetch(ctx, f.metrics, f.filters, f.modifiers) + if f.listener != nil { + blocks := make([]metadata.Meta, 0, len(metas)) + for _, meta := range metas { + blocks = append(blocks, *meta) + } + f.listener(blocks, err) } + return metas, partial, err +} - level.Info(s.logger).Log("msg", "successfully fetched block metadata", "duration", time.Since(start).String(), "cached", len(s.cached), "returned", len(metas), "partial", len(partial)) - return metas, partial, nil +// UpdateOnChange allows to add listener that will be update on every change. +func (f *MetaFetcher) UpdateOnChange(listener func([]metadata.Meta, error)) { + f.listener = listener } -var _ MetaFetcherFilter = (&TimePartitionMetaFilter{}).Filter +var _ MetadataFilter = &TimePartitionMetaFilter{} -// TimePartitionMetaFilter is a MetaFetcher filter that filters out blocks that are outside of specified time range. +// TimePartitionMetaFilter is a BaseFetcher filter that filters out blocks that are outside of specified time range. +// Not go-routine safe. type TimePartitionMetaFilter struct { minTime, maxTime model.TimeOrDurationValue } @@ -382,7 +497,7 @@ func NewTimePartitionMetaFilter(MinTime, MaxTime model.TimeOrDurationValue) *Tim } // Filter filters out blocks that are outside of specified time range. -func (f *TimePartitionMetaFilter) Filter(metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, _ bool) { +func (f *TimePartitionMetaFilter) Filter(_ context.Context, metas map[ulid.ULID]*metadata.Meta, synced *extprom.TxGaugeVec, _ bool) error { for id, m := range metas { if m.MaxTime >= f.minTime.PrometheusTimestamp() && m.MinTime <= f.maxTime.PrometheusTimestamp() { continue @@ -390,11 +505,13 @@ func (f *TimePartitionMetaFilter) Filter(metas map[ulid.ULID]*metadata.Meta, syn synced.WithLabelValues(timeExcludedMeta).Inc() delete(metas, id) } + return nil } -var _ MetaFetcherFilter = (&LabelShardedMetaFilter{}).Filter +var _ MetadataFilter = &LabelShardedMetaFilter{} -// LabelShardedMetaFilter is a MetaFetcher filter that filters out blocks that have no labels after relabelling. +// LabelShardedMetaFilter represents struct that allows sharding. +// Not go-routine safe. type LabelShardedMetaFilter struct { relabelConfig []*relabel.Config } @@ -404,20 +521,33 @@ func NewLabelShardedMetaFilter(relabelConfig []*relabel.Config) *LabelShardedMet return &LabelShardedMetaFilter{relabelConfig: relabelConfig} } -// Filter filters out blocks that filters blocks that have no labels after relabelling. -func (f *LabelShardedMetaFilter) Filter(metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, _ bool) { +// Special label that will have an ULID of the meta.json being referenced to. +const blockIDLabel = "__block_id" + +// Filter filters out blocks that have no labels after relabelling of each block external (Thanos) labels. +func (f *LabelShardedMetaFilter) Filter(_ context.Context, metas map[ulid.ULID]*metadata.Meta, synced *extprom.TxGaugeVec, _ bool) error { + var lbls labels.Labels for id, m := range metas { - if processedLabels := relabel.Process(labels.FromMap(m.Thanos.Labels), f.relabelConfig...); processedLabels != nil { - continue + lbls = lbls[:0] + lbls = append(lbls, labels.Label{Name: blockIDLabel, Value: id.String()}) + for k, v := range m.Thanos.Labels { + lbls = append(lbls, labels.Label{Name: k, Value: v}) + } + + if processedLabels := relabel.Process(lbls, f.relabelConfig...); len(processedLabels) == 0 { + synced.WithLabelValues(labelExcludedMeta).Inc() + delete(metas, id) } - synced.WithLabelValues(labelExcludedMeta).Inc() - delete(metas, id) } + return nil } -// DeduplicateFilter is a MetaFetcher filter that filters out older blocks that have exactly the same data. +var _ MetadataFilter = &DeduplicateFilter{} + +// DeduplicateFilter is a BaseFetcher filter that filters out older blocks that have exactly the same data. +// Not go-routine safe. type DeduplicateFilter struct { - DuplicateIDs []ulid.ULID + duplicateIDs []ulid.ULID } // NewDeduplicateFilter creates DeduplicateFilter. @@ -427,17 +557,33 @@ func NewDeduplicateFilter() *DeduplicateFilter { // Filter filters out duplicate blocks that can be formed // from two or more overlapping blocks that fully submatches the source blocks of the older blocks. -func (f *DeduplicateFilter) Filter(metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, _ bool) { - root := NewNode(&metadata.Meta{ - BlockMeta: tsdb.BlockMeta{ - ULID: ulid.MustNew(uint64(0), nil), - }, - }) +func (f *DeduplicateFilter) Filter(_ context.Context, metas map[ulid.ULID]*metadata.Meta, synced *extprom.TxGaugeVec, _ bool) error { + var wg sync.WaitGroup - metaSlice := []*metadata.Meta{} + metasByResolution := make(map[int64][]*metadata.Meta) for _, meta := range metas { - metaSlice = append(metaSlice, meta) + res := meta.Thanos.Downsample.Resolution + metasByResolution[res] = append(metasByResolution[res], meta) + } + + for res := range metasByResolution { + wg.Add(1) + go func(res int64) { + defer wg.Done() + f.filterForResolution(NewNode(&metadata.Meta{ + BlockMeta: tsdb.BlockMeta{ + ULID: ulid.MustNew(uint64(0), nil), + }, + }), metasByResolution[res], metas, synced) + }(res) } + + wg.Wait() + + return nil +} + +func (f *DeduplicateFilter) filterForResolution(root *Node, metaSlice []*metadata.Meta, metas map[ulid.ULID]*metadata.Meta, synced *extprom.TxGaugeVec) { sort.Slice(metaSlice, func(i, j int) bool { ilen := len(metaSlice[i].Compaction.Sources) jlen := len(metaSlice[j].Compaction.Sources) @@ -456,13 +602,18 @@ func (f *DeduplicateFilter) Filter(metas map[ulid.ULID]*metadata.Meta, synced Ga duplicateULIDs := getNonRootIDs(root) for _, id := range duplicateULIDs { if metas[id] != nil { - f.DuplicateIDs = append(f.DuplicateIDs, id) + f.duplicateIDs = append(f.duplicateIDs, id) } synced.WithLabelValues(duplicateMeta).Inc() delete(metas, id) } } +// DuplicateIDs returns slice of block ids that are filtered out by DeduplicateFilter. +func (f *DeduplicateFilter) DuplicateIDs() []ulid.ULID { + return f.duplicateIDs +} + func addNodeBySources(root *Node, add *Node) bool { var rootNode *Node for _, node := range root.Children { @@ -506,3 +657,129 @@ func contains(s1 []ulid.ULID, s2 []ulid.ULID) bool { } return true } + +var _ MetadataModifier = &ReplicaLabelRemover{} + +// ReplicaLabelRemover is a BaseFetcher modifier modifies external labels of existing blocks, it removes given replica labels from the metadata of blocks that have it. +type ReplicaLabelRemover struct { + logger log.Logger + + replicaLabels []string +} + +// NewReplicaLabelRemover creates a ReplicaLabelRemover. +func NewReplicaLabelRemover(logger log.Logger, replicaLabels []string) *ReplicaLabelRemover { + return &ReplicaLabelRemover{logger: logger, replicaLabels: replicaLabels} +} + +// Modify modifies external labels of existing blocks, it removes given replica labels from the metadata of blocks that have it. +func (r *ReplicaLabelRemover) Modify(_ context.Context, metas map[ulid.ULID]*metadata.Meta, modified *extprom.TxGaugeVec, _ bool) error { + for u, meta := range metas { + l := meta.Thanos.Labels + for _, replicaLabel := range r.replicaLabels { + if _, exists := l[replicaLabel]; exists { + level.Debug(r.logger).Log("msg", "replica label removed", "label", replicaLabel) + delete(l, replicaLabel) + modified.WithLabelValues(replicaRemovedMeta).Inc() + } + } + metas[u].Thanos.Labels = l + } + return nil +} + +// ConsistencyDelayMetaFilter is a BaseFetcher filter that filters out blocks that are created before a specified consistency delay. +// Not go-routine safe. +type ConsistencyDelayMetaFilter struct { + logger log.Logger + consistencyDelay time.Duration +} + +// NewConsistencyDelayMetaFilter creates ConsistencyDelayMetaFilter. +func NewConsistencyDelayMetaFilter(logger log.Logger, consistencyDelay time.Duration, reg prometheus.Registerer) *ConsistencyDelayMetaFilter { + if logger == nil { + logger = log.NewNopLogger() + } + _ = promauto.With(reg).NewGaugeFunc(prometheus.GaugeOpts{ + Name: "consistency_delay_seconds", + Help: "Configured consistency delay in seconds.", + }, func() float64 { + return consistencyDelay.Seconds() + }) + + return &ConsistencyDelayMetaFilter{ + logger: logger, + consistencyDelay: consistencyDelay, + } +} + +// Filter filters out blocks that filters blocks that have are created before a specified consistency delay. +func (f *ConsistencyDelayMetaFilter) Filter(_ context.Context, metas map[ulid.ULID]*metadata.Meta, synced *extprom.TxGaugeVec, _ bool) error { + for id, meta := range metas { + // TODO(khyatisoneji): Remove the checks about Thanos Source + // by implementing delete delay to fetch metas. + // TODO(bwplotka): Check consistency delay based on file upload / modification time instead of ULID. + if ulid.Now()-id.Time() < uint64(f.consistencyDelay/time.Millisecond) && + meta.Thanos.Source != metadata.BucketRepairSource && + meta.Thanos.Source != metadata.CompactorSource && + meta.Thanos.Source != metadata.CompactorRepairSource { + + level.Debug(f.logger).Log("msg", "block is too fresh for now", "block", id) + synced.WithLabelValues(tooFreshMeta).Inc() + delete(metas, id) + } + } + + return nil +} + +// IgnoreDeletionMarkFilter is a filter that filters out the blocks that are marked for deletion after a given delay. +// The delay duration is to make sure that the replacement block can be fetched before we filter out the old block. +// Delay is not considered when computing DeletionMarkBlocks map. +// Not go-routine safe. +type IgnoreDeletionMarkFilter struct { + logger log.Logger + delay time.Duration + bkt objstore.BucketReader + deletionMarkMap map[ulid.ULID]*metadata.DeletionMark +} + +// NewIgnoreDeletionMarkFilter creates IgnoreDeletionMarkFilter. +func NewIgnoreDeletionMarkFilter(logger log.Logger, bkt objstore.BucketReader, delay time.Duration) *IgnoreDeletionMarkFilter { + return &IgnoreDeletionMarkFilter{ + logger: logger, + bkt: bkt, + delay: delay, + } +} + +// DeletionMarkBlocks returns block ids that were marked for deletion. +func (f *IgnoreDeletionMarkFilter) DeletionMarkBlocks() map[ulid.ULID]*metadata.DeletionMark { + return f.deletionMarkMap +} + +// Filter filters out blocks that are marked for deletion after a given delay. +// It also returns the blocks that can be deleted since they were uploaded delay duration before current time. +func (f *IgnoreDeletionMarkFilter) Filter(ctx context.Context, metas map[ulid.ULID]*metadata.Meta, synced *extprom.TxGaugeVec, _ bool) error { + f.deletionMarkMap = make(map[ulid.ULID]*metadata.DeletionMark) + + for id := range metas { + deletionMark, err := metadata.ReadDeletionMark(ctx, f.bkt, f.logger, id.String()) + if err == metadata.ErrorDeletionMarkNotFound { + continue + } + if errors.Cause(err) == metadata.ErrorUnmarshalDeletionMark { + level.Warn(f.logger).Log("msg", "found partial deletion-mark.json; if we will see it happening often for the same block, consider manually deleting deletion-mark.json from the object storage", "block", id, "err", err) + continue + } + if err != nil { + return err + } + f.deletionMarkMap[id] = deletionMark + if time.Since(time.Unix(deletionMark.DeletionTime, 0)).Seconds() > f.delay.Seconds() { + synced.WithLabelValues(markedForDeletionMeta).Inc() + delete(metas, id) + } + } + return nil +} diff --git a/pkg/block/fetcher_test.go b/pkg/block/fetcher_test.go index 1f0cfa341d4..953ed93f4fe 100644 --- a/pkg/block/fetcher_test.go +++ b/pkg/block/fetcher_test.go @@ -9,6 +9,7 @@ import ( "encoding/json" "fmt" "io/ioutil" + "math/rand" "os" "path" "path/filepath" @@ -25,6 +26,7 @@ import ( "github.com/prometheus/prometheus/pkg/relabel" "github.com/prometheus/prometheus/tsdb" "github.com/thanos-io/thanos/pkg/block/metadata" + "github.com/thanos-io/thanos/pkg/extprom" "github.com/thanos-io/thanos/pkg/model" "github.com/thanos-io/thanos/pkg/objstore" "github.com/thanos-io/thanos/pkg/objstore/objtesting" @@ -32,6 +34,25 @@ import ( "gopkg.in/yaml.v2" ) +func newTestFetcherMetrics() *fetcherMetrics { + return &fetcherMetrics{ + synced: extprom.NewTxGaugeVec(nil, prometheus.GaugeOpts{}, []string{"state"}), + modified: extprom.NewTxGaugeVec(nil, prometheus.GaugeOpts{}, []string{"modified"}), + } +} + +type ulidFilter struct { + ulidToDelete *ulid.ULID +} + +func (f *ulidFilter) Filter(_ context.Context, metas map[ulid.ULID]*metadata.Meta, synced *extprom.TxGaugeVec, incompleteView bool) error { + if _, ok := metas[*f.ulidToDelete]; ok { + synced.WithLabelValues("filtered").Inc() + delete(metas, *f.ulidToDelete) + } + return nil +} + func ULID(i int) ulid.ULID { return ulid.MustNew(uint64(i), nil) } func ULIDs(is ...int) []ulid.ULID { @@ -54,14 +75,13 @@ func TestMetaFetcher_Fetch(t *testing.T) { var ulidToDelete ulid.ULID r := prometheus.NewRegistry() - f, err := NewMetaFetcher(log.NewNopLogger(), 20, bkt, dir, r, func(metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, incompleteView bool) { - if _, ok := metas[ulidToDelete]; ok { - synced.WithLabelValues("filtered").Inc() - delete(metas, ulidToDelete) - } - }) + baseFetcher, err := NewBaseFetcher(log.NewNopLogger(), 20, bkt, dir, r) testutil.Ok(t, err) + fetcher := baseFetcher.NewMetaFetcher(r, []MetadataFilter{ + &ulidFilter{ulidToDelete: &ulidToDelete}, + }, nil) + for i, tcase := range []struct { name string do func() @@ -115,7 +135,7 @@ func TestMetaFetcher_Fetch(t *testing.T) { { name: "fresh cache", do: func() { - f.cached = map[ulid.ULID]*metadata.Meta{} + baseFetcher.cached = map[ulid.ULID]*metadata.Meta{} }, expectedMetas: ULIDs(1, 2, 3), @@ -125,7 +145,7 @@ func TestMetaFetcher_Fetch(t *testing.T) { { name: "fresh cache: meta 2 and 3 have corrupted data on disk ", do: func() { - f.cached = map[ulid.ULID]*metadata.Meta{} + baseFetcher.cached = map[ulid.ULID]*metadata.Meta{} testutil.Ok(t, os.Remove(filepath.Join(dir, "meta-syncer", ULID(2).String(), MetaFilename))) @@ -220,7 +240,7 @@ func TestMetaFetcher_Fetch(t *testing.T) { tcase.do() ulidToDelete = tcase.filterULID - metas, partial, err := f.Fetch(ctx) + metas, partial, err := fetcher.Fetch(ctx) if tcase.expectedMetaErr != nil { testutil.NotOk(t, err) testutil.Equals(t, tcase.expectedMetaErr.Error(), err.Error()) @@ -261,14 +281,15 @@ func TestMetaFetcher_Fetch(t *testing.T) { if tcase.expectedMetaErr != nil { expectedFailures = 1 } - testutil.Equals(t, float64(i+1), promtest.ToFloat64(f.metrics.syncs)) - testutil.Equals(t, float64(len(tcase.expectedMetas)), promtest.ToFloat64(f.metrics.synced.WithLabelValues(loadedMeta))) - testutil.Equals(t, float64(len(tcase.expectedNoMeta)), promtest.ToFloat64(f.metrics.synced.WithLabelValues(noMeta))) - testutil.Equals(t, float64(tcase.expectedFiltered), promtest.ToFloat64(f.metrics.synced.WithLabelValues("filtered"))) - testutil.Equals(t, 0.0, promtest.ToFloat64(f.metrics.synced.WithLabelValues(labelExcludedMeta))) - testutil.Equals(t, 0.0, promtest.ToFloat64(f.metrics.synced.WithLabelValues(timeExcludedMeta))) - testutil.Equals(t, float64(expectedFailures), promtest.ToFloat64(f.metrics.synced.WithLabelValues(failedMeta))) - testutil.Equals(t, 0.0, promtest.ToFloat64(f.metrics.synced.WithLabelValues(TooFreshMeta))) + testutil.Equals(t, float64(i+1), promtest.ToFloat64(baseFetcher.syncs)) + testutil.Equals(t, float64(i+1), promtest.ToFloat64(fetcher.metrics.syncs)) + testutil.Equals(t, float64(len(tcase.expectedMetas)), promtest.ToFloat64(fetcher.metrics.synced.WithLabelValues(loadedMeta))) + testutil.Equals(t, float64(len(tcase.expectedNoMeta)), promtest.ToFloat64(fetcher.metrics.synced.WithLabelValues(noMeta))) + testutil.Equals(t, float64(tcase.expectedFiltered), promtest.ToFloat64(fetcher.metrics.synced.WithLabelValues("filtered"))) + testutil.Equals(t, 0.0, promtest.ToFloat64(fetcher.metrics.synced.WithLabelValues(labelExcludedMeta))) + testutil.Equals(t, 0.0, promtest.ToFloat64(fetcher.metrics.synced.WithLabelValues(timeExcludedMeta))) + testutil.Equals(t, float64(expectedFailures), promtest.ToFloat64(fetcher.metrics.synced.WithLabelValues(failedMeta))) + testutil.Equals(t, 0.0, promtest.ToFloat64(fetcher.metrics.synced.WithLabelValues(tooFreshMeta))) }); !ok { return } @@ -276,7 +297,10 @@ func TestMetaFetcher_Fetch(t *testing.T) { }) } -func TestLabelShardedMetaFilter_Filter(t *testing.T) { +func TestLabelShardedMetaFilter_Filter_Basic(t *testing.T) { + ctx, cancel := context.WithTimeout(context.Background(), 120*time.Second) + defer cancel() + relabelContentYaml := ` - action: drop regex: "A" @@ -330,15 +354,119 @@ func TestLabelShardedMetaFilter_Filter(t *testing.T) { ULID(6): input[ULID(6)], } - synced := prometheus.NewGaugeVec(prometheus.GaugeOpts{}, []string{"state"}) - f.Filter(input, synced, false) + m := newTestFetcherMetrics() + testutil.Ok(t, f.Filter(ctx, input, m.synced, false)) - testutil.Equals(t, 3.0, promtest.ToFloat64(synced.WithLabelValues(labelExcludedMeta))) + testutil.Equals(t, 3.0, promtest.ToFloat64(m.synced.WithLabelValues(labelExcludedMeta))) testutil.Equals(t, expected, input) } +func TestLabelShardedMetaFilter_Filter_Hashmod(t *testing.T) { + ctx, cancel := context.WithTimeout(context.Background(), 120*time.Second) + defer cancel() + + relabelContentYamlFmt := ` + - action: hashmod + source_labels: ["%s"] + target_label: shard + modulus: 3 + - action: keep + source_labels: ["shard"] + regex: %d +` + for i := 0; i < 3; i++ { + t.Run(fmt.Sprintf("%v", i), func(t *testing.T) { + var relabelConfig []*relabel.Config + testutil.Ok(t, yaml.Unmarshal([]byte(fmt.Sprintf(relabelContentYamlFmt, blockIDLabel, i)), &relabelConfig)) + + f := NewLabelShardedMetaFilter(relabelConfig) + + input := map[ulid.ULID]*metadata.Meta{ + ULID(1): { + Thanos: metadata.Thanos{ + Labels: map[string]string{"cluster": "B", "message": "keepme"}, + }, + }, + ULID(2): { + Thanos: metadata.Thanos{ + Labels: map[string]string{"something": "A", "message": "keepme"}, + }, + }, + ULID(3): { + Thanos: metadata.Thanos{ + Labels: map[string]string{"cluster": "A", "message": "keepme"}, + }, + }, + ULID(4): { + Thanos: metadata.Thanos{ + Labels: map[string]string{"cluster": "A", "something": "B", "message": "keepme"}, + }, + }, + ULID(5): { + Thanos: metadata.Thanos{ + Labels: map[string]string{"cluster": "B"}, + }, + }, + ULID(6): { + Thanos: metadata.Thanos{ + Labels: map[string]string{"cluster": "B", "message": "keepme"}, + }, + }, + ULID(7): {}, + ULID(8): {}, + ULID(9): {}, + ULID(10): {}, + ULID(11): {}, + ULID(12): {}, + ULID(13): {}, + ULID(14): {}, + ULID(15): {}, + } + expected := map[ulid.ULID]*metadata.Meta{} + switch i { + case 0: + expected = map[ulid.ULID]*metadata.Meta{ + ULID(2): input[ULID(2)], + ULID(6): input[ULID(6)], + ULID(11): input[ULID(11)], + ULID(13): input[ULID(13)], + } + case 1: + expected = map[ulid.ULID]*metadata.Meta{ + ULID(5): input[ULID(5)], + ULID(7): input[ULID(7)], + ULID(10): input[ULID(10)], + ULID(12): input[ULID(12)], + ULID(14): input[ULID(14)], + ULID(15): input[ULID(15)], + } + case 2: + expected = map[ulid.ULID]*metadata.Meta{ + ULID(1): input[ULID(1)], + ULID(3): input[ULID(3)], + ULID(4): input[ULID(4)], + ULID(8): input[ULID(8)], + ULID(9): input[ULID(9)], + } + } + deleted := len(input) - len(expected) + + m := newTestFetcherMetrics() + testutil.Ok(t, f.Filter(ctx, input, m.synced, false)) + + testutil.Equals(t, expected, input) + testutil.Equals(t, float64(deleted), promtest.ToFloat64(m.synced.WithLabelValues(labelExcludedMeta))) + + }) + + } +} + func TestTimePartitionMetaFilter_Filter(t *testing.T) { + ctx, cancel := context.WithTimeout(context.Background(), 120*time.Second) + defer cancel() + mint := time.Unix(0, 1*time.Millisecond.Nanoseconds()) maxt := time.Unix(0, 10*time.Millisecond.Nanoseconds()) f := NewTimePartitionMetaFilter(model.TimeOrDurationValue{Time: &mint}, model.TimeOrDurationValue{Time: &maxt}) @@ -388,26 +516,43 @@ func TestTimePartitionMetaFilter_Filter(t *testing.T) { ULID(4): input[ULID(4)], } - synced := prometheus.NewGaugeVec(prometheus.GaugeOpts{}, []string{"state"}) - f.Filter(input, synced, false) + m := newTestFetcherMetrics() + testutil.Ok(t, f.Filter(ctx, input, m.synced, false)) - testutil.Equals(t, 2.0, promtest.ToFloat64(synced.WithLabelValues(timeExcludedMeta))) + testutil.Equals(t, 2.0, promtest.ToFloat64(m.synced.WithLabelValues(timeExcludedMeta))) testutil.Equals(t, expected, input) } +type sourcesAndResolution struct { + sources []ulid.ULID + resolution int64 +} + func TestDeduplicateFilter_Filter(t *testing.T) { + ctx, cancel := context.WithTimeout(context.Background(), 120*time.Second) + defer cancel() + for _, tcase := range []struct { name string - input map[ulid.ULID][]ulid.ULID + input map[ulid.ULID]*sourcesAndResolution expected []ulid.ULID }{ { name: "3 non compacted blocks in bucket", - input: map[ulid.ULID][]ulid.ULID{ - ULID(1): []ulid.ULID{ULID(1)}, - ULID(2): []ulid.ULID{ULID(2)}, - ULID(3): []ulid.ULID{ULID(3)}, + input: map[ulid.ULID]*sourcesAndResolution{ + ULID(1): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(1)}, + resolution: 0, + }, + ULID(2): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(2)}, + resolution: 0, + }, + ULID(3): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(3)}, + resolution: 0, + }, }, expected: []ulid.ULID{ ULID(1), @@ -417,10 +562,19 @@ func TestDeduplicateFilter_Filter(t *testing.T) { }, { name: "compacted block with sources in bucket", - input: map[ulid.ULID][]ulid.ULID{ - ULID(6): []ulid.ULID{ULID(6)}, - ULID(4): []ulid.ULID{ULID(1), ULID(3), ULID(2)}, - ULID(5): []ulid.ULID{ULID(5)}, + input: map[ulid.ULID]*sourcesAndResolution{ + ULID(6): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(6)}, + resolution: 0, + }, + ULID(4): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(1), ULID(3), ULID(2)}, + resolution: 0, + }, + ULID(5): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(5)}, + resolution: 0, + }, }, expected: []ulid.ULID{ ULID(4), @@ -430,11 +584,23 @@ func TestDeduplicateFilter_Filter(t *testing.T) { }, { name: "two compacted blocks with same sources", - input: map[ulid.ULID][]ulid.ULID{ - ULID(5): []ulid.ULID{ULID(5)}, - ULID(6): []ulid.ULID{ULID(6)}, - ULID(3): []ulid.ULID{ULID(1), ULID(2)}, - ULID(4): []ulid.ULID{ULID(1), ULID(2)}, + input: map[ulid.ULID]*sourcesAndResolution{ + ULID(5): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(5)}, + resolution: 0, + }, + ULID(6): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(6)}, + resolution: 0, + }, + ULID(3): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(1), ULID(2)}, + resolution: 0, + }, + ULID(4): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(1), ULID(2)}, + resolution: 0, + }, }, expected: []ulid.ULID{ ULID(3), @@ -444,10 +610,19 @@ func TestDeduplicateFilter_Filter(t *testing.T) { }, { name: "two compacted blocks with overlapping sources", - input: map[ulid.ULID][]ulid.ULID{ - ULID(4): []ulid.ULID{ULID(1), ULID(2)}, - ULID(6): []ulid.ULID{ULID(6)}, - ULID(5): []ulid.ULID{ULID(1), ULID(3), ULID(2)}, + input: map[ulid.ULID]*sourcesAndResolution{ + ULID(4): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(1), ULID(2)}, + resolution: 0, + }, + ULID(6): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(6)}, + resolution: 0, + }, + ULID(5): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(1), ULID(3), ULID(2)}, + resolution: 0, + }, }, expected: []ulid.ULID{ ULID(5), @@ -456,12 +631,27 @@ func TestDeduplicateFilter_Filter(t *testing.T) { }, { name: "3 non compacted blocks and compacted block of level 2 in bucket", - input: map[ulid.ULID][]ulid.ULID{ - ULID(6): []ulid.ULID{ULID(6)}, - ULID(1): []ulid.ULID{ULID(1)}, - ULID(2): []ulid.ULID{ULID(2)}, - ULID(3): []ulid.ULID{ULID(3)}, - ULID(4): []ulid.ULID{ULID(2), ULID(1), ULID(3)}, + input: map[ulid.ULID]*sourcesAndResolution{ + ULID(6): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(6)}, + resolution: 0, + }, + ULID(1): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(1)}, + resolution: 0, + }, + ULID(2): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(2)}, + resolution: 0, + }, + ULID(3): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(3)}, + resolution: 0, + }, + ULID(4): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(2), ULID(1), ULID(3)}, + resolution: 0, + }, }, expected: []ulid.ULID{ ULID(4), @@ -470,13 +660,31 @@ func TestDeduplicateFilter_Filter(t *testing.T) { }, { name: "3 compacted blocks of level 2 and one compacted block of level 3 in bucket", - input: map[ulid.ULID][]ulid.ULID{ - ULID(10): []ulid.ULID{ULID(1), ULID(2), ULID(3)}, - ULID(11): []ulid.ULID{ULID(6), ULID(4), ULID(5)}, - ULID(14): []ulid.ULID{ULID(14)}, - ULID(1): []ulid.ULID{ULID(1)}, - ULID(13): []ulid.ULID{ULID(1), ULID(6), ULID(2), ULID(3), ULID(5), ULID(7), ULID(4), ULID(8), ULID(9)}, - ULID(12): []ulid.ULID{ULID(7), ULID(9), ULID(8)}, + input: map[ulid.ULID]*sourcesAndResolution{ + ULID(10): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(1), ULID(2), ULID(3)}, + resolution: 0, + }, + ULID(11): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(6), ULID(4), ULID(5)}, + resolution: 0, + }, + ULID(14): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(14)}, + resolution: 0, + }, + ULID(1): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(1)}, + resolution: 0, + }, + ULID(13): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(1), ULID(6), ULID(2), ULID(3), ULID(5), ULID(7), ULID(4), ULID(8), ULID(9)}, + resolution: 0, + }, + ULID(12): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(7), ULID(9), ULID(8)}, + resolution: 0, + }, }, expected: []ulid.ULID{ ULID(14), @@ -485,12 +693,27 @@ func TestDeduplicateFilter_Filter(t *testing.T) { }, { name: "compacted blocks with overlapping sources", - input: map[ulid.ULID][]ulid.ULID{ - ULID(8): []ulid.ULID{ULID(1), ULID(3), ULID(2), ULID(4)}, - ULID(1): []ulid.ULID{ULID(1)}, - ULID(5): []ulid.ULID{ULID(1), ULID(2)}, - ULID(6): []ulid.ULID{ULID(1), ULID(3), ULID(2), ULID(4)}, - ULID(7): []ulid.ULID{ULID(3), ULID(1), ULID(2)}, + input: map[ulid.ULID]*sourcesAndResolution{ + ULID(8): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(1), ULID(3), ULID(2), ULID(4)}, + resolution: 0, + }, + ULID(1): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(1)}, + resolution: 0, + }, + ULID(5): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(1), ULID(2)}, + resolution: 0, + }, + ULID(6): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(1), ULID(3), ULID(2), ULID(4)}, + resolution: 0, + }, + ULID(7): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(3), ULID(1), ULID(2)}, + resolution: 0, + }, }, expected: []ulid.ULID{ ULID(6), @@ -498,10 +721,19 @@ func TestDeduplicateFilter_Filter(t *testing.T) { }, { name: "compacted blocks of level 3 with overlapping sources of equal length", - input: map[ulid.ULID][]ulid.ULID{ - ULID(10): []ulid.ULID{ULID(1), ULID(2), ULID(6), ULID(7)}, - ULID(1): []ulid.ULID{ULID(1)}, - ULID(11): []ulid.ULID{ULID(6), ULID(8), ULID(1), ULID(2)}, + input: map[ulid.ULID]*sourcesAndResolution{ + ULID(10): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(1), ULID(2), ULID(6), ULID(7)}, + resolution: 0, + }, + ULID(1): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(1)}, + resolution: 0, + }, + ULID(11): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(6), ULID(8), ULID(1), ULID(2)}, + resolution: 0, + }, }, expected: []ulid.ULID{ ULID(10), @@ -510,43 +742,191 @@ func TestDeduplicateFilter_Filter(t *testing.T) { }, { name: "compacted blocks of level 3 with overlapping sources of different length", - input: map[ulid.ULID][]ulid.ULID{ - ULID(10): []ulid.ULID{ULID(6), ULID(7), ULID(1), ULID(2)}, - ULID(1): []ulid.ULID{ULID(1)}, - ULID(5): []ulid.ULID{ULID(1), ULID(2)}, - ULID(11): []ulid.ULID{ULID(2), ULID(3), ULID(1)}, + input: map[ulid.ULID]*sourcesAndResolution{ + ULID(10): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(6), ULID(7), ULID(1), ULID(2)}, + resolution: 0, + }, + ULID(1): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(1)}, + resolution: 0, + }, + ULID(5): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(1), ULID(2)}, + resolution: 0, + }, + ULID(11): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(2), ULID(3), ULID(1)}, + resolution: 0, + }, }, expected: []ulid.ULID{ ULID(10), ULID(11), }, }, + { + name: "blocks with same sources and different resolutions", + input: map[ulid.ULID]*sourcesAndResolution{ + ULID(1): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(1)}, + resolution: 0, + }, + ULID(2): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(1)}, + resolution: 1000, + }, + ULID(3): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(1)}, + resolution: 10000, + }, + }, + expected: []ulid.ULID{ + ULID(1), + ULID(2), + ULID(3), + }, + }, + { + name: "compacted blocks with overlapping sources and different resolutions", + input: map[ulid.ULID]*sourcesAndResolution{ + ULID(1): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(1)}, + resolution: 0, + }, + ULID(6): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(6)}, + resolution: 10000, + }, + ULID(4): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(1), ULID(3), ULID(2)}, + resolution: 0, + }, + ULID(5): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(2), ULID(3), ULID(1)}, + resolution: 1000, + }, + }, + expected: []ulid.ULID{ + ULID(4), + ULID(5), + ULID(6), + }, + }, + { + name: "compacted blocks of level 3 with overlapping sources of different length and different resolutions", + input: map[ulid.ULID]*sourcesAndResolution{ + ULID(10): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(7), ULID(5), ULID(1), ULID(2)}, + resolution: 0, + }, + ULID(12): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(6), ULID(7), ULID(1)}, + resolution: 10000, + }, + ULID(1): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(1)}, + resolution: 0, + }, + ULID(13): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(1)}, + resolution: 10000, + }, + ULID(5): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(1), ULID(2)}, + resolution: 0, + }, + ULID(11): &sourcesAndResolution{ + sources: []ulid.ULID{ULID(2), ULID(3), ULID(1)}, + resolution: 0, + }, + }, + expected: []ulid.ULID{ + ULID(10), + ULID(11), + ULID(12), + }, + }, } { f := NewDeduplicateFilter() if ok := t.Run(tcase.name, func(t *testing.T) { - synced := prometheus.NewGaugeVec(prometheus.GaugeOpts{}, []string{"state"}) + m := newTestFetcherMetrics() metas := make(map[ulid.ULID]*metadata.Meta) inputLen := len(tcase.input) - for id, sources := range tcase.input { + for id, metaInfo := range tcase.input { metas[id] = &metadata.Meta{ BlockMeta: tsdb.BlockMeta{ ULID: id, Compaction: tsdb.BlockMetaCompaction{ - Sources: sources, + Sources: metaInfo.sources, + }, + }, + Thanos: metadata.Thanos{ + Downsample: metadata.ThanosDownsample{ + Resolution: metaInfo.resolution, }, }, } } - f.Filter(metas, synced, false) - + testutil.Ok(t, f.Filter(ctx, metas, m.synced, false)) compareSliceWithMapKeys(t, metas, tcase.expected) - testutil.Equals(t, float64(inputLen-len(tcase.expected)), promtest.ToFloat64(synced.WithLabelValues(duplicateMeta))) + testutil.Equals(t, float64(inputLen-len(tcase.expected)), promtest.ToFloat64(m.synced.WithLabelValues(duplicateMeta))) }); !ok { return } } } +func TestReplicaLabelRemover_Modify(t *testing.T) { + ctx, cancel := context.WithTimeout(context.Background(), 120*time.Second) + defer cancel() + rm := NewReplicaLabelRemover(log.NewNopLogger(), []string{"replica", "rule_replica"}) + + for _, tcase := range []struct { + name string + input map[ulid.ULID]*metadata.Meta + expected map[ulid.ULID]*metadata.Meta + modified float64 + }{ + { + name: "without replica labels", + input: map[ulid.ULID]*metadata.Meta{ + ULID(1): {Thanos: metadata.Thanos{Labels: map[string]string{"message": "something"}}}, + ULID(2): {Thanos: metadata.Thanos{Labels: map[string]string{"message": "something"}}}, + ULID(3): {Thanos: metadata.Thanos{Labels: map[string]string{"message": "something1"}}}, + }, + expected: map[ulid.ULID]*metadata.Meta{ + ULID(1): {Thanos: metadata.Thanos{Labels: map[string]string{"message": "something"}}}, + ULID(2): {Thanos: metadata.Thanos{Labels: map[string]string{"message": "something"}}}, + ULID(3): {Thanos: metadata.Thanos{Labels: map[string]string{"message": "something1"}}}, + }, + modified: 0, + }, + { + name: "with replica labels", + input: map[ulid.ULID]*metadata.Meta{ + ULID(1): {Thanos: metadata.Thanos{Labels: map[string]string{"message": "something"}}}, + ULID(2): {Thanos: metadata.Thanos{Labels: map[string]string{"replica": "cluster1", "message": "something"}}}, + ULID(3): {Thanos: metadata.Thanos{Labels: map[string]string{"replica": "cluster1", "rule_replica": "rule1", "message": "something"}}}, + ULID(4): {Thanos: metadata.Thanos{Labels: map[string]string{"replica": "cluster1", "rule_replica": "rule1"}}}, + }, + expected: map[ulid.ULID]*metadata.Meta{ + ULID(1): {Thanos: metadata.Thanos{Labels: map[string]string{"message": "something"}}}, + ULID(2): {Thanos: metadata.Thanos{Labels: map[string]string{"message": "something"}}}, + ULID(3): {Thanos: metadata.Thanos{Labels: map[string]string{"message": "something"}}}, + ULID(4): {Thanos: metadata.Thanos{Labels: map[string]string{}}}, + }, + modified: 5.0, + }, + } { + m := newTestFetcherMetrics() + testutil.Ok(t, rm.Modify(ctx, tcase.input, m.modified, false)) + + testutil.Equals(t, tcase.modified, promtest.ToFloat64(m.modified.WithLabelValues(replicaRemovedMeta))) + testutil.Equals(t, tcase.expected, tcase.input) + } +} + func compareSliceWithMapKeys(tb testing.TB, m map[ulid.ULID]*metadata.Meta, s []ulid.ULID) { _, file, line, _ := runtime.Caller(1) matching := true @@ -570,3 +950,162 @@ func compareSliceWithMapKeys(tb testing.TB, m map[ulid.ULID]*metadata.Meta, s [] tb.FailNow() } } + +type ulidBuilder struct { + entropy *rand.Rand + + created []ulid.ULID +} + +func (u *ulidBuilder) ULID(t time.Time) ulid.ULID { + if u.entropy == nil { + source := rand.NewSource(1234) + u.entropy = rand.New(source) + } + + id := ulid.MustNew(ulid.Timestamp(t), u.entropy) + u.created = append(u.created, id) + return id +} + +func TestConsistencyDelayMetaFilter_Filter_0(t *testing.T) { + ctx, cancel := context.WithTimeout(context.Background(), 120*time.Second) + defer cancel() + + u := &ulidBuilder{} + now := time.Now() + + input := map[ulid.ULID]*metadata.Meta{ + // Fresh blocks. + u.ULID(now): {Thanos: metadata.Thanos{Source: metadata.SidecarSource}}, + u.ULID(now.Add(-1 * time.Minute)): {Thanos: metadata.Thanos{Source: metadata.SidecarSource}}, + u.ULID(now.Add(-1 * time.Minute)): {Thanos: metadata.Thanos{Source: metadata.ReceiveSource}}, + u.ULID(now.Add(-1 * time.Minute)): {Thanos: metadata.Thanos{Source: metadata.RulerSource}}, + + // For now non-delay delete sources, should be ignored by consistency delay. + u.ULID(now.Add(-1 * time.Minute)): {Thanos: metadata.Thanos{Source: metadata.BucketRepairSource}}, + u.ULID(now.Add(-1 * time.Minute)): {Thanos: metadata.Thanos{Source: metadata.CompactorSource}}, + u.ULID(now.Add(-1 * time.Minute)): {Thanos: metadata.Thanos{Source: metadata.CompactorRepairSource}}, + + // 29m. + u.ULID(now.Add(-29 * time.Minute)): {Thanos: metadata.Thanos{Source: metadata.SidecarSource}}, + u.ULID(now.Add(-29 * time.Minute)): {Thanos: metadata.Thanos{Source: metadata.ReceiveSource}}, + u.ULID(now.Add(-29 * time.Minute)): {Thanos: metadata.Thanos{Source: metadata.RulerSource}}, + + // For now non-delay delete sources, should be ignored by consistency delay. + u.ULID(now.Add(-29 * time.Minute)): {Thanos: metadata.Thanos{Source: metadata.BucketRepairSource}}, + u.ULID(now.Add(-29 * time.Minute)): {Thanos: metadata.Thanos{Source: metadata.CompactorSource}}, + u.ULID(now.Add(-29 * time.Minute)): {Thanos: metadata.Thanos{Source: metadata.CompactorRepairSource}}, + + // 30m. + u.ULID(now.Add(-30 * time.Minute)): {Thanos: metadata.Thanos{Source: metadata.SidecarSource}}, + u.ULID(now.Add(-30 * time.Minute)): {Thanos: metadata.Thanos{Source: metadata.ReceiveSource}}, + u.ULID(now.Add(-30 * time.Minute)): {Thanos: metadata.Thanos{Source: metadata.RulerSource}}, + u.ULID(now.Add(-30 * time.Minute)): {Thanos: metadata.Thanos{Source: metadata.BucketRepairSource}}, + u.ULID(now.Add(-30 * time.Minute)): {Thanos: metadata.Thanos{Source: metadata.CompactorSource}}, + u.ULID(now.Add(-30 * time.Minute)): {Thanos: metadata.Thanos{Source: metadata.CompactorRepairSource}}, + + // 30m+. + u.ULID(now.Add(-20 * time.Hour)): {Thanos: metadata.Thanos{Source: metadata.SidecarSource}}, + u.ULID(now.Add(-20 * time.Hour)): {Thanos: metadata.Thanos{Source: metadata.ReceiveSource}}, + u.ULID(now.Add(-20 * time.Hour)): {Thanos: metadata.Thanos{Source: metadata.RulerSource}}, + u.ULID(now.Add(-20 * time.Hour)): {Thanos: metadata.Thanos{Source: metadata.BucketRepairSource}}, + u.ULID(now.Add(-20 * time.Hour)): {Thanos: metadata.Thanos{Source: metadata.CompactorSource}}, + u.ULID(now.Add(-20 * time.Hour)): {Thanos: metadata.Thanos{Source: metadata.CompactorRepairSource}}, + } + + t.Run("consistency 0 (turned off)", func(t *testing.T) { + m := newTestFetcherMetrics() + expected := map[ulid.ULID]*metadata.Meta{} + // Copy all. + for _, id := range u.created { + expected[id] = input[id] + } + + reg := prometheus.NewRegistry() + f := NewConsistencyDelayMetaFilter(nil, 0*time.Second, reg) + testutil.Equals(t, map[string]float64{"consistency_delay_seconds": 0.0}, extprom.CurrentGaugeValuesFor(t, reg, "consistency_delay_seconds")) + + testutil.Ok(t, f.Filter(ctx, input, m.synced, false)) + testutil.Equals(t, 0.0, promtest.ToFloat64(m.synced.WithLabelValues(tooFreshMeta))) + testutil.Equals(t, expected, input) + }) + + t.Run("consistency 30m.", func(t *testing.T) { + m := newTestFetcherMetrics() + expected := map[ulid.ULID]*metadata.Meta{} + // Only certain sources and those with 30m or more age go through. + for i, id := range u.created { + // Younger than 30m. + if i < 13 { + if input[id].Thanos.Source != metadata.BucketRepairSource && + input[id].Thanos.Source != metadata.CompactorSource && + input[id].Thanos.Source != metadata.CompactorRepairSource { + continue + } + } + expected[id] = input[id] + } + + reg := prometheus.NewRegistry() + f := NewConsistencyDelayMetaFilter(nil, 30*time.Minute, reg) + testutil.Equals(t, map[string]float64{"consistency_delay_seconds": (30 * time.Minute).Seconds()}, extprom.CurrentGaugeValuesFor(t, reg, "consistency_delay_seconds")) + + testutil.Ok(t, f.Filter(ctx, input, m.synced, false)) + testutil.Equals(t, float64(len(u.created)-len(expected)), promtest.ToFloat64(m.synced.WithLabelValues(tooFreshMeta))) + testutil.Equals(t, expected, input) + }) +} + +func TestIgnoreDeletionMarkFilter_Filter(t *testing.T) { + objtesting.ForeachStore(t, func(t *testing.T, bkt objstore.Bucket) { + ctx, cancel := context.WithTimeout(context.Background(), 120*time.Second) + defer cancel() + + now := time.Now() + f := &IgnoreDeletionMarkFilter{ + logger: log.NewNopLogger(), + bkt: bkt, + delay: 48 * time.Hour, + } + + shouldFetch := &metadata.DeletionMark{ + ID: ULID(1), + DeletionTime: now.Add(-15 * time.Hour).Unix(), + Version: 1, + } + + shouldIgnore := &metadata.DeletionMark{ + ID: ULID(2), + DeletionTime: now.Add(-60 * time.Hour).Unix(), + Version: 1, + } + + var buf bytes.Buffer + testutil.Ok(t, json.NewEncoder(&buf).Encode(&shouldFetch)) + testutil.Ok(t, bkt.Upload(ctx, path.Join(shouldFetch.ID.String(), metadata.DeletionMarkFilename), &buf)) + + testutil.Ok(t, json.NewEncoder(&buf).Encode(&shouldIgnore)) + testutil.Ok(t, bkt.Upload(ctx, path.Join(shouldIgnore.ID.String(), metadata.DeletionMarkFilename), &buf)) + + testutil.Ok(t, bkt.Upload(ctx, path.Join(ULID(3).String(), metadata.DeletionMarkFilename), bytes.NewBufferString("not a valid deletion-mark.json"))) + + input := map[ulid.ULID]*metadata.Meta{ + ULID(1): {}, + ULID(2): {}, + ULID(3): {}, + ULID(4): {}, + } + + expected := map[ulid.ULID]*metadata.Meta{ + ULID(1): {}, + ULID(3): {}, + ULID(4): {}, + } + + m := newTestFetcherMetrics() + testutil.Ok(t, f.Filter(ctx, input, m.synced, false)) + testutil.Equals(t, 1.0, promtest.ToFloat64(m.synced.WithLabelValues(markedForDeletionMeta))) + testutil.Equals(t, expected, input) + }) +} diff --git a/pkg/block/metadata/deletionmark.go b/pkg/block/metadata/deletionmark.go new file mode 100644 index 00000000000..bda97e92c6c --- /dev/null +++ b/pkg/block/metadata/deletionmark.go @@ -0,0 +1,76 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +package metadata + +import ( + "context" + "encoding/json" + "io/ioutil" + "path" + + "github.com/go-kit/kit/log" + "github.com/oklog/ulid" + "github.com/pkg/errors" + "github.com/thanos-io/thanos/pkg/objstore" + "github.com/thanos-io/thanos/pkg/runutil" +) + +const ( + // DeletionMarkFilename is the known json filename to store details about when block is marked for deletion. + DeletionMarkFilename = "deletion-mark.json" + + // DeletionMarkVersion1 is the version of deletion-mark file supported by Thanos. + DeletionMarkVersion1 = 1 +) + +// ErrorDeletionMarkNotFound is the error when deletion-mark.json file is not found. +var ErrorDeletionMarkNotFound = errors.New("deletion-mark.json not found") + +// ErrorUnmarshalDeletionMark is the error when unmarshalling deletion-mark.json file. +// This error can occur because deletion-mark.json has been partially uploaded to block storage +// or the deletion-mark.json file is not a valid json file. +var ErrorUnmarshalDeletionMark = errors.New("unmarshal deletion-mark.json") + +// DeletionMark stores block id and when block was marked for deletion. +type DeletionMark struct { + // ID of the tsdb block. + ID ulid.ULID `json:"id"` + + // DeletionTime is a unix timestamp of when the block was marked to be deleted. + DeletionTime int64 `json:"deletion_time"` + + // Version of the file. + Version int `json:"version"` +} + +// ReadDeletionMark reads the given deletion mark file from /deletion-mark.json in bucket. +func ReadDeletionMark(ctx context.Context, bkt objstore.BucketReader, logger log.Logger, dir string) (*DeletionMark, error) { + deletionMarkFile := path.Join(dir, DeletionMarkFilename) + + r, err := bkt.Get(ctx, deletionMarkFile) + if err != nil { + if bkt.IsObjNotFoundErr(err) { + return nil, ErrorDeletionMarkNotFound + } + return nil, errors.Wrapf(err, "get file: %s", deletionMarkFile) + } + + defer runutil.CloseWithLogOnErr(logger, r, "close bkt deletion-mark reader") + + metaContent, err := ioutil.ReadAll(r) + if err != nil { + return nil, errors.Wrapf(err, "read file: %s", deletionMarkFile) + } + + deletionMark := DeletionMark{} + if err := json.Unmarshal(metaContent, &deletionMark); err != nil { + return nil, errors.Wrapf(ErrorUnmarshalDeletionMark, "file: %s; err: %v", deletionMarkFile, err.Error()) + } + + if deletionMark.Version != DeletionMarkVersion1 { + return nil, errors.Errorf("unexpected deletion-mark file version %d", deletionMark.Version) + } + + return &deletionMark, nil +} diff --git a/pkg/block/metadata/deletionmark_test.go b/pkg/block/metadata/deletionmark_test.go new file mode 100644 index 00000000000..73f632e9af4 --- /dev/null +++ b/pkg/block/metadata/deletionmark_test.go @@ -0,0 +1,78 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +package metadata + +import ( + "bytes" + "context" + "encoding/json" + "io/ioutil" + "os" + "path" + "testing" + "time" + + "github.com/fortytw2/leaktest" + "github.com/oklog/ulid" + "github.com/pkg/errors" + "github.com/thanos-io/thanos/pkg/objstore/inmem" + "github.com/thanos-io/thanos/pkg/testutil" +) + +func TestReadDeletionMark(t *testing.T) { + defer leaktest.CheckTimeout(t, 10*time.Second)() + + ctx := context.Background() + + tmpDir, err := ioutil.TempDir("", "test-read-deletion-mark") + testutil.Ok(t, err) + defer func() { testutil.Ok(t, os.RemoveAll(tmpDir)) }() + + bkt := inmem.NewBucket() + { + blockWithoutDeletionMark := ulid.MustNew(uint64(1), nil) + _, err := ReadDeletionMark(ctx, bkt, nil, path.Join(tmpDir, blockWithoutDeletionMark.String())) + + testutil.NotOk(t, err) + testutil.Equals(t, ErrorDeletionMarkNotFound, err) + } + { + blockWithPartialDeletionMark := ulid.MustNew(uint64(2), nil) + + testutil.Ok(t, bkt.Upload(ctx, path.Join(tmpDir, blockWithPartialDeletionMark.String(), DeletionMarkFilename), bytes.NewBufferString("not a valid deletion-mark.json"))) + _, err = ReadDeletionMark(ctx, bkt, nil, path.Join(tmpDir, blockWithPartialDeletionMark.String())) + + testutil.NotOk(t, err) + testutil.Equals(t, ErrorUnmarshalDeletionMark, errors.Cause(err)) + } + { + blockWithDifferentVersionDeletionMark := ulid.MustNew(uint64(3), nil) + var buf bytes.Buffer + testutil.Ok(t, json.NewEncoder(&buf).Encode(&DeletionMark{ + ID: blockWithDifferentVersionDeletionMark, + DeletionTime: time.Now().Unix(), + Version: 2, + })) + + testutil.Ok(t, bkt.Upload(ctx, path.Join(tmpDir, blockWithDifferentVersionDeletionMark.String(), DeletionMarkFilename), &buf)) + _, err = ReadDeletionMark(ctx, bkt, nil, path.Join(tmpDir, blockWithDifferentVersionDeletionMark.String())) + + testutil.NotOk(t, err) + testutil.Equals(t, "unexpected deletion-mark file version 2", err.Error()) + } + { + blockWithValidDeletionMark := ulid.MustNew(uint64(3), nil) + var buf bytes.Buffer + testutil.Ok(t, json.NewEncoder(&buf).Encode(&DeletionMark{ + ID: blockWithValidDeletionMark, + DeletionTime: time.Now().Unix(), + Version: 1, + })) + + testutil.Ok(t, bkt.Upload(ctx, path.Join(tmpDir, blockWithValidDeletionMark.String(), DeletionMarkFilename), &buf)) + _, err = ReadDeletionMark(ctx, bkt, nil, path.Join(tmpDir, blockWithValidDeletionMark.String())) + + testutil.Ok(t, err) + } +} diff --git a/pkg/cacheutil/memcached_client.go b/pkg/cacheutil/memcached_client.go index 2785f59d004..9c522bcc7ca 100644 --- a/pkg/cacheutil/memcached_client.go +++ b/pkg/cacheutil/memcached_client.go @@ -13,16 +13,19 @@ import ( "github.com/go-kit/kit/log/level" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/thanos-io/thanos/pkg/discovery/dns" "github.com/thanos-io/thanos/pkg/extprom" "github.com/thanos-io/thanos/pkg/gate" + "github.com/thanos-io/thanos/pkg/model" "github.com/thanos-io/thanos/pkg/tracing" yaml "gopkg.in/yaml.v2" ) const ( - opSet = "set" - opGetMulti = "getmulti" + opSet = "set" + opGetMulti = "getmulti" + reasonMaxItemSize = "max-item-size" ) var ( @@ -34,6 +37,7 @@ var ( MaxIdleConnections: 100, MaxAsyncConcurrency: 20, MaxAsyncBufferSize: 10000, + MaxItemSize: model.Bytes(1024 * 1024), MaxGetMultiConcurrency: 100, MaxGetMultiBatchSize: 0, DNSProviderUpdateInterval: 10 * time.Second, @@ -87,6 +91,11 @@ type MemcachedClientConfig struct { // running GetMulti() operations. If set to 0, concurrency is unlimited. MaxGetMultiConcurrency int `yaml:"max_get_multi_concurrency"` + // MaxItemSize specifies the maximum size of an item stored in memcached. Bigger + // items are skipped to be stored by the client. If set to 0, no maximum size is + // enforced. + MaxItemSize model.Bytes `yaml:"max_item_size"` + // MaxGetMultiBatchSize specifies the maximum number of keys a single underlying // GetMulti() should run. If more keys are specified, internally keys are splitted // into multiple batches and fetched concurrently, honoring MaxGetMultiConcurrency @@ -139,6 +148,7 @@ type memcachedClient struct { // Tracked metrics. operations *prometheus.CounterVec failures *prometheus.CounterVec + skipped *prometheus.CounterVec duration *prometheus.HistogramVec } @@ -202,29 +212,31 @@ func newMemcachedClient( ), } - c.operations = prometheus.NewCounterVec(prometheus.CounterOpts{ + c.operations = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_memcached_operations_total", Help: "Total number of operations against memcached.", ConstLabels: prometheus.Labels{"name": name}, }, []string{"operation"}) - c.failures = prometheus.NewCounterVec(prometheus.CounterOpts{ + c.failures = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_memcached_operation_failures_total", Help: "Total number of operations against memcached that failed.", ConstLabels: prometheus.Labels{"name": name}, }, []string{"operation"}) - c.duration = prometheus.NewHistogramVec(prometheus.HistogramOpts{ + c.skipped = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ + Name: "thanos_memcached_operation_skipped_total", + Help: "Total number of operations against memcached that have been skipped.", + ConstLabels: prometheus.Labels{"name": name}, + }, []string{"operation", "reason"}) + + c.duration = promauto.With(reg).NewHistogramVec(prometheus.HistogramOpts{ Name: "thanos_memcached_operation_duration_seconds", Help: "Duration of operations against memcached.", ConstLabels: prometheus.Labels{"name": name}, Buckets: []float64{0.001, 0.005, 0.01, 0.025, 0.05, 0.1, 0.2, 0.5, 1}, }, []string{"operation"}) - if reg != nil { - reg.MustRegister(c.operations, c.failures, c.duration) - } - // As soon as the client is created it must ensure that memcached server // addresses are resolved, so we're going to trigger an initial addresses // resolution here. @@ -252,21 +264,27 @@ func (c *memcachedClient) Stop() { c.workers.Wait() } -func (c *memcachedClient) SetAsync(ctx context.Context, key string, value []byte, ttl time.Duration) error { +func (c *memcachedClient) SetAsync(ctx context.Context, key string, value []byte, ttl time.Duration) (err error) { + // Skip hitting memcached at all if the item is bigger than the max allowed size. + if c.config.MaxItemSize > 0 && uint64(len(value)) > uint64(c.config.MaxItemSize) { + c.skipped.WithLabelValues(opSet, reasonMaxItemSize).Inc() + return nil + } + return c.enqueueAsync(func() { start := time.Now() c.operations.WithLabelValues(opSet).Inc() - span, _ := tracing.StartSpan(ctx, "memcached_set") - err := c.client.Set(&memcache.Item{ - Key: key, - Value: value, - Expiration: int32(time.Now().Add(ttl).Unix()), + tracing.DoInSpan(ctx, "memcached_set", func(ctx context.Context) { + err = c.client.Set(&memcache.Item{ + Key: key, + Value: value, + Expiration: int32(time.Now().Add(ttl).Unix()), + }) }) - span.Finish() if err != nil { c.failures.WithLabelValues(opSet).Inc() - level.Warn(c.logger).Log("msg", "failed to store item to memcached", "key", key, "err", err) + level.Warn(c.logger).Log("msg", "failed to store item to memcached", "key", key, "sizeBytes", len(value), "err", err) return } @@ -275,9 +293,13 @@ func (c *memcachedClient) SetAsync(ctx context.Context, key string, value []byte } func (c *memcachedClient) GetMulti(ctx context.Context, keys []string) map[string][]byte { + if len(keys) == 0 { + return nil + } + batches, err := c.getMultiBatched(ctx, keys) if err != nil { - level.Warn(c.logger).Log("msg", "failed to fetch items from memcached", "err", err) + level.Warn(c.logger).Log("msg", "failed to fetch items from memcached", "numKeys", len(keys), "firstKey", keys[0], "err", err) // In case we have both results and an error, it means some batch requests // failed and other succeeded. In this case we prefer to log it and move on, @@ -358,13 +380,14 @@ func (c *memcachedClient) getMultiBatched(ctx context.Context, keys []string) ([ return items, lastErr } -func (c *memcachedClient) getMultiSingle(ctx context.Context, keys []string) (map[string]*memcache.Item, error) { +func (c *memcachedClient) getMultiSingle(ctx context.Context, keys []string) (items map[string]*memcache.Item, err error) { // Wait until we get a free slot from the gate, if the max // concurrency should be enforced. if c.config.MaxGetMultiConcurrency > 0 { - span, _ := tracing.StartSpan(ctx, "memcached_getmulti_gate_ismyturn") - err := c.getMultiGate.IsMyTurn(ctx) - span.Finish() + tracing.DoInSpan(ctx, "memcached_getmulti_gate_ismyturn", func(ctx context.Context) { + // TODO(bwplotka): Consider putting span directly in gate. + err = c.getMultiGate.IsMyTurn(ctx) + }) if err != nil { return nil, errors.Wrapf(err, "failed to wait for turn") } @@ -373,10 +396,9 @@ func (c *memcachedClient) getMultiSingle(ctx context.Context, keys []string) (ma start := time.Now() c.operations.WithLabelValues(opGetMulti).Inc() - - span, _ := tracing.StartSpan(ctx, "memcached_getmulti") - items, err := c.client.GetMulti(keys) - span.Finish() + tracing.DoInSpan(ctx, "memcached_getmulti", func(ctx context.Context) { + items, err = c.client.GetMulti(keys) + }) if err != nil { c.failures.WithLabelValues(opGetMulti).Inc() } else { diff --git a/pkg/cacheutil/memcached_client_test.go b/pkg/cacheutil/memcached_client_test.go index cfba6fb4add..ede486a1a13 100644 --- a/pkg/cacheutil/memcached_client_test.go +++ b/pkg/cacheutil/memcached_client_test.go @@ -5,7 +5,6 @@ package cacheutil import ( "context" - "errors" "sync" "testing" "time" @@ -13,7 +12,9 @@ import ( "github.com/bradfitz/gomemcache/memcache" "github.com/fortytw2/leaktest" "github.com/go-kit/kit/log" + "github.com/pkg/errors" prom_testutil "github.com/prometheus/client_golang/prometheus/testutil" + "github.com/thanos-io/thanos/pkg/model" "github.com/thanos-io/thanos/pkg/testutil" ) @@ -76,6 +77,7 @@ addresses: testutil.Equals(t, defaultMemcachedClientConfig.DNSProviderUpdateInterval, cache.config.DNSProviderUpdateInterval) testutil.Equals(t, defaultMemcachedClientConfig.MaxGetMultiConcurrency, cache.config.MaxGetMultiConcurrency) testutil.Equals(t, defaultMemcachedClientConfig.MaxGetMultiBatchSize, cache.config.MaxGetMultiBatchSize) + testutil.Equals(t, defaultMemcachedClientConfig.MaxItemSize, cache.config.MaxItemSize) // Should instance a memcached client with configured YAML config. conf = []byte(` @@ -87,6 +89,7 @@ max_idle_connections: 1 max_async_concurrency: 1 max_async_buffer_size: 1 max_get_multi_concurrency: 1 +max_item_size: 1MiB max_get_multi_batch_size: 1 dns_provider_update_interval: 1s `) @@ -102,6 +105,7 @@ dns_provider_update_interval: 1s testutil.Equals(t, 1*time.Second, cache.config.DNSProviderUpdateInterval) testutil.Equals(t, 1, cache.config.MaxGetMultiConcurrency) testutil.Equals(t, 1, cache.config.MaxGetMultiBatchSize) + testutil.Equals(t, model.Bytes(1024*1024), cache.config.MaxItemSize) } func TestMemcachedClient_SetAsync(t *testing.T) { @@ -120,9 +124,43 @@ func TestMemcachedClient_SetAsync(t *testing.T) { testutil.Ok(t, client.SetAsync(ctx, "key-2", []byte("value-2"), time.Second)) testutil.Ok(t, backendMock.waitItems(2)) + actual, err := client.getMultiSingle(ctx, []string{"key-1", "key-2"}) + testutil.Ok(t, err) + testutil.Equals(t, []byte("value-1"), actual["key-1"].Value) + testutil.Equals(t, []byte("value-2"), actual["key-2"].Value) + testutil.Equals(t, 2.0, prom_testutil.ToFloat64(client.operations.WithLabelValues(opSet))) - testutil.Equals(t, 0.0, prom_testutil.ToFloat64(client.operations.WithLabelValues(opGetMulti))) + testutil.Equals(t, 1.0, prom_testutil.ToFloat64(client.operations.WithLabelValues(opGetMulti))) + testutil.Equals(t, 0.0, prom_testutil.ToFloat64(client.failures.WithLabelValues(opSet))) + testutil.Equals(t, 0.0, prom_testutil.ToFloat64(client.skipped.WithLabelValues(opSet, reasonMaxItemSize))) +} + +func TestMemcachedClient_SetAsyncWithCustomMaxItemSize(t *testing.T) { + defer leaktest.CheckTimeout(t, 10*time.Second)() + + ctx := context.Background() + config := defaultMemcachedClientConfig + config.Addresses = []string{"127.0.0.1:11211"} + config.MaxItemSize = model.Bytes(10) + backendMock := newMemcachedClientBackendMock() + + client, err := prepare(config, backendMock) + testutil.Ok(t, err) + defer client.Stop() + + testutil.Ok(t, client.SetAsync(ctx, "key-1", []byte("value-1"), time.Second)) + testutil.Ok(t, client.SetAsync(ctx, "key-2", []byte("value-2-too-long-to-be-stored"), time.Second)) + testutil.Ok(t, backendMock.waitItems(1)) + + actual, err := client.getMultiSingle(ctx, []string{"key-1", "key-2"}) + testutil.Ok(t, err) + testutil.Equals(t, []byte("value-1"), actual["key-1"].Value) + testutil.Equals(t, (*memcache.Item)(nil), actual["key-2"]) + + testutil.Equals(t, 1.0, prom_testutil.ToFloat64(client.operations.WithLabelValues(opSet))) + testutil.Equals(t, 1.0, prom_testutil.ToFloat64(client.operations.WithLabelValues(opGetMulti))) testutil.Equals(t, 0.0, prom_testutil.ToFloat64(client.failures.WithLabelValues(opSet))) + testutil.Equals(t, 1.0, prom_testutil.ToFloat64(client.skipped.WithLabelValues(opSet, reasonMaxItemSize))) } func TestMemcachedClient_GetMulti(t *testing.T) { diff --git a/pkg/cacheutil/memcached_server_selector_test.go b/pkg/cacheutil/memcached_server_selector_test.go index a8da4346ca8..ab5848bb077 100644 --- a/pkg/cacheutil/memcached_server_selector_test.go +++ b/pkg/cacheutil/memcached_server_selector_test.go @@ -12,6 +12,7 @@ import ( "github.com/bradfitz/gomemcache/memcache" "github.com/facette/natsort" "github.com/fortytw2/leaktest" + "github.com/pkg/errors" "github.com/thanos-io/thanos/pkg/testutil" ) @@ -144,7 +145,7 @@ func TestMemcachedJumpHashSelector_PickServer_ShouldEvenlyDistributeKeysToServer for addr, count := range distribution { if count < minKeysPerServer { - testutil.Ok(t, fmt.Errorf("expected %s to have received at least %d keys instead it received %d", addr, minKeysPerServer, count)) + testutil.Ok(t, errors.Errorf("expected %s to have received at least %d keys instead it received %d", addr, minKeysPerServer, count)) } } } @@ -199,7 +200,7 @@ func TestMemcachedJumpHashSelector_PickServer_ShouldUseConsistentHashing(t *test maxExpectedMovedPerc := (1.0 / float64(len(servers))) + 0.02 maxExpectedMoved := int(float64(numKeys) * maxExpectedMovedPerc) if moved > maxExpectedMoved { - testutil.Ok(t, fmt.Errorf("expected resharding moved no more then %d keys while %d have been moved", maxExpectedMoved, moved)) + testutil.Ok(t, errors.Errorf("expected resharding moved no more then %d keys while %d have been moved", maxExpectedMoved, moved)) } } diff --git a/pkg/compact/blocks_cleaner.go b/pkg/compact/blocks_cleaner.go new file mode 100644 index 00000000000..820346a1bf9 --- /dev/null +++ b/pkg/compact/blocks_cleaner.go @@ -0,0 +1,58 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +package compact + +import ( + "context" + "time" + + "github.com/go-kit/kit/log" + "github.com/go-kit/kit/log/level" + "github.com/pkg/errors" + "github.com/prometheus/client_golang/prometheus" + "github.com/thanos-io/thanos/pkg/block" + "github.com/thanos-io/thanos/pkg/objstore" +) + +// BlocksCleaner is a struct that deletes blocks from bucket which are marked for deletion. +type BlocksCleaner struct { + logger log.Logger + ignoreDeletionMarkFilter *block.IgnoreDeletionMarkFilter + bkt objstore.Bucket + deleteDelay time.Duration + blocksCleaned prometheus.Counter + blockCleanupFailures prometheus.Counter +} + +// NewBlocksCleaner creates a new BlocksCleaner. +func NewBlocksCleaner(logger log.Logger, bkt objstore.Bucket, ignoreDeletionMarkFilter *block.IgnoreDeletionMarkFilter, deleteDelay time.Duration, blocksCleaned prometheus.Counter, blockCleanupFailures prometheus.Counter) *BlocksCleaner { + return &BlocksCleaner{ + logger: logger, + ignoreDeletionMarkFilter: ignoreDeletionMarkFilter, + bkt: bkt, + deleteDelay: deleteDelay, + blocksCleaned: blocksCleaned, + blockCleanupFailures: blockCleanupFailures, + } +} + +// DeleteMarkedBlocks uses ignoreDeletionMarkFilter to delete the blocks that are marked for deletion. +func (s *BlocksCleaner) DeleteMarkedBlocks(ctx context.Context) error { + level.Info(s.logger).Log("msg", "started cleaning of blocks marked for deletion") + + deletionMarkMap := s.ignoreDeletionMarkFilter.DeletionMarkBlocks() + for _, deletionMark := range deletionMarkMap { + if time.Since(time.Unix(deletionMark.DeletionTime, 0)).Seconds() > s.deleteDelay.Seconds() { + if err := block.Delete(ctx, s.logger, s.bkt, deletionMark.ID); err != nil { + s.blockCleanupFailures.Inc() + return errors.Wrap(err, "delete block") + } + s.blocksCleaned.Inc() + level.Info(s.logger).Log("msg", "deleted block marked for deletion", "block", deletionMark.ID) + } + } + + level.Info(s.logger).Log("msg", "cleaning of blocks marked for deletion done") + return nil +} diff --git a/pkg/compact/clean.go b/pkg/compact/clean.go index af681a940e4..14fdfc4d7cb 100644 --- a/pkg/compact/clean.go +++ b/pkg/compact/clean.go @@ -21,7 +21,7 @@ const ( PartialUploadThresholdAge = 2 * 24 * time.Hour ) -func BestEffortCleanAbortedPartialUploads(ctx context.Context, logger log.Logger, fetcher block.MetadataFetcher, bkt objstore.Bucket, deleteAttempts prometheus.Counter) { +func BestEffortCleanAbortedPartialUploads(ctx context.Context, logger log.Logger, fetcher block.MetadataFetcher, bkt objstore.Bucket, deleteAttempts prometheus.Counter, blocksMarkedForDeletion prometheus.Counter) { level.Info(logger).Log("msg", "started cleaning of aborted partial uploads") _, partial, err := fetcher.Fetch(ctx) if err != nil { @@ -41,10 +41,11 @@ func BestEffortCleanAbortedPartialUploads(ctx context.Context, logger log.Logger } deleteAttempts.Inc() - if err := block.Delete(ctx, logger, bkt, id); err != nil { + if err := block.MarkForDeletion(ctx, logger, bkt, id); err != nil { level.Warn(logger).Log("msg", "failed to delete aborted partial upload; skipping", "block", id, "thresholdAge", PartialUploadThresholdAge, "err", err) return } + blocksMarkedForDeletion.Inc() level.Info(logger).Log("msg", "deleted aborted partial upload", "block", id, "thresholdAge", PartialUploadThresholdAge) } level.Info(logger).Log("msg", "cleaning of aborted partial uploads done") diff --git a/pkg/compact/clean_test.go b/pkg/compact/clean_test.go index 85654f8c8a3..9a7889ead8e 100644 --- a/pkg/compact/clean_test.go +++ b/pkg/compact/clean_test.go @@ -14,6 +14,7 @@ import ( "github.com/go-kit/kit/log" "github.com/oklog/ulid" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" promtest "github.com/prometheus/client_golang/prometheus/testutil" "github.com/thanos-io/thanos/pkg/block" "github.com/thanos-io/thanos/pkg/block/metadata" @@ -28,7 +29,7 @@ func TestBestEffortCleanAbortedPartialUploads(t *testing.T) { bkt := inmem.NewBucket() logger := log.NewNopLogger() - metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil) + metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil, nil, nil) testutil.Ok(t, err) // 1. No meta, old block, should be removed. @@ -57,13 +58,19 @@ func TestBestEffortCleanAbortedPartialUploads(t *testing.T) { testutil.Ok(t, bkt.Upload(ctx, path.Join(shouldIgnoreID2.String(), "chunks", "000001"), &fakeChunk)) - deleteAttempts := prometheus.NewCounter(prometheus.CounterOpts{}) - BestEffortCleanAbortedPartialUploads(ctx, logger, metaFetcher, bkt, deleteAttempts) + deleteAttempts := promauto.With(nil).NewCounter(prometheus.CounterOpts{}) + blocksMarkedForDeletion := promauto.With(nil).NewCounter(prometheus.CounterOpts{}) + BestEffortCleanAbortedPartialUploads(ctx, logger, metaFetcher, bkt, deleteAttempts, blocksMarkedForDeletion) testutil.Equals(t, 1.0, promtest.ToFloat64(deleteAttempts)) exists, err := bkt.Exists(ctx, path.Join(shouldDeleteID.String(), "chunks", "000001")) testutil.Ok(t, err) - testutil.Equals(t, false, exists) + testutil.Equals(t, true, exists) + + exists, err = bkt.Exists(ctx, path.Join(shouldDeleteID.String(), metadata.DeletionMarkFilename)) + testutil.Ok(t, err) + testutil.Equals(t, true, exists) + testutil.Equals(t, 1.0, promtest.ToFloat64(blocksMarkedForDeletion)) exists, err = bkt.Exists(ctx, path.Join(shouldIgnoreID1.String(), "chunks", "000001")) testutil.Ok(t, err) diff --git a/pkg/compact/compact.go b/pkg/compact/compact.go index 8c02f11c008..24d2c86ce1e 100644 --- a/pkg/compact/compact.go +++ b/pkg/compact/compact.go @@ -18,6 +18,7 @@ import ( "github.com/oklog/ulid" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/prometheus/pkg/labels" "github.com/prometheus/prometheus/tsdb" terrors "github.com/prometheus/prometheus/tsdb/errors" @@ -49,6 +50,8 @@ type Syncer struct { metrics *syncerMetrics acceptMalformedIndex bool enableVerticalCompaction bool + duplicateBlocksFilter *block.DeduplicateFilter + ignoreDeletionMarkFilter *block.IgnoreDeletionMarkFilter } type syncerMetrics struct { @@ -61,81 +64,72 @@ type syncerMetrics struct { compactionRunsCompleted *prometheus.CounterVec compactionFailures *prometheus.CounterVec verticalCompactions *prometheus.CounterVec + blocksMarkedForDeletion prometheus.Counter } -func newSyncerMetrics(reg prometheus.Registerer) *syncerMetrics { +func newSyncerMetrics(reg prometheus.Registerer, blocksMarkedForDeletion prometheus.Counter) *syncerMetrics { var m syncerMetrics - m.garbageCollectedBlocks = prometheus.NewCounter(prometheus.CounterOpts{ + m.garbageCollectedBlocks = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_compact_garbage_collected_blocks_total", Help: "Total number of deleted blocks by compactor.", }) - m.garbageCollections = prometheus.NewCounter(prometheus.CounterOpts{ + m.garbageCollections = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_compact_garbage_collection_total", Help: "Total number of garbage collection operations.", }) - m.garbageCollectionFailures = prometheus.NewCounter(prometheus.CounterOpts{ + m.garbageCollectionFailures = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_compact_garbage_collection_failures_total", Help: "Total number of failed garbage collection operations.", }) - m.garbageCollectionDuration = prometheus.NewHistogram(prometheus.HistogramOpts{ + m.garbageCollectionDuration = promauto.With(reg).NewHistogram(prometheus.HistogramOpts{ Name: "thanos_compact_garbage_collection_duration_seconds", Help: "Time it took to perform garbage collection iteration.", Buckets: []float64{0.01, 0.1, 0.3, 0.6, 1, 3, 6, 9, 20, 30, 60, 90, 120, 240, 360, 720}, }) - m.compactions = prometheus.NewCounterVec(prometheus.CounterOpts{ + m.compactions = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_compact_group_compactions_total", Help: "Total number of group compaction attempts that resulted in a new block.", }, []string{"group"}) - m.compactionRunsStarted = prometheus.NewCounterVec(prometheus.CounterOpts{ + m.compactionRunsStarted = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_compact_group_compaction_runs_started_total", Help: "Total number of group compaction attempts.", }, []string{"group"}) - m.compactionRunsCompleted = prometheus.NewCounterVec(prometheus.CounterOpts{ + m.compactionRunsCompleted = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_compact_group_compaction_runs_completed_total", Help: "Total number of group completed compaction runs. This also includes compactor group runs that resulted with no compaction.", }, []string{"group"}) - m.compactionFailures = prometheus.NewCounterVec(prometheus.CounterOpts{ + m.compactionFailures = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_compact_group_compactions_failures_total", Help: "Total number of failed group compactions.", }, []string{"group"}) - m.verticalCompactions = prometheus.NewCounterVec(prometheus.CounterOpts{ + m.verticalCompactions = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_compact_group_vertical_compactions_total", Help: "Total number of group compaction attempts that resulted in a new block based on overlapping blocks.", }, []string{"group"}) + m.blocksMarkedForDeletion = blocksMarkedForDeletion - if reg != nil { - reg.MustRegister( - m.garbageCollectedBlocks, - m.garbageCollections, - m.garbageCollectionFailures, - m.garbageCollectionDuration, - m.compactions, - m.compactionRunsStarted, - m.compactionRunsCompleted, - m.compactionFailures, - m.verticalCompactions, - ) - } return &m } // NewMetaSyncer returns a new Syncer for the given Bucket and directory. // Blocks must be at least as old as the sync delay for being considered. -func NewSyncer(logger log.Logger, reg prometheus.Registerer, bkt objstore.Bucket, fetcher block.MetadataFetcher, blockSyncConcurrency int, acceptMalformedIndex bool, enableVerticalCompaction bool) (*Syncer, error) { +func NewSyncer(logger log.Logger, reg prometheus.Registerer, bkt objstore.Bucket, fetcher block.MetadataFetcher, duplicateBlocksFilter *block.DeduplicateFilter, ignoreDeletionMarkFilter *block.IgnoreDeletionMarkFilter, blocksMarkedForDeletion prometheus.Counter, blockSyncConcurrency int, acceptMalformedIndex bool, enableVerticalCompaction bool) (*Syncer, error) { if logger == nil { logger = log.NewNopLogger() } return &Syncer{ - logger: logger, - reg: reg, - bkt: bkt, - fetcher: fetcher, - blocks: map[ulid.ULID]*metadata.Meta{}, - metrics: newSyncerMetrics(reg), - blockSyncConcurrency: blockSyncConcurrency, - acceptMalformedIndex: acceptMalformedIndex, + logger: logger, + reg: reg, + bkt: bkt, + fetcher: fetcher, + blocks: map[ulid.ULID]*metadata.Meta{}, + metrics: newSyncerMetrics(reg, blocksMarkedForDeletion), + duplicateBlocksFilter: duplicateBlocksFilter, + ignoreDeletionMarkFilter: ignoreDeletionMarkFilter, + blockSyncConcurrency: blockSyncConcurrency, + acceptMalformedIndex: acceptMalformedIndex, // The syncer offers an option to enable vertical compaction, even if it's // not currently used by Thanos, because the compactor is also used by Cortex // which needs vertical compaction. @@ -155,7 +149,7 @@ func UntilNextDownsampling(m *metadata.Meta) (time.Duration, error) { case downsample.ResLevel0: return time.Duration(downsample.DownsampleRange0*time.Millisecond) - timeRange, nil default: - panic(fmt.Errorf("invalid resolution %v", m.Thanos.Downsample.Resolution)) + panic(errors.Errorf("invalid resolution %v", m.Thanos.Downsample.Resolution)) } } @@ -193,10 +187,11 @@ func (s *Syncer) Groups() (res []*Group, err error) { groupKey := GroupKey(m.Thanos) g, ok := groups[groupKey] if !ok { + lbls := labels.FromMap(m.Thanos.Labels) g, err = newGroup( - log.With(s.logger, "compactionGroup", groupKey), + log.With(s.logger, "group", fmt.Sprintf("%d@%v", m.Thanos.Downsample.Resolution, lbls.String()), "groupKey", groupKey), s.bkt, - labels.FromMap(m.Thanos.Labels), + lbls, m.Thanos.Downsample.Resolution, s.acceptMalformedIndex, s.enableVerticalCompaction, @@ -206,6 +201,7 @@ func (s *Syncer) Groups() (res []*Group, err error) { s.metrics.compactionFailures.WithLabelValues(groupKey), s.metrics.verticalCompactions.WithLabelValues(groupKey), s.metrics.garbageCollectedBlocks, + s.metrics.blocksMarkedForDeletion, ) if err != nil { return nil, errors.Wrap(err, "create compaction group") @@ -225,96 +221,26 @@ func (s *Syncer) Groups() (res []*Group, err error) { // GarbageCollect deletes blocks from the bucket if their data is available as part of a // block with a higher compaction level. +// Call to SyncMetas function is required to populate duplicateIDs in duplicateBlocksFilter. func (s *Syncer) GarbageCollect(ctx context.Context) error { s.mtx.Lock() defer s.mtx.Unlock() begin := time.Now() - // Run a separate round of garbage collections for each valid resolution. - for _, res := range []int64{ - downsample.ResLevel0, downsample.ResLevel1, downsample.ResLevel2, - } { - err := s.garbageCollect(ctx, res) - if err != nil { - s.metrics.garbageCollectionFailures.Inc() - } - s.metrics.garbageCollections.Inc() - s.metrics.garbageCollectionDuration.Observe(time.Since(begin).Seconds()) - - if err != nil { - return errors.Wrapf(err, "garbage collect resolution %d", res) - } - } - return nil -} - -func (s *Syncer) GarbageBlocks(resolution int64) (ids []ulid.ULID, err error) { - // Map each block to its highest priority parent. Initial blocks have themselves - // in their source section, i.e. are their own parent. - parents := map[ulid.ULID]ulid.ULID{} - - for id, meta := range s.blocks { - // Skip any block that has a different resolution. - if meta.Thanos.Downsample.Resolution != resolution { - continue - } - - // For each source block we contain, check whether we are the highest priority parent block. - for _, sid := range meta.Compaction.Sources { - pid, ok := parents[sid] - // No parents for the source block so far. - if !ok { - parents[sid] = id - continue - } - pmeta, ok := s.blocks[pid] - if !ok { - return nil, errors.Errorf("previous parent block %s not found", pid) - } - // The current block is the higher priority parent for the source if its - // compaction level is higher than that of the previously set parent. - // If compaction levels are equal, the more recent ULID wins. - // - // The ULID recency alone is not sufficient since races, e.g. induced - // by downtime of garbage collection, may re-compact blocks that are - // were already compacted into higher-level blocks multiple times. - level, plevel := meta.Compaction.Level, pmeta.Compaction.Level - - if level > plevel || (level == plevel && id.Compare(pid) > 0) { - parents[sid] = id - } - } - } - - // A block can safely be deleted if they are not the highest priority parent for - // any source block. - topParents := map[ulid.ULID]struct{}{} - for _, pid := range parents { - topParents[pid] = struct{}{} - } + duplicateIDs := s.duplicateBlocksFilter.DuplicateIDs() + deletionMarkMap := s.ignoreDeletionMarkFilter.DeletionMarkBlocks() - for id, meta := range s.blocks { - // Skip any block that has a different resolution. - if meta.Thanos.Downsample.Resolution != resolution { - continue - } - if _, ok := topParents[id]; ok { - continue + // GarbageIDs contains the duplicateIDs, since these blocks can be replaced with other blocks. + // We also remove ids present in deletionMarkMap since these blocks are already marked for deletion. + garbageIDs := []ulid.ULID{} + for _, id := range duplicateIDs { + if _, exists := deletionMarkMap[id]; !exists { + garbageIDs = append(garbageIDs, id) } - - ids = append(ids, id) - } - return ids, nil -} - -func (s *Syncer) garbageCollect(ctx context.Context, resolution int64) error { - garbageIds, err := s.GarbageBlocks(resolution) - if err != nil { - return err } - for _, id := range garbageIds { + for _, id := range garbageIDs { if ctx.Err() != nil { return ctx.Err() } @@ -322,19 +248,23 @@ func (s *Syncer) garbageCollect(ctx context.Context, resolution int64) error { // Spawn a new context so we always delete a block in full on shutdown. delCtx, cancel := context.WithTimeout(context.Background(), 5*time.Minute) - level.Info(s.logger).Log("msg", "deleting outdated block", "block", id) + level.Info(s.logger).Log("msg", "marking outdated block for deletion", "block", id) - err := block.Delete(delCtx, s.logger, s.bkt, id) + err := block.MarkForDeletion(delCtx, s.logger, s.bkt, id) cancel() if err != nil { + s.metrics.garbageCollectionFailures.Inc() return retry(errors.Wrapf(err, "delete block %s from bucket", id)) } + s.metrics.blocksMarkedForDeletion.Inc() // Immediately update our in-memory state so no further call to SyncMetas is needed // after running garbage collection. delete(s.blocks, id) s.metrics.garbageCollectedBlocks.Inc() } + s.metrics.garbageCollections.Inc() + s.metrics.garbageCollectionDuration.Observe(time.Since(begin).Seconds()) return nil } @@ -355,6 +285,7 @@ type Group struct { compactionFailures prometheus.Counter verticalCompactions prometheus.Counter groupGarbageCollectedBlocks prometheus.Counter + blocksMarkedForDeletion prometheus.Counter } // newGroup returns a new compaction group. @@ -371,6 +302,7 @@ func newGroup( compactionFailures prometheus.Counter, verticalCompactions prometheus.Counter, groupGarbageCollectedBlocks prometheus.Counter, + blocksMarkedForDeletion prometheus.Counter, ) (*Group, error) { if logger == nil { logger = log.NewNopLogger() @@ -389,6 +321,7 @@ func newGroup( compactionFailures: compactionFailures, verticalCompactions: verticalCompactions, groupGarbageCollectedBlocks: groupGarbageCollectedBlocks, + blocksMarkedForDeletion: blocksMarkedForDeletion, } return g, nil } @@ -503,7 +436,7 @@ func (e HaltError) Error() string { // IsHaltError returns true if the base error is a HaltError. // If a multierror is passed, any halt error will return true. func IsHaltError(err error) bool { - if multiErr, ok := err.(terrors.MultiError); ok { + if multiErr, ok := errors.Cause(err).(terrors.MultiError); ok { for _, err := range multiErr { if _, ok := errors.Cause(err).(HaltError); ok { return true @@ -584,7 +517,7 @@ func (cg *Group) areBlocksOverlapping(include *metadata.Meta, excludeDirs ...str } // RepairIssue347 repairs the https://github.com/prometheus/tsdb/issues/347 issue when having issue347Error. -func RepairIssue347(ctx context.Context, logger log.Logger, bkt objstore.Bucket, issue347Err error) error { +func RepairIssue347(ctx context.Context, logger log.Logger, bkt objstore.Bucket, blocksMarkedForDeletion prometheus.Counter, issue347Err error) error { ie, ok := errors.Cause(issue347Err).(Issue347Error) if !ok { return errors.Errorf("Given error is not an issue347 error: %v", issue347Err) @@ -635,10 +568,10 @@ func RepairIssue347(ctx context.Context, logger log.Logger, bkt objstore.Bucket, defer cancel() // TODO(bplotka): Issue with this will introduce overlap that will halt compactor. Automate that (fix duplicate overlaps caused by this). - if err := block.Delete(delCtx, logger, bkt, ie.id); err != nil { + if err := block.MarkForDeletion(delCtx, logger, bkt, ie.id); err != nil { return errors.Wrapf(err, "deleting old block %s failed. You need to delete this block manually", ie.id) } - + blocksMarkedForDeletion.Inc() return nil } @@ -649,6 +582,8 @@ func (cg *Group) compact(ctx context.Context, dir string, comp tsdb.Compactor) ( // Check for overlapped blocks. overlappingBlocks := false if err := cg.areBlocksOverlapping(nil); err != nil { + // TODO(bwplotka): It would really nice if we could still check for other overlaps than replica. In fact this should be checked + // in syncer itself. Otherwise with vertical compaction enabled we will sacrifice this important check. if !cg.enableVerticalCompaction { return false, ulid.ULID{}, halt(errors.Wrap(err, "pre compaction overlap check")) } @@ -678,6 +613,8 @@ func (cg *Group) compact(ctx context.Context, dir string, comp tsdb.Compactor) ( return false, ulid.ULID{}, nil } + level.Info(cg.logger).Log("msg", "compaction available and planned; downloading blocks", "plan", fmt.Sprintf("%v", plan)) + // Due to #183 we verify that none of the blocks in the plan have overlapping sources. // This is one potential source of how we could end up with duplicated chunks. uniqueSources := map[ulid.ULID]struct{}{} @@ -735,8 +672,7 @@ func (cg *Group) compact(ctx context.Context, dir string, comp tsdb.Compactor) ( "block id %s, try running with --debug.accept-malformed-index", id) } } - level.Debug(cg.logger).Log("msg", "downloaded and verified blocks", - "blocks", fmt.Sprintf("%v", plan), "duration", time.Since(begin)) + level.Info(cg.logger).Log("msg", "downloaded and verified blocks; compacting blocks", "plan", fmt.Sprintf("%v", plan), "duration", time.Since(begin)) begin = time.Now() @@ -766,7 +702,7 @@ func (cg *Group) compact(ctx context.Context, dir string, comp tsdb.Compactor) ( if overlappingBlocks { cg.verticalCompactions.Inc() } - level.Debug(cg.logger).Log("msg", "compacted blocks", + level.Info(cg.logger).Log("msg", "compacted blocks", "blocks", fmt.Sprintf("%v", plan), "duration", time.Since(begin), "overlapping_blocks", overlappingBlocks) bdir := filepath.Join(dir, compID.String()) @@ -808,7 +744,7 @@ func (cg *Group) compact(ctx context.Context, dir string, comp tsdb.Compactor) ( if err := block.Upload(ctx, cg.logger, cg.bkt, bdir); err != nil { return false, ulid.ULID{}, retry(errors.Wrapf(err, "upload of %s failed", compID)) } - level.Debug(cg.logger).Log("msg", "uploaded block", "result_block", compID, "duration", time.Since(begin)) + level.Info(cg.logger).Log("msg", "uploaded block", "result_block", compID, "duration", time.Since(begin)) // Delete the blocks we just compacted from the group and bucket so they do not get included // into the next planning cycle. @@ -836,10 +772,11 @@ func (cg *Group) deleteBlock(b string) error { // Spawn a new context so we always delete a block in full on shutdown. delCtx, cancel := context.WithTimeout(context.Background(), 5*time.Minute) defer cancel() - level.Info(cg.logger).Log("msg", "deleting compacted block", "old_block", id) - if err := block.Delete(delCtx, cg.logger, cg.bkt, id); err != nil { + level.Info(cg.logger).Log("msg", "marking compacted block for deletion", "old_block", id) + if err := block.MarkForDeletion(delCtx, cg.logger, cg.bkt, id); err != nil { return errors.Wrapf(err, "delete block %s from bucket", id) } + cg.blocksMarkedForDeletion.Inc() return nil } @@ -913,14 +850,14 @@ func (c *BucketCompactor) Compact(ctx context.Context) error { } if IsIssue347Error(err) { - if err := RepairIssue347(workCtx, c.logger, c.bkt, err); err == nil { + if err := RepairIssue347(workCtx, c.logger, c.bkt, c.sy.metrics.blocksMarkedForDeletion, err); err == nil { mtx.Lock() finishedAllGroups = false mtx.Unlock() continue } } - errChan <- errors.Wrap(err, fmt.Sprintf("compaction failed for group %s", g.Key())) + errChan <- errors.Wrapf(err, "group %s", g.Key()) return } }() diff --git a/pkg/compact/compact_e2e_test.go b/pkg/compact/compact_e2e_test.go index 56869e5bdc3..21de5cfca76 100644 --- a/pkg/compact/compact_e2e_test.go +++ b/pkg/compact/compact_e2e_test.go @@ -9,7 +9,6 @@ import ( "encoding/json" "fmt" "io/ioutil" - "math/rand" "os" "path" "path/filepath" @@ -19,12 +18,11 @@ import ( "github.com/go-kit/kit/log" "github.com/oklog/ulid" - "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" promtest "github.com/prometheus/client_golang/prometheus/testutil" "github.com/prometheus/prometheus/pkg/labels" "github.com/prometheus/prometheus/tsdb" - "github.com/prometheus/prometheus/tsdb/index" "github.com/thanos-io/thanos/pkg/block" "github.com/thanos-io/thanos/pkg/block/metadata" "github.com/thanos-io/thanos/pkg/objstore" @@ -91,10 +89,15 @@ func TestSyncer_GarbageCollect_e2e(t *testing.T) { testutil.Ok(t, bkt.Upload(ctx, path.Join(m.ULID.String(), metadata.MetaFilename), &buf)) } - metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil) + duplicateBlocksFilter := block.NewDeduplicateFilter() + metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil, []block.MetadataFilter{ + duplicateBlocksFilter, + }, nil) testutil.Ok(t, err) - sy, err := NewSyncer(nil, nil, bkt, metaFetcher, 1, false, false) + blocksMarkedForDeletion := promauto.With(nil).NewCounter(prometheus.CounterOpts{}) + ignoreDeletionMarkFilter := block.NewIgnoreDeletionMarkFilter(nil, nil, 48*time.Hour) + sy, err := NewSyncer(nil, nil, bkt, metaFetcher, duplicateBlocksFilter, ignoreDeletionMarkFilter, blocksMarkedForDeletion, 1, false, false) testutil.Ok(t, err) // Do one initial synchronization with the bucket. @@ -103,7 +106,16 @@ func TestSyncer_GarbageCollect_e2e(t *testing.T) { var rem []ulid.ULID err = bkt.Iter(ctx, "", func(n string) error { - rem = append(rem, ulid.MustParse(n[:len(n)-1])) + id := ulid.MustParse(n[:len(n)-1]) + deletionMarkFile := path.Join(id.String(), metadata.DeletionMarkFilename) + + exists, err := bkt.Exists(ctx, deletionMarkFile) + if err != nil { + return err + } + if !exists { + rem = append(rem, id) + } return nil }) testutil.Ok(t, err) @@ -164,10 +176,16 @@ func TestGroup_Compact_e2e(t *testing.T) { reg := prometheus.NewRegistry() - metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil) + ignoreDeletionMarkFilter := block.NewIgnoreDeletionMarkFilter(logger, bkt, 48*time.Hour) + duplicateBlocksFilter := block.NewDeduplicateFilter() + metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil, []block.MetadataFilter{ + ignoreDeletionMarkFilter, + duplicateBlocksFilter, + }, nil) testutil.Ok(t, err) - sy, err := NewSyncer(nil, nil, bkt, metaFetcher, 5, false, false) + blocksMarkedForDeletion := promauto.With(nil).NewCounter(prometheus.CounterOpts{}) + sy, err := NewSyncer(nil, nil, bkt, metaFetcher, duplicateBlocksFilter, ignoreDeletionMarkFilter, blocksMarkedForDeletion, 5, false, false) testutil.Ok(t, err) comp, err := tsdb.NewLeveledCompactor(ctx, reg, logger, []int64{1000, 3000}, nil) @@ -179,6 +197,7 @@ func TestGroup_Compact_e2e(t *testing.T) { // Compaction on empty should not fail. testutil.Ok(t, bComp.Compact(ctx)) testutil.Equals(t, 0.0, promtest.ToFloat64(sy.metrics.garbageCollectedBlocks)) + testutil.Equals(t, 0.0, promtest.ToFloat64(sy.metrics.blocksMarkedForDeletion)) testutil.Equals(t, 0.0, promtest.ToFloat64(sy.metrics.garbageCollectionFailures)) testutil.Equals(t, 0, MetricCount(sy.metrics.compactions)) testutil.Equals(t, 0, MetricCount(sy.metrics.compactionRunsStarted)) @@ -267,6 +286,7 @@ func TestGroup_Compact_e2e(t *testing.T) { testutil.Ok(t, bComp.Compact(ctx)) testutil.Equals(t, 5.0, promtest.ToFloat64(sy.metrics.garbageCollectedBlocks)) + testutil.Equals(t, 5.0, promtest.ToFloat64(sy.metrics.blocksMarkedForDeletion)) testutil.Equals(t, 0.0, promtest.ToFloat64(sy.metrics.garbageCollectionFailures)) testutil.Equals(t, 4, MetricCount(sy.metrics.compactions)) testutil.Equals(t, 1.0, promtest.ToFloat64(sy.metrics.compactions.WithLabelValues(GroupKey(metas[0].Thanos)))) @@ -382,7 +402,7 @@ func createAndUpload(t testing.TB, bkt objstore.Bucket, blocks []blockgenSpec) ( var id ulid.ULID var err error if b.numSamples == 0 { - id, err = createEmptyBlock(prepareDir, b.mint, b.maxt, b.extLset, b.res) + id, err = e2eutil.CreateEmptyBlock(prepareDir, b.mint, b.maxt, b.extLset, b.res) } else { id, err = e2eutil.CreateBlock(ctx, prepareDir, b.series, b.numSamples, b.mint, b.maxt, b.extLset, b.res) } @@ -396,56 +416,3 @@ func createAndUpload(t testing.TB, bkt objstore.Bucket, blocks []blockgenSpec) ( } return metas } - -// createEmptyBlock produces empty block like it was the case before fix: https://github.com/prometheus/tsdb/pull/374. -// (Prometheus pre v2.7.0). -func createEmptyBlock(dir string, mint int64, maxt int64, extLset labels.Labels, resolution int64) (ulid.ULID, error) { - entropy := rand.New(rand.NewSource(time.Now().UnixNano())) - uid := ulid.MustNew(ulid.Now(), entropy) - - if err := os.Mkdir(path.Join(dir, uid.String()), os.ModePerm); err != nil { - return ulid.ULID{}, errors.Wrap(err, "close index") - } - - if err := os.Mkdir(path.Join(dir, uid.String(), "chunks"), os.ModePerm); err != nil { - return ulid.ULID{}, errors.Wrap(err, "close index") - } - - w, err := index.NewWriter(context.Background(), path.Join(dir, uid.String(), "index")) - if err != nil { - return ulid.ULID{}, errors.Wrap(err, "new index") - } - - if err := w.Close(); err != nil { - return ulid.ULID{}, errors.Wrap(err, "close index") - } - - m := tsdb.BlockMeta{ - Version: 1, - ULID: uid, - MinTime: mint, - MaxTime: maxt, - Compaction: tsdb.BlockMetaCompaction{ - Level: 1, - Sources: []ulid.ULID{uid}, - }, - } - b, err := json.Marshal(&m) - if err != nil { - return ulid.ULID{}, err - } - - if err := ioutil.WriteFile(path.Join(dir, uid.String(), "meta.json"), b, os.ModePerm); err != nil { - return ulid.ULID{}, errors.Wrap(err, "saving meta.json") - } - - if _, err = metadata.InjectThanos(log.NewNopLogger(), filepath.Join(dir, uid.String()), metadata.Thanos{ - Labels: extLset.Map(), - Downsample: metadata.ThanosDownsample{Resolution: resolution}, - Source: metadata.TestSource, - }, nil); err != nil { - return ulid.ULID{}, errors.Wrap(err, "finalize block") - } - - return uid, nil -} diff --git a/pkg/compact/compact_test.go b/pkg/compact/compact_test.go index a3c51f61c07..29ecba297de 100644 --- a/pkg/compact/compact_test.go +++ b/pkg/compact/compact_test.go @@ -36,6 +36,8 @@ func TestHaltMultiError(t *testing.T) { errs.Add(haltErr) testutil.Assert(t, IsHaltError(errs), "if any halt errors are present this should return true") + testutil.Assert(t, IsHaltError(errors.Wrap(errs, "wrap")), "halt error with wrap") + } func TestRetryMultiError(t *testing.T) { diff --git a/pkg/compact/downsample/streamed_block_writer.go b/pkg/compact/downsample/streamed_block_writer.go index 267a93bfabf..a987c6fa959 100644 --- a/pkg/compact/downsample/streamed_block_writer.go +++ b/pkg/compact/downsample/streamed_block_writer.go @@ -108,7 +108,7 @@ func NewStreamedBlockWriter( // labelsValues sets and memPostings to be written on the finalize state in the end of downsampling process. func (w *streamedBlockWriter) WriteSeries(lset labels.Labels, chunks []chunks.Meta) error { if w.finalized || w.ignoreFinalize { - return errors.Errorf("series can't be added, writers has been closed or internal error happened") + return errors.New("series can't be added, writers has been closed or internal error happened") } if len(chunks) == 0 { diff --git a/pkg/compact/retention.go b/pkg/compact/retention.go index 47f61f0cfbf..eb07507d9d7 100644 --- a/pkg/compact/retention.go +++ b/pkg/compact/retention.go @@ -10,13 +10,14 @@ import ( "github.com/go-kit/kit/log" "github.com/go-kit/kit/log/level" "github.com/pkg/errors" + "github.com/prometheus/client_golang/prometheus" "github.com/thanos-io/thanos/pkg/block" "github.com/thanos-io/thanos/pkg/objstore" ) // ApplyRetentionPolicyByResolution removes blocks depending on the specified retentionByResolution based on blocks MaxTime. // A value of 0 disables the retention for its resolution. -func ApplyRetentionPolicyByResolution(ctx context.Context, logger log.Logger, bkt objstore.Bucket, fetcher block.MetadataFetcher, retentionByResolution map[ResolutionLevel]time.Duration) error { +func ApplyRetentionPolicyByResolution(ctx context.Context, logger log.Logger, bkt objstore.Bucket, fetcher block.MetadataFetcher, retentionByResolution map[ResolutionLevel]time.Duration, blocksMarkedForDeletion prometheus.Counter) error { level.Info(logger).Log("msg", "start optional retention") metas, _, err := fetcher.Fetch(ctx) if err != nil { @@ -31,10 +32,11 @@ func ApplyRetentionPolicyByResolution(ctx context.Context, logger log.Logger, bk maxTime := time.Unix(m.MaxTime/1000, 0) if time.Now().After(maxTime.Add(retentionDuration)) { - level.Info(logger).Log("msg", "applying retention: deleting block", "id", id, "maxTime", maxTime.String()) - if err := block.Delete(ctx, logger, bkt, id); err != nil { + level.Info(logger).Log("msg", "applying retention: marking block for deletion", "id", id, "maxTime", maxTime.String()) + if err := block.MarkForDeletion(ctx, logger, bkt, id); err != nil { return errors.Wrap(err, "delete block") } + blocksMarkedForDeletion.Inc() } } diff --git a/pkg/compact/retention_test.go b/pkg/compact/retention_test.go index 371d3c4152a..0a1431996e8 100644 --- a/pkg/compact/retention_test.go +++ b/pkg/compact/retention_test.go @@ -7,12 +7,16 @@ import ( "bytes" "context" "encoding/json" + "path/filepath" "strings" "testing" "time" "github.com/go-kit/kit/log" "github.com/oklog/ulid" + "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" + promtest "github.com/prometheus/client_golang/prometheus/testutil" "github.com/prometheus/prometheus/tsdb" "github.com/thanos-io/thanos/pkg/block" "github.com/thanos-io/thanos/pkg/block/metadata" @@ -241,20 +245,31 @@ func TestApplyRetentionPolicyByResolution(t *testing.T) { uploadMockBlock(t, bkt, b.id, b.minTime, b.maxTime, int64(b.resolution)) } - metaFetcher, err := block.NewMetaFetcher(logger, 32, bkt, "", nil) + metaFetcher, err := block.NewMetaFetcher(logger, 32, bkt, "", nil, nil, nil) testutil.Ok(t, err) - if err := compact.ApplyRetentionPolicyByResolution(ctx, logger, bkt, metaFetcher, tt.retentionByResolution); (err != nil) != tt.wantErr { + blocksMarkedForDeletion := promauto.With(nil).NewCounter(prometheus.CounterOpts{}) + if err := compact.ApplyRetentionPolicyByResolution(ctx, logger, bkt, metaFetcher, tt.retentionByResolution, blocksMarkedForDeletion); (err != nil) != tt.wantErr { t.Errorf("ApplyRetentionPolicyByResolution() error = %v, wantErr %v", err, tt.wantErr) } got := []string{} + gotMarkedBlocksCount := 0.0 testutil.Ok(t, bkt.Iter(context.TODO(), "", func(name string) error { - got = append(got, name) + exists, err := bkt.Exists(ctx, filepath.Join(name, metadata.DeletionMarkFilename)) + if err != nil { + return err + } + if !exists { + got = append(got, name) + return nil + } + gotMarkedBlocksCount += 1.0 return nil })) testutil.Equals(t, got, tt.want) + testutil.Equals(t, gotMarkedBlocksCount, promtest.ToFloat64(blocksMarkedForDeletion)) }) } } diff --git a/pkg/component/component.go b/pkg/component/component.go index 675caa60343..f86ae85503f 100644 --- a/pkg/component/component.go +++ b/pkg/component/component.go @@ -95,4 +95,5 @@ var ( Sidecar = sourceStoreAPI{component: component{name: "sidecar"}} Store = sourceStoreAPI{component: component{name: "store"}} Receive = sourceStoreAPI{component: component{name: "receive"}} + Replicate = sourceStoreAPI{component: component{name: "replicate"}} ) diff --git a/pkg/discovery/dns/miekgdns/lookup.go b/pkg/discovery/dns/miekgdns/lookup.go index 4e3fb492e2e..b9b95ce9088 100644 --- a/pkg/discovery/dns/miekgdns/lookup.go +++ b/pkg/discovery/dns/miekgdns/lookup.go @@ -140,7 +140,7 @@ func askServerForName(name string, qType dns.Type, client *dns.Client, servAddr if response.Truncated { if client.Net == "tcp" { - return nil, errors.Errorf("got truncated message on TCP (64kiB limit exceeded?)") + return nil, errors.New("got truncated message on TCP (64kiB limit exceeded?)") } // TCP fallback. diff --git a/pkg/discovery/dns/provider.go b/pkg/discovery/dns/provider.go index a3e07307309..0ef944574dd 100644 --- a/pkg/discovery/dns/provider.go +++ b/pkg/discovery/dns/provider.go @@ -12,7 +12,9 @@ import ( "github.com/go-kit/kit/log" "github.com/go-kit/kit/log/level" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/thanos-io/thanos/pkg/discovery/dns/miekgdns" + "github.com/thanos-io/thanos/pkg/extprom" ) // Provider is a stateful cache for asynchronous DNS resolutions. It provides a way to resolve addresses and obtain them. @@ -23,7 +25,7 @@ type Provider struct { resolved map[string][]string logger log.Logger - resolverAddrs *prometheus.GaugeVec + resolverAddrs *extprom.TxGaugeVec resolverLookupsCount prometheus.Counter resolverFailuresCount prometheus.Counter } @@ -56,26 +58,20 @@ func NewProvider(logger log.Logger, reg prometheus.Registerer, resolverType Reso resolver: NewResolver(resolverType.ToResolver(logger)), resolved: make(map[string][]string), logger: logger, - resolverAddrs: prometheus.NewGaugeVec(prometheus.GaugeOpts{ + resolverAddrs: extprom.NewTxGaugeVec(reg, prometheus.GaugeOpts{ Name: "dns_provider_results", Help: "The number of resolved endpoints for each configured address", }, []string{"addr"}), - resolverLookupsCount: prometheus.NewCounter(prometheus.CounterOpts{ + resolverLookupsCount: promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "dns_lookups_total", Help: "The number of DNS lookups resolutions attempts", }), - resolverFailuresCount: prometheus.NewCounter(prometheus.CounterOpts{ + resolverFailuresCount: promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "dns_failures_total", Help: "The number of DNS lookup failures", }), } - if reg != nil { - reg.MustRegister(p.resolverAddrs) - reg.MustRegister(p.resolverLookupsCount) - reg.MustRegister(p.resolverFailuresCount) - } - return p } @@ -91,6 +87,23 @@ func (p *Provider) Clone() *Provider { } } +// IsDynamicNode returns if the specified StoreAPI addr uses +// any kind of SD mechanism. +func IsDynamicNode(addr string) bool { + qtype, _ := GetQTypeName(addr) + return qtype != "" +} + +// GetQTypeName splits the provided addr into two parts: the QType (if any) +// and the name. +func GetQTypeName(addr string) (qtype string, name string) { + qtypeAndName := strings.SplitN(addr, "+", 2) + if len(qtypeAndName) != 2 { + return "", addr + } + return qtypeAndName[0], qtypeAndName[1] +} + // Resolve stores a list of provided addresses or their DNS records if requested. // Addresses prefixed with `dns+` or `dnssrv+` will be resolved through respective DNS lookup (A/AAAA or SRV). // defaultPort is used for non-SRV records when a port is not supplied. @@ -98,15 +111,18 @@ func (p *Provider) Resolve(ctx context.Context, addrs []string) { p.Lock() defer p.Unlock() + p.resolverAddrs.ResetTx() + defer p.resolverAddrs.Submit() + + resolvedAddrs := map[string][]string{} for _, addr := range addrs { var resolved []string - qtypeAndName := strings.SplitN(addr, "+", 2) - if len(qtypeAndName) != 2 { - // No lookup specified. Add to results and continue to the next address. - p.resolved[addr] = []string{addr} + qtype, name := GetQTypeName(addr) + if qtype == "" { + resolvedAddrs[name] = []string{name} + p.resolverAddrs.WithLabelValues(name).Set(1.0) continue } - qtype, name := qtypeAndName[0], qtypeAndName[1] resolved, err := p.resolver.Resolve(ctx, name, QType(qtype)) p.resolverLookupsCount.Inc() @@ -114,20 +130,13 @@ func (p *Provider) Resolve(ctx context.Context, addrs []string) { // The DNS resolution failed. Continue without modifying the old records. p.resolverFailuresCount.Inc() level.Error(p.logger).Log("msg", "dns resolution failed", "addr", addr, "err", err) - continue - } - p.resolved[addr] = resolved - } - - // Remove stored addresses that are no longer requested. - for existingAddr := range p.resolved { - if !contains(addrs, existingAddr) { - delete(p.resolved, existingAddr) - p.resolverAddrs.DeleteLabelValues(existingAddr) - } else { - p.resolverAddrs.WithLabelValues(existingAddr).Set(float64(len(p.resolved[existingAddr]))) + // Use cached values. + resolved = p.resolved[addr] } + resolvedAddrs[addr] = resolved + p.resolverAddrs.WithLabelValues(addr).Set(float64(len(resolved))) } + p.resolved = resolvedAddrs } // Addresses returns the latest addresses present in the Provider. @@ -141,12 +150,3 @@ func (p *Provider) Addresses() []string { } return result } - -func contains(slice []string, str string) bool { - for _, s := range slice { - if str == s { - return true - } - } - return false -} diff --git a/pkg/discovery/dns/provider_test.go b/pkg/discovery/dns/provider_test.go index 3a05c06a676..585a7afb222 100644 --- a/pkg/discovery/dns/provider_test.go +++ b/pkg/discovery/dns/provider_test.go @@ -8,9 +8,8 @@ import ( "sort" "testing" - "github.com/pkg/errors" - "github.com/go-kit/kit/log" + promtestutil "github.com/prometheus/client_golang/prometheus/testutil" "github.com/thanos-io/thanos/pkg/testutil" ) @@ -37,32 +36,59 @@ func TestProvider(t *testing.T) { result := prv.Addresses() sort.Strings(result) testutil.Equals(t, []string(nil), result) + testutil.Equals(t, 1, promtestutil.CollectAndCount(prv.resolverAddrs)) + testutil.Equals(t, float64(0), promtestutil.ToFloat64(prv.resolverAddrs.WithLabelValues("any+x"))) prv.Resolve(ctx, []string{"any+a", "any+b", "any+c"}) result = prv.Addresses() sort.Strings(result) testutil.Equals(t, ips, result) + testutil.Equals(t, 3, promtestutil.CollectAndCount(prv.resolverAddrs)) + testutil.Equals(t, float64(2), promtestutil.ToFloat64(prv.resolverAddrs.WithLabelValues("any+a"))) + testutil.Equals(t, float64(2), promtestutil.ToFloat64(prv.resolverAddrs.WithLabelValues("any+b"))) + testutil.Equals(t, float64(1), promtestutil.ToFloat64(prv.resolverAddrs.WithLabelValues("any+c"))) prv.Resolve(ctx, []string{"any+b", "any+c"}) result = prv.Addresses() sort.Strings(result) testutil.Equals(t, ips[2:], result) + testutil.Equals(t, 2, promtestutil.CollectAndCount(prv.resolverAddrs)) + testutil.Equals(t, float64(2), promtestutil.ToFloat64(prv.resolverAddrs.WithLabelValues("any+b"))) + testutil.Equals(t, float64(1), promtestutil.ToFloat64(prv.resolverAddrs.WithLabelValues("any+c"))) prv.Resolve(ctx, []string{"any+x"}) result = prv.Addresses() sort.Strings(result) testutil.Equals(t, []string(nil), result) + testutil.Equals(t, 1, promtestutil.CollectAndCount(prv.resolverAddrs)) + testutil.Equals(t, float64(0), promtestutil.ToFloat64(prv.resolverAddrs.WithLabelValues("any+x"))) prv.Resolve(ctx, []string{"any+a", "any+b", "any+c"}) result = prv.Addresses() sort.Strings(result) testutil.Equals(t, ips, result) + testutil.Equals(t, 3, promtestutil.CollectAndCount(prv.resolverAddrs)) + testutil.Equals(t, float64(2), promtestutil.ToFloat64(prv.resolverAddrs.WithLabelValues("any+a"))) + testutil.Equals(t, float64(2), promtestutil.ToFloat64(prv.resolverAddrs.WithLabelValues("any+b"))) + testutil.Equals(t, float64(1), promtestutil.ToFloat64(prv.resolverAddrs.WithLabelValues("any+c"))) - prv.resolver = &mockResolver{err: errors.New("failed to resolve urls")} - prv.Resolve(ctx, []string{"any+a", "any+b", "any+c"}) + prv.Resolve(ctx, []string{"any+b", "example.com:90", "any+c"}) result = prv.Addresses() sort.Strings(result) - testutil.Equals(t, ips, result) + testutil.Equals(t, append(ips[2:], "example.com:90"), result) + testutil.Equals(t, 3, promtestutil.CollectAndCount(prv.resolverAddrs)) + testutil.Equals(t, float64(2), promtestutil.ToFloat64(prv.resolverAddrs.WithLabelValues("any+b"))) + testutil.Equals(t, float64(1), promtestutil.ToFloat64(prv.resolverAddrs.WithLabelValues("example.com:90"))) + testutil.Equals(t, float64(1), promtestutil.ToFloat64(prv.resolverAddrs.WithLabelValues("any+c"))) + + prv.Resolve(ctx, []string{"any+b", "any+c"}) + result = prv.Addresses() + sort.Strings(result) + testutil.Equals(t, ips[2:], result) + testutil.Equals(t, 2, promtestutil.CollectAndCount(prv.resolverAddrs)) + testutil.Equals(t, float64(2), promtestutil.ToFloat64(prv.resolverAddrs.WithLabelValues("any+b"))) + testutil.Equals(t, float64(1), promtestutil.ToFloat64(prv.resolverAddrs.WithLabelValues("any+c"))) + } type mockResolver struct { @@ -70,9 +96,41 @@ type mockResolver struct { err error } -func (d *mockResolver) Resolve(ctx context.Context, name string, qtype QType) ([]string, error) { +func (d *mockResolver) Resolve(_ context.Context, name string, _ QType) ([]string, error) { if d.err != nil { return nil, d.err } return d.res[name], nil } + +// TestIsDynamicNode tests whether we properly catch dynamically defined nodes. +func TestIsDynamicNode(t *testing.T) { + for _, tcase := range []struct { + node string + isDynamic bool + }{ + { + node: "1.2.3.4", + isDynamic: false, + }, + { + node: "gibberish+1.1.1.1+noa", + isDynamic: true, + }, + { + node: "", + isDynamic: false, + }, + { + node: "dns+aaa", + isDynamic: true, + }, + { + node: "dnssrv+asdasdsa", + isDynamic: true, + }, + } { + isDynamic := IsDynamicNode(tcase.node) + testutil.Equals(t, tcase.isDynamic, isDynamic, "mismatch between results") + } +} diff --git a/pkg/discovery/dns/resolver_test.go b/pkg/discovery/dns/resolver_test.go index f7d271d0c89..5663ca7380e 100644 --- a/pkg/discovery/dns/resolver_test.go +++ b/pkg/discovery/dns/resolver_test.go @@ -76,7 +76,7 @@ var ( addr: "test.mycompany.com", qtype: A, expectedResult: nil, - expectedErr: errors.Errorf("missing port in address given for dns lookup: test.mycompany.com"), + expectedErr: errors.New("missing port in address given for dns lookup: test.mycompany.com"), resolver: &mockHostnameResolver{}, }, { @@ -168,7 +168,7 @@ var ( addr: "test.mycompany.com", qtype: "invalid", expectedResult: nil, - expectedErr: errors.Errorf("invalid lookup scheme \"invalid\""), + expectedErr: errors.New("invalid lookup scheme \"invalid\""), resolver: &mockHostnameResolver{}, }, } diff --git a/pkg/extgrpc/client.go b/pkg/extgrpc/client.go index eb6ac475953..5262b76fed2 100644 --- a/pkg/extgrpc/client.go +++ b/pkg/extgrpc/client.go @@ -43,7 +43,6 @@ func StoreClientGRPCOpts(logger log.Logger, reg *prometheus.Registry, tracer ope ), ), } - if reg != nil { reg.MustRegister(grpcMets) } diff --git a/pkg/extprom/http/instrument_server.go b/pkg/extprom/http/instrument_server.go index 907d3da6e54..c09bb6f8b3d 100644 --- a/pkg/extprom/http/instrument_server.go +++ b/pkg/extprom/http/instrument_server.go @@ -7,6 +7,7 @@ import ( "net/http" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/client_golang/prometheus/promhttp" ) @@ -40,7 +41,7 @@ type defaultInstrumentationMiddleware struct { // NewInstrumentationMiddleware provides default InstrumentationMiddleware. func NewInstrumentationMiddleware(reg prometheus.Registerer) InstrumentationMiddleware { ins := defaultInstrumentationMiddleware{ - requestDuration: prometheus.NewHistogramVec( + requestDuration: promauto.With(reg).NewHistogramVec( prometheus.HistogramOpts{ Name: "http_request_duration_seconds", Help: "Tracks the latencies for HTTP requests.", @@ -49,7 +50,7 @@ func NewInstrumentationMiddleware(reg prometheus.Registerer) InstrumentationMidd []string{"code", "handler", "method"}, ), - requestSize: prometheus.NewSummaryVec( + requestSize: promauto.With(reg).NewSummaryVec( prometheus.SummaryOpts{ Name: "http_request_size_bytes", Help: "Tracks the size of HTTP requests.", @@ -57,14 +58,14 @@ func NewInstrumentationMiddleware(reg prometheus.Registerer) InstrumentationMidd []string{"code", "handler", "method"}, ), - requestsTotal: prometheus.NewCounterVec( + requestsTotal: promauto.With(reg).NewCounterVec( prometheus.CounterOpts{ Name: "http_requests_total", Help: "Tracks the number of HTTP requests.", }, []string{"code", "handler", "method"}, ), - responseSize: prometheus.NewSummaryVec( + responseSize: promauto.With(reg).NewSummaryVec( prometheus.SummaryOpts{ Name: "http_response_size_bytes", Help: "Tracks the size of HTTP responses.", @@ -72,7 +73,6 @@ func NewInstrumentationMiddleware(reg prometheus.Registerer) InstrumentationMidd []string{"code", "handler", "method"}, ), } - reg.MustRegister(ins.requestDuration, ins.requestSize, ins.requestsTotal, ins.responseSize) return &ins } diff --git a/pkg/extprom/testing.go b/pkg/extprom/testing.go new file mode 100644 index 00000000000..5db80b26e2a --- /dev/null +++ b/pkg/extprom/testing.go @@ -0,0 +1,35 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +package extprom + +import ( + "testing" + + "github.com/prometheus/client_golang/prometheus" + "github.com/thanos-io/thanos/pkg/testutil" +) + +// CurrentGaugeValuesFor returns gauge values for given metric names. Useful for testing based on registry, +// when you don't have access to metric variable. +func CurrentGaugeValuesFor(t *testing.T, reg prometheus.Gatherer, metricNames ...string) map[string]float64 { + f, err := reg.Gather() + testutil.Ok(t, err) + + res := make(map[string]float64, len(metricNames)) + for _, g := range f { + for _, m := range metricNames { + if g.GetName() != m { + continue + } + + testutil.Equals(t, 1, len(g.GetMetric())) + if _, ok := res[m]; ok { + t.Error("expected only one metric family for", m) + t.FailNow() + } + res[m] = *g.GetMetric()[0].GetGauge().Value + } + } + return res +} diff --git a/pkg/extprom/tx_gauge.go b/pkg/extprom/tx_gauge.go index d85bf4f9215..a619b122e97 100644 --- a/pkg/extprom/tx_gauge.go +++ b/pkg/extprom/tx_gauge.go @@ -7,6 +7,7 @@ import ( "sync" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" ) type TxGaugeVec struct { @@ -24,18 +25,23 @@ type TxGaugeVec struct { // // Additionally it allows to init LabelValues on each transaction. // NOTE: This is quite naive implementation creating new prometheus.GaugeVec on each `ResetTx`, use wisely. -func NewTxGaugeVec(opts prometheus.GaugeOpts, labelNames []string, initLabelValues ...[]string) *TxGaugeVec { +func NewTxGaugeVec(reg prometheus.Registerer, opts prometheus.GaugeOpts, labelNames []string, initLabelValues ...[]string) *TxGaugeVec { + // Nil as we will register it on our own later. f := func() *prometheus.GaugeVec { - g := prometheus.NewGaugeVec(opts, labelNames) + g := promauto.With(nil).NewGaugeVec(opts, labelNames) for _, vals := range initLabelValues { g.WithLabelValues(vals...) } return g } - return &TxGaugeVec{ + tx := &TxGaugeVec{ current: f(), newMetricVal: f, } + if reg != nil { + reg.MustRegister(tx) + } + return tx } // ResetTx starts new transaction. Not goroutine-safe. diff --git a/pkg/extprom/tx_gauge_test.go b/pkg/extprom/tx_gauge_test.go index 4be8b02de42..92af9dc43c5 100644 --- a/pkg/extprom/tx_gauge_test.go +++ b/pkg/extprom/tx_gauge_test.go @@ -4,17 +4,17 @@ package extprom import ( - "fmt" "strings" "testing" + "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" dto "github.com/prometheus/client_model/go" "github.com/thanos-io/thanos/pkg/testutil" ) func TestTxGaugeVec(t *testing.T) { - g := NewTxGaugeVec(prometheus.GaugeOpts{ + g := NewTxGaugeVec(nil, prometheus.GaugeOpts{ Name: "metric", }, []string{"a", "b"}, []string{"a1", "b1"}, []string{"a2", "b2"}) @@ -167,7 +167,7 @@ func toFloat64(t *testing.T, c prometheus.Collector) map[string]float64 { if pb.Untyped != nil { exp[lbToString(pb.GetLabel())] = pb.Untyped.GetValue() } - panic(fmt.Errorf("collected a non-gauge/counter/untyped metric: %s", pb)) + panic(errors.Errorf("collected a non-gauge/counter/untyped metric: %s", pb)) } return exp diff --git a/pkg/gate/gate.go b/pkg/gate/gate.go index 43bc3a47b4c..549b0f3300d 100644 --- a/pkg/gate/gate.go +++ b/pkg/gate/gate.go @@ -8,6 +8,7 @@ import ( "time" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/prometheus/pkg/gate" ) @@ -27,21 +28,17 @@ type Gate struct { func NewGate(maxConcurrent int, reg prometheus.Registerer) *Gate { g := &Gate{ g: gate.New(maxConcurrent), - inflightQueries: prometheus.NewGauge(prometheus.GaugeOpts{ + inflightQueries: promauto.With(reg).NewGauge(prometheus.GaugeOpts{ Name: "gate_queries_in_flight", Help: "Number of queries that are currently in flight.", }), - gateTiming: prometheus.NewHistogram(prometheus.HistogramOpts{ + gateTiming: promauto.With(reg).NewHistogram(prometheus.HistogramOpts{ Name: "gate_duration_seconds", Help: "How many seconds it took for queries to wait at the gate.", Buckets: []float64{0.01, 0.1, 0.3, 0.6, 1, 3, 6, 9, 20, 30, 60, 90, 120, 240, 360, 720}, }), } - if reg != nil { - reg.MustRegister(g.inflightQueries, g.gateTiming) - } - return g } diff --git a/pkg/store/cache/units.go b/pkg/model/units.go similarity index 96% rename from pkg/store/cache/units.go rename to pkg/model/units.go index 156ea54ddbd..cd4944f6d7e 100644 --- a/pkg/store/cache/units.go +++ b/pkg/model/units.go @@ -1,7 +1,7 @@ // Copyright (c) The Thanos Authors. // Licensed under the Apache License 2.0. -package storecache +package model import ( "github.com/alecthomas/units" diff --git a/pkg/store/cache/units_test.go b/pkg/model/units_test.go similarity index 96% rename from pkg/store/cache/units_test.go rename to pkg/model/units_test.go index bde202a2f17..1b3f53f18da 100644 --- a/pkg/store/cache/units_test.go +++ b/pkg/model/units_test.go @@ -1,7 +1,7 @@ // Copyright (c) The Thanos Authors. // Licensed under the Apache License 2.0. -package storecache +package model import ( "testing" diff --git a/pkg/objstore/cos/cos.go b/pkg/objstore/cos/cos.go index 65768d46b1b..e336a78fc78 100644 --- a/pkg/objstore/cos/cos.go +++ b/pkg/objstore/cos/cos.go @@ -151,7 +151,7 @@ func (b *Bucket) Iter(ctx context.Context, dir string, f func(string) error) err func (b *Bucket) getRange(ctx context.Context, name string, off, length int64) (io.ReadCloser, error) { if len(name) == 0 { - return nil, errors.Errorf("given object name should not empty") + return nil, errors.New("given object name should not empty") } opts := &cos.ObjectGetOptions{} diff --git a/pkg/objstore/objstore.go b/pkg/objstore/objstore.go index e187be3c62b..23926054ad2 100644 --- a/pkg/objstore/objstore.go +++ b/pkg/objstore/objstore.go @@ -4,6 +4,7 @@ package objstore import ( + "bytes" "context" "fmt" "io" @@ -18,6 +19,7 @@ import ( "github.com/go-kit/kit/log/level" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/thanos-io/thanos/pkg/runutil" ) @@ -39,6 +41,24 @@ type Bucket interface { Name() string } +// TryToGetSize tries to get upfront size from reader. +// TODO(https://github.com/thanos-io/thanos/issues/678): Remove guessing length when minio provider will support multipart upload without this. +func TryToGetSize(r io.Reader) (int64, error) { + switch f := r.(type) { + case *os.File: + fileInfo, err := f.Stat() + if err != nil { + return 0, errors.Wrap(err, "os.File.Stat()") + } + return fileInfo.Size(), nil + case *bytes.Buffer: + return int64(f.Len()), nil + case *strings.Reader: + return f.Size(), nil + } + return 0, errors.New("unsupported type of io.Reader") +} + // BucketReader provides read access to an object storage bucket. type BucketReader interface { // Iter calls f for each entry in the given directory (not recursive.). The argument to f is the full @@ -52,7 +72,6 @@ type BucketReader interface { GetRange(ctx context.Context, name string, off, length int64) (io.ReadCloser, error) // Exists checks if the given object exists in the bucket. - // TODO(bplotka): Consider removing Exists in favor of helper that do Get & IsObjNotFoundErr (less code to maintain). Exists(ctx context.Context, name string) (bool, error) // IsObjNotFoundErr returns true if error means that object is not found. Relevant to Get operations. @@ -171,172 +190,156 @@ func DownloadDir(ctx context.Context, logger log.Logger, bkt BucketReader, src, return nil } -// Exists returns true, if file exists, otherwise false and nil error if presence IsObjNotFoundErr, otherwise false with -// returning error. -func Exists(ctx context.Context, bkt Bucket, src string) (bool, error) { - rc, err := bkt.Get(ctx, src) - if rc != nil { - _ = rc.Close() - } - if err != nil { - if bkt.IsObjNotFoundErr(err) { - return false, nil - } - return false, errors.Wrap(err, "stat object") - } - - return true, nil -} +const ( + iterOp = "iter" + sizeOp = "objectsize" + getOp = "get" + getRangeOp = "get_range" + existsOp = "exists" + uploadOp = "upload" + deleteOp = "delete" +) // BucketWithMetrics takes a bucket and registers metrics with the given registry for // operations run against the bucket. -func BucketWithMetrics(name string, b Bucket, r prometheus.Registerer) Bucket { +func BucketWithMetrics(name string, b Bucket, reg prometheus.Registerer) Bucket { bkt := &metricBucket{ bkt: b, - ops: prometheus.NewCounterVec(prometheus.CounterOpts{ + ops: promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_objstore_bucket_operations_total", Help: "Total number of operations against a bucket.", ConstLabels: prometheus.Labels{"bucket": name}, }, []string{"operation"}), - opsFailures: prometheus.NewCounterVec(prometheus.CounterOpts{ + opsFailures: promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_objstore_bucket_operation_failures_total", Help: "Total number of operations against a bucket that failed.", ConstLabels: prometheus.Labels{"bucket": name}, }, []string{"operation"}), - opsDuration: prometheus.NewHistogramVec(prometheus.HistogramOpts{ + opsDuration: promauto.With(reg).NewHistogramVec(prometheus.HistogramOpts{ Name: "thanos_objstore_bucket_operation_duration_seconds", Help: "Duration of operations against the bucket", ConstLabels: prometheus.Labels{"bucket": name}, Buckets: []float64{0.001, 0.01, 0.1, 0.3, 0.6, 1, 3, 6, 9, 20, 30, 60, 90, 120}, }, []string{"operation"}), - lastSuccessfullUploadTime: prometheus.NewGaugeVec(prometheus.GaugeOpts{ + lastSuccessfulUploadTime: promauto.With(reg).NewGaugeVec(prometheus.GaugeOpts{ Name: "thanos_objstore_bucket_last_successful_upload_time", Help: "Second timestamp of the last successful upload to the bucket.", }, []string{"bucket"}), } - if r != nil { - r.MustRegister(bkt.ops, bkt.opsFailures, bkt.opsDuration, bkt.lastSuccessfullUploadTime) + for _, op := range []string{iterOp, sizeOp, getOp, getRangeOp, existsOp, uploadOp, deleteOp} { + bkt.ops.WithLabelValues(op) + bkt.opsFailures.WithLabelValues(op) + bkt.opsDuration.WithLabelValues(op) } + bkt.lastSuccessfulUploadTime.WithLabelValues(b.Name()) return bkt } type metricBucket struct { bkt Bucket - ops *prometheus.CounterVec - opsFailures *prometheus.CounterVec - opsDuration *prometheus.HistogramVec - lastSuccessfullUploadTime *prometheus.GaugeVec + ops *prometheus.CounterVec + opsFailures *prometheus.CounterVec + opsDuration *prometheus.HistogramVec + lastSuccessfulUploadTime *prometheus.GaugeVec } func (b *metricBucket) Iter(ctx context.Context, dir string, f func(name string) error) error { - const op = "iter" - err := b.bkt.Iter(ctx, dir, f) if err != nil { - b.opsFailures.WithLabelValues(op).Inc() + b.opsFailures.WithLabelValues(iterOp).Inc() } - b.ops.WithLabelValues(op).Inc() + b.ops.WithLabelValues(iterOp).Inc() return err } // ObjectSize returns the size of the specified object. func (b *metricBucket) ObjectSize(ctx context.Context, name string) (uint64, error) { - const op = "objectsize" - b.ops.WithLabelValues(op).Inc() + b.ops.WithLabelValues(sizeOp).Inc() start := time.Now() rc, err := b.bkt.ObjectSize(ctx, name) if err != nil { - b.opsFailures.WithLabelValues(op).Inc() + b.opsFailures.WithLabelValues(sizeOp).Inc() return 0, err } - b.opsDuration.WithLabelValues(op).Observe(time.Since(start).Seconds()) + b.opsDuration.WithLabelValues(sizeOp).Observe(time.Since(start).Seconds()) return rc, nil } func (b *metricBucket) Get(ctx context.Context, name string) (io.ReadCloser, error) { - const op = "get" - b.ops.WithLabelValues(op).Inc() + b.ops.WithLabelValues(getOp).Inc() rc, err := b.bkt.Get(ctx, name) if err != nil { - b.opsFailures.WithLabelValues(op).Inc() + b.opsFailures.WithLabelValues(getOp).Inc() return nil, err } - rc = newTimingReadCloser( + return newTimingReadCloser( rc, - op, + getOp, b.opsDuration, b.opsFailures, - ) - - return rc, nil + ), nil } func (b *metricBucket) GetRange(ctx context.Context, name string, off, length int64) (io.ReadCloser, error) { - const op = "get_range" - b.ops.WithLabelValues(op).Inc() + b.ops.WithLabelValues(getRangeOp).Inc() rc, err := b.bkt.GetRange(ctx, name, off, length) if err != nil { - b.opsFailures.WithLabelValues(op).Inc() + b.opsFailures.WithLabelValues(getRangeOp).Inc() return nil, err } - rc = newTimingReadCloser( + return newTimingReadCloser( rc, - op, + getRangeOp, b.opsDuration, b.opsFailures, - ) - - return rc, nil + ), nil } func (b *metricBucket) Exists(ctx context.Context, name string) (bool, error) { - const op = "exists" start := time.Now() ok, err := b.bkt.Exists(ctx, name) if err != nil { - b.opsFailures.WithLabelValues(op).Inc() + b.opsFailures.WithLabelValues(existsOp).Inc() } - b.ops.WithLabelValues(op).Inc() - b.opsDuration.WithLabelValues(op).Observe(time.Since(start).Seconds()) + b.ops.WithLabelValues(existsOp).Inc() + b.opsDuration.WithLabelValues(existsOp).Observe(time.Since(start).Seconds()) return ok, err } func (b *metricBucket) Upload(ctx context.Context, name string, r io.Reader) error { - const op = "upload" start := time.Now() err := b.bkt.Upload(ctx, name, r) if err != nil { - b.opsFailures.WithLabelValues(op).Inc() + b.opsFailures.WithLabelValues(uploadOp).Inc() } else { - b.lastSuccessfullUploadTime.WithLabelValues(b.bkt.Name()).SetToCurrentTime() + b.lastSuccessfulUploadTime.WithLabelValues(b.bkt.Name()).SetToCurrentTime() } - b.ops.WithLabelValues(op).Inc() - b.opsDuration.WithLabelValues(op).Observe(time.Since(start).Seconds()) + b.ops.WithLabelValues(uploadOp).Inc() + b.opsDuration.WithLabelValues(uploadOp).Observe(time.Since(start).Seconds()) return err } func (b *metricBucket) Delete(ctx context.Context, name string) error { - const op = "delete" start := time.Now() err := b.bkt.Delete(ctx, name) if err != nil { - b.opsFailures.WithLabelValues(op).Inc() + b.opsFailures.WithLabelValues(deleteOp).Inc() } - b.ops.WithLabelValues(op).Inc() - b.opsDuration.WithLabelValues(op).Observe(time.Since(start).Seconds()) + b.ops.WithLabelValues(deleteOp).Inc() + b.opsDuration.WithLabelValues(deleteOp).Observe(time.Since(start).Seconds()) return err } diff --git a/pkg/objstore/oss/oss.go b/pkg/objstore/oss/oss.go index effc1e217aa..5c081d7a5a1 100644 --- a/pkg/objstore/oss/oss.go +++ b/pkg/objstore/oss/oss.go @@ -65,26 +65,16 @@ func NewTestBucket(t testing.TB) (objstore.Bucket, func(), error) { return NewTestBucketFromConfig(t, c, false) } -func calculateChunks(name string, r io.Reader) (int, int64, error) { - switch f := r.(type) { - case *os.File: - if fileInfo, err := f.Stat(); err == nil { - s := fileInfo.Size() - return int(math.Floor(float64(s) / PartSize)), s % PartSize, nil - } - case *strings.Reader: - return int(math.Floor(float64(f.Size()) / PartSize)), f.Size() % PartSize, nil - } - return -1, 0, errors.New("unsupported implement of io.Reader") -} - // Upload the contents of the reader as an object into the bucket. -func (b *Bucket) Upload(ctx context.Context, name string, r io.Reader) error { - chunksnum, lastslice, err := calculateChunks(name, r) +func (b *Bucket) Upload(_ context.Context, name string, r io.Reader) error { + // TODO(https://github.com/thanos-io/thanos/issues/678): Remove guessing length when minio provider will support multipart upload without this. + size, err := objstore.TryToGetSize(r) if err != nil { - return err + return errors.Wrapf(err, "failed to get size apriori to upload %s", name) } + chunksnum, lastslice := int(math.Floor(float64(size)/PartSize)), size%PartSize + ncloser := ioutil.NopCloser(r) switch chunksnum { case 0: diff --git a/pkg/objstore/s3/s3.go b/pkg/objstore/s3/s3.go index d924eeb01f3..285bebaf7d1 100644 --- a/pkg/objstore/s3/s3.go +++ b/pkg/objstore/s3/s3.go @@ -149,6 +149,7 @@ func NewBucketWithConfig(logger log.Logger, config Config, component string) (*B DualStack: true, }).DialContext, MaxIdleConns: 100, + MaxIdleConnsPerHost: 100, IdleConnTimeout: time.Duration(config.HTTPConfig.IdleConnTimeout), TLSHandshakeTimeout: 10 * time.Second, ExpectContinueTimeout: 1 * time.Second, @@ -287,7 +288,7 @@ func (b *Bucket) GetRange(ctx context.Context, name string, off, length int64) ( } // Exists checks if the given object exists. -func (b *Bucket) Exists(ctx context.Context, name string) (bool, error) { +func (b *Bucket) Exists(_ context.Context, name string) (bool, error) { _, err := b.client.StatObject(b.name, name, minio.StatObjectOptions{}) if err != nil { if b.IsObjNotFoundErr(err) { @@ -299,24 +300,14 @@ func (b *Bucket) Exists(ctx context.Context, name string) (bool, error) { return true, nil } -func (b *Bucket) guessFileSize(name string, r io.Reader) int64 { - if f, ok := r.(*os.File); ok { - fileInfo, err := f.Stat() - if err == nil { - return fileInfo.Size() - } - level.Warn(b.logger).Log("msg", "could not stat file for multipart upload", "name", name, "err", err) - return -1 - } - - level.Warn(b.logger).Log("msg", "could not guess file size for multipart upload", "name", name) - return -1 -} - // Upload the contents of the reader as an object into the bucket. func (b *Bucket) Upload(ctx context.Context, name string, r io.Reader) error { // TODO(https://github.com/thanos-io/thanos/issues/678): Remove guessing length when minio provider will support multipart upload without this. - size := b.guessFileSize(name, r) + size, err := objstore.TryToGetSize(r) + if err != nil { + level.Warn(b.logger).Log("msg", "could not guess file size for multipart upload; upload might be not optimized", "name", name, "err", err) + size = -1 + } // partSize cannot be larger than object size. partSize := b.partSize @@ -342,7 +333,7 @@ func (b *Bucket) Upload(ctx context.Context, name string, r io.Reader) error { } // ObjectSize returns the size of the specified object. -func (b *Bucket) ObjectSize(ctx context.Context, name string) (uint64, error) { +func (b *Bucket) ObjectSize(_ context.Context, name string) (uint64, error) { objInfo, err := b.client.StatObject(b.name, name, minio.StatObjectOptions{}) if err != nil { return 0, err @@ -351,7 +342,7 @@ func (b *Bucket) ObjectSize(ctx context.Context, name string) (uint64, error) { } // Delete removes the object with the given name. -func (b *Bucket) Delete(ctx context.Context, name string) error { +func (b *Bucket) Delete(_ context.Context, name string) error { return b.client.RemoveObject(b.name, name) } diff --git a/pkg/prober/http_test.go b/pkg/prober/http_test.go index e31368a0f33..eb3a69f3f61 100644 --- a/pkg/prober/http_test.go +++ b/pkg/prober/http_test.go @@ -13,6 +13,7 @@ import ( "github.com/go-kit/kit/log" "github.com/oklog/run" + "github.com/pkg/errors" "github.com/thanos-io/thanos/pkg/testutil" ) @@ -29,7 +30,7 @@ func TestHTTPProberReadinessInitialState(t *testing.T) { } func TestHTTPProberHealthyStatusSetting(t *testing.T) { - testError := fmt.Errorf("test error") + testError := errors.New("test error") p := NewHTTP() p.Healthy() @@ -42,7 +43,7 @@ func TestHTTPProberHealthyStatusSetting(t *testing.T) { } func TestHTTPProberReadyStatusSetting(t *testing.T) { - testError := fmt.Errorf("test error") + testError := errors.New("test error") p := NewHTTP() p.Ready() @@ -71,7 +72,7 @@ func TestHTTPProberMuxRegistering(t *testing.T) { var g run.Group g.Add(func() error { - return fmt.Errorf("serve probes %w", http.Serve(l, mux)) + return errors.Wrap(http.Serve(l, mux), "serve probes") }, func(err error) { t.Fatalf("server failed: %v", err) }) diff --git a/pkg/prober/intrumentation.go b/pkg/prober/intrumentation.go index 076996d88f2..6c1d7b65407 100644 --- a/pkg/prober/intrumentation.go +++ b/pkg/prober/intrumentation.go @@ -7,6 +7,7 @@ import ( "github.com/go-kit/kit/log" "github.com/go-kit/kit/log/level" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/thanos-io/thanos/pkg/component" ) @@ -30,19 +31,14 @@ func NewInstrumentation(component component.Component, logger log.Logger, reg pr p := InstrumentationProbe{ component: component, logger: logger, - status: prometheus.NewGaugeVec(prometheus.GaugeOpts{ + status: promauto.With(reg).NewGaugeVec(prometheus.GaugeOpts{ Name: "status", - Help: "Represents status (0 indicates success, 1 indicates failure) of the component.", + Help: "Represents status (0 indicates failure, 1 indicates success) of the component.", ConstLabels: map[string]string{"component": component.String()}, }, []string{"check"}, ), } - - if reg != nil { - reg.MustRegister(p.status) - } - return &p } diff --git a/pkg/promclient/promclient.go b/pkg/promclient/promclient.go index d5f27e32b6a..b735ecbd259 100644 --- a/pkg/promclient/promclient.go +++ b/pkg/promclient/promclient.go @@ -349,6 +349,11 @@ func (c *Client) QueryInstant(ctx context.Context, base *url.URL, query string, } defer runutil.ExhaustCloseWithLogOnErr(c.logger, resp.Body, "query body") + body, err := ioutil.ReadAll(resp.Body) + if err != nil { + return nil, nil, errors.Wrap(err, "read query instant response") + } + // Decode only ResultType and load Result only as RawJson since we don't know // structure of the Result yet. var m struct { @@ -363,11 +368,6 @@ func (c *Client) QueryInstant(ctx context.Context, base *url.URL, query string, Warnings []string `json:"warnings"` } - body, err := ioutil.ReadAll(resp.Body) - if err != nil { - return nil, nil, errors.Wrap(err, "read query instant response") - } - if err = json.Unmarshal(body, &m); err != nil { return nil, nil, errors.Wrap(err, "unmarshal query instant response") } diff --git a/pkg/query/api/v1.go b/pkg/query/api/v1.go index 82bf7ace29b..bb758395594 100644 --- a/pkg/query/api/v1.go +++ b/pkg/query/api/v1.go @@ -354,7 +354,7 @@ func (api *API) queryRange(r *http.Request) (interface{}, []error, *ApiError) { // For safety, limit the number of returned points per timeseries. // This is sufficient for 60s resolution for a week or 1h resolution for a year. if end.Sub(start)/step > 11000 { - err := errors.Errorf("exceeded maximum resolution of 11,000 points per timeseries. Try decreasing the query resolution (?step=XX)") + err := errors.New("exceeded maximum resolution of 11,000 points per timeseries. Try decreasing the query resolution (?step=XX)") return nil, nil, &ApiError{errorBadData, err} } @@ -428,7 +428,7 @@ func (api *API) labelValues(r *http.Request) (interface{}, []error, *ApiError) { name := route.Param(ctx, "name") if !model.LabelNameRE.MatchString(name) { - return nil, nil, &ApiError{errorBadData, fmt.Errorf("invalid label name: %q", name)} + return nil, nil, &ApiError{errorBadData, errors.Errorf("invalid label name: %q", name)} } enablePartialResponse, apiErr := api.parsePartialResponseParam(r) @@ -463,7 +463,7 @@ func (api *API) series(r *http.Request) (interface{}, []error, *ApiError) { } if len(r.Form["match[]"]) == 0 { - return nil, nil, &ApiError{errorBadData, fmt.Errorf("no match[] parameter provided")} + return nil, nil, &ApiError{errorBadData, errors.New("no match[] parameter provided")} } var start time.Time @@ -595,21 +595,21 @@ func parseTime(s string) (time.Time, error) { if t, err := time.Parse(time.RFC3339Nano, s); err == nil { return t, nil } - return time.Time{}, fmt.Errorf("cannot parse %q to a valid timestamp", s) + return time.Time{}, errors.Errorf("cannot parse %q to a valid timestamp", s) } func parseDuration(s string) (time.Duration, error) { if d, err := strconv.ParseFloat(s, 64); err == nil { ts := d * float64(time.Second) if ts > float64(math.MaxInt64) || ts < float64(math.MinInt64) { - return 0, fmt.Errorf("cannot parse %q to a valid duration. It overflows int64", s) + return 0, errors.Errorf("cannot parse %q to a valid duration. It overflows int64", s) } return time.Duration(ts), nil } if d, err := model.ParseDuration(s); err == nil { return time.Duration(d), nil } - return 0, fmt.Errorf("cannot parse %q to a valid duration", s) + return 0, errors.Errorf("cannot parse %q to a valid duration", s) } func (api *API) labelNames(r *http.Request) (interface{}, []error, *ApiError) { diff --git a/pkg/query/api/v1_test.go b/pkg/query/api/v1_test.go index c85fbe9e66b..7f21f2b4613 100644 --- a/pkg/query/api/v1_test.go +++ b/pkg/query/api/v1_test.go @@ -19,7 +19,6 @@ package v1 import ( "context" "encoding/json" - "errors" "fmt" "io" "io/ioutil" @@ -35,6 +34,7 @@ import ( "github.com/fortytw2/leaktest" "github.com/go-kit/kit/log" opentracing "github.com/opentracing/opentracing-go" + "github.com/pkg/errors" "github.com/prometheus/common/route" "github.com/prometheus/prometheus/pkg/labels" "github.com/prometheus/prometheus/pkg/timestamp" diff --git a/pkg/query/config.go b/pkg/query/config.go index 37876954101..12918e614f1 100644 --- a/pkg/query/config.go +++ b/pkg/query/config.go @@ -4,8 +4,13 @@ package query import ( + "fmt" + "net/url" + "strings" + "gopkg.in/yaml.v2" + "github.com/pkg/errors" http_util "github.com/thanos-io/thanos/pkg/http" ) @@ -39,3 +44,32 @@ func LoadConfigs(confYAML []byte) ([]Config, error) { } return queryCfg, nil } + +// BuildQueryConfig returns a query client configuration from a static address. +func BuildQueryConfig(queryAddrs []string) ([]Config, error) { + configs := make([]Config, 0, len(queryAddrs)) + for i, addr := range queryAddrs { + if addr == "" { + return nil, errors.Errorf("static querier address cannot be empty at index %d", i) + } + // If addr is missing schema, add http. + if !strings.Contains(addr, "://") { + addr = fmt.Sprintf("http://%s", addr) + } + u, err := url.Parse(addr) + if err != nil { + return nil, errors.Wrapf(err, "failed to parse addr %q", addr) + } + if u.Scheme != "http" && u.Scheme != "https" { + return nil, errors.Errorf("%q is not supported scheme for querier address", u.Scheme) + } + configs = append(configs, Config{ + EndpointsConfig: http_util.EndpointsConfig{ + Scheme: u.Scheme, + StaticAddresses: []string{u.Host}, + PathPrefix: u.Path, + }, + }) + } + return configs, nil +} diff --git a/pkg/query/config_test.go b/pkg/query/config_test.go new file mode 100644 index 00000000000..1169df04989 --- /dev/null +++ b/pkg/query/config_test.go @@ -0,0 +1,95 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +package query + +import ( + "testing" + + "github.com/thanos-io/thanos/pkg/http" + "github.com/thanos-io/thanos/pkg/testutil" +) + +func TestBuildQueryConfig(t *testing.T) { + for _, tc := range []struct { + desc string + addresses []string + err bool + expected []Config + }{ + { + desc: "single addr without path", + addresses: []string{"localhost:9093"}, + expected: []Config{{ + EndpointsConfig: http.EndpointsConfig{ + StaticAddresses: []string{"localhost:9093"}, + Scheme: "http", + }, + }}, + }, + { + desc: "1st addr without path, 2nd with", + addresses: []string{"localhost:9093", "localhost:9094/prefix"}, + expected: []Config{ + { + EndpointsConfig: http.EndpointsConfig{ + StaticAddresses: []string{"localhost:9093"}, + Scheme: "http", + }, + }, + { + EndpointsConfig: http.EndpointsConfig{ + StaticAddresses: []string{"localhost:9094"}, + Scheme: "http", + PathPrefix: "/prefix", + }, + }, + }, + }, + { + desc: "single addr with path and http scheme", + addresses: []string{"http://localhost:9093"}, + expected: []Config{{ + EndpointsConfig: http.EndpointsConfig{ + StaticAddresses: []string{"localhost:9093"}, + Scheme: "http", + }, + }}, + }, + { + desc: "single addr with path and https scheme", + addresses: []string{"https://localhost:9093"}, + expected: []Config{{ + EndpointsConfig: http.EndpointsConfig{ + StaticAddresses: []string{"localhost:9093"}, + Scheme: "https", + }, + }}, + }, + { + desc: "not supported scheme", + addresses: []string{"ttp://localhost:9093"}, + err: true, + }, + { + desc: "invalid addr", + addresses: []string{"this is not a valid addr"}, + err: true, + }, + { + desc: "empty addr", + addresses: []string{""}, + err: true, + }, + } { + t.Run(tc.desc, func(t *testing.T) { + cfg, err := BuildQueryConfig(tc.addresses) + if tc.err { + testutil.NotOk(t, err) + return + } + + testutil.Equals(t, tc.expected, cfg) + }) + } +} diff --git a/pkg/query/internal/test-storeset-pre-v0.8.0/storeset.go b/pkg/query/internal/test-storeset-pre-v0.8.0/storeset.go index 326c50b80bc..ce0bc729aeb 100644 --- a/pkg/query/internal/test-storeset-pre-v0.8.0/storeset.go +++ b/pkg/query/internal/test-storeset-pre-v0.8.0/storeset.go @@ -19,6 +19,7 @@ import ( "github.com/go-kit/kit/log/level" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/prometheus/pkg/labels" "github.com/thanos-io/thanos/pkg/component" "github.com/thanos-io/thanos/pkg/runutil" @@ -126,12 +127,12 @@ func (c *storeSetNodeCollector) Collect(ch chan<- prometheus.Metric) { // NewStoreSet returns a new set of stores from cluster peers and statically configured ones. func NewStoreSet( logger log.Logger, - reg *prometheus.Registry, + reg prometheus.Registerer, storeSpecs func() []StoreSpec, dialOpts []grpc.DialOption, unhealthyStoreTimeout time.Duration, ) *StoreSet { - storeNodeConnections := prometheus.NewGauge(prometheus.GaugeOpts{ + storeNodeConnections := promauto.With(reg).NewGauge(prometheus.GaugeOpts{ Name: "thanos_store_nodes_grpc_connections", Help: "Number indicating current number of gRPC connection to store nodes. This indicates also to how many stores query node have access to.", }) @@ -139,9 +140,6 @@ func NewStoreSet( if logger == nil { logger = log.NewNopLogger() } - if reg != nil { - reg.MustRegister(storeNodeConnections) - } if storeSpecs == nil { storeSpecs = func() []StoreSpec { return nil } } diff --git a/pkg/query/querier.go b/pkg/query/querier.go index 016a7ab4427..898db30fc1b 100644 --- a/pkg/query/querier.go +++ b/pkg/query/querier.go @@ -9,6 +9,7 @@ import ( "strings" "github.com/go-kit/kit/log" + "github.com/opentracing/opentracing-go" "github.com/pkg/errors" "github.com/prometheus/prometheus/pkg/labels" "github.com/prometheus/prometheus/storage" @@ -169,7 +170,22 @@ func aggrsFromFunc(f string) ([]storepb.Aggr, resAggr) { } func (q *querier) Select(params *storage.SelectParams, ms ...*labels.Matcher) (storage.SeriesSet, storage.Warnings, error) { - span, ctx := tracing.StartSpan(q.ctx, "querier_select") + if params == nil { + params = &storage.SelectParams{ + Start: q.mint, + End: q.maxt, + } + } + + matchers := make([]string, len(ms)) + for i, m := range ms { + matchers[i] = m.String() + } + span, ctx := tracing.StartSpan(q.ctx, "querier_select", opentracing.Tags{ + "minTime": params.Start, + "maxTime": params.End, + "matchers": "{" + strings.Join(matchers, ",") + "}", + }) defer span.Finish() sms, err := translateMatchers(ms...) @@ -177,12 +193,6 @@ func (q *querier) Select(params *storage.SelectParams, ms ...*labels.Matcher) (s return nil, nil, errors.Wrap(err, "convert matchers") } - if params == nil { - params = &storage.SelectParams{ - Start: q.mint, - End: q.maxt, - } - } queryAggrs, resAggr := aggrsFromFunc(params.Func) resp := &seriesServer{ctx: ctx} diff --git a/pkg/query/storeset.go b/pkg/query/storeset.go index 849f03affb4..4eeda0a6f5d 100644 --- a/pkg/query/storeset.go +++ b/pkg/query/storeset.go @@ -36,6 +36,8 @@ type StoreSpec interface { // NOTE: It is implementation responsibility to retry until context timeout, but a caller responsibility to manage // given store connection. Metadata(ctx context.Context, client storepb.StoreClient) (labelSets []storepb.LabelSet, mint int64, maxt int64, storeType component.StoreAPI, err error) + // StrictStatic returns true if the StoreAPI has been statically defined and it is under a strict mode. + StrictStatic() bool } type StoreStatus struct { @@ -49,13 +51,19 @@ type StoreStatus struct { } type grpcStoreSpec struct { - addr string + addr string + strictstatic bool } // NewGRPCStoreSpec creates store pure gRPC spec. // It uses Info gRPC call to get Metadata. -func NewGRPCStoreSpec(addr string) StoreSpec { - return &grpcStoreSpec{addr: addr} +func NewGRPCStoreSpec(addr string, strictstatic bool) StoreSpec { + return &grpcStoreSpec{addr: addr, strictstatic: strictstatic} +} + +// StrictStatic returns true if the StoreAPI has been statically defined and it is under a strict mode. +func (s *grpcStoreSpec) StrictStatic() bool { + return s.strictstatic } func (s *grpcStoreSpec) Addr() string { @@ -320,7 +328,7 @@ func newStoreAPIStats() map[component.StoreAPI]map[string]int { } // Update updates the store set. It fetches current list of store specs from function and updates the fresh metadata -// from all stores. +// from all stores. Keeps around statically defined nodes that were defined with the strict mode. func (s *StoreSet) Update(ctx context.Context) { s.updateMtx.Lock() defer s.updateMtx.Unlock() @@ -334,14 +342,14 @@ func (s *StoreSet) Update(ctx context.Context) { level.Debug(s.logger).Log("msg", "starting updating storeAPIs", "cachedStores", len(stores)) - healthyStores := s.getHealthyStores(ctx, stores) - level.Debug(s.logger).Log("msg", "checked requested storeAPIs", "healthyStores", len(healthyStores), "cachedStores", len(stores)) + activeStores := s.getActiveStores(ctx, stores) + level.Debug(s.logger).Log("msg", "checked requested storeAPIs", "activeStores", len(activeStores), "cachedStores", len(stores)) stats := newStoreAPIStats() - // Close stores that where not healthy this time (are not in healthy stores map). + // Close stores that where not active this time (are not in active stores map). for addr, st := range stores { - if _, ok := healthyStores[addr]; ok { + if _, ok := activeStores[addr]; ok { stats[st.StoreType()][st.LabelSetsString()]++ continue } @@ -353,7 +361,7 @@ func (s *StoreSet) Update(ctx context.Context) { } // Add stores that are not yet in stores. - for addr, st := range healthyStores { + for addr, st := range activeStores { if _, ok := stores[addr]; ok { continue } @@ -384,15 +392,15 @@ func (s *StoreSet) Update(ctx context.Context) { s.cleanUpStoreStatuses(stores) } -func (s *StoreSet) getHealthyStores(ctx context.Context, stores map[string]*storeRef) map[string]*storeRef { +func (s *StoreSet) getActiveStores(ctx context.Context, stores map[string]*storeRef) map[string]*storeRef { var ( - unique = make(map[string]struct{}) - healthyStores = make(map[string]*storeRef, len(stores)) - mtx sync.Mutex - wg sync.WaitGroup + unique = make(map[string]struct{}) + activeStores = make(map[string]*storeRef, len(stores)) + mtx sync.Mutex + wg sync.WaitGroup ) - // Gather healthy stores map concurrently. Build new store if does not exist already. + // Gather active stores map concurrently. Build new store if does not exist already. for _, storeSpec := range s.storeSpecs() { if _, ok := unique[storeSpec.Addr()]; ok { level.Warn(s.logger).Log("msg", "duplicated address in store nodes", "address", storeSpec.Addr()) @@ -411,7 +419,7 @@ func (s *StoreSet) getHealthyStores(ctx context.Context, stores map[string]*stor st, seenAlready := stores[addr] if !seenAlready { - // New store or was unhealthy and was removed in the past - create new one. + // New store or was unactive and was removed in the past - create new one. conn, err := grpc.DialContext(ctx, addr, s.dialOpts...) if err != nil { s.updateStoreStatus(&storeRef{addr: addr}, err) @@ -425,25 +433,36 @@ func (s *StoreSet) getHealthyStores(ctx context.Context, stores map[string]*stor labelSets, minTime, maxTime, storeType, err := spec.Metadata(ctx, st.StoreClient) if err != nil { if !seenAlready { - // Close only if new. Unhealthy `s.stores` will be closed later on. + // Close only if new. Unactive `s.stores` will be closed later on. st.Close() } s.updateStoreStatus(st, err) level.Warn(s.logger).Log("msg", "update of store node failed", "err", errors.Wrap(err, "getting metadata"), "address", addr) + + if !spec.StrictStatic() { + return + } + + // Still keep it around if static & strict mode enabled. + mtx.Lock() + defer mtx.Unlock() + + activeStores[addr] = st return } + s.updateStoreStatus(st, nil) st.Update(labelSets, minTime, maxTime, storeType) mtx.Lock() defer mtx.Unlock() - healthyStores[addr] = st + activeStores[addr] = st }(storeSpec) } wg.Wait() - return healthyStores + return activeStores } func (s *StoreSet) updateStoreStatus(store *storeRef, err error) { @@ -457,10 +476,9 @@ func (s *StoreSet) updateStoreStatus(store *storeRef, err error) { } status.LastError = err - status.LastCheck = time.Now() if err == nil { - + status.LastCheck = time.Now() mint, maxt := store.TimeRange() status.LabelSets = store.LabelSets() status.StoreType = store.StoreType() diff --git a/pkg/query/storeset_test.go b/pkg/query/storeset_test.go index b3dd853dd52..5bd98fd2338 100644 --- a/pkg/query/storeset_test.go +++ b/pkg/query/storeset_test.go @@ -51,8 +51,9 @@ func (s *testStore) LabelValues(ctx context.Context, r *storepb.LabelValuesReque } type testStoreMeta struct { - extlsetFn func(addr string) []storepb.LabelSet - storeType component.StoreAPI + extlsetFn func(addr string) []storepb.LabelSet + storeType component.StoreAPI + minTime, maxTime int64 } type testStores struct { @@ -78,6 +79,8 @@ func startTestStores(storeMetas []testStoreMeta) (*testStores, error) { storeSrv := &testStore{ info: storepb.InfoResponse{ LabelSets: meta.extlsetFn(listener.Addr().String()), + MaxTime: meta.maxTime, + MinTime: meta.minTime, }, } if meta.storeType != nil { @@ -174,20 +177,23 @@ func TestStoreSet_Update(t *testing.T) { discoveredStoreAddr := stores.StoreAddresses() - // Start with one not available. - stores.CloseOne(discoveredStoreAddr[2]) - // Testing if duplicates can cause weird results. discoveredStoreAddr = append(discoveredStoreAddr, discoveredStoreAddr[0]) storeSet := NewStoreSet(nil, nil, func() (specs []StoreSpec) { for _, addr := range discoveredStoreAddr { - specs = append(specs, NewGRPCStoreSpec(addr)) + specs = append(specs, NewGRPCStoreSpec(addr, false)) } return specs }, testGRPCOpts, time.Minute) storeSet.gRPCInfoCallTimeout = 2 * time.Second defer storeSet.Close() + // Initial update. + storeSet.Update(context.Background()) + + // Start with one not available. + stores.CloseOne(discoveredStoreAddr[2]) + // Should not matter how many of these we run. storeSet.Update(context.Background()) storeSet.Update(context.Background()) @@ -523,7 +529,7 @@ func TestStoreSet_Update_NoneAvailable(t *testing.T) { storeSet := NewStoreSet(nil, nil, func() (specs []StoreSpec) { for _, addr := range initialStoreAddr { - specs = append(specs, NewGRPCStoreSpec(addr)) + specs = append(specs, NewGRPCStoreSpec(addr, false)) } return specs }, testGRPCOpts, time.Minute) @@ -532,10 +538,89 @@ func TestStoreSet_Update_NoneAvailable(t *testing.T) { // Should not matter how many of these we run. storeSet.Update(context.Background()) storeSet.Update(context.Background()) - testutil.Assert(t, len(storeSet.stores) == 0, "none of services should respond just fine, so we expect no client to be ready.") + testutil.Equals(t, 0, len(storeSet.stores), "none of services should respond just fine, so we expect no client to be ready.") // Leak test will ensure that we don't keep client connection around. expected := newStoreAPIStats() testutil.Equals(t, expected, storeSet.storesMetric.storeNodes) } + +// TestQuerierStrict tests what happens when the strict mode is enabled/disabled. +func TestQuerierStrict(t *testing.T) { + defer leaktest.CheckTimeout(t, 5*time.Second)() + + st, err := startTestStores([]testStoreMeta{ + { + minTime: 12345, + maxTime: 54321, + extlsetFn: func(addr string) []storepb.LabelSet { + return []storepb.LabelSet{ + { + Labels: []storepb.Label{ + { + Name: "addr", + Value: addr, + }, + }, + }, + } + }, + storeType: component.Sidecar, + }, + { + minTime: 66666, + maxTime: 77777, + extlsetFn: func(addr string) []storepb.LabelSet { + return []storepb.LabelSet{ + { + Labels: []storepb.Label{ + { + Name: "addr", + Value: addr, + }, + }, + }, + } + }, + storeType: component.Sidecar, + }, + }) + + testutil.Ok(t, err) + defer st.Close() + + staticStoreAddr := st.StoreAddresses()[0] + storeSet := NewStoreSet(nil, nil, func() (specs []StoreSpec) { + return []StoreSpec{ + NewGRPCStoreSpec(st.StoreAddresses()[0], true), + NewGRPCStoreSpec(st.StoreAddresses()[1], false), + } + }, testGRPCOpts, time.Minute) + defer storeSet.Close() + storeSet.gRPCInfoCallTimeout = 1 * time.Second + + // Initial update. + storeSet.Update(context.Background()) + testutil.Equals(t, 2, len(storeSet.stores), "two clients must be available for running store nodes") + + // The store is statically defined + strict mode is enabled + // so its client + information must be retained. + curMin, curMax := storeSet.stores[staticStoreAddr].minTime, storeSet.stores[staticStoreAddr].maxTime + testutil.Equals(t, int64(12345), curMin, "got incorrect minimum time") + testutil.Equals(t, int64(54321), curMax, "got incorrect minimum time") + + // Turn off the stores. + st.Close() + + // Update again many times. Should not matter WRT the static one. + storeSet.Update(context.Background()) + storeSet.Update(context.Background()) + storeSet.Update(context.Background()) + + // Check that the information is the same. + testutil.Equals(t, 1, len(storeSet.stores), "one client must remain available for a store node that is down") + testutil.Equals(t, curMin, storeSet.stores[staticStoreAddr].minTime, "minimum time reported by the store node is different") + testutil.Equals(t, curMax, storeSet.stores[staticStoreAddr].maxTime, "minimum time reported by the store node is different") + testutil.NotOk(t, storeSet.storeStatuses[staticStoreAddr].LastError) +} diff --git a/pkg/receive/config.go b/pkg/receive/config.go index 8dc945bd798..ed706e0f1f8 100644 --- a/pkg/receive/config.go +++ b/pkg/receive/config.go @@ -10,17 +10,24 @@ import ( "encoding/json" "io/ioutil" "os" - "reflect" "time" "github.com/go-kit/kit/log" "github.com/go-kit/kit/log/level" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/common/model" "gopkg.in/fsnotify.v1" ) +var ( + // An errParseConfigurationFile is returned by the ConfigWatcher when parsing failed. + errParseConfigurationFile = errors.New("configuration file is not parsable") + // An errEmptyConfigurationFile is returned by the ConfigWatcher when attempting to load an empty configuration file. + errEmptyConfigurationFile = errors.New("configuration file is empty") +) + // HashringConfig represents the configuration for a hashring // a receive node knows about. type HashringConfig struct { @@ -47,12 +54,12 @@ type ConfigWatcher struct { hashringNodesGauge *prometheus.GaugeVec hashringTenantsGauge *prometheus.GaugeVec - // last is the last known configuration. - last []HashringConfig + // lastLoadedConfigHash is the hash of the last successfully loaded configuration. + lastLoadedConfigHash float64 } // NewConfigWatcher creates a new ConfigWatcher. -func NewConfigWatcher(logger log.Logger, r prometheus.Registerer, path string, interval model.Duration) (*ConfigWatcher, error) { +func NewConfigWatcher(logger log.Logger, reg prometheus.Registerer, path string, interval model.Duration) (*ConfigWatcher, error) { if logger == nil { logger = log.NewNopLogger() } @@ -62,71 +69,58 @@ func NewConfigWatcher(logger log.Logger, r prometheus.Registerer, path string, i return nil, errors.Wrap(err, "creating file watcher") } if err := watcher.Add(path); err != nil { - return nil, errors.Wrap(err, "adding path to file watcher") + return nil, errors.Wrapf(err, "adding path %s to file watcher", path) } + c := &ConfigWatcher{ ch: make(chan []HashringConfig), path: path, interval: time.Duration(interval), logger: logger, watcher: watcher, - hashGauge: prometheus.NewGauge( + hashGauge: promauto.With(reg).NewGauge( prometheus.GaugeOpts{ Name: "thanos_receive_config_hash", Help: "Hash of the currently loaded hashring configuration file.", }), - successGauge: prometheus.NewGauge( + successGauge: promauto.With(reg).NewGauge( prometheus.GaugeOpts{ Name: "thanos_receive_config_last_reload_successful", Help: "Whether the last hashring configuration file reload attempt was successful.", }), - lastSuccessTimeGauge: prometheus.NewGauge( + lastSuccessTimeGauge: promauto.With(reg).NewGauge( prometheus.GaugeOpts{ Name: "thanos_receive_config_last_reload_success_timestamp_seconds", Help: "Timestamp of the last successful hashring configuration file reload.", }), - changesCounter: prometheus.NewCounter( + changesCounter: promauto.With(reg).NewCounter( prometheus.CounterOpts{ Name: "thanos_receive_hashrings_file_changes_total", Help: "The number of times the hashrings configuration file has changed.", }), - errorCounter: prometheus.NewCounter( + errorCounter: promauto.With(reg).NewCounter( prometheus.CounterOpts{ Name: "thanos_receive_hashrings_file_errors_total", Help: "The number of errors watching the hashrings configuration file.", }), - refreshCounter: prometheus.NewCounter( + refreshCounter: promauto.With(reg).NewCounter( prometheus.CounterOpts{ Name: "thanos_receive_hashrings_file_refreshes_total", Help: "The number of refreshes of the hashrings configuration file.", }), - hashringNodesGauge: prometheus.NewGaugeVec( + hashringNodesGauge: promauto.With(reg).NewGaugeVec( prometheus.GaugeOpts{ Name: "thanos_receive_hashring_nodes", Help: "The number of nodes per hashring.", }, []string{"name"}), - hashringTenantsGauge: prometheus.NewGaugeVec( + hashringTenantsGauge: promauto.With(reg).NewGaugeVec( prometheus.GaugeOpts{ Name: "thanos_receive_hashring_tenants", Help: "The number of tenants per hashring.", }, []string{"name"}), } - - if r != nil { - r.MustRegister( - c.hashGauge, - c.successGauge, - c.lastSuccessTimeGauge, - c.changesCounter, - c.errorCounter, - c.refreshCounter, - c.hashringNodesGauge, - c.hashringTenantsGauge, - ) - } - return c, nil } @@ -180,39 +174,37 @@ func (cw *ConfigWatcher) C() <-chan []HashringConfig { return cw.ch } -// readFile reads the configured file and returns content of configuration file. -func (cw *ConfigWatcher) readFile() ([]byte, error) { - fd, err := os.Open(cw.path) +// ValidateConfig returns an error if the configuration that's being watched is not valid. +func (cw *ConfigWatcher) ValidateConfig() error { + _, _, err := cw.loadConfig() + return err +} + +// loadConfig loads raw configuration content and returns a configuration. +func (cw *ConfigWatcher) loadConfig() ([]HashringConfig, float64, error) { + cfgContent, err := cw.readFile() if err != nil { - return nil, err + return nil, 0, errors.Wrap(err, "failed to read configuration file") } - defer func() { - if err := fd.Close(); err != nil { - level.Error(cw.logger).Log("msg", "failed to close file", "err", err, "path", cw.path) - } - }() - return ioutil.ReadAll(fd) -} + config, err := cw.parseConfig(cfgContent) + if err != nil { + return nil, 0, errors.Wrapf(errParseConfigurationFile, "failed to parse configuration file: %v", err) + } -// loadConfig loads raw configuration content and returns a configuration. -func (cw *ConfigWatcher) loadConfig(content []byte) ([]HashringConfig, error) { - var config []HashringConfig - err := json.Unmarshal(content, &config) - return config, err + // If hashring is empty, return an error. + if len(config) == 0 { + return nil, 0, errors.Wrapf(errEmptyConfigurationFile, "failed to load configuration file, path: %s", cw.path) + } + + return config, hashAsMetricValue(cfgContent), nil } // refresh reads the configured file and sends the hashring configuration on the channel. func (cw *ConfigWatcher) refresh(ctx context.Context) { cw.refreshCounter.Inc() - cfgContent, err := cw.readFile() - if err != nil { - cw.errorCounter.Inc() - level.Error(cw.logger).Log("msg", "failed to read configuration file", "err", err, "path", cw.path) - return - } - config, err := cw.loadConfig(cfgContent) + config, cfgHash, err := cw.loadConfig() if err != nil { cw.errorCounter.Inc() level.Error(cw.logger).Log("msg", "failed to load configuration file", "err", err, "path", cw.path) @@ -220,15 +212,17 @@ func (cw *ConfigWatcher) refresh(ctx context.Context) { } // If there was no change to the configuration, return early. - if reflect.DeepEqual(cw.last, config) { + if cw.lastLoadedConfigHash == cfgHash { return } + cw.changesCounter.Inc() + // Save the last known configuration. - cw.last = config + cw.lastLoadedConfigHash = cfgHash + cw.hashGauge.Set(cfgHash) cw.successGauge.Set(1) cw.lastSuccessTimeGauge.SetToCurrentTime() - cw.hashGauge.Set(hashAsMetricValue(cfgContent)) for _, c := range config { cw.hashringNodesGauge.WithLabelValues(c.Hashring).Set(float64(len(c.Endpoints))) @@ -271,6 +265,28 @@ func (cw *ConfigWatcher) stop() { level.Debug(cw.logger).Log("msg", "hashring configuration watcher stopped") } +// readFile reads the configuration file and returns content of configuration file. +func (cw *ConfigWatcher) readFile() ([]byte, error) { + fd, err := os.Open(cw.path) + if err != nil { + return nil, err + } + defer func() { + if err := fd.Close(); err != nil { + level.Error(cw.logger).Log("msg", "failed to close file", "err", err, "path", cw.path) + } + }() + + return ioutil.ReadAll(fd) +} + +// parseConfig parses the raw configuration content and returns a HashringConfig. +func (cw *ConfigWatcher) parseConfig(content []byte) ([]HashringConfig, error) { + var config []HashringConfig + err := json.Unmarshal(content, &config) + return config, err +} + // hashAsMetricValue generates metric value from hash of data. func hashAsMetricValue(data []byte) float64 { sum := md5.Sum(data) diff --git a/pkg/receive/config_test.go b/pkg/receive/config_test.go new file mode 100644 index 00000000000..1fca1c8ab85 --- /dev/null +++ b/pkg/receive/config_test.go @@ -0,0 +1,76 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +package receive + +import ( + "encoding/json" + "io/ioutil" + "os" + "testing" + + "github.com/pkg/errors" +) + +func TestValidateConfig(t *testing.T) { + for _, tc := range []struct { + name string + cfg interface{} + err error + }{ + { + name: " config", + cfg: nil, + err: errEmptyConfigurationFile, + }, + { + name: "empty config", + cfg: []HashringConfig{}, + err: errEmptyConfigurationFile, + }, + { + name: "unparsable config", + cfg: struct{}{}, + err: errParseConfigurationFile, + }, + { + name: "valid config", + cfg: []HashringConfig{ + { + Endpoints: []string{"node1"}, + }, + }, + err: nil, // means it's valid. + }, + } { + var content []byte + var err error + if content, err = json.Marshal(tc.cfg); err != nil { + t.Error(err) + } + + tmpfile, err := ioutil.TempFile("", "configwatcher_test.*.json") + if err != nil { + t.Fatalf("case %q: unexpectedly failed creating the temp file: %v", tc.name, err) + } + defer os.Remove(tmpfile.Name()) + + if _, err := tmpfile.Write(content); err != nil { + t.Fatalf("case %q: unexpectedly failed writing to the temp file: %v", tc.name, err) + } + + if err := tmpfile.Close(); err != nil { + t.Fatalf("case %q: unexpectedly failed closing the temp file: %v", tc.name, err) + } + + cw, err := NewConfigWatcher(nil, nil, tmpfile.Name(), 1) + if err != nil { + t.Fatalf("case %q: unexpectedly failed creating config watcher: %v", tc.name, err) + } + + if err := cw.ValidateConfig(); err != nil && !errors.Is(err, tc.err) { + t.Errorf("case %q: got unexpected error: %v", tc.name, err) + continue + } + } +} diff --git a/pkg/receive/handler.go b/pkg/receive/handler.go index 4be160972af..fa31ae58d7d 100644 --- a/pkg/receive/handler.go +++ b/pkg/receive/handler.go @@ -22,10 +22,11 @@ import ( opentracing "github.com/opentracing/opentracing-go" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/common/route" - "github.com/prometheus/prometheus/prompb" "github.com/prometheus/prometheus/storage" terrors "github.com/prometheus/prometheus/tsdb/errors" + "github.com/thanos-io/thanos/pkg/store/storepb/prompb" "google.golang.org/grpc" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" @@ -59,7 +60,6 @@ type Options struct { ReplicationFactor uint64 Tracer opentracing.Tracer TLSConfig *tls.Config - TLSClientConfig *tls.Config DialOpts []grpc.DialOption } @@ -90,7 +90,7 @@ func NewHandler(logger log.Logger, o *Options) *Handler { router: route.New(), options: o, peers: newPeerGroup(o.DialOpts...), - forwardRequestsTotal: prometheus.NewCounterVec( + forwardRequestsTotal: promauto.With(o.Registry).NewCounterVec( prometheus.CounterOpts{ Name: "thanos_receive_forward_requests_total", Help: "The number of forward requests.", @@ -101,7 +101,6 @@ func NewHandler(logger log.Logger, o *Options) *Handler { ins := extpromhttp.NewNopInstrumentationMiddleware() if o.Registry != nil { ins = extpromhttp.NewInstrumentationMiddleware(o.Registry) - o.Registry.MustRegister(h.forwardRequestsTotal) } readyf := h.testReady @@ -192,6 +191,13 @@ func (h *Handler) Run() error { TLSConfig: h.options.TLSConfig, } + if h.options.TLSConfig != nil { + level.Info(h.logger).Log("msg", "Serving HTTPS", "address", h.options.ListenAddress) + // Cert & Key are already being passed in via TLSConfig. + return httpSrv.ServeTLS(h.listener, "", "") + } + + level.Info(h.logger).Log("msg", "Serving plain HTTP", "address", h.options.ListenAddress) return httpSrv.Serve(h.listener) } @@ -356,7 +362,11 @@ func (h *Handler) parallelizeRequests(ctx context.Context, tenant string, replic if h.writer == nil { err = errors.New("storage is not ready") } else { - err = h.writer.Write(wreqs[endpoint]) + // Create a span to track writing the request into TSDB. + tracing.DoInSpan(ctx, "receive_tsdb_write", func(ctx context.Context) { + + err = h.writer.Write(wreqs[endpoint]) + }) // When a MultiError is added to another MultiError, the error slices are concatenated, not nested. // To avoid breaking the counting logic, we need to flatten the error. if errs, ok := err.(terrors.MultiError); ok { @@ -395,24 +405,22 @@ func (h *Handler) parallelizeRequests(ctx context.Context, tenant string, replic ec <- err return } - // Create a span to track the request made to another receive node. - span, ctx := tracing.StartSpan(ctx, "thanos_receive_forward") - defer span.Finish() - - // Actually make the request against the endpoint - // we determined should handle these time series. - _, err = cl.RemoteWrite(ctx, &storepb.WriteRequest{ - Timeseries: wreqs[endpoint].Timeseries, - Tenant: tenant, - Replica: int64(replicas[endpoint].n + 1), // increment replica since on-the-wire format is 1-indexed and 0 indicates unreplicated. + tracing.DoInSpan(ctx, "receive_forward", func(ctx context.Context) { + // Actually make the request against the endpoint + // we determined should handle these time series. + _, err = cl.RemoteWrite(ctx, &storepb.WriteRequest{ + Timeseries: wreqs[endpoint].Timeseries, + Tenant: tenant, + Replica: int64(replicas[endpoint].n + 1), // increment replica since on-the-wire format is 1-indexed and 0 indicates unreplicated. + }) + if err != nil { + level.Error(h.logger).Log("msg", "forwarding request", "err", err, "endpoint", endpoint) + ec <- err + return + } + ec <- nil }) - if err != nil { - level.Error(h.logger).Log("msg", "forwarding request", "err", err, "endpoint", endpoint) - ec <- err - return - } - ec <- nil }(endpoint) } diff --git a/pkg/receive/handler_test.go b/pkg/receive/handler_test.go index 5d48e32f21f..f4f39d611b6 100644 --- a/pkg/receive/handler_test.go +++ b/pkg/receive/handler_test.go @@ -19,12 +19,11 @@ import ( "github.com/golang/snappy" "github.com/pkg/errors" "github.com/prometheus/prometheus/pkg/labels" - "github.com/prometheus/prometheus/prompb" "github.com/prometheus/prometheus/storage" terrors "github.com/prometheus/prometheus/tsdb/errors" - "google.golang.org/grpc" - "github.com/thanos-io/thanos/pkg/store/storepb" + "github.com/thanos-io/thanos/pkg/store/storepb/prompb" + "google.golang.org/grpc" ) func TestCountCause(t *testing.T) { diff --git a/pkg/receive/hashring.go b/pkg/receive/hashring.go index 947ff0d1fd3..ef6c94390a9 100644 --- a/pkg/receive/hashring.go +++ b/pkg/receive/hashring.go @@ -5,13 +5,13 @@ package receive import ( "context" - "errors" "fmt" "sort" "sync" "github.com/cespare/xxhash" - "github.com/prometheus/prometheus/prompb" + "github.com/pkg/errors" + "github.com/thanos-io/thanos/pkg/store/storepb/prompb" ) const sep = '\xff' @@ -165,19 +165,19 @@ func newMultiHashring(cfg []HashringConfig) Hashring { // Which hashring to use for a tenant is determined // by the tenants field of the hashring configuration. // The updates chan is closed before exiting. -func HashringFromConfig(ctx context.Context, updates chan<- Hashring, cw *ConfigWatcher) { - go cw.Run(ctx) +func HashringFromConfig(ctx context.Context, updates chan<- Hashring, cw *ConfigWatcher) error { defer close(updates) + go cw.Run(ctx) for { select { case cfg, ok := <-cw.C(): if !ok { - return + return errors.New("hashring config watcher stopped unexpectedly") } updates <- newMultiHashring(cfg) case <-ctx.Done(): - return + return ctx.Err() } } } diff --git a/pkg/receive/hashring_test.go b/pkg/receive/hashring_test.go index b2a50fdc4bb..a7d6fdbb258 100644 --- a/pkg/receive/hashring_test.go +++ b/pkg/receive/hashring_test.go @@ -6,7 +6,7 @@ package receive import ( "testing" - "github.com/prometheus/prometheus/prompb" + "github.com/thanos-io/thanos/pkg/store/storepb/prompb" ) func TestHash(t *testing.T) { diff --git a/pkg/receive/writer.go b/pkg/receive/writer.go index aeccbfbfbee..920e8c1c069 100644 --- a/pkg/receive/writer.go +++ b/pkg/receive/writer.go @@ -9,11 +9,11 @@ import ( "github.com/go-kit/kit/log" "github.com/go-kit/kit/log/level" "github.com/pkg/errors" - "github.com/prometheus/prometheus/prompb" - "github.com/prometheus/prometheus/pkg/labels" "github.com/prometheus/prometheus/storage" terrors "github.com/prometheus/prometheus/tsdb/errors" + + "github.com/thanos-io/thanos/pkg/store/storepb/prompb" ) // Appendable returns an Appender. diff --git a/pkg/replicate/replicator.go b/pkg/replicate/replicator.go new file mode 100644 index 00000000000..82455be46d1 --- /dev/null +++ b/pkg/replicate/replicator.go @@ -0,0 +1,218 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +package replicate + +import ( + "context" + "math/rand" + "strconv" + "strings" + "time" + + "github.com/go-kit/kit/log" + "github.com/go-kit/kit/log/level" + "github.com/oklog/run" + "github.com/oklog/ulid" + opentracing "github.com/opentracing/opentracing-go" + "github.com/pkg/errors" + "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" + "github.com/prometheus/common/model" + "github.com/prometheus/prometheus/pkg/labels" + thanosblock "github.com/thanos-io/thanos/pkg/block" + "github.com/thanos-io/thanos/pkg/compact" + "github.com/thanos-io/thanos/pkg/component" + "github.com/thanos-io/thanos/pkg/extflag" + "github.com/thanos-io/thanos/pkg/extprom" + "github.com/thanos-io/thanos/pkg/objstore/client" + "github.com/thanos-io/thanos/pkg/prober" + "github.com/thanos-io/thanos/pkg/runutil" + "github.com/thanos-io/thanos/pkg/server/http" +) + +// ParseFlagMatchers parse flag into matchers. +func ParseFlagMatchers(s []string) ([]*labels.Matcher, error) { + matchers := make([]*labels.Matcher, 0, len(s)) + + for _, l := range s { + parts := strings.SplitN(l, "=", 2) + if len(parts) != 2 { + return nil, errors.Errorf("unrecognized label %q", l) + } + + labelName := parts[0] + if !model.LabelName.IsValid(model.LabelName(labelName)) { + return nil, errors.Errorf("unsupported format for label %s", l) + } + + labelValue, err := strconv.Unquote(parts[1]) + if err != nil { + return nil, errors.Wrap(err, "unquote label value") + } + newEqualMatcher, err := labels.NewMatcher(labels.MatchEqual, labelName, labelValue) + if err != nil { + return nil, errors.Wrap(err, "new equal matcher") + } + matchers = append(matchers, newEqualMatcher) + } + + return matchers, nil +} + +// RunReplicate replicate data based on config. +func RunReplicate( + g *run.Group, + logger log.Logger, + reg *prometheus.Registry, + _ opentracing.Tracer, + httpBindAddr string, + httpGracePeriod time.Duration, + labelSelector labels.Selector, + resolution compact.ResolutionLevel, + compaction int, + fromObjStoreConfig *extflag.PathOrContent, + toObjStoreConfig *extflag.PathOrContent, + singleRun bool, +) error { + logger = log.With(logger, "component", "replicate") + + level.Debug(logger).Log("msg", "setting up http listen-group") + + httpProbe := prober.NewHTTP() + statusProber := prober.Combine( + httpProbe, + prober.NewInstrumentation(component.Replicate, logger, extprom.WrapRegistererWithPrefix("thanos_", reg)), + ) + + s := http.New(logger, reg, component.Replicate, httpProbe, + http.WithListen(httpBindAddr), + http.WithGracePeriod(httpGracePeriod), + ) + + g.Add(func() error { + level.Info(logger).Log("msg", "Listening for http service", "address", httpBindAddr) + + statusProber.Healthy() + + return s.ListenAndServe() + }, func(err error) { + statusProber.NotReady(err) + defer statusProber.NotHealthy(err) + + s.Shutdown(err) + }) + + fromConfContentYaml, err := fromObjStoreConfig.Content() + if err != nil { + return err + } + + if len(fromConfContentYaml) == 0 { + return errors.New("No supported bucket was configured to replicate from") + } + + fromBkt, err := client.NewBucket( + logger, + fromConfContentYaml, + prometheus.WrapRegistererWith(prometheus.Labels{"replicate": "from"}, reg), + component.Replicate.String(), + ) + if err != nil { + return err + } + + toConfContentYaml, err := toObjStoreConfig.Content() + if err != nil { + return err + } + + if len(toConfContentYaml) == 0 { + return errors.New("No supported bucket was configured to replicate to") + } + + toBkt, err := client.NewBucket( + logger, + toConfContentYaml, + prometheus.WrapRegistererWith(prometheus.Labels{"replicate": "to"}, reg), + component.Replicate.String(), + ) + if err != nil { + return err + } + + replicationRunCounter := promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ + Name: "thanos_replicate_replication_runs_total", + Help: "The number of replication runs split by success and error.", + }, []string{"result"}) + + replicationRunDuration := promauto.With(reg).NewHistogramVec(prometheus.HistogramOpts{ + Name: "thanos_replicate_replication_run_duration_seconds", + Help: "The Duration of replication runs split by success and error.", + }, []string{"result"}) + + fetcher, err := thanosblock.NewMetaFetcher(logger, 32, fromBkt, "", reg, nil, nil) + if err != nil { + return errors.Wrapf(err, "create meta fetcher with bucket %v", fromBkt) + } + + blockFilter := NewBlockFilter( + logger, + labelSelector, + resolution, + compaction, + ).Filter + metrics := newReplicationMetrics(reg) + ctx, cancel := context.WithCancel(context.Background()) + + replicateFn := func() error { + timestamp := time.Now() + entropy := ulid.Monotonic(rand.New(rand.NewSource(timestamp.UnixNano())), 0) + + ulid, err := ulid.New(ulid.Timestamp(timestamp), entropy) + if err != nil { + return errors.Wrap(err, "generate replication run-id") + } + + logger := log.With(logger, "replication-run-id", ulid.String()) + level.Info(logger).Log("msg", "running replication attempt") + + if err := newReplicationScheme(logger, metrics, blockFilter, fetcher, fromBkt, toBkt, reg).execute(ctx); err != nil { + return errors.Wrap(err, "replication execute") + } + + return nil + } + + g.Add(func() error { + defer runutil.CloseWithLogOnErr(logger, fromBkt, "from bucket client") + defer runutil.CloseWithLogOnErr(logger, toBkt, "to bucket client") + + if singleRun { + return replicateFn() + } + + return runutil.Repeat(time.Minute, ctx.Done(), func() error { + start := time.Now() + if err := replicateFn(); err != nil { + level.Error(logger).Log("msg", "running replication failed", "err", err) + replicationRunCounter.WithLabelValues("error").Inc() + replicationRunDuration.WithLabelValues("error").Observe(time.Since(start).Seconds()) + + // No matter the error we want to repeat indefinitely. + return nil + } + replicationRunCounter.WithLabelValues("success").Inc() + replicationRunDuration.WithLabelValues("success").Observe(time.Since(start).Seconds()) + level.Info(logger).Log("msg", "ran replication successfully") + + return nil + }) + }, func(error) { + cancel() + }) + + level.Info(logger).Log("msg", "starting replication") + + return nil +} diff --git a/pkg/replicate/scheme.go b/pkg/replicate/scheme.go new file mode 100644 index 00000000000..ba5fa113ba3 --- /dev/null +++ b/pkg/replicate/scheme.go @@ -0,0 +1,379 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +package replicate + +import ( + "bytes" + "context" + "io" + "io/ioutil" + "path" + "sort" + + "github.com/go-kit/kit/log" + "github.com/go-kit/kit/log/level" + "github.com/oklog/ulid" + "github.com/pkg/errors" + "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" + "github.com/prometheus/prometheus/pkg/labels" + thanosblock "github.com/thanos-io/thanos/pkg/block" + "github.com/thanos-io/thanos/pkg/block/metadata" + "github.com/thanos-io/thanos/pkg/compact" + "github.com/thanos-io/thanos/pkg/objstore" + "github.com/thanos-io/thanos/pkg/runutil" +) + +// BlockFilter is block filter that filters out compacted and unselected blocks. +type BlockFilter struct { + logger log.Logger + labelSelector labels.Selector + resolutionLevel compact.ResolutionLevel + compactionLevel int +} + +// NewBlockFilter returns block filter. +func NewBlockFilter( + logger log.Logger, + labelSelector labels.Selector, + resolutionLevel compact.ResolutionLevel, + compactionLevel int, +) *BlockFilter { + return &BlockFilter{ + labelSelector: labelSelector, + logger: logger, + resolutionLevel: resolutionLevel, + compactionLevel: compactionLevel, + } +} + +// Filter return true if block is non-compacted and matches selector. +func (bf *BlockFilter) Filter(b *metadata.Meta) bool { + if len(b.Thanos.Labels) == 0 { + level.Error(bf.logger).Log("msg", "filtering block", "reason", "labels should not be empty") + return false + } + + blockLabels := labels.FromMap(b.Thanos.Labels) + + labelMatch := bf.labelSelector.Matches(blockLabels) + if !labelMatch { + selStr := "{" + + for i, m := range bf.labelSelector { + if i != 0 { + selStr += "," + } + + selStr += m.String() + } + + selStr += "}" + + level.Debug(bf.logger).Log("msg", "filtering block", "reason", "labels don't match", "block_labels", blockLabels.String(), "selector", selStr) + + return false + } + + gotResolution := compact.ResolutionLevel(b.Thanos.Downsample.Resolution) + expectedResolution := bf.resolutionLevel + + resolutionMatch := gotResolution == expectedResolution + if !resolutionMatch { + level.Debug(bf.logger).Log("msg", "filtering block", "reason", "resolutions don't match", "got_resolution", gotResolution, "expected_resolution", expectedResolution) + return false + } + + gotCompactionLevel := b.BlockMeta.Compaction.Level + expectedCompactionLevel := bf.compactionLevel + + compactionMatch := gotCompactionLevel == expectedCompactionLevel + if !compactionMatch { + level.Debug(bf.logger).Log("msg", "filtering block", "reason", "compaction levels don't match", "got_compaction_level", gotCompactionLevel, "expected_compaction_level", expectedCompactionLevel) + return false + } + + return true +} + +type blockFilterFunc func(b *metadata.Meta) bool + +// TODO: Add filters field. +type replicationScheme struct { + fromBkt objstore.BucketReader + toBkt objstore.Bucket + + blockFilter blockFilterFunc + fetcher thanosblock.MetadataFetcher + + logger log.Logger + metrics *replicationMetrics + + reg prometheus.Registerer +} + +type replicationMetrics struct { + originIterations prometheus.Counter + originMetaLoads prometheus.Counter + originPartialMeta prometheus.Counter + + blocksAlreadyReplicated prometheus.Counter + blocksReplicated prometheus.Counter + objectsReplicated prometheus.Counter +} + +func newReplicationMetrics(reg prometheus.Registerer) *replicationMetrics { + m := &replicationMetrics{ + originIterations: promauto.With(reg).NewCounter(prometheus.CounterOpts{ + Name: "thanos_replicate_origin_iterations_total", + Help: "Total number of objects iterated over in the origin bucket.", + }), + originMetaLoads: promauto.With(reg).NewCounter(prometheus.CounterOpts{ + Name: "thanos_replicate_origin_meta_loads_total", + Help: "Total number of meta.json reads in the origin bucket.", + }), + originPartialMeta: promauto.With(reg).NewCounter(prometheus.CounterOpts{ + Name: "thanos_replicate_origin_partial_meta_reads_total", + Help: "Total number of partial meta reads encountered.", + }), + blocksAlreadyReplicated: promauto.With(reg).NewCounter(prometheus.CounterOpts{ + Name: "thanos_replicate_blocks_already_replicated_total", + Help: "Total number of blocks skipped due to already being replicated.", + }), + blocksReplicated: promauto.With(reg).NewCounter(prometheus.CounterOpts{ + Name: "thanos_replicate_blocks_replicated_total", + Help: "Total number of blocks replicated.", + }), + objectsReplicated: promauto.With(reg).NewCounter(prometheus.CounterOpts{ + Name: "thanos_replicate_objects_replicated_total", + Help: "Total number of objects replicated.", + }), + } + return m +} + +func newReplicationScheme( + logger log.Logger, + metrics *replicationMetrics, + blockFilter blockFilterFunc, + fetcher thanosblock.MetadataFetcher, + from objstore.BucketReader, + to objstore.Bucket, + reg prometheus.Registerer, +) *replicationScheme { + if logger == nil { + logger = log.NewNopLogger() + } + + return &replicationScheme{ + logger: logger, + blockFilter: blockFilter, + fetcher: fetcher, + fromBkt: from, + toBkt: to, + metrics: metrics, + reg: reg, + } +} + +func (rs *replicationScheme) execute(ctx context.Context) error { + availableBlocks := []*metadata.Meta{} + + level.Debug(rs.logger).Log("msg", "scanning blocks available blocks for replication") + + if err := rs.fromBkt.Iter(ctx, "", func(name string) error { + rs.metrics.originIterations.Inc() + + id, ok := thanosblock.IsBlockDir(name) + if !ok { + return nil + } + + rs.metrics.originMetaLoads.Inc() + + meta, metaNonExistentOrPartial, err := loadMeta(ctx, rs, id) + if metaNonExistentOrPartial { + // meta.json is the last file uploaded by a Thanos shipper, + // therefore a block may be partially present, but no meta.json + // file yet. If this is the case we skip that block for now. + rs.metrics.originPartialMeta.Inc() + level.Info(rs.logger).Log("msg", "block meta not uploaded yet. Skipping.", "block_uuid", id.String()) + return nil + } + if err != nil { + return errors.Wrapf(err, "load meta for block %v from origin bucket", id.String()) + } + + if len(meta.Thanos.Labels) == 0 { + // TODO(bwplotka): Allow injecting custom labels as shipper does. + level.Info(rs.logger).Log("msg", "block meta without Thanos external labels set. This is not allowed. Skipping.", "block_uuid", id.String()) + return nil + } + + level.Debug(rs.logger).Log("msg", "adding block to available blocks", "block_uuid", id.String()) + + availableBlocks = append(availableBlocks, meta) + + return nil + }); err != nil { + return errors.Wrap(err, "iterate over origin bucket") + } + + candidateBlocks := []*metadata.Meta{} + + for _, b := range availableBlocks { + if rs.blockFilter(b) { + level.Debug(rs.logger).Log("msg", "adding block to candidate blocks", "block_uuid", b.BlockMeta.ULID.String()) + candidateBlocks = append(candidateBlocks, b) + } + } + + // In order to prevent races in compactions by the target environment, we + // need to replicate oldest start timestamp first. + sort.Slice(candidateBlocks, func(i, j int) bool { + return candidateBlocks[i].BlockMeta.MinTime < candidateBlocks[j].BlockMeta.MinTime + }) + + for _, b := range candidateBlocks { + if err := rs.ensureBlockIsReplicated(ctx, b.BlockMeta.ULID); err != nil { + return errors.Wrapf(err, "ensure block %v is replicated", b.BlockMeta.ULID.String()) + } + } + + return nil +} + +// ensureBlockIsReplicated ensures that a block present in the origin bucket is +// present in the target bucket. +func (rs *replicationScheme) ensureBlockIsReplicated(ctx context.Context, id ulid.ULID) error { + blockID := id.String() + chunksDir := path.Join(blockID, thanosblock.ChunksDirname) + indexFile := path.Join(blockID, thanosblock.IndexFilename) + metaFile := path.Join(blockID, thanosblock.MetaFilename) + + level.Debug(rs.logger).Log("msg", "ensuring block is replicated", "block_uuid", blockID) + + originMetaFile, err := rs.fromBkt.Get(ctx, metaFile) + if err != nil { + return errors.Wrap(err, "get meta file from origin bucket") + } + + defer runutil.CloseWithLogOnErr(rs.logger, originMetaFile, "close original meta file") + + targetMetaFile, err := rs.toBkt.Get(ctx, metaFile) + + if targetMetaFile != nil { + defer runutil.CloseWithLogOnErr(rs.logger, targetMetaFile, "close target meta file") + } + + if err != nil && !rs.toBkt.IsObjNotFoundErr(err) && err != io.EOF { + return errors.Wrap(err, "get meta file from target bucket") + } + + originMetaFileContent, err := ioutil.ReadAll(originMetaFile) + if err != nil { + return errors.Wrap(err, "read origin meta file") + } + + if targetMetaFile != nil && !rs.toBkt.IsObjNotFoundErr(err) { + targetMetaFileContent, err := ioutil.ReadAll(targetMetaFile) + if err != nil { + return errors.Wrap(err, "read target meta file") + } + + if bytes.Equal(originMetaFileContent, targetMetaFileContent) { + // If the origin meta file content and target meta file content is + // equal, we know we have already successfully replicated + // previously. + level.Debug(rs.logger).Log("msg", "skipping block as already replicated", "block_uuid", id.String()) + rs.metrics.blocksAlreadyReplicated.Inc() + + return nil + } + } + + if err := rs.fromBkt.Iter(ctx, chunksDir, func(objectName string) error { + err := rs.ensureObjectReplicated(ctx, objectName) + if err != nil { + return errors.Wrapf(err, "replicate object %v", objectName) + } + + return nil + }); err != nil { + return err + } + + if err := rs.ensureObjectReplicated(ctx, indexFile); err != nil { + return errors.Wrap(err, "replicate index file") + } + + level.Debug(rs.logger).Log("msg", "replicating meta file", "object", metaFile) + + if err := rs.toBkt.Upload(ctx, metaFile, bytes.NewReader(originMetaFileContent)); err != nil { + return errors.Wrap(err, "upload meta file") + } + + rs.metrics.blocksReplicated.Inc() + + return nil +} + +// ensureBlockIsReplicated ensures that an object present in the origin bucket +// is present in the target bucket. +func (rs *replicationScheme) ensureObjectReplicated(ctx context.Context, objectName string) error { + level.Debug(rs.logger).Log("msg", "ensuring object is replicated", "object", objectName) + + exists, err := rs.toBkt.Exists(ctx, objectName) + if err != nil { + return errors.Wrapf(err, "check if %v exists in target bucket", objectName) + } + + // skip if already exists. + if exists { + level.Debug(rs.logger).Log("msg", "skipping object as already replicated", "object", objectName) + return nil + } + + level.Debug(rs.logger).Log("msg", "object not present in target bucket, replicating", "object", objectName) + + r, err := rs.fromBkt.Get(ctx, objectName) + if err != nil { + return errors.Wrapf(err, "get %v from origin bucket", objectName) + } + + defer r.Close() + + if err = rs.toBkt.Upload(ctx, objectName, r); err != nil { + return errors.Wrapf(err, "upload %v to target bucket", objectName) + } + + level.Info(rs.logger).Log("msg", "object replicated", "object", objectName) + rs.metrics.objectsReplicated.Inc() + + return nil +} + +// loadMeta loads the meta.json from the origin bucket and returns the meta +// struct as well as if failed, whether the failure was due to the meta.json +// not being present or partial. The distinction is important, as if missing or +// partial, this is just a temporary failure, as the block is still being +// uploaded to the origin bucket. +func loadMeta(ctx context.Context, rs *replicationScheme, id ulid.ULID) (*metadata.Meta, bool, error) { + metas, _, err := rs.fetcher.Fetch(ctx) + if err != nil { + switch errors.Cause(err) { + default: + return nil, false, errors.Wrap(err, "fetch meta") + case thanosblock.ErrorSyncMetaNotFound: + return nil, true, errors.Wrap(err, "fetch meta") + } + } + + m, ok := metas[id] + if !ok { + return nil, true, errors.Wrap(err, "fetch meta") + } + + return m, false, nil +} diff --git a/pkg/replicate/scheme_test.go b/pkg/replicate/scheme_test.go new file mode 100644 index 00000000000..26c83aafb64 --- /dev/null +++ b/pkg/replicate/scheme_test.go @@ -0,0 +1,334 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +package replicate + +import ( + "bytes" + "context" + "encoding/json" + "io" + "math/rand" + "os" + "path" + "testing" + "time" + + "github.com/go-kit/kit/log" + "github.com/go-kit/kit/log/level" + "github.com/oklog/ulid" + "github.com/prometheus/prometheus/pkg/labels" + "github.com/prometheus/prometheus/tsdb" + "github.com/thanos-io/thanos/pkg/block" + "github.com/thanos-io/thanos/pkg/block/metadata" + "github.com/thanos-io/thanos/pkg/compact" + "github.com/thanos-io/thanos/pkg/objstore" + "github.com/thanos-io/thanos/pkg/objstore/inmem" + "github.com/thanos-io/thanos/pkg/testutil" +) + +func testLogger(testName string) log.Logger { + return log.With( + level.NewFilter(log.NewLogfmtLogger(log.NewSyncWriter(os.Stderr)), level.AllowDebug()), + "test", testName, + ) +} + +func testULID(inc int64) ulid.ULID { + timestamp := time.Unix(1000000+inc, 0) + entropy := ulid.Monotonic(rand.New(rand.NewSource(timestamp.UnixNano())), 0) + ulid := ulid.MustNew(ulid.Timestamp(timestamp), entropy) + + return ulid +} + +func testMeta(ulid ulid.ULID) *metadata.Meta { + return &metadata.Meta{ + Thanos: metadata.Thanos{ + Labels: map[string]string{ + "test-labelname": "test-labelvalue", + }, + Downsample: metadata.ThanosDownsample{ + Resolution: int64(compact.ResolutionLevelRaw), + }, + }, + BlockMeta: tsdb.BlockMeta{ + ULID: ulid, + Compaction: tsdb.BlockMetaCompaction{ + Level: 1, + }, + Version: metadata.MetaVersion1, + }, + } +} + +func TestReplicationSchemeAll(t *testing.T) { + var cases = []struct { + name string + selector labels.Selector + prepare func(ctx context.Context, t *testing.T, originBucket, targetBucket objstore.Bucket) + assert func(ctx context.Context, t *testing.T, originBucket, targetBucket *inmem.Bucket) + }{ + { + name: "EmptyOrigin", + prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket objstore.Bucket) {}, + assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *inmem.Bucket) {}, + }, + { + name: "NoMeta", + prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket objstore.Bucket) { + _ = originBucket.Upload(ctx, path.Join(testULID(0).String(), "chunks", "000001"), bytes.NewReader(nil)) + }, + assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *inmem.Bucket) { + if len(targetBucket.Objects()) != 0 { + t.Fatal("TargetBucket should have been empty but is not.") + } + }, + }, + { + name: "PartialMeta", + prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket objstore.Bucket) { + _ = originBucket.Upload(ctx, path.Join(testULID(0).String(), "meta.json"), bytes.NewReader([]byte("{"))) + }, + assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *inmem.Bucket) { + if len(targetBucket.Objects()) != 0 { + t.Fatal("TargetBucket should have been empty but is not.") + } + }, + }, + { + name: "FullBlock", + prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket objstore.Bucket) { + ulid := testULID(0) + meta := testMeta(ulid) + + b, err := json.Marshal(meta) + testutil.Ok(t, err) + _ = originBucket.Upload(ctx, path.Join(ulid.String(), "meta.json"), bytes.NewReader(b)) + _ = originBucket.Upload(ctx, path.Join(ulid.String(), "chunks", "000001"), bytes.NewReader(nil)) + _ = originBucket.Upload(ctx, path.Join(ulid.String(), "index"), bytes.NewReader(nil)) + }, + assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *inmem.Bucket) { + if len(targetBucket.Objects()) != 3 { + t.Fatal("TargetBucket should have one block made up of three objects replicated.") + } + }, + }, + { + name: "PreviousPartialUpload", + prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket objstore.Bucket) { + ulid := testULID(0) + meta := testMeta(ulid) + + b, err := json.Marshal(meta) + testutil.Ok(t, err) + _ = originBucket.Upload(ctx, path.Join(ulid.String(), "meta.json"), bytes.NewReader(b)) + _ = originBucket.Upload(ctx, path.Join(ulid.String(), "chunks", "000001"), bytes.NewReader(nil)) + _ = originBucket.Upload(ctx, path.Join(ulid.String(), "index"), bytes.NewReader(nil)) + + _ = targetBucket.Upload(ctx, path.Join(ulid.String(), "meta.json"), io.LimitReader(bytes.NewReader(b), int64(len(b)-10))) + _ = targetBucket.Upload(ctx, path.Join(ulid.String(), "chunks", "000001"), bytes.NewReader(nil)) + _ = targetBucket.Upload(ctx, path.Join(ulid.String(), "index"), bytes.NewReader(nil)) + }, + assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *inmem.Bucket) { + for k := range originBucket.Objects() { + if !bytes.Equal(originBucket.Objects()[k], targetBucket.Objects()[k]) { + t.Fatalf("Object %s not equal in origin and target bucket.", k) + } + } + }, + }, + { + name: "OnlyUploadsRaw", + prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket objstore.Bucket) { + ulid := testULID(0) + meta := testMeta(ulid) + + b, err := json.Marshal(meta) + testutil.Ok(t, err) + _ = originBucket.Upload(ctx, path.Join(ulid.String(), "meta.json"), bytes.NewReader(b)) + _ = originBucket.Upload(ctx, path.Join(ulid.String(), "chunks", "000001"), bytes.NewReader(nil)) + _ = originBucket.Upload(ctx, path.Join(ulid.String(), "index"), bytes.NewReader(nil)) + + ulid = testULID(1) + meta = testMeta(ulid) + meta.Thanos.Downsample.Resolution = int64(compact.ResolutionLevel5m) + + b, err = json.Marshal(meta) + testutil.Ok(t, err) + _ = originBucket.Upload(ctx, path.Join(ulid.String(), "meta.json"), bytes.NewReader(b)) + _ = originBucket.Upload(ctx, path.Join(ulid.String(), "chunks", "000001"), bytes.NewReader(nil)) + _ = originBucket.Upload(ctx, path.Join(ulid.String(), "index"), bytes.NewReader(nil)) + }, + assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *inmem.Bucket) { + expected := 3 + got := len(targetBucket.Objects()) + if got != expected { + t.Fatalf("TargetBucket should have one block made up of three objects replicated. Got %d but expected %d objects.", got, expected) + } + }, + }, + { + name: "UploadMultipleCandidatesWhenPresent", + prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket objstore.Bucket) { + ulid := testULID(0) + meta := testMeta(ulid) + + b, err := json.Marshal(meta) + testutil.Ok(t, err) + _ = originBucket.Upload(ctx, path.Join(ulid.String(), "meta.json"), bytes.NewReader(b)) + _ = originBucket.Upload(ctx, path.Join(ulid.String(), "chunks", "000001"), bytes.NewReader(nil)) + _ = originBucket.Upload(ctx, path.Join(ulid.String(), "index"), bytes.NewReader(nil)) + + ulid = testULID(1) + meta = testMeta(ulid) + + b, err = json.Marshal(meta) + testutil.Ok(t, err) + _ = originBucket.Upload(ctx, path.Join(ulid.String(), "meta.json"), bytes.NewReader(b)) + _ = originBucket.Upload(ctx, path.Join(ulid.String(), "chunks", "000001"), bytes.NewReader(nil)) + _ = originBucket.Upload(ctx, path.Join(ulid.String(), "index"), bytes.NewReader(nil)) + }, + assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *inmem.Bucket) { + expected := 6 + got := len(targetBucket.Objects()) + if got != expected { + t.Fatalf("TargetBucket should have two blocks made up of three objects replicated. Got %d but expected %d objects.", got, expected) + } + }, + }, + { + name: "LabelSelector", + prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket objstore.Bucket) { + ulid := testULID(0) + meta := testMeta(ulid) + + b, err := json.Marshal(meta) + testutil.Ok(t, err) + _ = originBucket.Upload(ctx, path.Join(ulid.String(), "meta.json"), bytes.NewReader(b)) + _ = originBucket.Upload(ctx, path.Join(ulid.String(), "chunks", "000001"), bytes.NewReader(nil)) + _ = originBucket.Upload(ctx, path.Join(ulid.String(), "index"), bytes.NewReader(nil)) + + ulid = testULID(1) + meta = testMeta(ulid) + meta.Thanos.Labels["test-labelname"] = "non-selected-value" + + b, err = json.Marshal(meta) + testutil.Ok(t, err) + _ = originBucket.Upload(ctx, path.Join(ulid.String(), "meta.json"), bytes.NewReader(b)) + _ = originBucket.Upload(ctx, path.Join(ulid.String(), "chunks", "000001"), bytes.NewReader(nil)) + _ = originBucket.Upload(ctx, path.Join(ulid.String(), "index"), bytes.NewReader(nil)) + }, + assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *inmem.Bucket) { + expected := 3 + got := len(targetBucket.Objects()) + if got != expected { + t.Fatalf("TargetBucket should have one block made up of three objects replicated. Got %d but expected %d objects.", got, expected) + } + }, + }, + { + name: "NonZeroCompaction", + prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket objstore.Bucket) { + ulid := testULID(0) + meta := testMeta(ulid) + meta.BlockMeta.Compaction.Level = 2 + + b, err := json.Marshal(meta) + testutil.Ok(t, err) + _ = originBucket.Upload(ctx, path.Join(ulid.String(), "meta.json"), bytes.NewReader(b)) + _ = originBucket.Upload(ctx, path.Join(ulid.String(), "chunks", "000001"), bytes.NewReader(nil)) + _ = originBucket.Upload(ctx, path.Join(ulid.String(), "index"), bytes.NewReader(nil)) + }, + assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *inmem.Bucket) { + if len(targetBucket.Objects()) != 0 { + t.Fatal("TargetBucket should have been empty but is not.") + } + }, + }, + { + name: "Regression", + selector: labels.Selector{}, + prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket objstore.Bucket) { + b := []byte(`{ + "ulid": "01DQYXMK8G108CEBQ79Y84DYVY", + "minTime": 1571911200000, + "maxTime": 1571918400000, + "stats": { + "numSamples": 90793, + "numSeries": 3703, + "numChunks": 3746 + }, + "compaction": { + "level": 1, + "sources": [ + "01DQYXMK8G108CEBQ79Y84DYVY" + ] + }, + "version": 1, + "thanos": { + "labels": { + "receive": "true", + "replica": "thanos-receive-default-0" + }, + "downsample": { + "resolution": 0 + }, + "source": "receive" + } +}`) + + _ = originBucket.Upload(ctx, path.Join("01DQYXMK8G108CEBQ79Y84DYVY", "meta.json"), bytes.NewReader(b)) + _ = originBucket.Upload(ctx, path.Join("01DQYXMK8G108CEBQ79Y84DYVY", "chunks", "000001"), bytes.NewReader(nil)) + _ = originBucket.Upload(ctx, path.Join("01DQYXMK8G108CEBQ79Y84DYVY", "index"), bytes.NewReader(nil)) + }, + assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *inmem.Bucket) { + if len(targetBucket.Objects()) != 3 { + t.Fatal("TargetBucket should have one block does not.") + } + + expected := originBucket.Objects()["01DQYXMK8G108CEBQ79Y84DYVY/meta.json"] + got := targetBucket.Objects()["01DQYXMK8G108CEBQ79Y84DYVY/meta.json"] + testutil.Equals(t, expected, got) + }, + }, + } + + for _, c := range cases { + ctx := context.Background() + originBucket := inmem.NewBucket() + targetBucket := inmem.NewBucket() + logger := testLogger(t.Name() + "/" + c.name) + + c.prepare(ctx, t, originBucket, targetBucket) + + matcher, err := labels.NewMatcher(labels.MatchEqual, "test-labelname", "test-labelvalue") + testutil.Ok(t, err) + + selector := labels.Selector{ + matcher, + } + if c.selector != nil { + selector = c.selector + } + + filter := NewBlockFilter(logger, selector, compact.ResolutionLevelRaw, 1).Filter + fetcher, err := block.NewMetaFetcher(logger, 32, originBucket, "", nil, nil, nil) + testutil.Ok(t, err) + + r := newReplicationScheme( + logger, + newReplicationMetrics(nil), + filter, + fetcher, + originBucket, + targetBucket, + nil, + ) + + err = r.execute(ctx) + testutil.Ok(t, err) + + c.assert(ctx, t, originBucket, targetBucket) + } +} diff --git a/pkg/rule/api/v1.go b/pkg/rule/api/v1.go index 682a79d5e77..628d678f708 100644 --- a/pkg/rule/api/v1.go +++ b/pkg/rule/api/v1.go @@ -4,12 +4,12 @@ package v1 import ( - "fmt" "net/http" "strconv" "time" "github.com/NYTimes/gziphandler" + "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" "github.com/go-kit/kit/log" @@ -111,7 +111,7 @@ func (api *API) rules(r *http.Request) (interface{}, []error, *qapi.ApiError) { Type: "recording", } default: - err := fmt.Errorf("rule %q: unsupported type %T", r.Name(), rule) + err := errors.Errorf("rule %q: unsupported type %T", r.Name(), rule) return nil, nil, &qapi.ApiError{Typ: qapi.ErrorInternal, Err: err} } diff --git a/pkg/runutil/example_test.go b/pkg/runutil/example_test.go index 5f15aefaa09..7d66d42a2ff 100644 --- a/pkg/runutil/example_test.go +++ b/pkg/runutil/example_test.go @@ -5,11 +5,11 @@ package runutil_test import ( "context" - "errors" "fmt" "log" "time" + "github.com/pkg/errors" "github.com/thanos-io/thanos/pkg/runutil" ) diff --git a/pkg/runutil/runutil.go b/pkg/runutil/runutil.go index 45d06f4e08f..5b3e85940bf 100644 --- a/pkg/runutil/runutil.go +++ b/pkg/runutil/runutil.go @@ -111,6 +111,11 @@ func CloseWithLogOnErr(logger log.Logger, closer io.Closer, format string, a ... return } + // Not a problem if it has been closed already. + if errors.Is(err, os.ErrClosed) { + return + } + if logger == nil { logger = log.NewLogfmtLogger(os.Stderr) } diff --git a/pkg/runutil/runutil_test.go b/pkg/runutil/runutil_test.go index bdbebdeb25a..7cad147b80f 100644 --- a/pkg/runutil/runutil_test.go +++ b/pkg/runutil/runutil_test.go @@ -5,9 +5,12 @@ package runutil import ( "io" + "os" + "strings" "testing" "github.com/pkg/errors" + "github.com/thanos-io/thanos/pkg/testutil" ) type testCloser struct { @@ -72,3 +75,50 @@ func TestCloseWithErrCapture(t *testing.T) { } } } + +type loggerCapturer struct { + // WasCalled is true if the Log() function has been called. + WasCalled bool +} + +func (lc *loggerCapturer) Log(keyvals ...interface{}) error { + lc.WasCalled = true + return nil +} + +type emulatedCloser struct { + io.Reader + + calls int +} + +func (e *emulatedCloser) Close() error { + e.calls++ + if e.calls == 1 { + return nil + } + if e.calls == 2 { + return errors.Wrap(os.ErrClosed, "can even be a wrapped one") + } + return errors.New("something very bad happened") +} + +// newEmulatedCloser returns a ReadCloser with a Close method +// that at first returns success but then returns that +// it has been closed already. After that, it returns that +// something very bad had happened. +func newEmulatedCloser(r io.Reader) io.ReadCloser { + return &emulatedCloser{Reader: r} +} + +func TestCloseMoreThanOnce(t *testing.T) { + lc := &loggerCapturer{} + r := newEmulatedCloser(strings.NewReader("somestring")) + + CloseWithLogOnErr(lc, r, "should not be called") + CloseWithLogOnErr(lc, r, "should not be called") + testutil.Equals(t, false, lc.WasCalled) + + CloseWithLogOnErr(lc, r, "should be called") + testutil.Equals(t, true, lc.WasCalled) +} diff --git a/pkg/server/grpc/grpc.go b/pkg/server/grpc/grpc.go index 34e25a90f24..c8ba582728b 100644 --- a/pkg/server/grpc/grpc.go +++ b/pkg/server/grpc/grpc.go @@ -17,6 +17,7 @@ import ( "github.com/opentracing/opentracing-go" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/thanos-io/thanos/pkg/component" "github.com/thanos-io/thanos/pkg/prober" "github.com/thanos-io/thanos/pkg/store/storepb" @@ -50,11 +51,10 @@ func New(logger log.Logger, reg prometheus.Registerer, tracer opentracing.Tracer met.EnableHandlingTimeHistogram( grpc_prometheus.WithHistogramBuckets([]float64{0.001, 0.01, 0.1, 0.3, 0.6, 1, 3, 6, 9, 20, 30, 60, 90, 120}), ) - panicsTotal := prometheus.NewCounter(prometheus.CounterOpts{ + panicsTotal := promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_grpc_req_panics_recovered_total", Help: "Total number of gRPC requests recovered from internal panic.", }) - reg.MustRegister(met, panicsTotal) grpcPanicRecoveryHandler := func(p interface{}) (err error) { panicsTotal.Inc() @@ -83,6 +83,7 @@ func New(logger log.Logger, reg prometheus.Registerer, tracer opentracing.Tracer storepb.RegisterStoreServer(s, storeSrv) met.InitializeMetrics(s) + reg.MustRegister(met) grpc_health.RegisterHealthServer(s, probe.HealthServer()) diff --git a/pkg/shipper/shipper.go b/pkg/shipper/shipper.go index 39e7d61d868..a865ac5c71d 100644 --- a/pkg/shipper/shipper.go +++ b/pkg/shipper/shipper.go @@ -20,6 +20,7 @@ import ( "github.com/oklog/ulid" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/prometheus/pkg/labels" "github.com/prometheus/prometheus/tsdb" "github.com/prometheus/prometheus/tsdb/fileutil" @@ -37,40 +38,33 @@ type metrics struct { uploadedCompacted prometheus.Gauge } -func newMetrics(r prometheus.Registerer, uploadCompacted bool) *metrics { +func newMetrics(reg prometheus.Registerer, uploadCompacted bool) *metrics { var m metrics - m.dirSyncs = prometheus.NewCounter(prometheus.CounterOpts{ + m.dirSyncs = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_shipper_dir_syncs_total", Help: "Total number of dir syncs", }) - m.dirSyncFailures = prometheus.NewCounter(prometheus.CounterOpts{ + m.dirSyncFailures = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_shipper_dir_sync_failures_total", Help: "Total number of failed dir syncs", }) - m.uploads = prometheus.NewCounter(prometheus.CounterOpts{ + m.uploads = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_shipper_uploads_total", Help: "Total number of uploaded blocks", }) - m.uploadFailures = prometheus.NewCounter(prometheus.CounterOpts{ + m.uploadFailures = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_shipper_upload_failures_total", Help: "Total number of block upload failures", }) - m.uploadedCompacted = prometheus.NewGauge(prometheus.GaugeOpts{ + uploadCompactedGaugeOpts := prometheus.GaugeOpts{ Name: "thanos_shipper_upload_compacted_done", Help: "If 1 it means shipper uploaded all compacted blocks from the filesystem.", - }) - - if r != nil { - r.MustRegister( - m.dirSyncs, - m.dirSyncFailures, - m.uploads, - m.uploadFailures, - ) - if uploadCompacted { - r.MustRegister(m.uploadedCompacted) - } + } + if uploadCompacted { + m.uploadedCompacted = promauto.With(reg).NewGauge(uploadCompactedGaugeOpts) + } else { + m.uploadedCompacted = promauto.With(nil).NewGauge(uploadCompactedGaugeOpts) } return &m } @@ -348,6 +342,7 @@ func (s *Shipper) Sync(ctx context.Context) (uploaded int, err error) { } // sync uploads the block if not exists in remote storage. +// TODO(khyatisoneji): Double check if block does not have deletion-mark.json for some reason, otherwise log it or return error. func (s *Shipper) upload(ctx context.Context, meta *metadata.Meta) error { level.Info(s.logger).Log("msg", "upload new block", "id", meta.ULID) diff --git a/pkg/store/bucket.go b/pkg/store/bucket.go index e7de6cdc401..81dcb4ff1e2 100644 --- a/pkg/store/bucket.go +++ b/pkg/store/bucket.go @@ -24,6 +24,7 @@ import ( "github.com/oklog/ulid" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/prometheus/pkg/labels" "github.com/prometheus/prometheus/tsdb/chunkenc" "github.com/prometheus/prometheus/tsdb/chunks" @@ -96,70 +97,76 @@ type bucketStoreMetrics struct { queriesDropped prometheus.Counter queriesLimit prometheus.Gauge seriesRefetches prometheus.Counter + + cachedPostingsCompressions *prometheus.CounterVec + cachedPostingsCompressionErrors *prometheus.CounterVec + cachedPostingsCompressionTimeSeconds *prometheus.CounterVec + cachedPostingsOriginalSizeBytes prometheus.Counter + cachedPostingsCompressedSizeBytes prometheus.Counter } func newBucketStoreMetrics(reg prometheus.Registerer) *bucketStoreMetrics { var m bucketStoreMetrics - m.blockLoads = prometheus.NewCounter(prometheus.CounterOpts{ + m.blockLoads = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_bucket_store_block_loads_total", Help: "Total number of remote block loading attempts.", }) - m.blockLoadFailures = prometheus.NewCounter(prometheus.CounterOpts{ + m.blockLoadFailures = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_bucket_store_block_load_failures_total", Help: "Total number of failed remote block loading attempts.", }) - m.blockDrops = prometheus.NewCounter(prometheus.CounterOpts{ + m.blockDrops = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_bucket_store_block_drops_total", Help: "Total number of local blocks that were dropped.", }) - m.blockDropFailures = prometheus.NewCounter(prometheus.CounterOpts{ + m.blockDropFailures = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_bucket_store_block_drop_failures_total", Help: "Total number of local blocks that failed to be dropped.", }) - m.blocksLoaded = prometheus.NewGauge(prometheus.GaugeOpts{ + m.blocksLoaded = promauto.With(reg).NewGauge(prometheus.GaugeOpts{ Name: "thanos_bucket_store_blocks_loaded", Help: "Number of currently loaded blocks.", }) - m.seriesDataTouched = prometheus.NewSummaryVec(prometheus.SummaryOpts{ + m.seriesDataTouched = promauto.With(reg).NewSummaryVec(prometheus.SummaryOpts{ Name: "thanos_bucket_store_series_data_touched", Help: "How many items of a data type in a block were touched for a single series request.", }, []string{"data_type"}) - m.seriesDataFetched = prometheus.NewSummaryVec(prometheus.SummaryOpts{ + m.seriesDataFetched = promauto.With(reg).NewSummaryVec(prometheus.SummaryOpts{ Name: "thanos_bucket_store_series_data_fetched", Help: "How many items of a data type in a block were fetched for a single series request.", }, []string{"data_type"}) - m.seriesDataSizeTouched = prometheus.NewSummaryVec(prometheus.SummaryOpts{ + m.seriesDataSizeTouched = promauto.With(reg).NewSummaryVec(prometheus.SummaryOpts{ Name: "thanos_bucket_store_series_data_size_touched_bytes", Help: "Size of all items of a data type in a block were touched for a single series request.", }, []string{"data_type"}) - m.seriesDataSizeFetched = prometheus.NewSummaryVec(prometheus.SummaryOpts{ + m.seriesDataSizeFetched = promauto.With(reg).NewSummaryVec(prometheus.SummaryOpts{ Name: "thanos_bucket_store_series_data_size_fetched_bytes", Help: "Size of all items of a data type in a block were fetched for a single series request.", }, []string{"data_type"}) - m.seriesBlocksQueried = prometheus.NewSummary(prometheus.SummaryOpts{ + m.seriesBlocksQueried = promauto.With(reg).NewSummary(prometheus.SummaryOpts{ Name: "thanos_bucket_store_series_blocks_queried", Help: "Number of blocks in a bucket store that were touched to satisfy a query.", }) - m.seriesGetAllDuration = prometheus.NewHistogram(prometheus.HistogramOpts{ + m.seriesGetAllDuration = promauto.With(reg).NewHistogram(prometheus.HistogramOpts{ Name: "thanos_bucket_store_series_get_all_duration_seconds", Help: "Time it takes until all per-block prepares and preloads for a query are finished.", Buckets: []float64{0.001, 0.01, 0.1, 0.3, 0.6, 1, 3, 6, 9, 20, 30, 60, 90, 120}, }) - m.seriesMergeDuration = prometheus.NewHistogram(prometheus.HistogramOpts{ + m.seriesMergeDuration = promauto.With(reg).NewHistogram(prometheus.HistogramOpts{ Name: "thanos_bucket_store_series_merge_duration_seconds", Help: "Time it takes to merge sub-results from all queried blocks into a single result.", Buckets: []float64{0.001, 0.01, 0.1, 0.3, 0.6, 1, 3, 6, 9, 20, 30, 60, 90, 120}, }) - m.resultSeriesCount = prometheus.NewSummary(prometheus.SummaryOpts{ + m.resultSeriesCount = promauto.With(reg).NewSummary(prometheus.SummaryOpts{ Name: "thanos_bucket_store_series_result_series", Help: "Number of series observed in the final result of a query.", }) - m.chunkSizeBytes = prometheus.NewHistogram(prometheus.HistogramOpts{ + m.chunkSizeBytes = promauto.With(reg).NewHistogram(prometheus.HistogramOpts{ Name: "thanos_bucket_store_sent_chunk_size_bytes", Help: "Size in bytes of the chunks for the single series, which is adequate to the gRPC message size sent to querier.", Buckets: []float64{ @@ -167,40 +174,40 @@ func newBucketStoreMetrics(reg prometheus.Registerer) *bucketStoreMetrics { }, }) - m.queriesDropped = prometheus.NewCounter(prometheus.CounterOpts{ + m.queriesDropped = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_bucket_store_queries_dropped_total", Help: "Number of queries that were dropped due to the sample limit.", }) - m.queriesLimit = prometheus.NewGauge(prometheus.GaugeOpts{ + m.queriesLimit = promauto.With(reg).NewGauge(prometheus.GaugeOpts{ Name: "thanos_bucket_store_queries_concurrent_max", Help: "Number of maximum concurrent queries.", }) - m.seriesRefetches = prometheus.NewCounter(prometheus.CounterOpts{ + m.seriesRefetches = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_bucket_store_series_refetches_total", Help: fmt.Sprintf("Total number of cases where %v bytes was not enough was to fetch series from index, resulting in refetch.", maxSeriesSize), }) - if reg != nil { - reg.MustRegister( - m.blockLoads, - m.blockLoadFailures, - m.blockDrops, - m.blockDropFailures, - m.blocksLoaded, - m.seriesDataTouched, - m.seriesDataFetched, - m.seriesDataSizeTouched, - m.seriesDataSizeFetched, - m.seriesBlocksQueried, - m.seriesGetAllDuration, - m.seriesMergeDuration, - m.resultSeriesCount, - m.chunkSizeBytes, - m.queriesDropped, - m.queriesLimit, - m.seriesRefetches, - ) - } + m.cachedPostingsCompressions = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ + Name: "thanos_bucket_store_cached_postings_compressions_total", + Help: "Number of postings compressions before storing to index cache.", + }, []string{"op"}) + m.cachedPostingsCompressionErrors = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ + Name: "thanos_bucket_store_cached_postings_compression_errors_total", + Help: "Number of postings compression errors.", + }, []string{"op"}) + m.cachedPostingsCompressionTimeSeconds = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ + Name: "thanos_bucket_store_cached_postings_compression_time_seconds", + Help: "Time spent compressing postings before storing them into postings cache.", + }, []string{"op"}) + m.cachedPostingsOriginalSizeBytes = promauto.With(reg).NewCounter(prometheus.CounterOpts{ + Name: "thanos_bucket_store_cached_postings_original_size_bytes_total", + Help: "Original size of postings stored into cache.", + }) + m.cachedPostingsCompressedSizeBytes = promauto.With(reg).NewCounter(prometheus.CounterOpts{ + Name: "thanos_bucket_store_cached_postings_compressed_size_bytes_total", + Help: "Compressed size of postings stored into cache.", + }) + return &m } @@ -241,6 +248,11 @@ type BucketStore struct { advLabelSets []storepb.LabelSet enableCompatibilityLabel bool enableIndexHeader bool + + // Reencode postings using diff+varint+snappy when storing to cache. + // This makes them smaller, but takes extra CPU and memory. + // When used with in-memory cache, memory usage should decrease overall, thanks to postings being smaller. + enablePostingsCompression bool } // NewBucketStore creates a new bucket backed store that implements the store API against @@ -260,6 +272,7 @@ func NewBucketStore( filterConfig *FilterConfig, enableCompatibilityLabel bool, enableIndexHeader bool, + enablePostingsCompression bool, ) (*BucketStore, error) { if logger == nil { logger = log.NewNopLogger() @@ -291,10 +304,11 @@ func NewBucketStore( maxConcurrent, extprom.WrapRegistererWithPrefix("thanos_bucket_store_series_", reg), ), - samplesLimiter: NewLimiter(maxSampleCount, metrics.queriesDropped), - partitioner: gapBasedPartitioner{maxGapSize: partitionerMaxGapSize}, - enableCompatibilityLabel: enableCompatibilityLabel, - enableIndexHeader: enableIndexHeader, + samplesLimiter: NewLimiter(maxSampleCount, metrics.queriesDropped), + partitioner: gapBasedPartitioner{maxGapSize: partitionerMaxGapSize}, + enableCompatibilityLabel: enableCompatibilityLabel, + enableIndexHeader: enableIndexHeader, + enablePostingsCompression: enablePostingsCompression, } s.metrics = metrics @@ -313,10 +327,7 @@ func (s *BucketStore) Close() (err error) { defer s.mtx.Unlock() for _, b := range s.blocks { - if e := b.Close(); e != nil { - level.Warn(s.logger).Log("msg", "closing Bucket block failed", "err", err) - err = e - } + runutil.CloseWithErrCapture(&err, b, "closing Bucket Block") } return err } @@ -368,10 +379,10 @@ func (s *BucketStore) SyncBlocks(ctx context.Context) error { continue } if err := s.removeBlock(id); err != nil { - level.Warn(s.logger).Log("msg", "drop outdated block failed", "block", id, "err", err) + level.Warn(s.logger).Log("msg", "drop of outdated block failed", "block", id, "err", err) s.metrics.blockDropFailures.Inc() } - level.Debug(s.logger).Log("msg", "dropped outdated block", "block", id) + level.Info(s.logger).Log("msg", "dropped outdated block", "block", id) s.metrics.blockDrops.Inc() } @@ -442,7 +453,7 @@ func (s *BucketStore) addBlock(ctx context.Context, meta *metadata.Meta) (err er } level.Warn(s.logger).Log("msg", "loading block failed", "elapsed", time.Since(start), "id", meta.ULID, "err", err) } else { - level.Debug(s.logger).Log("msg", "loaded block", "elapsed", time.Since(start), "id", meta.ULID) + level.Info(s.logger).Log("msg", "loaded new block", "elapsed", time.Since(start), "id", meta.ULID) } }() s.metrics.blockLoads.Inc() @@ -462,6 +473,11 @@ func (s *BucketStore) addBlock(ctx context.Context, meta *metadata.Meta) (err er return errors.Wrap(err, "create index cache reader") } } + defer func() { + if err != nil { + runutil.CloseWithErrCapture(&err, indexHeaderReader, "index-header") + } + }() b, err := newBucketBlock( ctx, @@ -474,10 +490,17 @@ func (s *BucketStore) addBlock(ctx context.Context, meta *metadata.Meta) (err er indexHeaderReader, s.partitioner, s.metrics.seriesRefetches, + s.enablePostingsCompression, ) if err != nil { return errors.Wrap(err, "new bucket block") } + defer func() { + if err != nil { + runutil.CloseWithErrCapture(&err, b, "index-header") + } + }() + s.mtx.Lock() defer s.mtx.Unlock() @@ -817,14 +840,13 @@ func debugFoundBlockSetOverview(logger log.Logger, mint, maxt, maxResolutionMill // Series implements the storepb.StoreServer interface. func (s *BucketStore) Series(req *storepb.SeriesRequest, srv storepb.Store_SeriesServer) (err error) { - { - span, _ := tracing.StartSpan(srv.Context(), "store_query_gate_ismyturn") - err := s.queryGate.IsMyTurn(srv.Context()) - span.Finish() - if err != nil { - return errors.Wrapf(err, "failed to wait for turn") - } + tracing.DoInSpan(srv.Context(), "store_query_gate_ismyturn", func(ctx context.Context) { + err = s.queryGate.IsMyTurn(srv.Context()) + }) + if err != nil { + return errors.Wrapf(err, "failed to wait for turn") } + defer s.queryGate.Done() matchers, err := translateMatchers(req.Matchers) @@ -835,10 +857,11 @@ func (s *BucketStore) Series(req *storepb.SeriesRequest, srv storepb.Store_Serie req.MaxTime = s.limitMaxTime(req.MaxTime) var ( - stats = &queryStats{} - res []storepb.SeriesSet - mtx sync.Mutex - g, ctx = errgroup.WithContext(srv.Context()) + ctx = srv.Context() + stats = &queryStats{} + res []storepb.SeriesSet + mtx sync.Mutex + g, gctx = errgroup.WithContext(ctx) ) s.mtx.RLock() @@ -863,8 +886,8 @@ func (s *BucketStore) Series(req *storepb.SeriesRequest, srv storepb.Store_Serie b := b // We must keep the readers open until all their data has been sent. - indexr := b.indexReader(ctx) - chunkr := b.chunkReader(ctx) + indexr := b.indexReader(gctx) + chunkr := b.chunkReader(gctx) // Defer all closes to the end of Series method. defer runutil.CloseWithLogOnErr(s.logger, indexr, "series block") @@ -909,6 +932,14 @@ func (s *BucketStore) Series(req *storepb.SeriesRequest, srv storepb.Store_Serie s.metrics.seriesDataSizeTouched.WithLabelValues("chunks").Observe(float64(stats.chunksTouchedSizeSum)) s.metrics.seriesDataSizeFetched.WithLabelValues("chunks").Observe(float64(stats.chunksFetchedSizeSum)) s.metrics.resultSeriesCount.Observe(float64(stats.mergedSeriesCount)) + s.metrics.cachedPostingsCompressions.WithLabelValues("encode").Add(float64(stats.cachedPostingsCompressions)) + s.metrics.cachedPostingsCompressions.WithLabelValues("decode").Add(float64(stats.cachedPostingsDecompressions)) + s.metrics.cachedPostingsCompressionErrors.WithLabelValues("encode").Add(float64(stats.cachedPostingsCompressionErrors)) + s.metrics.cachedPostingsCompressionErrors.WithLabelValues("decode").Add(float64(stats.cachedPostingsDecompressionErrors)) + s.metrics.cachedPostingsCompressionTimeSeconds.WithLabelValues("encode").Add(stats.cachedPostingsCompressionTimeSum.Seconds()) + s.metrics.cachedPostingsCompressionTimeSeconds.WithLabelValues("decode").Add(stats.cachedPostingsDecompressionTimeSum.Seconds()) + s.metrics.cachedPostingsOriginalSizeBytes.Add(float64(stats.cachedPostingsOriginalSizeSum)) + s.metrics.cachedPostingsCompressedSizeBytes.Add(float64(stats.cachedPostingsCompressedSizeSum)) level.Debug(s.logger).Log("msg", "stats query processed", "stats", fmt.Sprintf("%+v", stats), "err", err) @@ -916,11 +947,10 @@ func (s *BucketStore) Series(req *storepb.SeriesRequest, srv storepb.Store_Serie // Concurrently get data from all blocks. { - span, _ := tracing.StartSpan(srv.Context(), "bucket_store_preload_all") begin := time.Now() - err := g.Wait() - span.Finish() - + tracing.DoInSpan(ctx, "bucket_store_preload_all", func(_ context.Context) { + err = g.Wait() + }) if err != nil { return status.Error(codes.Aborted, err.Error()) } @@ -929,10 +959,7 @@ func (s *BucketStore) Series(req *storepb.SeriesRequest, srv storepb.Store_Serie s.metrics.seriesBlocksQueried.Observe(float64(stats.blocksQueried)) } // Merge the sub-results from each selected block. - { - span, _ := tracing.StartSpan(srv.Context(), "bucket_store_merge_all") - defer span.Finish() - + tracing.DoInSpan(ctx, "bucket_store_merge_all", func(ctx context.Context) { begin := time.Now() // Merge series set into an union of all block sets. This exposes all blocks are single seriesSet. @@ -953,17 +980,21 @@ func (s *BucketStore) Series(req *storepb.SeriesRequest, srv storepb.Store_Serie s.metrics.chunkSizeBytes.Observe(float64(chunksSize(series.Chunks))) } - if err := srv.Send(storepb.NewSeriesResponse(&series)); err != nil { - return status.Error(codes.Unknown, errors.Wrap(err, "send series response").Error()) + if err = srv.Send(storepb.NewSeriesResponse(&series)); err != nil { + err = status.Error(codes.Unknown, errors.Wrap(err, "send series response").Error()) + return } } if set.Err() != nil { - return status.Error(codes.Unknown, errors.Wrap(set.Err(), "expand series set").Error()) + err = status.Error(codes.Unknown, errors.Wrap(set.Err(), "expand series set").Error()) + return } stats.mergeDuration = time.Since(begin) s.metrics.seriesMergeDuration.Observe(stats.mergeDuration.Seconds()) - } - return nil + + err = nil + }) + return err } func chunksSize(chks []storepb.AggrChunk) (size int) { @@ -1080,7 +1111,11 @@ func (s *bucketBlockSet) add(b *bucketBlock) error { bs := append(s.blocks[i], b) s.blocks[i] = bs + // Always sort blocks by min time, then max time. sort.Slice(bs, func(j, k int) bool { + if bs[j].meta.MinTime == bs[k].meta.MinTime { + return bs[j].meta.MaxTime < bs[k].meta.MaxTime + } return bs[j].meta.MinTime < bs[k].meta.MinTime }) return nil @@ -1112,6 +1147,9 @@ func int64index(s []int64, x int64) int { // getFor returns a time-ordered list of blocks that cover date between mint and maxt. // Blocks with the biggest resolution possible but not bigger than the given max resolution are returned. +// It supports overlapping blocks. +// +// NOTE: s.blocks are expected to be sorted in minTime order. func (s *bucketBlockSet) getFor(mint, maxt, maxResolutionMillis int64) (bs []*bucketBlock) { if mint > maxt { return nil @@ -1189,6 +1227,8 @@ type bucketBlock struct { partitioner partitioner seriesRefetches prometheus.Counter + + enablePostingsCompression bool } func newBucketBlock( @@ -1202,25 +1242,26 @@ func newBucketBlock( indexHeadReader indexheader.Reader, p partitioner, seriesRefetches prometheus.Counter, + enablePostingsCompression bool, ) (b *bucketBlock, err error) { b = &bucketBlock{ - logger: logger, - bkt: bkt, - indexCache: indexCache, - chunkPool: chunkPool, - dir: dir, - partitioner: p, - meta: meta, - indexHeaderReader: indexHeadReader, - seriesRefetches: seriesRefetches, + logger: logger, + bkt: bkt, + indexCache: indexCache, + chunkPool: chunkPool, + dir: dir, + partitioner: p, + meta: meta, + indexHeaderReader: indexHeadReader, + seriesRefetches: seriesRefetches, + enablePostingsCompression: enablePostingsCompression, } // Get object handles for all chunk files. - err = bkt.Iter(ctx, path.Join(meta.ULID.String(), block.ChunksDirname), func(n string) error { + if err = bkt.Iter(ctx, path.Join(meta.ULID.String(), block.ChunksDirname), func(n string) error { b.chunkObjs = append(b.chunkObjs, n) return nil - }) - if err != nil { + }); err != nil { return nil, errors.Wrap(err, "list chunk files") } return b, nil @@ -1279,7 +1320,7 @@ func (b *bucketBlock) chunkReader(ctx context.Context) *bucketChunkReader { // Close waits for all pending readers to finish and then closes all underlying resources. func (b *bucketBlock) Close() error { b.pendingReaders.Wait() - return nil + return b.indexHeaderReader.Close() } // bucketIndexReader is a custom index reader (not conforming index.Reader interface) that reads index that is stored in @@ -1317,7 +1358,12 @@ func newBucketIndexReader(ctx context.Context, block *bucketBlock) *bucketIndexR // chunk where the series contains the matching label-value pair for a given block of data. Postings can be fetched by // single label name=value. func (r *bucketIndexReader) ExpandedPostings(ms []*labels.Matcher) ([]uint64, error) { - var postingGroups []*postingGroup + var ( + postingGroups []*postingGroup + allRequested = false + hasAdds = false + keys []labels.Label + ) // NOTE: Derived from tsdb.PostingsForMatchers. for _, m := range ms { @@ -1327,23 +1373,71 @@ func (r *bucketIndexReader) ExpandedPostings(ms []*labels.Matcher) ([]uint64, er return nil, errors.Wrap(err, "toPostingGroup") } + // If this groups adds nothing, it's an empty group. We can shortcut this, since intersection with empty + // postings would return no postings anyway. + // E.g. label="non-existing-value" returns empty group. + if !pg.addAll && len(pg.addKeys) == 0 { + return nil, nil + } + postingGroups = append(postingGroups, pg) + allRequested = allRequested || pg.addAll + hasAdds = hasAdds || len(pg.addKeys) > 0 + + // Postings returned by fetchPostings will be in the same order as keys + // so it's important that we iterate them in the same order later. + // We don't have any other way of pairing keys and fetched postings. + keys = append(keys, pg.addKeys...) + keys = append(keys, pg.removeKeys...) } if len(postingGroups) == 0 { return nil, nil } - if err := r.fetchPostings(postingGroups); err != nil { + // We only need special All postings if there are no other adds. If there are, we can skip fetching + // special All postings completely. + if allRequested && !hasAdds { + // add group with label to fetch "special All postings". + name, value := index.AllPostingsKey() + allPostingsLabel := labels.Label{Name: name, Value: value} + + postingGroups = append(postingGroups, newPostingGroup(true, []labels.Label{allPostingsLabel}, nil)) + keys = append(keys, allPostingsLabel) + } + + fetchedPostings, err := r.fetchPostings(keys) + if err != nil { return nil, errors.Wrap(err, "get postings") } - var postings []index.Postings + // Get "add" and "remove" postings from groups. We iterate over postingGroups and their keys + // again, and this is exactly the same order as before (when building the groups), so we can simply + // use one incrementing index to fetch postings from returned slice. + postingIndex := 0 + + var groupAdds, groupRemovals []index.Postings for _, g := range postingGroups { - postings = append(postings, g.Postings()) + // We cannot add empty set to groupAdds, since they are intersected. + if len(g.addKeys) > 0 { + toMerge := make([]index.Postings, 0, len(g.addKeys)) + for _, l := range g.addKeys { + toMerge = append(toMerge, checkNilPosting(l, fetchedPostings[postingIndex])) + postingIndex++ + } + + groupAdds = append(groupAdds, index.Merge(toMerge...)) + } + + for _, l := range g.removeKeys { + groupRemovals = append(groupRemovals, checkNilPosting(l, fetchedPostings[postingIndex])) + postingIndex++ + } } - ps, err := index.ExpandPostings(index.Intersect(postings...)) + result := index.Without(index.Intersect(groupAdds...), index.Merge(groupRemovals...)) + + ps, err := index.ExpandPostings(result) if err != nil { return nil, errors.Wrap(err, "expand") } @@ -1359,82 +1453,71 @@ func (r *bucketIndexReader) ExpandedPostings(ms []*labels.Matcher) ([]uint64, er return ps, nil } +// postingGroup keeps posting keys for single matcher. Logical result of the group is: +// If addAll is set: special All postings minus postings for removeKeys labels. No need to merge postings for addKeys in this case. +// If addAll is not set: Merge of postings for "addKeys" labels minus postings for removeKeys labels +// This computation happens in ExpandedPostings. type postingGroup struct { - keys labels.Labels - postings []index.Postings - - aggregate func(postings []index.Postings) index.Postings + addAll bool + addKeys []labels.Label + removeKeys []labels.Label } -func newPostingGroup(keys labels.Labels, aggr func(postings []index.Postings) index.Postings) *postingGroup { +func newPostingGroup(addAll bool, addKeys, removeKeys []labels.Label) *postingGroup { return &postingGroup{ - keys: keys, - postings: make([]index.Postings, len(keys)), - aggregate: aggr, + addAll: addAll, + addKeys: addKeys, + removeKeys: removeKeys, } } -func (p *postingGroup) Fill(i int, posting index.Postings) { - p.postings[i] = posting -} - -func (p *postingGroup) Postings() index.Postings { - if len(p.keys) == 0 { - return index.EmptyPostings() - } - - for i, posting := range p.postings { - if posting == nil { - // This should not happen. Debug for https://github.com/thanos-io/thanos/issues/874. - return index.ErrPostings(errors.Errorf("at least one of %d postings is nil for %s. It was never fetched.", i, p.keys[i])) - } +func checkNilPosting(l labels.Label, p index.Postings) index.Postings { + if p == nil { + // This should not happen. Debug for https://github.com/thanos-io/thanos/issues/874. + return index.ErrPostings(errors.Errorf("postings is nil for %s. It was never fetched.", l)) } - - return p.aggregate(p.postings) + return p } -func merge(p []index.Postings) index.Postings { - return index.Merge(p...) -} - -func allWithout(p []index.Postings) index.Postings { - return index.Without(p[0], index.Merge(p[1:]...)) -} +var ( + allPostingsGroup = newPostingGroup(true, nil, nil) + emptyPostingsGroup = newPostingGroup(false, nil, nil) +) // NOTE: Derived from tsdb.postingsForMatcher. index.Merge is equivalent to map duplication. func toPostingGroup(lvalsFn func(name string) ([]string, error), m *labels.Matcher) (*postingGroup, error) { - var matchingLabels labels.Labels + // This matches any label value, and also series that don't have this label at all. + if m.Type == labels.MatchRegexp && (m.Value == ".*" || m.Value == "^.*$") { + return allPostingsGroup, nil + } + + // NOT matching any value = match nothing. We can shortcut this easily. + if m.Type == labels.MatchNotRegexp && (m.Value == ".*" || m.Value == "^.*$") { + return emptyPostingsGroup, nil + } // If the matcher selects an empty value, it selects all the series which don't // have the label name set too. See: https://github.com/prometheus/prometheus/issues/3575 // and https://github.com/prometheus/prometheus/pull/3578#issuecomment-351653555. if m.Matches("") { - allName, allValue := index.AllPostingsKey() - - matchingLabels = append(matchingLabels, labels.Label{Name: allName, Value: allValue}) vals, err := lvalsFn(m.Name) if err != nil { return nil, err } + + var toRemove []labels.Label for _, val := range vals { if !m.Matches(val) { - matchingLabels = append(matchingLabels, labels.Label{Name: m.Name, Value: val}) + toRemove = append(toRemove, labels.Label{Name: m.Name, Value: val}) } } - if len(matchingLabels) == 1 { - // This is known hack to return all series. - // Ask for x != . Allow for that as Prometheus does, - // even though it is expensive. - return newPostingGroup(matchingLabels, merge), nil - } - - return newPostingGroup(matchingLabels, allWithout), nil + return newPostingGroup(true, nil, toRemove), nil } // Fast-path for equal matching. if m.Type == labels.MatchEqual { - return newPostingGroup(labels.Labels{{Name: m.Name, Value: m.Value}}, merge), nil + return newPostingGroup(false, []labels.Label{{Name: m.Name, Value: m.Value}}, nil), nil } vals, err := lvalsFn(m.Name) @@ -1442,67 +1525,81 @@ func toPostingGroup(lvalsFn func(name string) ([]string, error), m *labels.Match return nil, err } + var toAdd []labels.Label for _, val := range vals { if m.Matches(val) { - matchingLabels = append(matchingLabels, labels.Label{Name: m.Name, Value: val}) + toAdd = append(toAdd, labels.Label{Name: m.Name, Value: val}) } } - return newPostingGroup(matchingLabels, merge), nil + return newPostingGroup(false, toAdd, nil), nil } type postingPtr struct { - groupID int - keyID int - ptr index.Range + keyID int + ptr index.Range } // fetchPostings fill postings requested by posting groups. -func (r *bucketIndexReader) fetchPostings(groups []*postingGroup) error { +// It returns one postings for each key, in the same order. +// If postings for given key is not fetched, entry at given index will be nil. +func (r *bucketIndexReader) fetchPostings(keys []labels.Label) ([]index.Postings, error) { var ptrs []postingPtr - // Fetch postings from the cache with a single call. - keys := make([]labels.Label, 0) - for _, g := range groups { - keys = append(keys, g.keys...) - } + output := make([]index.Postings, len(keys)) + // Fetch postings from the cache with a single call. fromCache, _ := r.block.indexCache.FetchMultiPostings(r.ctx, r.block.meta.ULID, keys) // Iterate over all groups and fetch posting from cache. // If we have a miss, mark key to be fetched in `ptrs` slice. // Overlaps are well handled by partitioner, so we don't need to deduplicate keys. - for i, g := range groups { - for j, key := range g.keys { - // Get postings for the given key from cache first. - if b, ok := fromCache[key]; ok { - r.stats.postingsTouched++ - r.stats.postingsTouchedSizeSum += len(b) - - _, l, err := r.dec.Postings(b) + for ix, key := range keys { + // Get postings for the given key from cache first. + if b, ok := fromCache[key]; ok { + r.stats.postingsTouched++ + r.stats.postingsTouchedSizeSum += len(b) + + // Even if this instance is not using compression, there may be compressed + // entries in the cache written by other stores. + var ( + l index.Postings + err error + ) + if isDiffVarintSnappyEncodedPostings(b) { + s := time.Now() + l, err = diffVarintSnappyDecode(b) + r.stats.cachedPostingsDecompressions += 1 + r.stats.cachedPostingsDecompressionTimeSum += time.Since(s) if err != nil { - return errors.Wrap(err, "decode postings") + r.stats.cachedPostingsDecompressionErrors += 1 } - - g.Fill(j, l) - continue - } - - // Cache miss; save pointer for actual posting in index stored in object store. - ptr, err := r.block.indexHeaderReader.PostingsOffset(key.Name, key.Value) - if err == indexheader.NotFoundRangeErr { - // This block does not have any posting for given key. - g.Fill(j, index.EmptyPostings()) - continue + } else { + _, l, err = r.dec.Postings(b) } if err != nil { - return errors.Wrap(err, "index header PostingsOffset") + return nil, errors.Wrap(err, "decode postings") } - r.stats.postingsToFetch++ - ptrs = append(ptrs, postingPtr{ptr: ptr, groupID: i, keyID: j}) + output[ix] = l + continue + } + + // Cache miss; save pointer for actual posting in index stored in object store. + ptr, err := r.block.indexHeaderReader.PostingsOffset(key.Name, key.Value) + if err == indexheader.NotFoundRangeErr { + // This block does not have any posting for given key. + output[ix] = index.EmptyPostings() + continue + } + + if err != nil { + return nil, errors.Wrap(err, "index header PostingsOffset") } + + r.stats.postingsToFetch++ + ptrs = append(ptrs, postingPtr{ptr: ptr, keyID: ix}) } sort.Slice(ptrs, func(i, j int) bool { @@ -1547,22 +1644,50 @@ func (r *bucketIndexReader) fetchPostings(groups []*postingGroup) error { return err } + dataToCache := pBytes + + compressionTime := time.Duration(0) + compressions, compressionErrors, compressedSize := 0, 0, 0 + + if r.block.enablePostingsCompression { + // Reencode postings before storing to cache. If that fails, we store original bytes. + // This can only fail, if postings data was somehow corrupted, + // and there is nothing we can do about it. + // Errors from corrupted postings will be reported when postings are used. + compressions++ + s := time.Now() + data, err := diffVarintSnappyEncode(newBigEndianPostings(pBytes[4:])) + compressionTime = time.Since(s) + if err == nil { + dataToCache = data + compressedSize = len(data) + } else { + compressionErrors = 1 + } + } + r.mtx.Lock() // Return postings and fill LRU cache. // Truncate first 4 bytes which are length of posting. - groups[p.groupID].Fill(p.keyID, newBigEndianPostings(pBytes[4:])) - r.block.indexCache.StorePostings(r.ctx, r.block.meta.ULID, groups[p.groupID].keys[p.keyID], pBytes) + output[p.keyID] = newBigEndianPostings(pBytes[4:]) + + r.block.indexCache.StorePostings(r.ctx, r.block.meta.ULID, keys[p.keyID], dataToCache) // If we just fetched it we still have to update the stats for touched postings. r.stats.postingsTouched++ r.stats.postingsTouchedSizeSum += len(pBytes) + r.stats.cachedPostingsCompressions += compressions + r.stats.cachedPostingsCompressionErrors += compressionErrors + r.stats.cachedPostingsOriginalSizeSum += len(pBytes) + r.stats.cachedPostingsCompressedSizeSum += compressedSize + r.stats.cachedPostingsCompressionTimeSum += compressionTime r.mtx.Unlock() } return nil }) } - return g.Wait() + return output, g.Wait() } func resizePostings(b []byte) ([]byte, error) { @@ -1861,7 +1986,7 @@ func (r *bucketChunkReader) loadChunks(ctx context.Context, offs []uint32, seq i l, n := binary.Uvarint(cb) if n < 1 { - return errors.Errorf("reading chunk length failed") + return errors.New("reading chunk length failed") } if len(cb) < n+int(l)+1 { return errors.Errorf("preloaded chunk too small, expecting %d", n+int(l)+1) @@ -1929,6 +2054,15 @@ type queryStats struct { postingsFetchCount int postingsFetchDurationSum time.Duration + cachedPostingsCompressions int + cachedPostingsCompressionErrors int + cachedPostingsOriginalSizeSum int + cachedPostingsCompressedSizeSum int + cachedPostingsCompressionTimeSum time.Duration + cachedPostingsDecompressions int + cachedPostingsDecompressionErrors int + cachedPostingsDecompressionTimeSum time.Duration + seriesTouched int seriesTouchedSizeSum int seriesFetched int @@ -1959,6 +2093,15 @@ func (s queryStats) merge(o *queryStats) *queryStats { s.postingsFetchCount += o.postingsFetchCount s.postingsFetchDurationSum += o.postingsFetchDurationSum + s.cachedPostingsCompressions += o.cachedPostingsCompressions + s.cachedPostingsCompressionErrors += o.cachedPostingsCompressionErrors + s.cachedPostingsOriginalSizeSum += o.cachedPostingsOriginalSizeSum + s.cachedPostingsCompressedSizeSum += o.cachedPostingsCompressedSizeSum + s.cachedPostingsCompressionTimeSum += o.cachedPostingsCompressionTimeSum + s.cachedPostingsDecompressions += o.cachedPostingsDecompressions + s.cachedPostingsDecompressionErrors += o.cachedPostingsDecompressionErrors + s.cachedPostingsDecompressionTimeSum += o.cachedPostingsDecompressionTimeSum + s.seriesTouched += o.seriesTouched s.seriesTouchedSizeSum += o.seriesTouchedSizeSum s.seriesFetched += o.seriesFetched diff --git a/pkg/store/bucket_e2e_test.go b/pkg/store/bucket_e2e_test.go index 6bdc6a5950a..8bcf3216c08 100644 --- a/pkg/store/bucket_e2e_test.go +++ b/pkg/store/bucket_e2e_test.go @@ -147,10 +147,10 @@ func prepareStoreWithTestBlocks(t testing.TB, dir string, bkt objstore.Bucket, m maxTime: maxTime, } - metaFetcher, err := block.NewMetaFetcher(s.logger, 20, bkt, dir, nil, - block.NewTimePartitionMetaFilter(filterConf.MinTime, filterConf.MaxTime).Filter, - block.NewLabelShardedMetaFilter(relabelConfig).Filter, - ) + metaFetcher, err := block.NewMetaFetcher(s.logger, 20, bkt, dir, nil, []block.MetadataFilter{ + block.NewTimePartitionMetaFilter(filterConf.MinTime, filterConf.MaxTime), + block.NewLabelShardedMetaFilter(relabelConfig), + }, nil) testutil.Ok(t, err) store, err := NewBucketStore( @@ -168,6 +168,7 @@ func prepareStoreWithTestBlocks(t testing.TB, dir string, bkt objstore.Bucket, m filterConf, true, true, + true, ) testutil.Ok(t, err) s.store = store diff --git a/pkg/store/bucket_test.go b/pkg/store/bucket_test.go index 2fa3b2f0896..516bf684c3a 100644 --- a/pkg/store/bucket_test.go +++ b/pkg/store/bucket_test.go @@ -10,6 +10,7 @@ import ( "io" "io/ioutil" "math" + "math/rand" "os" "path" "path/filepath" @@ -26,12 +27,16 @@ import ( "github.com/leanovate/gopter/gen" "github.com/leanovate/gopter/prop" "github.com/oklog/ulid" + "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" promtest "github.com/prometheus/client_golang/prometheus/testutil" "github.com/prometheus/prometheus/pkg/labels" "github.com/prometheus/prometheus/pkg/relabel" "github.com/prometheus/prometheus/tsdb" "github.com/prometheus/prometheus/tsdb/chunkenc" + "github.com/prometheus/prometheus/tsdb/chunks" "github.com/prometheus/prometheus/tsdb/encoding" + "github.com/prometheus/prometheus/tsdb/index" "github.com/thanos-io/thanos/pkg/block" "github.com/thanos-io/thanos/pkg/block/indexheader" "github.com/thanos-io/thanos/pkg/block/metadata" @@ -40,6 +45,7 @@ import ( "github.com/thanos-io/thanos/pkg/objstore/filesystem" "github.com/thanos-io/thanos/pkg/objstore/inmem" "github.com/thanos-io/thanos/pkg/pool" + storecache "github.com/thanos-io/thanos/pkg/store/cache" "github.com/thanos-io/thanos/pkg/store/storepb" "github.com/thanos-io/thanos/pkg/testutil" "github.com/thanos-io/thanos/pkg/testutil/e2eutil" @@ -187,12 +193,16 @@ func TestBucketBlockSet_addGet(t *testing.T) { mint, maxt int64 window int64 } + // Input is expected to be sorted. It is sorted in addBlock. input := []resBlock{ // Blocks from 0 to 100 with raw resolution. {window: downsample.ResLevel0, mint: 0, maxt: 100}, {window: downsample.ResLevel0, mint: 100, maxt: 200}, + {window: downsample.ResLevel0, mint: 100, maxt: 200}, // Same overlap. + {window: downsample.ResLevel0, mint: 200, maxt: 299}, // Short overlap. {window: downsample.ResLevel0, mint: 200, maxt: 300}, {window: downsample.ResLevel0, mint: 300, maxt: 400}, + {window: downsample.ResLevel0, mint: 300, maxt: 600}, // Long overlap. {window: downsample.ResLevel0, mint: 400, maxt: 500}, // Lower resolution data not covering last block. {window: downsample.ResLevel1, mint: 0, maxt: 100}, @@ -225,8 +235,11 @@ func TestBucketBlockSet_addGet(t *testing.T) { res: []resBlock{ {window: downsample.ResLevel0, mint: 0, maxt: 100}, {window: downsample.ResLevel0, mint: 100, maxt: 200}, + {window: downsample.ResLevel0, mint: 100, maxt: 200}, + {window: downsample.ResLevel0, mint: 200, maxt: 299}, {window: downsample.ResLevel0, mint: 200, maxt: 300}, {window: downsample.ResLevel0, mint: 300, maxt: 400}, + {window: downsample.ResLevel0, mint: 300, maxt: 600}, {window: downsample.ResLevel0, mint: 400, maxt: 500}, }, }, { @@ -235,8 +248,11 @@ func TestBucketBlockSet_addGet(t *testing.T) { maxResolution: downsample.ResLevel1 - 1, res: []resBlock{ {window: downsample.ResLevel0, mint: 100, maxt: 200}, + {window: downsample.ResLevel0, mint: 100, maxt: 200}, + {window: downsample.ResLevel0, mint: 200, maxt: 299}, {window: downsample.ResLevel0, mint: 200, maxt: 300}, {window: downsample.ResLevel0, mint: 300, maxt: 400}, + {window: downsample.ResLevel0, mint: 300, maxt: 600}, // Block intervals are half-open: [b.MinTime, b.MaxTime), so 400-500 contains single sample. {window: downsample.ResLevel0, mint: 400, maxt: 500}, }, @@ -248,6 +264,7 @@ func TestBucketBlockSet_addGet(t *testing.T) { {window: downsample.ResLevel1, mint: 100, maxt: 200}, {window: downsample.ResLevel1, mint: 200, maxt: 300}, {window: downsample.ResLevel1, mint: 300, maxt: 400}, + {window: downsample.ResLevel0, mint: 300, maxt: 600}, {window: downsample.ResLevel0, mint: 400, maxt: 500}, }, }, { @@ -259,6 +276,7 @@ func TestBucketBlockSet_addGet(t *testing.T) { {window: downsample.ResLevel2, mint: 100, maxt: 200}, {window: downsample.ResLevel2, mint: 200, maxt: 300}, {window: downsample.ResLevel1, mint: 300, maxt: 400}, + {window: downsample.ResLevel0, mint: 300, maxt: 600}, {window: downsample.ResLevel0, mint: 400, maxt: 500}, }, }, @@ -462,6 +480,7 @@ func TestBucketStore_Info(t *testing.T) { allowAllFilterConf, true, true, + true, ) testutil.Ok(t, err) @@ -692,10 +711,10 @@ func testSharding(t *testing.T, reuseDisk string, bkt objstore.Bucket, all ...ul testutil.Ok(t, yaml.Unmarshal([]byte(sc.relabel), &relabelConf)) rec := &recorder{Bucket: bkt} - metaFetcher, err := block.NewMetaFetcher(logger, 20, bkt, dir, nil, - block.NewTimePartitionMetaFilter(allowAllFilterConf.MinTime, allowAllFilterConf.MaxTime).Filter, - block.NewLabelShardedMetaFilter(relabelConf).Filter, - ) + metaFetcher, err := block.NewMetaFetcher(logger, 20, bkt, dir, nil, []block.MetadataFilter{ + block.NewTimePartitionMetaFilter(allowAllFilterConf.MinTime, allowAllFilterConf.MaxTime), + block.NewLabelShardedMetaFilter(relabelConf), + }, nil) testutil.Ok(t, err) bucketStore, err := NewBucketStore( @@ -713,6 +732,7 @@ func testSharding(t *testing.T, reuseDisk string, bkt objstore.Bucket, all ...ul allowAllFilterConf, true, true, + true, ) testutil.Ok(t, err) @@ -864,7 +884,6 @@ func TestReadIndexCache_LoadSeries(t *testing.T) { } func TestBucketIndexReader_ExpandedPostings(t *testing.T) { - t.Skip("") tb := testutil.NewTB(t) tmpDir, err := ioutil.TempDir("", "test-expanded-postings") @@ -875,20 +894,12 @@ func TestBucketIndexReader_ExpandedPostings(t *testing.T) { testutil.Ok(tb, err) defer func() { testutil.Ok(tb, bkt.Close()) }() - id := uploadTestBlock(tb, tmpDir, bkt) - - tb.Run("binary_header", func(tb testutil.TB) { - r, err := indexheader.NewBinaryReader(context.Background(), log.NewNopLogger(), bkt, tmpDir, id) - testutil.Ok(tb, err) + id := uploadTestBlock(tb, tmpDir, bkt, 500) - benchmarkExpandedPostings(tb, bkt, id, r) - }) - tb.Run("index_json", func(tb testutil.TB) { - r, err := indexheader.NewJSONReader(context.Background(), log.NewNopLogger(), bkt, tmpDir, id) - testutil.Ok(tb, err) + r, err := indexheader.NewBinaryReader(context.Background(), log.NewNopLogger(), bkt, tmpDir, id) + testutil.Ok(tb, err) - benchmarkExpandedPostings(tb, bkt, id, r) - }) + benchmarkExpandedPostings(tb, bkt, id, r, 500) } func BenchmarkBucketIndexReader_ExpandedPostings(b *testing.B) { @@ -902,19 +913,11 @@ func BenchmarkBucketIndexReader_ExpandedPostings(b *testing.B) { testutil.Ok(tb, err) defer func() { testutil.Ok(tb, bkt.Close()) }() - id := uploadTestBlock(tb, tmpDir, bkt) - tb.Run("binary_header", func(tb testutil.TB) { - r, err := indexheader.NewBinaryReader(context.Background(), log.NewNopLogger(), bkt, tmpDir, id) - testutil.Ok(tb, err) - - benchmarkExpandedPostings(tb, bkt, id, r) - }) - tb.Run("index_json", func(tb testutil.TB) { - r, err := indexheader.NewJSONReader(context.Background(), log.NewNopLogger(), bkt, tmpDir, id) - testutil.Ok(tb, err) + id := uploadTestBlock(tb, tmpDir, bkt, 50e5) + r, err := indexheader.NewBinaryReader(context.Background(), log.NewNopLogger(), bkt, tmpDir, id) + testutil.Ok(tb, err) - benchmarkExpandedPostings(tb, bkt, id, r) - }) + benchmarkExpandedPostings(tb, bkt, id, r, 50e5) } // Make entries ~50B in size, to emulate real-world high cardinality. @@ -922,7 +925,7 @@ const ( postingsBenchSuffix = "aaaaaaaaaabbbbbbbbbbccccccccccdddddddddd" ) -func uploadTestBlock(t testing.TB, tmpDir string, bkt objstore.Bucket) ulid.ULID { +func uploadTestBlock(t testing.TB, tmpDir string, bkt objstore.Bucket, series int) ulid.ULID { h, err := tsdb.NewHead(nil, nil, nil, 1000) testutil.Ok(t, err) defer func() { @@ -931,14 +934,31 @@ func uploadTestBlock(t testing.TB, tmpDir string, bkt objstore.Bucket) ulid.ULID logger := log.NewNopLogger() - app := h.Appender() + appendTestData(t, h.Appender(), series) + + testutil.Ok(t, os.MkdirAll(filepath.Join(tmpDir, "tmp"), os.ModePerm)) + id := createBlockFromHead(t, filepath.Join(tmpDir, "tmp"), h) + + _, err = metadata.InjectThanos(log.NewNopLogger(), filepath.Join(tmpDir, "tmp", id.String()), metadata.Thanos{ + Labels: labels.Labels{{Name: "ext1", Value: "1"}}.Map(), + Downsample: metadata.ThanosDownsample{Resolution: 0}, + Source: metadata.TestSource, + }, nil) + testutil.Ok(t, err) + testutil.Ok(t, block.Upload(context.Background(), logger, bkt, filepath.Join(tmpDir, "tmp", id.String()))) + + return id +} + +func appendTestData(t testing.TB, app tsdb.Appender, series int) { addSeries := func(l labels.Labels) { _, err := app.Add(l, 0, 0) testutil.Ok(t, err) } + series = series / 5 for n := 0; n < 10; n++ { - for i := 0; i < 100000; i++ { + for i := 0; i < series/10; i++ { addSeries(labels.FromStrings("i", strconv.Itoa(i)+postingsBenchSuffix, "n", strconv.Itoa(n)+postingsBenchSuffix, "j", "foo")) // Have some series that won't be matched, to properly test inverted matches. addSeries(labels.FromStrings("i", strconv.Itoa(i)+postingsBenchSuffix, "n", strconv.Itoa(n)+postingsBenchSuffix, "j", "bar")) @@ -948,19 +968,6 @@ func uploadTestBlock(t testing.TB, tmpDir string, bkt objstore.Bucket) ulid.ULID } } testutil.Ok(t, app.Commit()) - - testutil.Ok(t, os.MkdirAll(filepath.Join(tmpDir, "tmp"), os.ModePerm)) - id := createBlockFromHead(t, filepath.Join(tmpDir, "tmp"), h) - - _, err = metadata.InjectThanos(log.NewNopLogger(), filepath.Join(tmpDir, "tmp", id.String()), metadata.Thanos{ - Labels: labels.Labels{{Name: "ext1", Value: "1"}}.Map(), - Downsample: metadata.ThanosDownsample{Resolution: 0}, - Source: metadata.TestSource, - }, nil) - testutil.Ok(t, err) - testutil.Ok(t, block.Upload(context.Background(), logger, bkt, filepath.Join(tmpDir, "tmp", id.String()))) - - return id } func createBlockFromHead(t testing.TB, dir string, head *tsdb.Head) ulid.ULID { @@ -983,6 +990,7 @@ func benchmarkExpandedPostings( bkt objstore.BucketReader, id ulid.ULID, r indexheader.Reader, + series int, ) { n1 := labels.MustNewMatcher(labels.MatchEqual, "n", "1"+postingsBenchSuffix) @@ -997,28 +1005,29 @@ func benchmarkExpandedPostings( iNot2 := labels.MustNewMatcher(labels.MatchNotEqual, "n", "2"+postingsBenchSuffix) iNot2Star := labels.MustNewMatcher(labels.MatchNotRegexp, "i", "^2.*$") + series = series / 5 cases := []struct { name string matchers []*labels.Matcher expectedLen int }{ - {`n="1"`, []*labels.Matcher{n1}, 200000}, - {`n="1",j="foo"`, []*labels.Matcher{n1, jFoo}, 100000}, - {`j="foo",n="1"`, []*labels.Matcher{jFoo, n1}, 100000}, - {`n="1",j!="foo"`, []*labels.Matcher{n1, jNotFoo}, 100000}, - {`i=~".*"`, []*labels.Matcher{iStar}, 5000000}, - {`i=~".+"`, []*labels.Matcher{iPlus}, 5000000}, + {`n="1"`, []*labels.Matcher{n1}, int(float64(series) * 0.2)}, + {`n="1",j="foo"`, []*labels.Matcher{n1, jFoo}, int(float64(series) * 0.1)}, + {`j="foo",n="1"`, []*labels.Matcher{jFoo, n1}, int(float64(series) * 0.1)}, + {`n="1",j!="foo"`, []*labels.Matcher{n1, jNotFoo}, int(float64(series) * 0.1)}, + {`i=~".*"`, []*labels.Matcher{iStar}, 5 * series}, + {`i=~".+"`, []*labels.Matcher{iPlus}, 5 * series}, {`i=~""`, []*labels.Matcher{iEmptyRe}, 0}, - {`i!=""`, []*labels.Matcher{iNotEmpty}, 5000000}, - {`n="1",i=~".*",j="foo"`, []*labels.Matcher{n1, iStar, jFoo}, 100000}, - {`n="1",i=~".*",i!="2",j="foo"`, []*labels.Matcher{n1, iStar, iNot2, jFoo}, 100000}, - {`n="1",i!=""`, []*labels.Matcher{n1, iNotEmpty}, 200000}, - {`n="1",i!="",j="foo"`, []*labels.Matcher{n1, iNotEmpty, jFoo}, 100000}, - {`n="1",i=~".+",j="foo"`, []*labels.Matcher{n1, iPlus, jFoo}, 100000}, - {`n="1",i=~"1.+",j="foo"`, []*labels.Matcher{n1, i1Plus, jFoo}, 11111}, - {`n="1",i=~".+",i!="2",j="foo"`, []*labels.Matcher{n1, iPlus, iNot2, jFoo}, 100000}, - {`n="1",i=~".+",i!~"2.*",j="foo"`, []*labels.Matcher{n1, iPlus, iNot2Star, jFoo}, 88889}, + {`i!=""`, []*labels.Matcher{iNotEmpty}, 5 * series}, + {`n="1",i=~".*",j="foo"`, []*labels.Matcher{n1, iStar, jFoo}, int(float64(series) * 0.1)}, + {`n="1",i=~".*",i!="2",j="foo"`, []*labels.Matcher{n1, iStar, iNot2, jFoo}, int(float64(series) * 0.1)}, + {`n="1",i!=""`, []*labels.Matcher{n1, iNotEmpty}, int(float64(series) * 0.2)}, + {`n="1",i!="",j="foo"`, []*labels.Matcher{n1, iNotEmpty, jFoo}, int(float64(series) * 0.1)}, + {`n="1",i=~".+",j="foo"`, []*labels.Matcher{n1, iPlus, jFoo}, int(float64(series) * 0.1)}, + {`n="1",i=~"1.+",j="foo"`, []*labels.Matcher{n1, i1Plus, jFoo}, int(float64(series) * 0.011111)}, + {`n="1",i=~".+",i!="2",j="foo"`, []*labels.Matcher{n1, iPlus, iNot2, jFoo}, int(float64(series) * 0.1)}, + {`n="1",i=~".+",i!~"2.*",j="foo"`, []*labels.Matcher{n1, iPlus, iNot2Star, jFoo}, int(1 + float64(series)*0.088888)}, } for _, c := range cases { @@ -1071,14 +1080,78 @@ func newSeries(t testing.TB, lset labels.Labels, smplChunks [][]sample) storepb. return s } -func TestSeries_200kSeriesWithOneSample(t *testing.T) { - benchSeries_SeriesWithOneSample(testutil.NewTB(t), 200000) +func TestSeries(t *testing.T) { + tb := testutil.NewTB(t) + tb.Run("200e3SeriesWithOneSample", func(tb testutil.TB) { + benchSeries(tb, 200e3, seriesDimension, 200e3) + }) + tb.Run("OneSeriesWith200e3Samples", func(tb testutil.TB) { + benchSeries(tb, 200e3, samplesDimension, 200e3) + }) } + func BenchmarkSeries(b *testing.B) { - benchSeries_SeriesWithOneSample(testutil.NewTB(b), 10000000) + tb := testutil.NewTB(b) + tb.Run("10e6SeriesWithOneSample", func(tb testutil.TB) { + benchSeries(tb, 10e6, seriesDimension, 1, 10, 10e1, 10e2, 10e3, 10e4, 10e5) // This is too big for my machine: 10e6. + }) + tb.Run("OneSeriesWith100e6Samples", func(tb testutil.TB) { + // 100e6 samples = ~17361 days with 15s scrape. + benchSeries(tb, 100e6, samplesDimension, 1, 10, 10e1, 10e2, 10e3, 10e4, 10e5, 10e6) // This is too big for my machine: 100e6. + }) +} + +func createBlockWithOneSample(t testutil.TB, dir string, blockIndex int, totalSeries int) (ulid.ULID, []storepb.Series) { + fmt.Println("Building block with numSeries:", totalSeries) + + var series []storepb.Series + h, err := tsdb.NewHead(nil, nil, nil, 1) + testutil.Ok(t, err) + defer testutil.Ok(t, h.Close()) + + app := h.Appender() + + for i := 0; i < totalSeries; i++ { + ts := int64(blockIndex*totalSeries + i) + lbls := labels.FromStrings("foo", "bar", "i", fmt.Sprintf("%07d%s", ts, postingsBenchSuffix)) + series = append(series, newSeries(t, append(labels.Labels{{Name: "ext1", Value: "1"}}, lbls...), [][]sample{{sample{t: ts, v: 0}}})) + + _, err := app.Add(lbls, ts, 0) + testutil.Ok(t, err) + } + testutil.Ok(t, app.Commit()) + + return createBlockFromHead(t, dir, h), series } -func benchSeries_SeriesWithOneSample(t testutil.TB, totalSeries int) { +func createBlockWithOneSeries(t testutil.TB, dir string, lbls labels.Labels, blockIndex int, totalSamples int, random *rand.Rand) ulid.ULID { + fmt.Println("Building block with one series with numSamples:", totalSamples) + + h, err := tsdb.NewHead(nil, nil, nil, int64(totalSamples)) + testutil.Ok(t, err) + defer testutil.Ok(t, h.Close()) + + app := h.Appender() + + ref, err := app.Add(lbls, int64(blockIndex*totalSamples), random.Float64()) + testutil.Ok(t, err) + for i := 1; i < totalSamples; i++ { + ts := int64(blockIndex*totalSamples + i) + testutil.Ok(t, app.AddFast(ref, ts, random.Float64())) + } + testutil.Ok(t, app.Commit()) + + return createBlockFromHead(t, dir, h) +} + +type Dimension string + +const ( + seriesDimension = Dimension("series") + samplesDimension = Dimension("samples") +) + +func benchSeries(t testutil.TB, number int, dimension Dimension, cases ...int) { tmpDir, err := ioutil.TempDir("", "testorbench-series") testutil.Ok(t, err) defer func() { testutil.Ok(t, os.RemoveAll(tmpDir)) }() @@ -1087,11 +1160,23 @@ func benchSeries_SeriesWithOneSample(t testutil.TB, totalSeries int) { testutil.Ok(t, err) defer func() { testutil.Ok(t, bkt.Close()) }() - logger := log.NewNopLogger() - var blocks []*bucketBlock + var ( + logger = log.NewNopLogger() + blocks []*bucketBlock + series []storepb.Series + random = rand.New(rand.NewSource(120)) + ) - numSeriesPerBlock := totalSeries / 4 - series := make([]storepb.Series, 0, 4*numSeriesPerBlock) + numberPerBlock := number / 4 + lbls := labels.FromStrings("foo", "bar", "i", postingsBenchSuffix) + switch dimension { + case seriesDimension: + series = make([]storepb.Series, 0, 4*numberPerBlock) + case samplesDimension: + series = []storepb.Series{newSeries(t, append(labels.Labels{{Name: "ext1", Value: "1"}}, lbls...), nil)} + default: + t.Fatal("unknown dimension", dimension) + } thanosMeta := metadata.Thanos{ Labels: labels.Labels{{Name: "ext1", Value: "1"}}.Map(), @@ -1104,47 +1189,122 @@ func benchSeries_SeriesWithOneSample(t testutil.TB, totalSeries int) { testutil.Ok(t, err) if !t.IsBenchmark() { - bucketedPool, err := pool.NewBucketedBytesPool(maxChunkSize, 50e6, 2, 100e7) - testutil.Ok(t, err) + chunkPool = &mockedPool{parent: chunkPool} + } - chunkPool = &mockedPool{parent: bucketedPool} + blockDir := filepath.Join(tmpDir, "tmp") + + var preBuildBlockIDs []ulid.ULID + // Local dev optimization to fetch those big blocks, instead of recreating. + // We cannot really commit this to Git (2GB). + // TODO(bwplotka): Provide them in objstore instead?. + if t.IsBenchmark() { + switch dimension { + case seriesDimension: + p := filepath.Join(".", "test-data", "10e6seriesOneSample") + if _, err := os.Stat(p); err == nil { + blockDir = p + } + case samplesDimension: + p := filepath.Join(".", "test-data", "1series100e6Samples") + if _, err := os.Stat(p); err == nil { + blockDir = p + } + } + + info, err := ioutil.ReadDir(blockDir) + if err == nil { + for _, d := range info { + if !d.IsDir() { + continue + } + + id, err := ulid.Parse(d.Name()) + if err != nil { + continue + } + + preBuildBlockIDs = append(preBuildBlockIDs, id) + } + } } - // Create 4 blocks. Each will have numSeriesPerBlock number of series that have 1 sample only. - // Timestamp will be counted for each new series, so each series will have unique timestamp. - // This allows to pick time range that will correspond to number of series picked 1:1. for bi := 0; bi < 4; bi++ { - h, err := tsdb.NewHead(nil, nil, nil, 1) - testutil.Ok(t, err) - defer testutil.Ok(t, h.Close()) + var bSeries []storepb.Series + + var id ulid.ULID + switch dimension { + case seriesDimension: + if len(preBuildBlockIDs) > 0 { + id = preBuildBlockIDs[bi] + fmt.Println("Using pre-build block:", id) + break + } + // Create 4 blocks. Each will have numSeriesPerBlock number of series that have 1 sample only. + // Timestamp will be counted for each new series, so each series will have unique timestamp. + // This allows to pick time range that will correspond to number of series picked 1:1. + id, bSeries = createBlockWithOneSample(t, blockDir, bi, numberPerBlock) + series = append(series, bSeries...) + case samplesDimension: + if len(preBuildBlockIDs) > 0 { + id = preBuildBlockIDs[bi] + fmt.Println("Using pre-build block:", id) + } else { + // Create 4 blocks. Each will have numSeriesPerBlock number of series that have 1 sample only. + // Timestamp will be counted for each new series, so each series will have unique timestamp. + // This allows to pick time range that will correspond to number of series picked 1:1. + id = createBlockWithOneSeries(t, blockDir, lbls, bi, numberPerBlock, random) + } - app := h.Appender() + if !t.IsBenchmark() { + // Reread chunks for ref. + indexr, err := index.NewFileReader(filepath.Join(blockDir, id.String(), "index")) + testutil.Ok(t, err) + b, err := chunks.NewDirReader(filepath.Join(blockDir, id.String(), "chunks"), nil) + testutil.Ok(t, err) - for i := 0; i < numSeriesPerBlock; i++ { - ts := int64(bi*numSeriesPerBlock + i) - lbls := labels.FromStrings("foo", "bar", "i", fmt.Sprintf("%07d%s", ts, postingsBenchSuffix)) - series = append(series, newSeries(t, append(labels.Labels{{Name: "ext1", Value: "1"}}, lbls...), [][]sample{{sample{t: ts, v: 0}}})) + k, v := index.AllPostingsKey() + all, err := indexr.Postings(k, v) + testutil.Ok(t, err) - _, err := app.Add(lbls, ts, 0) - testutil.Ok(t, err) - } - testutil.Ok(t, app.Commit()) + p, err := index.ExpandPostings(all) + testutil.Ok(t, err) - blockDir := filepath.Join(tmpDir, "tmp") - id := createBlockFromHead(t, blockDir, h) + // One series expected. + testutil.Equals(t, 1, len(p)) + l := labels.Labels{} + chs := []chunks.Meta{} + testutil.Ok(t, indexr.Series(p[0], &l, &chs)) + + for _, c := range chs { + raw, err := b.Chunk(c.Ref) + testutil.Ok(t, err) + + series[0].Chunks = append(series[0].Chunks, storepb.AggrChunk{ + MaxTime: c.MaxTime, + MinTime: c.MinTime, + Raw: &storepb.Chunk{ + Data: raw.Bytes(), + Type: storepb.Chunk_XOR, + }, + }) + } + } + } meta, err := metadata.InjectThanos(log.NewNopLogger(), filepath.Join(blockDir, id.String()), thanosMeta, nil) testutil.Ok(t, err) testutil.Ok(t, block.Upload(context.Background(), logger, bkt, filepath.Join(blockDir, id.String()))) b := &bucketBlock{ - indexCache: noopCache{}, - logger: logger, - bkt: bkt, - meta: meta, - partitioner: gapBasedPartitioner{maxGapSize: partitionerMaxGapSize}, - chunkObjs: []string{filepath.Join(id.String(), "chunks", "000001")}, - chunkPool: chunkPool, + indexCache: noopCache{}, + logger: logger, + bkt: bkt, + meta: meta, + partitioner: gapBasedPartitioner{maxGapSize: partitionerMaxGapSize}, + chunkObjs: []string{filepath.Join(id.String(), "chunks", "000001")}, + chunkPool: chunkPool, + seriesRefetches: promauto.With(nil).NewCounter(prometheus.CounterOpts{}), } blocks = append(blocks, b) } @@ -1161,68 +1321,62 @@ func benchSeries_SeriesWithOneSample(t testutil.TB, totalSeries int) { samplesLimiter: noopLimiter{}, } - var cases []*benchSeriesCase - if t.IsBenchmark() { - for s := 1; s <= 4*numSeriesPerBlock; s *= 10 { - cases = append(cases, &benchSeriesCase{ - name: fmt.Sprintf("%dof%d", s, 4*numSeriesPerBlock), - req: &storepb.SeriesRequest{ - MinTime: 0, - MaxTime: int64(s) - 1, - Matchers: []storepb.LabelMatcher{ - {Type: storepb.LabelMatcher_EQ, Name: "foo", Value: "bar"}, - }, - }, - expected: series[:s], - }) + for _, block := range blocks { + block.indexHeaderReader, err = indexheader.NewBinaryReader(context.Background(), log.NewNopLogger(), bkt, tmpDir, block.meta.ULID) + testutil.Ok(t, err) + } + + var bCases []*benchSeriesCase + for _, c := range cases { + var expected []storepb.Series + + switch dimension { + case seriesDimension: + expected = series[:c] + case samplesDimension: + expected = series } - } else { - // For test just go straight away to the largest one, we care here only about correctness. - s := totalSeries - cases = append(cases, &benchSeriesCase{ - name: fmt.Sprintf("%dof%d", s, 4*numSeriesPerBlock), + bCases = append(bCases, &benchSeriesCase{ + name: fmt.Sprintf("%dof%d", c, 4*numberPerBlock), req: &storepb.SeriesRequest{ MinTime: 0, - MaxTime: int64(s) - 1, + MaxTime: int64(c) - 1, Matchers: []storepb.LabelMatcher{ {Type: storepb.LabelMatcher_EQ, Name: "foo", Value: "bar"}, }, }, - expected: series[:s], + expected: expected, }) } - t.Run("binary_header", func(t testutil.TB) { - for _, block := range blocks { - block.indexHeaderReader, err = indexheader.NewBinaryReader(context.Background(), log.NewNopLogger(), bkt, tmpDir, block.meta.ULID) - testutil.Ok(t, err) + fmt.Println("Starting") + benchmarkSeries(t, store, bCases) + if !t.IsBenchmark() { + // Make sure the pool is correctly used. This is expected for 200k numbers. + testutil.Equals(t, 4, int(chunkPool.(*mockedPool).gets)) + // TODO(bwplotka): This is super negative for large number of samples (1mln). Investigate. + testutil.Equals(t, 0, int(chunkPool.(*mockedPool).balance)) + chunkPool.(*mockedPool).gets = 0 + + for _, b := range blocks { + // NOTE(bwplotka): It is 4 x 1.0 for 100mln samples. Kind of make sense: long series. + testutil.Equals(t, 0.0, promtest.ToFloat64(b.seriesRefetches)) } + } +} - benchmarkSeries(t, store, cases) - if !t.IsBenchmark() { - // Make sure pool is correctly used. - testutil.Equals(t, 4, int(chunkPool.(*mockedPool).gets)) - testutil.Equals(t, 0, int(chunkPool.(*mockedPool).balance)) - chunkPool.(*mockedPool).gets = 0 - } - }) +var _ = fakePool{} - t.Run("index_json", func(t testutil.TB) { - for _, block := range blocks { - block.indexHeaderReader, err = indexheader.NewJSONReader(context.Background(), log.NewNopLogger(), bkt, tmpDir, block.meta.ULID) - testutil.Ok(t, err) - } +type fakePool struct{} - benchmarkSeries(t, store, cases) - if !t.IsBenchmark() { - // Make sure pool is correctly used. - testutil.Equals(t, 4, int(chunkPool.(*mockedPool).gets)) - testutil.Equals(t, 0, int(chunkPool.(*mockedPool).balance)) - } - }) +func (m fakePool) Get(sz int) (*[]byte, error) { + b := make([]byte, 0, sz) + return &b, nil } +func (m fakePool) Put(_ *[]byte) {} + type mockedPool struct { parent pool.BytesPool balance uint64 @@ -1270,7 +1424,13 @@ func benchmarkSeries(t testutil.TB, store *BucketStore, cases []*benchSeriesCase testutil.Equals(t, len(c.expected), len(srv.SeriesSet)) if !t.IsBenchmark() { - // This will give unreadable output for millions of series error. + if len(c.expected) == 1 { + // Chunks are not sorted within response. TODO: Investigate: Is this fine? + sort.Slice(srv.SeriesSet[0].Chunks, func(i, j int) bool { + return srv.SeriesSet[0].Chunks[i].MinTime < srv.SeriesSet[0].Chunks[j].MinTime + }) + } + // This might give unreadable output for millions of series if error. testutil.Equals(t, c.expected, srv.SeriesSet) } @@ -1278,3 +1438,179 @@ func benchmarkSeries(t testutil.TB, store *BucketStore, cases []*benchSeriesCase }) } } + +// Regression test against: https://github.com/thanos-io/thanos/issues/2147. +func TestSeries_OneBlock_InMemIndexCacheSegfault(t *testing.T) { + tmpDir, err := ioutil.TempDir("", "segfault-series") + testutil.Ok(t, err) + defer func() { testutil.Ok(t, os.RemoveAll(tmpDir)) }() + + bkt, err := filesystem.NewBucket(filepath.Join(tmpDir, "bkt")) + testutil.Ok(t, err) + defer func() { testutil.Ok(t, bkt.Close()) }() + + logger := log.NewNopLogger() + + thanosMeta := metadata.Thanos{ + Labels: labels.Labels{{Name: "ext1", Value: "1"}}.Map(), + Downsample: metadata.ThanosDownsample{Resolution: 0}, + Source: metadata.TestSource, + } + + chunkPool, err := pool.NewBucketedBytesPool(maxChunkSize, 50e6, 2, 100e7) + testutil.Ok(t, err) + + indexCache, err := storecache.NewInMemoryIndexCacheWithConfig(logger, nil, storecache.InMemoryIndexCacheConfig{ + MaxItemSize: 3000, + // This is the exact size of cache needed for our *single request*. + // This is limited in order to make sure we test evictions. + MaxSize: 8889, + }) + testutil.Ok(t, err) + + var b1 *bucketBlock + + const numSeries = 100 + + // Create 4 blocks. Each will have numSeriesPerBlock number of series that have 1 sample only. + // Timestamp will be counted for each new series, so each series will have unique timestamp. + // This allows to pick time range that will correspond to number of series picked 1:1. + { + // Block 1. + h, err := tsdb.NewHead(nil, nil, nil, 1) + testutil.Ok(t, err) + defer testutil.Ok(t, h.Close()) + + app := h.Appender() + + for i := 0; i < numSeries; i++ { + ts := int64(i) + lbls := labels.FromStrings("foo", "bar", "b", "1", "i", fmt.Sprintf("%07d%s", ts, postingsBenchSuffix)) + + _, err := app.Add(lbls, ts, 0) + testutil.Ok(t, err) + } + testutil.Ok(t, app.Commit()) + + blockDir := filepath.Join(tmpDir, "tmp") + id := createBlockFromHead(t, blockDir, h) + + meta, err := metadata.InjectThanos(log.NewNopLogger(), filepath.Join(blockDir, id.String()), thanosMeta, nil) + testutil.Ok(t, err) + testutil.Ok(t, block.Upload(context.Background(), logger, bkt, filepath.Join(blockDir, id.String()))) + + b1 = &bucketBlock{ + indexCache: indexCache, + logger: logger, + bkt: bkt, + meta: meta, + partitioner: gapBasedPartitioner{maxGapSize: partitionerMaxGapSize}, + chunkObjs: []string{filepath.Join(id.String(), "chunks", "000001")}, + chunkPool: chunkPool, + } + b1.indexHeaderReader, err = indexheader.NewBinaryReader(context.Background(), log.NewNopLogger(), bkt, tmpDir, b1.meta.ULID) + testutil.Ok(t, err) + } + + var b2 *bucketBlock + { + // Block 2, do not load this block yet. + h, err := tsdb.NewHead(nil, nil, nil, 1) + testutil.Ok(t, err) + defer testutil.Ok(t, h.Close()) + + app := h.Appender() + + for i := 0; i < numSeries; i++ { + ts := int64(i) + lbls := labels.FromStrings("foo", "bar", "b", "2", "i", fmt.Sprintf("%07d%s", ts, postingsBenchSuffix)) + + _, err := app.Add(lbls, ts, 0) + testutil.Ok(t, err) + } + testutil.Ok(t, app.Commit()) + + blockDir := filepath.Join(tmpDir, "tmp2") + id := createBlockFromHead(t, blockDir, h) + + meta, err := metadata.InjectThanos(log.NewNopLogger(), filepath.Join(blockDir, id.String()), thanosMeta, nil) + testutil.Ok(t, err) + testutil.Ok(t, block.Upload(context.Background(), logger, bkt, filepath.Join(blockDir, id.String()))) + + b2 = &bucketBlock{ + indexCache: indexCache, + logger: logger, + bkt: bkt, + meta: meta, + partitioner: gapBasedPartitioner{maxGapSize: partitionerMaxGapSize}, + chunkObjs: []string{filepath.Join(id.String(), "chunks", "000001")}, + chunkPool: chunkPool, + } + b2.indexHeaderReader, err = indexheader.NewBinaryReader(context.Background(), log.NewNopLogger(), bkt, tmpDir, b2.meta.ULID) + testutil.Ok(t, err) + } + + store := &BucketStore{ + bkt: bkt, + logger: logger, + indexCache: indexCache, + metrics: newBucketStoreMetrics(nil), + blockSets: map[uint64]*bucketBlockSet{ + labels.Labels{{Name: "ext1", Value: "1"}}.Hash(): {blocks: [][]*bucketBlock{{b1, b2}}}, + }, + blocks: map[ulid.ULID]*bucketBlock{ + b1.meta.ULID: b1, + b2.meta.ULID: b2, + }, + queryGate: noopGater{}, + samplesLimiter: noopLimiter{}, + } + + t.Run("invoke series for one block. Fill the cache on the way.", func(t *testing.T) { + srv := newStoreSeriesServer(context.Background()) + testutil.Ok(t, store.Series(&storepb.SeriesRequest{ + MinTime: 0, + MaxTime: int64(numSeries) - 1, + Matchers: []storepb.LabelMatcher{ + {Type: storepb.LabelMatcher_EQ, Name: "foo", Value: "bar"}, + {Type: storepb.LabelMatcher_EQ, Name: "b", Value: "1"}, + // This bug shows only when we use lot's of symbols for matching. + {Type: storepb.LabelMatcher_NEQ, Name: "i", Value: ""}, + }, + }, srv)) + testutil.Equals(t, 0, len(srv.Warnings)) + testutil.Equals(t, numSeries, len(srv.SeriesSet)) + }) + t.Run("invoke series for second block. This should revoke previous cache.", func(t *testing.T) { + srv := newStoreSeriesServer(context.Background()) + testutil.Ok(t, store.Series(&storepb.SeriesRequest{ + MinTime: 0, + MaxTime: int64(numSeries) - 1, + Matchers: []storepb.LabelMatcher{ + {Type: storepb.LabelMatcher_EQ, Name: "foo", Value: "bar"}, + {Type: storepb.LabelMatcher_EQ, Name: "b", Value: "2"}, + // This bug shows only when we use lot's of symbols for matching. + {Type: storepb.LabelMatcher_NEQ, Name: "i", Value: ""}, + }, + }, srv)) + testutil.Equals(t, 0, len(srv.Warnings)) + testutil.Equals(t, numSeries, len(srv.SeriesSet)) + }) + t.Run("remove second block. Cache stays. Ask for first again.", func(t *testing.T) { + testutil.Ok(t, store.removeBlock(b2.meta.ULID)) + + srv := newStoreSeriesServer(context.Background()) + testutil.Ok(t, store.Series(&storepb.SeriesRequest{ + MinTime: 0, + MaxTime: int64(numSeries) - 1, + Matchers: []storepb.LabelMatcher{ + {Type: storepb.LabelMatcher_EQ, Name: "foo", Value: "bar"}, + {Type: storepb.LabelMatcher_EQ, Name: "b", Value: "1"}, + // This bug shows only when we use lot's of symbols for matching. + {Type: storepb.LabelMatcher_NEQ, Name: "i", Value: ""}, + }, + }, srv)) + testutil.Equals(t, 0, len(srv.Warnings)) + testutil.Equals(t, numSeries, len(srv.SeriesSet)) + }) +} diff --git a/pkg/store/cache/inmemory.go b/pkg/store/cache/inmemory.go index 02d5ad12ba5..f91ec5de48e 100644 --- a/pkg/store/cache/inmemory.go +++ b/pkg/store/cache/inmemory.go @@ -5,8 +5,9 @@ package storecache import ( "context" - "math" + "reflect" "sync" + "unsafe" "github.com/go-kit/kit/log" "github.com/go-kit/kit/log/level" @@ -14,7 +15,9 @@ import ( "github.com/oklog/ulid" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/prometheus/pkg/labels" + "github.com/thanos-io/thanos/pkg/model" "gopkg.in/yaml.v2" ) @@ -25,6 +28,8 @@ var ( } ) +const maxInt = int(^uint(0) >> 1) + type InMemoryIndexCache struct { mtx sync.Mutex @@ -48,9 +53,9 @@ type InMemoryIndexCache struct { // InMemoryIndexCacheConfig holds the in-memory index cache config. type InMemoryIndexCacheConfig struct { // MaxSize represents overall maximum number of bytes cache can contain. - MaxSize Bytes `yaml:"max_size"` + MaxSize model.Bytes `yaml:"max_size"` // MaxItemSize represents maximum size of single item. - MaxItemSize Bytes `yaml:"max_item_size"` + MaxItemSize model.Bytes `yaml:"max_item_size"` } // parseInMemoryIndexCacheConfig unmarshals a buffer into a InMemoryIndexCacheConfig with default values. @@ -87,81 +92,78 @@ func NewInMemoryIndexCacheWithConfig(logger log.Logger, reg prometheus.Registere maxItemSizeBytes: uint64(config.MaxItemSize), } - c.evicted = prometheus.NewCounterVec(prometheus.CounterOpts{ + c.evicted = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_store_index_cache_items_evicted_total", Help: "Total number of items that were evicted from the index cache.", }, []string{"item_type"}) c.evicted.WithLabelValues(cacheTypePostings) c.evicted.WithLabelValues(cacheTypeSeries) - c.added = prometheus.NewCounterVec(prometheus.CounterOpts{ + c.added = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_store_index_cache_items_added_total", Help: "Total number of items that were added to the index cache.", }, []string{"item_type"}) c.added.WithLabelValues(cacheTypePostings) c.added.WithLabelValues(cacheTypeSeries) - c.requests = prometheus.NewCounterVec(prometheus.CounterOpts{ + c.requests = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_store_index_cache_requests_total", Help: "Total number of requests to the cache.", }, []string{"item_type"}) c.requests.WithLabelValues(cacheTypePostings) c.requests.WithLabelValues(cacheTypeSeries) - c.overflow = prometheus.NewCounterVec(prometheus.CounterOpts{ + c.overflow = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_store_index_cache_items_overflowed_total", Help: "Total number of items that could not be added to the cache due to being too big.", }, []string{"item_type"}) c.overflow.WithLabelValues(cacheTypePostings) c.overflow.WithLabelValues(cacheTypeSeries) - c.hits = prometheus.NewCounterVec(prometheus.CounterOpts{ + c.hits = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_store_index_cache_hits_total", Help: "Total number of requests to the cache that were a hit.", }, []string{"item_type"}) c.hits.WithLabelValues(cacheTypePostings) c.hits.WithLabelValues(cacheTypeSeries) - c.current = prometheus.NewGaugeVec(prometheus.GaugeOpts{ + c.current = promauto.With(reg).NewGaugeVec(prometheus.GaugeOpts{ Name: "thanos_store_index_cache_items", Help: "Current number of items in the index cache.", }, []string{"item_type"}) c.current.WithLabelValues(cacheTypePostings) c.current.WithLabelValues(cacheTypeSeries) - c.currentSize = prometheus.NewGaugeVec(prometheus.GaugeOpts{ + c.currentSize = promauto.With(reg).NewGaugeVec(prometheus.GaugeOpts{ Name: "thanos_store_index_cache_items_size_bytes", Help: "Current byte size of items in the index cache.", }, []string{"item_type"}) c.currentSize.WithLabelValues(cacheTypePostings) c.currentSize.WithLabelValues(cacheTypeSeries) - c.totalCurrentSize = prometheus.NewGaugeVec(prometheus.GaugeOpts{ + c.totalCurrentSize = promauto.With(reg).NewGaugeVec(prometheus.GaugeOpts{ Name: "thanos_store_index_cache_total_size_bytes", Help: "Current byte size of items (both value and key) in the index cache.", }, []string{"item_type"}) c.totalCurrentSize.WithLabelValues(cacheTypePostings) c.totalCurrentSize.WithLabelValues(cacheTypeSeries) - if reg != nil { - reg.MustRegister(prometheus.NewGaugeFunc(prometheus.GaugeOpts{ - Name: "thanos_store_index_cache_max_size_bytes", - Help: "Maximum number of bytes to be held in the index cache.", - }, func() float64 { - return float64(c.maxSizeBytes) - })) - reg.MustRegister(prometheus.NewGaugeFunc(prometheus.GaugeOpts{ - Name: "thanos_store_index_cache_max_item_size_bytes", - Help: "Maximum number of bytes for single entry to be held in the index cache.", - }, func() float64 { - return float64(c.maxItemSizeBytes) - })) - reg.MustRegister(c.requests, c.hits, c.added, c.evicted, c.current, c.currentSize, c.totalCurrentSize, c.overflow) - } + _ = promauto.With(reg).NewGaugeFunc(prometheus.GaugeOpts{ + Name: "thanos_store_index_cache_max_size_bytes", + Help: "Maximum number of bytes to be held in the index cache.", + }, func() float64 { + return float64(c.maxSizeBytes) + }) + _ = promauto.With(reg).NewGaugeFunc(prometheus.GaugeOpts{ + Name: "thanos_store_index_cache_max_item_size_bytes", + Help: "Maximum number of bytes for single entry to be held in the index cache.", + }, func() float64 { + return float64(c.maxItemSizeBytes) + }) // Initialize LRU cache with a high size limit since we will manage evictions ourselves // based on stored size using `RemoveOldest` method. - l, err := lru.NewLRU(math.MaxInt64, c.onEvict) + l, err := lru.NewLRU(maxInt, c.onEvict) if err != nil { return nil, err } @@ -171,7 +173,7 @@ func NewInMemoryIndexCacheWithConfig(logger log.Logger, reg prometheus.Registere "msg", "created in-memory index cache", "maxItemSizeBytes", c.maxItemSizeBytes, "maxSizeBytes", c.maxSizeBytes, - "maxItems", "math.MaxInt64", + "maxItems", "maxInt", ) return c, nil } @@ -269,15 +271,29 @@ func (c *InMemoryIndexCache) reset() { c.curSize = 0 } +func copyString(s string) string { + var b []byte + h := (*reflect.SliceHeader)(unsafe.Pointer(&b)) + h.Data = (*reflect.StringHeader)(unsafe.Pointer(&s)).Data + h.Len = len(s) + h.Cap = len(s) + return string(b) +} + +// copyToKey is required as underlying strings might be mmaped. +func copyToKey(l labels.Label) cacheKeyPostings { + return cacheKeyPostings(labels.Label{Value: copyString(l.Value), Name: copyString(l.Name)}) +} + // StorePostings sets the postings identified by the ulid and label to the value v, // if the postings already exists in the cache it is not mutated. -func (c *InMemoryIndexCache) StorePostings(ctx context.Context, blockID ulid.ULID, l labels.Label, v []byte) { - c.set(cacheTypePostings, cacheKey{blockID, cacheKeyPostings(l)}, v) +func (c *InMemoryIndexCache) StorePostings(_ context.Context, blockID ulid.ULID, l labels.Label, v []byte) { + c.set(cacheTypePostings, cacheKey{block: blockID, key: copyToKey(l)}, v) } // FetchMultiPostings fetches multiple postings - each identified by a label - // and returns a map containing cache hits, along with a list of missing keys. -func (c *InMemoryIndexCache) FetchMultiPostings(ctx context.Context, blockID ulid.ULID, keys []labels.Label) (hits map[labels.Label][]byte, misses []labels.Label) { +func (c *InMemoryIndexCache) FetchMultiPostings(_ context.Context, blockID ulid.ULID, keys []labels.Label) (hits map[labels.Label][]byte, misses []labels.Label) { hits = map[labels.Label][]byte{} for _, key := range keys { @@ -294,13 +310,13 @@ func (c *InMemoryIndexCache) FetchMultiPostings(ctx context.Context, blockID uli // StoreSeries sets the series identified by the ulid and id to the value v, // if the series already exists in the cache it is not mutated. -func (c *InMemoryIndexCache) StoreSeries(ctx context.Context, blockID ulid.ULID, id uint64, v []byte) { +func (c *InMemoryIndexCache) StoreSeries(_ context.Context, blockID ulid.ULID, id uint64, v []byte) { c.set(cacheTypeSeries, cacheKey{blockID, cacheKeySeries(id)}, v) } // FetchMultiSeries fetches multiple series - each identified by ID - from the cache // and returns a map containing cache hits, along with a list of missing IDs. -func (c *InMemoryIndexCache) FetchMultiSeries(ctx context.Context, blockID ulid.ULID, ids []uint64) (hits map[uint64][]byte, misses []uint64) { +func (c *InMemoryIndexCache) FetchMultiSeries(_ context.Context, blockID ulid.ULID, ids []uint64) (hits map[uint64][]byte, misses []uint64) { hits = map[uint64][]byte{} for _, id := range ids { diff --git a/pkg/store/cache/memcached.go b/pkg/store/cache/memcached.go index db7ec61c635..74ce30299e1 100644 --- a/pkg/store/cache/memcached.go +++ b/pkg/store/cache/memcached.go @@ -11,6 +11,7 @@ import ( "github.com/go-kit/kit/log/level" "github.com/oklog/ulid" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/prometheus/pkg/labels" "github.com/thanos-io/thanos/pkg/cacheutil" ) @@ -36,24 +37,20 @@ func NewMemcachedIndexCache(logger log.Logger, memcached cacheutil.MemcachedClie memcached: memcached, } - c.requests = prometheus.NewCounterVec(prometheus.CounterOpts{ + c.requests = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_store_index_cache_requests_total", Help: "Total number of items requests to the cache.", }, []string{"item_type"}) c.requests.WithLabelValues(cacheTypePostings) c.requests.WithLabelValues(cacheTypeSeries) - c.hits = prometheus.NewCounterVec(prometheus.CounterOpts{ + c.hits = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_store_index_cache_hits_total", Help: "Total number of items requests to the cache that were a hit.", }, []string{"item_type"}) c.hits.WithLabelValues(cacheTypePostings) c.hits.WithLabelValues(cacheTypeSeries) - if reg != nil { - reg.MustRegister(c.requests, c.hits) - } - level.Info(logger).Log("msg", "created memcached index cache") return c, nil diff --git a/pkg/store/cache/memcached_test.go b/pkg/store/cache/memcached_test.go index 0463bbfb118..7710a2d543a 100644 --- a/pkg/store/cache/memcached_test.go +++ b/pkg/store/cache/memcached_test.go @@ -5,13 +5,13 @@ package storecache import ( "context" - "errors" "testing" "time" "github.com/fortytw2/leaktest" "github.com/go-kit/kit/log" "github.com/oklog/ulid" + "github.com/pkg/errors" prom_testutil "github.com/prometheus/client_golang/prometheus/testutil" "github.com/prometheus/prometheus/pkg/labels" "github.com/thanos-io/thanos/pkg/testutil" diff --git a/pkg/store/postings_codec.go b/pkg/store/postings_codec.go new file mode 100644 index 00000000000..7b1aaff477d --- /dev/null +++ b/pkg/store/postings_codec.go @@ -0,0 +1,135 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +package store + +import ( + "bytes" + + "github.com/golang/snappy" + "github.com/pkg/errors" + "github.com/prometheus/prometheus/tsdb/encoding" + "github.com/prometheus/prometheus/tsdb/index" +) + +// This file implements encoding and decoding of postings using diff (or delta) + varint +// number encoding. On top of that, we apply Snappy compression. +// +// On its own, Snappy compressing raw postings doesn't really help, because there is no +// repetition in raw data. Using diff (delta) between postings entries makes values small, +// and Varint is very efficient at encoding small values (values < 128 are encoded as +// single byte, values < 16384 are encoded as two bytes). Diff + varint reduces postings size +// significantly (to about 20% of original), snappy then halves it to ~10% of the original. + +const ( + codecHeaderSnappy = "dvs" // As in "diff+varint+snappy". +) + +// isDiffVarintSnappyEncodedPostings returns true, if input looks like it has been encoded by diff+varint+snappy codec. +func isDiffVarintSnappyEncodedPostings(input []byte) bool { + return bytes.HasPrefix(input, []byte(codecHeaderSnappy)) +} + +// diffVarintSnappyEncode encodes postings into diff+varint representation, +// and applies snappy compression on the result. +// Returned byte slice starts with codecHeaderSnappy header. +func diffVarintSnappyEncode(p index.Postings) ([]byte, error) { + buf, err := diffVarintEncodeNoHeader(p) + if err != nil { + return nil, err + } + + // Make result buffer large enough to hold our header and compressed block. + result := make([]byte, len(codecHeaderSnappy)+snappy.MaxEncodedLen(len(buf))) + copy(result, codecHeaderSnappy) + + compressed := snappy.Encode(result[len(codecHeaderSnappy):], buf) + + // Slice result buffer based on compressed size. + result = result[:len(codecHeaderSnappy)+len(compressed)] + return result, nil +} + +// diffVarintEncodeNoHeader encodes postings into diff+varint representation. +// It doesn't add any header to the output bytes. +func diffVarintEncodeNoHeader(p index.Postings) ([]byte, error) { + buf := encoding.Encbuf{} + + prev := uint64(0) + for p.Next() { + v := p.At() + if v < prev { + return nil, errors.Errorf("postings entries must be in increasing order, current: %d, previous: %d", v, prev) + } + + // This is the 'diff' part -- compute difference from previous value. + buf.PutUvarint64(v - prev) + prev = v + } + if p.Err() != nil { + return nil, p.Err() + } + + return buf.B, nil +} + +func diffVarintSnappyDecode(input []byte) (index.Postings, error) { + if !isDiffVarintSnappyEncodedPostings(input) { + return nil, errors.New("header not found") + } + + raw, err := snappy.Decode(nil, input[len(codecHeaderSnappy):]) + if err != nil { + return nil, errors.Wrap(err, "snappy decode") + } + + return newDiffVarintPostings(raw), nil +} + +func newDiffVarintPostings(input []byte) *diffVarintPostings { + return &diffVarintPostings{buf: &encoding.Decbuf{B: input}} +} + +// diffVarintPostings is an implementation of index.Postings based on diff+varint encoded data. +type diffVarintPostings struct { + buf *encoding.Decbuf + cur uint64 +} + +func (it *diffVarintPostings) At() uint64 { + return it.cur +} + +func (it *diffVarintPostings) Next() bool { + if it.buf.Err() != nil || it.buf.Len() == 0 { + return false + } + + val := it.buf.Uvarint64() + if it.buf.Err() != nil { + return false + } + + it.cur = it.cur + val + return true +} + +func (it *diffVarintPostings) Seek(x uint64) bool { + if it.cur >= x { + return true + } + + // We cannot do any search due to how values are stored, + // so we simply advance until we find the right value. + for it.Next() { + if it.At() >= x { + return true + } + } + + return false +} + +func (it *diffVarintPostings) Err() error { + return it.buf.Err() +} diff --git a/pkg/store/postings_codec_test.go b/pkg/store/postings_codec_test.go new file mode 100644 index 00000000000..adb9f57d4b7 --- /dev/null +++ b/pkg/store/postings_codec_test.go @@ -0,0 +1,184 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +package store + +import ( + "testing" + + "github.com/prometheus/prometheus/pkg/labels" + "github.com/prometheus/prometheus/tsdb" + "github.com/prometheus/prometheus/tsdb/index" + + "github.com/thanos-io/thanos/pkg/testutil" +) + +func TestDiffVarintCodec(t *testing.T) { + h, err := tsdb.NewHead(nil, nil, nil, 1000) + testutil.Ok(t, err) + defer func() { + testutil.Ok(t, h.Close()) + }() + + appendTestData(t, h.Appender(), 1e6) + + idx, err := h.Index() + testutil.Ok(t, err) + defer func() { + testutil.Ok(t, idx.Close()) + }() + + postingsMap := map[string]index.Postings{ + "all": allPostings(t, idx), + `n="1"`: matchPostings(t, idx, labels.MustNewMatcher(labels.MatchEqual, "n", "1"+postingsBenchSuffix)), + `j="foo"`: matchPostings(t, idx, labels.MustNewMatcher(labels.MatchEqual, "j", "foo")), + `j!="foo"`: matchPostings(t, idx, labels.MustNewMatcher(labels.MatchNotEqual, "j", "foo")), + `i=~".*"`: matchPostings(t, idx, labels.MustNewMatcher(labels.MatchRegexp, "i", ".*")), + `i=~".+"`: matchPostings(t, idx, labels.MustNewMatcher(labels.MatchRegexp, "i", ".+")), + `i=~"1.+"`: matchPostings(t, idx, labels.MustNewMatcher(labels.MatchRegexp, "i", "1.+")), + `i=~"^$"'`: matchPostings(t, idx, labels.MustNewMatcher(labels.MatchRegexp, "i", "^$")), + `i!~""`: matchPostings(t, idx, labels.MustNewMatcher(labels.MatchNotEqual, "i", "")), + `n!="2"`: matchPostings(t, idx, labels.MustNewMatcher(labels.MatchNotEqual, "n", "2"+postingsBenchSuffix)), + `i!~"2.*"`: matchPostings(t, idx, labels.MustNewMatcher(labels.MatchNotRegexp, "i", "^2.*$")), + } + + codecs := map[string]struct { + codingFunction func(index.Postings) ([]byte, error) + decodingFunction func([]byte) (index.Postings, error) + }{ + "raw": {codingFunction: diffVarintEncodeNoHeader, decodingFunction: func(bytes []byte) (index.Postings, error) { return newDiffVarintPostings(bytes), nil }}, + "snappy": {codingFunction: diffVarintSnappyEncode, decodingFunction: diffVarintSnappyDecode}, + } + + for postingName, postings := range postingsMap { + p, err := toUint64Postings(postings) + testutil.Ok(t, err) + + for cname, codec := range codecs { + name := cname + "/" + postingName + + t.Run(name, func(t *testing.T) { + t.Log("postings entries:", p.len()) + t.Log("original size (4*entries):", 4*p.len(), "bytes") + p.reset() // We reuse postings between runs, so we need to reset iterator. + + data, err := codec.codingFunction(p) + testutil.Ok(t, err) + + t.Log("encoded size", len(data), "bytes") + t.Logf("ratio: %0.3f", (float64(len(data)) / float64(4*p.len()))) + + decodedPostings, err := codec.decodingFunction(data) + testutil.Ok(t, err) + + p.reset() + comparePostings(t, p, decodedPostings) + }) + } + } +} + +func comparePostings(t *testing.T, p1, p2 index.Postings) { + for p1.Next() { + if !p2.Next() { + t.Log("p1 has more values") + t.Fail() + return + } + + if p1.At() != p2.At() { + t.Logf("values differ: %d, %d", p1.At(), p2.At()) + t.Fail() + return + } + } + + if p2.Next() { + t.Log("p2 has more values") + t.Fail() + return + } + + testutil.Ok(t, p1.Err()) + testutil.Ok(t, p2.Err()) +} + +func allPostings(t testing.TB, ix tsdb.IndexReader) index.Postings { + k, v := index.AllPostingsKey() + p, err := ix.Postings(k, v) + testutil.Ok(t, err) + return p +} + +func matchPostings(t testing.TB, ix tsdb.IndexReader, m *labels.Matcher) index.Postings { + vals, err := ix.LabelValues(m.Name) + testutil.Ok(t, err) + + matching := []string(nil) + for _, v := range vals { + if m.Matches(v) { + matching = append(matching, v) + } + } + + p, err := ix.Postings(m.Name, matching...) + testutil.Ok(t, err) + return p +} + +func toUint64Postings(p index.Postings) (*uint64Postings, error) { + var vals []uint64 + for p.Next() { + vals = append(vals, p.At()) + } + return &uint64Postings{vals: vals, ix: -1}, p.Err() +} + +// Postings with no decoding step. +type uint64Postings struct { + vals []uint64 + ix int +} + +func (p *uint64Postings) At() uint64 { + if p.ix < 0 || p.ix >= len(p.vals) { + return 0 + } + return p.vals[p.ix] +} + +func (p *uint64Postings) Next() bool { + if p.ix < len(p.vals)-1 { + p.ix++ + return true + } + return false +} + +func (p *uint64Postings) Seek(x uint64) bool { + if p.At() >= x { + return true + } + + // We cannot do any search due to how values are stored, + // so we simply advance until we find the right value. + for p.Next() { + if p.At() >= x { + return true + } + } + + return false +} + +func (p *uint64Postings) Err() error { + return nil +} + +func (p *uint64Postings) reset() { + p.ix = -1 +} + +func (p *uint64Postings) len() int { + return len(p.vals) +} diff --git a/pkg/store/prometheus.go b/pkg/store/prometheus.go index 7d8c7624212..8d041dab94e 100644 --- a/pkg/store/prometheus.go +++ b/pkg/store/prometheus.go @@ -29,13 +29,13 @@ import ( "github.com/prometheus/common/version" "github.com/prometheus/prometheus/pkg/labels" "github.com/prometheus/prometheus/pkg/timestamp" - "github.com/prometheus/prometheus/prompb" "github.com/prometheus/prometheus/storage/remote" "github.com/prometheus/prometheus/tsdb/chunkenc" "github.com/thanos-io/thanos/pkg/component" "github.com/thanos-io/thanos/pkg/exthttp" "github.com/thanos-io/thanos/pkg/runutil" "github.com/thanos-io/thanos/pkg/store/storepb" + "github.com/thanos-io/thanos/pkg/store/storepb/prompb" "github.com/thanos-io/thanos/pkg/tracing" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" @@ -178,12 +178,7 @@ func (p *PrometheusStore) Series(r *storepb.SeriesRequest, s storepb.Store_Serie for k, v := range lbm { lset = append(lset, storepb.Label{Name: k, Value: v}) } - for _, l := range externalLabels { - lset = append(lset, storepb.Label{ - Name: l.Name, - Value: l.Value, - }) - } + lset = append(lset, storepb.PromLabelsToLabelsUnsafe(externalLabels)...) sort.Slice(lset, func(i, j int) bool { return lset[i].Name < lset[j].Name }) @@ -366,7 +361,7 @@ func (p *PrometheusStore) handleStreamedPrometheusResponse(s storepb.Store_Serie return nil } -func (p *PrometheusStore) fetchSampledResponse(ctx context.Context, resp *http.Response) (*prompb.ReadResponse, error) { +func (p *PrometheusStore) fetchSampledResponse(ctx context.Context, resp *http.Response) (_ *prompb.ReadResponse, err error) { defer runutil.ExhaustCloseWithLogOnErr(p.logger, resp.Body, "prom series request body") b := p.getBuffer() @@ -375,21 +370,24 @@ func (p *PrometheusStore) fetchSampledResponse(ctx context.Context, resp *http.R if _, err := io.Copy(buf, resp.Body); err != nil { return nil, errors.Wrap(err, "copy response") } - spanSnappyDecode, ctx := tracing.StartSpan(ctx, "decompress_response") + sb := p.getBuffer() - decomp, err := snappy.Decode(*sb, buf.Bytes()) - spanSnappyDecode.Finish() + var decomp []byte + tracing.DoInSpan(ctx, "decompress_response", func(ctx context.Context) { + decomp, err = snappy.Decode(*sb, buf.Bytes()) + }) defer p.putBuffer(sb) if err != nil { return nil, errors.Wrap(err, "decompress response") } var data prompb.ReadResponse - spanUnmarshal, _ := tracing.StartSpan(ctx, "unmarshal_response") - if err := proto.Unmarshal(decomp, &data); err != nil { + tracing.DoInSpan(ctx, "unmarshal_response", func(ctx context.Context) { + err = proto.Unmarshal(decomp, &data) + }) + if err != nil { return nil, errors.Wrap(err, "unmarshal response") } - spanUnmarshal.Finish() if len(data.Results) != 1 { return nil, errors.Errorf("unexpected result size %d", len(data.Results)) } @@ -423,7 +421,7 @@ func (p *PrometheusStore) chunkSamples(series *prompb.TimeSeries, maxSamplesPerC return chks, nil } -func (p *PrometheusStore) startPromSeries(ctx context.Context, q *prompb.Query) (*http.Response, error) { +func (p *PrometheusStore) startPromSeries(ctx context.Context, q *prompb.Query) (presp *http.Response, err error) { reqb, err := proto.Marshal(&prompb.ReadRequest{ Queries: []*prompb.Query{q}, AcceptedResponseTypes: p.remoteReadAcceptableResponses, @@ -432,6 +430,11 @@ func (p *PrometheusStore) startPromSeries(ctx context.Context, q *prompb.Query) return nil, errors.Wrap(err, "marshal read request") } + qjson, err := json.Marshal(q) + if err != nil { + return nil, errors.Wrap(err, "json encode query for tracing") + } + u := *p.base u.Path = path.Join(u.Path, "api/v1/read") @@ -442,13 +445,13 @@ func (p *PrometheusStore) startPromSeries(ctx context.Context, q *prompb.Query) preq.Header.Add("Content-Encoding", "snappy") preq.Header.Set("Content-Type", "application/x-stream-protobuf") preq.Header.Set("User-Agent", userAgent) - spanReqDo, ctx := tracing.StartSpan(ctx, "query_prometheus_request") - preq = preq.WithContext(ctx) - presp, err := p.client.Do(preq) + tracing.DoInSpan(ctx, "query_prometheus_request", func(ctx context.Context) { + preq = preq.WithContext(ctx) + presp, err = p.client.Do(preq) + }, opentracing.Tag{Key: "prometheus.query", Value: string(qjson)}) if err != nil { return nil, errors.Wrap(err, "send request") } - spanReqDo.Finish() if presp.StatusCode/100 != 2 { // Best effort read. b, err := ioutil.ReadAll(presp.Body) @@ -510,32 +513,34 @@ func (p *PrometheusStore) encodeChunk(ss []prompb.Sample) (storepb.Chunk_Encodin // translateAndExtendLabels transforms a metrics into a protobuf label set. It additionally // attaches the given labels to it, overwriting existing ones on collision. +// Both input labels are expected to be sorted. +// +// NOTE(bwplotka): Don't use modify passed slices as we reuse underlying memory. func (p *PrometheusStore) translateAndExtendLabels(m []prompb.Label, extend labels.Labels) []storepb.Label { + pbLabels := storepb.PrompbLabelsToLabelsUnsafe(m) + pbExtend := storepb.PromLabelsToLabelsUnsafe(extend) + lset := make([]storepb.Label, 0, len(m)+len(extend)) + ei := 0 - for _, l := range m { - if extend.Get(l.Name) != "" { - continue +Outer: + for _, l := range pbLabels { + for ei < len(pbExtend) { + if l.Name < pbExtend[ei].Name { + break + } + lset = append(lset, pbExtend[ei]) + ei++ + if l.Name == pbExtend[ei-1].Name { + continue Outer + } } - lset = append(lset, storepb.Label{ - Name: l.Name, - Value: l.Value, - }) + lset = append(lset, l) } - - return extendLset(lset, extend) -} - -func extendLset(lset []storepb.Label, extend labels.Labels) []storepb.Label { - for _, l := range extend { - lset = append(lset, storepb.Label{ - Name: l.Name, - Value: l.Value, - }) + for ei < len(pbExtend) { + lset = append(lset, pbExtend[ei]) + ei++ } - sort.Slice(lset, func(i, j int) bool { - return lset[i].Name < lset[j].Name - }) return lset } diff --git a/pkg/store/prometheus_test.go b/pkg/store/prometheus_test.go index 703d52f687c..ebcec0126dc 100644 --- a/pkg/store/prometheus_test.go +++ b/pkg/store/prometheus_test.go @@ -14,13 +14,13 @@ import ( "github.com/fortytw2/leaktest" "github.com/prometheus/prometheus/pkg/labels" "github.com/prometheus/prometheus/pkg/timestamp" - "github.com/prometheus/prometheus/prompb" "github.com/prometheus/prometheus/tsdb" "github.com/prometheus/prometheus/tsdb/chunkenc" "github.com/thanos-io/thanos/pkg/testutil/e2eutil" "github.com/thanos-io/thanos/pkg/component" "github.com/thanos-io/thanos/pkg/store/storepb" + "github.com/thanos-io/thanos/pkg/store/storepb/prompb" "github.com/thanos-io/thanos/pkg/testutil" ) diff --git a/pkg/store/proxy.go b/pkg/store/proxy.go index 1af4242d281..8440de2f966 100644 --- a/pkg/store/proxy.go +++ b/pkg/store/proxy.go @@ -19,6 +19,7 @@ import ( "github.com/opentracing/opentracing-go" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/prometheus/pkg/labels" "github.com/thanos-io/thanos/pkg/component" "github.com/thanos-io/thanos/pkg/store/storepb" @@ -63,16 +64,11 @@ type proxyStoreMetrics struct { func newProxyStoreMetrics(reg prometheus.Registerer) *proxyStoreMetrics { var m proxyStoreMetrics - m.emptyStreamResponses = prometheus.NewCounter(prometheus.CounterOpts{ + m.emptyStreamResponses = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_proxy_store_empty_stream_responses_total", Help: "Total number of empty responses received.", }) - if reg != nil { - reg.MustRegister( - m.emptyStreamResponses, - ) - } return &m } @@ -113,9 +109,9 @@ func (s *ProxyStore) Info(ctx context.Context, r *storepb.InfoRequest) (*storepb maxTime := int64(0) stores := s.stores() - // Edge case: we have all of the data if there are no stores. + // Edge case: we have no data if there are no stores. if len(stores) == 0 { - res.MaxTime = math.MaxInt64 + res.MaxTime = 0 res.MinTime = 0 return res, nil @@ -198,12 +194,7 @@ func newRespCh(ctx context.Context, buffer int) (*ctxRespSender, <-chan *storepb } func (s ctxRespSender) send(r *storepb.SeriesResponse) { - select { - case <-s.ctx.Done(): - return - case s.ch <- r: - return - } + s.ch <- r } // Series returns all series for a requested time range and label matcher. Requested series are taken from other @@ -254,9 +245,11 @@ func (s *ProxyStore) Series(r *storepb.SeriesRequest, srv storepb.Store_SeriesSe // We might be able to skip the store if its meta information indicates // it cannot have series matching our query. // NOTE: all matchers are validated in matchesExternalLabels method so we explicitly ignore error. - spanStoreMathes, gctx := tracing.StartSpan(gctx, "store_matches") - ok, _ := storeMatches(st, r.MinTime, r.MaxTime, r.Matchers...) - spanStoreMathes.Finish() + var ok bool + tracing.DoInSpan(gctx, "store_matches", func(ctx context.Context) { + // We can skip error, we already translated matchers once. + ok, _ = storeMatches(st, r.MinTime, r.MaxTime, r.Matchers...) + }) if !ok { storeDebugMsgs = append(storeDebugMsgs, fmt.Sprintf("store %s filtered out", st)) continue @@ -348,6 +341,21 @@ type streamSeriesSet struct { closeSeries context.CancelFunc } +type recvResponse struct { + r *storepb.SeriesResponse + err error +} + +func frameCtx(responseTimeout time.Duration) (context.Context, context.CancelFunc) { + frameTimeoutCtx := context.Background() + var cancel context.CancelFunc + if responseTimeout != 0 { + frameTimeoutCtx, cancel = context.WithTimeout(frameTimeoutCtx, responseTimeout) + return frameTimeoutCtx, cancel + } + return frameTimeoutCtx, func() {} +} + func startStreamSeriesSet( ctx context.Context, logger log.Logger, @@ -383,78 +391,73 @@ func startStreamSeriesSet( emptyStreamResponses.Inc() } }() - for { - r, err := s.stream.Recv() - - if err == io.EOF { - return - } - if err != nil { - wrapErr := errors.Wrapf(err, "receive series from %s", s.name) - if partialResponse { - s.warnCh.send(storepb.NewWarnSeriesResponse(wrapErr)) + rCh := make(chan *recvResponse) + done := make(chan struct{}) + go func() { + for { + r, err := s.stream.Recv() + select { + case <-done: + close(rCh) return + case rCh <- &recvResponse{r: r, err: err}: } + } + }() + for { + frameTimeoutCtx, cancel := frameCtx(s.responseTimeout) + defer cancel() + var rr *recvResponse + select { + case <-ctx.Done(): + s.handleErr(errors.Wrapf(ctx.Err(), "failed to receive any data from %s", s.name), done) + return + case <-frameTimeoutCtx.Done(): + s.handleErr(errors.Wrapf(frameTimeoutCtx.Err(), "failed to receive any data in %s from %s", s.responseTimeout.String(), s.name), done) + return + case rr = <-rCh: + } - s.errMtx.Lock() - s.err = wrapErr - s.errMtx.Unlock() + if rr.err == io.EOF { + close(done) return } + if rr.err != nil { + s.handleErr(errors.Wrapf(rr.err, "receive series from %s", s.name), done) + return + } numResponses++ - if w := r.GetWarning(); w != "" { + if w := rr.r.GetWarning(); w != "" { s.warnCh.send(storepb.NewWarnSeriesResponse(errors.New(w))) continue } - - select { - case s.recvCh <- r.GetSeries(): - continue - case <-ctx.Done(): - return - } - + s.recvCh <- rr.r.GetSeries() } }() return s } -// Next blocks until new message is received or stream is closed or operation is timed out. -func (s *streamSeriesSet) Next() (ok bool) { - ctx := s.ctx - timeoutMsg := fmt.Sprintf("failed to receive any data from %s", s.name) - - if s.responseTimeout != 0 { - timeoutMsg = fmt.Sprintf("failed to receive any data in %s from %s", s.responseTimeout.String(), s.name) +func (s *streamSeriesSet) handleErr(err error, done chan struct{}) { + defer close(done) + s.closeSeries() - timeoutCtx, done := context.WithTimeout(s.ctx, s.responseTimeout) - defer done() - ctx = timeoutCtx + if s.partialResponse { + level.Warn(s.logger).Log("err", err, "msg", "returning partial response") + s.warnCh.send(storepb.NewWarnSeriesResponse(err)) + return } + s.errMtx.Lock() + s.err = err + s.errMtx.Unlock() +} - select { - case s.currSeries, ok = <-s.recvCh: - return ok - case <-ctx.Done(): - // closeSeries to shutdown a goroutine in startStreamSeriesSet. - s.closeSeries() - - err := errors.Wrap(ctx.Err(), timeoutMsg) - if s.partialResponse { - level.Warn(s.logger).Log("err", err, "msg", "returning partial response") - s.warnCh.send(storepb.NewWarnSeriesResponse(err)) - return false - } - s.errMtx.Lock() - s.err = err - s.errMtx.Unlock() - - level.Warn(s.logger).Log("err", err, "msg", "partial response disabled; aborting request") - return false - } +// Next blocks until new message is received or stream is closed or operation is timed out. +func (s *streamSeriesSet) Next() (ok bool) { + s.currSeries, ok = <-s.recvCh + return ok } func (s *streamSeriesSet) At() ([]storepb.Label, []storepb.AggrChunk) { diff --git a/pkg/store/proxy_test.go b/pkg/store/proxy_test.go index 0e5af9492f1..1e49cce4564 100644 --- a/pkg/store/proxy_test.go +++ b/pkg/store/proxy_test.go @@ -5,8 +5,8 @@ package store import ( "context" + "fmt" "io" - "math" "os" "sort" "testing" @@ -49,6 +49,7 @@ func (c *testClient) String() string { func (c *testClient) Addr() string { return "testaddr" } + func TestProxyStore_Info(t *testing.T) { defer leaktest.CheckTimeout(t, 10*time.Second)() @@ -67,7 +68,7 @@ func TestProxyStore_Info(t *testing.T) { testutil.Equals(t, []storepb.LabelSet(nil), resp.LabelSets) testutil.Equals(t, storepb.StoreType_QUERY, resp.StoreType) testutil.Equals(t, int64(0), resp.MinTime) - testutil.Equals(t, int64(math.MaxInt64), resp.MaxTime) + testutil.Equals(t, int64(0), resp.MaxTime) } func TestProxyStore_Series(t *testing.T) { @@ -412,32 +413,6 @@ func TestProxyStore_Series(t *testing.T) { }, expectedErr: errors.New("fetch series for [name:\"ext\" value:\"1\" ] test: error!"), }, - { - title: "use no chunk to only get labels", - storeAPIs: []Client{ - &testClient{ - StoreClient: &mockedStoreAPI{ - RespSeries: []*storepb.SeriesResponse{ - storeSeriesResponse(t, labels.FromStrings("a", "a")), - }, - }, - minTime: 1, - maxTime: 300, - labelSets: []storepb.LabelSet{{Labels: []storepb.Label{{Name: "ext", Value: "1"}}}}, - }, - }, - req: &storepb.SeriesRequest{ - MinTime: 1, - MaxTime: 300, - Matchers: []storepb.LabelMatcher{{Name: "ext", Value: "1", Type: storepb.LabelMatcher_EQ}}, - SkipChunks: true, - }, - expectedSeries: []rawSeries{ - { - lset: []storepb.Label{{Name: "a", Value: "a"}}, - }, - }, - }, } { if ok := t.Run(tc.title, func(t *testing.T) { @@ -488,7 +463,7 @@ func TestProxyStore_SeriesSlowStores(t *testing.T) { expectedWarningsLen int }{ { - title: "partial response disabled one thanos query is slow to respond", + title: "partial response disabled; 1st store is slow, 2nd store is fast;", storeAPIs: []Client{ &testClient{ StoreClient: &mockedStoreAPI{ @@ -523,7 +498,198 @@ func TestProxyStore_SeriesSlowStores(t *testing.T) { expectedErr: errors.New("test: failed to receive any data in 4s from test: context deadline exceeded"), }, { - title: "partial response enabled one thanos query is slow to respond", + title: "partial response disabled; 1st store is fast, 2nd store is slow;", + storeAPIs: []Client{ + &testClient{ + StoreClient: &mockedStoreAPI{ + RespSeries: []*storepb.SeriesResponse{ + storepb.NewWarnSeriesResponse(errors.New("warning")), + storeSeriesResponse(t, labels.FromStrings("a", "b"), []sample{{1, 1}, {2, 2}, {3, 3}}), + }, + }, + labelSets: []storepb.LabelSet{{Labels: []storepb.Label{{Name: "ext", Value: "1"}}}}, + minTime: 1, + maxTime: 300, + }, + &testClient{ + StoreClient: &mockedStoreAPI{ + RespSeries: []*storepb.SeriesResponse{ + storepb.NewWarnSeriesResponse(errors.New("warning")), + storeSeriesResponse(t, labels.FromStrings("a", "b"), []sample{{1, 1}, {2, 2}, {3, 3}}), + }, + RespDuration: 10 * time.Second, + }, + labelSets: []storepb.LabelSet{{Labels: []storepb.Label{{Name: "ext", Value: "1"}}}}, + minTime: 1, + maxTime: 300, + }, + }, + req: &storepb.SeriesRequest{ + MinTime: 1, + MaxTime: 300, + Matchers: []storepb.LabelMatcher{{Name: "ext", Value: "1", Type: storepb.LabelMatcher_EQ}}, + PartialResponseDisabled: true, + }, + expectedErr: errors.New("test: failed to receive any data in 4s from test: context deadline exceeded"), + }, + { + title: "partial response disabled; 1st store is slow on 2nd series, 2nd store is fast;", + storeAPIs: []Client{ + &testClient{ + StoreClient: &mockedStoreAPI{ + RespSeries: []*storepb.SeriesResponse{ + storepb.NewWarnSeriesResponse(errors.New("warning")), + storeSeriesResponse(t, labels.FromStrings("a", "b"), []sample{{1, 1}, {2, 2}, {3, 3}}), + storeSeriesResponse(t, labels.FromStrings("a", "b"), []sample{{3, 1}, {4, 2}, {5, 3}}), + storeSeriesResponse(t, labels.FromStrings("a", "b"), []sample{{6, 1}, {7, 2}, {8, 3}}), + }, + RespDuration: 10 * time.Second, + SlowSeriesIndex: 2, + }, + labelSets: []storepb.LabelSet{{Labels: []storepb.Label{{Name: "ext", Value: "1"}}}}, + minTime: 1, + maxTime: 300, + }, + &testClient{ + StoreClient: &mockedStoreAPI{ + RespSeries: []*storepb.SeriesResponse{ + storepb.NewWarnSeriesResponse(errors.New("warning")), + storeSeriesResponse(t, labels.FromStrings("a", "b"), []sample{{1, 1}, {2, 2}, {3, 3}}), + }, + }, + labelSets: []storepb.LabelSet{{Labels: []storepb.Label{{Name: "ext", Value: "1"}}}}, + minTime: 1, + maxTime: 300, + }, + }, + req: &storepb.SeriesRequest{ + MinTime: 1, + MaxTime: 300, + Matchers: []storepb.LabelMatcher{{Name: "ext", Value: "1", Type: storepb.LabelMatcher_EQ}}, + PartialResponseDisabled: true, + }, + expectedErr: errors.New("test: failed to receive any data in 4s from test: context deadline exceeded"), + }, + { + title: "partial response disabled; 1st store is fast to respond, 2nd store is slow on 2nd series;", + storeAPIs: []Client{ + &testClient{ + StoreClient: &mockedStoreAPI{ + RespSeries: []*storepb.SeriesResponse{ + storepb.NewWarnSeriesResponse(errors.New("warning")), + storeSeriesResponse(t, labels.FromStrings("a", "b"), []sample{{1, 1}, {2, 2}, {3, 3}}), + storeSeriesResponse(t, labels.FromStrings("a", "b"), []sample{{3, 1}, {4, 2}, {5, 3}}), + storeSeriesResponse(t, labels.FromStrings("a", "b"), []sample{{6, 1}, {7, 2}, {8, 3}}), + }, + }, + labelSets: []storepb.LabelSet{{Labels: []storepb.Label{{Name: "ext", Value: "1"}}}}, + minTime: 1, + maxTime: 300, + }, + &testClient{ + StoreClient: &mockedStoreAPI{ + RespSeries: []*storepb.SeriesResponse{ + storepb.NewWarnSeriesResponse(errors.New("warning")), + storeSeriesResponse(t, labels.FromStrings("a", "b"), []sample{{1, 1}, {2, 2}, {3, 3}}), + }, + RespDuration: 10 * time.Second, + SlowSeriesIndex: 2, + }, + labelSets: []storepb.LabelSet{{Labels: []storepb.Label{{Name: "ext", Value: "1"}}}}, + minTime: 1, + maxTime: 300, + }, + }, + req: &storepb.SeriesRequest{ + MinTime: 1, + MaxTime: 300, + Matchers: []storepb.LabelMatcher{{Name: "ext", Value: "1", Type: storepb.LabelMatcher_EQ}}, + PartialResponseDisabled: true, + }, + expectedErr: errors.New("test: failed to receive any data in 4s from test: context deadline exceeded"), + }, + { + title: "partial response enabled; 1st store is slow to respond, 2nd store is fast;", + storeAPIs: []Client{ + &testClient{ + StoreClient: &mockedStoreAPI{ + RespSeries: []*storepb.SeriesResponse{ + storepb.NewWarnSeriesResponse(errors.New("warning")), + storeSeriesResponse(t, labels.FromStrings("a", "b"), []sample{{1, 1}, {2, 2}, {3, 3}}), + }, + RespDuration: 10 * time.Second, + }, + labelSets: []storepb.LabelSet{{Labels: []storepb.Label{{Name: "ext", Value: "1"}}}}, + minTime: 1, + maxTime: 300, + }, + &testClient{ + StoreClient: &mockedStoreAPI{ + RespSeries: []*storepb.SeriesResponse{ + storepb.NewWarnSeriesResponse(errors.New("warning")), + storeSeriesResponse(t, labels.FromStrings("b", "c"), []sample{{1, 1}, {2, 2}, {3, 3}}), + }, + }, + labelSets: []storepb.LabelSet{{Labels: []storepb.Label{{Name: "ext", Value: "1"}}}}, + minTime: 1, + maxTime: 300, + }, + }, + req: &storepb.SeriesRequest{ + MinTime: 1, + MaxTime: 300, + Matchers: []storepb.LabelMatcher{{Name: "ext", Value: "1", Type: storepb.LabelMatcher_EQ}}, + }, + expectedSeries: []rawSeries{ + { + lset: []storepb.Label{{Name: "b", Value: "c"}}, + chunks: [][]sample{{{1, 1}, {2, 2}, {3, 3}}}, + }, + }, + expectedWarningsLen: 2, + }, + { + title: "partial response enabled; 1st store is fast, 2nd store is slow;", + storeAPIs: []Client{ + &testClient{ + StoreClient: &mockedStoreAPI{ + RespSeries: []*storepb.SeriesResponse{ + storepb.NewWarnSeriesResponse(errors.New("warning")), + storeSeriesResponse(t, labels.FromStrings("a", "b"), []sample{{1, 1}, {2, 2}, {3, 3}}), + }, + }, + labelSets: []storepb.LabelSet{{Labels: []storepb.Label{{Name: "ext", Value: "1"}}}}, + minTime: 1, + maxTime: 300, + }, + &testClient{ + StoreClient: &mockedStoreAPI{ + RespSeries: []*storepb.SeriesResponse{ + storepb.NewWarnSeriesResponse(errors.New("warning")), + storeSeriesResponse(t, labels.FromStrings("b", "c"), []sample{{1, 1}, {2, 2}, {3, 3}}), + }, + RespDuration: 10 * time.Second, + }, + labelSets: []storepb.LabelSet{{Labels: []storepb.Label{{Name: "ext", Value: "1"}}}}, + minTime: 1, + maxTime: 300, + }, + }, + req: &storepb.SeriesRequest{ + MinTime: 1, + MaxTime: 300, + Matchers: []storepb.LabelMatcher{{Name: "ext", Value: "1", Type: storepb.LabelMatcher_EQ}}, + }, + expectedSeries: []rawSeries{ + { + lset: []storepb.Label{{Name: "a", Value: "b"}}, + chunks: [][]sample{{{1, 1}, {2, 2}, {3, 3}}}, + }, + }, + expectedWarningsLen: 2, + }, + { + title: "partial response enabled; 1st store is fast, 2-3 is slow, 4th is fast;", storeAPIs: []Client{ &testClient{ StoreClient: &mockedStoreAPI{ @@ -548,6 +714,29 @@ func TestProxyStore_SeriesSlowStores(t *testing.T) { minTime: 1, maxTime: 300, }, + &testClient{ + StoreClient: &mockedStoreAPI{ + RespSeries: []*storepb.SeriesResponse{ + storepb.NewWarnSeriesResponse(errors.New("warning")), + storeSeriesResponse(t, labels.FromStrings("c", "d"), []sample{{1, 1}, {2, 2}, {3, 3}}), + }, + RespDuration: 10 * time.Second, + }, + labelSets: []storepb.LabelSet{{Labels: []storepb.Label{{Name: "ext", Value: "1"}}}}, + minTime: 1, + maxTime: 300, + }, + &testClient{ + StoreClient: &mockedStoreAPI{ + RespSeries: []*storepb.SeriesResponse{ + storepb.NewWarnSeriesResponse(errors.New("warning")), + storeSeriesResponse(t, labels.FromStrings("d", "f"), []sample{{1, 1}, {2, 2}, {3, 3}}), + }, + }, + labelSets: []storepb.LabelSet{{Labels: []storepb.Label{{Name: "ext", Value: "1"}}}}, + minTime: 1, + maxTime: 300, + }, }, req: &storepb.SeriesRequest{ MinTime: 1, @@ -559,6 +748,135 @@ func TestProxyStore_SeriesSlowStores(t *testing.T) { lset: []storepb.Label{{Name: "a", Value: "b"}}, chunks: [][]sample{{{1, 1}, {2, 2}, {3, 3}}}, }, + { + lset: []storepb.Label{{Name: "d", Value: "f"}}, + chunks: [][]sample{{{1, 1}, {2, 2}, {3, 3}}}, + }, + }, + expectedWarningsLen: 4, + }, + { + title: "partial response enabled; 1st store is slow on 2nd series, 2nd store is fast", + storeAPIs: []Client{ + &testClient{ + StoreClient: &mockedStoreAPI{ + RespSeries: []*storepb.SeriesResponse{ + storepb.NewWarnSeriesResponse(errors.New("warning")), + storeSeriesResponse(t, labels.FromStrings("a", "b"), []sample{{1, 1}, {2, 2}, {3, 3}}), + storeSeriesResponse(t, labels.FromStrings("a", "b"), []sample{{4, 1}, {5, 2}, {6, 3}}), + storeSeriesResponse(t, labels.FromStrings("a", "b"), []sample{{7, 1}, {8, 2}, {9, 3}}), + }, + RespDuration: 10 * time.Second, + SlowSeriesIndex: 2, + }, + labelSets: []storepb.LabelSet{{Labels: []storepb.Label{{Name: "ext", Value: "1"}}}}, + minTime: 1, + maxTime: 300, + }, + &testClient{ + StoreClient: &mockedStoreAPI{ + RespSeries: []*storepb.SeriesResponse{ + storepb.NewWarnSeriesResponse(errors.New("warning")), + storeSeriesResponse(t, labels.FromStrings("b", "c"), []sample{{1, 1}, {2, 2}, {3, 3}}), + }, + }, + labelSets: []storepb.LabelSet{{Labels: []storepb.Label{{Name: "ext", Value: "1"}}}}, + minTime: 1, + maxTime: 300, + }, + }, + req: &storepb.SeriesRequest{ + MinTime: 1, + MaxTime: 300, + Matchers: []storepb.LabelMatcher{{Name: "ext", Value: "1", Type: storepb.LabelMatcher_EQ}}, + }, + expectedSeries: []rawSeries{ + { + lset: []storepb.Label{{Name: "a", Value: "b"}}, + chunks: [][]sample{{{1, 1}, {2, 2}, {3, 3}}}, + }, + { + lset: []storepb.Label{{Name: "b", Value: "c"}}, + chunks: [][]sample{{{1, 1}, {2, 2}, {3, 3}}}, + }, + }, + expectedWarningsLen: 3, + }, + { + title: "partial response disabled; all stores respond 3s", + storeAPIs: []Client{ + &testClient{ + StoreClient: &mockedStoreAPI{ + RespSeries: []*storepb.SeriesResponse{ + storeSeriesResponse(t, labels.FromStrings("a", "b"), []sample{{1, 1}, {2, 2}, {3, 3}}), + storeSeriesResponse(t, labels.FromStrings("a", "b"), []sample{{4, 1}, {5, 2}, {6, 3}}), + storeSeriesResponse(t, labels.FromStrings("a", "b"), []sample{{7, 1}, {8, 2}, {9, 3}}), + }, + RespDuration: 3 * time.Second, + }, + labelSets: []storepb.LabelSet{{Labels: []storepb.Label{{Name: "ext", Value: "1"}}}}, + minTime: 1, + maxTime: 300, + }, + }, + req: &storepb.SeriesRequest{ + MinTime: 1, + MaxTime: 300, + Matchers: []storepb.LabelMatcher{{Name: "ext", Value: "1", Type: storepb.LabelMatcher_EQ}}, + PartialResponseDisabled: true, + }, + expectedSeries: []rawSeries{ + { + lset: []storepb.Label{{Name: "a", Value: "b"}}, + chunks: [][]sample{{{1, 1}, {2, 2}, {3, 3}}}, + }, + }, + expectedErr: errors.New("test: failed to receive any data from test: context deadline exceeded"), + }, + { + title: "partial response enabled; all stores respond 3s", + storeAPIs: []Client{ + &testClient{ + StoreClient: &mockedStoreAPI{ + RespSeries: []*storepb.SeriesResponse{ + storeSeriesResponse(t, labels.FromStrings("a", "b"), []sample{{1, 1}, {2, 2}, {3, 3}}), + storeSeriesResponse(t, labels.FromStrings("a", "b"), []sample{{4, 1}, {5, 2}, {6, 3}}), + storeSeriesResponse(t, labels.FromStrings("a", "b"), []sample{{7, 1}, {8, 2}, {9, 3}}), + }, + RespDuration: 3 * time.Second, + }, + labelSets: []storepb.LabelSet{{Labels: []storepb.Label{{Name: "ext", Value: "1"}}}}, + minTime: 1, + maxTime: 300, + }, + &testClient{ + StoreClient: &mockedStoreAPI{ + RespSeries: []*storepb.SeriesResponse{ + storeSeriesResponse(t, labels.FromStrings("b", "c"), []sample{{1, 1}, {2, 2}, {3, 3}}), + storeSeriesResponse(t, labels.FromStrings("b", "c"), []sample{{4, 1}, {5, 2}, {6, 3}}), + storeSeriesResponse(t, labels.FromStrings("b", "c"), []sample{{7, 1}, {8, 2}, {9, 3}}), + }, + RespDuration: 3 * time.Second, + }, + labelSets: []storepb.LabelSet{{Labels: []storepb.Label{{Name: "ext", Value: "1"}}}}, + minTime: 1, + maxTime: 300, + }, + }, + req: &storepb.SeriesRequest{ + MinTime: 1, + MaxTime: 300, + Matchers: []storepb.LabelMatcher{{Name: "ext", Value: "1", Type: storepb.LabelMatcher_EQ}}, + }, + expectedSeries: []rawSeries{ + { + lset: []storepb.Label{{Name: "a", Value: "b"}}, + chunks: [][]sample{{{1, 1}, {2, 2}, {3, 3}}}, + }, + { + lset: []storepb.Label{{Name: "b", Value: "c"}}, + chunks: [][]sample{{{1, 1}, {2, 2}, {3, 3}}}, + }, }, expectedWarningsLen: 2, }, @@ -572,9 +890,13 @@ func TestProxyStore_SeriesSlowStores(t *testing.T) { 4*time.Second, ) - s := newStoreSeriesServer(context.Background()) + ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second) + defer cancel() + s := newStoreSeriesServer(ctx) + t0 := time.Now() err := q.Series(tc.req, s) + elapsedTime := time.Since(t0) if tc.expectedErr != nil { testutil.NotOk(t, err) testutil.Equals(t, tc.expectedErr.Error(), err.Error()) @@ -585,6 +907,8 @@ func TestProxyStore_SeriesSlowStores(t *testing.T) { seriesEquals(t, tc.expectedSeries, s.SeriesSet) testutil.Equals(t, tc.expectedWarningsLen, len(s.Warnings), "got %v", s.Warnings) + + testutil.Assert(t, elapsedTime < 5010*time.Millisecond, fmt.Sprintf("Request has taken %f, expected: <%d, it seems that responseTimeout doesn't work properly.", elapsedTime.Seconds(), 5)) }); !ok { return } @@ -985,6 +1309,8 @@ type storeSeriesServer struct { SeriesSet []storepb.Series Warnings []string + + Size int64 } func newStoreSeriesServer(ctx context.Context) *storeSeriesServer { @@ -992,6 +1318,8 @@ func newStoreSeriesServer(ctx context.Context) *storeSeriesServer { } func (s *storeSeriesServer) Send(r *storepb.SeriesResponse) error { + s.Size += int64(r.Size()) + if r.GetWarning() != "" { s.Warnings = append(s.Warnings, r.GetWarning()) return nil @@ -1015,6 +1343,8 @@ type mockedStoreAPI struct { RespLabelNames *storepb.LabelNamesResponse RespError error RespDuration time.Duration + // Index of series in store to slow response. + SlowSeriesIndex int LastSeriesReq *storepb.SeriesRequest LastLabelValuesReq *storepb.LabelValuesRequest @@ -1028,7 +1358,7 @@ func (s *mockedStoreAPI) Info(ctx context.Context, req *storepb.InfoRequest, _ . func (s *mockedStoreAPI) Series(ctx context.Context, req *storepb.SeriesRequest, _ ...grpc.CallOption) (storepb.Store_SeriesClient, error) { s.LastSeriesReq = req - return &StoreSeriesClient{ctx: ctx, respSet: s.RespSeries, respDur: s.RespDuration}, s.RespError + return &StoreSeriesClient{ctx: ctx, respSet: s.RespSeries, respDur: s.RespDuration, slowSeriesIndex: s.SlowSeriesIndex}, s.RespError } func (s *mockedStoreAPI) LabelNames(ctx context.Context, req *storepb.LabelNamesRequest, _ ...grpc.CallOption) (*storepb.LabelNamesResponse, error) { @@ -1047,14 +1377,17 @@ func (s *mockedStoreAPI) LabelValues(ctx context.Context, req *storepb.LabelValu type StoreSeriesClient struct { // This field just exist to pseudo-implement the unused methods of the interface. storepb.Store_SeriesClient - ctx context.Context - i int - respSet []*storepb.SeriesResponse - respDur time.Duration + ctx context.Context + i int + respSet []*storepb.SeriesResponse + respDur time.Duration + slowSeriesIndex int } func (c *StoreSeriesClient) Recv() (*storepb.SeriesResponse, error) { - time.Sleep(c.respDur) + if c.respDur != 0 && (c.slowSeriesIndex == c.i || c.slowSeriesIndex == 0) { + time.Sleep(c.respDur) + } if c.i >= len(c.respSet) { return nil, io.EOF diff --git a/pkg/store/storepb/custom.go b/pkg/store/storepb/custom.go index ea13089be43..ae5a099e6ed 100644 --- a/pkg/store/storepb/custom.go +++ b/pkg/store/storepb/custom.go @@ -5,8 +5,10 @@ package storepb import ( "strings" + "unsafe" "github.com/prometheus/prometheus/pkg/labels" + "github.com/thanos-io/thanos/pkg/store/storepb/prompb" ) var PartialResponseStrategyValues = func() []string { @@ -166,15 +168,57 @@ func (s *mergedSeriesSet) Next() bool { return true } +// LabelsToPromLabels converts Thanos proto labels to Prometheus labels in type safe manner. func LabelsToPromLabels(lset []Label) labels.Labels { ret := make(labels.Labels, len(lset)) for i, l := range lset { ret[i] = labels.Label{Name: l.Name, Value: l.Value} } + return ret +} + +// LabelsToPromLabelsUnsafe converts Thanos proto labels to Prometheus labels in type unsafe manner. +// It reuses the same memory. Caller should abort using passed []Labels. +// +// NOTE: This depends on order of struct fields etc, so use with extreme care. +func LabelsToPromLabelsUnsafe(lset []Label) labels.Labels { + return *(*[]labels.Label)(unsafe.Pointer(&lset)) +} +// PromLabelsToLabels converts Prometheus labels to Thanos proto labels in type safe manner. +func PromLabelsToLabels(lset labels.Labels) []Label { + ret := make([]Label, len(lset)) + for i, l := range lset { + ret[i] = Label{Name: l.Name, Value: l.Value} + } return ret } +// PromLabelsToLabelsUnsafe converts Prometheus labels to Thanos proto labels in type unsafe manner. +// It reuses the same memory. Caller should abort using passed labels.Labels. +// +// // NOTE: This depends on order of struct fields etc, so use with extreme care. +func PromLabelsToLabelsUnsafe(lset labels.Labels) []Label { + return *(*[]Label)(unsafe.Pointer(&lset)) +} + +// PrompbLabelsToLabels converts Prometheus labels to Thanos proto labels in type safe manner. +func PrompbLabelsToLabels(lset []prompb.Label) []Label { + ret := make([]Label, len(lset)) + for i, l := range lset { + ret[i] = Label{Name: l.Name, Value: l.Value} + } + return ret +} + +// PrompbLabelsToLabelsUnsafe converts Prometheus proto labels to Thanos proto labels in type unsafe manner. +// It reuses the same memory. Caller should abort using passed labels.Labels. +// +// // NOTE: This depends on order of struct fields etc, so use with extreme care. +func PrompbLabelsToLabelsUnsafe(lset []prompb.Label) []Label { + return *(*[]Label)(unsafe.Pointer(&lset)) +} + func LabelsToString(lset []Label) string { var s []string for _, l := range lset { diff --git a/pkg/store/storepb/custom_test.go b/pkg/store/storepb/custom_test.go index fe05a44b77e..cbeaed69500 100644 --- a/pkg/store/storepb/custom_test.go +++ b/pkg/store/storepb/custom_test.go @@ -4,14 +4,15 @@ package storepb import ( - "errors" "fmt" "path/filepath" "sort" "testing" + "github.com/pkg/errors" "github.com/prometheus/prometheus/pkg/labels" "github.com/prometheus/prometheus/tsdb/chunkenc" + "github.com/thanos-io/thanos/pkg/store/storepb/prompb" "github.com/thanos-io/thanos/pkg/testutil" ) @@ -328,3 +329,58 @@ func BenchmarkMergedSeriesSet(b *testing.B) { } } } + +var testLsetMap = map[string]string{ + "a": "1", + "c": "2", + "d": "dsfsdfsdfsdf123414234", + "124134235423534534ffdasdfsf": "1", + "": "", + "b": "", +} + +func TestPromLabelsToLabelsUnsafe(t *testing.T) { + testutil.Equals(t, PromLabelsToLabels(labels.FromMap(testLsetMap)), PromLabelsToLabelsUnsafe(labels.FromMap(testLsetMap))) +} + +func TestLabelsToPromLabelsUnsafe(t *testing.T) { + testutil.Equals(t, labels.FromMap(testLsetMap), LabelsToPromLabels(PromLabelsToLabels(labels.FromMap(testLsetMap)))) + testutil.Equals(t, labels.FromMap(testLsetMap), LabelsToPromLabelsUnsafe(PromLabelsToLabels(labels.FromMap(testLsetMap)))) +} + +func TestPrompbLabelsToLabelsUnsafe(t *testing.T) { + var pb []prompb.Label + for _, l := range labels.FromMap(testLsetMap) { + pb = append(pb, prompb.Label{Name: l.Name, Value: l.Value}) + } + testutil.Equals(t, PromLabelsToLabels(labels.FromMap(testLsetMap)), PrompbLabelsToLabels(pb)) + testutil.Equals(t, PromLabelsToLabels(labels.FromMap(testLsetMap)), PrompbLabelsToLabelsUnsafe(pb)) +} + +func BenchmarkUnsafeVSSafeLabelsConversion(b *testing.B) { + const ( + fmtLbl = "%07daaaaaaaaaabbbbbbbbbbccccccccccdddddddddd" + num = 10000 + ) + lbls := make([]labels.Label, 0, num) + for i := 0; i < num; i++ { + lbls = append(lbls, labels.Label{Name: fmt.Sprintf(fmtLbl, i), Value: fmt.Sprintf(fmtLbl, i)}) + } + + var converted labels.Labels + b.Run("safe", func(b *testing.B) { + b.ResetTimer() + for i := 0; i < b.N; i++ { + converted = LabelsToPromLabels(PromLabelsToLabels(lbls)) + } + }) + testutil.Equals(b, num, len(converted)) + b.Run("unsafe", func(b *testing.B) { + b.ResetTimer() + for i := 0; i < b.N; i++ { + converted = LabelsToPromLabelsUnsafe(PromLabelsToLabelsUnsafe(lbls)) + } + }) + testutil.Equals(b, num, len(converted)) + +} diff --git a/pkg/store/storepb/prompb/README.md b/pkg/store/storepb/prompb/README.md new file mode 100644 index 00000000000..b68a8c8ba42 --- /dev/null +++ b/pkg/store/storepb/prompb/README.md @@ -0,0 +1,11 @@ +NOTE(bwplotka): This excerpt of "github.com/prometheus/prometheus/prompb" reconstructed to avoid XXX fields for unsafe conversion to safe allocs. + +The compiled protobufs are version controlled and you won't normally need to +re-compile them when building Prometheus. + +If however you have modified the defs and do need to re-compile, run +`make proto` from the parent dir. + +In order for the script to run, you'll need `protoc` (version 3.5.1) in your +PATH. + diff --git a/pkg/store/storepb/prompb/remote.pb.go b/pkg/store/storepb/prompb/remote.pb.go new file mode 100644 index 00000000000..83902b37be8 --- /dev/null +++ b/pkg/store/storepb/prompb/remote.pb.go @@ -0,0 +1,1590 @@ +// Code generated by protoc-gen-gogo. DO NOT EDIT. +// source: remote.proto + +package prompb + +import ( + fmt "fmt" + io "io" + math "math" + math_bits "math/bits" + + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" +) + +// Reference imports to suppress errors if they are not otherwise used. +var _ = proto.Marshal +var _ = fmt.Errorf +var _ = math.Inf + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the proto package it is being compiled against. +// A compilation error at this line likely means your copy of the +// proto package needs to be updated. +const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package + +type ReadRequest_ResponseType int32 + +const ( + // Server will return a single ReadResponse message with matched series that includes list of raw samples. + // It's recommended to use streamed response types instead. + // + // Response headers: + // Content-Type: "application/x-protobuf" + // Content-Encoding: "snappy" + ReadRequest_SAMPLES ReadRequest_ResponseType = 0 + // Server will stream a delimited ChunkedReadResponse message that contains XOR encoded chunks for a single series. + // Each message is following varint size and fixed size bigendian uint32 for CRC32 Castagnoli checksum. + // + // Response headers: + // Content-Type: "application/x-streamed-protobuf; proto=prometheus.ChunkedReadResponse" + // Content-Encoding: "" + ReadRequest_STREAMED_XOR_CHUNKS ReadRequest_ResponseType = 1 +) + +var ReadRequest_ResponseType_name = map[int32]string{ + 0: "SAMPLES", + 1: "STREAMED_XOR_CHUNKS", +} + +var ReadRequest_ResponseType_value = map[string]int32{ + "SAMPLES": 0, + "STREAMED_XOR_CHUNKS": 1, +} + +func (x ReadRequest_ResponseType) String() string { + return proto.EnumName(ReadRequest_ResponseType_name, int32(x)) +} + +func (ReadRequest_ResponseType) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_eefc82927d57d89b, []int{1, 0} +} + +type WriteRequest struct { + Timeseries []TimeSeries `protobuf:"bytes,1,rep,name=timeseries,proto3" json:"timeseries"` +} + +func (m *WriteRequest) Reset() { *m = WriteRequest{} } +func (m *WriteRequest) String() string { return proto.CompactTextString(m) } +func (*WriteRequest) ProtoMessage() {} +func (*WriteRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_eefc82927d57d89b, []int{0} +} +func (m *WriteRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *WriteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_WriteRequest.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *WriteRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_WriteRequest.Merge(m, src) +} +func (m *WriteRequest) XXX_Size() int { + return m.Size() +} +func (m *WriteRequest) XXX_DiscardUnknown() { + xxx_messageInfo_WriteRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_WriteRequest proto.InternalMessageInfo + +func (m *WriteRequest) GetTimeseries() []TimeSeries { + if m != nil { + return m.Timeseries + } + return nil +} + +// ReadRequest represents a remote read request. +type ReadRequest struct { + Queries []*Query `protobuf:"bytes,1,rep,name=queries,proto3" json:"queries,omitempty"` + // accepted_response_types allows negotiating the content type of the response. + // + // Response types are taken from the list in the FIFO order. If no response type in `accepted_response_types` is + // implemented by server, error is returned. + // For request that do not contain `accepted_response_types` field the SAMPLES response type will be used. + AcceptedResponseTypes []ReadRequest_ResponseType `protobuf:"varint,2,rep,packed,name=accepted_response_types,json=acceptedResponseTypes,proto3,enum=prometheus_copy.ReadRequest_ResponseType" json:"accepted_response_types,omitempty"` +} + +func (m *ReadRequest) Reset() { *m = ReadRequest{} } +func (m *ReadRequest) String() string { return proto.CompactTextString(m) } +func (*ReadRequest) ProtoMessage() {} +func (*ReadRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_eefc82927d57d89b, []int{1} +} +func (m *ReadRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *ReadRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_ReadRequest.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *ReadRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ReadRequest.Merge(m, src) +} +func (m *ReadRequest) XXX_Size() int { + return m.Size() +} +func (m *ReadRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ReadRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_ReadRequest proto.InternalMessageInfo + +func (m *ReadRequest) GetQueries() []*Query { + if m != nil { + return m.Queries + } + return nil +} + +func (m *ReadRequest) GetAcceptedResponseTypes() []ReadRequest_ResponseType { + if m != nil { + return m.AcceptedResponseTypes + } + return nil +} + +// ReadResponse is a response when response_type equals SAMPLES. +type ReadResponse struct { + // In same order as the request's queries. + Results []*QueryResult `protobuf:"bytes,1,rep,name=results,proto3" json:"results,omitempty"` +} + +func (m *ReadResponse) Reset() { *m = ReadResponse{} } +func (m *ReadResponse) String() string { return proto.CompactTextString(m) } +func (*ReadResponse) ProtoMessage() {} +func (*ReadResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_eefc82927d57d89b, []int{2} +} +func (m *ReadResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *ReadResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_ReadResponse.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *ReadResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ReadResponse.Merge(m, src) +} +func (m *ReadResponse) XXX_Size() int { + return m.Size() +} +func (m *ReadResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ReadResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_ReadResponse proto.InternalMessageInfo + +func (m *ReadResponse) GetResults() []*QueryResult { + if m != nil { + return m.Results + } + return nil +} + +type Query struct { + StartTimestampMs int64 `protobuf:"varint,1,opt,name=start_timestamp_ms,json=startTimestampMs,proto3" json:"start_timestamp_ms,omitempty"` + EndTimestampMs int64 `protobuf:"varint,2,opt,name=end_timestamp_ms,json=endTimestampMs,proto3" json:"end_timestamp_ms,omitempty"` + Matchers []*LabelMatcher `protobuf:"bytes,3,rep,name=matchers,proto3" json:"matchers,omitempty"` + Hints *ReadHints `protobuf:"bytes,4,opt,name=hints,proto3" json:"hints,omitempty"` +} + +func (m *Query) Reset() { *m = Query{} } +func (m *Query) String() string { return proto.CompactTextString(m) } +func (*Query) ProtoMessage() {} +func (*Query) Descriptor() ([]byte, []int) { + return fileDescriptor_eefc82927d57d89b, []int{3} +} +func (m *Query) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *Query) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_Query.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *Query) XXX_Merge(src proto.Message) { + xxx_messageInfo_Query.Merge(m, src) +} +func (m *Query) XXX_Size() int { + return m.Size() +} +func (m *Query) XXX_DiscardUnknown() { + xxx_messageInfo_Query.DiscardUnknown(m) +} + +var xxx_messageInfo_Query proto.InternalMessageInfo + +func (m *Query) GetStartTimestampMs() int64 { + if m != nil { + return m.StartTimestampMs + } + return 0 +} + +func (m *Query) GetEndTimestampMs() int64 { + if m != nil { + return m.EndTimestampMs + } + return 0 +} + +func (m *Query) GetMatchers() []*LabelMatcher { + if m != nil { + return m.Matchers + } + return nil +} + +func (m *Query) GetHints() *ReadHints { + if m != nil { + return m.Hints + } + return nil +} + +type QueryResult struct { + // Samples within a time series must be ordered by time. + Timeseries []*TimeSeries `protobuf:"bytes,1,rep,name=timeseries,proto3" json:"timeseries,omitempty"` +} + +func (m *QueryResult) Reset() { *m = QueryResult{} } +func (m *QueryResult) String() string { return proto.CompactTextString(m) } +func (*QueryResult) ProtoMessage() {} +func (*QueryResult) Descriptor() ([]byte, []int) { + return fileDescriptor_eefc82927d57d89b, []int{4} +} +func (m *QueryResult) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *QueryResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_QueryResult.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *QueryResult) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryResult.Merge(m, src) +} +func (m *QueryResult) XXX_Size() int { + return m.Size() +} +func (m *QueryResult) XXX_DiscardUnknown() { + xxx_messageInfo_QueryResult.DiscardUnknown(m) +} + +var xxx_messageInfo_QueryResult proto.InternalMessageInfo + +func (m *QueryResult) GetTimeseries() []*TimeSeries { + if m != nil { + return m.Timeseries + } + return nil +} + +// ChunkedReadResponse is a response when response_type equals STREAMED_XOR_CHUNKS. +// We strictly stream full series after series, optionally split by time. This means that a single frame can contain +// partition of the single series, but once a new series is started to be streamed it means that no more chunks will +// be sent for previous one. +type ChunkedReadResponse struct { + ChunkedSeries []*ChunkedSeries `protobuf:"bytes,1,rep,name=chunked_series,json=chunkedSeries,proto3" json:"chunked_series,omitempty"` + // query_index represents an index of the query from ReadRequest.queries these chunks relates to. + QueryIndex int64 `protobuf:"varint,2,opt,name=query_index,json=queryIndex,proto3" json:"query_index,omitempty"` +} + +func (m *ChunkedReadResponse) Reset() { *m = ChunkedReadResponse{} } +func (m *ChunkedReadResponse) String() string { return proto.CompactTextString(m) } +func (*ChunkedReadResponse) ProtoMessage() {} +func (*ChunkedReadResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_eefc82927d57d89b, []int{5} +} +func (m *ChunkedReadResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *ChunkedReadResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_ChunkedReadResponse.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *ChunkedReadResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ChunkedReadResponse.Merge(m, src) +} +func (m *ChunkedReadResponse) XXX_Size() int { + return m.Size() +} +func (m *ChunkedReadResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ChunkedReadResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_ChunkedReadResponse proto.InternalMessageInfo + +func (m *ChunkedReadResponse) GetChunkedSeries() []*ChunkedSeries { + if m != nil { + return m.ChunkedSeries + } + return nil +} + +func (m *ChunkedReadResponse) GetQueryIndex() int64 { + if m != nil { + return m.QueryIndex + } + return 0 +} + +func init() { + proto.RegisterEnum("prometheus_copy.ReadRequest_ResponseType", ReadRequest_ResponseType_name, ReadRequest_ResponseType_value) + proto.RegisterType((*WriteRequest)(nil), "prometheus_copy.WriteRequest") + proto.RegisterType((*ReadRequest)(nil), "prometheus_copy.ReadRequest") + proto.RegisterType((*ReadResponse)(nil), "prometheus_copy.ReadResponse") + proto.RegisterType((*Query)(nil), "prometheus_copy.Query") + proto.RegisterType((*QueryResult)(nil), "prometheus_copy.QueryResult") + proto.RegisterType((*ChunkedReadResponse)(nil), "prometheus_copy.ChunkedReadResponse") +} + +func init() { proto.RegisterFile("remote.proto", fileDescriptor_eefc82927d57d89b) } + +var fileDescriptor_eefc82927d57d89b = []byte{ + // 486 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x93, 0xcd, 0x6e, 0xd3, 0x40, + 0x10, 0x80, 0xed, 0xa6, 0x6d, 0xd0, 0x38, 0x84, 0x68, 0x0b, 0x34, 0x0a, 0xe0, 0x46, 0x3e, 0x19, + 0x09, 0x85, 0x2a, 0x20, 0x24, 0xc4, 0x29, 0x2d, 0x41, 0x05, 0x1a, 0xa0, 0xeb, 0x20, 0x10, 0x17, + 0xcb, 0xb1, 0x47, 0x8d, 0x45, 0xfd, 0xd3, 0xdd, 0xb5, 0x84, 0x0f, 0xbc, 0x03, 0x8f, 0xd5, 0x03, + 0x87, 0x1e, 0x7b, 0x42, 0x28, 0x79, 0x11, 0xe4, 0x75, 0x1c, 0x6d, 0x08, 0x1c, 0x7a, 0xdb, 0xcc, + 0x7c, 0xf3, 0xed, 0xce, 0x64, 0x0c, 0x0d, 0x86, 0x51, 0x22, 0xb0, 0x97, 0xb2, 0x44, 0x24, 0xe4, + 0x56, 0xca, 0x92, 0x08, 0xc5, 0x14, 0x33, 0xee, 0xfa, 0x49, 0x9a, 0x77, 0x0c, 0x91, 0xa7, 0xc8, + 0xcb, 0x6c, 0xe7, 0xf6, 0x69, 0x72, 0x9a, 0xc8, 0xe3, 0xe3, 0xe2, 0x54, 0x46, 0xad, 0x13, 0x68, + 0x7c, 0x62, 0xa1, 0x40, 0x8a, 0xe7, 0x19, 0x72, 0x41, 0x06, 0x00, 0x22, 0x8c, 0x90, 0x23, 0x0b, + 0x91, 0xb7, 0xf5, 0x6e, 0xcd, 0x36, 0xfa, 0xf7, 0x7a, 0x7f, 0x89, 0x7b, 0xe3, 0x30, 0x42, 0x47, + 0x22, 0x07, 0x9b, 0x17, 0xbf, 0xf6, 0x34, 0xaa, 0x14, 0x59, 0x57, 0x3a, 0x18, 0x14, 0xbd, 0xa0, + 0x52, 0xee, 0x43, 0xfd, 0x3c, 0x53, 0x7d, 0x77, 0xd7, 0x7c, 0x27, 0x19, 0xb2, 0x9c, 0x56, 0x18, + 0xf1, 0x60, 0xd7, 0xf3, 0x7d, 0x4c, 0x05, 0x06, 0x2e, 0x43, 0x9e, 0x26, 0x31, 0x47, 0x57, 0xf6, + 0xd2, 0xde, 0xe8, 0xd6, 0xec, 0x66, 0xff, 0xe1, 0x9a, 0x41, 0xb9, 0xb0, 0x47, 0x17, 0x25, 0xe3, + 0x3c, 0x45, 0x7a, 0xa7, 0x32, 0xa9, 0x51, 0x6e, 0x3d, 0x85, 0x86, 0x1a, 0x20, 0x06, 0xd4, 0x9d, + 0xc1, 0xe8, 0xc3, 0xf1, 0xd0, 0x69, 0x69, 0x64, 0x17, 0x76, 0x9c, 0x31, 0x1d, 0x0e, 0x46, 0xc3, + 0x97, 0xee, 0xe7, 0xf7, 0xd4, 0x3d, 0x3c, 0xfa, 0xf8, 0xee, 0xad, 0xd3, 0xd2, 0xad, 0x57, 0x45, + 0x95, 0xb7, 0x54, 0x91, 0x67, 0x50, 0x67, 0xc8, 0xb3, 0x33, 0x51, 0xb5, 0x76, 0xff, 0x3f, 0xad, + 0x49, 0x88, 0x56, 0xb0, 0xf5, 0x53, 0x87, 0x2d, 0x99, 0x20, 0x8f, 0x80, 0x70, 0xe1, 0x31, 0xe1, + 0xca, 0x01, 0x0a, 0x2f, 0x4a, 0xdd, 0xa8, 0x90, 0xe9, 0x76, 0x8d, 0xb6, 0x64, 0x66, 0x5c, 0x25, + 0x46, 0x9c, 0xd8, 0xd0, 0xc2, 0x38, 0x58, 0x65, 0x37, 0x24, 0xdb, 0xc4, 0x38, 0x50, 0xc9, 0xe7, + 0x70, 0x23, 0xf2, 0x84, 0x3f, 0x45, 0xc6, 0xdb, 0x35, 0xf9, 0xb4, 0x07, 0x6b, 0x4f, 0x3b, 0xf6, + 0x26, 0x78, 0x36, 0x2a, 0x29, 0xba, 0xc4, 0xc9, 0x3e, 0x6c, 0x4d, 0xc3, 0x58, 0xf0, 0xf6, 0x66, + 0x57, 0xb7, 0x8d, 0x7e, 0xe7, 0x9f, 0xb3, 0x3e, 0x2a, 0x08, 0x5a, 0x82, 0xd6, 0x1b, 0x30, 0x94, + 0x36, 0xc9, 0x8b, 0x6b, 0xee, 0xd0, 0xca, 0xf6, 0x7c, 0x87, 0x9d, 0xc3, 0x69, 0x16, 0x7f, 0x2d, + 0xfe, 0x30, 0x65, 0xd2, 0x43, 0x68, 0xfa, 0x65, 0xd8, 0x5d, 0xf1, 0x9a, 0x6b, 0xde, 0x45, 0xf5, + 0x42, 0x7d, 0xd3, 0x57, 0x7f, 0x92, 0x3d, 0x30, 0x8a, 0x25, 0xcb, 0xdd, 0x30, 0x0e, 0xf0, 0xdb, + 0x62, 0x76, 0x20, 0x43, 0xaf, 0x8b, 0xc8, 0x41, 0xf7, 0x62, 0x66, 0xea, 0x97, 0x33, 0x53, 0xff, + 0x3d, 0x33, 0xf5, 0x1f, 0x73, 0x53, 0xbb, 0x9c, 0x9b, 0xda, 0xd5, 0xdc, 0xd4, 0xbe, 0x6c, 0x17, + 0x17, 0xa5, 0x93, 0xc9, 0xb6, 0xfc, 0x70, 0x9e, 0xfc, 0x09, 0x00, 0x00, 0xff, 0xff, 0x4b, 0x5c, + 0x76, 0xc3, 0x7c, 0x03, 0x00, 0x00, +} + +func (m *WriteRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *WriteRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *WriteRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Timeseries) > 0 { + for iNdEx := len(m.Timeseries) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Timeseries[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintRemote(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + +func (m *ReadRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *ReadRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *ReadRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.AcceptedResponseTypes) > 0 { + dAtA2 := make([]byte, len(m.AcceptedResponseTypes)*10) + var j1 int + for _, num := range m.AcceptedResponseTypes { + for num >= 1<<7 { + dAtA2[j1] = uint8(uint64(num)&0x7f | 0x80) + num >>= 7 + j1++ + } + dAtA2[j1] = uint8(num) + j1++ + } + i -= j1 + copy(dAtA[i:], dAtA2[:j1]) + i = encodeVarintRemote(dAtA, i, uint64(j1)) + i-- + dAtA[i] = 0x12 + } + if len(m.Queries) > 0 { + for iNdEx := len(m.Queries) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Queries[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintRemote(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + +func (m *ReadResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *ReadResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *ReadResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Results) > 0 { + for iNdEx := len(m.Results) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Results[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintRemote(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + +func (m *Query) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *Query) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Query) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Hints != nil { + { + size, err := m.Hints.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintRemote(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + } + if len(m.Matchers) > 0 { + for iNdEx := len(m.Matchers) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Matchers[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintRemote(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + } + if m.EndTimestampMs != 0 { + i = encodeVarintRemote(dAtA, i, uint64(m.EndTimestampMs)) + i-- + dAtA[i] = 0x10 + } + if m.StartTimestampMs != 0 { + i = encodeVarintRemote(dAtA, i, uint64(m.StartTimestampMs)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func (m *QueryResult) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *QueryResult) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *QueryResult) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Timeseries) > 0 { + for iNdEx := len(m.Timeseries) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Timeseries[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintRemote(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + +func (m *ChunkedReadResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *ChunkedReadResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *ChunkedReadResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.QueryIndex != 0 { + i = encodeVarintRemote(dAtA, i, uint64(m.QueryIndex)) + i-- + dAtA[i] = 0x10 + } + if len(m.ChunkedSeries) > 0 { + for iNdEx := len(m.ChunkedSeries) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.ChunkedSeries[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintRemote(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + +func encodeVarintRemote(dAtA []byte, offset int, v uint64) int { + offset -= sovRemote(v) + base := offset + for v >= 1<<7 { + dAtA[offset] = uint8(v&0x7f | 0x80) + v >>= 7 + offset++ + } + dAtA[offset] = uint8(v) + return base +} +func (m *WriteRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Timeseries) > 0 { + for _, e := range m.Timeseries { + l = e.Size() + n += 1 + l + sovRemote(uint64(l)) + } + } + return n +} + +func (m *ReadRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Queries) > 0 { + for _, e := range m.Queries { + l = e.Size() + n += 1 + l + sovRemote(uint64(l)) + } + } + if len(m.AcceptedResponseTypes) > 0 { + l = 0 + for _, e := range m.AcceptedResponseTypes { + l += sovRemote(uint64(e)) + } + n += 1 + sovRemote(uint64(l)) + l + } + return n +} + +func (m *ReadResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Results) > 0 { + for _, e := range m.Results { + l = e.Size() + n += 1 + l + sovRemote(uint64(l)) + } + } + return n +} + +func (m *Query) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.StartTimestampMs != 0 { + n += 1 + sovRemote(uint64(m.StartTimestampMs)) + } + if m.EndTimestampMs != 0 { + n += 1 + sovRemote(uint64(m.EndTimestampMs)) + } + if len(m.Matchers) > 0 { + for _, e := range m.Matchers { + l = e.Size() + n += 1 + l + sovRemote(uint64(l)) + } + } + if m.Hints != nil { + l = m.Hints.Size() + n += 1 + l + sovRemote(uint64(l)) + } + return n +} + +func (m *QueryResult) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Timeseries) > 0 { + for _, e := range m.Timeseries { + l = e.Size() + n += 1 + l + sovRemote(uint64(l)) + } + } + return n +} + +func (m *ChunkedReadResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.ChunkedSeries) > 0 { + for _, e := range m.ChunkedSeries { + l = e.Size() + n += 1 + l + sovRemote(uint64(l)) + } + } + if m.QueryIndex != 0 { + n += 1 + sovRemote(uint64(m.QueryIndex)) + } + return n +} + +func sovRemote(x uint64) (n int) { + return (math_bits.Len64(x|1) + 6) / 7 +} +func sozRemote(x uint64) (n int) { + return sovRemote(uint64((x << 1) ^ uint64((int64(x) >> 63)))) +} +func (m *WriteRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: WriteRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: WriteRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Timeseries", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRemote + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthRemote + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Timeseries = append(m.Timeseries, TimeSeries{}) + if err := m.Timeseries[len(m.Timeseries)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipRemote(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthRemote + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthRemote + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *ReadRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ReadRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ReadRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Queries", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRemote + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthRemote + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Queries = append(m.Queries, &Query{}) + if err := m.Queries[len(m.Queries)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType == 0 { + var v ReadRequest_ResponseType + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= ReadRequest_ResponseType(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.AcceptedResponseTypes = append(m.AcceptedResponseTypes, v) + } else if wireType == 2 { + var packedLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + packedLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if packedLen < 0 { + return ErrInvalidLengthRemote + } + postIndex := iNdEx + packedLen + if postIndex < 0 { + return ErrInvalidLengthRemote + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + var elementCount int + if elementCount != 0 && len(m.AcceptedResponseTypes) == 0 { + m.AcceptedResponseTypes = make([]ReadRequest_ResponseType, 0, elementCount) + } + for iNdEx < postIndex { + var v ReadRequest_ResponseType + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= ReadRequest_ResponseType(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.AcceptedResponseTypes = append(m.AcceptedResponseTypes, v) + } + } else { + return fmt.Errorf("proto: wrong wireType = %d for field AcceptedResponseTypes", wireType) + } + default: + iNdEx = preIndex + skippy, err := skipRemote(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthRemote + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthRemote + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *ReadResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ReadResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ReadResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Results", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRemote + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthRemote + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Results = append(m.Results, &QueryResult{}) + if err := m.Results[len(m.Results)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipRemote(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthRemote + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthRemote + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *Query) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: Query: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: Query: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field StartTimestampMs", wireType) + } + m.StartTimestampMs = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.StartTimestampMs |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field EndTimestampMs", wireType) + } + m.EndTimestampMs = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.EndTimestampMs |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Matchers", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRemote + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthRemote + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Matchers = append(m.Matchers, &LabelMatcher{}) + if err := m.Matchers[len(m.Matchers)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Hints", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRemote + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthRemote + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Hints == nil { + m.Hints = &ReadHints{} + } + if err := m.Hints.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipRemote(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthRemote + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthRemote + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *QueryResult) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: QueryResult: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: QueryResult: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Timeseries", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRemote + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthRemote + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Timeseries = append(m.Timeseries, &TimeSeries{}) + if err := m.Timeseries[len(m.Timeseries)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipRemote(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthRemote + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthRemote + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *ChunkedReadResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ChunkedReadResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ChunkedReadResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ChunkedSeries", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRemote + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthRemote + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ChunkedSeries = append(m.ChunkedSeries, &ChunkedSeries{}) + if err := m.ChunkedSeries[len(m.ChunkedSeries)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field QueryIndex", wireType) + } + m.QueryIndex = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.QueryIndex |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + default: + iNdEx = preIndex + skippy, err := skipRemote(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthRemote + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthRemote + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func skipRemote(dAtA []byte) (n int, err error) { + l := len(dAtA) + iNdEx := 0 + depth := 0 + for iNdEx < l { + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowRemote + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + wireType := int(wire & 0x7) + switch wireType { + case 0: + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowRemote + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + iNdEx++ + if dAtA[iNdEx-1] < 0x80 { + break + } + } + case 1: + iNdEx += 8 + case 2: + var length int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowRemote + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + length |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if length < 0 { + return 0, ErrInvalidLengthRemote + } + iNdEx += length + case 3: + depth++ + case 4: + if depth == 0 { + return 0, ErrUnexpectedEndOfGroupRemote + } + depth-- + case 5: + iNdEx += 4 + default: + return 0, fmt.Errorf("proto: illegal wireType %d", wireType) + } + if iNdEx < 0 { + return 0, ErrInvalidLengthRemote + } + if depth == 0 { + return iNdEx, nil + } + } + return 0, io.ErrUnexpectedEOF +} + +var ( + ErrInvalidLengthRemote = fmt.Errorf("proto: negative length found during unmarshaling") + ErrIntOverflowRemote = fmt.Errorf("proto: integer overflow") + ErrUnexpectedEndOfGroupRemote = fmt.Errorf("proto: unexpected end of group") +) diff --git a/pkg/store/storepb/prompb/remote.proto b/pkg/store/storepb/prompb/remote.proto new file mode 100644 index 00000000000..e72d94bb011 --- /dev/null +++ b/pkg/store/storepb/prompb/remote.proto @@ -0,0 +1,91 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +// Copyright 2016 Prometheus Team +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file 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. + +syntax = "proto3"; +package prometheus_copy; + +option go_package = "prompb"; + +import "types.proto"; +import "gogoproto/gogo.proto"; + +// Do not generate XXX fields to reduce memory footprint and opening a door +// for zero-copy casts to/from prometheus data types. +option (gogoproto.goproto_unkeyed_all) = false; +option (gogoproto.goproto_unrecognized_all) = false; +option (gogoproto.goproto_sizecache_all) = false; + +message WriteRequest { + repeated TimeSeries timeseries = 1 [(gogoproto.nullable) = false]; +} + +// ReadRequest represents a remote read request. +message ReadRequest { + repeated Query queries = 1; + + enum ResponseType { + // Server will return a single ReadResponse message with matched series that includes list of raw samples. + // It's recommended to use streamed response types instead. + // + // Response headers: + // Content-Type: "application/x-protobuf" + // Content-Encoding: "snappy" + SAMPLES = 0; + // Server will stream a delimited ChunkedReadResponse message that contains XOR encoded chunks for a single series. + // Each message is following varint size and fixed size bigendian uint32 for CRC32 Castagnoli checksum. + // + // Response headers: + // Content-Type: "application/x-streamed-protobuf; proto=prometheus.ChunkedReadResponse" + // Content-Encoding: "" + STREAMED_XOR_CHUNKS = 1; + } + + // accepted_response_types allows negotiating the content type of the response. + // + // Response types are taken from the list in the FIFO order. If no response type in `accepted_response_types` is + // implemented by server, error is returned. + // For request that do not contain `accepted_response_types` field the SAMPLES response type will be used. + repeated ResponseType accepted_response_types = 2; +} + +// ReadResponse is a response when response_type equals SAMPLES. +message ReadResponse { + // In same order as the request's queries. + repeated QueryResult results = 1; +} + +message Query { + int64 start_timestamp_ms = 1; + int64 end_timestamp_ms = 2; + repeated LabelMatcher matchers = 3; + ReadHints hints = 4; +} + +message QueryResult { + // Samples within a time series must be ordered by time. + repeated TimeSeries timeseries = 1; +} + +// ChunkedReadResponse is a response when response_type equals STREAMED_XOR_CHUNKS. +// We strictly stream full series after series, optionally split by time. This means that a single frame can contain +// partition of the single series, but once a new series is started to be streamed it means that no more chunks will +// be sent for previous one. +message ChunkedReadResponse { + repeated ChunkedSeries chunked_series = 1; + + // query_index represents an index of the query from ReadRequest.queries these chunks relates to. + int64 query_index = 2; +} diff --git a/pkg/store/storepb/prompb/types.pb.go b/pkg/store/storepb/prompb/types.pb.go new file mode 100644 index 00000000000..c9a0775b637 --- /dev/null +++ b/pkg/store/storepb/prompb/types.pb.go @@ -0,0 +1,2272 @@ +// Code generated by protoc-gen-gogo. DO NOT EDIT. +// source: types.proto + +package prompb + +import ( + encoding_binary "encoding/binary" + fmt "fmt" + io "io" + math "math" + math_bits "math/bits" + + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" +) + +// Reference imports to suppress errors if they are not otherwise used. +var _ = proto.Marshal +var _ = fmt.Errorf +var _ = math.Inf + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the proto package it is being compiled against. +// A compilation error at this line likely means your copy of the +// proto package needs to be updated. +const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package + +type LabelMatcher_Type int32 + +const ( + LabelMatcher_EQ LabelMatcher_Type = 0 + LabelMatcher_NEQ LabelMatcher_Type = 1 + LabelMatcher_RE LabelMatcher_Type = 2 + LabelMatcher_NRE LabelMatcher_Type = 3 +) + +var LabelMatcher_Type_name = map[int32]string{ + 0: "EQ", + 1: "NEQ", + 2: "RE", + 3: "NRE", +} + +var LabelMatcher_Type_value = map[string]int32{ + "EQ": 0, + "NEQ": 1, + "RE": 2, + "NRE": 3, +} + +func (x LabelMatcher_Type) String() string { + return proto.EnumName(LabelMatcher_Type_name, int32(x)) +} + +func (LabelMatcher_Type) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_d938547f84707355, []int{4, 0} +} + +// We require this to match chunkenc.Encoding. +type Chunk_Encoding int32 + +const ( + Chunk_UNKNOWN Chunk_Encoding = 0 + Chunk_XOR Chunk_Encoding = 1 +) + +var Chunk_Encoding_name = map[int32]string{ + 0: "UNKNOWN", + 1: "XOR", +} + +var Chunk_Encoding_value = map[string]int32{ + "UNKNOWN": 0, + "XOR": 1, +} + +func (x Chunk_Encoding) String() string { + return proto.EnumName(Chunk_Encoding_name, int32(x)) +} + +func (Chunk_Encoding) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_d938547f84707355, []int{6, 0} +} + +type Sample struct { + Value float64 `protobuf:"fixed64,1,opt,name=value,proto3" json:"value,omitempty"` + Timestamp int64 `protobuf:"varint,2,opt,name=timestamp,proto3" json:"timestamp,omitempty"` +} + +func (m *Sample) Reset() { *m = Sample{} } +func (m *Sample) String() string { return proto.CompactTextString(m) } +func (*Sample) ProtoMessage() {} +func (*Sample) Descriptor() ([]byte, []int) { + return fileDescriptor_d938547f84707355, []int{0} +} +func (m *Sample) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *Sample) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_Sample.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *Sample) XXX_Merge(src proto.Message) { + xxx_messageInfo_Sample.Merge(m, src) +} +func (m *Sample) XXX_Size() int { + return m.Size() +} +func (m *Sample) XXX_DiscardUnknown() { + xxx_messageInfo_Sample.DiscardUnknown(m) +} + +var xxx_messageInfo_Sample proto.InternalMessageInfo + +func (m *Sample) GetValue() float64 { + if m != nil { + return m.Value + } + return 0 +} + +func (m *Sample) GetTimestamp() int64 { + if m != nil { + return m.Timestamp + } + return 0 +} + +// TimeSeries represents samples and labels for a single time series. +type TimeSeries struct { + Labels []Label `protobuf:"bytes,1,rep,name=labels,proto3" json:"labels"` + Samples []Sample `protobuf:"bytes,2,rep,name=samples,proto3" json:"samples"` +} + +func (m *TimeSeries) Reset() { *m = TimeSeries{} } +func (m *TimeSeries) String() string { return proto.CompactTextString(m) } +func (*TimeSeries) ProtoMessage() {} +func (*TimeSeries) Descriptor() ([]byte, []int) { + return fileDescriptor_d938547f84707355, []int{1} +} +func (m *TimeSeries) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *TimeSeries) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_TimeSeries.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *TimeSeries) XXX_Merge(src proto.Message) { + xxx_messageInfo_TimeSeries.Merge(m, src) +} +func (m *TimeSeries) XXX_Size() int { + return m.Size() +} +func (m *TimeSeries) XXX_DiscardUnknown() { + xxx_messageInfo_TimeSeries.DiscardUnknown(m) +} + +var xxx_messageInfo_TimeSeries proto.InternalMessageInfo + +func (m *TimeSeries) GetLabels() []Label { + if m != nil { + return m.Labels + } + return nil +} + +func (m *TimeSeries) GetSamples() []Sample { + if m != nil { + return m.Samples + } + return nil +} + +type Label struct { + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` +} + +func (m *Label) Reset() { *m = Label{} } +func (m *Label) String() string { return proto.CompactTextString(m) } +func (*Label) ProtoMessage() {} +func (*Label) Descriptor() ([]byte, []int) { + return fileDescriptor_d938547f84707355, []int{2} +} +func (m *Label) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *Label) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_Label.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *Label) XXX_Merge(src proto.Message) { + xxx_messageInfo_Label.Merge(m, src) +} +func (m *Label) XXX_Size() int { + return m.Size() +} +func (m *Label) XXX_DiscardUnknown() { + xxx_messageInfo_Label.DiscardUnknown(m) +} + +var xxx_messageInfo_Label proto.InternalMessageInfo + +func (m *Label) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +func (m *Label) GetValue() string { + if m != nil { + return m.Value + } + return "" +} + +type Labels struct { + Labels []Label `protobuf:"bytes,1,rep,name=labels,proto3" json:"labels"` +} + +func (m *Labels) Reset() { *m = Labels{} } +func (m *Labels) String() string { return proto.CompactTextString(m) } +func (*Labels) ProtoMessage() {} +func (*Labels) Descriptor() ([]byte, []int) { + return fileDescriptor_d938547f84707355, []int{3} +} +func (m *Labels) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *Labels) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_Labels.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *Labels) XXX_Merge(src proto.Message) { + xxx_messageInfo_Labels.Merge(m, src) +} +func (m *Labels) XXX_Size() int { + return m.Size() +} +func (m *Labels) XXX_DiscardUnknown() { + xxx_messageInfo_Labels.DiscardUnknown(m) +} + +var xxx_messageInfo_Labels proto.InternalMessageInfo + +func (m *Labels) GetLabels() []Label { + if m != nil { + return m.Labels + } + return nil +} + +// Matcher specifies a rule, which can match or set of labels or not. +type LabelMatcher struct { + Type LabelMatcher_Type `protobuf:"varint,1,opt,name=type,proto3,enum=prometheus_copy.LabelMatcher_Type" json:"type,omitempty"` + Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` + Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"` +} + +func (m *LabelMatcher) Reset() { *m = LabelMatcher{} } +func (m *LabelMatcher) String() string { return proto.CompactTextString(m) } +func (*LabelMatcher) ProtoMessage() {} +func (*LabelMatcher) Descriptor() ([]byte, []int) { + return fileDescriptor_d938547f84707355, []int{4} +} +func (m *LabelMatcher) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *LabelMatcher) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_LabelMatcher.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *LabelMatcher) XXX_Merge(src proto.Message) { + xxx_messageInfo_LabelMatcher.Merge(m, src) +} +func (m *LabelMatcher) XXX_Size() int { + return m.Size() +} +func (m *LabelMatcher) XXX_DiscardUnknown() { + xxx_messageInfo_LabelMatcher.DiscardUnknown(m) +} + +var xxx_messageInfo_LabelMatcher proto.InternalMessageInfo + +func (m *LabelMatcher) GetType() LabelMatcher_Type { + if m != nil { + return m.Type + } + return LabelMatcher_EQ +} + +func (m *LabelMatcher) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +func (m *LabelMatcher) GetValue() string { + if m != nil { + return m.Value + } + return "" +} + +type ReadHints struct { + StepMs int64 `protobuf:"varint,1,opt,name=step_ms,json=stepMs,proto3" json:"step_ms,omitempty"` + Func string `protobuf:"bytes,2,opt,name=func,proto3" json:"func,omitempty"` + StartMs int64 `protobuf:"varint,3,opt,name=start_ms,json=startMs,proto3" json:"start_ms,omitempty"` + EndMs int64 `protobuf:"varint,4,opt,name=end_ms,json=endMs,proto3" json:"end_ms,omitempty"` + Grouping []string `protobuf:"bytes,5,rep,name=grouping,proto3" json:"grouping,omitempty"` + By bool `protobuf:"varint,6,opt,name=by,proto3" json:"by,omitempty"` + RangeMs int64 `protobuf:"varint,7,opt,name=range_ms,json=rangeMs,proto3" json:"range_ms,omitempty"` +} + +func (m *ReadHints) Reset() { *m = ReadHints{} } +func (m *ReadHints) String() string { return proto.CompactTextString(m) } +func (*ReadHints) ProtoMessage() {} +func (*ReadHints) Descriptor() ([]byte, []int) { + return fileDescriptor_d938547f84707355, []int{5} +} +func (m *ReadHints) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *ReadHints) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_ReadHints.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *ReadHints) XXX_Merge(src proto.Message) { + xxx_messageInfo_ReadHints.Merge(m, src) +} +func (m *ReadHints) XXX_Size() int { + return m.Size() +} +func (m *ReadHints) XXX_DiscardUnknown() { + xxx_messageInfo_ReadHints.DiscardUnknown(m) +} + +var xxx_messageInfo_ReadHints proto.InternalMessageInfo + +func (m *ReadHints) GetStepMs() int64 { + if m != nil { + return m.StepMs + } + return 0 +} + +func (m *ReadHints) GetFunc() string { + if m != nil { + return m.Func + } + return "" +} + +func (m *ReadHints) GetStartMs() int64 { + if m != nil { + return m.StartMs + } + return 0 +} + +func (m *ReadHints) GetEndMs() int64 { + if m != nil { + return m.EndMs + } + return 0 +} + +func (m *ReadHints) GetGrouping() []string { + if m != nil { + return m.Grouping + } + return nil +} + +func (m *ReadHints) GetBy() bool { + if m != nil { + return m.By + } + return false +} + +func (m *ReadHints) GetRangeMs() int64 { + if m != nil { + return m.RangeMs + } + return 0 +} + +// Chunk represents a TSDB chunk. +// Time range [min, max] is inclusive. +type Chunk struct { + MinTimeMs int64 `protobuf:"varint,1,opt,name=min_time_ms,json=minTimeMs,proto3" json:"min_time_ms,omitempty"` + MaxTimeMs int64 `protobuf:"varint,2,opt,name=max_time_ms,json=maxTimeMs,proto3" json:"max_time_ms,omitempty"` + Type Chunk_Encoding `protobuf:"varint,3,opt,name=type,proto3,enum=prometheus_copy.Chunk_Encoding" json:"type,omitempty"` + Data []byte `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"` +} + +func (m *Chunk) Reset() { *m = Chunk{} } +func (m *Chunk) String() string { return proto.CompactTextString(m) } +func (*Chunk) ProtoMessage() {} +func (*Chunk) Descriptor() ([]byte, []int) { + return fileDescriptor_d938547f84707355, []int{6} +} +func (m *Chunk) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *Chunk) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_Chunk.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *Chunk) XXX_Merge(src proto.Message) { + xxx_messageInfo_Chunk.Merge(m, src) +} +func (m *Chunk) XXX_Size() int { + return m.Size() +} +func (m *Chunk) XXX_DiscardUnknown() { + xxx_messageInfo_Chunk.DiscardUnknown(m) +} + +var xxx_messageInfo_Chunk proto.InternalMessageInfo + +func (m *Chunk) GetMinTimeMs() int64 { + if m != nil { + return m.MinTimeMs + } + return 0 +} + +func (m *Chunk) GetMaxTimeMs() int64 { + if m != nil { + return m.MaxTimeMs + } + return 0 +} + +func (m *Chunk) GetType() Chunk_Encoding { + if m != nil { + return m.Type + } + return Chunk_UNKNOWN +} + +func (m *Chunk) GetData() []byte { + if m != nil { + return m.Data + } + return nil +} + +// ChunkedSeries represents single, encoded time series. +type ChunkedSeries struct { + // Labels should be sorted. + Labels []Label `protobuf:"bytes,1,rep,name=labels,proto3" json:"labels"` + // Chunks will be in start time order and may overlap. + Chunks []Chunk `protobuf:"bytes,2,rep,name=chunks,proto3" json:"chunks"` +} + +func (m *ChunkedSeries) Reset() { *m = ChunkedSeries{} } +func (m *ChunkedSeries) String() string { return proto.CompactTextString(m) } +func (*ChunkedSeries) ProtoMessage() {} +func (*ChunkedSeries) Descriptor() ([]byte, []int) { + return fileDescriptor_d938547f84707355, []int{7} +} +func (m *ChunkedSeries) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *ChunkedSeries) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_ChunkedSeries.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *ChunkedSeries) XXX_Merge(src proto.Message) { + xxx_messageInfo_ChunkedSeries.Merge(m, src) +} +func (m *ChunkedSeries) XXX_Size() int { + return m.Size() +} +func (m *ChunkedSeries) XXX_DiscardUnknown() { + xxx_messageInfo_ChunkedSeries.DiscardUnknown(m) +} + +var xxx_messageInfo_ChunkedSeries proto.InternalMessageInfo + +func (m *ChunkedSeries) GetLabels() []Label { + if m != nil { + return m.Labels + } + return nil +} + +func (m *ChunkedSeries) GetChunks() []Chunk { + if m != nil { + return m.Chunks + } + return nil +} + +func init() { + proto.RegisterEnum("prometheus_copy.LabelMatcher_Type", LabelMatcher_Type_name, LabelMatcher_Type_value) + proto.RegisterEnum("prometheus_copy.Chunk_Encoding", Chunk_Encoding_name, Chunk_Encoding_value) + proto.RegisterType((*Sample)(nil), "prometheus_copy.Sample") + proto.RegisterType((*TimeSeries)(nil), "prometheus_copy.TimeSeries") + proto.RegisterType((*Label)(nil), "prometheus_copy.Label") + proto.RegisterType((*Labels)(nil), "prometheus_copy.Labels") + proto.RegisterType((*LabelMatcher)(nil), "prometheus_copy.LabelMatcher") + proto.RegisterType((*ReadHints)(nil), "prometheus_copy.ReadHints") + proto.RegisterType((*Chunk)(nil), "prometheus_copy.Chunk") + proto.RegisterType((*ChunkedSeries)(nil), "prometheus_copy.ChunkedSeries") +} + +func init() { proto.RegisterFile("types.proto", fileDescriptor_d938547f84707355) } + +var fileDescriptor_d938547f84707355 = []byte{ + // 561 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x53, 0xc1, 0x6e, 0xd3, 0x40, + 0x10, 0xcd, 0xda, 0x89, 0x9d, 0x4c, 0x4a, 0x89, 0x56, 0xa5, 0x35, 0x15, 0x72, 0x2d, 0x9f, 0x7c, + 0x0a, 0xa2, 0xad, 0xe0, 0x82, 0x38, 0x14, 0x45, 0x42, 0xa2, 0x4e, 0xd5, 0x6d, 0x11, 0x88, 0x4b, + 0xb4, 0x89, 0x17, 0xc7, 0x22, 0x5e, 0x5b, 0xde, 0x0d, 0x6a, 0xd4, 0x9f, 0xe0, 0xcc, 0x5f, 0xc0, + 0x57, 0xf4, 0xd8, 0x23, 0x27, 0x84, 0x92, 0x1f, 0x41, 0xbb, 0x76, 0x12, 0x44, 0x73, 0xa2, 0xb7, + 0x99, 0x79, 0x6f, 0xde, 0x3c, 0xef, 0x8c, 0xa1, 0x2d, 0x67, 0x39, 0x13, 0xdd, 0xbc, 0xc8, 0x64, + 0x86, 0x1f, 0xe6, 0x45, 0x96, 0x32, 0x39, 0x66, 0x53, 0x31, 0x18, 0x65, 0xf9, 0x6c, 0x7f, 0x27, + 0xce, 0xe2, 0x4c, 0x63, 0x4f, 0x55, 0x54, 0xd2, 0xfc, 0x97, 0x60, 0x5d, 0xd0, 0x34, 0x9f, 0x30, + 0xbc, 0x03, 0x8d, 0x2f, 0x74, 0x32, 0x65, 0x0e, 0xf2, 0x50, 0x80, 0x48, 0x99, 0xe0, 0x27, 0xd0, + 0x92, 0x49, 0xca, 0x84, 0xa4, 0x69, 0xee, 0x18, 0x1e, 0x0a, 0x4c, 0xb2, 0x2e, 0xf8, 0xd7, 0x00, + 0x97, 0x49, 0xca, 0x2e, 0x58, 0x91, 0x30, 0x81, 0x8f, 0xc1, 0x9a, 0xd0, 0x21, 0x9b, 0x08, 0x07, + 0x79, 0x66, 0xd0, 0x3e, 0xdc, 0xed, 0xfe, 0xe3, 0xa1, 0x7b, 0xaa, 0xe0, 0x93, 0xfa, 0xcd, 0xaf, + 0x83, 0x1a, 0xa9, 0xb8, 0xf8, 0x05, 0xd8, 0x42, 0x3b, 0x10, 0x8e, 0xa1, 0xdb, 0xf6, 0xee, 0xb4, + 0x95, 0x0e, 0xab, 0xbe, 0x25, 0xdb, 0x7f, 0x06, 0x0d, 0xad, 0x87, 0x31, 0xd4, 0x39, 0x4d, 0x4b, + 0xe3, 0x2d, 0xa2, 0xe3, 0xf5, 0xd7, 0x18, 0xba, 0x58, 0x26, 0xfe, 0x2b, 0xb0, 0x4e, 0xcb, 0xa9, + 0xff, 0xe5, 0xd5, 0xff, 0x86, 0x60, 0x4b, 0xd7, 0x43, 0x2a, 0x47, 0x63, 0x56, 0xe0, 0xe7, 0x50, + 0x57, 0x8f, 0xae, 0x47, 0x6f, 0x1f, 0xfa, 0x9b, 0x45, 0x2a, 0x72, 0xf7, 0x72, 0x96, 0x33, 0xa2, + 0xf9, 0x2b, 0xcb, 0xc6, 0x26, 0xcb, 0xe6, 0xdf, 0x96, 0x03, 0xa8, 0xab, 0x3e, 0x6c, 0x81, 0xd1, + 0x3b, 0xef, 0xd4, 0xb0, 0x0d, 0x66, 0xbf, 0x77, 0xde, 0x41, 0xaa, 0x40, 0x7a, 0x1d, 0x43, 0x17, + 0x48, 0xaf, 0x63, 0xfa, 0xdf, 0x11, 0xb4, 0x08, 0xa3, 0xd1, 0x9b, 0x84, 0x4b, 0x81, 0xf7, 0xc0, + 0x16, 0x92, 0xe5, 0x83, 0x54, 0x68, 0x73, 0x26, 0xb1, 0x54, 0x1a, 0x0a, 0x35, 0xfa, 0xd3, 0x94, + 0x8f, 0x96, 0xa3, 0x55, 0x8c, 0x1f, 0x43, 0x53, 0x48, 0x5a, 0x48, 0xc5, 0x36, 0x35, 0xdb, 0xd6, + 0x79, 0x28, 0xf0, 0x23, 0xb0, 0x18, 0x8f, 0x14, 0x50, 0xd7, 0x40, 0x83, 0xf1, 0x28, 0x14, 0x78, + 0x1f, 0x9a, 0x71, 0x91, 0x4d, 0xf3, 0x84, 0xc7, 0x4e, 0xc3, 0x33, 0x83, 0x16, 0x59, 0xe5, 0x78, + 0x1b, 0x8c, 0xe1, 0xcc, 0xb1, 0x3c, 0x14, 0x34, 0x89, 0x31, 0x9c, 0x29, 0xf5, 0x82, 0xf2, 0x98, + 0x29, 0x11, 0xbb, 0x54, 0xd7, 0x79, 0x28, 0xfc, 0x1f, 0x08, 0x1a, 0xaf, 0xc7, 0x53, 0xfe, 0x19, + 0xbb, 0xd0, 0x4e, 0x13, 0x3e, 0x50, 0xb7, 0xb5, 0xf6, 0xdc, 0x4a, 0x13, 0xae, 0x0e, 0x2c, 0x14, + 0x1a, 0xa7, 0x57, 0x2b, 0xbc, 0x3a, 0xc5, 0x94, 0x5e, 0x55, 0xf8, 0x51, 0xb5, 0x09, 0x53, 0x6f, + 0xe2, 0xe0, 0xce, 0x26, 0xf4, 0x94, 0x6e, 0x8f, 0x8f, 0xb2, 0x28, 0xe1, 0xf1, 0x7a, 0x0d, 0x11, + 0x95, 0x54, 0x7f, 0xda, 0x16, 0xd1, 0xb1, 0xef, 0x41, 0x73, 0xc9, 0xc2, 0x6d, 0xb0, 0xdf, 0xf5, + 0xdf, 0xf6, 0xcf, 0xde, 0xf7, 0xcb, 0x97, 0xff, 0x70, 0x46, 0x3a, 0xc8, 0xbf, 0x86, 0x07, 0x5a, + 0x8d, 0x45, 0xf7, 0x3a, 0xfc, 0x63, 0xb0, 0x46, 0x4a, 0x66, 0x79, 0xf7, 0xbb, 0x9b, 0x3d, 0x2f, + 0xbb, 0x4a, 0xee, 0x89, 0x77, 0x33, 0x77, 0xd1, 0xed, 0xdc, 0x45, 0xbf, 0xe7, 0x2e, 0xfa, 0xba, + 0x70, 0x6b, 0xb7, 0x0b, 0xb7, 0xf6, 0x73, 0xe1, 0xd6, 0x3e, 0x5a, 0xaa, 0x3d, 0x1f, 0x0e, 0x2d, + 0xfd, 0x67, 0x1f, 0xfd, 0x09, 0x00, 0x00, 0xff, 0xff, 0x73, 0xda, 0x4a, 0x37, 0x0f, 0x04, 0x00, + 0x00, +} + +func (m *Sample) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *Sample) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Sample) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Timestamp != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.Timestamp)) + i-- + dAtA[i] = 0x10 + } + if m.Value != 0 { + i -= 8 + encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(m.Value)))) + i-- + dAtA[i] = 0x9 + } + return len(dAtA) - i, nil +} + +func (m *TimeSeries) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *TimeSeries) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *TimeSeries) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Samples) > 0 { + for iNdEx := len(m.Samples) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Samples[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + } + if len(m.Labels) > 0 { + for iNdEx := len(m.Labels) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Labels[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + +func (m *Label) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *Label) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Label) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Value) > 0 { + i -= len(m.Value) + copy(dAtA[i:], m.Value) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Value))) + i-- + dAtA[i] = 0x12 + } + if len(m.Name) > 0 { + i -= len(m.Name) + copy(dAtA[i:], m.Name) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Name))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *Labels) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *Labels) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Labels) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Labels) > 0 { + for iNdEx := len(m.Labels) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Labels[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + +func (m *LabelMatcher) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *LabelMatcher) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *LabelMatcher) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Value) > 0 { + i -= len(m.Value) + copy(dAtA[i:], m.Value) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Value))) + i-- + dAtA[i] = 0x1a + } + if len(m.Name) > 0 { + i -= len(m.Name) + copy(dAtA[i:], m.Name) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Name))) + i-- + dAtA[i] = 0x12 + } + if m.Type != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.Type)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func (m *ReadHints) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *ReadHints) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *ReadHints) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.RangeMs != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.RangeMs)) + i-- + dAtA[i] = 0x38 + } + if m.By { + i-- + if m.By { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x30 + } + if len(m.Grouping) > 0 { + for iNdEx := len(m.Grouping) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.Grouping[iNdEx]) + copy(dAtA[i:], m.Grouping[iNdEx]) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Grouping[iNdEx]))) + i-- + dAtA[i] = 0x2a + } + } + if m.EndMs != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.EndMs)) + i-- + dAtA[i] = 0x20 + } + if m.StartMs != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.StartMs)) + i-- + dAtA[i] = 0x18 + } + if len(m.Func) > 0 { + i -= len(m.Func) + copy(dAtA[i:], m.Func) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Func))) + i-- + dAtA[i] = 0x12 + } + if m.StepMs != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.StepMs)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func (m *Chunk) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *Chunk) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Chunk) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Data) > 0 { + i -= len(m.Data) + copy(dAtA[i:], m.Data) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Data))) + i-- + dAtA[i] = 0x22 + } + if m.Type != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.Type)) + i-- + dAtA[i] = 0x18 + } + if m.MaxTimeMs != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.MaxTimeMs)) + i-- + dAtA[i] = 0x10 + } + if m.MinTimeMs != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.MinTimeMs)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func (m *ChunkedSeries) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *ChunkedSeries) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *ChunkedSeries) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Chunks) > 0 { + for iNdEx := len(m.Chunks) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Chunks[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + } + if len(m.Labels) > 0 { + for iNdEx := len(m.Labels) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Labels[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + +func encodeVarintTypes(dAtA []byte, offset int, v uint64) int { + offset -= sovTypes(v) + base := offset + for v >= 1<<7 { + dAtA[offset] = uint8(v&0x7f | 0x80) + v >>= 7 + offset++ + } + dAtA[offset] = uint8(v) + return base +} +func (m *Sample) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Value != 0 { + n += 9 + } + if m.Timestamp != 0 { + n += 1 + sovTypes(uint64(m.Timestamp)) + } + return n +} + +func (m *TimeSeries) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Labels) > 0 { + for _, e := range m.Labels { + l = e.Size() + n += 1 + l + sovTypes(uint64(l)) + } + } + if len(m.Samples) > 0 { + for _, e := range m.Samples { + l = e.Size() + n += 1 + l + sovTypes(uint64(l)) + } + } + return n +} + +func (m *Label) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Name) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + l = len(m.Value) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + return n +} + +func (m *Labels) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Labels) > 0 { + for _, e := range m.Labels { + l = e.Size() + n += 1 + l + sovTypes(uint64(l)) + } + } + return n +} + +func (m *LabelMatcher) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Type != 0 { + n += 1 + sovTypes(uint64(m.Type)) + } + l = len(m.Name) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + l = len(m.Value) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + return n +} + +func (m *ReadHints) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.StepMs != 0 { + n += 1 + sovTypes(uint64(m.StepMs)) + } + l = len(m.Func) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + if m.StartMs != 0 { + n += 1 + sovTypes(uint64(m.StartMs)) + } + if m.EndMs != 0 { + n += 1 + sovTypes(uint64(m.EndMs)) + } + if len(m.Grouping) > 0 { + for _, s := range m.Grouping { + l = len(s) + n += 1 + l + sovTypes(uint64(l)) + } + } + if m.By { + n += 2 + } + if m.RangeMs != 0 { + n += 1 + sovTypes(uint64(m.RangeMs)) + } + return n +} + +func (m *Chunk) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.MinTimeMs != 0 { + n += 1 + sovTypes(uint64(m.MinTimeMs)) + } + if m.MaxTimeMs != 0 { + n += 1 + sovTypes(uint64(m.MaxTimeMs)) + } + if m.Type != 0 { + n += 1 + sovTypes(uint64(m.Type)) + } + l = len(m.Data) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + return n +} + +func (m *ChunkedSeries) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Labels) > 0 { + for _, e := range m.Labels { + l = e.Size() + n += 1 + l + sovTypes(uint64(l)) + } + } + if len(m.Chunks) > 0 { + for _, e := range m.Chunks { + l = e.Size() + n += 1 + l + sovTypes(uint64(l)) + } + } + return n +} + +func sovTypes(x uint64) (n int) { + return (math_bits.Len64(x|1) + 6) / 7 +} +func sozTypes(x uint64) (n int) { + return sovTypes(uint64((x << 1) ^ uint64((int64(x) >> 63)))) +} +func (m *Sample) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: Sample: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: Sample: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 1 { + return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) + } + var v uint64 + if (iNdEx + 8) > l { + return io.ErrUnexpectedEOF + } + v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) + iNdEx += 8 + m.Value = float64(math.Float64frombits(v)) + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Timestamp", wireType) + } + m.Timestamp = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Timestamp |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *TimeSeries) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: TimeSeries: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: TimeSeries: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Labels", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Labels = append(m.Labels, Label{}) + if err := m.Labels[len(m.Labels)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Samples", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Samples = append(m.Samples, Sample{}) + if err := m.Samples[len(m.Samples)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *Label) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: Label: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: Label: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Name = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Value = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *Labels) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: Labels: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: Labels: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Labels", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Labels = append(m.Labels, Label{}) + if err := m.Labels[len(m.Labels)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *LabelMatcher) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: LabelMatcher: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: LabelMatcher: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType) + } + m.Type = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Type |= LabelMatcher_Type(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Name = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Value = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *ReadHints) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ReadHints: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ReadHints: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field StepMs", wireType) + } + m.StepMs = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.StepMs |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Func", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Func = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field StartMs", wireType) + } + m.StartMs = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.StartMs |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 4: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field EndMs", wireType) + } + m.EndMs = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.EndMs |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Grouping", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Grouping = append(m.Grouping, string(dAtA[iNdEx:postIndex])) + iNdEx = postIndex + case 6: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field By", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.By = bool(v != 0) + case 7: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field RangeMs", wireType) + } + m.RangeMs = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.RangeMs |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *Chunk) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: Chunk: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: Chunk: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field MinTimeMs", wireType) + } + m.MinTimeMs = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.MinTimeMs |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field MaxTimeMs", wireType) + } + m.MaxTimeMs = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.MaxTimeMs |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType) + } + m.Type = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Type |= Chunk_Encoding(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Data = append(m.Data[:0], dAtA[iNdEx:postIndex]...) + if m.Data == nil { + m.Data = []byte{} + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *ChunkedSeries) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ChunkedSeries: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ChunkedSeries: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Labels", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Labels = append(m.Labels, Label{}) + if err := m.Labels[len(m.Labels)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Chunks", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Chunks = append(m.Chunks, Chunk{}) + if err := m.Chunks[len(m.Chunks)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func skipTypes(dAtA []byte) (n int, err error) { + l := len(dAtA) + iNdEx := 0 + depth := 0 + for iNdEx < l { + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowTypes + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + wireType := int(wire & 0x7) + switch wireType { + case 0: + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowTypes + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + iNdEx++ + if dAtA[iNdEx-1] < 0x80 { + break + } + } + case 1: + iNdEx += 8 + case 2: + var length int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowTypes + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + length |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if length < 0 { + return 0, ErrInvalidLengthTypes + } + iNdEx += length + case 3: + depth++ + case 4: + if depth == 0 { + return 0, ErrUnexpectedEndOfGroupTypes + } + depth-- + case 5: + iNdEx += 4 + default: + return 0, fmt.Errorf("proto: illegal wireType %d", wireType) + } + if iNdEx < 0 { + return 0, ErrInvalidLengthTypes + } + if depth == 0 { + return iNdEx, nil + } + } + return 0, io.ErrUnexpectedEOF +} + +var ( + ErrInvalidLengthTypes = fmt.Errorf("proto: negative length found during unmarshaling") + ErrIntOverflowTypes = fmt.Errorf("proto: integer overflow") + ErrUnexpectedEndOfGroupTypes = fmt.Errorf("proto: unexpected end of group") +) diff --git a/pkg/store/storepb/prompb/types.proto b/pkg/store/storepb/prompb/types.proto new file mode 100644 index 00000000000..698a19a48ac --- /dev/null +++ b/pkg/store/storepb/prompb/types.proto @@ -0,0 +1,94 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +// Copyright 2017 Prometheus Team +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file 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. + +syntax = "proto3"; +package prometheus_copy; + +option go_package = "prompb"; + +import "gogoproto/gogo.proto"; + +// Do not generate XXX fields to reduce memory footprint and opening a door +// for zero-copy casts to/from prometheus data types. +option (gogoproto.goproto_unkeyed_all) = false; +option (gogoproto.goproto_unrecognized_all) = false; +option (gogoproto.goproto_sizecache_all) = false; + +message Sample { + double value = 1; + int64 timestamp = 2; +} + +// TimeSeries represents samples and labels for a single time series. +message TimeSeries { + repeated Label labels = 1 [(gogoproto.nullable) = false]; + repeated Sample samples = 2 [(gogoproto.nullable) = false]; +} + +message Label { + string name = 1; + string value = 2; +} + +message Labels { + repeated Label labels = 1 [(gogoproto.nullable) = false]; +} + +// Matcher specifies a rule, which can match or set of labels or not. +message LabelMatcher { + enum Type { + EQ = 0; + NEQ = 1; + RE = 2; + NRE = 3; + } + Type type = 1; + string name = 2; + string value = 3; +} + +message ReadHints { + int64 step_ms = 1; // Query step size in milliseconds. + string func = 2; // String representation of surrounding function or aggregation. + int64 start_ms = 3; // Start time in milliseconds. + int64 end_ms = 4; // End time in milliseconds. + repeated string grouping = 5; // List of label names used in aggregation. + bool by = 6; // Indicate whether it is without or by. + int64 range_ms = 7; // Range vector selector range in milliseconds. +} + +// Chunk represents a TSDB chunk. +// Time range [min, max] is inclusive. +message Chunk { + int64 min_time_ms = 1; + int64 max_time_ms = 2; + + // We require this to match chunkenc.Encoding. + enum Encoding { + UNKNOWN = 0; + XOR = 1; + } + Encoding type = 3; + bytes data = 4; +} + +// ChunkedSeries represents single, encoded time series. +message ChunkedSeries { + // Labels should be sorted. + repeated Label labels = 1 [(gogoproto.nullable) = false]; + // Chunks will be in start time order and may overlap. + repeated Chunk chunks = 2 [(gogoproto.nullable) = false]; +} diff --git a/pkg/store/storepb/rpc.pb.go b/pkg/store/storepb/rpc.pb.go index 63f1ab4974e..dc6d8357539 100644 --- a/pkg/store/storepb/rpc.pb.go +++ b/pkg/store/storepb/rpc.pb.go @@ -12,7 +12,7 @@ import ( _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" - prompb "github.com/prometheus/prometheus/prompb" + prompb "github.com/thanos-io/thanos/pkg/store/storepb/prompb" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -635,66 +635,65 @@ func init() { func init() { proto.RegisterFile("rpc.proto", fileDescriptor_77a6da22d6a3feb1) } var fileDescriptor_77a6da22d6a3feb1 = []byte{ - // 934 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x56, 0xcb, 0x6e, 0x23, 0x45, - 0x14, 0x75, 0xbb, 0xfd, 0xbc, 0x4e, 0x4c, 0x4f, 0xc5, 0xc9, 0x74, 0x8c, 0xe4, 0x58, 0x2d, 0x21, - 0x59, 0x01, 0x39, 0xe0, 0x11, 0x20, 0xd0, 0x6c, 0x6c, 0x8f, 0x47, 0x63, 0x31, 0x71, 0xa0, 0x6c, - 0x8f, 0x79, 0x2c, 0x4c, 0xdb, 0x29, 0xda, 0xad, 0x71, 0x3f, 0xe8, 0x2a, 0x93, 0x64, 0xc3, 0x82, - 0x2f, 0x60, 0xcb, 0x3f, 0xf0, 0x17, 0x6c, 0xb2, 0x9c, 0x25, 0x6c, 0x10, 0x24, 0x3f, 0x82, 0xaa, - 0xba, 0xda, 0xee, 0x0e, 0x49, 0xa4, 0x51, 0x76, 0x75, 0xcf, 0xb9, 0xbe, 0x8f, 0x53, 0xf7, 0x76, - 0x19, 0x8a, 0x81, 0x3f, 0x6f, 0xfa, 0x81, 0xc7, 0x3c, 0x94, 0x63, 0x0b, 0xd3, 0xf5, 0x68, 0xb5, - 0xc4, 0x2e, 0x7c, 0x42, 0x43, 0xb0, 0x5a, 0xb1, 0x3c, 0xcb, 0x13, 0xc7, 0x23, 0x7e, 0x92, 0xe8, - 0x13, 0xcb, 0x66, 0x8b, 0xd5, 0xac, 0x39, 0xf7, 0x9c, 0x23, 0x3f, 0xf0, 0x1c, 0xc2, 0x16, 0x64, - 0x45, 0x6f, 0x1e, 0xfd, 0xd9, 0x51, 0x2c, 0x94, 0xf1, 0x0e, 0x6c, 0x4f, 0x02, 0x9b, 0x11, 0x4c, - 0xa8, 0xef, 0xb9, 0x94, 0x18, 0x3f, 0xc3, 0x96, 0x04, 0x7e, 0x5c, 0x11, 0xca, 0xd0, 0x53, 0x00, - 0x66, 0x3b, 0x84, 0x92, 0xc0, 0x26, 0x54, 0x57, 0xea, 0x6a, 0xa3, 0xd4, 0xda, 0x6b, 0x6e, 0x82, - 0x36, 0x47, 0xb6, 0x43, 0x86, 0x82, 0xed, 0x64, 0x2e, 0xff, 0x3e, 0x48, 0xe1, 0x98, 0x3f, 0xda, - 0x83, 0x1c, 0x23, 0xae, 0xe9, 0x32, 0x3d, 0x5d, 0x57, 0x1a, 0x45, 0x2c, 0x2d, 0xa4, 0x43, 0x3e, - 0x20, 0xfe, 0xd2, 0x9e, 0x9b, 0xba, 0x5a, 0x57, 0x1a, 0x2a, 0x8e, 0x4c, 0x63, 0x1b, 0x4a, 0x7d, - 0xf7, 0x07, 0x4f, 0xa6, 0x37, 0xfe, 0x52, 0x60, 0x2b, 0xb4, 0xc3, 0xfa, 0xd0, 0xfb, 0x90, 0x5b, - 0x9a, 0x33, 0xb2, 0x8c, 0x6a, 0xd9, 0x6e, 0x86, 0x0a, 0x35, 0x5f, 0x72, 0x54, 0x96, 0x20, 0x5d, - 0xd0, 0x3e, 0x14, 0x1c, 0xdb, 0x9d, 0xf2, 0x82, 0x44, 0x01, 0x2a, 0xce, 0x3b, 0xb6, 0xcb, 0x2b, - 0x16, 0x94, 0x79, 0x1e, 0x52, 0xb2, 0x04, 0xc7, 0x3c, 0x17, 0xd4, 0x11, 0x14, 0x29, 0xf3, 0x02, - 0x32, 0xba, 0xf0, 0x89, 0x9e, 0xa9, 0x2b, 0x8d, 0x72, 0xeb, 0x51, 0x94, 0x65, 0x18, 0x11, 0x78, - 0xe3, 0x83, 0x3e, 0x06, 0x10, 0x09, 0xa7, 0x94, 0x30, 0xaa, 0x67, 0x45, 0x5d, 0x5a, 0xa2, 0xae, - 0x21, 0x61, 0xb2, 0xb4, 0xe2, 0x52, 0xda, 0xd4, 0xf8, 0x14, 0x0a, 0x11, 0xf9, 0x56, 0x6d, 0x19, - 0xbf, 0xa9, 0xb0, 0x1d, 0x4a, 0x1e, 0xdd, 0x52, 0xbc, 0x51, 0xe5, 0xee, 0x46, 0xd3, 0xc9, 0x46, - 0x3f, 0xe1, 0x14, 0x9b, 0x2f, 0x48, 0x40, 0x75, 0x55, 0xa4, 0xad, 0x24, 0xd2, 0x1e, 0x87, 0xa4, - 0xcc, 0xbe, 0xf6, 0x45, 0x2d, 0xd8, 0xe5, 0x21, 0x03, 0x42, 0xbd, 0xe5, 0x8a, 0xd9, 0x9e, 0x3b, - 0x3d, 0xb3, 0xdd, 0x53, 0xef, 0x4c, 0x88, 0xa5, 0xe2, 0x1d, 0xc7, 0x3c, 0xc7, 0x6b, 0x6e, 0x22, - 0x28, 0xf4, 0x01, 0x80, 0x69, 0x59, 0x01, 0xb1, 0x4c, 0x46, 0x42, 0x8d, 0xca, 0xad, 0xad, 0x28, - 0x5b, 0xdb, 0xb2, 0x02, 0x1c, 0xe3, 0xd1, 0xe7, 0xb0, 0xef, 0x9b, 0x01, 0xb3, 0xcd, 0x25, 0xcf, - 0x22, 0x6e, 0x7e, 0x7a, 0x6a, 0x53, 0x73, 0xb6, 0x24, 0xa7, 0x7a, 0xae, 0xae, 0x34, 0x0a, 0xf8, - 0xb1, 0x74, 0x88, 0x26, 0xe3, 0x99, 0xa4, 0xd1, 0x77, 0xb7, 0xfc, 0x96, 0xb2, 0xc0, 0x64, 0xc4, - 0xba, 0xd0, 0xf3, 0xe2, 0x3a, 0x0f, 0xa2, 0xc4, 0x5f, 0x26, 0x63, 0x0c, 0xa5, 0xdb, 0xff, 0x82, - 0x47, 0x04, 0x3a, 0x80, 0x12, 0x7d, 0x6d, 0xfb, 0xd3, 0xf9, 0x62, 0xe5, 0xbe, 0xa6, 0x7a, 0x41, - 0x94, 0x02, 0x1c, 0xea, 0x0a, 0xc4, 0xf8, 0x1e, 0xca, 0xd1, 0xd5, 0xc8, 0x89, 0x6d, 0x40, 0x6e, - 0xbd, 0x3d, 0x4a, 0xa3, 0xd4, 0x2a, 0xaf, 0x67, 0x49, 0xa0, 0x2f, 0x52, 0x58, 0xf2, 0xa8, 0x0a, - 0xf9, 0x33, 0x33, 0x70, 0x6d, 0xd7, 0x0a, 0xd7, 0xe5, 0x45, 0x0a, 0x47, 0x40, 0xa7, 0x00, 0xb9, - 0x80, 0xd0, 0xd5, 0x92, 0x19, 0xbf, 0x2b, 0xf0, 0x48, 0x5c, 0xcf, 0xc0, 0x74, 0x36, 0x13, 0x70, - 0xaf, 0x62, 0xca, 0x03, 0x14, 0x4b, 0x3f, 0x4c, 0x31, 0xe3, 0x39, 0xa0, 0x78, 0xb5, 0x52, 0x94, - 0x0a, 0x64, 0x5d, 0x0e, 0x88, 0x71, 0x2f, 0xe2, 0xd0, 0x40, 0x55, 0x28, 0xc8, 0x7e, 0xa9, 0x9e, - 0x16, 0xc4, 0xda, 0x36, 0xfe, 0x50, 0x64, 0xa0, 0x57, 0xe6, 0x72, 0xb5, 0xe9, 0xbb, 0x02, 0x59, - 0xb1, 0x15, 0xa2, 0xc7, 0x22, 0x0e, 0x8d, 0xfb, 0xd5, 0x48, 0x3f, 0x40, 0x0d, 0xf5, 0x81, 0x6a, - 0xf4, 0x61, 0x27, 0xd1, 0x84, 0x94, 0x63, 0x0f, 0x72, 0x3f, 0x09, 0x44, 0xea, 0x21, 0xad, 0xfb, - 0x04, 0x39, 0xc4, 0x50, 0x5c, 0x7f, 0x8d, 0x50, 0x09, 0xf2, 0xe3, 0xc1, 0x17, 0x83, 0x93, 0xc9, - 0x40, 0x4b, 0xa1, 0x22, 0x64, 0xbf, 0x1a, 0xf7, 0xf0, 0x37, 0x9a, 0x82, 0x0a, 0x90, 0xc1, 0xe3, - 0x97, 0x3d, 0x2d, 0xcd, 0x3d, 0x86, 0xfd, 0x67, 0xbd, 0x6e, 0x1b, 0x6b, 0x2a, 0xf7, 0x18, 0x8e, - 0x4e, 0x70, 0x4f, 0xcb, 0x70, 0x1c, 0xf7, 0xba, 0xbd, 0xfe, 0xab, 0x9e, 0x96, 0x3d, 0x6c, 0xc2, - 0xe3, 0x3b, 0x5a, 0xe2, 0x91, 0x26, 0x6d, 0x2c, 0xc3, 0xb7, 0x3b, 0x27, 0x78, 0xa4, 0x29, 0x87, - 0x1d, 0xc8, 0xf0, 0xdd, 0x45, 0x79, 0x50, 0x71, 0x7b, 0x12, 0x72, 0xdd, 0x93, 0xf1, 0x60, 0xa4, - 0x29, 0x1c, 0x1b, 0x8e, 0x8f, 0xb5, 0x34, 0x3f, 0x1c, 0xf7, 0x07, 0x9a, 0x2a, 0x0e, 0xed, 0xaf, - 0xc3, 0x9c, 0xc2, 0xab, 0x87, 0xb5, 0x6c, 0xeb, 0x97, 0x34, 0x64, 0x45, 0x23, 0xe8, 0x23, 0xc8, - 0xf0, 0x6f, 0x3d, 0xda, 0x89, 0xe4, 0x8d, 0xbd, 0x04, 0xd5, 0x4a, 0x12, 0x94, 0xc2, 0x7d, 0x06, - 0xb9, 0x70, 0x8d, 0xd0, 0x6e, 0x72, 0xad, 0xa2, 0x9f, 0xed, 0xdd, 0x84, 0xc3, 0x1f, 0x7e, 0xa8, - 0xa0, 0x2e, 0xc0, 0x66, 0x30, 0xd1, 0x7e, 0xe2, 0xcb, 0x17, 0x5f, 0xad, 0x6a, 0xf5, 0x36, 0x4a, - 0xe6, 0x7f, 0x0e, 0xa5, 0xd8, 0x7d, 0xa2, 0xa4, 0x6b, 0x62, 0x52, 0xab, 0xef, 0xde, 0xca, 0x85, - 0x71, 0x5a, 0x03, 0x28, 0x8b, 0x67, 0x97, 0x8f, 0x60, 0x28, 0xc6, 0x53, 0x28, 0x61, 0xe2, 0x78, - 0x8c, 0x08, 0x1c, 0xad, 0xdb, 0x8f, 0xbf, 0xce, 0xd5, 0xdd, 0x1b, 0xa8, 0x7c, 0xc4, 0x53, 0x9d, - 0xf7, 0x2e, 0xff, 0xad, 0xa5, 0x2e, 0xaf, 0x6a, 0xca, 0x9b, 0xab, 0x9a, 0xf2, 0xcf, 0x55, 0x4d, - 0xf9, 0xf5, 0xba, 0x96, 0x7a, 0x73, 0x5d, 0x4b, 0xfd, 0x79, 0x5d, 0x4b, 0x7d, 0x9b, 0x17, 0x6f, - 0x97, 0x3f, 0x9b, 0xe5, 0xc4, 0xbf, 0x80, 0x27, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0x67, 0x56, - 0x73, 0x8e, 0x72, 0x08, 0x00, 0x00, + // 927 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x56, 0xcd, 0x6e, 0x23, 0x45, + 0x10, 0x76, 0x7b, 0xfc, 0x5b, 0xde, 0x98, 0xd9, 0x8e, 0x93, 0x9d, 0x78, 0x25, 0xc7, 0x1a, 0x09, + 0xc9, 0x0a, 0xc8, 0x01, 0x23, 0x40, 0x20, 0x2e, 0xb6, 0xd7, 0xab, 0xb5, 0xd8, 0x38, 0xd0, 0xb6, + 0xd7, 0xfc, 0x1c, 0xcc, 0xd8, 0x69, 0x9c, 0xd1, 0xce, 0x1f, 0xd3, 0x6d, 0x92, 0x5c, 0xe1, 0x05, + 0xb8, 0xf2, 0x0e, 0xbc, 0x05, 0x97, 0x1c, 0xf7, 0x08, 0x17, 0x04, 0xc9, 0x8b, 0xa0, 0xee, 0xe9, + 0x71, 0x66, 0x96, 0x6c, 0x24, 0x94, 0x5b, 0xd7, 0xf7, 0x55, 0x77, 0x55, 0x7d, 0x5d, 0x35, 0x3d, + 0x50, 0x0e, 0x83, 0x65, 0x3b, 0x08, 0x7d, 0xee, 0xe3, 0x02, 0x3f, 0xb5, 0x3c, 0x9f, 0xd5, 0x2b, + 0xfc, 0x22, 0xa0, 0x2c, 0x02, 0xeb, 0xb5, 0x95, 0xbf, 0xf2, 0xe5, 0xf2, 0x50, 0xac, 0x14, 0x8a, + 0x83, 0xd0, 0x77, 0x83, 0xc5, 0x61, 0xc2, 0xd3, 0x7c, 0x0b, 0xb6, 0x66, 0xa1, 0xcd, 0x29, 0xa1, + 0x2c, 0xf0, 0x3d, 0x46, 0xcd, 0x9f, 0x11, 0x3c, 0x50, 0xc8, 0x0f, 0x6b, 0xca, 0x38, 0xee, 0x02, + 0x70, 0xdb, 0xa5, 0x8c, 0x86, 0x36, 0x65, 0x06, 0x6a, 0x6a, 0xad, 0x4a, 0xe7, 0xb1, 0xd8, 0xed, + 0x52, 0x7e, 0x4a, 0xd7, 0x6c, 0xbe, 0xf4, 0x83, 0x8b, 0xf6, 0xc4, 0x76, 0xe9, 0x58, 0xba, 0xf4, + 0x72, 0x97, 0x7f, 0xed, 0x67, 0x48, 0x62, 0x13, 0xde, 0x85, 0x02, 0xa7, 0x9e, 0xe5, 0x71, 0x23, + 0xdb, 0x44, 0xad, 0x32, 0x51, 0x16, 0x36, 0xa0, 0x18, 0xd2, 0xc0, 0xb1, 0x97, 0x96, 0xa1, 0x35, + 0x51, 0x4b, 0x23, 0xb1, 0x69, 0x6e, 0x41, 0x65, 0xe8, 0x7d, 0xef, 0xab, 0x1c, 0xcc, 0x3f, 0x11, + 0x3c, 0x88, 0xec, 0x28, 0x4b, 0xfc, 0x0e, 0x14, 0x1c, 0x6b, 0x41, 0x9d, 0x38, 0xa1, 0xad, 0x76, + 0x24, 0x43, 0xfb, 0xb9, 0x40, 0x55, 0x0a, 0xca, 0x05, 0xef, 0x41, 0xc9, 0xb5, 0xbd, 0xb9, 0x48, + 0x48, 0x26, 0xa0, 0x91, 0xa2, 0x6b, 0x7b, 0x22, 0x63, 0x49, 0x59, 0xe7, 0x11, 0xa5, 0x52, 0x70, + 0xad, 0x73, 0x49, 0x1d, 0x42, 0x99, 0x71, 0x3f, 0xa4, 0x93, 0x8b, 0x80, 0x1a, 0xb9, 0x26, 0x6a, + 0x55, 0x3b, 0x0f, 0xe3, 0x28, 0xe3, 0x98, 0x20, 0x37, 0x3e, 0xf8, 0x43, 0x00, 0x19, 0x70, 0xce, + 0x28, 0x67, 0x46, 0x5e, 0xe6, 0xa5, 0xa7, 0xf2, 0x1a, 0x53, 0xae, 0x52, 0x2b, 0x3b, 0xca, 0x66, + 0xe6, 0xc7, 0x50, 0x8a, 0xc9, 0xff, 0x55, 0x96, 0xf9, 0xab, 0x06, 0x5b, 0x91, 0xe4, 0xf1, 0x55, + 0x25, 0x0b, 0x45, 0x6f, 0x2e, 0x34, 0x9b, 0x2e, 0xf4, 0x23, 0x41, 0xf1, 0xe5, 0x29, 0x0d, 0x99, + 0xa1, 0xc9, 0xb0, 0xb5, 0x54, 0xd8, 0xa3, 0x88, 0x54, 0xd1, 0x37, 0xbe, 0xb8, 0x03, 0x3b, 0xe2, + 0xc8, 0x90, 0x32, 0xdf, 0x59, 0x73, 0xdb, 0xf7, 0xe6, 0x67, 0xb6, 0x77, 0xe2, 0x9f, 0x49, 0xb1, + 0x34, 0xb2, 0xed, 0x5a, 0xe7, 0x64, 0xc3, 0xcd, 0x24, 0x85, 0xdf, 0x05, 0xb0, 0x56, 0xab, 0x90, + 0xae, 0x2c, 0x4e, 0x23, 0x8d, 0xaa, 0x9d, 0x07, 0x71, 0xb4, 0xee, 0x6a, 0x15, 0x92, 0x04, 0x8f, + 0x3f, 0x85, 0xbd, 0xc0, 0x0a, 0xb9, 0x6d, 0x39, 0x22, 0x8a, 0xbc, 0xf9, 0xf9, 0x89, 0xcd, 0xac, + 0x85, 0x43, 0x4f, 0x8c, 0x42, 0x13, 0xb5, 0x4a, 0xe4, 0x91, 0x72, 0x88, 0x3b, 0xe3, 0x89, 0xa2, + 0xf1, 0xb7, 0xb7, 0xec, 0x65, 0x3c, 0xb4, 0x38, 0x5d, 0x5d, 0x18, 0x45, 0x79, 0x9d, 0xfb, 0x71, + 0xe0, 0x2f, 0xd2, 0x67, 0x8c, 0x95, 0xdb, 0x7f, 0x0e, 0x8f, 0x09, 0xbc, 0x0f, 0x15, 0xf6, 0xd2, + 0x0e, 0xe6, 0xcb, 0xd3, 0xb5, 0xf7, 0x92, 0x19, 0x25, 0x99, 0x0a, 0x08, 0xa8, 0x2f, 0x11, 0xf3, + 0x3b, 0xa8, 0xc6, 0x57, 0xa3, 0x3a, 0xb6, 0x05, 0x85, 0xcd, 0x08, 0xa1, 0x56, 0xa5, 0x53, 0xdd, + 0xf4, 0x92, 0x44, 0x9f, 0x65, 0x88, 0xe2, 0x71, 0x1d, 0x8a, 0x67, 0x56, 0xe8, 0xd9, 0xde, 0x2a, + 0x1a, 0x97, 0x67, 0x19, 0x12, 0x03, 0xbd, 0x12, 0x14, 0x42, 0xca, 0xd6, 0x0e, 0x37, 0x7f, 0x43, + 0xf0, 0x50, 0x5e, 0xcf, 0xc8, 0x72, 0x6f, 0x3a, 0xe0, 0x4e, 0xc5, 0xd0, 0x3d, 0x14, 0xcb, 0xde, + 0x4f, 0x31, 0xf3, 0x29, 0xe0, 0x64, 0xb6, 0x4a, 0x94, 0x1a, 0xe4, 0x3d, 0x01, 0xc8, 0x76, 0x2f, + 0x93, 0xc8, 0xc0, 0x75, 0x28, 0xa9, 0x7a, 0x99, 0x91, 0x95, 0xc4, 0xc6, 0x36, 0x7f, 0x47, 0xea, + 0xa0, 0x17, 0x96, 0xb3, 0xbe, 0xa9, 0xbb, 0x06, 0x79, 0x39, 0x15, 0xb2, 0xc6, 0x32, 0x89, 0x8c, + 0xbb, 0xd5, 0xc8, 0xde, 0x43, 0x0d, 0xed, 0x9e, 0x6a, 0x0c, 0x61, 0x3b, 0x55, 0x84, 0x92, 0x63, + 0x17, 0x0a, 0x3f, 0x4a, 0x44, 0xe9, 0xa1, 0xac, 0xbb, 0x04, 0x39, 0x20, 0x50, 0xde, 0x7c, 0x8d, + 0x70, 0x05, 0x8a, 0xd3, 0xd1, 0xe7, 0xa3, 0xe3, 0xd9, 0x48, 0xcf, 0xe0, 0x32, 0xe4, 0xbf, 0x9c, + 0x0e, 0xc8, 0xd7, 0x3a, 0xc2, 0x25, 0xc8, 0x91, 0xe9, 0xf3, 0x81, 0x9e, 0x15, 0x1e, 0xe3, 0xe1, + 0x93, 0x41, 0xbf, 0x4b, 0x74, 0x4d, 0x78, 0x8c, 0x27, 0xc7, 0x64, 0xa0, 0xe7, 0x04, 0x4e, 0x06, + 0xfd, 0xc1, 0xf0, 0xc5, 0x40, 0xcf, 0x1f, 0xb4, 0xe1, 0xd1, 0x1b, 0x4a, 0x12, 0x27, 0xcd, 0xba, + 0x44, 0x1d, 0xdf, 0xed, 0x1d, 0x93, 0x89, 0x8e, 0x0e, 0x7a, 0x90, 0x13, 0xb3, 0x8b, 0x8b, 0xa0, + 0x91, 0xee, 0x2c, 0xe2, 0xfa, 0xc7, 0xd3, 0xd1, 0x44, 0x47, 0x02, 0x1b, 0x4f, 0x8f, 0xf4, 0xac, + 0x58, 0x1c, 0x0d, 0x47, 0xba, 0x26, 0x17, 0xdd, 0xaf, 0xa2, 0x98, 0xd2, 0x6b, 0x40, 0xf4, 0x7c, + 0xe7, 0xa7, 0x2c, 0xe4, 0x65, 0x21, 0xf8, 0x7d, 0xc8, 0x89, 0x6f, 0x3d, 0xde, 0x8e, 0xe5, 0x4d, + 0xbc, 0x04, 0xf5, 0x5a, 0x1a, 0x54, 0xc2, 0x7d, 0x02, 0x85, 0x68, 0x8c, 0xf0, 0x4e, 0x7a, 0xac, + 0xe2, 0x6d, 0xbb, 0xaf, 0xc3, 0xd1, 0xc6, 0xf7, 0x10, 0xee, 0x03, 0xdc, 0x34, 0x26, 0xde, 0x4b, + 0x7d, 0xf9, 0x92, 0xa3, 0x55, 0xaf, 0xdf, 0x46, 0xa9, 0xf8, 0x4f, 0xa1, 0x92, 0xb8, 0x4f, 0x9c, + 0x76, 0x4d, 0x75, 0x6a, 0xfd, 0xf1, 0xad, 0x5c, 0x74, 0x4e, 0x67, 0x04, 0x55, 0xf9, 0xf6, 0x8a, + 0x16, 0x8c, 0xc4, 0xf8, 0x0c, 0x2a, 0x84, 0xba, 0x3e, 0xa7, 0x12, 0xc7, 0x9b, 0xf2, 0x93, 0x4f, + 0x74, 0x7d, 0xe7, 0x35, 0x54, 0x3d, 0xe5, 0x99, 0xde, 0xdb, 0x97, 0xff, 0x34, 0x32, 0x97, 0x57, + 0x0d, 0xf4, 0xea, 0xaa, 0x81, 0xfe, 0xbe, 0x6a, 0xa0, 0x5f, 0xae, 0x1b, 0x99, 0x57, 0xd7, 0x8d, + 0xcc, 0x1f, 0xd7, 0x8d, 0xcc, 0x37, 0x45, 0xf9, 0x76, 0x05, 0x8b, 0x45, 0x41, 0xfe, 0x0b, 0x7c, + 0xf0, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe7, 0x85, 0xb9, 0xc1, 0x57, 0x08, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/pkg/store/storepb/rpc.proto b/pkg/store/storepb/rpc.proto index c314c40f080..3cd02e17e28 100644 --- a/pkg/store/storepb/rpc.proto +++ b/pkg/store/storepb/rpc.proto @@ -6,7 +6,7 @@ package thanos; import "types.proto"; import "gogoproto/gogo.proto"; -import "github.com/prometheus/prometheus/prompb/types.proto"; +import "prompb/types.proto"; option go_package = "storepb"; @@ -53,7 +53,7 @@ message WriteResponse { } message WriteRequest { - repeated prometheus.TimeSeries timeseries = 1 [(gogoproto.nullable) = false]; + repeated prometheus_copy.TimeSeries timeseries = 1 [(gogoproto.nullable) = false]; string tenant = 2; int64 replica = 3; } diff --git a/pkg/testutil/e2eutil/prometheus.go b/pkg/testutil/e2eutil/prometheus.go index b298ae91f9e..86d4805eff2 100644 --- a/pkg/testutil/e2eutil/prometheus.go +++ b/pkg/testutil/e2eutil/prometheus.go @@ -4,7 +4,9 @@ package e2eutil import ( + "bytes" "context" + "encoding/json" "fmt" "io/ioutil" "math" @@ -12,6 +14,7 @@ import ( "net/http" "os" "os/exec" + "path" "path/filepath" "runtime" "strings" @@ -23,7 +26,9 @@ import ( "github.com/oklog/ulid" "github.com/pkg/errors" "github.com/prometheus/prometheus/pkg/labels" + "github.com/prometheus/prometheus/pkg/timestamp" "github.com/prometheus/prometheus/tsdb" + "github.com/prometheus/prometheus/tsdb/index" "github.com/thanos-io/thanos/pkg/block/metadata" "github.com/thanos-io/thanos/pkg/runutil" "github.com/thanos-io/thanos/pkg/testutil" @@ -277,6 +282,59 @@ func (p *Prometheus) Appender() tsdb.Appender { return p.db.Appender() } +// CreateEmptyBlock produces empty block like it was the case before fix: https://github.com/prometheus/tsdb/pull/374. +// (Prometheus pre v2.7.0). +func CreateEmptyBlock(dir string, mint int64, maxt int64, extLset labels.Labels, resolution int64) (ulid.ULID, error) { + entropy := rand.New(rand.NewSource(time.Now().UnixNano())) + uid := ulid.MustNew(ulid.Now(), entropy) + + if err := os.Mkdir(path.Join(dir, uid.String()), os.ModePerm); err != nil { + return ulid.ULID{}, errors.Wrap(err, "close index") + } + + if err := os.Mkdir(path.Join(dir, uid.String(), "chunks"), os.ModePerm); err != nil { + return ulid.ULID{}, errors.Wrap(err, "close index") + } + + w, err := index.NewWriter(context.Background(), path.Join(dir, uid.String(), "index")) + if err != nil { + return ulid.ULID{}, errors.Wrap(err, "new index") + } + + if err := w.Close(); err != nil { + return ulid.ULID{}, errors.Wrap(err, "close index") + } + + m := tsdb.BlockMeta{ + Version: 1, + ULID: uid, + MinTime: mint, + MaxTime: maxt, + Compaction: tsdb.BlockMetaCompaction{ + Level: 1, + Sources: []ulid.ULID{uid}, + }, + } + b, err := json.Marshal(&m) + if err != nil { + return ulid.ULID{}, err + } + + if err := ioutil.WriteFile(path.Join(dir, uid.String(), "meta.json"), b, os.ModePerm); err != nil { + return ulid.ULID{}, errors.Wrap(err, "saving meta.json") + } + + if _, err = metadata.InjectThanos(log.NewNopLogger(), filepath.Join(dir, uid.String()), metadata.Thanos{ + Labels: extLset.Map(), + Downsample: metadata.ThanosDownsample{Resolution: resolution}, + Source: metadata.TestSource, + }, nil); err != nil { + return ulid.ULID{}, errors.Wrap(err, "finalize block") + } + + return uid, nil +} + // CreateBlock writes a block with the given series and numSamples samples each. // Samples will be in the time range [mint, maxt). func CreateBlock( @@ -304,6 +362,44 @@ func CreateBlockWithTombstone( return createBlock(ctx, dir, series, numSamples, mint, maxt, extLset, resolution, true) } +// CreateBlockWithBlockDelay writes a block with the given series and numSamples samples each. +// Samples will be in the time range [mint, maxt) +// Block ID will be created with a delay of time duration blockDelay. +func CreateBlockWithBlockDelay( + ctx context.Context, + dir string, + series []labels.Labels, + numSamples int, + mint, maxt int64, + blockDelay time.Duration, + extLset labels.Labels, + resolution int64, +) (ulid.ULID, error) { + blockID, err := createBlock(ctx, dir, series, numSamples, mint, maxt, extLset, resolution, false) + if err != nil { + return ulid.ULID{}, errors.Wrap(err, "block creation") + } + + id, err := ulid.New(uint64(timestamp.FromTime(timestamp.Time(int64(blockID.Time())).Add(-blockDelay))), bytes.NewReader(blockID.Entropy())) + if err != nil { + return ulid.ULID{}, errors.Wrap(err, "create block id") + } + + m, err := metadata.Read(path.Join(dir, blockID.String())) + if err != nil { + return ulid.ULID{}, errors.Wrap(err, "open meta file") + } + + m.ULID = id + m.Compaction.Sources = []ulid.ULID{id} + + if err := metadata.Write(log.NewNopLogger(), path.Join(dir, blockID.String()), m); err != nil { + return ulid.ULID{}, errors.Wrap(err, "write meta.json file") + } + + return id, os.Rename(path.Join(dir, blockID.String()), path.Join(dir, id.String())) +} + func createBlock( ctx context.Context, dir string, @@ -369,6 +465,10 @@ func createBlock( return id, errors.Wrap(err, "write block") } + if id.Compare(ulid.ULID{}) == 0 { + return id, errors.Errorf("nothing to write, asked for %d samples", numSamples) + } + if _, err = metadata.InjectThanos(log.NewNopLogger(), filepath.Join(dir, id.String()), metadata.Thanos{ Labels: extLset.Map(), Downsample: metadata.ThanosDownsample{Resolution: resolution}, diff --git a/pkg/testutil/testorbench.go b/pkg/testutil/testorbench.go index dcfbff11ed7..5f7dc15ea71 100644 --- a/pkg/testutil/testorbench.go +++ b/pkg/testutil/testorbench.go @@ -27,6 +27,8 @@ type TB interface { testing.TB IsBenchmark() bool Run(name string, f func(t TB)) bool + + SetBytes(n int64) N() int ResetTimer() } @@ -61,6 +63,14 @@ func (t *tb) N() int { return 1 } +// SetBytes records the number of bytes processed in a single operation for benchmark, noop otherwise. +// If this is called, the benchmark will report ns/op and MB/s. +func (t *tb) SetBytes(n int64) { + if b, ok := t.TB.(*testing.B); ok { + b.SetBytes(n) + } +} + // ResetTimer resets a timer, if it's a benchmark, noop otherwise. func (t *tb) ResetTimer() { if b, ok := t.TB.(*testing.B); ok { diff --git a/pkg/testutil/testorbench_test.go b/pkg/testutil/testorbench_test.go index 787e98fe66f..b362cacf289 100644 --- a/pkg/testutil/testorbench_test.go +++ b/pkg/testutil/testorbench_test.go @@ -30,6 +30,7 @@ func testorbenchComplexTest(tb TB) { } }) }) + tb.SetBytes(120220) tb.Run("b", func(tb TB) { tb.Run("bb", func(tb TB) { tb.ResetTimer() diff --git a/pkg/testutil/testutil.go b/pkg/testutil/testutil.go index f4a3933fb41..e1ba298d7eb 100644 --- a/pkg/testutil/testutil.go +++ b/pkg/testutil/testutil.go @@ -1,24 +1,5 @@ -// The MIT License (MIT) - -// Copyright (c) 2014 Ben Johnson - -// 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. +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. package testutil @@ -29,50 +10,121 @@ import ( "runtime" "testing" + "github.com/davecgh/go-spew/spew" + "github.com/pmezard/go-difflib/difflib" "github.com/prometheus/client_golang/prometheus" dto "github.com/prometheus/client_model/go" ) // Assert fails the test if the condition is false. -func Assert(tb testing.TB, condition bool, msg string, v ...interface{}) { - if !condition { - _, file, line, _ := runtime.Caller(1) - fmt.Printf("\033[31m%s:%d: "+msg+"\033[39m\n\n", append([]interface{}{filepath.Base(file), line}, v...)...) - tb.FailNow() +func Assert(tb testing.TB, condition bool, v ...interface{}) { + if condition { + return } + _, file, line, _ := runtime.Caller(1) + + var msg string + if len(v) > 0 { + msg = fmt.Sprintf(v[0].(string), v[1:]...) + } + tb.Fatalf("\033[31m%s:%d: "+msg+"\033[39m\n\n", append([]interface{}{filepath.Base(file), line}, v...)...) } // Ok fails the test if an err is not nil. -func Ok(tb testing.TB, err error) { - if err != nil { - _, file, line, _ := runtime.Caller(1) - fmt.Printf("\033[31m%s:%d: unexpected error: %s\033[39m\n\n", filepath.Base(file), line, err.Error()) - tb.FailNow() +func Ok(tb testing.TB, err error, v ...interface{}) { + if err == nil { + return } + _, file, line, _ := runtime.Caller(1) + + var msg string + if len(v) > 0 { + msg = fmt.Sprintf(v[0].(string), v[1:]...) + } + tb.Fatalf("\033[31m%s:%d:"+msg+"\n\n unexpected error: %s\033[39m\n\n", filepath.Base(file), line, err.Error()) } // NotOk fails the test if an err is nil. -func NotOk(tb testing.TB, err error) { - if err == nil { - _, file, line, _ := runtime.Caller(1) - fmt.Printf("\033[31m%s:%d: expected error, got nothing \033[39m\n\n", filepath.Base(file), line) - tb.FailNow() +func NotOk(tb testing.TB, err error, v ...interface{}) { + if err != nil { + return } + _, file, line, _ := runtime.Caller(1) + + var msg string + if len(v) > 0 { + msg = fmt.Sprintf(v[0].(string), v[1:]...) + } + tb.Fatalf("\033[31m%s:%d:"+msg+"\n\n expected error, got nothing \033[39m\n\n", filepath.Base(file), line) } // Equals fails the test if exp is not equal to act. func Equals(tb testing.TB, exp, act interface{}, v ...interface{}) { - if !reflect.DeepEqual(exp, act) { - _, file, line, _ := runtime.Caller(1) + if reflect.DeepEqual(exp, act) { + return + } + _, file, line, _ := runtime.Caller(1) - var msg string - if len(v) > 0 { - msg = fmt.Sprintf(v[0].(string), v[1:]...) - } + var msg string + if len(v) > 0 { + msg = fmt.Sprintf(v[0].(string), v[1:]...) + } + tb.Fatalf("\033[31m%s:%d:"+msg+"\n\n\texp: %#v\n\n\tgot: %#v%s\033[39m\n\n", filepath.Base(file), line, exp, act, diff(exp, act)) +} + +func typeAndKind(v interface{}) (reflect.Type, reflect.Kind) { + t := reflect.TypeOf(v) + k := t.Kind() - fmt.Printf("\033[31m%s:%d:"+msg+"\n\n\texp: %#v\n\n\tgot: %#v\033[39m\n\n", filepath.Base(file), line, exp, act) - tb.FailNow() + if k == reflect.Ptr { + t = t.Elem() + k = t.Kind() } + return t, k +} + +// diff returns a diff of both values as long as both are of the same type and +// are a struct, map, slice, array or string. Otherwise it returns an empty string. +func diff(expected interface{}, actual interface{}) string { + if expected == nil || actual == nil { + return "" + } + + et, ek := typeAndKind(expected) + at, _ := typeAndKind(actual) + if et != at { + return "" + } + + if ek != reflect.Struct && ek != reflect.Map && ek != reflect.Slice && ek != reflect.Array && ek != reflect.String { + return "" + } + + var e, a string + c := spew.ConfigState{ + Indent: " ", + DisablePointerAddresses: true, + DisableCapacities: true, + SortKeys: true, + } + if et != reflect.TypeOf("") { + e = c.Sdump(expected) + a = c.Sdump(actual) + } else { + e = reflect.ValueOf(expected).String() + a = reflect.ValueOf(actual).String() + } + + diff, _ := difflib.GetUnifiedDiffString(difflib.UnifiedDiff{ + A: difflib.SplitLines(e), + B: difflib.SplitLines(a), + FromFile: "Expected", + FromDate: "", + ToFile: "Actual", + ToDate: "", + Context: 1, + }) + return "\n\nDiff:\n" + diff } // GatherAndCompare compares the metrics of a Gatherers pair. diff --git a/pkg/tracing/tracing.go b/pkg/tracing/tracing.go index 9664cbc068a..929f03c7f2b 100644 --- a/pkg/tracing/tracing.go +++ b/pkg/tracing/tracing.go @@ -37,8 +37,8 @@ func tracerFromContext(ctx context.Context) opentracing.Tracer { return nil } -// StartSpan starts and returns span with `operationName` using any Span found within given context. -// It uses traces propagated in context. +// StartSpan starts and returns span with `operationName` and hooking as child to a span found within given context if any. +// It uses opentracing.Tracer propagated in context. If no found, it uses noop tracer without notification. func StartSpan(ctx context.Context, operationName string, opts ...opentracing.StartSpanOption) (opentracing.Span, context.Context) { tracer := tracerFromContext(ctx) if tracer == nil { @@ -53,3 +53,11 @@ func StartSpan(ctx context.Context, operationName string, opts ...opentracing.St span = tracer.StartSpan(operationName, opts...) return span, opentracing.ContextWithSpan(ctx, span) } + +// DoInSpan executes function doFn inside new span with `operationName` name and hooking as child to a span found within given context if any. +// It uses opentracing.Tracer propagated in context. If no found, it uses noop tracer notification. +func DoInSpan(ctx context.Context, operationName string, doFn func(context.Context), opts ...opentracing.StartSpanOption) { + span, newCtx := StartSpan(ctx, operationName, opts...) + defer doFn(newCtx) + defer span.Finish() +} diff --git a/pkg/ui/bindata.go b/pkg/ui/bindata.go index 22e96eadea6..c34963a5bad 100644 --- a/pkg/ui/bindata.go +++ b/pkg/ui/bindata.go @@ -24,12 +24,12 @@ // pkg/ui/static/react/favicon.ico // pkg/ui/static/react/index.html // pkg/ui/static/react/manifest.json -// pkg/ui/static/react/precache-manifest.89cd5f634bdd3cbf6ea21e1c773c0c50.js +// pkg/ui/static/react/precache-manifest.c5d86e4aadc1447ddca4911d3f554098.js // pkg/ui/static/react/service-worker.js -// pkg/ui/static/react/static/css/2.bae5dac8.chunk.css -// pkg/ui/static/react/static/css/main.ec7d4f9e.chunk.css -// pkg/ui/static/react/static/js/2.776f6080.chunk.js -// pkg/ui/static/react/static/js/main.d3f562f0.chunk.js +// pkg/ui/static/react/static/css/2.3f5e1097.chunk.css +// pkg/ui/static/react/static/css/main.a6053568.chunk.css +// pkg/ui/static/react/static/js/2.42f57af3.chunk.js +// pkg/ui/static/react/static/js/main.90aae54f.chunk.js // pkg/ui/static/react/static/js/runtime-main.56ad181a.js // pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.css // pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.min.css @@ -171,7 +171,7 @@ func pkgUiTemplates_baseHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/_base.html", size: 1478, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/_base.html", size: 1478, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -191,12 +191,12 @@ func pkgUiTemplatesAlertsHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/alerts.html", size: 5106, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/alerts.html", size: 5106, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiTemplatesBucketHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\x4d\x6f\xdb\x3c\x0c\xbe\xe7\x57\xf0\xd5\x8b\x01\x1b\x50\x47\xe9\xfa\x81\x2e\x8d\x33\xec\xeb\x56\xa0\xc3\x56\xec\x32\xec\x20\x5b\x4c\xa4\x54\x96\x3c\x89\xb1\x13\x18\xfe\xef\x83\x2d\x3b\x69\xba\x62\x39\x28\xa4\x48\x3e\xe4\x43\x52\x6e\x1a\x89\x2b\x6d\x11\x98\x42\x21\x59\xdb\x4e\x00\x00\x16\x05\x92\x00\x45\x54\x26\xf8\x7b\xab\xab\x94\x79\x5c\x79\x0c\x8a\x41\xee\x2c\xa1\xa5\x94\x5d\xcc\x66\x8c\x2f\x27\xd1\x3f\xe4\x5e\x97\x04\xb4\x2f\x31\x65\x84\x3b\xe2\x1b\x51\x89\x78\xcb\x20\xf8\x3c\x65\x1d\x5a\x98\x73\x5e\xd7\xf5\x74\x1d\x48\x90\xce\xa7\xb9\x2b\x78\xae\x84\xa7\xc0\x8d\x13\x12\xfd\x74\x13\xd8\x72\xc1\x63\xe0\xf2\x04\xbb\x07\x69\x1a\x28\x05\xa9\xaf\x1e\x57\x7a\x07\x6d\xcb\x23\x10\xdf\x04\x9e\x6d\xf3\x47\xa4\xe9\x26\xbc\xaf\xd2\xa6\x81\x6c\xab\x8d\xfc\x81\x3e\x68\x67\xa1\x6d\x9f\xa2\x36\x0d\x5a\xd9\xb6\x93\xc9\x91\xfc\xc0\xea\xc0\xff\x9f\x7c\x62\x5d\x50\x09\x0f\xa4\x84\x75\x01\x52\x68\xe2\x5d\xf7\x33\x22\x43\x33\x87\xa6\x99\xde\x75\x52\xdb\x9e\x1d\x6d\xe8\x7d\x6f\xf9\xe2\xfd\xc9\xfd\xd0\x5e\x94\x1f\xa8\xb7\x7f\x3b\xea\x27\x7e\x99\x71\xf9\x63\xe8\x5d\x3e\xf6\xe2\x50\x30\xb4\xb7\xb1\xf0\x03\xc9\xa8\x4a\x5d\x81\x96\x29\x43\xef\x19\xe4\x46\x84\x90\xf6\x5c\x85\xb6\xe8\x19\x04\xda\x1b\x4c\x99\xd4\xa1\x34\x62\x3f\x07\xeb\x2c\xde\x8e\xfc\xc6\xf8\x21\x4c\x18\xf4\x04\xfd\x99\xd4\xc2\x5b\x6d\xd7\x0c\xbc\xeb\xe2\xfb\xcb\xae\xc3\x52\x57\xc3\xd0\xa2\x38\x79\x0e\x72\xc8\x9d\xac\xcc\x56\x4b\xd6\x17\xf7\xc9\x15\xa5\xc8\x49\x3b\x1b\x0e\x25\x29\xd4\x6b\x45\x73\x38\x9f\xcd\x5e\xdd\x42\xad\x25\xa9\x41\x39\xe4\x89\xe0\xff\x25\x49\x2c\xf7\xe1\xfe\xf3\xfd\xeb\x8d\x08\x88\x85\xc8\xb4\x7c\x33\x87\x07\x85\x60\x70\x8d\x56\x82\x0e\xe0\xac\xd9\x83\x80\x50\x08\x63\x80\xb0\x28\x9d\x17\x7e\x0f\xb5\xf3\x8f\xc2\xbb\xad\x95\x40\xda\x18\xa8\x11\x94\xa8\x10\x32\x24\x42\x0f\xb5\xd8\x07\x70\x2b\x08\xca\xd5\xda\xae\x81\x3a\xcc\x6e\xac\x61\x1a\xd3\x7e\x47\x84\x71\xb5\xd7\x9a\xd4\x36\xeb\xb7\x3a\x2e\x46\xa2\xdd\x20\x71\x1d\xc2\x16\x03\x3f\x7f\x7b\x79\xfd\x7f\x2f\xe7\xae\x28\xd0\x52\x72\x35\xbb\xbe\xbe\x39\xbf\x78\x77\x03\x2b\xe7\xe3\xf3\xda\x51\x04\x4f\x92\xe7\x73\x8c\x74\xfe\x1e\xe5\xd8\xce\x17\x07\x0a\xa5\x90\x52\xdb\x75\x42\xae\x9c\xc3\xd5\xac\xdc\x9d\xcc\x58\x5d\x2e\xe1\x2e\xb6\x69\xc1\xd5\xe5\x13\x0b\x89\xcc\xe0\x98\x2b\x2a\xfd\x99\x04\xf2\xba\x44\x39\x68\xca\x55\xe8\x47\x4b\xf1\x04\x3a\x82\x64\x4e\xee\x97\x0b\x1e\xff\x8f\xe0\xbc\x0f\x78\x61\x5d\x7a\x0e\x47\xc7\xae\x1d\x3f\xbb\x23\x11\x36\x57\xce\xa7\x81\x84\xa7\x5f\xd0\x9c\x90\x6c\x0f\xfe\x8a\x0a\x73\xd6\xe5\x82\xe6\x64\x89\xda\xf1\x81\x44\xf8\xf1\x23\xf0\x27\x00\x00\xff\xff\x6b\xa9\x29\xb6\x01\x05\x00\x00") +var _pkgUiTemplatesBucketHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x5f\x6f\xdb\x38\x0c\x7f\xcf\xa7\xe0\xe9\x70\xc0\x1d\x50\x47\xe9\xf5\x0f\xba\x34\xce\xb0\x7f\x6f\x05\x3a\x6c\xc5\x5e\x86\x3d\xc8\x16\x13\x29\x95\x25\x4f\x62\xec\x04\x86\xbf\xfb\x60\xcb\x4e\x9a\xae\x18\x86\xe5\x41\x26\x45\xf2\x47\xf2\x47\x31\x4d\x23\x71\xa5\x2d\x02\x53\x28\x24\x6b\xdb\x09\x00\xc0\xa2\x40\x12\xa0\x88\xca\x04\xbf\x6f\x75\x95\x32\x8f\x2b\x8f\x41\x31\xc8\x9d\x25\xb4\x94\xb2\x8b\xd9\x8c\xf1\xe5\x24\xfa\x87\xdc\xeb\x92\x80\xf6\x25\xa6\x8c\x70\x47\x7c\x23\x2a\x11\x6f\x19\x04\x9f\xa7\xac\x43\x0b\x73\xce\xeb\xba\x9e\xae\x03\x09\xd2\xf9\x34\x77\x05\xcf\x95\xf0\x14\xb8\x71\x42\xa2\x9f\x6e\x02\x5b\x2e\x78\x0c\x5c\x9e\x60\xf7\x20\x4d\x03\xa5\x20\xf5\xd1\xe3\x4a\xef\xa0\x6d\x79\x04\xe2\x9b\xc0\xb3\x6d\xfe\x88\x34\xdd\x84\xd7\x55\xda\x34\x90\x6d\xb5\x91\x5f\xd0\x07\xed\x2c\xb4\xed\x1f\xa1\x56\x68\xa5\xf3\xbc\x70\x05\x5a\x1a\x3e\xd3\x42\xdb\xdf\x49\xd2\x34\x68\x65\xdb\x4e\x26\x47\x86\x07\xea\x0e\x24\xff\x92\xb4\x58\x26\x54\xc2\x03\x29\x61\x5d\x80\x14\x9a\x78\xd7\xfd\x8c\xc8\xd0\xcc\xa1\x69\xa6\x77\x9d\xd4\xb6\x67\x47\x1b\x7a\xdf\x5b\x3e\x78\x7f\x72\x3f\xcc\x10\xe5\x1b\xea\xed\x9f\x8e\xfa\x89\x5f\x66\x5c\xfe\x18\x7a\x97\xb7\xbd\x38\x14\x0c\xed\x6d\x2c\xfc\xd0\x64\x54\xa5\xae\x40\xcb\x94\xa1\xf7\x0c\x72\x23\x42\x48\xfb\x5e\x85\xb6\xe8\x19\x04\xda\x1b\x4c\x99\xd4\xa1\x34\x62\x3f\x07\xeb\x2c\xde\x8e\xfd\x8d\xf1\x43\x98\x30\xe8\x09\xfa\x33\xa9\x85\xb7\xda\xae\x19\x78\xd7\xc5\xf7\x97\x1d\xc3\x52\x57\xc3\x0c\xa3\x38\x79\x0e\x72\xc8\x9d\xac\xcc\x56\x4b\xd6\x17\xf7\xce\x15\xa5\xc8\x49\x3b\x1b\x0e\x25\x29\xd4\x6b\x45\x73\x38\x9f\xcd\xfe\xb9\x85\x5a\x4b\x52\x83\x72\xc8\x13\xc1\xff\x4a\x92\x58\xee\xc3\xfd\xfb\xfb\x7f\x37\x22\x20\x16\x22\xd3\xf2\xbf\x39\x3c\x28\x04\x83\x6b\xb4\x12\x74\x00\x67\xcd\x1e\x04\x84\x42\x18\x03\x84\x45\xe9\xbc\xf0\x7b\xa8\x9d\x7f\x14\xde\x6d\xad\x04\xd2\xc6\x40\x8d\xa0\x44\x85\x90\x21\x11\x7a\xa8\xc5\x3e\x80\x5b\x41\x50\xae\xd6\x76\x0d\xd4\x61\x76\x63\x0d\xd3\x98\xf6\x33\x22\x8c\xfb\xb3\xd6\xa4\xb6\x59\xbf\x3a\xf1\x61\x24\xda\x0d\x12\xd7\x21\x6c\x31\xf0\xf3\xff\x2f\xaf\xff\xee\xe5\xdc\x15\xdd\xa3\x4d\xae\x66\xd7\xd7\x37\xe7\x17\xaf\x6e\x60\xe5\x7c\xdc\xe1\x1d\x45\xf0\x24\x79\x3e\xc7\xd8\xce\xcf\xa3\x1c\xe9\x7c\x71\xa0\x50\x0a\x29\xb5\x5d\x27\xe4\xca\x39\x5c\xcd\xca\xdd\xc9\x8c\xd5\xe5\x12\xee\x22\x4d\x0b\xae\x2e\x9f\x58\x48\x64\x06\xc7\x5c\x51\xe9\xcf\x24\x90\xd7\x25\xca\x41\x53\xae\x42\x3f\x5a\x8a\x27\xd0\x11\x24\x73\x72\xbf\x5c\xf0\xf8\x3d\x82\xf3\x3e\xe0\x85\xe7\xd2\xf7\x70\x74\xec\xe8\xf8\xda\x1d\x89\xb0\xb9\x72\x3e\x0d\x24\x3c\x7d\x83\xe6\xa4\xc9\xf6\xe0\xaf\xa8\x30\x67\x5d\x2e\x68\x4e\x1e\x51\x3b\x2e\x48\x84\x1f\xff\x04\x7e\x04\x00\x00\xff\xff\x08\x9b\xec\x1f\x66\x05\x00\x00") func pkgUiTemplatesBucketHtmlBytes() ([]byte, error) { return bindataRead( @@ -211,7 +211,7 @@ func pkgUiTemplatesBucketHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/bucket.html", size: 1281, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/bucket.html", size: 1382, mode: os.FileMode(420), modTime: time.Unix(1586527900, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -231,7 +231,7 @@ func pkgUiTemplatesBucket_menuHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/bucket_menu.html", size: 787, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/bucket_menu.html", size: 787, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -251,7 +251,7 @@ func pkgUiTemplatesGraphHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/graph.html", size: 2298, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/graph.html", size: 2298, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -271,7 +271,7 @@ func pkgUiTemplatesQuery_menuHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/query_menu.html", size: 1682, mode: os.FileMode(420), modTime: time.Unix(1581497472, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/query_menu.html", size: 1682, mode: os.FileMode(420), modTime: time.Unix(1586527877, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -291,7 +291,7 @@ func pkgUiTemplatesRule_menuHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/rule_menu.html", size: 963, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/rule_menu.html", size: 963, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -311,7 +311,7 @@ func pkgUiTemplatesRulesHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/rules.html", size: 1944, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/rules.html", size: 1944, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -331,12 +331,12 @@ func pkgUiTemplatesStatusHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/status.html", size: 1272, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/status.html", size: 1272, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiTemplatesStoresHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x41\x6b\xeb\x38\x10\xbe\xe7\x57\x0c\xa2\xd7\xc4\xd0\xcb\xc2\xe2\x78\x59\x96\xc2\x1e\xda\xf2\x20\x7d\xbd\x3e\x14\x6b\x12\x8b\x2a\x92\x91\xc6\x6d\x82\xd0\x7f\x7f\xc8\xb1\x13\xb9\x76\xd2\xf4\x5d\x0c\x1a\xcd\xcc\x37\x9e\xef\x9b\xb1\xbd\x17\xb8\x91\x1a\x81\x55\xc8\x05\x0b\x61\x96\x2b\xa9\xdf\x80\x0e\x35\x2e\x19\xe1\x9e\xb2\xd2\x39\x06\x16\xd5\x92\x39\x3a\x28\x74\x15\x22\x31\xa8\x2c\x6e\x96\xcc\x7b\xa8\x39\x55\x3f\x2c\x6e\xe4\x1e\x42\xc8\x1c\x71\x92\x65\x8c\xc9\x6c\xa3\xd0\x2d\x4a\xe7\xfe\x79\x5f\x7a\x0f\xeb\x46\x2a\xf1\x8a\xd6\x49\xa3\x21\x04\x56\xcc\xbc\x47\x2d\x42\x98\xcd\xce\x45\x94\x46\x13\x6a\x6a\xeb\x10\xf2\x1d\x4a\xc5\x9d\x5b\xb6\x66\x2e\x35\xda\xf9\x46\x35\x52\xb0\x62\x06\x00\xe0\xbd\xe5\x7a\x8b\x70\xe7\xc8\x58\x7c\x39\xd4\x08\x7f\x2f\x61\xb1\x32\x8d\x2d\xd1\x85\xd0\x39\xc9\x4d\xe2\xd1\x59\xf3\xea\xbe\xf0\x9e\x24\xa9\x34\x7c\xb1\x22\x2b\xf5\x36\x84\x3c\xab\xee\x7b\x0c\x54\x2e\x8d\xfa\xa9\xdf\xb4\xf9\xd0\x10\xfd\x07\x6e\xed\xab\xb4\x5e\xc4\xd7\x0a\xfb\xd2\x8f\x87\xf6\x39\x5f\x1b\x2b\xd0\x62\x5f\xff\xd1\x39\xf6\x3d\x3d\xdb\xf3\xa1\x73\x28\x1e\xb4\xa8\x8d\xd4\x94\x67\x54\x8d\x6f\x57\xc4\xa9\x71\xd3\x77\xff\x6a\x6d\x1a\x5d\xa2\x80\x47\xbe\x46\xb5\x42\xba\xe0\xf8\x24\x35\xbc\xc8\x1d\x5e\xb8\xe5\xfb\x2b\xb7\x8f\xdc\x11\xfc\x8f\x5c\x51\x05\xff\x55\x58\xbe\x5d\x71\x7b\x42\xe7\xf8\xf6\x53\xa2\x3c\x4b\xdf\x3a\xde\x7d\xea\xc9\xda\x88\xc3\xf9\x3c\xe4\x3d\x72\x2e\xb5\xc0\x3d\xdc\x2d\x56\xd1\xe0\xc6\x74\x5f\xe8\xac\x28\xbc\x3f\xfa\x2e\x9e\xf9\x0e\x23\xef\x24\x46\x4e\x3d\x93\x51\xda\xc8\x86\xd7\xd0\x2b\x4c\x1b\xea\x60\x17\xf1\x3d\x1f\xac\x35\x36\x01\x3f\xa5\x73\x35\xd7\x7d\x42\xae\xd0\x12\xb4\xcf\xb9\x6b\xca\x12\x9d\x83\x16\xe4\x97\xd4\x42\x96\x9c\x8c\x85\x38\x81\xf3\xa6\xae\xd1\x96\xdc\x21\x2b\x9a\x3a\xcf\x62\x8e\xa9\x32\x12\xa5\xde\x84\x29\x62\x17\xed\x97\x90\xc2\x7c\xe8\x2b\xa0\x27\xdd\x27\xfc\x8d\x9b\x38\x0e\xfd\xd6\x98\x9c\x83\x86\x52\x38\xd7\xd1\x49\x42\xf5\x32\x8f\xb2\x38\x11\xd2\xd9\xa6\x9a\xf3\x59\x15\x57\x6b\x1e\x43\xb5\x30\x27\xd0\x23\xd4\x14\xce\x29\x6d\x4a\xc6\x9a\x8b\x2d\x42\xfb\x9c\xd7\x56\xee\xb8\x3d\xb0\x28\xc9\x36\x5f\x27\xc9\xb8\x63\x3b\xc3\x2b\x57\x0d\x86\xc0\x2e\x91\x01\x17\x08\x39\x61\x8f\x88\x81\xd1\xf0\x7d\x95\x27\xcf\x2e\x30\x90\x67\x2d\x79\xc5\x0d\x52\xf0\x7e\x63\xec\x8e\x53\xdc\x28\x8e\xf8\xae\xee\x89\x7a\x92\x3a\xda\x2e\xcc\xe1\x95\x38\xbe\xbf\x1e\xe7\xa4\x2e\x31\x9d\xcf\x76\x4d\x85\x00\x7c\x6b\x6e\x94\x6b\xf2\x1d\xb9\x3a\xe1\xf0\xfd\x89\x9b\xd0\xf9\x11\xf1\x56\xb8\x3f\x1e\xce\x21\xf7\xa3\x0d\x32\xb5\x32\xa1\x34\x2a\xc2\x2d\xd9\x5f\x13\x75\x3f\x1b\x70\xc7\x1d\x6c\x71\x2b\x1d\xc5\x31\xfe\x0e\xfe\xa0\xde\x81\xd6\x06\xfa\x1a\x57\xba\x4e\x3f\x20\xc9\x9f\x43\xda\xfd\x0f\x6e\xb5\xd4\x5b\x56\x4c\x55\x99\x67\x42\xbe\x0f\x3f\xe6\x9d\xa9\x3f\xfe\x0e\x00\x00\xff\xff\xf7\x7e\x17\x21\x2b\x09\x00\x00") +var _pkgUiTemplatesStoresHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x41\x6b\xeb\x38\x10\xbe\xe7\x57\x0c\xa2\xd7\xc4\xd0\xcb\xc2\xe2\x78\x59\x96\xc2\x1e\xda\xf2\x20\x7d\xbd\x3e\x14\x6b\x12\x8b\x2a\x92\x91\xc6\x6d\x82\xd0\x7f\x7f\xc8\xb1\x13\xb9\x76\xd2\xf4\x5d\x0c\x1a\xcd\xcc\x37\x99\xef\x9b\x51\xbc\x17\xb8\x91\x1a\x81\x55\xc8\x05\x0b\x61\x96\x2b\xa9\xdf\x80\x0e\x35\x2e\x19\xe1\x9e\xb2\xd2\x39\x06\x16\xd5\x92\x39\x3a\x28\x74\x15\x22\x31\xa8\x2c\x6e\x96\xcc\x7b\xa8\x39\x55\x3f\x2c\x6e\xe4\x1e\x42\xc8\x1c\x71\x92\x65\x8c\xc9\x6c\xa3\xd0\x2d\x4a\xe7\xfe\x79\x5f\x7a\x0f\xeb\x46\x2a\xf1\x8a\xd6\x49\xa3\x21\x04\x56\xcc\xbc\x47\x2d\x42\x98\xcd\xce\x45\x94\x46\x13\x6a\x6a\xeb\x10\xf2\x1d\x4a\xc5\x9d\x5b\xb6\x66\x2e\x35\xda\xf9\x46\x35\x52\xb0\x62\x06\x00\xe0\xbd\xe5\x7a\x8b\x70\xe7\xc8\x58\x7c\x39\xd4\x08\x7f\x2f\x61\xb1\x32\x8d\x2d\xd1\x85\xd0\x39\xc9\x4d\xe2\xd1\x59\xf3\xea\xbe\xf0\x9e\x24\xa9\x34\x7c\xb1\x22\x2b\xf5\x36\x84\x3c\xab\xee\x7b\x0c\x54\x2e\x8d\xfa\xa9\xdf\xb4\xf9\xd0\x10\xfd\x07\x6e\xed\x4f\x69\xbd\x88\xaf\x15\xf6\xa5\x1f\x0f\xed\x77\xbe\x36\x56\xa0\xc5\xbe\xfe\xa3\x73\xec\x7b\x7a\xb6\xe7\x43\xe7\x50\x3c\x68\x51\x1b\xa9\x29\xcf\xa8\x1a\xdf\xae\x88\x53\xe3\xa6\xef\xfe\xd5\xda\x34\xba\x44\x01\x8f\x7c\x8d\x6a\x85\x74\xc1\xf1\x49\x6a\x78\x91\x3b\xbc\x70\xcb\xf7\x57\x6e\x1f\xb9\x23\x58\x35\x65\x89\xce\x6d\x1a\x05\xff\x23\x57\x54\xc1\x7f\x15\x96\x6f\x57\x22\x9e\xd0\x39\xbe\xfd\x94\x33\xcf\xd2\x06\xc4\xbb\x4f\xed\x59\x1b\x71\x38\x9f\x87\x12\x88\xf4\x4b\x2d\x70\x0f\x77\x8b\x55\x34\xb8\x31\xf3\x17\x9a\x2c\x0a\xef\x8f\xbe\x8b\x67\xbe\xc3\x28\x01\x12\x23\xa7\x9e\xd4\xa8\x72\x64\xc3\x6b\xe8\xc5\xa6\x0d\x75\xb0\x8b\xf8\x3b\x1f\xac\x35\x36\x01\x3f\xa5\x73\x35\xd7\x7d\x42\xae\xd0\x12\xb4\xdf\xb9\x3b\x76\x12\x5a\x90\x5f\x52\x0b\x59\x72\x32\x16\xe2\x30\xce\x9b\xba\x46\x5b\x72\x87\xac\x68\xea\x3c\x8b\x39\xa6\xca\x48\x44\x7b\x13\xa6\x88\x5d\xb4\x5f\x42\x0a\xf3\xa1\xaf\x80\x9e\x46\x20\xe1\x6f\xdc\xc4\x71\xe8\xb7\x26\xe6\x1c\x34\x94\xc2\xb9\x8e\x4e\x12\xaa\x57\x7c\x94\xc5\x89\x90\xce\x36\xd5\x9c\xcf\xaa\xb8\x5a\xf3\x18\xaa\x85\x39\x81\x1e\xa1\xa6\x70\x4e\x69\x53\x32\xd6\x5c\x6c\x11\xda\xef\xbc\xb6\x72\xc7\xed\x81\x45\x49\xb6\xf9\x3a\x49\xc6\x75\xdb\x19\x5e\xb9\x6a\x30\x04\x76\x89\x0c\xb8\x40\xc8\x09\x7b\x44\x0c\x8c\x86\xef\xab\x3c\x79\x76\x81\x81\x3c\x6b\xc9\x2b\x6e\x90\x82\xf7\x1b\x63\x77\x9c\xe2\x72\x71\xc4\x77\x75\x4f\xd4\x93\xd4\xd1\x76\x61\x0e\xaf\xc4\xf1\xfd\xf5\x38\x27\x75\x89\xe9\x7c\xb6\x6b\x2a\x04\xe0\x5b\x73\xa3\x5c\x93\x27\xe5\xea\x84\xc3\xf7\x27\x6e\x42\xe7\x47\xc4\x5b\xe1\xfe\x78\x38\x87\xdc\x8f\x36\xc8\xd4\xca\x84\xd2\xa8\x08\xb7\x64\x7f\x4d\xd4\xfd\x6c\xc0\x1d\x77\xb0\xc5\xad\x74\x14\xc7\xf8\x3b\xf8\x83\x7a\x07\x5a\x1b\xe8\x6b\x5c\xe9\x3a\x7d\x40\x92\x3f\x11\x69\xf7\x3f\xb8\xd5\x52\x6f\x59\x31\x55\x65\x9e\x09\xf9\x3e\x7c\xd7\x3b\x53\x7f\xfc\x1d\x00\x00\xff\xff\xff\x5c\x1c\xa9\x36\x09\x00\x00") func pkgUiTemplatesStoresHtmlBytes() ([]byte, error) { return bindataRead( @@ -351,7 +351,7 @@ func pkgUiTemplatesStoresHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/stores.html", size: 2347, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/stores.html", size: 2358, mode: os.FileMode(420), modTime: time.Unix(1586527900, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -371,7 +371,7 @@ func pkgUiStaticCssAlertsCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/css/alerts.css", size: 401, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/css/alerts.css", size: 401, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -391,7 +391,7 @@ func pkgUiStaticCssGraphCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/css/graph.css", size: 3844, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/css/graph.css", size: 3844, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -411,7 +411,7 @@ func pkgUiStaticCssPrometheusCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/css/prometheus.css", size: 470, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/css/prometheus.css", size: 470, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -431,7 +431,7 @@ func pkgUiStaticCssRulesCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/css/rules.css", size: 195, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/css/rules.css", size: 195, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -451,7 +451,7 @@ func pkgUiStaticImgAjaxLoaderGif() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/img/ajax-loader.gif", size: 847, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/img/ajax-loader.gif", size: 847, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -471,7 +471,7 @@ func pkgUiStaticImgFaviconIco() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/img/favicon.ico", size: 15886, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/img/favicon.ico", size: 15886, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -491,12 +491,12 @@ func pkgUiStaticJsAlertsJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/js/alerts.js", size: 2637, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/js/alerts.js", size: 2637, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiStaticJsBucketJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4d\x6f\xe3\x36\x13\xbe\xfb\x57\xcc\xfa\x35\x20\x09\xeb\x57\x76\x80\x9e\xe2\x28\xc0\x36\xbb\x87\x16\x8b\xa6\xd8\xe4\xd4\x20\x80\x69\x71\x64\xb1\xa6\x48\x95\x1c\xc5\xf1\x1a\xfa\xef\x05\x29\xc9\x96\x1d\x25\x9b\x2d\xe1\x83\x45\x72\x9e\xf9\x7a\x38\x33\x6b\xad\xd7\x12\xe3\x34\x67\x86\x6c\x2c\x35\xe3\x61\x90\x56\xc6\xa0\xa2\x60\x0a\xfb\x11\x00\x40\x50\xb2\x74\xc3\xd6\x68\x83\x4b\x78\x08\x48\x14\x28\x85\xc2\xe0\x71\x54\x47\x8b\xd1\x29\x80\x45\xba\x55\x5f\x35\xe3\x37\x4c\xca\x15\x4b\x37\x21\x37\x6c\x1b\x2d\x46\xa3\xac\x52\x29\x09\xad\xc0\x6d\x84\x51\x0b\x2d\x32\x08\x29\x67\x4a\xdb\xd8\x60\x66\xd0\xe6\xc8\x3f\x11\x24\x09\x8c\xe7\xf3\xf9\xc5\xff\xfd\xef\x7e\x3e\xbf\xf4\xbf\xbf\xc6\x9d\x9c\x5b\xad\x1c\x1a\x03\x09\x8c\xef\x76\x2a\xcd\x8d\x56\xe2\xbb\x50\x6b\x58\x49\x9d\x6e\x2c\x64\x46\x17\x60\xb0\xd0\x84\x60\x49\x1b\xb6\xc6\xf1\xc2\x03\xd4\xa3\x73\xfd\x0e\xe7\x43\x02\xaa\x92\xb2\xaf\x65\x12\x8e\xff\x87\xc6\x8c\xa3\xd8\xe6\x7a\x1b\x46\x71\x26\x14\x0f\x83\x98\x49\x34\x14\x44\x31\xe1\x33\x85\xbf\xdf\xdd\xfe\x11\x5b\x32\x42\xad\x45\xb6\xeb\x21\x4e\x3d\xde\x14\x7e\x89\xa2\xc5\x01\xd2\x22\xdd\x8b\x02\x75\x45\x61\x17\x95\xb0\xaf\xd2\x2d\xa9\x53\xe6\x0e\x62\x83\x3e\x29\x3d\xf1\x7a\x0a\x17\xf3\xf9\x7c\xee\xa2\xea\xbf\x01\xa5\xc5\x41\x93\x73\xc1\x31\xec\xee\xb9\xf5\xc4\x0c\xa4\x5a\x11\x13\x0a\x5d\xd8\xb8\x4e\xab\x02\x15\xc5\x6b\xa4\x2f\x12\xdd\xdf\x5f\x77\xbf\xf1\x30\xb8\xd1\x45\xc9\xbc\x69\x36\xe8\xe9\xf6\xf2\x2e\xd5\x90\x80\xc2\x2d\xb4\xd9\x7f\x12\xb6\x62\x52\x7c\x6f\x4c\xbe\x6f\x19\x12\x1e\x34\x9d\x21\x70\x46\xec\x9e\xad\x24\xbe\x85\xf2\xb9\xbb\x14\x9e\x49\x93\x20\x89\x16\x12\xd8\xd7\x3d\xcf\x0e\x98\x31\xe3\xfc\x46\xcb\xaa\x50\xe1\x9e\x76\x25\x5e\x42\xd0\x64\x26\x98\x82\xe0\x97\x10\x7c\xc3\x52\x8a\x94\x05\x75\x0f\xf7\xfd\xd2\x5f\xd9\x0a\xe5\xbb\x65\x39\x23\xec\x24\xef\x88\x19\xfa\x4f\x92\x5f\x14\xf7\x72\xc3\x82\xdf\xf4\xd6\x76\x94\x6b\x78\x7f\xc2\xa4\xb8\x60\xe5\x91\x67\xfc\x9c\x68\x6e\xcd\x66\x70\xef\x82\x0a\xc2\x02\xe5\x08\x99\x30\x96\x20\xf5\x06\x81\xce\xfc\x5e\xf7\xec\xe3\x01\xe9\x21\xc0\x4f\x50\x29\xf1\x4f\x85\xf0\xa7\xd1\x05\x52\x8e\x95\x05\xe9\x62\xe7\xde\x2d\x81\xe0\xa8\x48\x64\x02\x2d\x20\x4b\x73\xb0\x39\x33\xdc\xe9\xaf\x2c\xf2\x21\x3c\x66\x5b\x33\xbc\x9d\x19\x94\x06\x2d\x2a\x9a\x82\xa6\x1c\xcd\x56\x58\x04\x26\x65\xa3\xc2\x02\x33\x08\x5c\xd8\x52\xb2\xdd\x30\x1c\x3e\x13\x1a\xc5\xa4\xdc\x39\x64\x06\x12\xd7\xa8\xf8\x4b\xe7\x1a\x7d\x09\xbc\xfa\x50\xbb\xd5\xab\x24\x8d\x9b\x1f\x12\x18\x8f\x5f\xbb\x0d\x2d\x97\x37\xb8\x73\xaf\x30\xee\x4b\xda\x87\xfe\xd7\xe3\xe2\x55\x00\xa7\xd2\x03\x24\x50\x29\x8e\x99\x50\x38\x98\xde\x13\x7f\x72\xa3\xb7\xb0\xf4\x2c\x86\xc9\xbe\xaf\xa9\x06\xa5\x09\x32\x5d\x29\x0e\x42\xc1\x64\x7f\xbb\xfa\x1b\x53\x8a\x37\xb8\xb3\xe1\x99\x89\x51\xbd\x7c\xdd\xae\x17\x05\x69\x68\x19\xa4\xca\x28\x17\x80\x37\x80\x06\x4f\x7e\x08\xdf\xe5\xac\x29\x14\x0f\xc7\xba\x7c\xee\xc4\x0f\x62\xdb\xe2\xfc\x4c\x74\x5b\xcd\x77\x5e\x65\xd8\x0f\x60\x63\x4c\x14\x4b\x54\x6b\xca\xe1\x23\x5c\x44\xaf\x6b\x3f\x60\xbd\x69\x7d\xe7\xe2\xcf\x06\x10\x8e\xe1\x7f\x43\xfe\xa5\x6c\x7d\xd2\x4a\xba\xd5\xb0\x3d\x81\xa5\xbc\x84\xc9\x9e\xc7\xe9\xa1\x73\xc4\x12\x9f\x50\xd6\x53\x30\x68\x9b\xb3\xd6\x01\xae\xb7\xca\xb2\xa2\x94\x18\x1b\xb4\x5a\x56\xee\xf6\x10\xa3\x5a\x2b\x1f\xbc\x99\xd3\x46\xd5\xd4\xb7\x8c\xcf\x8c\x30\xe4\x71\x21\x94\xeb\x36\xd1\xe9\x26\x7b\xf6\x9b\x67\xe9\xad\xa3\xbe\xf9\xbe\x8b\xc5\x7e\x18\x39\x54\xd3\xfe\xf9\x6c\x06\x77\xb9\xde\x1e\x0a\x45\x5b\x21\x1c\x31\x94\xee\xed\x36\xf5\x66\x8b\x06\x5d\x5f\x3f\x16\x90\x17\xf5\x20\x19\xaa\x07\xae\x55\x37\xc0\x87\x01\xe3\xd4\xe8\x4c\x1b\x08\x25\x12\x3c\x6c\x70\x37\x85\x27\x26\x2b\x7c\x74\x35\xb9\xe5\x16\x2a\x32\x02\x0f\xf4\x1a\x22\xa8\x7b\xf0\x09\x2c\xaf\xc8\x5c\xc3\x15\xe5\x60\x53\x5d\x62\x32\x36\x7a\x3b\xbe\x9e\xec\x3d\x62\x7d\x35\xa3\xdc\x9d\xf2\xeb\xc9\x7e\x83\x3b\xf7\xcd\xaf\xe1\x6a\x46\xe6\x7a\x20\x2d\x47\xab\x81\x7c\x1b\xa7\x95\xe6\xbb\x71\x14\xb3\xb2\x44\xc5\x43\xa3\xb7\x67\x6e\x1c\xc9\x54\xb7\xe3\x57\xdd\x1b\x09\x8f\x1c\x2f\x58\xd9\xb9\xe0\x5b\xbd\x9b\xec\xda\x89\xed\xbd\x91\x70\x10\x27\x63\x22\x7c\x4c\x60\xd9\xb8\xe5\x58\xd8\x38\x0c\xcb\x6e\x0e\xec\xf1\x8c\x16\xa3\x7a\xf4\x6f\x00\x00\x00\xff\xff\x46\xd5\x4b\x47\x12\x0b\x00\x00") +var _pkgUiStaticJsBucketJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x57\x5f\x6f\xe2\x3a\x16\x7f\xef\xa7\x38\x93\x1d\x5d\x12\x15\x52\x46\x5a\xed\x43\x0b\x48\x77\x3b\x23\xed\x5d\x75\x67\x56\xd3\x3e\x6d\x35\x52\x4d\x7c\x20\x5e\x1c\x9b\xb5\x9d\x32\x4c\xc5\x77\x5f\xd9\x8e\x83\x09\x81\xcb\xdc\x1b\x21\x44\xec\x73\x7e\xe7\xff\x1f\x96\x52\x2e\x39\xe6\x45\x49\x94\xd1\x39\x97\x84\xa6\x83\xa2\x56\x0a\x85\x19\x0c\xe1\xed\x0a\x00\x60\xb0\x26\xc5\x8a\x2c\x51\x0f\x6e\xe1\x79\x60\x58\x85\x9c\x09\x1c\x7c\xbb\xda\x65\x77\x57\x87\x00\x1a\xcd\x17\xf1\x20\x09\xbd\x27\x9c\xcf\x49\xb1\x4a\xa9\x22\x9b\xec\xee\xea\x6a\x51\x8b\xc2\x30\x29\xc0\x1e\xa4\x59\x03\xcd\x16\x90\x9a\x92\x08\xa9\x73\x85\x0b\x85\xba\x44\xfa\xab\x81\xe9\x14\x92\xf1\x78\xfc\x61\xe4\x3e\x4f\xe3\xf1\xad\xfb\xfc\x27\x09\x7c\xf6\x69\xf8\x50\x29\x98\x42\xf2\xb8\x15\x45\xa9\xa4\x60\x3f\x98\x58\xc2\x9c\xcb\x62\xa5\x61\xa1\x64\x05\x0a\x2b\x69\x10\xb4\x91\x8a\x2c\x31\xb9\x73\x00\x3b\xf7\x8d\x5c\xa3\xd3\xe1\x5d\x04\xf6\xcb\x2f\x01\xda\xa3\xe4\x1c\xc5\xd2\x94\x56\xa9\xf1\x69\xf9\x9f\x65\x10\x4a\x14\x42\xe3\x42\xbe\x05\xeb\x52\xa4\xad\xd4\xae\xd5\x96\xfb\xdd\x14\x44\xcd\x79\x8c\xfd\x3e\x4d\xfe\x82\x4a\x25\x59\xae\x4b\xb9\x49\xb3\x7c\xc1\x04\x4d\x07\x39\xe1\xa8\xcc\x20\xcb\x0d\x7e\x37\xe9\x3f\x1f\xbf\x7c\xce\xb5\x51\x4c\x2c\xd9\x62\x1b\x21\x0e\x1d\xde\x10\xfe\x9a\x65\x77\x2d\xa4\x46\xf3\xc4\x2a\x94\xb5\x49\x43\x2c\xd2\x58\xa4\x7d\xb8\x2c\x88\xbd\xc8\x15\xba\x54\x88\xd8\x77\x43\xf8\x30\x1e\x8f\xc7\x36\x96\xee\xdd\x3b\xaf\x4f\xe5\x92\x51\x4c\x03\x9d\x7d\x5e\x89\x82\x42\x0a\x43\x98\x40\xeb\x2c\x2a\x8b\xba\x42\x61\xf2\x25\x9a\x4f\x1c\xed\xcf\xbf\x6f\x7f\xa3\xe9\xe0\x5e\x56\x6b\xe2\x54\xd3\x83\x48\xb6\xe3\xb7\x09\x06\x53\x10\xb8\x81\x26\xe7\x5e\x99\xae\x09\x67\x3f\xbc\xca\x4f\x4d\x5e\xa6\xad\xa4\x0e\x02\x25\x86\x3c\x91\x39\xc7\x73\x28\x1f\x03\x51\xda\xe1\x36\xcc\x70\xd4\x30\x85\xb7\x5d\x64\x59\x8b\x99\x13\x4a\xef\x25\xaf\x2b\x91\xbe\x99\xed\x1a\x6f\x61\xe0\x23\x33\x18\x02\xa3\xb7\x30\xf8\x8a\x6b\xce\x0a\x32\xd8\x45\xb8\x97\x73\x3f\x90\x39\xf2\x9f\xe7\x55\x92\xdb\x77\x23\x25\x37\x6c\x7d\x31\x3f\x25\x06\x83\xe4\x47\x43\x94\xf9\x43\x9c\x9f\x04\x75\x7c\xfd\x8c\x5f\xe5\x46\xa7\x07\x75\x76\x90\x89\xb9\x96\xca\xa4\x29\x19\xc2\x3c\x83\xe9\x0c\x48\xde\xd0\x52\xb9\x11\x9a\x54\x6b\x8e\xb9\x42\x2d\x79\xed\x9a\xca\x08\xe6\x67\x09\xb2\x43\xf0\x8a\xac\xf7\x45\x40\xbb\x55\x60\x9f\x9b\x1b\x78\xb2\x11\x07\xa6\xc1\x94\x08\x0b\xa6\xb4\x81\xc2\x59\x0b\x72\xe1\xce\x42\x27\xcc\x7b\xb8\xfb\x00\x7f\x85\x5a\xb0\xff\xd5\x08\xff\x56\xb2\x42\x53\x62\xad\x81\xdb\xc0\xda\x56\x62\x80\x51\x14\x86\x2d\x18\x6a\x40\x52\x94\xa0\x4b\xa2\xa8\x95\x5f\x6b\xa4\x7d\x78\x44\x37\x6a\x38\x3d\x17\xb0\x56\xa8\x51\x98\x21\x48\x53\xa2\xda\x30\x8d\x1e\xde\xb7\x24\xca\xf4\x9a\x93\x6d\x3f\x14\x7e\x37\xa8\x04\xe1\x7c\x6b\x51\x09\x70\x5c\xa2\xa0\xc7\x86\x79\x59\x53\x38\xd9\x41\xc2\x63\x4b\x66\x85\x5b\x98\x86\x36\xe9\x0d\x7d\x37\x85\x24\xb1\x1d\x96\xe6\xf1\xb9\x7e\x8e\xdf\xbe\x45\x39\x13\x3f\xb6\x6d\xae\x70\x7b\x4a\xa4\x7d\x14\x9a\x5a\x09\x2b\xf9\xae\x97\xe6\xa8\x6b\x9d\x32\xd0\x97\xfb\xf3\xbe\xbb\x76\x14\xce\xbe\xf5\x0b\x08\x7a\x36\x38\x53\xa8\x05\xc5\x05\x13\xd8\x9b\x65\x7d\x92\x1f\x9d\xc8\xf4\xcb\xfc\xbf\x58\x98\x7c\x85\x5b\xed\xc1\x74\x16\x06\xd1\x35\x7c\xc8\x4e\x4b\x6f\xb1\xce\x6a\x1f\x4c\x3c\x8d\xb3\xfb\x3d\x27\x9f\xe1\x3f\xe6\xdd\x1d\x0c\x84\xf0\xf8\xa4\x98\xc2\x0b\xc7\x57\xe4\xb7\xf0\xfe\x8d\xe6\x45\x3b\x03\x72\x77\xba\x1b\xc2\xbe\x8e\x3d\xc9\xb9\x4a\xdf\xbd\x1c\xab\xd4\x28\xfc\xec\x34\x1e\x7a\xa9\x43\x58\xa2\x40\x45\x0c\x3e\xf9\xee\x98\xd2\x6c\xe8\xe6\xc2\x47\x62\x30\xa5\x79\xc5\x84\x1d\x29\x9d\x43\xf2\xdd\x1d\x76\xa2\xbf\xcb\x62\xeb\xdc\xa8\xca\xdd\x9e\xd3\xb6\xbc\xf8\xfe\xe6\x06\x1e\x4b\xb9\x69\x8b\xae\xa9\x36\x9b\x37\x42\x46\xa7\xbe\x76\x37\xa8\xd0\x0e\xef\x7d\x31\x46\xeb\x43\xe3\x40\x5b\x55\xdd\xfc\xb2\xf3\xd8\x03\xb7\x5b\xc4\xa1\xd2\x0b\xa9\x20\xe5\x68\xe0\x79\x85\xdb\x21\xbc\x12\x5e\xe3\x37\xdb\xdb\x9a\xd4\x43\x61\x14\xc3\x36\xfb\xfa\xf2\x57\xc9\x8d\x8d\xde\xc4\xa8\x19\x4c\x4c\x09\xba\x90\x6b\x9c\x26\x4a\x6e\x92\xd9\xfb\x37\x87\xb8\x9b\xdc\x98\xd2\xde\xd2\xd9\xfb\xb7\x15\x6e\xed\x3b\x9d\xc1\xe4\xc6\xa8\x59\x4f\xa8\xf6\x5a\x83\x71\xb3\xda\xcc\x25\xdd\x26\x59\x4e\xd6\x6b\x14\x34\x55\x72\xd3\x31\x63\x9f\x6b\xbb\x66\xc7\xda\x45\xdb\xe6\xbe\x04\x2a\xb2\x0e\x26\xb8\x79\x6e\x97\xb6\x66\x2d\xbb\xd4\x13\x16\xe2\x60\x03\x84\xeb\x29\xbc\x78\xb3\x6c\x66\x7a\x83\xe1\x25\x5e\x31\x43\xb1\xdc\x1d\xa8\xd5\xcd\x3d\x37\x01\x0f\xd4\xf3\x17\xf1\xb2\x54\x28\x24\x06\x9b\x7d\x29\x4d\x28\x7b\x4d\x1a\x57\x34\xc4\x79\xc1\x89\xd6\x9f\x49\x65\xdb\x48\x52\x10\x65\xd7\xce\xab\x3d\x64\xd3\x60\x4e\x01\x96\x7f\x6b\xf1\x2c\xe5\x31\xda\xa8\x44\x42\x51\x81\x5d\x3e\x47\x42\x6e\x14\x59\x27\x31\x03\x13\x02\xd5\x3f\x9e\xfe\xf5\x00\x53\xbf\x0b\xe7\x35\x67\xf4\x6e\xaf\x01\x13\x0b\x79\x46\x81\x9a\x07\x05\x2c\xe1\xa1\x7c\xce\xb4\x19\x2d\x95\xac\xd7\xb0\xff\x39\x5a\xf0\x5a\x97\x49\x24\xa1\x42\x43\x7e\x3b\x2f\x85\xb3\x20\x25\x10\x9f\x92\x34\x62\x06\xab\xa4\x43\x1b\x1b\x99\x4c\xd6\xb3\xc9\x7c\xe6\x96\x33\x3d\xb9\x99\xcf\x26\x37\xeb\x59\xc3\x60\xb5\x71\xd5\x19\x56\xce\x53\xfa\xb8\x34\x0f\x2a\xed\x39\x0e\x95\x6a\x6a\xc1\x7e\x8f\x74\x05\xd5\x7c\x34\xfe\xc9\xdc\xf5\x01\x39\x9c\x02\x71\x2e\x47\x92\xf7\x26\x5e\x37\xc5\xdd\xa9\x5e\xff\xda\x96\x37\x9d\xc5\xd5\xbc\x3b\xf4\x97\xaf\xdb\xfb\x92\x71\x9a\xee\x65\x64\x51\xcc\xec\xce\x78\x71\xcc\x5c\x90\x7d\x67\x6e\xd6\x78\xd7\x99\xbd\x75\xa1\x65\x47\xa4\xbe\x5f\xf7\x90\x36\x8d\xbc\xd1\x23\xe8\x70\x49\x2a\xb4\xb4\x71\x2a\x84\x82\x7e\xb0\xff\x40\x12\xb7\x34\x3b\x71\xb7\x90\x0c\x83\xc2\xb9\x91\x0f\xb2\x20\x1c\xed\x45\x33\xe6\x33\xb8\x86\x04\x12\xb8\x3e\x22\xb2\x2f\x81\x28\x3b\x29\xf9\xba\x2b\xfa\x93\xa0\x91\x60\x6f\xe5\xef\x08\xee\x10\xfd\x41\xc1\x1f\x6b\x45\xfc\x88\xb6\x82\xa5\x0b\x23\x6d\xce\xd2\x46\xc6\x28\x44\x28\x2f\xeb\x8a\x08\xf6\x03\xd3\x2c\x4e\x05\x6d\x88\xd1\x17\xe7\x42\x4b\x7d\x49\xd4\xf6\xc4\x67\xc2\x86\xb6\x54\x9c\x01\x3e\x4b\x1c\x53\x2e\xea\xca\xdf\xb4\x2e\xea\xb8\xa7\x0f\xfb\xc8\x3f\x8f\x6e\x53\xe9\x47\xf7\x57\x7f\x0a\xfe\xbe\xac\xc5\xaa\x17\xdd\xdf\xf4\x80\x03\xec\x3d\xdf\x6c\x5d\x17\xfb\x3e\xa2\xbf\xc4\xfb\x31\xf9\x69\xff\x7f\x8d\xf6\xbc\xd6\x8e\xb3\x7f\xeb\xce\xa1\x1f\xb9\xe8\xc1\x2f\x99\x2d\x72\x77\xd3\xfc\x39\xb4\x47\x59\xab\x02\x8f\x15\xd5\xee\x3c\x64\x35\xeb\xf6\xc0\xd0\x18\xe3\x49\x17\xdf\x87\x52\x3b\x75\xdf\x26\xc3\x29\x82\x48\xfd\xa0\x44\xd8\x0f\x62\x32\x37\xb2\x3b\xfb\x43\x7c\xcf\x22\xfe\xb0\xc3\x34\x64\xb2\x36\xde\x29\xfd\x3b\x8d\x73\xcf\x7e\x18\x85\x21\xd3\x80\x24\x93\xf9\xcc\x76\x1d\xfb\xe7\xf0\x1a\x12\x3b\x35\xed\xab\x23\x6d\x0e\xd4\x2c\xb9\xda\x5d\xfd\x3f\x00\x00\xff\xff\xe7\x65\x3f\x08\x9a\x14\x00\x00") func pkgUiStaticJsBucketJsBytes() ([]byte, error) { return bindataRead( @@ -511,7 +511,7 @@ func pkgUiStaticJsBucketJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/js/bucket.js", size: 2834, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/js/bucket.js", size: 5274, mode: os.FileMode(420), modTime: time.Unix(1586527900, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -531,7 +531,7 @@ func pkgUiStaticJsGraphJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/js/graph.js", size: 38722, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/js/graph.js", size: 38722, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -551,12 +551,12 @@ func pkgUiStaticJsGraph_templateHandlebar() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/js/graph_template.handlebar", size: 8984, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/js/graph_template.handlebar", size: 8984, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiStaticReactAssetManifestJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\xcb\x6e\xeb\x20\x18\x84\xf7\x7e\x0a\xe4\xf5\x09\xb1\xe3\x18\x3b\xe7\x55\xaa\x2e\xc8\xcf\x8f\x8c\x13\x13\x0b\x48\x2f\xaa\xf2\xee\x15\xae\xdb\xe2\x5b\x6a\x55\x5d\x02\xf3\x0d\xcc\x00\x6f\x11\x21\xb1\x54\x67\xb4\xf1\x7f\xe2\x07\x84\xc4\x0d\x57\x9a\x82\xf5\x33\x31\xdd\x5a\xc7\x9d\x82\x2d\x58\xbb\xed\x16\x10\x0a\xb1\x97\x07\xa4\x50\x5d\xf5\xa9\xd3\xfd\x0b\xb8\x7a\x88\xd5\x3d\x25\x32\x99\xb3\x9d\x4c\x7a\xaa\x1e\x43\xb4\xe1\xed\x3a\xb0\x53\xf6\xb0\xb9\x6a\xa7\x1a\xdc\x2c\xec\x3c\x58\xce\x19\x17\x69\x99\xf2\x60\xef\x11\x3e\x77\x86\x25\x8b\xf0\x14\x41\x43\x3b\x7a\xe4\x98\x0b\x0e\x65\x50\xcf\xb8\xc6\x59\xd1\xd0\xab\xf6\xaa\xa2\x60\x92\x25\x65\xd0\xd9\xe8\x70\x73\x92\x35\x3e\x73\x41\x97\x64\xbd\x9f\xd2\x02\x5f\x68\xe5\x9a\xf3\x07\x18\x8c\x7b\x45\x6b\x10\x38\x54\xbe\x2a\xad\x24\x5a\x47\xcb\x03\x88\x5c\xb2\x6c\x7f\x14\x22\x83\xa3\x64\xc8\x77\x29\xa6\x50\x14\x19\x24\x90\x27\x5f\x89\x7e\x87\x7e\x26\x45\xf3\xa4\x00\x37\xcf\x17\x73\x42\xf3\xdd\xd2\x64\x7a\xdd\x6d\x4d\xba\xb9\x2b\x9c\x7a\x2e\xfc\x91\x59\xdb\x7b\xda\x88\x90\x9b\x77\x8f\x51\x3b\xf3\xda\x5e\x94\x76\x3e\xd9\xc3\xf8\x7a\x7f\x7a\xe3\x7f\xf2\xee\x56\xc7\x9c\xda\x2d\xfc\xfe\x88\x90\xc7\xe8\xf6\x1e\x00\x00\xff\xff\xb0\x78\x2c\x3e\x7e\x04\x00\x00") +var _pkgUiStaticReactAssetManifestJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x4b\x6e\xc3\x20\x18\x84\xf7\x3e\x05\xf2\xba\x21\x76\x0c\x8e\xdd\xab\x54\x5d\xfc\x82\x1f\x05\x27\x26\x11\x90\x3e\x54\xe5\xee\x15\xa9\xdb\xe0\x57\x6a\x55\x5d\x02\xf3\x0d\xcc\x00\x1f\x09\x21\xa9\xd2\x07\x74\xe9\x23\x09\x03\x42\xd2\x16\xb4\xa1\xc2\x85\x99\x94\xae\x9d\x07\xaf\xc5\x5a\x38\xb7\xbe\x2e\x40\x99\xf1\x82\x97\x15\x15\xbb\xb3\xd9\x5f\x75\x0f\x11\xd7\xf4\xb1\xa6\xa3\xea\x0c\x00\x39\x53\x1d\xd5\x0c\x21\xda\xc2\x69\x19\x78\x55\x76\xb0\x3d\x1b\xaf\x5b\x5c\xcd\xec\xdc\x5b\xe6\x25\xc8\xbc\xca\x21\xda\x7b\x80\x4f\x9d\x61\xce\x22\x3e\x45\xd4\xd0\x86\x16\x8a\x63\x9e\xd5\xdb\xa8\x9e\x61\x8d\x93\xa2\xbe\x57\x13\x54\x6c\xa3\xf8\x16\x54\x71\xeb\x6c\x70\xb8\x29\xc9\x12\x9f\xa9\xa0\x73\xb2\xce\x4f\x1b\x89\x6f\x74\xe7\xdb\xc3\x17\x18\x8d\x3b\xc5\xc9\xa2\x00\xb1\x0b\x55\x19\xad\xd0\x79\x2a\xb8\xac\x4a\x64\x00\x52\xe4\x8c\x6d\xa5\x14\xc0\xea\x3c\x97\x85\xe2\x9c\x65\x75\xf5\x93\xe8\x6f\xe8\x77\x52\xb4\x2f\x5a\xe0\xea\xf5\x68\xf7\x68\x6f\x2d\x8d\xa6\x97\xdd\xd6\xa8\x9b\xbb\xc2\xb1\xe7\xcc\x1f\x99\xb4\xbd\xa7\x4d\x08\xb9\x04\xf7\x14\x8d\xb7\xef\xa7\xa3\x36\x3e\x24\x7b\x1a\x5e\xef\x6f\x6f\xfc\x5f\xde\xdd\xe2\x98\x63\xbb\x99\xdf\x9f\x10\xf2\x9c\x5c\x3e\x03\x00\x00\xff\xff\xc0\xdb\x99\xc2\x7e\x04\x00\x00") func pkgUiStaticReactAssetManifestJsonBytes() ([]byte, error) { return bindataRead( @@ -571,7 +571,7 @@ func pkgUiStaticReactAssetManifestJson() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/asset-manifest.json", size: 1150, mode: os.FileMode(420), modTime: time.Unix(1581497509, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/asset-manifest.json", size: 1150, mode: os.FileMode(420), modTime: time.Unix(1586531010, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -591,12 +591,12 @@ func pkgUiStaticReactFaviconIco() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/favicon.ico", size: 15086, mode: os.FileMode(493), modTime: time.Unix(1581497489, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/favicon.ico", size: 15086, mode: os.FileMode(493), modTime: time.Unix(1586530980, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiStaticReactIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x7f\x6f\xdb\x36\x10\xfd\x2a\xb2\x06\xa8\x22\x42\xd3\x76\xd6\x1f\x99\x2d\x66\xe8\x86\x0e\x5d\x81\x36\xc1\x92\x3f\x36\x08\x42\xc0\x50\xa7\x88\x09\x4d\x6a\x47\xca\x69\xe0\xe8\xbb\x0f\x94\x2c\x3b\xed\x9a\xad\x41\x60\x53\xe4\xbd\xc7\xc7\x77\xa7\xa3\xb3\x49\x69\xa5\x7f\x68\x20\xaa\xfd\x5a\x9f\x66\xe1\x33\xd2\xc2\xdc\xf0\x18\x4c\x7c\x9a\xd5\x20\xca\xd3\x6c\x0d\x5e\x44\xb2\x16\xe8\xc0\xf3\xb8\xf5\xd5\xf4\x24\x9e\x9d\x66\x5a\x99\xbb\x08\x41\xf3\xd8\xd5\x16\xbd\x6c\x7d\xa4\xa4\x35\x71\x54\x23\x54\x3c\x66\xb3\x4a\x6c\xc2\x04\x53\xd2\x86\xf8\x9e\xc6\x88\x35\xf0\x78\xa3\xe0\xbe\xb1\xe8\xe3\x48\x5a\xe3\xc1\x78\x1e\xdf\xab\xd2\xd7\xbc\x84\x8d\x92\x30\xed\x1f\xa8\x32\xca\x2b\xa1\xa7\x4e\x0a\x0d\x7c\x41\x5d\x8d\xca\xdc\x4d\xbd\x9d\x56\xca\x73\xf3\x35\xa9\xaf\x61\x0d\x53\x69\xb5\xc5\x27\xbc\x3f\xcc\xfb\xbf\x10\xeb\x24\xaa\xc6\x9f\x4a\x6b\x9c\x8f\xce\xdf\x5e\xbe\xbf\x3a\xff\xe3\xdd\x6f\xbf\xff\xc9\x5f\xbc\x58\x65\xb3\xdd\xea\x97\x51\x97\xef\xdf\x7e\x3a\xbb\xb8\xfa\xf5\xec\xe3\xf9\xd9\xa7\x77\x9f\x2e\xf9\x8b\xbf\x5b\xc0\x87\xa7\xf1\x07\x1b\xd6\xc2\xa8\x0a\x9c\x3f\x38\x30\xce\xb0\x5b\x67\x4d\x90\xe0\x95\xd7\x70\x7a\x8e\x76\x0d\xbe\x86\xd6\x45\xef\x3e\x37\x08\xce\x29\x6b\xa2\x5f\xd0\xde\x3b\xc0\x6c\x36\x04\x0d\xc4\x23\x93\xf3\xc2\x2b\x39\x93\xce\xcd\x8e\xd9\xb5\x80\x57\xa5\x90\x27\x4c\xd6\xad\xb9\x63\xd2\xb9\x78\x97\x08\xff\xa0\xc1\xd5\x00\x3e\x7e\x1e\xbf\x16\xca\x30\x90\x6f\xca\x97\xd5\x4f\xf0\xdf\x14\xb3\xa1\x00\xae\x6d\xf9\x70\x9a\x19\xbb\x3b\xf2\x5f\xb6\x8d\x0c\x40\x19\x79\x1b\x81\x11\xd7\x1a\xa2\x0f\x62\x23\x2e\xfa\xd5\x30\x89\xad\x89\x7c\xad\x5c\x24\x9a\x86\x65\xb3\x3d\x30\x2b\xd5\x26\x52\x25\x8f\xd1\xda\x9e\xbe\x54\x9b\xbd\xe1\x93\xaa\x35\xd2\x2b\x6b\xd2\x86\x6c\xc7\x71\x04\x29\x90\x6d\x65\x31\xdd\x08\x8c\x90\x7a\x6a\x38\xe4\xf3\x82\x5a\x0e\xf9\xa2\xa0\x2d\x87\xfc\xb8\xa0\x9a\xcf\xa9\xe0\x79\xb1\xd2\x99\x61\x1a\xcc\x8d\xaf\x57\xfa\xe8\x88\x78\x6e\x72\x5d\xd0\xb3\xeb\x5b\x90\x9e\x35\x68\xbd\x0d\xd5\xce\x6a\xe1\xce\xee\xcd\x39\xda\x06\xd0\x3f\x30\x29\xb4\x4e\x15\xf5\x24\x49\x54\xee\x8b\x24\x11\xac\x69\x5d\x9d\x86\x87\x7c\x5e\x10\x1a\x06\x7c\xbe\x0a\x3a\x30\x52\x26\xb2\xe4\xbb\x28\x2d\x45\x92\x24\x69\x93\x63\xc1\x6d\x8e\x05\xe9\x19\x5c\x92\xb8\x14\xc8\x4a\x8c\x4a\x89\x60\xae\x56\x95\x4f\x49\x4a\x56\x08\xbe\x45\x13\xc9\x5e\x01\x13\x4d\xa3\x1f\x52\x49\xdb\xc7\xc7\xbc\x20\xb4\x4a\x49\xb7\xb7\xa6\x4a\x0f\xce\x00\x45\x3e\x5f\x61\x26\x47\x4e\x3c\x3a\x3a\xac\x7a\x2e\x73\x2c\xa8\xe1\x93\x39\xb5\x7c\xb1\xb2\x99\x1f\xe3\x6c\x88\x0b\x31\x2d\xf7\xb9\x2d\x56\xf3\x09\xe7\x2a\x6f\x8b\x24\x49\x0d\x9f\x2c\x48\x67\x92\x24\x95\xcc\x35\x5a\x49\x48\x71\x3a\xa5\x0b\x42\x81\xeb\x54\x33\xc7\x7d\x30\x87\x74\x3b\xc9\xd0\x0d\x7b\x6d\x3b\xaa\xf8\x76\xb1\x9c\x77\x54\x86\x9c\xec\x05\xeb\x90\x4b\x55\xa5\x3e\x87\x82\xec\x40\x61\xcc\xe0\x73\x68\x06\x6e\xd5\xe7\x98\x87\x29\xbe\x55\x4b\xa0\x7a\x39\x59\xd0\xdd\xe2\x72\xdb\x75\xa3\x39\x4d\x00\xf5\x0e\xe3\x88\xa5\x48\x0f\x63\x4d\x28\x32\x1d\x4e\xbb\x9f\xeb\x34\x5b\xf3\x86\x6a\x26\xb9\xa7\x9a\x95\x7c\x5f\x6d\x40\x91\x7a\xb2\xd5\xcc\x86\x21\x79\x7c\xdc\xa5\xb6\x84\x4a\x19\x18\x13\xda\x87\x6d\xc1\xb4\x6b\xc0\x50\xf1\xcb\xc9\x9c\xde\x80\x5f\xfa\x8e\x74\x54\x33\x7c\xc2\x47\xb6\x71\x6b\x06\x74\x19\x4f\x78\xa8\x0e\x5b\x45\x17\x0f\xeb\x6b\xab\x93\x64\xf8\x66\xde\x5e\x78\x54\xe6\xe6\x52\xdc\x24\xc9\x73\x3b\xfe\x3b\x96\x6e\x37\x42\xb7\xb0\x8c\x3f\xda\xb2\xd5\x10\x77\x84\x3e\x07\x8e\xaf\xae\xc0\xed\xc2\x46\xd8\x64\x3e\xc8\xf5\x07\xb9\x48\x87\xa4\x2c\x12\x48\x92\x14\xb9\x4e\x91\x10\x7a\x92\xc0\x98\x21\x5c\xa9\x2a\x7d\x19\x56\x63\xdb\x6f\x15\xf3\xf1\x4c\x98\x24\xe1\x9f\x1d\x76\x3a\x80\x86\x5a\xd8\x89\x93\x08\xc2\x43\x6a\x5a\xad\x49\xa0\xd3\x0c\x53\xff\x9c\x74\x4f\xe3\x12\x2a\xd1\x6a\x1f\x7f\xed\xf8\x70\x0a\xec\x08\x3d\xee\x05\xb9\xde\x97\x83\xc9\x48\xc6\x92\x37\xe1\x35\x45\xa2\x59\x99\x7a\x6a\xe8\xd3\xec\x8c\x12\x73\x28\x3a\x76\xad\x4c\xd9\xeb\xa2\x86\xec\x5f\x3e\x1f\x3c\x32\x5f\xa4\x74\x28\x4d\x48\x12\x78\x72\xda\x9f\xf7\x11\x7b\x56\x60\x3b\xed\xdd\xf2\x1b\x8b\xfb\x0a\x0e\xba\x90\xc6\x22\xa6\x48\x28\x86\xed\xec\x17\x15\xb9\x87\x7c\x57\x9f\x09\x80\xc0\xd1\x84\x4e\x1f\x8f\xaf\x51\xad\x1c\xbb\x87\xeb\x46\xc8\xbb\x0f\xce\x9a\xe6\x06\x45\x53\x3f\x33\x1d\xda\x0b\x35\x1c\x87\xae\xd3\x9b\x82\x64\x35\x3c\xf2\xd0\x5c\x90\xb9\xbe\x03\x0c\x2d\x2c\xec\x60\xf9\x7c\x65\x33\x7c\xda\x48\x20\xc5\xdc\x16\xa4\x17\xe0\xb8\x59\x85\x76\x95\xe6\x05\xf9\xfa\x72\x8d\x1c\xca\x27\x97\xd2\x6d\xb8\xd3\xde\xbc\x79\x5d\xbd\x9e\x9f\xcc\x77\x17\xd2\xad\x0b\xf7\xc3\xff\xc1\xfa\xab\xac\xfc\xb1\x7a\xf5\xfa\xb8\xfa\x36\x72\x36\xdc\x5d\xb3\xfe\xf7\xcd\x3f\x01\x00\x00\xff\xff\xbb\x87\xa4\x35\xef\x08\x00\x00") +var _pkgUiStaticReactIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\xff\x6f\xdb\xbe\x11\xfd\x57\x64\x0d\x50\x45\x84\xa6\xe5\xb4\xe9\x17\xdb\xcc\xd0\x0e\xdd\xba\xa2\x6d\x82\x25\x3f\x6c\x10\x84\x80\xa1\x4e\x11\x13\x9a\xd4\x8e\x94\xd3\xc0\xd1\xff\x3e\x50\xb2\xec\xb4\x6b\x3e\x9f\x06\x81\x4d\x91\xf7\x1e\x1f\xdf\x9d\x8e\x5e\x4d\x4a\x2b\xfd\x43\x03\x51\xed\xd7\xfa\x74\x15\x3e\x23\x2d\xcc\x0d\x8f\xc1\xc4\xa7\xab\x1a\x44\x79\xba\x5a\x83\x17\x91\xac\x05\x3a\xf0\x3c\x6e\x7d\x35\x7d\x1b\xcf\x4e\x57\x5a\x99\xbb\x08\x41\xf3\xd8\xd5\x16\xbd\x6c\x7d\xa4\xa4\x35\x71\x54\x23\x54\x3c\x66\xb3\x4a\x6c\xc2\x04\x53\xd2\x86\xf8\x9e\xc6\x88\x35\xf0\x78\xa3\xe0\xbe\xb1\xe8\xe3\x48\x5a\xe3\xc1\x78\x1e\xdf\xab\xd2\xd7\xbc\x84\x8d\x92\x30\xed\x1f\xa8\x32\xca\x2b\xa1\xa7\x4e\x0a\x0d\x7c\x4e\x5d\x8d\xca\xdc\x4d\xbd\x9d\x56\xca\x73\xf3\x33\xa9\xaf\x61\x0d\x53\x69\xb5\xc5\x27\xbc\x7f\xc9\xfa\xbf\x10\xeb\x24\xaa\xc6\x9f\x4a\x6b\x9c\x8f\xfe\xf1\xe5\xec\xc3\xfb\x2f\x57\xe7\xef\x2f\x3f\x5d\x9d\xff\xeb\xe3\xdf\xff\xf9\x6f\xfe\xe2\xc5\x72\x35\xdb\x05\xfd\x18\x7c\xf9\xe9\xfd\xb7\xb3\x8b\xab\xbf\x9d\x7d\x3d\x3f\xfb\xf6\xf1\xdb\x25\x7f\xf1\xdf\x16\xf0\xe1\x69\xfc\xc1\x8d\xb5\x30\xaa\x02\xe7\x0f\x46\x8c\x33\xec\xd6\x59\x13\x94\x78\xe5\x35\x9c\x9e\xa3\x5d\x83\xaf\xa1\x75\xd1\xc7\xef\x0d\x82\x73\xca\x9a\xe8\x03\xda\x7b\x07\xb8\x9a\x0d\x41\x03\xf1\xc8\xe4\xbc\xf0\x4a\xce\xa4\x73\xb3\x63\xf6\xb2\x3a\x81\x79\xf6\xee\x0d\x93\x75\x6b\xee\x98\x74\x2e\xde\xe5\xc3\x3f\x68\x70\x35\x80\x8f\x9f\xc7\xaf\x85\x32\x4c\xbc\xce\x4e\x5e\x9e\xbc\x7e\xfb\xc7\x14\xb3\xa1\x0e\xae\x6d\xf9\x70\xba\x32\x76\x77\xe4\xff\xd8\x36\x32\x00\x65\xe4\x6d\x04\x46\x5c\x6b\x88\x3e\x8b\x8d\xb8\xe8\x57\xc3\x24\xb6\x26\xf2\xb5\x72\x91\x68\x1a\xb6\x9a\xed\x81\xab\x52\x6d\x22\x55\xf2\x18\xad\xed\xe9\x4b\xb5\xd9\x1b\x3e\xa9\x5a\x23\xbd\xb2\x26\x6d\xc8\x76\x1c\x47\x90\x02\xd9\x56\x16\xd3\x8d\xc0\x08\xa9\xa7\x86\x43\x9e\x15\xd4\x72\xc8\xe7\x05\x6d\x39\xe4\xc7\x05\xd5\x3c\xa3\x82\xe7\xc5\x52\xaf\x0c\xd3\x60\x6e\x7c\xbd\xd4\x47\x47\xc4\x73\x93\xeb\x82\x9e\x5d\xdf\x82\xf4\xac\x41\xeb\x6d\x28\x7a\x56\x0b\x77\x76\x6f\xce\xd1\x36\x80\xfe\x81\x49\xa1\x75\xaa\xa8\x27\x49\xa2\x72\x5f\x24\x89\x60\x4d\xeb\xea\x34\x3c\xe4\x59\x41\x68\x18\xf0\x6c\x19\x74\x60\xa4\x4c\x64\xc9\x6f\x51\x5a\x8a\x24\x49\xd2\x26\xc7\x82\xdb\x1c\x0b\xd2\x33\xb8\x24\x71\x29\x90\xa5\x18\x95\x12\xc1\x5c\xad\x2a\x9f\x92\x94\x2c\x11\x7c\x8b\x26\x92\xbd\x02\x26\x9a\x46\x3f\xa4\x92\xb6\x8f\x8f\x79\x41\x68\x95\x92\x6e\x6f\x4d\x95\x1e\x9c\x01\x8a\x3c\x5b\xe2\x4a\x8e\x9c\x78\x74\x74\x58\xf5\x5c\xe6\x58\x50\xc3\x27\x19\xb5\x7c\xbe\xb4\x2b\x3f\xc6\xd9\x10\x17\x62\x5a\xee\x73\x5b\x2c\xb3\x09\xe7\x2a\x6f\x8b\x24\x49\x0d\x9f\xcc\x49\x67\x92\x24\x95\xcc\x35\x5a\x49\x48\x71\x3a\xa5\x73\x42\x81\xeb\x54\x33\xc7\x7d\x30\x87\x74\x3b\xc9\xd0\x0d\x7b\x6d\x3b\xaa\xf8\x76\xbe\xc8\x3a\x2a\x43\x4e\xf6\x82\x75\xc8\xa5\xaa\x52\x9f\x43\x41\x76\xa0\x30\x66\xf0\x3d\xf4\x04\xb7\xec\x73\xcc\xc3\x14\xdf\xaa\x05\x50\xbd\x98\xcc\xe9\x6e\x71\xb1\xed\xba\xd1\x9c\x26\x80\x7a\x87\x71\xc4\x52\xa4\x87\xb1\x26\x14\x99\x0e\xa7\xdd\xcf\x75\x9a\xad\x79\x43\x35\x93\xdc\x53\xcd\x4a\xbe\xaf\x36\xa0\x48\x3d\xd9\x6a\x66\xc3\x90\x3c\x3e\xee\x52\x5b\x42\xa5\x0c\x8c\x09\xed\xc3\xb6\x60\xda\x35\x60\xa8\xf8\xc5\x24\xa3\x37\xe0\x17\xbe\x23\x1d\xd5\x0c\x9f\xf0\x91\x6d\xdc\x9a\x01\x5d\xc6\x13\x1e\xaa\xc3\x56\xd1\xc5\xc3\xfa\xda\xea\x24\x19\xbe\x99\xb7\x17\x1e\x95\xb9\xb9\x14\x37\x49\xf2\xdc\x8e\xff\x1f\x4b\xb7\x1b\xa1\x5b\x58\xc4\x5f\x6d\xd9\x6a\x88\x3b\x42\x9f\x03\xc7\x57\x57\xe0\x76\x61\x23\x6c\x92\x0d\x72\xfd\x41\x2e\xd2\x21\x29\xf3\x04\x92\x24\x45\xae\x53\x24\x84\xbe\x4d\x60\xcc\x10\x2e\x55\x95\xbe\x0a\xab\xb1\xed\xb7\x8a\xf9\x78\x26\x4c\x92\xf0\xcf\x0e\x3b\x1d\x40\x43\x2d\xec\xc4\x49\x04\xe1\x21\x35\xad\xd6\x24\xd0\x69\x86\xa9\x7f\x4e\xba\xa7\x71\x09\x95\x68\xb5\x8f\x7f\x76\x7c\x38\x05\x76\x84\x1e\xf7\x82\x5c\xef\xcb\xc1\x64\x24\x63\xc9\x9b\xf0\x9a\x22\xd1\xac\x4c\x3d\x35\xf4\x69\x76\x46\x89\x39\x14\x1d\xbb\x56\xa6\xec\x75\x51\x43\xf6\x2f\x9f\x0f\x1e\x99\x1f\x52\x3a\x94\x26\x24\x09\x3c\x39\xed\x5f\xf7\x11\x7b\x56\x60\x3b\xed\xdd\xe2\x17\x8b\xfb\x0a\x0e\xba\x90\xc6\x22\xa6\x48\x28\x86\xed\xec\x0f\x15\xb9\x87\xfc\x56\x9f\x09\x80\xc0\xd1\x84\x4e\x1f\x8f\xaf\x51\xad\x1c\xbb\x87\xeb\x46\xc8\xbb\xcf\xce\x9a\xe6\x06\x45\x53\x3f\x33\x1d\xda\x0b\x35\x1c\x87\xae\xd3\x9b\x82\x64\x39\x3c\xf2\xd0\x5c\x90\xb9\xbe\x03\x0c\x2d\x2c\xec\x60\x79\xb6\xb4\x2b\x7c\xda\x48\x20\xc5\xdc\x16\xa4\x17\xe0\xb8\x59\x86\x76\x95\xe6\x05\xf9\xf9\x72\x8d\x1c\xca\x27\x97\xd2\x6d\xb8\xd3\x5e\x1d\x57\x27\x6f\x44\xf5\x72\x77\x21\xdd\xba\x70\x3f\xfc\x19\xac\xbf\xca\xde\x65\x42\xc0\xc9\xab\xea\x97\xc8\xd9\x70\x77\xcd\xfa\x9f\x39\xff\x0b\x00\x00\xff\xff\x8d\x39\x45\xfc\xf6\x08\x00\x00") func pkgUiStaticReactIndexHtmlBytes() ([]byte, error) { return bindataRead( @@ -611,7 +611,7 @@ func pkgUiStaticReactIndexHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/index.html", size: 2287, mode: os.FileMode(420), modTime: time.Unix(1581497509, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/index.html", size: 2294, mode: os.FileMode(420), modTime: time.Unix(1586531010, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -631,32 +631,32 @@ func pkgUiStaticReactManifestJson() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/manifest.json", size: 318, mode: os.FileMode(493), modTime: time.Unix(1581497489, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/manifest.json", size: 318, mode: os.FileMode(493), modTime: time.Unix(1586530980, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiStaticReactPrecacheManifest89cd5f634bdd3cbf6ea21e1c773c0c50Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x91\x51\x4e\x02\x31\x10\x40\xff\xf7\x14\x93\xfd\x82\x04\xcb\x76\x97\x76\xba\x1a\x8f\xe0\x09\x08\x21\xb3\xd3\x69\x28\x42\x31\xdb\xc5\x98\x88\x77\x37\x28\x7e\xa9\x1b\x4c\xfc\x6e\xe7\xbd\x79\x99\x2c\xbb\xa0\xd6\xeb\xa7\x5e\x98\x78\x23\x0f\x94\x62\x90\x3c\xc0\x3d\x4c\x7e\x7b\x3a\x9d\x60\xb9\x9a\x2a\x3e\x24\xa6\x61\xb2\x2c\x00\x5e\x0b\x00\x80\xb2\x97\xe7\x98\xe3\x21\x95\xb7\x50\x1a\x44\x17\x74\x25\xdc\xa0\x48\x25\x9a\x5a\xed\x44\xc4\x06\x63\x51\x7b\xd6\xe5\xec\x73\xe6\xd8\xef\xce\xdf\xd5\x3c\x26\x2f\x2f\x6a\x33\xec\x77\x65\x01\xf0\x36\xfb\x19\x1b\xd8\xd5\x0d\xda\x56\xeb\x0a\x99\x50\xd0\x75\xf4\x0d\x95\x07\x1a\x22\xcf\x39\xe7\x79\xad\x3a\x12\xe3\x89\x9d\xe2\xcd\x31\x3d\x2a\xce\x79\x94\xdf\x5a\x42\xf6\x64\x8c\x6b\x42\xed\x7c\x87\x2c\x63\xfc\x3d\xc5\xa4\x84\xd1\x2f\x42\x2b\x57\x2a\xfe\x90\xb0\x3d\x17\x20\xda\x60\x2b\x57\x5d\xf0\xdb\x7f\x0b\xd8\x5e\xf6\xf7\x4d\x30\xb6\x0e\xd7\x09\xc8\x12\x9e\x4f\x4a\x8b\xae\xf6\x9d\x6d\xc5\x90\x1d\x11\xf4\xc7\x34\xc4\xbd\xdc\x7c\x88\x8c\x25\xaf\x9d\xa6\x2f\x45\xb1\x9a\xde\xbd\x07\x00\x00\xff\xff\x20\x41\xae\x2f\x81\x02\x00\x00") +var _pkgUiStaticReactPrecacheManifestC5d86e4aadc1447ddca4911d3f554098Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x8f\x5d\x4a\x03\x31\x14\x46\xdf\x67\x15\x61\x9e\x5a\xa8\x69\x26\x7f\x93\x28\x2e\xc1\x15\x94\x52\xee\xdc\xb9\xa1\xa9\x6d\x2a\x93\x8c\x08\xd6\xbd\x4b\xb5\x82\x50\x2d\x15\x7c\x4e\xee\x39\xdf\xc9\xb4\x0d\x7c\xb5\x7a\x1a\x08\x01\xd7\xf4\x00\x29\x06\xca\x85\xdd\xb3\xc9\x6f\x4f\x87\x03\x5b\x2c\xa7\x1c\xf7\x09\xa1\x4c\x16\x15\x63\xaf\x15\x63\x8c\xd5\x03\x3d\xc7\x1c\xf7\xa9\xbe\x65\x35\x6a\xed\x50\x09\x0f\x0d\x75\x42\x92\x14\x9d\x76\x9d\x92\x52\x1a\x13\x24\xf6\x4d\x3d\xfb\xbc\x19\x87\xed\xf1\x3b\x9f\xc7\xd4\xd3\x0b\x5f\x97\xdd\xb6\xae\x18\x7b\x9b\xfd\x8c\x0d\x06\x94\xb4\x40\x0e\xd1\xf5\x9e\xc8\x7b\xa5\xce\x50\xb9\x40\x89\x38\xc7\x9c\xe7\x92\xab\x60\xa8\x11\xbe\xe5\xb8\x1e\xd3\x23\xc7\x9c\x2f\xf1\x85\x44\x2b\xbd\xd3\x5e\xa0\x32\xe8\x5b\xe7\xec\xf9\xd4\x6f\xfc\x1d\xc4\xc4\xc1\x0a\xa3\x8c\x75\xd7\x29\xfe\x92\xb0\x39\x16\x68\x19\x4c\x0b\x41\x9d\xf0\x9b\x7f\x0b\xd8\x9c\xf6\x7b\x01\x40\x46\x87\xab\x04\x60\xa1\x6d\x89\x04\xe8\x4e\xf6\x9d\xf5\x64\xc0\x5e\x10\x0c\x63\x2a\x71\x47\x37\x1f\x22\x63\xa1\x6f\x5c\x03\x5f\x8a\x6a\x39\xbd\x7b\x0f\x00\x00\xff\xff\x6c\x7a\x6f\xc6\x81\x02\x00\x00") -func pkgUiStaticReactPrecacheManifest89cd5f634bdd3cbf6ea21e1c773c0c50JsBytes() ([]byte, error) { +func pkgUiStaticReactPrecacheManifestC5d86e4aadc1447ddca4911d3f554098JsBytes() ([]byte, error) { return bindataRead( - _pkgUiStaticReactPrecacheManifest89cd5f634bdd3cbf6ea21e1c773c0c50Js, - "pkg/ui/static/react/precache-manifest.89cd5f634bdd3cbf6ea21e1c773c0c50.js", + _pkgUiStaticReactPrecacheManifestC5d86e4aadc1447ddca4911d3f554098Js, + "pkg/ui/static/react/precache-manifest.c5d86e4aadc1447ddca4911d3f554098.js", ) } -func pkgUiStaticReactPrecacheManifest89cd5f634bdd3cbf6ea21e1c773c0c50Js() (*asset, error) { - bytes, err := pkgUiStaticReactPrecacheManifest89cd5f634bdd3cbf6ea21e1c773c0c50JsBytes() +func pkgUiStaticReactPrecacheManifestC5d86e4aadc1447ddca4911d3f554098Js() (*asset, error) { + bytes, err := pkgUiStaticReactPrecacheManifestC5d86e4aadc1447ddca4911d3f554098JsBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/precache-manifest.89cd5f634bdd3cbf6ea21e1c773c0c50.js", size: 641, mode: os.FileMode(420), modTime: time.Unix(1581497509, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/precache-manifest.c5d86e4aadc1447ddca4911d3f554098.js", size: 641, mode: os.FileMode(420), modTime: time.Unix(1586531010, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiStaticReactServiceWorkerJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x53\x7f\x6f\xdb\x36\x10\xfd\x5f\x9f\xe2\x66\x0c\xb5\x9d\x3a\x64\xd3\xf4\xc7\xda\xc0\x1b\x8a\x6e\xeb\x82\x66\x45\x6a\xa7\x30\x86\xc4\x35\x28\xf2\x24\x71\xa6\x78\x1a\x8f\x8a\x6b\xb4\xfd\xee\x03\x65\x39\xdd\xb2\xf9\x3f\x89\x7c\xf7\xee\xde\xbd\x47\x79\x74\x94\xc1\x11\x2c\xd0\x69\xaa\x11\x22\xc1\x96\xda\x00\x0b\x0a\xeb\x9c\x3e\x1d\x37\xb4\xc1\x80\x06\x18\xc3\xad\xd5\x08\x1b\x0a\x6b\x0c\xdf\x65\xd0\x55\xfd\x41\xed\xd0\x39\xf0\x88\x26\x55\x06\x2c\x2d\x47\x0c\x10\x2b\xcb\x50\x58\x87\x60\xfd\x8e\x6f\x83\x39\xa8\xa6\x01\xe5\x4d\x3a\x00\xae\xa8\x75\x26\x71\x18\xcb\x2a\x77\x08\xbf\x5d\x5d\x5d\x82\x56\xba\xb2\xbe\x84\x82\xfe\x49\x12\x89\x44\x82\xce\x11\xa1\x8a\xb1\xe1\x97\x52\x96\x44\xa2\x74\xd2\x57\xef\xab\x37\x4d\x3f\xce\x55\x85\x10\x90\x23\x50\x01\xb1\x42\xd0\x64\x10\x2c\x83\x6a\x23\x1d\x97\xe8\x31\xa8\x88\x46\xc0\xa5\x43\xc5\x08\x86\xfc\x30\x42\xdb\x18\x15\xf1\x5b\xb7\xdd\x4c\x01\x75\x74\xdb\x33\xb0\x9e\x23\x2a\x33\x81\x5a\xad\x11\x74\xa5\x7c\x89\x7c\x7f\x4b\x90\xb7\xd6\x19\xd0\xe4\x0b\x5b\xb6\x41\x45\x4b\x3e\xd1\x24\xb1\x01\x8f\x43\xdb\x2f\x61\x07\x6b\x02\x69\x64\x3e\xa4\xe8\xb1\x9a\xfd\xcc\x55\x06\x47\x32\xcb\x6c\xdd\x50\x88\x73\x1d\x6c\x13\x79\x34\xd8\x23\x39\x52\x50\x25\x8a\x92\xa8\x74\xa8\x1a\xcb\x42\x53\x2d\x37\xbd\x67\xda\x78\x19\xb0\xd3\xc8\xf2\x89\x38\x15\x27\x77\x57\xbc\x11\x7f\xf2\x60\x7c\x76\x9f\x3a\x03\x18\x08\xd9\x04\x4c\x06\xe0\x71\xad\xbc\x2d\x90\xa3\xf8\xe1\x85\x36\x4f\x8b\x67\xa7\x4f\x72\x63\x4e\x75\x5e\x3c\x43\xf5\xf8\x04\x4f\xf4\xf3\xe7\xa7\xfa\x91\x7e\xfa\x28\xb1\x65\x89\x8e\xd1\x15\x42\x19\xf3\xcb\x2d\xfa\x78\x91\x52\xe0\x31\x8c\x86\x35\x32\xab\x12\x87\x13\x18\x61\xba\x19\xc3\xf4\x47\xf8\x9c\x01\xd8\xa2\x3f\x11\x46\x45\x05\x0f\x1e\xc0\xb7\x3f\x11\xb7\x0d\xc2\x74\x3a\x85\xe1\xfc\xed\xf9\xe5\x6a\xf1\xea\xfc\xea\xfc\xdd\x9b\xe1\xb8\xab\x04\xe8\x7a\xf1\xda\x36\x0b\x65\xa3\xf5\xe5\x68\x7c\x96\x01\x7c\xcd\xbe\xa6\x41\x7a\xa5\x42\x53\x40\xa1\x9d\x45\x1f\xf9\xb5\x53\xb6\x4e\xa8\xac\x4f\x7b\x0a\x4a\x0f\x9c\x2f\xc4\x5e\xf6\x2b\x6f\x66\xd4\x46\x1c\x8d\xa1\xc6\x58\x91\x01\x2c\x0a\xab\x13\x85\xdb\x76\xd1\x44\xee\x3d\xe5\x86\xbc\x49\x39\x48\x6c\x01\xff\x6a\x91\x23\x77\xa9\xfd\x30\xbb\xe0\x94\xfa\x94\xbf\xbb\x35\x1e\xb0\x7a\xfe\xe2\xfd\x4c\xe5\x9d\xd5\x9d\xa6\xd5\x6a\x3f\xca\xef\x7d\x25\x4c\xe1\x7a\x29\x34\x79\xad\xe2\xe8\x10\xe6\xcb\x17\xb8\x5e\x8e\xcf\xee\xa4\xf7\x00\xeb\xcb\xff\x4a\x3b\xc0\x31\x81\xcf\xff\xda\x5e\xa0\x36\x6d\x56\xec\x5f\xf4\x3b\x75\x6b\xcb\x2e\xd7\x3b\x9a\xff\x69\x55\x62\x7c\x9d\x28\xdf\xe2\xf6\x57\x0a\x1f\x66\x17\xa3\x81\x90\xd6\x1b\xfc\x24\xaa\x58\xbb\xc1\x78\xd2\xd9\x97\x01\xe4\x4e\xe9\xb5\xb3\x1c\x5f\xc2\xb5\xfc\x78\x23\x57\x72\x22\x6f\xe4\xf5\xc7\x1b\xf9\xd3\xf2\xe1\x8d\x48\x1f\xcb\x87\xdf\xcb\xe5\xa4\x73\xf4\xef\x00\x00\x00\xff\xff\x93\xe7\x32\xac\xa1\x04\x00\x00") +var _pkgUiStaticReactServiceWorkerJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x71\x6f\xdb\x36\x10\xc5\xff\xd7\xa7\xb8\x19\x43\x6d\xa7\x0e\xb9\xac\xce\xd6\x34\xf0\x86\xa2\xdb\xba\xa0\x59\x91\xda\x29\x8c\xc1\x71\x02\x9a\x3c\x49\x9c\x29\x9e\xc6\xa3\xe2\x1a\x6d\xbf\xfb\x40\x59\x4e\xb7\xac\xfe\x53\xe4\xdd\x8f\xf7\xee\x3d\xc9\xa3\xa3\x0c\x8e\x60\x8e\x4e\x53\x85\x10\x09\xb6\xd4\x04\x98\x53\x58\xaf\xe8\xc3\x71\x4d\x1b\x0c\x68\x80\x31\xdc\x5b\x8d\xb0\xa1\xb0\xc6\xf0\x4d\x06\x6d\xd7\x9f\xd4\xf4\x9d\x03\x8f\x68\x52\x67\xc0\xc2\x72\xc4\x00\xb1\xb4\x0c\xb9\x75\x08\xd6\xef\x78\x1b\x5c\x81\xaa\x6b\x50\xde\xa4\x03\xe0\x92\x1a\x67\x12\xc3\x58\x56\x2b\x87\xf0\xfb\xf5\xf5\x15\x68\xa5\x4b\xeb\x0b\xc8\xe9\xdf\x90\x48\x24\x52\xe9\x0c\x11\xca\x18\x6b\x7e\x21\x65\x41\x24\x0a\x27\x7d\xf9\xae\x7c\x5d\x77\xe3\x5c\x97\x08\x01\x39\x02\xe5\x10\x4b\x04\x4d\x06\xc1\x32\xa8\x26\xd2\x71\x81\x1e\x83\x8a\x68\x04\x5c\x39\x54\x8c\x60\xc8\xf7\x23\x34\xb5\x51\x11\xbf\xbc\xb6\x9b\x29\xa0\x8e\x6e\x7b\x0e\xd6\x73\x44\x65\x46\x50\xa9\x35\x82\x2e\x95\x2f\x90\x1f\x6f\x09\x56\x8d\x75\x06\x34\xf9\xdc\x16\x4d\x50\xd1\x92\x4f\x98\x24\x36\xe0\x71\x68\xba\x25\xec\xca\xea\x40\x1a\x99\x0f\x29\xfa\x5e\x4d\x7f\xe1\x32\x83\x23\x99\x65\xb6\xaa\x29\xc4\x99\x0e\xb6\x8e\x3c\xe8\xed\x2b\x39\x52\x50\x05\x8a\x82\xa8\x70\xa8\x6a\xcb\x42\x53\x25\x37\x9d\x67\xda\x78\x19\xb0\xd5\xc8\x72\x2c\x9e\x89\x93\x87\x2b\xde\x88\xbf\xb8\x37\x3c\x7f\x8c\xce\x00\x7a\x42\xd6\x01\x93\x01\x78\x5c\x29\x6f\x73\xe4\x28\xf4\xa9\x79\xfe\x03\x8e\x95\x32\xfa\x64\x3c\xfe\xd1\x18\xad\xc6\x67\x27\x27\xe6\x59\x7e\x7a\x3a\xfe\xee\xec\x79\xa2\x65\x09\xc7\xe8\x72\xa1\x8c\xf9\xf5\x1e\x7d\xbc\x4c\x29\xf0\x18\x06\xfd\x0a\x99\x55\x81\xfd\x11\x0c\x30\xdd\x0c\x61\xf2\x13\x7c\xcc\x00\x6c\xde\x9d\x08\xa3\xa2\x82\x27\x4f\xe0\xcb\x97\x88\xdb\x1a\x61\x32\x99\x40\x7f\xf6\xe6\xe2\xea\x6e\xfe\xf2\xe2\xfa\xe2\xed\xeb\xfe\xb0\xed\x04\x68\xdf\xe2\xb5\xad\xe7\xca\x46\xeb\x8b\xc1\xf0\x3c\x03\xf8\x9c\x7d\x4e\x83\x74\x4a\x85\xa6\x80\x42\x3b\x8b\x3e\xf2\x2b\xa7\x6c\x95\xaa\xb2\x2e\xed\x29\x28\x5d\xe1\x6c\x2e\xf6\xb2\x5f\x7a\x33\xa5\x26\xe2\x60\x08\x15\xc6\x92\x0c\x60\x9e\x5b\x9d\x10\x6e\xdb\x46\x13\xb9\xf3\x94\x6b\xf2\x26\xe5\x20\xd1\x02\xfe\xdd\x20\x47\x6e\x53\xfb\x7e\x7a\xc9\x29\xf5\x29\x7f\x0f\x6b\x3c\x60\xf5\xec\xec\xdd\x54\xad\x5a\xab\x5b\x4d\x77\x77\xfb\x51\xfe\xe8\x3a\x61\x02\x8b\xa5\xd0\xe4\xb5\x8a\x83\x43\x35\x9f\x3e\xc1\x62\x39\x3c\x7f\x90\xde\x15\x58\x5f\xfc\x5f\xda\x01\xc6\x08\x3e\xfe\x67\x7b\x81\x9a\xb4\x59\xb1\xff\xa3\xdf\xaa\x7b\x5b\xb4\xb9\xde\x61\xbe\xf2\x54\x81\xf1\x55\x42\xbe\xc1\xed\x6f\x14\xde\x4f\x2f\x07\x3d\x21\xad\x37\xf8\x41\x94\xb1\x72\xbd\xe1\xa8\xb5\x2f\x03\x58\x39\xa5\xd7\xce\x72\x7c\x01\x0b\x79\x7b\x23\xef\xe4\x48\xde\xc8\xc5\xad\xfc\x79\xf9\xf4\x46\x2c\x6e\xe5\xf2\xe9\xb7\x72\x39\x6a\xfd\xfc\x27\x00\x00\xff\xff\x63\x75\x6a\x82\x9f\x04\x00\x00") func pkgUiStaticReactServiceWorkerJsBytes() ([]byte, error) { return bindataRead( @@ -671,87 +671,87 @@ func pkgUiStaticReactServiceWorkerJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/service-worker.js", size: 1185, mode: os.FileMode(420), modTime: time.Unix(1581497509, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/service-worker.js", size: 1183, mode: os.FileMode(420), modTime: time.Unix(1586531010, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiStaticReactStaticCss2Bae5dac8ChunkCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\xfd\x8f\xe3\x38\x92\x20\xfa\xfb\x02\xf7\x3f\x68\xab\x50\xe8\xce\x69\xcb\x25\xc9\x96\xed\x74\xa2\x1b\x3b\x3b\x37\x8b\x1b\xa0\x7b\x70\xd8\xde\x05\xee\xa1\xaf\x0e\x90\x2d\xda\xd6\x94\xbe\x4e\x92\x2b\x95\x6d\xe4\xfe\xed\x0f\xfc\x92\xf8\x11\xa4\x28\x67\xf5\xcc\xec\x7b\xbb\xb3\xe8\x4a\x93\xc1\x88\x60\x30\x18\xc1\xa0\xc8\xe0\xf2\x50\x55\x5d\xdb\x35\x49\xed\xa7\x49\x87\xba\xac\x40\x75\x76\xfc\x8c\x1a\xff\x39\x4b\xcf\xa8\xf3\x96\x87\xae\xfc\x25\x4d\xba\xc4\x4f\x8e\x5d\x56\x95\xdf\x1f\x73\x94\x34\x9f\xf6\xc9\xa9\x43\xcd\x62\x7e\xf3\x14\x1d\x1b\x54\xa0\xb2\xfb\x1f\xd5\xb5\x69\xbf\x02\x9e\x9f\xb2\xf2\xda\xa1\x37\x60\xca\xca\xaf\xc3\xd1\x80\xe7\xcd\x1c\xb5\x97\xea\xf9\x8d\xcc\x60\x14\x6f\xe6\xa3\xab\xd2\xe4\xe5\x2d\xcd\xcf\xe7\x1c\xfd\x4f\xd4\x64\x55\xea\x8e\x85\xfd\x6c\x9f\xb3\xee\x78\x71\x6d\xd5\x25\x87\x1c\x79\xdd\x65\x59\xa2\xbe\x9b\xdd\xa8\x6e\xd0\x17\xde\xa8\x6d\xfc\xaa\xcc\x5f\x6e\x75\xd5\x66\xb8\x17\xfb\xe4\xd0\x56\xf9\xb5\x43\x4f\xcf\x59\xda\x5d\xf6\x61\xdd\x3f\x5d\x50\x76\xbe\x74\xe4\xcf\x22\x69\xce\x59\xb9\xf7\xf1\xdf\x75\x92\xa6\x59\x79\xde\x07\x4f\xd5\x17\xd4\x9c\xf2\xea\x79\x7f\xc9\xd2\x14\x95\x4f\xc7\x3c\xab\xf7\x0d\x3a\x76\xdf\x06\x0b\xf2\xbf\x87\xa7\x43\xd5\xa4\xa8\xd9\x07\xaf\x53\x6c\xde\xf2\xac\xed\xfc\xb6\x7b\xc9\xd1\xbe\xac\x4a\x34\xd9\x60\x99\x36\x55\x9d\x56\xcf\xa5\x5f\xa0\xf2\x7a\x4b\xb3\xb6\xce\x93\x97\xfd\x21\xaf\x8e\x9f\x39\xbf\x51\xdd\x7b\xc1\xc0\xf0\xba\xee\x79\xef\xd6\x0d\x2a\x5e\xff\xa9\x40\x69\x96\x78\xdf\x16\x59\xe9\xd3\xf2\x78\xbb\xa9\xfb\x87\xdb\x3c\xd2\x4b\xa1\xbe\x3d\xb4\x37\x8a\x6a\xb5\x43\xc5\x2b\x40\x62\xbb\xd9\xfd\xd6\x24\x1e\x1f\xa3\xaf\x4b\x62\x1e\x26\x47\xbd\x54\x1a\x1d\xd0\xa9\x6a\xd0\xed\x58\x95\x1d\x2a\xbb\xfd\xbb\x77\x4f\x7c\x44\xb3\x32\xcf\x4a\xe4\xd3\x81\xd5\xf4\x75\x26\x73\xcb\x43\xd5\x75\x55\xc1\xc9\x51\xf5\xf4\x73\x74\xea\xf6\xdb\xba\xf7\xda\x2a\xcf\x52\xaf\x6b\x92\xb2\xad\x93\x06\x95\x1d\x53\x60\xbf\x21\x53\xc1\x0a\xc2\x30\x8f\x30\xcd\xf9\x90\xb0\x99\xb0\x8c\x1e\x9e\xba\xaa\xde\xfb\xdb\xba\x7f\xe2\xd4\xee\x64\x9d\x88\x57\xe2\x7c\x33\xcd\xb9\x15\x84\x21\x1e\x61\xde\x9f\x4e\x27\xca\xef\x86\xf3\xbb\x9b\xcf\x2f\x46\xf0\x1b\xc8\x19\xa3\x35\x0a\x99\x75\x65\x94\xf3\xe6\x3e\xbe\xbf\xbe\x90\x31\x56\x45\xc2\x9c\xd9\xcd\x1b\x94\xe2\x94\x57\x49\xc7\xe8\x33\x61\x13\x54\xc9\xb5\xab\x9e\x06\xb6\xde\x82\x95\x8a\x42\x45\x7a\x07\xab\xcf\x59\x8a\x1a\x66\x58\xc2\x0d\xb6\xc0\xd3\x6e\x92\x78\x85\x6b\x49\xfc\x42\x7a\x63\x66\x7d\xda\x9b\x78\x89\xe8\xa2\x3f\xdd\xb8\x0b\xc0\x03\x30\xbb\xf5\x1e\xff\xfb\x05\x2b\x71\xef\xb7\x97\x24\xad\x9e\xdd\x3c\x94\x27\xda\xd4\x4b\x75\x75\x59\x16\x08\x45\x05\x59\xd7\xcc\x6b\xd3\xa2\x63\x55\xa6\x4c\xc6\x31\x76\x78\xa7\xaa\xec\xfc\x67\xea\xc9\xb7\x41\x40\x7f\xb7\xd9\xaf\x68\x1f\x2e\x23\x54\x3c\xb9\x8b\xf4\x70\xed\xba\xaa\x34\xca\xd5\x41\x1c\x4e\x4b\xd2\xd1\x05\xfc\x89\x57\x7b\xa4\xfe\xdd\x5b\x28\xc8\x8b\x44\x88\x06\x83\xb8\x87\x0a\xb8\xd8\x1f\x69\xfc\x77\xf4\xe6\x7e\x18\xc2\x00\x88\xc6\x1b\xfa\xa1\x2e\xc8\x47\xf4\x3f\x5f\xaa\xe7\xfb\xb9\xd7\x57\xe9\x0a\xe6\x37\xf0\x0c\xac\xbe\x47\xe4\xff\x46\x2a\xbd\xdf\xff\xf4\xf1\x7f\xfe\x74\x0f\x72\x31\x08\x1c\xb1\xfe\x01\x97\x7a\xdd\x05\x79\xb4\xf9\x7d\x6c\x8f\x31\x87\x20\x0c\xbc\x5c\xbf\x20\x0f\x23\xf1\xba\xca\x23\x50\x2e\xe8\xa5\x68\xe2\xd6\xa1\xbe\xf3\x93\x3c\x3b\x97\xfb\x23\x2a\x3b\xd4\xcc\xc5\x60\x90\xe3\x7f\xc7\x6c\x25\x65\xea\xfd\x5b\x56\x20\xef\xe7\x63\x83\x50\xe9\x34\x68\x12\x72\xaf\x4b\x6f\x63\x0c\xc1\xed\x0f\x8f\x36\x88\x8b\xa1\xf6\x8b\xfc\x49\xd6\x7e\xac\x2e\x2b\x2f\xa8\xc9\xba\x3b\x08\x7a\x6d\x9d\x94\x37\x11\x57\xb4\x8c\x9f\xc6\x3f\x51\xc1\x23\x83\x20\xf8\x30\x8d\x9f\x84\x54\xb7\xb1\xc5\x0c\x2b\xca\xa2\xb1\xd4\x3d\x6e\xd3\x87\x73\x58\x75\x24\x69\x76\x6d\xf7\xcb\x28\x76\x72\xa6\x03\x42\xde\xef\x00\xaf\x3b\x44\x99\x04\x43\x84\x84\xff\x74\xc7\xa8\xe8\x1f\x0f\xb2\xe2\x59\x38\xd2\xac\xc5\x7f\xce\x90\xcc\xd0\x64\x7f\xc1\xa1\xe8\xed\x90\x1c\x3f\x9f\x9b\xea\x5a\xa6\xc4\x41\x3f\x1d\xab\xbc\x6a\xf6\xef\x37\xc7\x6d\xbc\x4d\x9f\x8e\xd7\xa6\xad\x9a\x7d\x59\x61\x61\xe6\xd5\x33\x4a\xe7\x74\x70\x88\x9d\xc7\x59\xf1\x3f\x1b\xf4\x25\xab\xae\xad\xf7\x53\x55\x76\x17\x87\x79\x00\x84\xef\x23\xb6\x3f\xa3\xbe\x9b\x8d\x09\x25\x78\xad\xb9\x3f\x65\x4d\xdb\xf9\xc7\x4b\x96\xa7\x78\x7c\x59\x4f\xeb\x2a\x73\x9b\xfc\x56\x6c\xba\x6c\xdf\xa3\x47\x74\x44\x27\x77\x5d\xe7\x0a\x47\x16\x24\xa2\xc2\xc5\x63\x48\x8e\xff\x74\xc7\xb8\x3c\x3e\xdf\xc6\x95\xcc\x72\x87\x8a\x27\xab\x52\x4b\x9a\x30\x83\x4c\x9a\xbc\x7c\xf5\xd9\x42\xb0\x52\xa9\x3a\xab\x7a\xba\xc4\xeb\xc7\xd9\x8d\xe8\x12\x72\x76\x33\xba\x8a\x34\x0e\xfc\xd3\x9d\xfa\x95\x2e\x4b\xf4\x3c\x83\x8d\x2a\x4f\x6f\xf7\x0e\x1c\xf1\x9c\xe3\xee\x56\x83\xf2\x04\xaf\xe1\xe7\x62\x70\xdd\x96\x60\x06\x99\x72\x2b\x87\xa4\x62\x2c\xe8\xbd\x0f\x82\xed\x81\x44\x7e\x04\x9e\x6e\x77\x91\x88\x90\x17\x51\x85\x0a\xbc\xc0\xc3\x31\x2e\x0e\x63\xf5\x2d\x3a\x16\x37\xe2\xc9\x43\x83\xb1\x79\x73\x87\x86\x33\x33\x06\x82\x36\xd0\xf4\x81\x75\x97\xf7\x89\xfd\x22\x5b\x07\xd8\x63\xb1\x50\x29\xf0\xfc\x10\x47\x5d\x72\xa4\x1e\x3f\xcc\x66\x58\x1e\x11\x69\xeb\xc2\x1f\x69\xcf\x99\x86\x73\x1d\x4e\xfa\x57\x73\x38\x6c\xc1\x02\xea\x9a\x10\xdc\x59\xed\xaa\xb0\x07\x1a\x2e\x63\x6c\x04\xa5\x69\xfb\xb6\x45\x04\x65\xf0\x2b\xf8\x06\x82\x67\xc9\x23\xec\xbf\xba\x6e\x51\xf2\x6f\xb0\x34\x14\xc1\x7c\x55\x92\xdb\xfd\x56\xfa\xb4\xbc\xb6\xa8\x7b\x46\x65\xf7\x72\xaa\xae\x0d\xf7\x23\x83\x4b\xdb\xaa\x2e\x8d\xec\xea\x64\x65\x7d\xed\x7c\xcc\x47\xed\xd1\xa0\x85\x06\x59\xdf\xcb\x24\x3e\xa9\xeb\x8c\xff\xf6\x0f\xff\xf0\xf1\x77\xff\xf8\x0f\xde\xef\xbc\x7f\xe6\x5c\x79\x5f\xd6\xcb\xd5\x32\xf4\xbe\xbd\x74\x5d\xdd\xee\x3f\x7e\x3c\xa3\x6e\x60\x79\x79\xac\x8a\x8f\x0f\x18\xfe\x0f\x55\xfd\x42\x2c\x99\x17\x05\x61\xe8\x47\x41\xf8\xe8\xfd\xdb\x05\x09\x78\x7e\x7f\xed\x2e\x55\xd3\x1a\x81\x9f\xb3\xae\x43\xcd\xc2\xfb\x53\x79\x5c\x62\xa0\x1f\xb3\x23\x2a\x5b\x94\x7a\xd7\x32\x45\x8d\xf7\xd3\x9f\xfe\x4d\xe0\x21\xeb\x2e\xd7\x03\xa1\xde\x3d\x1f\xda\x8f\x03\x43\x1f\x0f\x79\x75\xf8\x58\x24\x6d\x87\x9a\x8f\x3f\xfe\xe9\x0f\x7f\xfc\xf3\xcf\x7f\xc4\xfc\x7d\xdc\x37\x55\xd5\xdd\x7c\xff\x90\x5f\xd1\xa0\x93\xbe\x9f\x95\x69\x76\xae\xf6\xef\x37\x9b\x30\x38\x45\x4f\xbe\x5f\x5f\x9b\x3a\x47\xfb\xf7\x9b\xd3\x3a\x3a\x86\xb8\x20\x2b\x3f\xef\xdf\xa3\xdd\x0a\xed\x8e\x4f\xbe\xdf\xa0\x74\xff\x3e\x3d\xae\xe2\x75\xfc\xe4\xfb\x55\x93\x94\x67\xb4\x7f\x7f\x4a\xb7\x28\x5c\x3f\xf9\xfe\x0b\xc2\xc3\x8a\xd5\xfc\x18\x06\xdb\x27\xdf\x3f\xe3\x08\x6b\xff\x3e\xda\x25\x5b\xd2\xa2\x43\x49\xbe\x7f\x1f\x05\xc7\xc7\x47\x5c\x7d\x7c\x49\xca\xfd\xfb\x70\x9b\x44\x87\xdd\x93\xef\x3f\x5f\xb2\x0e\xd1\x49\x82\x9b\x26\x2f\x83\xe6\xd0\x9f\x7e\x9a\x34\x9f\xf7\xef\x57\xeb\x55\xb2\x0e\x30\x73\x4d\x56\x24\xcd\x8b\xd0\x21\xea\xf8\x49\xd9\xd0\xb2\xbd\x1e\x8f\xa8\x6d\x05\x2e\xb2\xf2\x54\x89\x64\x93\xa6\xc4\xb1\xdc\xc8\x76\x8a\xfb\xd5\x08\x3d\xcd\x89\x76\xbd\x3f\xed\x4e\x8f\xa7\x84\x00\x48\x8c\x1c\x1a\x94\x7c\x26\x5a\xe4\xf7\xed\x5e\x29\x69\x0b\xfa\x59\x46\x2e\x2d\x52\xfa\x25\x45\x2e\xcd\xcf\xf4\xe3\x87\x82\x33\xdf\x87\x51\x10\x90\x62\xb2\x68\x3c\x25\x45\x96\xbf\xf8\x6d\x52\xb6\x7e\x8b\x9a\xec\xb4\xf7\x93\xba\xce\x91\xdf\xbe\xb4\x1d\x2a\x16\xff\x9c\x67\xe5\xe7\x9f\x92\xe3\xcf\xe4\xe7\xbf\x54\x65\xb7\x78\xf7\x33\x3a\x57\xc8\xfb\xf7\x3f\xbd\x5b\xfc\x6b\x75\xa8\xba\x6a\xf1\xee\x7f\xa0\xfc\x0b\xea\xb2\x63\xe2\xfd\x19\x5d\xd1\xbb\xc5\xef\x9b\x2c\xc9\x17\xef\xfe\x5c\x75\x95\xf7\x73\x52\xb6\xef\x16\x23\x81\xc5\xbb\xdf\x63\x02\xde\x1f\xf0\x84\xf6\xfe\x58\x54\x7f\xc9\xde\x8d\x38\xf5\x82\x9f\x5f\x8a\x43\x95\xbf\x63\xd8\xc4\x56\x4a\x1f\x8a\xaa\xac\xda\x3a\x39\xa2\xfd\xcf\xff\xf2\x53\x55\x56\xfe\xbf\xa2\xf3\x35\x4f\x9a\xc5\x4f\xa8\xcc\xab\xc5\x4f\x55\x99\x1c\xab\xc5\x1f\xaa\xb2\xad\xf2\xa4\x5d\xbc\xfb\x31\x3b\xa0\x26\xc1\xcb\x09\x1c\x6b\x54\xef\x16\xef\xfe\x50\x5d\x9b\x0c\x35\xde\x9f\xd1\xf3\xbb\xc5\x80\xee\xf5\x77\x0b\xf6\x1d\x67\x74\xb8\x3d\x5e\x6d\xe3\x91\x1e\x7c\x6f\xff\x7a\xe9\x8a\xfc\x26\x30\xb4\x1f\xfb\x2c\x59\x96\x70\x19\xc6\x4f\xfe\x33\x3a\x7c\xce\x3a\x9f\x9a\xf0\xec\x57\xe4\x27\xe9\x5f\xae\x6d\x47\x63\xe8\xa1\x36\xa9\xfd\x4b\x76\xbe\x10\xa5\x61\x7e\x40\x58\x43\xbd\x26\x4d\x97\x1d\x73\xb4\x48\xda\x2c\x45\x8b\x53\x76\x3e\x26\x35\xee\x10\xfe\xf3\xda\xa0\xc5\xa9\xaa\x30\xdf\x38\x9a\xc1\xff\x10\x3b\xb6\x28\x92\xac\x5c\x94\xc9\x97\x45\x8b\xc8\x06\x8c\xfc\xbd\xf0\xf5\x50\xa5\x2f\xc3\xee\xf2\x93\xd8\x9f\x49\xcd\xe0\x63\xc6\xf5\x42\x56\x0b\xa6\x15\x83\x52\x88\x3a\xa1\xa9\xc4\x42\x56\x88\x85\xa2\x0e\x0b\x55\x19\xc4\xcd\xdc\x06\x15\xd2\x5e\xef\x3a\x08\x94\x01\x88\xb9\x3b\x89\xc2\x28\x8e\x1e\x9f\x84\x6d\x85\x1c\x9d\xba\x27\xdd\xf9\xe2\xe5\xd4\x2f\x5d\x72\xc8\xca\x14\xf5\xdf\xbf\xf3\xc3\x77\x9f\xf6\xa7\xea\x78\x6d\x6f\xd5\xb5\xc3\xc8\xf7\xc1\x3f\x66\x45\x5d\x35\x5d\x52\x76\xaf\x97\x46\xd4\x91\xac\xcc\xba\x2c\xc9\xf9\x12\x45\xf8\x58\xfc\x25\x6b\xb3\x43\x8e\x5e\x2f\xe1\xe2\x12\x2d\x2e\xab\xc5\x65\xbd\xb8\xc4\x8b\xcb\x86\x0d\x00\xf9\x52\xc2\x37\x86\xf8\xb7\xa9\x25\x59\x9d\xd4\x36\x10\x2c\x82\xd7\xe4\x70\x68\xa8\xcf\xaa\x9a\xec\x9c\x95\x49\xee\x77\x59\x97\xa3\x4f\x0b\x52\x43\xff\xa6\x3b\x2a\x29\x3a\x56\x74\x2a\xec\x89\x93\xc0\x1d\x92\x55\x14\x82\xf0\xd2\xaa\xeb\x50\xfa\x34\x09\xc0\x9c\xe3\x05\xe5\xb5\xf2\x9d\x2d\x30\x51\xf1\xdb\xcf\x59\xed\x63\x97\x41\xbc\xbf\xb5\xf6\x35\x49\xd3\x06\xb5\x2d\x0b\x83\xd9\x77\xf3\xa6\x48\x72\x70\xcb\x8c\x41\x2f\xd2\x7c\x51\xe5\x8b\x6b\x7e\x03\x64\xa7\xd6\x11\x21\xbf\x56\xb9\x57\xe1\x0a\xef\x8a\xeb\x3c\x02\xe1\x69\x08\x82\xd7\xb4\xbb\x29\xdf\x1a\x5e\xd3\xf4\x06\x8c\x22\x1f\x36\xf2\x45\x29\x78\x25\x13\xf0\xff\x5e\xab\x0e\x0d\x13\xd0\x0b\x3c\xc2\xd0\x61\xd1\x76\x4d\x55\x9e\x25\xc4\x87\x2a\x4f\x51\xf3\xda\x16\x49\x9e\x0b\x7b\x00\xbb\xe0\xc3\x6b\x7b\x3d\x2c\xda\x6b\xad\x87\x7d\xc2\x44\xd9\xc6\x1f\x24\x01\x05\x4f\x5f\x10\x36\x28\x49\xce\xe6\x02\x53\x5c\x8c\xec\xc6\x3f\xd0\x2d\xa3\x18\x15\xaf\x18\x35\xf9\x28\xba\xc4\xbf\x92\x9b\xbc\x44\x55\x15\x82\x0c\xa1\x36\xa7\x38\xf6\x84\xad\xf8\x06\x1c\xf1\xe6\xb0\x32\x2b\xd5\x6b\x82\x97\x7d\xdf\xfe\x72\x69\xd0\xe9\xd3\x03\xfd\x9b\x4f\xcc\x4f\x0f\x0b\x6b\x2d\x9d\xb2\x13\x30\x22\x37\x4c\x67\xc0\x1e\xd9\x19\x51\xad\xc3\xeb\xb1\x4a\xd1\xe2\xf3\x21\x5d\xd4\x0d\x5a\xb4\x49\x51\x4b\xbe\xc2\xc9\x65\x29\x1e\x6b\x21\xf8\xab\xd1\x5d\x89\x96\x10\xdb\x89\x06\x4d\x59\x8a\xd1\x1e\x25\xd7\xae\x7a\xa5\xbe\x43\xd3\xc0\xac\x38\xdf\xa4\x58\x9d\xc8\x20\x2b\xce\x8b\xf6\xcb\xf9\xa6\x68\x4e\x91\xa5\x69\x8e\x5e\x71\x8d\x72\x32\xe6\x95\x6e\x18\x8f\xbb\x04\x79\x52\xb7\x68\xcf\xff\x78\x65\x1e\x8c\x6f\x8b\x13\xa6\x97\x5b\x32\x59\x78\x11\x9f\x41\xb4\x54\x0e\x0c\x54\x4b\xce\xd0\xf9\xd8\x41\xee\x69\xc3\x57\x79\x1f\x99\x9b\x85\x3c\x39\xa0\x1c\x0e\x33\x21\xfb\x4b\x3f\x01\xde\xe4\xc8\x31\x60\xc5\xca\xe0\xe3\xc0\x8c\x99\x42\x5e\x14\xd7\xbd\x87\xa5\xed\x71\xfb\x47\x5a\xf8\x0d\xee\x1f\xe9\x11\xc3\xb4\x20\x11\xc8\xa2\xaa\x3b\xea\xbc\x5b\x94\xa3\x63\xb7\xc0\xfc\x27\x0d\x4a\x60\x47\xcd\xb5\x76\xd4\x04\x5e\x02\xd9\x43\x91\xd0\x4d\x73\x4d\xac\x96\xd2\xa5\x72\x23\x2b\x90\x53\xd5\x14\x54\x05\x58\xd5\x73\xd5\xa4\xfe\x73\x93\xd4\xcc\xf6\xbe\xfe\xd2\xbd\xd4\xe8\x7b\xda\xfe\xd3\x82\xfe\x6a\x50\x8b\x3a\xfe\xa3\xbd\x1e\x8a\xac\xfb\xb4\x60\xa2\xe4\x92\x48\xea\x1a\x25\x4d\x52\x1e\xd1\x9e\xd6\xc8\x98\xc8\x44\xdb\xf3\x68\xf1\x41\x42\x0c\xd7\x31\x3a\x6a\x25\x1b\x2a\xb9\x54\x0d\xe4\x64\xd2\x7b\xbf\xa8\x7e\x65\x43\x95\x95\x25\x6a\x64\xea\xa6\x6a\xce\x80\x5e\xcf\x78\xd0\x2a\x84\xaf\x42\xc0\x9c\xc3\x23\x45\x31\x1f\x2f\xe8\xf8\xf9\x50\xf5\x9f\x16\x42\x21\x56\xc6\xea\x13\xbc\x4a\x1d\x8f\xac\x89\x68\x70\x34\x2b\xa1\xe0\xe1\xad\x9f\x57\xc7\x24\x97\xaa\x8a\xaa\xec\x2e\x52\x09\x06\xfc\x04\x0d\x5f\x9e\xb5\x1d\x5e\x19\x0f\xda\x2a\x19\x9a\xa7\x06\x11\xdd\xe4\xa6\xe3\xf5\x94\xa1\x3c\x6d\x51\x77\x1b\xcf\x6f\x05\x4f\xc0\xe7\xb1\xe1\x20\x5d\x8e\xce\xa8\x4c\x95\xf3\x6e\xd2\xa7\xa8\xde\x17\x7e\xaa\xa8\x64\x57\x2c\x9e\x06\x20\x05\xc0\x5c\x79\x92\xbd\x02\x89\x32\x7d\x1a\x73\x30\xa5\xaf\x9b\xea\x4c\xd6\x22\x06\x57\x4a\x25\x56\x5e\x8b\x03\x6a\xb0\x42\x30\xa1\x91\x41\xf7\xdb\x1a\x33\x45\x27\x9c\x01\xb0\xba\x76\x32\xe0\x4d\xf8\x58\xc8\xb0\xb7\x28\x69\x8e\x97\x4f\xdc\xfc\xf8\xd5\xe9\xd4\xa2\x6e\xef\x93\x68\x50\x1f\x25\xa2\x53\x52\xcb\x91\x1c\x2d\x10\x3c\x1f\x34\xcc\x04\xc1\xd8\xe6\x94\xe5\xc8\xbf\xd6\x79\x95\xa4\x9c\x47\x2c\xdb\x41\x6a\xe6\x79\x5e\x5d\x3b\x6c\x83\x20\x1b\xfc\xda\x5e\x0b\x1c\xa1\x0f\x95\xe4\x34\x4c\xd6\x61\x07\x20\xcf\xd8\x0e\x15\x75\x9e\x74\x68\x80\xa4\xfd\xa3\xde\xe7\x93\x54\x2a\xac\xd8\x97\x97\x70\xb1\xbc\x44\x8b\xe5\x65\xb5\x58\x5e\xd6\x8b\xe5\x25\x5e\x2c\x2f\x9b\x85\x71\x65\xae\xeb\x0e\x5b\x94\xc5\x5a\xb4\x11\x11\xec\x97\x50\x58\xa2\x45\xd4\x89\x60\x8a\x97\x48\x2c\xa7\xa5\xab\xc5\x65\x75\x13\x15\x72\xcb\xc0\xd7\x8b\xcb\xfa\xa6\x6a\xea\x2b\x66\xf6\x12\x4b\xe5\x6c\x0b\x13\xf7\x60\x73\x93\x63\xa3\xd7\x65\x8e\x92\x54\x87\x96\x7a\xb1\x0a\x82\xd7\x25\x93\x95\x2f\x72\x4e\x0f\x2b\x0d\x35\x8b\xe1\xcf\xe8\xa6\xb4\xd7\xa5\xa0\x80\x12\x7c\x31\xeb\x02\xaf\x13\xfb\xbd\x56\xeb\x46\x6a\x6b\x77\x6a\xa2\xc0\x56\x14\xe3\xa5\x11\xd7\x44\xa1\xb0\x12\x17\x97\x45\xdc\xce\x88\xc7\xd6\x42\xf0\xb4\x5d\xf8\xf0\xba\x24\xab\xf0\x05\xb0\x16\x57\x63\xd1\xd7\x65\x91\x34\x9f\x17\xf8\x3f\x83\x99\x27\xe7\x8f\x80\xa8\xf3\x78\xda\xa1\xd5\x2b\x3d\xfa\x45\xa7\xc3\x42\x39\x07\xc6\x17\x45\x34\x84\x78\xd2\x8e\x0e\x0b\x4d\xc9\x74\x81\x67\x97\x06\x46\xdd\x62\x9e\xf0\xaf\x9f\x0f\x5c\x60\xf4\x2b\x0b\x1b\x18\x66\xd5\xb2\xb6\x10\xba\xfc\x18\x7c\x78\x52\xd6\x09\xd7\xba\x46\xcd\x31\x69\xd1\xeb\x52\x8b\x71\x24\x91\x03\x2a\x3c\x36\xf0\xe9\x76\x86\x62\xef\x65\x59\xab\x5b\xd7\x6a\x63\xed\x2b\xd6\xff\x8e\x82\x70\xfd\xbf\x83\xe0\xf7\xc1\xbb\xd7\x65\x56\x9c\xfd\x53\x7e\xcd\xd2\x05\xf9\xb3\xbb\x5c\x8b\x43\x99\x64\x38\xc2\x93\x3c\x89\x68\x73\x15\xc8\x71\x44\xc9\x9c\x02\x77\x12\xb8\x66\x8d\xca\xf4\x3e\x45\x28\x42\x1b\xc3\x87\x08\xb6\x22\x87\x47\x8e\x56\xfa\x78\x79\x0e\x99\x26\x69\x5a\x0c\xd0\x7c\x95\x2d\x8f\x9a\x2c\x3c\x1c\xb0\x88\x9a\xbc\x5d\xc6\x03\x08\xdb\xc6\x25\x6b\x3e\xb2\xbd\xb8\x27\xff\xf5\x71\xc1\x6b\xf2\x03\x69\x2a\xf9\xca\xd7\xcf\x87\x54\x90\x4d\x83\x0a\x6f\xb9\x96\x47\x5c\x22\x40\xa4\xa4\xc9\x8e\x6d\xd7\xa8\x52\xc2\x42\xfa\x7c\x48\x3d\x91\x86\x74\xbc\x2f\x50\x66\x21\x8e\xc8\x6b\x41\xa2\x9a\x26\x89\xac\x50\xa2\x18\xde\x53\x44\x62\x58\x15\x8c\x42\x61\x8b\x82\x65\xdd\x20\xbf\x3d\x36\x38\xc6\xc1\xc1\x0f\xd6\x26\x36\x24\xab\x75\x50\xf7\x43\x00\xe6\xbf\xec\x29\xd8\xeb\x12\x2b\x68\x92\x95\xe3\x29\x51\x61\x05\xc3\x26\x61\x18\x8f\x57\x10\xe8\xfc\x27\x25\xd2\x44\x25\x0b\x2d\x71\x97\x81\xe8\xac\xf9\xb8\xff\x48\x76\x54\xf9\x18\xf3\x68\x3b\xc0\x0f\x35\xda\x46\x86\x46\xfc\x48\x3e\xd4\xe8\x71\x63\x68\x44\x37\xad\x0d\xad\xc2\x90\x32\x38\x56\xd2\x49\xfc\x5b\x48\x6e\xd9\x54\xcf\x83\xda\x9c\x72\xd4\x3f\xe1\xff\xd0\xb8\x07\xff\x47\xc6\xe1\x8b\x68\x09\x12\x52\xf2\xba\x2c\x2b\xff\x7c\xed\x3a\xd4\xb4\xb2\x5d\x0d\x94\x1d\x21\x01\xf0\x87\xe5\xb1\xca\x17\x62\xc1\x2f\xc7\x3c\x69\xdb\xdf\x7d\x7f\xac\x72\x7f\x38\x7f\x3a\x20\x92\x1d\xc3\x2b\x6d\x8d\x41\x43\xfa\x4f\x44\xff\x59\xd1\x7f\xd6\xf4\x9f\x98\xfe\xb3\xa1\xff\x6c\xe9\x3f\x3b\xfa\xcf\x23\x6b\x1e\xb0\x7f\x19\x9e\x90\x21\xc2\xe2\xa1\x7f\xe5\x67\xfe\x2f\xa7\x95\x9f\x39\xb9\xfc\xcc\x29\xe6\x67\x4e\x34\x3f\x73\xba\xf9\x99\x93\xce\xcf\x9c\x7a\x7e\xe6\x0c\xe4\x67\xce\x03\xc6\x1c\x8c\x7f\x8e\x54\xc2\x91\xcc\xc8\x4f\x91\xf2\x7f\x39\x3f\x45\xca\xf9\x29\x52\xce\x4f\x91\x72\x7e\x8a\x94\xf3\x53\xa4\x9c\x9f\x22\xe5\xfc\x14\x29\xe7\xa7\x48\x39\x3f\x18\x73\x30\xfe\x39\x52\x09\x47\x32\x23\x3f\x6d\xc1\xff\xe5\xfc\xb4\x05\xe7\xa7\x2d\x38\x3f\x6d\xc1\xf9\x69\x0b\xce\x4f\x5b\x70\x7e\xda\x82\xf3\xd3\x16\x9c\x9f\xb6\xe0\xfc\x60\xcc\xc1\xf8\xe7\x48\x25\x1c\xc9\x8c\xfc\xf4\x39\xff\x97\xf3\xd3\x0f\xea\xd1\x0f\x1a\xd2\x0f\x4a\xd2\x0f\x7a\xd2\x0f\xaa\xd2\x0f\xda\xd2\x0f\x0a\xd3\x0f\x3a\xd3\x8f\x6a\xd3\x8f\x9a\xd3\x8f\xca\xd3\x53\xfd\x01\xb6\x2b\x67\xce\x61\xa2\xe7\x37\x32\x27\x0f\x49\x9b\xb5\xd8\x0f\xe0\x1f\xe7\xa6\x7a\xde\x87\x4a\x44\xf8\x3a\x28\x2e\x69\x41\xf6\xba\xd4\x43\x97\x50\x8b\x70\x04\xdf\x2d\x57\xe4\xff\xc4\x60\x73\x28\xa3\xd0\xd1\x08\x1d\x6e\x96\x1b\xfc\x7f\x5b\x29\x36\x1d\x0a\x29\xfc\x6a\x84\x8f\x62\x11\x30\x8a\x19\xc4\x7a\x84\x58\xad\x00\x06\xc6\x42\x0a\x1f\x8f\xf0\xeb\x10\xe0\x60\x2c\xa4\xf0\x9b\x11\x3e\x96\xc2\xe8\x98\x4b\x60\x2b\x40\x40\x22\x88\x15\x19\xec\x46\xf8\x0d\x24\x83\x8d\x22\x83\xc7\x11\x7e\x2b\xc9\x60\xcb\x65\x10\x06\xc2\x20\x40\x42\xd8\x29\x42\x08\x85\x51\x7b\x84\xa4\xf0\xa8\x48\x21\x14\x07\x4e\xdf\x4e\x78\x5d\xd2\x55\x08\x39\x22\x78\xa3\x0b\x3a\x3f\xe4\xa5\x78\xe5\xcc\x0a\xc3\x15\x2f\x0c\x6e\xc3\x15\x40\x5a\x10\x72\x10\x5e\x10\xb1\x82\x88\x17\xac\x58\xc1\x80\x63\xcd\x0a\xd6\xbc\x20\x66\x05\x31\x2f\xd8\xb0\x82\x0d\x2f\xd8\xb2\x82\x2d\x2f\xd8\xb1\x82\x1d\x2f\x78\x64\x05\x8f\x03\x63\x9c\xd5\x70\xe4\x75\x60\x76\xe0\x36\xe4\xec\x86\x98\x5f\xb2\xcb\xe0\x87\x37\xd1\x83\x09\x6a\xc0\xea\x23\xa9\x5e\xd4\x7d\x06\xb0\x92\x00\x88\xce\xb3\x9a\xb5\x54\x23\x2a\x39\x03\x88\x25\x00\x51\xab\x19\xc0\x46\x02\x20\xda\xcc\x6a\xb6\x72\x8d\xce\xf7\x4e\x02\xd8\xe8\x7c\x3f\x4a\x00\x5b\x81\xef\x30\x90\x65\xa2\x33\x1e\xca\x52\x13\x34\xd1\xb6\x52\xc3\x66\x7c\x9e\xa9\x63\x66\x7f\x9e\xb5\xc3\x6e\x63\x96\xc1\xc3\xde\x6c\xa6\xcd\xc3\x6e\x6f\xd2\xec\x61\x8f\x38\xd3\xf2\x61\xd7\x39\xd3\xf8\x61\x1f\x3b\x69\xff\xb0\xfb\x9d\x69\x02\xb1\x9f\x9e\x69\x05\xb1\x43\x9f\x34\x84\xc4\xd7\xcf\xb4\x85\x64\x51\x30\xd3\x1c\x92\xd5\x83\x93\x45\x6c\x0b\x83\x51\x6c\x0b\xd8\x2e\xb6\x85\x6e\x1a\x89\xd6\x29\xd6\x91\x28\x96\x62\x20\x89\xe6\x28\x36\x92\x28\x8a\x62\x26\x89\x26\x28\x96\x92\x0c\xb5\x62\x2c\xc9\xc8\x2a\xf6\x92\x0c\x9d\x62\x32\xc9\xd8\x28\x56\x93\x0e\x85\x6a\x38\xa9\xb0\x55\xdb\x49\xc5\xa9\x99\x4f\x22\x0a\x25\x06\x18\xab\xa6\x8c\x2b\x11\xd0\x84\x7d\x25\x02\x33\x99\x58\x22\xb9\x09\x2b\x4b\x24\x39\x61\x68\x89\x64\x4d\xb6\x96\x88\x78\xc2\xdc\x12\x91\x4f\x58\x5c\x32\x04\x26\xa3\x4b\xc7\x62\xc2\xee\xd2\xa1\x31\x98\x5e\x6b\xc0\x8b\x97\xf4\xf3\x6c\x2f\x0b\x01\xe6\xd9\x5e\x1c\x42\xcc\xb2\xbd\x38\xb2\x99\x69\x7b\x71\x08\x34\x69\x7b\x71\x74\x34\xd3\xf6\xe2\x30\x6a\xa6\xed\xc5\xf1\xd6\xa4\xed\xc5\xa1\xd8\x4c\xdb\x8b\x63\xb6\x99\xb6\x17\x07\x77\x93\xb6\x97\xc4\x7d\x33\x6d\x2f\x09\x10\x67\xda\x5e\x12\x49\x3a\xd9\xde\x22\x35\xd8\xde\x22\x85\x6d\x6f\x91\xea\xb6\x97\x68\x9d\x62\x7b\x89\x62\x29\xb6\x97\x68\x8e\x62\x7b\x89\xa2\x28\xb6\x97\x68\x82\x62\x7b\xc9\x50\x2b\xb6\x97\x8c\xac\x62\x7b\xc9\xd0\x29\xb6\x97\x8c\x8d\x62\x7b\xe9\x50\xa8\xb6\x97\x0a\x5b\xb5\xbd\x54\x9c\x9a\xed\x25\xa2\x80\x6d\x2f\x91\x88\xdd\xf6\x12\x01\x4d\xd8\x5e\x22\x30\x93\xed\x25\x92\x9b\xb0\xbd\x44\x92\x13\xb6\x97\x48\xd6\x64\x7b\x89\x88\x27\x6c\x2f\x11\xf9\x84\xed\x25\x43\x60\xb2\xbd\x74\x2c\x26\x6c\x2f\x1d\x1a\x77\xdb\x3b\xee\x1b\xe6\x7e\x7e\x9e\x67\x7b\xd9\x76\xd0\x3c\xdb\x9b\x9f\x67\xda\xde\xfc\x3c\xdb\xf6\xe6\x67\x07\xdb\x9b\x9f\x67\xdb\xde\xfc\x3c\xdb\xf6\xe6\x67\x07\xdb\x9b\x9f\x67\xdb\xde\xfc\x3c\xdb\xf6\xe6\x67\x07\xdb\x4b\xf6\x00\x67\xda\x5e\xb2\x59\x38\xd3\xf6\x92\x5d\x45\x27\xdb\x9b\x9f\x4d\x9b\x01\x67\xd8\xf6\xe6\x67\xdd\xf6\x12\xad\x53\x6c\x2f\x51\x2c\xc5\xf6\x12\xcd\x51\x6c\x2f\x51\x14\xc5\xf6\x12\x4d\x50\x6c\x2f\x19\x6a\xc5\xf6\x92\x91\x55\x6c\x2f\x19\x3a\xc5\xf6\x92\xb1\x51\x6c\x2f\x1d\x0a\xd5\xf6\x52\x61\xab\xb6\x97\x8a\x53\xb3\xbd\x44\x14\xb0\xed\x25\x12\xb1\xdb\x5e\x22\xa0\x09\xdb\x4b\x04\x66\xb2\xbd\x44\x72\x13\xb6\x97\x48\x72\xc2\xf6\x12\xc9\x9a\x6c\x2f\x11\xf1\x84\xed\x25\x22\x9f\xb0\xbd\x64\x08\x4c\xb6\x97\x8e\xc5\x84\xed\xa5\x43\xe3\x6e\x7b\x85\xcf\x2f\xb9\xdf\xcf\xdc\x5f\xed\xef\xd9\x62\xed\xe7\xee\xb2\xf6\xf3\x37\x5a\x7b\x97\xbd\xd6\x7e\xfe\x76\x6b\x3f\x7f\xc7\xb5\x77\xd9\x74\xed\xe7\xef\xbb\xf6\xf3\xb7\x5e\x7b\x97\xdd\xd7\xfe\x8e\x0d\xd8\xfe\x8e\x3d\xd8\xde\x79\x1b\xb6\xcf\x0d\xc6\xb7\xcf\x61\xe3\xdb\xe7\xba\xf1\x25\x5a\xa7\x18\x5f\xa2\x58\x8a\xf1\x25\x9a\xa3\x18\x5f\xa2\x28\x8a\xf1\x25\x9a\xa0\x18\x5f\x32\xd4\x8a\xf1\x25\x23\xab\x18\x5f\x32\x74\x8a\xf1\x25\x63\xa3\x18\x5f\x3a\x14\xaa\xf1\xa5\xc2\x56\x8d\x2f\x15\xa7\x66\x7c\x89\x28\x60\xe3\x4b\x24\x62\x37\xbe\x44\x40\x13\xc6\x97\x08\xcc\x64\x7c\x89\xe4\x26\x8c\x2f\x91\xe4\x84\xf1\x25\x92\x35\x19\x5f\x22\xe2\x09\xe3\x4b\x44\x3e\x61\x7c\xc9\x10\x98\x8c\x2f\x1d\x8b\x09\xe3\x4b\x87\xc6\x64\x7c\x97\x86\x84\x1a\xd2\x31\x19\xf9\x64\xc2\x72\x4c\xa4\x31\xe4\xb5\x18\x8e\x5a\xd0\x43\xd2\xca\x69\xc4\xae\xaa\xe1\x43\x4d\xec\x1c\xca\x80\x92\xe6\x41\xb8\xa8\xa7\x19\x29\x2f\xca\x5d\x8e\xc8\x88\xe5\x50\xa5\x2f\xdf\x91\xff\xde\x04\xaa\x26\x78\xbf\x2d\xc6\xbe\x90\x1f\x42\x77\x56\xe4\x40\x0c\xad\xa2\xb8\xd0\x00\xca\x7f\x0b\xad\xc7\xa2\xcb\xcd\x74\xe8\x46\x45\xc7\x7b\x0d\x21\x61\xe2\x90\x6f\x5c\x33\x8f\x51\xf7\x32\xa6\x1c\xb5\xad\xd8\xf7\x05\x50\x9b\x42\x85\x17\xb0\x50\x22\x8d\x67\x28\x93\x4f\xd7\x64\x35\xe6\x0d\x93\xf0\xba\x66\x5f\x76\x17\xbf\x3a\xf9\xdd\x4b\x8d\xbe\xad\xd2\xf4\x41\xbf\x49\x2c\x9e\x5c\x0b\xe2\x07\x8e\x89\xdc\x7b\x18\xf1\x48\x97\x32\xf8\xc1\x1b\x2b\xaa\xed\x88\x8b\xdd\xa7\x5c\xc8\x3f\x7f\x18\xfb\x3b\x94\x5c\x80\x9b\xce\x87\x5d\x9a\x9c\x4e\x0a\x2e\x48\x94\x43\x95\x8a\x57\x10\xe2\x58\x22\x0f\x1e\xa3\xb5\x4d\x0e\x02\x2d\x2a\x03\xb9\x25\xcf\x19\x31\x05\x21\xf4\xce\x06\x04\x75\xf8\xf1\x74\x4c\x47\x26\x86\xab\xa7\x0b\xb5\x40\x20\x21\x94\x41\x18\xd3\x4d\xba\x4b\x0f\x1a\x46\x48\x88\x42\xa5\x8e\x5d\x10\xa4\x58\x06\x8a\xf2\xb0\x3a\x6c\x0f\x07\x50\x94\xe3\x6d\x5a\xb3\x30\x15\x18\x93\x38\x35\x30\xa8\xfb\xc7\xdd\xf1\x70\x1c\x05\x4a\xef\xed\x2e\xe4\x9f\xa2\x30\x79\x09\x88\x6b\x85\x36\xc7\x83\x82\x0b\x14\x24\xaf\x52\xf1\x8a\x42\x1c\x4a\x40\x11\xee\x4e\x69\xf8\x88\x60\x11\xb2\xcb\xc7\x16\x01\x8a\x10\x46\xf1\xc9\x40\xe0\xf4\x0b\xd3\xd3\x38\x8e\x59\x79\xaa\x16\xc2\xdf\x02\x62\xfa\x13\x44\x81\x50\x8c\x24\x14\x90\xc0\x68\x79\x2a\xff\xbc\x28\x3f\x61\x39\x6d\x8e\xa7\x34\x01\xe5\x44\xae\x64\x9b\x85\x34\x56\x9b\x24\x24\x42\x40\x7d\x4b\x0e\x69\x8a\x62\x4e\x9b\x5d\xf9\x5e\xc8\x3f\x05\xdc\x43\x09\x84\xeb\x74\x42\xe8\x90\x28\xb8\x20\x51\x0d\x55\x2a\x5e\x41\x60\x63\x09\x28\xb3\xd3\x29\x3d\x6d\x61\xdd\xe2\xf7\xd6\xcd\x62\x93\x20\x4c\x92\x53\x80\x0c\x1d\xde\x25\x21\x67\x82\xde\x8e\x5f\x48\xbf\x04\xe4\xbc\x00\x44\x14\x1f\x85\x59\x49\x21\x21\xc1\xf1\x9a\x54\x2d\xb8\x68\x05\xa0\xd4\x50\xfa\xb8\x31\xcc\x48\x76\xb7\xdf\x2c\x34\x11\xc0\x24\x33\x19\x06\xec\x69\x78\x08\x0e\x5b\xce\x01\xb9\x0a\xbe\x10\x7f\x08\x98\xd9\x6f\x10\x4b\x7a\x4a\x4f\x48\xc2\x02\x89\x8b\x55\xa4\xca\xef\x8b\xfa\x1b\xd6\xb0\xc3\xe9\x78\x3a\x82\xb2\xa2\x69\x0f\xcc\xa2\x12\xea\x4d\x92\x92\x40\xa0\x2e\xa2\x23\x3a\x9e\x36\xa3\x4a\x34\x9f\x17\xc2\xdf\x92\x5e\xe1\x9f\xa0\xad\xdf\x1c\x77\xc7\x44\x44\x01\xeb\x14\x2e\x4f\xe5\x9f\x17\xe5\x27\x28\xa1\xc7\xf8\xf1\xf1\x11\x96\x10\x49\x04\x61\xd3\x25\x5e\x6d\xd6\xa4\x11\x02\xb4\xc9\x8f\x87\xc3\x61\xd0\x00\x9e\xf9\x48\xfc\x25\x60\xe6\x05\x17\x90\x94\x98\x05\x69\x12\xc0\xc4\xaf\x0c\x03\x70\x6c\x58\x5c\x7a\x4b\x22\x5c\x2e\xe7\x9b\xf5\xc4\x38\x4b\xac\x21\x8f\xc2\x3a\x5e\xa7\x71\xac\xa0\xe3\x9a\xcd\xf1\xad\x1f\xe3\x20\xde\x02\x28\x59\xe6\x2f\x19\xa5\x1c\x4a\x60\xd6\x5c\xf8\x7a\x7d\xb3\x42\x49\x5d\x21\x90\x4a\xd0\xa2\x05\x0c\x02\xcc\x1d\xb1\xc3\xa5\xcd\xc9\x98\x7c\x58\xe0\xd8\x54\x8a\x1f\x04\xc4\xb6\x50\x02\x94\x87\x86\x16\x0f\xf7\xb0\x0f\x39\x6e\x6f\x6d\xe3\xe5\x23\xfd\x04\x4f\x09\x35\xa8\xad\xab\xb2\xcd\xbe\xe0\x40\xd1\x7c\x11\x70\x38\x5f\xdf\xd3\x1d\xc7\xe1\x36\x1d\x2f\xa7\xa7\xee\xb1\xef\xea\xaa\xeb\xf1\xf2\x0a\xa1\xff\xc1\x28\x59\x80\xd3\xed\x66\x6b\xe4\xb4\xb0\x5c\x59\xfc\x0a\x9c\x16\xe9\x2c\x4e\x1f\x1f\x43\x23\xa7\xf9\xf9\x37\xe5\x34\x3f\xcf\xe2\x34\x0c\x1f\x1f\x8d\xac\xf6\xf9\x6f\xca\x6a\x9f\x5b\x58\xd5\xc0\x7f\x4b\x56\xcc\x7c\x2c\x4f\x55\x53\xf8\xc7\xaa\xec\x9a\xca\x22\x0d\x76\xf3\xe4\x98\xe4\xc7\x6f\xc3\x65\x8c\x0a\xef\x3b\x8f\x6e\x13\x79\xdf\x79\x51\xdd\x3f\x3c\x8d\xbb\x2d\xb4\x98\x6d\x22\xdd\x97\x62\xc5\x68\x47\x55\x43\x90\x67\xf5\x7e\xbc\xe2\xdf\x03\x97\xa4\x8e\x28\x5d\xa7\x09\x78\x49\x6a\xcc\x23\xd2\x24\x25\x3b\x43\x2e\x5a\x4a\x6f\x19\xc6\xad\x87\x92\x16\xaf\xef\xfd\xea\xda\x2d\xc6\x14\xe6\x5a\xdd\xd3\xd7\x40\x32\x28\x70\xdd\xa0\x13\x6a\x5a\xbf\x41\xe9\xf5\x88\x52\xbf\xa8\xd8\x09\x77\xfc\xf3\xe1\x26\x8f\x1a\xd0\x0d\x9a\x00\x45\xfe\xfd\x2a\x0f\xf6\x7e\xef\x17\xad\x8f\xfa\x3a\x29\x53\xdd\x66\xf3\xfc\x33\xb0\xa2\xb0\x5c\x05\x4e\xa3\x25\xc7\x60\xc1\x21\x3d\x9d\x86\x8c\x06\xd8\xc9\xf6\x63\x36\x3a\xfc\x3f\x7a\xcf\x8b\xb9\xf1\x30\x5a\x2d\xa2\x38\x66\x49\xe9\x14\xee\x87\x6b\xd0\xf5\xb5\xf3\xeb\x3c\x39\xa2\x0b\xc9\x6d\x22\xa7\xa2\x7b\xaa\xea\xe4\x98\x75\x2f\xe4\x22\x9b\xd2\xfd\xea\xd7\xfb\xda\xb5\xf7\x13\x9d\xdf\x64\xcc\x8d\x27\x16\xff\xd2\xa0\x24\xad\xca\xfc\xe5\x13\xb4\xa8\xa5\xab\x8d\x11\x23\x4d\xb7\x00\x0c\x21\xed\xcd\x97\x24\xbf\x22\x97\xd1\x94\x59\x23\xb7\xb6\x65\xb6\x7c\x92\x93\xcd\x68\x47\xe8\x07\x1a\xd2\x80\xa6\xce\x10\x33\x76\x10\xe3\xc2\xcd\xc7\x77\x5e\x28\x58\x15\xbe\x5d\x0c\x81\x28\x89\x74\x26\x12\x58\x84\xcb\x58\x65\x02\x7b\x2c\x9d\x8f\x49\x2e\x44\x00\xfd\x5e\xf4\x14\xcd\xb6\x00\x68\x46\x93\x44\x23\x98\xea\x72\xb7\x85\xa9\x4a\x63\x53\xe7\x49\x56\x76\xa8\xef\xcc\x76\x5e\xca\xa0\xb2\x82\x53\xa8\xb0\x62\x55\xee\xf6\x6c\x59\x53\x06\xc6\xf8\xee\xc7\xf0\x9e\x92\x17\x98\xba\x23\x17\xe7\xe7\x85\x13\x9c\x30\x02\xa6\xeb\x6f\x2a\x3c\xe8\x05\x41\x27\x48\xc7\x49\x4d\x12\x61\x18\x26\xf0\x6e\xaa\xda\x29\x90\x78\x08\xd1\x26\xa4\xe1\x9b\xd1\x53\x94\xc9\x97\x12\xc0\x58\xfc\x52\x5c\xf3\x2e\xab\x73\xf4\x69\x01\xd5\x62\x12\x9f\x86\xfc\x32\xb2\x73\x92\xae\x3d\x93\x1a\x92\x94\x06\x4a\xa0\x45\xab\x01\x05\x15\xee\xdd\x0f\xd7\x9b\x31\xe8\xbc\x7b\x95\xda\xb5\x4a\x72\xf5\x8b\x23\x62\x57\x25\x87\x9f\xb6\x8b\x92\xda\x2d\xb2\x11\x13\x49\xae\x02\x5c\x49\x93\x3b\x24\x5f\x41\x93\xfa\x44\x10\x50\xff\x02\xbc\x2e\x26\x4a\x62\xa5\x26\x03\xf3\x8d\x98\x06\x27\xf2\x1f\x62\x15\x35\xc1\xca\xed\x77\xad\x5e\x4d\x54\x26\x23\xc7\x0a\xa5\x5e\x32\x27\x43\x41\x3e\xfa\x91\xb4\x00\x2d\x4f\xbb\xaf\xa4\x1d\x90\x93\x03\x6c\x01\xce\x49\x3e\x38\x8b\x58\xda\x2e\xe9\xb2\xe3\x13\x94\xaa\x8a\x61\x5d\x85\x11\x90\x33\x6d\xf9\x25\xc9\xb3\xd4\x3f\x21\x94\x62\xbb\x24\xe5\xf7\x78\xd2\xbf\xa2\x8e\x7a\x07\x27\x0e\xa0\x99\x3d\x39\xd6\xae\xaa\xf0\x5c\x01\x06\x8f\x7c\x36\xc5\x78\x7f\xf5\x49\xc2\xaf\x7d\xfc\x24\x51\x36\xa4\x9e\x91\x8c\x89\xc8\x52\xe8\x66\x5d\x6c\x31\x34\x59\x67\xad\x83\x45\xb8\xd9\x2e\x36\x8f\x8b\xe5\xe3\x83\x29\x9d\x80\x30\xa7\x97\x19\x59\x32\x64\xe9\x62\xf9\x9c\xb0\x3f\x93\x0e\xa5\x9e\xbc\xc0\x20\xe5\xca\xd6\x03\x4b\x82\x2a\x4f\x27\x20\xaa\x78\x10\x59\xcd\x8a\xe4\x8c\xf6\xd7\x26\xff\xf6\x5d\x9a\x74\xc9\x9e\xfc\xfe\xd8\x7e\x39\x7f\xd7\x17\xf9\xd3\xf1\x92\x34\x2d\xea\xbe\xbf\x76\x27\x7f\xb7\xf8\xb0\xfa\x43\xfb\xe5\xec\xf5\x45\x5e\xb6\xdf\x7f\x73\xe9\xba\x7a\xff\xf1\xe3\xf3\xf3\xf3\xf2\x79\xb5\xac\x9a\xf3\xc7\x28\x08\x02\xdc\xf4\x1b\xef\x4b\x86\x9e\xff\xb9\xea\xbf\xff\x86\x1c\x46\xf1\x76\xdf\x7c\x58\xfd\xf1\xc3\xea\x0f\x75\xd2\x5d\xbc\x53\x96\xe7\xdf\x7f\xf3\x21\x5a\x51\x7e\xbf\xf1\xd2\xef\xbf\xf9\x29\x5a\xae\xbc\xcd\x72\xbb\xfa\x71\xb9\xf1\xd6\xcb\x78\x75\xf4\x97\x6b\x3f\x5c\x06\xeb\xe5\x7a\xe3\x87\xcb\xb5\x17\x2e\x43\x7f\xb9\xcb\xc3\x65\xe8\xe1\x9f\xab\xe5\xda\x5f\x2d\x77\xc7\xe5\xc6\x5f\x6e\x56\x5e\x88\xff\x8d\xb6\x5e\xb8\x8c\x96\xdb\xdc\x5f\x7b\xeb\xe5\x06\xa3\x58\x2d\x63\x7f\xb9\x23\xa8\xc2\x65\xf8\xeb\x37\x1f\x29\x1f\x98\xc9\x0f\xab\x3f\xbe\x93\x24\xd1\xa0\x1a\x25\xdd\xbe\xac\xd8\x5f\x62\xdd\xa0\x6f\x58\x79\xbc\x61\xa5\x44\x85\x1a\xee\x74\xb1\x12\xa5\xa1\x70\x1c\x8c\xba\xf6\x07\x0f\x2c\x35\x28\x01\xcb\x8f\x37\xad\x0a\x2c\x68\x00\x15\xc2\x16\x06\x08\xea\xa9\x85\x01\x03\x17\xff\xa1\xcc\xe9\x85\x1d\x8c\x4d\x52\x07\xae\x75\xc4\xce\x4d\xb8\x25\x90\x73\xa5\x2a\xed\x41\xaf\x49\xf1\xc0\x1e\x75\xe8\xcb\x6d\xde\x2c\x1a\xf4\xa3\xab\x6a\x93\x7a\x78\x34\x31\xb4\xa1\xf6\x75\x79\xbc\xb6\x5d\x55\xf8\x6c\x0d\x60\x34\x03\x12\xd8\x4c\x3b\xf0\xed\x8a\x2e\x69\xa8\xe1\x79\xf8\xb8\xc6\xcb\x1c\xbd\x3b\xbf\xad\x39\x58\x7b\x31\x68\x0e\xe8\x0e\x2c\x33\x07\x5e\xf0\x63\xe0\x45\x97\xf5\xaf\x45\xe0\xc5\x3f\x06\xde\xea\xb2\xd6\x67\xaf\x37\xcc\x55\x26\x5b\xb6\x6b\x42\x5d\xe2\xc7\x5d\xdd\x7b\x61\x50\xf7\x8b\xff\xbf\x5a\x37\xf2\x92\x9f\x20\x24\x2a\x17\x26\x2b\x36\xee\x1f\x67\x19\x29\x58\x47\x0d\x56\x0a\xd0\xd4\xaf\x65\xa6\x60\x3e\x74\x73\x62\x87\x1b\x0c\x95\x16\x78\x3b\x9a\x3e\x18\xd6\x64\xff\x00\x79\x4c\x1a\x40\x4b\x1b\x17\x33\x4b\x18\xbc\xc3\xd6\x02\xed\x0c\x06\x57\x5d\x40\x0a\xd2\x50\x57\xbb\x06\x8a\xc2\x4a\xda\xd0\xf0\xa6\xac\x05\x2d\x34\xe1\xd1\xb2\x80\xda\xa5\xa8\xf3\xe6\x24\x44\x53\x33\x83\x0c\xd9\x20\x73\xd9\xab\x8c\x2a\xd5\xb0\x2c\x21\x1c\x7b\x0b\x02\x55\xa6\x77\xf0\xc0\x52\x77\xbd\x99\x15\xe5\xd9\x94\x79\x8c\x19\x66\xbc\x1d\x7c\x62\x86\x82\x9c\xbb\x4d\x54\x4b\xd3\x7b\x06\x7f\x4f\x54\x09\x7d\xb5\x01\x70\xc2\xa7\x0c\xc4\x6a\x7d\x44\xe0\x9e\x25\xad\x98\xea\x01\xb1\xf8\x5f\x8d\xff\x69\x6c\xb7\x3b\xfc\x88\x8d\x75\x9a\x78\x8f\xc9\xed\x61\xa2\x23\xac\x92\x64\xdc\x34\x4c\x21\x52\x37\x77\x0e\xdf\xc1\x0a\x8c\x7b\xe4\x6c\x6f\x62\xcb\x3e\x0f\xc1\xae\x19\x26\xa1\x05\x76\x62\x06\xea\x6c\xba\x4d\x3f\x53\x3b\xfb\xdc\x03\xf8\x54\x14\x6d\x7a\xd0\x54\xca\x46\x04\x6f\x5f\xfc\x64\xe5\xd7\xdd\x62\xa1\x4f\xa1\x8c\x78\xff\xf3\x6d\xb2\x44\x51\xb0\x88\x57\xf3\x36\x59\x58\x6f\xed\x21\x27\x03\x52\xc6\x8c\xbd\x1d\xf3\xf7\xb0\xd1\x32\x84\x1b\x94\x27\x21\x36\xf1\x23\xcf\x8f\xbc\xad\xb7\x15\xa3\x93\xb6\x6b\xaa\xcf\x48\x6a\x80\xe3\x93\xc0\x0b\xf2\x95\xb7\x2a\x02\x7f\x85\x63\x2d\x1e\x48\x1c\xb3\xe6\x98\x23\xaf\xf9\xfe\x9b\x65\xac\x94\x1d\xfb\xef\xbf\x59\x7d\x03\x57\xbd\x98\xab\x68\x2b\x08\xe2\x3f\xc3\x96\x0c\xd3\x06\x97\x4d\x19\x09\x14\x56\x1f\xdb\x94\x17\x14\x1a\xdc\x96\x61\xe8\xff\x43\xb3\x05\xfa\xd6\x8c\x06\xea\xb4\x3d\x63\x21\x30\xab\xd9\x1b\xb6\x69\xf8\x04\x35\x6e\xd4\xf0\xc9\xf9\x77\xb0\x55\x63\x32\x26\x72\xf8\x36\xd7\x9a\xfc\xd7\x76\xcd\x7f\xd9\x48\xd0\x46\xfe\x15\x36\x76\xec\xb6\x0e\xd4\xeb\xaf\x65\xec\x4c\xbc\x40\xc6\x68\x1a\xd6\xbe\xc9\xe3\x68\x48\xcd\xf0\x6e\x9b\x3d\xee\xe6\x74\xa2\x9d\xfb\xa6\xcf\x7d\x16\xdc\xd0\x76\xc6\xe6\xcf\xd0\x76\xfe\xf6\x8f\xb1\xe9\x4d\x59\xa9\x5a\xe9\x9a\x46\x72\x02\xdc\x79\x23\x68\xae\x60\x6d\x4d\x67\xee\x09\x0c\xed\xef\xdf\x12\xb2\xa2\x50\xe5\x7c\x17\x1f\xb3\xa2\x7a\x17\x4c\xa0\x45\x71\x60\xce\x68\x2d\xa6\x9b\xcc\xda\x20\x9a\x3d\xb9\x27\x9a\xdf\xa7\x14\x5f\x71\xab\x68\x0e\x46\xf5\x76\xce\x7a\x13\x6c\x52\xe8\x90\x3e\xa9\x98\xee\xc5\xd7\xda\x2e\x72\xc7\x67\xdd\x30\x32\xf8\x26\x3b\xfb\x6f\xdf\x32\x52\xa7\xc5\xdc\x4d\xa3\xfb\xd9\x99\xdc\xdd\x30\xb3\x66\x9f\xa7\x86\x0e\x1a\x27\xe9\x04\xbc\xfb\x06\xd2\xec\xe9\x69\x6b\x3b\x67\x23\x09\x56\xc1\x59\x5b\x49\x53\x28\xbe\x52\x64\xa9\x1c\x35\x1a\x8f\x7b\x91\xb7\xa1\x9a\xea\xd9\x23\x47\xbe\xf4\x63\x47\x52\x7b\xd1\xe1\x09\xf9\x12\x2c\x29\x73\xc5\xc6\xb4\x3f\x7f\xb9\xb6\x5d\x76\x7a\xf1\xf9\x73\x20\x66\x32\xf4\xf9\x35\x00\x85\xd4\x0b\xe0\xa4\x14\x7c\xe6\x4a\xc7\xad\xe4\xc7\xd1\xe5\x01\x76\x5e\x39\xec\x0f\xbc\x8e\x4e\xb0\xc1\xcf\xf3\x99\x11\x02\xe7\x4b\x95\x57\x47\xc4\x96\xd2\x22\x52\x96\x91\xf8\x82\xf6\x6d\x64\xc8\x3c\x90\x53\xe2\x84\x47\x4c\xec\x2b\x78\xf2\x73\xfa\x00\xda\xf8\x40\x26\x96\x7c\x7b\x69\xb2\xf2\xf3\x78\x06\x0d\x3a\x90\x06\x1e\x47\x83\x04\xc3\x47\xc9\xb9\x3b\x56\x34\x86\xb3\x7c\xaf\xcb\x43\x67\x78\x26\x5f\xbd\xa9\x61\x7c\xfc\x96\x31\x05\x6a\xcb\x70\xc3\xe2\xda\xa2\x86\x07\x0c\x64\x1b\x96\x1c\xbe\x07\x4a\x5b\xbd\x50\x2b\x98\x3a\x4b\x3c\xde\xfe\x10\xcf\x13\xbb\x5d\x50\x99\x3a\x9a\x6b\xba\x37\x62\xba\xeb\xa1\xb0\x0a\xdd\x06\xf9\x0a\x17\x4e\xfe\xfa\xd4\x9d\x6f\xaa\x60\x05\x73\xbf\xa0\x72\xe8\x4a\x30\x89\x08\xf8\x96\x2a\x86\x5e\xb2\xe0\x1f\x37\x54\x5e\x4f\x9d\x75\xb7\x04\xa3\x1a\x6f\x5a\x60\x6c\xfc\xd7\x8d\x5f\xa3\x58\x6e\xe2\xd7\x44\x06\xe4\xaf\x0f\x0e\xc0\x1e\x01\xb8\xb1\x77\xe5\x7c\xf4\x05\x95\x5d\x3b\x72\xcb\xf3\x7a\xd8\xef\x79\xb2\x17\x71\x65\xbf\x49\x0b\x25\x2c\x0e\x77\x24\xdf\x07\xc1\xe6\x31\x7d\xd4\x70\x6d\xa2\xe3\x51\xc2\x25\xc8\x71\x40\xcf\xf7\x4a\xcc\x52\x5c\xed\x16\xe1\x9a\x89\x91\x49\x71\x40\x28\x49\x73\xc0\x39\x48\xf5\xeb\x48\x40\x7e\x88\x93\xfc\x1c\x08\x3f\x2c\xf9\x7d\x65\xe7\x16\x7b\xde\xa2\xbd\x54\xcf\x3f\xc8\xdd\x69\xaa\x3a\xad\x9e\xb1\x55\x3f\x9f\x73\x34\x29\xf5\xe8\x78\xd4\xf8\x8f\x8f\x87\x3b\xf8\xdf\x03\x43\xe3\xd2\x0b\xde\x6e\xb2\x2f\x77\x0e\xf4\x90\x54\xc5\x2e\x0b\x76\xbd\x49\x96\xc5\xf0\xd6\x9a\x88\xc7\x45\x9f\xe3\x64\x13\x6d\x76\x0a\xb6\x78\x1d\x1f\x36\x91\x82\x4d\xd4\xe8\x91\xc4\x74\x57\xc3\x55\xb0\x08\x49\x7f\xa1\xbe\x2a\x6a\x3d\x22\x76\x53\xec\x19\xc2\x70\x57\x6d\xc7\x36\x80\x72\x0b\xdd\x9a\xa3\xde\x54\xde\xea\x05\x79\x14\xc7\xf1\xe1\x9e\x5e\xec\xc1\x91\xba\x4f\xc5\x8d\x3d\xba\x7b\xe4\x69\xee\x1b\xbb\x40\x86\x2f\xe4\xd0\xa9\x04\x01\x8b\x8b\x86\x47\xe1\x6e\xb7\x52\x35\x3c\x44\x5b\xb4\x5a\x4b\xb8\x24\xfd\x66\xe8\xa7\xfb\xb8\x8d\x16\xe1\x2e\x58\x3c\x6e\xb5\x1e\xaa\x9a\xcd\x50\xba\xe9\xb5\xb3\x00\x66\x68\xb5\x4b\x0b\x48\xa7\x79\x77\xe6\x68\x34\x95\xaf\x2a\xf4\xe3\x76\xbd\x0a\xe6\xf3\xbf\x07\x46\xe6\x4e\x6d\x86\xfb\x72\xdf\x38\x67\xe5\xa9\x9a\x90\xc2\x36\x89\x0e\x9a\xea\x91\xc2\x11\x85\x8b\x0e\x87\xab\xdd\xfa\x71\xa3\x22\x0a\xb7\xc9\xee\x30\x22\x12\x15\x98\x20\x9e\xee\x55\xbc\x5b\x84\xdb\xcd\x22\x7c\x8c\xe5\x6e\x29\xba\x4b\xb0\xb9\x29\xae\x5b\x97\xdd\xb5\x76\x1a\x1c\x50\x59\xda\x85\x59\xfa\x4a\x64\xa9\xb2\x1d\x6c\x83\xed\x69\x26\xdb\x7b\x75\x14\xee\xd3\x54\xa8\x0b\x77\x0e\x28\xcb\x08\x35\x95\x46\xf0\xfd\xe9\x74\x0c\x83\xed\x93\x9a\xb0\x0a\x17\x4a\x88\xdc\xb2\x12\xbe\x47\x41\xb2\x0b\xd4\xac\x2f\xe9\xea\x11\x05\x81\x84\x4e\x54\x5b\x4e\x61\xba\xa3\x51\x14\x2d\xc2\x2d\x8e\x3a\xb4\x8e\x2a\xca\xcb\x71\xaa\xfa\xfb\x76\x39\xb8\x6b\xb1\x53\x0b\x40\x91\x87\x1e\xc1\xba\x6c\xec\x02\x15\xb3\xd2\x85\xe3\xe6\x31\x56\x64\x3f\x5b\xa3\xe7\x74\x44\x57\x6a\x43\x77\xee\x1c\x6e\x9a\xb5\xcb\x3e\xaf\x87\xdd\x51\x68\x97\x7a\x44\xe2\x62\x83\x8f\xbb\x68\xb5\x5a\x29\xa8\x0e\x69\x14\x72\x97\x46\x51\x89\xea\xcc\x90\xbb\x74\x2f\x5e\xec\x56\x92\x77\x61\xd8\x64\x5d\x66\x08\xdd\x4c\xb1\x6b\xdf\xdd\xd5\xd8\xa5\x01\xa0\xc5\xbc\x2b\x73\x0c\x32\x15\xac\x2a\xed\x28\x3c\x45\xe9\x6c\xe6\xf7\xfa\x90\xdc\xa7\xbf\x70\x47\xee\x1b\x5f\x92\xea\x6a\xda\x16\xed\x4e\x8f\xa7\x44\xb5\x45\xa4\x50\x40\xe3\x6a\x91\x23\xb4\x41\x2a\xb2\x34\x41\x01\x8a\x05\x64\xa2\x02\x53\xec\x0e\xfd\x0b\x37\x8b\x28\xdc\x2e\xa2\xf0\x51\xe9\xa1\xa2\xc0\x14\xa1\xbb\x29\x76\xeb\xbe\xbb\x06\x3b\xc0\x03\x0a\xcc\x7a\x32\xd7\x08\x13\xc9\x6a\x0e\x30\x7d\x4c\x4f\x73\x99\xdf\x6b\x63\x72\x9f\x02\x83\x1d\xb9\x77\x7c\x5d\x13\xac\x3d\xa9\x77\x0b\x68\xd6\x35\x8e\xc2\x29\x86\x5b\x45\xdb\x48\x5b\x9e\xa5\x51\x18\xad\x47\x44\xb2\xe5\x6d\x3e\x3b\xf4\x6b\x17\x2d\x76\xbb\xc5\xe3\x4a\xee\x94\x66\x74\x9b\xcf\x8e\x26\xd7\xad\xc3\x73\x0c\xee\x14\x38\x68\x6e\x71\x17\x66\xad\x7e\x89\x24\xb5\x45\x7b\x98\x84\xe9\x4c\xb6\xf7\xea\x18\xdc\x6b\x68\xf5\x2e\xdc\x35\x9c\x6c\xf3\x5a\xdd\x27\x9e\xdc\x0f\x55\xda\xb9\xed\x0c\xcf\xc3\x29\xaa\xab\x4a\x6e\xba\xab\xc2\x7e\xbb\xa1\xaf\x8a\x16\xab\x24\x54\x85\xe6\xec\x1b\xbe\x05\xc1\x62\x71\xd7\xe4\x59\x2d\x01\xa5\xd6\x3a\x37\x6f\xfb\x78\xe6\x70\xcf\x55\xf5\x7b\x7a\xa7\x6b\xfd\x44\x1f\xdf\xa6\x15\xda\xee\xf2\xe4\xd6\xa9\xd6\xd2\x65\x16\xcc\xc7\x0a\xcd\x83\x59\xfb\xcb\xc1\x6e\x11\x86\xdb\x45\x18\xd9\x7a\x6d\x98\x0d\xe6\xfd\x66\xde\x11\xa7\xf9\x70\xcf\x2e\xf3\xcc\xb6\x96\x39\x71\xe7\xae\xf3\x1d\x0a\x70\xef\xbc\x78\xeb\x2e\xf4\x64\x4f\xdf\xac\x27\xf2\xae\xf4\xe4\xf6\xab\xd2\xce\x69\x0d\x33\x13\x27\x38\x2f\x9c\xf7\xa5\x85\x0b\x64\x86\xbe\x9a\x66\x84\x61\x9f\x9a\xb3\xef\x36\x1f\x66\xef\x4e\xcf\x6a\x69\x9b\x0b\xf7\xec\x56\xcf\x1e\xee\xbb\xe7\xc1\x9b\x76\xaf\x27\xfa\xf8\x36\xad\x10\x77\xb3\x27\x37\x71\xc5\x46\x4e\xfb\xd7\x73\x10\x42\x8a\xef\xb8\x9f\x1d\xad\x16\xe1\x26\x5a\x84\xbb\x35\xdc\x41\x83\xce\x83\xfb\xdb\x9c\x67\x27\x85\x9f\xb9\xab\xed\xde\xcc\xa2\xea\x77\xec\x72\xcf\x1a\xd7\x7b\x95\xfc\x0d\xbb\xde\xb6\xae\xbd\x71\xf8\x95\x5d\xf0\xc9\x4d\x5e\xa5\x9d\xe3\x16\xcb\x5c\xb4\x90\xae\xcf\xd8\x04\x8f\xe3\x45\xf8\xb8\x5a\x6c\x8d\xdd\x35\x28\xbc\x69\x4f\x9c\xb3\xef\xa4\xf3\xf3\xb7\xc1\x67\xb5\xb4\x68\xfe\xbd\xdb\xe2\xb3\x07\xfd\xde\x29\xf0\xb6\x6d\xf2\x89\x6e\xbe\x4d\x31\xe4\x5d\xf3\xc9\x3d\x62\xb9\x99\x8b\xad\x9f\x89\x12\x9a\x01\x33\xf6\xcd\x87\x93\xcd\x70\x3f\x0d\xfa\x6f\xd8\x47\xe7\xac\x3b\xa9\xff\xec\xdd\xf3\x39\x0d\x2d\xca\x7f\xcf\x6e\xfa\xdc\x61\xbe\x57\xef\xdf\xb4\xbb\x6e\xef\xe0\xdb\xb4\x41\xda\x6d\x9f\xdc\x55\x96\x5a\xb9\x5a\xfe\x59\x48\x21\xad\x77\xde\x6c\x5f\xef\x16\xd1\xfa\x71\x11\xc5\x81\xa1\xa3\x06\xad\x87\x37\xdf\x39\xe3\x4e\x4a\x3f\x77\xbf\x7d\x46\x3b\x8b\xca\xdf\xb7\xff\x3e\x73\x98\xef\xd5\xf9\xb7\xec\xc7\x5b\x3b\xf8\x56\x55\x10\xf7\xe7\x27\x37\xa6\xc5\x46\x2e\x56\x7e\x16\x42\xd8\xc6\x3b\xed\xd0\xc7\xd1\x22\xde\x2d\x36\xc0\x82\x0e\xd8\xa9\x97\x70\xab\x7a\xce\x39\x76\x34\xee\xb3\xf6\xe9\xdd\x9b\x59\x0d\xfb\xdc\x7d\xfb\x79\xa3\x7a\xbf\x51\xbf\x7b\x1f\xdf\xd6\xb5\xbb\x06\x3f\xcf\xca\xcf\x37\xc3\x55\x0a\xb6\xcb\x6b\x3c\xda\x4e\x1a\xcb\xba\x1d\x04\xf1\xe6\xb0\xd2\x9a\x5c\xcb\x14\x35\x98\xf1\xb1\x9d\xfc\x55\xb4\xe4\xaa\x6b\x6c\x29\x1e\x96\x97\x39\xd0\xbe\x88\x96\xba\xae\xb2\xad\x39\xe3\xb1\x77\x72\x95\x87\x3c\xdd\x72\xe8\x4a\x86\xe7\x7c\xfb\x6a\x19\xcb\x05\x1a\x6d\x21\xd0\x18\x53\xbc\x7f\x95\x8c\xec\x18\x25\xb9\x1c\x63\x79\xdf\x60\x80\xf9\x4e\x00\x17\xf3\x09\x91\x4c\x3f\xe4\x1a\xd1\x2f\xdd\x4b\x8d\xbe\x3f\x5c\xbb\xae\x2a\x3f\x8d\xd0\x0b\xa1\xb2\x41\x2d\xea\x0c\x75\xed\xf5\x50\x64\x62\xa5\x78\x9f\x6d\x79\x4a\x52\x04\xdd\xbb\x60\x97\x19\xe8\x7d\x0e\xdc\xeb\xa4\x79\xb2\x57\xbb\xbf\x49\x62\x20\x69\x7a\x8b\x24\x49\x11\x9d\x97\x78\xfe\x3d\x0c\xd7\x2c\x02\xf2\x56\x42\x9e\xd4\xad\x54\x2d\x26\x71\x1a\x20\x70\x80\xac\x5f\xc6\x62\xe3\x18\x0c\x0f\xe7\xec\x2f\x59\x9a\xa2\x12\xba\xb7\x43\x61\xbd\xe5\x8a\x5d\x6f\x79\xb2\xd4\x39\x4b\x42\xe0\xce\x5d\x1e\xdc\xdc\x2c\xc8\x5f\x39\x3a\x75\xf4\xaf\x86\x3e\xde\x87\xff\xbc\xd6\x7a\x6f\x5f\x35\x13\xfc\x7c\xc9\x3a\xe4\xb7\x75\x72\xc4\x02\xa4\xb7\x00\x55\x5b\x96\x9c\x3a\xd4\xc0\x17\xbf\xc4\xbb\x69\xcb\x28\x8e\xf5\x97\xa0\x59\x29\xbf\x7e\xf6\xee\x9d\xf8\x2e\xf4\x72\x85\x0a\x7a\xfb\x6a\x98\x44\x2c\x15\x3b\x2f\x87\x5e\x79\x18\x5e\x91\x60\xbf\x29\x75\xb0\x89\xde\x19\x54\xd4\xdd\x0b\xeb\x92\x72\xb3\x6e\x00\x2d\x50\x79\xb5\x65\x0b\x63\x39\xe9\x79\xd2\xb0\x30\x08\x02\x39\x6f\xd8\x29\xaf\x92\x6e\x8f\xc1\x9e\xc6\x4b\xa2\x61\x20\x3c\x90\xc1\xec\x18\xbf\xf1\xb7\x5f\xd2\xdc\xf3\xd8\x49\xa8\xb7\xcc\xe4\xa5\xa0\x70\x99\x8e\xe0\xcf\xb3\xb6\xf3\xdb\xee\x25\x47\x86\xfb\x6e\xf3\x9f\x41\x12\x9f\xc5\x0b\x63\x53\xfe\x31\x49\x5a\x44\x86\xb7\x66\x78\xbd\xe1\x09\x94\x29\x1d\xdd\x1b\x7f\x41\x83\xc0\x90\xcb\x9a\xe6\x1b\xb5\x72\xfb\xb6\x70\x24\xd4\x16\x46\x5a\x00\xb1\xed\x66\x07\x10\x2b\x52\x47\x62\x45\x3a\x87\xd8\xe3\x63\x04\x10\xcb\xcf\x8e\xc4\xf2\xf3\x1c\x62\x61\x14\x04\x00\xb5\x3e\x77\xa4\xd6\xe7\x66\x6a\xcc\xca\x78\xca\xbc\xc1\xb3\x84\x60\xe4\xaf\x75\x28\x99\xfb\x02\xe5\xc2\x32\xd3\x7c\x00\xdd\x6f\x6e\x7e\x82\x3b\xac\x8e\x6e\xb2\x26\xcd\x0f\xd4\xa9\x09\x33\xc4\xf2\x49\xe9\x92\x0d\x9e\xd4\x31\x33\xca\x97\xf2\x25\x4a\x57\xc5\xfa\x57\xb4\xef\x90\x44\xb9\x4e\x99\x04\x0c\xb5\x51\x84\x6d\xed\xd7\x4c\x19\x4b\xd2\x50\x7a\xc9\x9a\xe0\xe6\xb6\x51\x19\xbd\x03\x19\x1f\xcb\xd5\x6e\x71\x58\x14\xac\xbf\xcd\xa8\xc8\x4b\x22\x33\x59\x96\x43\xc4\x46\x77\xb8\x9d\xfe\x5b\xa8\x83\x3e\xbf\xac\x7a\x61\xeb\xca\xc4\xf8\x5b\xfb\x0f\x8f\xff\x30\xea\xbf\xf4\xf4\x3d\xb7\x02\x95\xdd\xff\xf9\x9e\x72\xf8\x69\x61\x83\xc1\xd4\xec\x10\xa4\xff\x76\x90\xae\xaa\x3f\x89\x46\x9b\x89\x86\x26\x3c\x18\xda\xa5\xd9\x97\x2c\x45\xcd\x6d\x58\xda\xf2\x35\x06\x5b\x72\xa8\x2b\x5d\x61\x84\x84\xb7\x10\xe9\xbb\x70\x02\xda\xac\x43\x96\x17\x50\x95\xd8\x29\xa4\xc1\xd3\x31\x47\x49\xb3\x3f\x54\xdd\xc5\x3d\x47\x00\x7f\x89\x4d\x5f\x9a\x4e\x5e\xe6\x0f\x14\x76\x79\xd0\x2e\x17\x4a\x51\x72\xb8\x09\x77\xe1\x01\x0c\xac\x8d\xdb\x6e\x0a\x95\x61\xb7\x44\x26\x43\x4b\xc5\x4d\x0e\x47\x22\xfc\xf0\x96\x4c\x64\x8c\xac\x65\x32\xee\xe1\xb5\x65\x7b\x48\xd2\x39\x12\x44\xa9\x19\x61\x06\x88\x0b\x4a\x52\xc1\x30\x49\x6f\x54\xf1\xe8\x7c\x09\x3e\xfa\xa6\x47\xd2\x32\xcb\xd6\x58\x04\xf7\x15\x7a\xee\xcb\xa0\x77\xa2\x72\x09\x21\xff\x42\x88\xfe\xf9\x14\xb7\x3c\xc0\x25\xbe\x51\x65\xc8\x70\xa2\xe3\x13\xf6\x14\x48\x05\xf9\x6d\x48\x03\xb2\x0f\xbd\xd0\xa3\xd3\xd7\x80\x48\xda\x8a\x03\xea\xf7\x53\xf5\xc2\xde\x0e\x54\xcd\x9e\xd8\x96\xb9\xd5\x89\x1a\x68\xc1\x24\x04\xcc\xb7\x21\x48\xa2\x3d\xec\xaa\x2a\x3f\x24\x8d\xf5\x25\x36\x35\x65\x09\xcd\x97\xd2\x25\x4d\x27\xe1\x30\xa7\x7e\x91\x19\xa1\x7f\xd2\x4d\xbe\x53\xd6\xb4\x9d\x7f\xbc\x64\x79\xfa\xa0\x31\xac\x41\xdc\xe4\x07\xd3\xea\xde\x86\x3a\x4f\x86\x76\xa0\x06\x68\x50\x6c\x9f\x51\xf6\x3f\x0f\xb7\xd1\x1a\x53\x8f\xc8\xe3\x2e\x65\x9d\xa4\x54\xba\x76\xda\xc2\x9a\xd4\x73\x81\x0b\xdc\x7b\x13\x13\x52\x9d\x16\x6c\xfb\x6d\x9d\x67\x9d\x92\xcf\x76\x19\x6f\x22\xe9\xa9\x48\xba\x8c\x61\xa5\x06\x1c\xd4\x8b\x2f\x2c\xeb\x36\x1d\x0e\x58\x76\x8b\x40\xce\x4b\x02\xd6\x88\x2d\x0c\xa4\x35\x50\x00\xec\x26\x7e\x07\xb7\xe7\x9b\x8c\x86\x6a\x55\x48\xca\x73\x9a\x6c\xd9\xcb\xde\xbd\xd3\x76\x49\xad\x34\xf3\xb3\x23\x4d\x88\xa4\x46\x71\xb0\x9a\x64\x56\xa6\x59\x83\x8e\x3c\xab\xcc\xb5\x28\xa5\x84\x4a\xe3\xbc\x35\x66\x21\x9a\xb6\x9e\x72\x85\x34\xd9\xc7\x4d\x54\x23\xa4\x75\xd6\x2b\x96\xd0\x38\xfd\xf1\xc2\x48\x99\xfd\x66\x5a\x16\x33\x00\xd1\x73\xb6\x07\xe0\xac\xb7\xcf\xc6\x99\x92\x71\x61\x77\x96\x8d\xd0\x4d\x98\xc8\x13\xed\x9f\x46\x54\x28\x16\xdd\xa7\x96\xe4\x6c\xaa\x85\x27\xec\x7e\x93\x74\x5c\x87\xaa\xff\x34\x4d\x48\x6c\x86\xb9\xae\x4c\x6d\xe6\xe0\xd7\x91\x02\xbb\x8b\x64\x5f\x0e\xcf\x26\xb6\xf5\x16\x3c\xc0\x9f\x48\x44\xa7\x67\x5e\xb9\x40\x7e\x55\x9c\x9b\x6d\xd7\xa0\xee\x78\x91\x3e\x47\x08\x98\x7f\x10\x53\xf3\x2d\xc0\x1a\x9e\x8c\x4d\xaa\x13\x53\xbc\x59\xaa\x84\xec\x6f\x13\xeb\x22\xce\xe0\x07\x3d\xcd\x9d\x89\xdd\xef\xa6\x79\x97\xc0\xc0\x8e\x48\x80\x96\x5e\x49\x38\x1c\x28\x2b\x80\x36\xda\x1c\xd4\x51\xa6\x36\xe2\x20\xdc\xe4\x00\x3a\x93\x1e\x87\xd3\x95\x09\xa0\xc5\x24\x3b\x62\x1b\x29\x37\xa1\xbe\x4a\x33\x0d\x25\x94\x92\xd2\x9c\xcd\xd2\x3c\x28\x7c\xc5\x6b\xe4\x95\x7d\x41\xe5\x8b\xdf\xd5\x1d\x2c\x0d\x8d\xd7\x70\xe3\x21\xc9\x9d\xec\x45\x6c\x4c\xa9\xb0\x77\xaf\x35\xa7\xf8\x91\x1d\xee\x04\x43\x5f\x61\xdd\x69\x12\xee\x54\xb2\x47\x73\x4b\x4d\x56\x9e\xab\x86\xb8\xb6\x66\xab\xd0\xaf\x39\x04\x23\x69\x51\xa6\x00\xed\xb7\x8b\xd9\x4f\xea\x1a\x95\xa9\x24\x02\xbf\x6e\x10\x2e\x94\xa4\x0e\xb5\xf2\xa8\xd3\x07\x9a\x7a\x86\x58\x99\xcf\x85\xc8\x88\x0e\x98\x92\x12\x52\xeb\x8c\x14\x11\x7d\xa7\x33\x27\xd5\x8a\x15\xd8\x18\xc1\xa0\x2a\x94\x05\xab\x0e\x6a\x27\x21\xf6\x0a\x40\x2b\x57\x3b\xa2\x72\x60\xd7\x02\xab\x96\xd8\x2d\xf2\xa0\x26\xf2\x8b\xeb\x1a\x18\x95\xcf\x04\x2e\x69\x47\x68\xe2\x2d\x71\x35\x9b\xa7\x79\x7f\x6a\x3c\x5e\x22\x6c\x58\x1a\x5e\x71\x5a\x3f\xc6\x41\xbc\x05\x92\x9c\xba\xec\x5f\xb2\x5d\x56\xfd\x1b\xec\xfb\x23\x4a\xd7\x69\x62\xf8\xf6\xaa\x4a\xc0\xb0\x18\xb5\x81\xb1\x75\xa8\xf8\x89\x42\xc6\x8b\x43\x4b\xb3\x6b\x26\xd5\x9a\x2d\xe7\x4f\xdb\x3c\xf0\xbd\x67\xe9\xf1\x1a\x2c\x55\xef\x3b\x2f\xaa\xfb\x87\x37\x91\xd2\x6b\x75\xb5\xf9\x41\x57\x60\x13\xa0\x7d\x8a\xa8\xad\x98\xf2\x3a\xe0\x1f\x20\x35\x7d\xfd\x7a\x67\x99\x44\xd4\x6d\x61\x95\x22\xae\x9e\x39\x60\x94\x3f\x68\xc4\x66\xd2\xd2\x6b\x9d\x46\xcc\x04\x68\x1f\x31\xb5\x95\x79\xc4\x8c\x90\xe6\x11\xfb\x0a\x27\xc3\x66\x68\xbe\x26\x66\x65\xcb\x26\xe4\xfb\x33\xd2\x6a\x40\x17\x99\xb0\x14\x99\xb3\xf7\xb0\x98\x85\x57\x15\xda\xd4\xd2\x14\x40\x67\xd8\x41\x99\xdf\xcc\xaa\x21\x8e\xea\xe1\xaa\x1b\x5f\x65\x05\xe7\x32\x1f\xee\x98\x0c\x60\x1f\xc4\xd5\xa1\x61\x6f\x67\x2e\x12\x78\xec\x67\x62\x34\xed\x48\xdd\xd3\xd0\x36\x4a\x33\x56\xbc\x4a\x7e\x75\xf3\x7e\x0b\xfb\x40\x9e\x95\xc2\xf4\xd7\x76\x53\x69\x19\xf0\xe8\x46\x2e\xbe\x56\x20\x7e\x74\x92\x96\x48\x21\xdc\x58\x4a\x32\x3f\x6c\x27\xf1\x85\xae\x1f\x3e\x89\x87\x25\xa1\xc7\x35\x9c\x9e\x45\x11\x0f\x93\x01\xa9\x26\x2c\x9f\x31\x41\x9a\x6f\x7c\xc6\x44\xcd\xc8\x6d\xa6\x41\x95\xc3\xe9\xb1\x10\xe5\xf1\x89\x5d\x70\x48\x8d\xfc\x2b\x47\xc6\xe9\x87\x31\x77\x09\xea\x29\xc1\x56\xe9\x56\x13\x2d\x2d\x34\x70\xc0\x89\xdb\x5f\x3e\xe2\x29\x0f\xee\x40\x31\x48\xc5\xb0\x68\xd5\x90\x52\xc2\xfa\x1c\x51\xd7\xd9\xca\x97\xd4\xae\xaa\x61\x54\x9c\x01\xa7\x4f\xd9\x82\x66\x8a\xcb\xe8\x24\x3d\xc4\x07\xbd\xff\x42\x04\xae\xbd\xa2\xa4\xd0\x86\x4e\x81\xf2\x25\x1a\x8d\x49\xe8\x4c\x07\x4f\x46\xe0\x0a\x6e\x10\x1a\xe9\x5c\x8c\x8d\x25\x41\xe4\xe3\x5b\xa1\x5e\x1c\x7c\xf8\x18\x07\x1f\xf0\xbf\x63\x63\xb6\xd8\x87\x9f\x70\x50\xf4\x5a\x09\x22\xa6\x50\xb8\x18\x07\x95\xdd\xdf\xe8\x55\x58\xe9\x01\xc7\x9d\xb7\x03\x1f\x70\x3c\x9d\x4e\xf4\x65\xc3\xcd\x32\xde\xac\x97\xdb\x38\xf7\x57\xcb\xf8\xd1\x5b\x2d\x37\x61\x84\x47\x69\xb5\xc3\xff\x8d\x7f\x0c\xbc\xf5\x32\xda\xe4\xd1\xf2\x71\xbb\xf6\xa2\xe5\xe3\xe3\x8f\x3b\x2f\x5a\x86\x8f\x2b\xfd\x89\x47\x57\x29\x61\x5b\xdb\xa1\xa6\xc8\xca\xa4\x9b\x30\x03\x77\x5a\xcf\xb7\xd3\xff\x5b\x8c\xd5\xda\x5b\x1b\x9e\xa2\x1c\x46\x8b\xbc\xb3\x79\xb7\xe0\xb9\x09\x73\x7c\xdb\x0b\x7c\x6d\x59\x49\x2c\x34\x93\xf0\x9c\xa1\x9f\x41\x9e\xc4\xe7\x73\xa6\xb5\x68\x16\xe0\xc6\x7f\x8f\x13\xda\x5f\x7b\xfe\x5a\x98\xd2\xe3\xf3\xa3\xab\x6f\xe4\xa9\x6d\xd4\x10\x5b\x67\x7f\x3b\xf5\x68\x9f\xb3\xee\x78\xb9\x49\xeb\xbb\x48\x31\xad\x14\xc6\x3e\x88\xd4\x87\xb0\x96\xdc\x6d\xf0\x4f\xf1\xb2\xe3\x4b\xf2\x5c\x8d\x28\xdd\xc9\xd1\x81\xc5\xce\x8b\xbe\x98\x1a\x09\xb1\x3d\x75\x64\xa4\x9c\x73\xc2\x6b\x28\x43\x74\x57\x00\x17\xfb\xde\x1a\x17\x4b\xbb\x05\x42\xb9\x6e\xc7\xa8\x03\x86\xf8\x16\xaf\xb5\xfc\x86\x8f\xcf\x2c\xa4\x5b\x35\xa7\xaa\x29\xf4\xd7\x71\x80\x8b\x37\x7f\x63\x8e\x04\x4e\xcc\x50\x7f\xad\x17\x83\xfe\x36\x1c\x38\x88\xc9\xfd\x92\x95\xf3\x0c\x71\xbf\x83\x65\xc7\x79\x97\xb1\x15\x96\xb2\x5a\xe7\xe9\x28\xe4\x49\x87\xfe\xd7\xb7\xfc\xcd\x6c\x5b\xa5\x1b\x83\xbf\xa1\x81\xa4\x1b\x56\x96\x87\xe3\xc8\xb9\x61\x70\xdf\x71\x2b\x9a\x20\x75\xf7\x9e\x59\x47\xcf\xfe\x36\xd7\xbc\xdd\x7b\xf8\x41\xb2\xff\xcf\x3e\x49\xee\x1c\x3e\x59\xbe\x42\x0c\x1a\x9a\xd4\x35\x4a\x9a\xa4\x3c\x22\xe1\xb5\x36\xb5\x50\xf9\xfd\x0a\x7d\x4f\x07\xe3\xef\xa7\xfb\x9e\xe8\x02\xd0\xef\xf7\x7e\x41\x9e\xa7\xbc\x0e\xb1\x38\x1b\x7d\x50\x1a\x0a\x8e\x5f\x8a\x6b\xde\x65\x75\x8e\x3e\x29\x8f\x74\xff\x82\x75\xee\x13\xd9\x10\x20\x7f\x7e\xff\x2e\x7c\xf7\x69\xd8\x4f\x97\x1e\x0c\x94\xce\xd9\x69\x6b\x2c\x48\x2e\xae\x89\x1b\xd5\x90\x9c\x35\x27\x3d\x46\x7d\x9d\x08\x1f\x65\x01\x32\x7e\x5b\x4c\xee\xff\x0f\x9d\x10\xe2\xdf\xf1\x16\x21\xbd\xa1\x01\x9e\xeb\x04\x77\xca\x55\x06\xf2\xf3\xd4\x17\x23\x99\x3e\x48\x1e\xd8\x70\x03\x3f\xad\xbc\x82\x47\x04\xa0\x9b\x2e\xe3\x61\x23\xe9\x58\x8b\x76\x62\x03\xd8\xf4\x98\x63\xe2\x80\xf7\x56\x87\x0f\xd5\x11\xbf\xbd\x11\x00\xfb\x78\x0e\xc7\x58\xe0\x49\x75\xc7\x54\x12\x68\x69\xfb\x46\x22\xb9\x29\xd5\x14\xf0\xe4\x49\x79\xfe\x16\x95\x0f\x00\x1e\xe6\x1b\x87\xfd\x92\x7f\x6e\xaa\xe7\x16\xbd\x03\xb0\x00\x8d\x7f\xc1\x86\xda\x3f\x90\x26\x9f\x14\x4c\x49\xd7\x35\xdf\x0a\xf5\x4a\x07\x69\x27\xd4\x0b\xbe\x0e\x5e\x4a\xf5\x37\x5f\xc1\xc2\x02\x9c\x2d\x8c\x92\x82\x37\xaa\xf8\xc5\xb4\xc0\xf4\x0d\xdc\xea\x16\x01\x06\x86\x53\x2b\x6c\x2f\x6f\x38\x4f\xa1\xec\x7f\x99\x05\xf6\xf0\xa4\x0e\xea\xd4\x67\x71\x3a\x97\xf9\xb5\x20\x59\x52\x58\x73\x69\x7f\xd8\xfd\x69\x21\x2c\x2c\xcf\xe8\xa6\x4f\xc3\x70\xb9\x16\xef\x61\x9b\x93\xa6\x7c\x1d\x07\x47\xd8\x50\x5f\x9b\x84\x6a\xf7\x7b\x4e\xaf\xcd\x33\xf2\xa9\xe2\x72\x2d\x0e\xfa\x2e\x38\xd6\x1d\xac\x4b\x0b\xd7\x89\x2b\xd3\xc0\xbc\x93\x92\xdf\x0a\x7f\xfb\x95\x11\x53\x96\x09\x7a\xbc\xe4\x1f\x8e\x4c\x69\x52\x84\xe5\x67\xd8\x88\x15\x8f\x76\x33\xbf\x35\x91\x5a\x5b\xb8\x2d\x4c\x55\x2f\x34\xbc\xee\xfa\x57\x0a\xca\x7e\x4b\x32\x26\xcd\x57\x95\x7c\x66\xf8\x65\x1b\xa7\xd9\x71\x97\x05\x19\xbf\x7a\x67\xfa\xcc\x32\x81\xa3\xb9\x96\x25\xf6\x6f\x98\x17\x29\x53\x0a\xd7\x20\xf1\x8e\x99\x78\x91\xf5\x78\x6d\xda\xaa\xd9\xb3\x6d\x1b\x28\x55\x1d\x42\x11\x52\x9e\x3a\x83\x6e\xc2\x8e\x0a\x06\x4e\x06\x71\xfe\x1a\xf4\xfb\xbf\x94\x79\x54\x66\x17\x73\x7d\xa7\x26\xab\xa3\x71\xb7\x16\x2b\x88\x66\x6b\xb0\xd0\xfe\xef\x51\x69\x5b\x67\x6b\xac\xbd\x81\xae\x3e\x81\x4e\x4b\xfe\x4b\xbf\x07\x32\x5f\x4b\x95\xdb\x37\xeb\x70\x7b\xaf\xf2\xb6\x5f\x5d\x6b\xe5\x8b\xe1\x66\xad\xa5\x14\xe5\x7d\x74\x81\xad\x53\x96\xe7\x7e\x5e\x3d\x0b\x9f\x89\xd5\xda\x6b\x5d\x83\x9b\x78\xf2\xb4\x99\x98\x1d\x02\x26\xf9\xc8\x47\x5c\xf7\x0a\xfc\xb0\x63\x67\x58\x2f\x1a\x76\xe0\x5d\xb1\x28\xce\x8f\xc9\x39\x45\xa7\xe4\x9a\x77\x66\x24\xda\xb2\x72\x36\x1b\xaa\x05\x73\xa6\xdc\xba\x92\x84\xb6\x34\x81\x80\x4a\xd9\xdf\x81\xe6\xc3\x7f\x7e\xab\x31\xd7\x4a\x7c\x3d\xd9\x19\x6c\x49\x99\x7c\xb1\x5e\x0a\x97\xf6\x75\xd4\x1c\x42\x81\x9a\x06\x8b\xe0\xa3\x09\x15\xad\x89\x0a\xc8\x74\xe4\xa0\xfc\x0a\xc1\xf0\x9b\xde\x60\x87\x73\x2e\x72\xa0\xe5\x8c\xfc\x0b\xaa\x4a\x63\x1c\x5d\x72\x68\xe5\x3b\x9e\xe2\xee\x00\x35\x22\x23\xa4\x47\xfe\x22\x99\x38\x64\x09\xd0\x93\xf1\x32\x18\xe9\xbe\xb6\xe3\x00\x18\x41\xf5\x50\x1c\x0f\x88\x0c\x07\x1b\xf9\xee\x84\x4e\x4d\x94\xa0\x52\x43\x65\x29\x6f\x46\xd1\x28\xdf\x1b\xfe\x85\x7b\x6b\x93\xf2\x6c\xbb\x0f\x89\x92\xe4\xbb\x18\x69\x41\xec\x2f\xe5\x64\x1e\xb6\x7d\x63\x35\x11\x35\xe9\x93\x37\xfc\x4b\x76\x96\x47\x02\x72\x2e\x21\xe5\xc2\xb1\x69\x7c\xac\x37\x6c\x31\xee\x3a\xcb\x73\x5d\x09\xa0\xf1\x53\x20\x87\xc4\x0f\x42\x1d\xcd\x78\x3a\xe0\xb2\x1e\x63\xe3\xa7\x56\x30\x34\xf6\x69\x82\xbe\xca\xd7\x3a\xb5\xeb\x12\xb4\x0d\xbd\x27\x9e\xa1\x54\x69\xe8\x1f\x92\x36\xc3\x1d\x27\x3f\xce\x4d\xf5\xbc\x0f\x21\x1c\x5d\x72\xe0\x77\xcc\x7f\x20\x3f\xea\x44\x38\x59\x49\x67\xae\x04\xc3\xc6\x55\x49\x76\x52\x26\x5f\x0e\x49\x03\xec\xea\x1a\xcc\xc7\x21\x69\x16\xec\xdf\x1f\x96\x18\x77\x92\x95\x08\x2a\xf2\x4f\xf9\x35\x4b\xad\x86\x0e\xb8\xbf\xa2\xde\x9e\x27\x77\x4a\xfc\x03\xea\x9e\x11\x2a\x39\x03\xfe\xa1\x11\xb7\xf9\xa5\xed\x6c\x69\xef\x7c\x15\xc2\xbb\xf7\xbc\x5c\x3b\x73\x3a\x71\x39\xc1\x9c\xaf\x47\x66\x4d\x30\x0e\x63\xd9\x84\x89\xc5\x80\xb0\x67\xd0\x32\x0f\xdc\xe1\x20\x18\x76\x61\xa2\xc8\x5f\x6a\x02\x05\xa9\xdc\xc8\x90\x2e\xb2\xed\x92\x2e\x3b\xb2\x14\x90\x12\x29\xe9\xae\x92\x79\x7c\x8c\xdf\x36\x06\x44\x3c\xe5\xa9\x38\x35\xc8\xa2\x59\x9c\x1d\xd0\x6d\x47\xce\x08\x39\xde\xdf\x68\xb7\x1a\xb4\x0f\xa9\xd0\x55\x94\xc9\x24\x4c\x56\x57\xa3\x9b\x20\x81\x21\x45\x43\x78\xa9\x83\x8e\x30\x50\x3f\x3b\x56\xa5\xf5\x93\xf3\x32\x16\x42\xcf\x25\x90\xc0\x8c\x7d\xfa\x15\x13\x98\x19\x0e\x63\x8a\x82\xa0\xe2\x0a\x82\x0f\x1e\xb9\x4a\x3f\x24\x62\x4c\xfa\x21\x9f\x65\xbc\x7c\xa4\x59\x26\x19\xcb\xf4\xb3\x1c\xbd\xe2\xa1\x5a\x0c\xb0\x92\xd9\x8e\x09\x15\xb5\xe4\xd2\x54\x71\x53\xf5\x21\x99\xc0\x9a\xea\xd9\x63\x77\xd4\x6c\xd9\x77\x54\x0c\x9e\x38\x47\x95\x69\xd9\x54\xcf\xf6\x06\xc6\x19\xc4\xbf\x60\x4c\x35\x37\xcc\x5a\xe0\x3b\xa0\x3c\x7d\xee\x95\xfc\x68\xa8\x15\xf3\xa6\xf3\x37\xcc\x50\xd1\x70\xfd\x63\x56\xd4\x55\xd3\x25\x65\xf7\x24\x4c\x5c\x9a\xb2\xc8\x88\x89\xcf\x55\xc9\x87\x01\x0a\xb6\xdd\x6c\x61\x05\x2b\x52\x4b\x37\xa5\xca\xbb\x15\x8c\xe7\x4f\x55\x71\xbf\x55\xc1\x8a\x74\xa6\x82\xc9\x0d\x66\x2b\x98\xda\xfc\x8d\x0a\x36\x5b\xf2\x53\x0a\x26\xf0\xf7\x46\x05\x13\x30\xb9\x2a\xd8\xe3\x63\x08\x2b\x18\xb9\xc3\x66\xea\xa6\x54\x79\xb7\x82\xf1\x9c\xb9\x2a\xee\xb7\x2a\x58\x7e\x9e\xa9\x60\x72\x83\xd9\x0a\xa6\x36\x7f\xa3\x82\xcd\x96\xfc\x94\x82\x09\xfc\xbd\x51\xc1\x04\x4c\xae\x0a\x16\x86\x8f\x8f\xb0\x86\xf5\xb9\xa5\x9f\x52\xe5\xdd\x1a\x36\x24\x4a\x56\x91\xbf\x55\xc5\xfa\x7c\xa6\x8a\xc9\x0d\x66\xab\x98\xda\xfc\x8d\x2a\x36\x5b\xf4\x53\x2a\x26\xf0\xf7\x46\x15\x13\x30\xc1\x2a\x26\xc3\xbf\x71\x20\xcd\x62\x98\xad\x7e\x72\xf3\x79\xea\xf1\x16\xdd\xf8\x9a\x8a\x31\x47\x1c\x13\x2a\xf1\x95\xf4\xc1\xae\x0c\xbc\x32\xa7\xa7\x22\xc5\x18\x74\x61\xa9\x53\x22\x12\x08\x42\xcc\x26\x2b\x66\xce\x7f\x7c\x30\x10\x95\xa5\xaf\x37\x8c\x9d\x1a\x5a\x39\x93\x21\x4d\x1c\x6e\x9d\x08\xa9\x5b\x6f\x22\x86\x95\x15\x03\xdd\x5b\x19\xb7\x8e\x5c\x98\x15\x37\xa0\xa6\x40\xdb\x4b\xf5\x6c\x03\x04\x37\xae\x9c\x86\x88\xab\x10\x34\x38\xf2\xfe\x9e\xf4\x56\xc2\x04\x3a\x1a\x9d\xbe\xed\x6e\x8d\x74\x6e\x78\x85\xff\xff\x1b\x87\xe3\xc6\xc0\x15\x2c\xc6\xb8\xc7\xfe\x7f\x19\x3f\x7c\xc3\xea\xa8\x47\xfc\xfe\x9b\x68\x28\xc0\x61\xf4\x31\xa9\xbf\xff\x86\xb0\x3d\x14\x17\x59\x87\x9a\x3c\x2b\xb2\xee\xfb\x6f\x42\x76\x4c\x79\xed\x6d\x2f\x51\xf4\xd3\xda\x0b\x63\xfa\x6f\xb4\xba\x44\x11\x70\x79\x07\x16\x14\xea\xbb\x39\x33\x82\x24\x35\x49\x0c\x3a\x40\x2b\xad\xf3\x84\x81\x38\x4c\xe1\x34\x69\x3e\x1b\xcc\x86\x5e\xa5\xd0\x04\x00\xd4\x47\xc8\x60\x3a\x90\xa5\xb8\xb4\x39\xe1\xef\xc3\x22\x0c\x82\x0f\x92\x6c\xcc\x6d\x6d\x0c\x99\x6d\x85\x4a\x6a\xeb\x44\x4b\xb5\x17\x2a\x96\xc8\x8a\xc5\x68\x33\x2c\x04\x15\x93\x61\x81\x94\x2c\x86\x0e\x67\xdc\xe9\x86\x19\x96\xad\x84\x3e\x30\xb2\xa5\x50\xeb\x43\x83\x18\xfe\x6e\x8d\x45\x14\xc7\x0b\x6f\xfc\xcf\xdf\xcc\x64\xc8\xd2\x1a\x2d\x86\xeb\xcc\x50\x8c\x06\x50\x67\x9b\x2e\x80\xc9\x60\xb7\x05\x92\x26\x75\x4a\xc8\xa9\xed\x5c\x8f\x51\x48\xf0\xf4\x5c\x35\x29\x5d\x2b\x1d\x1a\x94\x7c\xf6\xf1\x6f\xc7\x37\x7d\x8c\xdb\xb0\x92\x8f\x8a\x8c\x0f\xfa\xe0\x0e\xfc\x70\x51\x0e\x20\xc8\xaf\x89\x04\x0c\x6a\x49\x76\xd3\x49\x76\x0d\x31\xef\x86\x27\x94\xb3\xfc\xfb\x63\xa5\x29\x03\x87\xe3\xc7\x46\x8d\xee\x98\xef\x45\x27\x3b\xd6\xd9\xd2\xe7\xca\x94\x81\x04\x20\x22\x6d\xff\x50\xa5\x2f\xca\x47\x2c\xbe\x7f\x1e\x4a\x80\x5d\xd6\xe5\x48\xf9\x3c\xcb\xf3\xf4\x10\x80\xf6\x7a\x90\x60\xe8\x21\xd4\x15\x04\xb2\x60\x28\x51\xdf\x89\x9d\xd2\xaf\x27\x60\xa8\xc9\x6f\xd6\x03\xd4\x77\xe3\x9f\x52\x7e\x35\xb9\x23\x2c\xd3\xff\xf0\x95\x80\x5f\xbf\x8a\xc0\xec\x69\xa6\xbb\x61\x44\xed\x82\xd5\xc3\x93\xe9\x23\xb7\xaa\x9e\x12\x75\x48\x83\xd8\xe8\x88\xf7\x58\x7d\x2f\xac\xfb\x07\x0f\x28\x0a\xbc\x40\x42\xf8\x9d\xa0\x2c\xae\xfa\x3a\x48\xf8\x54\x55\x9d\x59\x22\xae\x12\x90\x1f\xda\x30\x74\x9f\x92\x02\x34\x79\x38\xf8\x1e\x40\xdd\xd5\x8b\xa4\xde\xd3\xe3\x06\xca\xd1\x01\x7e\x21\x49\x7e\x5d\x4d\x6e\x47\xbe\x05\x2f\x8c\xa8\x58\x0e\xbf\xe5\x46\xd2\x0d\x7a\xb7\x79\xb9\x11\x95\x2a\x2b\xce\x3e\x56\xd1\x3c\x79\x99\xbc\xb3\x30\x7e\xbc\xa3\xdf\xf4\xe0\xf9\x96\x15\x67\xf1\xe0\xd8\x94\x92\x08\x7c\x74\x55\x0d\xb4\x54\x0d\x94\x8e\xc2\x68\xac\xac\xd4\x68\x6f\x00\x82\x90\x6d\x32\x13\x05\xec\x94\x91\x6c\x8a\x84\xf7\x27\xcd\x1e\x48\x80\xf6\xa8\x1f\x93\x35\x84\x9c\x42\x33\x7f\x57\x1a\x49\xc9\x5b\x2c\x64\x83\x45\x49\xf2\x18\xd7\xbd\xac\x1d\xec\x84\x9b\x42\x5f\xe3\x79\x1f\x7a\x81\xc9\x7d\xaa\x07\xe6\x34\xd3\x24\x99\x38\x4c\x8f\x11\x24\x13\xdf\x5d\x3e\x2c\x03\xd5\x9d\x02\xa2\xc4\x74\x09\x01\xc8\x87\x0e\xc3\x76\x5e\x00\xfd\x4e\xe2\x86\x4d\x13\xf1\xd6\x0c\xd0\xe6\xeb\xa5\x01\x9e\xc4\xec\x89\x06\x63\xe1\x0c\xcf\xe7\xa6\xe5\x94\x8b\x2b\x2a\x6a\x46\xe7\x91\x66\x13\xf5\x9e\xbe\x7f\x85\x5c\xc6\xd3\x88\x9d\xa4\x0a\x34\x00\xc4\x7a\x2f\x6d\xbb\x58\x0d\xb4\x41\xb9\xca\x1c\x30\x16\xe8\xb4\x6b\x41\x63\xc4\x96\x52\x13\xb3\x8d\x61\x18\x0e\x20\xd2\xdf\xfe\xb1\xba\x96\xdd\x7e\x45\xef\x04\x28\x65\x2a\x88\xdc\xf2\x9c\xd4\xc3\x79\x08\xb1\xb5\x58\x7e\x6e\xb2\x14\x2a\x07\x8a\xaa\xa6\xbe\x24\x65\xbb\x0f\x9f\x9e\xb3\xb4\x7a\x6e\xf7\x21\xd8\xf5\x89\xdb\xf3\xaf\xaf\xcb\xe4\x78\xac\x9a\x34\xab\x4a\x66\x3b\x94\xc7\xbd\x34\x00\x71\x84\xaa\x93\xdf\xbd\xd4\x48\x56\x28\xcb\x8a\x2b\x70\xc2\x26\x4c\x2d\x5e\x74\x33\xbc\xdc\x6a\xc6\x2b\xa1\x34\x35\xbf\xe3\x4d\x0c\x95\x8e\xc8\xe6\x5d\x0f\x5a\x28\x08\x25\x51\x82\x67\x34\x71\x5c\x97\x1e\x9b\x6b\x71\x70\x39\xef\x3a\xac\x31\xf5\x25\x77\x48\x8f\xe6\x4c\x3d\xff\x2a\x5f\xa5\x54\x22\x9b\x91\x19\xb2\xfe\xfd\x4e\x2d\xb8\x41\x1f\x02\xa6\x1a\x59\xdf\x10\x84\xbe\x36\xc8\x67\x3a\x87\xa3\x37\x1f\xdf\x39\xd0\x22\xf1\x0e\xa7\x68\x7e\xb1\xdc\xf0\x70\xba\x8c\x4c\x39\xe5\xc9\x73\xe7\xd5\xc9\x39\x2b\x49\x33\x79\xc4\x94\x13\x67\xda\x50\x80\x12\xaf\x93\x33\x62\xdf\x5d\x26\x92\x49\xca\x67\x0d\xe5\x9c\xd5\x43\x36\x6c\xe5\x02\x6f\x14\x3f\x4d\x25\x16\x83\xaf\x21\xf3\xa3\xb7\x03\x7b\xca\xf3\x5d\xd1\x93\xfd\x55\x79\x27\xe5\x93\x8e\xc4\x8a\xb4\xe4\xdc\xec\xd1\x9d\x39\x1f\x08\x3e\x35\x8c\xf3\x04\x89\x83\xcb\x24\xfb\x7e\x84\x65\x57\x60\x24\x27\x6e\x45\x8c\xd4\xec\x3b\x1a\x36\x1b\xa6\x51\x60\x8a\x29\x62\x1f\xef\xa6\x3b\x1c\xc8\x05\x53\x76\x8a\xf8\xf9\x9e\xad\x48\xc1\xf9\x3c\x3b\x7d\x8a\xd2\xf9\x2c\xb4\x38\xa1\xc8\x39\x01\x61\x4a\xa8\x81\xb5\xcb\x81\xc4\x65\x0c\x63\xb4\x69\x82\x69\xec\x57\x13\x43\xbf\xe2\xe3\x02\x53\x9b\xa9\x08\x00\x35\x1d\x40\x22\xd7\x16\xa0\xb8\x66\x65\xa5\x86\x11\xde\x23\xad\x68\x6a\xa2\x18\xd9\xbf\x6b\xda\x4c\xce\x1a\xea\x9d\x92\xf4\x6c\xf7\x3d\x58\x5e\x58\x5c\x6b\x49\x5a\xdb\xf8\x83\x94\xc4\x61\xab\x26\x0d\x72\x4b\xf1\xaf\x1c\x27\x55\xee\x23\xc0\x19\x74\x84\xdb\x30\xa6\x9b\x3c\x7f\x9d\x0b\x47\x7f\x7d\xea\xce\xf7\x90\xe8\xb0\x3a\xdf\x27\x4a\x68\x03\xb6\x93\xcf\x7f\xd9\x36\x47\x29\x04\x79\x33\x58\x39\x3a\x70\xe8\x4a\x8f\xd1\xd7\x7d\xb6\xf0\x38\x1c\x86\x20\x1b\x65\xea\x91\x8a\x8d\x76\xa2\x62\x33\xaa\x32\xbf\x19\x18\x8c\xda\xeb\xd7\x4d\x56\x24\xcd\x8b\xd3\x5d\x8b\x44\x6e\x23\xf7\x78\x28\x55\xbf\x57\x80\xf8\x36\xd1\xf1\xa8\xe2\x5b\xc2\xf8\x94\x84\x16\xae\x7e\x1a\xbb\x69\x8a\xa8\x45\xc7\xaa\x4c\x27\x3b\xc9\xd6\x60\x89\xda\x4a\xe9\xe6\x58\xee\xd0\xd1\x78\x1d\x1f\x36\x91\x8e\x73\x69\xc2\x39\xa7\xb3\x61\xb0\x5b\x84\xe1\x76\x11\x46\x72\x77\xaf\xc7\x23\x6a\x5b\x3b\x63\xd1\x2e\xd9\xae\xe3\x91\x31\xda\x46\xed\x2a\x2b\x75\xe8\x68\x88\xb6\x68\xb5\x56\xf1\xa9\xdd\x14\xa9\x38\x76\x72\x1d\x2c\xc2\xcd\x76\xb1\x79\x14\xbb\x98\x95\xa7\x6a\x82\x9f\x6d\x12\x1d\x76\x03\x3f\xb8\x81\xd2\x39\x52\xe4\xd2\xb3\x70\x9b\xec\x0e\x12\xa6\x25\x80\x69\x4e\x9f\xa2\xd5\x22\xdc\x44\x8b\x70\xb7\x16\x3b\xf5\x9c\x34\x65\x56\x9e\x39\x37\xec\xb5\x6a\x68\xb1\x73\x0c\x83\xed\xc0\x10\x6b\xa6\xf4\x8e\x97\x4a\x1d\x34\xa2\x4c\x57\x8f\x28\x08\x54\x94\x4b\x18\xe5\xac\x9e\xc6\xf1\x22\x7c\x5c\x2d\xb6\x62\x47\xd3\xa4\x3c\x4f\x49\x3d\x3d\xae\x62\x41\x3f\x69\x13\xa5\x8f\xac\xd0\x61\x0c\x0f\x69\x14\xae\x02\x05\xdb\x12\xc4\x36\xab\x77\x51\xb0\x88\x57\x8a\x6e\x92\x63\x1f\xd3\x83\x48\x5f\xf7\x4e\xc4\x46\x4a\xf7\x68\x99\xe3\x00\x26\x28\x40\xb1\x8c\x6e\x09\xa1\x9b\xd5\xbd\xf5\x6e\x11\xad\x1f\x17\x51\x1c\xc8\xc3\xd7\x4c\x5c\xcd\xa3\xc9\x04\x05\x71\x37\x9f\xb5\xa1\x6b\x3e\x3b\x4d\xbe\x34\x0a\xa3\xb5\x84\x49\x1b\x36\x8e\xdc\xb1\x57\x71\xb4\x88\x77\x8b\x0d\x9b\x7a\x7f\xb9\x16\x87\xaa\x6b\xaa\x72\x58\xe1\x46\x86\x3d\x10\x43\x2e\x08\x78\xcf\x63\x65\xdf\x37\xd4\xa9\xae\x31\x55\xb2\xaa\x14\x78\x72\x3a\xe3\x09\x6c\x70\xe5\xa8\x81\xf2\xc4\x39\x7d\x5d\x0d\xc7\xa5\xef\xac\xeb\x55\x84\x28\xd9\x8c\x1a\x6d\x18\xbb\xae\xc7\x2b\xc9\x9a\x5b\x59\xf7\xf2\xba\x34\x6b\x8b\xac\x6d\xb3\x43\x8e\x94\xfe\xae\x05\xf4\x02\x94\xb7\x3c\xe6\x55\x6b\xca\x9a\x0f\x24\x23\x93\x3b\x0d\x32\xa8\xac\x85\x82\x60\x1d\xec\x62\x60\xcc\x8f\x47\x14\xeb\x2f\x28\xec\xd2\x04\x47\xba\x12\x2a\xef\x22\x3d\xbb\xc7\x40\x1f\x4f\xc7\x54\x07\x15\xa5\x34\x70\x10\x6d\xe3\x88\x03\x6a\xeb\x98\xd5\x6e\x95\xae\x81\x5b\x72\xef\x51\x84\x56\x28\x56\x43\xe2\x4d\xba\x4b\x0f\x1a\x32\x98\xc5\xe3\xee\x78\x38\x9e\x74\x60\x80\xc9\x28\x88\x56\xd1\x66\x00\x95\x57\x1f\x61\x1c\x6f\xa3\x35\x64\xb1\xd6\x28\x1d\x93\xd1\x71\xaa\x2b\xb4\x39\x1e\x14\x54\x30\x83\x87\x30\x3d\x1d\x34\x50\x48\x86\x87\x08\x85\x2b\x0e\x28\xae\x1c\x82\x63\xbc\xde\x40\xe9\xf3\xd2\x10\x1d\x4f\xa1\x3a\xbe\x08\xc5\xe8\x20\xe2\x81\x19\x4b\x0e\x69\x8a\x62\x09\x0e\xe2\x6a\x13\x1d\x57\x03\x57\x8a\xeb\xdf\xc5\x9b\x75\x00\x09\xed\x74\x3a\xad\x8e\xa9\xc2\xd8\xe9\x84\xd0\x21\x51\x50\xc1\xbc\x9d\x4e\x68\x97\x84\x2a\x28\xc0\x5e\xbc\x5a\x9d\x82\x81\x3d\xd9\x61\x6f\xa3\xf0\x08\x0e\xe9\x69\x97\x6e\xb5\x21\x3d\xc5\x47\x61\x48\x29\x26\x03\x73\xe1\x21\x38\x6c\x15\x48\x80\xb7\xf5\x63\x18\x85\xdb\xd1\xa8\x08\xee\x76\x17\xee\xc2\x5d\x04\xb1\x86\xf0\xff\x54\xd6\xd2\x53\x7a\x42\x12\x22\x98\x33\x74\x44\xc7\xd3\x46\x06\x04\x18\xdb\xec\xf0\xff\xc6\x0e\x8c\x6e\x32\x3c\x84\x28\x82\x26\x2a\x99\x93\x8f\xea\x2c\xd8\x1c\x77\xc7\x44\xc4\x63\x98\x02\x8f\x87\xc3\x01\x49\x70\x90\xa6\xad\x83\x38\x88\x5f\xff\x89\xc7\xb3\x9f\xd1\xcb\xa9\x49\x0a\xd4\x7a\x75\x53\x9d\x1b\xd4\xb6\xfe\x21\x69\xfc\xb6\x6b\xb2\x1a\xb5\xb7\xe0\x83\x78\x12\x70\xb0\xae\x21\xcd\x78\xd8\x55\x60\x6d\xe0\x05\xaf\xaf\xff\xf4\x9b\x61\x5e\x72\x7c\xf2\xa6\xb8\x98\xd6\x49\xf9\x16\x25\x6e\x4d\x69\x39\x70\x5d\xbe\x56\x88\x3d\x70\xb9\x12\x0e\xbf\x3a\x2f\x6e\x98\xde\xf9\x6a\x23\xdb\x55\x05\x76\x23\xc8\x92\xc2\x5b\x6e\xe8\x26\xc7\x93\xb1\xc6\x79\xdf\x43\xea\xb3\x7b\x3a\x15\x60\xb0\x53\xfd\x34\x29\x5e\x99\x25\x8d\x7f\xc6\x72\x46\x65\xf7\xed\x3a\x4e\xd1\x79\xa1\x9d\x54\x8d\x1f\xbc\x28\xfe\xb0\x10\xd6\x1b\x5e\x20\xfd\x8a\x83\x0f\x60\xab\x00\x2c\xdd\xda\x70\x3d\xe8\xd7\xaa\xc7\x54\x0b\x52\xaf\x92\x32\x2b\x92\x0e\xa5\x83\x54\x68\x01\x16\x02\xa4\xea\x5e\xd8\x7a\xb4\xbf\x5e\x56\x9e\xb2\x32\xeb\xd0\xd3\xec\x16\x77\x0d\x9b\x8d\x53\x9a\x8c\x4e\xfa\xf9\xfa\xba\x24\x44\xcc\xcf\x9a\x8a\x97\x94\x08\xa8\x7c\x38\xf1\x55\x38\xd6\xf6\xf6\xcc\x09\xaf\xea\x21\x39\x3f\x21\xad\xc5\x83\x4c\x72\x5a\x14\x61\x52\x0d\x6b\x39\x18\x07\x3f\x68\x6b\xa8\x95\x3f\x41\x85\x10\x99\xe9\x4f\x50\x2c\xa8\x33\xd1\x90\x3f\xf9\x19\x63\x39\x9e\xc4\x58\xc1\xe2\xfe\x11\xcf\xb6\xbc\xa7\xb9\x5e\xdc\xbe\xd4\xe9\xc7\x05\x7f\xbb\x33\xb7\x96\x63\xb5\xda\xe9\xcf\xaf\x70\xcc\x56\x21\x37\x7c\x94\xd2\xf4\xc3\x94\x16\xdd\xf9\xa1\x30\x9d\x16\x53\x03\xed\x73\xe7\x1d\x5f\xd5\x04\xd4\x97\xaa\xc9\x7e\xad\xca\x2e\xc9\xc1\x9b\x7d\x20\xa4\x76\x28\x55\x7f\x27\xd9\x3a\x45\x2d\x98\xe6\xab\x86\x71\xb4\x6c\x47\x22\x1c\x99\xd1\xb5\x69\x3c\xf7\xf9\xb6\x2f\xa7\xd6\x23\x20\xe6\x0d\x00\x90\xef\x21\x4f\x86\xcb\xd8\x91\x0f\x5c\x5f\x6b\xf8\x20\x64\x7f\xcb\x11\x04\xf9\xf9\x1b\x0d\xa2\x25\x09\x05\xcc\x3b\x4f\x46\xe1\x34\x8a\x85\x7e\xa5\xe0\xfe\x51\x04\x90\xfd\x4d\x47\x11\xe2\xe7\xef\x67\x14\x79\xa6\x07\x98\x77\x9e\xf1\xc1\x69\x14\xf3\xf3\x57\x1c\x45\x00\xd9\xdf\x74\x14\x21\x7e\xfe\x7e\x46\x71\xc8\xa6\x00\x33\xdf\xcf\x70\x87\xe4\x9a\xff\x57\x1b\x46\x00\xd9\xdf\x74\x18\x21\x7e\xfe\x56\xc3\x28\x32\x72\xca\xaf\xed\x45\x97\x3b\x0f\xcb\x65\x7e\x4c\x5b\xde\x93\xf8\xcc\x0b\x4a\xfa\x45\x5d\x45\x70\xcf\x5d\x33\x88\x11\xd7\xbb\x63\xd6\x45\x2e\x14\x19\xb9\xee\x55\xf3\x6d\x69\x43\xfb\x99\xd1\xd2\x44\x2b\xe9\x8b\x8e\x91\x25\xbe\xfd\x3d\x0f\xb9\x72\x62\xd2\xb4\x5a\xa6\x34\x95\xd5\x32\x2e\xd4\xe9\xb9\xef\xa7\xf3\xad\x73\x23\x86\x99\x62\x9c\x6c\x27\x09\xd2\xc8\x16\xdf\xa4\x9f\x8b\xde\x49\x94\x9c\xaa\x24\x4a\x5a\x08\x50\x74\xdc\xf5\xe7\x1b\xfc\x86\xf6\x73\xc5\x68\x6f\x25\x09\xd1\xc8\x12\xff\x90\x30\x0f\xb9\x93\x08\x39\x4d\x49\x84\xb4\x50\xa7\xe7\xf4\x65\x82\x7f\x84\x80\x1a\xcf\x14\x9e\xad\x89\x3c\x8f\x4d\xcc\xf0\x2f\x1d\x33\x30\xbb\x4d\x62\x46\x50\x9e\xc4\xa4\x50\x27\xe6\xfe\xe9\x84\x7e\x25\x31\xb4\x9f\x29\xbc\x89\x56\x92\xfc\x6c\x2c\x91\xaf\x31\xf3\x90\x3b\x89\x90\xd3\x94\x44\x48\x0b\x75\x7a\xae\x9f\x77\xd8\x97\x1c\xb8\xf9\x4c\x01\xda\x1b\x49\xf2\x33\x33\xc4\x3e\x18\xcd\xc2\xed\x24\x3e\x4e\x52\x12\x1f\x2d\xd4\xc9\x39\x7e\x81\x62\x1f\x9b\xc0\xd6\x33\x85\x67\x6d\x23\xeb\x9e\x89\x1d\xfe\x49\x6b\x0e\x6a\x37\xcd\x63\x14\x65\xcd\x23\x85\xd0\x48\x39\x7c\x23\xe3\x9f\xc3\xa0\xc6\xb3\xb5\xce\xdc\x44\xf6\x16\x26\x66\xf8\x37\xb7\x19\x98\xdd\x5c\x05\x23\x28\xbb\x0a\x52\xf8\xca\x4e\x3a\xd0\x34\xbf\x64\x41\x2c\x9d\x53\x8f\xd5\x37\x48\xf5\xe3\xc4\xc3\x42\x28\xa0\x5b\xd9\xc3\xd9\x98\xb0\xee\xbd\x80\x64\x0a\x1f\x9e\xfc\x5b\xc6\x8c\xa0\xba\x9a\x0b\x0c\x37\x5b\x28\x30\xb9\x89\xc5\x37\x4b\xe9\xc5\xac\xe5\xf8\x93\x8d\x87\x0b\x28\xa5\x3a\x70\xb3\x8d\x5f\x0f\xd7\xae\xab\x4a\x7e\xde\x63\xfa\x31\x35\xb6\x91\x1d\xbc\xed\x55\xb5\x84\x12\x1c\x73\xcc\x00\x5b\xbe\xaf\xcb\xae\x4a\xda\xee\x36\x66\x16\x5c\xc5\x41\xdd\xdb\xbe\x46\xee\x0c\x9f\x23\xd5\xaf\x57\xbb\xf8\x41\x4b\xbb\x31\x66\x6a\xee\x27\x76\xeb\x1f\xe4\x23\x50\x52\xd6\x65\x15\x92\x4b\x09\x53\x4b\x9b\xaa\xf6\x4f\x59\xde\xa1\x66\x7f\xc8\xaf\xcd\xb7\x61\xc0\xdf\xda\x36\x54\x0d\x2f\x45\x1a\x3e\xa4\x12\x01\xe9\xf7\x80\xe1\x9c\x15\x04\x98\xe4\xc6\xc1\x2e\x9d\xa3\x0e\xc5\x0a\xe5\x91\x05\x0d\xe6\x92\xa5\x5a\x16\x76\x5c\xc1\xef\xc9\x19\xbf\x74\xb1\x8f\xb2\x70\xa2\x6a\x79\xf3\xff\x2b\x0d\x9e\x3d\x3f\x45\x10\x3f\x70\xd6\xc9\x27\x37\xf9\xf3\xce\xeb\xb2\xa8\xd2\x24\xf7\xab\x1a\x95\xfa\x45\xcc\xb1\xce\xa3\x7f\x0f\x20\x7e\xcf\x75\x72\x28\x79\x61\x29\xee\x28\xe0\xf0\x95\xe9\x94\xf5\x28\x65\x87\xa9\xd4\x47\x2a\x83\x38\x78\x12\x65\x0c\x3c\x41\x4a\xfe\x56\xe7\x81\xf0\x2a\x21\x65\x31\xcd\x92\xbc\x3a\x1b\xdf\x34\x25\xd7\x7d\xd8\xa3\xa4\x2c\x5b\x20\x34\x09\x09\xae\xe5\x29\x49\x91\x27\xe3\x15\x3e\x56\x03\x2f\x7c\xaf\xd8\xf5\x00\xc3\xb3\xec\x13\x2d\xe0\x47\xcb\x67\x41\x40\xcf\x8e\x1b\x99\x92\xdf\xde\xfe\x7f\xbe\xf5\x63\x32\xff\x2c\x75\xce\x5f\x90\x8d\xf2\x73\x3f\x04\x40\x51\xd0\xd7\x2d\xcc\x28\x08\x9f\x23\x86\xe1\xa7\xac\x0e\x7e\x7b\x6c\xaa\x3c\xc7\x56\x57\x9e\xae\xd8\xcc\x4a\xaf\x7d\x06\xc1\x07\xcf\x27\x1f\xec\x1f\x8c\x28\x38\x3f\xec\x64\xc6\x0d\x40\xf2\xe5\xc2\xb1\xa8\x1a\x3b\x89\x95\xdf\x4e\x9f\x00\x63\xc6\x87\x7e\x4d\xbf\x34\x59\xf9\x59\x9d\x03\x40\x23\x32\xed\xe1\x69\xca\x1b\x51\xa3\x85\xd2\x49\xb3\x56\x64\xa5\xab\xe8\x38\x4e\xf5\x6e\x2d\xf0\xda\xaa\x24\xba\x31\x8f\xbd\x01\xa1\x71\x90\x67\x1d\xa9\x11\xec\xcb\x4c\x3a\x16\x4d\x00\x94\x70\x0a\x1b\x17\x0f\x67\x4f\x44\xc1\x29\xdc\x95\xa3\x4b\xb0\xa5\x8a\xb5\xb3\xdd\x7e\xbc\x77\xa9\x10\x69\x39\xba\xc8\x55\x41\xcd\x52\xf3\x25\x80\xa3\x83\x58\x07\x63\x3f\xbe\x3c\x0b\x83\xf6\xe5\x02\x6e\xdb\x69\x74\x88\x39\xba\x09\xef\x50\x2b\xd5\x64\x2d\x20\xae\x59\xa5\x89\xe6\x70\x9e\xc5\xfe\xd4\xc9\x98\x00\x48\xcf\x57\xa4\xdd\x65\x36\xde\xef\x5d\x59\x8f\x3e\xac\x04\x3f\x4e\xf9\xf6\x94\x45\xae\x70\x0c\x7d\xef\x93\xc3\x49\xe2\x7f\x45\x7b\x00\x65\x02\x0b\xf4\xeb\x98\x82\x61\xd1\x75\xd3\x90\x71\x4c\xe0\x92\x25\xa5\x9a\x32\x36\x60\xa6\x63\x54\xa6\xa0\x50\xe5\x14\x55\x8a\x44\x8d\x57\x55\xa7\x6f\xce\x8a\x1c\xff\x00\xa4\x4c\x91\x1f\x7a\x8c\x4d\x6d\x80\x45\x2b\x7f\x2e\x52\x6c\x43\xed\xc2\x21\x69\xfc\x02\x25\xed\xb5\x31\x1d\x4c\xf7\x1f\x1f\x1f\x1f\xeb\x9e\x4d\x0e\x12\x2c\xb0\xf1\x91\x03\x07\x8a\xcf\x72\x82\x40\x72\xb2\xc2\xe3\x1f\x41\x30\x7c\xa2\xda\x87\x6c\xc1\x0f\x38\x0e\xc1\xfa\x1a\xbc\xea\x8a\x2c\xb8\xde\xee\x57\x61\x3c\x83\xe3\x32\x38\x26\x7b\x2b\x6e\x7b\x1d\xe8\xb5\x85\x18\x9d\x61\xe9\xd8\xbe\x05\xd3\x36\xf9\x99\x3b\xf4\x3e\x17\x5a\xef\x4c\xad\x87\x6f\x90\x40\xa3\x30\x5c\x93\x56\xcb\xae\xaa\xf2\x2e\xab\x01\xbd\x18\xad\xe6\x36\x50\xce\x74\x0d\x0f\xf2\x93\x08\xf2\x94\x14\x59\xfe\xb2\xc7\xa1\x6b\x8e\xfc\xf6\xa5\xed\x50\xb1\xf8\xe7\x3c\x2b\x3f\xff\x94\x1c\x7f\x26\x3f\xff\xa5\x2a\xbb\xc5\xcf\xe8\x5c\x21\xef\xdf\xff\xb4\xf8\xd7\xea\x50\x75\xd5\xe2\x7f\xa0\xfc\x0b\xea\xb2\x63\xe2\xfd\x19\x5d\xd1\xe2\xf7\x4d\x96\xe4\x8b\x3f\x57\x5d\xe5\xfd\x9c\x94\xed\xa2\x4d\xca\xd6\x6f\x51\x93\x9d\x16\xbf\xc7\x98\xbd\x3f\x60\xab\xec\xfd\xb1\xa8\xfe\x92\x0d\xb8\xd4\x9f\x3f\xbf\x14\x87\x8a\x61\x11\xe0\x59\xa8\xcb\x52\x53\x34\x45\x92\x6b\xcf\xd5\xab\xef\xc0\x0b\x67\xf8\xf0\x64\x14\x7f\x53\x43\x0d\x9e\xbe\x13\xf7\x31\xc6\x02\x65\x95\x99\xa3\x0e\xbb\x4f\x6c\xd9\xb1\xd9\x61\x0c\x91\xc4\x97\x24\xe7\xa5\x54\xa2\x42\x49\xa7\x73\x49\x11\xbd\xdf\x4d\x1a\x12\x13\xa9\x87\xf5\x60\x4e\x4d\xc1\x89\x31\x25\x50\xbc\xd7\xe3\x50\xe1\x2d\x93\xa6\xa9\x9e\x01\x25\x91\xf5\x82\xbd\x25\xba\x13\x5e\xb7\x5d\xae\x59\x08\x2d\x22\xe2\x13\x45\xc7\x27\xbe\x3a\x24\x6e\x3a\x01\x37\x7d\xe8\x68\x12\xfb\xfc\xba\x3c\xb4\x3e\x23\xe1\x63\x19\xfc\xd2\xfb\x75\x9e\x1c\x51\x81\xca\xee\xff\x7c\xdf\x55\xf5\xa7\x85\x08\xd2\xe1\x05\x03\x0f\x5c\xd7\xec\xd5\xfc\x49\x14\x8c\x79\x15\x13\x17\xce\xf8\x51\xd4\x15\xd3\xf0\x8a\x24\x88\x70\x48\xe9\x42\x96\x32\xac\xd3\x4c\xc2\x84\x67\xc6\xf9\x93\x7e\x04\x9f\x2c\x5c\xac\x5c\x10\x67\x21\x0b\x85\x14\x8d\x1b\x59\x1e\x1b\x39\x07\x34\x90\x60\x1a\x76\x1d\x81\x88\x86\xad\xc3\x04\xe6\x07\xf5\xd8\xcd\x24\x02\xc9\x4c\xa4\xc5\xa5\xa6\x7c\xa1\xd7\xe5\xa6\x48\x8f\xfa\x72\x67\xf9\xd1\xc1\x96\x05\xc8\xb2\x7b\xcd\x53\x2c\x86\x08\x12\x21\xad\xe2\x32\x64\x5f\xf2\x67\x20\x83\x44\x25\xe1\xe4\xb2\x52\x3f\xef\xb3\x54\xbc\xa2\xa0\x94\x85\x8d\xb3\x9c\xf0\xc8\xcb\x52\xc2\x25\x33\xb5\x8c\x20\x81\x24\x84\x2b\xb8\x7c\xf8\x80\xdf\xa9\x64\x22\x0d\x48\x70\x02\x29\x2e\x36\xf9\xd4\x87\xa8\x61\xa0\xe8\xc8\x62\x50\x14\x1c\x47\x9d\x95\x25\xc9\x94\xc5\x7d\x33\x71\xdb\xda\x8e\x9f\xb8\xe1\x07\x5f\xdc\x00\x03\x18\xd3\x45\x92\xaa\xa6\x99\x20\xe0\x38\x69\x13\x3c\x09\xfc\xe0\xb5\xdd\x7f\xb9\xfa\xff\xc4\xae\xfe\xaf\x12\x9c\x0f\x4a\xb5\xe0\x7f\x38\x2e\x1b\x5e\x55\x78\xfd\x8d\xfc\xa5\x70\x67\x00\x1b\x0d\x89\x1e\x9f\x96\xc9\xa9\xd3\x89\x9b\x97\x1a\xf2\xd2\xe5\x0d\x0b\x0f\x46\xd0\xb6\xf0\xe0\x20\x78\xe1\xa1\x7c\x63\x88\xb9\x6d\xb2\xa3\xf9\x41\x30\x7f\x02\xb6\x1f\xe4\xc5\x07\x09\x39\x7c\x9a\x2f\xed\x3b\xcf\xa7\x89\x70\x5d\x71\x8b\x66\x4f\x27\x61\x77\x16\xcb\xd1\x48\x41\x2b\x12\x49\x7b\xe2\x39\x3c\xb1\x41\x85\x59\x22\x95\xb7\x71\xff\x63\x16\x4f\xf4\x1a\x84\x95\x11\x61\x95\xc4\x81\xe8\x2a\x49\x8a\xd2\x1d\x46\x90\x22\x82\xc6\x90\xd4\xfc\x20\xae\x93\x80\x31\x7c\x12\x3a\x24\xdd\x2f\xe4\x1f\x21\x56\xe3\x52\xc3\x91\x09\x68\xb0\x45\x5e\xac\x4e\x4e\x10\xac\x22\x5e\x71\x19\x35\x6f\xd0\x65\xee\xf4\x61\x97\x98\xa3\x03\x4f\xd3\x19\xdb\x86\xdd\xc2\x9d\xc3\xf0\x8b\x8b\x3c\x0e\xc5\x16\x79\x42\xe2\x7a\x97\xf1\x67\x98\x20\x05\xa0\x55\x3f\x08\xab\xbc\xf9\x93\x58\x46\x0f\x0d\xad\x44\xc5\x12\x59\x04\xa2\xe0\xc0\x45\xdf\xbc\x51\x55\x38\xd3\x87\x55\x66\x8c\x8e\x2b\xdb\x7b\x9b\xcb\x99\xfb\x88\x7a\xdc\x49\xf0\x8c\xaf\x46\x89\x19\x20\x8d\xf9\x1d\x88\x4a\xc6\xc1\x07\x30\x30\x0e\xf5\xcc\xf0\x6c\x55\xa7\xfa\x1e\x7d\x4b\xf7\xb4\xc5\xff\x9b\xe8\xde\xb8\xda\xe6\x30\x64\xb5\x2d\x6f\x10\x3a\xa8\x2b\xc1\x03\x29\x2b\xae\xf8\x41\x5a\x70\xff\x66\xd6\x4a\xe4\x01\x1a\x1f\x81\x15\x7b\xcc\x17\xb3\x15\xb9\xae\x3d\xc2\x8a\x7c\x9e\x56\x4b\xbc\xe9\x3a\x2d\xb2\x46\x35\x9a\xa5\x66\x87\x4d\xd5\x14\x6f\x54\xaf\x65\x3d\xbc\xd9\x72\xa3\x0e\x2e\x5a\x38\x8f\x03\x5f\x36\xa7\x5a\x65\xd6\x3a\x74\xc0\xff\xb3\xbf\x0b\xb0\x72\x7e\x16\x60\x25\xa6\xe7\x57\xe6\x15\x94\x76\x6e\x9c\x8a\xe2\x41\x03\xe0\x00\x04\xbd\xb4\x4a\xf2\x47\x57\xd7\x16\xe5\xfa\x57\x84\xb1\x6e\x29\x7d\xbd\xba\x75\xd5\xf5\x78\xe1\x87\xad\xea\xa4\xf4\x5f\x46\x50\x16\x99\x99\x8e\x01\x40\x67\x09\xd4\xc6\x6c\xfc\x95\xb5\x66\x8e\x92\x66\x7f\xa8\xba\x8b\xf4\x75\x72\x6c\x69\xbf\x57\x4b\x02\x0b\x7a\xec\x8a\x84\x2b\x02\x37\xca\xb5\x10\x5c\x24\x9e\xa3\x39\x25\x47\xe4\x7f\xc9\xda\xec\x90\xe5\x59\xf7\xc2\xcf\x3f\x58\xaa\xec\x07\x0f\x36\x72\x1e\x45\xb7\xd3\x0a\x1b\x63\xf2\xc5\xb7\x01\x41\xc7\x16\x36\xf7\xa5\x5a\x94\x47\xc2\xfd\xb8\x81\xd4\xce\x2f\x51\xdf\x2d\x94\xb2\xba\x41\x5f\x94\x32\x7e\x10\x4f\x89\x89\x68\xa9\xd2\x9c\x0c\xac\x8a\x13\xd3\xa1\xc7\xd5\xe4\x72\xac\x1c\x0f\xc0\x49\x87\xe1\x44\xc6\xff\x22\x9f\x35\xc0\xc3\x1a\xac\xca\xc0\x06\xc6\x0c\xf5\x0c\xe2\x82\xb0\x3c\xc1\x86\x6f\xe1\xc3\x67\x8c\x0c\x58\xe9\x81\x10\x79\x88\xc6\xe3\x5e\xfa\x60\xf9\x75\x53\xd5\xa8\xe9\x5e\xf6\x0c\xea\xc9\x56\xe7\x78\x30\xc4\xc6\x0d\x19\x10\xbb\xc4\xa0\x56\x58\x80\x13\xc3\x0d\x34\x53\xef\x6d\x87\xe2\xd9\x33\xa5\xa1\xcb\x58\x5a\x20\x69\xe8\xc3\x09\x05\x4f\x36\xa1\x73\x79\x7a\x41\x8b\x67\xe1\x93\xb1\x66\xfe\x9c\xfc\x8a\x7d\xb9\x63\x66\x63\x83\xdd\x54\xb9\x3a\xb9\x79\x31\x1e\x44\xe3\xe2\x70\xf0\xcb\xe3\x60\xcd\xfd\x66\xcd\x73\xb4\x50\x93\x1f\x7f\xb0\xef\x08\x8e\x07\x11\x6c\x43\x34\x64\xa4\x85\x46\x69\xa8\x9c\x3f\x50\x2e\xa2\x7a\xe3\x08\x0c\x27\x78\xc1\xca\x0b\xdd\x8d\x02\x29\x1b\x5b\x92\x4a\x2d\x07\x20\xb8\x03\x38\x66\xf6\x13\xbf\x99\xc1\x1d\x15\xde\xa2\xd1\x39\xe5\x2b\x57\x43\x35\x79\x09\xd1\xc0\x2a\x7d\x25\xd1\xf2\x4a\x46\x24\x7c\xcc\x27\x7f\x8f\xab\xc0\x7d\x59\xf9\x0d\xaa\x51\x42\xf2\xd7\x7c\x24\xdf\xb8\xe9\x01\x26\x0b\xa9\xb7\x3d\xc8\x38\xfd\xf8\xa2\x77\xca\xf2\xfc\xfb\x6f\x3e\x44\xab\xd3\xe9\xf4\x8d\xfc\x82\xe3\xce\xdb\x89\x8f\x33\xa6\xdf\x7f\xf3\x53\xbc\x8c\x62\x2f\xc8\xfd\xb5\x47\xff\x17\x2e\x63\x3f\x5c\xc6\x3f\xae\x71\xf9\x3a\x8f\x96\xb1\x1f\x2d\xe3\x1f\x29\xd8\xaf\xc0\x9b\x8a\x66\x89\xff\xbd\x75\x35\x5a\x6e\x49\x57\xc3\x65\x8c\xbb\xf9\xe3\x0a\xff\x5e\xe7\xb8\x7f\x1e\xee\x23\xa9\xdf\xe5\x6b\x9f\xfc\xcf\xda\xd7\xac\x4c\xb3\x63\xd2\x55\x4d\x0b\x18\x2b\xd3\xe3\x63\x83\xd5\x8a\x65\xb3\x65\xb0\x51\x70\x52\x1d\xfe\x48\xd5\x07\xe5\x4d\xaa\x0f\xea\xeb\x11\x20\xb7\x5e\x9e\xdd\xc8\x11\xf2\xec\x57\x1c\x0b\xf0\xa3\xf5\xe4\x88\x50\xc0\x8f\x08\xf1\x43\x15\xa3\xde\xaf\xc6\xfb\xd1\x8d\x5a\x40\xe8\xe3\xdf\x64\x8a\xe3\x1e\x96\x1d\x39\x0f\x53\xf7\x3c\xbd\x3f\x8b\x18\xee\xde\x46\xa7\x87\x89\x02\x5b\xda\x4a\x1e\x7a\xc1\x40\x8e\x76\x1c\xc8\xb9\xa5\xd6\xdd\xb1\x04\x96\x84\x7f\xcf\x5a\x78\x44\xc0\x17\x2b\xd0\x12\xe5\x98\xd4\x24\xa9\x92\x49\x1f\xb1\x8a\xf0\x9c\xa7\x78\x68\x07\xbd\x19\xbf\x5a\x0d\x2a\x87\xe5\x1d\x09\x1f\xd1\x7c\xb1\xa1\xcd\x63\x42\xf9\xe8\xda\x9a\x44\x72\x3e\x1d\xa9\x5b\x57\x01\x6b\xd9\xa6\xea\x92\x0e\x7d\x1b\x76\xd7\xa6\x14\xd7\xb1\x52\xb9\x94\x8b\xee\x2b\x62\x5d\x2a\xb8\x6c\xce\x40\xd8\x92\x21\x7f\x2b\xc9\xfa\x89\x40\xa8\xb0\xf8\x27\x20\xfa\x54\x00\xd1\x49\x69\x1b\x55\xac\xb0\x24\x62\x8d\x85\x10\x74\xcc\xf2\x25\x73\x8c\xa3\x79\x5b\x6a\x32\x07\x68\x55\x08\x7e\x5b\x00\x9f\x91\xc4\x03\x7e\x6c\x07\x26\x42\x85\x6d\xd0\xcf\x4d\xf5\x7c\x0b\x3e\x00\x83\xd3\x1e\x93\x1c\x7d\x1b\x88\xe3\xc2\x8b\x5e\xe3\xe0\x83\xa0\xe3\xd0\xb0\x7f\x15\xbc\x4b\x09\xdb\xd7\x1a\x76\xd5\xc8\x1d\xaf\x0d\x1e\x57\xf2\x89\x15\x18\x5c\x3d\x0a\xd0\x07\x0e\xf3\xe7\x3a\xc8\x46\x58\xb9\xbb\xe6\x01\x7e\x5d\xd2\x75\xf4\x21\x69\x11\x46\x71\x83\x1f\xa4\xf8\xc7\xac\xa8\xab\xa6\x4b\xca\x8e\x37\xe8\xaa\x5a\x85\xed\xaa\x5a\x87\x2b\xb2\x34\xcd\x35\xb4\xb4\x54\x87\x66\x1f\x0c\x14\x68\x5a\x0a\xf0\x30\x8e\x84\xc6\xcb\x58\x65\x68\x07\x75\x80\x95\x8b\x2d\x0e\xe7\x21\x4d\x83\x29\xb1\x97\x00\x9e\x08\xf0\x63\xba\xec\xb3\xfc\xae\xc2\x82\x5d\x86\xd3\x40\xf5\x72\xba\xb4\x36\x3d\xbe\xa0\xf0\x39\xe6\x42\x30\x3d\x8c\xa0\x72\x0a\xbc\x8f\x70\x56\x1f\x47\x10\xb8\x52\xc1\xa1\x1a\x13\xc7\xf4\x15\x05\x95\x63\x96\x72\xc0\xf4\xb6\x81\xc6\xaf\xfa\xc4\xc1\x59\x7e\xdf\x40\xe4\x48\x02\xd5\xcb\x4d\x7c\xd2\x47\x10\x14\x3e\xc9\xbd\x7e\xd3\x03\x05\x2a\x93\xf2\x3b\x05\x67\xe1\x91\x02\x81\x0d\x01\x48\x29\x34\x32\x46\xde\x30\x50\x18\xe3\x37\xe7\x4d\x2f\x0c\xa8\xbc\x69\x0f\x0d\x9c\xe5\x57\x06\x04\x66\x64\x50\xbd\xdc\xc4\x27\x7d\x87\x40\xe1\x93\x5d\x4f\x37\xbd\x11\xa0\xb2\xa9\x3e\x15\x70\x96\xde\x09\x10\x98\x91\x00\xb5\x62\x13\x8b\xf4\x29\x01\x85\x45\x7a\x05\xdc\x94\x10\x52\xe5\x50\x49\xf6\x7f\x16\x33\xfd\x0b\x8c\x88\x60\x6a\xa9\x51\x80\xe4\x1d\x00\x4d\x80\xcd\x67\x00\x96\x66\xe9\xd7\xc5\x27\x26\xeb\x3f\x0b\x99\xfa\x25\x19\x0d\x40\x4a\xa1\x51\x03\x49\x22\x7f\x55\x03\x2f\x59\x87\x40\xfd\x3b\x29\x90\xc2\xb2\x47\x87\x07\xfc\x0c\x5b\xa0\x69\x87\x6b\xd8\xf5\x02\x1d\x54\x79\xad\xd4\xa9\x09\xdd\xda\x92\x96\x6a\x2e\xcd\xa0\xb7\x49\x9d\x1a\x92\x4f\x8c\x62\x22\x24\x97\x46\x01\x17\x42\x00\x77\x7a\x00\xa0\x19\x8c\x4c\xdd\x1c\xc1\x58\xd0\x6a\xec\xd8\x08\xc9\xc3\x5a\x43\x57\x46\x40\x1a\xb8\x02\x60\x83\xf7\x04\xb2\x5f\x02\xe0\x82\x13\x93\x1a\x68\x0e\x6c\x68\xc0\x7d\x88\x04\xae\xf9\x0f\x0e\x4e\x4d\xb9\x7c\x45\x5f\x35\xe3\x1c\x76\xb0\xae\x12\xb8\x66\x59\x39\x38\x37\x72\x12\xb4\x66\xe0\x06\xf1\x89\x9a\x67\xb2\x35\x23\xea\xe6\xb3\x02\xab\x4d\xfd\x81\x6b\x3a\x23\x15\x9e\x25\x59\x93\x99\x87\x52\xbc\x2c\x54\x4f\x3c\x36\xa8\x00\x20\x35\xb0\x18\x86\xb3\x3d\x18\x6c\x6e\xc4\x76\xee\x0d\x38\x80\xcc\x64\x10\x12\xaa\xa9\x0b\x19\xa9\xed\x55\x66\x77\x54\xe2\xa4\x35\x66\x73\x83\x10\x89\x0d\xdd\xc5\x91\x9f\x55\x71\xaf\x0c\x90\xc7\xac\x39\xe6\xe8\xa6\xc5\x19\x10\x2c\x79\x69\x4c\x85\x34\xe0\x0d\xd4\x97\x7c\x45\x20\xf2\x41\xf6\x94\xf5\x73\xbe\xd6\xa6\x7e\x59\x95\xf2\x9d\x7e\x11\x65\xea\xd3\x38\x4c\x09\xcb\x20\x10\x1a\xaa\x81\xf1\x9b\x0c\x2e\xc3\x01\x00\x9d\x74\x39\x99\xfc\x02\x00\x7c\x31\x5a\x1c\x4a\x20\xc0\x23\xca\x73\x05\x12\x17\xc9\xa0\xa7\x1c\xf5\xd2\xdd\x3b\xb0\x8f\x12\x94\x50\x26\x00\x9b\x6f\x95\xe1\x69\x3d\x25\xee\xb6\x70\x91\xf8\x00\xe5\x2c\xf4\xb6\x98\x96\x7b\x5b\x4c\x8b\x9e\xc3\xb8\x48\x7f\x80\x75\x1a\x80\xb6\x98\x1a\x83\xb1\xd7\x0e\xc3\x60\xc9\x2c\x9b\xfa\xc5\xa4\xda\x17\x4e\x9a\x5f\xcc\x56\xfe\xc2\x41\xff\x0b\x87\x29\x50\xcc\x98\x05\xc5\xac\x89\x50\x4c\xce\x85\x62\xce\x74\xb0\xdc\x07\xc4\x06\x75\x6a\x1c\xf2\xb3\xcb\x38\x0c\x50\xce\xe3\x90\x9f\xa7\xc7\x21\x3f\x4f\x8f\x03\x87\x71\x19\x87\x01\xd6\x69\x1c\xf2\xf3\xd4\x38\x8c\xbd\xbe\x6f\x1c\x86\x9b\x95\xa9\xdf\xe7\x53\x03\xd1\xe7\x2e\x03\x31\x40\x39\x0f\x44\x9f\x4f\x0f\x44\x9f\x4f\x0f\x04\x87\x71\x19\x88\x01\xd6\x69\x20\xfa\x7c\x6a\x20\xc6\x5e\xcf\x18\x88\xba\xc9\xca\x0e\xcb\x9e\xfc\x31\x25\x7e\x0a\xe4\x30\x02\x22\xa0\xf3\x20\xd0\x46\x93\xe3\x40\xc1\x26\x87\x42\x00\x73\x19\x0d\x11\xdc\x69\x40\x68\x83\x89\x31\x91\xe4\xe0\x32\x2c\x4b\x54\x1c\xf0\xea\x14\xb5\x75\x55\xb6\xd9\x17\xe8\x91\x58\xf0\x38\x2c\xc9\x25\x31\x24\xce\xd2\x4e\xd2\xa9\x68\xe1\xcc\x1f\xe2\x9a\x4c\x6d\xe1\x69\x25\xe4\x74\xc5\x42\x07\x24\x05\x40\x79\x46\xf6\xed\x81\x8a\xea\xf0\x17\x74\xec\x80\x8a\x2f\x59\x8a\xaa\xe9\x23\x20\xd2\x95\x48\x2d\x43\x11\x0f\x8e\xf5\x2e\xf9\x51\x78\x78\x79\x1c\x8e\x21\x0b\x1f\xbc\xd6\xd1\x72\x17\x6f\xc3\xf5\xea\x03\xd0\x2a\xdc\x18\x5a\xc5\x9b\x65\x14\x43\x2d\xd6\x87\x97\x15\xd4\x60\x0b\x42\x87\x87\x97\x10\x82\xa6\xc7\x09\x48\xa6\x05\xac\xd0\x7a\xd2\x6b\x51\xf7\x48\x2d\x4d\x37\x02\x27\x5f\xd1\x80\x9b\xea\xd9\x6f\xd0\x17\xd4\xb4\x5a\xba\x16\xa1\xca\x40\xc3\xd4\x52\xae\xd5\x1a\x3f\x37\x49\x7d\x1b\xfe\xda\xe3\xff\x68\x30\xf4\xdd\x24\x01\x8a\x16\x80\xb8\x64\x36\x06\x9c\x46\xfa\x27\x1c\xf5\x48\x49\x31\x34\x10\xf2\x81\x24\xb8\x0d\x7f\xcb\xd1\xce\x08\x12\x0a\x20\xa1\x06\x42\x33\x02\x71\x3c\x3c\x3f\x90\x09\x2c\x94\xc0\x24\x6c\xca\x01\x01\x9a\xe8\xe4\x06\xa6\xe3\x20\x55\xb6\xb6\xa8\x4c\xe1\x96\xa8\x4c\x6d\xed\xe8\xf7\x5d\xad\x29\x2d\xb6\x35\x64\x99\x57\xb4\x96\x52\x5e\x16\x1b\x82\x84\x84\xa0\x86\xf6\xb4\x52\xff\x9e\x43\x0e\x81\x31\x41\xc1\x89\x62\x4c\x6d\xb0\x80\xb4\x16\xc8\x4c\x83\x09\x46\x3f\x7b\x66\x6a\x30\x7c\x57\x13\x9b\xf0\x42\x73\x4f\x1a\xd4\x1d\x2f\x52\x1b\x56\xa6\x37\x91\xf5\x44\x2a\xb3\x0a\x40\xd4\x11\xa0\x15\x28\x04\x45\x3f\xe4\x66\x26\x41\xa8\xba\x21\xb7\x32\x6a\x86\xdc\x98\xe9\x05\xd4\xd6\xa4\x15\xa3\x60\x44\x69\x0e\x6d\x4d\xf2\x6c\x51\x7e\x22\xb7\x18\x6e\xe3\xef\xbd\x6a\x38\x04\x50\x51\xee\x04\xd6\x26\x74\xd2\x62\x94\xf8\x08\x0f\x8a\x9b\x40\x4b\xb2\x26\x0d\x4c\x82\x26\xe0\x8a\xc2\x91\x06\x66\x7d\x63\x3d\x10\x05\x44\x5a\xe8\xd2\x31\xef\x37\xd0\xfe\x16\xae\x2e\xab\x2d\xe6\x79\x2d\x8a\xf9\x1e\xc7\x35\x50\xba\xd3\x77\xb5\x85\x93\xfb\x22\xbb\x2d\x6e\x1e\x8c\x61\x9c\xeb\xc4\xda\xc2\xc5\x8f\xb5\x85\x8b\x2b\xe3\x50\x13\xde\xac\x70\x76\x68\xc5\x3d\x3e\xad\x78\x93\x5b\x6b\x8b\xbb\x3d\x1b\xd6\x89\x7b\x9d\x5b\x5b\xbc\xdd\xbf\xb5\xc5\x9b\x5c\x5c\x71\x97\x97\x63\xf2\x9a\xe3\xe8\x46\x39\xb9\xfb\x3a\x2c\x9f\xbb\xdc\x5d\x71\xa7\xc7\x2b\xee\x76\x7a\x92\x44\xdc\xfd\x9e\x2a\x15\x57\xd7\x27\x68\xce\x5d\xde\x6f\xd4\x9a\xbb\x1c\xa0\x2a\x5f\x37\x1f\x88\x89\xce\x70\x83\xc5\x1d\x9e\x50\x1a\x06\x17\x67\xa8\x0e\xc0\xb4\x3f\xd4\x95\xd2\xc9\x25\xaa\x22\x33\x78\x45\xcb\xf6\x2f\xe9\x49\x91\xba\xba\xc5\x22\x9d\xe7\x16\x29\xe6\x7b\xdc\xe2\x40\xe9\x4e\xb7\x58\xa4\x4e\x6e\x91\x6c\x7e\xbb\xb9\x45\x86\x71\xae\x5b\x2c\x52\x17\xb7\x58\xa4\x2e\x6e\x91\x43\xd9\xdd\x62\x91\xba\xba\xc5\x11\x72\x86\x5b\xc4\x8d\xde\xe0\x16\x8b\xf4\x6e\xb7\x88\x75\xe2\x5e\xb7\x58\xa4\x6f\x77\x8b\x45\xfa\x16\xb7\x38\xc8\x6d\x9e\x5b\x64\xf2\x9a\xe3\x16\x47\x39\xb9\xbb\x45\x2c\x9f\x7b\xdc\x22\xe9\xd5\x1d\x6e\x51\x91\xc6\x1c\xb7\x28\x49\xc4\xdd\x2d\xaa\x52\x71\x75\x8b\x82\xe6\xdc\xe5\x16\x47\xad\xb9\xc7\x2d\x6a\xf2\x75\x73\x8b\x98\xa8\xbb\x5b\x54\x06\xc3\xcd\x2d\x4a\xc3\xe0\xe2\x16\xd5\x01\x98\x76\x8b\xba\x52\xba\xb8\x45\x4d\x64\xee\x6e\x91\x7f\x8d\x23\x3d\xc9\xcf\xae\x6e\x31\x3f\xcf\x73\x8b\x14\xf3\x3d\x6e\x71\xa0\x74\xa7\x5b\xcc\xcf\x4e\x6e\x91\x7c\x8b\x74\x73\x8b\x0c\xe3\x5c\xb7\x98\x9f\x5d\xdc\x62\x7e\x76\x71\x8b\x1c\xca\xee\x16\xf3\xb3\xab\x5b\x1c\x21\x67\xb8\x45\xdc\xe8\x0d\x6e\x31\x3f\xdf\xed\x16\xf3\xf3\xfd\x6e\x31\x3f\xbf\xdd\x2d\xe6\xe7\xb7\xb8\xc5\x41\x6e\xf3\xdc\x22\x93\xd7\x1c\xb7\x38\xca\xc9\xdd\x2d\x62\xf9\xdc\xe3\x16\x49\xaf\xee\x70\x8b\x8a\x34\xe6\xb8\x45\x49\x22\xee\x6e\x51\x95\x8a\xab\x5b\x14\x34\xe7\x2e\xb7\x38\x6a\xcd\x3d\x6e\x51\x93\xaf\x9b\x5b\xc4\x44\xdd\xdd\xa2\x32\x18\x6e\x6e\x51\x1a\x06\x17\xb7\xa8\x0e\xc0\xb4\x5b\xd4\x95\xd2\xc5\x2d\x6a\x22\x73\x77\x8b\xc3\xe1\x08\xd2\x95\x3e\x77\xf5\x8b\x7d\x3e\xcf\x2f\x52\xcc\xf7\xf8\xc5\x81\xd2\x9d\x7e\xb1\xcf\x9d\xfc\x22\x39\x1a\xe2\xe6\x17\x19\xc6\xb9\x7e\xb1\xcf\x5d\xfc\x62\x9f\xbb\xf8\x45\x0e\x65\xf7\x8b\x7d\xee\xea\x17\x47\xc8\x19\x7e\x11\x37\x7a\x83\x5f\xec\xf3\xbb\xfd\x22\xd6\x89\x7b\xfd\x62\x9f\xbf\xdd\x2f\xf6\xf9\x5b\xfc\xe2\x20\xb7\x79\x7e\x91\xc9\x6b\x8e\x5f\x1c\xe5\xe4\xee\x17\xb1\x7c\xee\xf1\x8b\xa4\x57\x77\xf8\x45\x45\x1a\x73\xfc\xa2\x24\x11\x77\xbf\xa8\x4a\xc5\xd5\x2f\x0a\x9a\x73\x97\x5f\x1c\xb5\xe6\x1e\xbf\xa8\xc9\xd7\xcd\x2f\x62\xa2\xee\x7e\x51\x19\x0c\x37\xbf\x28\x0d\x83\x8b\x5f\x54\x07\x60\xda\x2f\xea\x4a\xe9\xe2\x17\x35\x91\x99\xfc\xe2\x92\x24\xe8\xa2\xc7\xe5\xc7\x5c\x5d\xb2\x95\xc4\x00\xf4\x4c\xbf\xf0\x88\xa2\x0e\x42\x0e\xb8\x51\x08\xe5\x78\x9b\xed\x0b\x26\x6e\xd9\x16\xd3\x0c\xb4\x85\x0b\x0f\xfc\xfc\x35\xc8\x86\x75\xcb\x18\xb7\x2e\xd2\x69\x3e\x8a\xd4\x85\x0f\x7e\xfe\xd8\x95\x8f\x31\x46\x27\xa3\x71\x9e\xe6\x03\x87\xdb\xd3\x7c\xf0\xf3\xb7\xae\x7c\x08\x8b\x22\xdc\xbc\xcf\xa7\x19\xc1\xeb\x9b\x69\x46\xf8\xf9\x53\x98\x91\xe5\xf0\x4e\x17\x99\xb1\xc3\x11\x3b\x75\xbe\x0e\x60\xf4\xec\x9d\xfa\x74\x9f\x08\xca\x4f\xb6\xe1\xf9\xdb\x65\xc7\xf1\xa4\x1b\xfd\x0d\x82\xf2\x63\x80\xfa\xc1\x40\x10\x9c\x9f\x99\xd3\x4f\xd1\x81\xe0\xe4\xc5\x27\xe5\x01\x28\x03\xc7\xd9\xf1\xb3\xf0\xc4\x10\xbf\xb0\x4e\xcb\xc7\x26\x4f\x42\x9f\xe4\x9a\xd7\x25\xc1\x4e\xee\xf3\xb0\x84\xfc\xb4\x80\xdf\xaf\x19\xab\x95\x07\xa9\x78\x52\x15\x2d\xd5\xfa\x4a\xc1\x31\xbe\x23\xf1\x4f\xed\xb5\xc6\x74\x5b\xef\xdb\x6f\x0d\x3c\x3f\x78\x55\xe3\x7d\xab\xb0\xfb\xf0\x70\x5b\xd2\xbf\x64\x46\xe4\xa6\x6a\x27\xd9\x01\xc5\x91\xb1\x28\x78\x7d\x5d\xb6\x8d\x5f\x95\xf9\x0b\x70\x9e\x91\xe9\xf5\x98\x64\x25\x14\x92\xd6\x6b\xa7\x39\x9f\x48\x6a\x14\xbc\xbe\x66\x59\x36\x83\x07\x25\xbf\x39\x5e\xe8\x0a\xe7\x1e\x19\x61\x9f\x5c\xe7\x24\x0f\x9b\xd1\xdc\x21\x0b\xa0\x86\xfc\xa5\x2a\xa2\xf8\x56\x23\xe3\x90\xfc\x3d\x30\x46\x92\x1d\xe6\x88\x72\x46\x13\xc7\x68\x09\xd7\x5f\x97\x34\xc1\x3b\xbd\x56\x26\x3e\x5d\x1a\xb2\xb4\xfc\x91\xf6\x76\x69\xb0\x8d\x1f\x44\x8d\xa1\x6d\x94\xe6\xa4\x55\xa8\x3d\x7b\x0a\xb5\xa4\x97\xa7\x84\xc6\xa4\xd9\x4a\x6b\x0b\x92\xa5\xc6\x41\x68\xae\x1e\x90\x7e\xf6\xa3\x98\x25\x52\x88\xe2\x0f\x72\x4d\x1c\xdc\xf8\xf3\x4d\x4a\xcd\x96\xb7\xd9\xaa\x6d\xc2\x80\x37\x0a\x03\xb5\x15\xb1\x41\xe3\xb0\x88\x95\x17\xcc\x06\xcf\x50\x21\xe3\xbc\x60\x3e\x86\xd7\xa8\x94\xaa\xed\xd0\x6a\xab\xb6\xc2\x9c\x08\x67\x6a\xe5\x4a\xc2\x8a\xa0\x16\x62\x6d\x41\x7b\x21\x3c\x96\xa4\x34\x2f\x2e\x03\x80\x81\x00\x36\xfc\x5f\x18\x9a\xd1\x07\x04\xc1\x97\x67\x0d\xea\x32\x40\x89\xaf\xd1\x89\x60\x5f\x14\xa9\xca\x48\xbe\xa8\x3d\x95\x1b\xb3\xa5\x09\x4a\xfd\x1c\x47\x5f\xf4\x82\x9b\xe9\x74\xf2\x64\xe6\x27\xf0\xe9\xbf\xa3\x90\xbe\x58\xbd\x04\x2d\xdc\x90\x7e\x5d\x16\x7e\x70\xe3\x39\xfc\x25\x39\x74\x7e\xb0\x58\x16\x2f\x43\xb5\x7e\xe9\xb7\x68\x08\x48\x3f\x82\x00\x17\x7e\x8b\x83\x8a\x07\xba\xeb\x5b\xe4\x2a\x2a\xfd\xa2\x6f\xe1\x87\x9c\x53\xfd\x52\x63\xd1\xf9\x21\x21\x13\x4a\x69\xc0\x75\xb8\x86\xc0\xf5\x23\x9c\xf8\x44\x9b\xc2\xb8\x82\x91\xbf\x0e\xa0\x83\xe6\x2a\x52\xe1\xa9\x38\xb9\x0b\xd1\x4d\x7c\xa3\x56\xe9\x41\x44\xe8\x45\x5a\x22\x73\xa5\x03\x11\xa1\x15\x01\x29\xa4\x15\xfe\x15\x7c\xe2\xeb\x06\x0a\xfb\x0a\xca\x31\x87\xbe\xcc\xfd\x8a\x73\x1f\xea\xcc\xaf\x08\xb1\x95\xc8\xbc\x06\xd5\x10\xa8\x7e\x84\x6a\x86\x0c\x31\x0a\xeb\x0a\x36\x7e\xf5\x5d\xe7\x5c\x41\x48\x2f\xbb\x6b\x8c\xaf\x07\xc6\x21\xb9\xaf\x09\xb1\xb5\xc4\x3a\x24\xf8\x35\xa1\xb5\x56\x98\x87\x24\xaf\x60\xe4\xec\x43\xa2\x57\x90\xd2\x0e\x00\xb2\x8f\x79\x17\xd4\x5b\xba\x45\xe7\xc7\x84\x5c\x2c\x76\x40\x83\x6a\x08\x54\x3f\x42\xb1\xac\x6b\x3a\xf3\x0a\x36\xc6\xbc\x06\x98\xab\x08\x69\xd6\x36\x05\xac\xf6\x83\xf1\x65\x21\xa9\x82\x18\x98\xfa\x65\xac\xd7\x2d\x4c\x4d\x2c\x4c\xdd\x0b\x30\x80\x89\xa9\x0f\x1a\x26\xc8\xc6\xd4\xb9\x86\x4c\x37\x32\xb5\x1f\xde\xe4\x57\x7e\x14\x9e\x43\x42\x29\x94\x78\x06\x00\x89\x99\xa9\x7b\x01\xd0\x64\x67\xea\x83\x86\xd3\x68\x68\xea\x5c\x43\x6b\xb0\x34\xb5\x1f\xc9\xd9\xb9\x95\x6e\x44\x84\x64\x24\x77\x03\xe8\x45\x44\xc8\x45\x6a\x2f\x80\x4e\xa8\x18\x4d\xd6\xa6\xce\x35\xa4\xb0\xb9\xa9\xfd\x95\xf4\xba\xa9\xd2\x83\x15\xa1\xb7\x92\x6f\xb6\xe8\x1d\x58\x11\x5a\x2b\xa5\x03\x1a\xe0\x41\xc3\x67\x30\x39\x75\xae\xa1\x04\x6d\x4e\xed\xaf\x47\xee\xa1\x11\x58\x13\x7a\x6b\x99\x7f\x68\x08\xd6\x84\xdc\x5a\xed\x01\x34\x06\x2a\x4e\xa3\xdd\xa9\x73\x0d\xad\xc1\xf0\xd4\x7e\x3c\xf4\x43\x9b\xdb\xc4\xf2\xd4\x2f\x23\x08\x68\x7a\x6a\x62\x7a\xea\x5e\x00\x83\x6d\x4f\x7d\xd0\xf0\x19\x8c\x4f\x9d\x6b\x28\x41\xeb\x53\xf8\xe5\xb0\x68\xf0\xc1\x55\x43\x49\x9d\x7c\x29\xad\x1b\x20\xd0\x86\x82\xf6\x02\x28\x4b\xe9\x0e\xae\x1d\x34\xbc\xac\x27\x10\x74\xae\xa3\x66\x4f\x51\x00\x2b\x88\x32\x1a\x3b\x04\xf5\x87\x3a\xfd\x32\x92\xfb\x03\x75\x87\x3a\xfd\x32\x52\xbb\x03\xf5\x46\xc5\x3a\xf4\x06\xea\x8c\x8a\x58\x78\x57\x43\xe9\xcb\xb0\xa0\xf0\x81\x15\x45\x49\x17\x01\xa5\xb4\xa6\xd0\x01\x1b\x0a\xd8\x0b\x80\x3c\xd7\x3e\xd0\x11\x15\x27\xef\x08\xb0\xb4\xd0\xd0\xd2\x7e\xe8\xab\x8b\x72\x3d\x76\x03\x1c\x13\xba\x1c\x28\xd7\x72\x47\xc0\x41\xa1\xcb\x81\x72\xad\x76\x05\x1c\x15\x15\xef\xd0\x19\x70\x58\x54\xd4\xac\x3b\xd0\xb8\x0c\x8b\x0d\x1f\x58\x6d\x94\x74\x81\x50\x4a\xeb\x0d\x1d\xb0\xa1\x80\xbd\x00\xc8\x3a\x03\xac\x39\x34\x9c\xbc\x2b\xc0\xb2\x43\x43\x4b\x3b\xa2\xcf\x7d\x12\x50\xb2\x8e\x68\x01\x65\x47\xaa\x09\x55\x01\x8e\xf4\x45\x83\x6d\x38\x6c\x2f\xc1\x36\x70\xa8\x7a\x80\x31\xb3\x1e\x69\xe0\x39\x8c\x9c\x74\x4a\x01\xb6\xbc\xf1\xec\xb7\x96\x48\x0e\xd7\x11\x7e\x04\x20\x30\x9e\x63\x80\xbd\x04\x08\x47\x75\x20\x4e\x43\x6c\x07\xa2\x85\x22\xbc\x76\x2a\xc8\xc3\x00\x9c\xea\x74\xa8\xc7\xa0\x7b\x09\xda\x12\xf0\x81\xd8\x6d\x61\x1f\x48\xc0\x18\xfc\xb5\x13\xf1\x1f\xae\xe7\xe4\x27\xa3\x40\x06\xdc\x4b\xc0\xe6\x58\x10\xc4\x6d\x89\x08\x41\xf4\xa6\xb8\xb0\xb5\x87\x86\xb8\x9a\xd3\x9e\x0a\x10\x19\x6c\x2f\xc1\x1a\xc3\x44\x10\xb3\x39\x58\x04\x91\x1b\x42\xc6\x76\x2a\x6a\xc4\x00\x9c\xf6\x74\xec\xc8\xa0\x7b\x09\xda\x12\x41\x82\xd8\x6d\x71\x24\x48\xc0\x18\x4d\xb6\xf6\x80\x12\x57\x73\xea\x53\x61\x25\x83\xed\x25\x58\x63\x70\x09\x62\x36\x87\x98\x20\x72\x43\xa0\x49\x8c\x8b\x29\xd6\xa4\x26\xa8\x7e\x91\xa0\xc0\x88\x93\x41\xf6\x32\x24\x1c\x77\xc2\x58\x0d\xd1\x27\x8c\x18\x8a\x41\x89\x35\xb1\x86\xa1\xd4\xf0\xd4\x2f\x12\xa8\x39\x18\x65\xe0\xbd\x0c\x6e\x09\x49\x61\xfc\xb6\xc0\x14\x26\x61\x0c\x4f\x89\x59\xb1\x45\xa8\xd4\x00\xd5\x2f\x12\xa4\x31\x4e\x65\xd0\xbd\x0c\x6d\x8e\x56\x61\xec\x96\x98\x15\x26\x60\x8a\x5c\x89\x7d\xb1\x04\xaf\xd4\x10\xd5\x2f\x12\xa0\x29\x84\x65\xc0\xbd\x0c\x6c\x0c\x64\x61\xdc\xe6\x70\x16\x46\x6f\x08\x6a\x89\x71\xb1\xc6\xb5\xd4\x0e\xd5\x2f\x12\xa8\x39\xba\x65\xe0\xbd\x0c\x6e\x89\x71\x61\xfc\xb6\x48\x17\x26\x61\x8c\x77\x89\xa5\xb1\x84\xbc\xd4\x24\xd5\x2f\x12\xa0\x29\xf0\x65\xc0\xbd\x0c\x6c\x0c\x7f\x61\xdc\xe6\x20\x18\x46\x6f\x08\x85\xdb\xe9\x68\x98\x80\x70\xf3\xec\x12\x13\xf3\x06\xbd\xdc\xc0\x16\x19\x1b\x68\x58\xe3\x63\x03\x19\x73\x94\xdc\x4e\x06\xca\x04\x62\x60\x63\x3a\x5c\xe6\xf0\xbd\x0c\x6f\x09\x9a\x0d\x14\x6c\xa1\xb3\x81\x88\x31\x80\x6e\xa7\x62\x68\x02\x30\xf0\x30\x19\x49\x73\xf0\x5e\x06\x37\xc7\xd3\x06\xfc\x96\xa8\xda\x40\xc2\x14\x5b\xb7\xd3\xe1\x35\x01\x19\x78\x70\x08\xb2\x79\x83\x5e\x6e\x60\x0b\xb5\x0d\x34\xac\x01\xb7\x81\x8c\x39\xec\x6e\xa7\x22\x6f\x02\x30\x70\x31\x19\x7f\x73\xf0\x5e\x06\x37\x47\xe1\x06\xfc\x96\x58\xdc\x40\xc2\x14\x91\xb7\x93\x41\x39\x83\xe0\x4c\x38\x84\xe6\x63\x8b\x5e\x6d\x61\x0c\xd0\x2d\x54\xcc\x61\xba\x85\x10\x14\xac\x5b\x4e\x60\x15\x7e\x91\x9a\xa3\x75\x5c\x47\x38\x13\x80\xc0\x68\x9d\x01\xf6\x12\x20\x1c\xad\x83\x38\x0d\xd1\x3a\x88\x16\x8a\xd6\x8b\x74\x22\x5a\xc7\x00\x9c\xea\x74\xb4\xce\xa0\x7b\x09\xda\x12\xad\x83\xd8\x6d\xd1\x3a\x48\xc0\x18\xad\x17\xa9\x3d\x5a\xc7\xf5\x9c\xfc\x64\xb4\xce\x80\x7b\x09\xd8\x1c\xad\x83\xb8\x2d\xd1\x3a\x88\xde\x14\xad\x17\xa9\x35\x5a\xc7\xd5\x9c\xf6\x54\xb4\xce\x60\x7b\x09\xd6\x18\xad\x83\x98\xcd\xd1\x3a\x88\xdc\x10\xad\x17\xe9\x44\xb4\x8e\x01\x38\xed\xe9\x68\x9d\x41\xf7\x12\xb4\x25\x5a\x07\xb1\xdb\xa2\x75\x90\x80\x31\x5a\x2f\x52\x6b\xb4\x8e\xab\x39\xf5\xa9\x68\x9d\xc1\xf6\x12\xac\x31\x5a\x07\x31\x9b\xa3\x75\x10\xb9\x21\x5a\x27\xc6\xc5\x14\xad\x53\x13\x54\xbf\x48\x50\x60\xb4\xce\x20\x7b\x19\x12\x8e\xd6\x61\xac\x86\x68\x1d\x46\x0c\x45\xeb\xc4\x9a\x58\xa3\x75\x6a\x78\xea\x17\x09\xd4\x1c\xad\x33\xf0\x5e\x06\xb7\x44\xeb\x30\x7e\x5b\xb4\x0e\x93\x30\x46\xeb\xc4\xac\xd8\xa2\x75\x6a\x80\xea\x17\x09\xd2\x18\xad\x33\xe8\x5e\x86\x36\x47\xeb\x30\x76\x4b\xb4\x0e\x13\x30\x45\xeb\xc4\xbe\x58\xa2\x75\x6a\x88\xea\x17\x09\xd0\x14\xad\x33\xe0\x5e\x06\x36\x46\xeb\x30\x6e\x73\xb4\x0e\xa3\x37\x44\xeb\xc4\xb8\x58\xa3\x75\x6a\x87\xea\x17\x09\xd4\x1c\xad\x33\xf0\x5e\x06\xb7\x44\xeb\x30\x7e\x5b\xb4\x0e\x93\x30\x46\xeb\xc4\xd2\x58\xa2\x75\x6a\x92\xea\x17\x09\xd0\x14\xad\x33\xe0\x5e\x06\x36\x46\xeb\x30\x6e\x73\xb4\x0e\xa3\x37\x44\xeb\x45\x3a\x19\xad\x13\x10\x6e\x9e\x5d\xa2\x75\xde\xa0\x97\x1b\xd8\xa2\x75\x03\x0d\x6b\xb4\x6e\x20\x63\x8e\xd6\x31\x98\x3d\x5a\x27\x10\x03\x1b\xd3\xd1\x3a\x87\xef\x65\x78\x4b\xb4\x6e\xa0\x60\x8b\xd6\x0d\x44\x8c\xd1\x3a\x86\xb2\x46\xeb\x04\x60\xe0\x61\x32\x5a\xe7\xe0\xbd\x0c\x6e\x8e\xd6\x0d\xf8\x2d\xd1\xba\x81\x84\x29\x5a\xc7\x40\x13\xd1\x3a\x01\x19\x78\x70\x88\xd6\x79\x83\x5e\x6e\x60\x8b\xd6\x0d\x34\xac\xd1\xba\x81\x8c\x39\x5a\xc7\x60\xd6\x68\x9d\x00\x0c\x5c\x4c\x46\xeb\x1c\xbc\x97\xc1\xcd\xd1\xba\x01\xbf\x25\x5a\x37\x90\x30\x45\xeb\x3c\x07\x89\x39\x5a\x67\x10\x9c\x09\x87\x68\x7d\x6c\xd1\xab\x2d\x8c\xd1\xba\x85\x8a\x39\x5a\xb7\x10\x72\x8c\xd6\xf9\x3d\xa5\xc2\xcf\xcf\xe6\x68\x1d\xd7\x11\xce\x04\x20\x30\x5a\x67\x80\xbd\x04\x08\x47\xeb\x20\x4e\x43\xb4\x0e\xa2\x85\xa2\xf5\xfc\x3c\x11\xad\x63\x00\x4e\x75\x3a\x5a\x67\xd0\xbd\x04\x6d\x89\xd6\x41\xec\xb6\x68\x1d\x24\x60\x8c\xd6\xf3\xb3\x3d\x5a\xc7\xf5\x9c\xfc\x64\xb4\xce\x80\x7b\x09\xd8\x1c\xad\x83\xb8\x2d\xd1\x3a\x88\xde\x14\xad\xe7\x67\x6b\xb4\x8e\xab\x39\xed\xa9\x68\x9d\xc1\xf6\x12\xac\x31\x5a\x07\x31\x9b\xa3\x75\x10\xb9\x21\x5a\xcf\xcf\x13\xd1\x3a\x06\xe0\xb4\xa7\xa3\x75\x06\xdd\x4b\xd0\x96\x68\x1d\xc4\x6e\x8b\xd6\x41\x02\xc6\x68\x3d\x3f\x5b\xa3\x75\x5c\xcd\xa9\x4f\x45\xeb\x0c\xb6\x97\x60\x8d\xd1\x3a\x88\xd9\x1c\xad\x83\xc8\x0d\xd1\x3a\x31\x2e\xa6\x68\x9d\x9a\xa0\xfa\x45\x82\x02\xa3\x75\x06\xd9\xcb\x90\x70\xb4\x0e\x63\x35\x44\xeb\x30\x62\x28\x5a\x27\xd6\xc4\x1a\xad\x53\xc3\x53\xbf\x48\xa0\xe6\x68\x9d\x81\xf7\x32\xb8\x25\x5a\x87\xf1\xdb\xa2\x75\x98\x84\x31\x5a\x27\x66\xc5\x16\xad\x53\x03\x54\xbf\x48\x90\xc6\x68\x9d\x41\xf7\x32\xb4\x39\x5a\x87\xb1\x5b\xa2\x75\x98\x80\x29\x5a\x27\xf6\xc5\x12\xad\x53\x43\x54\xbf\x48\x80\xa6\x68\x9d\x01\xf7\x32\xb0\x31\x5a\x87\x71\x9b\xa3\x75\x18\xbd\x21\x5a\x27\xc6\xc5\x1a\xad\x53\x3b\x54\xbf\x48\xa0\xe6\x68\x9d\x81\xf7\x32\xb8\x25\x5a\x87\xf1\xdb\xa2\x75\x98\x84\x31\x5a\x27\x96\xc6\x12\xad\x53\x93\x54\xbf\x48\x80\xa6\x68\x9d\x01\xf7\x32\xb0\x31\x5a\x87\x71\x9b\xa3\x75\x18\xbd\x21\x5a\xcf\xcf\x93\xd1\x3a\x01\xe1\xe6\xd9\x25\x5a\xe7\x0d\x7a\xb9\x81\x2d\x5a\x37\xd0\xb0\x46\xeb\x06\x32\xe6\x68\x1d\x83\xd9\xa3\x75\x02\x31\xb0\x31\x1d\xad\x73\xf8\x5e\x86\xb7\x44\xeb\x06\x0a\xb6\x68\xdd\x40\xc4\x18\xad\x63\x28\x6b\xb4\x4e\x00\x06\x1e\x26\xa3\x75\x0e\xde\xcb\xe0\xe6\x68\xdd\x80\xdf\x12\xad\x1b\x48\x98\xa2\x75\x0c\x34\x11\xad\x13\x90\x81\x07\x87\x68\x9d\x37\xe8\xe5\x06\xb6\x68\xdd\x40\xc3\x1a\xad\x1b\xc8\x98\xa3\x75\x0c\x66\x8d\xd6\x09\xc0\xc0\xc5\x64\xb4\xce\xc1\x7b\x19\xdc\x1c\xad\x1b\xf0\x5b\xa2\x75\x03\x09\x53\xb4\xce\x53\xa3\x99\xa3\x75\x06\xc1\x99\x70\x88\xd6\xc7\x16\xbd\xda\xc2\x18\xad\x5b\xa8\x98\xa3\x75\x0b\x21\xc7\x68\x7d\xc8\xe6\x51\xf8\x7d\x6e\x0e\xd7\xfb\x9c\x85\xd6\x02\x10\x18\xae\xf7\xfc\x4a\xb2\x08\x08\x87\xeb\x20\x4e\x43\xb8\x0e\xa2\x85\xc2\xf5\x3e\x9f\x08\xd7\xfb\x9c\x05\xd4\x02\xa4\x39\x5c\xef\xf9\x1d\x65\x11\xda\x12\xae\x83\xd8\x6d\xe1\x3a\x48\xc0\x18\xae\xf7\xb9\x3d\x5c\xef\x73\x16\x52\x0b\x80\xc6\x70\xbd\xe7\x17\x98\x45\x60\x73\xb8\x0e\xe2\xb6\x84\xeb\x20\x7a\x53\xb8\xde\xe7\xd6\x70\xbd\xcf\x59\x50\x2d\xc0\x99\xc2\xf5\x9e\xdf\x6e\x16\x61\x8d\xe1\x3a\x88\xd9\x1c\xae\x83\xc8\x0d\xe1\x7a\x9f\x4f\x84\xeb\x7d\xce\x02\x6a\x01\xd2\x1c\xae\xf7\xfc\xd2\xb3\x08\x6d\x09\xd7\x41\xec\xb6\x70\x1d\x24\x60\x0c\xd7\xfb\xdc\x1a\xae\xf7\x39\x0b\xaa\x05\x38\x53\xb8\xde\xf3\x3b\xd1\x22\xac\x31\x5c\x07\x31\x9b\xc3\x75\x10\xb9\x21\x5c\x27\xc6\xc5\x14\xae\x53\x13\x54\xbf\x48\x50\x60\xb8\xde\xf3\x2b\xd3\x12\x24\x1c\xae\xc3\x58\x0d\xe1\x3a\x8c\x18\x0a\xd7\x89\x35\xb1\x86\xeb\xd4\xf0\xd4\x2f\x12\xa8\x39\x5c\xef\xf9\x1d\x6a\x09\xdc\x12\xae\xc3\xf8\x6d\xe1\x3a\x4c\xc2\x18\xae\x13\xb3\x62\x0b\xd7\xa9\x01\xaa\x5f\x24\x48\x63\xb8\xde\xf3\x0b\xd6\x12\xb4\x39\x5c\x87\xb1\x5b\xc2\x75\x98\x80\x29\x5c\x27\xf6\xc5\x12\xae\x53\x43\x54\xbf\x48\x80\xa6\x70\xbd\xe7\xb7\xaf\x25\x60\x63\xb8\x0e\xe3\x36\x87\xeb\x30\x7a\x43\xb8\x4e\x8c\x8b\x35\x5c\xa7\x76\xa8\x7e\x91\x40\xcd\xe1\x7a\xcf\x2f\x65\x4b\xe0\x96\x70\x1d\xc6\x6f\x0b\xd7\x61\x12\xc6\x70\x9d\x58\x1a\x4b\xb8\x4e\x4d\x52\xfd\x22\x01\x9a\xc2\xf5\x9e\xdf\xd9\x96\x80\x8d\xe1\x3a\x8c\xdb\x1c\xae\xc3\xe8\x0d\xe1\x7a\x9f\x4f\x86\xeb\x7d\xce\x43\x69\x11\xd8\x12\xae\xf7\xc3\x35\x6e\xa9\x81\x2d\x5c\x37\xd0\xb0\x86\xeb\x06\x32\xe6\x70\x1d\x83\xd9\xc3\xf5\x3e\xe7\xc1\xb4\x08\x6b\x0e\xd7\xfb\xe1\x8e\xb7\x04\x6f\x09\xd7\x0d\x14\x6c\xe1\xba\x81\x88\x31\x5c\xc7\x50\xd6\x70\xbd\xcf\x79\x38\x2d\x82\x1a\xc3\xf5\x7e\xb8\x00\x2e\x81\x9b\xc3\x75\x03\x7e\x4b\xb8\x6e\x20\x61\x0a\xd7\x31\xd0\x44\xb8\xde\xe7\x3c\x94\x16\x81\x2d\xe1\x7a\x3f\xdc\x0b\x97\x1a\xd8\xc2\x75\x03\x0d\x6b\xb8\x6e\x20\x63\x0e\xd7\x31\x98\x35\x5c\xef\x73\x1e\x4e\x8b\xa0\xc6\x70\xbd\x1f\xae\x8d\x4b\xe0\xe6\x70\xdd\x80\xdf\x12\xae\x1b\x48\x98\xc2\x75\x9e\xb1\xd5\x1c\xae\xf7\xf9\x18\x48\xcb\xd0\xa6\x70\xbd\x17\xee\x92\x2b\x2d\x8c\xe1\xba\x85\x8a\x39\x5c\xb7\x10\x02\xc3\xf5\x65\x87\xfa\xce\x2f\xaa\xb2\x22\x99\xfc\x6e\xa7\xaa\xec\xfc\x53\x52\x64\xf9\xcb\xfe\xe7\x7f\xf9\xa9\x2a\x2b\xff\x5f\xd1\xf9\x9a\x27\xcd\xe2\x27\x54\xe6\xd5\xe2\xa7\xaa\x4c\x8e\xd5\xe2\x0f\x55\xd9\x56\x79\xd2\x2e\x7e\xcc\x0e\xa8\x49\xba\xac\x2a\x3d\x0c\xbd\xf8\x43\x75\x6d\x32\xd4\x78\x7f\x46\xcf\x8b\x01\xad\xc8\x24\x21\xc8\xd2\x36\xdf\xc8\x0f\x92\x1b\x76\xcf\x8a\x34\x50\x92\x13\x5c\x4f\x36\xa8\xc1\xb1\xec\xe1\x7a\x9e\x44\x0d\xb2\x6b\xae\xe5\x31\xe9\x90\x9a\xb8\xf3\x89\xd4\x0e\x85\x28\xcf\xb3\xba\xcd\x5a\x20\xf5\x22\x43\x44\xb2\x92\x0a\x5d\x50\x53\x93\x92\x2a\x9a\x96\x54\x80\xd2\x72\x93\x92\x3a\x96\x90\x57\x80\xd3\x12\xf2\x9a\x93\x0c\x90\x56\x3c\x7f\xed\x14\x43\x43\x0e\xdb\x49\x9e\xc6\xd7\xd6\x6c\x6c\x59\xae\x53\x50\xe5\x4a\xdd\xf8\x1a\x72\xda\x4e\xf2\x35\x3e\x77\x33\x93\x2f\x7e\x70\x84\x8e\xde\xd9\x8d\xaf\x21\xc7\xed\x24\x5f\xe3\x7b\x03\x33\xf9\x1a\xb6\xc8\x48\x3b\x9e\xef\x76\x8a\xb1\x21\xe7\xed\x24\x63\x63\xc2\x67\x2b\x63\xac\x17\xd5\x33\x6a\x8e\x49\x8b\x6e\x6c\xb6\x24\x65\x7b\xaa\x9a\x62\x3f\x54\x68\xf8\xaf\x75\x0d\x37\x19\x2a\x74\x7d\x4f\xea\xac\x4b\xf2\xec\x57\xad\xcd\x58\x23\x36\x22\x86\xe9\x99\xe4\x6d\xf4\x73\x9a\xe9\x77\x2c\xd9\xaf\x82\xc0\x0a\x8c\x1a\x09\x9c\x95\x99\x9a\x50\x0b\x23\xb5\x58\x9b\x09\x1c\xaa\x3c\x95\x60\xb7\x76\x58\x85\x17\x5a\xa4\x35\x20\x22\x38\x52\xc8\xb6\x7b\xc9\xd1\x9e\x96\xe8\xf6\x11\x5b\xa7\x1b\x4d\x20\xf9\xfe\x74\x3a\x69\x00\x75\x93\x15\x49\xf3\xc2\x41\x82\x60\x7b\x90\xa0\x12\x09\x8c\xe6\x87\x5d\x28\x85\x17\x6c\x15\x47\x0c\xf1\xe6\xb0\xd2\xad\x05\x3a\x56\x65\x2a\x50\xda\x1c\xb7\xf1\x36\xd5\x29\x0d\x80\x32\xad\xb1\x58\xa2\xb6\x7e\x5c\x9f\xe2\xb5\x4e\xed\x7a\x3c\xa2\xb6\xe5\x50\xd1\x2e\xd9\xae\x63\x80\x16\x05\x53\x28\xb1\x42\x89\x4e\xf8\xb8\x79\x8c\x74\xf1\x66\xe5\xa9\x1a\x40\xb6\x49\x74\xd8\xe9\x44\x30\x8c\x4c\x81\x94\xc8\x42\x3b\x6d\x36\x5b\xbd\x1b\xcf\x49\x53\x66\xe5\x79\x1c\xbf\x63\x18\x6c\x75\x0a\x0c\x4c\x26\xc2\x0b\x25\x3a\x87\x64\x77\x90\xf5\x8f\xc0\xa6\x49\x79\x1e\x81\xd2\xe3\x2a\x86\xa4\x45\xa1\x64\x2a\xac\x4c\x22\x92\x6c\xc3\x34\x4a\x74\xfb\x47\xe6\x25\xef\xca\xee\xf4\x78\x4a\x74\x1a\x04\x48\x26\x41\x8b\x24\x0a\xc7\x43\xba\x4a\x75\x0a\x69\xd2\x7c\xe6\x20\xab\xf5\x2a\x59\x07\x50\x27\x9a\xcf\x6a\x17\x9a\xcf\xca\x60\x47\xe1\x3a\xdc\x68\xe8\x0f\x55\x3a\x68\x6f\x14\x46\x71\xf4\xa8\xfb\x9e\x6b\x87\x52\xa3\x86\x33\x34\x79\x72\xfc\xec\xc7\x01\x03\x13\x13\x0f\xcb\x69\x87\xc7\x09\x3c\x42\x5f\xda\x9c\x40\x7f\x58\x84\x41\xf0\x01\x6c\x71\xc9\x52\xba\x52\xdb\x07\x1f\x03\x2f\x79\xd2\xb2\xc7\xd2\x95\x8c\x90\xc4\x58\xcf\x35\x9b\x95\x59\x97\x25\xb9\x90\x44\x9a\x8a\x0a\x1d\x2b\xba\x9c\xa3\xc9\x90\x95\x42\x2d\x23\x32\xed\x6f\x83\x92\xcf\xb7\xe7\xaa\x49\xe9\x9f\x7b\xf2\x5f\x1f\x17\x8c\xb0\x43\x2e\x69\xfa\x54\x0b\x04\xc2\x57\x4c\xa8\x45\x5c\x8d\xb2\xf2\x82\x9a\x4c\xf2\x68\x2c\x15\xf5\x8d\xfc\x9b\xe5\x59\xf7\xc2\xb3\x53\x8b\x50\x59\x09\xc0\x69\x09\xda\x99\x2b\xae\x9b\xac\xec\x6e\xbf\x5b\xd0\x8c\xbf\x8b\xfd\x01\x9d\xaa\x86\x75\x1e\x4c\x05\xfd\x64\x4e\x12\x9d\xec\xcb\xaa\xfb\x76\x79\xe8\xca\x07\x4d\x7a\xd7\x32\x45\x4d\x9e\x95\xe8\x35\x39\x1c\x9a\x5f\xba\xac\xcb\xd1\x27\x96\x66\x78\x48\x0c\xec\x7d\xfb\xce\x4b\xba\xae\xf9\x96\x54\x3f\x78\xef\x1e\xde\xbd\xd6\x0d\x92\x56\xb6\x75\x83\x7c\x65\x6d\x7b\xc8\xab\xe3\xe7\xff\x7b\xad\x3a\xb4\xc0\xd0\x6c\x5c\xc3\xba\xf7\xda\x2a\xcf\x52\xef\x7d\x92\x1e\xe2\x43\xfa\x54\x27\x67\x44\x87\xc9\xcf\xca\x36\x4b\xd1\x3e\xf9\x52\x65\xe9\x6b\x77\x41\x49\x7a\x4b\xb3\xb6\xce\x93\x97\x7d\x97\x1c\x72\xe4\xe3\x22\xd4\xf8\x58\x71\xea\xd7\xac\x38\x2f\xba\xe6\x66\x6a\x7f\x89\x16\x97\xd5\xa2\xbe\x55\x4d\x7d\x49\xca\x76\xbf\x7a\x7a\xce\xd2\xea\xb9\xdd\xaf\x68\x95\xd8\x90\xf4\x98\xb5\xfb\x27\x5c\x7e\x6b\xb3\x5f\xd1\x3e\x59\xbd\x2e\xb1\x18\x92\xac\x44\xcd\x82\x4c\x46\x65\xed\x26\x8e\x70\x99\x7c\x39\x24\xcd\xc0\x31\x1e\x86\xd7\xe5\x21\x49\xcf\x50\xe7\x83\x00\x6b\x38\xee\x14\xab\xc4\xd3\x20\x4f\xea\x16\xed\xf9\x1f\x92\x1e\x62\x48\xaf\x4b\x17\xfc\xaf\xcb\x4d\x9b\x41\x9a\xb3\x25\x22\xa3\xd8\x51\x3a\x36\x16\x8a\x2e\x00\x67\x29\x42\x11\xda\xe8\x88\x04\x53\xc7\x26\x81\x58\xe3\x75\x58\x3c\xdf\x91\xff\x2e\xa4\xf2\x54\xfe\x79\x51\x7e\xa2\x44\xe0\x83\xf7\x84\xf2\xc0\xbb\xbd\x24\x50\xbc\x81\xcc\xc3\x13\xd8\xf0\xf5\xbf\xfd\xc3\xc7\xdf\xbd\xf7\xda\xea\xda\x1c\xd1\x4f\x49\x5d\x67\xe5\xf9\xdf\xff\xf5\xc7\xef\xa3\xe5\x21\x41\x71\x9a\x1c\x77\xcb\xe3\xe5\x5a\x7e\x5e\x1e\xdb\x76\x59\x24\xb5\xf7\xbb\x8f\xff\x6f\x00\x00\x00\xff\xff\x52\x55\x6b\x67\xf7\x4d\x02\x00") +var _pkgUiStaticReactStaticCss23f5e1097ChunkCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\xfd\x8f\xe3\x38\x92\x20\xfa\xfb\x02\xf7\x3f\x68\xab\x50\xe8\xce\x69\xcb\x25\xc9\x96\xed\x74\xa2\x1b\x3b\x3b\x37\x8b\x1b\xa0\x7b\x70\xd8\xde\x05\xee\xa1\xaf\x0e\x90\x2d\xda\xd6\x94\xbe\x4e\x92\x2b\x95\x6d\xe4\xfe\xed\x0f\xfc\x92\xf8\x11\xa4\x28\x67\xf5\xcc\xec\x7b\xbb\xb3\xe8\x4a\x93\xc1\x88\x60\x30\x18\xc1\xa0\xc8\xe0\xf2\x50\x55\x5d\xdb\x35\x49\xed\xa7\x49\x87\xba\xac\x40\x75\x76\xfc\x8c\x1a\xff\x39\x4b\xcf\xa8\xf3\x96\x87\xae\xfc\x25\x4d\xba\xc4\x4f\x8e\x5d\x56\x95\xdf\x1f\x73\x94\x34\x9f\xf6\xc9\xa9\x43\xcd\x62\x7e\xf3\x14\x1d\x1b\x54\xa0\xb2\xfb\x1f\xd5\xb5\x69\xbf\x02\x9e\x9f\xb2\xf2\xda\xa1\x37\x60\xca\xca\xaf\xc3\xd1\x80\xe7\xcd\x1c\xb5\x97\xea\xf9\x8d\xcc\x60\x14\x6f\xe6\xa3\xab\xd2\xe4\xe5\x2d\xcd\xcf\xe7\x1c\xfd\x4f\xd4\x64\x55\xea\x8e\x85\xfd\x6c\x9f\xb3\xee\x78\x71\x6d\xd5\x25\x87\x1c\x79\xdd\x65\x59\xa2\xbe\x9b\xdd\xa8\x6e\xd0\x17\xde\xa8\x6d\xfc\xaa\xcc\x5f\x6e\x75\xd5\x66\xb8\x17\xfb\xe4\xd0\x56\xf9\xb5\x43\x4f\xcf\x59\xda\x5d\xf6\x61\xdd\x3f\x5d\x50\x76\xbe\x74\xe4\xcf\x22\x69\xce\x59\xb9\xf7\xf1\xdf\x75\x92\xa6\x59\x79\xde\x07\x4f\xd5\x17\xd4\x9c\xf2\xea\x79\x7f\xc9\xd2\x14\x95\x4f\xc7\x3c\xab\xf7\x0d\x3a\x76\xdf\x06\x0b\xf2\xbf\x87\xa7\x43\xd5\xa4\xa8\xd9\x07\xaf\x53\x6c\xde\xf2\xac\xed\xfc\xb6\x7b\xc9\xd1\xbe\xac\x4a\x34\xd9\x60\x99\x36\x55\x9d\x56\xcf\xa5\x5f\xa0\xf2\x7a\x4b\xb3\xb6\xce\x93\x97\xfd\x21\xaf\x8e\x9f\x39\xbf\x51\xdd\x7b\xc1\xc0\xf0\xba\xee\x79\xef\xd6\x0d\x2a\x5e\xff\xa9\x40\x69\x96\x78\xdf\x16\x59\xe9\xd3\xf2\x78\xbb\xa9\xfb\x87\xdb\x3c\xd2\x4b\xa1\xbe\x3d\xb4\x37\x8a\x6a\xb5\x43\xc5\x2b\x40\x62\xbb\xd9\xfd\xd6\x24\x1e\x1f\xa3\xaf\x4b\x62\x1e\x26\x47\xbd\x54\x1a\x1d\xd0\xa9\x6a\xd0\xed\x58\x95\x1d\x2a\xbb\xfd\xbb\x77\x4f\x7c\x44\xb3\x32\xcf\x4a\xe4\xd3\x81\xd5\xf4\x75\x26\x73\xcb\x43\xd5\x75\x55\xc1\xc9\x51\xf5\xf4\x73\x74\xea\xf6\xdb\xba\xf7\xda\x2a\xcf\x52\xaf\x6b\x92\xb2\xad\x93\x06\x95\x1d\x53\x60\xbf\x21\x53\xc1\x0a\xc2\x30\x8f\x30\xcd\xf9\x90\xb0\x99\xb0\x8c\x1e\x9e\xba\xaa\xde\xfb\xdb\xba\x7f\xe2\xd4\xee\x64\x9d\x88\x57\xe2\x7c\x33\xcd\xb9\x15\x84\x21\x1e\x61\xde\x9f\x4e\x27\xca\xef\x86\xf3\xbb\x9b\xcf\x2f\x46\xf0\x1b\xc8\x19\xa3\x35\x0a\x99\x75\x65\x94\xf3\xe6\x3e\xbe\xbf\xbe\x90\x31\x56\x45\xc2\x9c\xd9\xcd\x1b\x94\xe2\x94\x57\x49\xc7\xe8\x33\x61\x13\x54\xc9\xb5\xab\x9e\x06\xb6\xde\x82\x95\x8a\x42\x45\x7a\x07\xab\xcf\x59\x8a\x1a\x66\x58\xc2\x0d\xb6\xc0\xd3\x6e\x92\x78\x85\x6b\x49\xfc\x42\x7a\x63\x66\x7d\xda\x9b\x78\x89\xe8\xa2\x3f\xdd\xb8\x0b\xc0\x03\x30\xbb\xf5\x1e\xff\xfb\x05\x2b\x71\xef\xb7\x97\x24\xad\x9e\xdd\x3c\x94\x27\xda\xd4\x4b\x75\x75\x59\x16\x08\x45\x05\x59\xd7\xcc\x6b\xd3\xa2\x63\x55\xa6\x4c\xc6\x31\x76\x78\xa7\xaa\xec\xfc\x67\xea\xc9\xb7\x41\x40\x7f\xb7\xd9\xaf\x68\x1f\x2e\x23\x54\x3c\xb9\x8b\xf4\x70\xed\xba\xaa\x34\xca\xd5\x41\x1c\x4e\x4b\xd2\xd1\x05\xfc\x89\x57\x7b\xa4\xfe\xdd\x5b\x28\xc8\x8b\x44\x88\x06\x83\xb8\x87\x0a\xb8\xd8\x1f\x69\xfc\x77\xf4\xe6\x7e\x18\xc2\x00\x88\xc6\x1b\xfa\xa1\x2e\xc8\x47\xf4\x3f\x5f\xaa\xe7\xfb\xb9\xd7\x57\xe9\x0a\xe6\x37\xf0\x0c\xac\xbe\x47\xe4\xff\x46\x2a\xbd\xdf\xff\xf4\xf1\x7f\xfe\x74\x0f\x72\x31\x08\x1c\xb1\xfe\x01\x97\x7a\xdd\x05\x79\xb4\xf9\x7d\x6c\x8f\x31\x87\x20\x0c\xbc\x5c\xbf\x20\x0f\x23\xf1\xba\xca\x23\x50\x2e\xe8\xa5\x68\xe2\xd6\xa1\xbe\xf3\x93\x3c\x3b\x97\xfb\x23\x2a\x3b\xd4\xcc\xc5\x60\x90\xe3\x7f\xc7\x6c\x25\x65\xea\xfd\x5b\x56\x20\xef\xe7\x63\x83\x50\xe9\x34\x68\x12\x72\xaf\x4b\x6f\x63\x0c\xc1\xed\x0f\x8f\x36\x88\x8b\xa1\xf6\x8b\xfc\x49\xd6\x7e\xac\x2e\x2b\x2f\xa8\xc9\xba\x3b\x08\x7a\x6d\x9d\x94\x37\x11\x57\xb4\x8c\x9f\xc6\x3f\x51\xc1\x23\x83\x20\xf8\x30\x8d\x9f\x84\x54\xb7\xb1\xc5\x0c\x2b\xca\xa2\xb1\xd4\x3d\x6e\xd3\x87\x73\x58\x75\x24\x69\x76\x6d\xf7\xcb\x28\x76\x72\xa6\x03\x42\xde\xef\x00\xaf\x3b\x44\x99\x04\x43\x84\x84\xff\x74\xc7\xa8\xe8\x1f\x0f\xb2\xe2\x59\x38\xd2\xac\xc5\x7f\xce\x90\xcc\xd0\x64\x7f\xc1\xa1\xe8\xed\x90\x1c\x3f\x9f\x9b\xea\x5a\xa6\xc4\x41\x3f\x1d\xab\xbc\x6a\xf6\xef\x37\xc7\x6d\xbc\x4d\x9f\x8e\xd7\xa6\xad\x9a\x7d\x59\x61\x61\xe6\xd5\x33\x4a\xe7\x74\x70\x88\x9d\xc7\x59\xf1\x3f\x1b\xf4\x25\xab\xae\xad\xf7\x53\x55\x76\x17\x87\x79\x00\x84\xef\x23\xb6\x3f\xa3\xbe\x9b\x8d\x09\x25\x78\xad\xb9\x3f\x65\x4d\xdb\xf9\xc7\x4b\x96\xa7\x78\x7c\x59\x4f\xeb\x2a\x73\x9b\xfc\x56\x6c\xba\x6c\xdf\xa3\x47\x74\x44\x27\x77\x5d\xe7\x0a\x47\x16\x24\xa2\xc2\xc5\x63\x48\x8e\xff\x74\xc7\xb8\x3c\x3e\xdf\xc6\x95\xcc\x72\x87\x8a\x27\xab\x52\x4b\x9a\x30\x83\x4c\x9a\xbc\x7c\xf5\xd9\x42\xb0\x52\xa9\x3a\xab\x7a\xba\xc4\xeb\xc7\xd9\x8d\xe8\x12\x72\x76\x33\xba\x8a\x34\x0e\xfc\xd3\x9d\xfa\x95\x2e\x4b\xf4\x3c\x83\x8d\x2a\x4f\x6f\xf7\x0e\x1c\xf1\x9c\xe3\xee\x56\x83\xf2\x04\xaf\xe1\xe7\x62\x70\xdd\x96\x60\x06\x99\x72\x2b\x87\xa4\x62\x2c\xe8\xbd\x0f\x82\xed\x81\x44\x7e\x04\x9e\x6e\x77\x91\x88\x90\x17\x51\x85\x0a\xbc\xc0\xc3\x31\x2e\x0e\x63\xf5\x2d\x3a\x16\x37\xe2\xc9\x43\x83\xb1\x79\x73\x87\x86\x33\x33\x06\x82\x36\xd0\xf4\x81\x75\x97\xf7\x89\xfd\x22\x5b\x07\xd8\x63\xb1\x50\x29\xf0\xfc\x10\x47\x5d\x72\xa4\x1e\x3f\xcc\x66\x58\x1e\x11\x69\xeb\xc2\x1f\x69\xcf\x99\x86\x73\x1d\x4e\xfa\x57\x73\x38\x6c\xc1\x02\xea\x9a\x10\xdc\x59\xed\xaa\xb0\x07\x1a\x2e\x63\x6c\x04\xa5\x69\xfb\xb6\x45\x04\x65\xf0\x2b\xf8\x06\x82\x67\xc9\x23\xec\xbf\xba\x6e\x51\xf2\x6f\xb0\x34\x14\xc1\x7c\x55\x92\xdb\xfd\x56\xfa\xb4\xbc\xb6\xa8\x7b\x46\x65\xf7\x72\xaa\xae\x0d\xf7\x23\x83\x4b\xdb\xaa\x2e\x8d\xec\xea\x64\x65\x7d\xed\x7c\xcc\x47\xed\xd1\xa0\x85\x06\x59\xdf\xcb\x24\x3e\xa9\xeb\x8c\xff\xf6\x0f\xff\xf0\xf1\x77\xff\xf8\x0f\xde\xef\xbc\x7f\xe6\x5c\x79\x5f\xd6\xcb\xd5\x32\xf4\xbe\xbd\x74\x5d\xdd\xee\x3f\x7e\x3c\xa3\x6e\x60\x79\x79\xac\x8a\x8f\x0f\x18\xfe\x0f\x55\xfd\x42\x2c\x99\x17\x05\x61\xe8\x47\x41\xf8\xe8\xfd\xdb\x05\x09\x78\x7e\x7f\xed\x2e\x55\xd3\x1a\x81\x9f\xb3\xae\x43\xcd\xc2\xfb\x53\x79\x5c\x62\xa0\x1f\xb3\x23\x2a\x5b\x94\x7a\xd7\x32\x45\x8d\xf7\xd3\x9f\xfe\x4d\xe0\x21\xeb\x2e\xd7\x03\xa1\xde\x3d\x1f\xda\x8f\x03\x43\x1f\x0f\x79\x75\xf8\x58\x24\x6d\x87\x9a\x8f\x3f\xfe\xe9\x0f\x7f\xfc\xf3\xcf\x7f\xc4\xfc\x7d\xdc\x37\x55\xd5\xdd\x7c\xff\x90\x5f\xd1\xa0\x93\xbe\x9f\x95\x69\x76\xae\xf6\xef\x37\x9b\x30\x38\x45\x4f\xbe\x5f\x5f\x9b\x3a\x47\xfb\xf7\x9b\xd3\x3a\x3a\x86\xb8\x20\x2b\x3f\xef\xdf\xa3\xdd\x0a\xed\x8e\x4f\xbe\xdf\xa0\x74\xff\x3e\x3d\xae\xe2\x75\xfc\xe4\xfb\x55\x93\x94\x67\xb4\x7f\x7f\x4a\xb7\x28\x5c\x3f\xf9\xfe\x0b\xc2\xc3\x8a\xd5\xfc\x18\x06\xdb\x27\xdf\x3f\xe3\x08\x6b\xff\x3e\xda\x25\x5b\xd2\xa2\x43\x49\xbe\x7f\x1f\x05\xc7\xc7\x47\x5c\x7d\x7c\x49\xca\xfd\xfb\x70\x9b\x44\x87\xdd\x93\xef\x3f\x5f\xb2\x0e\xd1\x49\x82\x9b\x26\x2f\x83\xe6\xd0\x9f\x7e\x9a\x34\x9f\xf7\xef\x57\xeb\x55\xb2\x0e\x30\x73\x4d\x56\x24\xcd\x8b\xd0\x21\xea\xf8\x49\xd9\xd0\xb2\xbd\x1e\x8f\xa8\x6d\x05\x2e\xb2\xf2\x54\x89\x64\x93\xa6\xc4\xb1\xdc\xc8\x76\x8a\xfb\xd5\x08\x3d\xcd\x89\x76\xbd\x3f\xed\x4e\x8f\xa7\x84\x00\x48\x8c\x1c\x1a\x94\x7c\x26\x5a\xe4\xf7\xed\x5e\x29\x69\x0b\xfa\x59\x46\x2e\x2d\x52\xfa\x25\x45\x2e\xcd\xcf\xf4\xe3\x87\x82\x33\xdf\x87\x51\x10\x90\x62\xb2\x68\x3c\x25\x45\x96\xbf\xf8\x6d\x52\xb6\x7e\x8b\x9a\xec\xb4\xf7\x93\xba\xce\x91\xdf\xbe\xb4\x1d\x2a\x16\xff\x9c\x67\xe5\xe7\x9f\x92\xe3\xcf\xe4\xe7\xbf\x54\x65\xb7\x78\xf7\x33\x3a\x57\xc8\xfb\xf7\x3f\xbd\x5b\xfc\x6b\x75\xa8\xba\x6a\xf1\xee\x7f\xa0\xfc\x0b\xea\xb2\x63\xe2\xfd\x19\x5d\xd1\xbb\xc5\xef\x9b\x2c\xc9\x17\xef\xfe\x5c\x75\x95\xf7\x73\x52\xb6\xef\x16\x23\x81\xc5\xbb\xdf\x63\x02\xde\x1f\xf0\x84\xf6\xfe\x58\x54\x7f\xc9\xde\x8d\x38\xf5\x82\x9f\x5f\x8a\x43\x95\xbf\x63\xd8\xc4\x56\x4a\x1f\x8a\xaa\xac\xda\x3a\x39\xa2\xfd\xcf\xff\xf2\x53\x55\x56\xfe\xbf\xa2\xf3\x35\x4f\x9a\xc5\x4f\xa8\xcc\xab\xc5\x4f\x55\x99\x1c\xab\xc5\x1f\xaa\xb2\xad\xf2\xa4\x5d\xbc\xfb\x31\x3b\xa0\x26\xc1\xcb\x09\x1c\x6b\x54\xef\x16\xef\xfe\x50\x5d\x9b\x0c\x35\xde\x9f\xd1\xf3\xbb\xc5\x80\xee\xf5\x77\x0b\xf6\x1d\x67\x74\xb8\x3d\x5e\x6d\xe3\x91\x1e\x7c\x6f\xff\x7a\xe9\x8a\xfc\x26\x30\xb4\x1f\xfb\x2c\x59\x96\x70\x19\xc6\x4f\xfe\x33\x3a\x7c\xce\x3a\x9f\x9a\xf0\xec\x57\xe4\x27\xe9\x5f\xae\x6d\x47\x63\xe8\xa1\x36\xa9\xfd\x4b\x76\xbe\x10\xa5\x61\x7e\x40\x58\x43\xbd\x26\x4d\x97\x1d\x73\xb4\x48\xda\x2c\x45\x8b\x53\x76\x3e\x26\x35\xee\x10\xfe\xf3\xda\xa0\xc5\xa9\xaa\x30\xdf\x38\x9a\xc1\xff\x10\x3b\xb6\x28\x92\xac\x5c\x94\xc9\x97\x45\x8b\xc8\x06\x8c\xfc\xbd\xf0\xf5\x50\xa5\x2f\xc3\xee\xf2\x93\xd8\x9f\x49\xcd\xe0\x63\xc6\xf5\x42\x56\x0b\xa6\x15\x83\x52\x88\x3a\xa1\xa9\xc4\x42\x56\x88\x85\xa2\x0e\x0b\x55\x19\xc4\xcd\xdc\x06\x15\xd2\x5e\xef\x3a\x08\x94\x01\x88\xb9\x3b\x89\xc2\x28\x8e\x1e\x9f\x84\x6d\x85\x1c\x9d\xba\x27\xdd\xf9\xe2\xe5\xd4\x2f\x5d\x72\xc8\xca\x14\xf5\xdf\xbf\xf3\xc3\x77\x9f\xf6\xa7\xea\x78\x6d\x6f\xd5\xb5\xc3\xc8\xf7\xc1\x3f\x66\x45\x5d\x35\x5d\x52\x76\xaf\x97\x46\xd4\x91\xac\xcc\xba\x2c\xc9\xf9\x12\x45\xf8\x58\xfc\x25\x6b\xb3\x43\x8e\x5e\x2f\xe1\xe2\x12\x2d\x2e\xab\xc5\x65\xbd\xb8\xc4\x8b\xcb\x86\x0d\x00\xf9\x52\xc2\x37\x86\xf8\xb7\xa9\x25\x59\x9d\xd4\x36\x10\x2c\x82\xd7\xe4\x70\x68\xa8\xcf\xaa\x9a\xec\x9c\x95\x49\xee\x77\x59\x97\xa3\x4f\x0b\x52\x43\xff\xa6\x3b\x2a\x29\x3a\x56\x74\x2a\xec\x89\x93\xc0\x1d\x92\x55\x14\x82\xf0\xd2\xaa\xeb\x50\xfa\x34\x09\xc0\x9c\xe3\x05\xe5\xb5\xf2\x9d\x2d\x30\x51\xf1\xdb\xcf\x59\xed\x63\x97\x41\xbc\xbf\xb5\xf6\x35\x49\xd3\x06\xb5\x2d\x0b\x83\xd9\x77\xf3\xa6\x48\x72\x70\xcb\x8c\x41\x2f\xd2\x7c\x51\xe5\x8b\x6b\x7e\x03\x64\xa7\xd6\x11\x21\xbf\x56\xb9\x57\xe1\x0a\xef\x8a\xeb\x3c\x02\xe1\x69\x08\x82\xd7\xb4\xbb\x29\xdf\x1a\x5e\xd3\xf4\x06\x8c\x22\x1f\x36\xf2\x45\x29\x78\x25\x13\xf0\xff\x5e\xab\x0e\x0d\x13\xd0\x0b\x3c\xc2\xd0\x61\xd1\x76\x4d\x55\x9e\x25\xc4\x87\x2a\x4f\x51\xf3\xda\x16\x49\x9e\x0b\x7b\x00\xbb\xe0\xc3\x6b\x7b\x3d\x2c\xda\x6b\xad\x87\x7d\xc2\x44\xd9\xc6\x1f\x24\x01\x05\x4f\x5f\x10\x36\x28\x49\xce\xe6\x02\x53\x5c\x8c\xec\xc6\x3f\xd0\x2d\xa3\x18\x15\xaf\x18\x35\xf9\x28\xba\xc4\xbf\x92\x9b\xbc\x44\x55\x15\x82\x0c\xa1\x36\xa7\x38\xf6\x84\xad\xf8\x06\x1c\xf1\xe6\xb0\x32\x2b\xd5\x6b\x82\x97\x7d\xdf\xfe\x72\x69\xd0\xe9\xd3\x03\xfd\x9b\x4f\xcc\x4f\x0f\x0b\x6b\x2d\x9d\xb2\x13\x30\x22\x37\x4c\x67\xc0\x1e\xd9\x19\x51\xad\xc3\xeb\xb1\x4a\xd1\xe2\xf3\x21\x5d\xd4\x0d\x5a\xb4\x49\x51\x4b\xbe\xc2\xc9\x65\x29\x1e\x6b\x21\xf8\xab\xd1\x5d\x89\x96\x10\xdb\x89\x06\x4d\x59\x8a\xd1\x1e\x25\xd7\xae\x7a\xa5\xbe\x43\xd3\xc0\xac\x38\xdf\xa4\x58\x9d\xc8\x20\x2b\xce\x8b\xf6\xcb\xf9\xa6\x68\x4e\x91\xa5\x69\x8e\x5e\x71\x8d\x72\x32\xe6\x95\x6e\x18\x8f\xbb\x04\x79\x52\xb7\x68\xcf\xff\x78\x65\x1e\x8c\x6f\x8b\x13\xa6\x97\x5b\x32\x59\x78\x11\x9f\x41\xb4\x54\x0e\x0c\x54\x4b\xce\xd0\xf9\xd8\x41\xee\x69\xc3\x57\x79\x1f\x99\x9b\x85\x3c\x39\xa0\x1c\x0e\x33\x21\xfb\x4b\x3f\x01\xde\xe4\xc8\x31\x60\xc5\xca\xe0\xe3\xc0\x8c\x99\x42\x5e\x14\xd7\xbd\x87\xa5\xed\x71\xfb\x47\x5a\xf8\x0d\xee\x1f\xe9\x11\xc3\xb4\x20\x11\xc8\xa2\xaa\x3b\xea\xbc\x5b\x94\xa3\x63\xb7\xc0\xfc\x27\x0d\x4a\x60\x47\xcd\xb5\x76\xd4\x04\x5e\x02\xd9\x43\x91\xd0\x4d\x73\x4d\xac\x96\xd2\xa5\x72\x23\x2b\x90\x53\xd5\x14\x54\x05\x58\xd5\x73\xd5\xa4\xfe\x73\x93\xd4\xcc\xf6\xbe\xfe\xd2\xbd\xd4\xe8\x7b\xda\xfe\xd3\x82\xfe\x6a\x50\x8b\x3a\xfe\xa3\xbd\x1e\x8a\xac\xfb\xb4\x60\xa2\xe4\x92\x48\xea\x1a\x25\x4d\x52\x1e\xd1\x9e\xd6\xc8\x98\xc8\x44\xdb\xf3\x68\xf1\x41\x42\x0c\xd7\x31\x3a\x6a\x25\x1b\x2a\xb9\x54\x0d\xe4\x64\xd2\x7b\xbf\xa8\x7e\x65\x43\x95\x95\x25\x6a\x64\xea\xa6\x6a\xce\x80\x5e\xcf\x78\xd0\x2a\x84\xaf\x42\xc0\x9c\xc3\x23\x45\x31\x1f\x2f\xe8\xf8\xf9\x50\xf5\x9f\x16\x42\x21\x56\xc6\xea\x13\xbc\x4a\x1d\x8f\xac\x89\x68\x70\x34\x2b\xa1\xe0\xe1\xad\x9f\x57\xc7\x24\x97\xaa\x8a\xaa\xec\x2e\x52\x09\x06\xfc\x04\x0d\x5f\x9e\xb5\x1d\x5e\x19\x0f\xda\x2a\x19\x9a\xa7\x06\x11\xdd\xe4\xa6\xe3\xf5\x94\xa1\x3c\x6d\x51\x77\x1b\xcf\x6f\x05\x4f\xc0\xe7\xb1\xe1\x20\x5d\x8e\xce\xa8\x4c\x95\xf3\x6e\xd2\xa7\xa8\xde\x17\x7e\xaa\xa8\x64\x57\x2c\x9e\x06\x20\x05\xc0\x5c\x79\x92\xbd\x02\x89\x32\x7d\x1a\x73\x30\xa5\xaf\x9b\xea\x4c\xd6\x22\x06\x57\x4a\x25\x56\x5e\x8b\x03\x6a\xb0\x42\x30\xa1\x91\x41\xf7\xdb\x1a\x33\x45\x27\x9c\x01\xb0\xba\x76\x32\xe0\x4d\xf8\x58\xc8\xb0\xb7\x28\x69\x8e\x97\x4f\xdc\xfc\xf8\xd5\xe9\xd4\xa2\x6e\xef\x93\x68\x50\x1f\x25\xa2\x53\x52\xcb\x91\x1c\x2d\x10\x3c\x1f\x34\xcc\x04\xc1\xd8\xe6\x94\xe5\xc8\xbf\xd6\x79\x95\xa4\x9c\x47\x2c\xdb\x41\x6a\xe6\x79\x5e\x5d\x3b\x6c\x83\x20\x1b\xfc\xda\x5e\x0b\x1c\xa1\x0f\x95\xe4\x34\x4c\xd6\x61\x07\x20\xcf\xd8\x0e\x15\x75\x9e\x74\x68\x80\xa4\xfd\xa3\xde\xe7\x93\x54\x2a\xac\xd8\x97\x97\x70\xb1\xbc\x44\x8b\xe5\x65\xb5\x58\x5e\xd6\x8b\xe5\x25\x5e\x2c\x2f\x9b\x85\x71\x65\xae\xeb\x0e\x5b\x94\xc5\x5a\xb4\x11\x11\xec\x97\x50\x58\xa2\x45\xd4\x89\x60\x8a\x97\x48\x2c\xa7\xa5\xab\xc5\x65\x75\x13\x15\x72\xcb\xc0\xd7\x8b\xcb\xfa\xa6\x6a\xea\x2b\x66\xf6\x12\x4b\xe5\x6c\x0b\x13\xf7\x60\x73\x93\x63\xa3\xd7\x65\x8e\x92\x54\x87\x96\x7a\xb1\x0a\x82\xd7\x25\x93\x95\x2f\x72\x4e\x0f\x2b\x0d\x35\x8b\xe1\xcf\xe8\xa6\xb4\xd7\xa5\xa0\x80\x12\x7c\x31\xeb\x02\xaf\x13\xfb\xbd\x56\xeb\x46\x6a\x6b\x77\x6a\xa2\xc0\x56\x14\xe3\xa5\x11\xd7\x44\xa1\xb0\x12\x17\x97\x45\xdc\xce\x88\xc7\xd6\x42\xf0\xb4\x5d\xf8\xf0\xba\x24\xab\xf0\x05\xb0\x16\x57\x63\xd1\xd7\x65\x91\x34\x9f\x17\xf8\x3f\x83\x99\x27\xe7\x8f\x80\xa8\xf3\x78\xda\xa1\xd5\x2b\x3d\xfa\x45\xa7\xc3\x42\x39\x07\xc6\x17\x45\x34\x84\x78\xd2\x8e\x0e\x0b\x4d\xc9\x74\x81\x67\x97\x06\x46\xdd\x62\x9e\xf0\xaf\x9f\x0f\x5c\x60\xf4\x2b\x0b\x1b\x18\x66\xd5\xb2\xb6\x10\xba\xfc\x18\x7c\x78\x52\xd6\x09\xd7\xba\x46\xcd\x31\x69\xd1\xeb\x52\x8b\x71\x24\x91\x03\x2a\x3c\x36\xf0\xe9\x76\x86\x62\xef\x65\x59\xab\x5b\xd7\x6a\x63\xed\x2b\xd6\xff\x8e\x82\x70\xfd\xbf\x83\xe0\xf7\xc1\xbb\xd7\x65\x56\x9c\xfd\x53\x7e\xcd\xd2\x05\xf9\xb3\xbb\x5c\x8b\x43\x99\x64\x38\xc2\x93\x3c\x89\x68\x73\x15\xc8\x71\x44\xc9\x9c\x02\x77\x12\xb8\x66\x8d\xca\xf4\x3e\x45\x28\x42\x1b\xc3\x87\x08\xb6\x22\x87\x47\x8e\x56\xfa\x78\x79\x0e\x99\x26\x69\x5a\x0c\xd0\x7c\x95\x2d\x8f\x9a\x2c\x3c\x1c\xb0\x88\x9a\xbc\x5d\xc6\x03\x08\xdb\xc6\x25\x6b\x3e\xb2\xbd\xb8\x27\xff\xf5\x71\xc1\x6b\xf2\x03\x69\x2a\xf9\xca\xd7\xcf\x87\x54\x90\x4d\x83\x0a\x6f\xb9\x96\x47\x5c\x22\x40\xa4\xa4\xc9\x8e\x6d\xd7\xa8\x52\xc2\x42\xfa\x7c\x48\x3d\x91\x86\x74\xbc\x2f\x50\x66\x21\x8e\xc8\x6b\x41\xa2\x9a\x26\x89\xac\x50\xa2\x18\xde\x53\x44\x62\x58\x15\x8c\x42\x61\x8b\x82\x65\xdd\x20\xbf\x3d\x36\x38\xc6\xc1\xc1\x0f\xd6\x26\x36\x24\xab\x75\x50\xf7\x43\x00\xe6\xbf\xec\x29\xd8\xeb\x12\x2b\x68\x92\x95\xe3\x29\x51\x61\x05\xc3\x26\x61\x18\x8f\x57\x10\xe8\xfc\x27\x25\xd2\x44\x25\x0b\x2d\x71\x97\x81\xe8\xac\xf9\xb8\xff\x48\x76\x54\xf9\x18\xf3\x68\x3b\xc0\x0f\x35\xda\x46\x86\x46\xfc\x48\x3e\xd4\xe8\x71\x63\x68\x44\x37\xad\x0d\xad\xc2\x90\x32\x38\x56\xd2\x49\xfc\x5b\x48\x6e\xd9\x54\xcf\x83\xda\x9c\x72\xd4\x3f\xe1\xff\xd0\xb8\x07\xff\x47\xc6\xe1\x8b\x68\x09\x12\x52\xf2\xba\x2c\x2b\xff\x7c\xed\x3a\xd4\xb4\xb2\x5d\x0d\x94\x1d\x21\x01\xf0\x87\xe5\xb1\xca\x17\x62\xc1\x2f\xc7\x3c\x69\xdb\xdf\x7d\x7f\xac\x72\x7f\x38\x7f\x3a\x20\x92\x1d\xc3\x2b\x6d\x8d\x41\x43\xfa\x4f\x44\xff\x59\xd1\x7f\xd6\xf4\x9f\x98\xfe\xb3\xa1\xff\x6c\xe9\x3f\x3b\xfa\xcf\x23\x6b\x1e\xb0\x7f\x19\x9e\x90\x21\xc2\xe2\xa1\x7f\xe5\x67\xfe\x2f\xa7\x95\x9f\x39\xb9\xfc\xcc\x29\xe6\x67\x4e\x34\x3f\x73\xba\xf9\x99\x93\xce\xcf\x9c\x7a\x7e\xe6\x0c\xe4\x67\xce\x03\xc6\x1c\x8c\x7f\x8e\x54\xc2\x91\xcc\xc8\x4f\x91\xf2\x7f\x39\x3f\x45\xca\xf9\x29\x52\xce\x4f\x91\x72\x7e\x8a\x94\xf3\x53\xa4\x9c\x9f\x22\xe5\xfc\x14\x29\xe7\xa7\x48\x39\x3f\x18\x73\x30\xfe\x39\x52\x09\x47\x32\x23\x3f\x6d\xc1\xff\xe5\xfc\xb4\x05\xe7\xa7\x2d\x38\x3f\x6d\xc1\xf9\x69\x0b\xce\x4f\x5b\x70\x7e\xda\x82\xf3\xd3\x16\x9c\x9f\xb6\xe0\xfc\x60\xcc\xc1\xf8\xe7\x48\x25\x1c\xc9\x8c\xfc\xf4\x39\xff\x97\xf3\xd3\x0f\xea\xd1\x0f\x1a\xd2\x0f\x4a\xd2\x0f\x7a\xd2\x0f\xaa\xd2\x0f\xda\xd2\x0f\x0a\xd3\x0f\x3a\xd3\x8f\x6a\xd3\x8f\x9a\xd3\x8f\xca\xd3\x53\xfd\x01\xb6\x2b\x67\xce\x61\xa2\xe7\x37\x32\x27\x0f\x49\x9b\xb5\xd8\x0f\xe0\x1f\xe7\xa6\x7a\xde\x87\x4a\x44\xf8\x3a\x28\x2e\x69\x41\xf6\xba\xd4\x43\x97\x50\x8b\x70\x04\xdf\x2d\x57\xe4\xff\xc4\x60\x73\x28\xa3\xd0\xd1\x08\x1d\x6e\x96\x1b\xfc\x7f\x5b\x29\x36\x1d\x0a\x29\xfc\x6a\x84\x8f\x62\x11\x30\x8a\x19\xc4\x7a\x84\x58\xad\x00\x06\xc6\x42\x0a\x1f\x8f\xf0\xeb\x10\xe0\x60\x2c\xa4\xf0\x9b\x11\x3e\x96\xc2\xe8\x98\x4b\x60\x2b\x40\x40\x22\x88\x15\x19\xec\x46\xf8\x0d\x24\x83\x8d\x22\x83\xc7\x11\x7e\x2b\xc9\x60\xcb\x65\x10\x06\xc2\x20\x40\x42\xd8\x29\x42\x08\x85\x51\x7b\x84\xa4\xf0\xa8\x48\x21\x14\x07\x4e\xdf\x4e\x78\x5d\xd2\x55\x08\x39\x22\x78\xa3\x0b\x3a\x3f\xe4\xa5\x78\xe5\xcc\x0a\xc3\x15\x2f\x0c\x6e\xc3\x15\x40\x5a\x10\x72\x10\x5e\x10\xb1\x82\x88\x17\xac\x58\xc1\x80\x63\xcd\x0a\xd6\xbc\x20\x66\x05\x31\x2f\xd8\xb0\x82\x0d\x2f\xd8\xb2\x82\x2d\x2f\xd8\xb1\x82\x1d\x2f\x78\x64\x05\x8f\x03\x63\x9c\xd5\x70\xe4\x75\x60\x76\xe0\x36\xe4\xec\x86\x98\x5f\xb2\xcb\xe0\x87\x37\xd1\x83\x09\x6a\xc0\xea\x23\xa9\x5e\xd4\x7d\x06\xb0\x92\x00\x88\xce\xb3\x9a\xb5\x54\x23\x2a\x39\x03\x88\x25\x00\x51\xab\x19\xc0\x46\x02\x20\xda\xcc\x6a\xb6\x72\x8d\xce\xf7\x4e\x02\xd8\xe8\x7c\x3f\x4a\x00\x5b\x81\xef\x30\x90\x65\xa2\x33\x1e\xca\x52\x13\x34\xd1\xb6\x52\xc3\x66\x7c\x9e\xa9\x63\x66\x7f\x9e\xb5\xc3\x6e\x63\x96\xc1\xc3\xde\x6c\xa6\xcd\xc3\x6e\x6f\xd2\xec\x61\x8f\x38\xd3\xf2\x61\xd7\x39\xd3\xf8\x61\x1f\x3b\x69\xff\xb0\xfb\x9d\x69\x02\xb1\x9f\x9e\x69\x05\xb1\x43\x9f\x34\x84\xc4\xd7\xcf\xb4\x85\x64\x51\x30\xd3\x1c\x92\xd5\x83\x93\x45\x6c\x0b\x83\x51\x6c\x0b\xd8\x2e\xb6\x85\x6e\x1a\x89\xd6\x29\xd6\x91\x28\x96\x62\x20\x89\xe6\x28\x36\x92\x28\x8a\x62\x26\x89\x26\x28\x96\x92\x0c\xb5\x62\x2c\xc9\xc8\x2a\xf6\x92\x0c\x9d\x62\x32\xc9\xd8\x28\x56\x93\x0e\x85\x6a\x38\xa9\xb0\x55\xdb\x49\xc5\xa9\x99\x4f\x22\x0a\x25\x06\x18\xab\xa6\x8c\x2b\x11\xd0\x84\x7d\x25\x02\x33\x99\x58\x22\xb9\x09\x2b\x4b\x24\x39\x61\x68\x89\x64\x4d\xb6\x96\x88\x78\xc2\xdc\x12\x91\x4f\x58\x5c\x32\x04\x26\xa3\x4b\xc7\x62\xc2\xee\xd2\xa1\x31\x98\x5e\x6b\xc0\x8b\x97\xf4\xf3\x6c\x2f\x0b\x01\xe6\xd9\x5e\x1c\x42\xcc\xb2\xbd\x38\xb2\x99\x69\x7b\x71\x08\x34\x69\x7b\x71\x74\x34\xd3\xf6\xe2\x30\x6a\xa6\xed\xc5\xf1\xd6\xa4\xed\xc5\xa1\xd8\x4c\xdb\x8b\x63\xb6\x99\xb6\x17\x07\x77\x93\xb6\x97\xc4\x7d\x33\x6d\x2f\x09\x10\x67\xda\x5e\x12\x49\x3a\xd9\xde\x22\x35\xd8\xde\x22\x85\x6d\x6f\x91\xea\xb6\x97\x68\x9d\x62\x7b\x89\x62\x29\xb6\x97\x68\x8e\x62\x7b\x89\xa2\x28\xb6\x97\x68\x82\x62\x7b\xc9\x50\x2b\xb6\x97\x8c\xac\x62\x7b\xc9\xd0\x29\xb6\x97\x8c\x8d\x62\x7b\xe9\x50\xa8\xb6\x97\x0a\x5b\xb5\xbd\x54\x9c\x9a\xed\x25\xa2\x80\x6d\x2f\x91\x88\xdd\xf6\x12\x01\x4d\xd8\x5e\x22\x30\x93\xed\x25\x92\x9b\xb0\xbd\x44\x92\x13\xb6\x97\x48\xd6\x64\x7b\x89\x88\x27\x6c\x2f\x11\xf9\x84\xed\x25\x43\x60\xb2\xbd\x74\x2c\x26\x6c\x2f\x1d\x1a\x77\xdb\x3b\xee\x1b\xe6\x7e\x7e\x9e\x67\x7b\xd9\x76\xd0\x3c\xdb\x9b\x9f\x67\xda\xde\xfc\x3c\xdb\xf6\xe6\x67\x07\xdb\x9b\x9f\x67\xdb\xde\xfc\x3c\xdb\xf6\xe6\x67\x07\xdb\x9b\x9f\x67\xdb\xde\xfc\x3c\xdb\xf6\xe6\x67\x07\xdb\x4b\xf6\x00\x67\xda\x5e\xb2\x59\x38\xd3\xf6\x92\x5d\x45\x27\xdb\x9b\x9f\x4d\x9b\x01\x67\xd8\xf6\xe6\x67\xdd\xf6\x12\xad\x53\x6c\x2f\x51\x2c\xc5\xf6\x12\xcd\x51\x6c\x2f\x51\x14\xc5\xf6\x12\x4d\x50\x6c\x2f\x19\x6a\xc5\xf6\x92\x91\x55\x6c\x2f\x19\x3a\xc5\xf6\x92\xb1\x51\x6c\x2f\x1d\x0a\xd5\xf6\x52\x61\xab\xb6\x97\x8a\x53\xb3\xbd\x44\x14\xb0\xed\x25\x12\xb1\xdb\x5e\x22\xa0\x09\xdb\x4b\x04\x66\xb2\xbd\x44\x72\x13\xb6\x97\x48\x72\xc2\xf6\x12\xc9\x9a\x6c\x2f\x11\xf1\x84\xed\x25\x22\x9f\xb0\xbd\x64\x08\x4c\xb6\x97\x8e\xc5\x84\xed\xa5\x43\xe3\x6e\x7b\x85\xcf\x2f\xb9\xdf\xcf\xdc\x5f\xed\xef\xd9\x62\xed\xe7\xee\xb2\xf6\xf3\x37\x5a\x7b\x97\xbd\xd6\x7e\xfe\x76\x6b\x3f\x7f\xc7\xb5\x77\xd9\x74\xed\xe7\xef\xbb\xf6\xf3\xb7\x5e\x7b\x97\xdd\xd7\xfe\x8e\x0d\xd8\xfe\x8e\x3d\xd8\xde\x79\x1b\xb6\xcf\x0d\xc6\xb7\xcf\x61\xe3\xdb\xe7\xba\xf1\x25\x5a\xa7\x18\x5f\xa2\x58\x8a\xf1\x25\x9a\xa3\x18\x5f\xa2\x28\x8a\xf1\x25\x9a\xa0\x18\x5f\x32\xd4\x8a\xf1\x25\x23\xab\x18\x5f\x32\x74\x8a\xf1\x25\x63\xa3\x18\x5f\x3a\x14\xaa\xf1\xa5\xc2\x56\x8d\x2f\x15\xa7\x66\x7c\x89\x28\x60\xe3\x4b\x24\x62\x37\xbe\x44\x40\x13\xc6\x97\x08\xcc\x64\x7c\x89\xe4\x26\x8c\x2f\x91\xe4\x84\xf1\x25\x92\x35\x19\x5f\x22\xe2\x09\xe3\x4b\x44\x3e\x61\x7c\xc9\x10\x98\x8c\x2f\x1d\x8b\x09\xe3\x4b\x87\xc6\x64\x7c\x97\x86\x84\x1a\xd2\x31\x19\xf9\x64\xc2\x72\x4c\xa4\x31\xe4\xb5\x18\x8e\x5a\xd0\x43\xd2\xca\x69\xc4\xae\xaa\xe1\x43\x4d\xec\x1c\xca\x80\x92\xe6\x41\xb8\xa8\xa7\x19\x29\x2f\xca\x5d\x8e\xc8\x88\xe5\x50\xa5\x2f\xdf\x91\xff\xde\x04\xaa\x26\x78\xbf\x2d\xc6\xbe\x90\x1f\x42\x77\x56\xe4\x40\x0c\xad\xa2\xb8\xd0\x00\xca\x7f\x0b\xad\xc7\xa2\xcb\xcd\x74\xe8\x46\x45\xc7\x7b\x0d\x21\x61\xe2\x90\x6f\x5c\x33\x8f\x51\xf7\x32\xa6\x1c\xb5\xad\xd8\xf7\x05\x50\x9b\x42\x85\x17\xb0\x50\x22\x8d\x67\x28\x93\x4f\xd7\x64\x35\xe6\x0d\x93\xf0\xba\x66\x5f\x76\x17\xbf\x3a\xf9\xdd\x4b\x8d\xbe\xad\xd2\xf4\x41\xbf\x49\x2c\x9e\x5c\x0b\xe2\x07\x8e\x89\xdc\x7b\x18\xf1\x48\x97\x32\xf8\xc1\x1b\x2b\xaa\xed\x88\x8b\xdd\xa7\x5c\xc8\x3f\x7f\x18\xfb\x3b\x94\x5c\x80\x9b\xce\x87\x5d\x9a\x9c\x4e\x0a\x2e\x48\x94\x43\x95\x8a\x57\x10\xe2\x58\x22\x0f\x1e\xa3\xb5\x4d\x0e\x02\x2d\x2a\x03\xb9\x25\xcf\x19\x31\x05\x21\xf4\xce\x06\x04\x75\xf8\xf1\x74\x4c\x47\x26\x86\xab\xa7\x0b\xb5\x40\x20\x21\x94\x41\x18\xd3\x4d\xba\x4b\x0f\x1a\x46\x48\x88\x42\xa5\x8e\x5d\x10\xa4\x58\x06\x8a\xf2\xb0\x3a\x6c\x0f\x07\x50\x94\xe3\x6d\x5a\xb3\x30\x15\x18\x93\x38\x35\x30\xa8\xfb\xc7\xdd\xf1\x70\x1c\x05\x4a\xef\xed\x2e\xe4\x9f\xa2\x30\x79\x09\x88\x6b\x85\x36\xc7\x83\x82\x0b\x14\x24\xaf\x52\xf1\x8a\x42\x1c\x4a\x40\x11\xee\x4e\x69\xf8\x88\x60\x11\xb2\xcb\xc7\x16\x01\x8a\x10\x46\xf1\xc9\x40\xe0\xf4\x0b\xd3\xd3\x38\x8e\x59\x79\xaa\x16\xc2\xdf\x02\x62\xfa\x13\x44\x81\x50\x8c\x24\x14\x90\xc0\x68\x79\x2a\xff\xbc\x28\x3f\x61\x39\x6d\x8e\xa7\x34\x01\xe5\x44\xae\x64\x9b\x85\x34\x56\x9b\x24\x24\x42\x40\x7d\x4b\x0e\x69\x8a\x62\x4e\x9b\x5d\xf9\x5e\xc8\x3f\x05\xdc\x43\x09\x84\xeb\x74\x42\xe8\x90\x28\xb8\x20\x51\x0d\x55\x2a\x5e\x41\x60\x63\x09\x28\xb3\xd3\x29\x3d\x6d\x61\xdd\xe2\xf7\xd6\xcd\x62\x93\x20\x4c\x92\x53\x80\x0c\x1d\xde\x25\x21\x67\x82\xde\x8e\x5f\x48\xbf\x04\xe4\xbc\x00\x44\x14\x1f\x85\x59\x49\x21\x21\xc1\xf1\x9a\x54\x2d\xb8\x68\x05\xa0\xd4\x50\xfa\xb8\x31\xcc\x48\x76\xb7\xdf\x2c\x34\x11\xc0\x24\x33\x19\x06\xec\x69\x78\x08\x0e\x5b\xce\x01\xb9\x0a\xbe\x10\x7f\x08\x98\xd9\x6f\x10\x4b\x7a\x4a\x4f\x48\xc2\x02\x89\x8b\x55\xa4\xca\xef\x8b\xfa\x1b\xd6\xb0\xc3\xe9\x78\x3a\x82\xb2\xa2\x69\x0f\xcc\xa2\x12\xea\x4d\x92\x92\x40\xa0\x2e\xa2\x23\x3a\x9e\x36\xa3\x4a\x34\x9f\x17\xc2\xdf\x92\x5e\xe1\x9f\xa0\xad\xdf\x1c\x77\xc7\x44\x44\x01\xeb\x14\x2e\x4f\xe5\x9f\x17\xe5\x27\x28\xa1\xc7\xf8\xf1\xf1\x11\x96\x10\x49\x04\x61\xd3\x25\x5e\x6d\xd6\xa4\x11\x02\xb4\xc9\x8f\x87\xc3\x61\xd0\x00\x9e\xf9\x48\xfc\x25\x60\xe6\x05\x17\x90\x94\x98\x05\x69\x12\xc0\xc4\xaf\x0c\x03\x70\x6c\x58\x5c\x7a\x4b\x22\x5c\x2e\xe7\x9b\xf5\xc4\x38\x4b\xac\x21\x8f\xc2\x3a\x5e\xa7\x71\xac\xa0\xe3\x9a\xcd\xf1\xad\x1f\xe3\x20\xde\x02\x28\x59\xe6\x2f\x19\xa5\x1c\x4a\x60\xd6\x5c\xf8\x7a\x7d\xb3\x42\x49\x5d\x21\x90\x4a\xd0\xa2\x05\x0c\x02\xcc\x1d\xb1\xc3\xa5\xcd\xc9\x98\x7c\x58\xe0\xd8\x54\x8a\x1f\x04\xc4\xb6\x50\x02\x94\x87\x86\x16\x0f\xf7\xb0\x0f\x39\x6e\x6f\x6d\xe3\xe5\x23\xfd\x04\x4f\x09\x35\xa8\xad\xab\xb2\xcd\xbe\xe0\x40\xd1\x7c\x11\x70\x38\x5f\xdf\xd3\x1d\xc7\xe1\x36\x1d\x2f\xa7\xa7\xee\xb1\xef\xea\xaa\xeb\xf1\xf2\x0a\xa1\xff\xc1\x28\x59\x80\xd3\xed\x66\x6b\xe4\xb4\xb0\x5c\x59\xfc\x0a\x9c\x16\xe9\x2c\x4e\x1f\x1f\x43\x23\xa7\xf9\xf9\x37\xe5\x34\x3f\xcf\xe2\x34\x0c\x1f\x1f\x8d\xac\xf6\xf9\x6f\xca\x6a\x9f\x5b\x58\xd5\xc0\x7f\x4b\x56\xcc\x7c\x2c\x4f\x55\x53\xf8\xc7\xaa\xec\x9a\xca\x22\x0d\x76\xf3\xe4\x98\xe4\xc7\x6f\xc3\x65\x8c\x0a\xef\x3b\x8f\x6e\x13\x79\xdf\x79\x51\xdd\x3f\x3c\x8d\xbb\x2d\xb4\x98\x6d\x22\xdd\x97\x62\xc5\x68\x47\x55\x43\x90\x67\xf5\x7e\xbc\xe2\xdf\x03\x97\xa4\x8e\x28\x5d\xa7\x09\x78\x49\x6a\xcc\x23\xd2\x24\x25\x3b\x43\x2e\x5a\x4a\x6f\x19\xc6\xad\x87\x92\x16\xaf\xef\xfd\xea\xda\x2d\xc6\x14\xe6\x5a\xdd\xd3\xd7\x40\x32\x28\x70\xdd\xa0\x13\x6a\x5a\xbf\x41\xe9\xf5\x88\x52\xbf\xa8\xd8\x09\x77\xfc\xf3\xe1\x26\x8f\x1a\xd0\x0d\x9a\x00\x45\xfe\xfd\x2a\x0f\xf6\x7e\xef\x17\xad\x8f\xfa\x3a\x29\x53\xdd\x66\xf3\xfc\x33\xb0\xa2\xb0\x5c\x05\x4e\xa3\x25\xc7\x60\xc1\x21\x3d\x9d\x86\x8c\x06\xd8\xc9\xf6\x63\x36\x3a\xfc\x3f\x7a\xcf\x8b\xb9\xf1\x30\x5a\x2d\xa2\x38\x66\x49\xe9\x14\xee\x87\x6b\xd0\xf5\xb5\xf3\xeb\x3c\x39\xa2\x0b\xc9\x6d\x22\xa7\xa2\x7b\xaa\xea\xe4\x98\x75\x2f\xe4\x22\x9b\xd2\xfd\xea\xd7\xfb\xda\xb5\xf7\x13\x9d\xdf\x64\xcc\x8d\x27\x16\xff\xd2\xa0\x24\xad\xca\xfc\xe5\x13\xb4\xa8\xa5\xab\x8d\x11\x23\x4d\xb7\x00\x0c\x21\xed\xcd\x97\x24\xbf\x22\x97\xd1\x94\x59\x23\xb7\xb6\x65\xb6\x7c\x92\x93\xcd\x68\x47\xe8\x07\x1a\xd2\x80\xa6\xce\x10\x33\x76\x10\xe3\xc2\xcd\xc7\x77\x5e\x28\x58\x15\xbe\x5d\x0c\x81\x28\x89\x74\x26\x12\x58\x84\xcb\x58\x65\x02\x7b\x2c\x9d\x8f\x49\x2e\x44\x00\xfd\x5e\xf4\x14\xcd\xb6\x00\x68\x46\x93\x44\x23\x98\xea\x72\xb7\x85\xa9\x4a\x63\x53\xe7\x49\x56\x76\xa8\xef\xcc\x76\x5e\xca\xa0\xb2\x82\x53\xa8\xb0\x62\x55\xee\xf6\x6c\x59\x53\x06\xc6\xf8\xee\xc7\xf0\x9e\x92\x17\x98\xba\x23\x17\xe7\xe7\x85\x13\x9c\x30\x02\xa6\xeb\x6f\x2a\x3c\xe8\x05\x41\x27\x48\xc7\x49\x4d\x12\x61\x18\x26\xf0\x6e\xaa\xda\x29\x90\x78\x08\xd1\x26\xa4\xe1\x9b\xd1\x53\x94\xc9\x97\x12\xc0\x58\xfc\x52\x5c\xf3\x2e\xab\x73\xf4\x69\x01\xd5\x62\x12\x9f\x86\xfc\x32\xb2\x73\x92\xae\x3d\x93\x1a\x92\x94\x06\x4a\xa0\x45\xab\x01\x05\x15\xee\xdd\x0f\xd7\x9b\x31\xe8\xbc\x7b\x95\xda\xb5\x4a\x72\xf5\x8b\x23\x62\x57\x25\x87\x9f\xb6\x8b\x92\xda\x2d\xb2\x11\x13\x49\xae\x02\x5c\x49\x93\x3b\x24\x5f\x41\x93\xfa\x44\x10\x50\xff\x02\xbc\x2e\x26\x4a\x62\xa5\x26\x03\xf3\x8d\x98\x06\x27\xf2\x1f\x62\x15\x35\xc1\xca\xed\x77\xad\x5e\x4d\x54\x26\x23\xc7\x0a\xa5\x5e\x32\x27\x43\x41\x3e\xfa\x91\xb4\x00\x2d\x4f\xbb\xaf\xa4\x1d\x90\x93\x03\x6c\x01\xce\x49\x3e\x38\x8b\x58\xda\x2e\xe9\xb2\xe3\x13\x94\xaa\x8a\x61\x5d\x85\x11\x90\x33\x6d\xf9\x25\xc9\xb3\xd4\x3f\x21\x94\x62\xbb\x24\xe5\xf7\x78\xd2\xbf\xa2\x8e\x7a\x07\x27\x0e\xa0\x99\x3d\x39\xd6\xae\xaa\xf0\x5c\x01\x06\x8f\x7c\x36\xc5\x78\x7f\xf5\x49\xc2\xaf\x7d\xfc\x24\x51\x36\xa4\x9e\x91\x8c\x89\xc8\x52\xe8\x66\x5d\x6c\x31\x34\x59\x67\xad\x83\x45\xb8\xd9\x2e\x36\x8f\x8b\xe5\xe3\x83\x29\x9d\x80\x30\xa7\x97\x19\x59\x32\x64\xe9\x62\xf9\x9c\xb0\x3f\x93\x0e\xa5\x9e\xbc\xc0\x20\xe5\xca\xd6\x03\x4b\x82\x2a\x4f\x27\x20\xaa\x78\x10\x59\xcd\x8a\xe4\x8c\xf6\xd7\x26\xff\xf6\x5d\x9a\x74\xc9\x9e\xfc\xfe\xd8\x7e\x39\x7f\xd7\x17\xf9\xd3\xf1\x92\x34\x2d\xea\xbe\xbf\x76\x27\x7f\xb7\xf8\xb0\xfa\x43\xfb\xe5\xec\xf5\x45\x5e\xb6\xdf\x7f\x73\xe9\xba\x7a\xff\xf1\xe3\xf3\xf3\xf3\xf2\x79\xb5\xac\x9a\xf3\xc7\x28\x08\x02\xdc\xf4\x1b\xef\x4b\x86\x9e\xff\xb9\xea\xbf\xff\x86\x1c\x46\xf1\x76\xdf\x7c\x58\xfd\xf1\xc3\xea\x0f\x75\xd2\x5d\xbc\x53\x96\xe7\xdf\x7f\xf3\x21\x5a\x51\x7e\xbf\xf1\xd2\xef\xbf\xf9\x29\x5a\xae\xbc\xcd\x72\xbb\xfa\x71\xb9\xf1\xd6\xcb\x78\x75\xf4\x97\x6b\x3f\x5c\x06\xeb\xe5\x7a\xe3\x87\xcb\xb5\x17\x2e\x43\x7f\xb9\xcb\xc3\x65\xe8\xe1\x9f\xab\xe5\xda\x5f\x2d\x77\xc7\xe5\xc6\x5f\x6e\x56\x5e\x88\xff\x8d\xb6\x5e\xb8\x8c\x96\xdb\xdc\x5f\x7b\xeb\xe5\x06\xa3\x58\x2d\x63\x7f\xb9\x23\xa8\xc2\x65\xf8\xeb\x37\x1f\x29\x1f\x98\xc9\x0f\xab\x3f\xbe\x93\x24\xd1\xa0\x1a\x25\xdd\xbe\xac\xd8\x5f\x62\xdd\xa0\x6f\x58\x79\xbc\x61\xa5\x44\x85\x1a\xee\x74\xb1\x12\xa5\xa1\x70\x1c\x8c\xba\xf6\x07\x0f\x2c\x35\x28\x01\xcb\x8f\x37\xad\x0a\x2c\x68\x00\x15\xc2\x16\x06\x08\xea\xa9\x85\x01\x03\x17\xff\xa1\xcc\xe9\x85\x1d\x8c\x4d\x52\x07\xae\x75\xc4\xce\x4d\xb8\x25\x90\x73\xa5\x2a\xed\x41\xaf\x49\xf1\xc0\x1e\x75\xe8\xcb\x6d\xde\x2c\x1a\xf4\xa3\xab\x6a\x93\x7a\x78\x34\x31\xb4\xa1\xf6\x75\x79\xbc\xb6\x5d\x55\xf8\x6c\x0d\x60\x34\x03\x12\xd8\x4c\x3b\xf0\xed\x8a\x2e\x69\xa8\xe1\x79\xf8\xb8\xc6\xcb\x1c\xbd\x3b\xbf\xad\x39\x58\x7b\x31\x68\x0e\xe8\x0e\x2c\x33\x07\x5e\xf0\x63\xe0\x45\x97\xf5\xaf\x45\xe0\xc5\x3f\x06\xde\xea\xb2\xd6\x67\xaf\x37\xcc\x55\x26\x5b\xb6\x6b\x42\x5d\xe2\xc7\x5d\xdd\x7b\x61\x50\xf7\x8b\xff\xbf\x5a\x37\xf2\x92\x9f\x20\x24\x2a\x17\x26\x2b\x36\xee\x1f\x67\x19\x29\x58\x47\x0d\x56\x0a\xd0\xd4\xaf\x65\xa6\x60\x3e\x74\x73\x62\x87\x1b\x0c\x95\x16\x78\x3b\x9a\x3e\x18\xd6\x64\xff\x00\x79\x4c\x1a\x40\x4b\x1b\x17\x33\x4b\x18\xbc\xc3\xd6\x02\xed\x0c\x06\x57\x5d\x40\x0a\xd2\x50\x57\xbb\x06\x8a\xc2\x4a\xda\xd0\xf0\xa6\xac\x05\x2d\x34\xe1\xd1\xb2\x80\xda\xa5\xa8\xf3\xe6\x24\x44\x53\x33\x83\x0c\xd9\x20\x73\xd9\xab\x8c\x2a\xd5\xb0\x2c\x21\x1c\x7b\x0b\x02\x55\xa6\x77\xf0\xc0\x52\x77\xbd\x99\x15\xe5\xd9\x94\x79\x8c\x19\x66\xbc\x1d\x7c\x62\x86\x82\x9c\xbb\x4d\x54\x4b\xd3\x7b\x06\x7f\x4f\x54\x09\x7d\xb5\x01\x70\xc2\xa7\x0c\xc4\x6a\x7d\x44\xe0\x9e\x25\xad\x98\xea\x01\xb1\xf8\x5f\x8d\xff\x69\x6c\xb7\x3b\xfc\x88\x8d\x75\x9a\x78\x8f\xc9\xed\x61\xa2\x23\xac\x92\x64\xdc\x34\x4c\x21\x52\x37\x77\x0e\xdf\xc1\x0a\x8c\x7b\xe4\x6c\x6f\x62\xcb\x3e\x0f\xc1\xae\x19\x26\xa1\x05\x76\x62\x06\xea\x6c\xba\x4d\x3f\x53\x3b\xfb\xdc\x03\xf8\x54\x14\x6d\x7a\xd0\x54\xca\x46\x04\x6f\x5f\xfc\x64\xe5\xd7\xdd\x62\xa1\x4f\xa1\x8c\x78\xff\xf3\x6d\xb2\x44\x51\xb0\x88\x57\xf3\x36\x59\x58\x6f\xed\x21\x27\x03\x52\xc6\x8c\xbd\x1d\xf3\xf7\xb0\xd1\x32\x84\x1b\x94\x27\x21\x36\xf1\x23\xcf\x8f\xbc\xad\xb7\x15\xa3\x93\xb6\x6b\xaa\xcf\x48\x6a\x80\xe3\x93\xc0\x0b\xf2\x95\xb7\x2a\x02\x7f\x85\x63\x2d\x1e\x48\x1c\xb3\xe6\x98\x23\xaf\xf9\xfe\x9b\x65\xac\x94\x1d\xfb\xef\xbf\x59\x7d\x03\x57\xbd\x98\xab\x68\x2b\x08\xe2\x3f\xc3\x96\x0c\xd3\x06\x97\x4d\x19\x09\x14\x56\x1f\xdb\x94\x17\x14\x1a\xdc\x96\x61\xe8\xff\x43\xb3\x05\xfa\xd6\x8c\x06\xea\xb4\x3d\x63\x21\x30\xab\xd9\x1b\xb6\x69\xf8\x04\x35\x6e\xd4\xf0\xc9\xf9\x77\xb0\x55\x63\x32\x26\x72\xf8\x36\xd7\x9a\xfc\xd7\x76\xcd\x7f\xd9\x48\xd0\x46\xfe\x15\x36\x76\xec\xb6\x0e\xd4\xeb\xaf\x65\xec\x4c\xbc\x40\xc6\x68\x1a\xd6\xbe\xc9\xe3\x68\x48\xcd\xf0\x6e\x9b\x3d\xee\xe6\x74\xa2\x9d\xfb\xa6\xcf\x7d\x16\xdc\xd0\x76\xc6\xe6\xcf\xd0\x76\xfe\xf6\x8f\xb1\xe9\x4d\x59\xa9\x5a\xe9\x9a\x46\x72\x02\xdc\x79\x23\x68\xae\x60\x6d\x4d\x67\xee\x09\x0c\xed\xef\xdf\x12\xb2\xa2\x50\xe5\x7c\x17\x1f\xb3\xa2\x7a\x17\x4c\xa0\x45\x71\x60\xce\x68\x2d\xa6\x9b\xcc\xda\x20\x9a\x3d\xb9\x27\x9a\xdf\xa7\x14\x5f\x71\xab\x68\x0e\x46\xf5\x76\xce\x7a\x13\x6c\x52\xe8\x90\x3e\xa9\x98\xee\xc5\xd7\xda\x2e\x72\xc7\x67\xdd\x30\x32\xf8\x26\x3b\xfb\x6f\xdf\x32\x52\xa7\xc5\xdc\x4d\xa3\xfb\xd9\x99\xdc\xdd\x30\xb3\x66\x9f\xa7\x86\x0e\x1a\x27\xe9\x04\xbc\xfb\x06\xd2\xec\xe9\x69\x6b\x3b\x67\x23\x09\x56\xc1\x59\x5b\x49\x53\x28\xbe\x52\x64\xa9\x1c\x35\x1a\x8f\x7b\x91\xb7\xa1\x9a\xea\xd9\x23\x47\xbe\xf4\x63\x47\x52\x7b\xd1\xe1\x09\xf9\x12\x2c\x29\x73\xc5\xc6\xb4\x3f\x7f\xb9\xb6\x5d\x76\x7a\xf1\xf9\x73\x20\x66\x32\xf4\xf9\x35\x00\x85\xd4\x0b\xe0\xa4\x14\x7c\xe6\x4a\xc7\xad\xe4\xc7\xd1\xe5\x01\x76\x5e\x39\xec\x0f\xbc\x8e\x4e\xb0\xc1\xcf\xf3\x99\x11\x02\xe7\x4b\x95\x57\x47\xc4\x96\xd2\x22\x52\x96\x91\xf8\x82\xf6\x6d\x64\xc8\x3c\x90\x53\xe2\x84\x47\x4c\xec\x2b\x78\xf2\x73\xfa\x00\xda\xf8\x40\x26\x96\x7c\x7b\x69\xb2\xf2\xf3\x78\x06\x0d\x3a\x90\x06\x1e\x47\x83\x04\xc3\x47\xc9\xb9\x3b\x56\x34\x86\xb3\x7c\xaf\xcb\x43\x67\x78\x26\x5f\xbd\xa9\x61\x7c\xfc\x96\x31\x05\x6a\xcb\x70\xc3\xe2\xda\xa2\x86\x07\x0c\x64\x1b\x96\x1c\xbe\x07\x4a\x5b\xbd\x50\x2b\x98\x3a\x4b\x3c\xde\xfe\x10\xcf\x13\xbb\x5d\x50\x99\x3a\x9a\x6b\xba\x37\x62\xba\xeb\xa1\xb0\x0a\xdd\x06\xf9\x0a\x17\x4e\xfe\xfa\xd4\x9d\x6f\xaa\x60\x05\x73\xbf\xa0\x72\xe8\x4a\x30\x89\x08\xf8\x96\x2a\x86\x5e\xb2\xe0\x1f\x37\x54\x5e\x4f\x9d\x75\xb7\x04\xa3\x1a\x6f\x5a\x60\x6c\xfc\xd7\x8d\x5f\xa3\x58\x6e\xe2\xd7\x44\x06\xe4\xaf\x0f\x0e\xc0\x1e\x01\xb8\xb1\x77\xe5\x7c\xf4\x05\x95\x5d\x3b\x72\xcb\xf3\x7a\xd8\xef\x79\xb2\x17\x71\x65\xbf\x49\x0b\x25\x2c\x0e\x77\x24\xdf\x07\xc1\xe6\x31\x7d\xd4\x70\x6d\xa2\xe3\x51\xc2\x25\xc8\x71\x40\xcf\xf7\x4a\xcc\x52\x5c\xed\x16\xe1\x9a\x89\x91\x49\x71\x40\x28\x49\x73\xc0\x39\x48\xf5\xeb\x48\x40\x7e\x88\x93\xfc\x1c\x08\x3f\x2c\xf9\x7d\x65\xe7\x16\x7b\xde\xa2\xbd\x54\xcf\x3f\xc8\xdd\x69\xaa\x3a\xad\x9e\xb1\x55\x3f\x9f\x73\x34\x29\xf5\xe8\x78\xd4\xf8\x8f\x8f\x87\x3b\xf8\xdf\x03\x43\xe3\xd2\x0b\xde\x6e\xb2\x2f\x77\x0e\xf4\x90\x54\xc5\x2e\x0b\x76\xbd\x49\x96\xc5\xf0\xd6\x9a\x88\xc7\x45\x9f\xe3\x64\x13\x6d\x76\x0a\xb6\x78\x1d\x1f\x36\x91\x82\x4d\xd4\xe8\x91\xc4\x74\x57\xc3\x55\xb0\x08\x49\x7f\xa1\xbe\x2a\x6a\x3d\x22\x76\x53\xec\x19\xc2\x70\x57\x6d\xc7\x36\x80\x72\x0b\xdd\x9a\xa3\xde\x54\xde\xea\x05\x79\x14\xc7\xf1\xe1\x9e\x5e\xec\xc1\x91\xba\x4f\xc5\x8d\x3d\xba\x7b\xe4\x69\xee\x1b\xbb\x40\x86\x2f\xe4\xd0\xa9\x04\x01\x8b\x8b\x86\x47\xe1\x6e\xb7\x52\x35\x3c\x44\x5b\xb4\x5a\x4b\xb8\x24\xfd\x66\xe8\xa7\xfb\xb8\x8d\x16\xe1\x2e\x58\x3c\x6e\xb5\x1e\xaa\x9a\xcd\x50\xba\xe9\xb5\xb3\x00\x66\x68\xb5\x4b\x0b\x48\xa7\x79\x77\xe6\x68\x34\x95\xaf\x2a\xf4\xe3\x76\xbd\x0a\xe6\xf3\xbf\x07\x46\xe6\x4e\x6d\x86\xfb\x72\xdf\x38\x67\xe5\xa9\x9a\x90\xc2\x36\x89\x0e\x9a\xea\x91\xc2\x11\x85\x8b\x0e\x87\xab\xdd\xfa\x71\xa3\x22\x0a\xb7\xc9\xee\x30\x22\x12\x15\x98\x20\x9e\xee\x55\xbc\x5b\x84\xdb\xcd\x22\x7c\x8c\xe5\x6e\x29\xba\x4b\xb0\xb9\x29\xae\x5b\x97\xdd\xb5\x76\x1a\x1c\x50\x59\xda\x85\x59\xfa\x4a\x64\xa9\xb2\x1d\x6c\x83\xed\x69\x26\xdb\x7b\x75\x14\xee\xd3\x54\xa8\x0b\x77\x0e\x28\xcb\x08\x35\x95\x46\xf0\xfd\xe9\x74\x0c\x83\xed\x93\x9a\xb0\x0a\x17\x4a\x88\xdc\xb2\x12\xbe\x47\x41\xb2\x0b\xd4\xac\x2f\xe9\xea\x11\x05\x81\x84\x4e\x54\x5b\x4e\x61\xba\xa3\x51\x14\x2d\xc2\x2d\x8e\x3a\xb4\x8e\x2a\xca\xcb\x71\xaa\xfa\xfb\x76\x39\xb8\x6b\xb1\x53\x0b\x40\x91\x87\x1e\xc1\xba\x6c\xec\x02\x15\xb3\xd2\x85\xe3\xe6\x31\x56\x64\x3f\x5b\xa3\xe7\x74\x44\x57\x6a\x43\x77\xee\x1c\x6e\x9a\xb5\xcb\x3e\xaf\x87\xdd\x51\x68\x97\x7a\x44\xe2\x62\x83\x8f\xbb\x68\xb5\x5a\x29\xa8\x0e\x69\x14\x72\x97\x46\x51\x89\xea\xcc\x90\xbb\x74\x2f\x5e\xec\x56\x92\x77\x61\xd8\x64\x5d\x66\x08\xdd\x4c\xb1\x6b\xdf\xdd\xd5\xd8\xa5\x01\xa0\xc5\xbc\x2b\x73\x0c\x32\x15\xac\x2a\xed\x28\x3c\x45\xe9\x6c\xe6\xf7\xfa\x90\xdc\xa7\xbf\x70\x47\xee\x1b\x5f\x92\xea\x6a\xda\x16\xed\x4e\x8f\xa7\x44\xb5\x45\xa4\x50\x40\xe3\x6a\x91\x23\xb4\x41\x2a\xb2\x34\x41\x01\x8a\x05\x64\xa2\x02\x53\xec\x0e\xfd\x0b\x37\x8b\x28\xdc\x2e\xa2\xf0\x51\xe9\xa1\xa2\xc0\x14\xa1\xbb\x29\x76\xeb\xbe\xbb\x06\x3b\xc0\x03\x0a\xcc\x7a\x32\xd7\x08\x13\xc9\x6a\x0e\x30\x7d\x4c\x4f\x73\x99\xdf\x6b\x63\x72\x9f\x02\x83\x1d\xb9\x77\x7c\x5d\x13\xac\x3d\xa9\x77\x0b\x68\xd6\x35\x8e\xc2\x29\x86\x5b\x45\xdb\x48\x5b\x9e\xa5\x51\x18\xad\x47\x44\xb2\xe5\x6d\x3e\x3b\xf4\x6b\x17\x2d\x76\xbb\xc5\xe3\x4a\xee\x94\x66\x74\x9b\xcf\x8e\x26\xd7\xad\xc3\x73\x0c\xee\x14\x38\x68\x6e\x71\x17\x66\xad\x7e\x89\x24\xb5\x45\x7b\x98\x84\xe9\x4c\xb6\xf7\xea\x18\xdc\x6b\x68\xf5\x2e\xdc\x35\x9c\x6c\xf3\x5a\xdd\x27\x9e\xdc\x0f\x55\xda\xb9\xed\x0c\xcf\xc3\x29\xaa\xab\x4a\x6e\xba\xab\xc2\x7e\xbb\xa1\xaf\x8a\x16\xab\x24\x54\x85\xe6\xec\x1b\xbe\x05\xc1\x62\x71\xd7\xe4\x59\x2d\x01\xa5\xd6\x3a\x37\x6f\xfb\x78\xe6\x70\xcf\x55\xf5\x7b\x7a\xa7\x6b\xfd\x44\x1f\xdf\xa6\x15\xda\xee\xf2\xe4\xd6\xa9\xd6\xd2\x65\x16\xcc\xc7\x0a\xcd\x83\x59\xfb\xcb\xc1\x6e\x11\x86\xdb\x45\x18\xd9\x7a\x6d\x98\x0d\xe6\xfd\x66\xde\x11\xa7\xf9\x70\xcf\x2e\xf3\xcc\xb6\x96\x39\x71\xe7\xae\xf3\x1d\x0a\x70\xef\xbc\x78\xeb\x2e\xf4\x64\x4f\xdf\xac\x27\xf2\xae\xf4\xe4\xf6\xab\xd2\xce\x69\x0d\x33\x13\x27\x38\x2f\x9c\xf7\xa5\x85\x0b\x64\x86\xbe\x9a\x66\x84\x61\x9f\x9a\xb3\xef\x36\x1f\x66\xef\x4e\xcf\x6a\x69\x9b\x0b\xf7\xec\x56\xcf\x1e\xee\xbb\xe7\xc1\x9b\x76\xaf\x27\xfa\xf8\x36\xad\x10\x77\xb3\x27\x37\x71\xc5\x46\x4e\xfb\xd7\x73\x10\x42\x8a\xef\xb8\x9f\x1d\xad\x16\xe1\x26\x5a\x84\xbb\x35\xdc\x41\x83\xce\x83\xfb\xdb\x9c\x67\x27\x85\x9f\xb9\xab\xed\xde\xcc\xa2\xea\x77\xec\x72\xcf\x1a\xd7\x7b\x95\xfc\x0d\xbb\xde\xb6\xae\xbd\x71\xf8\x95\x5d\xf0\xc9\x4d\x5e\xa5\x9d\xe3\x16\xcb\x5c\xb4\x90\xae\xcf\xd8\x04\x8f\xe3\x45\xf8\xb8\x5a\x6c\x8d\xdd\x35\x28\xbc\x69\x4f\x9c\xb3\xef\xa4\xf3\xf3\xb7\xc1\x67\xb5\xb4\x68\xfe\xbd\xdb\xe2\xb3\x07\xfd\xde\x29\xf0\xb6\x6d\xf2\x89\x6e\xbe\x4d\x31\xe4\x5d\xf3\xc9\x3d\x62\xb9\x99\x8b\xad\x9f\x89\x12\x9a\x01\x33\xf6\xcd\x87\x93\xcd\x70\x3f\x0d\xfa\x6f\xd8\x47\xe7\xac\x3b\xa9\xff\xec\xdd\xf3\x39\x0d\x2d\xca\x7f\xcf\x6e\xfa\xdc\x61\xbe\x57\xef\xdf\xb4\xbb\x6e\xef\xe0\xdb\xb4\x41\xda\x6d\x9f\xdc\x55\x96\x5a\xb9\x5a\xfe\x59\x48\x21\xad\x77\xde\x6c\x5f\xef\x16\xd1\xfa\x71\x11\xc5\x81\xa1\xa3\x06\xad\x87\x37\xdf\x39\xe3\x4e\x4a\x3f\x77\xbf\x7d\x46\x3b\x8b\xca\xdf\xb7\xff\x3e\x73\x98\xef\xd5\xf9\xb7\xec\xc7\x5b\x3b\xf8\x56\x55\x10\xf7\xe7\x27\x37\xa6\xc5\x46\x2e\x56\x7e\x16\x42\xd8\xc6\x3b\xed\xd0\xc7\xd1\x22\xde\x2d\x36\xc0\x82\x0e\xd8\xa9\x97\x70\xab\x7a\xce\x39\x76\x34\xee\xb3\xf6\xe9\xdd\x9b\x59\x0d\xfb\xdc\x7d\xfb\x79\xa3\x7a\xbf\x51\xbf\x7b\x1f\xdf\xd6\xb5\xbb\x06\x3f\xcf\xca\xcf\x37\xc3\x55\x0a\xb6\xcb\x6b\x3c\xda\x4e\x1a\xcb\xba\x1d\x04\xf1\xe6\xb0\xd2\x9a\x5c\xcb\x14\x35\x98\xf1\xb1\x9d\xfc\x55\xb4\xe4\xaa\x6b\x6c\x29\x1e\x96\x97\x39\xd0\xbe\x88\x96\xba\xae\xb2\xad\x39\xe3\xb1\x77\x72\x95\x87\x3c\xdd\x72\xe8\x4a\x86\xe7\x7c\xfb\x6a\x19\xcb\x05\x1a\x6d\x21\xd0\x18\x53\xbc\x7f\x95\x8c\xec\x18\x25\xb9\x1c\x63\x79\xdf\x60\x80\xf9\x4e\x00\x17\xf3\x09\x91\x4c\x3f\xe4\x1a\xd1\x2f\xdd\x4b\x8d\xbe\x3f\x5c\xbb\xae\x2a\x3f\x8d\xd0\x0b\xa1\xb2\x41\x2d\xea\x0c\x75\xed\xf5\x50\x64\x62\xa5\x78\x9f\x6d\x79\x4a\x52\x04\xdd\xbb\x60\x97\x19\xe8\x7d\x0e\xdc\xeb\xa4\x79\xb2\x57\xbb\xbf\x49\x62\x20\x69\x7a\x8b\x24\x49\x11\x9d\x97\x78\xfe\x3d\x0c\xd7\x2c\x02\xf2\x56\x42\x9e\xd4\xad\x54\x2d\x26\x71\x1a\x20\x70\x80\xac\x5f\xc6\x62\xe3\x18\x0c\x0f\xe7\xec\x2f\x59\x9a\xa2\x12\xba\xb7\x43\x61\xbd\xe5\x8a\x5d\x6f\x79\xb2\xd4\x39\x4b\x42\xe0\xce\x5d\x1e\xdc\xdc\x2c\xc8\x5f\x39\x3a\x75\xf4\xaf\x86\x3e\xde\x87\xff\xbc\xd6\x7a\x6f\x5f\x35\x13\xfc\x7c\xc9\x3a\xe4\xb7\x75\x72\xc4\x02\xa4\xb7\x00\x55\x5b\x96\x9c\x3a\xd4\xc0\x17\xbf\xc4\xbb\x69\xcb\x28\x8e\xf5\x97\xa0\x59\x29\xbf\x7e\xf6\xee\x9d\xf8\x2e\xf4\x72\x85\x0a\x7a\xfb\x6a\x98\x44\x2c\x15\x3b\x2f\x87\x5e\x79\x18\x5e\x91\x60\xbf\x29\x75\xb0\x89\xde\x19\x54\xd4\xdd\x0b\xeb\x92\x72\xb3\x6e\x00\x2d\x50\x79\xb5\x65\x0b\x63\x39\xe9\x79\xd2\xb0\x30\x08\x02\x39\x6f\xd8\x29\xaf\x92\x6e\x8f\xc1\x9e\xc6\x4b\xa2\x61\x20\x3c\x90\xc1\xec\x18\xbf\xf1\xb7\x5f\xd2\xdc\xf3\xd8\x49\xa8\xb7\xcc\xe4\xa5\xa0\x70\x99\x8e\xe0\xcf\xb3\xb6\xf3\xdb\xee\x25\x47\x86\xfb\x6e\xf3\x9f\x41\x12\x9f\xc5\x0b\x63\x53\xfe\x31\x49\x5a\x44\x86\xb7\x66\x78\xbd\xe1\x09\x94\x29\x1d\xdd\x1b\x7f\x41\x83\xc0\x90\xcb\x9a\xe6\x1b\xb5\x72\xfb\xb6\x70\x24\xd4\x16\x46\x5a\x00\xb1\xed\x66\x07\x10\x2b\x52\x47\x62\x45\x3a\x87\xd8\xe3\x63\x04\x10\xcb\xcf\x8e\xc4\xf2\xf3\x1c\x62\x61\x14\x04\x00\xb5\x3e\x77\xa4\xd6\xe7\x66\x6a\xcc\xca\x78\xca\xbc\xc1\xb3\x84\x60\xe4\xaf\x75\x28\x99\xfb\x02\xe5\xc2\x32\xd3\x7c\x00\xdd\x6f\x6e\x7e\x82\x3b\xac\x8e\x6e\xb2\x26\xcd\x0f\xd4\xa9\x09\x33\xc4\xf2\x49\xe9\x92\x0d\x9e\xd4\x31\x33\xca\x97\xf2\x25\x4a\x57\xc5\xfa\x57\xb4\xef\x90\x44\xb9\x4e\x99\x04\x0c\xb5\x51\x84\x6d\xed\xd7\x4c\x19\x4b\xd2\x50\x7a\xc9\x9a\xe0\xe6\xb6\x51\x19\xbd\x03\x19\x1f\xcb\xd5\x6e\x71\x58\x14\xac\xbf\xcd\xa8\xc8\x4b\x22\x33\x59\x96\x43\xc4\x46\x77\xb8\x9d\xfe\x5b\xa8\x83\x3e\xbf\xac\x7a\x61\xeb\xca\xc4\xf8\x5b\xfb\x0f\x8f\xff\x30\xea\xbf\xf4\xf4\x3d\xb7\x02\x95\xdd\xff\xf9\x9e\x72\xf8\x69\x61\x83\xc1\xd4\xec\x10\xa4\xff\x76\x90\xae\xaa\x3f\x89\x46\x9b\x89\x86\x26\x3c\x18\xda\xa5\xd9\x97\x2c\x45\xcd\x6d\x58\xda\xf2\x35\x06\x5b\x72\xa8\x2b\x5d\x61\x84\x84\xb7\x10\xe9\xbb\x70\x02\xda\xac\x43\x96\x17\x50\x95\xd8\x29\xa4\xc1\xd3\x31\x47\x49\xb3\x3f\x54\xdd\xc5\x3d\x47\x00\x7f\x89\x4d\x5f\x9a\x4e\x5e\xe6\x0f\x14\x76\x79\xd0\x2e\x17\x4a\x51\x72\xb8\x09\x77\xe1\x01\x0c\xac\x8d\xdb\x6e\x0a\x95\x61\xb7\x44\x26\x43\x4b\xc5\x4d\x0e\x47\x22\xfc\xf0\x96\x4c\x64\x8c\xac\x65\x32\xee\xe1\xb5\x65\x7b\x48\xd2\x39\x12\x44\xa9\x19\x61\x06\x88\x0b\x4a\x52\xc1\x30\x49\x6f\x54\xf1\xe8\x7c\x09\x3e\xfa\xa6\x47\xd2\x32\xcb\xd6\x58\x04\xf7\x15\x7a\xee\xcb\xa0\x77\xa2\x72\x09\x21\xff\x42\x88\xfe\xf9\x14\xb7\x3c\xc0\x25\xbe\x51\x65\xc8\x70\xa2\xe3\x13\xf6\x14\x48\x05\xf9\x6d\x48\x03\xb2\x0f\xbd\xd0\xa3\xd3\xd7\x80\x48\xda\x8a\x03\xea\xf7\x53\xf5\xc2\xde\x0e\x54\xcd\x9e\xd8\x96\xb9\xd5\x89\x1a\x68\xc1\x24\x04\xcc\xb7\x21\x48\xa2\x3d\xec\xaa\x2a\x3f\x24\x8d\xf5\x25\x36\x35\x65\x09\xcd\x97\xd2\x25\x4d\x27\xe1\x30\xa7\x7e\x91\x19\xa1\x7f\xd2\x4d\xbe\x53\xd6\xb4\x9d\x7f\xbc\x64\x79\xfa\xa0\x31\xac\x41\xdc\xe4\x07\xd3\xea\xde\x86\x3a\x4f\x86\x76\xa0\x06\x68\x50\x6c\x9f\x51\xf6\x3f\x0f\xb7\xd1\x1a\x53\x8f\xc8\xe3\x2e\x65\x9d\xa4\x54\xba\x76\xda\xc2\x9a\xd4\x73\x81\x0b\xdc\x7b\x13\x13\x52\x9d\x16\x6c\xfb\x6d\x9d\x67\x9d\x92\xcf\x76\x19\x6f\x22\xe9\xa9\x48\xba\x8c\x61\xa5\x06\x1c\xd4\x8b\x2f\x2c\xeb\x36\x1d\x0e\x58\x76\x8b\x40\xce\x4b\x02\xd6\x88\x2d\x0c\xa4\x35\x50\x00\xec\x26\x7e\x07\xb7\xe7\x9b\x8c\x86\x6a\x55\x48\xca\x73\x9a\x6c\xd9\xcb\xde\xbd\xd3\x76\x49\xad\x34\xf3\xb3\x23\x4d\x88\xa4\x46\x71\xb0\x9a\x64\x56\xa6\x59\x83\x8e\x3c\xab\xcc\xb5\x28\xa5\x84\x4a\xe3\xbc\x35\x66\x21\x9a\xb6\x9e\x72\x85\x34\xd9\xc7\x4d\x54\x23\xa4\x75\xd6\x2b\x96\xd0\x38\xfd\xf1\xc2\x48\x99\xfd\x66\x5a\x16\x33\x00\xd1\x73\xb6\x07\xe0\xac\xb7\xcf\xc6\x99\x92\x71\x61\x77\x96\x8d\xd0\x4d\x98\xc8\x13\xed\x9f\x46\x54\x28\x16\xdd\xa7\x96\xe4\x6c\xaa\x85\x27\xec\x7e\x93\x74\x5c\x87\xaa\xff\x34\x4d\x48\x6c\x86\xb9\xae\x4c\x6d\xe6\xe0\xd7\x91\x02\xbb\x8b\x64\x5f\x0e\xcf\x26\xb6\xf5\x16\x3c\xc0\x9f\x48\x44\xa7\x67\x5e\xb9\x40\x7e\x55\x9c\x9b\x6d\xd7\xa0\xee\x78\x91\x3e\x47\x08\x98\x7f\x10\x53\xf3\x2d\xc0\x1a\x9e\x8c\x4d\xaa\x13\x53\xbc\x59\xaa\x84\xec\x6f\x13\xeb\x22\xce\xe0\x07\x3d\xcd\x9d\x89\xdd\xef\xa6\x79\x97\xc0\xc0\x8e\x48\x80\x96\x5e\x49\x38\x1c\x28\x2b\x80\x36\xda\x1c\xd4\x51\xa6\x36\xe2\x20\xdc\xe4\x00\x3a\x93\x1e\x87\xd3\x95\x09\xa0\xc5\x24\x3b\x62\x1b\x29\x37\xa1\xbe\x4a\x33\x0d\x25\x94\x92\xd2\x9c\xcd\xd2\x3c\x28\x7c\xc5\x6b\xe4\x95\x7d\x41\xe5\x8b\xdf\xd5\x1d\x2c\x0d\x8d\xd7\x70\xe3\x21\xc9\x9d\xec\x45\x6c\x4c\xa9\xb0\x77\xaf\x35\xa7\xf8\x91\x1d\xee\x04\x43\x5f\x61\xdd\x69\x12\xee\x54\xb2\x47\x73\x4b\x4d\x56\x9e\xab\x86\xb8\xb6\x66\xab\xd0\xaf\x39\x04\x23\x69\x51\xa6\x00\xed\xb7\x8b\xd9\x4f\xea\x1a\x95\xa9\x24\x02\xbf\x6e\x10\x2e\x94\xa4\x0e\xb5\xf2\xa8\xd3\x07\x9a\x7a\x86\x58\x99\xcf\x85\xc8\x88\x0e\x98\x92\x12\x52\xeb\x8c\x14\x11\x7d\xa7\x33\x27\xd5\x8a\x15\xd8\x18\xc1\xa0\x2a\x94\x05\xab\x0e\x6a\x27\x21\xf6\x0a\x40\x2b\x57\x3b\xa2\x72\x60\xd7\x02\xab\x96\xd8\x2d\xf2\xa0\x26\xf2\x8b\xeb\x1a\x18\x95\xcf\x04\x2e\x69\x47\x68\xe2\x2d\x71\x35\x9b\xa7\x79\x7f\x6a\x3c\x5e\x22\x6c\x58\x1a\x5e\x71\x5a\x3f\xc6\x41\xbc\x05\x92\x9c\xba\xec\x5f\xb2\x5d\x56\xfd\x1b\xec\xfb\x23\x4a\xd7\x69\x62\xf8\xf6\xaa\x4a\xc0\xb0\x18\xb5\x81\xb1\x75\xa8\xf8\x89\x42\xc6\x8b\x43\x4b\xb3\x6b\x26\xd5\x9a\x2d\xe7\x4f\xdb\x3c\xf0\xbd\x67\xe9\xf1\x1a\x2c\x55\xef\x3b\x2f\xaa\xfb\x87\x37\x91\xd2\x6b\x75\xb5\xf9\x41\x57\x60\x13\xa0\x7d\x8a\xa8\xad\x98\xf2\x3a\xe0\x1f\x20\x35\x7d\xfd\x7a\x67\x99\x44\xd4\x6d\x61\x95\x22\xae\x9e\x39\x60\x94\x3f\x68\xc4\x66\xd2\xd2\x6b\x9d\x46\xcc\x04\x68\x1f\x31\xb5\x95\x79\xc4\x8c\x90\xe6\x11\xfb\x0a\x27\xc3\x66\x68\xbe\x26\x66\x65\xcb\x26\xe4\xfb\x33\xd2\x6a\x40\x17\x99\xb0\x14\x99\xb3\xf7\xb0\x98\x85\x57\x15\xda\xd4\xd2\x14\x40\x67\xd8\x41\x99\xdf\xcc\xaa\x21\x8e\xea\xe1\xaa\x1b\x5f\x65\x05\xe7\x32\x1f\xee\x98\x0c\x60\x1f\xc4\xd5\xa1\x61\x6f\x67\x2e\x12\x78\xec\x67\x62\x34\xed\x48\xdd\xd3\xd0\x36\x4a\x33\x56\xbc\x4a\x7e\x75\xf3\x7e\x0b\xfb\x40\x9e\x95\xc2\xf4\xd7\x76\x53\x69\x19\xf0\xe8\x46\x2e\xbe\x56\x20\x7e\x74\x92\x96\x48\x21\xdc\x58\x4a\x32\x3f\x6c\x27\xf1\x85\xae\x1f\x3e\x89\x87\x25\xa1\xc7\x35\x9c\x9e\x45\x11\x0f\x93\x01\xa9\x26\x2c\x9f\x31\x41\x9a\x6f\x7c\xc6\x44\xcd\xc8\x6d\xa6\x41\x95\xc3\xe9\xb1\x10\xe5\xf1\x89\x5d\x70\x48\x8d\xfc\x2b\x47\xc6\xe9\x87\x31\x77\x09\xea\x29\xc1\x56\xe9\x56\x13\x2d\x2d\x34\x70\xc0\x89\xdb\x5f\x3e\xe2\x29\x0f\xee\x40\x31\x48\xc5\xb0\x68\xd5\x90\x52\xc2\xfa\x1c\x51\xd7\xd9\xca\x97\xd4\xae\xaa\x61\x54\x9c\x01\xa7\x4f\xd9\x82\x66\x8a\xcb\xe8\x24\x3d\xc4\x07\xbd\xff\x42\x04\xae\xbd\xa2\xa4\xd0\x86\x4e\x81\xf2\x25\x1a\x8d\x49\xe8\x4c\x07\x4f\x46\xe0\x0a\x6e\x10\x1a\xe9\x5c\x8c\x8d\x25\x41\xe4\xe3\x5b\xa1\x5e\x1c\x7c\xf8\x18\x07\x1f\xf0\xbf\x63\x63\xb6\xd8\x87\x9f\x70\x50\xf4\x5a\x09\x22\xa6\x50\xb8\x18\x07\x95\xdd\xdf\xe8\x55\x58\xe9\x01\xc7\x9d\xb7\x03\x1f\x70\x3c\x9d\x4e\xf4\x65\xc3\xcd\x32\xde\xac\x97\xdb\x38\xf7\x57\xcb\xf8\xd1\x5b\x2d\x37\x61\x84\x47\x69\xb5\xc3\xff\x8d\x7f\x0c\xbc\xf5\x32\xda\xe4\xd1\xf2\x71\xbb\xf6\xa2\xe5\xe3\xe3\x8f\x3b\x2f\x5a\x86\x8f\x2b\xfd\x89\x47\x57\x29\x61\x5b\xdb\xa1\xa6\xc8\xca\xa4\x9b\x30\x03\x77\x5a\xcf\xb7\xd3\xff\x5b\x8c\xd5\xda\x5b\x1b\x9e\xa2\x1c\x46\x8b\xbc\xb3\x79\xb7\xe0\xb9\x09\x73\x7c\xdb\x0b\x7c\x6d\x59\x49\x2c\x34\x93\xf0\x9c\xa1\x9f\x41\x9e\xc4\xe7\x73\xa6\xb5\x68\x16\xe0\xc6\x7f\x8f\x13\xda\x5f\x7b\xfe\x5a\x98\xd2\xe3\xf3\xa3\xab\x6f\xe4\xa9\x6d\xd4\x10\x5b\x67\x7f\x3b\xf5\x68\x9f\xb3\xee\x78\xb9\x49\xeb\xbb\x48\x31\xad\x14\xc6\x3e\x88\xd4\x87\xb0\x96\xdc\x6d\xf0\x4f\xf1\xb2\xe3\x4b\xf2\x5c\x8d\x28\xdd\xc9\xd1\x81\xc5\xce\x8b\xbe\x98\x1a\x09\xb1\x3d\x75\x64\xa4\x9c\x73\xc2\x6b\x28\x43\x74\x57\x00\x17\xfb\xde\x1a\x17\x4b\xbb\x05\x42\xb9\x6e\xc7\xa8\x03\x86\xf8\x16\xaf\xb5\xfc\x86\x8f\xcf\x2c\xa4\x5b\x35\xa7\xaa\x29\xf4\xd7\x71\x80\x8b\x37\x7f\x63\x8e\x04\x4e\xcc\x50\x7f\xad\x17\x83\xfe\x36\x1c\x38\x88\xc9\xfd\x92\x95\xf3\x0c\x71\xbf\x83\x65\xc7\x79\x97\xb1\x15\x96\xb2\x5a\xe7\xe9\x28\xe4\x49\x87\xfe\xd7\xb7\xfc\xcd\x6c\x5b\xa5\x1b\x83\xbf\xa1\x81\xa4\x1b\x56\x96\x87\xe3\xc8\xb9\x61\x70\xdf\x71\x2b\x9a\x20\x75\xf7\x9e\x59\x47\xcf\xfe\x36\xd7\xbc\xdd\x7b\xf8\x41\xb2\xff\xcf\x3e\x49\xee\x1c\x3e\x59\xbe\x42\x0c\x1a\x9a\xd4\x35\x4a\x9a\xa4\x3c\x22\xe1\xb5\x36\xb5\x50\xf9\xfd\x0a\x7d\x4f\x07\xe3\xef\xa7\xfb\x9e\xe8\x02\xd0\xef\xf7\x7e\x41\x9e\xa7\xbc\x0e\xb1\x38\x1b\x7d\x50\x1a\x0a\x8e\x5f\x8a\x6b\xde\x65\x75\x8e\x3e\x29\x8f\x74\xff\x82\x75\xee\x13\xd9\x10\x20\x7f\x7e\xff\x2e\x7c\xf7\x69\xd8\x4f\x97\x1e\x0c\x94\xce\xd9\x69\x6b\x2c\x48\x2e\xae\x89\x1b\xd5\x90\x9c\x35\x27\x3d\x46\x7d\x9d\x08\x1f\x65\x01\x32\x7e\x5b\x4c\xee\xff\x0f\x9d\x10\xe2\xdf\xf1\x16\x21\xbd\xa1\x01\x9e\xeb\x04\x77\xca\x55\x06\xf2\xf3\xd4\x17\x23\x99\x3e\x48\x1e\xd8\x70\x03\x3f\xad\xbc\x82\x47\x04\xa0\x9b\x2e\xe3\x61\x23\xe9\x58\x8b\x76\x62\x03\xd8\xf4\x98\x63\xe2\x80\xf7\x56\x87\x0f\xd5\x11\xbf\xbd\x11\x00\xfb\x78\x0e\xc7\x58\xe0\x49\x75\xc7\x54\x12\x68\x69\xfb\x46\x22\xb9\x29\xd5\x14\xf0\xe4\x49\x79\xfe\x16\x95\x0f\x00\x1e\xe6\x1b\x87\xfd\x92\x7f\x6e\xaa\xe7\x16\xbd\x03\xb0\x00\x8d\x7f\xc1\x86\xda\x3f\x90\x26\x9f\x14\x4c\x49\xd7\x35\xdf\x0a\xf5\x4a\x07\x69\x27\xd4\x0b\xbe\x0e\x5e\x4a\xf5\x37\x5f\xc1\xc2\x02\x9c\x2d\x8c\x92\x82\x37\xaa\xf8\xc5\xb4\xc0\xf4\x0d\xdc\xea\x16\x01\x06\x86\x53\x2b\x6c\x2f\x6f\x38\x4f\xa1\xec\x7f\x99\x05\xf6\xf0\xa4\x0e\xea\xd4\x67\x71\x3a\x97\xf9\xb5\x20\x59\x52\x58\x73\x69\x7f\xd8\xfd\x69\x21\x2c\x2c\xcf\xe8\xa6\x4f\xc3\x70\xb9\x16\xef\x61\x9b\x93\xa6\x7c\x1d\x07\x47\xd8\x50\x5f\x9b\x84\x6a\xf7\x7b\x4e\xaf\xcd\x33\xf2\xa9\xe2\x72\x2d\x0e\xfa\x2e\x38\xd6\x1d\xac\x4b\x0b\xd7\x89\x2b\xd3\xc0\xbc\x93\x92\xdf\x0a\x7f\xfb\x95\x11\x53\x96\x09\x7a\xbc\xe4\x1f\x8e\x4c\x69\x52\x84\xe5\x67\xd8\x88\x15\x8f\x76\x33\xbf\x35\x91\x5a\x5b\xb8\x2d\x4c\x55\x2f\x34\xbc\xee\xfa\x57\x0a\xca\x7e\x4b\x32\x26\xcd\x57\x95\x7c\x66\xf8\x65\x1b\xa7\xd9\x71\x97\x05\x19\xbf\x7a\x67\xfa\xcc\x32\x81\xa3\xb9\x96\x25\xf6\x6f\x98\x17\x29\x53\x0a\xd7\x20\xf1\x8e\x99\x78\x91\xf5\x78\x6d\xda\xaa\xd9\xb3\x6d\x1b\x28\x55\x1d\x42\x11\x52\x9e\x3a\x83\x6e\xc2\x8e\x0a\x06\x4e\x06\x71\xfe\x1a\xf4\xfb\xbf\x94\x79\x54\x66\x17\x73\x7d\xa7\x26\xab\xa3\x71\xb7\x16\x2b\x88\x66\x6b\xb0\xd0\xfe\xef\x51\x69\x5b\x67\x6b\xac\xbd\x81\xae\x3e\x81\x4e\x4b\xfe\x4b\xbf\x07\x32\x5f\x4b\x95\xdb\x37\xeb\x70\x7b\xaf\xf2\xb6\x5f\x5d\x6b\xe5\x8b\xe1\x66\xad\xa5\x14\xe5\x7d\x74\x81\xad\x53\x96\xe7\x7e\x5e\x3d\x0b\x9f\x89\xd5\xda\x6b\x5d\x83\x9b\x78\xf2\xb4\x99\x98\x1d\x02\x26\xf9\xc8\x47\x5c\xf7\x0a\xfc\xb0\x63\x67\x58\x2f\x1a\x76\xe0\x5d\xb1\x28\xce\x8f\xc9\x39\x45\xa7\xe4\x9a\x77\x66\x24\xda\xb2\x72\x36\x1b\xaa\x05\x73\xa6\xdc\xba\x92\x84\xb6\x34\x81\x80\x4a\xd9\xdf\x81\xe6\xc3\x7f\x7e\xab\x31\xd7\x4a\x7c\x3d\xd9\x19\x6c\x49\x99\x7c\xb1\x5e\x0a\x97\xf6\x75\xd4\x1c\x42\x81\x9a\x06\x8b\xe0\xa3\x09\x15\xad\x89\x0a\xc8\x74\xe4\xa0\xfc\x0a\xc1\xf0\x9b\xde\x60\x87\x73\x2e\x72\xa0\xe5\x8c\xfc\x0b\xaa\x4a\x63\x1c\x5d\x72\x68\xe5\x3b\x9e\xe2\xee\x00\x35\x22\x23\xa4\x47\xfe\x22\x99\x38\x64\x09\xd0\x93\xf1\x32\x18\xe9\xbe\xb6\xe3\x00\x18\x41\xf5\x50\x1c\x0f\x88\x0c\x07\x1b\xf9\xee\x84\x4e\x4d\x94\xa0\x52\x43\x65\x29\x6f\x46\xd1\x28\xdf\x1b\xfe\x85\x7b\x6b\x93\xf2\x6c\xbb\x0f\x89\x92\xe4\xbb\x18\x69\x41\xec\x2f\xe5\x64\x1e\xb6\x7d\x63\x35\x11\x35\xe9\x93\x37\xfc\x4b\x76\x96\x47\x02\x72\x2e\x21\xe5\xc2\xb1\x69\x7c\xac\x37\x6c\x31\xee\x3a\xcb\x73\x5d\x09\xa0\xf1\x53\x20\x87\xc4\x0f\x42\x1d\xcd\x78\x3a\xe0\xb2\x1e\x63\xe3\xa7\x56\x30\x34\xf6\x69\x82\xbe\xca\xd7\x3a\xb5\xeb\x12\xb4\x0d\xbd\x27\x9e\xa1\x54\x69\xe8\x1f\x92\x36\xc3\x1d\x27\x3f\xce\x4d\xf5\xbc\x0f\x21\x1c\x5d\x72\xe0\x77\xcc\x7f\x20\x3f\xea\x44\x38\x59\x49\x67\xae\x04\xc3\xc6\x55\x49\x76\x52\x26\x5f\x0e\x49\x03\xec\xea\x1a\xcc\xc7\x21\x69\x16\xec\xdf\x1f\x96\x18\x77\x92\x95\x08\x2a\xf2\x4f\xf9\x35\x4b\xad\x86\x0e\xb8\xbf\xa2\xde\x9e\x27\x77\x4a\xfc\x03\xea\x9e\x11\x2a\x39\x03\xfe\xa1\x11\xb7\xf9\xa5\xed\x6c\x69\xef\x7c\x15\xc2\xbb\xf7\xbc\x5c\x3b\x73\x3a\x71\x39\xc1\x9c\xaf\x47\x66\x4d\x30\x0e\x63\xd9\x84\x89\xc5\x80\xb0\x67\xd0\x32\x0f\xdc\xe1\x20\x18\x76\x61\xa2\xc8\x5f\x6a\x02\x05\xa9\xdc\xc8\x90\x2e\xb2\xed\x92\x2e\x3b\xb2\x14\x90\x12\x29\xe9\xae\x92\x79\x7c\x8c\xdf\x36\x06\x44\x3c\xe5\xa9\x38\x35\xc8\xa2\x59\x9c\x1d\xd0\x6d\x47\xce\x08\x39\xde\xdf\x68\xb7\x1a\xb4\x0f\xa9\xd0\x55\x94\xc9\x24\x4c\x56\x57\xa3\x9b\x20\x81\x21\x45\x43\x78\xa9\x83\x8e\x30\x50\x3f\x3b\x56\xa5\xf5\x93\xf3\x32\x16\x42\xcf\x25\x90\xc0\x8c\x7d\xfa\x15\x13\x98\x19\x0e\x63\x8a\x82\xa0\xe2\x0a\x82\x0f\x1e\xb9\x4a\x3f\x24\x62\x4c\xfa\x21\x9f\x65\xbc\x7c\xa4\x59\x26\x19\xcb\xf4\xb3\x1c\xbd\xe2\xa1\x5a\x0c\xb0\x92\xd9\x8e\x09\x15\xb5\xe4\xd2\x54\x71\x53\xf5\x21\x99\xc0\x9a\xea\xd9\x63\x77\xd4\x6c\xd9\x77\x54\x0c\x9e\x38\x47\x95\x69\xd9\x54\xcf\xf6\x06\xc6\x19\xc4\xbf\x60\x4c\x35\x37\xcc\x5a\xe0\x3b\xa0\x3c\x7d\xee\x95\xfc\x68\xa8\x15\xf3\xa6\xf3\x37\xcc\x50\xd1\x70\xfd\x63\x56\xd4\x55\xd3\x25\x65\xf7\x24\x4c\x5c\x9a\xb2\xc8\x88\x89\xcf\x55\xc9\x87\x01\x0a\xb6\xdd\x6c\x61\x05\x2b\x52\x4b\x37\xa5\xca\xbb\x15\x8c\xe7\x4f\x55\x71\xbf\x55\xc1\x8a\x74\xa6\x82\xc9\x0d\x66\x2b\x98\xda\xfc\x8d\x0a\x36\x5b\xf2\x53\x0a\x26\xf0\xf7\x46\x05\x13\x30\xb9\x2a\xd8\xe3\x63\x08\x2b\x18\xb9\xc3\x66\xea\xa6\x54\x79\xb7\x82\xf1\x9c\xb9\x2a\xee\xb7\x2a\x58\x7e\x9e\xa9\x60\x72\x83\xd9\x0a\xa6\x36\x7f\xa3\x82\xcd\x96\xfc\x94\x82\x09\xfc\xbd\x51\xc1\x04\x4c\xae\x0a\x16\x86\x8f\x8f\xb0\x86\xf5\xb9\xa5\x9f\x52\xe5\xdd\x1a\x36\x24\x4a\x56\x91\xbf\x55\xc5\xfa\x7c\xa6\x8a\xc9\x0d\x66\xab\x98\xda\xfc\x8d\x2a\x36\x5b\xf4\x53\x2a\x26\xf0\xf7\x46\x15\x13\x30\xc1\x2a\x26\xc3\xbf\x71\x20\xcd\x62\x98\xad\x7e\x72\xf3\x79\xea\xf1\x16\xdd\xf8\x9a\x8a\x31\x47\x1c\x13\x2a\xf1\x95\xf4\xc1\xae\x0c\xbc\x32\xa7\xa7\x22\xc5\x18\x74\x61\xa9\x53\x22\x12\x08\x42\xcc\x26\x2b\x66\xce\x7f\x7c\x30\x10\x95\xa5\xaf\x37\x8c\x9d\x1a\x5a\x39\x93\x21\x4d\x1c\x6e\x9d\x08\xa9\x5b\x6f\x22\x86\x95\x15\x03\xdd\x5b\x19\xb7\x8e\x5c\x98\x15\x37\xa0\xa6\x40\xdb\x4b\xf5\x6c\x03\x04\x37\xae\x9c\x86\x88\xab\x10\x34\x38\xf2\xfe\x9e\xf4\x56\xc2\x04\x3a\x1a\x9d\xbe\xed\x6e\x8d\x74\x6e\x78\x85\xff\xff\x1b\x87\xe3\xc6\xc0\x15\x2c\xc6\xb8\xc7\xfe\x7f\x19\x3f\x7c\xc3\xea\xa8\x47\xfc\xfe\x9b\x68\x28\xc0\x61\xf4\x31\xa9\xbf\xff\x86\xb0\x3d\x14\x17\x59\x87\x9a\x3c\x2b\xb2\xee\xfb\x6f\x42\x76\x4c\x79\xed\x6d\x2f\x51\xf4\xd3\xda\x0b\x63\xfa\x6f\xb4\xba\x44\x11\x70\x79\x07\x16\x14\xea\xbb\x39\x33\x82\x24\x35\x49\x0c\x3a\x40\x2b\xad\xf3\x84\x81\x38\x4c\xe1\x34\x69\x3e\x1b\xcc\x86\x5e\xa5\xd0\x04\x00\xd4\x47\xc8\x60\x3a\x90\xa5\xb8\xb4\x39\xe1\xef\xc3\x22\x0c\x82\x0f\x92\x6c\xcc\x6d\x6d\x0c\x99\x6d\x85\x4a\x6a\xeb\x44\x4b\xb5\x17\x2a\x96\xc8\x8a\xc5\x68\x33\x2c\x04\x15\x93\x61\x81\x94\x2c\x86\x0e\x67\xdc\xe9\x86\x19\x96\xad\x84\x3e\x30\xb2\xa5\x50\xeb\x43\x83\x18\xfe\x6e\x8d\x45\x14\xc7\x0b\x6f\xfc\xcf\xdf\xcc\x64\xc8\xd2\x1a\x2d\x86\xeb\xcc\x50\x8c\x06\x50\x67\x9b\x2e\x80\xc9\x60\xb7\x05\x92\x26\x75\x4a\xc8\xa9\xed\x5c\x8f\x51\x48\xf0\xf4\x5c\x35\x29\x5d\x2b\x1d\x1a\x94\x7c\xf6\xf1\x6f\xc7\x37\x7d\x8c\xdb\xb0\x92\x8f\x8a\x8c\x0f\xfa\xe0\x0e\xfc\x70\x51\x0e\x20\xc8\xaf\x89\x04\x0c\x6a\x49\x76\xd3\x49\x76\x0d\x31\xef\x86\x27\x94\xb3\xfc\xfb\x63\xa5\x29\x03\x87\xe3\xc7\x46\x8d\xee\x98\xef\x45\x27\x3b\xd6\xd9\xd2\xe7\xca\x94\x81\x04\x20\x22\x6d\xff\x50\xa5\x2f\xca\x47\x2c\xbe\x7f\x1e\x4a\x80\x5d\xd6\xe5\x48\xf9\x3c\xcb\xf3\xf4\x10\x80\xf6\x7a\x90\x60\xe8\x21\xd4\x15\x04\xb2\x60\x28\x51\xdf\x89\x9d\xd2\xaf\x27\x60\xa8\xc9\x6f\xd6\x03\xd4\x77\xe3\x9f\x52\x7e\x35\xb9\x23\x2c\xd3\xff\xf0\x95\x80\x5f\xbf\x8a\xc0\xec\x69\xa6\xbb\x61\x44\xed\x82\xd5\xc3\x93\xe9\x23\xb7\xaa\x9e\x12\x75\x48\x83\xd8\xe8\x88\xf7\x58\x7d\x2f\xac\xfb\x07\x0f\x28\x0a\xbc\x40\x42\xf8\x9d\xa0\x2c\xae\xfa\x3a\x48\xf8\x54\x55\x9d\x59\x22\xae\x12\x90\x1f\xda\x30\x74\x9f\x92\x02\x34\x79\x38\xf8\x1e\x40\xdd\xd5\x8b\xa4\xde\xd3\xe3\x06\xca\xd1\x01\x7e\x21\x49\x7e\x5d\x4d\x6e\x47\xbe\x05\x2f\x8c\xa8\x58\x0e\xbf\xe5\x46\xd2\x0d\x7a\xb7\x79\xb9\x11\x95\x2a\x2b\xce\x3e\x56\xd1\x3c\x79\x99\xbc\xb3\x30\x7e\xbc\xa3\xdf\xf4\xe0\xf9\x96\x15\x67\xf1\xe0\xd8\x94\x92\x08\x7c\x74\x55\x0d\xb4\x54\x0d\x94\x8e\xc2\x68\xac\xac\xd4\x68\x6f\x00\x82\x90\x6d\x32\x13\x05\xec\x94\x91\x6c\x8a\x84\xf7\x27\xcd\x1e\x48\x80\xf6\xa8\x1f\x93\x35\x84\x9c\x42\x33\x7f\x57\x1a\x49\xc9\x5b\x2c\x64\x83\x45\x49\xf2\x18\xd7\xbd\xac\x1d\xec\x84\x9b\x42\x5f\xe3\x79\x1f\x7a\x81\xc9\x7d\xaa\x07\xe6\x34\xd3\x24\x99\x38\x4c\x8f\x11\x24\x13\xdf\x5d\x3e\x2c\x03\xd5\x9d\x02\xa2\xc4\x74\x09\x01\xc8\x87\x0e\xc3\x76\x5e\x00\xfd\x4e\xe2\x86\x4d\x13\xf1\xd6\x0c\xd0\xe6\xeb\xa5\x01\x9e\xc4\xec\x89\x06\x63\xe1\x0c\xcf\xe7\xa6\xe5\x94\x8b\x2b\x2a\x6a\x46\xe7\x91\x66\x13\xf5\x9e\xbe\x7f\x85\x5c\xc6\xd3\x88\x9d\xa4\x0a\x34\x00\xc4\x7a\x2f\x6d\xbb\x58\x0d\xb4\x41\xb9\xca\x1c\x30\x16\xe8\xb4\x6b\x41\x63\xc4\x96\x52\x13\xb3\x8d\x61\x18\x0e\x20\xd2\xdf\xfe\xb1\xba\x96\xdd\x7e\x45\xef\x04\x28\x65\x2a\x88\xdc\xf2\x9c\xd4\xc3\x79\x08\xb1\xb5\x58\x7e\x6e\xb2\x14\x2a\x07\x8a\xaa\xa6\xbe\x24\x65\xbb\x0f\x9f\x9e\xb3\xb4\x7a\x6e\xf7\x21\xd8\xf5\x89\xdb\xf3\xaf\xaf\xcb\xe4\x78\xac\x9a\x34\xab\x4a\x66\x3b\x94\xc7\xbd\x34\x00\x71\x84\xaa\x93\xdf\xbd\xd4\x48\x56\x28\xcb\x8a\x2b\x70\xc2\x26\x4c\x2d\x5e\x74\x33\xbc\xdc\x6a\xc6\x2b\xa1\x34\x35\xbf\xe3\x4d\x0c\x95\x8e\xc8\xe6\x5d\x0f\x5a\x28\x08\x25\x51\x82\x67\x34\x71\x5c\x97\x1e\x9b\x6b\x71\x70\x39\xef\x3a\xac\x31\xf5\x25\x77\x48\x8f\xe6\x4c\x3d\xff\x2a\x5f\xa5\x54\x22\x9b\x91\x19\xb2\xfe\xfd\x4e\x2d\xb8\x41\x1f\x02\xa6\x1a\x59\xdf\x10\x84\xbe\x36\xc8\x67\x3a\x87\xa3\x37\x1f\xdf\x39\xd0\x22\xf1\x0e\xa7\x68\x7e\xb1\xdc\xf0\x70\xba\x8c\x4c\x39\xe5\xc9\x73\xe7\xd5\xc9\x39\x2b\x49\x33\x79\xc4\x94\x13\x67\xda\x50\x80\x12\xaf\x93\x33\x62\xdf\x5d\x26\x92\x49\xca\x67\x0d\xe5\x9c\xd5\x43\x36\x6c\xe5\x02\x6f\x14\x3f\x4d\x25\x16\x83\xaf\x21\xf3\xa3\xb7\x03\x7b\xca\xf3\x5d\xd1\x93\xfd\x55\x79\x27\xe5\x93\x8e\xc4\x8a\xb4\xe4\xdc\xec\xd1\x9d\x39\x1f\x08\x3e\x35\x8c\xf3\x04\x89\x83\xcb\x24\xfb\x7e\x84\x65\x57\x60\x24\x27\x6e\x45\x8c\xd4\xec\x3b\x1a\x36\x1b\xa6\x51\x60\x8a\x29\x62\x1f\xef\xa6\x3b\x1c\xc8\x05\x53\x76\x8a\xf8\xf9\x9e\xad\x48\xc1\xf9\x3c\x3b\x7d\x8a\xd2\xf9\x2c\xb4\x38\xa1\xc8\x39\x01\x61\x4a\xa8\x81\xb5\xcb\x81\xc4\x65\x0c\x63\xb4\x69\x82\x69\xec\x57\x13\x43\xbf\xe2\xe3\x02\x53\x9b\xa9\x08\x00\x35\x1d\x40\x22\xd7\x16\xa0\xb8\x66\x65\xa5\x86\x11\xde\x23\xad\x68\x6a\xa2\x18\xd9\xbf\x6b\xda\x4c\xce\x1a\xea\x9d\x92\xf4\x6c\xf7\x3d\x58\x5e\x58\x5c\x6b\x49\x5a\xdb\xf8\x83\x94\xc4\x61\xab\x26\x0d\x72\x4b\xf1\xaf\x1c\x27\x55\xee\x23\xc0\x19\x74\x84\xdb\x30\xa6\x9b\x3c\x7f\x9d\x0b\x47\x7f\x7d\xea\xce\xf7\x90\xe8\xb0\x3a\xdf\x27\x4a\x68\x03\xb6\x93\xcf\x7f\xd9\x36\x47\x29\x04\x79\x33\x58\x39\x3a\x70\xe8\x4a\x8f\xd1\xd7\x7d\xb6\xf0\x38\x1c\x86\x20\x1b\x65\xea\x91\x8a\x8d\x76\xa2\x62\x33\xaa\x32\xbf\x19\x18\x8c\xda\xeb\xd7\x4d\x56\x24\xcd\x8b\xd3\x5d\x8b\x44\x6e\x23\xf7\x78\x28\x55\xbf\x57\x80\xf8\x36\xd1\xf1\xa8\xe2\x5b\xc2\xf8\x94\x84\x16\xae\x7e\x1a\xbb\x69\x8a\xa8\x45\xc7\xaa\x4c\x27\x3b\xc9\xd6\x60\x89\xda\x4a\xe9\xe6\x58\xee\xd0\xd1\x78\x1d\x1f\x36\x91\x8e\x73\x69\xc2\x39\xa7\xb3\x61\xb0\x5b\x84\xe1\x76\x11\x46\x72\x77\xaf\xc7\x23\x6a\x5b\x3b\x63\xd1\x2e\xd9\xae\xe3\x91\x31\xda\x46\xed\x2a\x2b\x75\xe8\x68\x88\xb6\x68\xb5\x56\xf1\xa9\xdd\x14\xa9\x38\x76\x72\x1d\x2c\xc2\xcd\x76\xb1\x79\x14\xbb\x98\x95\xa7\x6a\x82\x9f\x6d\x12\x1d\x76\x03\x3f\xb8\x81\xd2\x39\x52\xe4\xd2\xb3\x70\x9b\xec\x0e\x12\xa6\x25\x80\x69\x4e\x9f\xa2\xd5\x22\xdc\x44\x8b\x70\xb7\x16\x3b\xf5\x9c\x34\x65\x56\x9e\x39\x37\xec\xb5\x6a\x68\xb1\x73\x0c\x83\xed\xc0\x10\x6b\xa6\xf4\x8e\x97\x4a\x1d\x34\xa2\x4c\x57\x8f\x28\x08\x54\x94\x4b\x18\xe5\xac\x9e\xc6\xf1\x22\x7c\x5c\x2d\xb6\x62\x47\xd3\xa4\x3c\x4f\x49\x3d\x3d\xae\x62\x41\x3f\x69\x13\xa5\x8f\xac\xd0\x61\x0c\x0f\x69\x14\xae\x02\x05\xdb\x12\xc4\x36\xab\x77\x51\xb0\x88\x57\x8a\x6e\x92\x63\x1f\xd3\x83\x48\x5f\xf7\x4e\xc4\x46\x4a\xf7\x68\x99\xe3\x00\x26\x28\x40\xb1\x8c\x6e\x09\xa1\x9b\xd5\xbd\xf5\x6e\x11\xad\x1f\x17\x51\x1c\xc8\xc3\xd7\x4c\x5c\xcd\xa3\xc9\x04\x05\x71\x37\x9f\xb5\xa1\x6b\x3e\x3b\x4d\xbe\x34\x0a\xa3\xb5\x84\x49\x1b\x36\x8e\xdc\xb1\x57\x71\xb4\x88\x77\x8b\x0d\x9b\x7a\x7f\xb9\x16\x87\xaa\x6b\xaa\x72\x58\xe1\x46\x86\x3d\x10\x43\x2e\x08\x78\xcf\x63\x65\xdf\x37\xd4\xa9\xae\x31\x55\xb2\xaa\x14\x78\x72\x3a\xe3\x09\x6c\x70\xe5\xa8\x81\xf2\xc4\x39\x7d\x5d\x0d\xc7\xa5\xef\xac\xeb\x55\x84\x28\xd9\x8c\x1a\x6d\x18\xbb\xae\xc7\x2b\xc9\x9a\x5b\x59\xf7\xf2\xba\x34\x6b\x8b\xac\x6d\xb3\x43\x8e\x94\xfe\xae\x05\xf4\x02\x94\xb7\x3c\xe6\x55\x6b\xca\x9a\x0f\x24\x23\x93\x3b\x0d\x32\xa8\xac\x85\x82\x60\x1d\xec\x62\x60\xcc\x8f\x47\x14\xeb\x2f\x28\xec\xd2\x04\x47\xba\x12\x2a\xef\x22\x3d\xbb\xc7\x40\x1f\x4f\xc7\x54\x07\x15\xa5\x34\x70\x10\x6d\xe3\x88\x03\x6a\xeb\x98\xd5\x6e\x95\xae\x81\x5b\x72\xef\x51\x84\x56\x28\x56\x43\xe2\x4d\xba\x4b\x0f\x1a\x32\x98\xc5\xe3\xee\x78\x38\x9e\x74\x60\x80\xc9\x28\x88\x56\xd1\x66\x00\x95\x57\x1f\x61\x1c\x6f\xa3\x35\x64\xb1\xd6\x28\x1d\x93\xd1\x71\xaa\x2b\xb4\x39\x1e\x14\x54\x30\x83\x87\x30\x3d\x1d\x34\x50\x48\x86\x87\x08\x85\x2b\x0e\x28\xae\x1c\x82\x63\xbc\xde\x40\xe9\xf3\xd2\x10\x1d\x4f\xa1\x3a\xbe\x08\xc5\xe8\x20\xe2\x81\x19\x4b\x0e\x69\x8a\x62\x09\x0e\xe2\x6a\x13\x1d\x57\x03\x57\x8a\xeb\xdf\xc5\x9b\x75\x00\x09\xed\x74\x3a\xad\x8e\xa9\xc2\xd8\xe9\x84\xd0\x21\x51\x50\xc1\xbc\x9d\x4e\x68\x97\x84\x2a\x28\xc0\x5e\xbc\x5a\x9d\x82\x81\x3d\xd9\x61\x6f\xa3\xf0\x08\x0e\xe9\x69\x97\x6e\xb5\x21\x3d\xc5\x47\x61\x48\x29\x26\x03\x73\xe1\x21\x38\x6c\x15\x48\x80\xb7\xf5\x63\x18\x85\xdb\xd1\xa8\x08\xee\x76\x17\xee\xc2\x5d\x04\xb1\x86\xf0\xff\x54\xd6\xd2\x53\x7a\x42\x12\x22\x98\x33\x74\x44\xc7\xd3\x46\x06\x04\x18\xdb\xec\xf0\xff\xc6\x0e\x8c\x6e\x32\x3c\x84\x28\x82\x26\x2a\x99\x93\x8f\xea\x2c\xd8\x1c\x77\xc7\x44\xc4\x63\x98\x02\x8f\x87\xc3\x01\x49\x70\x90\xa6\xad\x83\x38\x88\x5f\xff\x89\xc7\xb3\x9f\xd1\xcb\xa9\x49\x0a\xd4\x7a\x75\x53\x9d\x1b\xd4\xb6\xfe\x21\x69\xfc\xb6\x6b\xb2\x1a\xb5\xb7\xe0\x83\x78\x12\x70\xb0\xae\x21\xcd\x78\xd8\x55\x60\x6d\xe0\x05\xaf\xaf\xff\xf4\x9b\x61\x5e\x72\x7c\xf2\xa6\xb8\x98\xd6\x49\xf9\x16\x25\x6e\x4d\x69\x39\x70\x5d\xbe\x56\x88\x3d\x70\xb9\x12\x0e\xbf\x3a\x2f\x6e\x98\xde\xf9\x6a\x23\xdb\x55\x05\x76\x23\xc8\x92\xc2\x5b\x6e\xe8\x26\xc7\x93\xb1\xc6\x79\xdf\x43\xea\xb3\x7b\x3a\x15\x60\xb0\x53\xfd\x34\x29\x5e\x99\x25\x8d\x7f\xc6\x72\x46\x65\xf7\xed\x3a\x4e\xd1\x79\xa1\x9d\x54\x8d\x1f\xbc\x28\xfe\xb0\x10\xd6\x1b\x5e\x20\xfd\x8a\x83\x0f\x60\xab\x00\x2c\xdd\xda\x70\x3d\xe8\xd7\xaa\xc7\x54\x0b\x52\xaf\x92\x32\x2b\x92\x0e\xa5\x83\x54\x68\x01\x16\x02\xa4\xea\x5e\xd8\x7a\xb4\xbf\x5e\x56\x9e\xb2\x32\xeb\xd0\xd3\xec\x16\x77\x0d\x9b\x8d\x53\x9a\x8c\x4e\xfa\xf9\xfa\xba\x24\x44\xcc\xcf\x9a\x8a\x97\x94\x08\xa8\x7c\x38\xf1\x55\x38\xd6\xf6\xf6\xcc\x09\xaf\xea\x21\x39\x3f\x21\xad\xc5\x83\x4c\x72\x5a\x14\x61\x52\x0d\x6b\x39\x18\x07\x3f\x68\x6b\xa8\x95\x3f\x41\x85\x10\x99\xe9\x4f\x50\x2c\xa8\x33\xd1\x90\x3f\xf9\x19\x63\x39\x9e\xc4\x58\xc1\xe2\xfe\x11\xcf\xb6\xbc\xa7\xb9\x5e\xdc\xbe\xd4\xe9\xc7\x05\x7f\xbb\x33\xb7\x96\x63\xb5\xda\xe9\xcf\xaf\x70\xcc\x56\x21\x37\x7c\x94\xd2\xf4\xc3\x94\x16\xdd\xf9\xa1\x30\x9d\x16\x53\x03\xed\x73\xe7\x1d\x5f\xd5\x04\xd4\x97\xaa\xc9\x7e\xad\xca\x2e\xc9\xc1\x9b\x7d\x20\xa4\x76\x28\x55\x7f\x27\xd9\x3a\x45\x2d\x98\xe6\xab\x86\x71\xb4\x6c\x47\x22\x1c\x99\xd1\xb5\x69\x3c\xf7\xf9\xb6\x2f\xa7\xd6\x23\x20\xe6\x0d\x00\x90\xef\x21\x4f\x86\xcb\xd8\x91\x0f\x5c\x5f\x6b\xf8\x20\x64\x7f\xcb\x11\x04\xf9\xf9\x1b\x0d\xa2\x25\x09\x05\xcc\x3b\x4f\x46\xe1\x34\x8a\x85\x7e\xa5\xe0\xfe\x51\x04\x90\xfd\x4d\x47\x11\xe2\xe7\xef\x67\x14\x79\xa6\x07\x98\x77\x9e\xf1\xc1\x69\x14\xf3\xf3\x57\x1c\x45\x00\xd9\xdf\x74\x14\x21\x7e\xfe\x7e\x46\x71\xc8\xa6\x00\x33\xdf\xcf\x70\x87\xe4\x9a\xff\x57\x1b\x46\x00\xd9\xdf\x74\x18\x21\x7e\xfe\x56\xc3\x28\x32\x72\xca\xaf\xed\x45\x97\x3b\x0f\xcb\x65\x7e\x4c\x5b\xde\x93\xf8\xcc\x0b\x4a\xfa\x45\x5d\x45\x70\xcf\x5d\x33\x88\x11\xd7\xbb\x63\xd6\x45\x2e\x14\x19\xb9\xee\x55\xf3\x6d\x69\x43\xfb\x99\xd1\xd2\x44\x2b\xe9\x8b\x8e\x91\x25\xbe\xfd\x3d\x0f\xb9\x72\x62\xd2\xb4\x5a\xa6\x34\x95\xd5\x32\x2e\xd4\xe9\xb9\xef\xa7\xf3\xad\x73\x23\x86\x99\x62\x9c\x6c\x27\x09\xd2\xc8\x16\xdf\xa4\x9f\x8b\xde\x49\x94\x9c\xaa\x24\x4a\x5a\x08\x50\x74\xdc\xf5\xe7\x1b\xfc\x86\xf6\x73\xc5\x68\x6f\x25\x09\xd1\xc8\x12\xff\x90\x30\x0f\xb9\x93\x08\x39\x4d\x49\x84\xb4\x50\xa7\xe7\xf4\x65\x82\x7f\x84\x80\x1a\xcf\x14\x9e\xad\x89\x3c\x8f\x4d\xcc\xf0\x2f\x1d\x33\x30\xbb\x4d\x62\x46\x50\x9e\xc4\xa4\x50\x27\xe6\xfe\xe9\x84\x7e\x25\x31\xb4\x9f\x29\xbc\x89\x56\x92\xfc\x6c\x2c\x91\xaf\x31\xf3\x90\x3b\x89\x90\xd3\x94\x44\x48\x0b\x75\x7a\xae\x9f\x77\xd8\x97\x1c\xb8\xf9\x4c\x01\xda\x1b\x49\xf2\x33\x33\xc4\x3e\x18\xcd\xc2\xed\x24\x3e\x4e\x52\x12\x1f\x2d\xd4\xc9\x39\x7e\x81\x62\x1f\x9b\xc0\xd6\x33\x85\x67\x6d\x23\xeb\x9e\x89\x1d\xfe\x49\x6b\x0e\x6a\x37\xcd\x63\x14\x65\xcd\x23\x85\xd0\x48\x39\x7c\x23\xe3\x9f\xc3\xa0\xc6\xb3\xb5\xce\xdc\x44\xf6\x16\x26\x66\xf8\x37\xb7\x19\x98\xdd\x5c\x05\x23\x28\xbb\x0a\x52\xf8\xca\x4e\x3a\xd0\x34\xbf\x64\x41\x2c\x9d\x53\x8f\xd5\x37\x48\xf5\xe3\xc4\xc3\x42\x28\xa0\x5b\xd9\xc3\xd9\x98\xb0\xee\xbd\x80\x64\x0a\x1f\x9e\xfc\x5b\xc6\x8c\xa0\xba\x9a\x0b\x0c\x37\x5b\x28\x30\xb9\x89\xc5\x37\x4b\xe9\xc5\xac\xe5\xf8\x93\x8d\x87\x0b\x28\xa5\x3a\x70\xb3\x8d\x5f\x0f\xd7\xae\xab\x4a\x7e\xde\x63\xfa\x31\x35\xb6\x91\x1d\xbc\xed\x55\xb5\x84\x12\x1c\x73\xcc\x00\x5b\xbe\xaf\xcb\xae\x4a\xda\xee\x36\x66\x16\x5c\xc5\x41\xdd\xdb\xbe\x46\xee\x0c\x9f\x23\xd5\xaf\x57\xbb\xf8\x41\x4b\xbb\x31\x66\x6a\xee\x27\x76\xeb\x1f\xe4\x23\x50\x52\xd6\x65\x15\x92\x4b\x09\x53\x4b\x9b\xaa\xf6\x4f\x59\xde\xa1\x66\x7f\xc8\xaf\xcd\xb7\x61\xc0\xdf\xda\x36\x54\x0d\x2f\x45\x1a\x3e\xa4\x12\x01\xe9\xf7\x80\xe1\x9c\x15\x04\x98\xe4\xc6\xc1\x2e\x9d\xa3\x0e\xc5\x0a\xe5\x91\x05\x0d\xe6\x92\xa5\x5a\x16\x76\x5c\xc1\xef\xc9\x19\xbf\x74\xb1\x8f\xb2\x70\xa2\x6a\x79\xf3\xff\x2b\x0d\x9e\x3d\x3f\x45\x10\x3f\x70\xd6\xc9\x27\x37\xf9\xf3\xce\xeb\xb2\xa8\xd2\x24\xf7\xab\x1a\x95\xfa\x45\xcc\xb1\xce\xa3\x7f\x0f\x20\x7e\xcf\x75\x72\x28\x79\x61\x29\xee\x28\xe0\xf0\x95\xe9\x94\xf5\x28\x65\x87\xa9\xd4\x47\x2a\x83\x38\x78\x12\x65\x0c\x3c\x41\x4a\xfe\x56\xe7\x81\xf0\x2a\x21\x65\x31\xcd\x92\xbc\x3a\x1b\xdf\x34\x25\xd7\x7d\xd8\xa3\xa4\x2c\x5b\x20\x34\x09\x09\xae\xe5\x29\x49\x91\x27\xe3\x15\x3e\x56\x03\x2f\x7c\xaf\xd8\xf5\x00\xc3\xb3\xec\x13\x2d\xe0\x47\xcb\x67\x41\x40\xcf\x8e\x1b\x99\x92\xdf\xde\xfe\x7f\xbe\xf5\x63\x32\xff\x2c\x75\xce\x5f\x90\x8d\xf2\x73\x3f\x04\x40\x51\xd0\xd7\x2d\xcc\x28\x08\x9f\x23\x86\xe1\xa7\xac\x0e\x7e\x7b\x6c\xaa\x3c\xc7\x56\x57\x9e\xae\xd8\xcc\x4a\xaf\x7d\x06\xc1\x07\xcf\x27\x1f\xec\x1f\x8c\x28\x38\x3f\xec\x64\xc6\x0d\x40\xf2\xe5\xc2\xb1\xa8\x1a\x3b\x89\x95\xdf\x4e\x9f\x00\x63\xc6\x87\x7e\x4d\xbf\x34\x59\xf9\x59\x9d\x03\x40\x23\x32\xed\xe1\x69\xca\x1b\x51\xa3\x85\xd2\x49\xb3\x56\x64\xa5\xab\xe8\x38\x4e\xf5\x6e\x2d\xf0\xda\xaa\x24\xba\x31\x8f\xbd\x01\xa1\x71\x90\x67\x1d\xa9\x11\xec\xcb\x4c\x3a\x16\x4d\x00\x94\x70\x0a\x1b\x17\x0f\x67\x4f\x44\xc1\x29\xdc\x95\xa3\x4b\xb0\xa5\x8a\xb5\xb3\xdd\x7e\xbc\x77\xa9\x10\x69\x39\xba\xc8\x55\x41\xcd\x52\xf3\x25\x80\xa3\x83\x58\x07\x63\x3f\xbe\x3c\x0b\x83\xf6\xe5\x02\x6e\xdb\x69\x74\x88\x39\xba\x09\xef\x50\x2b\xd5\x64\x2d\x20\xae\x59\xa5\x89\xe6\x70\x9e\xc5\xfe\xd4\xc9\x98\x00\x48\xcf\x57\xa4\xdd\x65\x36\xde\xef\x5d\x59\x8f\x3e\xac\x04\x3f\x4e\xf9\xf6\x94\x45\xae\x70\x0c\x7d\xef\x93\xc3\x49\xe2\x7f\x45\x7b\x00\x65\x02\x0b\xf4\xeb\x98\x82\x61\xd1\x75\xd3\x90\x71\x4c\xe0\x92\x25\xa5\x9a\x32\x36\x60\xa6\x63\x54\xa6\xa0\x50\xe5\x14\x55\x8a\x44\x8d\x57\x55\xa7\x6f\xce\x8a\x1c\xff\x00\xa4\x4c\x91\x1f\x7a\x8c\x4d\x6d\x80\x45\x2b\x7f\x2e\x52\x6c\x43\xed\xc2\x21\x69\xfc\x02\x25\xed\xb5\x31\x1d\x4c\xf7\x1f\x1f\x1f\x1f\xeb\x9e\x4d\x0e\x12\x2c\xb0\xf1\x91\x03\x07\x8a\xcf\x72\x82\x40\x72\xb2\xc2\xe3\x1f\x41\x30\x7c\xa2\xda\x87\x6c\xc1\x0f\x38\x0e\xc1\xfa\x1a\xbc\xea\x8a\x2c\xb8\xde\xee\x57\x61\x3c\x83\xe3\x32\x38\x26\x7b\x2b\x6e\x7b\x1d\xe8\xb5\x85\x18\x9d\x61\xe9\xd8\xbe\x05\xd3\x36\xf9\x99\x3b\xf4\x3e\x17\x5a\xef\x4c\xad\x87\x6f\x90\x40\xa3\x30\x5c\x93\x56\xcb\xae\xaa\xf2\x2e\xab\x01\xbd\x18\xad\xe6\x36\x50\xce\x74\x0d\x0f\xf2\x93\x08\xf2\x94\x14\x59\xfe\xb2\xc7\xa1\x6b\x8e\xfc\xf6\xa5\xed\x50\xb1\xf8\xe7\x3c\x2b\x3f\xff\x94\x1c\x7f\x26\x3f\xff\xa5\x2a\xbb\xc5\xcf\xe8\x5c\x21\xef\xdf\xff\xb4\xf8\xd7\xea\x50\x75\xd5\xe2\x7f\xa0\xfc\x0b\xea\xb2\x63\xe2\xfd\x19\x5d\xd1\xe2\xf7\x4d\x96\xe4\x8b\x3f\x57\x5d\xe5\xfd\x9c\x94\xed\xa2\x4d\xca\xd6\x6f\x51\x93\x9d\x16\xbf\xc7\x98\xbd\x3f\x60\xab\xec\xfd\xb1\xa8\xfe\x92\x0d\xb8\xd4\x9f\x3f\xbf\x14\x87\x8a\x61\x11\xe0\x59\xa8\xcb\x52\x53\x34\x45\x92\x6b\xcf\xd5\xab\xef\xc0\x0b\x67\xf8\xf0\x64\x14\x7f\x53\x43\x0d\x9e\xbe\x13\xf7\x31\xc6\x02\x65\x95\x99\xa3\x0e\xbb\x4f\x6c\xd9\xb1\xd9\x61\x0c\x91\xc4\x97\x24\xe7\xa5\x54\xa2\x42\x49\xa7\x73\x49\x11\xbd\xdf\x4d\x1a\x12\x13\xa9\x87\xf5\x60\x4e\x4d\xc1\x89\x31\x25\x50\xbc\xd7\xe3\x50\xe1\x2d\x93\xa6\xa9\x9e\x01\x25\x91\xf5\x82\xbd\x25\xba\x13\x5e\xb7\x5d\xae\x59\x08\x2d\x22\xe2\x13\x45\xc7\x27\xbe\x3a\x24\x6e\x3a\x01\x37\x7d\xe8\x68\x12\xfb\xfc\xba\x3c\xb4\x3e\x23\xe1\x63\x19\xfc\xd2\xfb\x75\x9e\x1c\x51\x81\xca\xee\xff\x7c\xdf\x55\xf5\xa7\x85\x08\xd2\xe1\x05\x03\x0f\x5c\xd7\xec\xd5\xfc\x49\x14\x8c\x79\x15\x13\x17\xce\xf8\x51\xd4\x15\xd3\xf0\x8a\x24\x88\x70\x48\xe9\x42\x96\x32\xac\xd3\x4c\xc2\x84\x67\xc6\xf9\x93\x7e\x04\x9f\x2c\x5c\xac\x5c\x10\x67\x21\x0b\x85\x14\x8d\x1b\x59\x1e\x1b\x39\x07\x34\x90\x60\x1a\x76\x1d\x81\x88\x86\xad\xc3\x04\xe6\x07\xf5\xd8\xcd\x24\x02\xc9\x4c\xa4\xc5\xa5\xa6\x7c\xa1\xd7\xe5\xa6\x48\x8f\xfa\x72\x67\xf9\xd1\xc1\x96\x05\xc8\xb2\x7b\xcd\x53\x2c\x86\x08\x12\x21\xad\xe2\x32\x64\x5f\xf2\x67\x20\x83\x44\x25\xe1\xe4\xb2\x52\x3f\xef\xb3\x54\xbc\xa2\xa0\x94\x85\x8d\xb3\x9c\xf0\xc8\xcb\x52\xc2\x25\x33\xb5\x8c\x20\x81\x24\x84\x2b\xb8\x7c\xf8\x80\xdf\xa9\x64\x22\x0d\x48\x70\x02\x29\x2e\x36\xf9\xd4\x87\xa8\x61\xa0\xe8\xc8\x62\x50\x14\x1c\x47\x9d\x95\x25\xc9\x94\xc5\x7d\x33\x71\xdb\xda\x8e\x9f\xb8\xe1\x07\x5f\xdc\x00\x03\x18\xd3\x45\x92\xaa\xa6\x99\x20\xe0\x38\x69\x13\x3c\x09\xfc\xe0\xb5\xdd\x7f\xb9\xfa\xff\xc4\xae\xfe\xaf\x12\x9c\x0f\x4a\xb5\xe0\x7f\x38\x2e\x1b\x5e\x55\x78\xfd\x8d\xfc\xa5\x70\x67\x00\x1b\x0d\x89\x1e\x9f\x96\xc9\xa9\xd3\x89\x9b\x97\x1a\xf2\xd2\xe5\x0d\x0b\x0f\x46\xd0\xb6\xf0\xe0\x20\x78\xe1\xa1\x7c\x63\x88\xb9\x6d\xb2\xa3\xf9\x41\x30\x7f\x02\xb6\x1f\xe4\xc5\x07\x09\x39\x7c\x9a\x2f\xed\x3b\xcf\xa7\x89\x70\x5d\x71\x8b\x66\x4f\x27\x61\x77\x16\xcb\xd1\x48\x41\x2b\x12\x49\x7b\xe2\x39\x3c\xb1\x41\x85\x59\x22\x95\xb7\x71\xff\x63\x16\x4f\xf4\x1a\x84\x95\x11\x61\x95\xc4\x81\xe8\x2a\x49\x8a\xd2\x1d\x46\x90\x22\x82\xc6\x90\xd4\xfc\x20\xae\x93\x80\x31\x7c\x12\x3a\x24\xdd\x2f\xe4\x1f\x21\x56\xe3\x52\xc3\x91\x09\x68\xb0\x45\x5e\xac\x4e\x4e\x10\xac\x22\x5e\x71\x19\x35\x6f\xd0\x65\xee\xf4\x61\x97\x98\xa3\x03\x4f\xd3\x19\xdb\x86\xdd\xc2\x9d\xc3\xf0\x8b\x8b\x3c\x0e\xc5\x16\x79\x42\xe2\x7a\x97\xf1\x67\x98\x20\x05\xa0\x55\x3f\x08\xab\xbc\xf9\x93\x58\x46\x0f\x0d\xad\x44\xc5\x12\x59\x04\xa2\xe0\xc0\x45\xdf\xbc\x51\x55\x38\xd3\x87\x55\x66\x8c\x8e\x2b\xdb\x7b\x9b\xcb\x99\xfb\x88\x7a\xdc\x49\xf0\x8c\xaf\x46\x89\x19\x20\x8d\xf9\x1d\x88\x4a\xc6\xc1\x07\x30\x30\x0e\xf5\xcc\xf0\x6c\x55\xa7\xfa\x1e\x7d\x4b\xf7\xb4\xc5\xff\x9b\xe8\xde\xb8\xda\xe6\x30\x64\xb5\x2d\x6f\x10\x3a\xa8\x2b\xc1\x03\x29\x2b\xae\xf8\x41\x5a\x70\xff\x66\xd6\x4a\xe4\x01\x1a\x1f\x81\x15\x7b\xcc\x17\xb3\x15\xb9\xae\x3d\xc2\x8a\x7c\x9e\x56\x4b\xbc\xe9\x3a\x2d\xb2\x46\x35\x9a\xa5\x66\x87\x4d\xd5\x14\x6f\x54\xaf\x65\x3d\xbc\xd9\x72\xa3\x0e\x2e\x5a\x38\x8f\x03\x5f\x36\xa7\x5a\x65\xd6\x3a\x74\xc0\xff\xb3\xbf\x0b\xb0\x72\x7e\x16\x60\x25\xa6\xe7\x57\xe6\x15\x94\x76\x6e\x9c\x8a\xe2\x41\x03\xe0\x00\x04\xbd\xb4\x4a\xf2\x47\x57\xd7\x16\xe5\xfa\x57\x84\xb1\x6e\x29\x7d\xbd\xba\x75\xd5\xf5\x78\xe1\x87\xad\xea\xa4\xf4\x5f\x46\x50\x16\x99\x99\x8e\x01\x40\x67\x09\xd4\xc6\x6c\xfc\x95\xb5\x66\x8e\x92\x66\x7f\xa8\xba\x8b\xf4\x75\x72\x6c\x69\xbf\x57\x4b\x02\x0b\x7a\xec\x8a\x84\x2b\x02\x37\xca\xb5\x10\x5c\x24\x9e\xa3\x39\x25\x47\xe4\x7f\xc9\xda\xec\x90\xe5\x59\xf7\xc2\xcf\x3f\x58\xaa\xec\x07\x0f\x36\x72\x1e\x45\xb7\xd3\x0a\x1b\x63\xf2\xc5\xb7\x01\x41\xc7\x16\x36\xf7\xa5\x5a\x94\x47\xc2\xfd\xb8\x81\xd4\xce\x2f\x51\xdf\x2d\x94\xb2\xba\x41\x5f\x94\x32\x7e\x10\x4f\x89\x89\x68\xa9\xd2\x9c\x0c\xac\x8a\x13\xd3\xa1\xc7\xd5\xe4\x72\xac\x1c\x0f\xc0\x49\x87\xe1\x44\xc6\xff\x22\x9f\x35\xc0\xc3\x1a\xac\xca\xc0\x06\xc6\x0c\xf5\x0c\xe2\x82\xb0\x3c\xc1\x86\x6f\xe1\xc3\x67\x8c\x0c\x58\xe9\x81\x10\x79\x88\xc6\xe3\x5e\xfa\x60\xf9\x75\x53\xd5\xa8\xe9\x5e\xf6\x0c\xea\xc9\x56\xe7\x78\x30\xc4\xc6\x0d\x19\x10\xbb\xc4\xa0\x56\x58\x80\x13\xc3\x0d\x34\x53\xef\x6d\x87\xe2\xd9\x33\xa5\xa1\xcb\x58\x5a\x20\x69\xe8\xc3\x09\x05\x4f\x36\xa1\x73\x79\x7a\x41\x8b\x67\xe1\x93\xb1\x66\xfe\x9c\xfc\x8a\x7d\xb9\x63\x66\x63\x83\xdd\x54\xb9\x3a\xb9\x79\x31\x1e\x44\xe3\xe2\x70\xf0\xcb\xe3\x60\xcd\xfd\x66\xcd\x73\xb4\x50\x93\x1f\x7f\xb0\xef\x08\x8e\x07\x11\x6c\x43\x34\x64\xa4\x85\x46\x69\xa8\x9c\x3f\x50\x2e\xa2\x7a\xe3\x08\x0c\x27\x78\xc1\xca\x0b\xdd\x8d\x02\x29\x1b\x5b\x92\x4a\x2d\x07\x20\xb8\x03\x38\x66\xf6\x13\xbf\x99\xc1\x1d\x15\xde\xa2\xd1\x39\xe5\x2b\x57\x43\x35\x79\x09\xd1\xc0\x2a\x7d\x25\xd1\xf2\x4a\x46\x24\x7c\xcc\x27\x7f\x8f\xab\xc0\x7d\x59\xf9\x0d\xaa\x51\x42\xf2\xd7\x7c\x24\xdf\xb8\xe9\x01\x26\x0b\xa9\xb7\x3d\xc8\x38\xfd\xf8\xa2\x77\xca\xf2\xfc\xfb\x6f\x3e\x44\xab\xd3\xe9\xf4\x8d\xfc\x82\xe3\xce\xdb\x89\x8f\x33\xa6\xdf\x7f\xf3\x53\xbc\x8c\x62\x2f\xc8\xfd\xb5\x47\xff\x17\x2e\x63\x3f\x5c\xc6\x3f\xae\x71\xf9\x3a\x8f\x96\xb1\x1f\x2d\xe3\x1f\x29\xd8\xaf\xc0\x9b\x8a\x66\x89\xff\xbd\x75\x35\x5a\x6e\x49\x57\xc3\x65\x8c\xbb\xf9\xe3\x0a\xff\x5e\xe7\xb8\x7f\x1e\xee\x23\xa9\xdf\xe5\x6b\x9f\xfc\xcf\xda\xd7\xac\x4c\xb3\x63\xd2\x55\x4d\x0b\x18\x2b\xd3\xe3\x63\x83\xd5\x8a\x65\xb3\x65\xb0\x51\x70\x52\x1d\xfe\x48\xd5\x07\xe5\x4d\xaa\x0f\xea\xeb\x11\x20\xb7\x5e\x9e\xdd\xc8\x11\xf2\xec\x57\x1c\x0b\xf0\xa3\xf5\xe4\x88\x50\xc0\x8f\x08\xf1\x43\x15\xa3\xde\xaf\xc6\xfb\xd1\x8d\x5a\x40\xe8\xe3\xdf\x64\x8a\xe3\x1e\x96\x1d\x39\x0f\x53\xf7\x3c\xbd\x3f\x8b\x18\xee\xde\x46\xa7\x87\x89\x02\x5b\xda\x4a\x1e\x7a\xc1\x40\x8e\x76\x1c\xc8\xb9\xa5\xd6\xdd\xb1\x04\x96\x84\x7f\xcf\x5a\x78\x44\xc0\x17\x2b\xd0\x12\xe5\x98\xd4\x24\xa9\x92\x49\x1f\xb1\x8a\xf0\x9c\xa7\x78\x68\x07\xbd\x19\xbf\x5a\x0d\x2a\x87\xe5\x1d\x09\x1f\xd1\x7c\xb1\xa1\xcd\x63\x42\xf9\xe8\xda\x9a\x44\x72\x3e\x1d\xa9\x5b\x57\x01\x6b\xd9\xa6\xea\x92\x0e\x7d\x1b\x76\xd7\xa6\x14\xd7\xb1\x52\xb9\x94\x8b\xee\x2b\x62\x5d\x2a\xb8\x6c\xce\x40\xd8\x92\x21\x7f\x2b\xc9\xfa\x89\x40\xa8\xb0\xf8\x27\x20\xfa\x54\x00\xd1\x49\x69\x1b\x55\xac\xb0\x24\x62\x8d\x85\x10\x74\xcc\xf2\x25\x73\x8c\xa3\x79\x5b\x6a\x32\x07\x68\x55\x08\x7e\x5b\x00\x9f\x91\xc4\x03\x7e\x6c\x07\x26\x42\x85\x6d\xd0\xcf\x4d\xf5\x7c\x0b\x3e\x00\x83\xd3\x1e\x93\x1c\x7d\x1b\x88\xe3\xc2\x8b\x5e\xe3\xe0\x83\xa0\xe3\xd0\xb0\x7f\x15\xbc\x4b\x09\xdb\xd7\x1a\x76\xd5\xc8\x1d\xaf\x0d\x1e\x57\xf2\x89\x15\x18\x5c\x3d\x0a\xd0\x07\x0e\xf3\xe7\x3a\xc8\x46\x58\xb9\xbb\xe6\x01\x7e\x5d\xd2\x75\xf4\x21\x69\x11\x46\x71\x83\x1f\xa4\xf8\xc7\xac\xa8\xab\xa6\x4b\xca\x8e\x37\xe8\xaa\x5a\x85\xed\xaa\x5a\x87\x2b\xb2\x34\xcd\x35\xb4\xb4\x54\x87\x66\x1f\x0c\x14\x68\x5a\x0a\xf0\x30\x8e\x84\xc6\xcb\x58\x65\x68\x07\x75\x80\x95\x8b\x2d\x0e\xe7\x21\x4d\x83\x29\xb1\x97\x00\x9e\x08\xf0\x63\xba\xec\xb3\xfc\xae\xc2\x82\x5d\x86\xd3\x40\xf5\x72\xba\xb4\x36\x3d\xbe\xa0\xf0\x39\xe6\x42\x30\x3d\x8c\xa0\x72\x0a\xbc\x8f\x70\x56\x1f\x47\x10\xb8\x52\xc1\xa1\x1a\x13\xc7\xf4\x15\x05\x95\x63\x96\x72\xc0\xf4\xb6\x81\xc6\xaf\xfa\xc4\xc1\x59\x7e\xdf\x40\xe4\x48\x02\xd5\xcb\x4d\x7c\xd2\x47\x10\x14\x3e\xc9\xbd\x7e\xd3\x03\x05\x2a\x93\xf2\x3b\x05\x67\xe1\x91\x02\x81\x0d\x01\x48\x29\x34\x32\x46\xde\x30\x50\x18\xe3\x37\xe7\x4d\x2f\x0c\xa8\xbc\x69\x0f\x0d\x9c\xe5\x57\x06\x04\x66\x64\x50\xbd\xdc\xc4\x27\x7d\x87\x40\xe1\x93\x5d\x4f\x37\xbd\x11\xa0\xb2\xa9\x3e\x15\x70\x96\xde\x09\x10\x98\x91\x00\xb5\x62\x13\x8b\xf4\x29\x01\x85\x45\x7a\x05\xdc\x94\x10\x52\xe5\x50\x49\xf6\x7f\x16\x33\xfd\x0b\x8c\x88\x60\x6a\xa9\x51\x80\xe4\x1d\x00\x4d\x80\xcd\x67\x00\x96\x66\xe9\xd7\xc5\x27\x26\xeb\x3f\x0b\x99\xfa\x25\x19\x0d\x40\x4a\xa1\x51\x03\x49\x22\x7f\x55\x03\x2f\x59\x87\x40\xfd\x3b\x29\x90\xc2\xb2\x47\x87\x07\xfc\x0c\x5b\xa0\x69\x87\x6b\xd8\xf5\x02\x1d\x54\x79\xad\xd4\xa9\x09\xdd\xda\x92\x96\x6a\x2e\xcd\xa0\xb7\x49\x9d\x1a\x92\x4f\x8c\x62\x22\x24\x97\x46\x01\x17\x42\x00\x77\x7a\x00\xa0\x19\x8c\x4c\xdd\x1c\xc1\x58\xd0\x6a\xec\xd8\x08\xc9\xc3\x5a\x43\x57\x46\x40\x1a\xb8\x02\x60\x83\xf7\x04\xb2\x5f\x02\xe0\x82\x13\x93\x1a\x68\x0e\x6c\x68\xc0\x7d\x88\x04\xae\xf9\x0f\x0e\x4e\x4d\xb9\x7c\x45\x5f\x35\xe3\x1c\x76\xb0\xae\x12\xb8\x66\x59\x39\x38\x37\x72\x12\xb4\x66\xe0\x06\xf1\x89\x9a\x67\xb2\x35\x23\xea\xe6\xb3\x02\xab\x4d\xfd\x81\x6b\x3a\x23\x15\x9e\x25\x59\x93\x99\x87\x52\xbc\x2c\x54\x4f\x3c\x36\xa8\x00\x20\x35\xb0\x18\x86\xb3\x3d\x18\x6c\x6e\xc4\x76\xee\x0d\x38\x80\xcc\x64\x10\x12\xaa\xa9\x0b\x19\xa9\xed\x55\x66\x77\x54\xe2\xa4\x35\x66\x73\x83\x10\x89\x0d\xdd\xc5\x91\x9f\x55\x71\xaf\x0c\x90\xc7\xac\x39\xe6\xe8\xa6\xc5\x19\x10\x2c\x79\x69\x4c\x85\x34\xe0\x0d\xd4\x97\x7c\x45\x20\xf2\x41\xf6\x94\xf5\x73\xbe\xd6\xa6\x7e\x59\x95\xf2\x9d\x7e\x11\x65\xea\xd3\x38\x4c\x09\xcb\x20\x10\x1a\xaa\x81\xf1\x9b\x0c\x2e\xc3\x01\x00\x9d\x74\x39\x99\xfc\x02\x00\x7c\x31\x5a\x1c\x4a\x20\xc0\x23\xca\x73\x05\x12\x17\xc9\xa0\xa7\x1c\xf5\xd2\xdd\x3b\xb0\x8f\x12\x94\x50\x26\x00\x9b\x6f\x95\xe1\x69\x3d\x25\xee\xb6\x70\x91\xf8\x00\xe5\x2c\xf4\xb6\x98\x96\x7b\x5b\x4c\x8b\x9e\xc3\xb8\x48\x7f\x80\x75\x1a\x80\xb6\x98\x1a\x83\xb1\xd7\x0e\xc3\x60\xc9\x2c\x9b\xfa\xc5\xa4\xda\x17\x4e\x9a\x5f\xcc\x56\xfe\xc2\x41\xff\x0b\x87\x29\x50\xcc\x98\x05\xc5\xac\x89\x50\x4c\xce\x85\x62\xce\x74\xb0\xdc\x07\xc4\x06\x75\x6a\x1c\xf2\xb3\xcb\x38\x0c\x50\xce\xe3\x90\x9f\xa7\xc7\x21\x3f\x4f\x8f\x03\x87\x71\x19\x87\x01\xd6\x69\x1c\xf2\xf3\xd4\x38\x8c\xbd\xbe\x6f\x1c\x86\x9b\x95\xa9\xdf\xe7\x53\x03\xd1\xe7\x2e\x03\x31\x40\x39\x0f\x44\x9f\x4f\x0f\x44\x9f\x4f\x0f\x04\x87\x71\x19\x88\x01\xd6\x69\x20\xfa\x7c\x6a\x20\xc6\x5e\xcf\x18\x88\xba\xc9\xca\x0e\xcb\x9e\xfc\x31\x25\x7e\x0a\xe4\x30\x02\x22\xa0\xf3\x20\xd0\x46\x93\xe3\x40\xc1\x26\x87\x42\x00\x73\x19\x0d\x11\xdc\x69\x40\x68\x83\x89\x31\x91\xe4\xe0\x32\x2c\x4b\x54\x1c\xf0\xea\x14\xb5\x75\x55\xb6\xd9\x17\xe8\x91\x58\xf0\x38\x2c\xc9\x25\x31\x24\xce\xd2\x4e\xd2\xa9\x68\xe1\xcc\x1f\xe2\x9a\x4c\x6d\xe1\x69\x25\xe4\x74\xc5\x42\x07\x24\x05\x40\x79\x46\xf6\xed\x81\x8a\xea\xf0\x17\x74\xec\x80\x8a\x2f\x59\x8a\xaa\xe9\x23\x20\xd2\x95\x48\x2d\x43\x11\x0f\x8e\xf5\x2e\xf9\x51\x78\x78\x79\x1c\x8e\x21\x0b\x1f\xbc\xd6\xd1\x72\x17\x6f\xc3\xf5\xea\x03\xd0\x2a\xdc\x18\x5a\xc5\x9b\x65\x14\x43\x2d\xd6\x87\x97\x15\xd4\x60\x0b\x42\x87\x87\x97\x10\x82\xa6\xc7\x09\x48\xa6\x05\xac\xd0\x7a\xd2\x6b\x51\xf7\x48\x2d\x4d\x37\x02\x27\x5f\xd1\x80\x9b\xea\xd9\x6f\xd0\x17\xd4\xb4\x5a\xba\x16\xa1\xca\x40\xc3\xd4\x52\xae\xd5\x1a\x3f\x37\x49\x7d\x1b\xfe\xda\xe3\xff\x68\x30\xf4\xdd\x24\x01\x8a\x16\x80\xb8\x64\x36\x06\x9c\x46\xfa\x27\x1c\xf5\x48\x49\x31\x34\x10\xf2\x81\x24\xb8\x0d\x7f\xcb\xd1\xce\x08\x12\x0a\x20\xa1\x06\x42\x33\x02\x71\x3c\x3c\x3f\x90\x09\x2c\x94\xc0\x24\x6c\xca\x01\x01\x9a\xe8\xe4\x06\xa6\xe3\x20\x55\xb6\xb6\xa8\x4c\xe1\x96\xa8\x4c\x6d\xed\xe8\xf7\x5d\xad\x29\x2d\xb6\x35\x64\x99\x57\xb4\x96\x52\x5e\x16\x1b\x82\x84\x84\xa0\x86\xf6\xb4\x52\xff\x9e\x43\x0e\x81\x31\x41\xc1\x89\x62\x4c\x6d\xb0\x80\xb4\x16\xc8\x4c\x83\x09\x46\x3f\x7b\x66\x6a\x30\x7c\x57\x13\x9b\xf0\x42\x73\x4f\x1a\xd4\x1d\x2f\x52\x1b\x56\xa6\x37\x91\xf5\x44\x2a\xb3\x0a\x40\xd4\x11\xa0\x15\x28\x04\x45\x3f\xe4\x66\x26\x41\xa8\xba\x21\xb7\x32\x6a\x86\xdc\x98\xe9\x05\xd4\xd6\xa4\x15\xa3\x60\x44\x69\x0e\x6d\x4d\xf2\x6c\x51\x7e\x22\xb7\x18\x6e\xe3\xef\xbd\x6a\x38\x04\x50\x51\xee\x04\xd6\x26\x74\xd2\x62\x94\xf8\x08\x0f\x8a\x9b\x40\x4b\xb2\x26\x0d\x4c\x82\x26\xe0\x8a\xc2\x91\x06\x66\x7d\x63\x3d\x10\x05\x44\x5a\xe8\xd2\x31\xef\x37\xd0\xfe\x16\xae\x2e\xab\x2d\xe6\x79\x2d\x8a\xf9\x1e\xc7\x35\x50\xba\xd3\x77\xb5\x85\x93\xfb\x22\xbb\x2d\x6e\x1e\x8c\x61\x9c\xeb\xc4\xda\xc2\xc5\x8f\xb5\x85\x8b\x2b\xe3\x50\x13\xde\xac\x70\x76\x68\xc5\x3d\x3e\xad\x78\x93\x5b\x6b\x8b\xbb\x3d\x1b\xd6\x89\x7b\x9d\x5b\x5b\xbc\xdd\xbf\xb5\xc5\x9b\x5c\x5c\x71\x97\x97\x63\xf2\x9a\xe3\xe8\x46\x39\xb9\xfb\x3a\x2c\x9f\xbb\xdc\x5d\x71\xa7\xc7\x2b\xee\x76\x7a\x92\x44\xdc\xfd\x9e\x2a\x15\x57\xd7\x27\x68\xce\x5d\xde\x6f\xd4\x9a\xbb\x1c\xa0\x2a\x5f\x37\x1f\x88\x89\xce\x70\x83\xc5\x1d\x9e\x50\x1a\x06\x17\x67\xa8\x0e\xc0\xb4\x3f\xd4\x95\xd2\xc9\x25\xaa\x22\x33\x78\x45\xcb\xf6\x2f\xe9\x49\x91\xba\xba\xc5\x22\x9d\xe7\x16\x29\xe6\x7b\xdc\xe2\x40\xe9\x4e\xb7\x58\xa4\x4e\x6e\x91\x6c\x7e\xbb\xb9\x45\x86\x71\xae\x5b\x2c\x52\x17\xb7\x58\xa4\x2e\x6e\x91\x43\xd9\xdd\x62\x91\xba\xba\xc5\x11\x72\x86\x5b\xc4\x8d\xde\xe0\x16\x8b\xf4\x6e\xb7\x88\x75\xe2\x5e\xb7\x58\xa4\x6f\x77\x8b\x45\xfa\x16\xb7\x38\xc8\x6d\x9e\x5b\x64\xf2\x9a\xe3\x16\x47\x39\xb9\xbb\x45\x2c\x9f\x7b\xdc\x22\xe9\xd5\x1d\x6e\x51\x91\xc6\x1c\xb7\x28\x49\xc4\xdd\x2d\xaa\x52\x71\x75\x8b\x82\xe6\xdc\xe5\x16\x47\xad\xb9\xc7\x2d\x6a\xf2\x75\x73\x8b\x98\xa8\xbb\x5b\x54\x06\xc3\xcd\x2d\x4a\xc3\xe0\xe2\x16\xd5\x01\x98\x76\x8b\xba\x52\xba\xb8\x45\x4d\x64\xee\x6e\x91\x7f\x8d\x23\x3d\xc9\xcf\xae\x6e\x31\x3f\xcf\x73\x8b\x14\xf3\x3d\x6e\x71\xa0\x74\xa7\x5b\xcc\xcf\x4e\x6e\x91\x7c\x8b\x74\x73\x8b\x0c\xe3\x5c\xb7\x98\x9f\x5d\xdc\x62\x7e\x76\x71\x8b\x1c\xca\xee\x16\xf3\xb3\xab\x5b\x1c\x21\x67\xb8\x45\xdc\xe8\x0d\x6e\x31\x3f\xdf\xed\x16\xf3\xf3\xfd\x6e\x31\x3f\xbf\xdd\x2d\xe6\xe7\xb7\xb8\xc5\x41\x6e\xf3\xdc\x22\x93\xd7\x1c\xb7\x38\xca\xc9\xdd\x2d\x62\xf9\xdc\xe3\x16\x49\xaf\xee\x70\x8b\x8a\x34\xe6\xb8\x45\x49\x22\xee\x6e\x51\x95\x8a\xab\x5b\x14\x34\xe7\x2e\xb7\x38\x6a\xcd\x3d\x6e\x51\x93\xaf\x9b\x5b\xc4\x44\xdd\xdd\xa2\x32\x18\x6e\x6e\x51\x1a\x06\x17\xb7\xa8\x0e\xc0\xb4\x5b\xd4\x95\xd2\xc5\x2d\x6a\x22\x73\x77\x8b\xc3\xe1\x08\xd2\x95\x3e\x77\xf5\x8b\x7d\x3e\xcf\x2f\x52\xcc\xf7\xf8\xc5\x81\xd2\x9d\x7e\xb1\xcf\x9d\xfc\x22\x39\x1a\xe2\xe6\x17\x19\xc6\xb9\x7e\xb1\xcf\x5d\xfc\x62\x9f\xbb\xf8\x45\x0e\x65\xf7\x8b\x7d\xee\xea\x17\x47\xc8\x19\x7e\x11\x37\x7a\x83\x5f\xec\xf3\xbb\xfd\x22\xd6\x89\x7b\xfd\x62\x9f\xbf\xdd\x2f\xf6\xf9\x5b\xfc\xe2\x20\xb7\x79\x7e\x91\xc9\x6b\x8e\x5f\x1c\xe5\xe4\xee\x17\xb1\x7c\xee\xf1\x8b\xa4\x57\x77\xf8\x45\x45\x1a\x73\xfc\xa2\x24\x11\x77\xbf\xa8\x4a\xc5\xd5\x2f\x0a\x9a\x73\x97\x5f\x1c\xb5\xe6\x1e\xbf\xa8\xc9\xd7\xcd\x2f\x62\xa2\xee\x7e\x51\x19\x0c\x37\xbf\x28\x0d\x83\x8b\x5f\x54\x07\x60\xda\x2f\xea\x4a\xe9\xe2\x17\x35\x91\x99\xfc\xe2\x92\x24\xe8\xa2\xc7\xe5\xc7\x5c\x5d\xb2\x95\xc4\x00\xf4\x4c\xbf\xf0\x88\xa2\x0e\x42\x0e\xb8\x51\x08\xe5\x78\x9b\xed\x0b\x26\x6e\xd9\x16\xd3\x0c\xb4\x85\x0b\x0f\xfc\xfc\x35\xc8\x86\x75\xcb\x18\xb7\x2e\xd2\x69\x3e\x8a\xd4\x85\x0f\x7e\xfe\xd8\x95\x8f\x31\x46\x27\xa3\x71\x9e\xe6\x03\x87\xdb\xd3\x7c\xf0\xf3\xb7\xae\x7c\x08\x8b\x22\xdc\xbc\xcf\xa7\x19\xc1\xeb\x9b\x69\x46\xf8\xf9\x53\x98\x91\xe5\xf0\x4e\x17\x99\xb1\xc3\x11\x3b\x75\xbe\x0e\x60\xf4\xec\x9d\xfa\x74\x9f\x08\xca\x4f\xb6\xe1\xf9\xdb\x65\xc7\xf1\xa4\x1b\xfd\x0d\x82\xf2\x63\x80\xfa\xc1\x40\x10\x9c\x9f\x99\xd3\x4f\xd1\x81\xe0\xe4\xc5\x27\xe5\x01\x28\x03\xc7\xd9\xf1\xb3\xf0\xc4\x10\xbf\xb0\x4e\xcb\xc7\x26\x4f\x42\x9f\xe4\x9a\xd7\x25\xc1\x4e\xee\xf3\xb0\x84\xfc\xb4\x80\xdf\xaf\x19\xab\x95\x07\xa9\x78\x52\x15\x2d\xd5\xfa\x4a\xc1\x31\xbe\x23\xf1\x4f\xed\xb5\xc6\x74\x5b\xef\xdb\x6f\x0d\x3c\x3f\x78\x55\xe3\x7d\xab\xb0\xfb\xf0\x70\x5b\xd2\xbf\x64\x46\xe4\xa6\x6a\x27\xd9\x01\xc5\x91\xb1\x28\x78\x7d\x5d\xb6\x8d\x5f\x95\xf9\x0b\x70\x9e\x91\xe9\xf5\x98\x64\x25\x14\x92\xd6\x6b\xa7\x39\x9f\x48\x6a\x14\xbc\xbe\x66\x59\x36\x83\x07\x25\xbf\x39\x5e\xe8\x0a\xe7\x1e\x19\x61\x9f\x5c\xe7\x24\x0f\x9b\xd1\xdc\x21\x0b\xa0\x86\xfc\xa5\x2a\xa2\xf8\x56\x23\xe3\x90\xfc\x3d\x30\x46\x92\x1d\xe6\x88\x72\x46\x13\xc7\x68\x09\xd7\x5f\x97\x34\xc1\x3b\xbd\x56\x26\x3e\x5d\x1a\xb2\xb4\xfc\x91\xf6\x76\x69\xb0\x8d\x1f\x44\x8d\xa1\x6d\x94\xe6\xa4\x55\xa8\x3d\x7b\x0a\xb5\xa4\x97\xa7\x84\xc6\xa4\xd9\x4a\x6b\x0b\x92\xa5\xc6\x41\x68\xae\x1e\x90\x7e\xf6\xa3\x98\x25\x52\x88\xe2\x0f\x72\x4d\x1c\xdc\xf8\xf3\x4d\x4a\xcd\x96\xb7\xd9\xaa\x6d\xc2\x80\x37\x0a\x03\xb5\x15\xb1\x41\xe3\xb0\x88\x95\x17\xcc\x06\xcf\x50\x21\xe3\xbc\x60\x3e\x86\xd7\xa8\x94\xaa\xed\xd0\x6a\xab\xb6\xc2\x9c\x08\x67\x6a\xe5\x4a\xc2\x8a\xa0\x16\x62\x6d\x41\x7b\x21\x3c\x96\xa4\x34\x2f\x2e\x03\x80\x81\x00\x36\xfc\x5f\x18\x9a\xd1\x07\x04\xc1\x97\x67\x0d\xea\x32\x40\x89\xaf\xd1\x89\x60\x5f\x14\xa9\xca\x48\xbe\xa8\x3d\x95\x1b\xb3\xa5\x09\x4a\xfd\x1c\x47\x5f\xf4\x82\x9b\xe9\x74\xf2\x64\xe6\x27\xf0\xe9\xbf\xa3\x90\xbe\x58\xbd\x04\x2d\xdc\x90\x7e\x5d\x16\x7e\x70\xe3\x39\xfc\x25\x39\x74\x7e\xb0\x58\x16\x2f\x43\xb5\x7e\xe9\xb7\x68\x08\x48\x3f\x82\x00\x17\x7e\x8b\x83\x8a\x07\xba\xeb\x5b\xe4\x2a\x2a\xfd\xa2\x6f\xe1\x87\x9c\x53\xfd\x52\x63\xd1\xf9\x21\x21\x13\x4a\x69\xc0\x75\xb8\x86\xc0\xf5\x23\x9c\xf8\x44\x9b\xc2\xb8\x82\x91\xbf\x0e\xa0\x83\xe6\x2a\x52\xe1\xa9\x38\xb9\x0b\xd1\x4d\x7c\xa3\x56\xe9\x41\x44\xe8\x45\x5a\x22\x73\xa5\x03\x11\xa1\x15\x01\x29\xa4\x15\xfe\x15\x7c\xe2\xeb\x06\x0a\xfb\x0a\xca\x31\x87\xbe\xcc\xfd\x8a\x73\x1f\xea\xcc\xaf\x08\xb1\x95\xc8\xbc\x06\xd5\x10\xa8\x7e\x84\x6a\x86\x0c\x31\x0a\xeb\x0a\x36\x7e\xf5\x5d\xe7\x5c\x41\x48\x2f\xbb\x6b\x8c\xaf\x07\xc6\x21\xb9\xaf\x09\xb1\xb5\xc4\x3a\x24\xf8\x35\xa1\xb5\x56\x98\x87\x24\xaf\x60\xe4\xec\x43\xa2\x57\x90\xd2\x0e\x00\xb2\x8f\x79\x17\xd4\x5b\xba\x45\xe7\xc7\x84\x5c\x2c\x76\x40\x83\x6a\x08\x54\x3f\x42\xb1\xac\x6b\x3a\xf3\x0a\x36\xc6\xbc\x06\x98\xab\x08\x69\xd6\x36\x05\xac\xf6\x83\xf1\x65\x21\xa9\x82\x18\x98\xfa\x65\xac\xd7\x2d\x4c\x4d\x2c\x4c\xdd\x0b\x30\x80\x89\xa9\x0f\x1a\x26\xc8\xc6\xd4\xb9\x86\x4c\x37\x32\xb5\x1f\xde\xe4\x57\x7e\x14\x9e\x43\x42\x29\x94\x78\x06\x00\x89\x99\xa9\x7b\x01\xd0\x64\x67\xea\x83\x86\xd3\x68\x68\xea\x5c\x43\x6b\xb0\x34\xb5\x1f\xc9\xd9\xb9\x95\x6e\x44\x84\x64\x24\x77\x03\xe8\x45\x44\xc8\x45\x6a\x2f\x80\x4e\xa8\x18\x4d\xd6\xa6\xce\x35\xa4\xb0\xb9\xa9\xfd\x95\xf4\xba\xa9\xd2\x83\x15\xa1\xb7\x92\x6f\xb6\xe8\x1d\x58\x11\x5a\x2b\xa5\x03\x1a\xe0\x41\xc3\x67\x30\x39\x75\xae\xa1\x04\x6d\x4e\xed\xaf\x47\xee\xa1\x11\x58\x13\x7a\x6b\x99\x7f\x68\x08\xd6\x84\xdc\x5a\xed\x01\x34\x06\x2a\x4e\xa3\xdd\xa9\x73\x0d\xad\xc1\xf0\xd4\x7e\x3c\xf4\x43\x9b\xdb\xc4\xf2\xd4\x2f\x23\x08\x68\x7a\x6a\x62\x7a\xea\x5e\x00\x83\x6d\x4f\x7d\xd0\xf0\x19\x8c\x4f\x9d\x6b\x28\x41\xeb\x53\xf8\xe5\xb0\x68\xf0\xc1\x55\x43\x49\x9d\x7c\x29\xad\x1b\x20\xd0\x86\x82\xf6\x02\x28\x4b\xe9\x0e\xae\x1d\x34\xbc\xac\x27\x10\x74\xae\xa3\x66\x4f\x51\x00\x2b\x88\x32\x1a\x3b\x04\xf5\x87\x3a\xfd\x32\x92\xfb\x03\x75\x87\x3a\xfd\x32\x52\xbb\x03\xf5\x46\xc5\x3a\xf4\x06\xea\x8c\x8a\x58\x78\x57\x43\xe9\xcb\xb0\xa0\xf0\x81\x15\x45\x49\x17\x01\xa5\xb4\xa6\xd0\x01\x1b\x0a\xd8\x0b\x80\x3c\xd7\x3e\xd0\x11\x15\x27\xef\x08\xb0\xb4\xd0\xd0\xd2\x7e\xe8\xab\x8b\x72\x3d\x76\x03\x1c\x13\xba\x1c\x28\xd7\x72\x47\xc0\x41\xa1\xcb\x81\x72\xad\x76\x05\x1c\x15\x15\xef\xd0\x19\x70\x58\x54\xd4\xac\x3b\xd0\xb8\x0c\x8b\x0d\x1f\x58\x6d\x94\x74\x81\x50\x4a\xeb\x0d\x1d\xb0\xa1\x80\xbd\x00\xc8\x3a\x03\xac\x39\x34\x9c\xbc\x2b\xc0\xb2\x43\x43\x4b\x3b\xa2\xcf\x7d\x12\x50\xb2\x8e\x68\x01\x65\x47\xaa\x09\x55\x01\x8e\xf4\x45\x83\x6d\x38\x6c\x2f\xc1\x36\x70\xa8\x7a\x80\x31\xb3\x1e\x69\xe0\x39\x8c\x9c\x74\x4a\x01\xb6\xbc\xf1\xec\xb7\x96\x48\x0e\xd7\x11\x7e\x04\x20\x30\x9e\x63\x80\xbd\x04\x08\x47\x75\x20\x4e\x43\x6c\x07\xa2\x85\x22\xbc\x76\x2a\xc8\xc3\x00\x9c\xea\x74\xa8\xc7\xa0\x7b\x09\xda\x12\xf0\x81\xd8\x6d\x61\x1f\x48\xc0\x18\xfc\xb5\x13\xf1\x1f\xae\xe7\xe4\x27\xa3\x40\x06\xdc\x4b\xc0\xe6\x58\x10\xc4\x6d\x89\x08\x41\xf4\xa6\xb8\xb0\xb5\x87\x86\xb8\x9a\xd3\x9e\x0a\x10\x19\x6c\x2f\xc1\x1a\xc3\x44\x10\xb3\x39\x58\x04\x91\x1b\x42\xc6\x76\x2a\x6a\xc4\x00\x9c\xf6\x74\xec\xc8\xa0\x7b\x09\xda\x12\x41\x82\xd8\x6d\x71\x24\x48\xc0\x18\x4d\xb6\xf6\x80\x12\x57\x73\xea\x53\x61\x25\x83\xed\x25\x58\x63\x70\x09\x62\x36\x87\x98\x20\x72\x43\xa0\x49\x8c\x8b\x29\xd6\xa4\x26\xa8\x7e\x91\xa0\xc0\x88\x93\x41\xf6\x32\x24\x1c\x77\xc2\x58\x0d\xd1\x27\x8c\x18\x8a\x41\x89\x35\xb1\x86\xa1\xd4\xf0\xd4\x2f\x12\xa8\x39\x18\x65\xe0\xbd\x0c\x6e\x09\x49\x61\xfc\xb6\xc0\x14\x26\x61\x0c\x4f\x89\x59\xb1\x45\xa8\xd4\x00\xd5\x2f\x12\xa4\x31\x4e\x65\xd0\xbd\x0c\x6d\x8e\x56\x61\xec\x96\x98\x15\x26\x60\x8a\x5c\x89\x7d\xb1\x04\xaf\xd4\x10\xd5\x2f\x12\xa0\x29\x84\x65\xc0\xbd\x0c\x6c\x0c\x64\x61\xdc\xe6\x70\x16\x46\x6f\x08\x6a\x89\x71\xb1\xc6\xb5\xd4\x0e\xd5\x2f\x12\xa8\x39\xba\x65\xe0\xbd\x0c\x6e\x89\x71\x61\xfc\xb6\x48\x17\x26\x61\x8c\x77\x89\xa5\xb1\x84\xbc\xd4\x24\xd5\x2f\x12\xa0\x29\xf0\x65\xc0\xbd\x0c\x6c\x0c\x7f\x61\xdc\xe6\x20\x18\x46\x6f\x08\x85\xdb\xe9\x68\x98\x80\x70\xf3\xec\x12\x13\xf3\x06\xbd\xdc\xc0\x16\x19\x1b\x68\x58\xe3\x63\x03\x19\x73\x94\xdc\x4e\x06\xca\x04\x62\x60\x63\x3a\x5c\xe6\xf0\xbd\x0c\x6f\x09\x9a\x0d\x14\x6c\xa1\xb3\x81\x88\x31\x80\x6e\xa7\x62\x68\x02\x30\xf0\x30\x19\x49\x73\xf0\x5e\x06\x37\xc7\xd3\x06\xfc\x96\xa8\xda\x40\xc2\x14\x5b\xb7\xd3\xe1\x35\x01\x19\x78\x70\x08\xb2\x79\x83\x5e\x6e\x60\x0b\xb5\x0d\x34\xac\x01\xb7\x81\x8c\x39\xec\x6e\xa7\x22\x6f\x02\x30\x70\x31\x19\x7f\x73\xf0\x5e\x06\x37\x47\xe1\x06\xfc\x96\x58\xdc\x40\xc2\x14\x91\xb7\x93\x41\x39\x83\xe0\x4c\x38\x84\xe6\x63\x8b\x5e\x6d\x61\x0c\xd0\x2d\x54\xcc\x61\xba\x85\x10\x14\xac\x5b\x4e\x60\x15\x7e\x91\x9a\xa3\x75\x5c\x47\x38\x13\x80\xc0\x68\x9d\x01\xf6\x12\x20\x1c\xad\x83\x38\x0d\xd1\x3a\x88\x16\x8a\xd6\x8b\x74\x22\x5a\xc7\x00\x9c\xea\x74\xb4\xce\xa0\x7b\x09\xda\x12\xad\x83\xd8\x6d\xd1\x3a\x48\xc0\x18\xad\x17\xa9\x3d\x5a\xc7\xf5\x9c\xfc\x64\xb4\xce\x80\x7b\x09\xd8\x1c\xad\x83\xb8\x2d\xd1\x3a\x88\xde\x14\xad\x17\xa9\x35\x5a\xc7\xd5\x9c\xf6\x54\xb4\xce\x60\x7b\x09\xd6\x18\xad\x83\x98\xcd\xd1\x3a\x88\xdc\x10\xad\x17\xe9\x44\xb4\x8e\x01\x38\xed\xe9\x68\x9d\x41\xf7\x12\xb4\x25\x5a\x07\xb1\xdb\xa2\x75\x90\x80\x31\x5a\x2f\x52\x6b\xb4\x8e\xab\x39\xf5\xa9\x68\x9d\xc1\xf6\x12\xac\x31\x5a\x07\x31\x9b\xa3\x75\x10\xb9\x21\x5a\x27\xc6\xc5\x14\xad\x53\x13\x54\xbf\x48\x50\x60\xb4\xce\x20\x7b\x19\x12\x8e\xd6\x61\xac\x86\x68\x1d\x46\x0c\x45\xeb\xc4\x9a\x58\xa3\x75\x6a\x78\xea\x17\x09\xd4\x1c\xad\x33\xf0\x5e\x06\xb7\x44\xeb\x30\x7e\x5b\xb4\x0e\x93\x30\x46\xeb\xc4\xac\xd8\xa2\x75\x6a\x80\xea\x17\x09\xd2\x18\xad\x33\xe8\x5e\x86\x36\x47\xeb\x30\x76\x4b\xb4\x0e\x13\x30\x45\xeb\xc4\xbe\x58\xa2\x75\x6a\x88\xea\x17\x09\xd0\x14\xad\x33\xe0\x5e\x06\x36\x46\xeb\x30\x6e\x73\xb4\x0e\xa3\x37\x44\xeb\xc4\xb8\x58\xa3\x75\x6a\x87\xea\x17\x09\xd4\x1c\xad\x33\xf0\x5e\x06\xb7\x44\xeb\x30\x7e\x5b\xb4\x0e\x93\x30\x46\xeb\xc4\xd2\x58\xa2\x75\x6a\x92\xea\x17\x09\xd0\x14\xad\x33\xe0\x5e\x06\x36\x46\xeb\x30\x6e\x73\xb4\x0e\xa3\x37\x44\xeb\x45\x3a\x19\xad\x13\x10\x6e\x9e\x5d\xa2\x75\xde\xa0\x97\x1b\xd8\xa2\x75\x03\x0d\x6b\xb4\x6e\x20\x63\x8e\xd6\x31\x98\x3d\x5a\x27\x10\x03\x1b\xd3\xd1\x3a\x87\xef\x65\x78\x4b\xb4\x6e\xa0\x60\x8b\xd6\x0d\x44\x8c\xd1\x3a\x86\xb2\x46\xeb\x04\x60\xe0\x61\x32\x5a\xe7\xe0\xbd\x0c\x6e\x8e\xd6\x0d\xf8\x2d\xd1\xba\x81\x84\x29\x5a\xc7\x40\x13\xd1\x3a\x01\x19\x78\x70\x88\xd6\x79\x83\x5e\x6e\x60\x8b\xd6\x0d\x34\xac\xd1\xba\x81\x8c\x39\x5a\xc7\x60\xd6\x68\x9d\x00\x0c\x5c\x4c\x46\xeb\x1c\xbc\x97\xc1\xcd\xd1\xba\x01\xbf\x25\x5a\x37\x90\x30\x45\xeb\x3c\x07\x89\x39\x5a\x67\x10\x9c\x09\x87\x68\x7d\x6c\xd1\xab\x2d\x8c\xd1\xba\x85\x8a\x39\x5a\xb7\x10\x72\x8c\xd6\xf9\x3d\xa5\xc2\xcf\xcf\xe6\x68\x1d\xd7\x11\xce\x04\x20\x30\x5a\x67\x80\xbd\x04\x08\x47\xeb\x20\x4e\x43\xb4\x0e\xa2\x85\xa2\xf5\xfc\x3c\x11\xad\x63\x00\x4e\x75\x3a\x5a\x67\xd0\xbd\x04\x6d\x89\xd6\x41\xec\xb6\x68\x1d\x24\x60\x8c\xd6\xf3\xb3\x3d\x5a\xc7\xf5\x9c\xfc\x64\xb4\xce\x80\x7b\x09\xd8\x1c\xad\x83\xb8\x2d\xd1\x3a\x88\xde\x14\xad\xe7\x67\x6b\xb4\x8e\xab\x39\xed\xa9\x68\x9d\xc1\xf6\x12\xac\x31\x5a\x07\x31\x9b\xa3\x75\x10\xb9\x21\x5a\xcf\xcf\x13\xd1\x3a\x06\xe0\xb4\xa7\xa3\x75\x06\xdd\x4b\xd0\x96\x68\x1d\xc4\x6e\x8b\xd6\x41\x02\xc6\x68\x3d\x3f\x5b\xa3\x75\x5c\xcd\xa9\x4f\x45\xeb\x0c\xb6\x97\x60\x8d\xd1\x3a\x88\xd9\x1c\xad\x83\xc8\x0d\xd1\x3a\x31\x2e\xa6\x68\x9d\x9a\xa0\xfa\x45\x82\x02\xa3\x75\x06\xd9\xcb\x90\x70\xb4\x0e\x63\x35\x44\xeb\x30\x62\x28\x5a\x27\xd6\xc4\x1a\xad\x53\xc3\x53\xbf\x48\xa0\xe6\x68\x9d\x81\xf7\x32\xb8\x25\x5a\x87\xf1\xdb\xa2\x75\x98\x84\x31\x5a\x27\x66\xc5\x16\xad\x53\x03\x54\xbf\x48\x90\xc6\x68\x9d\x41\xf7\x32\xb4\x39\x5a\x87\xb1\x5b\xa2\x75\x98\x80\x29\x5a\x27\xf6\xc5\x12\xad\x53\x43\x54\xbf\x48\x80\xa6\x68\x9d\x01\xf7\x32\xb0\x31\x5a\x87\x71\x9b\xa3\x75\x18\xbd\x21\x5a\x27\xc6\xc5\x1a\xad\x53\x3b\x54\xbf\x48\xa0\xe6\x68\x9d\x81\xf7\x32\xb8\x25\x5a\x87\xf1\xdb\xa2\x75\x98\x84\x31\x5a\x27\x96\xc6\x12\xad\x53\x93\x54\xbf\x48\x80\xa6\x68\x9d\x01\xf7\x32\xb0\x31\x5a\x87\x71\x9b\xa3\x75\x18\xbd\x21\x5a\xcf\xcf\x93\xd1\x3a\x01\xe1\xe6\xd9\x25\x5a\xe7\x0d\x7a\xb9\x81\x2d\x5a\x37\xd0\xb0\x46\xeb\x06\x32\xe6\x68\x1d\x83\xd9\xa3\x75\x02\x31\xb0\x31\x1d\xad\x73\xf8\x5e\x86\xb7\x44\xeb\x06\x0a\xb6\x68\xdd\x40\xc4\x18\xad\x63\x28\x6b\xb4\x4e\x00\x06\x1e\x26\xa3\x75\x0e\xde\xcb\xe0\xe6\x68\xdd\x80\xdf\x12\xad\x1b\x48\x98\xa2\x75\x0c\x34\x11\xad\x13\x90\x81\x07\x87\x68\x9d\x37\xe8\xe5\x06\xb6\x68\xdd\x40\xc3\x1a\xad\x1b\xc8\x98\xa3\x75\x0c\x66\x8d\xd6\x09\xc0\xc0\xc5\x64\xb4\xce\xc1\x7b\x19\xdc\x1c\xad\x1b\xf0\x5b\xa2\x75\x03\x09\x53\xb4\xce\x53\xa3\x99\xa3\x75\x06\xc1\x99\x70\x88\xd6\xc7\x16\xbd\xda\xc2\x18\xad\x5b\xa8\x98\xa3\x75\x0b\x21\xc7\x68\x7d\xc8\xe6\x51\xf8\x7d\x6e\x0e\xd7\xfb\x9c\x85\xd6\x02\x10\x18\xae\xf7\xfc\x4a\xb2\x08\x08\x87\xeb\x20\x4e\x43\xb8\x0e\xa2\x85\xc2\xf5\x3e\x9f\x08\xd7\xfb\x9c\x05\xd4\x02\xa4\x39\x5c\xef\xf9\x1d\x65\x11\xda\x12\xae\x83\xd8\x6d\xe1\x3a\x48\xc0\x18\xae\xf7\xb9\x3d\x5c\xef\x73\x16\x52\x0b\x80\xc6\x70\xbd\xe7\x17\x98\x45\x60\x73\xb8\x0e\xe2\xb6\x84\xeb\x20\x7a\x53\xb8\xde\xe7\xd6\x70\xbd\xcf\x59\x50\x2d\xc0\x99\xc2\xf5\x9e\xdf\x6e\x16\x61\x8d\xe1\x3a\x88\xd9\x1c\xae\x83\xc8\x0d\xe1\x7a\x9f\x4f\x84\xeb\x7d\xce\x02\x6a\x01\xd2\x1c\xae\xf7\xfc\xd2\xb3\x08\x6d\x09\xd7\x41\xec\xb6\x70\x1d\x24\x60\x0c\xd7\xfb\xdc\x1a\xae\xf7\x39\x0b\xaa\x05\x38\x53\xb8\xde\xf3\x3b\xd1\x22\xac\x31\x5c\x07\x31\x9b\xc3\x75\x10\xb9\x21\x5c\x27\xc6\xc5\x14\xae\x53\x13\x54\xbf\x48\x50\x60\xb8\xde\xf3\x2b\xd3\x12\x24\x1c\xae\xc3\x58\x0d\xe1\x3a\x8c\x18\x0a\xd7\x89\x35\xb1\x86\xeb\xd4\xf0\xd4\x2f\x12\xa8\x39\x5c\xef\xf9\x1d\x6a\x09\xdc\x12\xae\xc3\xf8\x6d\xe1\x3a\x4c\xc2\x18\xae\x13\xb3\x62\x0b\xd7\xa9\x01\xaa\x5f\x24\x48\x63\xb8\xde\xf3\x0b\xd6\x12\xb4\x39\x5c\x87\xb1\x5b\xc2\x75\x98\x80\x29\x5c\x27\xf6\xc5\x12\xae\x53\x43\x54\xbf\x48\x80\xa6\x70\xbd\xe7\xb7\xaf\x25\x60\x63\xb8\x0e\xe3\x36\x87\xeb\x30\x7a\x43\xb8\x4e\x8c\x8b\x35\x5c\xa7\x76\xa8\x7e\x91\x40\xcd\xe1\x7a\xcf\x2f\x65\x4b\xe0\x96\x70\x1d\xc6\x6f\x0b\xd7\x61\x12\xc6\x70\x9d\x58\x1a\x4b\xb8\x4e\x4d\x52\xfd\x22\x01\x9a\xc2\xf5\x9e\xdf\xd9\x96\x80\x8d\xe1\x3a\x8c\xdb\x1c\xae\xc3\xe8\x0d\xe1\x7a\x9f\x4f\x86\xeb\x7d\xce\x43\x69\x11\xd8\x12\xae\xf7\xc3\x35\x6e\xa9\x81\x2d\x5c\x37\xd0\xb0\x86\xeb\x06\x32\xe6\x70\x1d\x83\xd9\xc3\xf5\x3e\xe7\xc1\xb4\x08\x6b\x0e\xd7\xfb\xe1\x8e\xb7\x04\x6f\x09\xd7\x0d\x14\x6c\xe1\xba\x81\x88\x31\x5c\xc7\x50\xd6\x70\xbd\xcf\x79\x38\x2d\x82\x1a\xc3\xf5\x7e\xb8\x00\x2e\x81\x9b\xc3\x75\x03\x7e\x4b\xb8\x6e\x20\x61\x0a\xd7\x31\xd0\x44\xb8\xde\xe7\x3c\x94\x16\x81\x2d\xe1\x7a\x3f\xdc\x0b\x97\x1a\xd8\xc2\x75\x03\x0d\x6b\xb8\x6e\x20\x63\x0e\xd7\x31\x98\x35\x5c\xef\x73\x1e\x4e\x8b\xa0\xc6\x70\xbd\x1f\xae\x8d\x4b\xe0\xe6\x70\xdd\x80\xdf\x12\xae\x1b\x48\x98\xc2\x75\x9e\xb1\xd5\x1c\xae\xf7\xf9\x18\x48\xcb\xd0\xa6\x70\xbd\x17\xee\x92\x2b\x2d\x8c\xe1\xba\x85\x8a\x39\x5c\xb7\x10\x02\xc3\xf5\x65\x87\xfa\xce\x2f\xaa\xb2\x22\x99\xfc\x6e\xa7\xaa\xec\xfc\x53\x52\x64\xf9\xcb\xfe\xe7\x7f\xf9\xa9\x2a\x2b\xff\x5f\xd1\xf9\x9a\x27\xcd\xe2\x27\x54\xe6\xd5\xe2\xa7\xaa\x4c\x8e\xd5\xe2\x0f\x55\xd9\x56\x79\xd2\x2e\x7e\xcc\x0e\xa8\x49\xba\xac\x2a\x3d\x0c\xbd\xf8\x43\x75\x6d\x32\xd4\x78\x7f\x46\xcf\x8b\x01\xad\xc8\x24\x21\xc8\xd2\x36\xdf\xc8\x0f\x92\x1b\x76\xcf\x8a\x34\x50\x92\x13\x5c\x4f\x36\xa8\xc1\xb1\xec\xe1\x7a\x9e\x44\x0d\xb2\x6b\xae\xe5\x31\xe9\x90\x9a\xb8\xf3\x89\xd4\x0e\x85\x28\xcf\xb3\xba\xcd\x5a\x20\xf5\x22\x43\x44\xb2\x92\x0a\x5d\x50\x53\x93\x92\x2a\x9a\x96\x54\x80\xd2\x72\x93\x92\x3a\x96\x90\x57\x80\xd3\x12\xf2\x9a\x93\x0c\x90\x56\x3c\x7f\xed\x14\x43\x43\x0e\xdb\x49\x9e\xc6\xd7\xd6\x6c\x6c\x59\xae\x53\x50\xe5\x4a\xdd\xf8\x1a\x72\xda\x4e\xf2\x35\x3e\x77\x33\x93\x2f\x7e\x70\x84\x8e\xde\xd9\x8d\xaf\x21\xc7\xed\x24\x5f\xe3\x7b\x03\x33\xf9\x1a\xb6\xc8\x48\x3b\x9e\xef\x76\x8a\xb1\x21\xe7\xed\x24\x63\x63\xc2\x67\x2b\x63\xac\x17\xd5\x33\x6a\x8e\x49\x8b\x6e\x6c\xb6\x24\x65\x7b\xaa\x9a\x62\x3f\x54\x68\xf8\xaf\x75\x0d\x37\x19\x2a\x74\x7d\x4f\xea\xac\x4b\xf2\xec\x57\xad\xcd\x58\x23\x36\x22\x86\xe9\x99\xe4\x6d\xf4\x73\x9a\xe9\x77\x2c\xd9\xaf\x82\xc0\x0a\x8c\x1a\x09\x9c\x95\x99\x9a\x50\x0b\x23\xb5\x58\x9b\x09\x1c\xaa\x3c\x95\x60\xb7\x76\x58\x85\x17\x5a\xa4\x35\x20\x22\x38\x52\xc8\xb6\x7b\xc9\xd1\x9e\x96\xe8\xf6\x11\x5b\xa7\x1b\x4d\x20\xf9\xfe\x74\x3a\x69\x00\x75\x93\x15\x49\xf3\xc2\x41\x82\x60\x7b\x90\xa0\x12\x09\x8c\xe6\x87\x5d\x28\x85\x17\x6c\x15\x47\x0c\xf1\xe6\xb0\xd2\xad\x05\x3a\x56\x65\x2a\x50\xda\x1c\xb7\xf1\x36\xd5\x29\x0d\x80\x32\xad\xb1\x58\xa2\xb6\x7e\x5c\x9f\xe2\xb5\x4e\xed\x7a\x3c\xa2\xb6\xe5\x50\xd1\x2e\xd9\xae\x63\x80\x16\x05\x53\x28\xb1\x42\x89\x4e\xf8\xb8\x79\x8c\x74\xf1\x66\xe5\xa9\x1a\x40\xb6\x49\x74\xd8\xe9\x44\x30\x8c\x4c\x81\x94\xc8\x42\x3b\x6d\x36\x5b\xbd\x1b\xcf\x49\x53\x66\xe5\x79\x1c\xbf\x63\x18\x6c\x75\x0a\x0c\x4c\x26\xc2\x0b\x25\x3a\x87\x64\x77\x90\xf5\x8f\xc0\xa6\x49\x79\x1e\x81\xd2\xe3\x2a\x86\xa4\x45\xa1\x64\x2a\xac\x4c\x22\x92\x6c\xc3\x34\x4a\x74\xfb\x47\xe6\x25\xef\xca\xee\xf4\x78\x4a\x74\x1a\x04\x48\x26\x41\x8b\x24\x0a\xc7\x43\xba\x4a\x75\x0a\x69\xd2\x7c\xe6\x20\xab\xf5\x2a\x59\x07\x50\x27\x9a\xcf\x6a\x17\x9a\xcf\xca\x60\x47\xe1\x3a\xdc\x68\xe8\x0f\x55\x3a\x68\x6f\x14\x46\x71\xf4\xa8\xfb\x9e\x6b\x87\x52\xa3\x86\x33\x34\x79\x72\xfc\xec\xc7\x01\x03\x13\x13\x0f\xcb\x69\x87\xc7\x09\x3c\x42\x5f\xda\x9c\x40\x7f\x58\x84\x41\xf0\x01\x6c\x71\xc9\x52\xba\x52\xdb\x07\x1f\x03\x2f\x79\xd2\xb2\xc7\xd2\x95\x8c\x90\xc4\x58\xcf\x35\x9b\x95\x59\x97\x25\xb9\x90\x44\x9a\x8a\x0a\x1d\x2b\xba\x9c\xa3\xc9\x90\x95\x42\x2d\x23\x32\xed\x6f\x83\x92\xcf\xb7\xe7\xaa\x49\xe9\x9f\x7b\xf2\x5f\x1f\x17\x8c\xb0\x43\x2e\x69\xfa\x54\x0b\x04\xc2\x57\x4c\xa8\x45\x5c\x8d\xb2\xf2\x82\x9a\x4c\xf2\x68\x2c\x15\xf5\x8d\xfc\x9b\xe5\x59\xf7\xc2\xb3\x53\x8b\x50\x59\x09\xc0\x69\x09\xda\x99\x2b\xae\x9b\xac\xec\x6e\xbf\x5b\xd0\x8c\xbf\x8b\xfd\x01\x9d\xaa\x86\x75\x1e\x4c\x05\xfd\x64\x4e\x12\x9d\xec\xcb\xaa\xfb\x76\x79\xe8\xca\x07\x4d\x7a\xd7\x32\x45\x4d\x9e\x95\xe8\x35\x39\x1c\x9a\x5f\xba\xac\xcb\xd1\x27\x96\x66\x78\x48\x0c\xec\x7d\xfb\xce\x4b\xba\xae\xf9\x96\x54\x3f\x78\xef\x1e\xde\xbd\xd6\x0d\x92\x56\xb6\x75\x83\x7c\x65\x6d\x7b\xc8\xab\xe3\xe7\xff\x7b\xad\x3a\xb4\xc0\xd0\x6c\x5c\xc3\xba\xf7\xda\x2a\xcf\x52\xef\x7d\x92\x1e\xe2\x43\xfa\x54\x27\x67\x44\x87\xc9\xcf\xca\x36\x4b\xd1\x3e\xf9\x52\x65\xe9\x6b\x77\x41\x49\x7a\x4b\xb3\xb6\xce\x93\x97\x7d\x97\x1c\x72\xe4\xe3\x22\xd4\xf8\x58\x71\xea\xd7\xac\x38\x2f\xba\xe6\x66\x6a\x7f\x89\x16\x97\xd5\xa2\xbe\x55\x4d\x7d\x49\xca\x76\xbf\x7a\x7a\xce\xd2\xea\xb9\xdd\xaf\x68\x95\xd8\x90\xf4\x98\xb5\xfb\x27\x5c\x7e\x6b\xb3\x5f\xd1\x3e\x59\xbd\x2e\xb1\x18\x92\xac\x44\xcd\x82\x4c\x46\x65\xed\x26\x8e\x70\x99\x7c\x39\x24\xcd\xc0\x31\x1e\x86\xd7\xe5\x21\x49\xcf\x50\xe7\x83\x00\x6b\x38\xee\x14\xab\xc4\xd3\x20\x4f\xea\x16\xed\xf9\x1f\x92\x1e\x62\x48\xaf\x4b\x17\xfc\xaf\xcb\x4d\x9b\x41\x9a\xb3\x25\x22\xa3\xd8\x51\x3a\x36\x16\x8a\x2e\x00\x67\x29\x42\x11\xda\xe8\x88\x04\x53\xc7\x26\x81\x58\xe3\x75\x58\x3c\xdf\x91\xff\x2e\xa4\xf2\x54\xfe\x79\x51\x7e\xa2\x44\xe0\x83\xf7\x84\xf2\xc0\xbb\xbd\x24\x50\xbc\x81\xcc\xc3\x13\xd8\xf0\xf5\xbf\xfd\xc3\xc7\xdf\xbd\xf7\xda\xea\xda\x1c\xd1\x4f\x49\x5d\x67\xe5\xf9\xdf\xff\xf5\xc7\xef\xa3\xe5\xea\x14\xa3\x30\x78\xdc\x2e\x8f\x97\x6b\xf9\x79\x79\x6c\xdb\x65\x91\xd4\xde\xef\x3e\xfe\xbf\x01\x00\x00\xff\xff\x35\x38\x9c\x20\xf7\x4d\x02\x00") -func pkgUiStaticReactStaticCss2Bae5dac8ChunkCssBytes() ([]byte, error) { +func pkgUiStaticReactStaticCss23f5e1097ChunkCssBytes() ([]byte, error) { return bindataRead( - _pkgUiStaticReactStaticCss2Bae5dac8ChunkCss, - "pkg/ui/static/react/static/css/2.bae5dac8.chunk.css", + _pkgUiStaticReactStaticCss23f5e1097ChunkCss, + "pkg/ui/static/react/static/css/2.3f5e1097.chunk.css", ) } -func pkgUiStaticReactStaticCss2Bae5dac8ChunkCss() (*asset, error) { - bytes, err := pkgUiStaticReactStaticCss2Bae5dac8ChunkCssBytes() +func pkgUiStaticReactStaticCss23f5e1097ChunkCss() (*asset, error) { + bytes, err := pkgUiStaticReactStaticCss23f5e1097ChunkCssBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/static/css/2.bae5dac8.chunk.css", size: 151031, mode: os.FileMode(420), modTime: time.Unix(1581497509, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/static/css/2.3f5e1097.chunk.css", size: 151031, mode: os.FileMode(420), modTime: time.Unix(1586531010, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiStaticReactStaticCssMainEc7d4f9eChunkCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x57\x7f\x8f\xa4\xb8\x11\xfd\x3f\x9f\x82\x68\x13\xe9\xf6\x32\xe6\x80\xe9\x9e\xe9\x01\xed\x48\x39\x45\xc9\x29\xd9\x44\xa7\x6c\xb2\x52\x72\x3a\x21\x83\x0b\xf0\x8d\xb1\x7d\x76\xb1\x4d\x2f\xea\xef\x1e\xd9\xfc\x18\xba\x9b\xbd\x8b\x46\xea\x05\x5c\x2e\x57\xbd\x7a\xf5\x5c\x1b\x6a\x2a\x41\x0c\x2d\x35\x35\x97\xa4\x50\x88\xaa\x4d\x93\x48\xf7\x67\x2e\x75\x87\x3f\xe0\x49\xc3\xbb\xb2\x81\xf2\xa5\x50\xfd\x8f\xa9\x7f\x02\xf6\x07\x41\x0b\x10\x43\xa9\x84\x32\xe9\x9b\xe4\xf0\x10\x3d\x45\xe7\xb0\xec\x2c\xaa\x96\x94\x4a\xa2\x51\x82\x4c\x36\x9d\xb1\xca\xa4\x5a\x71\x89\x60\xce\x21\xaa\xba\x16\x60\x2c\x39\x1a\xaa\x35\x98\x20\xac\x94\x69\x49\x6d\x54\xa7\xaf\xc2\x08\xf7\x06\xda\xf3\x0f\x95\x32\xbf\x7b\x47\xa6\x7d\x3f\x6e\x9e\x92\xd2\x0a\xc1\xdc\xfd\x5f\xa6\x05\x54\xca\xc0\x80\x4a\xa7\x61\x72\x30\xd0\x66\x02\x2a\x4c\x49\x1c\xde\xbb\x97\x23\x67\xd8\xa4\x71\x18\x27\xee\xad\x01\x5e\x37\x38\xbf\x9e\xc3\x92\x6a\x8e\x54\xf0\xcf\x40\x90\xa3\x80\xb4\xe2\xc6\x22\x11\x80\x08\x66\x40\xe8\x91\xa0\xa1\xd2\xba\x9c\xd2\x57\xe3\x73\x08\xbd\x36\x60\x2d\x57\x92\x78\x60\xaf\x52\x8d\x1d\xe2\x37\x46\x81\x73\x48\x0d\xd0\xc1\x80\xe5\x9f\x21\x95\x4a\x42\xa6\x3e\x81\xa9\x84\x3a\xa6\x0d\x67\x0c\xe4\xb9\xe8\x10\x95\x0c\xa1\x87\xb2\x43\x20\x05\xca\x61\x4c\xe2\xb0\x73\x4e\xa9\x00\x83\xe3\x2f\x61\x54\xd6\x60\x36\xcf\x96\xf4\x13\x41\x5a\xd8\xc0\x3f\x09\x2e\x5f\x6e\x4b\x47\x0b\x8f\x25\x48\x1c\x0a\x65\x18\x18\xe2\xa1\x8b\x75\x1f\x58\x25\x38\x0b\xde\x30\x80\x04\x1e\xb2\x69\xd5\x8c\xe0\x7d\x69\x79\x3e\xff\x66\x5d\x53\xc6\xb8\xac\xa7\xc8\x56\xc7\x06\x63\x1e\x57\x09\x44\xe7\x90\x51\xa4\x2e\x7c\x01\xa1\xff\x9d\x2c\xbc\x87\x20\x0a\x12\xe7\xe7\xd5\xe6\x19\x0b\xc5\x4e\xcf\x68\x9e\x91\x0d\xf3\x61\x7b\x6f\xe9\x7e\x0f\xba\xcf\x2a\x25\x91\x78\xcc\xc3\x03\xb4\x37\x98\x87\xb4\x43\x65\xbb\xba\x06\x8b\x84\x19\xa5\x99\x3a\xca\x41\x2b\xcb\x91\x2b\x99\xd2\xc2\x2a\xd1\x21\x4c\x99\xae\x53\x2c\x81\xed\x18\xcd\x0a\x5a\xbe\x38\xce\x4b\x46\xa6\x2e\xaa\xaa\x2a\x9b\x1e\x77\x4f\xfb\x68\xff\xb8\x8a\x21\x76\x5c\xfc\x4c\xb8\x64\xd0\xa7\x71\x14\x45\x23\x67\xf7\x0f\xba\xcf\x26\x2c\x1c\x9f\xc9\x83\x2f\xf8\x46\x68\x44\x70\x8b\x4b\xaa\xd1\xb4\x29\x8d\x32\xf7\x9d\x58\x3c\x89\x91\x5c\xbf\xb0\x3b\x10\x7c\xe2\x55\x1c\x45\xbf\x5f\x6a\x14\x26\xae\x4b\x83\xd8\x37\x6b\x56\x0a\xa0\x26\x2d\x14\x36\xd9\xb1\xe1\x08\xc4\x6a\x5a\x3a\xd7\xae\xdb\x6f\x93\xe6\x92\x23\xa7\x62\x86\x29\xca\x18\xb7\x5a\xd0\x53\x5a\x08\x55\xbe\xfc\x72\x30\xdb\x8b\x0d\x50\x06\x66\xb8\x85\xb7\xa8\x18\x54\xd5\x1a\xd3\x48\xf7\x99\xe0\x12\xc8\xd2\xe4\xfb\xec\xaa\x83\x3b\xa7\x50\x25\xb5\x30\x2e\x50\xc1\x6b\x99\x96\x30\xb6\x43\x6d\xa8\x6e\x66\x71\xb1\x77\x23\xf1\x96\xf7\xcd\x26\xbb\xdc\x12\xf8\x26\xbf\xde\x38\x7e\x1d\x7e\xf5\xc0\x20\x34\xae\x9b\x27\xa5\x18\x37\x8d\xf5\xd9\x8f\x6d\xc3\xdb\xcb\xc5\x8b\xa6\x1c\x8b\xfd\x6a\x33\x6d\x4d\x1e\x23\xdd\xff\x96\xb7\x5a\x19\xa4\x12\xb7\x23\x0e\x0d\x78\x7a\xbf\x8a\xd9\xb8\xf9\x69\x23\xc7\xe7\x54\x2a\xfc\x6a\x92\xc9\xb2\xe1\x82\xbd\x9d\x91\xf1\x14\x4e\xb6\x70\x09\x3d\x8d\x88\x8f\xae\x40\x79\x83\xd0\xd5\xfa\xaa\xda\x63\x1b\xad\xc5\xc9\x4b\xe6\xf4\xc1\xf5\xc8\x46\x2b\x7e\x49\x8d\xa6\xf5\x8b\xa6\x9c\x63\x15\x50\x83\x64\x8b\xcc\x8c\xe2\xe1\xff\xd9\xef\x2f\xe5\xe3\x71\x0f\xed\x85\xa2\x39\x8d\x59\x88\xce\xa5\xa7\xe0\xc4\xf7\xd1\x2b\xe1\x08\xed\x95\xfa\x2e\x1b\x2a\x01\x7d\xe6\x79\xe1\xcd\xec\xc4\x8e\xe5\x04\x2f\x61\x8b\x00\x53\xc6\x3b\x9b\xde\x3b\x8c\x27\xdf\xf6\x48\xb1\x6c\xa6\x8a\x3d\xea\x7e\xbe\xe2\xdc\xa3\xea\xd0\x47\xa3\xaa\xca\x82\x17\xee\xf9\x93\x6b\x8e\x15\x30\x65\x39\x2b\x48\x32\xea\xa5\x53\xd8\x20\xfa\xf5\xac\xd2\xc6\x29\xe9\xba\x60\xa6\x2e\xe8\x57\xd1\x9d\xfb\x0b\xe3\xc3\xdb\xc5\xba\x05\x34\xbc\x24\x92\xb6\xb3\x98\xbf\x5e\x27\x8b\x91\xbf\xd1\x47\x1b\x8f\xf8\x71\xca\x25\x8a\xa6\x3a\xcd\x05\xf2\xa8\x2c\x3c\x6b\xa8\xc1\x61\xca\x7b\x1f\x39\x1d\x58\x09\x5b\xc5\x85\xd8\x90\x60\x77\x0d\x5c\x38\x08\xc2\x4a\x28\x24\x2e\x1f\x41\x4f\x73\xb9\x4a\xa3\xac\x6d\x28\x5f\xda\x15\x95\x12\xc8\xf5\x97\x52\x3e\xbc\xcd\x56\xfa\xef\x8f\xab\x68\xcb\xc5\x29\xfd\xa3\xe1\x54\xdc\x7d\x07\xe2\x13\x20\x2f\xe9\x9d\xa5\xd2\x12\x0b\x86\x5f\x88\x58\xe2\x82\xbf\x55\xda\x99\x0d\x87\x6d\x2e\x5c\x84\x16\x84\x1e\x46\x3b\xac\xdc\xc6\xd7\xda\x18\x6f\x6c\x63\x80\x94\x8b\x99\x51\x5b\xb5\x5f\x70\x7d\xe5\xd9\x28\x84\x94\x31\xe2\x27\x4f\xdf\xbf\x1b\xd3\x67\x88\xd4\xd4\x80\x5e\xcf\xaf\x6b\xbb\xca\x5f\x38\x2b\x17\x98\xea\x34\xe1\xb2\x52\xc3\x45\x9f\xfc\xd4\x59\xe4\xd5\x69\x1e\x1f\x52\x8f\x11\x29\x00\x8f\x00\x32\xbb\x55\xe8\xab\xc9\xa3\xa0\xac\x86\x65\x52\x7d\xb6\x9a\xca\x4b\x2e\xee\xfd\xfd\xdb\xcf\x28\x8d\x91\x9b\x4e\x80\xbd\x0d\xfc\xc1\x91\xd2\xad\xe5\x25\x08\x31\xac\x8b\xa6\x0d\x90\xed\x0b\xf2\x4d\xb5\x77\x7f\x97\xf7\xe2\x05\x4d\x5a\x25\x95\xf7\x72\x0e\x7f\xee\xc0\x9c\x88\x45\x8a\x76\x70\xe9\xbb\xa1\xfa\x98\xc6\x17\x62\xe4\x2f\xe9\xd1\xf5\x63\x7c\x88\x0e\x70\x0e\x4b\x25\x2b\x5e\x93\x13\x6d\xc5\x70\x79\xce\x1a\x8d\x35\xe9\xee\x75\x3f\x3b\xb9\xbf\xbf\xcf\x8e\xca\x30\x52\x18\xa0\x2f\xa9\xff\x25\x54\x88\x2f\xa7\xb2\x31\x12\x95\xe5\x15\x49\xfd\xe0\xfa\x67\x2e\x10\x4c\x5e\xa0\xcc\xf3\xf8\xd4\xb0\x7a\x58\x8d\x3a\xe1\x03\xb4\xd7\x05\xf4\x2d\xfe\xa1\x34\x54\xc3\xf7\x4a\x89\xef\x1d\xbf\x72\x57\x7a\xca\x25\x98\x3c\x4f\x5a\x5a\xb6\x6b\x27\x24\x4e\xb6\xb6\xf8\xc9\x3e\xcf\x63\xad\xff\xf2\xd3\xaa\x29\x92\x05\x85\x15\x15\xaf\x67\xe4\x6b\x5f\xe3\xc4\x9d\xe7\xff\x55\xdf\xbd\x3c\xcc\xff\x61\xaa\x92\x5d\xbc\x8b\x37\x0e\x76\xd7\x5c\x9e\xc7\x1f\x98\x89\x57\xb3\xd6\x46\x52\x20\x44\x9e\xdf\xbf\xff\x58\xe4\xb3\x8e\xb9\x69\x68\xac\x84\x63\xd2\x54\x08\xf7\xbe\x59\x9e\x5b\x97\x20\x99\x4f\x22\xcf\xe3\x7f\xec\xea\xfe\xee\xc6\x60\x14\x89\x3c\x8f\x3f\x7e\xec\x8b\x79\x5c\xd8\x6f\x04\x27\xa8\x1b\x29\xfd\xc7\x3c\x8f\x9f\x92\x8f\x7f\xbb\x75\xe6\x48\x0a\x79\x9e\x7c\xfb\xf3\x9f\xfa\x25\xd3\x0d\x5f\x60\x8c\x32\x36\xcf\x93\xbf\x7e\xfb\xe9\x3f\x93\xe1\xbd\x33\xfc\x97\x97\x87\xf7\x63\x4c\x8c\xdb\xd2\xe9\x30\xb0\x3c\x4f\xe0\x83\xd8\x0d\xb7\x92\x78\xfe\xcd\x37\x5f\xbf\x09\xac\xea\x4c\x09\x7f\xa7\x5a\x73\x59\xff\xfb\x9f\xef\xdf\xb5\x94\xcb\x10\xca\x47\xb6\xab\x9e\x20\x2c\x9b\x4e\xbe\x84\xa5\xb5\x61\x4b\x75\xf0\xf5\x37\xff\x0b\x00\x00\xff\xff\x8d\xad\x08\x9f\x1e\x0f\x00\x00") +var _pkgUiStaticReactStaticCssMainA6053568ChunkCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x57\x6d\x8f\xa4\xb8\x11\xfe\x9e\x5f\x41\xb4\x89\x74\x7b\x19\x73\xc0\x4c\xf7\xf4\x82\x76\xa4\x9c\xa2\xe4\x94\x6c\xa2\x53\x36\x59\x29\x39\x9d\x90\xc1\x05\xf8\xc6\xd8\x3e\xbb\x98\xa6\x17\xf5\x7f\x8f\x6c\x5e\x86\xee\x66\xef\xa2\x96\x18\xb0\xcb\xe5\x7a\x79\xea\xa9\x9a\x50\x53\x09\x62\x68\xa9\xa9\xb9\x24\x85\x42\x54\x6d\x9a\x44\xba\x3f\x73\xa9\x3b\xfc\x01\x4f\x1a\xde\x97\x0d\x94\xcf\x85\xea\x7f\x4c\xfd\x1b\xb0\x3f\x08\x5a\x80\x18\x4a\x25\x94\x49\xdf\x24\x87\x7d\xf4\x2e\x3a\x87\x65\x67\x51\xb5\xa4\x54\x12\x8d\x12\x64\x92\xe9\x8c\x55\x26\xd5\x8a\x4b\x04\x73\x0e\x51\xd5\xb5\x00\x63\xc9\xd1\x50\xad\xc1\x04\x61\xa5\x4c\x4b\x6a\xa3\x3a\x7d\x65\x46\xb8\x33\xd0\x9e\x7f\xa8\x94\xf9\xdd\x7b\x32\x9d\xfb\x71\xf3\x96\x94\x56\x08\xe6\xee\xff\x12\x2d\xa0\x52\x06\x06\x54\x3a\x0d\x93\x83\x81\x36\x13\x50\x61\x4a\xe2\xf0\xde\x7d\x1c\x39\xc3\x26\x8d\xc3\x38\x71\x5f\x0d\xf0\xba\xc1\xf9\xf3\x1c\x96\x54\x73\xa4\x82\x7f\x06\x82\x1c\x05\xa4\x15\x37\x16\x89\x00\x44\x30\x03\x42\x8f\x04\x0d\x95\xd6\xf9\x94\xbe\x0a\x9f\x43\xe8\xb5\x01\x6b\xb9\x92\xc4\x07\xf6\xca\xd5\xd8\x45\xfc\x46\x28\x70\x0a\xa9\x01\x3a\x18\xb0\xfc\x33\xa4\x52\x49\xc8\xd4\x0b\x98\x4a\xa8\x63\xda\x70\xc6\x40\x9e\x8b\x0e\x51\xc9\x10\x7a\x28\x3b\x04\x52\xa0\x1c\x46\x27\x0e\x0f\x4e\x29\x15\x60\x70\x7c\x12\x46\x65\x0d\x66\xf3\x6e\x49\x5f\x08\xd2\xc2\x06\xfe\x4d\x70\xf9\x7c\x9b\x3a\x5a\xf8\x58\x82\xc4\xa1\x50\x86\x81\x21\x3e\x74\xb1\xee\x03\xab\x04\x67\xc1\x1b\x06\x90\xc0\x3e\x9b\x76\xcd\x18\xbc\x2f\x6d\xcf\xf7\xdf\xec\x6b\xca\x18\x97\xf5\x64\xd9\xea\xda\x60\xf4\xe3\xca\x81\xe8\x1c\x32\x8a\xd4\x99\x2f\x20\xf4\xcf\x49\xc2\x6b\x08\xa2\x20\x71\x7a\x5e\x65\x9e\xb0\x50\xec\xf4\x84\xe6\x09\xd9\x30\x5f\xb6\xf3\x92\xee\x79\xd0\x7d\x56\x29\x89\xc4\xc7\x3c\x3c\x40\x7b\x13\xf3\x90\x76\xa8\x6c\x57\xd7\x60\x91\x30\xa3\x34\x53\x47\x39\x68\x65\x39\x72\x25\x53\x5a\x58\x25\x3a\x84\xc9\xd3\xb5\x8b\x25\xb0\x07\x46\xb3\x82\x96\xcf\x0e\xf3\x92\x91\xa9\x8a\xaa\xaa\xca\xa6\xd7\x87\x77\xbb\x68\xf7\xb8\xb2\x21\x76\x58\xfc\x4c\xb8\x64\xd0\xa7\x71\x14\x45\x23\x66\x77\x7b\xdd\x67\x53\x2c\x1c\x9e\xc9\xde\x27\x7c\xc3\x34\x22\xb8\xc5\xc5\xd5\x68\x3a\x94\x46\x99\x5b\x27\x16\x4f\x62\x04\xd7\x2f\x9c\x0e\x04\x9f\x70\x15\x47\xd1\xef\x97\x1c\x85\x89\xab\xd2\x20\xf6\xc5\x9a\x95\x02\xa8\x49\x0b\x85\x4d\x76\x6c\x38\x02\xb1\x9a\x96\x4e\xb5\xab\xf6\x5b\xa7\xb9\xe4\xc8\xa9\x98\xc3\x14\x65\x8c\x5b\x2d\xe8\x29\x2d\x84\x2a\x9f\x7f\xd9\x98\xed\xcd\x06\x28\x03\x33\xdc\x86\xb7\xa8\x18\x54\xd5\x3a\xa6\x91\xee\x33\xc1\x25\x90\xa5\xc8\x77\xd9\x55\x05\x77\x8e\xa1\x4a\x6a\x61\xdc\xa0\x82\xd7\x32\x2d\x61\x2c\x87\xda\x50\xdd\xcc\xe4\x62\xef\x46\xe0\x2d\xdf\x9b\x45\x76\x79\x24\xf0\x45\x7e\x7d\x70\x5c\x1d\x7e\xf5\xc2\x20\x34\xae\x9a\x27\xa6\x18\x0f\x8d\xf9\xd9\x8d\x65\xc3\xdb\xcb\xcd\x8b\xa2\x1c\x93\xfd\x2a\x33\x1d\x4d\x1e\x23\xdd\xff\x96\xb7\x5a\x19\xa4\x12\xb7\x2d\x0e\x0d\x78\x78\xbf\x92\xd9\x78\xf8\xdd\x86\x8f\x4f\xa9\x54\xf8\xd5\x44\x93\x65\xc3\x05\x7b\x3b\x47\xc6\x43\x38\xd9\x8a\x4b\xe8\x61\x44\xbc\x75\x05\xca\x9b\x08\x5d\xed\xaf\xb2\x3d\x96\xd1\x9a\x9c\x3c\x65\x4e\x0b\xae\x46\x36\x4a\xf1\x4b\x6c\x34\xed\x5f\x14\xe5\x6c\xab\x80\x1a\x24\x5b\x68\x66\x24\x0f\xff\x67\xb7\xbb\xa4\x8f\xc7\x1d\xb4\x17\x8c\xe6\x38\x66\x01\x3a\x97\x1e\x82\x13\xde\x47\xad\x84\x23\xb4\x57\xec\xbb\x1c\xa8\x04\xf4\x8b\x3a\xcf\x57\x0b\xdb\x52\xc6\x3b\x9b\xde\xdf\xc0\xfa\xf1\x42\x71\xc0\xf8\xcb\xe0\xb4\xf8\x0e\x9c\xba\xc7\xb2\x6f\x8f\x14\xcb\x66\x68\xb9\x24\x63\x4a\x1f\x75\x3f\xf7\x40\xf7\xaa\x3a\xf4\xaa\x55\x55\x59\xf0\xcc\x3e\x2f\xb9\xea\x59\x45\xae\x2c\x67\x8a\xd9\x8f\x84\xea\x28\x38\x88\x7e\xdd\xed\xb4\x71\x54\xbb\xce\xa8\xa9\x0b\xfa\x55\x74\xe7\x7e\x61\x7c\x78\xbb\x48\xb7\x80\x86\x97\x44\xd2\x76\x66\xfb\xd7\x7e\xb3\x08\xf9\x96\x3f\xca\xf8\x94\x1c\x27\x5f\xa2\x68\x4a\xe4\x9c\x41\x1f\xc9\x05\x88\x0d\x35\x38\x4c\x7e\xef\x22\x47\x14\x2b\xe6\xab\xb8\x10\x1b\x1c\xed\xfa\xc4\x85\x82\x20\xac\x84\x42\xe2\xfc\x11\xf4\x34\xe7\xb3\x34\xca\xda\x86\xf2\xa5\x9e\x51\x29\x81\x5c\x7f\xc9\xe5\xc3\xdb\x6c\xd5\x20\xfc\x75\x15\x6d\xb9\x38\xa5\x7f\x34\x9c\x8a\xbb\xef\x40\xbc\x00\xf2\x92\xde\x59\x2a\x2d\xb1\x60\xf8\x05\xcb\x25\xce\xf8\x5b\x2a\x9e\x11\x74\xd8\xc2\xcf\x95\x69\x41\xe8\xc3\x68\x87\x95\xda\xf8\x1a\x65\xf1\xc6\x31\x06\x48\xb9\x98\x51\xb5\x95\xfb\x25\xae\xaf\x38\x1b\x99\x92\x32\x46\xfc\x68\xea\x0b\x7c\x63\x3c\x0d\x91\x9a\x1a\xd0\x13\xfe\x75\x6e\x57\xfe\x0b\x27\xe5\x0c\x53\x9d\x26\x5c\x56\x6a\xb8\x28\xa4\x9f\x3a\x8b\xbc\x3a\xcd\xf3\x45\xea\x63\x44\x0a\xc0\x23\x80\xcc\x6e\x29\xfc\x6a\x34\x29\x28\xab\x61\x19\x65\x9f\xac\xa6\xf2\x12\x8b\x3b\xdf\xa0\xfb\x39\x4a\xa3\xe5\xa6\x13\x60\x6f\x0d\xdf\x3b\x50\xba\xbd\xbc\x04\x21\x86\x75\xd2\xb4\x01\xb2\xdd\x41\xdf\x54\x3b\xf7\xbb\x6c\x9c\x17\x30\x69\x95\x54\x5e\xcb\x39\xfc\xb9\x03\x73\x22\x16\x29\xda\x91\x01\x6a\xa3\x8e\x69\x7c\xc1\x56\xbe\x8b\x8f\xaa\x1f\xe3\x43\x74\x80\x73\x58\x2a\x59\xf1\x9a\x9c\x68\x2b\x86\xcb\x7b\xd6\xd1\x58\x83\xce\x71\xd0\xa4\xe4\xfe\xfe\x3e\x3b\x2a\xc3\x48\x61\x80\x3e\xa7\xfe\x49\xa8\x10\x5f\x76\x65\x63\x66\x2a\xcb\x2b\x90\xfa\xc9\xf6\xcf\x5c\x20\x98\xbc\x40\x99\xe7\xf1\xa9\x61\xf5\xb0\x9a\x85\xc2\x3d\xb4\xd7\x09\xf4\x25\xfe\xb1\x34\x54\xc3\xf7\x4a\x89\xef\x1d\xbe\x72\x97\x7a\xca\x25\x98\x3c\x4f\x5a\x5a\xb6\x6b\x25\x24\x4e\xb6\x8e\xf8\xd1\x3f\xcf\x63\xad\xff\xf2\xd3\xaa\x28\x92\x25\x0a\x2b\x28\x5e\x0f\xd1\xd7\xba\xc6\x91\x3c\xcf\xff\xab\xbe\x7b\xde\xcf\xff\x51\x55\xc9\x43\xfc\x10\x6f\x5c\xec\xfa\x60\x9e\xc7\x1f\x99\x89\x57\xc3\xd8\x86\x53\x20\x44\x9e\xdf\x7f\xf8\x54\xe4\x33\x8f\xb9\x71\x69\xcc\x84\xe7\xfd\x31\x11\xee\x7b\x33\x3d\xb7\x2a\x41\x32\xef\x44\x9e\xc7\xff\x78\xa8\xfb\xbb\x1b\x81\x91\x24\xf2\x3c\xfe\xf4\xa9\x2f\xe6\x79\x62\xb7\x61\x9c\xa0\x6e\xe6\xf4\x8b\x79\x1e\xbf\x4b\x3e\xfd\xed\x56\x99\x03\x29\xe4\x79\xf2\xed\xcf\x7f\xea\x17\x4f\x37\x74\x81\x31\xca\xd8\x3c\x4f\xfe\xfa\xed\xcb\x7f\x26\xc1\x7b\x27\xf8\x2f\x4f\x0f\x1f\x46\x9b\x18\xb7\xa5\xe3\x61\x60\x79\x9e\xc0\x47\xf1\x30\xdc\x52\xe2\xf9\x37\xdf\x7c\xfd\x26\xb0\xaa\x33\x25\xfc\x9d\x6a\xcd\x65\xfd\xef\x7f\x7e\x78\xdf\x52\x2e\x43\xba\x8f\x76\xf7\xbb\xfd\x21\x2c\x9b\x4e\x3e\x87\xa5\xb5\x61\x4b\x75\xf0\xf5\x37\xff\x0b\x00\x00\xff\xff\xe7\xbc\xf2\x18\x3f\x0f\x00\x00") -func pkgUiStaticReactStaticCssMainEc7d4f9eChunkCssBytes() ([]byte, error) { +func pkgUiStaticReactStaticCssMainA6053568ChunkCssBytes() ([]byte, error) { return bindataRead( - _pkgUiStaticReactStaticCssMainEc7d4f9eChunkCss, - "pkg/ui/static/react/static/css/main.ec7d4f9e.chunk.css", + _pkgUiStaticReactStaticCssMainA6053568ChunkCss, + "pkg/ui/static/react/static/css/main.a6053568.chunk.css", ) } -func pkgUiStaticReactStaticCssMainEc7d4f9eChunkCss() (*asset, error) { - bytes, err := pkgUiStaticReactStaticCssMainEc7d4f9eChunkCssBytes() +func pkgUiStaticReactStaticCssMainA6053568ChunkCss() (*asset, error) { + bytes, err := pkgUiStaticReactStaticCssMainA6053568ChunkCssBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/static/css/main.ec7d4f9e.chunk.css", size: 3870, mode: os.FileMode(420), modTime: time.Unix(1581497509, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/static/css/main.a6053568.chunk.css", size: 3903, mode: os.FileMode(420), modTime: time.Unix(1586531010, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiStaticReactStaticJs2776f6080ChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x0b\x93\xdb\x36\xb2\x30\xfa\x57\x24\xae\x3f\x86\xb0\x20\x0e\x29\x69\x5e\x94\x61\x95\xd7\x76\x36\xc9\xf1\x24\x7b\x12\x6f\xb2\x67\x39\x74\x3e\x8e\x08\x8d\xb8\xa1\x48\x85\x84\xc6\xf3\xa0\xf6\xb7\xdf\xea\x06\x48\x82\x14\x65\x67\xf3\xe5\x3b\xe7\xd6\xad\x5b\x65\x8f\x48\x10\xcf\x46\xa3\xd1\xe8\x17\x2c\xb1\x8e\x0b\xfb\x23\xbf\xd9\x86\xcb\x5f\xbe\x29\xb2\x74\x7b\x9b\x87\xdb\x35\xeb\x4f\x2e\x4b\x3f\x20\xf6\x76\x57\xac\x2d\xdf\x9f\x04\xd4\x5f\xed\xd2\xa5\x88\xb3\xd4\xe2\x54\xd0\x94\x3c\x19\xbb\x82\x0f\x0a\x91\xc7\x4b\x61\xcc\xb9\xcd\xef\xb7\x59\x2e\x0a\x96\x5a\xae\xe3\x92\x3d\xed\x66\x6f\xe7\x38\x23\x56\x4f\x9e\x56\x95\xa9\x1d\x59\x82\x1a\xb7\x06\xb5\xea\x7c\xe4\x29\xe7\x62\x97\xa7\x83\xe5\x9e\x10\xaa\x72\xac\x7b\x73\x24\x5a\x8e\xb8\x37\xc7\x4e\xcb\x91\xf4\xe6\x58\x69\x39\xc2\xde\x1c\x6b\x2d\xc7\x2f\xbd\x39\x6e\xb4\x1c\xff\xec\xcd\xb1\xd1\x72\xf0\xde\x1c\x57\x5a\x8e\x65\x6f\x8e\x5b\x2d\x47\xd4\x9b\xe3\x4e\xcb\x71\xd3\x9b\xe3\x41\xcb\xb1\xea\xcd\xf1\xb8\x27\x64\x7e\x17\xe6\x83\x9c\x66\x2c\xb5\x2e\xce\x08\x8d\x59\x6a\xa7\x56\x46\x68\x08\xf3\x4a\x68\x81\xef\x21\x99\x57\xa5\x07\x4b\x98\xdd\xa6\x1b\x59\x1c\x0d\x1c\xc6\x18\x37\x4d\x8b\x33\xc3\x20\xb4\x4e\x12\xa6\x69\x09\x96\x13\x2a\x16\xdc\x2e\xb6\x49\x2c\x2c\x63\x60\x10\x7b\x13\x6e\xad\xa6\x37\xbc\xae\x4b\xf8\x3c\x28\x4b\xbe\x27\xc4\xfe\x67\x16\xa7\x98\xd9\xe3\xfb\xba\xe5\x44\xb6\x0c\x1d\x4e\xd9\xd3\x7e\xae\x8a\x7d\x77\xf3\x4f\xbe\x14\xf6\x2f\xfc\xa1\xb0\x38\xb1\x57\x59\xfe\x36\x5c\xae\xb5\x16\x72\xf2\x34\x76\xa1\x3f\x76\x9c\x46\xfc\xfe\xbb\x95\x95\x13\xd3\xb4\x52\x3f\x0f\x18\xf7\xf3\x80\x20\xa0\x9a\x76\x76\xb2\x9d\x55\x96\x5b\xd8\x16\xcd\xd9\xab\x3c\x0f\x1f\xec\xb8\xc0\x5f\x4b\x90\x85\xf0\x7c\x11\xd0\x8c\xe5\x76\xc2\xd3\x5b\xb1\xa6\x31\xf4\x28\x7b\xe9\xcc\x49\xec\xa7\x2c\xf7\xb3\x31\x73\x03\xa8\x3f\x0d\xaa\x8e\xc6\x7b\xa8\x6e\x0b\x19\xeb\xb6\x56\x30\xfe\x2d\x0e\xdc\x32\x76\x69\xc4\x57\x71\xca\x23\x63\xc8\x98\x78\xd8\xf2\x6c\x35\x58\x66\x69\x91\x25\xdc\x34\xd5\x83\xcd\xf3\x3c\xcb\x2d\x4e\x28\x94\x62\x43\x87\x60\xad\x11\x33\x32\x84\x83\xc1\xea\xa2\x1f\xe3\x34\xca\x3e\x9a\xa6\xfc\xb5\xdf\x26\x7c\xc3\x53\x51\x96\x1a\x22\x68\x3d\x59\x57\xab\x36\x5e\x59\x43\x8b\xfb\x22\x88\xd3\x42\x84\xe9\x12\xaa\x8a\x08\x51\x83\x48\xf9\xc7\xc1\x5b\xec\x82\xf1\x75\x7a\x17\x26\x71\x34\xd8\xe6\xd9\x76\xf0\xbf\x8d\x91\x18\x19\xff\x7b\x50\xec\xb6\xdb\x24\xe6\xd1\x40\x64\x90\x96\x8e\x8c\xff\x6d\x0f\xde\xde\x6f\xf9\x52\x70\x95\x55\x64\x83\x1b\x3e\x08\xd3\x41\xd5\xc0\x20\x5b\x0d\x54\xef\xec\xc1\x8f\x50\x67\x28\x81\x13\xc6\x09\x8f\x6c\x43\x0e\xf1\x86\x15\x76\x68\x67\x29\xff\x6e\xf5\xfe\x61\xcb\x2d\x1f\x5e\x81\xba\xa4\xb7\x14\x1e\x61\x24\x74\x8d\x8f\xc5\x3a\xdc\x72\xeb\x69\xb9\xcb\x73\x9e\x0a\x0f\x92\xc2\xf4\x61\x4f\x02\x42\x37\x7d\xb5\x60\xd1\x4e\x75\xaa\x8e\x67\xcf\x24\x34\xb1\x92\xe2\x61\x73\x93\x25\x34\xe7\x69\xc4\x73\xaf\x2a\xb9\x27\x58\x20\x04\xdc\xf8\x6e\x65\xfd\x5f\xa8\x3f\x20\xd0\xf5\x2b\xf6\xf4\x65\x18\x71\xcf\x3d\x75\xe8\xeb\x2c\x49\xc2\x6d\xc1\xbd\xe9\xa9\x43\xaf\xb2\x28\x4c\xbc\xa9\xe3\xd0\xd7\x61\x9e\xed\x0a\x9e\x78\x67\x8e\xb3\xa7\xb7\xcc\x37\xe2\xd4\xa0\xc6\x26\xdb\xa5\xe2\xbb\xf4\x6d\x2a\x78\x6e\x50\x63\x97\x56\x09\xf7\xb1\x30\xa8\x11\x6e\xb7\x3c\x84\x0f\x5c\x65\xe0\x32\x5d\xc4\x1b\x9e\xed\xe0\x29\xab\xcb\xaa\xa7\x38\xbd\x6d\x5e\x78\x24\x9f\x65\x29\xf9\x50\x67\xb8\x8f\x05\x8f\x8c\x80\xde\xb1\xa7\xb7\xdf\xbe\x7f\xfb\xfd\xd7\xdf\xfe\xc5\x93\x0d\x61\x16\x4c\x7b\xfb\x46\x25\x41\x4d\x6f\xff\xfe\xf5\x7b\x99\xa9\xaa\x06\x52\x30\x8b\xac\x6b\x4f\x1f\x98\x6f\x84\x3b\x91\x8d\x0b\x11\xe6\x38\x82\x9d\xc8\xd4\xcf\x98\xa7\xd0\x1d\x91\x6d\xeb\xaf\x22\xdb\xaa\x14\xf9\x2d\x8f\x6f\xd7\xa2\xfe\x8a\x6f\x75\xaa\xcc\x71\x93\x09\x91\x6d\x5a\x2f\x4d\x6a\x55\x30\xe1\xab\x2a\x3f\x3c\x56\x29\xf2\x73\x40\x5f\xb1\xa1\xbe\xa4\xbb\xeb\xb2\x2c\x87\x6a\x61\x46\xd9\x72\x27\x57\x66\x37\xc5\x5e\xe6\x3c\x14\x5c\xad\x0d\x8d\x08\x7f\xd4\xc8\x66\xba\x4b\x92\xa1\x24\xc0\x6d\x32\xc5\x49\x59\xbe\x32\x4d\x23\xdd\x6d\x6e\x78\xae\x75\x80\x2b\xa2\x45\x1a\x9a\xf7\x08\x15\xc2\x2a\x13\x4c\xa7\xcc\xf1\xaa\x87\x50\x0f\xad\x21\x2f\xcb\x8a\xde\x34\xa4\x8a\x13\xd3\x34\xd4\x9a\x33\xe2\x74\xc0\xf7\x16\xaf\xe9\x06\xb7\xd5\x97\x79\xbc\xb2\x62\x8b\xe8\x9f\x2c\x02\x89\x86\x5c\x1c\x7a\x3f\x4d\xf3\x55\xd5\xab\x1a\x24\xbf\xee\x78\xfe\xf0\x03\x4f\xf8\x52\x64\xf9\xab\x24\xb1\x38\x96\x16\x6a\x4c\x65\x69\x7d\x2a\xb3\xf1\x27\x63\xc4\x09\xa1\xc3\x2a\x3f\x11\xeb\x3c\xfb\xa8\x93\xb5\xf7\x6b\x3e\x10\x61\x7e\xcb\xc5\xe0\x0b\x63\xc4\x47\xc6\x17\x83\x65\xb6\x4b\xa2\x41\x9a\x09\x20\x5c\x71\xc4\x53\x11\xaf\x80\xc6\xc5\xe9\x40\xac\xf9\x20\xca\x36\x74\x20\xe2\xad\x37\x58\xae\xf9\xf2\x97\x41\xb1\xe5\x49\x02\x43\x21\x15\xe9\x17\xfb\x6a\xac\x00\x93\x2a\xf5\x23\xee\x24\xbe\x13\x78\x62\xff\x19\xee\xa9\x9e\xa8\xbc\xde\xbe\xad\x9c\xa9\xad\x2f\x2c\x8a\xf8\x36\xd5\x08\x3b\x6f\x76\x2f\xc1\xdc\xb9\x78\x11\xe6\xb7\x08\x90\x42\x8d\x7a\x2e\x46\xa3\x6a\x27\xad\xbf\xf9\x22\x98\x57\xc5\x72\x18\x5b\x4a\x54\x03\xdb\x3c\x13\x19\x4c\x8a\xbd\x0e\x8b\xef\x3e\xa6\x7f\xcd\xb3\x2d\xcf\xc5\x83\xbd\x0c\x93\xc4\x4a\x29\xee\xa7\xb0\x95\xb2\x14\xf7\xd3\x7a\xb0\xc4\x0e\xb7\xdb\xe4\x01\x59\x55\x5a\x37\x44\xf6\x9f\x64\xc2\xf2\x3d\xe9\x61\x26\xb1\x57\xf3\xa1\x96\xbd\x05\xa0\x8a\x2b\xe8\xf4\xb0\x01\x5c\x66\x35\x40\xe1\xcc\x0f\xa8\x60\xce\x27\x21\x93\xb7\x21\x13\x03\xdb\x80\x1f\xe2\x0a\x3f\xf3\x0e\xda\xc6\x65\xa9\x2d\xb6\x98\x70\xc9\x6f\xe7\x64\xce\x93\x82\x0f\xe2\x55\x67\x81\x02\xd8\x2a\x06\x42\x56\x1d\xb2\x4c\x41\x0c\x56\x35\xcd\xc9\x3c\x34\x4d\x55\x4d\x48\xf6\x55\x35\xda\x5e\x1f\x93\x6a\x50\x05\x4c\x59\x4e\x52\x39\x29\x39\x2d\xa0\x76\xbf\x08\xea\x0a\x0a\xb2\xaf\x67\xa6\xe1\xb0\xf6\x35\x27\xbf\xb0\x32\x3b\xe2\xab\x70\x97\x08\x96\xd1\x86\xc1\xcf\x88\x57\xf3\x74\x56\xce\x0e\x27\x2c\xdb\x57\xd3\x4c\xfd\x80\x90\xb2\xb4\x9a\xc2\x39\xd9\x7f\xf6\x68\xa0\x21\x37\x72\x5e\xf1\x0a\x87\xcf\x18\x57\x24\xe2\x69\x3f\x57\x9c\x18\xcd\xd8\xd3\x9e\xc6\xac\xcd\xf4\x21\xda\xe6\xcc\x99\xe7\x2f\xe2\x6a\x1e\xf3\xd1\x88\xa4\x2c\xf6\xf3\x80\x36\x8c\x5f\x4a\x5e\x32\xa7\x2c\xad\xcc\x4f\x25\x6f\x56\xaf\xc5\xec\xf7\xe0\xe4\x27\x47\x51\x1d\x3a\xda\xe4\xb4\x4b\xa2\x89\x4e\x18\xf4\x25\xac\x00\xf1\x03\xb2\x04\x76\x2c\x78\x1e\x8a\x0c\x97\xa5\x1c\x3b\x66\x37\x7c\x89\x09\x83\x57\x15\xaa\x06\x80\x14\x07\xcb\x56\x64\x3f\x20\x96\x4a\xdc\xe0\xa4\x5a\xfb\x7e\x40\x73\x36\x74\x68\xc6\x86\x2e\x8d\x99\x9c\xe6\xb9\xc8\x1f\xea\xa5\x12\xd2\x82\x71\xbf\xd3\x8b\xc0\x22\xf3\xa1\x95\x33\x2b\x64\x85\x9d\xf2\x7b\x61\x11\x62\x47\x59\xca\x91\xaf\x56\xe8\x6a\xdf\x85\xc9\x8e\x03\xa9\x2d\xcb\x54\xcd\x0a\x6c\x16\x64\x0e\x4d\x92\xf9\x7e\x19\x8a\xe5\xda\x5a\x92\xa7\x0c\xba\x10\xb3\xe5\x7e\x15\xa7\x61\x92\x3c\x3c\x41\x07\xf2\xb2\x94\x48\x50\xd8\x12\x44\x65\x59\x3d\x59\xa4\xce\x19\xaf\xac\x4c\x91\xf0\xb8\xc6\xee\x74\xbf\x47\xf8\xb5\x58\xdd\x86\xce\x03\x5f\xd6\x61\x61\x43\x21\xf8\x66\x2b\x80\x35\x8d\x78\x21\xf2\xdd\x52\xec\x72\x3e\x48\xb3\x74\x8c\x63\xbe\x49\x78\xcd\xad\x1a\x88\xd1\x7f\x24\xb6\xe0\x44\x37\x27\x29\x6d\x4b\xfa\x9e\xaf\x78\xce\xd3\x65\xd5\x5f\xa0\xa3\x83\x75\x58\xa4\x5f\xc0\x56\xc4\x81\x85\x8e\x45\x1c\x26\x71\xc1\xa3\xc1\x18\x98\x6f\x9e\x5b\xa4\x95\x03\x66\x9c\x47\xcd\x56\xc4\x7f\x4b\xd7\x7f\xd3\x51\xfe\x78\x05\x9f\x3e\x98\x66\x9f\x3d\xfe\xc6\x9f\x3d\xfe\x86\x9f\x3d\x64\x17\x9f\x3d\xfe\xea\x42\x87\x7e\xb1\x44\xf2\x59\xb1\xc4\xee\xb3\x62\x89\xed\x67\x05\x06\xab\xcf\x0a\x1d\xa2\xcf\x8a\x36\x74\xc1\xc5\xe6\xa8\xe0\x42\x1e\xf6\xd9\xd3\x36\xe7\xab\xf8\xde\x33\x56\x61\x61\xd0\x78\x99\xa5\xdf\x86\x1b\xee\x19\x61\x9e\x67\x1f\xc7\x51\xf6\x31\x95\xa9\x9e\x3f\x9b\x5d\xd0\x53\x77\x42\xfd\x80\x1a\x2b\xe7\x6c\x6a\x50\xe3\x6a\xe6\x4e\x6d\x77\x30\x99\x4c\xec\xd3\x64\x32\xb1\x27\x03\xf8\xb3\xbc\xb4\x67\x83\xea\xff\x64\x66\x9f\x0d\x9c\xc1\x74\x6a\x5f\xbe\x9b\xcc\xdc\xc1\xec\x7c\xba\x1c\xab\x8f\x63\xfc\x08\x0f\xf0\x79\xe0\xbc\x73\x27\xf6\xf9\x60\x72\x7e\x61\x9f\x61\x9e\xfa\xbf\xac\x04\x73\x61\x33\x63\xd5\xcc\xe9\xf8\xd2\x3e\x1d\x4c\xe0\x67\x3a\x98\xce\xec\xa9\x3d\x7b\xe7\x5e\xcc\x06\xd3\xd9\xd4\x9e\xfd\x78\x7a\xb6\x74\xc6\xee\xd4\x9e\x0e\x5c\xc7\x3e\x1f\x4f\xa0\x33\xe3\xc9\x6c\x3d\x9d\x2c\x31\xd5\x19\x4c\x66\xf8\x69\x80\x9f\xee\x26\x17\xe7\xf6\x2c\x71\xdd\x99\x7d\x31\x76\x27\x8e\x7d\xba\xbc\xb4\xa7\xe3\x4b\xfb\x02\x06\x71\x31\x76\x1d\x6c\x62\x6c\xcf\x1e\x8d\x60\x0f\x9b\xcf\x27\x41\xb7\xdb\x1e\x01\xdc\x04\x00\x37\x9d\xd9\x97\x83\xc9\xc5\xa5\x7d\x9a\x8c\x9b\x11\x1d\x1b\xf4\xbb\x89\x73\x3e\x98\x5e\x2e\xd5\x27\x04\x2a\x3e\x48\xb8\x25\xee\xe5\x0c\x46\x09\x7f\x8f\x02\x7f\xe6\x4e\xb1\xc1\xd9\x12\x81\x06\xc0\x9b\xc0\xcf\x74\xac\x46\xf5\x6e\x72\x36\x1b\xb8\x67\x17\xf6\xd9\x8f\x33\x00\xdd\x00\x80\x34\x56\xf0\x91\xd0\x5b\x8f\xa7\x93\xa5\x04\xa9\x33\x9e\xcc\xc6\x0a\xae\xe3\xc9\xec\x47\x2c\xf8\xee\xec\x12\x70\xe0\xe2\xd2\x76\x97\x38\x27\x97\xf6\x05\x8c\xe3\x62\xe0\x3a\x63\x39\x3f\x08\xbb\xf8\x28\xec\x96\x61\xc2\xd3\x28\xcc\xc7\xc8\x3d\xf7\x42\x70\x72\x3e\x43\xd4\x9b\x9e\x0d\xdc\x33\xe7\x2b\x77\xb2\x1c\x9f\xd9\x67\x93\xf3\x81\x33\x76\x27\xe3\x53\x7b\x7a\x3e\x85\x07\x77\x72\x37\x9e\x02\x06\x4c\xce\xec\x53\x77\x30\x71\xed\xd9\xe5\x78\x76\x31\x98\x5d\x8c\x67\x17\xeb\xd9\xc5\x8f\xee\x64\xe9\xa8\x92\x55\xa1\x01\x96\x5b\xcf\x9c\xa5\xaa\x71\xe0\x4e\xe4\xc7\x01\x7e\xbc\x3b\x9d\xac\xdd\xc9\xef\x2e\x3a\xbb\x58\xca\xce\x38\x83\xd9\x85\xec\xd1\x00\x7b\x74\x07\x1d\x1d\x60\xc1\x71\x55\x46\xd6\xf9\x78\x05\x3f\x97\x93\xf5\x6c\x32\x3b\x56\xf3\xe4\xcc\x59\x3a\x03\xac\x79\x5c\x55\x2a\x47\xfa\xd5\xec\x62\xa9\xc6\xef\x8c\x67\x17\xe3\x0a\x08\xe3\xd9\xc5\x8f\x13\x67\x76\x64\x10\x8f\x9b\xe9\x74\x6a\x4f\x2e\xcf\x06\x97\xa7\xf6\xe5\xec\x3c\x19\x4f\x2e\x6c\xf7\xec\x12\x7e\xa6\x97\x17\xcb\xf1\xcc\x3e\x3b\x3b\x1f\xcf\xec\x73\xe7\x74\xec\x4e\xec\xc9\xd9\x29\xbc\x4c\xcf\xc6\xee\x99\x7d\x79\x3e\xb6\x9d\xb3\x8b\x77\x80\x8c\xee\x64\x30\x3d\x83\xcc\xa7\xc9\x78\x76\x6a\x5f\x5e\x8c\x67\x67\xf6\xf4\x74\xd2\x53\xc3\x99\x5e\x83\x8b\x55\x24\xb2\xbd\xf3\x01\xb4\x7e\xbe\x94\xb9\x07\x75\x49\x98\x7e\xd9\x36\x64\x1e\x60\xc1\xe4\x62\x62\x9f\x39\xee\xe0\x62\x6a\x4f\xce\x2e\x97\x98\x77\x20\xcb\xc9\xbc\x03\x55\x10\x32\x63\x1b\xee\x6c\x62\x5f\x9e\x4e\xc7\xee\xcc\xb5\x2f\x9c\xd3\xa5\xec\x52\x5d\x10\x7a\x84\x05\x21\xb3\xec\x1c\x22\x70\x78\x1c\x81\xd7\x61\x2e\xc6\x61\xce\xc3\x0a\x79\x01\x71\x6b\xe4\x75\x57\x1c\x90\xf7\xd4\x71\x06\xd3\x0b\x9c\xd1\x6a\x3e\x67\x6a\x36\x67\x8e\x44\x85\xb1\x4c\x92\xb3\x52\x61\x79\x85\xe3\x33\x89\xe1\x3f\x9e\x9f\xc9\x39\x1c\xc8\xa4\x16\x12\x76\x2b\x9e\x3a\x17\xeb\xd9\xf4\xec\xf1\x6a\x7a\x0e\x64\xd6\x3d\xbd\xb4\x4f\xdf\x4d\x2e\x00\x11\xcf\x92\xf1\xc5\x29\x2c\x76\x77\x6a\x9f\x2f\xc7\xa7\xb6\x3b\x3e\x03\x8a\x77\x6a\x9f\x8e\xcf\x20\xfd\xd2\xbe\x1c\xb8\xef\x2e\xcf\x06\x93\xd9\xc5\x9d\xeb\xcc\xd6\xd3\x8b\x59\x32\xbe\xb8\xb4\x2f\xc7\xee\xc5\xb9\x7d\xb1\x1c\x4f\xed\xc9\xf8\xcc\x3e\x1d\xbb\xae\x3d\x1b\x5f\xd8\xe7\x63\xf7\xdc\x9e\xc1\x3c\x21\xbc\x8a\xcf\xc0\x2b\x89\x53\xde\x0b\xaf\x89\xe3\xe2\x62\xbf\x3c\x03\x78\x7d\x75\x36\xfb\xf1\xc2\x59\x3a\xe3\x0b\xfb\x62\x36\x3e\xb7\x5d\x40\x18\xf9\xef\x2b\xf7\xec\x35\x24\x0c\xce\x66\x03\x67\x70\xee\xc2\xa3\x33\xb8\x70\xee\xa6\xb8\xb6\xdc\x73\xfb\xec\x7c\xe0\xce\xec\xe9\x74\x30\x9d\xc8\x7f\xeb\xd9\xd9\x6c\x09\x35\x01\xa4\xce\xb0\xba\x01\xd6\x75\x07\x64\xae\xaf\x91\xc7\xab\xd9\xd9\x6c\x70\x79\xf6\xd5\x14\xd0\x79\xb6\x84\x05\x35\xbd\x00\x22\x3d\xb1\x9d\xcb\xc1\xe4\xd4\xbe\x38\x95\x58\x32\x98\x39\x80\x8f\xd3\x09\x10\xe9\x09\x10\x57\x00\xf4\x6c\x62\x9f\x9f\x26\xe3\xf3\xa9\x3d\x3d\x97\x7f\x97\x80\x5f\xa7\xf2\xcf\x74\x62\x9f\x9f\xc9\xc7\xd9\xa9\x3d\x39\x1d\x38\xc9\x18\xa8\xea\xe5\x00\xff\x02\x02\x4c\x4e\x07\xf0\x47\x3e\xb9\x67\xd8\x38\xec\xb9\x67\x53\xd8\x17\xcf\x70\xff\x3d\x9b\x2c\xeb\x8c\x2a\x0f\x3e\x62\x36\xd8\x64\x2f\x27\x83\xc9\xf4\xdc\x9e\x9c\x26\xd8\x85\x81\xec\x08\xb4\x3b\xc0\x3f\xd8\x0f\xf9\x58\xf5\xe3\xf2\x6c\x0c\x33\x50\x8d\x66\xe9\x9e\xc2\xe2\x96\x7f\x71\xa4\x83\x99\x0d\x9b\x3b\x3c\x4a\x00\xfc\xe8\xba\x93\xa5\xed\xb8\x35\x14\x4f\x11\x84\xa7\xf6\xe5\x25\x00\x12\x90\x62\xf9\x09\xa4\xe0\x77\x79\x96\x7e\x82\xfd\x38\xbf\x00\xb4\x98\x38\xe7\xb6\x33\xb9\x1c\x4c\x2f\x5c\x7b\x76\x7e\x06\xfc\xc3\xd9\xc5\xd9\x00\x50\xd2\x9d\xe2\x76\x0a\x74\x4d\xff\x3b\x99\xd9\xa7\x67\x97\x6a\x5b\x9d\xb9\x08\xb5\xb3\xf3\xb1\xfc\x81\xfd\xfe\xf4\x7c\x8c\x7f\x61\xef\x3c\x9d\x4c\xb0\xd8\x29\xee\xa0\x0e\x90\xa5\xd9\xbb\x09\xec\x84\x17\x33\xfb\xd4\x39\x4d\xdc\xd3\x99\x7d\x3e\x3b\x1d\xc3\xaf\x33\x71\xa1\xfc\xf9\x25\x14\x99\x9e\x62\xf9\x19\x6c\xd7\x53\xf7\x5c\x95\xb7\x9d\x99\x6a\x70\xd0\x34\x78\x0e\xbb\x64\xf3\xb7\xea\xe0\x40\x76\xf0\xdd\x04\x61\xea\x56\x43\x54\x63\xc2\xcc\x93\x6a\x34\xf2\x05\x0b\x4c\x06\x0e\xc2\x36\xf9\x2c\x6c\xa5\x98\x52\xc2\x76\x3a\x71\x34\xd8\x9e\x4e\x15\x87\x72\x0a\x88\x72\x69\x3b\xd3\x77\x93\xc9\x85\x7d\x71\x3e\x98\xcd\x00\x0f\xa1\x39\xec\x06\x76\x56\x3d\x62\xeb\x03\x07\xc7\x27\x87\x87\xa3\x03\xf6\x4e\xfe\x51\x10\xb5\x1d\xc9\xb5\xbc\x73\xa7\xb8\x55\x4d\x4e\xcf\x12\x09\xbe\x01\x42\x13\x99\x2e\xe0\x5e\xa6\x17\xf0\x67\x22\xe1\x38\xae\x8a\x21\xb7\x54\x37\x20\x9b\xc6\xfe\x60\x57\xe4\xa3\xea\xca\x3b\x35\x82\xf3\x89\x7d\xa9\xb2\x6a\x7f\x64\x7e\x85\x07\x08\xb2\xdd\x67\x41\xa6\xa4\xc3\xbd\x30\x43\x9e\x64\x72\x71\x0a\x93\xa4\xda\x74\xdf\x5d\xba\x80\x87\x83\xd9\xd9\xb9\x3d\x75\x67\xfa\xdc\x4d\xf5\xb9\x9b\x2a\x6c\x84\x05\xdf\x46\xc8\xb1\x86\x91\x12\x15\xc7\x0a\x2f\x6d\x47\x72\xcd\x8e\xfb\xce\xbd\xb8\x00\x6c\x04\x50\x02\x87\x3a\xbb\x00\xae\xd6\xb5\x27\xa7\xa7\x4b\x89\x8b\xe3\x1a\x2f\x5d\x39\xf0\xd9\xac\x29\x7e\xb8\x04\xaa\xc5\xa2\x70\x51\xbd\x54\x5d\x7c\x27\x07\x79\xaa\x50\x43\x43\xe1\x89\x8e\xc2\x17\xb6\xe3\xb8\xaa\x10\x82\x77\x7b\x14\xbc\x9b\x38\xdd\x15\x47\x98\xe5\x0b\x79\xca\x38\x1b\x4c\x9c\x8b\xaf\x90\xf9\x44\x42\x0e\x14\x57\x52\xf3\x31\x92\xf2\x3b\x20\xd8\xfd\x44\x1e\xb6\x59\x55\x68\x30\x9d\x8c\xab\xaf\xe3\xe9\x44\x91\x79\xfc\x38\xae\x2a\x93\xff\xb0\xc7\xab\xa3\x3d\xde\x26\x47\x3b\x7c\xae\x77\x78\x72\x3e\xf9\xf1\x6c\x76\xa4\x0d\xc5\x4c\xf7\x8f\xc7\x9d\xcd\x7e\xdf\x70\xdd\xd9\x0c\x0a\x1f\x85\xc6\xe4\x08\x30\x7e\x9c\x3a\x33\x28\xfc\x3b\x61\x15\x1d\x85\x55\xc1\xc3\x7c\xb9\xee\xdd\xdc\x1d\x67\x22\x99\xa1\xd3\xc1\x0c\xb6\xc6\x77\x33\xe7\x14\x0f\x72\x53\xe0\xf6\x4e\xf1\xbf\xeb\xd8\x67\x63\xe0\x26\xc6\xe7\x5f\x4d\xcf\x27\xcb\xc9\xb9\x7d\x36\x9e\x42\xb6\xd9\x6c\x7c\x7e\x69\x03\x51\x1a\xbb\x93\x8b\xd7\x00\xf3\x4b\x38\x8d\x4e\x27\x13\x38\x14\xc1\x04\x0c\x9c\x1f\x1c\x99\x88\xaf\x05\x3e\x42\xba\xfa\xbf\x9c\x5d\xe0\x39\xf0\x72\x62\xe3\xb6\x05\xac\xd2\xc5\x18\x20\x78\x66\x4f\x91\x0d\x9b\x0d\xea\x6d\xf1\x7c\xe0\x9e\x27\x97\xd0\x22\xfc\x59\xb6\xce\x58\xda\x59\x0c\x98\x56\xe4\x5c\xeb\xd3\x5a\x75\x98\xb3\xdd\xf1\x74\xf6\x78\x05\x6d\x03\x53\x32\x3e\x87\xa3\x15\x30\x74\x17\xe3\xd3\x73\x7b\x82\x0f\xee\x04\xd8\x09\xfc\x52\xa5\x0d\xaa\x74\x99\x1f\x5e\xf1\xdb\x40\x7d\x03\x76\x07\xce\x61\x55\x5a\x55\x06\xe7\x65\x7d\x7c\x5e\xb6\x71\x9a\xf2\xbc\x9f\x4b\x75\x1d\xdc\x02\x9c\xd9\x60\x76\x71\xe4\x6c\x51\x74\x0e\x14\x9d\x13\x56\xe7\x84\xf3\xb8\x81\xb4\xe9\x59\xeb\x3c\xa2\x17\x29\xb4\xcc\xf2\x9f\xde\x9e\xde\xd0\x18\x6a\x9b\x38\x17\x63\x98\xc0\x3f\xa4\xb6\x2b\x60\x6c\x4f\xeb\xb3\x62\xe7\xf3\x0f\xc0\x61\x5d\x42\x61\x07\x72\x7d\xba\xea\xc7\x8d\x3b\xb1\x2f\x27\x13\xc0\x11\xe7\xfc\x77\xf6\x4f\x75\xc4\xb9\x94\x89\xae\x3e\x6e\x38\x56\x9d\x9e\x0d\x9c\x3f\xa4\x66\x0d\x04\xae\x73\x81\xfd\x3e\x73\xe0\xe7\xff\x04\xae\x5a\x77\x01\x03\x6f\x8e\x62\xa0\x88\x37\xbc\x26\xa3\xd3\xd3\x16\x61\x88\x70\x3b\x05\xa2\x30\x91\x2c\x82\xe3\xd8\xce\xf9\x58\xfe\x00\xaf\x8a\x78\x6e\x23\xa6\xc3\xf3\x74\x62\xbb\xc0\xd6\xcd\x60\xff\x93\x22\x95\x99\xfc\xbb\x1c\x6b\xb9\x65\x3e\xf5\x8c\x79\x81\x21\x06\x6e\xf7\xe2\x12\x2a\x3b\x3f\xb5\x2f\xa7\x03\x78\x76\x3f\x5f\x0e\x72\x0d\x5c\x38\xf0\x9c\x2e\x5b\x9d\x91\xcf\xaa\x4b\x03\xcc\xfe\xce\x75\xb0\x01\xd8\xa3\xb1\xdc\xf4\xf4\x0c\x46\xf2\xb9\x72\x28\xee\x9a\x0d\xe4\x48\xb4\xbc\x90\x6b\xa2\x1e\xf5\x71\x00\xf1\x3b\x9f\x28\x70\x0d\x74\x70\x1d\x2d\x97\xe8\xc0\xfa\x0c\x64\xdf\x35\x53\x02\x93\xdb\x96\x6b\xeb\x86\x60\x1d\x4d\xc7\x7f\x9f\x40\xfb\xb7\x74\x49\x8a\xb1\x2b\x75\xec\x20\x4e\x07\x7c\xa1\xd4\x24\x52\x43\x5f\x69\x0c\x31\xeb\x13\xea\x2e\xbc\x94\xf2\x74\xb7\x91\xf2\x7f\x6f\xe8\xd0\x65\x96\xae\xe2\xdb\x5d\xfd\xfe\x31\x8f\x85\x7a\xde\x13\x8f\xfb\x22\x60\x29\xed\xf6\xe7\xb3\x8a\x22\xde\x28\x6a\x2a\xcd\x8d\xd4\xfb\x5b\x9a\x0a\x87\x50\x2d\x9b\xbd\xcc\x52\xa9\xa5\xc8\x72\xc6\x29\xb7\x7f\xfe\x19\xbf\xfd\xfc\x33\x13\x7f\xb0\x1e\xeb\xbf\x0f\x6a\xff\xa7\xfd\xfe\x64\xf9\xab\x46\xfa\x9d\x5a\xd3\x33\x82\x06\x6f\x6e\xc7\xde\xcd\x39\x62\xef\x56\x6b\xdc\x97\xcc\xa8\xd2\x35\x33\x05\xa9\x1c\x33\x4d\x43\x9a\xef\x1c\x7c\xa9\xd5\x66\x8b\x3e\xa3\x37\x65\xea\xb0\xf7\x7a\x3e\x72\xd3\xfc\x54\x83\x6d\x3c\x60\xac\x4e\x1f\x56\xcf\x0d\xca\x2c\xaa\xde\x79\x75\x8b\xc4\xe2\xa4\x63\x5d\xf7\xdf\x37\xdb\xba\xb5\xdd\xbf\x63\xad\x20\xad\x5d\x74\xcd\xfc\x42\x7f\xf1\x9e\xf6\x34\x6f\x69\x87\x53\x32\xef\x83\xa1\xca\x72\xcb\x85\x66\x2d\x20\x81\x56\x98\xa6\x95\xb3\x1c\x80\xbb\x0c\x85\xf5\xa9\x9c\x56\x4a\xec\x55\x9c\x08\x9e\xf7\x5a\x34\xf6\x16\x7d\xc3\x8b\x65\x1e\x6f\x45\x96\x5b\x29\xe5\xc4\x6e\xc0\xb7\x27\x84\x10\x9a\xf7\x98\x30\x0a\xf2\xa4\xe6\xc7\x17\x68\xaf\xd8\x98\x58\xd4\x80\xdc\xfe\x16\xe5\xf9\x81\x7e\xf9\x7f\x40\xd1\x8e\x6d\xcf\xe3\xd5\x27\x21\x5b\x99\x5a\x7c\x12\xfa\xff\x7e\x87\x0e\x34\xe3\x5b\x55\xe5\xd7\xc5\xdb\x7a\x1e\x94\x96\x9c\xa6\xc4\x34\xb5\x11\xec\xeb\x11\xb4\xcd\x37\x7f\xa3\xa2\x5f\x43\x72\x87\xa6\x0c\x76\x43\xf5\xad\x32\x01\x99\x8b\x17\x5c\x47\x79\x98\x6c\x06\x2b\x66\xae\x2b\xb6\x49\xdb\xd0\xe7\xff\x9e\x8d\x80\x6a\x54\x0e\x64\x95\x67\x1b\xa0\x17\xed\xf6\x7f\xbb\x5a\xbd\xd8\xe6\x3c\x8c\x3e\xa5\x51\xaf\x81\x1a\xe9\xe4\x91\x71\x6a\x89\x31\x73\x08\x2c\xdd\x05\xf7\x2c\xce\xb8\x9d\xf3\x6d\x12\x2e\xb9\x75\xe2\x5f\x8f\x7f\xbe\x2e\x82\x91\x65\x93\xc5\xc9\xad\x46\xf8\x75\x0b\x0c\xb1\x10\xb6\xc8\xfe\xb6\xdd\xf2\xfc\x75\x58\x70\x8b\x78\x86\x01\x4b\xcd\x2e\x76\x37\x85\xc8\x2d\x87\xba\xc4\x16\xd9\xbb\xec\x63\x95\x61\xc4\xab\x6f\xae\xdc\x35\x04\x5a\xa0\xae\xd9\xd0\x45\xe3\x88\x35\x1b\x3a\xca\x7c\xe1\x8e\x3c\x35\x3d\xbf\xe9\x98\xe5\x01\xf3\xb3\x80\x07\x4f\xb3\xd8\x81\x0d\x05\x6d\x72\x90\x43\x86\xa7\x8a\x3d\x5e\x70\xaf\x8b\x35\xa6\x39\x81\x4a\x14\x56\x2c\x2a\xb6\x9a\xfb\x4e\xd0\x70\xd5\xdc\x77\x83\xbd\xd7\x63\x3f\xb7\x38\xc2\x86\xf3\xbd\xb2\xe8\x69\xba\xbe\x69\x81\xac\x6b\xef\x6c\x9a\x95\xbd\xdc\x4b\xa7\x2c\x87\x3d\x9f\x17\x89\xf5\xb4\xa7\x50\x87\xf7\xb4\x6f\xaa\xbd\x6a\xec\x0a\xe5\x38\x69\xca\xb8\xbd\x09\x8b\x5f\x68\xc6\x78\x65\xf0\x1a\x33\x6e\x2f\x93\xb0\x28\xa0\x77\x34\x64\xdc\x16\xb1\x48\x38\x2d\xd8\x8d\x25\x08\x5d\xb2\x8d\x65\xe0\x77\x38\x3b\xf8\x41\x45\x99\xdb\xc6\x89\xd8\x0a\x56\x0f\xc7\x5c\x9a\x33\x6e\x6f\x77\x49\xc1\xb1\xa1\x55\x7c\xcf\xa3\x9f\xe2\x08\x2d\xb5\xb9\x1d\xa7\x77\x3c\x2f\x64\x53\x37\x59\x1e\xf1\x9c\x16\x00\xe5\xb8\x10\x5f\x0b\xbe\xa1\x4b\x28\x92\xc4\x5b\xba\x83\xea\xe2\x47\x4e\xb7\x80\x76\x99\x40\xc3\x64\xba\x92\x75\x27\x34\x62\x56\x62\x09\xf6\x64\xac\xc2\x31\xb4\x6a\x78\x29\x85\x67\x6c\xd8\xf0\x72\x7c\x59\x7d\x34\xbc\x0c\x9f\x54\xb3\x86\x17\xe3\xab\x6c\xd9\xf0\x42\x7c\x4b\x62\xc3\x2b\x64\x81\x24\xde\x8e\xd7\x59\x1e\x3f\x66\xa9\x08\x13\xc3\x33\xb4\x17\xc0\xa0\xb2\x34\x6e\x32\xb1\xc6\xe7\xa6\xc4\x1d\xcf\x45\xbc\xc4\xfc\xf5\x63\x37\xf7\x1e\xb3\x1b\x15\x04\x77\x84\xf6\x5a\x9d\xef\x4c\x53\x99\x95\xee\x08\x4d\xd0\x84\x22\x1c\xe3\xf0\x79\x53\x78\x7b\xa4\xf0\xb6\x2e\xbc\x6d\x0a\x03\xb8\x9a\xa2\xab\x23\x45\x57\x75\xd1\x55\x53\xb4\xf8\x18\x6e\xc7\xd9\x36\x5c\xc6\xe2\xc1\xa0\xdc\x86\xf7\xef\xe4\x2b\x81\x9d\xa4\xc7\x0f\x20\x3a\xee\x65\x10\xf9\x3c\x58\x70\x0f\x9a\xd9\x93\x4f\xee\xde\xb0\x1f\xa3\x09\x2b\x5d\x59\xb1\xe6\xc0\x00\x9b\xf4\x16\x50\x52\xe4\x61\x5a\xac\xb2\x7c\x63\xd0\x9e\xc5\x67\xd7\x9f\x17\xb9\x1d\x35\x6f\x96\xf6\x85\x78\xfa\x0b\x8d\xa0\x56\x58\x1c\x06\xbd\xb1\x52\x42\xe8\x9d\x22\xd3\x56\x6e\xdf\x10\xab\xa0\x3b\x58\x64\x4b\xba\xa5\x11\x7d\x92\x6b\xc7\xcb\x28\xae\x15\x2f\x04\x0e\x37\x5e\x59\xc3\x3b\xd2\xdd\x90\xe4\xda\xe0\xf3\xe1\xba\x76\x23\xe8\x67\x2c\x5b\x3e\x06\xe8\xd0\xa1\x52\x88\x4c\x52\x66\x7e\x5c\x37\xe5\xb4\x8c\xd7\xb5\x75\xec\x2a\x4e\xa3\x01\xac\x72\x83\x16\x84\x02\x88\x91\x7a\x3e\xb0\x3b\x3b\x04\x72\x1a\x2e\x05\x7d\xf5\xef\xb8\x6e\x08\xf2\x74\x55\xd9\x24\xc2\xe6\x5f\x74\xcc\x3b\x2d\x41\xca\xd2\x7a\x55\xed\x93\xe8\xc9\x71\x6b\x3d\x00\x75\x7c\x45\xf6\x57\x76\x14\x17\xdb\x24\x7c\x00\xb2\xc2\x8c\x2f\xb3\x54\xbc\xfa\xc8\x8b\x6c\xc3\xbf\xc6\x3e\x5e\xe1\xee\x0f\xfb\x56\xc1\x9e\xe4\x62\xf4\x62\x3b\xb4\x6f\xb2\x2c\xa1\x35\x3d\xc2\x24\x65\xb8\x0f\x73\x83\xef\x9a\x81\x3f\xbe\xe2\x40\x68\x5c\xb9\x01\xd0\xa6\x4c\x40\x68\x43\x7c\x9a\xea\x15\x29\x68\x12\x60\x09\x37\x55\x5b\xbe\xbe\xe6\x69\xb3\xa0\xa9\x5c\xcb\x01\x91\x32\x94\x7f\xbb\x2f\x15\x89\x6b\x1a\x86\x95\xd9\x6a\xb8\x32\x88\x47\x6d\x51\x40\x28\x12\xb3\x26\x7f\x45\x05\xf5\x32\x97\x0e\x75\x2f\x1c\x3a\x39\x77\x02\x42\x81\x5e\xb6\x2a\x4c\x6e\x0d\x6a\xdc\x17\xb0\x4a\x60\xa9\xb8\xf7\x06\x35\x26\xf0\x67\x0a\x7f\x66\xf0\xe7\x14\xfe\x9c\xc1\x9f\x73\xf8\x73\x01\x7f\x2e\xe1\x8f\xeb\xdc\x43\x1f\x80\xb8\x36\x5d\x50\xa8\xdf\x33\x78\x09\x5b\x7d\xc0\x72\x75\x68\x73\x58\xaf\xb7\xbe\xf2\x2a\x4f\x03\x47\x68\xbb\xa1\x37\x75\x17\xf6\xb4\x8d\x97\x35\xfe\x0c\x5d\x0d\x73\x0c\x43\x62\x0c\x1a\xf3\x6a\x58\x30\x74\xeb\xf9\x1f\xba\x72\xe6\x31\x0b\x4e\x29\x3e\xd5\xd3\x34\x74\xe5\x04\x61\xaa\x9c\x89\xa1\xdb\xcc\x01\x26\x23\xc0\xe5\x13\x80\x69\xe8\x56\x00\x1a\xba\x6a\xf8\x86\xa1\x0d\x5b\xe6\xd4\x06\x35\x74\x25\xdb\x7f\x5b\x1f\x0f\x06\xdc\x6a\x8c\xae\x59\xf7\x3c\xf6\x72\x62\x9a\x92\x7f\x18\x32\xed\x28\x36\xd1\x8f\x62\x13\x38\x8a\xf5\x9b\xf5\xa7\xb5\x2f\x11\xb6\x9a\x31\x2b\xb5\x97\xeb\x38\x89\x72\x9e\x4a\x37\xc5\x36\xed\x6e\xce\xa4\xb2\x57\xb0\xc8\xdb\x07\x93\xd4\x0e\x85\xc8\xe3\x9b\x9d\xe0\x45\x59\x3e\xed\x89\x9d\xf3\x68\xb7\xe4\x56\x87\x21\x54\x02\x00\x2d\x37\x30\xd7\xc5\xc7\x18\x38\x39\x41\x9e\x96\x61\xc1\x25\xa3\x61\x78\x1c\x73\x15\x0d\x5f\xc2\x72\x1a\xf1\x84\x0b\x3e\xd0\x2b\x90\xdf\xe7\x37\x39\x0f\x7f\x99\x63\xf9\x42\x3c\x24\xbc\x29\x8f\xaf\x2c\xaf\xf6\x8f\xf9\x27\x1c\xe0\x60\x2f\x88\x37\x16\xf9\x0d\xfb\xd2\x27\x06\x08\xac\x4f\x73\xee\x31\x3c\x83\xd0\x8c\x45\x96\xb0\x8b\x24\x5e\x72\xcb\xa1\x39\xc2\xaf\x7a\xcf\x47\xc0\xfd\x62\xbb\xf5\x11\xcd\x46\x1f\x96\xe2\xa7\x58\xac\x2d\xe3\x23\xbf\xf9\x25\x16\x06\x59\x70\xdf\x4a\x59\x46\x61\xb2\xc2\xfc\x95\xb0\x1c\xd2\x66\xab\x47\xa9\xaa\xd2\x25\x24\x60\xb1\xc7\xfd\x2c\x60\x31\xe5\x7b\x42\x9f\xf6\x44\x81\x48\x2d\x1a\xcf\x69\x39\xe4\x19\x61\x1e\x87\x63\x83\x94\x65\x27\x3d\x0a\x05\xa4\x2f\x14\x34\x7d\xd1\x66\xd4\x03\x96\x57\x80\xf6\x23\x4b\xc0\xbb\xe6\x7c\x40\x9f\xf0\x0b\x30\xa4\x84\x86\x30\x07\x30\x17\xb4\x60\xb5\x68\x32\x5c\x3c\xed\xbd\x90\x2e\xd9\xd6\xca\xa9\xaf\xa6\xae\x39\xab\xc6\xad\x39\xc4\xcd\xb7\x95\x04\xbb\x9c\x50\x9b\xa2\xac\x93\xfa\xa9\x2d\xc2\x5b\xaa\xe7\xa5\x4b\xa2\xb1\xac\x19\x21\x64\x6f\xdf\xc4\x69\x24\x6d\xfc\x0b\x3b\xec\xb8\xf9\x74\xc5\x99\x38\xa9\xf3\xb4\xc7\xf0\x5e\xac\xe3\x62\x6f\x11\x3c\x93\xa4\x2c\x2d\x4b\x38\x87\x7d\x59\x65\x33\xb4\x5c\x06\xb1\x88\x3a\xb1\xe4\xe4\xe9\xb8\xaf\xa0\x95\x32\xf9\xa8\xf9\x05\xb0\xf4\xdf\xb7\xdf\x1f\x5a\xcd\xf1\x2e\x5b\x0d\x04\x21\xbd\x07\xc5\xd7\x61\x0a\x7c\x03\x9c\x38\x07\xe1\x00\x97\xd2\x20\x2c\x06\x61\xcd\xbb\x18\x7f\xac\xa5\x75\xcb\xaf\x93\x39\xf3\xf4\x45\x75\xae\x99\xa7\x8d\xdf\x87\x40\xa7\x4d\x4d\x30\xc3\xf4\x97\xb2\x04\x02\x6c\xeb\x72\x2e\x36\x74\xa8\x81\xe2\x30\x23\x4e\x07\xc0\x39\xe5\x76\x25\xf7\x62\x43\x87\xd0\x63\x52\xb4\x1c\xe8\x17\xcd\x89\x76\x62\xca\xba\x72\x38\xd3\xcc\x2d\x4d\xf6\x4b\x05\xa1\x29\xa6\xd1\x94\x7c\x4e\x6c\x9a\xfd\xbf\x57\xdc\xab\x0f\xf8\x0f\x16\x00\x66\x7f\x80\x00\x30\x63\xd9\xff\x94\x00\x30\xeb\x67\x84\xf3\x23\x02\xc0\x3f\x12\x01\xfe\x7f\x61\xd6\x1f\x24\xcc\xfa\x1d\x44\xcb\x6a\x85\x54\x98\x4c\x08\xb1\xc5\xa3\x9d\x64\x61\x64\xc1\xfb\xf4\x77\x4d\x64\xe3\x24\x58\x70\xe0\x54\x25\x78\xbe\x5b\x2d\x1a\xcc\xd4\x52\x7b\x75\x10\x8d\x72\xa9\x16\x9f\xb6\x4b\x01\x24\x51\x97\xf0\xc7\xfa\xc4\xd4\x03\xf8\xff\xae\xce\x25\xd3\xc6\x99\xfd\xd6\x71\xe6\xdd\x25\x42\xfa\xc6\x08\x20\xfc\xef\x1b\x5f\x5e\xe3\x40\x3d\xb6\x58\x17\x28\x0e\x45\xcb\x61\x38\x43\x99\x61\xd3\x8d\x46\x00\x24\x16\xff\x63\x5a\x64\x8b\x13\xef\x33\xda\xd3\xf8\xf7\x7a\x01\x1e\x5b\x86\x5d\x87\xbf\xc3\x35\xc7\x04\x45\xac\xa1\x82\x74\x78\x04\x04\x4f\x2f\x0c\x6b\x21\x9a\xe8\xe7\xba\x7e\x00\x78\x0c\xf8\xfd\x36\xe7\x45\x81\xc2\xdf\x5d\x21\x06\x3c\x16\x6b\x9e\x0f\x6e\x38\x8a\xae\x07\x59\xde\x62\xc3\xe6\x9f\xd0\x52\x9b\xa6\x46\x7a\xe9\x93\x86\x40\x9e\xe2\x11\xb8\xce\x05\x74\x39\x04\xe0\xce\x25\x97\x03\x83\xfc\x1d\xdb\x59\xd7\x35\xf8\x70\x56\x0e\x19\xde\xc6\xeb\xb5\x21\xbb\xa2\x76\xbc\x5f\x40\x25\x43\x87\x78\x1d\x6c\x1c\xf2\x3a\xcb\xa1\xe3\xf8\x3f\xff\x73\xc7\xf3\x87\x41\xce\x7f\xdd\xc5\x39\x07\x2e\x56\xb2\xd2\x83\x8f\xb1\x58\x0f\xc2\x41\x55\xb2\x41\xba\x14\x17\x29\xec\xee\xfb\xfe\xe8\x1f\xb2\x82\x85\xfc\xf1\xd0\x8b\x5a\x3b\x17\xd3\xac\xc7\x09\x3a\x66\x7e\x40\x43\x96\xd6\x1d\xa5\x05\xeb\x25\xdb\x74\xc9\x62\x79\x60\xa3\x09\x8b\x15\xb3\x43\x77\x2c\x46\xff\x4d\xba\x65\x71\x75\x0c\xa3\x2b\xf6\xb4\xa7\x11\x5b\xd5\xdb\x2a\x5d\xb3\x55\x47\x14\x47\x6f\xd8\xba\xf9\xbe\x61\x37\x72\xeb\x95\x4d\x63\xf0\x8a\x3d\xbd\x65\x87\x04\xa9\x8f\x18\xf1\x26\x6a\x81\x16\x5e\xc0\x4e\xb3\x88\x03\x1a\xef\xe9\x5d\x4f\x45\x2a\x10\x02\x37\x4d\x8e\x2a\x13\x09\xb4\x3d\x7d\x60\x4f\x50\x03\x20\x5e\x91\x2f\xe1\x27\xcd\xd2\x25\x97\x0f\x57\x59\xb4\x93\x48\xd8\xac\xdc\x57\x2d\xbc\xa2\x19\x8d\x99\x85\xa7\xab\x90\xb4\x4f\x6a\x96\x21\x19\x39\x03\x05\xaf\xb1\x2d\xf8\xbd\x60\x80\xc4\xa8\x94\x04\xce\xe5\x81\x58\x19\x13\x7e\x1e\x94\x25\x82\xff\x55\x25\x37\x80\x25\xa3\xbf\x5b\x39\x21\xa6\x19\x03\x79\xd0\xd2\x68\x46\xe6\xa9\xbd\xe6\x61\x04\x87\x4c\x9e\x46\xaf\xd7\x71\x12\x59\x31\xb1\xb7\x61\xce\x53\xf1\x6d\x16\x71\x3b\xe7\x9b\xec\x8e\x57\x5f\x1a\x22\xd1\x8d\x11\xc1\x18\x5f\xf0\x91\x61\x78\x3d\x8b\xa1\x2c\x7b\xa7\x61\xb1\xf2\xa3\x8a\x83\x0a\x1a\x0a\xde\x6c\x67\x00\xa1\xc7\x03\xa9\x91\x16\x2a\x86\xdb\xab\xd4\x06\x6a\x2c\x25\x37\xf4\x67\x76\xf2\xc1\xbf\x2e\xae\x77\x5f\xbe\xfd\xf2\xcb\xeb\xfb\x57\x4e\x30\x2a\x3b\xef\xcf\x4e\x6e\x9b\xb9\xf8\xae\xd1\x1f\x0d\x87\x80\x16\x92\xa3\xc4\xf0\x12\xb0\x59\xa9\xe8\x3b\x29\xfb\xd8\xc4\x55\x18\xde\xa2\xe2\x6c\x78\x87\x3f\x96\x81\x52\x50\x18\x56\xaa\xc4\x0b\x2d\x37\xfd\x86\x68\x8a\x97\x8e\x69\x8a\xb1\x8b\xe7\x1e\xb2\x7f\xb4\x57\x29\x7b\xd4\xa8\xde\xd3\x3f\x31\x9c\x84\x67\x4c\xed\x99\xed\x1a\x54\xa7\x73\x8f\x54\xf6\xc4\x73\xa8\xc8\x90\xc9\xf4\x7a\x1c\x4e\x25\x2c\x61\x19\x93\x3d\xbd\xe5\xa2\x6f\x7f\xae\xa6\x4a\xcf\xec\xf1\x17\xce\x02\x9e\x7c\x3e\xc2\xf0\x5e\xb2\xb1\xc0\x93\x69\xc1\x9e\xc2\x92\xfd\x41\x84\xcb\x5f\xbc\x03\x95\x18\x7b\xb4\x37\x3c\xbf\xe5\x32\x5e\x98\xd6\x69\x8b\xd0\x26\x16\x05\x50\x70\x7e\x27\x57\x2b\x86\x10\xa3\x62\x4f\x79\xb8\x5c\xf7\xf5\xf1\xd1\x86\x2f\x32\xaa\x03\x27\x7b\xba\x09\xb7\x7d\xd9\xb0\xc1\xba\x67\xd6\x23\x0a\xbe\x3a\x44\x4c\x47\x18\xa5\x78\x17\x34\x85\x8d\x80\x00\xa9\x47\xfa\xd4\x03\xca\x4e\xd5\xcb\xfe\x38\x13\xb0\x57\xc4\x79\x21\x8e\x55\xc0\x7f\xb5\x1c\xb2\xa7\x49\xf8\xc9\x2c\x63\x97\xec\x29\xff\xb5\x07\xb2\xda\x5c\xd0\x94\x8d\xf8\xc8\xc2\x89\xf2\x9c\x06\xac\xed\x7e\xa6\x2f\x99\x63\x9a\xe9\x0b\xb1\xf0\x71\xea\xd2\x20\xf0\xfc\x00\xaa\x4f\xa3\xa3\xa3\xac\xe7\xa5\x2c\x0f\xa7\x50\x4e\xbd\xb7\xa3\x45\x96\x0b\x2f\xb6\xe1\x87\x16\x5b\x04\x9b\x54\x5a\x2d\xf9\x9e\x3e\xda\xfc\x5e\xf0\x34\x62\x80\xd4\xd5\x73\x57\x3f\x04\x44\x8f\x22\xbd\xa3\xa1\x76\xc0\x76\x82\xb2\x7c\xda\xd3\x82\xb9\x74\x79\x20\x0a\xa6\x09\x1b\xba\x68\x84\x61\xdc\x64\x59\xc2\x43\x9d\x7e\x84\xa6\x69\x25\x2c\x6c\xd5\x56\xa8\xda\x46\x23\x42\x0f\x09\x51\x58\x96\xb7\x56\x48\xca\xd2\x0a\xd9\xd3\x9e\xd0\x82\x31\xb6\x34\x4d\x2b\x94\x28\x59\x8c\xc7\x64\x5e\xbc\x58\xce\xa1\xb8\x32\x5e\x19\x32\x8b\xb7\xea\x27\x48\x7e\xa5\xf4\x82\xe4\x78\xe4\xa4\x46\xcd\x4f\xe1\x86\x62\x9a\xe1\x90\xb1\x1c\xba\x67\x9a\xf0\xf3\x68\xc7\xc5\x5f\x93\x30\x4e\x2b\x75\x1b\x74\x21\x63\xdd\x70\x1d\x84\x2c\xac\x94\x85\x50\x63\xcc\x32\xd3\xec\x28\xc2\x53\xb2\xf0\x03\x2f\x2b\xcb\x6e\x75\x29\x59\xa4\x52\x30\x31\x74\x29\x14\x67\xd5\x84\x58\x09\x8d\x69\x4e\xaa\x08\x1b\xaa\x57\x98\x25\x27\x35\x16\x85\xcd\x0c\x5a\x4f\xfc\x7e\x1b\xa6\x51\xe6\x29\x7e\xc3\x18\x59\x8a\x20\x8d\xae\x42\xb1\xb6\x73\xf8\xb8\xb1\x50\x44\xac\xac\x24\xae\xdf\x9c\xdc\x52\xc3\x20\x34\x2e\xbe\xe7\x61\xf4\x00\x5b\x1f\xea\xf3\x5a\x28\xdd\xe5\x67\x60\x61\xa7\x59\xb6\xd5\xf1\x72\x4f\x5b\x03\x3b\x5c\x12\x34\x9d\xb7\x82\x04\x55\xc7\x75\x99\x3f\x00\xe8\xd7\x3b\x0a\x10\xe7\xa1\x25\x58\x01\xcf\xbd\x3b\x90\x95\xb2\x75\x45\x13\x0c\x0d\xed\x0d\x34\x48\xd0\x12\x88\x69\x2a\x7e\x23\x25\x8c\xb1\x0d\x81\x8e\xbe\xdd\x6c\xc5\xc3\xb1\x8e\xce\x75\x24\x91\x3d\x76\xab\xae\x3b\x7b\x7a\x9b\x64\x37\x61\xf2\xf6\x2e\x4c\xbc\x36\x87\x0e\xcc\xc1\x93\x64\x20\x90\xef\xc5\xc7\x3d\x39\xa0\x95\xba\x34\xde\x41\x63\x27\x18\x25\x34\x9a\xd6\xe6\x1c\xf3\xfc\x45\x6a\x9a\x43\x17\x50\x52\x01\xc5\xcf\x03\x9a\x53\x8c\x4a\x87\x76\x4c\x32\x72\x4c\xcd\x4f\x70\xc0\xfa\xa1\x0c\x66\x77\x50\x80\x48\x09\x7b\x7d\xa0\xa1\x22\x8f\x37\x9f\xda\x62\x0c\xc3\xb3\x80\x23\x68\x50\xe5\x67\x40\x13\xa0\xe7\xbf\xf0\xce\x26\xa6\x85\xde\x13\x65\xe9\x37\x52\x9c\x8a\xe9\xb2\xbe\xb3\x6a\x39\x0d\x59\x54\x7b\x4e\xda\xa7\x19\x5f\xf8\x3c\xf0\x38\xf1\x76\x55\xfc\x20\x8e\x01\xf8\x68\x9c\x1e\x36\xaa\xf3\x13\xd8\x6d\xb1\x18\xbb\xde\xb6\xc2\x0a\x8e\x5c\x05\xb6\xd5\xe9\x6b\x23\xe6\x1d\x55\x32\x5e\x98\x0a\xb4\x06\x69\xc0\x8f\x40\xe6\x7e\x36\x1a\x05\xc8\xa7\xd5\xd0\x53\x79\x58\x46\xf9\x9e\xde\xe6\x7c\x7b\xd0\xab\x3a\x54\x12\x30\xdc\x19\x73\xd0\xb0\x44\x35\x14\xb2\x61\x3a\xcf\x5e\xc4\xf3\x6c\x34\x22\x43\x61\x71\x3f\x0b\x68\x46\x86\x8c\x85\xa6\x99\xcb\x00\x29\x90\x56\xaf\xf0\xbc\xbb\x89\x76\x39\x50\x87\x86\xcc\x0f\x5a\x88\x94\x37\x23\x89\x5f\xe4\xf3\x78\x34\x22\x8a\x20\x66\x0c\x9a\x8c\x03\x1a\xd3\x14\x96\x59\x28\x5b\xcc\x34\x74\x8a\x25\x3a\x7d\xb6\x40\x15\x09\x43\x6d\xb0\x70\xb6\x00\xde\x65\x17\x47\x9e\x4b\x8b\xdd\x16\x4e\x4e\xde\xd5\x9e\xd0\x4f\x09\x15\x2c\xd8\x76\x0e\x82\xc8\xb0\xf8\x20\x89\x50\xc5\x5a\x18\x7f\x96\xbb\xc9\xe0\x5b\x64\xd4\x06\xf2\x58\x51\xeb\x36\xa4\x1c\x6f\xf0\x26\x14\x7c\xf0\x3d\xbf\x7d\x7b\xbf\x55\x14\x46\xd2\x2e\xd5\xb0\xa1\x19\x6d\x74\x6d\xc3\x56\x7e\x4d\x9b\x30\x72\x61\x60\x04\xac\xa3\x5c\xaa\x4c\x86\xdf\xb3\x1e\x32\x57\x6d\x94\xb4\xa0\x4b\x9a\xd0\x1d\xdd\xd2\x15\x8d\xe8\x9a\xde\xd0\x0d\xbd\xa2\xb7\xf4\x8e\x3e\x30\xa3\x88\x1f\x1f\x13\x6e\x8c\xdc\xe7\x40\x57\xa1\xbb\xf4\x15\x6b\xce\x90\xf4\x23\x73\xe8\x23\x73\xe8\xcf\x6c\xc9\x2d\x42\xbf\x93\x3f\xef\xe5\xcf\xbd\xfc\xf9\x96\xf5\xcb\x08\x54\x84\xcd\x2d\x2a\x18\x9c\x3d\x7d\x77\x18\xfd\x8a\xbe\x05\xdc\xfc\x81\xbd\xb5\xb7\xd9\x96\xfe\x0a\xbf\x70\xb4\x7b\x5d\x3d\xfc\xc2\xde\xaa\x13\xe0\x4f\xec\xd8\xea\x71\xa8\x86\x67\xe9\x8b\x1c\x15\x25\xf1\xca\xe2\x7e\x1a\x40\x17\x1a\x65\xae\x7c\x18\xbb\x7b\xfa\x86\x19\x18\xcb\x81\x47\x65\x81\xc1\xd7\x78\x54\x86\xc5\x43\xba\x2c\xc3\x9d\xc8\x56\xd9\x72\x57\xe0\xd3\x36\x09\x1f\xca\x65\x96\x8a\x3c\x4b\x8a\x32\xe2\x2b\x9e\x97\x51\x5c\x84\x37\x09\x8f\xca\x75\x1c\x45\x3c\x2d\xe3\x62\x13\x6e\xcb\x24\xcb\xb6\xe5\x66\x97\x88\x78\x9b\xf0\x32\xdb\xf2\xb4\xcc\x79\x18\x65\x69\xf2\x50\xaa\x03\x77\x54\x16\xcb\x6c\xcb\x23\x83\xfe\x99\x19\xfe\xf5\xf5\xfd\xc4\xb9\xbe\x16\xd7\xd7\xf9\xf5\x75\x7a\x7d\xbd\x0a\x0c\xfa\x57\x66\x58\x0b\xef\xfa\xfa\xfa\xda\x2e\xfd\xeb\xeb\x8f\xe3\xa0\xf4\x3f\x5c\x3b\xe3\xeb\xeb\xfb\xd0\x09\xc8\xc8\xa0\xdf\x33\xe3\xfa\xda\x37\x46\x7f\x1e\x19\xcf\x2d\x63\xf4\xd7\x91\x41\xac\x85\xa7\xde\xfd\xe7\x1f\x9e\x95\xc3\x7f\x05\x0b\x46\x54\xca\xc2\xfb\xc2\x6a\x6a\xfc\x00\xbf\x5f\x04\xe4\x39\xf9\xa2\xbc\x36\xba\x1f\xae\x0d\xf8\x72\x6d\x94\xaa\x5e\x52\xaa\x5a\xae\xaf\x03\x83\xfe\x9d\x19\x5e\xd3\xe0\xf5\xb5\x65\x59\xff\x7e\xd5\xa4\xec\x7e\xb1\x88\x7f\x7d\x1d\x04\xa5\x31\xfa\x7e\x64\x90\xe7\xa4\xb4\x9f\x93\xeb\x6b\x68\x9a\xfe\x93\x49\x49\x1a\x2c\x1e\xeb\xcf\x23\x63\x64\x50\xe3\xd6\x20\xf4\x6b\x3d\xdd\xf8\x80\x7d\x1c\x61\xc5\x1f\x54\xa5\x01\xa9\x5a\x21\xcf\xe5\x18\x46\xcf\x54\xe1\xbf\xf5\x14\x7e\x4e\xe5\x8f\x41\xe8\x57\x7d\x9f\x2d\xff\xe5\xe8\x5f\xd0\xc5\x3f\x8f\x0c\x52\x67\xfd\xb2\xd3\xbd\xf2\xa5\x41\xe8\x8f\x7a\xe2\xdf\x09\xfd\xaf\x6e\x7d\x7f\x1d\x19\xcf\x0c\x42\xff\xc2\x9e\xbe\x7e\xe3\xb5\xbe\xfd\x49\x41\xd7\x20\xf4\xf5\xbb\x57\x3f\xfc\xd0\xfe\x7a\x7d\x6d\x37\xdf\xdf\xbf\xfa\x4b\xfb\xab\xfc\x54\xfa\xcf\x03\xf8\xfc\xea\xfd\xfb\xef\xbd\x4e\xbb\xdf\x13\xfa\xd7\x1f\xde\xfe\xed\xcd\x77\xdd\x0f\x7f\x27\xf4\xf5\x57\x5f\xbf\xeb\x74\xc6\xb3\x10\x71\xf1\x6c\x52\xc2\xe9\xa3\x4c\xc5\x1a\xfe\x8f\xe1\x85\x8c\x2d\x34\x87\x28\xb3\xd5\x18\x5d\x3f\x24\x46\x28\x68\xf1\x3b\x9e\x96\x59\x14\x95\x96\xe5\x8f\xc6\x41\x49\xac\xeb\xeb\xe8\x39\x49\xcb\x06\x29\xd5\x07\xf5\x7e\x7d\x1d\x8d\x48\x49\x6a\x6c\xc3\xd9\x37\x62\x83\x50\xe0\xd8\x3b\x23\x05\x64\x7f\x33\x32\xc8\x33\x95\x25\xe5\x3c\x2a\x5e\x67\xa9\xe0\xf7\xa2\x3b\x36\xa8\x4e\xce\x9d\xd7\xf4\x8a\xff\x5a\xde\x8a\x32\x91\x23\x6a\x06\xd8\x1e\x83\xb5\xf0\xc6\xd7\xd7\x11\x59\x60\xd7\xb5\x8e\x59\x0b\xe6\x7f\x18\x07\xe5\x33\xd5\xc5\x3d\xfd\x0f\x76\xf2\xd5\xfb\xab\x77\xcf\x4e\x62\xfa\x9f\xec\x04\x3a\x18\xa7\xdb\x9d\x50\x74\xa5\x84\x7e\x85\x39\x0f\xcb\x9b\x9d\x10\x59\x4a\x20\xdf\x33\x76\xf2\x61\x7d\x1d\xc1\xe3\x37\xec\xe4\x83\xff\xe1\x29\x18\x5d\x3f\x5d\x17\xcf\xaf\xfd\x34\x14\xf1\x1d\x1f\x5c\x7f\x3c\xa1\xff\x90\xb5\xfd\xc9\xf2\x81\x10\x8c\x48\x69\x5d\x7f\x1c\x91\xf2\xda\xae\x12\xc8\xb3\x13\xca\x39\x3b\xf1\x47\xff\x0a\x4e\xa8\xe0\x2d\x5c\xc3\xc5\xe5\x5f\x5f\x47\xe1\x78\x15\x3c\xb9\xf4\x6c\x8f\xa3\x58\x94\x72\x88\xa4\xb4\x71\x04\xb7\x08\xc2\x03\x37\x24\xc9\x36\x18\xce\xbd\x31\x12\xe3\xb3\xd3\xd3\xe9\x59\xcd\x07\xc0\x09\xa0\x2c\xd3\x85\xf0\xf2\x17\xce\x42\x29\xb1\x56\x79\xb6\x79\xbd\x0e\xf3\xd7\x59\xc4\xad\x7c\x84\x25\x88\xd7\xfb\xf1\xe5\x4b\xd7\x29\x4f\x4f\x27\x97\x67\xd4\x75\x26\x53\x33\x2f\x4f\xcf\xa6\x13\x38\xe5\xe6\x9c\x9d\x58\x3e\x90\xbb\x7b\x77\x75\x7d\x7f\xbe\x0a\xca\x0f\xe3\xc5\x75\x44\xca\x0f\xe3\x67\x8a\x10\xaa\x2f\xe3\xeb\xdd\x97\x5f\x7e\xf9\x25\xc0\xe1\xe4\x96\x66\xbc\x7f\x07\x12\x0b\xe3\xda\x31\xd0\xc6\xd9\xb8\xde\xad\x56\xab\xc8\xf0\x78\x6d\x65\x32\x76\xc9\xc8\xb8\xbe\x36\x46\x1c\xed\x45\xa0\x77\xaf\x44\xad\x1e\x1c\xa3\xc9\xb5\x1c\x81\xe5\x9e\x91\x91\x31\x30\x3c\x99\x7d\x4f\x63\xae\x9f\x4d\x57\x70\xc8\x0d\x39\x7b\xe0\x7d\x2a\xd6\x21\xea\x06\xec\x6a\xd7\x30\x4d\x63\x15\xf3\x24\x2a\x38\x1e\x2b\xa5\xcc\xf0\xdb\x70\xc3\xbb\x5b\x3b\x7d\x8a\xe2\xdc\x33\x1a\x39\x9a\x41\x53\xc0\x71\x23\xe1\xb7\x3c\x8d\x8c\xbd\xb4\xaa\x78\xad\xf8\x9e\xb7\xec\x17\xc9\x72\xbe\x92\xa6\x4a\x50\xa2\x20\xb4\xfd\xf6\xd6\xd7\xdf\x2b\x21\x4d\x23\xb6\x94\xf6\x17\xdf\x71\xf2\xf4\x9a\x3d\x61\xbd\xde\xdb\xca\xb2\xbb\x0d\xe1\x5f\x6b\x4b\x4b\xd5\xac\x20\x2d\x6d\x4e\x7b\x8b\xe6\x1a\x7f\x3b\xe7\x7e\xaa\x98\xd9\xd1\x28\x98\x93\x79\xcd\xc9\xc2\xce\xac\xd9\x19\x14\x1c\xb1\x31\xa7\x99\x72\xb5\xa0\x85\xe2\x63\xd6\xc0\xbf\x30\x3c\xdd\x64\x1f\x53\x9e\xbf\x69\xb8\x15\xb1\x10\xf5\x70\xbc\x4b\x8c\x89\x09\xe8\xea\x07\x35\x9b\x3f\xd4\x85\x8a\x70\x04\x84\xd3\xcd\x47\xd3\xbc\x94\x3f\x2e\xbe\x56\x3c\x03\x06\xd0\x1c\x66\xa6\x69\x59\x50\x73\xab\xb5\xb2\x14\xde\x2b\xe0\x98\x23\xd3\x5c\x59\x82\x50\x01\x07\x8f\x88\xde\x10\x94\xc4\xbb\xaa\x5e\x6b\xcb\xfe\x61\xf3\x7b\xbe\x04\xae\x18\xf8\x92\x98\x6d\x7d\x37\xc0\x3c\x97\x0c\xda\x92\xe6\x28\x09\x43\x81\xab\x92\xdc\xfe\xf9\xe1\xeb\xc8\x8a\x09\x69\x75\x24\xb1\xe3\x08\x23\x6a\x56\x89\x92\x09\x4e\x08\xcd\xeb\xc8\x9b\xb7\x28\xd2\xb8\xed\xa9\xca\x34\xef\x2c\x41\x13\x62\x9a\x9f\xab\x07\x3a\xb4\xf5\x27\x41\xf5\xbd\xc2\xb1\x9c\xea\x5d\x2c\xfe\xfc\xf0\x3e\xbc\x05\xd4\x45\x13\x64\xec\x21\x0e\x6e\x1a\x10\xd3\x4c\xdb\x39\x5f\x57\x46\x6a\x4a\xae\xdc\xf3\xe5\xb3\xad\xd5\x39\x61\x34\x34\xdf\xc7\x2b\x2b\xb5\x7f\x2d\x42\xd3\x1c\xde\xfb\x1c\x16\x68\x00\x07\xf6\x4d\x59\x0e\x37\xb6\xe0\x85\x50\x47\x78\x9c\x88\x76\x3c\xe0\x23\xab\x4e\xce\xdc\x15\xe3\x80\x5e\x14\x4e\xb1\x1f\x4d\xf3\xcb\xba\x2e\xc4\x68\x6b\xc7\x3a\x92\x71\x23\x8e\x0c\x42\x16\x3b\xb6\xab\x8f\xa9\x39\xa7\x19\x27\x9e\x68\x8b\xcb\x21\x23\xdd\xb1\x07\x42\x0b\x66\xad\x59\x08\x75\x56\x8c\x6b\x31\x1e\xcf\xc9\xda\x2f\x02\x66\xfc\xc9\x18\xed\x60\x34\xa3\x3b\x6e\x41\x0a\x99\x5f\xb1\xb5\x8a\x87\x4a\x0d\x42\x6f\x19\xe7\x55\x9f\x4c\xf3\x0a\xbd\x30\x6b\x2a\x41\xca\x52\xec\x31\x3c\x65\x17\x9a\xb7\x87\xc1\x86\xaf\x10\x8e\x72\xd5\x3f\x92\xa7\x7b\x8b\xd3\xa1\xd3\xc4\xae\xdc\x31\xc6\x1e\x60\xc2\xa4\x04\xbf\x33\xe2\x7d\x1d\xce\x72\x69\x35\x1e\x2f\x5f\x53\xe3\x99\x6b\x10\xb5\x70\x9b\xd5\x0c\x27\x85\xa7\x2a\xb4\xed\xbc\x63\xc4\x31\x10\x52\x57\x54\x9f\x6d\x11\x1f\x53\x00\x02\x79\x99\xdb\xcb\x70\xb9\xe6\xef\x10\x4e\xa6\xa9\x4c\x1c\x85\xcf\xed\x62\x1d\xaf\x84\x45\x02\x2a\x7c\xcc\x1b\xb0\x4c\xa3\x1f\x09\xd7\x95\xca\xfe\x43\xc0\x86\x4e\xcb\xaf\x8f\x37\x72\xd2\xa8\xab\x37\xa9\x69\xb4\xa4\xb2\x8a\x94\x0f\xb9\x25\x88\x46\x25\x2b\xb9\x4c\x13\x17\x54\x9b\x09\x54\x3a\xf6\x6b\x41\x90\x58\xa0\x81\xbf\xe6\x1d\xc7\x0f\xa9\xa6\x3a\x1d\x96\x68\x21\x59\x85\x28\x9d\x67\x80\x2a\x39\x9a\xee\x7d\x15\xa6\x51\xc2\xfd\xd4\xcf\x82\x80\x09\xcd\xed\x8b\xb7\xe4\x21\xa6\xc9\x69\xce\x52\xd3\x74\xeb\x2d\x07\x08\xa4\x7c\x17\xda\x3b\xb7\x8b\x6c\x97\x2f\xf9\xd7\x69\xc4\xef\xc7\x42\x7f\x93\xf1\x85\x75\x72\x94\xe2\x21\x7f\x9e\xb2\x14\x43\xac\xfe\x10\xdf\x24\x71\x7a\x3b\x47\xb9\xa7\x76\xf0\x1a\xbb\xb5\xcc\x62\xe1\x7a\x63\x57\xf3\xa3\xe2\x7d\x06\x3d\xf5\xfe\x6d\x20\x23\x65\xb0\xe3\xeb\x15\x40\x8c\x9a\x0f\xc6\xb8\x06\xca\xf5\xb1\x7a\x15\x38\x8e\xd4\xa6\xba\x69\x35\xed\xa6\x65\x69\x48\xbe\x0d\xdf\x8e\xb5\x77\xf3\x99\x71\xa0\x07\x46\x2c\xfd\xbc\x74\xfc\x50\x72\xb2\x8a\x35\x58\x18\x49\x78\xc3\x13\x99\x53\x7b\xd6\xca\xb4\x2a\xa8\x0b\x42\x77\x3c\xd1\x7d\x8d\x8b\x37\x5a\x42\x59\xea\x29\x43\xc6\x86\xdc\x34\x43\xc0\xe7\xbe\xd2\x5a\xeb\x30\x66\xfd\x9b\x36\xee\x8d\x3e\xee\x84\x77\xac\xc1\x2a\xff\xb8\x91\xa0\xad\x6f\x29\xcd\x1b\x2c\xcf\x68\xcc\xb8\xe5\x07\xb4\xc2\x6e\x2a\x08\x0d\x59\xed\x2a\x19\x02\xae\xa7\x7e\xc6\x62\x3f\x0c\x02\xbc\x14\x23\x0b\xd8\xd0\xca\xe1\x07\x9e\x09\xda\x9a\x11\x8d\xd2\x5c\xf1\x8e\x31\x49\x9f\xde\x9a\xf7\x6e\x64\xa6\xc9\xf7\xb5\xd8\x35\x65\x05\xb7\x95\x00\x49\xba\x9a\x16\xdc\x8e\x8b\xbf\x5f\xbd\x3b\x14\xb7\xc0\xa2\x0a\x37\xbc\xd8\x86\x4b\xfe\xb7\xef\xbf\xa6\x29\xb3\x78\x97\x5b\xe0\xa4\x16\xab\xa8\x86\x2b\x71\xee\x7f\x48\x6a\x2e\xca\x32\x85\x8d\xb3\xc2\xce\xb2\x34\xe0\x64\x01\x87\x8c\x15\xf6\x85\x8b\xaa\xb6\x1e\x81\x4f\x46\x43\xc6\x17\x87\xad\x7a\xaf\x6a\x21\xbd\xe4\x55\x80\xe9\x08\xb5\x35\x1f\x76\xbb\xb5\xb0\xd6\xcc\x8a\x58\x78\xd0\x5f\x7a\xc3\x86\xb1\x15\x11\xfa\x4a\xd6\x64\x65\x2c\xaa\x9c\x0c\x7e\x8c\xf9\x47\x62\x9a\x99\x2d\xb2\xed\x90\x31\x60\x99\x32\x3b\x8c\xa2\xb7\x77\x3c\x15\xef\xe2\x42\xf0\x94\xe7\x8b\xc3\x24\xcb\xd8\xa5\x49\x16\x46\x06\x8d\x39\x1d\xba\xc4\xcb\x80\xb0\x85\xcb\x35\xe6\x82\x0a\xb5\x57\xcb\xc8\xd2\x26\x3b\x06\x94\x6d\x0c\xdd\xd9\xae\x97\xff\x1e\x68\x9e\x7b\xcc\x88\x0d\x3a\xe4\x9d\xed\xbb\xfe\x6c\xc8\x8b\x56\x7a\x51\xe3\x78\xed\xba\xe2\xbb\xda\x47\x5e\x67\x1b\xb9\x8f\x18\x84\xa8\x06\x0f\xb9\x26\xe3\xb9\x51\x6d\xff\x3d\xed\xd6\xdc\x0e\xfb\x46\xa2\x47\x74\x8c\x6f\x92\x25\x81\xcd\x3b\xd6\xc9\x75\xab\x93\x9c\x00\xff\xf7\x40\x87\x9d\x1a\x25\xce\xf5\xa5\x5a\x0f\x07\x1d\x85\xe6\x16\x56\xae\x6c\x4b\xed\xaf\xdf\xf4\x2e\x8a\x8a\x2b\x10\x9c\xa6\x8d\x2a\xb7\x17\x8c\x87\x2c\x15\x10\xc7\xfd\x9e\x42\x1b\x69\xd4\x6e\xa1\x32\x2e\xea\x5b\xda\x5d\x36\xda\x34\x6f\x1a\xca\xdf\x61\x8b\x9b\x3e\xa5\x0b\x3f\x0d\x3c\x3f\xd8\xef\x89\xf7\x07\x0c\x4b\xb6\x77\x9c\xf4\xd4\x43\x95\x3b\xc1\x61\x9a\x04\x41\xdd\x3b\xa0\x0b\x68\xa9\xf4\x87\x03\x45\xca\x89\x7b\x41\x03\x87\x15\xac\xd2\x4a\x59\x7c\xa4\x87\x44\xef\x59\xc5\xc3\xfb\xb1\xbc\xa8\x21\x63\xa2\x07\x99\x38\x91\x2a\x27\x96\xa9\x23\xe0\xef\x6b\x41\x71\x9f\x38\x65\x15\x3c\xde\xbf\xfa\x0b\xeb\x5f\xbf\x8b\x3e\x09\xc1\x67\x41\xa5\x95\x3f\x7a\xf4\xf1\xf0\x10\xb2\xe8\xbd\xf8\xa3\xf2\x62\x3e\xa2\x77\xab\xf5\x32\x47\x2b\x47\x07\xa5\xe7\x28\x29\x90\x9b\xe6\x3c\x65\x31\x6a\x83\xe6\x04\xb8\x87\x54\x23\xe4\xea\x18\x97\x6a\x3a\x9b\xda\x2c\xb0\x02\x10\x8a\x16\xbb\x20\xd2\x0e\x67\xff\x3e\x36\xb5\xcb\xdf\x90\xda\x5c\xe3\xc8\xd9\x8d\x93\x3d\xbd\x82\x91\x6f\xe0\x8f\x3c\xc1\x35\x24\xae\x0b\x43\x3c\xc0\x75\xa9\xda\x21\x39\x4b\x53\x9e\xc3\x5e\xc9\x8c\x17\xe1\x20\x8e\xd8\x17\xc6\xe8\x61\x64\x7c\xf1\xf2\xc5\x49\xf8\xf2\x85\x94\xc4\x35\xc9\xe3\xeb\xfc\xfa\xfa\x8b\xc1\xa6\x08\x93\x24\xfb\xb8\x0c\xb7\x62\x97\x73\xf6\xc5\x17\x2f\x5f\x64\x5b\x25\x79\x90\x2a\x01\x4c\x3b\x91\x89\x2f\x5f\x9c\xc8\xe4\x97\x06\xe5\x3d\xd7\xb6\xf8\xed\xea\x3e\xb0\x2f\xbe\x08\x6a\xf2\x6e\x9a\x1b\x39\x37\x86\xff\xfc\xc3\xb3\x80\x35\xd2\xf9\x2f\xca\x6b\xe3\x1a\x85\xba\xbd\x95\x56\x3d\x69\xaa\x2a\xcb\xaa\xaa\x46\x0f\xb0\xf0\x70\x79\x94\x52\x32\x7a\xac\xae\x38\xfa\x17\x93\xe3\xef\xab\xed\x5f\xec\x48\x39\x4f\x29\x4a\x7a\xca\x34\x9f\x7a\x4b\x86\x7f\xc2\xe6\x46\xcf\x7b\x8a\xda\x7f\xb2\x47\xfe\xe8\x5f\x81\xdc\x72\xbb\x13\xcc\x3b\x33\xba\xce\xf9\x8a\x7d\xf1\xc5\xa0\xe6\x43\xbf\xa8\x9e\xda\x53\xdc\xfb\x5d\xce\xdf\x89\x36\x81\xf3\x23\x87\x3e\xc9\xf7\x93\x79\xf7\xd8\x0e\x58\x6f\x50\x43\xea\x7b\x70\xb0\x3a\xfe\x09\xd2\xc9\x0e\x9c\xa0\x41\x8d\x37\xc7\x26\x02\xbe\xb3\xa8\x0f\x3b\xb0\xa4\x14\x5b\xd7\xaa\x1c\x83\xd0\xc9\x10\x4e\x6d\x3d\x53\xc3\x53\x1c\x64\x4f\x4d\xf5\x27\x6a\x78\x15\x2c\x0c\x42\x0f\x56\x4e\x0d\xb1\xa1\x73\xbc\x99\xa6\x82\xdf\xda\x4e\x5f\x35\xcf\xa9\x77\x6f\x10\x5a\x95\xa4\xf6\x73\x0f\x67\x9f\x00\x11\xd8\xc0\x99\x9a\x17\x55\x81\x8a\x20\xdc\xb2\x75\xf5\xa9\x2c\xd7\xb6\xf4\xf4\xbb\x6a\xe7\x85\x0f\x9b\xec\xb1\x27\x35\xeb\xcb\x59\x74\x12\x81\xc2\x74\xf1\x2f\x05\xb8\x2c\xb3\x34\xc5\xc5\x87\x05\x58\xe5\xa9\x41\x51\xfb\xd3\xbc\xf9\xc5\x10\xd6\x3a\x8e\xed\x4a\x8d\x6d\xc8\x0c\xfa\x77\xc4\xec\x0d\xdb\xd4\x30\xd3\xc4\xf3\x1b\x25\xce\x29\x81\x3f\xbc\x62\x57\x7d\x79\xae\xf4\x3c\xa2\x82\xc8\xda\x5e\x66\x1b\x38\x03\x56\x2c\xfe\x5f\xb3\x22\x86\x7e\x13\x7a\xc7\x44\x59\x6a\xd9\x52\x11\xc6\x69\x41\x16\x7d\x26\x12\x97\x2d\x41\xc0\x82\x77\x59\x7d\x8f\xd3\x5c\x4a\x58\x9b\xf3\xe6\x5c\x53\xec\xe6\x65\x39\xb4\x86\xb9\x94\x9e\xe6\x75\x45\x90\x9a\xd6\x4d\x2f\x9a\x47\x2b\x27\x1e\x3f\xd6\x75\xd3\x74\xcf\xcc\xa3\x5f\xd1\xac\xa9\xbb\x83\xc6\x2b\x4b\x5a\xb1\xce\x05\x6b\xf5\x11\x98\x09\xa1\x31\x0a\x43\x67\x5e\x4b\x69\xe8\xb7\x4c\x2c\x0e\xea\xe1\xba\x92\x78\x0b\x0b\xc1\x51\x81\xb8\x86\x47\xfb\x34\x1e\x8a\x63\x9f\xea\xcd\xb7\x2c\x2d\xd7\xb4\xf2\xde\x93\x20\x63\xcc\x3a\x14\x27\x93\xc5\x71\x20\x08\xe2\xb9\xa4\x2c\x87\x29\x1a\xd0\xbd\xe1\x70\x26\xe2\x91\xb4\x32\xea\x2f\x81\xad\xe4\x0b\x18\x5e\x54\x96\x9d\x4e\x30\xc6\x5e\x99\xe6\x9d\xf5\x8a\x72\xb2\x18\xbb\x9e\x90\xb9\xc4\xb1\x5c\x82\x2c\x5c\x6f\xb7\xf8\xc9\xda\x51\x4e\xc6\xf0\x23\x88\xe7\x78\x33\x33\x87\xd2\x6e\xdf\xfc\x1c\x83\x6b\x5a\x5b\xb9\x34\xd3\x86\x2c\x90\xf6\x1a\x32\x9f\x07\xb4\x60\xea\x5e\xab\x61\x56\x96\xc3\x5a\x5c\x8d\x23\xaa\x3b\xbd\x70\xbd\x0c\x5e\xe2\xbe\x0e\x42\xe1\x4c\x17\x75\x2b\xc1\xd8\x5c\xd9\x39\xa1\xf0\x4a\xc7\x9e\xd0\xde\xa5\x52\xac\x98\x56\x99\xc4\x41\xa6\xa2\x9b\x69\x1e\xfa\x79\xc0\x18\x2b\xfc\x3c\x98\x93\x7c\x34\xaa\x91\x60\xb1\xe2\x16\x7c\xa4\xf0\x89\x78\x2a\xdf\x2b\xe8\x70\x51\x3d\xbb\x9e\xb3\xa7\x11\xf1\xa2\x3d\x2d\x78\x45\xee\xfa\x35\x5a\xa8\x13\x41\xaf\x5c\xfc\x23\x88\x5e\xa4\x26\x9e\x07\x53\xd1\x87\x82\x95\xe2\x02\xcf\x8f\x9d\x1a\x4c\xf3\x06\x85\xea\xa2\x16\xaa\x5f\x95\xe5\xf0\x4a\x89\x29\xa4\x5d\x9c\x26\x66\x17\x84\x10\x91\x3f\x28\xad\x61\x4d\x1a\x65\x0c\xad\xbc\x2c\x7b\xc8\x29\x20\x64\x45\x72\x94\xd2\xa5\x49\xa8\xc9\x49\x2d\x6e\xd4\x64\xae\xf7\xd2\xf1\x61\xdf\x40\x44\xd0\x48\x82\xc3\xe7\x01\xa9\xa3\x00\x21\x64\x2a\xf2\xd3\x0b\xcd\xcf\x40\xe5\x4e\xba\x7b\x40\x35\xa1\x10\x5d\xa8\x7e\xba\xb0\x8a\x1b\xd0\x12\xd2\x76\x3d\xc3\xa5\x85\xe6\x3b\x75\x1b\x9a\x96\x93\x76\x72\x92\x85\x74\xb9\x1d\xde\x54\xe7\x89\x0a\xbd\x6a\x9b\xcc\x78\x11\x7b\xed\x18\x03\xc3\x9b\x45\xe7\x4c\x2d\x88\x67\xc5\xac\xe7\xa4\x29\x94\x65\xff\x96\x2f\xf1\xd6\xc0\x45\x6c\x2b\xc7\xd9\x5d\x92\xe0\xf8\x79\xb1\x0c\xb7\xbc\xc7\xa5\xa1\x63\x9d\x27\xd5\x1e\xb2\x48\x9e\xb7\x30\xf1\xd0\x7c\xd3\xf8\xe1\x21\x15\xe1\xfd\x00\x73\xd2\xc1\x2e\xcd\xf9\x32\xbb\x4d\xe3\x47\x1e\x69\xae\x3f\xde\xc0\x18\xa9\x2a\x77\x69\xfc\xeb\x8e\xff\x90\xe5\x7d\xe2\x2f\xed\x30\x85\xab\x7e\xcb\x86\xa9\x1d\x71\xc1\x97\xe2\xcd\x6e\x9b\xc4\xcb\x50\xf0\x82\xee\x98\x22\xa0\x3f\xa0\xaf\x0f\x0a\xbc\xa5\x3a\x18\x78\x16\xf8\x60\x7d\x4b\xe8\x56\x1d\xb5\x04\xe3\x7e\x8c\x47\x2d\xdc\x51\xfc\x38\x40\x99\x97\x3a\x67\xc5\x44\x2d\x7e\x94\xc7\x73\x65\xca\x8c\x92\x49\xea\xd6\xf8\xb9\x43\x39\x3f\xe5\x7b\x9a\xb1\x02\x81\xff\x9e\xdf\xf7\x0d\x20\x65\x86\x81\x94\x31\xd6\x36\xe6\xe6\x08\xee\xca\xeb\xfb\x2e\xe5\x8f\x8b\xaf\xf2\x80\xd6\x17\xd8\x87\xdf\x0b\xb4\x89\x48\x45\x73\xbd\xa5\x96\x88\xfd\xe6\x18\x75\x2a\x2f\x04\x32\x83\x73\x3e\x87\x04\x4d\x90\x4f\xd2\x11\xcb\xe0\xb8\x56\xa9\x16\xa7\xb2\xed\x99\x4e\x4f\x65\x57\x7f\x04\x74\xd9\xd7\xa6\x7b\x08\x38\x79\xb4\xc7\x3a\x9a\x10\x48\xe9\x9e\x5a\xb9\x94\x65\x4a\x4a\x53\xb0\x27\x4d\xbb\xe3\x9d\x3a\x54\xf2\xe4\x7f\x2d\xf8\x2e\xca\xbc\x84\x53\x24\x4d\xde\x5f\x68\xb3\x3e\xbc\xa7\x3d\x85\xc3\x2c\x86\x52\xe4\x09\x5a\x4c\x78\x4f\xc6\x4b\xc3\x3b\x54\x99\x4b\xeb\xfa\xa1\xb3\xa7\xc6\xa0\xe7\xfb\x9e\x1a\xa3\x3a\x39\xe7\x77\x71\xb6\x2b\xd4\xf0\x5b\x65\xff\x75\x2c\xd3\x7e\x4f\xb7\x39\xff\x12\xa5\x45\xde\x13\x5a\xde\xf4\x49\xb7\x7c\x37\x60\xf0\xa7\x23\x39\xa2\xdc\x9f\x06\xcc\x82\xbf\x65\xc9\xfd\x19\xfe\x3d\x0d\xca\x52\x5f\x54\x2a\x2b\x9c\xd0\x10\x0b\x27\x01\xde\x65\x39\x0d\x98\x01\x6b\xc3\x9f\x06\xa8\x27\xa3\x8d\x65\xc3\x8c\xec\x95\x51\xcf\x27\xfb\xd2\x22\x32\xd4\x48\x65\x04\x2e\xfc\x54\xd5\x34\x25\x0b\xd5\xbb\xa2\xbe\xd8\xd9\x77\x02\xe8\xf8\x2c\x60\x23\x0b\x7e\x16\xd0\x65\x78\x3c\x0b\xca\xd2\x25\xde\xe4\xb9\x65\xf0\x3b\x9e\xca\xca\xa6\xe8\x96\x13\x45\xd5\x1b\x81\xb2\xa7\xb2\xec\x79\x30\xe2\xfe\xc5\x41\x06\x0f\x7e\x4c\xb3\xdb\xe2\xbe\xb2\x60\xea\x5b\x3b\x43\x68\xde\x34\x01\x3a\x15\xae\xfd\xc5\x46\x18\x28\x4d\x29\xd4\x21\x23\xdd\xe1\x80\x16\x90\x93\xb5\x41\xee\xa5\xa6\xf9\xa3\xcc\x8e\x81\x15\x05\x0b\xad\x14\xf6\x1a\xf9\x92\x36\x41\x3f\x88\x51\xeb\x2b\xc6\x82\x8c\xab\x67\x79\xc9\xa8\x03\xf5\x3a\x0d\x0c\x05\x8c\x78\x12\xb0\x54\x4b\xd1\x67\x6b\x4a\xc8\x1e\x10\x5a\xa2\xd0\xfb\x57\x7f\xe9\xf1\xe3\xe8\x8a\x1c\x7b\x15\x57\x4a\x4e\xb4\x38\x70\xd3\x18\x3a\xfd\x8e\xb6\xb5\xa6\x01\xe8\x60\xbf\x4e\x4c\x89\x1b\xa5\x45\xda\x61\xbf\x7e\x56\x7a\xf7\xda\x9b\x04\x6f\xb7\xd5\xed\x90\xac\x0f\xb5\xe1\x1c\x1f\x19\xd2\xf8\xa8\x7c\x46\x50\xac\xf7\xb3\xc5\x69\xef\x3d\xeb\x72\x12\xfa\x28\xdb\xb2\x11\x35\x69\x2f\x65\xf9\x1b\x24\xad\x5d\x29\xab\x12\xfc\x1b\x04\x97\x1b\xfa\x6d\x76\xd6\x6f\xcb\xb8\xbb\x4e\x56\x97\xac\x22\x39\x07\xa2\x64\xe5\x9a\x97\x92\x34\x01\xcf\x16\x70\x04\x84\x7e\x7b\x43\x00\x49\x36\x02\xe2\x6e\xc8\xa4\x05\x30\xa4\xa9\x57\xe5\x58\x64\x43\x7c\xfd\xa0\x5e\x53\xd3\x74\x18\x63\x99\x16\x18\xd4\x33\x9e\x37\x1f\xf5\x0f\x2f\xc7\xae\x67\x3c\xd3\xbf\x49\xa4\x6a\x30\x52\x36\xf5\x2f\x95\xc5\x02\x8a\x91\xd5\xb8\xf4\x4f\x20\x8a\x68\xd9\x44\xba\x95\x96\xb2\x04\xee\x77\xa8\x07\xcd\x6a\x7c\xad\xea\x1e\xb9\x58\xfb\xc8\x18\x1b\x88\xc1\x5d\x8a\x53\x79\xeb\x54\x81\x52\x91\xc0\x20\x9f\xd7\x60\x3e\x0d\x99\x91\x84\x85\xd0\xd3\xc7\x33\x42\x0b\x66\x28\xdb\x42\xec\x46\x05\x5d\xd8\xf5\x72\x05\x9f\x1e\x9f\xf2\xe1\x50\x3f\x53\x68\x38\x0f\x3d\x59\xca\x7e\xb4\x2c\xa1\x59\x3c\x64\x2c\x5c\x18\xda\xae\x67\xf4\x6c\x04\x9b\xf6\xe1\xe4\x8a\x15\xd2\xb1\xa2\x6f\xc1\xd0\x5b\x36\x5c\x9a\xe6\xb0\xa0\x77\x6c\xe8\xc2\xfe\xbd\xc1\x6d\x3a\x56\x3c\xc5\xcd\x5c\x3e\xac\x98\x98\xaf\xd8\xca\xbf\x91\xf2\xef\x62\xb1\x3a\xbe\x02\xaf\x3c\x18\xf8\xaa\xcb\x16\x0f\xdd\xf9\x9a\xdd\x30\x23\x4b\x13\xf4\x1e\xe4\xa6\x39\x5c\x9b\x66\x6b\x34\xfb\x9a\x02\xc4\x2b\x6b\xcd\xfc\x70\xb1\xd1\x36\x7d\x6f\x63\x03\xf4\xf1\x39\xa0\xa1\x69\xde\x2a\xcd\x2c\xb3\x22\x66\x25\xcc\xda\x31\x6b\xcb\xac\x15\xdb\x10\xff\x21\x28\x4b\x6b\xe5\x3f\x04\xec\x69\x4f\x88\xbf\x52\xec\xd8\xd7\x6f\x20\x7d\xab\xbf\xcb\x0c\x3c\xc0\x50\x59\x40\x0e\xd1\x8c\x26\xf1\xdd\x80\xc0\xcf\x24\xa0\x2b\xe0\x93\x37\x9a\x29\x9a\x1f\x05\xf3\x15\x1b\x8d\x80\x7d\x36\x4d\x80\x4a\x59\x5a\x77\x2c\x62\x0e\x29\xcb\xb5\xbd\xcd\xb6\x16\x41\x38\xb5\x01\x61\x9a\xa3\xd1\x9d\x69\xae\xf0\xa4\xf9\xb4\xf3\x79\xc0\xfc\x8f\x34\xa2\x77\x81\x0c\xe6\xb4\x6f\x99\x45\x41\x7d\xfa\xa0\xc4\x1f\x34\x28\x8a\x7a\xfc\x3b\x29\x8e\xb0\x3e\x37\x0c\xd8\x24\x3e\x31\xdd\x43\x9c\xee\x61\x6b\xba\xcb\x72\x38\x1a\xdd\x95\x25\x8e\x42\x76\x7f\xf5\x3b\xba\x0e\xb0\xb9\x0b\x08\x5d\xa1\xe3\x3d\x99\xd7\x06\x0f\x77\x63\x96\x11\x29\xd4\xb9\xfb\x5f\x39\x63\xcc\x31\xcd\xbb\x93\xfc\x25\x73\xf6\xfb\x9e\x5d\xb7\xd1\x60\x20\x2f\x8c\x9c\x5a\x81\xa0\xc9\xed\x82\x0b\xc9\x0c\x15\x7e\x67\x60\x3a\x0f\x61\xec\x52\xa5\x58\xe7\xd1\x40\x56\x20\xf9\xfc\x3a\xc0\x97\xff\x10\x2c\x80\x71\xf4\xb2\xea\x40\xe7\x2e\xac\x94\xf9\x9c\x72\x6a\x18\x54\x04\x54\x6f\xab\x1b\x74\xb1\x6b\xd6\xb5\x48\xda\x81\xc8\x74\xe7\x18\x38\x86\xe1\x98\x0e\xcc\x0e\xb8\x9f\xb3\x9f\x2c\x4e\x63\x3f\x0c\x48\xc0\x86\x56\xea\xa3\x4f\x48\x88\xf1\x6d\xfa\x76\x54\xa8\xc8\xc1\x00\x70\x5e\x06\x9c\xa1\x04\x8d\xf7\x94\x66\xc2\x4b\x3a\x32\x46\xb9\x81\xfa\x01\x55\x97\x1c\x17\x87\x46\x54\x8d\x22\x07\xc0\xd1\x19\x03\xd0\xb4\xac\x19\x47\x4c\x43\x96\x57\xc2\x81\x8c\xfa\x01\x91\x01\x63\x35\xeb\x32\x2b\x66\xa1\x5f\x04\x92\x4b\x29\x60\x40\x02\x7e\x62\xd2\x19\x0e\xcd\x68\xdc\xec\xc5\xc8\xcf\xd0\x1c\x68\x28\x46\x00\xa4\x29\xa1\x98\x88\xaf\xc3\x54\x62\xf5\x7e\x4f\x08\x5d\x87\xc5\xc1\x30\x8f\x5a\xc5\x28\xfb\x4e\xed\xc0\x0e\x55\x54\x07\xf6\x63\xf5\xf0\x03\x56\x88\x1e\x56\x6d\x09\xfd\xb0\x53\x96\x80\x48\xcd\x0e\xc7\x61\x87\xc3\xc6\x92\x30\xbd\x3d\xd6\xd0\x7f\x29\xbe\x11\x99\x83\x63\xa8\x8b\x15\x20\xe2\xd2\xc3\x8e\x75\xf6\x85\x03\x3b\xa4\x79\x94\x61\x7c\x73\x76\xb3\x10\x36\xd6\xd4\xb5\x2b\xbc\xdf\x24\x1e\x7c\x80\x0e\x74\xbf\xc9\x74\xb5\x13\x58\x29\x4b\x3b\x28\x2f\x6d\x7e\x1c\x54\x11\xd6\x23\xc7\xbd\x7a\xff\x71\x1d\xc3\xa0\xdb\x82\x53\xd2\x35\x06\x23\x8d\xdc\x14\x60\x25\xc2\xbc\xe5\x0f\x5e\x4b\x92\xb9\x9d\x64\xcb\x50\x8a\x71\x9b\x67\x58\x91\xeb\x96\xf6\xba\x8a\xbc\x27\xc3\xe7\x45\x7b\x9a\x67\x59\xaf\x7f\x39\x67\x8c\xad\xf7\x14\x9d\x70\x8e\x7d\x8f\xec\x70\x09\xc7\x3e\x25\xad\x36\x4d\x6b\x18\x41\x93\x5f\xa2\xe7\x4e\xd9\x3c\x23\xbd\x1d\x0e\x81\x22\xa0\x78\x9a\xdb\xeb\x9c\xaf\xca\xf2\x5f\xdc\x16\xe1\x0d\x1a\xb6\xa1\x73\x33\x2a\x2e\xbc\x1b\x6e\x0d\x5d\x42\x2b\x45\x06\xbe\x3b\x84\x2a\x35\x57\x2f\x5f\xfe\x49\x53\x32\xcd\x82\x0d\x7a\xc1\xed\xca\xe9\xa8\x34\xa4\x56\x4a\xfb\x54\xa9\xfa\xf6\xb4\x7a\xea\xe7\xd9\x75\x03\x32\xfd\xad\xae\x00\x07\x45\x95\xd9\x79\x53\x2b\xdf\x6c\xc5\x43\xab\xca\xdf\x24\x04\x88\x57\x56\x23\x8e\x78\x71\xd6\xe7\x8a\x2a\xfb\xd0\xd3\xdb\x61\xbd\x3b\xd8\xd8\x3a\xea\x7e\xd7\x3c\x8c\x78\xde\x37\xb6\x67\x6a\xc9\xd5\x30\x25\x7b\x8a\x00\xec\xcb\xfc\x9f\x3d\x99\xa5\xa9\xde\xff\xe1\x34\x69\x06\x7f\x15\xd2\x68\x49\x62\x4f\xd1\xd3\xe4\xd0\x5d\xb7\x5b\xd5\xb1\x36\x4d\xd3\x80\x1a\x9a\xfa\x4d\x53\xdd\x71\x60\x09\xd6\x3d\xa1\x20\x07\x8c\xbe\xc7\x55\x99\xae\x6c\xb0\x0a\x20\xb0\xd1\xc9\x58\x05\x25\xdf\x09\x24\x9d\xeb\x66\xd0\xa4\xa0\xbe\x18\xbb\x98\x8b\xff\x7a\x90\xa7\x39\xfe\xf8\xe9\x0b\x67\x91\x8e\x84\x97\xca\xbc\x77\x3c\xed\xa9\xb1\x13\xb9\x70\x9e\x8e\xd8\x84\xf0\xae\x59\x02\x87\x1a\xb2\x28\xfa\x64\x05\xee\xe7\x2a\x48\x0e\x87\xd4\x76\x7a\xad\x7b\xfc\x52\x2c\x84\x97\xce\xc7\x63\xe0\x68\xe6\x55\x75\x79\xbb\xba\xdb\xdf\x5c\xdd\x7c\x34\xca\x5f\x88\x23\xf5\xec\xf7\xa4\xc6\xf9\x54\xac\x99\xb6\x02\x7e\xa5\x4f\x79\x18\xc5\x19\x06\x18\x02\x3a\x70\x93\xdd\xc3\xf3\x2a\x96\x41\x87\xb6\x61\x51\x7c\xcc\xf2\x08\x9e\xe3\x4d\x78\x2b\xe3\x11\x36\x0c\x96\x08\x18\x0a\x6b\x6b\xc7\xf0\xa7\x62\x77\xb3\x89\x05\xe4\xcf\x79\xc1\xc5\x61\xfe\xb5\xcc\x5f\x59\x46\xde\x72\x4b\xbf\x0c\xe0\x8e\xb7\x03\x1b\x3a\xb4\xe5\xa9\x61\x18\x73\xf1\x22\xc5\xd0\x78\xf9\x08\xa3\x14\x48\xb1\x70\x63\x5d\x52\xd7\xf4\xc0\xdb\x8e\x43\xc2\x8e\xe2\x9c\x66\xb0\x9b\xf0\x7b\x01\x1c\x56\x59\xe6\x34\x64\xa9\x69\xea\xd2\x37\xc6\x58\x4c\x0b\xf6\xd8\xe8\x4b\x84\x24\x46\x8b\xd6\xc9\x2d\xab\xc5\xb1\xe8\x00\x5d\x1d\x03\x84\xa6\x75\x0c\x6b\x79\xa4\x2a\xd1\x6c\x5e\x9f\x3a\x05\x02\x47\x5c\xa0\x86\x69\x79\xd8\x46\x4f\x23\xa6\xc9\x55\x2d\xb5\x76\xb1\x25\xf5\xfc\x44\xff\xe2\x95\x64\xdc\x85\x64\xdc\x45\xcd\xb8\x8b\x0e\xe3\x2e\xda\x8c\x3b\xcd\x4c\x33\xfb\x84\x09\x34\x11\x55\xf8\x9e\x79\xe5\xba\x61\x25\x6c\xe7\xc7\xf2\xb0\xa5\x1f\x54\x18\x63\x45\xad\x07\xf3\x27\x01\x83\xb3\x18\x0c\x1e\x72\xb3\x15\xc5\xb4\xc3\x01\x36\x6c\x40\x3d\xdf\xaf\x5a\x26\xb6\x0d\x87\xde\x02\xb5\x6e\xe5\xdb\x70\xa2\x28\x2c\xc7\x40\x55\x7e\x16\xa8\x7c\x3d\x9b\x0a\x5e\x20\xa1\x85\x0a\xe2\xba\x3c\x41\xe7\x79\xfd\x80\x16\xcc\xc1\xfb\x10\xea\x80\x1f\xd2\x67\x5c\xd4\x81\x38\xac\x98\x71\xc5\xf8\xa6\xa6\x39\x4c\xad\x18\xeb\x29\x4b\x2b\xac\x44\xf9\x34\x41\x5d\x37\xbc\x14\x44\x8f\x6b\x51\x77\xe1\x51\xeb\x82\xc6\x1f\xe7\xa6\x39\x04\xf6\x1c\xaf\xe4\x79\xc4\x30\x49\x30\x65\xc3\x4c\xa6\x65\x90\x06\xf9\x49\xdb\x08\x5a\x39\x66\x77\xb0\x31\xa0\x11\xfc\x59\xb3\xb0\x1a\xcc\x0d\x8b\xdb\x21\xd8\xda\x44\xc9\xc1\x45\x56\x47\x0b\xc8\x30\x5a\x80\x64\xac\xfd\x3c\xa0\xa9\x26\x78\xb7\x44\x59\x1a\xcf\x0d\x5a\x34\x5a\x7f\xbf\x08\xbc\x02\x8f\x0a\x1b\x36\xe4\x65\x39\x8c\x4d\x53\x2c\x6e\xbc\x8f\xdc\xba\xa1\x2b\xca\xb1\x87\xf4\x8a\xa5\x8b\xac\x2c\xad\x78\xc1\xbd\x75\x59\xe6\x18\x43\x24\xf4\x36\xe8\x02\x60\x9a\xa9\xb5\xa1\x57\x32\x67\x8e\x47\xe0\x84\x7d\xe4\xd6\x15\x8d\x08\xcd\xad\x84\xc2\xfc\xc0\xb7\x1d\x4b\xaa\x7e\xee\xf0\x30\xb2\x65\x89\xbf\xc3\x39\xb9\xf2\x23\x7f\x17\xc0\x79\x64\xa3\x9e\xb6\x44\x33\x3e\xcc\xca\x52\xc6\x36\x53\x33\x9f\x00\x88\x76\xb5\xcd\x44\x5d\xdd\x95\xac\x2e\x91\xb3\xb8\xf1\x77\x50\xcf\x3c\x93\x41\x8c\xd1\xe2\x2c\xa1\x4b\x82\xf6\xdd\xc7\x4b\x5b\x09\xcb\x16\x3f\x59\x31\xdd\x12\x6f\x05\x49\x2f\xc7\xae\x69\x5a\xb1\x9f\x40\xff\x42\xf8\xd9\x02\x95\xc7\x55\x7f\x85\x23\xc5\x28\xcd\x57\x95\xfa\x67\x4d\xab\xaa\x89\x77\x45\x68\xb6\x50\x1d\x08\xe9\x15\x5d\x12\xaf\x72\xc7\x09\xe9\x55\xdb\x6a\xfd\xe7\x36\x31\x06\x22\xd6\x8e\xd7\x90\xdb\x95\xae\xc3\x47\xf1\x32\xb0\x06\x80\xfb\x21\x1c\xbb\xeb\x4f\xc6\xc0\x08\xe8\x92\x85\x0b\xd7\x73\xe8\xee\x88\x4b\xa2\x74\xcd\xdf\x13\x5a\x50\x60\x6f\xb7\xc7\xb2\xfd\x64\x09\x2a\x4f\x4b\x55\xd6\x15\xf3\xf5\x63\x34\xad\x65\xa1\xc3\x10\x16\x40\x59\xa6\x43\xc6\x12\x58\x59\x96\x60\x29\x69\x50\x6d\xa7\xb2\x7b\x5b\xf5\xd0\x04\x20\x92\x07\xc9\x6c\x1f\xcc\x97\x2f\xe2\xf9\x52\x05\xce\x69\x8f\x77\xa9\xc6\x4b\x56\xcc\x7f\xe0\xd6\x2b\x6e\xad\x08\x4d\x49\xd0\xd0\x3c\x28\x20\x65\xe8\x5a\x76\x05\x6c\xa9\x81\x83\x54\xa5\xe7\x26\xc4\x7f\x08\x24\xb4\x33\x36\x1a\x2d\xe7\xd9\x8b\x18\xd6\xb1\xde\x64\xa6\xea\xc0\x08\x19\x55\x67\x1f\xb9\xb5\x7c\xe9\x9a\xa6\xec\x00\x3e\xc2\x2e\x5a\x4b\x34\x97\x63\x97\x54\x51\x79\x55\x64\x41\x63\x20\x35\x1b\xcb\xf1\x44\xd6\xb8\x30\x9e\x1b\xf2\x82\x9f\x03\xa7\xa9\x94\x2e\x5f\x64\xa6\xf9\x73\x53\xe5\x92\x66\x40\x50\xa0\x7b\x90\x5a\x0b\x49\xeb\x54\xdc\xc4\xc9\x7e\x55\xf1\x48\x95\xde\x11\x7b\x58\xbd\xdc\xea\xb1\x11\x2b\x38\x15\x0d\x73\xd2\x12\xa6\xa0\xf8\xfe\x96\xd3\x90\x15\xb0\xd7\xfc\xc2\xd3\xf8\xb1\xeb\x60\xab\xc4\x3f\x7a\x7c\x09\xf6\x5d\xa5\x0b\x80\x1d\xa5\x36\x03\x5d\x38\xde\xae\xd6\xb1\x22\xeb\x52\x30\x4e\x97\xb8\x1c\xa1\x03\x95\xf2\x6c\x5e\x28\xc1\x68\x88\xbe\x17\xa6\x39\xb4\x32\xf6\x37\xe9\x38\x59\x10\x8c\x76\x64\x9a\x56\xc1\x8a\x0a\x00\xb0\x06\xd4\x42\x2b\xcb\x82\xd0\xa5\x22\xe5\xcc\x0f\x08\xa1\x29\x1b\xba\xd4\xca\xd8\x57\x75\x0d\x18\x3a\x3c\xab\x7c\xc6\xa8\x0c\x22\x68\xd5\x21\xa2\x31\x02\x1f\x56\xaa\x4d\xca\xc0\x20\x18\xe3\xa9\x6a\xb4\x16\xab\x4b\x83\x63\xe8\x37\x81\x7e\xfe\xc5\x0f\x03\xad\xab\x89\x1f\x06\x72\x00\xf0\x04\x73\x55\x96\x9f\x6f\x3c\xa4\x0a\x3b\xbd\xec\x48\xa3\x68\x0a\x93\xca\x28\x3a\xfb\x1a\xc0\x95\x1f\xaf\x57\x2c\x1a\x95\x19\xf1\xbe\xb3\x38\x5d\x92\x1a\xf4\x7b\xa8\x51\x9a\x17\xc5\xc9\x91\xe9\x84\x49\x89\xe5\x8e\xfa\x5e\x9b\xcc\x61\x21\x67\x46\x2a\x77\xd0\x6b\x91\xa6\xcd\xb6\x93\x22\x05\x2d\xd8\xcf\xdc\x12\x7e\x1a\xe0\xda\x5a\x64\xd5\x5e\xea\xc5\xd5\xd3\xdc\x2a\xd8\x7b\x8b\xf7\xc5\x8e\x67\xcd\xe5\x4d\x5a\xf8\x9b\x97\x0e\x8d\x59\x77\xc7\xa4\x3b\x59\x66\x4b\xd7\x74\x43\xaf\x98\x43\x6f\x99\xe1\x18\xf4\x8e\xc5\xa6\xe9\x07\xf4\x01\xfa\xff\x8a\x25\xf4\x11\x76\xce\xcc\x34\x1b\xcb\x70\x0b\xb6\xbf\x1d\xa1\x3f\xb3\x8f\x23\x26\x8f\x5c\xaf\x16\xae\xd7\x0a\x4a\x55\x96\xb6\x4b\xbf\x63\x8f\xd5\xe0\x70\xb7\x90\x51\xc2\xa4\x85\x54\x58\x96\x3b\x32\xbf\x1d\x32\xf6\x5d\x15\xc5\xd4\xda\xb2\x47\xff\x36\x20\xf3\xdb\xd1\x48\x6e\x54\xa6\xa9\x4c\x08\xd6\xcc\xa1\x61\x59\x6e\x0f\xcc\xaa\xa2\xb2\xb4\x56\xd6\x16\xe6\x79\x78\x43\xe6\x1b\xc6\xfd\x75\x65\x0b\xbf\xb1\xb6\x50\x28\xa2\x05\x21\x4f\x0a\xad\xb7\xea\x7a\x82\x3d\x74\xe6\x23\xfb\x99\xec\x53\xd3\xb4\xac\x2d\x1b\x6e\xa0\x31\xd3\xbc\x1a\x8f\x29\x90\x83\x2a\x3b\xd9\xc7\x2b\xeb\x6a\xc4\x6e\x69\x6a\x9a\xd0\xdd\xab\xba\x47\xf3\x0d\x13\xaa\xb5\x8d\x75\x47\x1f\x00\xb0\xda\x7e\x7b\xf5\xd2\x91\xa2\xec\x5b\x98\xd8\x3b\xff\x36\x28\xcb\x07\xfc\x6b\xc1\x0f\xfb\x41\x5a\xac\x2c\x09\x99\x3f\xc0\x06\xf8\x40\xf6\xd5\xae\xb6\xa4\x0f\x84\xee\x4c\x13\x18\x89\x87\x7a\x16\x4d\xf3\xaa\x8e\x70\x04\x14\xb3\x65\xca\x61\x2d\x1b\x53\x09\x39\x34\x9a\xb0\x57\x84\xde\xed\x1b\xcf\x8c\x84\x5b\x31\xf1\xe2\xbd\x15\x03\x35\x24\xb5\xf1\x00\xe3\xb5\x15\xd0\x9e\x2e\x1b\xb3\x02\x76\x28\x26\x95\xec\x62\x1d\x08\xa7\x37\x94\x31\x37\x4d\x4e\x23\x36\xcc\x4c\x33\xb4\x38\x5b\xd5\xed\x00\x03\x82\xdc\x0e\xc3\xeb\x3f\xd0\x31\x38\xaa\x56\x25\xee\x3e\x4b\x16\x01\xab\x1d\x69\x7a\xdf\xda\xb5\xf7\xe5\xc4\x34\x8d\xaf\xdf\x40\x43\x56\xc2\x96\xbe\x13\x10\x75\xee\xbf\xec\x78\x5f\xde\x00\xb6\xd6\x5b\xd0\x12\x75\xf4\xb8\xeb\x49\x0f\x71\xc1\xac\xda\xed\xc3\x4a\xaa\xbd\x4c\x27\x59\x4a\x22\x2a\x48\xa5\xa5\x20\x4d\xf0\x9b\x15\x2a\xb1\x5b\x22\x3f\xda\xec\x27\xcb\x8a\x36\xc9\x33\x5e\x35\x38\xe4\x96\x62\xf6\x17\x5b\x0f\xb3\x51\xf9\x1e\x2f\x1c\x6f\x59\xc7\x77\x1a\x8f\x71\x95\x2c\xfd\x38\xa0\xfa\x46\x0a\x7c\x9f\x1c\x84\x3c\x54\x6d\x99\x1c\x83\x62\xb7\x32\xb6\xfd\xe4\x50\x2a\x4f\xe7\x65\xc5\xf2\xf4\x7b\x3c\x2b\xcf\xed\x65\xc5\x85\xc5\xd4\x25\x74\x68\x71\x96\xd5\x96\xb5\x77\x1c\x50\xb6\xeb\x64\x0e\xc8\x41\xd3\x4a\x5b\xa4\xa4\xa9\xab\xb2\x2c\x2c\x4e\x23\x42\xac\x0c\xed\xae\x68\x4a\x87\xa2\x2c\x3f\xe3\x76\x8d\x21\xc2\x74\xf3\x22\xf6\x50\x79\xf0\x1a\xa4\x32\x2e\x52\x46\xbd\xe8\xdd\xf4\x40\x0f\x4d\x94\xd8\x70\xb8\xa5\x2b\x8b\xd0\xb6\xa1\xe7\x31\xcf\x2e\xf7\x13\x76\xb3\x9f\x70\x6a\xee\xb5\xba\xaf\xcf\x73\x7d\xc6\xf7\x7f\x92\x96\xf6\x06\x35\xfe\x24\x45\x57\x8d\xd4\xb0\x23\xb3\x82\xfc\xa8\x4f\x2f\xcb\xad\x12\x61\x95\x28\x74\x5d\xf3\xf8\x76\x2d\xca\x8f\x71\x24\xd6\x06\x3d\x10\xb5\xc8\xcd\xad\xdf\x1f\x4c\x50\xa3\x56\x06\xb7\xcf\xbf\x0b\xd7\x9b\x28\xb7\xbd\xc6\xfc\xed\xd0\xa2\xbb\x77\x6c\x28\xab\x3b\x41\x87\x0e\x6d\x34\x6d\x63\x7e\x79\x69\x06\x06\x27\x34\x3e\x33\x70\x99\xb5\x19\xb9\x2a\xda\x3f\x50\xd3\xfc\xbc\xa8\xb0\x01\x46\xe5\x64\x89\x76\x56\xc7\xa7\x4e\xc5\xcd\xeb\xf4\xab\xb1\xcb\xaf\xba\xf6\xe6\xb0\x53\x32\x44\xb5\x3e\x07\x52\x82\xec\x8b\x60\xd1\x01\xb9\x87\x81\xdd\xfa\xcd\x08\x73\xcd\x8c\x30\xd7\xcd\x08\x09\xa1\x05\xdf\x5b\x29\x99\x3f\xe2\xfa\x67\xef\x31\x62\xe4\x36\x67\xef\x1b\x63\x30\x95\xe4\x1b\x9e\x21\x23\x50\x6e\x1b\x16\xf5\x51\xb7\xff\xab\x5e\xd8\x7b\x2d\x95\x3e\xca\x00\xc7\xef\x2b\x2b\x3b\xfa\x28\xfd\x75\xdf\x64\x4b\xf6\x5e\x3e\xd2\xc7\xc6\x26\xf4\x7d\xfd\x08\xed\xa2\x89\x63\x6d\x42\xfb\x5e\x25\xa0\x21\xe7\xfd\x41\x7c\x9c\x4e\x68\xbd\xda\x0e\x33\x9d\x03\x8f\xee\x0b\xa0\x6d\x97\x43\xdd\xc4\xbe\x16\x0b\x35\x49\x15\xaf\xf0\x88\x2e\x4c\x85\x95\xd6\x01\x12\x55\xfc\xbd\x7a\x67\xcc\xf7\x07\x41\xd6\x1a\x49\xa9\x1f\xf4\x88\xed\xbb\x8e\xfe\x5c\x46\x15\x4d\xab\x9a\x35\x83\xbc\x77\x15\xa4\x91\x0a\xb7\x28\x7d\x23\x3a\x7c\xdb\x09\xff\xfe\xdb\x2c\x87\x3a\x31\x6d\xa0\xbf\x3f\xb0\x93\x0f\x2f\x2c\x3f\x1c\x3f\x06\xfe\x87\xeb\x93\x6b\xe7\xa5\x87\x81\xd0\xc4\x75\x7e\x9d\x5e\xaf\x82\xe7\xc4\x6f\xbf\x5f\x9f\x2c\x5e\x5a\x0b\xef\xc5\xf5\xc9\xb5\xfb\xb2\x24\xcf\x4e\xe2\xa6\x57\xbf\x76\x6c\x74\x6e\x2d\x41\x16\x8f\xf6\x6d\xce\xb7\x6d\xd3\x22\x38\xa8\x56\x36\x22\x55\x60\x4a\x9a\x53\x34\xd9\x4d\xf7\x84\x78\xcd\x36\xdc\x5b\xbe\x7d\x72\xae\x0a\x1d\x86\x94\x11\x9f\x2e\xdd\x44\x85\x84\x53\x75\x55\xcd\x63\x75\x41\x8b\x8a\x16\x59\xbd\x1f\x89\xca\x24\x7c\x27\xd0\x34\x6b\x16\x67\x86\x97\x66\xc2\x42\x03\x2b\x62\x10\x2a\x85\x8f\xd5\xbe\x87\x36\x33\xfa\xe8\x90\x83\xe8\x18\x7c\xa3\x0d\xd3\xc2\xcf\x03\xcf\x0f\xbc\x76\x16\x8b\x53\x35\x26\xd1\x3b\xa6\x36\xa6\xc9\xa0\xc8\x5a\x10\x5f\xeb\x09\x4d\x35\x7b\x6c\xf6\x68\xde\x0a\x4f\x9c\xe1\x9b\x7e\x21\x9b\x66\xc8\x55\x1f\x27\x3b\x01\x9b\xf1\x52\xc6\xee\xed\x36\xea\xb4\xc2\x9c\xb9\x78\x91\xa3\xfc\x3a\x5e\x59\xcd\xba\xb7\x32\x5f\x04\x14\xc3\x56\x37\x42\x4e\x42\x6a\x73\xff\x76\x13\x7e\x40\xa8\x5e\x95\x04\x8e\xc5\x29\xd6\xa2\xf9\x5a\xbe\x74\x17\x3a\x89\xb2\x52\xe2\xa5\xb5\x59\x5f\x9f\x91\x5b\xbb\x9d\x5f\x55\xb0\x6a\x64\x30\x87\x2e\xc1\xd8\xb6\xbd\x9a\xaf\x4f\x16\x74\x08\x46\x96\xed\x53\xc6\x0d\x55\xce\x1e\xb3\x3a\xd3\x7c\x57\x33\x75\x00\x53\xaf\xee\x46\xe5\xf6\xbd\x97\x26\xed\xaf\xe9\x2f\x32\x2a\xd9\x75\xf1\xdc\x7a\xe1\x5f\x7f\xbc\xfe\x29\x18\xbd\x24\xfe\x87\x97\xc1\xf3\xf2\x4f\x5a\x60\xb2\x39\x46\xd4\xc4\xc0\xea\xfd\x68\x4c\x33\xdc\x6c\x5a\x33\x5b\xf3\xd8\xaf\xfb\x3a\xa9\xb8\xe0\x9c\x19\x2f\xa4\x44\xc5\x09\x4c\xd3\x78\x29\x9f\x9b\xb0\x5d\x41\x13\x75\xfd\x25\x9b\x2e\x7c\x29\xfc\x41\xe3\x85\xc0\xfb\xa5\x8e\xc4\x54\x96\xc3\xdc\x87\xcc\x95\x85\x34\x30\x78\xc2\x96\x11\xd4\x17\x18\x8b\x81\xa8\xa9\x26\xde\x41\x54\x6b\x51\x7f\x43\x17\x87\x2a\x9e\x93\x60\x42\xbf\x54\xec\x71\x01\x6b\xd5\x83\x7d\xa8\x09\x70\x4e\x1f\x81\x6d\x2c\x38\xf0\x20\x58\x92\x8a\xca\x9a\x0c\x17\x68\x4f\x94\xa9\x10\xe7\x95\xfe\x20\xe7\x28\x97\x86\x54\xdd\x10\xce\x82\x34\x51\xfd\x05\xb9\xc5\xb6\xfc\x3c\x20\x0b\xf5\x60\x09\xf4\x40\xc1\xa1\x28\xb3\x45\x21\xa3\xf8\x36\x13\x50\x31\xc0\x19\x0b\xbb\xee\xe0\xb9\x3f\x09\xa4\x21\x2c\x54\xe7\x04\x2c\xa3\xda\xea\x65\x2e\xa1\x5a\x05\xda\x55\x08\x8b\xba\x00\x6f\x17\x90\x2b\xd0\xbb\x05\x9c\x6b\xf6\x4f\x3b\xe7\x61\xf4\xb0\x50\xbf\x88\x8a\xd6\x23\x90\xc8\x3a\xe2\xaf\x25\xeb\x21\x7b\xa2\xc9\xb4\x00\xd9\xe8\x6b\xf6\x68\x85\x12\x4f\x7f\x92\x58\x2a\xf9\xf3\xa2\xdc\xe6\xfc\xce\x5a\x78\x7f\x4b\x45\x9c\x94\xe8\x55\x7c\x42\xdf\xb0\xa7\xea\x4e\x47\x75\xe5\x87\x80\xbc\x78\xeb\x02\xbf\x47\xad\x1a\x14\x6b\xdf\xbc\xf0\xe7\x66\xf3\xd5\x76\x7a\xb7\xb3\xd3\x37\x0a\xc1\x16\x21\x5c\x87\x45\x5f\xf0\xfb\x6a\x40\xba\x4c\x45\x5f\xea\x47\xe8\x9b\x8c\xa5\xe4\xcc\xf9\x8b\x74\xce\x0f\x68\x9c\x0c\x90\xef\xf3\xa0\x45\xe3\xf6\x74\x99\x64\x05\xd7\x83\xc9\xb7\xe3\x40\x2b\x2a\x5c\xd1\x64\x75\x55\x47\x0f\x41\x96\x5c\x0b\x2e\xe1\x9a\x74\x48\xa9\x41\xa5\x85\x68\xa8\xa9\x9f\x07\xf3\xd4\x34\x53\x28\xde\xf1\xa5\x42\x51\x6f\x63\x5e\xe0\xba\xa6\x69\x85\x8b\x50\x5a\xac\x28\x5b\xd4\xae\x9b\xfb\x91\x1d\x0c\x83\x34\x93\xa7\xb8\x56\x16\xb7\xc5\x64\x6d\xa2\x19\x37\x3a\xab\x16\xd1\x8e\x89\x17\xa3\xd5\x41\xc4\xef\x7b\xcd\x2f\x16\x7d\xd1\xa2\xd5\xb6\x0e\x10\xa1\x0a\xdb\x49\x1d\x01\x1a\x89\x73\x45\x57\x80\x68\x79\x8a\xa0\x20\xfd\x52\x0f\xad\x10\x3f\x72\xd2\xf3\x02\x4e\xe3\x80\x82\xaf\x92\xc4\xaa\x08\xb1\x37\x76\xf7\x34\x8c\x22\xaf\xd7\x3d\xec\xe0\x3e\x03\x6d\x68\xad\x4b\x16\x6e\xb9\xb0\x08\x45\xd4\x23\xb8\x63\x87\x51\xf4\xe7\xee\xe5\x0c\x7a\xa5\x61\x14\x59\x55\x54\xee\x4e\xd0\x7f\xaf\xf3\x5e\x21\x2c\x47\x6d\x78\x15\x2f\xf9\xa9\xc7\x4a\xa4\x32\xce\x38\x74\x31\xad\x7c\xc2\x74\xba\xa8\xdc\x91\xd4\x9a\xee\xeb\xe9\xbd\xc5\xa9\xae\x5f\x26\x75\x6e\x5c\xf9\xc7\x2c\xbb\xbb\xc5\x30\x62\x77\xda\xb5\xf2\x50\x99\x81\x02\xb4\x2c\x6c\xc9\x5e\xd2\x89\x63\x79\xbb\xd6\xc4\xaa\xee\x57\x49\x72\x74\x08\x3d\xd5\x7f\x2a\xfb\x91\x16\x3e\x3f\x66\xbd\x1d\x1c\x34\xd4\xf4\x1b\x40\xd5\xb5\x8f\x86\xa2\x85\x7c\xe9\x9d\x97\x6f\x2d\x4b\x9f\x64\x79\x01\x6e\x73\x8c\xc6\x1b\x3a\x6a\x5a\xdc\x5b\x5e\x3f\x75\x43\xe6\x8a\x58\x1f\x66\x3e\xe2\x08\xa0\x4a\x54\xbb\xea\xe2\x20\xc5\xb3\xe0\x88\x63\x08\xbe\xd9\x26\xa1\xe0\x06\x5a\x49\xb2\x3a\x5b\x59\x72\x52\x6f\xe3\x7e\x40\xb9\x1e\x57\x93\xec\xf7\xdd\xe8\xdd\x18\x4f\x9c\x07\x0d\xef\xa3\xe9\xca\xb4\x6b\x46\x44\xc3\x41\x1a\x08\xf8\x96\x21\xfc\x29\x41\xad\x72\x4a\x68\x6e\x9a\x87\x84\x27\x97\xfa\xe5\x6a\xbd\xe5\xa8\x2a\xd2\xc8\xf7\x4b\xa0\xa6\x6f\xd0\x30\xb7\x45\x09\x32\x42\x7f\x6a\x04\x59\x99\x9d\x73\xbc\xe9\xd9\xaa\x4a\x37\x04\x24\x43\xbb\x4e\xdc\x51\xff\xca\x4e\xfc\x0f\xad\x93\xd9\x48\xbf\x06\xe7\xfb\xd6\xf5\xbf\x75\xf2\xdf\x1b\xc7\x3f\x2d\xf5\x9f\x95\x26\x5d\x41\x04\x43\xec\x71\xd3\xbc\xb5\xd0\x2b\x38\xcf\x36\x71\xc1\xc9\x22\xab\xee\x61\xb0\xa3\x2c\xe5\xc8\x73\x85\x71\x02\x8c\x75\x9d\x57\xac\x79\xda\x64\x44\x70\x7a\xdd\xfb\x6e\x79\x25\x92\xcd\x49\x15\xbb\x0f\x5d\xfc\xbb\xb9\xc8\x7e\xff\x68\xbf\x0e\x93\xe4\x26\x5c\xfe\x52\xb4\x3c\xf4\x38\xeb\x23\xfb\x87\xa4\xac\xb9\x38\x5e\x51\x3d\xe5\x9b\x6b\xfd\x15\x25\xb2\xb4\x63\x83\x2c\xfc\x34\x60\xb8\x31\x53\x81\xb7\xbb\x35\x77\x68\xec\xa9\x72\x22\xad\x2d\x0e\xe4\x56\x8c\xca\x99\xb1\x4b\x97\xac\xc3\x0e\x64\x2c\x43\x27\xef\x74\x89\x9e\xfb\x6c\xe8\xcc\xc3\xda\xfa\x97\x8d\x5d\xb5\x1f\x87\x95\x9c\x77\x3e\x1a\x15\x2f\x6a\x7b\x67\x82\x26\xec\xb1\x5f\xd4\x2a\x53\xdf\x09\x68\x2a\x39\x4d\x6e\x17\x22\xdb\x7e\x97\x7e\x19\x26\x05\x47\x25\x5c\xdc\xdc\x29\x33\x74\xc9\x9c\xdb\x1b\xbe\xc9\xf2\x07\xd4\x72\x0d\x81\x15\x64\x43\x97\x66\xa6\x69\xc5\x2c\x5d\xf8\x81\x87\x77\x36\x24\xec\xa9\xb5\x71\x35\x97\xd6\x29\xbb\x0c\xd1\xaa\x7b\xec\xd2\xb0\xda\xcb\x1b\xeb\xd9\x01\x1c\xac\x9e\x14\x74\x53\xda\x89\x2a\x77\x6b\xe5\x64\x51\x69\x17\x4c\x33\xb1\xd7\x61\x81\x57\xa5\xc4\x95\xad\x96\x97\x9b\x66\x5e\x9f\x8d\x35\xc6\xe6\xa3\x95\x13\xd3\x14\x56\x8e\x6a\x79\xab\xb9\xa2\x87\xaa\xae\x2d\xab\xf5\xb1\xa7\x32\x94\x63\xcf\x48\x54\xbf\xea\xc2\x07\x31\xfd\x2b\xa1\xcd\xdc\x4a\xd9\xa3\xad\xae\x93\xb0\x84\xbc\xd5\xe0\xe5\xd8\x9d\x93\xea\x4a\x1c\x2b\xa5\x2e\xa1\xe9\x0b\x56\x98\x66\x31\x1e\xef\xeb\xc6\xbb\x5c\x64\xcd\x99\x34\xf5\x71\x1a\x23\xe7\x14\x6b\xce\xd0\x1d\xf3\xcf\x16\xf0\x51\x67\xaa\xaa\x57\xc2\xc2\x9e\x9c\x19\x0b\xa5\x82\x10\x3d\x55\x5b\xb9\x7b\x66\x75\x18\xef\x69\x92\xe9\x1c\x45\xb7\xa2\xb4\x2c\x45\x59\x5a\xb2\xbe\xaa\x79\x28\xd2\x5b\xdd\x30\x43\x4b\x47\xfe\x53\x2c\x5a\xb7\x98\x34\x7b\x53\x86\xe8\xe7\x73\x5a\xe9\x69\x94\xf2\x73\x51\xd9\x1e\x13\x2f\x0d\x1a\x9c\xa2\xa2\x2c\xb5\x39\x85\xba\x7b\xfa\x9a\xd8\x55\xa3\xdd\xab\x9b\xb4\x72\xbd\xfd\xcd\xf7\x35\x31\x48\xf4\xdb\x71\xde\xf0\x15\xcf\xf3\x5e\x6b\x62\xdf\x37\xd2\x4c\xc4\xab\x07\x03\x36\xd9\xec\x36\xe7\x45\x61\x50\x8d\x28\x59\x86\x5c\x68\x06\x39\x92\x3a\x09\xa8\x6f\xe4\xbc\xc8\x92\x3b\x6e\x50\x03\xe8\x66\xa7\x02\x20\x10\x83\xfe\x5a\xda\x9f\x1c\x5a\x55\x14\x19\xb2\x56\x8c\x9e\x4b\x0d\x20\xc2\xbf\xb7\x52\x97\xaa\x7a\xa0\xd2\x80\xe6\xcc\xd8\xf2\x34\x42\x26\x22\x63\x4f\x85\x08\x45\xdf\x24\xe4\x7b\x1a\x26\x1f\xc3\x87\xa2\x0f\x7f\xe5\xe6\xd0\xcc\x8b\xdc\x24\x0e\xe6\x09\x09\x7f\xaf\xcf\x06\x6e\x22\xca\x46\x04\x78\xa0\x78\xdb\xea\x83\x3c\x67\xd5\xf5\x35\x04\xbe\x9a\x48\x3d\xb4\x65\x4d\x9a\x44\xeb\x06\xb1\x7a\xeb\xbf\xb5\xb8\x9f\xfb\xb3\x00\xc9\xaa\x7c\x9a\xc7\x3e\x9c\xe8\x83\xd6\x01\x4f\x36\x9a\x61\xf8\xc3\xbe\x7b\xc3\xe6\xb8\x03\x6a\x7b\x65\xfd\x88\x67\x06\x89\x3a\x78\xb2\x02\x74\x52\x1b\x28\x1c\xaa\x71\x42\xab\x8d\xd4\x96\x73\x41\xbc\xd4\xcf\x7d\x27\x18\x19\x80\xe7\x46\x20\x1b\xcb\xf0\x12\x9c\xa6\x49\x19\x66\x93\x72\xa6\xc4\xf9\x4d\x83\x7b\x0a\x10\xd4\x17\xa5\xe6\xf5\xe7\x34\x3c\x42\xd8\xc4\xf3\xee\x7a\x85\xc8\xdc\x85\xbc\x44\x4b\xbb\xc4\x8b\x26\xdd\x4b\xc0\x52\x9a\xcc\xe5\xf5\xed\x2f\x62\x42\x6a\xd3\x1f\x09\xa5\x82\x2e\x89\x14\x3c\xd7\x9d\xeb\xbf\x60\xf4\xfd\x5a\x9a\xfc\x0f\x0a\x9e\xac\xc6\x08\x96\x9d\x90\xd7\x88\x26\x2c\x35\x4d\xeb\xf0\xe6\xaf\xb4\xff\x0a\xc2\x14\xc3\xd3\x01\x00\xe8\xad\x95\x90\x45\xb6\x48\xaa\x4b\x83\x42\x2b\xa6\x82\x7e\x4f\x33\xa2\x1e\xff\x0e\x1c\x9a\x67\xc5\xa3\x11\xfd\x74\xa6\x3a\x55\xa8\x19\x84\x89\x21\x50\x36\x1f\x32\xf6\x3d\xee\x93\x8a\x71\x59\x32\x3f\x0d\x08\xb5\xb2\xb2\x14\xd5\xfc\x62\x6e\x09\x8c\xfd\x9e\xee\x58\xb6\x48\x74\x8c\x06\x6e\x2b\xa9\x6f\xdb\x47\x9c\xad\x70\xd9\xe6\xf7\x4b\x8e\x9e\x09\x5f\x65\xd9\x2f\x70\xd6\xee\xff\x62\xa5\x74\x67\x17\xc0\x23\xbe\xcf\xc3\x25\x27\x94\x8f\xdc\x97\x0c\xf6\x12\xe8\xe0\xdf\x7b\x3a\x28\x14\xb2\x21\x29\x55\x5d\x9b\xf3\xc5\xce\x22\x9e\xa5\xb5\x72\xcb\x05\xb2\x9e\xb2\x79\x4b\x6f\x84\x1d\xc9\x66\xa1\xf2\xaf\xe0\xe2\x7d\xbc\xe1\xd9\x4e\x58\x3b\xa8\xfb\x33\xcb\x54\xf8\x4e\xe0\x4f\x03\x3c\xd7\x86\x96\x43\x61\xf6\x32\xb2\xc8\xbc\xef\x69\xda\x82\x39\x15\xbe\x7b\x90\x13\x16\x9c\xf7\x3d\x7e\x9c\x1c\x7c\xcc\xc9\x22\xf7\xfe\x8e\xab\x45\x5f\x23\xea\xf1\xd8\x75\x57\x43\x06\x3b\xb8\xda\x24\x38\xcd\xa4\x07\x59\x7c\xc8\x52\x8a\x2e\x17\x09\xab\x22\x64\xa9\x3f\x01\xd6\x30\xf5\x4f\x83\x79\xe6\x03\xe7\x16\xb0\x10\xfa\x45\x0b\xd3\xc4\x87\xb6\x7f\x00\x2b\xf6\xd0\xfd\xe9\x98\x07\xfe\x24\xa8\xe2\x80\x55\x29\x53\x3d\xc5\xc1\x1c\xb0\x33\xd3\x0a\x6c\xf0\x42\xa8\xac\x36\x85\x04\xd8\x06\x09\x8d\x7d\xe0\x1b\x03\xd6\x43\xa6\xf1\x4b\x8b\xc2\x00\xc3\xa9\x24\x7f\x5e\xff\xde\xda\x2e\xc4\xc2\x7a\x2f\x46\x07\x82\x1a\xb8\x31\xa1\xd2\x1d\x1c\x56\x54\x4c\x63\x42\xe3\x3d\xfd\xb8\xe6\x7d\x9e\x20\x07\xd7\x03\xa6\x4c\xd0\x9c\x55\xd7\xe3\xd1\x8c\xa9\x6b\x2d\xb5\xce\xc4\x1a\xe6\x59\x84\x86\x7d\x57\xbb\xea\xb8\x95\xc3\xc1\x4f\xd2\x50\x78\xea\x36\xf9\xd2\x5d\x1c\xb4\xe1\xa5\x74\x3c\x16\xc0\xa7\x6a\x4b\x18\x4f\x74\xfb\x3d\x90\x3b\xf1\x82\xc1\x61\x0e\x0e\x4e\xd5\x86\x07\x6c\x71\x95\x9b\xc6\x6a\x75\xd1\xa1\x20\xb4\xde\x53\x01\xc2\x36\x6e\xaa\x16\x29\xcb\x5b\x2b\xf3\xd3\xc0\x34\xe1\xaf\x3c\x38\xd5\x0a\xe6\x58\xee\x81\x2a\x9e\x09\x1a\x74\xfd\x13\x73\x53\x68\xa6\xae\xbd\x16\x6c\xc6\x1a\x62\x2b\xcd\xc0\xd7\xec\xe4\x83\xf5\xf6\x2e\x4c\xca\xaf\x53\xc1\xf3\x34\x4c\xca\xef\xc3\xf4\x96\x97\xf5\x55\xd8\xa5\x8c\xf7\x52\xa2\x45\xfc\xdf\xbe\xff\x9a\x20\x2d\x7e\x76\x32\x3f\x46\x64\x3a\x1a\x4f\x0c\x26\x56\x64\x09\x07\x82\xab\x1e\xed\x8f\x61\x9e\x9a\x26\x37\xcd\xaf\x6b\x7f\xa0\x70\xc3\x49\x37\x4b\x75\xf7\x71\xdd\xd2\xa0\x6e\x09\xfd\xf7\xec\x0d\x2f\x8a\xf0\x96\x53\x2e\x09\x0e\x06\xfe\x79\x94\x42\xe8\xb7\x55\xce\xd6\xbc\xb7\x28\x8e\xbe\xb2\xaa\xd3\x2e\x21\x7b\x04\xcc\xdf\x5a\xd8\xd3\xec\x86\x5f\x59\xe4\x29\x54\x51\xe1\x3b\x11\x91\xdf\x7c\x77\xa5\x7c\x17\xdf\x65\x61\xc4\x23\x83\x7e\x05\x24\xae\x37\xaf\x0c\x86\xfc\x15\xa9\x7a\x6b\xc9\x7b\x61\xe5\x4b\x1f\xa6\xfe\x4d\xce\x35\x27\xb6\xa4\xff\x2d\x9d\x5e\x77\xc8\x78\x6b\x7a\xb5\x1c\x1b\x1e\xb6\xbe\xa6\xd1\xa5\x98\xff\xa7\x30\x16\x9e\x7a\x6e\x2d\x3a\x4b\x1a\x11\x2c\xc6\x63\x55\x33\xe6\x7c\xb4\x55\x05\xa4\x2c\xad\xfa\x85\x0d\x1d\x3a\x74\x86\xe8\xc7\xde\xca\xff\xd2\x29\xcb\xbf\xb5\x16\x46\x48\xfd\xc7\xa0\x12\x2f\x62\x3e\x1c\x14\x93\x63\xa3\xc6\x32\xdb\x6c\x13\x2e\xd0\x5e\x24\x94\x19\x7e\x80\x65\x50\x96\x08\x2f\x75\xe4\xd3\xbf\x98\xe6\xf0\x20\x0e\xb6\x1d\x65\x3f\x2c\xf3\x2c\x49\x16\xad\xc9\x56\x2d\x12\xcf\x0a\x7b\xa2\x59\x1f\x99\xbb\xc3\x8c\xd5\xc4\xc9\xe5\xf3\x65\xe7\x8e\xe2\xe6\xf6\x36\x49\xb9\x96\xcc\xa1\x49\xad\x1f\xa0\x3b\x65\xbf\x88\x16\x1b\x1a\xaf\x02\xa7\x58\x3c\xe9\x2f\x07\x71\x3a\x88\x01\xa4\x39\x51\x2e\x1d\x34\xf7\x97\x01\x1d\x3a\xd2\xdc\xaf\x72\x8c\xaf\x55\x2f\xf2\xb8\x3e\x74\x70\x23\x2c\x4b\xab\xc0\x6b\xdb\x76\xb0\x95\x2f\xac\xb4\x52\x5c\x67\x84\xa6\xd8\x36\xf1\xac\x1d\x4b\x69\x7a\xa0\xdd\xab\x8c\xf9\x34\x99\x78\x2a\x0d\x74\x94\x82\x60\xf9\x22\x41\x2b\xef\xd4\x12\xd0\xa1\x9c\x16\x8b\xcc\x53\x22\x1c\x4c\x59\xd2\xea\x93\xe6\x89\x11\x2f\x84\xb7\x5b\x54\xfd\x20\x5e\xb2\x80\x4c\x0e\x64\xf2\xc2\x3d\xfd\x91\x9d\x7c\x18\x6f\x8a\xf1\x09\xfd\x2f\x76\x32\x96\xf6\x05\x44\x17\x50\xfd\xa5\x2d\x28\xb7\x45\xf6\xb7\xed\xb6\xb6\x4c\xa8\xb3\xfd\x47\xcb\x58\xa8\x32\x46\xfb\x91\x1a\x9b\x62\xac\xc5\xe4\xf9\x2f\xfa\x17\x69\xce\xf0\x9f\x7d\x4b\xac\xad\x12\x97\x41\x9b\xf4\xf7\xe1\x48\x53\x98\x37\x5d\x7c\x86\xd4\x23\x2e\x6c\x75\x81\xaa\xb4\xcb\x80\xa7\xd1\x33\x7b\x17\x47\xa3\xd1\x1e\x7f\x99\x4b\x9f\xe9\xb7\x3e\x63\x00\xa5\x3e\xc1\xba\xaf\xd7\xd6\x89\xd1\xf2\xb4\xa7\xff\x29\xaf\x9f\xd6\xc3\x40\xb6\x4b\x30\xe1\x29\x91\xbe\x14\xa9\x36\xfe\xf5\x54\xcf\x47\x95\x1d\xb3\x38\xb8\x37\x9f\xa0\x64\x8b\x16\x5c\x1c\xbb\x38\x52\xaa\x9b\x70\x04\x55\xb4\xe3\x03\x49\x9b\x20\x99\xff\x1f\x96\x20\x01\x4b\x3b\xb7\x8d\xca\x2f\x39\x69\x5f\x8d\x99\x75\xaf\xae\xd6\x26\x5e\xa2\x3b\x06\x43\x69\xb5\xec\x75\x86\x0e\xc7\xb3\x56\x82\xec\xc1\x9e\x86\xcb\x25\x2f\x8a\x63\xf2\xf1\xa6\xfa\xb2\x14\x7d\x32\x5b\x61\x9a\x75\x9e\x74\x51\xeb\x62\xa0\x8b\x9e\x54\xcd\x14\xf2\x95\xa6\x84\x36\x6a\xd1\x45\xea\x09\x72\x28\x78\x6a\x29\xef\xba\xd3\xad\x2f\xee\x1c\x4f\x4a\xf5\x2b\xec\xa6\xcc\x12\x9d\xeb\x83\x05\x59\x08\x14\x4d\xff\x07\xf4\x85\xc1\x80\x49\x9c\x0e\xf2\x85\x2f\x02\x4f\xb4\x24\x99\x44\xb7\x8f\x96\x0c\x83\xba\x97\x25\xf7\x85\x9f\x06\xc1\xde\xd2\x41\x01\x34\x5e\xbb\xec\x56\xde\x25\xff\x29\xc4\x53\x6c\xa1\xaa\xb3\xf3\x15\x0e\x35\xeb\xb0\x78\x13\x8a\xf0\xb7\x63\x7d\x33\x76\xd3\x1c\x76\xfb\x23\x80\xcd\x82\xe2\xdf\xa0\xf3\xc3\x33\xfa\x0f\xf5\xcb\xb9\x32\x77\x78\x92\xb6\x0e\xcf\xaf\xf7\xe5\xb5\x5f\x3d\x07\xe4\x19\xde\xbb\x76\xe2\xbf\x1a\xff\x23\xd0\xa9\x4d\xca\x0f\xec\xea\x9a\x69\xef\x5e\xc3\x42\xf0\x96\x2a\x23\x0a\x45\x38\x36\x46\x42\x37\x81\x35\xc6\xcf\x4c\xa3\x1b\x49\xe0\x00\xab\xf0\xc6\xde\xee\x65\xfd\xf2\x9c\x97\xf6\xd0\x27\x43\xe4\x3b\xdc\x1a\xf1\x56\xfd\x30\x29\xb8\x21\x77\x5d\xcb\x00\xca\x2e\x83\x48\x61\xa8\x2c\xce\x18\x1b\xf1\x91\x61\x2c\x46\xdc\x6b\xac\x5f\x17\xdf\xfc\xf0\xdd\xb7\xd2\x8a\x01\x97\x0e\xd9\x5b\x69\x75\x9c\xcc\xc8\xd3\xfe\x1f\x1a\x12\x4b\x4f\xa9\x94\xb5\x03\x17\xa6\xfb\x47\x5d\x2d\x7e\x30\x95\x2a\xdb\x3f\x6c\xf5\xd1\xe2\xa4\x2c\xbf\xd1\xde\xf6\x34\x6a\x97\x69\x2d\xc3\x7f\xd8\x72\x99\x56\x7d\x50\x0b\xe7\x4d\xb7\x08\x79\xfa\x87\xe2\xaa\x54\xac\xc7\x9f\x3f\x55\xeb\x37\xdd\x5a\x7f\x3e\x5a\xed\x37\xad\x6a\x91\x4d\xd1\x0c\x01\x0e\x1a\xe9\x84\xe2\x97\x3a\x61\x1a\xc2\x81\x3a\xd6\xcc\x5a\x5b\x68\x24\xed\x61\x34\x75\x0f\x6a\x83\xfe\x81\xe4\x24\x96\x46\x60\xb1\xa6\x35\x1f\x7e\x23\xbf\x50\x43\x01\x11\x90\xa5\x30\x88\xba\xd5\x2a\xad\x5d\x0e\xe5\x6a\x0e\xf1\xa8\x00\xed\x58\x39\x83\x17\xc9\x57\x37\x21\xd0\x24\xb6\x4a\x05\xd5\x7f\x58\xb9\x12\xb1\x9e\xc2\x3e\xcf\xa5\x7f\x25\xde\xf8\x3c\xff\x06\x71\xa1\xdb\xac\x1e\xc1\x33\x53\x0f\x87\x22\x17\xa5\x6a\xc6\x63\xaf\xce\x62\x4b\xfc\xaa\x2e\xf7\x27\xc4\xfb\xf2\xe0\xd2\xfe\x2a\xc6\x46\xbc\xb2\x62\x8d\xe4\xd6\xe1\x10\x6b\x72\x60\xa5\x15\xcc\x28\x27\x64\x91\x7a\xfa\x17\x1c\x8a\x9e\x3c\xff\x7c\x87\x60\xc2\xe1\xf0\xaf\x22\xb4\xd2\xc3\xe3\x9f\xfc\x32\x74\x8e\xe1\x65\xe7\x7e\xff\xc3\xc6\x14\x6e\x35\x00\x50\x7a\x76\x85\x5e\xbf\xee\xf8\x8e\xf7\x6f\xb8\x00\x8f\xc6\xe4\x8a\xa1\x4f\xe8\xea\xde\x20\x23\x03\x0b\x19\x34\x67\xdf\xd4\x1b\x12\x4d\x4d\x13\x63\x3c\x1f\x5c\x22\x0f\xb9\xb4\xb5\xa0\x5b\xe7\xa4\x84\x78\x79\xa3\xb7\xc1\xbb\xf7\xf6\x34\xe2\x87\x9d\x22\x4f\x78\x61\x1e\xb4\x2f\xe3\x02\xb3\x47\x1b\x73\xc9\xc6\xf3\xfa\xc2\x2b\xbc\xfb\xaa\x76\x9d\x62\x8f\xf6\xcf\x98\x0d\x8e\x88\x85\x0c\x33\x6b\xc4\x69\x2d\x2f\x67\xea\xf2\x19\xad\x4c\x3e\x1e\xa3\x53\xae\x05\x6d\x31\x65\x08\x5b\x85\xf0\xd5\xcb\x12\xaa\x76\x9c\x18\x55\x5e\xb4\x56\x2c\xea\xf0\x7f\xb4\xd5\x68\xe4\xe2\x26\xe8\xdc\x3b\xcc\x4d\x13\x57\x2b\xea\x59\x50\x50\x61\x01\x85\x68\x7a\xda\x7f\x53\xb9\x02\x3c\xe6\x30\xe6\x35\xa1\x91\x53\x90\x22\xd1\xab\x01\x9d\xd2\x27\xa9\xc5\x39\x2e\x60\x3f\x90\xf3\x68\x84\xc8\x17\xf5\x2c\xa7\x81\xc4\xd1\x03\xca\xd4\x37\x4b\xb2\xa7\x93\x4a\x4d\xdd\x67\x0b\x64\x09\xc6\x29\x67\x00\x5e\x9a\x02\xb0\xbb\x48\xff\x22\x5d\x54\x93\x5b\x51\xb7\xfa\x72\x8c\x9a\x19\xf3\xfa\xf1\xbd\x8d\x1b\xf5\x22\x9b\xb7\xf1\x40\x2d\x06\xaa\xa6\x98\x4b\xfb\xfa\x6a\x62\x81\x87\x42\x7b\x9b\x66\xf2\xb4\xd5\xd3\x83\x9e\x9f\x59\x83\xfd\xd5\x2c\x13\x1e\xe6\xff\xf9\xc9\x9a\x14\xe2\x48\xb4\xa7\x7e\xd0\x2b\x18\xd4\xb9\x3a\x97\x66\x6d\xf1\x93\xdc\x1f\x68\xd8\x32\xd4\x2a\x74\x91\xdb\x78\x9c\x97\x65\xd6\x3a\x30\xc7\xd4\x8f\x03\xb2\x47\x76\xed\x53\x33\x28\x67\x04\x1d\x83\xd4\xca\xc4\x48\x58\x56\xaa\xc8\x42\xec\x87\x01\xe5\x2d\xa4\x95\xf7\xb3\x20\x62\xc2\x66\x30\x1a\x51\xf5\x86\xb8\x58\x34\x27\xb8\xc2\xd2\x85\x76\xa2\x96\x1c\xe5\x78\x85\xed\x38\x58\x00\x9f\x15\x3d\xbf\xb6\x4b\x72\x1d\x8d\xac\x85\xe7\xf3\xb7\x01\x7e\xb8\x8e\x46\x25\x39\x51\x97\xd1\xd1\xac\x7d\xd1\xed\x87\xea\x3e\x61\xc2\x4a\x62\x19\xa3\x9c\x8f\x0c\x82\x07\xc0\xff\x15\x3c\xaf\xaf\x09\x8e\x39\xf3\x8d\xf7\xd9\xd6\xa0\xc6\xf7\xf1\xed\x5a\x18\xd4\xf8\x73\x26\x44\xb6\x31\xa8\xf1\x8e\xaf\x84\x11\xd0\x90\xb3\x03\x11\x00\x2d\xfa\xa2\x1e\x0f\x34\x43\xbb\x4e\x18\x68\x69\xcb\x02\x87\xb2\x6c\xb3\xcd\x0a\x1e\xa1\xfd\x60\x88\xec\xd9\xf7\x59\xa6\xe2\xf6\x58\xbf\xa3\xda\xb2\x6c\x55\x62\x2d\x31\xbe\x7b\x27\x9f\x02\xe9\x81\x83\xa7\x5a\xbb\x69\x96\x22\xe3\x67\x71\x26\x2f\x24\x2b\xc4\x43\x82\xf7\xc8\xe1\x45\xe7\xa5\xf2\x70\x69\xa5\x9a\x26\x72\x79\xa6\x59\x97\x7e\xb4\x97\x48\x8f\x0c\x95\xc3\x20\x7b\xba\xeb\xde\x21\x5c\xeb\xbc\x68\x4c\x43\xf6\x24\x51\x2f\x96\x87\xb6\xd0\x8f\x83\xaa\x19\x3f\x0e\x68\xf3\xc8\x44\x75\x75\x10\x66\x05\x22\x5e\xdd\x33\x8b\x3b\x09\xa1\x82\x68\xb9\xa1\xa2\xe6\xd4\xd7\xb0\xdf\x5b\xde\xd7\x89\x89\x43\x0b\x96\x1f\x86\x47\x1d\xe4\xf6\x72\x97\x5b\x7a\x0c\x7b\x7d\x4a\xd4\x26\x87\x36\x0c\x4b\x06\x58\x8c\x2a\xa2\x14\x43\xdb\x5a\x98\xe1\xdb\xdd\xe6\x86\xe7\xbe\x08\x16\x86\xe1\x19\xdb\x7b\x83\xd0\x5d\xcb\xfd\xa2\x93\xad\x2c\x21\xd3\x90\xb1\xc4\x34\x47\x4b\x62\x9a\x19\x97\x86\xc9\x75\x73\xd2\xd9\x77\x67\x9a\x3b\x7f\x1a\xa0\x4f\x3d\xb2\x69\xcb\x13\x36\xa1\x09\x4b\xca\x12\xd2\xe9\x8e\x8d\x96\x65\xe9\xca\x45\xfa\x28\xe1\x82\x9d\xdd\x8d\x12\x42\x2d\x77\x1c\x93\xe7\x96\x3b\xb6\x62\xe8\xf6\xc9\xb2\x2c\xed\x53\x42\x5e\x30\xc7\x34\xad\x90\x39\x84\xee\x4e\x58\x3c\xdf\x3d\x67\x13\x7a\x50\x58\xe9\xd0\xf7\x9a\xa3\xc1\x8e\x8d\x76\x65\x09\x2d\x3a\xb0\x25\xfb\x6e\xb0\xd8\x8d\x2c\xf8\x1d\xb9\xe4\x79\xea\x4f\x02\x6f\x84\x6a\x88\x1c\x08\x81\xbd\x4b\x63\xc1\x12\x9a\xdb\x85\x08\x73\xc1\x76\x34\xb7\x79\x1a\x31\xf4\x5c\x47\xd9\xc9\x8a\x23\x5e\x54\x93\x16\x71\x3d\xa0\x6f\x77\x01\xe4\x9a\x97\x14\xcd\xd8\x8a\xeb\x07\x7e\x19\x75\xd6\xbe\xc9\xa2\x87\xd6\x05\x27\x69\xc7\x03\x0e\x83\x73\x28\xfc\x15\x1a\xfe\xd2\x4f\xdd\xd4\x59\xe3\xbd\x64\x2b\x8c\x9b\x24\x5b\xfe\x62\x10\x8a\x5d\x60\x59\xeb\x96\xd3\x75\xf7\x12\x4f\x60\x84\xa5\xd5\x84\x43\xc3\x26\x0a\x4a\xfc\x22\x9c\xc7\xa3\x11\xb1\x72\x0c\x2b\xae\x16\x22\xba\xa8\xe7\xed\xe5\x47\xc5\xc2\xaa\x7b\x00\xb3\x90\x01\xe2\x4b\x6a\x9c\x6b\x43\x28\x4b\x19\x46\xc1\x8f\x01\x2b\x3b\x95\x30\xbc\x87\x0e\x57\x77\xde\x5d\xdd\x09\x47\xcb\x17\x59\x6f\x24\x8f\x8e\x9e\x6c\x71\xa8\xb5\x28\x53\xa8\x64\xe7\xb5\x86\x69\x5a\xb9\x4e\x60\xe0\x75\x35\x2e\xa9\xd1\xca\x64\xc4\x74\x18\x61\xa7\x3f\xf0\xe5\x98\x99\x74\xb1\xce\x3e\xf6\xac\xc4\xb5\xda\x6b\x91\x6f\x5e\xc7\x51\x9f\xa1\x80\xca\x43\xf6\x54\x64\xb7\xb7\x49\xdf\x36\x6c\xdc\x64\x59\xc2\xc3\x96\xdf\xef\x42\x1d\x34\xa0\x65\x4b\x99\xc8\x43\x0b\xd5\xf3\xc1\xf6\x9f\xa8\x76\x16\x8f\xf2\xb7\x2a\x59\xbd\xca\xc2\x92\x31\x47\x82\x7c\xa3\xe4\x08\x55\xdc\xa7\x12\x23\x41\xe1\x65\xf0\x1b\xce\x4e\xda\x0e\x51\x1d\x7f\xa8\x93\x98\x5e\x41\xf1\x67\xe5\x87\x4d\x16\xed\x12\xfe\xac\xbc\x3e\xb1\x16\xde\x3f\xc3\xbb\xb0\xe4\xcb\x4d\x48\x8a\x65\x1e\x6f\xc5\x49\x4c\x6f\x39\x7b\x92\x81\xe5\x3c\xdf\xa5\x46\x75\x2d\xd2\x66\x97\x88\x78\x9b\x70\xf6\x45\xf5\xf4\xc5\x4b\x83\x1a\xcd\x85\x48\x01\x15\x6b\x1e\x46\xb2\x10\xba\xae\xca\xef\xea\x31\xa0\xcb\x2c\xf1\xfc\x49\xfd\xf1\xc5\x32\x4b\x6e\xf3\x6c\xb7\x95\xd9\xea\x37\xad\x84\xc8\x5b\x05\x04\xac\x4d\x55\x29\x3e\xea\x59\x23\xcf\x9f\x76\xb3\xbe\x10\xb9\xca\x9e\xbf\xec\x29\xf3\xb3\xf2\x88\xf4\x7c\x87\x1a\x06\x35\x8c\x40\xa3\x24\x77\xfa\xed\xb7\xb5\xc8\xe1\x13\xb7\xf1\x1d\xde\xf6\x76\xe4\xca\x46\x19\x43\x87\x78\x47\xaa\xea\x5e\x7a\xb4\xe8\xb9\x07\xa9\xaa\xc2\x0f\x68\x47\x5a\x28\x7d\xec\x16\xb5\x95\x29\x0f\x28\x3a\x11\xd5\xe3\x7a\x38\xb8\x22\xd8\x41\xba\x58\x1d\xdc\x5f\xe4\xf3\x74\x34\x22\x72\x8d\x72\x3f\x0d\xa8\x71\x9b\x64\x37\x61\xf2\xf6\x2e\x4c\x0c\x74\x61\x96\x84\x43\x74\xbf\x11\xb2\xbf\xe5\x76\xb6\x15\x38\x8f\x4c\x3e\xc7\x59\x4a\x6f\xb9\x8d\xb0\x87\x24\xb1\xca\x32\x01\x0f\xd5\x7c\xe3\x73\x28\x75\x63\xb7\x68\x8c\x19\x46\x58\x62\x8d\xaf\x11\xa2\xfe\x2b\xc0\xef\xd2\xfc\xd3\xe2\xfa\xe3\x68\x7e\xd2\x4c\xd2\xd1\x90\x4e\x55\x40\x11\xba\x65\x42\xd1\xef\x6a\x17\xf8\x32\x0f\x6f\x91\x90\x93\x2a\x5a\x92\x43\xd7\x0d\x00\xa2\x17\xeb\x79\x24\x5d\x21\x30\xe4\x53\x14\x10\x19\x02\x33\x26\x5d\x35\x49\x4c\x48\x05\xe7\x15\x8d\xb5\x90\x48\x71\xe0\xc5\x8d\x76\xe4\x95\x92\x79\xc5\x4a\x4c\x12\x32\x8c\xe6\xd0\xba\xfe\xab\xeb\x65\x1d\xc5\x77\x40\x6d\x0b\x66\x6d\xd4\xae\x1e\x93\xb2\xf4\x25\x96\x92\xc3\xc0\xfb\x4b\x76\xcb\xfd\x22\x28\xcb\x5b\x6e\x57\x68\x4d\x43\xcd\x51\x79\x09\x3b\xec\xa3\xbd\x16\x9b\xe4\xaf\x39\x57\xd6\xbe\x31\x19\x2d\x61\xaf\xdd\x61\x44\x01\x19\xc6\x28\x64\x61\x13\xcf\x79\xde\x8c\x2f\xd4\x8d\x95\xa9\x15\xb2\xad\x6e\x4e\xad\xc7\x4a\x65\x86\xa1\x02\x9a\xc9\x23\x7c\x35\xb8\xf7\xfc\x5e\x72\x9d\xd5\xa5\x17\xdb\x4e\x29\x98\x8a\x79\xcc\x56\x7e\x54\x45\xb1\xc8\xd1\x45\x49\x59\x24\xc6\x34\x27\x2f\xc7\x2e\x41\x8b\x26\x15\x72\xab\x06\x72\xc2\xa4\x12\x3f\x64\x77\xdc\x6a\x03\x37\x26\xd4\x90\xd4\xcd\xc0\x10\x5d\x0f\xdc\x0a\x09\x95\x17\x4f\xef\xb0\xc5\xd0\xdf\x61\x8b\x57\xd5\x4c\x55\x31\x1b\x0d\x52\xbb\xbb\xc6\xf5\x56\xb3\xdd\x0f\x0f\x4d\xbb\x8e\x22\x59\xab\x2b\xe1\x91\x79\x16\xec\xe0\xcb\x67\xee\x91\x43\xda\x8f\x4c\x47\xfb\x73\x75\x9b\x1e\x35\x9a\x7b\xf5\xba\x79\xd4\xdd\x72\xa2\xe7\x16\x3a\x7a\x25\xc3\x8b\xbe\x4e\xb2\x14\x2d\xd7\xe1\x17\x27\x6d\xe8\x90\xce\x5b\x8d\x25\x55\x44\x52\xda\xf6\x8c\x87\xc9\x0d\x73\x1e\xbe\xbc\x7f\x71\x52\x3f\x1b\xf4\xca\x4e\x33\xac\xfe\xb5\x2c\xc5\x30\xa6\xe9\x91\x9a\x5b\x3e\xeb\x96\xdc\x07\x1f\x61\x23\xfb\x85\x3f\x9c\xd0\x9f\xd5\x8e\xb8\xc9\x76\x05\x2f\xb7\x59\x9c\x0a\x9e\x97\x4b\xe9\x77\xbc\xe1\xe9\xae\x8c\xf2\xf0\xb6\x8c\xf2\x6c\x4b\xca\x65\x12\x2f\x7f\x39\xa1\xdf\x61\x19\xff\x83\x1d\x3c\x27\x70\x58\xb4\x2d\x7b\x44\x4a\xa2\x11\x95\xf7\x5c\xbf\xf4\xa0\x4e\xbe\xd7\x92\xb5\xfb\xc7\xbf\xe5\x6d\xaf\x66\xc6\x58\xc7\x4c\x4a\x7d\x09\xdb\xe1\x66\x1b\x2b\xf2\xfd\x1e\x1d\x9d\x2d\x03\xa3\xd5\x22\x4f\xa1\x71\x83\xef\x3a\x21\xe3\xd0\x52\x87\x16\x1d\x9d\x6d\xad\xe5\x42\x0a\x53\x0c\xe2\x1e\x19\x4b\x8a\x72\xd6\xbc\x2c\x53\x9a\xd6\x87\x74\x41\xb0\x81\x02\x1b\x10\x7e\x11\xd0\x58\xe3\xa9\xe2\x95\x72\xd8\xc9\x65\x9c\x1a\xc6\xb2\x85\x95\xb1\x94\xe6\xac\xae\xc2\x53\x1f\x4c\xb3\x47\xed\x96\x42\xf6\x9c\xe6\x75\x66\xf5\xaa\x75\x41\x85\x3e\xcf\x48\xc6\xee\x79\xbd\x9e\x87\x59\x1d\xb8\x40\x0f\xdc\x1f\xe3\xa9\x23\xa3\x56\xd6\x7b\xf6\xb5\x88\x9d\xad\xf0\xe2\xa5\xb0\xdf\xe6\x71\x4f\xec\xdb\x5d\x1c\xb1\x10\x7f\x30\x78\x1f\xbe\x3f\xe2\xcf\x68\x84\x97\x6a\xf4\x48\x6a\xf8\x1d\x4f\x05\x0a\x23\x94\xcb\x45\x46\x73\xa9\x92\x6e\x66\xea\x6d\xad\xaf\x49\x17\xd6\x37\xb5\xfa\x62\xe8\xa2\x5c\xb5\xae\x00\xd2\x9e\xea\x8b\xbe\xbd\xa1\x4b\xd7\x78\x23\x4d\x7e\xa0\x87\x92\x92\x7c\xb5\xdb\x62\xb3\x78\xa0\x73\x4d\x6e\xc7\xc5\xfb\x3c\xbe\xbd\xe5\xb9\xf2\xfe\x12\xd2\x77\xb4\x32\xd6\x26\x56\xd5\x22\x46\x52\x08\x13\x3c\x2f\x3e\xed\x89\x1d\xf1\x84\xdf\x02\x31\xae\xae\xea\x17\xd9\xf6\xaf\x79\xb6\x0d\x6f\x43\x39\xd8\x7a\x06\xe2\x1e\x2b\xa6\x6f\x1a\x19\xb5\xa0\x31\xca\x57\xab\x9e\x51\xd5\x0f\x8b\xd0\x78\xc8\x98\x95\xb5\x3b\x4e\xca\x32\x5f\xb4\x8a\xe3\x3d\xdd\x78\x27\xfa\x10\x66\xbf\xd6\x97\x43\x8f\xbe\xde\x6c\x78\x14\x87\x82\xb7\xba\x46\x39\x7a\x88\xf1\x54\xbc\x91\x64\x01\x85\x41\x77\xcd\xbd\x41\x71\xa3\xc5\x68\x35\xa5\x74\xcb\x15\x4c\x84\x04\x9d\x55\x4b\xbb\x63\xdf\x09\xe8\xa3\x8d\xc6\x15\x8d\x52\x9c\xd0\xb8\x0e\x38\x5d\xb9\x8b\xd2\x4f\xf5\x0f\x1d\x5d\x1a\x81\x64\x23\x04\x87\x5d\xac\x8d\x00\xef\x39\xd9\xab\x34\xf6\x24\x79\x28\xef\xe9\xd0\x29\xaf\x75\xf9\x85\xce\xd5\x54\x97\x4f\xd0\x4d\xd5\x0c\x91\xd7\x44\xa0\x1e\xc6\x56\x18\x85\x67\x41\x2b\x66\x29\xa9\x52\x68\xc6\xe2\x3a\x54\x06\xca\xb3\x8f\x78\x42\x86\x1c\xcd\x34\xaa\x65\x92\x76\x96\x09\xb5\x96\x6c\x23\xfb\x5f\x90\xb2\xd4\xde\x30\xde\xa8\x15\xb2\x8d\x6a\x12\x23\x64\xd6\x6f\x4c\xd7\xae\x7c\xc2\xd9\xea\xb1\x01\x99\x9a\x2d\x1e\xa1\x2b\x9f\x90\xf1\x07\xe4\x27\x38\x09\x62\xbc\x89\x4a\xbe\xa3\x19\xc3\xa9\x4b\x93\x09\x4d\x98\xa5\x94\x14\x06\xd1\xf5\xcf\xc0\x48\x55\x4c\x5f\x82\xca\x67\x76\xc3\xac\x82\x7d\xa7\x18\x2e\xe1\x27\x81\x8a\x81\xe4\x06\x74\xcd\xac\xc2\x9f\xa8\x5b\x95\x54\x40\x1e\xbb\x8a\xc8\x43\x68\x64\x9a\xd6\x96\x75\x17\x5d\x84\x8b\x8e\x46\xcc\xca\x16\xdb\xd6\xd2\xf3\xb6\xf6\x4d\x9c\x46\xea\x66\x86\x88\x1e\x2d\xbb\xfb\x7f\xa8\xfb\x13\x2e\xb7\x6d\xe4\x5f\x18\xfe\x2a\x2d\xbc\x1e\x5e\xc0\x42\xab\x25\x67\xf9\x4f\x28\xc3\x3c\x8e\x97\xc4\x13\x77\xec\xd8\x4e\x62\x0f\x5b\xd3\x87\x2d\x41\x2d\xc6\x14\xa9\x90\x50\x6f\xa2\xbe\xfb\x7b\x50\x58\xb9\xa8\xe3\xcc\x7d\xee\x3d\xcf\x13\xcf\xb4\x48\x10\x04\x40\x2c\x85\xaa\x42\x55\xfd\x98\x3b\x93\x81\x08\x6f\x0b\x5a\x94\xe9\x25\x94\x71\xa1\xce\x2f\x4b\x4b\x40\x72\x2a\x87\x27\x54\x83\x45\xcd\x30\x87\x05\xf5\xe3\x71\x84\x30\xe8\x07\x82\x75\x28\xfe\x47\x8e\xbc\x25\x50\x2b\x1d\x6d\x68\x84\xc8\x5e\xae\x79\xbc\x64\x73\xc5\x15\x63\x7d\xc9\xe2\x99\x23\x2c\xcf\x8a\x6d\x2e\xd8\x98\x6e\xe4\x02\xdc\x6e\x82\x60\x30\x19\x30\xa6\xef\x5c\xd4\x8c\x15\x4d\x40\x1b\xd9\xb6\x69\x92\x34\xa9\x63\xe7\xb4\xa0\x09\x21\x74\x23\x1f\xc8\x7e\x96\xbf\xa6\xa4\x2d\xa1\x5b\x33\xb9\xcd\x64\x6d\x26\x30\xd5\x1d\x84\xd0\x22\x5a\x1a\xc7\x98\x65\xb3\xbd\xc3\x21\x1d\xd3\x2d\x09\x35\xc7\xba\x75\x14\x5b\xad\x4d\xf9\x91\xde\x59\xdb\x7f\xb1\x46\xdd\xa9\x73\x10\x34\x56\x6c\x10\xf8\x4b\xc9\x44\x27\xfd\xc2\x29\x9b\x2e\xf1\xff\xd6\xac\x55\xd5\x1d\x9c\x7c\x30\xbc\x0c\x97\xf7\x4f\x5e\x80\x33\xa1\x15\xab\x00\x55\xac\x85\xdb\x74\x76\x36\x22\x68\x68\xe6\xd0\xd9\xd9\x08\x47\xe1\xe8\xe1\xd9\xd9\xa8\x26\x88\x0c\x11\x96\x57\x0f\x08\x02\xe0\x0c\xb6\xf4\x22\x81\x4d\xc9\x96\x2d\x21\x10\x58\x11\x04\x17\x03\xc6\xb6\x23\x33\xf1\xeb\x1a\xc0\x00\xe4\xa8\x42\xba\x1a\xf6\x2a\x08\x06\x95\x9a\xbf\xdb\x91\x9d\xbe\x72\xdf\x09\x82\x12\xf2\x55\x16\x99\x12\xa3\x87\x0f\x25\xb5\x29\xeb\x7a\xe0\xd2\xe5\x94\x5e\x36\xa2\x7f\xf9\xef\xb4\xa6\xcc\xf1\x31\xdd\x68\x2d\x5f\x10\x98\x2b\x37\x2b\xc9\x34\x09\x82\xc1\xd2\x6d\x48\x52\xd8\x49\xca\x45\x71\x9d\xdb\x25\x61\x12\xcc\x5b\x2b\xea\x11\xcd\x3b\xdf\x54\x13\x73\xba\x70\x0f\xcd\x01\x23\x2c\x43\x17\x3b\x7a\x71\x94\xe6\x47\x73\x62\xc6\xd2\x9e\xd9\x2d\x86\x72\x52\xc0\x34\x1d\x8c\xc9\xb4\x6d\xb7\x32\x87\x19\x69\x73\x23\x55\xc9\x91\x9a\x90\x88\xec\xc1\x41\x6b\xd3\xf1\x7c\x69\xf8\x15\xca\x69\x6f\x27\xd1\x32\xbd\x91\x1c\xd8\x1c\x4e\x58\x94\xe8\xd6\x3e\xca\x03\xaa\xec\xf1\x07\xc8\xd4\x06\x4c\x4a\x5c\xa9\x68\x6f\x30\xaf\xb6\x9d\xc9\x69\x9f\xea\x03\x01\x29\xbb\xb2\x8a\x0a\x36\x99\x8a\xc7\xed\x9a\x20\xde\xca\x3c\x16\x9e\x09\xb5\xc6\x83\xad\xdc\x9c\x06\x58\x0a\x75\x24\x36\xd8\x4a\x1e\xe3\xb9\xfe\xe2\xba\x86\xa1\x6a\xa4\x79\x2e\xf9\x95\x95\xe8\x4d\x1b\x35\xe1\xa9\xfc\x4c\x34\x53\xd1\x5f\x70\xc1\x92\x58\x0c\x87\x33\x02\x33\x35\xad\x3c\xe6\xe1\xbd\x28\x36\x1b\xb0\xed\x85\x1d\xbc\x1a\xcd\xb7\x65\xc9\x73\xa1\x9b\x56\x8c\x78\xc6\xd7\x34\x97\xa5\xa4\xac\xb0\xd5\xc4\xb9\x57\x5c\x1f\x53\xe2\x95\x5b\x8d\x4a\xbb\x2a\xf4\x14\x4c\x47\x7e\x8a\x9f\xc1\xc8\xc1\xfe\x3a\xc2\x95\xae\xf7\xcd\xc5\x1f\x2c\xa5\xd5\x48\xee\x3e\x2c\x85\x1f\x67\x66\x86\x4b\x86\x3b\xdc\x67\x6a\xd7\xae\x66\x43\x55\x41\x75\x9d\x9a\x4f\x21\x7a\x0f\xd7\x5f\x3a\x07\xc8\x0d\xc9\xf1\xe3\x6a\x54\xf2\x6a\x9b\x09\x06\x1a\xe6\xaa\xcb\x02\x56\x5d\x26\xd6\x1d\x18\x6e\x47\x9b\xa2\x12\x66\xec\x82\xa0\x79\xdf\x18\x4b\x6a\x6a\x02\xd3\x30\xd5\xc1\x87\x2d\x6c\x60\xca\xc7\x33\x3a\x67\xa2\x49\x18\x68\xc6\xf8\x48\x21\x9d\x40\x50\xf8\x20\xc8\x7c\x13\x1a\x8c\x40\x10\xf5\xa1\x1b\xf8\x48\x61\x43\x3c\x61\x13\x6d\xde\x9a\x49\x5e\x67\x95\x56\xd3\x8c\x65\x0d\xa7\x77\x60\x43\x75\x10\x30\xbf\x58\x53\xea\xc0\x01\x4e\x80\x19\x74\x66\xc1\xd9\xf5\x54\xd5\x2e\xc0\xbb\x3d\x55\xf8\x0a\x73\xd0\xf6\x59\x9e\x35\x89\x0b\x39\x82\x10\x83\xd5\xd2\x3e\x03\xe0\x9b\xc4\xc5\x8c\x95\x0d\x7e\x21\xba\xc3\x2a\x86\x8b\xb6\xea\xc1\x19\x38\x8d\xea\x00\x47\xea\x91\xc6\xd5\xcd\xec\xde\x45\xa8\x2c\x29\x08\xac\x43\xed\xd4\x31\xee\x95\x8e\x6a\x2b\x67\x41\x98\xb9\x71\x48\xf7\xd6\xd6\x27\xd3\x1e\x5e\x8f\xc5\x5f\xbe\x25\x4c\x64\x4a\x08\xc1\x0b\xfc\xb5\x9c\x27\xad\x51\xed\xb7\x4f\xed\xc8\x03\x94\xd3\x1d\xcf\xb7\x6b\x6e\x4c\x53\xdb\xa6\xaa\x60\x31\x0a\xe1\xc3\x3c\xd9\xd1\xd8\x57\xc9\x05\x90\xe6\x49\x06\x85\x5a\xeb\x99\xbe\x67\x8d\x23\xc4\xfb\x5f\xef\x3c\x89\xf9\xac\x65\x2a\x7b\xf0\xfb\xb4\x11\xc4\x5f\x7c\xd2\x75\x99\x0a\x73\xad\x2d\x74\xc1\xe4\x63\x4f\x97\x69\x7f\x74\x93\xd8\x5a\x1c\xcf\x22\x1e\xca\x3d\x40\xf7\x24\x58\xdc\x69\x8a\x10\xee\xb2\x22\x59\x84\xbb\xbc\xf8\x7e\x7b\xa1\x0d\x7d\x29\x4c\xe1\x70\x07\x9c\x62\x8f\x51\xa6\x6c\x70\x5d\x5b\x75\xc0\x85\x26\x52\xc2\x84\xf4\x14\x23\x28\x20\x08\x5e\x60\x41\x8d\xfe\x2c\x08\x5e\x40\xe4\x47\xb5\x3c\xa4\xdc\x45\x07\x93\x3d\xd5\x42\xc5\xff\x99\x5a\x08\x95\x5f\x63\x4f\x17\x7a\xcc\x4b\x0d\x7d\xf8\x9b\x95\xe8\x1d\xd3\xd6\x53\xd7\xf0\x3c\x81\x5d\xfa\x82\x2f\x8b\x92\x6f\x73\xd5\xb1\x3e\x95\x6b\xb6\xc0\x10\x6a\xae\xa9\x9d\xa4\x3f\x8d\x39\x04\x56\xb5\x8d\x94\x91\x6a\x27\x68\xe1\xec\x7b\x64\xbf\xdf\x2b\xff\x16\xcb\xa6\x74\xec\xf8\x79\x9f\xbf\x89\xac\xb0\xcf\x0d\x45\xd9\x43\xea\xc9\xd2\xc5\x1f\x1f\xc0\x8c\x6d\x84\xc6\x52\x59\x5d\x7c\x5a\x7f\xae\x51\x01\x0e\xae\x8a\x1a\x46\x3d\x8b\xc8\xc4\x92\x02\xfb\x77\x95\x4d\x25\xa4\x95\xde\x5b\xde\xaa\x9d\x86\x2f\x98\x0d\x9e\x69\x93\xea\xda\x19\x51\x76\x1e\xea\xad\x8b\xfb\xfd\x16\x7d\xe0\xe1\x8d\xa9\x52\xed\xea\x66\x1a\x04\xc1\x57\x6a\x37\x80\x3b\xcf\xa0\xd9\xa4\xb8\x1d\x20\x34\x69\xaa\xa0\x26\x97\xc0\x9b\xf7\x2a\x0b\x04\xd1\xe5\x0b\x9b\xa5\x71\xaf\xcf\x26\x55\x17\x50\xa1\x04\x43\x10\x36\x7d\xad\xce\x48\xa4\x6b\xfe\x5e\x24\xeb\x0d\x53\x3d\x6a\x6e\xeb\xfa\x79\x22\xf8\x28\x2f\xae\xb1\xd6\xff\xb8\xb5\xcf\xe4\x1a\xe8\xd0\x50\xb6\xf3\x22\xa0\x85\xfa\x31\xed\xf6\xb8\xec\xaa\x3e\x06\x49\xa5\xdf\xc3\xe9\xa8\x0c\xef\xd3\xf5\x16\x3e\x33\x1c\x4c\x68\x93\x61\xe8\xba\x65\x77\xa7\xc6\xf4\xd0\x3c\xf8\xc0\xa9\xdc\xc3\xf5\x63\x5b\x0b\x80\x68\xb5\xd8\x92\x3d\x6d\x71\x25\x7f\xa7\xe2\xee\x77\xdd\x57\x75\x87\xfd\x51\x75\xf7\xf5\xd2\xdf\x69\xc4\x3d\xbd\xfc\x57\xad\x39\xa0\xbf\x53\x07\xe4\x9d\xd6\xee\x6d\x7c\xa7\x24\x13\x3f\xf1\x5b\xb9\xd7\x5c\xc0\xb6\x00\x91\xd4\xe6\x72\xb9\x67\x76\x83\x5a\x25\xf9\x25\x5f\x7c\x28\xb6\x10\xe6\x5e\xa6\x88\x32\xd3\x6f\x2d\xb8\x48\xd2\x4c\x5e\xc1\x60\xbc\x5d\x25\x15\xbc\xb4\xe6\x22\xd1\x59\x36\xc9\x25\xff\x68\x2e\x3e\xc9\x0b\x30\xe1\xd4\x4f\xaf\x52\x7e\xad\x6b\x29\xd5\x76\xb8\x30\xb5\x96\xcf\xf4\xf5\x67\x95\xf5\x33\xbf\x35\x29\x1a\x33\xcc\x5e\xa9\x66\x65\x29\xcf\xc5\x47\x77\x09\x95\x15\xcb\x65\xc5\x55\xaa\xba\x84\x54\x7d\x74\xf1\x6a\xe1\xdd\x80\xa4\x2d\x9b\x37\x2f\x39\xcf\x3f\xba\x4b\x78\x43\x51\x01\xaf\x17\x44\xa1\x0f\x16\xd4\x8d\x4d\xbf\x5e\xa5\x7d\x92\x1b\x33\x4c\x67\x13\x74\x98\x8f\x20\x7f\x10\xdc\x19\x43\x7d\xb5\x25\x45\xda\xbd\x78\x64\x3a\x22\x72\x97\x21\x1f\xd9\xbe\xb0\xef\xfb\xae\x12\xe7\xad\xb2\x26\x81\x88\x26\xe1\xa3\x40\x44\x5f\x85\x5f\x07\x22\x7a\x14\x8e\x43\xfd\xa2\x9a\x0b\x46\x55\x2a\xa7\x89\x0b\xfe\xa5\xc0\xfc\xd4\x29\x49\x9a\x23\x7a\x91\x6d\x4b\x7d\x5b\x6c\x05\xea\x09\x9f\xd4\x14\x42\xf8\x8c\xb5\x79\x0b\xcb\xb5\xbc\xb0\x46\xa1\x3f\x1f\xe2\x10\xba\x79\xd5\x3e\xdf\xd0\x8c\x08\xc0\x39\x34\x2d\x86\x73\x29\x49\x39\xca\x10\xc1\x75\x71\xc5\x4b\x44\xe1\x32\xe3\xc9\x15\x37\xc9\x5b\x81\xcc\xb0\xeb\xec\xfa\x4e\xbd\xa0\x6f\xf4\x2b\xe6\xd1\x97\x7e\x73\xb3\x81\xd4\xa8\x6e\x42\xa1\xf9\xe4\xce\xe4\x30\x51\x55\x01\x46\xa1\xb1\x5f\x00\x9a\x8c\x15\x02\xad\xe9\x94\x46\x78\x2e\xeb\xda\xb3\x3e\x84\x50\x52\x75\xad\x47\x9d\x39\x11\x90\xe6\xcc\x8a\x7d\xfd\xa7\x34\x54\xbf\x03\xd1\xd0\x75\x8f\x7a\xc6\x3d\x0d\x78\x3e\x63\xa2\xa7\xdb\xf2\xda\x59\xf7\x42\xfa\x9e\x16\x79\x57\x5f\x77\x28\x3b\x9d\xc8\x17\x96\xcb\x43\x9e\x66\x60\xfa\xde\xa5\xf6\x32\xc5\xf6\x8a\xe1\x46\x4a\xbf\xab\xe8\x1d\xe6\x2d\x7d\x83\x3a\xaa\x2a\x9d\x88\x1d\x95\xb6\x8b\x86\x68\x84\x86\xde\xa3\xd0\x3d\x02\x98\x15\x25\x97\xd1\xd2\x4a\xcf\x40\x5a\xfb\xcf\x04\x35\x22\x50\x71\x94\xe6\x47\x9c\x28\x72\xbf\x5c\x42\x50\x7a\x1e\x17\xbd\xb1\x3b\x41\x39\x20\x82\xc0\xc5\xaa\xf0\xa2\x13\x43\x84\x1c\x41\x85\x3d\x42\x04\x5e\x27\x87\xb3\x86\x1b\x1d\xbc\xf0\xf0\x11\x5a\xc3\xed\x80\xe6\xda\xd1\x41\x5b\x38\xbd\x07\x33\xa6\x68\x90\x94\x3c\xa9\x2f\xca\x7a\x5e\x64\x35\x5f\x5f\xf0\x45\xbd\x2a\xeb\x74\x7d\x59\x03\x27\x5c\x67\x69\xfe\xb9\x96\x24\xbd\xde\x24\x65\xb2\x26\xf8\x3e\xcb\x27\x08\x2b\x4b\xce\x4e\x9e\x9c\x5c\xa6\xf4\x4f\x59\x81\xb2\x05\xa8\x1f\x83\x35\x59\xfd\x58\x96\x76\x92\xd2\x67\x9c\x9d\xe8\x73\xec\xb3\xea\x21\x8e\xc2\xf8\x3f\x6c\x56\xb3\xb3\xea\xa1\x39\xde\x1e\x91\x93\x94\x7e\xe6\xec\xe4\x3f\x67\xd5\xc3\xc7\x03\x1c\x85\x67\xf1\xb3\xe7\x4f\x3f\x3c\x3d\x8b\xeb\xe3\x63\x52\xcb\x84\xd9\xd9\x4c\x5e\x3f\x39\xab\x1e\x3e\xf0\x7d\xb9\x7e\x6f\x9e\x12\xab\x30\x71\x72\x4b\x03\xd9\x01\x77\xe3\x14\x0a\x3f\xb6\x1d\x12\xa5\xcc\x07\x91\x8a\x4d\x8c\x3b\x8c\xc0\xa6\x06\x91\x78\x3c\xab\x6b\x2f\x30\xda\xf3\x26\xae\x1a\x2c\x24\xac\xc8\xf7\x21\x68\xc8\x21\x3a\x41\x43\xcd\x02\x7b\x25\x7d\xcf\x5b\xfe\x5e\x27\xca\xee\xd7\x59\x47\x58\xcc\xa2\x6f\x48\xc4\x7d\x4e\xda\xba\xf2\x84\x86\xd7\xef\xd4\xea\xd7\xf4\x96\xf7\xea\x57\xe8\x5c\x05\x6a\x69\x81\xca\x4a\x69\xa0\xa9\x51\xc7\xa9\xe7\x4c\x42\x68\xc2\xf4\xf1\x1f\x4d\x09\xcd\x58\x6a\xb5\xeb\x76\x21\x68\x0d\x6a\xa2\x17\x10\x4d\xdc\xe9\x15\xcd\x74\x98\xb3\x31\x2d\x59\x16\x17\xb3\xb6\x69\x54\xe3\x34\x98\x16\x54\xe6\x89\xf3\x19\x99\xfe\xbb\xd9\xa6\x8a\xfd\xdb\x6b\xd3\x9c\xf9\x81\xd9\x2a\x42\xb5\xbf\x8f\x8a\x62\x62\x7b\xe2\x1d\x6f\x42\xda\x1c\xc0\x1c\x75\x71\xff\xf3\x20\xb8\x68\xed\xaf\xc2\xcc\x58\x66\xc1\x62\x43\xfd\x82\xb2\xc6\x44\xc6\x1c\x03\xee\xeb\x1a\x8b\x86\xa1\x05\x6b\x62\x05\x78\x47\xdc\x1f\x3d\x9b\x68\xc1\x32\x4d\xbd\xe3\x99\x14\xb6\xac\x8d\xb4\x42\xd8\xa1\x1b\x36\xa6\x4b\x07\x3e\xb6\x60\xcb\xe3\x09\x5d\x41\xe4\x71\x7a\xc1\x2e\xf1\x0a\xce\x3f\x2e\xea\x7a\xf9\x64\xd2\xe7\xe5\xba\x0a\x82\x81\x6f\x8d\x12\x04\xcf\xf4\x77\xae\x3c\x50\x83\x16\xa1\xb1\x21\x83\xf8\x88\xff\x89\x0b\x32\xbd\x08\x02\x70\xf1\x66\xbe\xae\xaf\xa0\x29\x58\x42\x61\x42\x08\xfd\xc8\x21\x4e\x0e\x6c\x16\xca\x62\x7a\x09\x13\x0a\x17\xec\x5a\x0a\xf5\x00\x94\xd6\xb4\x23\x1e\x4c\x28\xa7\x25\x69\xc4\x9f\x04\x1b\x06\xcf\x46\xca\x77\xa8\x4b\x09\x4d\xeb\xba\xd4\x2a\xb8\x8a\x81\xc2\x78\x9d\x6c\xf0\x15\xc7\x85\x67\x9c\xf4\x9c\x5b\xc0\x97\xe9\xe6\xf1\x72\xba\x19\x0e\xc9\x9c\x15\x74\x33\x60\x6c\x01\x07\x45\x77\xca\x52\x06\xcf\x29\x04\x3a\x20\xb4\x92\x32\x9b\xb2\xd1\x4a\xe8\x95\x7c\x60\x8b\x83\x90\x36\xea\x68\x21\xde\xcc\xe8\x9c\x6e\xe0\xeb\x2a\x6d\xf8\x94\xc4\x89\x8b\x77\xdd\xfa\x40\xd5\xba\x84\x7e\xcf\x89\x1c\xc7\xe9\xe6\x71\xa5\x1b\x93\xc8\xa2\x8c\x9d\xd4\xdc\xb7\x93\x1a\xd8\x15\x38\x6f\x9a\x05\xca\x16\x5a\xae\x60\x4b\xe7\x72\x6d\xcc\x47\x55\x39\x0f\x02\xa4\x8c\x51\xe5\x34\xf4\x0b\x6b\xa1\x73\xdc\x8d\xce\xf9\x55\x92\xfd\x5a\x66\x41\x30\x98\x8f\xf2\xe2\x14\xde\x92\xe5\x9a\x07\xaa\x40\xba\xcb\x8b\x7c\xce\x43\x99\x27\x9f\xf3\xba\x9e\xb7\xe8\x1d\x24\x23\xb2\x27\xe1\x53\x59\x9f\xb3\x3e\xb3\xfe\xb2\x9f\x39\xc0\x74\xcc\xe9\x96\x58\x85\xa3\x1f\x75\x92\x77\xd0\x1b\x68\xc1\x44\xe4\x87\xdf\x27\x21\xa7\x29\x1b\x4f\x35\xb0\x53\xa9\x0d\x95\xc1\xa4\xb9\xae\x25\xa5\x2f\x3d\x3f\x7e\x39\xa2\x3c\xc9\x81\x6c\x5c\x29\xe8\xc7\xb2\x81\xcf\x8c\x73\xf0\x9e\x28\x09\x58\xae\xc9\x2c\xde\x10\x37\xf2\x36\x8c\xce\x3d\x74\x3c\xee\x3b\xca\xfa\x06\x80\xfd\xe0\xd0\xa6\x2b\xde\x73\x8a\x1e\x3f\x98\x3c\x79\x7c\xf2\xe0\xd1\x13\xa4\xe2\x3e\x77\x78\x29\xcf\x52\x05\x34\xe2\x2d\x53\x2e\x40\x54\x32\x41\x9e\xdb\x96\x5f\x41\x80\xdb\x51\x0e\x26\x2d\xaf\x66\xed\x67\xad\xf0\x37\x4c\x78\x68\xb0\xf1\xab\x88\x8e\x35\x8d\x53\xa6\xf0\xeb\xda\x10\x96\xef\x38\x4e\xe3\x72\x46\x13\x88\x50\x9e\x2e\xb1\x80\x48\xd1\x44\xa9\xc1\xd3\xba\x86\xd7\x28\x98\x63\xfa\x05\xa6\xed\x82\xde\x36\x0a\x82\xf3\x36\xd8\xb0\x2a\xd3\xc3\xba\x45\xde\xb8\x78\xb8\x55\xb7\x72\x65\x0e\xe6\x0a\x65\xcf\x1f\xba\x4a\x39\x7b\xe5\x1d\xcf\x4d\x1f\xc0\xb1\x04\x5f\x83\x06\x53\x0f\x93\xcb\xf7\x30\xe5\x76\x7e\xa5\x4b\xfc\x0b\xce\x89\x8e\x23\x9f\xc7\xff\x72\xfe\xee\x90\x64\x36\x42\x17\xfc\xc0\xa4\x14\x71\x39\x8b\x5a\x4c\x1a\x60\x2d\x36\xcf\x21\xc1\x4a\xcc\x9c\x43\x4e\xfd\x0a\x34\x3b\xb8\xcf\xe3\x7f\x7b\x01\x10\xb0\x7f\x6b\x38\xc6\x7d\xd7\x99\x19\x10\x8a\xfa\xa6\xe3\x1f\x96\x57\xec\x3f\x7f\xef\x66\x24\x3d\xe8\xda\x3a\x4f\xc7\xc5\x97\x77\x83\x2e\xf0\x48\x21\xc0\x28\x2b\x7c\x6d\xbb\x0f\xc0\xe3\xa4\xcb\xd5\x4e\xf4\x39\x8d\x77\x12\x33\xe9\x49\xfb\xae\x9d\x24\xb7\x5c\x50\xac\x79\xf6\xaf\xdc\x77\xf9\xe5\x1d\xef\x47\xb2\xa7\xca\x54\xb3\x47\x22\xfd\xc8\x5b\x12\x54\xf3\x13\xff\xfb\x56\xfe\x6e\x3b\xb5\x61\x27\xaa\x5d\x15\x37\x25\xff\xef\x1a\x64\x58\xba\x66\x65\x93\x9e\xb4\xef\xda\x49\x46\x7d\xe1\x5a\x36\x15\xa3\x34\xaf\x78\x29\xbe\x07\x05\xb8\x24\x4b\x8d\x40\xcf\xd0\x54\xa5\x1c\xff\xfb\x2d\x85\xba\x7d\x6a\xdc\x4a\xe8\x54\xad\xcc\xc4\xe4\x60\x2d\x45\xaf\xf6\xe0\xff\x40\x85\x0d\xd0\x1e\xa8\xbc\x13\xa8\xd5\x06\xfb\x87\x93\x68\xbd\x33\x29\xe5\x5f\x2c\x66\x04\x4e\xc9\xdb\x70\x3f\xb8\xb5\x35\x71\x80\x14\x91\xb2\x79\xc3\x6a\xbb\x29\x40\xf6\x6c\x12\x9e\x6d\xac\xd6\x22\x05\x81\x6c\x87\xd2\x38\x89\x88\x87\x5a\x55\x2d\x79\x8e\x2e\xfe\xfc\x91\xe1\x79\x1a\xae\xf1\x54\x6e\x64\x5f\xba\xc6\xdd\xc9\x0e\x08\x4b\xea\xf0\xb3\x09\x1d\xd3\x0c\x8b\xa0\xa2\x6b\x78\x22\x87\x0d\xf9\x63\x0d\x9c\xfb\xc3\xcc\xf0\x20\x18\xfc\xe9\x21\xbc\x0d\x2e\x79\x6c\x4d\xf8\xf9\x7d\x26\xfc\x33\xb2\xe3\xac\x6d\xa0\x2f\x67\x77\x79\xab\xa0\x22\x8c\xf8\x01\x87\xe2\xfa\x6b\x72\x7d\x9c\x7e\x78\xd0\x84\x1a\x34\xaf\xe1\x4c\x16\xca\xc6\x5e\xa8\x8d\xbd\xd0\xd3\xcc\xd0\x39\xb5\xd6\x61\x99\xdf\x43\x8e\x34\x9f\xd0\x0c\xa6\x6b\xd4\xca\xb1\x75\xac\xbb\x6f\xc2\x3b\x41\xa7\x39\xcb\xa7\x5e\x5c\x63\xb5\xca\x1f\x8f\x7b\xbe\x0d\xe0\x77\x28\x18\x03\xe9\xc6\x68\x3b\x76\x8d\xcc\xb3\x27\x72\x3b\xf0\xf0\x03\xd4\x87\x7d\x28\x42\xa4\xae\x90\xa1\x61\x32\x49\x5f\x22\xea\x2f\xb1\x10\x29\xd2\x61\x52\x9f\xc2\xb2\x46\xb0\xba\x91\xe9\x82\xa7\x59\x16\x22\xaf\x3b\xfa\xf4\x72\xad\x50\xee\xbc\xe1\xdf\xa7\x10\xc0\x20\xce\x55\x6a\xe1\x06\x8f\x27\x34\x61\xe3\x69\xf2\x98\xa5\xd3\x44\x32\x8f\x00\x1f\x9a\x7a\x6e\xee\x6a\x5d\x48\x36\xeb\x0e\x17\x71\x32\x23\xb1\x98\xe1\x9c\xd0\xad\x16\xcc\x4a\x9a\x2b\x94\x86\xc6\x1a\xf5\x62\xb3\x97\x2e\x36\xfb\xab\xb6\x47\xb4\xf1\x82\x8e\x06\x9b\x1b\xa2\x5c\xa1\x87\xc6\x13\xfa\xd7\xa6\xeb\xb1\xd1\x28\x37\x84\x08\x2b\x43\xa6\xfc\xda\x83\x64\x10\xa3\x62\xc3\x73\x5e\x2a\x77\x4b\x39\x33\x2f\xb9\x78\x56\xac\x37\x5b\xc1\x17\xef\x95\xff\x28\xd9\xd3\x1f\x1b\xcd\x49\xb9\x36\x20\xab\x11\x81\x16\x38\xcd\xca\x4b\x7e\x88\x11\x05\xfd\x8e\xe1\xd0\xc0\x15\xf5\x57\xe0\x13\x83\x00\x23\x90\x38\x12\x06\xdd\x63\x4e\xc4\x41\xd8\xc5\x82\xd4\x75\x2e\x69\x62\x5d\x03\xe7\x0a\xe6\xab\x9e\x67\x2b\x21\x74\x70\x3a\xda\xa4\x37\x3c\xfb\xbe\xb8\x81\x06\x57\x98\x04\xc1\x2b\xbd\xea\x13\x12\x04\x3f\x9a\xf3\x5c\x15\xda\xa4\x1a\x01\x5c\x21\x2d\x58\x35\x5a\xa7\xf9\xef\x70\x93\xca\x9b\xe4\x46\xdd\xb8\x74\x2f\xd5\xbc\xc7\x12\x2a\x5b\x7a\xad\x73\xaa\xb4\xd2\x7f\xa7\xa0\xde\x5b\x29\xf1\x82\x3e\x25\x51\x32\x44\x28\xf4\x20\xe8\x7f\x6b\x68\xa2\x76\x8d\x20\x57\xea\x9c\xd5\x81\x06\x5a\x9c\x0f\x26\xc8\x81\x18\xc2\x5a\x91\x62\x32\xee\xf7\x0d\xe7\x18\x5b\x2b\x57\x65\x6f\xc9\x2e\xd3\x5e\x9c\xf3\xaa\xfa\xc0\x6f\x04\x43\x1b\x0d\x35\x19\x26\x17\x10\x41\x97\x4f\x33\xbe\x14\xe1\xf1\x44\xfe\xb7\xb9\x99\xc2\xf7\x86\xdf\x8e\x37\x37\xd3\x75\x52\x5e\xa6\xf9\xb1\x28\x36\xa1\x7c\xb2\x49\x16\x8b\x34\xbf\x0c\xc7\xd3\x8b\xa2\x5c\xf0\x32\x1c\x23\x88\x28\xdb\x5f\xbc\x41\x13\x9d\x6a\xff\xd1\x10\x7c\x70\xa7\x17\xc5\xcd\x71\x95\xde\xc9\x72\x54\x29\xc7\x17\xc5\xcd\xb4\xb8\xe2\xe5\x32\x2b\xae\xc3\x0a\x82\xf7\xe9\x9a\xc3\x64\x2b\x0a\x53\x99\xdf\x02\xbf\x9d\xff\x98\x42\xfb\xfe\x81\x68\xd2\xf4\xae\xc9\x9a\x4c\xd4\x56\xad\x3b\xae\x26\x61\x73\x05\x6c\xc9\xb4\x64\x68\xf2\x0f\x6d\xcf\x53\x6c\xe8\x9c\x4d\x1e\xc9\x6d\x06\xd0\x00\x64\x5b\x5e\xf3\xa5\x20\xf6\x73\xcb\xf4\x72\x25\x18\xfa\x76\xfc\x0f\x44\x2b\xf6\xd5\xb7\x3a\x2b\x24\x13\x5a\xb8\x14\x68\xa5\x7b\xcf\xf4\x0e\x43\xa6\xf7\x11\x4d\x4d\x55\xdb\x91\x3a\xa2\x82\x79\x75\xf2\x15\x91\x1f\xe4\x8b\x98\x19\xd1\x31\x04\x3d\xfd\x95\xf0\xb6\x62\x05\x8a\x5c\x6c\xf3\x05\x86\x38\x4f\x2f\xb3\x22\x01\x8c\x9f\xbd\x5b\xaa\xa0\xe3\xeb\x7a\x3f\x81\x5f\x14\xdd\x1e\x78\x30\xdd\x5a\x5f\x67\xf3\x21\x17\xc9\xfc\xf3\x25\xd4\xf5\x2c\x4b\x37\x0c\x69\xc8\x0d\x39\x98\x72\x52\x34\xfd\x8b\xfa\x5f\x41\xf4\x14\xf6\x97\x12\x64\x54\x18\x88\x66\x39\x0c\x8c\x48\x7b\xde\x75\x71\x73\x4e\xe9\xee\xa2\xb8\x79\x0f\xf3\xe9\x1d\xcf\xd2\x03\x61\xf0\x39\x26\xb4\xd8\xd3\x26\x15\x39\x90\xaf\xd2\xf9\x0c\x24\xeb\x81\x6c\xa5\xdc\x90\x55\x85\xa7\x76\x82\x1c\xc8\x3b\xdf\x53\x35\xaf\x55\x5b\x0f\xb5\x30\x05\xde\x59\x7b\x5d\x7d\xe2\x2c\x46\xbf\xf3\x8b\xcf\xa9\x40\x14\x9d\x16\x77\x88\xa2\x75\x85\x66\xf4\x07\x7e\x60\x94\x54\x57\xd1\x9f\x9a\x1e\xfa\xbf\x70\x0f\xb6\x4a\x2e\x53\x49\x7e\x2b\x00\x18\xf9\x89\xc7\xbc\x11\x61\x90\x4b\x11\xf5\x07\x1e\xf1\x10\x1e\xf5\xee\x9e\x02\x40\xdc\x9a\xa1\x18\x87\xdc\x39\x6e\xe4\xec\x13\x6f\x44\xa5\x4a\x97\x18\x73\xf6\x89\xc7\xf9\x6c\x28\x08\x54\x60\xd5\x89\x7b\x20\xf8\x5c\x4d\xd0\x07\xe0\x29\x96\x17\x39\xaf\x41\x55\x8f\xa3\xc1\xf1\x3c\xe6\xc9\x8c\x8c\x86\xe4\x84\xfe\x4b\x3e\x3e\x3e\x3e\xa1\xff\xe6\x6c\x67\xa9\x8c\xb7\x8e\xae\xd2\x2a\xbd\x48\xb3\x54\xdc\x86\x68\x95\x2e\x16\x3c\x47\xd4\xd0\x1e\x1d\x00\x60\x4f\xb9\x60\xbb\x8c\x0b\xc1\xcb\xf7\x9b\x64\x2e\x69\x09\x1a\x23\xba\x2c\x72\xf1\x3b\x20\xdd\x86\xe8\xeb\xf1\x18\x79\xfd\x27\x44\x13\xc9\xd1\x44\x7d\x70\x81\x75\xcb\x08\x16\xde\x3a\xb9\xc1\x63\x5a\xc6\x8f\x66\xc7\x38\xaf\xeb\x31\x21\x43\x5c\x42\xbc\x09\x08\x2e\x11\x0a\xb7\x68\x73\xd1\xe3\x63\xc6\x90\x02\xd9\x85\xd0\x3a\x93\x70\x4c\x2b\x36\xa6\x73\x36\x56\x00\x7b\x8c\xe1\x32\x42\x8a\x14\xa2\xd0\x2c\x13\x64\x35\xb3\x63\x15\xd5\x2f\x79\xfc\xf5\x34\x19\xb2\x47\x04\x29\xaa\x65\x02\x10\xcc\x87\x36\x02\x48\x3e\x4c\x79\x9c\x40\x50\xd1\x82\x10\x5a\x46\xd8\x96\x66\x32\x1f\xbb\x70\x21\x9a\xe2\xa2\xe6\x4b\xa6\xf4\x41\xf7\x05\xdd\x44\x95\x7f\x88\x7e\x57\xc0\xc1\xea\x3d\x12\xfa\x0d\xe9\x2d\xdb\xa5\x42\x08\x45\x3f\xfb\x3d\x25\x87\xd5\x97\xe5\x33\x63\x06\x91\x9f\x9e\x40\x4c\x8d\xf9\x90\x79\xc3\x07\x97\x73\x9e\x66\x98\xc7\x48\x51\x63\x34\x14\xdd\x09\x2f\xec\x84\x9f\x1d\xa7\xc7\xf3\xe3\xea\x78\xf4\x0d\x21\x72\xd4\xe9\xdc\x8d\x73\xd9\x9a\x3b\xc0\x0f\xd1\x82\xe1\xc1\xe9\xa8\x43\xb6\xb0\x64\x84\x48\x10\x20\xb7\x2d\x36\x02\xb7\xd8\x17\x10\x1d\x4c\x68\x09\x9c\x2b\x4d\x98\xe6\xc7\x4a\x42\x2b\xf6\x65\x2d\x96\x13\xca\x71\x4f\x2d\x0c\xe7\x64\x9a\x30\x24\xb7\x5d\x64\x70\x05\xfb\xdb\x1a\x04\x45\x5d\xab\x8c\x8c\xb1\xa4\xae\x07\xde\x96\x23\x79\x32\x94\xe6\x59\x7a\x20\xf6\x8c\xfa\x00\x40\xa9\x91\x5b\x31\x58\x6b\xbc\xe3\x73\x51\x59\xc8\x34\x1d\xb5\xe3\x0b\x7b\x02\xa7\xac\x52\xc7\xad\xe0\xae\xc8\xe3\x6a\x46\x94\xcf\xb4\xdf\x26\x39\x3a\x43\xb3\xf4\xea\x1a\x17\x7d\xeb\x89\xa6\xb4\xa4\x09\x19\xca\x35\xeb\x06\xb2\x10\xbe\xe7\x89\x67\xfe\x56\x78\xb6\x56\x00\x9c\xe9\xe5\xf3\xb4\xc0\xf3\xaa\x52\xf1\xc4\x76\x85\xa4\x3a\xe2\x36\xdc\x75\xa3\x9d\x82\xc6\x54\xcb\x67\x30\xaa\x48\x67\xb6\x22\x3f\x04\x03\xc9\x23\x34\x41\x61\x0e\xd6\x80\x36\x3e\x4d\xb8\x4b\xf2\x74\x0d\x06\x3e\xaf\x04\x2f\xe1\x02\xac\xa3\x95\x51\x4d\xb6\x5d\xbb\xdb\x65\x9a\x65\x6f\x74\x33\xe4\x6d\xc6\x6f\x7e\x28\x8b\x6b\x73\xfd\x7e\x55\xa6\xf9\x67\xb8\x73\x54\x71\x30\xa6\x97\x65\xba\x78\x5a\xf2\xc4\x5c\x3f\x83\x52\x9b\x77\x2f\xf2\x45\x33\xe1\xbd\x48\x4a\xfb\xf6\x3b\x55\x89\xbe\xf4\xf2\xbe\x2b\xae\x6d\x46\x39\x69\x7e\xb4\x95\x16\xae\x9d\x8a\x0b\x84\x8b\xcd\x2a\x51\x36\x3f\xd7\xe9\xa2\xb8\x86\xab\xbb\x57\x00\xff\x27\xaf\x8a\x62\xad\xcc\x5b\xf5\x5e\x17\xee\xf6\x14\xb6\xc6\x1e\xb3\x04\x65\x5f\xf0\xd5\xa0\xa9\x89\xf9\x67\xeb\x5e\xcb\x36\x5e\x5c\x22\x5a\x41\xa8\x55\x3a\x67\xff\xb2\xb2\x07\x18\xa2\x2b\x21\x28\x5d\xe2\x39\x08\x5c\xbf\x70\x2c\x45\xe6\x44\x4d\x5e\x98\x03\xe0\x1a\xea\xdd\x56\x5e\x4c\x09\xb7\x0c\x83\x00\x5d\x72\x81\x52\xb8\x74\xca\x67\x0d\xf2\x09\xba\x21\xb9\x84\xa2\x22\xcc\x62\x31\x9b\x7a\x9a\x11\x9c\xfa\x30\x17\xb8\xb0\x3b\x56\x2e\x57\x5c\x01\xf8\xa9\x38\x67\x3a\xdc\x52\x21\xe9\x08\xca\x61\x12\x21\xa5\x7d\x18\x40\xa4\x24\xbd\x17\x98\x47\x03\xc6\xd2\xba\x96\x1f\x95\x0f\x01\xe3\xa4\x1b\x49\xa9\x72\x91\x94\x48\x97\xb5\xab\x6b\xa4\x4f\x3f\xc1\x4a\xc9\x05\xa5\x74\xac\x1d\x92\xc2\x9f\xfc\x1c\x86\xd2\x7c\xc5\xcb\x54\xae\x47\xd9\x13\x55\xab\x27\x18\xa8\xe1\x13\xed\xf2\x2b\x07\x12\x7c\x22\xa3\x4c\xa6\x38\x83\x6b\x9a\x13\xe8\x1d\x96\x03\xa6\xc6\xbc\x13\x02\xb8\x11\x6a\x4a\x0f\xa9\x8d\xe7\x67\xc7\xd5\x1f\x48\x7c\xff\x48\x92\xc6\xb0\xf9\xa3\x35\xa6\xb9\x95\x13\x6d\x58\x22\x4b\xbb\x21\x60\x51\xb9\x4e\x32\x1d\xb2\x48\x00\x35\x13\x90\x89\x0b\x29\x1d\xab\x40\x40\x79\x5d\xe7\x11\x4e\x7d\xba\x56\x10\x0a\xf1\xda\xf3\xba\x4e\xab\x97\x92\x04\x71\x9c\x92\x28\xad\xeb\x71\xa8\x00\x29\xac\x3a\x26\x46\x0a\xcd\x1f\x51\xcd\x6a\xcc\xba\x6a\x13\xef\xdb\x58\x9b\x46\x99\x15\x63\xc1\xe6\x1f\xe8\x3e\xea\x06\x17\x33\x91\xcf\xfa\x69\x3b\x3c\xfa\x5e\x0e\x79\x9a\x5f\xba\x2c\x98\x28\x71\x29\xd2\xfb\x66\x49\x42\x08\xd8\xf8\xef\x66\x2c\x47\xc3\x76\x99\x4c\xa0\x9e\xac\x7a\x9a\xaa\x87\x56\x6f\xbb\x09\x1b\x9c\x8e\x1a\x6c\xb8\xdc\xc5\x1c\xff\x08\xb1\x57\x0d\x5f\x49\x2b\x86\x93\xba\x2e\xbf\x78\x3f\x4e\x25\x2d\x28\x23\xbd\xbd\x94\xb4\xa2\x29\x09\x6d\xe8\xdc\x2a\x08\x12\xc5\x27\xfd\x37\x0c\x86\x37\xda\xa9\x9c\x0b\xc7\xba\x16\xb3\x7d\xa9\xfa\x81\x03\xa1\xf3\xee\x92\xd7\x61\xcb\x70\xe1\x98\x51\x30\x39\x57\x11\xd9\xe4\xf2\xa0\x39\xf3\x82\x98\x51\x21\x00\x15\x65\x4e\x8c\x2d\x98\x99\x14\x9e\x28\xcc\x7e\xe3\xf8\x74\xd4\x95\x80\xda\x33\x0a\x36\x35\xcd\x49\x78\xdf\xa1\xf6\x37\x57\x9c\x9b\x31\xbd\xd3\x22\xe3\x4b\x71\x0c\x73\x61\xe7\xde\x09\xc7\xfb\xbe\x79\x71\x7f\x29\x7b\x42\xf4\xe6\xee\xdb\x0d\x2a\x6d\x03\x42\xd4\x28\x18\x10\xa2\x5a\xed\xa0\xf9\xc7\x1e\x0d\xa3\x5d\x2a\x7c\x28\x17\x8b\x3a\x75\x73\x93\xd0\x3f\xb3\x86\x73\xce\xdd\x5e\x92\xda\x9e\x90\x0d\xb9\x71\x15\x3d\x42\x24\x8c\xf3\xd9\xb4\x7c\xfc\x35\x1c\x84\x16\x31\x97\x5c\x6c\x39\x93\x15\xa4\x71\x39\xab\xeb\x34\x2e\x8f\x1f\xc1\xef\xd8\x8b\xa2\xb7\xf7\x39\x72\x1b\xba\xce\xb5\x4e\xd2\x45\x26\x40\x93\xdf\x3c\x08\x6c\xd3\xc4\x7b\xd4\xfa\x2d\xa5\x9f\xfc\x9c\x44\x49\x27\xed\x88\xe4\xea\xc3\x1d\xbb\x6b\x11\x92\x93\xc7\x05\x68\x56\xd3\x58\xc4\xc9\x6c\xe6\x26\x1d\xb0\xff\x72\x43\xb3\xc8\x01\xfb\x76\xcc\xdf\x3c\xf2\xc3\xdd\xe5\x24\x74\x33\x76\x4f\xc0\x9e\xb0\x1b\xb4\x57\xeb\xa2\x3f\x5c\x73\x9e\xb3\x42\xd0\xe2\xa0\x65\x7c\x21\xa8\x24\x9d\x3d\x8e\xc6\x52\x3e\x53\xca\xfa\x8c\xaf\x8d\x0f\xc3\xa6\x2c\x36\x2c\x37\xa6\x77\x55\x9a\x5f\xb2\x42\x6e\x05\xea\xda\x45\x04\x52\xd6\x7f\x10\x6c\xa9\x62\xc2\xd8\x63\x27\xa5\x30\x87\x6c\xd7\xcc\xf8\x15\x18\x73\x6d\x9e\x2f\x58\xa9\x2e\x21\x18\x5f\xda\xda\x65\x73\xb7\xcb\xee\xe9\x7c\x5b\x76\x8f\x02\xd4\x57\x6e\x34\x19\x37\xcd\xb5\xb3\x85\x6b\xfa\xab\xc2\x65\xe9\x63\x57\xff\x1d\xdb\x7c\xf7\x7c\x4f\xcb\x6d\x0f\x32\x0f\xcd\xff\xaa\x32\xbf\x03\x46\x8b\xad\x62\x4c\x35\x18\x71\x51\x31\xc1\x4c\x9f\xc5\x5e\x5f\xce\xcc\x39\x5b\xfb\xc5\x87\x9c\x8e\xe9\xa4\xff\x99\x3e\x3a\x56\xa5\x9a\x73\xba\xe2\x9a\x61\xd3\xab\xc7\xae\xf7\xc9\x43\x31\x74\x77\xcd\xf2\x2a\xc1\x37\xfa\x78\xc6\x4f\x72\xd6\x4c\xca\x61\xd2\x94\x6f\x60\xc0\x83\x00\xf0\x46\x14\xea\xc8\xbd\x9d\x6a\x9f\x2b\x84\x96\x3d\xed\xc8\x10\xde\x24\xf5\x9f\x51\xbf\x3c\xb6\xb3\xfe\x4e\xad\x6d\x5a\x8f\x8d\x8d\xe2\x02\xbc\xac\x6c\xb3\x77\xcc\x6b\xac\xcb\x65\x72\xcc\xd5\x90\x99\x88\x33\x3a\xb3\xda\x1d\xf4\xb3\xa8\x99\x35\xc4\xc2\xac\x5d\xd5\x1b\x2a\x9d\x22\x08\x2c\xab\xa4\xc2\x01\x44\x08\x96\x34\xba\x6a\x35\xef\x6e\xb4\xbc\x81\x3e\xb5\xa5\x77\x52\x30\x27\x61\x6f\xc3\x07\x3e\x61\xbb\xa7\xdd\xbf\x70\x05\xb4\xb7\x21\xed\xb6\x03\x63\x7f\x1d\x5a\x62\xd2\xf8\x00\x78\x36\x04\x30\x52\xf0\xb7\x6a\x74\xb9\x66\x1e\x3e\x14\x1b\xd6\x93\x0c\x9b\xe2\xae\xfd\xad\xad\x0f\x90\x4b\x0f\x12\x1a\x06\x47\x7d\x0d\x34\x5e\x1a\x40\x5b\x76\x52\x28\x4a\xfa\xcd\x87\xf6\xb4\xba\x96\x3b\x56\xf7\xd9\xe8\x9b\x63\xc5\x6d\x14\x15\xe6\x0f\xe1\xf2\xed\x2b\x72\xf2\xc8\x73\x95\x43\xf0\x2e\x92\x55\x2d\x6f\x58\x67\x22\x52\x3b\x30\x6c\xa7\xb0\x16\x52\x41\x13\x41\x2b\xa1\xe2\x40\xa9\x80\x8d\x75\xb5\x2a\xae\xeb\x55\xba\xe0\xe4\xc1\x09\x9d\x0b\x76\xe2\x22\x0d\x3f\xf0\xe2\x3c\x65\x02\x93\x5d\x22\x99\x5a\xb0\x60\x4e\x46\x4a\x49\xa7\x4e\x13\xff\xdc\xf2\x4a\x3c\x35\x32\xec\xcb\x32\x59\xf3\xe8\x40\x3a\xce\x04\x09\x1b\xe8\x3e\x99\x6e\x29\xd8\xe9\x5f\x25\x19\x51\xb7\x22\x9d\x7f\xc6\x7e\xc4\xa0\xad\x70\x6c\xc2\x41\x2c\xa8\xd4\x58\x5a\xcb\xcd\x32\x15\xcc\xb9\x5c\xb9\x82\x36\xa2\x8b\xc1\xbf\x53\xcc\x75\xc8\x95\x97\xbc\x50\x5a\x3c\xbd\x97\xb3\x47\xc7\x82\x14\xb1\xd9\xa5\x87\x38\x67\xb0\xb1\x93\x19\x2b\x62\xa7\x08\xcb\x67\xcc\x87\x53\xc7\xc5\x48\x0b\xc0\xac\xd0\xe7\x50\x72\x43\x75\xed\x58\x8a\x3e\xf3\x38\xbc\x10\x23\x21\xf7\x3c\x5e\x2a\x19\x25\x9e\x91\xd1\xbc\xc8\xe7\x89\x68\x3c\x42\x0f\xd1\x8c\xe8\x28\xa7\x45\x3b\xca\x29\xe0\x5b\x14\x71\x3a\x33\xa0\x87\x82\x72\xab\x6d\x2c\x5d\x13\x16\xa2\xcb\x1a\xc8\x02\x17\x72\x32\xe9\x73\x75\x2f\xe4\xb5\x1f\x16\x7b\xa4\x00\x42\x1b\xbd\x6f\x42\x2d\xc0\x92\x90\x23\xd0\x00\x4d\x4e\x97\xd8\x44\x2e\x1a\x4c\xa6\x4e\x25\x9d\x8a\xba\x96\x83\x4b\x73\x5f\x99\x97\x29\xfa\x2e\x07\x79\x98\xd9\x8d\xe2\x18\xe2\xd4\x4f\x8e\x71\x7e\xe2\x12\x41\x73\xa7\x1a\x9e\xa9\x0e\xaa\xda\x1d\x62\xd2\x65\x97\x94\xdb\x1c\x3b\x66\xa5\xf2\xc0\x07\x31\xa7\x71\x46\x4b\x9a\xcf\x08\x2d\x1f\x4f\x82\x20\x89\xf2\x50\x8a\x12\xdd\x4c\x13\x3a\x9e\x69\x27\x78\x1b\xf3\x9b\x83\xdf\x36\x1d\x4c\x00\x7b\xb9\xb2\x91\xb7\x95\xa7\x35\xa7\x1b\x50\x68\xf8\x96\xcd\x82\xd0\x62\x23\xbc\xb4\xc1\x98\xee\xb4\xe5\xda\x0b\x20\x1f\xe1\x6e\x4f\x15\x21\x09\x3b\x1c\xca\x9e\xe6\x84\x1a\x6f\x34\x2d\x39\xa7\xbc\x0a\x85\x4d\x7c\xa3\x36\xc1\x30\xa7\xb6\x33\x43\xdb\xdd\xa6\xfb\xc2\xdc\xf6\x24\x55\xbd\x14\xc6\x33\xaa\xc3\x10\xca\x7b\xcf\x3f\xda\xa9\x43\x35\x67\x86\x39\xcd\xe4\x5e\x0b\xc8\xea\xfa\x72\xd4\xf8\x02\x98\xc4\xfa\x81\xfa\x00\xdb\xf7\x76\xb4\xb4\x6b\x3b\x2d\x95\x33\x5e\xd8\xb5\x79\x00\x0b\x94\xa8\x35\xbc\x21\x70\xb0\x85\xef\xe1\x3d\x55\xd0\xdc\x83\xb1\x35\x01\xb1\x43\x9f\xab\xa1\x9f\xb8\xf3\xfd\x08\x7f\xf9\xc0\x52\x31\x23\x24\xac\x7c\x50\x4d\x93\xac\x79\x01\x42\xb7\x2c\x83\x6d\x40\xb5\x62\x70\x4f\x38\x04\xc8\x90\x2b\xb5\xa7\xfc\x04\x26\xe2\x92\xfd\x84\x73\x32\xa3\x29\x83\x40\xa2\x4d\xbe\x3c\x55\xda\xa0\x34\x9e\x98\x0c\x4c\x0a\x11\x84\xe6\x03\x88\x37\x87\x21\x34\x72\x4a\x2d\x7e\x0f\x40\x94\x36\xf4\x1d\x25\x28\x38\x94\xa0\x03\x3a\x0e\x62\xdb\x90\xb2\x44\xdb\x1d\xe2\x94\xb8\x32\xca\x19\x4d\x89\x6a\x64\x5d\x63\x5d\x69\x3e\xa3\x80\xa2\x5e\x68\xe3\x4e\x01\x31\x99\xf7\x78\xdb\x3b\xf8\xa4\x49\x92\x1a\x74\xc5\x92\xa7\x8c\x72\x6a\x5e\xb7\x54\xea\x12\x42\x2a\x17\x1b\x02\x02\x91\x0f\x3c\x90\xa9\x5d\x5f\x57\x07\x0f\x08\x64\x65\xea\x0d\x88\xb7\xa3\x6c\x83\x1d\x92\xe7\x3a\xd9\xe0\x2d\x5d\x0a\x9a\x11\x7a\x89\x4d\x53\x81\x9f\x0c\x02\xff\xd6\xc4\x97\xc9\x08\xcd\x1c\xb0\xaf\xce\x61\xee\x35\xbe\xaf\x4e\x95\xd7\xa6\x39\x06\x08\x4f\x23\xfe\xea\x54\x79\x6d\x29\xa6\x4e\x53\x77\x76\xb7\x5b\xfb\x31\xd6\xe6\xd4\xd0\x8c\x24\x4f\xd7\x61\x46\x15\x5a\x82\xff\xc9\x92\xbc\x66\xfb\xbb\x91\xdd\x5e\x9d\xcb\xc4\x42\xd0\x9d\xd9\x27\xc2\x1d\x7a\x88\xc2\xb8\x67\x2a\x6a\xe1\xc5\x2d\x73\xe5\x06\x6e\xe2\x76\x72\x9c\x6b\xee\x8a\xba\x53\x33\x49\x70\xf2\xfd\x6c\x4f\x75\xf1\x2d\xf1\x13\x70\x5a\x35\xb0\x81\xda\xa0\x42\xce\x1c\x22\xff\xd4\x37\xe2\x19\x83\xc3\x5c\xcb\x78\x38\x67\x30\xeb\xfc\x7d\x2e\x9f\xb1\xe6\x2d\x04\xba\x69\x26\x59\x68\x11\xa1\x0c\x2d\xf5\x04\x6b\x7e\x76\xc7\xea\xc5\x06\xbd\xd5\x0a\xb5\x14\xce\x51\x8d\x9a\x4d\xde\xd1\xa5\x72\xed\x5b\x48\x79\x79\x65\x14\xc4\xf4\xa2\xa1\x5f\x06\x1b\x1c\x17\x5a\x8e\xa2\xe5\x8d\xe4\xa9\x90\xfa\x5c\x30\x1c\xce\xd5\x90\xd5\xb5\x0e\x10\x09\x0b\xb3\x89\xa9\x02\xa0\x30\x64\xb4\xcd\x21\x75\x11\x04\x38\xb1\x37\x6c\x4c\x2b\xb9\x42\x2d\xd0\x09\xf5\x6f\xfc\x2d\xd6\xbd\x53\xd7\x15\x96\xb2\xb5\x4b\x19\x0e\xe9\xb2\x6f\xd3\xee\x4d\x74\xaf\x1d\x1f\x53\x87\x12\x03\xad\xd4\x83\x56\xd7\x49\x13\x7b\x05\x00\x78\x09\x15\x96\xa0\xcd\x68\x65\x63\xa4\xc1\xf6\x6f\xec\x5f\x80\xb2\x48\xe1\x18\x29\x26\x14\x14\xa7\xb4\x60\x8c\xe1\x8b\x08\x49\x66\x14\x85\x48\x75\x22\xbc\xa7\xae\x07\x4c\xca\xe9\x83\xb5\x17\x4d\x60\x2d\xa9\xda\xbc\xc8\x45\x9a\x6f\xf9\xf4\x82\x0d\xc6\xfb\x85\xa4\x47\xeb\x20\x58\x83\xc6\xc5\xa9\x1d\x4a\xb2\x4f\x97\x18\xcf\x59\x0f\x16\x19\x01\xd9\xa4\x99\xba\x20\xce\xf0\x7b\xd3\x06\x10\x0b\x02\x9c\x8f\x8c\xd9\x0b\x8b\x57\xf6\x9a\xba\xcb\x8f\xde\xf5\xa7\x19\xd5\x23\x9f\x41\xdb\x4c\x58\x76\x49\xdc\x32\x37\x73\x9c\x06\xd6\xc5\xc0\xc7\xdb\x1e\xf8\x07\x78\x2f\xda\xb2\x2c\xc4\x2b\x15\xb7\x7a\x30\xf6\x8e\x30\x1c\xbe\x44\x46\xfb\x5e\xa7\xea\x25\x39\x5a\xd8\x3b\xea\xdb\xd6\xb5\xbe\x3b\x56\x27\xee\x32\x4d\x49\x68\x03\x96\xf5\x02\x52\x2c\xb3\x22\x81\x68\x1b\x70\x64\xb2\x54\x64\xd1\x9f\x48\x2b\x1b\x81\x3e\x03\x48\x4a\xe8\x85\x0c\xb0\x0d\xec\x23\x9a\x31\x5b\xf2\x36\x42\x28\xdc\x12\x42\xdd\x8b\xcd\x36\x81\xa3\x8e\xe9\xd7\x20\xc0\xae\x93\x99\x35\x1c\xe8\x9d\xd2\x5e\x46\x57\x40\x3c\x9e\xf9\x43\xe6\x3f\x99\xf8\x4f\x3e\xf9\x4f\x1e\xcd\x60\xa2\xcf\xd9\x60\x42\x17\x44\x7e\xf8\x3a\x32\x75\xa7\xf9\xd1\x3a\x08\xf0\x05\x5b\x6b\x09\x89\x84\x6b\x1f\xbb\xc9\x50\x07\xba\x33\xd6\x0d\xd9\x9e\xd0\x34\x08\xb0\x79\x81\x0d\x2e\x08\xbd\x08\x02\x6f\x60\x7b\xfa\xd5\xce\xcd\x8b\xba\xd6\xa3\x49\xfd\xc0\x64\x86\x08\xd1\x85\x07\x53\x51\x52\xb9\x3a\x88\x6e\xfd\x52\xe0\x8b\x48\x2e\x93\x70\x4c\x4b\xba\x24\x14\xca\x5b\xcb\xcf\x91\x6b\x68\xae\x15\x2c\x17\xe0\x81\xc4\xf3\x85\x4d\xd1\xbf\x6c\x4c\xc8\x7e\xe6\xe8\x6d\x1b\x6b\x2a\x6a\x4a\x11\x86\x46\x73\x12\x36\x1f\x00\xf3\x67\x4c\x4f\xab\x0d\xe7\x8b\x4e\x68\x14\xc5\x72\xf2\x20\xe8\x83\x2c\xf3\x19\x6a\x4e\xc2\x9d\xd9\x82\xc3\xbc\xae\x07\x79\x10\x88\xba\xbe\x04\xfb\x62\xee\x58\x5e\x6e\x98\x6a\xf5\x5c\x04\xc1\xe0\x12\x2c\x10\x85\x87\xfe\xbd\xbc\x19\x15\xcb\x65\x54\x5a\xf6\x98\x8d\x43\xef\x48\x4d\x37\xc0\x3d\x06\x10\x0e\x73\x23\xfb\x52\x49\xe0\xf2\x8b\x2a\xbf\x14\x2f\x39\x76\xc9\xb3\xb0\x3f\x8b\x65\xf7\xcd\x01\x5f\xa9\xc8\x71\x10\x40\xd0\xaa\xd2\xee\x2d\xfa\x0a\x40\xa1\x08\x2d\x47\x45\xb6\x60\xa5\x65\x48\xa8\xbb\xf4\x77\x0c\xc9\x66\x15\xd9\x82\x04\x01\xfc\x3a\x4d\x99\x2c\x41\xd7\xd3\xc2\x5e\xd2\xe9\x64\x2f\xd9\xf5\x86\x42\x7a\x99\x2c\xf8\x87\xe2\xb0\x03\x39\x70\x1c\xda\x5a\x3b\xe3\x04\x88\x88\x3d\x27\xa7\x63\x83\xea\x20\x27\x9b\x14\x30\x81\xb3\xe1\xd8\x1e\xbb\x8b\x3d\xe5\xda\x4f\x5d\x3f\x3b\x74\x24\xc8\xda\xd4\x9c\x2b\x1c\x33\xe8\x51\x85\xf6\xdb\x80\x15\x37\x36\x56\x0b\x1d\x62\xaf\x39\xa5\x68\x4a\xa6\xb8\xb0\xa1\xfc\x21\x06\xdf\x32\xcd\xd3\x6a\x05\x94\x58\x00\xd7\x89\x07\x63\x62\xe7\x4e\x32\x52\xcf\x59\x42\xe5\x96\xa5\xa0\x01\xa1\xd7\x3c\x80\xbd\x44\x6b\x3d\x55\xd7\xea\xe7\x34\x21\x6d\x19\xa8\xb1\x06\xfa\x2c\x89\x65\x76\x63\x5b\xaa\xee\xa8\xc0\xb9\x6d\x4d\x3f\xfc\x94\x72\x4b\xf7\x21\xa8\x84\x0e\x74\x67\xfc\x28\x3a\xc8\x59\x07\xbc\xd5\x55\x33\x06\x00\x51\x63\x5d\x16\x1a\x88\x55\xd0\xf7\xc0\xe2\x56\xe0\x6e\x6c\x55\xd3\x4a\x7c\x53\x01\xce\xe4\x5f\x68\x7c\x10\x94\x10\x3d\x8d\x38\xec\x59\x70\x43\x4e\xba\x19\xe7\x96\xbf\x70\x2f\x29\x01\xd0\xfa\xa5\x15\x60\xc6\x26\x5f\x91\xdc\xac\xf6\xda\xb1\x4a\xd4\x20\x80\x47\xd0\xd6\x01\xe0\x73\x62\x48\x90\xf3\x4b\x0d\x6b\x4e\xa8\x90\x84\x3e\x35\xb1\x2e\x0b\x3a\x21\x64\x3a\x10\x41\x90\x4b\xfe\xa2\x0f\x96\x4c\x0d\x7e\x8f\x56\xcf\xf4\x2f\xb6\x70\x5f\xf7\x76\x2a\xcd\xfd\xce\xa2\x25\xcb\x63\xd3\xb1\x68\x06\x88\x40\xcd\x7e\x9e\x35\x3b\xba\x8c\x4a\x27\x28\xab\x58\xc7\x7a\x5a\x0e\xc6\xb4\x05\xef\x26\x87\x17\xb0\x02\x54\xc7\xaa\x5f\xcf\x0b\x58\x6e\x43\xc2\xf5\xaa\x50\xbd\x2a\x54\xaf\x6a\xbf\x23\xd9\x99\x42\x77\xa6\x72\x0c\x81\x23\x4f\xaf\x33\x65\x29\xb6\x23\x05\x74\xa4\x52\xb7\x8d\xa7\xe2\x71\x02\x8e\x35\x65\x2c\x66\x41\x20\xff\xea\xc6\x36\x6e\x3c\xfa\x64\x66\xbc\xf9\x28\x87\xca\xa8\x8e\xcb\x35\x6b\x49\x15\xf3\x48\x15\x5b\xd9\x39\x34\x37\x58\x77\xcb\x3c\x16\xb3\xa9\xfe\xf5\xf7\x9f\x86\xd1\x90\xd2\x55\xd7\x75\x2f\xa6\x4d\xde\x6f\xf5\xad\x16\xb9\x21\x66\x1b\x81\x05\x74\xa6\x2a\xb9\x11\x01\xa5\xca\xd2\x05\x7f\x5e\x5c\xe7\xe1\x46\x68\x9e\x97\x50\x48\xfc\x75\x03\x49\xf0\x09\x3a\xe9\x83\xc2\xdb\x91\xc9\xfa\x4b\x09\x95\xf4\xf7\x55\xee\xec\x94\x54\x19\x7b\x48\x7f\xb3\x15\xde\x03\x28\x49\x3d\xd0\x05\xb9\x67\xba\xb8\xfd\x17\xf8\x65\x74\xa9\xbb\xf9\x4e\x61\x48\xb5\xfa\x40\x35\x27\x59\x3c\x73\xca\xdd\x36\xf5\x05\x6f\x2b\x38\xcc\x56\x99\x15\xc4\x91\xaf\xc2\x9d\x8a\xc7\xb9\x1f\xa9\x14\x73\x06\xce\x07\x58\x7b\x21\xa8\x05\x9c\xdb\xf9\x75\x7c\x4c\x27\x64\x9a\x5b\x79\x45\x2b\xc4\x8b\x0d\x06\xdd\xb0\x56\x14\x7b\x02\x38\x6b\x9e\x74\xa8\x76\x18\xfe\xc4\xe8\xd3\x93\x12\x02\x56\x35\x74\xd6\x6c\xf2\x95\xf7\xb8\x21\x91\x89\xba\xc6\x09\x90\xc7\x4c\x60\x62\x5e\x04\x75\x45\x23\x9b\xb2\x0d\xa7\xde\xc6\xcf\x76\x55\x56\x5c\x87\xdf\x8e\xc7\x74\x99\x54\x22\x7c\x34\x1e\x3b\xe5\xff\xd7\xe3\xb1\xde\x7c\x17\x5c\x32\xc9\x07\x7c\xc8\x64\x71\x10\xb6\xdc\x32\x1c\x7c\x56\xd7\xb2\xab\x35\x10\x28\xf5\x48\xbd\x7f\xfe\x2f\xdc\x5e\xda\x50\xb6\x0b\xca\xc9\xb4\xec\xb4\x3f\x57\x16\x43\x26\x57\xa1\x3d\x09\x3b\xc7\x9b\x87\x90\x3b\xfa\x40\x3d\x54\xe4\x16\xf4\x17\xa0\x20\xea\x9c\x0f\x11\x32\xd5\x31\x35\x90\x81\x7c\x42\x06\x9f\xe3\x4d\xce\x90\x72\x0e\x80\xa0\x8c\xf4\x74\x54\x6c\x84\x0a\xde\xce\x17\x4c\xe8\x10\x31\x7c\x41\xf1\xe1\x06\x12\xf5\x2e\x43\x02\x99\x80\x3b\x1a\x56\x84\x9e\x8e\xe0\xe2\x37\xf3\x9c\xd9\x9a\x8c\x39\xf8\x4a\xd0\x0b\xc1\x74\x1c\xf1\x44\x88\xf2\x47\xf0\x09\x9e\x36\x98\x27\x99\x7e\xef\x71\xfe\x1d\xbc\x7a\xf0\xb4\x9c\xba\xd0\x21\x7f\x07\x56\xd3\xbd\x75\x10\xde\xb6\xd3\xb2\xe6\x81\x81\x13\x8b\xe5\x76\xfe\xd5\x00\x80\x27\xfe\xa9\x7e\x1e\xc9\x1f\xd2\x89\x5d\xcf\x9a\x68\x50\x36\xe8\x40\x74\x07\xfa\x53\x63\x25\x80\x35\x8a\x45\xc3\xab\xbd\xae\xb1\xe4\xef\xa0\x1b\xd5\xc1\x75\xcb\x37\x10\xce\xdc\xbd\x90\xed\x92\x56\x1b\x73\xb0\x68\x25\x42\x0b\xa5\xe1\xa3\xbd\x03\x65\x67\x79\x04\x69\x8d\x5e\x01\xa4\xf8\xc2\x19\xb2\x15\xbe\x49\x5f\xc9\x0a\x6b\xc8\x26\x08\x89\xca\x10\xf3\x26\x80\x8c\xa0\xf9\x10\x21\x22\x3f\xa7\x70\x06\x66\x85\x11\xab\x55\x11\x06\xfb\x40\x16\xa0\x15\x05\x25\xd3\x60\x03\x89\x69\x04\x89\x34\x48\x3b\x30\xc0\xe6\xf3\x43\x15\xe9\x7e\xd7\x86\xfc\x57\xa6\xc1\xfe\xdc\x0c\x02\x3d\x63\x15\x20\x2f\x84\xd5\x31\xb3\x5b\xef\x83\x7a\xde\x4e\x1d\xbe\x44\x0f\x9c\x8e\xc6\x29\xd6\x79\xc1\x2d\x0d\xec\x59\x7b\xe7\x5f\xfb\xa0\x0d\x9c\xda\xac\x42\x50\xb2\x7f\x1d\x70\x76\xe5\xc0\xc9\x8a\xb8\x04\x9c\xa1\x6e\x4c\x9c\x1c\xe6\xe7\xaa\x73\x62\xeb\x63\x87\x03\xcf\x2d\xa2\xd6\x48\xe6\x24\x6c\x7d\x53\xae\x54\x9a\x36\xaa\x5e\x77\xe6\x28\x10\x54\xdd\xe6\x93\xb3\xeb\xe1\xc9\x25\xe9\xe7\x22\x2e\x84\x36\x2a\xb4\xe3\x36\x85\xa4\xa6\x38\xdb\x40\xc8\x6c\xcd\x5d\xeb\x95\x20\xf9\x50\x59\x5e\x32\xa3\xf0\x17\xd4\x63\xda\xbe\x53\x97\x12\x25\x30\x55\xf4\xf3\x94\xd0\xc2\xba\x27\xae\xf5\x11\xaf\x8a\x00\xa5\xc8\x5b\x6d\xc2\xd8\xd4\x2a\x94\x1d\x40\xe1\x9d\xea\x8c\x49\x2d\x9f\xc8\x24\x77\xe2\x7b\xe9\x79\x27\x61\xee\x47\xd6\x9f\x11\xed\x60\x78\x84\xbc\x63\xd5\x2b\xd1\x08\x8c\xe1\x2f\x6b\x6d\xb4\xe2\x23\x2f\x65\x49\x05\x11\xcc\x91\x67\xa8\x7d\xeb\x97\xd0\x3c\xff\xe0\x24\xe2\x61\xaf\x07\x71\xb3\x65\x4d\x60\xc3\x4d\x37\x7c\x71\x9b\xa4\x2a\xcb\x81\xfb\x49\x6a\x2b\x0a\xf2\x5f\x90\x54\xcf\xc9\x2f\x56\xe5\xbf\x4c\x6f\xd4\xb6\x3b\xeb\x90\xd6\x4e\x0b\xff\x3b\xd2\x7a\x74\x80\x50\xca\x4d\xc7\xb4\x40\x4e\x4d\x01\x01\x32\x3c\x9b\x9f\x59\x83\x0a\x7e\x39\x95\x53\xa6\x87\x5f\x48\xd1\x64\x66\x40\x5d\xde\x18\x8a\x95\x5c\x28\x8b\xef\x7e\xeb\x97\x16\xe5\x43\x22\xb9\x00\x83\x63\xcf\x7b\x3e\x02\x73\xc4\x57\xb9\x64\x48\x26\x63\x12\xae\x85\x89\xea\x64\x62\x40\x91\xba\x3e\xed\x26\x42\xf0\xb9\x92\x2f\xa3\x71\x78\x3c\x91\x44\x4b\xf7\x4e\xb8\x5b\x16\x65\x88\x56\x62\x9d\xbd\x2c\x4a\x44\x61\x7e\x86\x6a\x9a\xca\x17\x91\x1c\xb6\x06\xdf\x00\xbb\x8c\x67\x47\x62\xd8\x89\x03\x9f\xc4\x7d\x87\x6d\xdf\xc1\xb7\x11\xbe\xc0\x8f\x5d\x60\x4a\x84\x9e\xa2\x8a\x3b\x6c\x5b\xa8\xf4\x94\x2d\x82\x00\x8b\xd6\xcb\x5f\x5a\x4b\x4b\x80\xd2\xa3\x84\x28\x2a\x79\xb2\x78\x93\x67\xb7\x88\xa2\x75\x72\xf3\x1a\x16\x08\xa2\x68\xce\xb3\x4c\x7b\x62\xe9\xbb\xb7\xda\x18\x82\xa2\xb2\xb8\x7e\xbf\x49\x72\x99\x5e\x64\xfa\x6a\x5b\xf1\xd3\x64\x83\x28\x5a\x96\xc9\x9a\x7f\xaf\x0d\x60\x8d\xff\xc6\x8b\x85\x8a\x9e\xdd\x10\xd2\x24\x8b\x62\x67\x30\x44\x01\x69\xec\xf5\x20\x77\x76\x0c\x23\x93\xc5\xe2\x19\x0c\x60\x8f\xd1\x9b\x1f\x30\x4d\x59\x40\x5e\x62\x67\x1b\xd1\xb7\xa4\xa5\xe4\xa3\x61\x46\x4d\xc1\x98\x7b\xa2\xb1\xa0\x57\x5a\x42\x27\x26\x28\x16\x16\x0c\x88\x99\x0d\xe2\xae\xf7\x34\x20\x0a\x73\x03\xd8\x57\xb0\x2b\x81\x73\x30\x68\x90\xbc\x87\x77\xba\x80\x8e\xd0\xf0\x52\xb2\xd1\x43\x49\x63\x35\x6c\xc2\x78\x9a\x32\x11\x27\xf0\x76\xe9\x4c\xf0\x8f\xd0\x30\x85\x6c\xe0\xf5\x5f\x0e\x99\xba\x9b\x16\x72\x29\x56\xec\x12\x40\x78\xb5\x85\x5b\x87\x02\xd3\xca\x06\x6e\x52\x11\x29\xb4\xcb\xea\xff\x91\xde\xf3\xca\xfe\xab\x0e\x1c\x74\x42\x28\x34\x84\x4c\x49\x18\xcc\x17\x20\xf4\x7f\xa7\xcb\xa1\xbc\xbe\x7e\x7f\x72\x3c\x99\x92\x92\x95\x36\x16\x94\x7d\x44\xff\x37\x06\x42\x49\xe1\xed\x81\xf0\x4e\x6f\xf5\x0e\x48\x4b\xdf\x2c\x39\xaf\xeb\xf6\xc6\x69\xb4\x80\x5d\x95\x85\x08\x82\x32\x12\x4a\x23\xe9\x66\xb6\x56\x58\x34\x06\x8b\x84\x70\xb4\xdb\x37\xbe\xb9\x1b\x5f\xaf\xc9\x8d\xf1\xcd\xed\xf8\x42\x90\x6c\x39\xc6\x07\x60\x7e\xd5\x2c\x53\x16\x12\xe9\x12\x97\x2a\x06\x21\x1b\xd3\x94\xe9\x4a\x68\xa2\x86\x79\x2a\x58\x12\x17\x6a\x58\x47\xab\xa4\x52\xb5\x0a\x12\xa5\x8d\x96\x0b\x12\xa6\xee\xdb\x84\x56\x29\xba\xb0\xee\xe0\x21\xa0\xfa\x45\x47\xf7\xc3\x82\xd9\xd9\x18\x04\x1e\x32\x1a\x3a\x3f\xb7\xdb\xc1\xf9\x39\xb2\xf1\xbe\xab\x06\xa3\xd3\x49\xb2\x03\x2c\xb4\x22\x98\x47\x08\x85\xbe\x2a\xb9\x59\x2e\xf0\x44\x44\x87\x6d\xd1\xdf\xd5\xbf\x12\xd9\x58\x2b\xcf\xe4\x7c\xe3\x72\xbe\x99\xe9\x5e\x9a\xe9\xde\x9e\xe4\x58\xcf\x72\x58\x04\x6a\xa6\xdb\x09\x2d\x00\x2f\xd4\x40\x39\x4e\x2d\x78\xa3\x0e\x37\xfa\x54\xb0\x93\xb3\xf2\xe4\xb2\x29\xb4\x5e\x25\xd9\x21\x32\x61\x42\xc8\x58\x9d\x78\x6b\x45\x47\xb8\x64\x72\x56\xf5\x2a\x40\x35\x17\x54\x4c\x3b\x61\x8e\x82\xc0\x1c\xa2\x17\xac\x8c\x9a\xd3\xcc\x4c\xc4\xab\x24\xc3\x84\x84\x9c\x44\x05\x43\xc8\x9e\xd9\xb8\x99\x5f\x44\xc5\x50\x3e\x69\xae\x95\x42\x19\xd9\x28\x63\x91\xa2\x37\xf2\x95\xd6\x00\xca\x21\xe4\x43\x84\xe0\x24\x0d\xb8\xac\xab\x24\xf3\xcc\xa8\x35\xe6\x4e\x3b\xb9\x3f\x3e\x25\xd8\xe5\x68\xb6\x4b\xf8\xc1\xa0\xdd\xdc\x2b\x28\x02\x61\x0b\x9c\xac\xa0\x28\x25\x7b\x15\xea\xcc\x3d\x2c\xa2\x66\x23\x8a\x9e\x16\x14\xf7\x55\x7f\xd9\xad\x1e\xe7\x4c\x19\x91\xbb\xca\x49\x94\x77\x99\x70\x9c\x33\x8d\x2b\x48\x22\x1b\x5a\x06\x3f\x05\xfc\x7e\x2d\xcc\xe6\xb2\xbf\x72\x83\x32\xd7\x60\x80\x4d\xf3\x42\x03\xa3\xfd\x65\x2c\xa1\x6e\x90\x1f\x8f\x7b\x00\x26\xcb\x97\x02\xeb\x90\x64\x1c\xfc\xc6\x14\x7f\x73\xa0\x54\x3d\x51\x0d\xf6\x72\x05\x1c\x77\x93\x75\x4a\x98\xd6\x43\x1d\xeb\x03\x6a\x1d\xf9\xb5\x62\x09\x28\x0d\xc0\x54\x8e\x25\x51\x3a\x9c\x84\xd6\x0c\x53\x79\x50\xa4\x8f\xc7\xd1\x3c\x4c\xa2\x14\x0c\x49\xe7\x60\xe0\x22\x37\x2a\x0c\xb2\xad\x85\x8c\x91\xac\x64\x09\x90\xc9\x41\x30\xc8\x2d\x04\x4d\x10\xe0\x41\xee\x73\x6a\xe6\x41\x5d\x0f\x5e\x60\xff\x09\x45\x06\x46\x1a\x11\x13\xcd\xee\x0e\xe7\x7a\x19\xd0\xc4\x6e\x9d\x53\xad\xcb\x14\x76\xab\xa9\x3a\xbe\x57\x1d\x28\x7d\xbf\x73\xe4\xca\xf8\xcc\x8d\xa7\x88\x6f\x78\x9a\x1c\x1f\x4f\x09\x06\xa3\xd3\xc4\xfb\x32\xe6\x42\x13\xb9\x99\xa8\x0b\x54\x80\xfa\x84\xa6\x40\x77\xe0\x44\x6a\x30\x76\x23\x0a\xc1\xb0\x1b\x63\xc1\x8e\x27\x10\x66\xa1\xc1\xa4\x6a\x1d\x9c\x53\xfa\xb5\x99\xc7\xc6\x0a\x9c\x75\x55\x06\xd0\x61\x1d\x27\x18\x2b\xc6\x9a\xe0\xb0\xde\x87\x60\x6e\xba\x16\x48\xe6\x7e\xef\xf4\x8c\x20\x14\x34\x6b\x84\x88\x30\x07\x29\x49\x27\xc8\xb0\x9e\xd8\x11\x2a\x72\x14\x1a\x35\x22\xb8\xfe\x9c\x8e\x74\x30\x77\x86\x8a\xdc\xc4\x75\x4f\xf3\xa3\x1c\xc8\xf3\xb5\x96\xe4\xf5\x03\xf8\xa9\x4d\xb8\xf7\x8b\x6c\x5b\x92\x07\x27\xf4\xae\xd9\x92\x3e\x30\x84\xa9\x5d\x9a\x3a\xbe\x21\xdd\x75\xe1\x5f\xc0\x49\xce\xa2\xf8\x35\x31\xfc\x2e\x58\x5c\xd6\x75\x32\xa3\x6b\x13\x45\x56\x4a\x70\x10\xc4\x58\x47\x3d\x0e\x39\x3d\xf5\x9e\xd9\xb8\xdd\x90\xc1\x81\x6a\x39\x04\xbe\x30\x56\x18\x64\x6c\xc1\xe6\x0c\x40\x79\x13\xfa\x55\x23\x32\xa8\x12\x8a\xfd\xfb\xc1\xb5\x16\xfe\xd6\xc3\x0e\x36\x26\x01\x6b\x0b\xcb\xc8\x8d\x80\x85\x0b\x02\x7c\xca\xd6\x5e\xad\x74\xcd\x4e\x47\xca\x64\x41\x76\xbe\x42\x01\x24\x74\xcb\xbc\x57\x43\xc5\x75\xcb\xc1\x1a\xae\x29\xe6\xec\x1e\x40\x9f\x35\xed\x31\x5e\x08\x02\xc9\xb1\x5a\x80\x5a\x56\x44\x8f\xc2\xaf\xa8\xd7\x0d\xec\xd4\x21\x4a\x52\xee\x81\x8e\x31\x2f\x53\xd4\x8b\x23\x78\xfa\x97\x38\x82\x4a\x81\x64\x30\x6a\xf4\x81\x08\x35\xa8\x29\x2a\x1c\xbd\x82\x42\x29\x89\x17\x83\x2e\xe6\xb3\xb0\x41\x0a\x28\x98\x9f\x2c\x3b\xe0\x73\x6b\x15\x3f\xae\xa8\xeb\xc1\xd2\x74\xbf\x46\x89\xb3\xf7\x36\xfa\x96\xd0\xc4\x6b\x50\x00\x16\xa0\x01\x3b\x0a\x82\xc1\x15\x2e\x2d\xd6\xe3\xb2\x01\xae\x58\xd7\x6b\x6a\x06\x3a\x1b\xae\x01\x77\x8d\xf9\xb1\xd1\xc8\xb4\x9a\xb6\x52\x2e\x14\x11\xac\x20\xdc\xea\x74\x0e\xc1\x39\x9a\xc1\xb8\xea\x3a\x21\x41\xa0\xf3\xcd\xfd\xd0\x5c\x75\x3d\xd7\x45\xfd\x9e\xe6\x8b\xe2\xba\xae\x73\xb2\x57\x21\x52\xc7\x53\x5c\xb1\x8b\x38\xd5\x18\x73\xfc\x20\x64\xdd\x82\x55\xe6\x04\x21\x7d\x32\x89\xb2\x70\x69\x01\x22\xe5\xe7\xe0\x8d\x01\xfb\xeb\x20\xfd\xa9\xb7\x66\x06\xda\xa8\x32\xf0\x83\x60\x85\xb0\xd1\x1d\x09\x40\x34\x78\xc3\xb6\x41\x50\xc5\xdb\x99\x7b\x12\x04\xbf\xe0\x4a\x39\x8f\xea\xf1\x6e\xbc\x62\x41\x78\x0c\xcc\x51\x1b\xa3\xc5\x45\xc8\x55\x8d\x5f\xcb\x71\xe5\x3d\xc0\x2f\x98\xd4\xf5\xd2\x5a\xad\x68\xa3\x02\x97\xa0\x2b\xbd\x18\x6d\xe0\x20\x4e\x90\xba\x1e\xfc\x82\x4b\x52\xd7\xdb\x20\xb8\xc4\x65\xbc\x86\x0e\xbc\x82\x20\xbe\x18\xcf\x59\xa9\x3e\x03\xcb\x5f\x98\x83\x0e\x70\xd4\x2e\x69\xb6\xa6\x87\x7a\x3c\x08\x16\x5d\x90\xd4\x35\xbd\x13\x84\xca\xba\x00\x29\xf9\xf0\x9b\x7d\xd8\x4b\xea\xe5\x6e\x1b\xf4\xfa\x99\x9b\xb6\xce\x21\x00\xa4\x85\xc9\xab\x34\xf0\xcb\x01\xcb\x0e\x4b\x78\x3d\xa2\x41\x73\xba\xd3\x24\xb3\x81\xd3\x33\xde\x93\x69\x1b\xa0\xb9\x54\xd1\x07\x05\xe9\x04\x8c\xed\x23\xe0\x7f\x79\x2e\xd4\x2c\x5c\xb6\x54\xd8\x70\x9d\x3a\xf5\xc7\x0e\x14\x77\xd3\xb8\x58\x32\xff\x9e\xc7\xf9\x51\x5f\xa1\x39\x84\xaa\xdd\x7b\xdb\x9b\x72\xc5\xfc\x6f\x30\x4c\x54\xcd\xcd\x33\x5c\x4d\x90\x74\xd7\x61\x61\xa9\x1b\x6d\x22\x70\xaa\x9d\xaf\x85\x02\xde\x03\x81\xa2\xc6\x4a\x79\x18\x36\x69\x86\x62\xd4\x9d\xad\x9f\xa4\x68\xd3\xa2\xae\xcb\xee\xec\xe3\xea\xb3\xa9\x9f\x97\xe2\x02\x62\x9c\x4c\x20\x24\xaf\xc2\x3a\xfd\xef\x2b\x3e\x9e\x4c\x8b\xa8\x51\x7c\x41\x42\x5c\xf6\x4e\x67\xd7\x1a\x6d\x3e\x08\xb4\x78\x6f\x4f\x13\xce\x05\xcb\x47\x59\x31\x57\x1e\x22\x6f\xfc\x13\x79\xfa\x41\x4a\x85\xd1\xc9\xf4\x6e\x04\x0a\xd9\x8f\xa7\xaf\xbb\x16\x4a\xa0\xcf\xe1\x75\xdd\x63\x87\x44\x3c\x66\x08\x82\x77\x0a\x06\xd3\x3f\x1f\x3d\x7f\x73\xfa\x56\x96\x58\x12\x55\xf2\xcb\xb2\x58\xbf\x87\xf7\x81\x9f\xe0\x37\xe2\xe4\x66\x9d\x21\xa2\x23\x73\x42\x88\x7d\x2d\x5f\x38\xed\xea\x00\x04\x18\x7d\x94\x5b\x7d\x7f\xfb\x21\xb9\x94\xf2\x0f\x46\x50\x64\xc9\xcb\xb2\x28\x3d\x7b\xe6\xbb\x11\xa4\x60\xf4\x2a\xbf\x4a\xb2\x74\x71\xf4\xf1\xf4\x75\x28\x65\x6b\x42\x85\xf2\xa0\xbb\x91\x9f\x1b\x9f\xcd\x1e\x9c\xd0\x9f\x41\x1e\x8e\xce\xf2\x93\x4b\xfa\x5a\x33\x5f\xd5\xf6\x62\x9d\x0a\x7d\xc0\x52\xa7\xeb\xe4\x92\xd7\x25\xaf\xb8\xa8\x97\x69\xc6\xe1\xc4\xe5\xc5\xbd\x47\x33\x9f\xf9\xed\x25\xcf\x89\x7f\x0c\xf3\x5e\xb4\x6c\xdb\x7a\x9d\xb6\xf5\x92\x69\x9e\xe0\x17\x64\x97\xd7\xb5\xc1\xa9\xe6\x24\x92\x63\x5d\x90\x50\x16\x39\x44\x31\x1a\xf6\x00\xa0\x58\x35\x7e\x11\x89\x10\x49\x6e\x61\x86\x68\x61\x03\xfe\x1b\xbc\xfb\xbc\xae\xcd\xbb\x03\xc6\xae\x81\x65\xd6\x30\x72\x0d\x9b\x2d\x41\x6c\x65\x05\x14\x25\xe2\x62\xa6\x4a\x83\x29\x93\xac\x59\xff\x59\x21\xc4\xf8\xec\x5b\xde\x00\x19\x29\x30\x09\xc5\xb4\x8c\x8d\x7d\xd3\x8c\xf1\x7c\x5e\x2c\xf8\xaf\xef\x5e\x3d\x2b\xd6\x9b\x22\x57\x08\x8a\x43\xc4\xd0\xb0\xe7\x89\x2f\x95\x92\x3d\xd0\x28\x25\xd7\x9b\x93\x6a\xd4\xed\x64\x88\x75\x36\xfa\xe3\xcf\x2d\x2f\x6f\x75\xa0\xf5\xb7\x59\x92\xe6\xd6\xc0\xd0\x8c\x41\x33\xde\x45\xa1\xc4\x75\xc9\xaa\x51\x27\xb8\xbb\xbe\xf4\xfc\x80\xde\x0b\x9c\x53\xf0\xfd\x91\x43\x67\x8f\x02\x35\x17\x17\x20\xd2\xb2\xb6\xac\x78\x99\x26\x59\x7f\x44\x3a\xdd\xb9\x58\xab\xa3\x74\x46\xf5\x25\x2a\xe2\x86\x9f\xd4\x53\x80\xe8\x8b\x31\xac\x6c\x38\xf4\x19\xbd\x52\x5e\x71\xbd\xb8\x9c\x2c\xce\x23\x9f\x37\xd4\xea\xc4\x3d\xe0\x3f\x80\xe1\x67\xb7\x40\xab\x32\x69\x38\x9e\xcb\x2e\x93\x1d\xad\x75\x3a\x69\x85\x51\x68\x64\x60\x00\x82\xd1\xf3\xba\xa1\x59\x91\x9c\xc3\x6b\xe1\x42\x0a\xab\xa7\x5a\x88\xab\xeb\x81\x45\xff\x00\xc5\x49\xeb\x03\x7d\x83\x30\x5f\x93\xd4\x44\xfd\x52\xc6\x02\x2d\xd5\x51\x4e\x22\xa5\x36\xca\xfb\xd4\x46\x3b\xf9\x2d\xa1\x50\xb3\x40\x01\x83\x3a\xe4\x80\x9f\x05\x45\x67\xe5\x59\x8e\xc0\x66\x26\xec\xc9\x9b\x1f\xc8\xab\xc2\xd5\x1a\x05\xdd\x9f\x82\x9d\xfc\xe3\xd1\xf8\xe4\x92\x3e\x13\xec\xe4\xff\x37\x7a\xf8\xe0\x84\x7e\x16\xec\x04\xc7\x51\x30\x23\xe7\x2c\xfe\x4f\x30\x7b\x78\x42\x7f\x07\x02\x34\x7a\x18\x91\x30\x3e\x3a\x13\xb3\x87\x38\xfe\x8f\x2c\x72\xf6\x90\x3c\x38\xb9\x5c\xd3\xe7\x9a\x40\xfd\xf0\xe2\x43\xfd\xe3\x8b\xa7\xcf\xa5\xdc\xf8\xbd\x4c\x3b\x3b\x39\x3b\x39\xa1\x6f\x05\xdb\xed\xe9\x3b\xf8\xfb\x51\x30\xf4\xf0\x04\x19\xef\x54\xf4\x10\x11\xfa\x47\x8f\x21\x4f\xe2\x87\xa0\x7d\xe5\x1f\xf2\x36\x1d\x0b\xbb\x1b\x84\xb0\x86\xaa\xb2\xf0\xa9\xf1\x91\x1d\xd3\xb4\x7d\x72\xde\x38\x05\x56\xe7\x12\xb9\xc6\x07\x2e\x59\xaa\x35\xc5\x68\x28\x29\x5d\x19\x8f\x67\x11\x2e\x59\x69\xa3\xb4\xd4\x35\x7a\x88\xa8\xf2\xa1\xe3\xe0\x37\x12\xcf\x88\x35\x58\xcf\x09\x09\xdb\xcf\x40\x34\xc8\x7d\x2c\x9a\x5f\xdb\x74\x5a\x85\x0c\xe1\x8c\xb1\x77\xc2\x7d\x7e\x82\x2b\xf5\x7c\x6e\x03\x80\xc4\xd5\x4c\x19\x64\x2a\xf2\x11\x57\xca\xc5\xc9\x9f\x97\xfa\x9d\x8c\x55\xda\x78\xf9\xa0\x69\x6f\x56\xd7\x69\x5d\x17\x71\x36\x8b\xd2\x68\x80\xe7\x2c\x23\x5a\xef\x16\x62\x01\xe8\xd3\x52\xd0\x70\xd6\xf8\x19\xa1\x89\xfc\x33\x98\x80\x92\x61\x6e\x76\xcf\xc4\xcf\x1d\x8f\x67\x92\x4b\x2f\xc0\xa7\x2b\x08\x12\x18\x6a\xf7\xe9\x3f\x8a\x96\x87\x23\xbb\x1b\x25\x7f\x24\x37\xef\xb9\x10\x69\x7e\x59\x8d\x96\x59\x22\xb4\x2b\xaa\x05\x22\xcf\xd5\xf6\xe0\xb4\x9d\x71\x3e\x93\xfc\x7e\x11\xe7\x52\x72\x2e\xeb\x1a\x97\x6c\xb7\x27\x24\xce\x67\x0a\x62\xd9\x52\x44\x0f\x79\x73\x30\x06\x70\x19\xca\xf7\x7f\x08\x38\xd8\x65\xe7\xea\xd7\x37\x5f\x9a\x8b\xf4\x8a\x87\x63\x9a\x25\x95\x38\x2d\x16\xe9\x32\xe5\x0b\xf0\xab\x15\x09\xf8\xd7\xfa\x6d\x0d\x77\xdb\x32\x0b\x4d\x21\xc0\x7b\xa3\x1f\x5e\x7c\x40\x34\xad\x5e\x17\xf3\x24\x0b\x95\xbd\xc4\x45\xb1\x15\x75\xb2\xd9\xc8\xff\x1f\x57\xa2\x28\xe5\x56\x3f\x1a\x1e\x43\x9d\x55\x5a\xe4\xb0\xe3\xcb\xcd\xbf\xbe\x4e\x17\x00\x1e\xfa\xe0\x44\x91\x9e\x73\xed\xa8\x3f\x2f\x32\x42\x15\xf4\x0b\x00\x19\x96\x85\xe4\xd5\x00\xdf\x62\x30\xa6\x49\x75\x9b\xcf\x35\xc6\xb0\xe0\xb9\x00\x10\x3a\x24\x45\xa7\x54\x31\x62\x27\x37\xc7\xd7\xd7\xd7\xc7\xcb\xa2\x5c\x1f\x6f\xcb\x4c\xed\x72\x8b\xe9\xd1\x7c\x25\x79\x1b\xc1\x7e\xfd\xf0\xf2\xf8\x9f\x88\x4a\x0e\x70\x23\xb4\x1b\xe0\x47\xa1\xd0\x1e\x14\xff\xb4\x91\xdb\x17\x52\xb1\xe1\x55\x8a\xbc\x44\xf4\x46\xde\x37\x6a\x5a\x67\xf4\xc8\xb2\x5c\xf4\x8f\x0a\x42\x77\x7a\x19\x64\x8a\xce\xf1\x47\x72\x95\x68\xd4\x8e\xbd\x69\x7b\x15\xee\x64\x99\x27\x67\x17\x37\xeb\xec\xec\xe2\x44\x55\x79\x72\x76\x21\x7f\x4f\x54\x79\x27\x67\x17\xf2\xf7\xec\xe2\x64\x4f\x4b\x5e\x6d\x8a\xbc\xe2\x2f\x53\x9e\x2d\xf4\xcb\xc8\x24\x7e\x3c\x7d\x8d\xf4\x57\x98\xa4\x0f\xfc\x46\x98\x66\x99\xb4\x7f\xbd\x7f\xf3\xb3\x6a\xc1\x15\x2f\x85\x76\x84\x84\x26\xa2\x50\xf1\x91\x8a\x8b\x3c\x82\x6f\x96\x1d\xad\x6e\x65\x29\x28\x94\x6f\x2b\xbe\x53\x27\xcb\x0f\x0f\x1d\x93\xbb\xa7\xde\x94\x56\x53\xc6\x0c\xd5\x8d\x90\xe2\x99\x9d\x54\xdb\x03\x06\x28\x22\xfa\x51\x60\x58\x38\xcd\xb5\x22\x05\xe2\xf0\x47\x81\x9b\xa9\x00\xd4\x21\x13\x1c\x1a\xcd\x2b\x81\xdf\x0a\x02\x89\x1f\xca\x24\xaf\x36\x45\x29\x64\xe2\x3b\x9d\xd8\xaa\xb6\x57\xf7\x84\x5b\x0e\x00\x4c\xc0\xf2\x6c\x05\x1c\xb6\xaa\xbd\x95\x5b\xd7\xdb\x8d\x76\x5f\xbf\x60\xab\x91\xfe\xee\xba\x5e\x29\xa5\x9f\xba\x0d\x02\x7c\xe1\x05\xff\xb8\xd0\xbc\x13\x89\xee\xf0\x05\x09\x8d\x76\xf1\xb4\x11\x54\x80\x5e\xb2\xbb\xd1\xb3\x24\xcb\x2e\x92\xf9\xe7\x0a\xa3\x22\x9f\xf3\xa3\x35\x5f\x17\xe5\x2d\x22\xf4\x8a\xad\x46\x95\x48\xc4\xb6\x7a\x06\xf8\xee\xbb\x3d\xbd\x95\x54\xf6\xa9\xfc\x73\xcd\x90\xc2\x3e\xe5\x0b\x44\xcf\xd9\xae\xe4\xc9\xe2\xf6\xbd\x90\xf2\x36\x60\x8d\xbf\xd3\x13\xe3\x47\x9e\x2c\xfa\xb0\xac\xa7\x2a\xe2\xb6\x94\x55\x14\xe4\x4b\xc5\x76\xfb\xa9\x60\xbf\x0b\xe5\xfc\x9a\x92\x29\xa9\x62\xd1\x81\x22\x00\xbc\x77\x86\x0f\x3e\x6a\x04\x70\x10\xf1\xa3\x19\x99\x0a\x56\xc5\xbc\x27\xeb\xbe\xc1\x67\x08\xc5\x67\x08\xcd\xff\xd1\x23\xc9\x00\x5e\x72\xf1\x34\xcb\x9a\xdf\xd2\x17\x0b\x79\x1b\xa5\xa1\x35\x19\x79\xa7\x02\x71\x74\xbe\xdc\x9b\x8e\xaa\xca\x2d\x78\x26\x3c\x6d\x37\x6e\xd6\x93\x54\xd7\x9c\xde\xc6\x7c\xc6\xf4\x31\xe8\x9e\x16\x57\xbc\x2c\xd3\x05\x3f\x4d\xd7\x0a\x3d\xf3\xa0\xd2\x7b\x0b\x6e\x7b\x6b\x9d\x8f\x71\x53\x82\x1b\xdb\xfe\xe1\x01\x57\xf9\x2d\x39\x37\xde\x7d\x3c\x3e\xd7\xf3\xc1\xf7\x15\x51\xe1\xf7\xc8\x95\x94\xdf\x63\xf9\x97\xf2\x58\xcc\x66\x4d\xe0\x8d\xe4\x42\x2e\x97\x1e\x53\x9a\xba\xbe\xf6\xf6\x99\x72\x04\x19\xb1\x20\xf4\x0d\x1e\x9b\x23\xdf\x3d\x88\x0c\xa7\x36\xbe\xc3\x39\xa1\xab\xd1\xb6\xcc\x18\xc6\xbc\xae\xe1\xb2\xae\xf5\x16\x42\x86\x08\x11\xcb\xbf\x7d\x2f\xa8\x47\xfe\x87\xe8\xe4\x04\xc9\x77\x15\x7e\xe7\x68\xcd\xc5\xaa\x58\xd4\xb5\xd0\xe0\x5e\x2b\x9b\xa2\xb2\xd0\x95\xdb\x92\x19\x76\x37\xc0\xbe\x90\xc3\xfc\x10\x42\xc6\xfd\x74\x35\x9a\x97\x45\x55\x3d\x2f\xd6\x49\x9a\x93\x5d\x4f\x2c\x71\xc9\xab\x49\x41\x3c\x53\xbb\x29\x7c\x0c\xd5\x37\xea\x87\x36\x0a\x61\x7f\xb4\xbe\x67\x28\x37\xe2\xa2\x12\x03\xa6\x82\x21\x78\x4f\x32\x78\xa0\x25\xf6\x0f\x64\xd7\x2c\x48\x52\xcd\x74\xa9\x3f\x2b\x08\x56\x23\x6f\x47\x74\x90\x77\x8e\xd3\x31\x19\xf5\x1b\xcc\x88\x3c\xea\x56\xf6\x6a\x99\x2c\x20\x1e\x60\x92\x11\x42\x7f\x95\xf4\x92\xae\xa8\xa0\xe7\x84\x6e\x8d\xe2\xe1\x1c\x78\x91\xe5\x51\x9a\xe3\x8d\x51\x5f\xcb\xba\xd5\xbe\x4c\x82\x60\x0c\xde\xae\x8a\x85\x18\x0e\x81\xf3\x68\xe8\xb0\x10\x10\x44\x91\x94\xc2\x8d\xa4\xfa\x69\xc6\x04\xa4\x2b\xb0\x52\xd0\x40\x30\x83\xe7\x5a\x46\x51\x59\x09\x2d\x54\x4f\xdb\x89\xf2\x0c\x8e\x4f\x1b\x2f\x45\x07\x7a\x06\x02\x6a\x6a\xaa\xab\xf8\x04\x05\x0b\x67\x0f\x29\xfe\x92\x69\x00\xff\x5d\xdd\x8b\xea\xc7\xb6\xe3\x4f\x41\xd1\x10\x49\x06\x78\xa1\x5b\xa8\x78\x66\x73\xf0\x47\xa8\x37\x0c\x5e\xb3\x9c\xb6\x87\xb5\x06\x0c\xce\xd8\x87\x0c\x7f\xb0\xae\x5b\x11\x0a\x50\x88\x22\x44\x86\x7a\xe8\xb4\x05\xa5\xce\xaf\x34\xd3\xab\xd1\x3c\x99\xaf\xb8\x0a\x90\xe8\x00\xe8\x04\x45\x0f\x26\x88\xd0\x45\x7f\x81\xe8\x9c\xa1\xe1\x1b\x31\x1c\x0e\x17\x66\x8d\x16\xea\x32\x5d\x1a\x4e\x10\xe2\x4b\xf8\xac\x21\x38\x99\x9d\x8f\xda\x84\x13\xa3\x57\xcb\x63\x93\xe7\xf8\x7d\x9a\xcf\x39\xa2\x9d\x37\x41\x2f\x2c\x92\xcb\xfb\x0a\xf9\xb9\xc8\xf9\xf1\xa9\x5c\x05\xc8\xe5\x26\x84\x7a\x73\xdf\x0d\xbb\xd6\x9f\xb7\x06\x58\xf8\xb7\xa4\xbf\x26\x5d\xc0\xf1\x07\xb0\xda\x6e\x14\x40\x68\xdf\x0b\x4f\x81\x57\x44\x3e\x99\x89\xc7\x33\xd9\x1c\xcd\x45\xc6\xcd\x27\xb3\xe8\xe0\x93\xa1\x14\x11\xa0\xd9\x7e\x72\x24\x77\xb1\xe1\x47\x31\x44\xd3\xa3\x3f\xd9\x78\x34\x9e\xa0\x10\x21\x12\xba\x62\x54\x54\xa3\xd5\x68\xa5\x76\x36\xd2\xd3\xcc\xa5\x7b\x1c\x2f\x15\x56\xdd\x6a\xa4\x70\x67\xde\xf3\x7c\x61\x22\x54\xf9\x69\xea\xac\xf1\x82\x9e\xd3\x15\xa9\xeb\xad\x3d\xde\x3d\xd7\xe4\x1d\x0a\xb9\x66\x08\xee\x10\xbd\x04\xb4\xd2\x95\x8b\xe5\x41\xcf\x95\x03\xf6\x6a\x54\x6d\x41\xa3\x2a\x53\x20\xbe\xc7\x4a\xa9\x0c\x09\x2d\xd9\xaf\x92\xf7\xd2\x04\x06\xf8\x88\xf3\x91\xe3\x41\xd8\x84\x6e\x82\x60\xdd\x22\x1b\x00\xa0\x13\x9f\xd3\xd5\xac\x41\x92\x56\x23\xe0\xfe\x65\xc7\x0b\xe5\x50\xf3\x04\x82\x9d\xb3\x83\x61\xaf\xcc\x87\x20\x9d\x1f\x91\x3d\x50\x23\x75\x47\x14\x49\xdf\xb2\xc1\x04\x00\x91\xf3\x05\xbe\xa5\x6f\x88\x23\xc4\xb0\xad\x8a\x55\x59\x5c\x1f\x7d\x98\xbe\xc1\xc7\x13\xfa\x81\xec\xf7\xb0\xa3\xc2\x1d\xfa\xb9\x38\xb2\x4c\xa6\x2f\xcc\xbf\x01\x99\x37\xb1\xf2\x29\xb0\x89\xb7\xf4\x29\xbd\x66\x62\xba\xad\x6b\xbc\x95\x92\xed\x3c\x08\x5a\xfe\x41\x73\xd9\x61\xfa\xb8\x24\x65\x95\x24\x58\xb4\xd1\x5d\xfc\xc9\x38\xfa\x5a\x8a\x6c\x8c\x3f\x61\x8f\xc6\xe3\x20\xe0\x8f\xbf\x1a\x8f\xeb\xfa\xab\xf1\xd7\x8c\x31\x4e\x25\xc5\xb9\xed\xf8\x89\x7b\x81\xb4\x1c\xc4\xa2\x16\x42\xe8\x9c\x71\x37\x1b\xa7\xe8\xa1\x24\x4d\xf3\x78\x3c\x9b\x92\xb9\x3d\xe7\xb5\x91\x25\x4a\x00\xa3\xe1\x96\x4b\x91\x4b\xae\xc3\x45\xb6\xd6\x98\x32\x5d\x2c\x1d\x70\x6e\x25\x19\x96\x0a\x48\x81\xfc\xab\xe8\x53\x49\xc8\x6e\x6e\xe5\xef\x82\x4c\x2f\x4a\x9e\x7c\x96\x5b\x9f\x6c\x4c\x9a\x1f\xe5\x24\x55\xed\x92\x03\xe0\xe0\xa8\x73\xc5\x9c\xce\x15\x84\xf1\xc8\x49\x36\x71\x21\xb9\xc7\xa1\x7c\x30\x23\xbb\x94\x15\xba\xc4\x04\xd0\x78\x0a\xb2\x87\x50\x1b\x89\xac\xc1\xda\x8b\xa7\x03\xf5\xed\x41\xe0\x9a\x92\x12\x9a\xc7\xe9\x6c\x8f\x57\xf4\x9c\x26\x84\xd0\x76\xff\xb6\x22\x2e\x03\x18\xc9\x6e\x4f\xb7\x7e\xbf\xea\xfd\x01\x7a\x62\x1b\x4f\x66\x0a\x83\x12\x58\x32\xaf\xc9\x24\x8b\x93\x36\x8f\xd9\xf8\xa4\x64\xa6\xdc\xff\xd8\xd6\x0c\xcd\x34\x05\x8b\x36\x38\x4f\xf3\xa4\xc3\x38\x55\xc0\x89\x3d\xe9\xc0\x9b\x0e\xe6\x41\x50\x06\x81\x6a\xe1\x4b\x10\x9d\x94\xdc\xe3\x25\xc0\xa9\x90\xf9\x02\x08\x8d\x90\x52\xaf\x66\x59\xad\x9a\x2d\xa9\x1c\x19\xab\x03\x57\x14\x6e\x1e\x04\x73\xb0\xc4\x87\xd1\xc1\x09\xcb\xe2\x39\x8c\x47\x3a\xab\xeb\x2c\x46\x0f\xe1\xd2\x43\x53\xce\xc0\x08\xa8\x62\x85\x17\x38\x96\xc4\x93\x99\xb2\xe0\xf7\x0a\x00\x42\x6a\xcb\x80\x3b\x42\x76\x10\x2f\x3a\x89\x12\x40\x5b\x0e\x21\x04\x40\x06\x33\x0c\xa7\x4c\xe6\xa1\x5b\x3b\xa0\x95\xec\x7f\x6f\x7e\x41\xe6\x44\x56\x9f\xc8\x1e\x81\x05\x5f\x11\xc1\x12\x6b\x18\xa9\x8e\x60\xe4\xbd\x23\x0e\x5a\x85\x59\x81\x28\xd5\x38\x39\xa1\xf0\x13\x26\xd1\x87\x50\x52\x08\x35\x7c\x15\x84\xb6\x2b\x8b\xb5\x9c\x92\x43\x74\x24\x0a\xd9\x01\xfb\xfd\xbe\x59\x8e\x26\xa4\x88\xca\x7e\x0f\xc5\x5e\xce\xba\x5b\x7a\x0e\x61\x97\x22\xdc\xda\x9f\xf1\x53\x76\xde\xb7\xfa\x5e\x27\x95\xb0\x5b\xb2\x8a\x8a\xd2\xd9\x90\xd9\x53\x42\x0f\xbd\x2f\xb7\x5e\xf3\x9a\xde\x86\xd9\x53\x42\xe8\x23\x45\x64\xea\x1a\xfd\xf8\xe2\xe9\x73\x04\xbb\x89\x64\x62\xa2\x6b\x86\xf2\xc2\xc0\x0d\x84\x9a\x16\xa9\x54\xb1\x36\xed\x08\xf1\x35\xbb\x05\xc1\x84\xd3\x25\xbb\x55\x3c\x4d\xc6\x06\x78\xc1\x6e\xf5\x76\xa1\x18\xaa\x6b\x3a\xe0\x41\x70\x5d\xd7\x72\xef\x31\x5d\x0a\x56\xdc\x9c\x8d\x09\x81\x4d\x1a\xc4\x1b\xc6\xed\x25\xe0\x34\x61\x51\xd7\xd7\x52\xb2\xa0\x59\x74\xda\x88\x54\x76\x41\xe3\x25\xbd\xa6\xe7\x33\x12\x9e\xfa\xa1\xca\x2e\xe4\x36\x73\x4d\x17\x33\x57\xa8\x94\xb3\xf0\x95\x94\xaa\x35\x21\x6e\x6c\x50\x59\xa4\xb6\x28\x3d\x4c\x21\xdc\xbd\x50\x6d\x94\x3b\x16\xcd\xa2\x65\x28\x8b\xbb\x84\xf0\x3f\x5e\x25\x33\x22\x4b\xc2\xad\xbd\xee\x99\xde\x4b\xed\x7e\x77\x7c\x6c\xd8\x6a\x38\x78\xeb\x63\xaa\x0b\x30\x68\x33\x52\xf1\x39\x48\xbf\xff\x7a\xff\xe6\xe7\x03\x2e\x5f\x47\x77\xc6\xeb\x84\xe6\x14\x81\x22\x47\x49\xcc\xef\x41\x1f\xd5\x2f\xf8\x9a\x77\x74\x1f\x08\x87\x39\xdb\x30\x33\xbb\xe4\x02\x51\xb4\x29\x2a\xd1\x13\x77\xbd\xe5\xe2\xd5\x04\x9a\xb8\xc4\x26\x92\x7f\x5d\x97\xb4\x84\x78\xdd\x46\xe1\xa2\xd4\x29\x2e\xec\x17\x28\x92\xb8\xd2\x3a\x0a\x6a\x28\x52\x58\xa8\x45\x92\x53\xbd\x68\x42\x88\xbb\xd1\x3e\x7f\x02\x53\x22\xed\x6e\x6d\x90\x9e\xfb\xdd\x82\x75\xb5\x7e\x6d\x4a\xc7\x69\x6b\x34\x9d\x40\x81\xe9\xf6\xf4\x91\x13\xab\xb1\x9c\x34\x75\x6b\xa0\x25\xd3\x6f\xf9\xfa\x88\xfd\x9e\x3a\x42\xdb\x8a\x24\xeb\x70\xaf\x55\x24\xe8\x7d\xfb\x84\xeb\xba\x4c\x36\x4f\xb3\x1e\x0b\x63\x5f\x98\x87\x5d\x0c\xab\x08\x2f\x98\x33\xcf\x22\x38\x1e\x4b\xae\x5a\xb0\x3b\x1d\x92\xb8\x83\x4d\x4e\x46\xfc\x4f\x3c\x26\x1e\x34\xa0\xc9\xd6\xf4\x97\x69\xc0\x88\x9a\x92\xa9\xe8\x9c\x8f\x59\xe0\x50\x38\xd2\x9a\x72\x05\xad\xaa\x65\x6b\xf0\x5f\x9e\x12\xd9\xc2\x6e\xb2\x0d\x08\x4b\x2c\xa0\xa4\x32\x41\xd7\xaa\x11\xd9\x13\xaf\xf2\xbc\x1f\x85\xfa\xa0\x6d\xbe\xe7\x7b\x61\x0b\x68\x7a\x5e\x90\xbf\x32\xc6\xb7\x76\xf7\x39\xb3\x32\x47\x85\x9d\x57\x7d\x94\x8f\xf4\x28\xc1\x51\x9f\x8f\x86\x49\x54\xb3\x7b\xb4\x2c\x97\xce\x2d\xa1\xd7\xfe\x24\x6f\xb6\x5b\x16\x2e\x9a\xa6\xde\x24\xd4\x35\x6c\xf3\x4e\x1d\x0d\xf4\x46\x18\x47\xcc\xc9\x28\x2f\x04\x46\x17\xc5\xe2\x16\xf5\x40\x13\x3b\x0f\x15\x0b\x4b\x69\x4e\x0e\x0d\x44\x3d\x1c\x8f\x98\x40\x8f\xda\x4b\x74\x53\xf1\xed\xa2\xa8\x4c\xe0\xa6\x9e\x78\x1f\xad\x8c\x80\x72\xa5\x41\x1b\xfb\x1f\xf5\x15\x32\xc0\xdc\x07\x97\x93\xdc\x9f\xba\x55\x50\x2b\xf7\xa0\x35\x40\x35\x8d\xa3\x98\x9b\x55\xe9\xfb\xed\xcb\x0d\xdf\x43\xc4\xc9\x47\x1f\x4f\x5f\xff\x28\xc4\x46\x8b\x5c\x9a\x0b\xe0\x72\x1d\x83\x5a\xf8\xa5\x60\xbb\x31\x44\x22\x98\x3c\x7a\xf4\x55\xf8\x68\xfc\xf5\x9e\xfe\x26\xda\xe7\x3d\x37\xab\x12\x93\xe9\xe9\x68\x5e\x94\x15\x1b\x0c\x7e\x13\x41\x80\xae\x53\xb1\x7a\x56\xf2\x05\xcf\x45\x9a\x64\x15\x4a\xf3\xa3\xdf\x04\x3d\x85\x17\xd9\x6f\x02\xb2\xe9\xc6\x5a\x51\x03\x77\x81\x69\x69\xa9\x74\x6f\xb2\xe8\xba\x96\x25\x0f\x78\x43\xa9\x65\xd8\x8c\x06\xd6\xb2\x03\xea\x02\x91\x40\xb5\x4f\xf2\xe6\x80\xaf\x89\xb5\x4d\x37\x07\x65\x17\x57\xd2\x97\xbc\xab\x38\xd8\x5b\x52\x3e\xda\x24\x55\x75\x5d\x94\x0b\x42\xe1\x6d\xc5\x63\xfa\xbc\xad\x4b\x94\xcc\x2b\xf3\x12\x0c\x2f\xab\x33\x1a\x81\x22\x08\xaa\x51\x5b\x65\xda\x97\x86\xdd\x2b\xb2\x72\xef\x53\xeb\xba\x88\xd1\xc7\x63\x3d\x54\x7c\x71\x0c\x68\xaa\xb3\xba\xc6\xbd\xe9\x0c\x35\xc7\x16\x11\x5a\x90\xaa\x2b\x5f\x27\x14\x6c\xb8\xa7\xbd\x56\xcb\xfe\xd4\x01\x3e\xba\x64\xd5\xa8\xc8\xb3\x22\x59\xc0\x05\x70\x31\x70\x05\x02\x29\x5c\x69\x29\x14\xae\x41\xc4\x03\xd6\x68\xbe\x4a\xf2\x4b\x05\x72\x4c\xb5\xe0\x0d\xcc\x54\x65\x64\xf2\x50\xb3\x44\xca\x65\xa6\x13\x76\xab\xd2\x6c\x4c\x94\xe2\x31\xd5\x59\x49\x98\x62\x93\x4e\x2b\x8f\x63\x92\x0f\x5e\x8a\xd8\x24\xcd\xea\xba\x37\x9b\x3a\xec\x01\xbc\x8d\xca\xca\x13\x5a\xa3\x06\x4f\x48\x9f\x15\x93\x97\x95\xdf\x88\x68\x77\x91\xe6\x49\x79\x1b\xba\xe4\x7d\xb8\x83\x73\xa1\x66\xc6\x3d\x05\x10\xd0\xae\x3a\x1f\x13\xe5\xb9\x60\xfa\x55\xca\xa5\x65\xab\x77\x4d\x9f\x0a\x6c\x3e\xdd\xf9\xf1\xda\xde\x8f\xdc\x38\x94\x61\x6f\xef\x7b\xc3\x29\x59\xd9\xca\x13\xc1\xb5\xa3\x5a\x9f\xb6\x41\x04\x41\x89\xb5\x25\xa0\x6c\x81\x1a\x3d\xa5\x64\xa8\x94\x7e\x81\x37\x34\x58\x4a\xba\x52\x41\x97\x8c\x64\x31\xd7\xf0\x22\x4a\xed\x30\xdf\x77\x74\xf2\x50\x0f\xd8\x37\x28\x9e\xa6\x71\xfc\xd5\xa4\x0c\x8d\x65\x01\x16\xae\x66\xa7\x1a\x29\x96\x84\xe9\xe3\xed\xc6\xf9\x95\x3d\x1a\x55\x79\xf4\x19\xa8\x3b\xc0\xa4\x47\x8d\x33\xce\x03\xe9\x7c\xbe\xee\x4d\xbf\x39\x76\x4f\x1a\x47\xa1\xba\xb6\x93\xb3\x0b\x1c\x85\xb2\xd4\x5a\x66\x24\x2a\x19\xce\x3f\xbf\x80\xb1\xe2\x3e\x03\xeb\xb1\x51\x84\x72\xed\x1f\xd1\xec\x2e\xcb\xd0\x35\x29\xaa\xc5\xf0\xb6\xda\x55\x7d\x25\x3b\x8c\x76\xbb\x55\xc5\x3d\x91\xbc\xa2\xd7\x9d\x8e\x5c\x1f\xa8\x45\xb9\xda\xc0\x09\x4e\x93\x7e\x71\x3d\x3c\x4f\x85\x28\xab\x7e\xca\x0d\xac\xb4\xe4\x42\xd0\x63\x95\xf7\x09\x22\xda\x0b\xc8\x7f\x59\x21\x7b\x83\x5d\xd2\x4e\x9f\x80\x87\x26\xc3\x33\x75\x4f\xab\x72\x1e\x02\x89\xdf\x93\x51\x91\x63\x24\x17\xd7\x91\x16\xbb\x9a\x9b\xb7\x30\x96\x90\x92\xed\x51\x36\xf2\x41\x50\x60\x8f\x20\x29\x71\xf0\xeb\xf1\xd7\xb0\x17\xaa\x5b\x15\x6e\x75\xc5\x93\x45\x23\x62\x8d\x90\xcc\x62\xcf\xec\xce\x83\x20\xc7\x9e\x99\xe5\x27\xc1\xe2\x19\xfd\x41\xb0\x13\xcc\xc8\x59\x84\x23\x16\xd4\x0f\x48\x7d\x16\x29\xfb\x4a\x6f\xe2\x4a\xd1\x66\x13\xa2\xb9\x3e\x27\x55\x47\xdf\x1b\x73\x6c\xda\xc5\x14\xf9\x24\x94\xad\x35\x08\x5a\xca\x39\x61\x88\xce\x95\x62\xbc\xc1\x49\x73\x30\x44\xe1\xbd\x13\x48\xd6\x01\xa7\xe3\x1b\xd4\x02\x96\x69\xe1\x70\xa9\x18\x67\x23\xc8\x1a\x04\xf8\x07\xeb\x84\xbf\x2d\x33\x12\xa1\x6d\x99\xa1\xbe\x48\x0e\x5a\xf5\x0d\xa7\x19\xfc\x7f\xf7\x34\xc3\x55\xaa\x8f\x1c\x90\xfc\x55\x8e\xc2\x55\x5d\x23\xf5\x1d\x30\x90\x0d\x23\x17\x63\x92\x63\xda\x6f\xfa\x54\x72\xac\xcd\x14\x12\xb5\x12\x30\x09\x5b\x29\xb4\x8a\x78\x5c\xcd\x00\xd1\xd0\x9e\x58\xfc\xa0\x4e\x2c\x86\x05\x09\x5b\x1d\x05\x1d\xe4\x1d\x8c\x98\x0e\x33\x67\x19\x3a\x27\xd8\x34\x16\xb0\x38\x9d\xba\x4c\x2f\x3c\x65\xbd\x30\x63\xdd\xf3\xe0\xc4\x59\xb7\x16\x43\x74\x74\x9d\x54\x47\x79\x21\x8e\xe4\x14\x92\x3d\x46\x93\x78\x3c\xdb\xd3\x66\x6f\x30\x25\x43\xd3\x94\xe5\x60\xb4\x19\x17\x8d\x92\x13\x66\x3d\x3a\xf7\xb4\xec\x8b\xb8\x6a\xc9\x4b\x1a\x81\x3f\x9a\x8b\xa6\x81\x0b\x12\x42\x79\x29\xe5\x4a\x79\xd5\xee\x70\xd1\xea\x4b\x39\x87\xb7\xd5\x0a\x17\x04\x50\xe5\x2e\x21\x22\x7a\x8a\x13\x90\xc4\x12\x96\x7a\xb0\x0f\x86\x0a\x29\xa7\x29\x75\xbe\xf9\xe3\x07\x88\x8a\x01\xcd\xed\x04\x1e\x63\xc9\x28\x5d\x6f\x94\x38\x06\x13\xab\xe7\x25\x2c\x27\xa1\x14\x1f\x9c\x17\x44\x2a\xc5\x29\x99\x87\xa1\xc7\x72\x0e\x3e\x79\x7c\xa2\x7e\xfc\x1b\x44\x1f\x29\xfa\x6a\x05\x09\xcd\x9a\xef\xb1\x5c\x64\xa0\x4e\x83\x32\xfa\x75\x1a\x3d\x36\xd3\x51\x3c\x0b\x71\xbf\x37\xb7\xb6\x95\x93\xb4\x5b\xd4\x35\xee\xfb\xf8\x08\xe3\x92\x61\xf1\xa5\x9f\x4c\xda\xe7\xc3\x17\x49\xc5\x65\x32\x1c\x08\x27\xd6\x2c\x5c\x9b\x4b\x75\xa9\x5f\x29\xc5\x4b\x96\x10\x9a\xb2\x41\x1e\x04\xf1\x8c\xe2\x82\xbd\x57\x26\x15\x9c\x90\x28\x16\xad\x1a\x8a\x78\x32\x23\xb3\x10\x17\xec\x5a\x05\xc0\x15\x34\x85\x00\xb9\xa9\x45\xa0\xbb\xc3\x29\x71\x14\xfa\x6e\xb4\xe6\xe5\x25\xc7\xf1\x8c\x16\xbe\xbc\x46\x88\x33\x64\xd1\x7a\x05\x60\xa7\x0e\x46\x5b\xa1\x89\x8a\xf6\x2d\x25\x04\xcf\xcb\xdf\x21\x45\x28\x2f\xb1\x92\x5d\xca\xc5\xa9\xf4\xdc\x52\x42\x97\x12\xbd\xba\x1b\x53\x79\x0f\x16\xca\x7a\x28\xb4\xa6\x27\x14\x7d\xa1\x6b\x15\x44\x20\x7a\xfb\xe6\xfd\x07\xb9\x04\x4d\xe0\x99\x71\x10\xf4\x68\x68\x8a\xba\x6e\x2b\x69\x94\xb9\x96\x56\xa0\x92\x76\x8c\x60\x4e\x76\xa9\x5b\xa2\x72\x67\x12\xeb\x0c\x97\x91\xdc\x4a\x17\xe9\xd5\x13\x1b\x58\x0d\x7b\xd3\x10\x02\x28\x2c\x55\xfc\x7c\x25\x62\x9b\x85\x9d\x07\x41\x53\x99\x94\x74\xc5\xe8\x46\x04\xc4\xb4\xae\x3d\xad\x3c\xb0\xd7\x82\xf2\x99\x8a\x13\xae\xd5\x1a\x56\xbf\xe6\x4e\xd1\xa9\x53\xfe\xd1\x96\xe6\xd0\xd7\x41\x36\xb4\x93\xd4\x1d\xa7\xf5\xa0\x22\xb6\x43\x3a\x36\x35\x04\x60\x7c\xca\x6d\x20\x46\x5f\x24\xd7\xb1\x0c\x17\x7d\xef\xde\x8d\x2e\x4b\xbe\xc1\x36\xda\x66\x43\xe9\x62\xc3\xef\x31\x26\x0c\x16\x8a\x59\xf6\xf4\x4e\x0b\xef\xe0\x5c\xf2\x06\x2e\x0f\x47\x00\xb2\xe7\x2c\x0e\x77\x59\x83\x1c\x02\xe2\xfb\x9d\xe4\xf8\x00\xdf\x07\x49\xb6\x3e\x9d\xcb\xd9\x95\x39\x80\x40\x0f\xb2\xde\x20\xfa\x23\x42\x2b\x66\xc0\xea\xb1\x0a\x8b\xab\x8b\x06\x85\x2b\x9d\xbb\x84\x0c\xc0\xfd\x28\x6e\xe0\x2c\x66\x75\x8d\x96\xe9\x8d\x8a\xe2\x96\x91\x20\xc0\xe9\x70\xee\x6f\xd0\x5b\x51\x80\x47\x65\x84\x13\x86\x4b\xb6\xb5\x8d\xc0\x84\x00\x3c\x7f\xc1\x4a\x80\xf3\x23\x61\x13\xe5\x37\x25\x75\x3d\xa6\x85\x9f\x34\x57\xb0\xcc\x2a\x36\x33\x16\xcc\xc2\x33\xe4\x8d\x18\xbd\x72\xb5\xeb\xe8\xc8\x62\x04\x01\x4c\xf1\x46\xfe\xaa\xbb\xe3\x4a\xfe\x1d\x26\x2e\x8b\xac\x1d\xf2\xc8\x0b\x7d\x7f\x5c\xc1\x8f\xdc\x5b\xd1\xb6\x92\x44\x37\xcd\x8f\x44\x24\x46\x70\x63\xea\xdd\x90\x70\x0b\xdd\xb3\x51\x20\x4f\x9e\xb6\xb2\x68\x8f\x25\x48\x38\x87\x02\x99\x38\xde\x1b\x54\x77\xbd\x3a\x38\x98\xbe\xaa\xd8\x91\x9d\x2c\x26\x62\x2b\xc4\xd1\x98\xba\x68\x10\xad\x70\x0b\x65\x54\x1e\xd2\x0a\x45\x52\x6e\x3f\x04\xb4\x48\x73\xd6\x72\x87\xf4\x1d\x20\xe9\x4e\x14\x9b\x10\x7a\x75\x98\x8f\x36\xc9\x25\xff\xa4\x5a\x45\x65\xdf\x85\xaa\x27\xf5\x93\x8f\xea\xc9\x9e\x84\xf0\xd2\x58\x65\x19\xef\x4d\x1c\x00\xba\xe9\x01\xe9\x97\x32\xa1\x56\xb0\x9a\xa8\xa0\xfe\xd7\xd1\x82\x35\x0b\x93\x1c\x9d\x9b\x8e\x6a\xe6\x96\xfe\x2a\x21\xf7\x7c\xab\x3b\x61\xd5\x98\x7e\x76\x55\x74\x3a\x81\x72\x99\x02\x8f\xdf\x82\x4e\xb1\xae\xf3\xd1\x42\x3f\xd4\x7b\xd7\x54\x45\xf6\x65\x2c\x07\x4e\xa1\xae\xd5\x75\x2b\x17\x44\x7b\xb0\x8b\xb5\x67\x5d\x2b\x1d\xb1\x17\xd2\x89\x07\x01\x57\x30\x2f\x1d\x14\x02\x5c\x00\x0d\xb0\x0d\x87\x05\xd6\x81\x53\xff\x50\x6c\x2c\x90\x3a\xa1\x85\x1a\xa4\x76\xa6\xd7\x7c\x29\x5c\x2e\x73\xec\xe2\xc6\xfb\xb8\x80\xbf\xb6\x8b\x15\x1a\xd6\x07\x49\xa7\x01\x7c\xc0\x8d\xff\xb1\xaa\xa1\x9d\x15\xa0\x42\x95\xbb\xdf\x9e\xfa\x5d\xf9\xa5\xee\x27\x4d\xf5\x7a\x63\x34\x64\x1f\x7d\x49\xaf\x36\xde\x31\x64\xba\xae\x13\xde\x8c\x1e\xbc\x73\xb0\x70\x21\xf2\xe6\x32\xa2\x16\x46\x4e\xa5\xeb\xd9\x7f\xc8\x17\xb1\x91\x47\xee\x06\xd3\x4e\x0c\xdd\xf2\x3e\xd4\x4e\xe7\x65\x2f\xe7\xf9\x15\xe6\x24\x4a\x19\x0f\xbf\x6b\x4f\x83\x54\x0a\x32\x6e\x95\xfa\x58\xc5\xf6\xc4\x3f\x4a\x63\x31\x0b\x79\x5c\xce\xa6\x69\x94\x5a\x3c\x3c\x9c\x47\xa9\xbf\x5c\xc3\x82\xe6\x51\x11\xa6\xfe\xe2\x26\xf0\x1a\x2b\xf6\x2a\x6c\x71\x87\xa4\xf9\x51\x8c\x63\xa4\xb6\x6e\xd8\x3b\xfe\x02\xa3\x18\x60\x68\x37\xe9\x0d\xcf\xde\x1a\xe8\x5e\x3f\x7f\xde\x00\x2c\x36\xc0\xea\x82\x50\x03\x80\x9f\x93\x08\x66\xbf\xdb\x60\x62\x31\x03\x80\xd8\x30\x57\x70\x24\x76\x40\x35\x2a\xb9\x05\x51\x86\x99\x1e\x6a\xe4\x97\x9e\x48\xc7\xea\x2d\x8b\x28\x0b\xbc\x3e\x1a\x72\xa3\xc7\x09\x05\x45\x28\x44\xc5\x56\x40\xb2\x5f\x00\x98\x49\xc0\x30\x97\xde\x30\x3b\x0d\x34\x6b\x77\x9f\xe4\xdb\xbd\x90\xd2\x8e\xd5\x2f\xe4\x56\x9d\xd7\x35\x86\x33\xff\xa2\xae\x07\x4a\x98\x32\x40\x74\xa1\xc1\x10\xb6\x2c\x6a\x67\x0a\x49\xe2\x69\xa7\x90\xd9\x79\x24\x7f\x0a\x36\x2e\x6e\xd3\x56\x1f\x42\x22\x11\xdb\x4f\x9d\x85\xc2\x92\xae\x36\x0d\x8b\xd1\x1c\xc8\x28\x64\xfb\x0e\xd8\x1c\x33\x1b\x23\x9c\xb2\x4e\x7e\x6a\x81\xdd\x04\x90\x46\x10\x58\x8b\x2c\x93\xef\xd3\xb4\x71\x67\x32\x18\x78\x65\x95\xa1\x79\xe7\x2a\x27\xc6\xbb\x45\x76\x50\xa4\x96\xbd\xfc\xe6\x8a\x58\x90\x48\xe8\x02\x5a\x01\xd3\x49\x93\xa8\xd0\x2f\xd0\x44\xc5\x28\x76\x73\x04\x5d\x64\xdb\xf2\x08\xdc\x8b\x8f\xb4\xcf\xf1\x91\x71\x36\x3e\x2a\x79\x95\xde\xf1\x23\xd5\xd0\xa3\x79\x96\xce\x3f\x1f\x2d\x2e\x32\x75\xb1\x2e\xb6\x15\x5f\x14\xd7\xb9\xba\xda\x6e\xd4\xaf\x14\x50\xd4\x55\x71\xc5\x4b\x7d\xb5\x15\xea\x82\xe7\xc2\xa4\x65\x3c\xb9\xe2\x47\x4a\x25\x7b\xa4\x5c\x42\x8f\x94\x2b\xe9\xd1\x67\x7e\x0b\xe5\x7e\xe6\xb7\x9b\x92\x57\x95\xbc\xd8\x6e\x8e\xb4\x89\xfd\x9a\xe7\x5b\xe4\x99\x91\xfc\x35\xef\xeb\x9d\x96\x77\x02\x5e\x8e\x23\xc7\x10\x2b\xa5\x17\x35\xc0\xac\xe6\x60\x5e\x98\xa5\xee\xb1\x3d\x2b\xf9\x71\xf7\xf8\x96\xbb\xaf\x95\x4b\xd5\x7d\x30\x16\x75\xcd\xbb\xce\xea\x17\xa9\xaf\xfe\x6b\x1e\xf0\x9b\xf6\x71\xed\xea\x4e\x73\x38\x01\xec\xbc\xd2\x7a\x61\xb9\xb4\x6f\x90\x3d\x35\xf1\x23\xfe\x02\xa6\x42\xc9\x05\x1a\x6e\x62\x9b\x1f\x78\xcb\xbe\x03\xa0\x98\xed\x08\x57\x5e\xf5\xe8\xe1\x43\xa4\x3b\x53\x26\x08\x0a\x56\xdb\x0f\x11\xcd\x75\x17\x6c\xca\xe2\xa6\x1d\xc6\xdb\x3a\x54\x01\x97\xd3\xd1\x99\x29\x89\x9f\xc7\x62\xa6\x91\x1c\x72\xc9\x29\x7b\x40\x8f\x6c\xae\xd8\x56\x27\x05\x3e\x22\x52\xfe\xee\xee\xb7\xdc\x48\x6e\xda\x9d\xbc\x34\x1e\x0b\xed\x12\x20\x44\xdf\xe8\x72\x9b\x2e\x18\xf7\x7f\xea\xfa\x0e\x7e\x87\x43\x5a\x48\xbe\x78\x55\x64\x8b\x77\x3c\x59\xdc\x36\x23\xce\x40\x40\xde\x64\x71\xfb\x7b\x92\x8a\xe1\x30\xd4\x77\x80\x9d\x01\x26\x0d\xe0\x4d\xc9\x1a\xbe\x95\x46\x4b\xf2\xaf\xf7\x6f\x7e\x66\x9e\x63\xce\x9d\x75\xfa\x64\x2f\xe0\xdd\x97\xba\x22\x76\x09\xb7\x2a\x42\x07\xbb\xa2\x77\xa3\x79\xb2\xe6\xd9\xb3\xa4\xe2\xec\x27\x7a\xa7\x94\xd8\xd7\xf0\xfe\xb5\xf5\x65\x87\x57\x7e\xde\xae\x79\x99\xce\x7b\x40\x36\xd4\x5b\xee\xd8\x1a\xfb\x31\xc5\x9a\xc6\xce\x24\x08\x06\x69\xf5\x73\xf2\x33\xe6\x3e\xf8\x3b\x27\x64\xef\xb6\x65\x5c\xf6\x0c\xc2\xdd\xde\x8c\x02\x8d\x67\x84\x40\xfc\x15\x7e\xb3\x29\x4a\x51\xb1\x52\xb1\xfa\x3f\x09\x96\x8f\xfe\xf8\x65\xcb\xcb\x5b\xfa\x8b\xbc\x7e\xe0\xe0\x6a\xf2\xe2\x59\x91\x2f\xb3\x74\xde\x1f\x6f\x68\xf4\x40\x32\x46\x80\x5c\xf5\x80\xfd\x22\x08\x85\x23\x1e\x55\x96\x7d\xa2\x6f\x7f\x12\x84\xde\x41\xe0\x16\x97\x26\x5f\xbb\x93\xc9\x8d\xc0\xee\x7a\x15\xa0\x6d\xc5\x8f\x64\x27\xcc\x05\x52\x6a\x17\x96\x63\xc9\x6b\xb2\x7c\x94\x43\x94\x27\x86\x73\x3c\x19\x7f\x43\x68\x8e\x27\xf2\xcf\x57\xdf\x10\x42\x13\x78\x9c\xc2\x3e\x87\xff\xf9\x8d\x14\x3e\x65\x42\x45\x68\xc6\x72\xfc\xd5\x23\x29\xe3\xf6\x2e\x6c\x3e\xaa\xb6\x17\x95\x28\xf1\x98\x1a\x80\x72\x22\x3b\x7f\x4f\x37\xec\x40\x34\x2b\x63\xe6\x64\x0d\x4f\x0b\x26\x0c\xed\x8c\x10\x91\xc2\x45\xca\x2e\x31\x6c\xba\x08\xac\xfd\x64\xd2\x9c\x9d\x4a\x19\x3b\x63\x63\xba\x65\x73\x13\xee\x2a\x7b\xbc\x9d\x66\xc3\xa1\x9a\x1d\x1b\x36\x98\xd0\x25\x9b\xc7\xd9\x6c\x54\xca\x8d\x54\xae\xd6\xa5\xe1\xc7\x48\xc9\x76\x90\x1a\x2e\x29\x38\x28\x54\xe1\x6e\x4f\xb7\x65\x1a\x8a\xbd\x93\x3f\x64\x39\x0b\x76\x89\x97\xa3\x4d\x22\x56\x84\x5e\xb0\xdd\x9e\xae\x1d\x1e\xaa\x51\x7e\xd1\x85\x35\xbc\xbf\x62\xe3\xe9\xd5\xe3\xf5\xf4\xca\xb4\xe3\x29\x5b\xc4\x57\x33\x7a\xcd\xd2\xf8\x0a\x5c\x60\x95\xd1\xe2\x53\xb2\xbb\x00\xbb\x6a\x96\x6a\x35\xd5\x95\x72\x7c\x5e\xf0\xb6\x63\xbc\x89\xeb\x7c\x82\x3c\xab\x41\x3b\x67\xaf\xc9\x6e\xc3\x06\x63\xfd\x44\xd6\x78\xc7\x56\x4a\x93\xf7\x14\x34\xeb\x77\x41\x30\xa8\xc8\xee\x58\xd2\xc2\x5b\xcb\x5b\xdc\xc5\x93\x19\xa9\xeb\x04\x13\x3c\x98\xe8\x88\x12\xac\x5b\x37\xbe\x26\xd3\x8b\x58\x66\x9e\xb1\xf3\xbd\xb1\xb1\x7c\x3a\x68\xd7\x0b\x86\x8c\x1b\xb2\xcb\x3b\xdd\x7a\x01\xbd\x8a\x4e\xd0\x30\xb5\xfa\xb8\x2b\xef\x93\xf6\xa6\x84\xbd\x8b\x31\x56\xaa\x43\xc9\x3d\x5d\xb2\x4e\x50\xb0\xad\x24\xdb\x27\xc8\x05\x03\x9b\x9a\x20\xe9\x6e\xd6\x00\x26\xcb\x58\x61\xb1\x00\x34\x67\x7b\x4a\x25\xec\x52\x4e\xff\x8a\x5d\xe2\x14\x3a\x09\xa6\x56\xe2\x1d\x36\x5c\xe1\x94\x16\x2a\xe8\xe9\x16\xf4\xd9\x14\x8d\x4c\x44\xf6\x39\xab\x0c\x21\x4e\xfc\xc1\xb1\xaf\xca\x5b\xc5\x13\x22\xf9\xe5\x64\x38\xa7\x85\x8a\x48\xa4\xfd\x85\xdd\xeb\x74\xc3\xe2\x19\x5d\xb2\x31\x5d\xb0\xcc\x46\xaa\x7b\xbc\x98\x2e\xcd\x04\x5a\xb1\x2c\x5e\xce\xa6\x68\x34\x02\x93\xc7\x68\xa3\x8e\x8d\x42\x34\x02\x53\xfe\x20\xd8\x28\x1d\xfc\xca\xda\xe4\x5d\xc9\xfa\x87\x1b\xd7\x32\x59\x3b\x5d\xf4\xae\x59\x99\xf3\x12\x58\x80\xa6\xd3\xbd\x91\x95\x56\x46\x29\x6c\xdd\xed\x23\x11\xcb\x5e\x9d\x85\x60\x16\xe5\xc6\x91\xae\xd8\xc9\x7f\x42\x3c\x1a\x92\x13\x7a\xd1\x47\xeb\x56\xc6\xc9\x5f\xae\xa1\xbe\xb6\xe8\xa9\xc3\x69\x35\x2f\x4a\x1e\x5a\xe1\x29\x1a\x87\x97\x98\xab\x35\x38\x2a\xf9\x62\x3b\xe7\xed\xf8\x00\x66\x32\x0c\xd9\xd7\x74\xd0\xad\x1b\x86\x97\xef\x25\x8b\x7d\x21\xff\xf0\x21\x7b\x14\xf6\xe5\x7b\xe8\x32\xf2\x21\xfb\x2a\xe4\xc7\xec\x9b\x90\x0f\xd9\x84\xf2\x3d\xa1\x63\x42\x61\xfd\x84\x62\xbf\xa7\xa7\x7d\xdf\xc8\xa1\x1f\xd7\x44\x05\x26\x3b\xd0\xc8\x11\x7c\xdf\x63\xa1\x7e\xa3\x49\xa8\x53\x9e\x98\x94\x63\x99\x04\x35\x1d\x0b\xf5\x0b\xe4\xfd\xb2\xbf\x46\x73\x88\x75\x82\xff\x73\x76\x32\xac\xcf\x4e\x86\x0f\xc8\xc9\x25\x45\x88\x98\x59\x0f\xc3\x73\x75\x80\x66\x0f\xb1\x88\x50\x84\x86\x10\x58\x64\x4f\x6f\x59\x8c\xb6\x65\x8a\x28\x92\xfd\x8d\x66\xf4\x29\x53\xc6\x8c\xa3\xa4\xaa\xd2\xcb\xbc\xae\xfd\x46\x38\xbc\xe8\xc9\x54\x3c\x6e\xb3\x5a\x80\x07\xa3\x27\x92\x7d\x16\x8b\x99\x85\x1c\x55\x38\x9c\x44\x57\xe0\x90\xd2\x57\x49\xf5\xe6\x3a\xd7\xe0\xc9\xb7\x06\x2e\x1b\x42\x4f\x81\xcc\x9b\x03\x60\x9e\x35\xcf\xa3\xd7\x7d\x3d\xf3\x14\x70\xc2\x5c\x8c\x1c\x6d\xe4\xcc\x47\xab\xb4\x12\x45\x69\x8c\x81\x3f\xf3\xdb\x76\x1a\xc4\x23\xf7\x13\x46\x9f\xf9\x2d\xc0\x30\xa6\x22\x4d\x32\x04\x26\x91\xbd\x71\x50\xe2\x19\x2d\xd9\x35\x06\xdf\xb1\xc1\x84\xa6\x3e\x3f\x61\x90\xbf\x76\x97\x5c\x1c\x99\x56\x39\x3e\xa3\x04\xab\xd8\x23\x51\x26\xb9\x92\x9b\xd3\xfc\xd2\x3d\x2d\xf6\xf4\xbc\xc8\x3f\xd8\x87\x46\xff\xee\x6b\x69\x54\x95\x98\xec\x69\x06\x51\x84\x1a\x80\xcd\xb9\x89\x32\x39\x55\x71\x10\x7c\x46\x47\xb5\x58\xe0\x9d\x69\x55\x58\xd2\x04\x9e\x86\xe8\xed\x9b\xb7\xf2\x7b\xdd\x01\x5b\x27\x6e\x12\xda\x14\x1b\xe8\x25\x44\x0b\xe2\x83\xcb\xf0\xde\xc0\x46\xcd\xec\x39\xcb\xbb\x21\x48\xbc\xd9\x2d\xe5\x6e\xd0\x02\xd1\x3c\xb9\x4a\x9b\xbc\xbe\x38\x24\xbb\x3f\x99\x78\x11\x53\xdd\xc4\x9b\xcc\x22\xff\x46\xee\xf8\x15\x4b\xf4\x34\x98\x33\xeb\x5f\x47\x33\x66\xdf\x9e\x07\xc1\x7c\x5a\x31\x98\x4b\x15\xdd\xc9\xc9\xe2\x02\x2d\x41\xac\x59\x30\xb0\x29\xea\x3a\x8b\xdc\xa4\xd1\x05\x81\xc9\x0e\xae\x8c\x94\xe3\x4d\x33\x39\x16\xad\xa7\xda\x02\x67\x23\xfb\xcd\x8c\x43\x9c\x45\x48\x97\x85\x42\xa4\x16\x20\x9a\x41\xa8\x50\x3b\xcb\xc6\x30\xa0\x5b\x96\xf3\xeb\xa3\xb7\xda\xf7\xb5\xaf\x2b\x53\x26\x09\xb6\x25\xe3\xa3\x65\x51\xbe\x68\x2a\xb6\xbd\x6e\xef\x9f\x0a\xbf\xbe\xff\x11\xa9\xb0\x97\xdb\xfd\x7e\x8f\x07\xb8\x17\x3c\xe6\x5a\x07\xe1\x1b\xa8\x0b\xab\x75\xe8\xa6\x34\x0f\x19\x49\xa4\x1e\x77\x4d\x25\xba\x42\x71\xef\xf8\x8e\xfd\xf1\x1d\xcf\xe4\xd6\xab\xd1\xab\xe2\x9d\x24\x66\x10\xc3\x85\xd3\x8a\x27\xe5\x7c\x15\x22\xb4\x9f\x41\x48\xa3\xfb\x97\x65\x0e\x30\x09\xed\x49\xdf\x12\x6c\x4d\x84\xf6\xfb\xf3\xe8\xc1\x87\xb0\xb7\x47\x3c\x17\x65\xca\x2b\xaf\x22\xb5\xfe\x81\xdc\x7b\x2a\x57\x95\x0a\x73\xd4\xa3\x15\x0a\xbb\xc1\x4c\x22\xbf\x26\x4f\xa5\x95\xfa\x2c\x51\x05\xec\x8d\x9c\xe6\x92\x25\x32\x33\x9c\x31\x36\x97\x5c\xca\x5c\x92\x6a\xaa\x69\x84\xeb\xac\xca\x74\x56\xb6\x27\xb4\xb4\x98\xa0\xd4\x9f\xdf\xff\x4f\x54\x0e\xfa\x90\xde\x6a\xa9\xfc\x54\xc6\xf7\x72\xbe\x11\x32\xbd\x1b\x19\x32\x30\xcd\x47\x0b\x2c\x28\x4a\x50\x23\xb2\x93\xee\xa0\x5f\x01\xd6\x56\xe5\xb8\xe8\xcd\xf1\xc9\xcb\x31\xef\xcd\xf1\xd9\x86\x5a\xfb\x7f\xff\x0e\xd8\x72\xfe\x33\x55\xea\xa8\x2e\xb6\x22\x4e\x84\x95\x00\x4a\xf2\x84\x8d\xeb\xfa\x8b\x6a\xe6\xaa\xe6\xdc\x84\xdb\x71\x64\xc4\xc5\x9b\xf9\xe0\xf0\x8d\x30\x3f\x4a\xf3\x4a\x24\xf9\x1c\x14\x22\x44\x9b\x13\x4a\x0a\xf5\xe1\x76\xc3\x5f\xa8\x78\x6e\xcf\x92\xdc\x58\xbb\x1c\x25\x47\x10\x6d\xfd\x28\xa9\x8e\x12\x6b\xce\xea\x47\xb3\xb9\x71\xa5\x73\xaf\xb8\x77\x7c\xc9\x4b\x9e\xcf\x4d\x99\x62\x95\x56\x47\xab\xa4\xca\xff\x97\x38\xba\xe0\x3c\x3f\xd2\x5b\x76\x5a\xf1\xc5\xd1\xf1\x51\xb5\xdd\xf0\x12\x93\x46\x0e\x63\x6d\x63\x62\xab\x8b\x46\x10\x35\xa7\xd4\x41\xb6\x59\x5e\x72\xc4\x43\xe1\x1a\xf9\xb3\x6d\x64\x6f\x66\x8b\xc5\x22\xfa\x3b\xe4\xbd\x6c\xdd\x11\xbf\x01\x9d\xa2\x2c\x6f\xbd\xad\xc4\x11\x4f\xc5\x8a\x97\x47\x17\x1c\xe2\x34\x1c\x15\xa5\xd7\x43\x14\xec\x85\xd0\xd0\xd4\x40\xa6\xdc\x8d\xa4\x99\xb5\x8a\xc8\x62\x85\x6b\x62\x1e\xd2\xdd\xbc\xc8\x2b\x51\x6e\xe7\xa2\x28\xc3\x9d\x0e\x7f\x45\x79\xbe\x5d\xf3\x32\xb9\xc8\x78\x38\x98\xd0\xeb\x52\x61\x7f\xe8\x30\x2a\xcb\xf4\x72\xab\x9f\x41\xbc\x70\x11\x04\x58\xd7\x51\x71\xf1\xd6\x14\xfd\x66\x19\xf5\xa6\x2a\xcc\x2e\x3e\x3a\x3f\x87\x56\x9c\x9f\x33\x41\x40\x60\x7d\xdd\xcb\x4a\xcd\x31\xc1\xc2\xdb\xaf\x9e\x15\x79\x25\x1b\x67\x10\xa8\x41\xc7\xc4\x87\xc8\x3e\x40\x34\x1f\xbd\x2d\x8b\xab\x74\xd1\x93\xc9\x3c\x40\x34\xdf\xd3\x17\xec\x35\x46\xaf\x35\xa9\x47\x84\xbe\xef\x05\x70\x05\xab\x95\x92\xe7\x36\x24\xd4\xa8\x1d\x97\xe1\x85\xad\x5b\x6d\xe2\xbd\x5b\x69\x04\xe0\xca\xdd\x97\xff\xb4\x1b\xbf\xe4\xed\xff\x6c\x34\xc1\xce\x28\x81\xad\xbe\x71\xfa\xc1\x78\x87\xd8\x35\x5d\x74\x76\x46\x9a\x32\x13\x35\x9f\x26\x6c\x3c\x4d\x1e\x17\xd3\x64\x38\x24\x69\x9c\xcc\x3c\x02\x94\xd8\x03\xe9\x9c\x95\xec\x46\x1f\x5e\xc3\x5a\xd7\xca\x2e\x4e\x75\xa0\x6c\x2d\xa9\xa6\x84\xc8\x1d\x00\xf6\x21\xb6\x33\x31\x75\xd4\x61\xb6\xba\xc1\x84\x96\x7c\x59\x85\xbb\x6d\xae\xd9\x4f\x90\xe1\xf7\xf4\x06\x97\x34\xb7\xb4\xea\x67\x30\xec\xa0\x3e\xc5\x71\x65\x74\x8d\xc0\x94\xbf\x48\x59\x6c\x2a\xc3\x3b\x4d\x6d\xf4\x36\xcd\x0f\x72\xbb\x27\x50\xcb\xb4\x38\x16\x6a\xbf\x6f\xd4\x35\x37\x9a\x8d\xe7\xe9\xe2\x99\x64\xb8\xba\x1a\x86\xc1\x4b\xcc\x0d\xc9\xe2\x53\x3c\xa6\xdd\x36\xd8\x1a\x09\x18\x04\xa6\x74\xa7\x77\x44\x08\x02\x7b\xb8\xc6\x5f\x37\x8b\xc4\x47\x7a\x56\x90\xdc\x26\x36\x8f\x6d\xb3\xc6\xc3\xd5\xb2\x47\xfb\xa9\x86\xb3\x68\x36\xa8\x57\x38\xc0\xf7\x34\xe5\xb4\xd8\xf6\x19\xdd\xa9\x29\xe6\x57\x2f\x07\x95\xe6\x7d\x03\x21\x46\x66\xa8\x59\x3e\x52\x17\x8d\x93\x61\xcd\x8d\x1a\x57\x48\x4c\x46\x62\xd5\xca\x52\x2a\x27\x87\xa7\x60\xd3\x93\x16\xf9\xcb\x32\x59\x37\x21\xd5\xf9\x68\x9b\xaf\x65\x5b\xf9\x02\x4c\x93\xb9\x50\x7c\x73\x77\xc3\xb6\xb3\x92\x37\x66\xa5\x3e\x4f\xd2\xff\xeb\xef\x8f\xdf\xd3\x2c\xfb\x55\x55\x73\x60\x0a\xba\xbe\x98\xc2\xbd\x6d\x14\xd8\xe6\xda\x8e\x68\xf7\x78\xc9\xf3\x05\x2f\xef\x2d\x53\xb7\xda\x74\xba\xea\xe2\x2f\xa1\x3d\x86\xa4\x51\x43\xbd\xf7\xd4\x6d\x3b\xde\x79\x84\x22\x40\xc2\x18\xfa\x53\xb1\xc7\xb2\x38\xa7\x5f\x9c\xfe\x69\x34\x2d\x72\xd7\xaf\xd8\xce\x30\xaa\x77\xca\xbd\xe8\x99\x24\x97\xdf\x27\x15\x47\x74\x77\x91\x54\x5c\x2b\xf4\xa8\xbc\x96\x3c\x9b\xbc\xd9\x13\xfa\xb9\x4f\x08\xef\x36\xfc\xd9\x41\xa2\x29\xee\x79\xeb\x7d\x3b\x73\x7e\x4f\xe6\xdf\xe9\x39\x04\xc2\xa2\x39\xe5\x6e\xe4\x7f\x3f\x4c\x62\x75\x49\x96\xc2\x52\x4b\x12\x7b\xc1\x83\xef\x23\x66\xf7\x8e\x38\x0c\x2e\x95\x9b\x8b\xd5\x4a\xe4\xcc\xa3\x5f\x25\xe3\x23\xd3\xab\x00\x7b\xb1\x29\xd3\x75\x52\xde\xd2\xc4\xdb\x8f\x68\xc5\xb0\xca\x26\x29\x8f\x37\x8b\x09\x9d\x3b\xce\xba\x8a\xd0\x22\xbd\x42\x61\x45\x33\x26\x79\xc2\x18\x99\x2a\x11\x45\xa6\x42\x44\x91\xa9\x0e\x51\xa4\x2b\x03\xdc\x06\x55\x95\x7e\xae\xf4\x41\xb6\x1e\x34\x23\x74\xcb\x60\x0e\xe9\x7c\xa0\xf5\x4a\xe8\x4f\xb8\x24\x84\x2e\x98\x18\x19\x56\x9e\xae\xd8\x06\x6f\xe9\x42\x05\x04\x51\x7d\x71\xc1\x56\x2a\x28\x50\x05\x81\xc9\xe4\x47\x9c\xb2\x95\x52\xd2\xd3\x4b\x73\x65\x30\x2f\xd9\xa9\x55\x03\x96\xe1\x29\x14\xec\x34\x5e\x67\x0f\x1f\x9c\x00\xd4\x94\x2c\xf7\x8a\xc1\xa8\x5f\xd0\x9d\x9c\xa0\x6b\xb7\x19\x88\x1e\xdd\x41\x23\xcc\x16\x96\xbc\xc9\x9a\xe8\x28\xdd\xb7\xf0\x69\xe0\x7d\x6a\x26\xd4\x25\xbd\xa2\x97\xad\xa5\x19\x75\xe7\xdd\x67\xba\xd3\x7d\x18\xa6\xfb\xce\x0b\xe6\x50\x9c\xd0\xa7\x2c\x8d\xbe\x0f\xe7\xf4\x9a\xa5\xd1\x39\xee\x36\xd7\xf6\x74\x38\xdf\xd3\x8c\x84\xd9\x61\x32\xf0\xac\x43\x06\xec\x12\x5d\xbb\x05\x5a\xee\xf7\xb4\xfb\xee\x53\x7a\x4d\x6f\xdd\x64\x56\x2a\x77\x4d\x1d\xde\x6e\x4b\xee\x51\x88\xdf\x5b\x14\xc2\x7c\xe6\x60\xac\x48\xc4\x73\x49\x22\x5e\x16\xf3\x6d\x85\x08\xfd\xbe\x97\x9d\x92\xe3\x9c\xfb\x33\xbf\x64\xde\xdc\xa5\xa9\x9e\xa5\x6a\xae\x79\x73\xd5\x9f\x76\x87\xfb\xe1\xf9\x17\xb0\x62\xdd\xb7\x3e\x2a\x42\x91\x4a\x6e\xd8\x74\x79\x49\xf5\xa6\x04\x9f\x13\x72\x75\x2a\xe4\x86\x27\x37\xf4\xe4\xad\x24\xfd\xef\xd8\x98\x7e\xfc\xff\x14\xef\xb6\xa7\xe5\xc8\xff\xc2\x26\xd5\xd6\x9b\x52\xb5\x2a\xb6\xd9\x02\x9e\xcb\x5d\x17\x0c\x2e\xe4\xde\x76\x80\x97\xbb\xe4\xe2\x39\x2f\xd3\x2b\xbe\x80\xcd\xf9\x65\x59\xac\xd5\x44\xe9\x30\x57\x3a\x8a\x9e\x9c\x0d\x36\xb4\x0e\xde\x79\xd5\xc9\x29\x45\x39\xb1\xa7\x3a\xdb\x32\x1d\xe8\x17\x68\xc9\x1c\x17\x64\x49\x0c\xb8\x6b\x74\x52\x83\xa0\x27\x11\x0c\xb4\xb6\xa5\xb5\xb9\x69\xd5\x9c\xd7\x75\xb9\x87\xa0\x8e\x5f\xcc\x34\xbd\x1b\x0e\x15\x7b\x68\x7b\xe8\xef\xf0\x17\x92\x4e\x1f\x1f\xbf\x0b\x02\x2c\xe7\xd2\xdf\xe5\x1b\x79\x87\x5f\x54\xf4\xa6\xc5\x27\x76\x06\x54\xa7\xf7\xb6\x78\xd9\x9c\x11\x3d\x5c\xb8\x3f\x75\xa6\x3c\xe2\x2e\xd2\x33\x09\xdf\x46\x6f\xd9\x60\x12\xda\x14\xe0\x6d\x92\x34\xaf\xb0\xd5\xf8\xa9\xe0\x12\x46\xe3\xa7\xec\x1a\x54\xde\xde\xf6\xdc\xb7\x9b\x36\x38\x26\x9a\x33\x2c\xdc\x16\x29\x94\x99\x11\xa1\xa5\x4c\xf6\xdb\x4c\xc5\xa8\x2c\xe4\x93\xd4\xed\x95\x65\x84\x14\x52\x53\x58\x02\xfa\xaf\xa3\x4a\x95\xcb\x94\xe8\x0d\x35\xa1\x73\x59\xa6\x9c\x8f\xc2\x0b\xc0\x8f\x05\x8d\xfd\x7d\x13\xea\x07\x90\x4e\x57\x37\x00\x70\x42\xaa\x23\x6a\xb4\x4d\xf1\x66\xe4\x1e\x32\x57\x49\x82\x05\x45\x87\xe7\x78\x57\x6c\x45\x96\xe6\x3c\x44\x79\x91\x73\xb4\xa7\x39\xa1\x16\xc4\x15\x1d\x4f\x10\x95\xb5\x85\xa9\x94\xcb\xc2\x3e\x4b\x78\xe8\x78\x26\xf6\x7b\x3a\x27\x3d\xfb\xc3\xf3\xce\xde\xa2\x31\x08\xdd\x17\xed\x69\x0f\xd3\x4a\x7a\x99\x4c\x1d\x12\x23\x1b\x6d\x8a\xec\x76\x99\x66\x19\xc1\x1f\xd5\x32\xff\xa3\x71\x4a\x42\x5f\xc1\xfe\xbb\x2c\xca\xeb\xa4\x5c\xbc\xe3\xcb\x69\xaf\x96\xf9\x55\x10\xe0\x57\xbd\x07\x62\x3a\xf2\xf6\xaf\xec\x55\x7f\x14\x71\xed\x23\xf4\x8e\x2f\x69\xa9\x37\x1d\x93\x70\xef\x16\x73\x98\x71\x05\x67\x57\xb3\xd9\x42\xe5\x29\xb3\x1c\xda\xe1\x02\x3b\x3c\x2d\x37\xca\x53\x6f\x97\xac\x7c\xfe\x70\xce\xca\x91\x28\x68\xc6\x34\x9d\xa6\x1b\x07\x70\x49\x17\xca\xa4\x1a\x08\x2f\x5d\xb9\x89\xbb\x88\xfe\x08\x17\xf4\x82\xbd\xc1\x25\x8d\x91\x28\x60\x72\x2a\xe6\xcf\x9c\x2d\x50\x64\x5e\x94\xbc\xdd\x9a\x2d\xf1\x9c\xa6\x84\x9e\xb2\xc4\xa7\x9d\x6b\x7a\xc9\xb6\xd8\x25\xd1\xf5\x3d\xbd\x85\x12\x24\xe7\xaa\x9c\x7a\x52\xf4\xa0\x28\x29\xd3\xe4\x78\xbe\x2d\x4b\x88\xd2\x73\x1a\x81\x15\x2e\xb2\x66\xe7\x17\x74\x85\x77\x69\xf5\x4c\x65\x08\x4f\x69\x5a\xbd\x4d\x4a\x91\x26\x59\x76\x6b\x12\x2f\xe9\x4a\x96\xe7\xf1\x4a\xc9\x9e\xd0\x9d\x4e\x2c\xf2\x67\x59\xea\x7b\x5a\x72\xb2\xbb\x18\xe9\xd4\x20\xb0\x97\x98\x13\xfa\x8b\x0e\x4c\xd2\xc1\xd3\xa1\x15\x5e\x9b\x93\xc2\xcc\xe8\xb9\xc3\x8d\x32\x44\x76\x72\xa4\xd3\xb7\xfe\x08\xae\xa9\x20\x12\x96\x29\xe3\xa0\xd0\x7a\xd9\x3b\x2f\x7d\x9d\xe8\x8f\x7b\xfa\xdb\xff\x15\x71\xe4\x0b\x45\x7e\x4f\x32\xb1\x93\x4d\xae\x14\x51\x48\x0a\xca\x47\xcb\xb2\x58\x53\x7b\xd4\x4c\x68\xe1\x11\xcf\xba\x2e\x15\x44\x1f\xcc\xc8\x84\x01\xb2\xf3\x87\x55\x59\x5c\x53\xb5\xba\x3c\x69\x03\x66\x9f\x2c\xac\x31\xf9\xcc\x74\xd4\xaf\x01\x09\xfc\x02\xe5\x81\xc0\x0b\x9c\xd3\x84\x38\xed\x4b\x41\xd5\xc8\xa5\xfb\xae\xb0\xff\x45\x82\x19\xf6\xbe\x5f\x7e\x3d\x91\xfb\x4a\xfb\xf3\xa9\xf9\x56\xfb\xa1\xc4\x52\x92\xff\xe2\x5b\x3d\x70\x3d\x7f\x46\x38\x15\xb1\x9c\x62\x7b\xbc\xc0\x82\x96\xda\xa1\xa6\x87\xbe\xd2\x4f\x5f\x26\x7e\x77\x88\xce\x7d\x52\xf7\x6f\x46\x90\xd6\x62\x34\xfd\xe1\xef\x9a\x20\xec\xe9\x4f\xf7\x46\xac\xd0\x2a\x37\xd1\xc0\x9c\x49\x97\x58\xe8\x3d\x45\xd2\x9a\xba\x36\x77\x5a\x08\x31\xc1\x78\x19\x63\x9f\xac\x0d\x13\x55\x69\x03\x48\x33\x2f\xc8\xee\xd7\x7a\xef\x4d\x35\x12\x45\x7f\xee\xbe\x5d\xa2\xa7\xd1\x17\x72\x1c\xa6\x5e\x78\x1f\x73\x72\x9d\x6b\x7b\x0f\xcf\x1c\x86\x31\xc0\x44\xb9\x27\xc7\x1e\xfb\x8d\xa4\xae\x8d\xc4\x6f\x64\xe3\xbb\x8d\x33\xbe\xde\x8c\xa9\x4e\xb6\x52\x58\xce\x5c\xbf\x44\x7e\xe9\xa1\xdf\x9d\xb4\x64\xca\x3e\x29\x8f\x78\xf8\x03\x00\xb2\x9c\xa0\xe1\x0f\x38\x37\x33\xb1\x53\x7e\xab\x19\x14\x64\x4a\xd1\x96\x87\x7f\xc0\xa5\x2c\xea\x21\x92\xe2\xe6\x9e\xfe\xd2\x17\x34\x87\x3b\x39\x52\xe3\x92\x29\xe7\x72\x3e\x52\xf0\x3c\x41\x30\xc0\x7c\xb4\xe6\x22\xf9\x89\xdf\x4a\xc9\x23\xc9\x84\xbe\x9a\x8b\x32\xd3\x97\x10\x48\xef\x27\x7e\x4b\xf6\x5d\x9b\xc7\xd6\xae\x6c\x2c\x35\xbd\x65\xdf\xb1\x8a\x14\x34\x77\xf4\xbc\xf4\xce\x5e\x35\xb9\x85\x05\xe3\xc8\xad\x3b\xef\x29\x0e\x91\x77\x90\xe3\xea\x1a\xc5\xea\x20\x49\xdd\xcf\x64\x9f\x77\x8e\xdb\x44\xa1\x02\xdf\xeb\x83\x36\xaf\xf4\xb4\x15\xa2\x7b\x00\xc0\xc8\xa6\x48\x55\xd0\xdf\x2d\x33\xf1\xca\x74\xbe\x6e\xee\x79\xe5\xd9\x42\x75\xf0\x79\xb9\xf7\x45\x3f\xc3\xc3\xbf\x5b\xfd\xfc\x50\x87\x3d\x4f\x84\x5f\xba\xbc\xfd\xbb\x65\x67\x6d\xa8\x22\x05\x68\xc1\xc6\xd3\xfc\x31\x37\xc7\xb1\xc3\x61\x4e\xf4\x39\xb6\xc0\x80\xea\x93\x3b\x76\xbb\x74\x85\x6d\x1b\x0a\xa2\x2f\x3c\x23\x15\x5e\x6b\x36\x2d\x3b\x57\x85\xab\xb1\x05\x48\x15\x38\xc3\x6d\xe3\x67\xc8\x47\xc8\x7c\x1d\x52\xcc\x89\xb9\x05\x87\x49\x75\x49\x28\x64\x84\x15\xfa\x66\xa9\xf3\xe9\x3b\x26\xcc\x15\xa1\xde\x98\x2e\x3b\xa6\xf4\x7f\x5a\x54\x14\x3a\x18\x93\xd1\x56\xcc\xb1\xd7\xf4\x45\x17\x59\x79\x74\xbe\x59\x42\x4d\xe7\x9b\x25\xdb\xf1\xf5\x46\xdc\x86\x83\x09\xdd\xe6\xdb\x8a\x2f\x3e\x14\x9f\x79\x5e\x85\xf1\x4c\xdf\xbf\xca\x37\x5b\x21\x6f\x8b\x2b\x5e\x2e\xb3\xe2\x3a\x3c\x7e\x44\x21\xfc\xc7\x6b\xbe\x14\x6f\xae\x78\x19\x8e\x61\x13\x52\x19\x07\x13\x9a\x2a\x64\xaf\xd3\x22\x17\x2b\x85\x7e\xa9\x53\x5e\x16\xe5\x3a\x81\x2c\xdb\x8a\x97\x1a\x00\x4c\x81\xed\x4d\x68\x5a\x15\xf2\x07\xac\xb9\x17\x72\xc6\x48\x7e\x11\xda\xb1\xe6\x65\xba\x48\xf9\x5a\x95\x55\x2e\xe7\x8f\xfe\xf9\xe8\x11\x1c\x68\x72\xfe\x79\x91\xdc\x9e\xa6\x15\x04\x62\x0f\x07\x93\x3d\xa1\xf0\x55\xee\xf3\x57\xda\x45\xd4\x7e\x7a\x5a\xfd\x26\xab\x35\x9a\x2c\xd9\x3d\xb4\x64\xb9\x0e\x7c\x36\x6a\xd5\x7f\x10\xa0\x7a\x00\xf6\x37\xb4\x60\xc6\x0e\x7d\x74\xbe\x90\xfc\xfa\x87\x74\xcd\x31\x21\x72\x97\x32\x1d\xf6\x78\x0c\x28\x69\xd0\xcf\x70\xe5\x77\x90\x9f\xf0\xbb\xfa\x1e\x48\x6a\x7d\x1b\xa4\xd9\x5e\xf6\x5f\x52\x9d\x0a\x29\xad\x5e\x0d\x02\x3c\x10\x23\xd3\x7b\x72\x17\x35\xd7\x41\x50\x12\x15\x2a\xe6\x5c\x51\x4e\x15\x3c\x51\x11\x6f\x29\x77\x7b\xa3\x6b\x12\xfd\xd9\x61\x9d\xaa\x2c\xd1\x11\xa3\x8b\xf4\xf2\xc7\x62\x5b\x1a\xff\x5f\xbd\xc8\xd2\xea\x65\x59\xdc\xf1\x3c\x08\x5a\x09\x9e\x0b\x45\x31\x75\xc3\xc2\x0a\x6b\x05\x61\xd3\xdc\x60\x5e\x38\x0d\xe4\x12\xff\x9c\xfc\xdc\xc2\xa6\xe6\xd1\x46\xf2\x55\x84\x72\x12\xca\xdf\x76\x87\xb0\xc1\x98\x8a\x7d\xae\x5d\x1f\xdc\xfa\xaf\x8a\x35\x8f\xfa\x12\xc3\x7e\xd3\x10\x2d\xfb\xba\x98\x7d\xda\x8e\xe9\xc9\x93\x31\x20\xc6\x97\x8f\x73\x03\x44\x0d\x76\x1a\x10\x9d\xc9\x0b\x08\x18\x97\x33\x0a\xf8\x7f\x7a\x1b\xf5\x80\xe0\x61\x07\x5b\xb3\x72\xb4\x2e\xe4\xf6\xa4\x69\x52\xca\x2b\xa0\x80\xa6\x1f\x4e\x7b\x5c\x57\x12\x2c\x64\x8f\x3d\x3d\x85\x17\x55\x13\x95\x7b\x43\x3b\x95\xf5\x64\xa4\xea\x75\xf3\x02\x64\xd1\x89\x4b\x9d\x28\x09\xd2\xf9\x52\x27\x66\x3a\x31\x63\x70\xa3\x12\xd5\x5c\xd2\x4f\xd4\x0d\x73\xc9\x2a\x8f\xb8\x5b\xeb\x0c\xe2\x6e\xcd\x74\x82\xae\xbd\xfa\xf5\xc3\x33\xdb\xe4\x5f\x3f\x3c\x63\x36\x51\x65\x50\x0e\x6a\x3a\x87\x76\xf0\x77\xc9\x2a\xcf\xc6\x34\x77\xb3\x64\x72\x0e\x98\xf6\x16\xf3\x24\xe3\xa6\xd1\x70\xc3\x5c\x32\x5d\x5b\x53\x34\xe2\xb6\x19\x93\x38\xcd\x87\x43\x92\xe0\x82\x89\xb8\x64\xeb\x38\x9f\xcd\xa0\x1c\xf0\xd6\x74\x88\x6c\x20\x2a\x5e\xb2\xc1\xc4\x0d\xd3\x95\x9c\x36\xa7\x5a\xd8\xd3\x18\xfc\xe7\x0b\x30\xed\x93\x04\x06\xeb\x59\x3b\x3a\x5f\x44\x4d\xf2\x11\xca\xb9\xad\xf2\xeb\x35\x80\x2d\x28\xbd\x5f\x80\xcc\xa6\x63\xf7\x5f\x06\x01\xbe\x94\x13\xbc\x1c\x6d\x41\xbd\xe8\x39\xb2\x13\x7a\x09\xc1\xb9\x6c\xc3\x6e\x0f\x6d\xdc\x57\xea\x58\x11\x78\x13\xdb\xba\xd6\x5c\x71\xc5\x3c\xf5\x8b\x79\x3c\x8e\xc0\x93\x62\xce\xd3\x0c\x80\xfc\xc6\x21\xdc\x2f\xb3\xa2\x28\x1b\x5b\xfb\xb5\x5b\xc5\x43\x29\x97\x9a\xe9\xaf\x20\xaa\x82\x20\xad\x5e\xa6\x79\x2a\xb8\x8a\x47\x90\xb3\xa7\x30\x8c\x9e\x6d\xd2\x5d\x2b\x84\x83\x76\xe1\x48\x73\x6c\x38\x03\xe7\xb0\x42\x53\xf5\x34\xb9\xa8\xec\xd3\x63\xf7\x34\x61\x63\x8d\x24\x2f\x97\x6d\x01\xcb\x16\xe7\x41\x20\x47\x17\x00\xb3\xca\x59\x5d\x0f\xf2\x20\xb8\x86\x01\x27\x0a\x88\x51\x5e\x91\x20\x48\x5c\x68\xa7\x64\x98\xba\xf6\x9d\xcb\x0f\x84\x51\x29\x47\xd5\x76\x03\x06\x40\xcf\xf9\xa6\xe4\x4a\xcd\xf1\x7b\x52\xe6\x69\x7e\x59\x05\x81\xa7\x0a\x73\x86\x45\xf3\x22\xaf\x8a\x8c\x07\x81\xbe\x18\x5d\x27\x65\xde\xbc\xc3\xc8\x2b\xee\xe8\x5a\x95\xa7\x50\x34\xf7\xfd\xa6\x63\x96\xc6\x1c\x35\xdd\xbd\xf5\xce\x38\x60\xe5\x68\xe1\x8a\xd4\xa0\xb3\x41\xd0\x97\xaa\x18\x68\x4e\xfc\x58\xf0\x05\x4d\x59\x3c\xd3\xe7\x1c\x1d\xab\xb9\x64\x38\x84\x9a\x0a\x86\x50\x0f\x40\xb7\x7f\x18\xe2\x8a\xac\x24\xe5\x2c\x86\x0c\x9d\xe5\x31\x1a\x26\x43\x34\x3b\x42\xd4\x37\x08\x25\xc5\x90\x55\x43\x24\x3f\xdb\x4f\x8e\xab\xd9\x10\xd1\x23\x34\x2d\x58\x61\x5d\x54\x8e\x1f\x11\xe5\xee\x52\x34\x8f\x5e\x52\x13\xf0\x68\x7f\x8e\xf9\x10\x9d\xe5\x4f\xcd\x53\x59\x6c\x67\x4b\x90\xa5\x29\x42\x9e\x1a\xd1\x0f\x11\xf9\x1a\x1a\x02\xa4\x2a\x58\x7e\x91\x51\x25\x92\xf9\x67\xb9\x33\x0c\x26\xfb\x96\xf0\xd1\xd2\xf5\xec\xe1\x94\x52\x7e\xee\x07\x7a\x03\xf6\x7d\x2d\xe3\xb3\xbf\x3d\x38\xe0\xbb\x7d\x13\xf3\x59\x5d\xe3\x73\xac\xaf\xe1\x38\xc2\x16\xfd\xfa\xd0\xea\x37\xce\x7d\x1e\xeb\x6e\x92\xfe\x2e\xfb\xfe\xa2\xc9\xbe\x03\x92\x15\x27\x3e\x28\x9d\x65\x9e\x53\x60\x9f\x21\xd2\x14\xb0\xd0\x11\x2e\x25\x3b\xbd\xdb\xd3\x0d\x5c\x01\x5c\x27\x31\x37\x90\x45\x81\xaa\x0f\x80\xe5\x8e\x4a\xc3\x7c\x87\x1a\xd3\xa4\x04\x46\xdc\x03\xfd\xdc\x82\x4f\x6e\x10\x0c\x4c\x9d\xb6\x4a\x55\x15\xb4\x0e\xde\xea\x13\x1e\xde\xcb\xee\xb2\x54\x51\x83\x7d\x82\xe3\xcb\xbd\xab\x5b\x01\x41\x74\x47\x48\xc5\xba\xfb\x60\x3a\xf3\x33\xbf\xad\x22\xef\xba\x1b\xc9\x97\xe6\x46\xfa\x11\xee\x73\x24\x69\x74\x3e\x00\xd6\x7c\x53\x81\x54\x36\x26\xd2\xb3\xa6\xb2\xbc\x01\x08\x30\xfd\x53\x7e\xfe\x9f\x71\x3e\x44\x15\x92\x17\x60\x9c\x6b\x5f\xfd\xec\x89\x8f\xdd\x60\x72\xd1\x9f\x30\xcb\xfe\xec\xc0\x56\x19\x25\xb0\x2d\xe7\x77\xef\x5b\x68\xc9\x7c\x70\x42\x37\x38\x58\xb0\xcf\x38\x27\x6a\x50\x64\x3b\x1a\x70\x84\x7b\x75\x2c\xed\x7f\xd8\xf7\xea\xc3\x9e\x03\x40\x96\xab\xec\x6d\x13\xf1\x1b\xa1\xa1\xa3\xff\x92\x5f\x17\xc7\x06\xd0\xd6\xb8\x99\xf2\x27\x6c\x1c\xe5\x11\x1a\xa2\x10\xa1\x10\x1d\x23\xa2\x5e\xd9\x14\xd7\x78\x32\x76\x6e\xf5\x63\x5a\x40\xec\x0f\x0d\x91\x4c\x8c\x7b\xe4\x84\x0c\x55\xfb\xde\xb1\x13\x7c\x16\xc7\xff\x39\x8b\x67\x0f\xcf\x66\xa4\xc6\x67\x67\x24\xc2\xf1\x8f\xab\xd9\x7a\x8d\xab\x8a\x44\xf5\x69\x51\x9f\x9e\x46\xf2\x5f\xfd\xbc\xa8\x9f\x3f\x87\x3f\x91\xfc\x57\x2f\x16\x8b\x68\x11\xd5\x8b\x22\xaa\xaf\xe3\xa2\xbe\x9e\x45\xf5\xef\x71\x51\xff\x3e\x8b\xea\x5f\x8a\xa8\xfe\x04\xff\xd5\xee\x6f\xfd\xe9\x53\x7d\x79\x89\x2f\x2f\x2f\x23\x12\xd5\x3f\xfc\x80\x7f\xf8\xe1\x07\x79\xc5\xeb\x17\x75\x52\x3f\xad\x57\xab\xa8\xfe\xf1\xc7\xa8\xfe\xfc\x39\xaa\xd7\xeb\xa8\xae\xaa\xa8\x7e\xbf\x9b\xd0\xef\xf6\xf5\x4d\xfd\xb1\xbe\xbb\x8b\xea\x7f\xff\x3b\xaa\x47\xe4\xe4\x92\x7e\xec\x6d\xf8\xeb\x0f\xef\xeb\xd7\x1f\xea\xd7\xaf\x23\xf9\xaf\xce\x76\x13\xfa\xf5\x5e\x66\xff\x83\xc1\xb9\x8e\x3f\x18\xbf\xb6\x81\x39\xcb\x69\x77\xca\x94\x20\x66\x74\x4d\xb3\x21\xee\x4c\x39\xc3\x92\x1c\xf2\x20\xc0\xaf\xe4\x90\x16\xca\x22\xf5\x55\x2c\xe2\xf1\xac\x2f\xdc\xde\x5b\x5c\xf4\x13\x55\x2a\xe2\x89\x24\x14\x8f\x66\xb2\xc0\x1c\x0a\xc9\xfb\x4a\x80\xb5\xac\x58\xc0\xe7\x89\x48\x30\x19\x15\xe5\x22\xcd\x93\xec\x60\xc9\x9c\xec\x7d\x4c\xce\x96\x23\x98\xe5\xd5\x22\x2c\xd8\x4b\x40\xbc\xf0\x4b\x27\xf4\x0f\x39\xb1\xe5\x9f\xa6\x6e\xd8\x2e\x0d\x5a\x30\xae\x41\xc5\xde\x29\x0a\xa6\x1c\x1e\x0a\x6b\x7f\xfe\x38\x07\x1b\xf4\x57\x71\x11\x8b\xd9\x2c\x92\x7f\x99\xbe\x09\xe1\x06\x97\x4c\xfe\x1a\x6c\xb2\x93\xb3\x38\x3e\xab\xce\xde\xcf\x4e\x48\x54\x3a\xc5\xee\x7f\xce\xe2\xfa\x6c\xf6\x40\x29\x75\x43\xef\xc1\xd9\x99\x4a\x9b\xf6\x68\x76\x15\xb7\x95\x32\x84\x3c\x96\x49\x4b\x3a\x43\xf6\x1a\x17\x92\x2d\x8a\xe4\x5f\x2d\xec\x48\x39\x4c\xde\x9a\xc2\xd2\xfd\x5e\xee\x48\xb2\x03\xa4\xf8\x17\x36\xbb\xc7\x08\xb4\xc0\xd9\x7a\xbd\xfc\xd2\x27\x60\xdf\xf8\xaa\x3d\x2f\xca\xd8\x28\x2b\xf2\x4b\xf9\xa6\x12\x87\x15\x92\x34\xf8\x68\x7e\x04\xb0\x0a\x38\x45\x95\x5c\xfd\x13\x36\x0e\x82\x8f\xc6\x77\x51\x05\xac\x31\x5f\xff\x91\x96\x84\x36\xf2\xd3\xfc\x98\x4d\x9a\x2c\xfe\x6f\xec\xe4\x6c\x71\x42\x3f\xc9\x1f\x79\xf1\x83\xbc\xd8\x7d\xb5\x3f\xa1\x3f\xc1\xd5\xd7\xfb\x13\xfa\x0b\x3b\x89\x87\xc7\xb3\xe8\x6c\xb1\xfb\x76\x7f\x42\x1f\xa8\xbc\xd1\x09\xfd\x97\xba\xd2\x77\xff\x76\x77\x3a\x85\x73\x28\x63\x42\x65\x79\xc2\xdc\xc8\x22\x73\xee\xca\x9c\x50\x59\x6a\x09\x8f\x87\x27\xb4\x70\x8f\x86\x27\x34\xe5\xec\xe4\xdf\xb5\xbc\x97\x65\x86\x11\xb4\xf2\x32\xa5\x49\x23\x1d\x47\xa1\x7a\x44\x22\xf9\xb0\x92\x45\x8c\x8f\xbf\x9b\xed\xc6\xf4\xd1\x37\xdf\xee\xe3\xff\x95\x1c\xdf\x9d\x6d\xc7\xe3\xa7\xe3\xe3\xb3\xed\xf8\x9b\x97\x2f\xcf\xb6\xe3\xff\x19\xcb\x9b\xe7\xff\x23\x6f\x5e\x7e\x07\x37\x2f\x9f\x3f\x93\x37\xcf\x5f\xc2\xcd\xcb\xf1\xff\xc8\xbf\x13\x75\xf3\xe2\xe5\x6c\x37\x81\xd2\xea\xf8\x6c\x3b\xfe\x16\x5e\x18\x7f\xfb\xf2\xe5\xd9\x89\x79\x80\xcf\xaa\x87\x51\xf3\xa1\x79\x44\xe4\xef\xfe\x24\xa5\x73\xde\x20\x34\x19\x37\xf4\x7d\xce\x25\x99\x78\x0d\x50\xe5\xbe\x25\x98\x53\x8c\x49\x21\x26\xca\x43\xe1\x21\x08\x6f\x79\x63\xcd\x6e\xf1\x9c\x53\x4e\x22\x28\xcb\x89\xb0\xd4\x89\x86\xa1\xf2\x4b\xb8\x7c\x71\xb3\xc1\x10\x28\xdc\x4c\x16\x74\x76\x86\xa8\x8f\x3b\x78\x72\x76\x86\xcf\x62\x52\xcb\x9f\x19\xa9\xcf\x62\x1c\xff\xe7\x6c\x26\x49\x2a\x39\x9b\xc9\x54\x20\xb5\xcd\xb0\xae\x4d\x18\x0b\x51\xd7\xca\x5d\xba\xd8\x13\x42\x7c\xf5\x23\xef\x3f\x9f\x89\x8f\xcf\x4e\xce\xce\xfe\xf3\xe0\xe1\x30\x1a\x61\x52\xc7\x67\xb3\xdd\x7e\x26\x17\xf0\xd9\xd9\x83\x00\x29\xc6\x72\xd9\xec\xbf\x05\x6f\x72\x66\x02\xd6\x72\xcf\xf6\x0e\x61\xb6\x62\x3e\x23\xb4\x52\x82\x58\xd9\x0a\x71\x02\x5e\x3e\xd7\x80\x42\x40\x5b\x7a\x59\x29\x30\x2f\x79\x2c\xb7\xf0\x19\xf3\x58\xa9\x95\xae\x1c\x1a\xd1\x88\x42\xa4\xfb\x61\x74\x7e\xcd\xe4\x1f\xc0\x1d\x15\x72\x30\x47\xe7\xd7\xf0\x6c\xef\xf7\xc7\x85\x9d\x04\x9a\x0f\x0c\x82\x2d\x5e\xca\x91\x0c\x82\xa5\x1a\x4a\x9a\x8f\xce\x13\xb0\x18\x85\x5e\x58\x73\x36\xa6\xa7\x9c\x4d\xe8\x25\x67\x8f\xe8\x15\x67\x5f\xd1\x5b\xce\xbe\xa6\x4f\x39\xfb\x86\x5e\x73\xf6\x2d\xbd\xe3\xec\x7f\xe8\x39\x67\xff\xf4\xbc\x6f\xfc\x7e\xff\x20\x6f\xa2\xaf\xbe\xfd\x36\xfc\xea\xdb\x6f\x3c\x47\x99\xc6\xd8\xfc\xe3\x6b\xc6\x24\x85\xe1\xff\x98\x8c\xa5\x38\x3b\xae\x6b\xfe\x8f\xaf\xc7\x63\x99\xba\xff\x15\xa3\x4f\x88\x8e\xe9\x98\x1e\xc0\x67\xbf\xe5\x49\xe9\xa0\xd0\xf9\x63\xf6\xdd\x77\xdf\x7d\x17\x21\x34\xe4\x21\x1a\xa2\x21\x68\x1c\x7f\xc5\x63\x1a\xa3\x4f\x9f\x10\x7d\x34\x6b\x95\xe4\x6f\x6b\xaa\x28\xd9\x0a\xff\x25\xf9\xda\xd7\xf2\x35\x24\x9f\x23\xff\xc1\x27\x44\xbf\x39\xf0\xe4\x13\xa2\xdf\xd2\xc1\xd8\x7f\xfa\x0c\xab\x2b\x8a\x6e\x11\xa1\xdf\x9b\xbb\x09\xa1\x19\x87\xaf\x2c\xb8\xbe\xfc\x84\xe8\x03\xfa\xc9\xdc\xc8\x5b\xc1\xe9\x4f\xee\xfe\x13\xa2\x39\xa7\xbf\x78\x09\x36\x65\xc1\xb1\x6d\x9b\x79\x34\xa3\x6b\x0e\x4f\x74\x61\x2d\x9b\x10\x11\xaf\xf9\x8c\xa9\x70\xb0\x3a\x40\x4c\xa9\x74\xba\x1f\xae\x8b\xe7\xe9\x65\x2a\x3e\xc9\x8e\xe1\x24\x54\x33\xd7\x14\x75\xa0\xa0\xfe\x77\xed\x6b\x07\xde\x82\x77\x5e\xe5\x72\xfe\x4e\xc6\x90\xbb\xa7\x9c\xbe\x23\x49\xd9\xa6\x21\x96\x7f\x9f\x7c\xfb\xcf\x68\xf2\xdd\x78\x1c\x3e\xe2\x5f\x11\xc5\xd6\xdf\x70\xfa\x33\x67\xaf\x39\x46\x2f\xb7\x59\xf6\x09\xfa\x7b\x30\xf6\x6c\x17\x5e\x37\x69\x5b\x8f\x6d\xb5\x5a\x2d\x79\x84\xdf\x73\x13\xe1\x30\x27\x7d\x1a\x23\x83\xc2\x4a\xc2\x17\x26\xa7\x8f\xc3\xfe\x82\x1f\xe4\x7c\xf8\xe8\x7c\xa1\xa0\x7c\x86\x56\x8f\x17\xa1\x5f\x3f\x3c\x03\x14\xc2\xa1\x98\x29\xed\x96\x27\x5e\xd9\xb5\xec\x15\x63\xc3\xbb\x80\x64\xe0\x3e\x98\x81\x82\x48\x2e\x39\x3d\xc1\x89\x89\xd7\xb7\x2e\x72\xb1\x92\x2f\x3e\xfa\xce\x84\x9c\xe6\xb6\x39\xd5\x3d\xcd\xc9\xa9\x7d\x99\xfe\xc9\xfd\x5b\xe0\x50\xfe\xf2\x75\x9f\x2e\xfd\xc9\xad\x65\xa4\x3e\x15\x20\x75\xad\xae\xac\xb6\xf7\xe8\xe7\xe4\xe7\xa9\xa1\xbe\x58\xfc\x03\xe7\x6c\xf2\x88\x0c\x73\xf2\x0f\xeb\x1e\xc0\xff\xff\xcc\xbd\x0b\x77\xd3\xb8\xd6\x30\xfc\x57\x52\xbd\x43\x46\x6a\x94\x34\x69\xa1\xcc\xb8\x88\xac\x0e\xe5\x36\x43\x28\x43\x0b\x0c\x84\x9c\x2e\x37\x56\x1a\x0f\x89\x9c\x63\x2b\x2d\xa5\xce\xf9\xed\xdf\xd2\xd6\xc5\xb2\xe3\x94\x32\xe7\xf9\x9e\xf7\x5d\x5d\xab\xb1\x6e\x5b\x77\x69\xef\xad\x7d\x69\x31\x2c\xdb\x29\xd9\xe9\xed\x52\xe0\x22\xf5\xf5\xd9\xb3\xfb\x6b\xb0\xfb\x4b\xb0\xd7\x6b\xa7\xf7\x1e\xde\xdb\x5d\x7d\xe5\x6b\x9c\x6c\xa3\x0d\xb8\xc6\xcc\x36\xf1\x35\x4e\x7e\x0c\x92\x79\x20\x1f\x69\x6c\xd8\x3e\xac\x49\x62\xad\x44\xca\x91\x1a\x50\xdb\x7a\x6b\xd1\xaf\xdd\x5b\xd1\x77\x18\x0d\x10\x1d\xa2\xc1\x00\x0e\x23\x34\x48\x6a\x35\x2f\x8d\x85\x2a\x18\xd3\x56\x4f\x1f\x47\x68\xa0\x0a\x95\x8f\x42\x7e\x0b\x62\x0e\xc5\xb3\x93\x29\x38\x0a\x36\xeb\xd1\x01\xfa\x07\x90\x7c\x20\x4f\x30\x82\x48\x44\xd1\x40\x1f\x66\x26\xf8\x8b\x3e\x94\x06\x88\xfe\x64\xbe\x06\xde\x61\x06\xf5\xd6\xdb\x84\x90\x7e\x7b\xdf\xf2\x0b\xfe\xd5\x9c\x1a\xa6\xdc\x77\x0b\xfa\x65\xe0\x14\x1c\xa8\xc6\x0d\xd6\x6d\xfd\xc9\xe1\x80\xeb\x5b\xb8\xdd\x2b\x32\x0f\x74\xf6\xf5\x02\x3e\x85\x26\x2c\x8e\x63\xea\x7c\xa3\x4e\x28\xb0\x87\x28\x1c\xcf\xfe\x40\x9f\x18\x49\x5f\xd7\x93\x04\x11\x16\xa4\xf4\x7e\xa5\xd5\xd0\x41\xaf\x84\xb3\x9d\xa3\x61\x72\x34\xea\x1b\x5a\xf2\xf3\x48\x51\x93\xf9\xe7\x8c\xb4\x54\x5b\xfa\x3b\xf4\x0b\x67\xe8\xf7\x50\x2c\xc3\xf4\xfa\xec\x19\x3f\x4f\xe1\x63\x10\xa6\xe3\xe9\xd9\xe1\x22\x8d\x67\x67\x83\xf0\xfa\xec\xf7\xa5\xe0\x67\xbf\x2f\x67\xd7\x67\x87\xcb\x8b\x65\x26\xcf\x4e\xf8\x42\xf2\xf9\x39\x4f\xcf\x8e\xc7\x32\x51\xbf\xaf\x93\x4b\x1d\x71\xc4\xc7\xf0\xe1\x0c\xb4\x9d\x21\x42\x3f\xe8\x5a\x54\x0d\x0a\xb8\x02\x6d\x01\x2b\xb8\x0a\xac\x82\xa9\xa0\x29\x48\x0a\x88\x5f\xbe\x38\x50\x8f\x78\x9d\xfd\x6a\xcd\xee\x50\x03\xe7\x73\x52\x40\xec\x05\xf8\xf3\xde\x68\xc2\x63\xc2\x5a\x2c\x1b\x8e\xcc\x5b\x80\x22\x5a\x06\x75\x09\x99\x5a\x38\x95\x14\x4d\x6f\xf5\x76\x0f\x5a\xad\x94\xc4\x6c\x82\x87\xbb\x7c\x8f\xa6\x23\xb2\xa1\xcc\x30\x1d\xb1\x62\xeb\x99\xbd\x13\x03\xca\x5a\xd3\x81\xfa\x16\x55\x60\x6c\x2e\x5e\xd8\x93\x81\xd5\xa7\xce\xe9\x7e\xbb\xb7\xc5\x18\x4e\xd8\x57\xef\xf1\x6b\xbd\x99\x34\x24\xa4\x9f\x00\x43\x2f\xa8\x2f\x51\x69\x93\x5f\xe0\x1f\x56\xf6\xc3\xf5\xfc\x48\x81\x1f\xee\x76\x71\x7f\xfc\xe6\x23\xe7\xb0\xa4\xbc\x3b\xb1\x30\x91\x54\x6f\xa8\x4e\x1d\xd8\x3b\xff\xfa\x1c\xb5\x7e\xda\xd1\xe4\xad\x24\x44\xb2\x2b\xe7\x77\x12\xbc\xee\x63\xab\xad\x54\x39\x0f\xf5\xe6\x97\xc4\xab\xc5\xa9\x25\x78\xaf\x2b\xfa\x56\x55\xf7\xa4\xbd\x80\xa9\x24\xf0\xe6\x7e\xdb\x35\x89\xa0\xdf\x08\xb0\xf2\x92\x2c\xc3\x1b\xbe\xfe\xaa\xde\xc7\xbf\x39\x94\xa3\x16\x35\xb1\x2e\xe4\x0a\xdc\xc4\xc0\xd7\x98\xfe\x5b\xce\x32\x4e\xff\x52\xff\x8b\x9d\xfc\x37\xc7\x9e\x50\x26\xaf\x9c\xb9\xe6\x55\xc8\x62\x8c\xab\x82\x55\x39\x1c\xd1\x44\xfd\x8b\x1d\x0b\x16\xae\xca\xde\x2e\x70\x61\x84\xdd\x84\x72\xe4\xec\x29\xac\xed\x38\xa1\xb6\x0c\xa1\xc9\x5a\xb2\x4d\x89\x7f\x20\xc5\x07\xa9\x99\x30\x5a\x10\x8d\xab\x0a\xec\x57\xec\xbe\x4a\xad\x05\xae\xea\x82\x03\x77\x95\xd0\xc4\x84\x80\x59\xe4\x75\x6d\xf7\x3e\x64\x8e\x4d\x72\x0c\xc9\xfe\x11\x06\x57\x13\xf3\xa8\x62\xf4\x2f\x8c\x5a\xb1\x79\x0e\xc9\xd5\x74\x13\x44\x51\x8c\xec\x91\x52\xbd\x0a\xd9\x1a\xb4\x72\x46\xb8\x79\xea\x6b\x49\xee\x54\xcb\x6d\x10\xd2\x1a\x08\xc5\x7a\x7c\xc9\x0b\xaa\x5c\x9d\xf5\x7a\x27\x66\x05\x41\xd6\x03\x2f\xc9\x8f\x59\xb7\x8f\xb3\xe2\x19\x96\xb7\xee\x77\xbb\xa5\x72\xd4\xbd\x61\x82\xff\x29\x8b\xbf\x02\xbe\x0a\xcf\x07\x2e\x86\x13\x12\xf8\xa0\xca\x60\xb2\xa2\x6d\xef\x78\x81\xb4\xc5\x13\xec\xb5\xc5\xf2\xc6\x6e\x79\xae\x2a\x58\x98\x07\x62\xd8\x1d\x31\xd3\xe2\xa2\x5e\xb0\x82\xf3\xee\xf4\x89\x2f\x23\x27\x88\xd7\x0f\xd0\x0a\x7a\x77\xfa\xa4\xd4\x15\xb0\x09\xe0\x47\x72\xf3\xcc\xf6\x1d\xc8\x9e\xb0\xb3\xf3\x8d\xe3\xb1\x55\xcb\xd7\x2e\x7b\xd8\x92\x6d\x8b\x1b\xb7\xf1\xc3\x96\x1a\x09\xda\xa5\x29\x31\x4d\x3a\x0a\xaf\x31\x69\x4b\x72\xef\x61\x2b\x6d\xf7\x3c\xc6\x21\xf7\x79\x2c\x20\xc7\x0f\xce\x73\x7a\xad\x87\xdb\x58\xb6\x7b\xa4\x85\x1f\xb6\x44\x3b\x55\x05\x5f\x70\x63\x09\xda\x39\xa2\x78\xc4\xba\xfd\x90\x1d\x73\x1c\x33\xae\xf2\x66\x41\xf6\x18\xf8\x01\x7d\x15\xd3\xea\xd1\x90\x65\x6d\x88\x20\x81\x8a\x51\x61\x42\x6f\xd4\xa9\x18\xc4\x34\x0a\xaf\x8f\x27\x6a\x48\x82\xd0\xa3\x9b\xde\xaf\x23\x14\xec\x85\x7f\x96\xaa\xf3\x31\x64\xde\xbb\x39\x9c\xb9\x06\x14\x26\xed\xb8\xdd\x23\x3b\x0f\x49\xcb\xf1\x24\xc3\x47\xbd\x7e\xca\xc2\xd6\x47\x8e\x13\x66\xe1\xb4\x7b\x00\x29\x08\x1f\x7f\xac\x00\xef\xe3\x94\x85\xed\x6a\x2c\x2d\x8a\xb6\x7a\x24\xf0\x20\xd1\x94\x85\x84\xde\x5c\x71\xfe\x25\x48\x29\xf4\x2d\xf1\xfa\xf3\xb1\x32\x53\x6e\xe6\x68\x02\xdf\x2d\xdd\x10\xfb\xd0\x02\xa3\xd5\x4e\x5b\x09\xd9\x79\x58\x00\x79\x5e\x25\x26\xf5\xa3\xad\xa4\x0f\x89\x55\x79\x2b\x7c\x7f\x48\x42\x56\xef\x30\xba\x52\x64\xc7\xd5\x95\x26\x3b\xae\x12\x44\x91\x6a\x22\x70\x2d\xd0\x07\x95\xf6\xe1\x83\x4e\xfb\xa0\xd2\xe2\x2c\xf9\xa0\x93\x9f\x60\x9d\x91\xa2\x2b\x1d\xb2\x49\x14\x7d\xd0\xa8\xbf\x4e\x7e\x00\xdf\x2e\xf1\x81\xc6\xdc\xaf\x1c\x21\xa0\xaa\x76\x84\xc0\x07\x17\xad\x6a\x85\xe8\xa9\x42\xc3\xaf\x54\x35\x57\x00\x9a\xaa\xa4\x5a\x5c\x5c\x0e\xd3\xc2\xcc\x66\x8f\x58\x8e\x1a\xf4\x24\x52\x74\x0d\x8a\x54\x17\xa2\xf0\x5a\xf7\x2e\x8a\x7e\x84\xd8\x31\x52\x64\xd9\x20\x16\x15\xb2\x29\xfa\x67\x80\xea\x28\xb0\xe8\x1f\xc2\xaa\x80\xe1\x1a\x06\x32\xc9\xba\xbb\x4f\x4d\xa4\x99\x0a\x1d\xff\x04\xc3\x78\x50\x14\x15\x53\xaa\x23\x78\x69\x56\x75\xdc\x53\x3d\xb1\x10\xe8\xf5\xdc\x24\xfb\x61\x3f\x7f\xcf\xf0\xb0\x22\x37\xab\xdc\x7d\x3d\x75\x5f\xaa\xc7\x9b\x48\x38\x6f\xd0\xab\xb4\x5f\x74\x97\x72\xb5\x54\x63\x74\xa7\xa2\x7e\x29\x58\x83\xaa\x90\xae\x55\x43\xb8\x13\x3d\x68\xa1\xdd\x4e\x11\x76\xa2\x0a\x3d\x68\x86\x50\x0b\x46\xea\xda\x61\x4a\xd4\x14\x6c\x5a\xfb\x6e\xbd\x6b\xcb\xbb\x9c\xa1\x93\xa5\x88\xc2\xeb\xb3\x41\x02\x3f\xa7\x4b\x9e\xa9\xdf\x0f\x3c\x12\xfa\xeb\x74\xba\x4c\xe1\xe3\x59\x1a\xab\x9f\x93\x50\x2e\x53\x35\x73\x3e\x09\xf8\xa7\x06\xa4\xa0\x28\x10\xaa\xb8\x2a\xa8\xca\xa8\x02\xa5\xbc\x3f\x41\xde\xb3\x41\x72\x76\xba\x3c\xfb\xc0\xcf\x4e\xa7\x67\xcf\xd2\xb3\x93\xb0\x9e\x26\xfc\xfd\x1f\xd1\x84\xa5\x11\xf5\xa8\xc2\x52\x7c\x85\xfc\xfb\x50\x9f\x36\x8f\xc5\x5a\x8a\x26\x0d\x1f\x96\x29\xc3\xde\x88\xa8\xbb\x03\xa7\x64\x43\x49\x47\xdc\xf9\xa7\xc4\xf7\x08\xc4\xf5\xa6\xad\x81\xb9\x1b\xa5\x79\x75\x2b\x8c\x3b\x51\x9a\xb0\xa2\x6f\xa1\xfe\x4a\x55\x94\xc8\xc6\xef\x14\x5c\xef\xe4\xf7\x89\xc1\xea\xe8\x56\xeb\xfb\xe1\x96\xfe\x60\xd3\xfe\x59\xab\xfe\xd1\x28\xfc\xb7\x7d\xb8\xad\x51\x3f\x54\xe2\xff\xb7\xc1\x04\xb2\x5c\x6d\xf0\x4f\x40\x4d\x72\xa9\xfe\x4b\x59\xa2\x29\x85\xfc\x47\x34\xa5\x39\x31\x86\x23\x9a\xa9\x7f\x63\xf5\x6f\x56\x26\x2f\x1f\x96\xa9\x4b\xbb\x91\x25\x31\x3e\x7a\x4a\x1b\x16\x88\x41\x9a\xd4\x6d\x41\x9d\x14\x57\x76\x96\x8e\x0d\x35\x6d\x99\x12\x9a\x59\x19\x38\x3a\xd6\x5f\x31\xa1\x33\x97\x3a\x73\xa9\x33\x9b\xaa\x3d\x2d\x3b\x22\x33\x73\x5f\x63\xf7\x35\xab\x90\xa0\xba\x47\x99\x21\x2a\x33\xa0\x40\xc7\x26\x34\x86\xd0\xcc\x84\x66\x1e\xc1\x59\xba\xd5\xd6\x48\xb9\xd9\x66\x62\x70\xfd\x26\x65\x35\x10\x2b\x99\xed\x75\x7d\x87\xac\xb7\x51\x98\xe3\x3b\x36\xeb\x36\x18\xd9\xf7\x61\x0c\x62\x71\x1b\x84\xf0\x56\x3a\x37\x95\x15\xee\xfc\x34\x59\xa6\x19\x26\xf7\x7a\xbb\x79\xde\xdb\xf5\x54\xa2\xa4\x5e\xd6\xef\x80\xe2\xda\xfc\xda\x58\xe6\x28\x19\x2d\x03\xec\x83\xd6\xcd\x9f\xc7\x62\x29\x39\x04\xcb\x2f\xba\xb1\xac\xec\x9f\x33\x0b\x05\xb6\xa5\xc2\xf9\x5f\x28\xbc\xfe\xc5\x0b\xf3\xee\x89\x14\x5c\x8d\x23\x4e\x55\xc2\x74\x6a\x12\x52\x09\x91\x5f\x54\xe4\x97\x2f\xdf\x79\x25\x35\x8d\xcb\xf3\xdd\xfb\x06\x0b\x9d\xce\xe7\xeb\x4f\xb4\x46\x06\x0e\xb5\x52\x5f\x8e\x93\xb4\xde\xe0\x4a\xaf\x76\x49\x01\x26\xcb\xfe\x2b\x40\x36\x2e\xe3\xe3\x44\x44\x25\xe0\x2f\x6e\x6d\xa3\xdf\xb1\x5b\x5a\xf8\xe2\x3b\x2d\xfc\x1e\x98\x4d\xed\x4b\xb4\xb2\x38\x38\xc1\x92\x18\x1d\x22\xba\xd5\x03\xa4\x1c\x26\x8c\xa2\xa9\x46\xc7\x75\xa8\xb7\xa7\xb1\xdb\x10\xd1\x58\xea\xcf\xc3\xe2\xf3\x85\x43\xb7\xa7\xee\xeb\x8b\xfb\x52\x4b\xc1\xd1\x60\x6a\xfa\x5d\x40\x4d\x7b\x91\xa2\x06\xeb\x77\xf7\xad\xfa\xfc\xc9\x00\xf0\x52\x5e\xb8\x14\x78\x41\x79\x81\xa8\x82\x3f\xa2\x97\xdc\xc4\x28\x12\xf1\xcb\x97\x75\x3c\xd6\x92\xbe\x0a\x8d\x3d\x90\xc3\x4b\x3e\x62\xbb\xf7\xe1\xcd\xae\x1b\xa4\xee\x45\x26\x44\x14\x1d\xd6\x15\x16\x9d\xb3\x38\x7b\x33\xf7\x90\xef\x38\x7b\x03\xde\x10\x44\xb1\x05\x34\x46\x0d\x80\xa6\x6a\x04\xa7\x75\x90\x74\xdd\x60\x46\x18\x90\x72\xa3\x8f\xc3\xb6\xba\xf6\xb9\x1a\x46\x62\x43\xf3\x9d\x68\xfc\xee\x81\x03\x54\xd0\xa5\x29\x21\x54\x0e\xaf\xcb\xd1\x60\x1c\x6a\x63\x4d\x6a\x34\xbf\x57\xd7\x7d\x60\x3c\xfc\x78\xc5\x74\x17\xa2\x0f\xcb\xd1\xc9\xe6\xf6\xbc\xf8\x1f\xef\xb9\x07\xf9\xff\x4a\x4f\x2d\xc5\x14\x4a\x9a\x49\x10\x0a\x50\x5d\xce\xf4\xbe\x1b\x4b\x76\xa3\xd6\x92\x88\xc2\x34\xb8\xc9\xc2\x39\x3f\x0a\xaf\x03\x34\x3c\x4d\xa2\xf0\xba\x11\xca\x51\xe3\xd5\x29\xa2\x82\x7f\x95\x36\x7e\x9e\xa4\x69\x72\x55\x4a\x52\x68\x91\x46\x5c\x1b\x43\x1b\x3f\x0b\x33\x53\xe4\x23\xcf\x24\x4f\x7d\x70\x2a\x4d\x97\x19\xbe\x0a\x33\x39\x6a\x94\x8b\xaa\x56\x3c\x9d\x65\x3c\x40\xaf\xd0\x8a\x96\xa5\xf5\x82\x9b\x57\xa7\x27\x01\x9a\x06\xf3\x79\x90\x65\x8d\x43\x44\x5f\x9d\xea\x20\x7c\x07\x68\x30\xd8\x39\x3a\xda\xd1\x02\x1f\xaf\x20\x3c\x18\x34\x8e\x68\xc3\xc6\x54\xa2\x1a\xae\x28\x24\xa9\x86\xd0\x46\x5d\x86\x15\xf5\x64\x0e\x03\x64\x54\xc5\x1a\x91\x36\x67\xae\x65\x41\x03\x74\x2f\x42\x9a\x9f\x07\xcf\x0c\xc7\x3a\x1a\xae\xa5\x40\xcb\xe7\xed\x82\x34\x9e\x76\xfd\x79\x1a\xcf\x79\x70\x33\x59\xca\x65\xca\x03\x14\x8b\xc6\xbd\x0c\xd1\x45\x98\xc9\x00\xdd\xcb\x1a\xe1\x45\x82\x68\x16\xa0\xb0\x31\xe1\x57\x0d\x73\x74\x22\x9a\x65\xaa\x96\x22\x3c\x57\x39\xf4\x61\x8b\xe8\x7c\x0e\x89\xe6\xec\x45\x74\x1a\xa0\x50\x34\xf4\xf9\x39\x9d\x42\xda\x54\xcf\x7d\xa4\x8a\x01\x13\x23\x8a\x20\x5e\x21\x0a\x88\x0e\x00\x9a\x7e\xd2\x1e\x0c\x34\x30\xe0\x96\x23\x7a\xad\x92\xb4\xe8\xce\xf5\x35\xa4\xa8\x40\x86\x56\x54\xe7\x08\xbe\x70\xea\x71\xd6\x83\x0f\x1c\x94\x2e\x83\x9b\x28\xb9\x0a\xba\x34\x4a\xae\x83\xfd\x95\xd5\xc3\xcc\x82\x3f\x38\xf5\xf0\x93\xe0\xa7\x22\xa8\x8b\xff\xc9\x69\xe9\x5a\x0f\x76\x86\xe1\x62\xf4\xb9\xd3\x9f\xf7\x3f\x77\xfa\x3b\xf1\x8a\xce\x24\xbb\x59\xd1\xa5\x2c\xc9\xac\x2d\x64\xc9\x02\x6b\x45\xde\xbc\x90\xc8\x3b\x43\x14\xb5\x11\x09\x7c\x6d\x59\x89\x9d\xec\xa8\x35\x46\xb0\x35\x93\x43\x39\xda\xa0\x7d\xc3\x9b\x4d\xb0\x36\x65\x34\xcd\x89\x4c\xaf\x6f\x04\x0b\x65\xe7\x2c\x3c\x3f\x4f\x3d\x6f\x14\x56\x70\xcb\xe9\x7d\x38\x13\xc8\x93\x58\xa8\x11\x8e\x96\x33\xde\xf8\xd9\xd5\xf1\x33\x52\x68\x2d\x58\x21\xed\x8c\x93\x88\x33\x34\x38\x3e\x7a\xf7\xea\xe9\xd9\xeb\xe3\xd3\xb3\x67\xc7\xef\x5e\x1f\x21\xca\x57\x98\xd0\x48\x62\x61\xcd\xc7\xa7\xe4\xc6\x6a\x90\x40\xa3\x3d\xb5\x5e\xe9\x3f\x15\x16\x02\x8f\x18\x0b\x16\x82\x67\x0c\xb0\x13\x39\xd5\xd9\x48\x3f\x94\x4c\x04\xff\x5c\xdf\x48\x93\xe1\x0d\xd4\xe2\x2d\x04\x56\x8a\x27\xc9\x52\x44\x9d\xc6\x51\x1c\x35\xae\x93\x65\x63\x92\xa4\xe0\xee\x20\x69\x80\xc7\xff\x58\xf6\x11\x21\xd4\x0e\x9b\x27\x01\x28\x4b\xb6\xc3\xc0\x7a\xb2\x93\x45\x1c\x4b\x6d\x2b\x42\x15\x61\xdc\x28\x92\xce\xe4\x90\x8f\xc8\x6b\x8c\x74\xcb\x75\x43\x8e\x2f\x79\x9a\xc6\x11\x47\x14\xd4\xff\xb5\xb2\xa4\x79\x2b\xd4\x39\xb0\xbe\x4e\x5f\x87\x73\x4e\x1b\xda\xda\x31\x51\xcd\x33\x1e\xe0\x42\xd1\xe0\x5f\xe3\x4c\xc6\xe2\xa2\x61\x2e\x5e\x0b\xc5\xaf\xa7\x16\x8a\x36\xbe\xd5\x48\xc4\xec\xba\x71\xce\x1b\xcb\x8c\x47\xaa\xff\x0d\x30\xb6\xa1\x00\x86\x60\xe7\x43\x17\x6d\x9c\x70\xde\x98\x4a\xb9\x08\x76\x76\x74\x05\x7f\x67\x9d\x71\x32\xdf\xb9\x58\xc6\x11\xcf\x76\xfe\xcf\x8e\x51\xdf\xca\x76\x74\xc5\x6d\x5d\x6e\x07\x40\xce\x93\x94\x37\x62\x31\x49\x3a\xe0\x06\x07\xc6\xa2\x73\xa6\x1b\xe2\x5e\x75\xad\xc3\x5d\xed\xcd\x54\x37\x9c\xb8\x78\xb5\x6e\x4a\x49\x23\x92\xd6\x44\x96\xa0\x16\x0a\xd3\x58\x30\xb5\x85\xca\xb0\xdd\x23\xf1\x72\x0d\x4c\x9e\xe3\xf5\x48\x36\x1c\x11\xba\x1e\x6d\xcc\xd3\x1b\x3b\xfe\xba\xfa\x40\xae\xb4\x06\xf1\x41\xaa\x70\x22\x1d\xe9\x6d\x01\x3e\x82\x0d\x77\x82\x9f\x62\xd0\xa0\x55\x60\xf9\xa8\xd9\x84\x9f\x7a\x27\x08\x6a\xc9\x75\xc0\xc0\x11\x58\x30\x53\x53\x08\xb7\xb7\x26\x54\x55\x39\x0b\xdf\xe8\x0f\x41\x1c\x2d\xbf\xcc\xc3\x6e\xf2\x5e\xdf\xd4\x11\x61\x30\x36\xef\x53\xaf\x76\x90\x9c\xad\xc4\x11\xba\xe5\x44\xa8\x42\x00\xb1\x95\x60\x4e\xb4\x2f\x5e\x35\xc4\x85\x3a\xb4\x3c\x00\xb9\xdb\x55\x55\x8c\xcf\x57\x41\xb6\x8c\x04\xd6\x3d\x88\x0b\xb1\x5b\x62\xdc\xec\xe2\x84\xa9\x23\x73\x18\x8f\x9c\xcf\x98\x36\x72\xde\xb1\xa9\x50\xb3\xaa\x33\xb4\x7a\x23\x42\xfa\xc2\xcb\x05\xac\x8f\x03\xf9\xb8\x7b\x00\x6d\x4b\x55\xdb\x12\xef\xf9\xc5\xd0\x95\x0a\x9e\x73\x81\xa7\xba\x23\x9a\x4d\x61\x95\x68\x99\x6c\x36\xbf\xe1\x84\x0a\x85\x8d\x3c\x66\xb2\xdd\x23\xe0\x15\xea\x40\xb6\xdb\xab\xb8\xd5\x5a\xb9\x81\x58\x95\x94\xc6\xe6\xd2\x57\x7a\x52\x23\xe7\x98\x7d\xcd\x66\x7b\x97\x31\xd0\xd6\x77\x7a\xf5\xa0\x33\x24\x86\x03\x3e\x7a\xd4\xcd\x73\xf8\x78\xdc\xeb\xf5\x07\x3c\x10\xc3\x0b\x3e\x7a\xd4\x53\x91\x17\x7c\xf4\xf8\xdf\x1c\x8b\xe1\x5c\xcd\xa9\xca\x43\xfa\x17\x2a\xc7\xa5\x2d\x76\xc9\x47\x8f\x77\xef\x2b\x12\x90\x31\x06\xc1\x66\x13\x77\xb7\xd4\xf7\xb5\x5a\xd0\xfa\xf3\xb0\xf8\xbc\x52\x30\x2e\x15\x8c\x6b\x0b\xe3\x9a\x8f\x1e\x3f\xf8\xb5\x7f\xad\x22\x0f\x6d\xe4\xa1\x8e\x3c\x54\x91\x57\x36\xf2\x8a\x8f\x1e\xff\xfa\xeb\xaf\xfd\x2b\x1e\xb4\x7b\x14\xfa\x73\x66\x3b\x74\x64\x5f\xfa\x54\xcf\x1e\xcd\x79\x9e\xcb\xc7\x17\x5c\xeb\x46\x5d\x00\x5e\xef\xe7\x56\xc8\x56\xd6\x6c\x82\x27\x30\x09\x79\xbe\xd5\xe6\x01\x8b\x02\x5e\xae\x33\x9b\xcb\x66\x62\xb2\x24\x94\x31\x90\x15\xb7\x8b\x56\x30\x83\x5b\xad\xbb\xbe\x0c\x3c\x6d\xdc\x0b\x7f\xd6\xac\x3f\x75\x36\x1c\x19\xf9\x95\xb3\x48\x2f\xcb\xa4\xc6\x8c\xa8\x7b\x24\x4e\xb5\x07\x96\x42\xf4\xb9\x73\xb6\xcc\xf8\xbb\xd3\x27\xfd\xe1\xfa\xc3\x33\xb5\x51\x03\x23\xb6\x29\xdd\x43\xb0\x04\xfd\x33\x5d\xa6\x5a\xa0\x94\xdb\x64\x55\xeb\x8f\xf2\xce\xd9\x95\x56\x77\x06\x03\x11\xa1\x5a\x33\xa5\xf0\x40\x85\x37\x28\xec\x58\xf7\xf1\x07\xee\xc0\x05\x11\x9b\xb3\x2b\xd2\x79\xfe\xdc\x6a\x53\xcb\xce\x87\xe2\xf3\x29\x89\x59\x8f\x86\xec\x3e\x15\x6c\xa0\xce\xd6\xe7\xcf\x29\x54\xa3\x56\xe8\x7b\x8e\x9f\x48\x4c\x68\x8f\xde\x27\xf0\x06\xab\x8e\x7d\xc8\xf5\x81\xf6\x08\xc5\x38\xd1\xa1\xa7\xb4\x47\x88\x5a\xe1\xc9\xe3\x87\x6a\x81\x8c\xd9\x56\xd7\xb8\xda\x8e\xfd\xb3\x47\xe1\x5f\x9d\x28\xb9\x82\x37\x8a\x6a\xec\xf5\x81\x76\x60\x66\x2b\x8d\x69\x48\x0e\x4c\xa3\x2e\x2e\x8a\x46\xcd\xca\x2d\xb9\xa2\x33\xe0\x26\x16\xae\xde\xa3\xbe\x6a\x98\xec\x44\x44\x2d\xf2\xe4\xf1\xbe\x6b\x92\x5d\x32\x1d\xde\x87\x1c\xbc\x15\x53\x2c\x3b\x5c\xe5\x93\x1d\xee\xe5\x24\x41\xc2\xe2\x55\xaa\xfa\x94\x3e\xfe\xc8\xb1\x80\xe6\xf4\x6b\xd6\x3c\xdb\xea\x1a\xb0\xe3\x9a\xe4\x28\xbc\x56\x19\x70\xc6\x9e\x29\x20\x4e\x94\xc2\xf6\x86\x69\xd9\x78\x90\x59\xb2\xfb\x8d\x65\xc5\x2b\x3b\x81\x35\x51\xa8\xe6\x7b\x7b\x32\x54\xfd\x77\xa3\x92\xa8\xff\x84\x62\x3f\xd3\xe3\x63\x8e\x43\x92\xe7\xda\x08\x52\x11\xaf\x7a\xb9\x61\xaf\xab\xbe\x53\xc1\xde\x71\x1c\xd2\x6e\xa9\x55\xa6\xcd\x03\x75\xe7\x55\x56\xbc\x5d\xa6\x2e\x41\xaf\x67\xcb\x6e\xdd\x2b\x2d\x5f\x39\x02\x79\x5e\xf3\xcd\x80\x0b\x9b\x58\xaf\x25\x8e\x39\x5b\x4a\x2e\x95\xee\xef\xc2\x23\x41\x2f\xe8\x06\x16\x1e\x9c\x95\x10\x80\xe3\xb2\x6b\x43\xd7\xa5\xd0\x61\x29\x74\x05\x07\x2b\xef\x9c\x19\xc2\x53\x9b\x5a\xd7\x20\x58\x57\x0b\x91\x31\x5c\xec\xfc\x77\x3c\x78\xc9\x89\x2f\x36\x92\x11\xb0\x4c\x67\x33\x58\x9b\x09\x56\x04\x24\xb0\x11\x10\x2a\xa6\x50\x7e\x9b\xc3\x1d\x1d\x19\x69\x95\x81\xe1\x62\x79\xe5\x6d\x14\x69\x73\x63\x91\xa2\x68\xa7\x6e\x74\x68\x58\x3b\xf6\xb8\xa8\x27\x1e\x3a\x67\x57\x9d\x08\x2a\xbb\xea\x44\x5b\x8c\xc5\x76\xde\x2b\xe6\x5c\x40\x21\x1b\xde\x04\x2e\x25\xdb\xf9\xd7\xe7\x6c\x1b\xe3\x7e\xa0\x95\xb3\x6e\xf6\x57\x39\xe8\x91\x91\x36\xee\x07\x9f\xa3\xcf\x51\x5b\xfd\xcb\x3f\x98\x4f\xfd\x91\x6b\x9d\x31\xf8\x21\x04\xf7\x03\x7c\x9a\x37\x08\xb6\xba\x5d\x95\xdf\x61\x87\x8e\x3e\x47\x2d\xd2\x87\x3f\x3c\xfc\xdc\xfa\xbc\xa6\x07\x96\x7f\xce\xb6\x3f\xa9\xf4\x9f\x76\xe8\xf5\x2d\xad\x32\x8d\x2a\xda\x74\xb7\x26\x95\x7f\x7e\xb4\x41\x87\x72\x93\xf6\x1a\xbd\x92\x6c\x68\x15\x55\xda\x83\x41\xfb\xe8\x08\xd1\x1d\xd7\xe8\xb6\x1b\xc0\x9d\x91\xd1\x67\x71\x99\xa0\x3f\x95\x0c\xcf\x9f\x3f\x7f\xde\x1e\x7e\x18\x7d\xf8\xd0\x7e\xea\xb2\xd8\xa1\xaf\xe4\x28\xa7\xef\xd0\xad\x9e\xab\xe2\xa8\x54\xc1\xcd\xde\xca\xaf\xbd\x54\xb5\x5f\xec\xe3\xc7\xc1\xc0\x6f\x7e\xaf\x5b\x94\x33\x29\x9f\xa3\x9b\x5f\x56\xae\x1d\xd0\x0c\xd7\xce\x0f\x45\x4d\x2e\xd1\x4f\xdb\x5d\xf9\x95\xb9\x26\x3e\x5c\xed\x8c\x46\xf4\x1b\x0c\xe3\x8b\x17\x9a\x09\xd3\x39\x39\x39\x39\x81\xe4\xcf\x51\xe0\xfe\x7d\xee\x7c\x8e\x5a\x00\xdf\xe6\xa3\xb5\xf9\x68\x35\xdb\x5a\x8e\x22\xd5\x4f\x32\xb1\xf3\x79\xb9\x01\xee\xcf\xab\x5e\xe5\xa1\x35\x79\x68\x39\x4b\x25\xd5\xa5\x78\xf1\x26\xce\xc4\xa8\xa1\x38\x83\xd5\xbf\xd3\x57\x87\xea\x67\x8c\x3f\xb7\xfb\x6a\xa9\xee\xc4\x9e\x62\x98\xac\x45\x03\xc0\x5a\x0a\x1d\xb3\x4b\xa9\xfd\x6c\x66\x24\xcf\xaf\xdd\xb7\x42\x11\xc6\x1a\x19\x82\x33\x21\xce\x12\xb0\x48\x04\x2a\xbe\x57\xb2\xaa\xe3\x1b\x4f\xf0\x95\xa2\xf9\x87\xbd\x91\x86\x30\x1e\x2a\x6c\xfd\x26\x61\x3a\xba\x3b\xa2\x29\xdb\xea\x6d\x31\x13\xde\x1d\x15\xfe\x64\xf5\xf9\x9d\x10\xcf\x36\x1c\xf6\x8c\x2c\x6d\xf5\x74\x63\x86\x7b\x23\x4b\x33\xa8\x36\x7c\xab\x6b\xc3\xb7\x4a\x1b\xf6\x54\x1b\x62\x86\xc7\xc3\xdd\x51\x9e\xa3\x06\x22\xad\x6f\xa6\x3d\xd5\xfa\xe3\x5b\xea\x07\x17\xb3\xa9\xb5\x32\x73\x5b\x4e\xdd\xd2\xfb\x23\x6d\x5a\xf2\x50\xda\x86\xdc\x1f\x91\xdb\x4a\x85\x0c\x7d\x42\x2b\xb0\x5b\x94\xb4\x70\x9c\xe7\x08\x91\x16\x0e\xe1\x97\x3e\x95\x4e\x54\xb1\x54\x4c\x9b\xe2\x50\xd3\xaf\x8e\xaf\x41\x22\xf2\xd3\x25\xcf\x3f\xf0\x28\x3f\x9d\x2e\xf3\x67\x69\x9c\x9f\x84\x32\x3f\x59\x0a\x42\xfb\x9f\x33\xd2\xc7\x86\xff\x47\x3e\x67\xf8\xf7\x50\xe4\xcf\xf8\x79\x3e\x08\xd3\xfc\x70\x91\xe6\x83\xf0\x3a\xff\x7d\x29\xf2\xdf\x97\xb3\xfc\x70\x79\x91\x9f\xf0\x45\x7e\x3c\x96\xf9\xeb\xe4\x32\x3f\xe2\x63\x55\x44\xed\x49\x7a\x7f\xa5\x3f\x3f\x47\x24\xd0\x3f\xea\x78\xd3\x5f\xa4\xff\x39\x53\x2d\x79\x77\x9a\x3f\x1f\x9c\xe6\xc3\xa7\x4f\x06\x6f\x46\xc3\x93\xa3\xd1\x29\xc9\xf1\xf0\xd3\xb7\x91\xfa\xd1\x67\xc5\xfd\x15\x21\x3f\xed\x14\x4b\xf4\x6b\xb1\x44\x2b\x0a\x69\x4e\xe4\xf2\x11\xbb\xff\x6b\x7f\x97\xef\xb5\x64\x20\x41\xd7\x10\x54\xce\x54\x08\xc6\xe1\xb5\x64\x37\xef\x4e\x83\x2e\x7d\x3e\x50\xff\x9f\x1e\x9d\x06\xed\xdd\xfb\x5d\xfa\xf4\xe4\x34\x68\xef\x75\xbb\xf4\xc9\x91\xfd\x80\x98\xfd\x2e\x1d\x1c\xd9\x0f\x15\x73\x7f\xb7\x4b\xdf\x1c\xd9\x0f\x88\xf9\xa5\xeb\xf1\xf5\x5e\x79\x4d\x3c\x35\xf3\xaa\xa6\xc3\x53\xa9\xc5\xc3\x7f\x91\xd1\xf6\x67\x92\x0f\x3f\x8b\xcf\x12\x74\x5b\x1b\xbe\xce\x2d\xfe\x9c\x7d\xce\x5a\x64\x2d\xfe\x5f\x2a\x7e\x7b\xa7\xa2\xa0\xab\xe2\xb4\x8b\x09\x58\x55\x35\xd6\x41\x0b\xf1\x5b\x6b\xbc\x79\x08\x03\x49\x3f\x38\x25\x2a\x2c\x09\x75\x03\x2a\xd4\x80\x16\xc1\xb4\x1c\x4c\x54\xb0\x50\x7f\x6f\x36\xcd\xab\xbb\xcb\x10\xab\x0c\x84\x86\x2b\x2c\x87\xf7\x47\x54\x0e\xf7\xb4\xe1\x02\x2a\x87\x0f\xd4\xbf\x7d\xf5\xef\xe1\x48\x8b\x12\x55\xdf\x18\xac\x11\xce\x3c\xff\xb3\x68\x1c\x27\x8a\x8a\xb5\x74\x95\x54\xa7\x44\x61\x0e\xc1\x21\x47\x79\x8e\xe1\xa9\x64\x1d\x2d\xa1\xc2\xdf\x0f\x54\xed\x54\x0c\x00\xc0\xf9\x8a\xae\xf2\x40\xe1\x43\x4c\x50\x63\xc4\xab\xda\xae\x58\xb5\xc2\x2a\xbb\xc9\x21\x1f\xe9\xb1\xb6\x46\x9e\x8c\xeb\xf2\xca\x10\x26\x2c\xbd\xd7\xeb\x5a\x2b\x45\x38\x6d\x27\x64\xa7\xd7\xed\x6e\xef\x77\x5b\x89\x6a\xc1\x2f\xaa\x0b\xbf\x42\x67\xba\x23\x83\x2c\xbe\xe3\x3e\x76\xa8\x1a\xa5\x13\x7e\x04\xcf\x83\x93\xd8\xd8\x14\x64\x5b\xdd\xba\x33\xa1\x50\x7b\x94\xc6\x98\xa0\x3a\x55\xb6\x18\x4b\x3b\x2f\x4f\x8e\xcf\x7e\xd9\xef\xf6\x88\x1f\xf9\xf6\xd9\x93\x33\x05\x8e\xdc\xc0\x38\x0d\x47\xba\x12\xb0\xff\x67\x1d\x7c\xfa\xa4\x32\x42\x2d\x73\x6f\x38\xdf\x11\x33\x63\x96\x2a\x61\xcf\x00\x2e\x75\xc4\x1b\x71\xf6\x21\xf2\x7c\x38\x32\xf8\x7e\xe2\xfb\x27\x8c\x01\xb9\xa7\x58\x30\x9c\x99\xcc\x4b\x8e\x63\x35\x7d\xaa\x08\x19\x76\xc1\xf2\x0d\x0e\x59\x56\x3c\x3f\x65\x6e\x01\x09\xe2\x38\x45\x8f\xbb\xcd\x26\x34\xdd\xb3\x04\xa9\x17\x70\x48\x68\xa6\x8a\x03\x5b\xc8\x2f\xdb\x12\xce\xb4\xd6\xac\xc5\x8a\xc0\xcb\x61\x3c\xea\x63\xd1\xf7\x47\xa2\x17\x78\xc0\x8d\x61\x41\x2b\x80\x72\xae\x5a\x0c\x4b\x2e\xf0\x8c\x14\x6e\x89\x52\x83\xca\x65\x0e\x20\xa5\x64\xbb\x90\x8d\xdb\x33\x9a\x7d\xb7\x37\x19\x71\x84\xc8\x23\xd6\xdb\x6d\x36\xb7\xba\x96\xd7\x64\xde\x12\x01\xa5\x87\x0c\x0a\x0a\xf6\x93\x98\x75\x03\x03\x91\x15\xf3\x91\x40\xf9\x58\xee\x99\xc9\x52\xbc\xea\x16\x2f\xbc\x05\x21\x54\xfb\x90\x78\x50\xb2\xdf\x29\xfa\x32\xb0\xc4\x8d\x05\xa0\x5a\xd2\x2f\x07\x41\xdb\xc6\x65\x8c\xb3\x37\x83\x3e\xc6\xa9\xf9\xd4\x96\x76\xe4\x23\xd5\x5b\x2c\x5b\xac\xb7\x4b\x68\x9a\xe7\xbd\x5d\x45\xcc\xe4\xb9\x42\x08\x08\x95\x24\x90\xab\xc2\x60\x9e\x6b\x24\xf5\x5a\x4e\x28\xf0\x7f\xe8\xbc\xb8\x51\xe1\x58\xd7\xdc\x69\xc0\x93\x3c\x5d\x5f\xe9\xbb\x90\x39\xd3\x1e\x64\xce\x26\x1e\xd7\xc7\x98\xe6\x73\x5f\x79\x7e\x0e\x24\xf7\x4c\xd3\x73\x0c\x5a\xe7\xac\x4e\x8a\x66\x13\x69\x09\xb6\x73\x7c\xe3\xd9\x20\xed\xae\x48\x50\xa7\x22\xa5\x49\xb9\x98\x49\x8f\x19\xb2\x48\xf9\xc2\x2a\x3f\xd1\x6b\x2c\x49\x5f\x9d\x9e\x97\x78\x0e\x0a\x54\x01\x1e\x83\xf7\x70\x75\xdc\xc8\x20\xc1\x82\xf4\x37\x32\x82\xd4\x31\x67\xa8\xdd\x89\x5d\xf8\x96\xb3\x0c\xf8\x9e\x6f\xb0\x53\x1d\xb5\x16\x6d\xa9\x5a\xf4\x33\x5b\xbf\x7b\x90\x3c\xf2\x60\x1d\x24\xb0\xb9\x15\xc2\x38\xd0\xe6\xb4\x0a\x12\x57\x53\xc4\x6a\x2a\xed\x77\x11\x4b\xa8\x54\x48\x90\x82\x34\x4c\x46\x0a\xf5\x91\x84\x4e\xb5\x4d\x87\xb8\x05\x46\x12\xcb\xbb\x86\xc6\x2d\xd6\xeb\x6e\x6b\x0b\x9a\xeb\x56\x3f\x29\x24\x80\x6b\x73\x16\x53\x83\xea\xa5\x79\x1e\x3f\x4a\xb5\x99\x08\x35\xad\x92\x90\x83\x05\xe6\x54\xe4\xb9\x04\x8e\x4a\x20\xfa\x70\x7c\xae\xab\x20\xc3\x4a\x38\x08\xdd\x30\xaf\x31\x05\x83\xf1\x7a\x9a\xb3\x8d\xab\xd2\x6b\x66\x7a\x7d\x96\xd8\x99\x87\x61\x68\x31\x66\x58\x39\x18\xd6\xa8\x36\xa2\x58\x9c\xfb\x6a\x93\xeb\xd7\x80\x22\x8e\xbe\xba\x73\xce\xd4\x58\x5e\x7f\x96\x26\x73\x58\x93\xcf\xc2\xd9\xec\x3c\x04\x6f\x05\x56\xaf\xbc\xe8\x4c\x4b\x5d\xb0\x7a\x94\x12\xd5\x55\xe0\x37\xb0\x19\x96\xc5\xc9\x51\x27\x59\xbf\x6e\x66\x00\xb6\x22\x09\x62\x05\xc4\x2f\x50\x70\x62\xf5\x50\x7c\x30\x83\x60\xea\x19\x4a\xcd\x12\x33\xda\xc7\x54\x76\xa2\xf0\x3a\xcf\x25\xa8\xfb\x51\x09\x52\x40\x2a\x11\x2e\x4f\x2a\x8d\xc8\x0f\xc4\xcc\x66\xb1\x0e\x8d\xea\xdd\x65\x36\x9b\x1b\x5a\xb9\x82\xee\x66\x35\x33\x4b\x82\xdb\x46\x0f\xb8\x73\x53\x6c\x4d\x79\x46\xc0\xaa\x22\x60\xd1\xbe\x50\xc3\x2f\x0c\x22\x5b\x15\x2e\xe6\xfc\xb5\x6f\x01\x13\xbf\xd9\x04\xca\x49\xe4\x39\x4e\x99\xa0\xc2\x9d\xe2\x38\x06\x5f\x12\x95\xd1\x33\x06\xda\x2e\xb8\xf4\x0c\x45\xbf\x0e\xe7\x3c\x73\x68\x4d\x61\x1f\xaf\x26\x97\xda\xfe\x66\x17\x7b\x6a\xf7\xda\x00\x1a\xa0\x0e\x65\x13\xd4\x85\xb5\x80\xad\x9e\x6b\xf6\x0a\x3a\x9d\x40\xf3\xba\x9e\x81\x0b\x30\x1a\xed\xda\x9f\xad\x9b\x7b\xdd\x52\xd7\xbb\x3d\x16\x32\x6b\x5b\x35\x54\x91\x33\x26\xa0\x04\xe3\xea\x67\xc2\xa4\xfa\x31\x96\x5b\x53\x5a\xcf\xb0\x87\xa3\x11\x4e\x72\x4f\x7b\xcb\xe7\x96\xc9\x4e\x18\x45\xb8\xa7\xd5\x33\x8a\x14\xd7\x44\xb9\xc2\xbe\xd9\xf5\x27\xf2\x56\x8b\xd6\x3d\xb2\xda\xb8\x1e\xd8\x31\xd6\xb6\xb3\x1b\x0b\xed\xda\x26\x6a\xc4\x19\x3c\x4f\xc7\xa2\x11\x36\x52\x3e\x4e\x2e\x44\xfc\x8d\x47\x8d\xb7\xcf\x9e\x28\x94\xac\x91\xa4\x8d\x97\x27\xc7\x8d\x09\x9c\xc1\xf6\xc9\xb7\xe1\x9c\xe7\x82\xc8\x40\x38\x9b\x65\x0d\x05\xbe\x21\x93\xc6\xdf\x99\x5e\x96\x84\x36\xae\xa6\xf1\x78\x6a\x2b\x48\xf9\x2c\x0e\xcf\x67\xbc\x11\x8e\xd3\x24\xcb\x1a\xe1\x6c\xd6\x38\x4f\x93\xab\x8c\xa7\x59\x23\x14\x51\xe3\x92\xa7\x59\x9c\x88\xac\xd3\x78\x9d\x08\x5b\xff\x8e\xaa\x5c\xed\x2a\xd3\x82\xac\x11\xa6\xbc\x11\xc5\xd9\x38\x59\xa6\xe1\x05\x8f\xa0\xe8\x55\xac\x80\xf1\x86\xf6\x42\x1e\x41\x67\x44\x63\xb9\x18\x27\xf3\x58\x5c\x34\xe6\xe1\xdf\x49\xaa\x1a\xc0\xc3\x8c\x77\x1a\x6f\xe0\xb7\x91\xf2\x09\x4f\x55\x8b\xef\xf6\xd8\xfc\x77\xd6\x56\xed\x58\x7b\x66\xae\xfa\xc1\xf1\xb7\xa6\x3a\x34\x5a\x1e\x87\x16\x35\xac\x8a\xaf\x31\x72\x62\xd1\xe1\xb2\x07\xa0\x02\x23\x2e\xc5\xc3\x4e\xf8\x22\xd5\x1c\xea\xb6\x62\xa2\x8e\x18\x35\xc0\xd6\x6a\x22\x8f\x68\xc3\x7b\xdf\x9f\x87\x5f\xc1\x5c\x25\x0f\xa3\xce\x1d\xbb\x39\x8f\x45\x7b\x1e\x7e\xdd\x41\x35\x26\x77\x9e\x6c\xf0\x08\x70\xe0\x4b\x88\x7a\x26\x49\x4a\x66\x4e\xc0\x5c\x46\x5f\xfd\x0b\x78\x70\x8e\x61\x00\x3e\x54\x3a\xa3\x9a\xbb\xb9\x33\xaa\xab\xff\x8f\x74\xe6\xf1\x7a\x67\x3c\x2b\x08\xb2\x64\x31\x4a\x61\x39\xf0\x98\xe8\x8c\x80\x27\x40\x66\xea\x67\x4a\xf8\xa2\x5b\xb2\x82\xff\x3c\x91\xd8\x58\xe4\x84\x1c\x34\x65\xbd\x83\xf4\x91\x2c\xcc\x8d\xa4\x44\x0e\xd3\x51\xc9\x00\x8c\x8a\x18\xf2\x11\x16\xea\xa8\x17\x60\x8a\xd7\xb3\x74\xa9\x5a\xf3\x9b\x64\x43\x6b\x86\xe8\xdf\xcb\x30\x95\x5c\x7d\x59\x5b\x1e\x46\xd1\x4f\x2b\x81\x19\xe1\x53\x2b\x53\x85\xf4\xa5\x05\x31\xee\x0a\x43\x9e\x85\xed\x37\x1e\xa6\xfa\x01\x1e\x84\x98\xbe\x24\xf3\xbc\x0b\x8e\xeb\x4c\x7d\x2a\x98\x30\x73\x71\xaa\x40\xcc\xb4\x36\x96\xba\x3e\x8d\x5a\x99\x8a\x0e\x99\xb9\x54\xbb\x34\x63\xfa\x46\x55\xdf\x63\x66\xaf\x55\x15\x9a\x31\x7b\xb7\xaa\xd0\x92\x95\x2e\xd8\x3c\xef\x1a\xb1\x78\x4b\x9a\xd6\x4a\x06\xb8\x3b\x05\x5e\x7c\xad\xba\xc3\x6f\x92\x4a\xe2\x6c\x3b\x83\xf4\x93\x31\x50\x33\x94\x23\xef\xae\x71\x0e\x0e\xc0\x7a\x29\x68\x15\xfd\x56\x9a\x25\x75\x59\x0d\x7f\x53\x73\xa1\xf9\x71\xa2\x28\x0b\x17\xfd\xb3\x59\x12\xca\x22\x0b\x98\x4b\x76\x21\xb0\xe6\xbc\xd5\xb5\x0e\x8e\xd4\x95\x26\x0b\xe5\x24\xd7\xd3\x8c\xb5\x96\xad\x1e\xdf\xdb\x9e\xb5\xf6\xf9\xfd\xed\x31\x7c\x67\xdb\xfb\xdd\xed\xfd\xae\x35\xa2\x1d\x5e\x67\xac\x15\xb6\x1e\x6e\xc7\x25\xfd\x6f\xd6\x4a\x5a\x7b\xdb\x69\xab\xb7\xbb\x2d\x5c\x56\x19\xb2\x9b\x95\xb3\x6f\x01\xf4\xc5\xb9\x74\x7a\x48\xe7\xcb\xf3\xf3\x59\xc9\xe0\xe0\x5b\xb9\xc9\x40\xee\x1b\x4f\x4b\xf9\x2f\x59\xb1\x7e\xdd\xee\x6d\x83\xe2\x6e\x9a\x2c\x45\x84\xdb\xbd\x6d\x4e\x02\x2f\xc2\xa7\x83\xfe\xbe\x45\xac\xde\x33\x07\xb6\x94\x63\x63\xf8\x40\xad\x3f\xd4\x42\x85\x22\x7a\x17\x2e\xfd\x36\x57\xf1\x6d\x44\xa8\x68\xbd\xc1\xff\xf9\x0f\xe6\x3b\xfb\x5d\x10\xce\x96\x10\xe6\xf7\xf6\xbb\x5a\x2c\x7b\xf5\xb7\xc4\xe8\x13\xa2\x28\x40\x84\xc2\xf7\x27\xb0\x5e\x07\xc2\xcf\x9f\x10\x0d\x8d\xb9\xae\x4f\xe6\x1b\x84\x8d\x55\x96\x4f\x9f\x36\x88\x2d\x1b\x7c\x42\x73\x8c\xe4\xb7\x39\x7b\x27\x71\xc8\x69\xa1\xcc\xf7\x52\xb2\x1d\xf3\xb0\xa3\x9f\x84\x76\x2e\x3c\x0e\xfa\x3b\xff\x54\x61\x58\x02\x5f\xd6\xb0\x2b\x38\x39\x70\x3c\x64\x26\x4a\xbe\x84\x34\xef\x08\x63\x31\xb4\xbc\x85\x76\x6f\x04\x6c\x8d\x56\x51\xfe\xa5\x5a\xeb\x43\xd4\x06\xe9\xf6\x11\x4d\xd8\x7e\x77\x3b\x1d\xf6\x46\xad\x2b\x9c\x0e\x77\x8b\x53\x44\x61\x51\x49\xbf\x1b\xa0\x96\x22\x1d\xd2\x61\x77\xd4\x4f\x82\x76\xe2\x69\xa2\x97\x8e\xbe\xc4\xc3\x76\xb4\x89\x0b\x75\x2c\x69\xd7\xb2\x98\xd0\x84\xe1\x6b\x40\xd1\xc6\x98\x2b\xa4\xd6\x11\x28\x81\xc2\x70\x88\x47\xb0\xb4\x45\x11\x50\xa3\x07\x0c\x2b\xb0\xfc\x0e\x01\x97\xd6\x4a\xd6\x2c\x60\x08\x90\xa6\x17\x16\x26\x2c\xe7\x92\xb1\x4c\x7f\x55\xf6\x1e\x6c\xb7\xfd\x15\xe8\xd9\x98\xff\x96\x08\x0b\x92\xec\xf4\x1e\x78\x10\xde\x17\xba\x21\x5b\x5b\xd5\x5b\xc3\x1e\x40\x40\x6c\x82\xdf\x07\x88\xd0\x16\xf8\x57\xe5\xb6\xae\x5f\xf6\x1f\x81\xb1\xfe\xb9\x9d\x7f\x6e\x91\x3e\xee\x07\xf8\x73\xb4\x4d\x86\x9d\xc6\x08\x18\xe9\x2d\xf2\x39\x80\x1f\xdc\x0f\xec\xd7\xe7\x8e\xca\xa2\x9f\x00\x9f\x43\x69\x5d\xf8\x8d\x2a\x3d\x6c\xb7\x46\xfd\x61\xb7\xfd\x2b\xed\x8c\xb6\xc9\x47\x0d\xb2\x1c\x39\xa8\x8b\xfc\x50\x17\x79\x04\x91\xa7\xeb\x09\x2f\xee\x0c\xf7\x44\x37\xb4\x58\xe3\x7f\xc8\x8a\x9f\x06\xaa\xed\x04\x68\xf9\x36\x3d\x47\x70\xd8\xf4\x63\x76\x33\xcf\x14\x55\xe8\x1f\x83\x34\x0a\xb4\x38\x40\x46\x07\x90\x06\x47\xdc\x2a\xc8\x8c\x11\x02\x75\xa8\xf5\xc1\x50\x07\x0f\xe2\x4e\xe9\x00\xe5\x24\xc0\x21\xfb\x68\x29\x5e\x42\xd4\x52\x45\x6d\xb5\xcc\xc3\x61\x6f\xd4\x6f\xf7\x82\x1e\x8d\xd9\xcd\x75\xd0\xa5\x51\x70\x85\x41\x98\x80\x6c\x0b\x3a\x85\xc0\xa5\x0e\xcc\x21\x70\xad\x03\x19\x04\x0e\x4d\x8a\x0a\xfd\x25\xb1\x3a\x99\xe1\x65\x9f\x90\x6d\xb1\x82\x4a\x9f\xdf\xa1\xd2\x3f\x25\x0e\x87\xbb\x23\x2a\x08\x1d\xe8\xc0\x1e\x04\xae\x74\xe0\x3e\x04\x22\x1d\x78\x00\x81\xa9\x0e\xec\x43\x60\xae\x03\x0f\x21\x90\xe9\xc0\x2f\x2a\xb0\xd2\xfc\x2e\xc6\x62\x35\xa2\xab\x60\xdd\xd6\x7c\xdc\x6c\x62\xed\xc5\x4d\xa1\x5f\x79\x8e\x64\x02\x5f\xa4\x6c\x9a\xb8\x46\xb4\xb6\xb4\x0d\xca\xa6\x7e\x5f\x48\xed\xa9\x4f\xe5\xf9\x8d\x4f\x92\x94\x03\x1b\x89\xfd\xa4\xe7\x3f\xc0\x18\xbe\xc1\xef\x5a\x79\x9e\xda\xa2\x14\xa6\xc2\xd8\x79\x81\x04\xf8\x82\xcd\x7e\xe3\x67\x0a\xba\x56\x38\xbb\xbb\x5a\xe1\x27\x12\xc7\xe0\x14\x8c\x50\xf8\x94\x09\x51\x44\x2c\xbb\x59\x91\xce\x3c\x63\x49\x19\x7e\xdc\x19\xa8\x28\x03\x39\x05\xd4\xfe\x8d\xc4\x31\xa1\xb0\x0e\x9b\xcd\x25\xe6\x14\x99\x5b\x12\xdc\x11\xa5\xeb\x3c\x39\x42\x3d\x81\xde\x3f\x4b\xe7\xb8\xa5\xf7\x0d\x1a\x50\x88\x66\x53\x44\x51\x07\x39\x82\x11\x5b\xeb\x7e\xfd\x6e\x20\xc8\xb6\x77\xad\xfe\x54\x82\xe7\xa8\xf6\x86\x1b\x19\x69\x4d\xc9\xb5\x79\x61\x54\x6e\x77\x1b\x4b\x6b\xfc\xc2\x99\x06\xa4\xdc\x9e\xcd\x40\x90\x5a\x08\x60\xe5\xad\x13\x67\x87\x13\xc9\x53\x60\x83\xb5\xdd\x68\xd3\xf2\x7c\xb0\x96\x6c\xb7\x6e\x81\xe2\x3b\xa5\xf8\x5d\x6e\xb0\xbe\xe8\x34\xec\xcb\x5c\x5c\x60\x99\xc1\x28\xb4\x52\x85\xe1\xbe\xc6\x92\x16\xb4\x03\x6a\xc9\x16\xc2\x0b\x9e\xc6\x49\x44\x1b\xda\x77\x17\x29\x53\x13\x8e\xf2\x2b\x88\x0a\x57\x50\x17\xa0\x0d\x0d\x80\x74\x7e\x40\x0a\x39\x8c\xa2\x76\x2c\x2e\x79\x2a\x79\xd4\x06\xc7\xee\x35\xa2\xc8\x09\xf0\x4c\x52\x9a\xb2\x84\xd0\x4f\xc6\x20\xc4\x1f\x52\xed\xf7\x35\x5e\x9c\xe8\xb7\x44\xa0\x46\xc1\xfa\x40\xf1\x0c\x88\x7c\xb2\x84\xbe\x35\xd0\xc2\x64\xe5\x0c\x0c\xd9\x5f\x12\x4b\x7d\x0c\x12\x9a\x99\x90\x59\xc1\x07\xa5\x5d\x89\x13\x23\xb7\x94\xe4\x79\x42\xb3\x66\x13\xcc\x69\x81\xad\x4a\x6b\x21\xaa\x95\x6d\x0b\x42\xc3\x66\x13\xac\x4e\xa2\x23\x50\xf4\x78\x5a\x7c\x93\x56\xa8\x32\xc4\x85\xbc\x10\x5c\xcb\xbc\x7c\x2d\xc7\x2a\x4f\xd2\x6c\x56\xee\x66\x4e\xc3\x3c\xcf\x08\x59\xfd\x21\x3b\x13\xc1\xde\x78\x9e\x12\xe8\x1f\xce\x5f\x53\x8d\x1d\xf2\x3f\x24\xf0\x7d\xf5\x25\xc9\x05\xfb\x5d\xe2\x1e\x45\x61\x04\xfc\x13\x08\xb6\x7b\x14\x65\xcb\x73\x99\x86\x63\xe9\x5b\x23\x10\x25\x27\x87\xf5\xdb\xa0\x85\x6b\xb6\x0c\xd1\xfe\xda\xfd\x85\x6d\x28\xa7\xcc\x19\xff\x6e\x63\xd1\xc2\xb2\x9d\x3e\xea\xf6\xb5\x39\x4a\x9c\xb6\x2b\x65\x54\xbb\x6c\x29\x12\x98\x5c\x95\x3c\x2d\x2f\x4f\x3b\x25\x84\xe4\xb9\xe7\x1b\x20\xf5\x6c\x51\x7a\xaf\xf9\xda\x93\x5d\xdf\x47\xda\xb5\x20\x75\x50\x48\x59\x82\x4c\x36\x90\x9d\x3e\x6a\x6f\x2d\x97\xae\x52\xeb\x9c\xd0\x30\xdc\x3d\xd9\x9f\x53\x2b\x97\xf2\x09\xd1\x4a\xb6\x77\x72\x5c\x9b\x73\xf8\x69\xa4\xdd\x0b\x26\xa2\x44\xe4\xcf\x42\x71\x81\xd7\x76\xe6\x4b\x4d\xd8\xd3\xf2\xde\xf4\xb5\x64\x1b\x32\x69\x80\xc6\xc4\x94\x37\x14\x8c\x65\x78\xc1\x8d\x86\xc1\x32\xd5\x7e\xce\x1b\xef\xd6\x0b\x63\x5f\x89\xc1\x96\xcb\xaa\x6c\x9b\x0d\x03\xe9\xd7\x1f\x78\x31\xc6\x02\x87\x9b\x93\xb0\xaa\x26\x6b\xc6\x16\x88\xee\x4c\xb0\x1e\xdf\xa3\x63\xa1\xb0\xea\x4c\xd0\x19\x7c\x8c\x05\x5d\x0a\xb6\xf7\xa0\xbb\xbf\xb7\xfb\xcb\xf6\xcc\xf3\xc0\xb8\x28\xd9\x2a\xc1\xfc\x9e\x6c\x49\x72\xcf\x3b\xf1\x27\x95\x07\xed\x92\x99\xad\x75\x1b\x5b\xa4\xbd\x14\x41\xd9\x5e\x96\x87\x5b\x7b\x0a\x32\xb7\x81\xb5\x46\xa9\x2a\x60\x8b\x68\x88\xf2\xd4\x56\x84\x25\xd8\xba\x74\xc8\xa9\x65\xbd\x8e\x68\xb7\xe4\x26\xf0\x5c\xac\x59\x9c\x2a\x1f\xfa\xbc\xff\xde\xd8\xac\x53\x39\x60\x87\x06\x58\x3e\xc6\x31\xfb\x68\x0d\x50\x69\x3e\x4a\x4c\xe8\x5c\x78\x3e\xc3\x0a\xb0\xbe\xbc\xfc\x7a\x75\xac\x64\xf4\x8a\x86\xec\x1d\xc7\xb1\xe6\xee\x77\x69\xec\x49\xb9\x1e\xac\x19\x8b\x0e\xd7\x2d\x7c\x51\xcf\x74\x6b\x58\x16\x41\x35\x69\x60\x10\x30\xac\x0a\xa1\xaa\x43\x5e\xdb\x8f\xbe\xb8\xf8\x8e\x06\xf6\x15\xe7\x5f\x3e\xd6\xd8\xaa\x7e\xfe\xfc\x3b\x05\x0d\x73\xa5\x5c\x76\x2a\x30\xba\xb8\x50\x95\x22\x0b\x18\x15\xb1\x35\xd1\xcf\x9f\xab\x8a\x90\x07\xcc\x4b\x58\x4f\x31\xc6\x86\xb4\xf1\x65\xd5\x39\xdf\xdc\x90\x89\x7d\xfe\xbc\xb0\x24\xf5\xd1\x5a\xc5\xfe\xad\x92\xcb\x18\x19\x7a\x5e\x18\xca\xbe\x28\x3e\x55\xc5\x4e\x7f\x59\xb5\xda\x05\x74\xa3\x0a\x03\xda\xba\x53\x45\xd8\xb4\xba\x30\xa8\x6d\xba\xad\x23\xc0\x26\x8f\x19\x07\x3b\x1e\xa6\x9b\xba\xe0\xf7\x2d\x54\xed\x7a\x16\xaa\x0c\x38\xdd\xe5\xf5\xa2\x89\x2a\x9a\xdc\x66\x43\xfb\x1d\x46\x7f\x82\x89\xab\x3f\x13\x8f\x83\x07\x43\x5a\xb0\xf3\xfe\xd4\xa3\xe9\x22\x1e\xea\x8e\xfd\x89\xe8\x7b\xad\x82\xfb\x67\x8d\x15\xee\x01\x1f\xb1\xbd\x6d\xac\xed\xe2\xda\xba\x8e\x10\x1d\xa2\xa3\x23\x6d\x18\xec\x48\x5b\xd5\x92\xdc\xda\x93\x02\xb6\xe0\x91\xb5\x15\xa5\x42\xbf\xea\x9a\x8e\x9c\xc6\xb9\x2a\xeb\xa6\xe2\x28\xd9\x64\x8e\x89\xf7\xa5\x91\xe2\x5e\x53\x18\xcd\x73\xd9\x39\x4b\x7c\x0d\xd2\x8d\x59\x5f\x71\x11\x73\x21\x9d\xe6\xf7\x91\x6a\xde\x11\x1a\xd1\x0b\x63\xff\xbc\xa6\x01\x12\x64\xc2\xaf\xb0\x75\x22\xf2\x13\x08\x7b\x58\x86\xcc\x40\x80\xa2\xb0\x46\x7a\xb6\xba\xe4\x40\x8d\xc9\x91\x19\x15\xf5\xbb\xa7\xc6\xe5\xc8\x8c\x8c\x39\x28\x9c\xb9\x2d\x13\x84\x1c\xce\xa2\x96\x8d\xbc\x6f\x07\xe8\x08\x51\xce\x5d\xe0\x08\xd1\xe7\xb6\xf9\x47\xba\x03\xd0\x85\x3a\x7e\x52\x21\x8c\xef\x59\x40\x9b\xab\xc6\xcd\xe7\xd6\xe6\x83\x61\xdf\x6a\x93\xcd\x96\x95\x3b\x37\x36\x9b\x4d\xb8\x67\xda\x32\x77\xd3\xa6\xca\xc3\xb4\x41\x43\xe6\xaa\xc8\x1c\x8d\xe8\x35\xd7\xc3\x72\xa1\x87\x65\x60\xf5\x6b\xb7\x7a\x30\x32\x99\xaa\x3a\xcb\x6c\xd5\x86\x45\x0c\x55\x3b\xe6\x71\xa6\xab\xb6\xe1\x9e\xb1\x13\x97\xb9\xaa\x55\xf9\xa2\xea\x4c\x15\xc9\xd0\x88\x1e\x9a\xaa\x2f\x05\xbd\xd6\xb5\x9f\x58\xd5\x5f\x55\xfb\x24\x49\xf1\x3b\x8c\x4e\x36\x59\x67\xf8\xcf\x7f\xac\x39\x06\x87\x28\x63\x90\x96\x22\xc5\xf9\x79\x72\xb2\xf1\xfc\xdc\x54\xbc\x54\xfa\x04\x96\x43\xb7\xcc\x20\xf7\x92\x4f\x8c\x23\x81\x9a\xe3\xb9\xd7\xdd\x5e\x87\x5f\x82\xad\x4a\x3f\xd8\x58\xfa\x0e\xc5\x4f\x10\xdd\xdf\x54\x9e\xef\xdd\xa1\xfc\x09\xa2\x0f\x37\x02\xb8\x7f\x17\x00\x27\x88\xfe\xb2\x11\xc2\x83\x3b\x41\x38\x41\xf4\xd7\x8d\x20\xf6\x37\x80\x80\xa5\x5f\x4c\x09\x45\xf3\xcc\x6e\x00\x2f\xb6\xb7\xaf\x17\xe0\x89\xda\x8f\xea\xa4\x84\x80\x0e\x7d\xb4\x21\x1d\x7c\x4e\xe8\xa5\x60\x7a\x4e\x0f\x2e\x2d\x5b\xf5\x11\xfb\xf5\xe0\x52\xb4\x18\x3a\x41\x64\xc6\xf1\xa5\xa0\x29\xf7\x50\xc4\x43\x77\xe2\x5c\xc1\x89\xa3\x46\x1d\xa3\x6e\x07\xb5\xe0\x25\x3e\x49\x31\xc0\xdc\x00\x30\x02\x80\x87\x42\xef\x82\x2b\xbb\x01\x0b\xb2\xcf\xed\xc2\x6f\xc6\xfe\xdf\xb7\x44\xf0\xc3\xf3\x73\x63\xf1\xe5\x9b\x1f\xfd\x3a\x9c\x73\xa4\x21\x7d\x13\xec\xb2\x20\xba\x8a\xd6\x9e\x95\x64\x12\x56\xdf\x84\xa2\x4c\x18\x17\xf4\x1b\xe0\x58\x60\x28\xa1\x8e\xf9\xc3\x78\x9e\x83\x66\x54\xc2\x5e\x48\xac\x5f\x14\xc0\xbd\x5f\x2a\x8f\x27\xd8\x18\x65\x8c\x59\xea\x80\x18\xef\x43\x80\xb2\x25\x24\xcf\x91\x35\x7b\x80\x68\x08\xea\x77\xaf\xb0\x1c\xc6\x23\xd2\x57\xff\x3d\xf4\x4e\x90\x00\xe2\x4b\x58\x99\x7e\x22\xc6\x61\x9e\xaf\xdb\xd8\xb1\x15\x62\xfd\xfe\x41\x9f\x48\x10\xdc\x5b\x41\x8f\x14\xf5\x55\x43\x66\xea\xc7\x7b\x4d\x1c\xa9\x7c\x51\x3c\x99\xd4\xcb\x9b\x59\x69\xa6\x0a\xff\xd7\xf7\x60\xa0\x52\x71\xca\x34\x87\x5c\x81\x24\xf5\xf9\xb2\xab\x58\xdd\x44\x09\xdb\xe7\xf7\xb7\x71\xea\xbf\x69\xb4\xab\x8f\x1c\x84\x4a\xf6\x05\x4b\x42\x6e\xc6\x61\xc6\xf5\xcb\x5e\x10\x33\x61\x6c\x57\x82\x43\x04\x2d\x63\x7e\x00\x19\xf4\x4b\x5f\x29\x87\x9f\x6c\x51\x86\x32\x88\x3d\x3f\x8b\xd9\x2e\x41\xcc\x20\x1d\x7c\x2e\xf0\x52\x0e\x73\xad\xf8\x39\xf6\xf9\x7d\x3f\x07\x3c\x2d\xfa\xe9\x7b\xfb\xfc\x81\x9f\x41\x2d\x93\x22\xbd\x9d\x90\x9d\x5f\xf6\xef\x97\xb3\xc0\x5b\x65\x39\xcf\x7e\xf7\xfe\x2f\x2e\x93\x75\xdd\xaf\x6d\x79\xb5\xd3\x95\x33\x82\x17\x07\x87\x38\xd6\xf3\xc9\x45\x74\x3c\x59\xd7\xb2\x54\x53\xe5\x28\x41\xcc\x19\xc8\x20\xe5\x79\xe9\xbc\x50\x34\x62\x9e\x6f\x98\x6e\x15\xab\x3d\x56\x30\x8f\xff\xdf\x8f\x44\x30\x11\x76\x7e\x79\x69\xce\x24\xd3\xe3\xed\x8c\xca\xd2\x2e\xed\x91\x76\xaf\x76\x76\x2a\x99\x7d\x9a\xc3\x2c\x11\x13\xb8\xb7\xd7\xda\x5b\x03\x63\xd6\xc0\x6d\x40\x5a\xbd\xb5\x52\x7a\xbc\x6f\x2b\xe4\x91\x37\xa6\x15\x46\x56\x1a\x93\xd6\xc3\x0a\x34\x6b\x27\xf6\xee\x00\xb1\x4f\xc2\x00\xd0\x76\x6f\x1d\x2e\x2c\x1c\xf3\xa5\xd6\xe0\x5d\xc1\xb7\xaa\xdd\xd5\x4b\x54\x9a\xe9\xf3\x58\x59\x54\xb6\xd8\x4c\xb4\x17\x02\xcb\x16\xf6\x27\xb7\x1b\x54\x37\xe7\xf6\x58\x10\x3a\x13\xd5\xe1\x37\xdb\x63\x03\xec\xb1\x86\x4d\xc7\xd5\x72\x76\xe3\x6d\x28\x97\x99\x72\x99\x2a\xb7\x2a\xb1\x22\x0a\xae\x9c\xbc\xdd\x3e\x3c\xec\x09\x7d\x86\x96\x36\x05\xcf\x73\x6c\x1e\x58\xe3\xec\x9d\x1c\x63\xd2\x5f\xe7\x01\x05\x95\x28\x7d\xbf\x48\xf6\xc2\x1a\xad\x3d\xd8\x68\xfe\x6c\x91\x64\xd2\x1c\xdd\x52\x6f\xcc\x49\x9a\xcc\x59\xbd\xe5\xd6\xca\xfb\x1a\xbc\x20\x96\x84\x33\xe0\x02\xe2\xfe\xe1\xda\xff\x43\xe2\x1b\x99\xc0\x04\x51\x05\x3a\xe0\x2b\xc7\x1e\xf2\xb9\x3a\x84\x74\xa6\xcb\x79\x28\xe2\x6f\x1c\x6f\xc9\x12\xc7\xa7\xd6\xe3\x9e\x6d\xea\xeb\xe4\xaa\xce\x39\x91\xbe\x93\xd2\x64\xae\x95\x85\xb9\x2e\x20\xab\xaf\x26\xff\x6d\xcf\xa0\x47\xd0\x37\x99\xfc\x4f\xf6\x4c\x26\xb7\xf5\x4b\x26\xa5\x5e\x5d\x70\x59\x97\xf5\x95\xf6\x88\xa3\xcf\x50\x75\x8b\x43\x68\x64\xb8\x69\x50\xd2\x54\x7c\x28\x6b\x2e\xe0\x48\x5f\xbe\x4e\xf1\x5e\x17\xd0\x0f\x11\xb5\xe8\xc7\x35\xbc\x24\xeb\xb7\x5e\x2b\x07\x58\xbd\x94\xf3\x7c\x4b\x78\x63\xd8\x6c\xe2\xea\xc9\x8e\xf5\xad\x5a\x39\xf2\x75\xeb\x8b\x6d\xf7\xd8\x7b\x94\x0e\xbc\x6f\xed\x17\xc8\x72\x74\x2d\xee\x23\xfd\xf7\x6c\xd3\x0f\xfd\xf4\xf5\x7f\xbd\x23\x8f\xfc\x8e\x94\x1a\x0f\x17\x64\xa9\xe9\x7e\xde\xa2\x1b\xf2\x8a\xf3\x75\xa5\x20\x6b\x27\xd9\xef\x0b\x8d\xd9\xb5\x76\x40\xf8\x44\x16\x8e\x78\xb7\xb6\x70\x75\xf9\x27\x7e\x20\xae\x74\x13\x43\xe7\x52\x96\xe6\x39\xc2\x04\x29\xa2\xbd\x6f\x00\xe8\x47\xaa\x44\x21\x88\x76\xb8\xcc\x0b\xa3\x8a\x83\xd2\x44\x0b\x2f\xf4\x5c\x19\x93\x21\xf6\x0b\x69\x38\x2a\xca\x76\xf3\x24\x9c\xd7\xce\x15\x4d\xef\x3a\x5b\xe9\xff\xc4\x6c\x81\x93\xf4\x62\xbe\xb0\xf0\x83\xf4\xbb\x6b\xef\x11\x13\xcd\xa6\x78\xc4\xbe\x33\xcf\xa5\x5e\x1f\xa7\x75\x3b\xae\x7c\x6e\xa9\x7c\x10\x6f\x90\x6f\x3b\x82\x2a\xaa\x04\xaa\x76\xd1\x7f\x0f\x96\x99\x21\x0f\xd8\xfb\x0d\x4f\x43\x53\x0f\x5f\x9f\x85\xe2\x82\x25\x40\xb4\x98\xb7\x8e\xd4\x0b\xa8\x83\x8f\x85\x10\x31\x0f\xbf\xb2\x0f\x12\xbe\x62\xc1\xbe\xc0\xd7\x22\x4c\xb3\x58\x5c\x3c\x9b\x85\x17\x59\x4d\x3d\xe0\x02\xdb\x9c\x4f\xba\xb6\x92\x04\x87\xb5\xd9\xb4\xfe\xa0\xae\xad\x59\x57\xd5\xe8\xac\xe8\x9c\x31\x6b\x0b\xc9\x5a\x32\xcd\xa8\xdc\xdc\x2c\x45\x2c\x03\x41\x17\x69\x9c\xa4\xb1\xbc\x0e\x8e\x86\x62\xb4\xf2\xe4\x89\xc1\x7e\xec\x06\xfe\x5a\xc7\x96\x6a\x4b\xf7\xa9\x48\x63\xb9\xc2\x1c\xa4\xf5\x88\x91\x5d\x13\xce\xd3\x73\xab\x45\xe0\xb0\x16\xc3\x74\xd4\x51\x75\x8f\x30\xf7\x02\x85\x8b\x9c\xca\x11\xef\xe3\xc0\xe0\x57\xb2\x74\xf1\xeb\x81\xd2\xcb\xf2\xff\x45\xc4\x1b\xd0\xee\xff\x16\xe9\xae\x80\xb8\x03\xc2\x5d\x29\xf1\x5f\x21\xdb\xe4\xff\x07\x44\x9b\xfc\x4f\x20\xd9\xe4\x8e\x08\x76\x9b\xfd\x08\x76\x7d\x67\xdc\x5a\x83\x55\x88\xf5\x9d\xd1\x6a\x53\x24\x13\xe4\xbf\xc1\xa8\xed\x33\x34\x93\x42\xa3\x55\xe0\x76\x86\xd5\x4a\x30\x9a\xbd\x32\x74\xee\x44\x0a\x57\x8b\xce\x97\x14\x07\x61\x58\x9d\x06\x1d\x86\x4f\xcb\xf1\x82\x58\x8f\x03\x36\x32\xb8\x9c\x51\x6d\xb8\xad\x56\x70\xc5\x92\x05\xae\x6e\x23\x34\x53\x34\x41\x35\x20\x70\xed\x00\x1b\x8a\x01\x77\xf6\x8a\x8d\xbd\xc5\x80\x7b\x56\x6f\xad\x04\x0e\xf7\xac\xde\x96\x44\x73\x4a\xad\xcd\x30\x59\x99\xe6\x2a\x3c\x74\x03\x47\x46\x2b\xbd\x94\xee\x44\x8b\xb0\xbe\x3c\x39\xd6\xbe\xe6\x59\x55\x99\xa7\xfe\xbc\x70\x12\x92\x92\x81\x96\x0b\xa7\x82\xc9\x7e\xe9\x6a\x5c\x2a\x7a\x27\xf0\x46\xa9\x21\xcc\xf8\x80\x79\x2a\xf3\xfd\x18\xfc\xce\xbe\xc0\x82\xca\x7e\xc9\xb2\xc6\xf0\x74\xe4\x5b\x88\x18\x7e\x1a\xa1\xe0\xb6\x0c\x9f\x10\x09\x5e\x69\x17\x40\x85\x5f\x22\xaf\x63\xa4\x6f\xda\xa7\x87\x08\x13\x3f\x11\x93\x60\xc3\x00\xb5\xf6\x0d\x8f\xd8\xdf\x41\x3d\xbe\x57\x29\x5e\x88\x1f\x7d\x42\x54\xf5\x06\x7d\x42\x84\x04\x5e\xbf\xbe\xd3\xab\x4d\x7d\x32\x98\x7e\xb6\xa8\xac\xc1\x8d\x53\x63\xe4\x05\x2c\x75\x80\x77\xb6\x1b\xc6\xc2\xf2\x59\xdc\x42\x8d\xed\x1d\xa2\x85\x0b\x38\x33\x39\x11\x95\x0c\xa1\x03\x03\xec\x95\x16\xf3\x04\xc2\xd5\x49\x5d\x7a\x7d\xef\x5b\xf8\x4b\x39\x46\x81\x0d\xc0\xb3\xdb\xa7\x44\x70\x00\xf6\xc9\xf0\x48\x05\x43\x43\xd4\xe2\xad\x9f\x31\x1a\xfd\xac\xee\xc9\x47\xbe\xef\x61\x23\xe2\x69\x96\x84\xf1\x3f\x0c\x66\x56\x03\xe7\x9c\x37\x61\xb2\xf5\xf3\x10\x91\xd1\xcf\x75\xec\x4a\xd1\x4a\x5b\xa8\x76\xe0\x50\x2b\xb1\x2b\xfb\xf7\x93\xe3\xd7\x9b\x1c\xf2\x17\xa2\x75\x66\x65\x94\x16\xc4\x72\x36\x33\x30\xaa\x5b\xa3\x0c\xc5\x2e\x78\x43\x31\x22\x2e\x10\xb1\x4d\x44\x51\x14\x35\xc0\x1c\xec\x91\x36\x07\x6b\x5b\xd9\x18\x3e\x1f\x9c\x8e\x3e\xd9\x19\x5e\x8a\xf8\x6b\x0d\x7c\xcf\x3d\x53\x79\x59\xee\xa8\x25\x08\x25\x4d\xd4\xa6\xc6\xf9\xe7\x72\x1b\x18\xa3\xd2\x93\xa3\xcd\xf3\xae\x61\xe4\x82\x41\xc9\x44\x00\x6a\xb7\x06\xea\x26\x06\x65\x57\xb3\x8a\xa8\xee\x9b\x09\x4e\xa8\xee\xb7\x09\x1a\xfd\x5d\xb8\x7c\x02\xef\x22\xa2\x5a\xd5\xcb\x44\xe9\x80\x3e\xb2\xd4\x02\x60\xaf\xb9\x46\x4e\x5f\xf1\x70\x51\x76\x59\xec\x3b\xc5\xf6\x16\x8c\x6e\xb6\x7d\xf8\xae\xa3\xa0\xcf\x2b\x42\x0d\xf6\xae\xb7\x77\xab\xbb\xf7\xe9\x3a\x4d\x5f\x18\x33\xdb\x9c\x76\x6d\x11\x6a\xf7\xd6\x7e\xd7\x56\x98\x22\xb6\x66\x1f\x65\x00\x6b\x6c\x00\xd7\xe0\x4f\xac\xf8\xcc\xea\xe0\x5b\x61\x0f\x58\x29\x63\x1e\xcf\x30\x2e\x33\x24\xc9\xce\x9e\xa1\x4d\x75\xd4\xde\x36\x06\x27\x63\x65\xcc\x4b\xd7\x09\x41\xf6\x06\xe6\x22\x0a\xaf\xb3\x97\x42\x3b\x5e\x5d\x9f\x8c\x7f\xf3\x8d\x98\x4b\x31\x33\xcc\xfc\x66\x35\xe8\xfa\xfa\xb8\xc2\xdc\x00\x55\x50\x15\x64\x31\xab\x26\x8c\x22\xfc\x50\xb5\x5e\x12\x50\xf8\xf3\x87\x9f\x15\x9f\x75\xb5\x59\x51\x18\xb0\x75\xa7\x2a\xfa\x91\x2a\xa0\x0b\x2f\x45\x75\x59\x7a\xda\x13\xeb\xeb\xc3\xc2\xff\x58\x1e\x27\x0e\x6b\x8a\xaf\xad\x9e\x1a\xf0\xf5\x00\xdc\xf2\x50\xa8\x04\x1b\x08\x33\x53\xcc\x4c\xd8\x0f\xdc\xde\x5b\x46\x54\x2b\xb0\x4e\xa2\x65\x09\xf3\xb7\x87\x87\x6f\xf4\xcc\x8b\x83\x88\x83\x0a\x38\x5c\x4f\x9c\x5a\x39\x4d\xcf\x78\x59\x9f\x07\xd6\x6b\x75\x1f\x69\x09\xd2\x82\xd0\xc3\x9c\xc9\xaa\x63\x28\x42\x8c\x4d\xc8\xa0\xa2\xe4\x6b\xde\x84\x4a\x53\x60\xd6\xa3\x9a\x4c\xde\x96\x30\x91\x24\x90\x6e\x2e\x23\x1f\x87\xfc\x27\xe3\x84\x0d\x6e\x0e\x0c\xfa\xf6\x2d\xa7\x07\xb9\xf7\xf0\x96\x85\x66\xdb\xe6\x2f\x84\xff\xa2\x6d\xce\x2a\xa4\x5b\xf5\xb7\x4d\x86\x47\x56\xf7\xd7\x47\xfb\xde\xc3\x3c\x7f\x58\x4c\x11\x0c\x3c\xaf\x1f\xeb\xd2\xc5\x0c\xbe\x63\xdc\xe0\xdc\x7b\xa8\xba\xdb\x7e\x58\x26\x02\x22\x6d\x15\xe6\xa1\x59\xc6\x56\x14\x63\x7d\xd3\x7a\xfa\x24\xb8\x96\x3b\xa3\x5f\x45\xdb\xf5\x69\x40\xa5\x12\xf3\x00\xe6\xb9\x31\xfc\xde\x44\x28\xa4\x9c\x99\xdf\x8c\x65\x96\xb7\xb1\x94\x9c\xb9\xaf\x8c\x5d\x08\xcd\xb8\x50\xc8\x37\x73\x5f\x19\xbb\xd6\x5c\x91\x02\x33\x67\xdf\x2a\x72\xde\x57\x90\xc3\x61\x54\xb5\xaf\xa2\x89\xf5\xa4\x53\x5c\xd3\xb7\xbc\x91\xde\xba\x12\x6a\x1d\xf8\x72\x52\x98\x5d\x66\x98\x3b\x7d\xaa\x12\x3b\x40\x5b\xd8\x80\x49\x08\xcf\x33\xcc\xc9\xa3\xde\xbe\xb6\x8b\x82\xf9\x36\xdb\x77\xc6\x9d\xb6\xbc\x63\xa3\xd9\x94\x20\x1c\xfd\x4c\x1a\xfe\x0e\xf5\xbb\xc1\xcc\xfa\x31\x6a\xe1\x5b\x5d\x63\x55\x22\x31\xa8\xa0\x9a\x8b\x44\x4b\xd9\xc4\x8a\xa6\x68\x36\xf1\x96\x34\x9c\xac\x33\x2d\x88\xfa\x52\xbc\x49\x93\x8b\x94\x67\x59\xdf\x93\x05\xe7\xed\x58\x17\x03\x2b\x42\x41\x7d\x81\x3c\xc7\xf5\x09\xaa\x21\xb7\xd1\xa2\x35\x25\xc0\x12\x80\xa1\x54\x4b\xd8\x96\x3e\x3c\xe3\xc0\x0e\xc0\xca\x4c\xf6\xc6\xd7\x80\x02\xb5\xee\xda\x17\x01\xd8\x5e\x1b\x0b\xd8\x81\xc6\x35\xc5\xcb\xc3\xdb\xa3\xdc\x0c\xac\x25\xa4\xb1\x6d\x16\x8c\x96\x47\x69\x3b\xfc\xbd\x42\x62\x18\x93\xaa\x00\x55\x7e\x9b\x93\x4a\x9d\x2e\x81\x6e\xf5\xa8\xb5\x0a\xdb\xa8\xf7\x19\xad\x5b\x66\xaf\xcd\x77\x12\xc7\x6e\x35\x58\x4f\x7f\x46\x76\xb8\x80\xcf\x49\x95\x7b\xd1\xa5\x85\x52\x67\xc1\x17\x9b\x86\xd9\xe1\x2c\xbe\x10\x3c\x7a\x91\x2c\xd3\xb5\x8d\xb5\x59\xc9\x0c\x73\xc6\xfb\xfa\x6d\xc8\xa3\x71\x82\x2e\xad\x8e\x2e\x69\x73\x72\x6f\x5f\x11\x44\x5d\x7b\x5e\x1f\x9d\x9c\x6e\x42\xba\xbd\x72\x8f\x4b\xa7\x93\x46\x91\xba\xa5\xda\xcc\x02\xff\x4e\x99\x07\xa5\x32\xa6\x09\xaf\xca\x2b\x65\x73\x3f\xfd\x3d\x6a\xca\xbe\x5b\x3f\x81\xee\xa4\x8c\x57\x14\x67\xef\xa5\xf9\x3e\x7d\x62\xbe\xad\xec\xcc\x46\x6a\xa4\xec\xaf\x7b\x65\xcb\xbc\x2e\xbd\x10\xd4\x97\x79\x92\x68\x69\x46\xc9\xa3\xc6\x3b\x11\x5f\xf2\x34\x0b\x67\x8d\xd3\x78\xce\x1d\x28\xb5\x83\x33\x76\xac\xa5\x2a\xb3\x46\x38\x1e\xf3\x2c\x4b\xd2\xaa\xc8\xfc\xbb\x8c\x6b\xcb\x08\x56\x29\x1e\xd1\x81\x20\x0e\x01\xce\xb4\xd4\xbd\xfa\xba\x15\x04\x64\xb1\x30\x10\x7d\xc3\x89\x25\x67\x00\x02\x7c\xdc\x0a\x40\xe5\x28\xca\xbf\xd6\xe5\xd5\x70\x94\xc4\xfe\x55\xc4\x66\xe5\x7e\xec\xad\x8b\x1f\x55\xf2\x57\x90\x77\x36\x89\x96\x3a\xa4\xae\x06\x7d\x33\x1a\xc1\xe6\xbc\xf1\xf6\x2b\xb5\x2a\x11\xc1\x9a\xc4\xcd\x8a\x10\xb7\x6f\x4e\xa6\xf1\x44\xf2\x48\x75\xd3\x0f\x57\xc7\xe8\x07\xfc\x19\x64\xb2\x9d\x69\x20\x15\x15\x22\x45\xa9\xc6\x89\x28\xdb\x31\x50\x77\x69\xe8\xd8\xa4\x45\x03\x4a\xf7\x5f\x39\xc9\xf0\x4c\x6e\x56\xea\x76\x1d\x58\x49\x24\x8a\x39\xd3\xf6\x49\x3a\x67\xa1\x6f\x64\x08\x96\x2c\x18\x6a\x0b\xb5\x02\xad\xfa\x38\x58\x07\xcb\xaa\x3b\xed\x1b\x64\xa5\xd2\x72\x3b\x31\x21\x8f\x8d\xa9\xb8\x9a\xd2\xce\x66\x4b\x4d\xa2\x95\xc5\x3d\x16\xec\xa4\x4e\x52\xed\x74\xed\xb9\x11\x54\xd5\x63\x36\x51\x68\x14\x97\xe0\xf5\xc0\x82\x4f\x86\x62\x04\x86\xdd\x0a\x95\x80\xaf\xbe\x15\xbe\x0c\x1b\xe3\xf1\x9c\x16\x06\x62\x38\xe3\x79\x8e\x90\xb5\xdd\x6d\x07\xd7\x55\x6c\x18\xfc\xba\x99\x29\xb8\xbf\xd7\x9e\xe6\xe1\x45\xa5\xb7\x0b\x6f\x29\xc9\x30\x1d\x31\x28\x92\xfa\x45\x6c\xbb\x8a\xf6\xbc\xf6\xfa\x83\xce\x93\x64\xc6\x43\x51\x42\x73\x71\xa6\x2d\x51\x09\x26\xa9\x2c\x4c\xc4\x30\xad\x10\x1e\xa8\x78\x68\xfe\x56\x8f\xde\x9a\xf3\xc0\xa2\x68\x30\x5e\x21\xe3\xfd\xb8\x40\xf9\x83\x6e\x81\x7e\x09\xaf\xc7\x92\x62\xd1\x0a\xc9\xbd\x87\x34\x35\x2e\x96\x01\xcc\xd8\xf6\x59\xdb\xe0\x7a\x08\x96\xb7\xc6\xc3\x04\xba\x2c\x29\x4e\x2a\x65\x0c\xc0\xf1\xea\x78\x83\x38\x61\xe1\x11\xca\xa0\x2e\x26\xd3\x90\x8f\x1c\x26\x65\xa2\x3a\x56\x62\xf0\xc0\xc9\x1c\xa4\xa4\x9f\x1a\x7e\x05\x15\x24\x48\x57\xf4\x58\xe1\x23\xbe\x07\xa5\x4d\xb4\xfc\x59\x39\x1b\xf8\xb5\xd8\x90\xd2\x91\xc9\xbb\xc5\xc2\x3a\xd5\x71\x46\x2b\x65\x9e\x6f\x89\xbe\x0c\xf0\x06\x78\x4c\x14\xf6\x35\x07\x83\xc1\x20\x1f\x0c\xf2\xa3\xa3\x3c\x8a\xa2\x68\xe7\xa2\xde\x26\x94\xb1\x6a\xa5\xe5\xf2\x37\x80\x25\xd0\x49\x4f\x8a\x63\xf3\x45\x54\xe4\x81\x32\x46\xba\x7e\x33\xaa\x66\x32\x14\xcc\xe1\x7b\x11\x02\x2c\xef\x58\x38\x63\x70\xec\x4c\x40\xd0\x89\xf2\x98\x08\xdf\xcb\xd3\x46\x01\x01\x5d\x8d\x9f\x75\x28\x46\xc5\x74\x26\xa4\x9f\xb8\x22\x41\x52\x0c\xdf\xbd\x68\x27\x76\x0d\x09\x33\xf9\x0c\x9c\x48\xd5\xca\x53\xd4\x54\xc1\x1f\x77\xfb\x48\xfb\x9d\x42\x01\x52\xe5\x91\x57\xa9\x20\x7d\x81\x25\x09\xbc\xd9\xba\x97\xed\xc4\xf0\x00\x7d\x5c\x7d\xec\x75\x76\xed\xb4\xc9\x16\xfd\x70\xfb\x4a\x9d\x23\x43\x61\xa5\x5e\xc4\x88\x69\x62\x6d\x88\xce\x50\x4b\x85\xcc\x41\xaa\x75\xd8\x1c\x55\x71\xab\x72\x83\xef\xb6\x12\xdf\x96\xbf\x93\x25\xcb\x74\xcc\xed\x66\x49\xd6\x93\x48\x0b\xe5\xa8\xe5\xfc\x71\xd9\x58\xe8\x9d\x41\x20\x36\x28\x6b\x24\xd6\xc7\xac\xd6\x29\xed\xfb\xa1\xa1\x7b\x2d\x1a\x05\xa5\xf8\x52\x99\x4e\x9c\xe9\x85\x9b\xe7\x4f\x38\xe9\x48\x9e\x49\x2c\x49\x1f\xe9\xa5\x83\x02\x94\xc9\x50\x44\xa1\x42\x1d\xd1\xc8\x07\x79\x5b\xd5\xa5\xfa\x3a\x05\x04\xaf\x47\xe0\x54\xeb\x6e\xdd\x82\xac\xe5\x0a\x20\x6a\x53\x07\x75\xe2\x13\xfe\x8f\x3b\xb3\xa9\xc2\xf5\x5a\xea\xfb\xa6\x7d\x5b\xdf\x2a\x9d\xec\x43\x82\xec\x4f\xbf\x86\x63\x77\xa1\x1d\xf1\xaa\xfa\x9c\x56\xac\x58\x2b\xe5\x48\x50\xbf\x62\xe7\x6e\x5b\x9d\x4c\x83\xba\x04\xf0\x1d\x5c\x4e\xb1\x62\x07\xe6\x92\x54\x57\x70\x62\x9d\xf8\xa6\x23\x42\x85\xc3\xf9\x2b\x50\x87\xe9\xc8\x53\x63\xad\x26\x95\x9d\xbb\x22\x8f\x49\x9c\x29\xca\xdc\xb3\x70\x8c\x3a\x60\xd4\xa5\x85\x7e\x2a\xf9\x8c\xad\x36\xf5\x76\x98\xda\x77\xf0\xed\x80\x09\x18\x76\xac\x8e\xda\x30\x1d\xe5\x39\x8e\x59\x6d\x23\x5b\x28\xdf\x58\x0f\xad\x03\xe5\x37\x31\xae\xb6\xc4\xb6\xa2\xd9\x04\xcf\x7f\x48\x7b\xb7\xd9\x34\x82\x7a\x15\xf3\x35\x8f\x45\xa8\x5a\xb4\x66\xa4\x6a\xcb\x6e\x09\x5b\x62\x7e\x7b\xe6\x95\xb7\xa4\xb5\xa7\xde\x8d\xf7\x52\x75\x21\xf7\xf1\x52\x2f\x5e\x74\xe6\x95\x47\x24\xcf\xff\xf6\x96\x36\xa1\xbc\xbc\xc9\x0a\xa7\xc0\xa5\xad\x06\x31\x24\xd8\x08\x13\xaf\x65\x66\x7f\xf1\xf2\xc4\x78\xa0\x9b\xcd\x1f\xa9\xb5\x7a\x64\xfd\xef\x0c\x44\xc5\xc9\xf2\xfa\xc1\xb3\x61\x48\x8a\xb4\xb5\x71\xf1\x5a\xff\xb6\x3a\x38\x95\xea\xd6\x46\xe8\x8e\xcd\x81\xb1\x82\x77\x9a\x9a\xf1\x79\xcf\x2d\xb7\xb7\xf2\x16\x56\x3c\x7f\x41\x59\x00\x32\x89\x53\xf0\xd6\x59\x65\xe5\x56\x46\xdb\x96\xac\x94\xf9\x50\x6a\x42\x7d\x99\x2b\xd7\xd8\xca\x33\x47\x81\xa8\x24\x15\x9f\xec\xf6\x46\x70\x2e\x23\xcb\xc1\x21\x6f\x36\xb5\xe8\x82\xdd\x5f\x36\xc5\xdd\xb1\xdf\xb9\x91\x9c\xb9\x4c\x50\x7b\x7f\xce\xb1\xa8\x0c\x18\x09\x78\x5f\x0c\xb9\xe6\x78\x8f\x02\x51\xea\xc3\x20\x16\x75\x2c\x2a\x07\xac\xdc\xa6\x41\x5c\x07\x7c\x2d\x4f\x51\xd9\x5a\x52\xa9\xf2\xea\x75\xfe\xbd\xea\x21\xff\x77\x1b\x60\xaf\xf9\xda\x26\x40\x62\xa9\x11\x77\xbe\x77\x4b\x05\x4a\x37\xef\xef\xb7\xde\xbc\xa5\x72\x6e\x7f\x95\xab\x77\x97\x6c\xd5\xef\x7f\xe5\xfa\xdd\x90\x36\x59\xce\x66\xd5\x24\x7b\x37\x3f\x5c\xbf\x9a\xad\x7f\xfd\xd4\xbf\xa1\xd7\x60\xf8\x77\x74\x5d\x62\xed\x8d\xea\x9c\xee\xd7\x5c\xa7\x9f\x3f\x77\xfa\x1b\xee\xea\x1f\x82\xbd\xf1\xbe\xae\xaf\xa0\x3a\xa4\xdf\x03\x3f\x88\xc5\x1d\x80\x57\xdd\xd3\xd7\xe3\x03\xe5\xe1\xf0\x30\x82\x9a\xbe\xd4\xa4\xba\xa6\x6c\xa8\xec\xae\x18\x83\x22\x4e\x4b\xd7\x7e\xdd\x7c\x6e\xc4\x19\xaa\x85\x6b\x67\xec\x96\xd2\xa5\xc2\x35\xb3\xf1\x1d\x84\xa3\xda\xe9\x0d\x28\x87\xcd\xf6\x9d\xbb\x76\x7d\x17\x7b\xb7\x6d\x09\x86\xba\x0c\x85\xac\xbb\x6f\xdd\xe4\xad\xdd\x6e\x25\x00\xfe\x4d\xbb\x06\x19\xd7\x14\x60\x9f\x78\x75\xa6\x6b\x2f\xd8\xbb\xd6\xbf\x7e\xd8\xfe\x6f\x0e\x4e\xfd\xfd\xbf\xde\x9c\xba\x61\xaa\x45\x49\x6a\x7a\xc2\xe5\xda\x80\x6d\x44\x4b\x7e\xbc\x61\xd5\x9b\xf2\x7f\x71\xf4\x06\xb1\xd8\xdc\x44\xdb\x94\xba\x91\xb3\x69\x35\xe3\xe6\x7a\x20\xd7\x46\xad\x5c\xdd\xfa\x98\xdd\xad\x39\x9a\x85\x95\xbd\x19\xd4\x8c\x11\x5a\x80\x8a\x04\x07\xab\x95\x65\x77\xd6\xe3\x69\x98\x1e\x4a\xdc\x35\x68\xb3\xf5\x16\x51\xbd\x92\x2d\xa1\xff\xb8\xd7\xeb\x8b\x3e\x5a\xcc\x51\x80\xde\x0c\x50\x20\xfa\x28\x54\xdf\x87\x03\xb4\xa2\x91\x04\xc9\x37\x7a\xf3\x1d\xff\xe5\x58\x4e\xf3\x4c\xe6\x22\xca\xd3\x88\xec\x38\xd7\xe7\xeb\x5c\x45\x7e\xaf\xd7\x75\x26\xf1\x5a\x60\x08\xf8\x0a\xab\xc8\xee\x4e\xaf\x4b\xfa\x48\x4e\x51\x00\xd6\x81\xfb\x28\x93\x28\xd0\x9e\x03\x91\x88\x50\xb0\xa7\x3f\xd3\x08\x05\x2a\x17\x59\xad\x08\x4d\xb5\x4e\x83\x7b\x58\x81\x60\xfd\xab\x8e\x4e\xd6\x2e\x95\x8b\x17\xa2\x48\x5a\x20\x20\x23\x57\x06\xa4\xa2\xbe\x0b\x4c\x67\x72\x00\xcf\x8d\xa6\xdf\x2b\xc1\xec\x23\x7b\xc1\x9c\x7f\xba\xc6\xea\xfb\x43\x02\x4f\xd6\x73\x60\xe1\x8b\x15\xb4\x58\xba\x9d\x54\xec\x99\x19\x8b\x8e\x26\x09\x8c\x3b\x3a\xd3\x8e\x36\xbf\x36\x30\xc7\xeb\x6c\xd3\x9e\x88\x8a\xd5\x59\x4f\x18\xd1\xda\x9b\x05\x81\x33\xff\x51\xe0\xdf\x7e\xa1\xfb\xbf\x74\xbb\xdb\x7c\xa7\x77\x7f\xbf\xfb\xeb\x43\xcf\x0a\xbb\x9f\x47\x27\x6e\xf3\x1d\x95\xb9\xc8\xf3\xc5\xcf\xb3\x81\x36\x08\x33\x30\xee\xaf\x86\xe7\x83\x60\x5f\x04\xd6\xf6\x09\x8e\xf4\x37\x98\x2a\x30\xd1\x88\xd0\x37\xfa\x73\x8a\x08\x7d\xab\x3f\x23\x44\xe8\x5f\xfa\xf3\x0a\x11\xfa\xb7\xfe\x1c\x20\x42\x5f\xea\xcf\x3f\x11\xa1\xef\xf4\xe7\xb5\x6f\x09\xed\xc5\x1d\xda\x56\x91\x2c\x05\xd3\xc0\x43\x3e\x0a\x5e\x87\xaf\x75\x8b\x9f\x09\xf6\x42\x94\x14\x99\x54\x83\xdf\xeb\xd8\x22\xe2\xa3\xcd\xa6\x2d\x86\x10\xfa\x5c\x47\x68\x37\xfc\x84\xfe\xa1\x83\xe0\x7d\x9f\xd0\x3f\x4d\x6e\x63\x02\x8d\xfe\xa4\xc3\xda\xd1\x3e\xa1\xbf\x0b\x4f\xa6\x86\x7e\x12\xec\x26\xcb\x82\xfb\xf7\x69\x16\xdc\x7f\x40\xe7\xea\xdf\x34\xd8\xdd\xa5\x51\xb0\xbb\x4f\x07\x41\xaf\xe7\xf9\xcf\xd2\xfa\x48\xd6\xfe\x93\x7d\x7c\x29\x31\xa9\xb1\xcc\xf3\x1e\xdd\xda\x12\x94\xd3\x94\x40\x27\x65\x5a\xb3\xb4\x45\x5a\x0c\x1f\xe6\x8f\xbb\xa4\x8d\xf9\xa3\x2e\xc9\xf3\x96\xe7\x19\x38\x4d\x6f\x93\x71\xae\x51\x85\x2d\x69\x61\xea\xc7\x3a\xd5\x5e\x26\x1d\x1b\xce\x1b\x69\x10\x9f\xa5\x69\x91\xa8\x4d\xfe\x25\x5e\x6e\x6b\xf5\x8f\x1d\x62\x01\x96\x8e\x25\x3b\x34\x36\x8f\xc5\x3d\xb6\xdf\xa5\x5c\xfd\x3f\xd0\x96\xb0\x0e\x71\xb2\xd3\xdb\x25\x34\x64\xc9\x3d\xd6\xdb\xa5\x19\x4b\xe9\x98\x49\x3a\x63\x9c\x2e\x99\xe8\x8b\x8e\x4c\x9e\xc5\x5f\x79\x84\xf7\x7c\x1f\x61\x9d\x7e\xb7\xa5\x7d\x84\x05\x08\xd1\x05\x33\xab\xfa\xc4\x8a\xf4\x03\x36\xb6\xb0\x72\xdd\x6f\xba\x47\x5a\x72\x7b\xc2\x16\x8f\xba\x7d\xd4\x46\xaa\x54\xc4\x44\xa5\xcd\x5b\x4c\x45\x2d\x88\xcd\x31\x2d\x72\x40\x37\xab\xe9\xe7\x1e\x04\x7f\x8c\x2a\xf9\xec\xc1\x33\x69\xa1\x37\xa8\x85\xe3\x7e\xd4\x8a\x5b\xe8\x23\xd8\xe4\x6f\xe1\xb0\x1f\xb5\xc2\x16\x1a\x98\x60\xd6\x9f\xb6\xb2\x16\x3a\x32\xc1\x71\x9e\xcf\xf2\x7c\xd9\x47\xa7\x36\xa2\x7f\xde\x1a\xb7\xd0\x0b\x13\x9c\xf5\xcf\x5b\xb3\xa2\xf4\xb2\x7f\xde\x5a\xb6\xd0\x09\x04\x61\x21\x25\x69\xc9\xc6\xa1\x7b\xfd\x4b\x6f\xd1\x67\xd3\x5d\x32\xe9\x2b\x9a\xa4\x6a\x19\x6e\x10\xe0\x84\xfd\x59\x7e\x4a\x2d\x09\x6d\xbd\x12\x75\x23\xe4\x5b\x08\x77\x39\xf4\x52\xf2\x67\xc4\x2b\x6d\xac\xa1\x96\x75\x37\x54\x7a\x39\xa6\x50\x4b\x31\x89\x5e\xbc\x95\x40\x33\x85\x20\x60\x55\x5b\x4c\x2c\x7c\x3a\x0d\x18\x9b\xd5\xd5\xad\x25\x14\x20\x12\x3e\xad\x1c\x90\x1a\xa1\x28\xaa\x67\xf2\x3f\x15\x05\x8d\xdd\x23\x90\xd7\x69\xe7\x7c\xb7\x40\xdb\x94\x08\xef\x2a\x9f\xea\x44\x2d\xd5\x81\xc3\xd6\x47\x5e\x6d\x0c\xf3\x12\x5c\xd6\x77\xb3\x4a\x67\x5a\xd7\x4d\xcb\x00\xaa\x6f\x62\x54\xd8\x9c\xb2\x92\xba\x17\x53\x2d\x1b\xe8\x9e\x29\xcd\xcd\xf8\x6f\x81\x25\xa1\x56\xd9\xcd\xe8\xa0\x59\xa1\x88\x8a\x6e\x9b\x8d\xde\xd9\x3b\xf0\x54\xe3\x5c\x6c\x6f\x57\xbf\xdc\xd7\xd5\xee\x49\x37\x3e\xa9\xac\x8f\xa2\x76\xad\xcf\x66\xd7\xe5\xce\xc3\x56\x6a\x8d\x75\x14\x0a\x65\x36\xd5\xf6\xc7\x57\x13\x33\x69\xbb\xf7\xb7\x55\x32\x58\x0b\x29\xe9\x7b\xb9\x4b\xf8\x7e\x17\x72\xec\xf3\xfb\x65\xed\x2e\x93\xe1\x97\xfd\xfb\x5d\x9d\xa3\xc7\xf7\x2c\x88\x42\xb5\x30\x58\x57\x57\x80\xa6\x6c\x4b\xd2\x4a\x9d\x45\x11\x39\x4d\x93\x2b\x50\x44\x7a\x9a\xa6\x49\x8a\xd1\x3b\xf1\x45\x24\x57\xa2\xb1\x14\xb1\x6c\xa0\x96\xba\xcc\xf5\x32\xf1\xed\xf3\xb0\x0f\x42\x47\x9a\x63\x91\x1d\x09\x9b\x49\x6f\x84\xdf\x4c\xf8\x05\x6c\x80\x37\x26\x74\xa4\x36\xe5\x5b\x13\xd0\x62\xe1\x7f\xd9\x82\x7a\x57\xfc\x6d\x82\x7f\x5a\xe9\xfa\x97\x26\xe2\x23\xec\x8f\x77\x10\xfa\x8e\x76\x45\xf5\x9a\x2f\xa1\x64\x66\x08\x8a\x29\xf7\x27\xf9\x5e\x6f\x77\x7b\xf7\xc1\xaf\xbb\x7c\xbf\xb5\xd7\x7b\xb0\xb7\xcf\xf7\xb7\xaf\x4a\xab\x40\x5d\x28\x80\x2e\xa8\x66\x18\xf4\x6c\xed\xf4\x2a\x7c\x48\xd6\xec\x12\x1a\x7a\xeb\x8d\x66\xa5\x55\xae\xae\xa7\xb5\x83\x2f\x7e\xcc\xba\xcd\x66\x08\xff\xb3\xc7\xac\x9b\xe7\xf1\x23\x88\x81\xff\xd9\x23\x15\x83\xe3\x16\xd3\x1d\x3b\x11\x6a\xe1\x66\xa4\x15\xaa\x8b\xaf\x4b\x33\xd6\x25\x74\x5c\x3e\xd9\xe2\x7b\xea\xa2\x55\x97\x68\x0c\x1a\x2b\x74\xec\xce\x35\x70\x18\x50\x5c\xaa\x63\x77\xb0\x49\x95\x20\xd8\x21\x96\x26\x41\x9f\x6c\xe2\xde\xee\x7d\x1a\xb6\xe0\x3e\xde\xbd\xaf\x2e\xeb\x43\xfc\x6f\x81\x43\x42\x68\xd6\x62\x09\x0d\xdb\x4c\xb7\x28\x01\x9d\xdc\x43\x0c\x23\x48\x33\xb8\x90\xc7\x5a\x3a\x3e\x54\xd5\xe8\xd9\xcf\xe8\xd8\x1c\x84\x69\x71\xfc\x6d\x32\x67\xf4\x87\x93\xe6\x4c\xd2\x4d\x06\x1b\xf4\x21\x44\x6b\x96\xc5\x90\xb7\x50\x86\x46\xb8\x98\xce\xd2\x18\x3d\x83\x85\x66\x43\xef\x85\xce\xa0\xc7\xe2\x23\x84\xf4\x00\x3c\x87\x6f\xe8\xc7\x1f\xf0\x59\x51\xad\x70\x2d\x39\x74\x22\xd8\x19\x26\x3b\x0f\x75\xab\x4d\xb7\xff\x84\x92\xba\xe3\x3f\x69\xe0\xc6\xba\xc5\x1d\x8f\xe6\xbb\x60\x5e\x35\xda\x1d\xb4\x6a\xe4\xc0\x4a\xa9\xfc\x01\xc2\x97\xe1\x79\x06\xa6\xaf\x7e\x17\x58\xed\x40\xc0\xde\x09\x8d\x8b\x30\x88\xab\x86\x45\x78\xaa\xc2\x59\x11\x8e\x54\x78\x5c\x84\x07\x2a\x3c\x2b\xc2\xd7\x2a\xbc\x64\xc9\x23\xf6\x49\x74\xb2\xac\xd9\x04\x13\x79\xc9\x28\xcf\x93\x47\x2a\x06\x22\x4c\x4c\xfc\x88\xf5\x54\x78\x8e\x20\xf0\x49\x74\xe6\x10\x9c\x23\x1a\x8f\xf2\x3c\x34\xc9\x53\x04\x81\x4f\xa2\x33\x85\xe0\x14\xd1\x70\x94\xe7\x99\x49\x8e\x10\x04\x3e\x89\x4e\x04\xc1\x08\xd1\x6c\x94\xe7\x63\x93\x3c\x40\x10\xf8\x24\x3a\x03\x08\x0e\x10\x1d\x8f\xf2\x7c\x66\x92\xaf\x55\xf2\x10\x5d\x5f\x23\x3a\x73\xb2\x15\xcb\xe1\xee\x88\x49\xba\x1c\xee\x8d\x58\x8b\x3f\xee\xd2\xe5\xf0\xfe\x88\x09\xca\x53\xdf\x21\xcf\x92\xac\x8c\xfc\x32\xf7\x04\xb8\xb8\x16\x67\xf2\xa4\x3d\x30\x9c\x47\x54\x10\x42\xa5\x6f\x49\x46\xe8\x05\xe3\xeb\x84\xa6\xa9\x8e\xa9\x04\x41\xb5\x4e\x07\x0a\x2b\x01\x2e\x60\xad\x04\x68\x58\x99\x2d\x7c\x8c\x91\x17\x5c\xb7\x67\xec\x59\x1a\x2f\xe9\xe3\x59\xca\xb9\x81\x45\x22\xe3\x31\x07\x73\xc6\xe3\x70\x11\xcb\x70\x96\x11\x44\xd3\x94\x40\xdd\xc6\x72\xc1\x3b\x8c\xfe\x32\x96\xdb\x96\x22\xfe\xaa\x8d\xb9\x7d\x35\x31\xe6\x54\x37\x3e\x49\xbe\x16\xe6\x50\xff\x32\x0e\xd1\xfb\x9f\xa3\x16\x78\x84\xb8\xe9\xd1\xbd\x15\xe9\xef\x68\x3b\x98\x7f\xa1\x7a\x7b\x92\x85\xdf\xaa\x1e\xdf\xdb\xf6\xcd\xd2\x83\xd3\x5d\x63\x58\x53\x55\xf4\x9d\xe2\x57\x0a\x8f\xd1\x0e\xae\x8c\x53\x2f\x86\x76\x3b\xbb\xf7\x3b\x5d\x44\x25\x7b\x22\x69\xda\x99\x08\xf6\x4d\x50\x38\x22\x6a\xf6\xfe\x91\xc4\xc8\x1a\x7d\x40\x74\x38\xd2\x02\x50\x9a\xdf\xe5\x3c\x35\x51\xd5\x26\x05\x22\xac\xd3\x39\xd4\x20\xc0\x06\xc5\x77\x21\x08\xdf\xce\x4d\x01\x21\x94\x5c\x25\xf5\xed\x07\x26\x41\xcb\xf6\x51\x15\x03\x81\x78\xf5\x5b\xd2\x7a\x2c\xce\xd2\x27\xda\xdd\x03\xd7\xad\xbc\x45\xa4\xc6\xc8\x20\x3a\x8a\x57\xe5\x8f\x33\x10\xe2\x1a\x53\xb7\x2a\x23\x35\x6e\xd6\x26\xfa\x39\x4d\x3b\x91\xb1\x7b\xcd\xfe\x80\x94\x4c\xfb\xb0\x63\xd7\x34\xad\x7f\x62\xf4\x98\x60\x4e\xca\x10\xd9\x9c\xba\xd6\x5a\x09\x7a\xd7\x9d\x7a\x87\x59\x45\x21\x0c\x30\xbc\x7d\x73\xae\x1b\x76\x64\x1b\xfa\x56\xba\x91\xb8\x45\x14\xa7\x3c\x1c\x90\x51\xb7\xae\xfe\xd1\xf1\x3b\x1d\x1b\xc4\x42\x97\x8e\xf8\x24\x16\xfc\x95\x1e\xcc\xa9\x74\xca\x12\x26\x66\xcd\x74\x87\x95\xf7\x2c\xbc\x91\xb0\xb1\x34\x32\xfe\x38\x65\x13\x6b\x4c\x3d\x61\xa9\x15\xe2\x52\xf4\xf5\x53\x9c\x50\x49\x28\x16\xb0\x1f\x4e\xb0\x24\x30\x42\x5c\x48\x53\xd1\x0c\xa4\x0a\x67\x5a\x16\x90\x46\x85\x1b\x58\x0d\x1a\x12\xd4\x31\x57\x84\x4a\xe5\xfb\xba\xe4\x7a\x42\x50\x2a\x6f\x5c\x6c\x42\xc8\x1d\x9f\x10\x2a\xe6\xa8\xee\xda\x3d\xc5\x33\x59\x1a\xec\xf5\x89\xba\x75\xb8\xbd\xe9\x12\xea\x24\x9e\xc5\xdf\xf8\x3b\x11\xcb\x8c\x7d\xa1\x69\x89\xd3\xf2\x56\x51\x0d\x55\x5d\x7d\x03\xd7\x33\xc4\xfe\xbb\x08\x90\xcd\xe1\x0b\xc2\x36\x9b\xf8\x77\xc1\x38\x68\x52\x54\x20\x9f\x4e\x53\x9e\x4d\x93\xd9\x06\x2a\x50\x03\xdf\x62\xec\x93\xd0\x43\xed\x6a\x93\x7d\x88\x0a\x30\xfc\x30\x49\x51\x06\x84\x57\xb3\x89\xe1\xc2\x65\xb2\xdd\x23\xaa\x46\xa8\xb2\x6c\xc3\xb2\xde\x1c\x26\xd8\x8c\xc4\x92\x6a\xde\x16\x68\x97\x58\xba\xea\x51\x7b\xbf\x5f\x98\xbb\x0c\xc4\xa3\x76\xaf\x8f\x66\x61\x26\xb5\xc5\x0e\xf1\xa8\xab\x83\x47\x8a\x3c\x12\x8f\x7a\x3a\xb3\x09\xed\xf6\x91\xf1\x12\xa9\x42\x0f\x75\x48\x17\x2c\x60\xc2\x8e\xb6\xdc\x06\x7d\xde\xbe\x38\x1d\xbc\x7a\x70\xf6\x6c\x70\xca\x6e\x8e\x0e\x4f\x9f\x9e\xbe\x1c\x3c\x3d\x7b\x75\xfc\xe4\xf0\x55\xb0\x66\xc3\x1f\xd1\x72\x8e\xb3\x93\xa7\x4f\x8e\x5f\x1f\x9d\xac\xe7\x0c\x14\xce\x51\xc9\x3c\xa8\xcf\x07\x6a\xed\x90\xd7\x4f\x46\x54\x95\x0c\x90\xa9\x17\xc0\xb8\xda\x8a\x2a\x20\x7e\xe0\x45\x69\x68\x1f\x9e\x3e\xfd\x23\x00\x83\xdc\xed\xe1\x87\xd1\x87\x0f\x88\x0e\x8e\x5f\x9f\xbe\x70\x15\xa8\x71\x58\x61\xb2\x22\xbe\xfd\x50\xbc\xf7\x2b\x81\x6b\x8a\x56\x97\x36\x52\x97\xb6\x56\xed\x46\xc6\x7d\x96\xc0\x7b\xe0\xc2\x03\x3f\x50\xe8\x9c\xc0\xbd\x5f\x14\x1a\x27\x70\x57\x61\x6f\xa2\xa3\xf0\x77\x3a\x56\xf1\x0a\x5b\x53\xe1\xb1\x42\xd3\x04\xbe\x4f\xe8\x02\xc2\x4b\x42\x27\x0a\x4a\x8f\xd0\x88\x09\xbc\x4b\xe8\xd4\x38\x3f\xc5\x71\x27\x24\xf8\x66\x45\x27\x9d\xd3\x34\x14\x59\xac\x9a\xa2\x66\x6d\x71\x7a\xbd\xe0\x19\xbd\x19\x4f\xe3\x59\x94\x72\x11\xcc\x3a\x61\x07\x9c\x50\xa9\x04\x3c\x54\xc1\x30\x4d\xc3\xeb\xe3\x09\x56\xdf\x22\x89\xd4\xf5\x6f\xbe\x46\x84\xca\xf0\x22\x88\x3a\x7f\xd3\xf3\x30\xe3\x4f\x66\x61\x96\x01\x04\xad\x06\x51\x44\x1e\x8e\xd5\xae\xf1\x93\xc6\x2a\xfa\x75\x38\x2f\x47\x66\xd9\x20\x89\x96\x33\x1d\xa9\x8d\x1a\xd1\x58\x08\x9e\xbe\xe5\x93\xba\xa6\x99\x2c\x1e\x08\xf5\xa9\xc6\x7a\x44\x56\x84\x9e\xdf\xda\x7d\x43\x6b\xbf\x49\x93\x45\x46\x6f\x54\x47\x50\x14\x5f\x22\xaf\x2b\x68\x12\x46\x1c\xad\x75\x03\x65\xd3\xe4\x0a\x51\x19\xcf\x79\xb2\x94\x41\xd4\xe1\x9d\x67\x61\xc4\x69\xb8\x58\xf0\x30\x0d\xb6\xba\x94\x0b\xc9\xf5\xc7\xd7\x58\xaa\xdf\x58\x80\xfb\xeb\x82\xb3\x3b\xf7\x1d\x2d\xcb\xf0\x02\x7c\x6e\xbb\x8a\x68\xec\x87\x74\xb5\x34\x04\xd7\x20\x66\xd8\xe8\x58\x85\xec\x78\xd1\x99\x0a\x99\x39\xa4\x4b\xc6\x3b\x76\xd4\x8a\x25\x90\xa8\x31\xe0\x74\x88\x64\x78\x81\x28\x72\xd0\xfd\x6f\x5d\x13\xa2\xc8\xd5\xa3\xbe\x6d\x2d\xea\xdb\xd4\x81\x28\xb2\x35\xa0\x91\x37\xd0\x51\x27\x26\x78\x4a\xa3\xce\x98\xd0\x79\x11\x39\xb5\x91\xf6\x5c\xca\x3a\xa1\xf1\x1e\xfb\x74\xc6\x41\x37\xc7\x9f\x1a\x7a\x5e\x16\x51\xd7\xaf\x3a\x08\x46\x95\x6b\xeb\x4c\x74\x52\x40\xbf\x20\x78\x81\x09\x0e\xa9\xa0\x49\xb3\x19\x13\x7a\x5b\x3d\x92\x9a\x72\x29\xac\x89\x62\x1d\x4e\x56\x74\x4e\x6f\x52\x3e\x09\x96\x2b\x42\x67\xe0\x9e\x6f\x5e\xec\x11\x36\xa5\xf3\xd2\x92\x61\xe7\x54\x76\x42\x36\x5f\x51\x5a\x3e\x94\x0b\xee\x3d\xf6\xa4\xeb\xf9\xd7\x45\x92\xca\x8c\x09\xeb\x8f\x38\xcc\xb2\xf8\x42\xe4\xb9\xdf\x51\xe7\x2f\x92\xf5\x0e\xe4\x23\x87\xfd\x58\x7b\x59\xb2\xd5\xb2\x67\xbe\x4b\x1b\xca\xc2\x98\x57\xda\x88\x45\x43\x10\x53\x41\x61\xda\xa5\xec\xc6\x58\x1f\x50\x82\x82\x5f\x70\x2d\xa0\x31\x4c\x47\x4e\x53\x90\xaf\xa8\x30\x38\x18\x1c\x62\x05\x0e\xb6\xf2\x7a\xf1\x9d\x13\x6d\xab\x78\x0d\xd1\x8f\x13\x68\x29\x34\x6a\x14\x79\xca\x51\x67\x67\x6f\x9f\x1e\x3e\x39\x3d\x3b\x7a\xfa\xfe\xf4\xf8\xf8\xd5\xc9\xd9\xf3\x57\xc7\xbf\x1d\xbe\x3a\x7b\x71\x7c\xfc\xc7\xd9\x59\xb3\x59\x77\x25\xdf\x5e\xa6\x33\x9e\xf2\xf1\x97\xa3\x27\x4f\xc9\x4d\xf7\x40\xa6\xd7\x37\x77\xcc\xae\xd0\xa3\x31\x18\xe7\x97\xe4\x66\x9c\x88\x2c\x99\xf1\x0e\x07\xd6\x9b\x24\xab\xd5\x0a\xec\x11\xb8\xce\xe3\x5e\x77\xf7\x6e\x67\x7a\x86\x05\xee\xf5\x7a\x44\x1d\xec\xfa\x7b\x1f\x88\x75\xf5\xbd\xbf\x07\x74\x3a\x7c\xf6\x7c\x47\x2f\x59\xd9\x55\x37\xef\x9c\x9d\x71\xb3\x05\xfb\x3c\xb8\xb1\x3c\x42\xbe\xf2\x26\xe4\xa6\xd8\x3d\x41\x68\xd7\x29\x2d\x22\x9f\xa7\xc9\x72\x11\xc4\x2e\xe5\xad\x7e\x59\xf1\x4a\x25\x2e\xed\xc9\xc9\x89\x17\xef\x4c\xae\xae\xbe\xd3\xe3\xe2\x41\xaa\xfc\x60\xe0\xdc\x38\x6b\x86\xd0\x11\x4f\xe3\x4b\x1e\x9d\x48\xe3\x3a\x1a\x36\x93\x66\xc3\x2c\xe0\x28\x86\xcf\x4c\x25\x5b\x65\x57\x85\x1b\x39\x7c\xca\x29\xea\x72\x09\x30\x4a\x6f\xaa\x89\x1a\xba\x72\xb2\x6b\x73\x59\x4d\xe3\x4e\xad\xf2\xb9\x02\xa6\x29\xc2\x6b\x8a\xe8\x0b\x6d\xfa\xa6\x73\x1e\x0b\x67\xa6\xcf\x35\x26\x36\xc6\xd8\xd3\x6b\xbf\x62\xdd\x49\xc3\xaa\x87\x6e\x1e\x14\xf1\x56\x41\x03\xe2\x99\x15\x23\x3c\x4b\x79\x38\x96\x2f\xd5\xf1\x27\xc2\xd9\x89\x08\x17\xd9\x34\x91\xcf\x66\xe1\x05\xdb\xea\xde\x9a\x47\xd7\x72\xc1\xa5\x8d\xd0\xe4\xee\x3b\xa0\x49\xe0\x0c\x58\x4d\x62\x11\xce\x66\xd7\x37\x5e\x23\x84\xdf\x88\xd4\x73\x0c\x16\xfa\xb7\x56\xf1\xc4\x04\x2c\xb0\x3c\xdf\x92\x9d\x38\x7b\xab\x9a\xf1\x24\x99\x2f\x12\xc1\x85\x24\x6b\x8c\xec\x27\xa1\x68\x24\x62\x76\xdd\x58\x24\xb3\xeb\x49\x3c\x9b\x35\xe0\x08\x6e\x8c\x6d\x91\x0c\xc1\x63\x5e\xb1\xf7\x3d\x65\xca\x8d\x33\xe5\x9f\x15\x45\x7e\xb9\xa9\xe7\x96\x43\xc7\x8d\xed\x25\x4d\x6c\xea\x1f\xad\xb1\x5e\x6e\x82\xa7\x9b\xdd\x71\x0d\xfd\x10\xcf\x66\x83\x64\x29\x64\x5f\x30\xb4\x1e\x8b\x6a\x29\x0a\xd9\x79\xf7\xfa\xe4\xf0\xd9\xd3\xb3\xf5\x02\xc0\x75\x42\x1b\x93\x11\xa1\x77\x68\xd0\x5b\x3e\xe6\xf1\x25\x87\x41\xe9\x87\x95\x76\xf9\x89\x3f\xd2\x3c\xbf\x5c\xb3\x89\xc3\xfa\x56\x96\xa0\xdf\xa9\xb1\x7a\x32\xfa\x59\xa5\x99\x3a\xfa\x47\x1a\xa8\x4b\x34\x9b\x38\xab\x6f\x9a\x81\x48\xa8\xdd\xc4\xd6\xe9\x32\x0b\xdd\x57\xa6\x57\xf6\x18\xc8\xa9\x6c\x31\x0b\xaf\x15\x5a\x90\xe7\xbc\x23\x14\xbe\x35\x63\xb5\x04\xe2\xc6\x15\xd9\x47\x1b\x4f\x15\x82\x02\xb4\x69\x4b\x12\x74\xa0\xb7\x8c\x7b\xf7\xc9\xc2\x09\x6f\xcc\xf8\x45\x38\xbe\x6e\xcc\xe2\x09\x1f\x5f\x8f\x67\x3c\xd3\xde\xe8\x45\x22\x1b\xe7\xbc\xa1\x2e\x74\x1e\x81\x32\x6f\xb1\x8d\x1a\xcb\x2c\x16\x17\xb0\xf5\x5c\x64\xe3\xf0\xcd\xcb\xac\xf3\x59\x7c\x16\xa8\x35\x6e\xa1\xc6\x32\xe3\x59\x03\xb5\x66\x2d\xd4\x38\x5f\xca\x46\x38\xcb\x92\xc6\x38\x11\x32\x8c\x45\x06\x4c\xc3\x49\x32\x9b\x25\x57\x0a\xce\x5a\x0b\x02\xd4\xc2\x76\x38\xfb\xe8\xb3\x68\x34\x50\x4b\xe8\x47\x69\x3b\xb6\x36\x3a\x2c\x45\x67\x36\x3a\x83\x68\xa4\x9a\x73\x3a\xe5\x8d\xf0\x3c\xb9\xe4\x7e\x17\xb3\x69\xb2\x9c\x45\x9e\xcb\xfd\x4e\xe3\x15\x0f\x53\xa1\x35\x96\xc3\xf3\x64\x29\x81\xc7\xde\x30\xba\xcd\x8d\x29\x4f\x79\xf0\x59\x4c\xa5\x5c\x64\xc1\xce\xce\xe4\xbc\x33\xe7\x3b\x70\x2e\xb6\xc3\xec\x5a\x8c\xdb\x6e\x20\xda\xae\x9a\xf6\x34\x49\xbe\x64\x88\xac\x36\x6c\xf8\xdb\xce\x1c\x5c\x77\x1a\xb0\x94\xde\xb2\x27\x59\xb2\x69\x67\x6c\x3a\xaa\x6e\x36\x1c\x86\x5e\x25\x47\x71\x64\x32\xd7\x1d\xb7\x6a\x91\xb8\xc3\x76\xe3\xba\xab\xae\x1e\x39\x0d\x65\x23\x4a\x60\x89\x69\xcc\xad\xb1\x5e\x1f\x26\x8d\x44\xc0\x42\x71\x97\x01\x22\x07\xb5\xbb\x9c\xc5\x70\xd6\x2e\x59\x5d\xbb\x0f\xea\x22\x6f\xd5\xd5\xdd\x7c\x25\xf6\x6f\xcb\x10\x88\x83\x65\x45\x0c\x3e\x25\xab\x02\xf5\x15\x1d\x85\xf0\x51\xd1\x89\xb0\xa4\xc8\x8e\x1a\xaa\xf3\x05\x13\x6a\xde\xf3\xd9\x59\xb6\x5c\x2c\x52\x9e\x65\x47\x86\x33\x1f\x27\xe2\x83\x5e\x90\xea\x76\x4e\xbe\x9b\x23\xfe\x5e\x8e\x55\x85\xc0\x28\xb0\xbe\x6a\x7c\xc1\x87\x31\x34\x80\xa6\x7d\xb0\x47\x0c\x28\x44\xb6\xa0\x0c\x3c\x2c\x88\x71\xaa\x30\x4d\x48\x3b\x3b\x63\x3f\x82\xee\xf9\xcc\x4c\xc6\xec\xed\x6a\xdc\x4b\x6b\xa6\x66\x2d\xe3\x73\x43\xde\x9b\x15\x8d\x6d\x07\xbe\xf0\x6b\x85\x0e\x7b\xba\xee\xb1\x6f\x3d\x58\xb0\x78\x98\x8e\xa8\xec\xc4\x22\xe2\x5f\x8f\x27\x58\x10\x78\x8c\xc5\xc9\x50\x8c\xb4\x62\x6c\xa1\xfe\xae\xd1\xb9\x78\x82\x0d\xec\x0b\x2e\x3d\xb2\xe8\xe4\x7a\x7e\x9e\xcc\x32\xeb\xb1\xef\xb6\x3c\xff\xa0\x41\x6b\x34\xd9\xc2\x80\x7c\x99\x3d\x15\xcb\x39\x4f\xc3\xf3\x99\x79\x39\xe0\x54\x00\xc7\xd7\xf5\x60\xe5\x7a\x60\xd6\x65\x58\xbb\x20\xd3\xd5\x77\x19\x4d\xf5\x2b\xc7\xbe\x8b\xd3\x90\x66\xfa\x3d\xd3\x60\x79\xe3\x92\xad\x64\x49\xc6\xcc\x3b\x59\x06\xb1\x88\x27\x31\x8f\x1a\xfc\xeb\x98\x2f\x34\xf6\x3d\x1e\x2f\xd3\x94\x47\x07\xfa\x49\x6a\xca\x1b\x22\x11\xed\xb9\xcd\x18\xf1\xcb\x06\x17\x97\x71\x9a\x08\x45\x50\xc2\x89\x03\x97\xcc\x72\x36\x6b\x00\xb1\xd5\x98\xf3\x2c\x0b\x2f\x78\x23\x14\x51\x23\x8c\x22\xa0\x40\xc2\x59\x63\xca\x67\x8b\xc9\x72\x66\x0f\xfa\xac\x83\xb4\xfd\x1c\x68\xe5\x8c\x0d\xbd\x0e\x8c\xe8\x92\x75\x0f\xb0\xdf\x54\x59\xd2\xae\xbe\xa8\x1b\xbb\xd9\x70\xd9\x6a\x8d\x56\x84\x10\x02\xd7\x3d\x43\x2f\xc5\x65\x98\xc6\xa1\x90\x8d\xf7\x71\x32\xd3\x86\x31\x56\xfa\x78\x1d\x77\x26\x69\x38\xe7\xd9\x69\xf2\x26\x59\xb0\x1e\x1d\xaf\xbe\xb7\x57\xfc\xa7\xac\xd4\xe3\x10\x24\x9e\x78\x5f\x52\x8b\x60\xe8\x15\xd7\x6c\xa2\x0c\x3e\xd6\x52\x3a\xb1\xe4\x69\x28\x93\xb4\x5f\x27\xf1\x6d\xae\xb0\x55\x50\xf7\x08\x5f\x4f\x5f\xdb\x0a\xcb\x67\x03\x63\x2e\x7e\xcb\x7e\x17\x8b\xb9\x6f\x5b\x17\xb8\x1a\x49\x89\x2c\x33\x94\x50\x61\x93\xbc\x7b\x20\x1e\x49\xbb\x6f\x84\x65\x6b\xa4\x4c\x82\x4e\x7e\x87\xbb\x2d\xc1\xfc\x40\x9e\x6f\xf5\x68\xda\x71\xfe\x58\x55\xfa\x96\x7d\xa3\x44\xb1\x68\xa4\xe0\x1a\xfb\x2a\x8d\xa5\x49\x23\x86\xdb\x63\xde\x65\xec\x3e\x56\xd3\xa0\x8e\x16\x38\xfc\x7d\xea\xa6\xf4\xee\x20\x41\xc5\xbe\xbf\x09\x82\xa4\x37\x50\x71\x20\x68\xd1\xc4\x60\xab\x4b\xfd\xf6\xa9\xb0\x6d\x0f\xb0\x00\x03\x3e\x94\xf0\x10\xbd\x2a\xd3\xfb\x77\x67\xfd\x68\x34\xca\x67\x00\xf5\xfd\x40\x70\xb3\xa2\x69\xe9\xf8\x14\xe4\xa0\x6e\xa6\x6f\x3b\xe1\xd4\x38\x32\x18\xe9\x71\x28\x6f\x3d\x2f\xb1\x20\x9d\x49\x3c\x93\x3c\xc5\x75\x66\x25\x6a\x8b\x1e\xf1\x6c\x9c\xc6\x0b\x99\xa4\x58\x50\x4e\xbc\x19\x86\x1d\x48\xd3\xce\x24\x49\x9f\x86\xe3\x29\x2e\x51\xef\x66\x7e\x86\x12\x9c\x27\x16\x97\xb6\x1b\xc8\x71\xbd\xaf\x6f\x8d\x43\x81\x89\x98\x4e\x9c\x69\x53\x31\x85\x66\x0e\x5f\x61\x4e\x7c\x36\x5c\xf1\xb0\x32\x1c\xd1\x14\xee\x70\xb6\xd5\xa3\xb1\x31\x6e\x02\x6c\x25\x3b\x5b\x21\xcd\x18\x1f\x56\xb6\xe2\x08\x93\x83\x2d\x9c\x32\x1c\xb2\xac\x23\xf8\x57\x89\x09\xe9\x44\x89\x00\xb3\x2f\x42\x5b\xda\x0f\xb5\xb8\x14\xa1\x8a\x70\xb6\x06\xf1\x15\x72\x47\x0e\x54\x95\xe4\xc0\xb0\xa3\xc6\xe4\x26\x01\x24\x81\x8d\x0b\x4a\x3d\xbd\xbe\x49\x35\xdd\xc2\x58\xd6\xd1\xfd\xc8\x73\xfb\x85\x0b\x9a\x3e\x9e\xe0\xc4\xe0\x84\xb1\xc3\x72\xc4\xca\xb8\x3d\xf0\x8e\xc1\x02\x6f\x3c\xbd\x5e\x70\x73\xc2\xbf\xd4\xcf\xc0\x8d\x50\x4a\x3e\x5f\xc8\x86\x4c\x1a\x11\xd7\x47\xc2\x32\xd5\x67\x3b\x74\xf9\xdc\x08\xff\x87\x62\xcc\x11\x59\xf9\x82\xf1\xb3\x3a\xf1\xef\x0d\xf3\xe1\x6d\x81\x2e\xd5\x0f\x9b\x26\xcd\x0c\x0f\x39\x90\x8f\xb8\xbf\x21\xd4\x52\x60\x6a\x3f\x39\x1e\xcd\xaa\x3a\x99\x50\x55\x65\x7e\xd4\xb6\x36\x4c\x60\x95\x19\x0d\xf5\x33\x42\xe3\xd0\xee\xa2\x91\xda\x25\x6b\x37\xb6\x95\xe9\x30\xb7\xb4\x5b\x40\xba\x23\xe0\x82\x87\x93\x4a\xfd\x77\x1f\xd9\x6c\x91\xf2\x30\xba\x6d\x50\xcd\xe5\x7f\x5e\x7b\xf9\xbf\x03\x97\xa4\x26\xcb\xb8\x36\xcb\x5b\x3f\x4b\x3d\x0a\xf1\xb7\x9f\x25\xaa\xcd\xf2\x52\x5a\x63\x49\x4b\xff\x61\x77\x45\x17\x0a\x6f\x9b\xa8\x7f\x91\x66\xa4\x4c\xd9\xcd\x3c\x4c\xbf\x04\x4b\x3a\xe7\x61\xb6\x4c\x79\xb0\x5c\xc1\xe6\xa9\xe5\x05\x5f\xc5\x22\x4a\xae\x9a\x4d\xbc\x60\xfa\x93\xd0\xda\x7c\x51\x32\x86\x49\x6a\x36\xf1\x84\xd9\xc0\x86\xbc\x83\xa5\x84\x8b\xfb\xf8\x3c\xe3\xe9\x25\x57\xb7\x43\xc4\xaa\x91\x1b\xca\x2e\x78\x0a\x42\x3e\x62\xcc\x9b\x4d\x3c\x65\x5e\xd8\xb2\x8a\xdf\x4b\x72\x03\x22\xd7\xe7\x0c\x2f\x3a\x22\xbc\x8c\x2f\xd4\xf2\xca\xf3\x9b\x15\xe9\x2c\x33\x9e\x1e\x5e\x70\x21\xe9\x9c\x39\x14\xea\xbc\x8f\x50\x70\x4e\x07\x6c\x41\x2f\xd8\x84\x5e\xb2\x88\x5e\xb3\x29\x3d\x64\x78\xd0\xb1\x7d\xa1\x5b\x5b\x17\x2e\x60\x5e\x2d\x9a\x4d\x15\x39\xe5\x61\x54\x7f\x69\x5f\x74\xc2\x28\x7a\x7a\xc9\x85\x7c\x15\x67\x92\x0b\xd5\xd5\xfa\x7c\xa5\xc7\x10\x42\xaf\xd8\x7f\xe6\x0e\x55\x45\x83\x93\x97\x4f\x11\xc9\x73\x3f\xee\x34\x8d\x23\x2e\xe4\x0e\x22\xf4\x1b\xeb\xed\xd3\x33\x86\x26\x21\xa2\xc7\x0c\x65\x97\x17\xed\x58\xcc\x62\xc1\xdb\x6d\x15\x75\xca\x50\x14\xca\xb0\x3d\x09\xdb\xf1\x6e\x76\x79\x81\xe8\xd7\x22\x66\x91\xf1\x65\x94\xb4\xb9\xae\x18\xd1\xd7\x9b\x92\xda\x0b\x0e\x0f\xf6\x88\xbe\x32\x59\x16\x29\x9f\xc4\x5f\x11\x7d\x6a\xc2\xf1\x38\x11\x88\x9e\x30\x34\x49\x84\x0c\xaf\x78\x96\xcc\xb9\xad\xf1\xdf\x0c\x01\xa5\x8f\xe8\x13\x36\x44\x2f\x4e\x07\xaf\x10\x45\x2f\x9e\x1e\x1e\x21\x8a\x4e\x4e\x3f\xbe\x7a\xaa\x7e\x9f\xbc\x7d\xf9\xe6\x14\x8d\x68\x49\x93\x1e\x0e\x55\xa3\xd8\xed\xcd\xaf\x89\xea\xc1\x13\xc0\x07\x76\x33\x09\xb3\x00\x65\xc9\x2c\x8e\x10\x9d\x84\x69\x80\x52\x7e\xb1\x9c\x85\xa9\x0a\xcd\x02\x34\x8b\x2f\xa6\x52\x7d\x47\x01\x8a\x96\x89\x04\x33\xef\x93\xf0\x3c\x40\xe7\x69\x08\x1e\x34\x27\xa1\x2d\xbf\xa2\x47\xec\x06\x3e\x03\x34\x09\x33\x44\x0d\x28\x15\x4a\x11\x05\x50\xea\x7b\x86\xa8\x01\x05\x0f\x92\x88\x6a\x50\x2a\x70\x8e\x56\xf4\x37\x35\x21\xed\x59\x78\xcd\xd3\xac\x2d\xf9\x57\x89\xe8\x1b\xb6\xf3\x2c\x11\xb2\x71\xa8\x07\xa7\xf1\xa0\x81\x4f\x54\x3d\xf9\x5b\x5d\x43\xfe\x4a\xc1\xce\x8f\x34\xd4\xfc\x37\x80\x97\x3f\x4b\x39\xcf\xdf\xa4\x09\xd9\xa1\x6f\xd9\xcd\xaf\xdd\xae\x69\xd6\x7d\xfd\x95\x22\xaa\x65\x2d\x4c\x60\x4f\x47\xcf\xd0\x8a\xfe\xc5\x86\x3d\xba\x4b\xf7\xe8\x7d\xfa\x80\xee\xd3\x87\xf4\x17\xfa\x2b\xed\x75\x47\xf4\x6f\xf6\x97\xc5\x21\x86\xbd\x1e\xed\xed\xd2\xde\x1e\xed\xdd\xa7\xbd\x07\xb4\xb7\x4f\x7b\x0f\x69\xef\x17\xda\xfb\x95\xee\x76\x47\x84\xbe\x64\x43\xfd\xec\xa8\x3d\x40\x17\xf3\xee\xcf\xba\x5b\x34\x32\x0d\x45\xa6\x36\xa4\x17\x37\x0f\xb3\x2f\x68\x44\xdf\xb1\x9b\xe7\x6f\x8f\xdf\xbd\x09\xd0\x45\x9a\x2c\x17\x88\x9e\x7c\x38\x7c\x73\x76\xfc\xe6\xf0\xc9\xcb\xd3\x8f\x01\xca\xae\xc2\x45\x3b\x59\x84\xe3\x58\x5e\x23\xfa\xe6\xed\xcb\xc1\xe1\xdb\x8f\x01\x5a\xa4\xf1\x3c\x4c\xaf\x11\xd5\x22\x01\x10\xa7\x05\x4d\x55\xec\x8a\xbe\x60\x43\xf4\x15\x5c\x05\xab\x2a\x67\x17\x88\xa2\xc9\x15\xa2\x68\x39\x53\xc1\x18\x51\x74\x9e\xa4\x11\xf8\xc6\x5e\x2c\x67\xb3\xf6\x8c\x4f\xa4\xfd\x4e\xf5\xaa\x40\xd9\x22\x16\x3a\x2e\xe3\x88\xa2\x34\x91\xa1\xe4\xed\x5f\xbb\xc5\x77\xef\x17\x2f\xb0\xfb\x50\x05\x26\xb3\x78\xd1\x9e\x26\x69\xfc\x4d\x2d\xf7\x99\x8d\xb9\xe4\xa9\x8c\xc7\x45\xf8\x3c\x91\x53\x55\x85\x0c\xc7\x5f\xec\x6f\xbb\xf7\xd5\x7d\xee\x7e\x85\x37\xdb\x4b\x9e\x42\xdd\x7a\xbd\xb8\x0f\xb3\x70\x6c\x68\x9c\x2c\x05\xc8\xb4\xbd\xeb\xc0\x50\xd2\x77\x1d\x7f\x10\xe9\xbb\x8e\x19\x37\x95\x60\xc7\x6b\x64\xa7\xfa\xaf\xce\x3c\x5c\xd4\x61\x83\x08\xd9\x2c\x9c\xa2\xaf\x48\x61\x71\xc4\xc6\xfc\xbd\xb1\xd0\x55\xbb\x28\x06\x45\xe8\x33\x36\xe8\xa8\x05\x6e\xd6\xf7\x13\xc0\xb7\xd5\xb1\xab\xe8\xd5\x8b\x4d\x47\xdf\xbf\x97\x3c\xbd\x3e\xe1\x33\xae\x28\x1a\x72\x33\x1c\xda\x85\x33\x8f\x67\xd7\xc5\x6a\xd3\xe1\x37\x3a\x38\xa2\x26\x97\xa1\x20\xe1\x84\xb2\xab\xd4\x8b\xd3\x2f\xe9\x2e\x77\xb8\x94\x89\x2d\xd2\x86\x83\x09\xa9\x28\xf3\xe8\x76\x72\x79\x51\xc9\x1a\x46\x51\x7b\x0c\x30\x55\xf0\x30\x8a\x9e\xac\x41\x0b\x7b\xbd\x6b\x9b\xae\x3e\x5d\x6a\xc6\xc3\x74\x3c\xad\x9c\xa2\xb0\x50\x21\xe1\x0d\xc4\x3f\xb5\xd1\xae\x58\xa2\xaf\xbf\xf6\xdc\x5c\x87\xaa\x84\x89\x1b\xb8\x28\x97\x1b\x72\xf1\x76\xb8\x58\xa4\x49\x38\x56\x0b\x4d\xc7\x1c\xda\x08\x97\xf3\x0b\xe7\x8b\x76\x92\xc6\x17\x0a\x05\x6d\x6b\x7b\x5f\x88\x22\x15\x7d\x6c\x62\x4f\x74\x64\x01\x5c\xa3\x07\x6d\xef\x8a\x55\x15\xe8\xd8\x37\x5e\x64\xd1\xe7\x69\x72\xd5\x9e\xc7\x59\x16\x8b\x0b\x38\x19\xa0\xbf\xd3\xe4\x6a\xa0\xe3\x5e\x42\xd4\x68\x54\x43\x47\xb8\x07\x2c\x45\x2c\xec\x12\x2a\x98\x1c\x76\x15\x9e\x2f\x87\xbd\x51\x89\x51\x55\xac\x5a\xa3\x22\x33\x09\xd5\xbe\x35\xd6\x96\x91\x4c\x97\xdc\xa4\x28\xb4\x6f\xbd\x82\xca\x8a\xc3\x48\x13\x3d\xe0\xe6\x03\x8d\xf4\x2b\x97\xb3\xce\x01\x24\xd2\xa1\x94\x69\x7c\xbe\xd4\x6f\x9a\x58\x28\x3c\xcb\x3e\x35\x26\xcd\xa6\x61\x9f\x27\xcd\x26\x7e\x36\x4c\x47\x2c\x01\x2a\x48\xd5\xf5\x9e\x65\xf8\x66\x45\x6f\xfc\xa5\x1b\x9c\xd1\xea\xfa\x0c\x8e\x69\x79\x15\x2a\xe2\xb4\x58\x70\x2e\xd4\xeb\x5d\xab\xef\xba\xf5\x13\x6c\xf5\x68\x75\x95\xa8\xbc\xe5\xd5\x10\xd8\x4b\x78\x7d\xd6\x21\xf3\xda\xcc\x2a\xb0\xd5\xe9\x53\xd4\x32\x7d\x46\x0e\xde\x77\xca\x8d\xce\x73\xfc\xbe\x53\x6d\x03\xdb\xea\x69\xa4\xf4\xa3\x1e\x8a\xf7\xe4\xa0\xe6\x88\x60\x1f\x21\xcf\x73\x36\x80\xc3\xe2\x79\xe7\xec\xec\xec\xd9\xf1\xeb\xd3\xb3\xc3\x0f\x4f\x4f\x8e\x07\x4f\xcf\xce\xce\xf2\x1c\xd7\x45\xb3\x9b\x15\xa1\x75\x09\x9d\x4c\x5e\xcf\x78\xb6\xa1\x98\x49\xdd\x5c\x1a\x1e\x1f\x36\x15\x86\xc4\x5b\x6a\x9e\xc6\xf3\xcd\x15\xab\x44\x36\x1c\xe9\x51\xf9\x83\xd5\x65\xa2\x7f\x2a\x0a\xf7\x27\xb6\xd5\x2b\x98\xb9\xbf\xab\xf5\x7b\xd8\x6c\xe2\x9f\xfa\xc6\xfd\x54\xb2\x54\xc7\x75\x97\x04\x7f\x6a\xca\x95\x13\xb2\x52\x19\xf0\x4f\x0c\xaf\x21\xaa\x9d\x28\x39\x19\xa7\xc9\x6c\xd6\xdf\xf9\xd7\x2c\x09\x23\x1e\xe5\xff\x1a\xef\x04\x45\x20\x56\x61\x63\x8c\xef\xa2\xa3\x48\x9e\x6b\x78\x55\x21\x24\xcf\xd7\xb1\x58\x8c\x8e\x8e\x07\x4f\x12\x21\x41\xfe\x54\x41\xf0\x68\x12\x10\x2d\x51\x30\xe6\xc9\x25\xff\x6e\x31\x4e\xe8\x4f\xac\x47\xff\xdc\x74\xcd\x28\x68\x2b\x10\x28\xd7\x43\xf6\x89\x72\xce\x90\x43\x46\x25\x67\x28\xe3\x52\xce\x14\x2c\xc1\x19\x9a\x2c\x67\x93\x78\x06\xc1\x94\x33\x94\x72\x45\x2d\xaa\x50\xc2\xcb\x74\x51\xcc\x59\x2d\x81\xc1\x9b\xcd\xfa\x78\x45\x72\x8e\x79\x96\xd5\xdf\x63\x2e\xb9\xc3\xe7\xb1\xa4\x61\x09\x7a\x91\x2d\xf5\xa6\x2f\x48\x29\x18\xdb\x29\x66\x79\xac\x86\xce\x92\xdb\x9c\x75\x0f\xf8\xa3\xcc\x51\xd6\xbc\xd5\x22\x19\x1f\xf2\xd1\xb0\x3b\xc2\xfa\xa3\x37\x22\x07\xda\x94\xcf\x27\xb6\xd5\xf3\xc8\x7b\xed\x2d\xf1\x26\xe3\x7a\x6d\x0c\x39\x95\x23\x42\x3f\xe5\x39\xfe\xc4\xd4\x71\xc2\xf1\x98\x83\x00\xbc\x2b\xb2\xe4\xbe\x0c\x41\x72\x25\x78\xaa\xce\xe0\xce\x19\x48\x1b\xa8\x73\x58\x2b\x5a\xd1\x04\x98\xdf\x20\x09\x27\xa7\x5c\x6c\x7a\x90\x4f\xc8\x8d\x60\x82\x03\x61\x99\xb2\x04\xa7\x3e\x75\x36\xe5\x38\xa6\xef\x25\x59\xad\x16\xea\x2b\x25\x79\x8e\x05\x63\x4c\xf0\x66\x73\xa2\x63\xa8\x0a\xa7\xbc\xd9\x9c\xea\xb0\xd7\xd4\x05\xf7\x98\x41\x50\x41\x3c\xc1\x1c\x38\xe1\xb5\x54\xfd\x61\x63\x91\x26\xf3\x38\xe3\x19\xbc\xc8\x9e\x87\xe3\x2f\x8d\xb1\x7e\x7f\x73\x1a\x41\xa1\x6c\x64\xe1\x9c\xdb\x9c\x1d\x73\x0d\xa8\x0b\xa5\xee\x55\x30\xcf\x3d\xdf\x8e\x09\x96\x84\x38\x4e\xe9\xad\xa3\x92\x3a\xbb\x33\xd6\x44\x6d\xb1\xe4\x53\x72\x23\x60\x1c\xb6\xba\x54\xaa\xce\xf7\x23\x0e\x7c\xe9\x60\xa2\x7f\xc9\x8a\xd0\x12\xe3\xcd\x65\x9f\xea\x11\x01\xb5\x8b\xad\xee\x6a\x8d\x4e\x6a\x88\x3c\x87\x3c\xef\x25\x64\x70\xd4\x93\x1b\xd3\x89\x19\x53\xbe\x05\xe6\x76\x16\xd6\x05\x67\x64\xfc\x6e\xba\x8c\x91\xcd\x68\x56\x86\xba\x69\xc1\x98\xb6\x0d\x4b\xae\xad\x36\xc8\x90\x49\x3a\xe3\x78\x0e\x5e\x19\x0a\x00\xd3\x1f\x05\x30\xa8\x00\x38\x87\x95\xca\x3b\x67\x6a\xa0\x99\xf9\x75\x18\xc5\xd2\xe7\x6f\xcf\x6d\x56\x0d\x59\x70\x7a\x5e\x96\x4b\x1a\x70\x35\x8e\x76\x95\xb3\x14\x32\xa8\x31\x92\x9d\xb3\x69\x28\xa2\x19\x8f\x9a\xcd\x18\x84\xbd\xfc\xed\x8d\xd1\x52\x98\xe4\xb7\x70\xc0\x80\x79\x6e\xbb\x43\xfc\xe1\xba\x80\x0a\xaa\xa5\x53\x5b\xe8\x85\x06\x82\x4a\x65\x2e\x39\xde\xfc\xbc\xcc\xeb\xd7\xf8\x1b\xbd\x6e\x1b\x29\xcf\x92\xd9\x25\x4f\x1b\x80\xcd\x34\xe2\x0c\x1e\x8a\x43\xc7\xe4\x33\xeb\x7a\x1a\x67\x8e\x8b\x95\x4c\x1a\x97\x6a\x16\xb6\x7a\xf5\xa0\x9f\x85\xf1\x8c\x47\x0d\x09\x22\x08\x9a\xcd\xd8\xf8\xd9\xd4\xf7\x73\x50\x52\x76\x9a\xf2\xc6\xcf\x82\x5f\xfd\xdc\x48\x16\x9a\xa5\x47\xb5\x20\x80\x61\xe4\x79\x2f\x17\x76\x03\x16\x52\x12\x61\xe6\x35\x53\xed\x3f\xfd\x5e\x0c\x93\x3c\x1c\x6d\x96\xe5\xe4\x70\x9c\x48\xca\xc9\x4a\x1d\x05\xbc\x7c\x89\x4c\x4c\x12\xa1\xc2\x3f\x80\x04\x86\xd3\xc7\xda\x40\x5f\x5d\xfa\x6f\xb4\x37\x5e\x3b\x83\x4b\x4e\xf5\xe2\x08\x38\xa7\xd0\x1a\x10\x2d\xa3\x30\xd5\x81\xc6\x03\xa9\x5d\x2b\x0a\x5f\x82\x2c\x75\x5c\xeb\x1b\x38\x54\x8d\xb3\x6e\x80\xc3\xaf\x1a\x55\x99\x37\x9c\x70\x42\xdd\x1d\x16\x70\x6a\x2f\xb0\x40\xae\x9c\xb3\x92\x66\x73\xcb\x19\xf7\x35\x35\x3b\x7b\x3d\x26\x5c\x08\xa0\xd9\x4d\xa6\xce\x52\xb5\x92\x67\x1c\x5f\x98\x6e\x93\x4a\x16\xe1\xa0\x16\x85\xfa\x33\x8e\x97\x9c\x0a\xeb\x92\x04\x36\x1b\x5c\x2a\x82\x50\x01\x87\xdd\x8a\xc2\xc0\xd6\x3d\x66\x41\x19\x95\x47\xeb\x0d\x81\x7a\xf4\x25\xef\x84\xb3\xd9\x9a\xae\xe6\x1a\xdf\xb9\x76\x31\x7e\x4c\x96\x8d\xf9\x32\x93\x8d\x45\x98\x65\x8d\x50\x34\x40\x0a\x5e\x2d\x4e\xb3\x22\x15\x6c\x4c\x3a\x85\x9d\x71\x05\xe0\xd2\x5f\x15\x9e\xcc\xc2\x50\x51\x16\xdd\x03\xff\x3d\xac\xb0\x0c\xd2\x6a\x15\x8b\x4e\x90\x9b\x54\xab\xec\xb4\xdb\x49\x9e\x4b\x0c\x0f\x54\xde\x63\x43\xf7\x20\x2b\x78\xe0\x59\xab\x45\x70\xc8\xf8\x30\x1b\x91\x7a\x6c\x21\x84\x41\xe9\xeb\x1f\x1c\xe3\x8c\x80\xad\xf2\x61\x36\x62\xe1\x81\xad\x80\x10\x18\xac\x34\x1c\xaf\x6b\xb6\xfe\x4f\x8d\x96\x02\x7e\x87\xe1\x72\x92\xcc\x54\x1b\x79\x77\x5d\x4d\x54\x57\x53\xc6\x87\xc9\xa6\xae\xa6\xba\xab\xfa\x47\xdb\x64\x2f\xf5\x4e\x1f\x58\xb5\xea\xc8\xcd\x66\xe9\x96\xd5\x1e\xf1\xcb\xcf\x9f\x97\xbc\xcf\x83\xf5\x36\x93\x1b\xc3\x94\x30\x75\x94\xdd\x9f\xf2\x92\x4b\xd1\xf5\xde\x0a\x53\x16\x10\xce\x6b\x5e\xfb\x00\x6c\x06\xb0\x6f\x7e\xd5\x39\x71\xc8\xd9\x37\x7a\xc5\xd9\x4d\x16\x7f\xe3\x41\x6f\x9f\x7e\x0d\xba\xf4\x3a\xe8\x52\xcd\x37\x0a\xba\x74\x32\x8b\x17\x7f\xa9\x43\x42\x7d\x7c\x0c\xb6\x7c\xf3\x34\xdf\xec\xa9\xcf\x9b\xcd\xc3\x82\x56\x2d\x4b\xc9\x23\x20\x5c\x40\x96\x27\xf3\xe9\x52\x04\x22\x3e\x14\x49\xfe\x55\xee\x8c\xb3\x0c\x11\x10\x75\x10\x3c\x7d\x71\x3a\x78\xc5\x78\xe1\x57\x9a\x69\x7e\xb5\xd6\x4a\x78\x9d\x44\x3c\xa3\xa9\x7e\x17\x48\x98\x7d\xef\x6a\xf7\x0e\x92\xc7\xea\x5f\xbb\x6d\xc5\x2e\xc4\x30\x19\xd1\x90\xe1\xb8\x23\xc3\x0b\x2d\x80\xa7\x6d\x71\x79\x56\xf0\x0f\x86\x8e\x97\xfb\xea\xe5\xeb\x3f\xd0\xc8\x71\xab\x43\xf2\xb8\xdd\x83\xb7\xcb\xd8\xbd\x0f\x9a\x76\xc4\x22\xe3\xa9\x91\x79\xc2\x52\x21\x7e\x5c\x5b\x17\x3a\xe3\x0c\x75\x7b\xbb\x7b\xf7\x1f\xec\x3f\xfc\xe5\xd7\xf0\x7c\x1c\xf1\xc9\xc5\x34\xfe\xfb\xcb\x6c\x2e\x92\xc5\xbf\xd3\x4c\x2e\x2f\xaf\xbe\x5e\x7f\x3b\xfc\xed\xc9\xd1\xd3\x67\xcf\x5f\xbc\xfc\xfd\x8f\x57\x83\xd7\xc7\x6f\xfe\x7c\x7b\x72\xfa\xee\xfd\x87\xbf\x3e\x7e\xf2\x64\x61\x8e\xcb\x88\x75\x6f\x57\x3b\x0c\xe5\xed\x76\xe3\x71\xf7\x80\xc8\x16\x3b\xe3\xc3\xfd\xdd\x6d\x6d\xd1\x22\x14\x51\x32\xc7\x24\xef\x16\x76\xfd\x8b\xdb\xf9\x94\x97\x9f\x85\x87\x23\x2a\x18\xe6\x79\x3e\x1c\x11\x33\x7e\x8f\x1f\x3f\xee\x1e\x88\x76\xfb\x80\x48\x2b\x2c\x52\x03\xe8\x2b\x2f\x99\xf9\x07\xee\x95\xa2\x94\xfa\xaa\x86\x22\x48\x02\xcc\xcb\x4c\x08\xc3\x8e\x25\x7a\x0a\xb2\xc5\x4c\xa1\x14\x0d\x74\xeb\x7b\x2f\x5f\xf9\x28\xd4\x6b\x5e\x76\x61\x2f\x2d\x94\x36\x22\x34\x61\xe9\xb0\xab\x10\xfc\xd4\xb9\x1e\xe8\xfc\x9d\xc4\x02\x52\x9d\xd4\xce\x96\xe6\xbd\xa8\x1d\x11\x03\x1a\x1a\xd3\xff\xbc\xf0\xa4\x6b\x8c\xc7\xb5\xb8\xa8\xf4\x15\xaf\xe5\x38\x7a\xd6\x84\x9a\x3b\x17\x14\x35\xc3\xf9\xe2\xc0\xb3\x9f\xb9\x83\x20\xf6\xdf\xcb\x44\x96\xa2\x7f\x86\xe8\xff\xb3\xf7\x6b\x29\xf6\x11\xc4\xce\xca\x59\x1f\x43\xe4\x85\x8a\x2c\x9a\xf3\x94\xaf\x3f\x87\x6b\xa9\x26\xfd\x50\x94\xf2\x68\x39\x5e\x3b\x1a\x9c\xa5\x92\xa2\x07\x82\xa2\x40\x8d\xbe\xed\x90\xa2\x8e\x90\xaa\x8a\x50\xe4\x57\x78\x52\x9e\x6f\x75\x48\x6c\x31\x76\xa5\xbf\xf2\x9c\x77\xbe\xea\xe0\x57\xf5\x7d\xad\xbf\xaf\xd5\xb7\x3e\x3e\x74\x84\xfe\x56\xb1\x70\x96\xd8\x8f\x8f\x9e\xf9\xb2\x12\x21\xe7\xf8\xf1\xa0\xc8\x64\x64\x48\x79\xfa\x21\x8e\xe4\x94\xa6\x8c\x77\xe2\x71\x22\x74\x28\x61\x37\x2e\x77\x80\xe0\x73\x16\xaa\xe5\xe6\x3a\xba\xb3\x4b\x51\x63\xf7\xc1\x3e\x41\x64\x45\x63\x56\x97\x67\x6f\x77\x5b\x76\xbe\x52\x44\xbd\x11\x81\xb8\x6b\x8a\x48\x03\x11\x1a\x32\x94\x69\x1f\xb3\x36\x59\xc2\x00\xec\xf4\xf6\xb7\xb1\xd4\xbd\xea\xb7\x7b\x41\x8f\x94\x81\xac\xe5\xfa\x68\x73\x01\xd8\x8c\x19\xee\xbc\x0f\x57\xc7\x50\xd4\xe8\x36\xba\xc4\xad\xdd\x9b\x64\x29\x79\x1a\x24\x5a\x83\x2d\xf0\x3b\xed\xca\xc6\x14\x79\x75\x87\xa5\x50\x46\x56\x74\x11\xca\x69\xf0\x9d\xe1\x4a\x77\x76\xb7\xdb\x3d\x8a\x1a\x6d\x33\x64\xfa\x5c\x7b\xc2\xd9\x8d\xbd\x18\xae\xd4\xc0\x07\xa8\xd7\xed\xde\x43\x74\xca\xf5\xcb\x12\x84\xbc\x8b\xe1\x8b\x37\xa1\x5b\xb8\x2a\x81\xf2\xb8\xe7\x29\x3e\x14\xf2\x26\xbd\x11\xc9\x73\x3f\x58\x18\xdd\x0b\xed\x41\x92\x01\xd5\x55\x04\xd5\xf9\x31\xcb\x73\x70\x1b\xb3\x16\xcf\xd0\xf9\x2c\x1c\x7f\x41\xc4\x97\x90\xf9\x50\x5a\x6b\xc0\xf0\x05\xa6\xc1\x3c\x8c\xf5\xb1\x32\x0f\xb3\x2f\x34\x01\xa5\x04\x3e\x89\xbf\x02\xd7\x40\x65\x03\x55\xb9\xb0\xb4\x3e\xc7\x8c\x77\xb4\xb8\x12\x68\xcd\xc9\x58\xce\x38\xa8\xcc\xf1\xaf\x32\x0d\xe9\x82\xf1\xce\x95\x42\x33\xc3\xf3\x19\xa7\x13\xe6\xfa\xbc\x68\x36\x17\x34\x62\x69\x67\x92\x2c\x45\xd4\x4f\x03\x41\xa7\x2c\xea\xc0\xd0\xd2\x73\x16\x75\xf4\xb8\xd2\x39\xbc\xc7\x79\x8f\x16\x85\xf5\xbf\xe9\xce\xf9\x36\x28\x00\x0d\xd8\xf0\x63\xa7\xca\x9e\xa5\x71\xbf\x58\x18\x1f\x3b\x3e\x33\x97\xaa\x23\xd1\xad\x19\x30\x81\x36\x1f\xdd\x72\x0c\xb7\x7b\x8c\xb1\xa5\x3e\xdb\x79\xe6\x4e\x4b\xc0\x36\x2c\x18\x97\x6c\x4f\x5d\xb5\xbc\x2f\x58\xa1\x0a\x3a\x1c\xd1\x62\x6e\x02\x60\xab\x2e\xbd\xd9\xa2\x37\xa5\x67\xba\x20\xf1\x1f\xea\x82\x58\x6b\x78\x06\x03\x9a\x26\x33\x1e\xf8\x05\x3b\x2a\x26\xcf\x51\x3c\xbf\x40\xf4\xeb\x7c\x26\xb2\x00\x19\xd7\x55\x57\x57\x57\x9d\xab\xbd\x4e\x92\x5e\xec\xec\x76\xbb\xdd\x1d\x78\x3a\xb9\x8c\xf9\xd5\x6f\xc9\xd7\x00\x75\x1b\xdd\x86\x1b\xa0\x69\x69\xaf\x9c\x93\x15\x59\x1d\x4c\x9a\x4d\x7c\xe1\xd5\x34\x3c\x1d\x31\x84\x08\x9d\x35\x9b\x17\x4e\x3d\x52\x13\x15\x5a\xdf\x13\x26\x1f\xf9\xdd\xbc\x89\xa3\xa0\x04\x02\x85\x69\x1c\xb6\x67\xe1\x39\x57\x84\xd2\x39\x18\x1b\xd1\xe5\x8a\x19\x56\xb7\x3e\x59\xd1\x62\xe4\x66\xa3\x95\xe6\x22\x5e\x6a\x76\xf4\x05\xbd\xd1\xc3\xa4\x4e\x03\xb3\x2c\x83\x98\xaa\xe5\x1b\x08\xaa\x16\x6f\x90\xd2\x62\x97\x87\x54\x2f\xd0\x60\x4c\x35\x03\x39\x58\x1a\x4e\xf2\x8a\xd0\x6b\xbb\x04\x9b\x4d\x61\xd6\xe2\xda\xdb\x83\x3e\x84\xad\x3e\xa8\x3a\x7e\xbd\x79\x53\xdb\x04\x36\x4e\x0c\x1f\xd9\x97\xb5\x0d\x92\x98\x55\x3d\x63\x09\xec\x22\xba\x64\xb1\x89\x5a\xb0\x58\x47\x4d\xd8\xbf\x39\xbe\xf1\xdb\x5c\x3e\xf4\x83\x25\x75\x47\x7e\x30\x5e\x11\x1a\x31\x3d\xe6\xa9\xc2\xb3\xd7\x56\xd6\x13\x4e\x6f\xd4\xf6\x0f\xd0\xd5\x34\x96\x1c\xad\xc8\x8a\x4e\xd9\xcc\x75\xa2\xef\xab\x28\xbb\xa9\x9c\x87\x0b\xfc\x85\x93\x55\x70\xb3\xa2\xe7\x06\xfe\xc5\x3a\xf0\x89\x46\x51\x89\x37\x43\x5f\x38\xce\xf4\x22\x98\x81\xfa\x6d\xb5\xc8\xcc\x1f\xb1\x49\x47\x9d\xc3\xaa\x45\x84\x8c\x56\x74\x7e\x5b\x4d\x70\xe8\xfb\x35\x9d\x8f\x56\x74\xc0\x90\x1a\xe8\xca\x8a\xa1\x17\x0c\x8d\x67\xf1\xa2\x1a\x7d\x69\xe0\xc3\x7b\x76\xed\x48\xc5\x51\x30\x80\x65\x03\x46\x0f\x02\xb4\xcc\x78\x7a\xb2\x08\xc7\xfc\x58\xbc\xcb\x38\x82\x24\xc3\xff\xae\xcf\xb1\xf2\x5b\x18\xd1\xf9\x68\x45\xaf\x4d\xad\x11\x9f\x64\xc8\x4b\xd5\xb1\xaa\x9d\x6f\x42\x39\x5d\xdf\x2c\xde\xba\xc7\x92\x2d\x28\xd2\xae\x2c\xd5\xa8\xf6\x65\xa7\x80\x23\x47\x8a\x48\x1a\xad\x1c\x01\xa8\x37\xe2\x35\xdd\xbc\x2c\xf4\x82\x00\x99\x62\x21\x9f\x24\xb3\x24\x05\xd5\xe4\x78\xd1\x56\xf3\x81\x02\xb4\x4c\x67\xf8\xff\xb8\xd1\xbb\xa0\x88\x20\xa2\xb7\x53\x25\x69\x00\x49\x6a\xf0\x14\xba\x54\xac\x25\xe1\xd7\x98\xae\x56\xf8\x92\xd4\x99\xd7\x2d\xf6\x92\x28\xef\xa5\xd4\xee\xa5\xa4\xb4\x85\x62\xa6\xb0\x3e\xb3\x67\x81\x13\x66\x85\xc4\x1f\x77\x41\x06\x10\x52\x58\x4c\xe8\x09\xc7\x89\xe1\xe9\x86\x95\x1d\x95\x54\x77\x54\x6a\xf6\x60\xb1\xaf\x4c\xcc\x4a\xd1\x69\xde\xb1\x56\xb3\x30\xc3\xf5\x85\x79\x4b\xde\xb5\xed\x02\x79\x53\xd8\xf9\xb0\x5d\x5c\x8a\x89\x73\xe3\x53\x85\x65\xd2\xbd\x21\x0b\xcd\x66\x1a\xad\x46\x2b\x63\x93\xc4\x34\x5e\xe7\x75\xe8\x93\xab\x43\xfa\x50\x05\x4c\x12\x3d\x64\xd7\x45\xa5\x57\xec\xda\xab\xc1\x2e\xb0\x4b\x97\x81\x1d\xd2\x4b\x2f\x03\xbb\xa2\xe3\xf5\x33\xb3\x40\x1e\x84\x8f\x3c\xa4\xfe\xec\x27\xe5\xd9\x8f\x1d\x2a\x61\xea\x34\x63\x0a\xd7\x96\xbf\x4f\x60\xba\x03\x64\xf4\xca\x82\x86\x48\x04\x3f\x40\xab\xb5\xc9\x30\x62\xd4\x6b\xa3\x98\xc0\x96\x07\x8f\x13\x3e\x92\x20\x4b\x78\xc1\x2d\x28\x83\x20\x41\xec\x6f\xf9\x14\x46\xff\x4e\x8b\xdd\xa0\x58\xbc\x40\xb1\xaa\x03\x00\x8b\xbc\x7c\x87\xa8\x15\x7f\xc2\x71\x48\xdc\x1d\xd5\x6c\x6e\x99\x6b\xcb\xaa\xd9\xdd\x7c\x0d\x84\x5e\xbe\x3b\xc2\xe0\x4e\x3b\xbb\xf4\x3a\xe8\x3c\x58\x1d\x24\x66\x83\x3c\x85\x53\x7a\x45\x63\x7a\x83\x1c\x70\x23\x5d\x80\x3c\x34\x7a\xdc\xf9\xda\x0a\x3b\x5f\x77\x7a\xfb\x14\xf1\xb9\x87\x17\x8c\x3b\xd7\xad\xb0\x73\x6d\x12\x90\x27\x37\xbc\x61\xaa\x92\x62\x90\xa4\x1e\xa2\x02\x0b\x3d\x2a\x61\xa1\x63\x7d\xbe\xc2\x20\x5d\x39\x32\xc7\x20\x81\xd5\xe3\xc0\xe2\x99\xa1\xc3\x33\xc7\x25\x3c\x73\x56\xe0\x99\xe3\x66\x73\x4c\x97\xcc\xec\x44\x7f\xb0\xfb\x37\x00\x24\x88\xe1\xbe\xd3\xa6\x0b\x82\xd0\x61\x79\x0e\x8b\x5b\x91\x83\x59\xb3\x89\x97\x06\xfd\x01\x44\x64\x61\x01\xda\x33\x09\x0e\x9e\x66\x13\x2f\x8a\x76\xd6\xb8\x2b\xac\x12\x76\xb6\xa3\x4e\xa2\x51\xf4\xbf\x05\x7a\x5f\x98\x9e\xc7\x45\x5a\xd2\xff\x16\x24\xd0\x65\xf0\x34\xfe\xc4\xd8\x6f\xa0\x59\xd1\xd9\xb0\xd9\x54\x43\x51\x98\xcc\x1d\xb7\x58\xd6\x6c\x5e\xf5\xeb\x08\x1d\xd9\xf9\xba\x73\xc8\xdb\xa9\x22\x0f\xf9\xbc\x4c\xb4\x5d\xab\x94\x58\xa7\x28\x42\x2d\xc8\x7c\x10\xe3\x70\x36\xc6\xed\x07\xdd\x7b\x8d\x56\xa3\x02\x0e\x0a\xd0\x46\x29\x47\x05\x2e\x64\x01\xa0\x9b\x5b\x55\xdf\x22\xdb\x1a\x3a\x6e\x6d\x22\x47\x0f\xf9\x5d\xc8\xd1\x22\x57\x99\x1c\x55\x70\x37\xd3\xa3\x11\xbf\x50\xb9\x56\xe5\x5b\xa5\x34\x19\xa0\x9f\x00\x77\x89\xb0\x84\x61\xba\x22\x74\x31\x44\xed\x2b\x7e\xfe\x25\x96\x9e\xa4\xdd\x88\x79\x8b\x85\x18\xfb\xca\x4f\x39\x5e\x90\x83\x89\x7f\xbd\x19\x64\x95\x4d\x74\x9e\x88\x0d\x1d\x55\x18\xf9\xd7\x54\xb6\x08\x45\x69\xf3\x2d\xa9\x8f\x2e\xac\x08\x8d\x9b\xcd\xdb\x4b\x98\x4d\x80\xb2\xb4\x9d\x88\xd9\x75\xe9\x48\x8d\x15\x84\xa8\xd8\xbe\xbf\x6d\xdc\xbe\x7a\x6f\xa6\x6e\x6f\x26\xcc\xdc\x5d\xde\xee\x13\x76\xf7\x09\x7f\xf7\xa5\x75\xbb\x4f\x5f\xff\x69\x71\xfd\xfb\x83\x93\xb8\xbb\xff\x40\x5f\xfa\xc5\xe0\x84\xb7\x76\x35\xa9\x0e\x8e\x68\x36\x6f\x2f\x71\xdb\xe0\x08\x05\x21\x04\x46\xc1\x9b\x8a\xc0\xc2\x5b\xce\x3e\x76\xd6\x65\x74\x9a\xcd\xeb\x66\xf3\xba\x33\x0f\xd3\x2f\xf0\xab\x33\xf4\xaf\x03\x2d\xe5\xfd\x86\x3b\x31\xef\x37\x7c\x45\xff\xe2\xec\xe7\x67\x87\x0d\xf4\xa0\xd3\xeb\x75\x76\xd1\xcf\xf4\xef\x32\xeb\xfd\x2d\x07\x48\xb8\x38\xc3\xff\xe2\x25\x8a\x4e\x85\x38\x18\x76\x27\x54\x65\xd6\xb0\x6f\xc9\x4f\xe8\xad\xb0\xce\xf9\x45\x2c\x40\x2f\xfd\x0e\x35\xae\xe8\x4b\xce\x6e\xa0\x48\xdd\x6b\xd3\x9d\x1a\x6f\x2b\x24\xb4\x46\xce\x1e\x5e\x87\x57\x94\x8b\x28\xf8\x9b\xaf\xe8\xbb\x8d\x6e\x4b\xb5\x52\x5b\x45\x1b\x92\x8e\x99\x65\xcb\xf8\x37\x87\xaf\x03\x56\xa7\x07\x63\xb4\xe4\x7c\x5e\xb0\x71\x5f\x6b\x12\x56\x2b\xe0\x8c\x07\x52\xb3\xf1\x8b\x33\x1e\x27\xac\x47\xe1\xa1\x69\xd8\x1d\x8d\x48\x80\x13\xd6\xa5\x21\x13\xe4\x20\x79\x34\x86\xb7\x99\x90\xcd\x70\x48\xf9\x30\x66\xd9\x30\x19\x8d\x68\x4c\xb9\xe3\xe1\x86\x1e\x93\xe9\x45\x85\xab\x8d\x10\xd5\xda\x60\xbc\xa4\x0d\x26\x5b\x0c\xa3\x6e\xb7\x8b\x5a\x1c\x3c\x6f\x3c\x49\x22\x7e\xa8\xf0\x18\xa7\x85\x81\x7b\xfb\x84\x18\xc6\x71\xfb\x7e\xe1\xe7\xbe\xd8\xef\xcf\x7c\xe6\x33\x5b\x67\x68\xed\xd6\x32\xb4\x76\x7d\x6d\xaa\xdd\x51\x70\xb3\x22\x9d\xec\x4b\xbc\x78\x91\x24\x5f\x32\x77\xf3\x69\x43\x20\xea\xe2\xf3\x67\x46\xd6\x70\x73\xb9\xa7\xb9\x5c\xf0\xe7\xb7\xb6\x34\xb2\xdb\xe7\xc3\xd4\xe1\x9a\x23\xa6\xbf\x03\x3e\x14\x23\x96\x52\xae\x48\x95\x95\xaf\xbc\x55\x3c\xcf\xff\xa1\xa5\xc3\x3a\x61\x14\xbd\x09\xc7\x5f\xf2\x3c\xed\xff\x61\x0e\x9c\x21\x1f\xe9\xf3\xcb\x8b\xc8\x73\x85\x45\x92\xa0\x52\x0c\x73\x0a\xfa\xe8\xa1\xb5\x40\xf7\x8c\x63\x10\xef\x97\x46\xb0\x90\x33\x0b\x84\x7e\x84\xef\x69\x3c\xcf\xe8\x73\xce\x14\x78\xf8\xff\x27\xfc\xff\x69\xdd\xde\x72\xdd\x33\xd8\x3b\x8e\xdf\x73\x5a\x62\x75\xab\x95\x6e\xe7\x6e\x98\x8e\xd8\x3b\x8e\x05\xe5\xaa\xdf\x54\xea\xfe\xaf\x0e\x9e\x73\x56\x1e\xd2\x12\x8b\x7c\xb8\x37\x02\x43\x46\xea\x63\xc4\x04\x51\xe3\x46\x54\xeb\x6a\xca\xd8\x89\xd8\x2d\xf8\x94\x6a\xac\xc5\x26\x95\x33\xad\xac\xa7\xe0\x71\xab\xf6\x22\x19\xc8\xbf\xc7\xa2\xf1\x9e\x1f\xfc\xc9\x55\x83\x3f\x72\x5a\x3b\xe1\x62\xd8\x1d\xd1\x84\x89\x61\x6f\x44\x63\x26\x8a\x5a\x01\xc2\x16\x63\x49\x9e\xcb\x3c\x07\xd5\xcf\x50\x9d\x4d\x60\x8d\xa9\x8e\x55\xb4\xb2\x8b\xc1\xdb\x4a\xbf\x73\x7f\x9b\xe3\xe7\xdc\xcc\x33\x51\xd7\xc3\x4f\xd6\xc0\xf0\x27\x6f\x0a\x7d\x6b\xcc\xb6\x9c\xad\x0d\x9e\xe6\x5c\x85\x10\x4a\x79\x26\x83\xe1\x68\xe5\xd5\x29\x65\xe9\x6d\xa1\x66\xb5\xbb\x0d\xf7\x9a\x57\x29\x12\xad\x7c\xfd\x49\x8d\x29\xb1\xc4\x16\x93\xa0\xc8\xdb\x88\x27\xf8\x23\x08\x7a\x3e\xe3\x72\x3c\x3d\xb9\xbc\x68\x36\x87\x5a\xfd\xe0\xff\x23\xef\x4d\xd8\xdb\xc6\x91\x45\xd1\xbf\x22\xf3\xce\xb0\x89\x08\xa4\x49\x2d\x5e\x28\xc3\xba\xd9\xfa\x74\xce\xc9\xd2\x37\x49\xcf\x4c\x3f\x45\x93\x43\x53\x90\xcd\x89\x0c\x6a\x48\x28\x4e\x62\x69\x7e\xfb\xfb\x50\x58\x08\x2e\xb2\x9d\x9e\x9e\x73\xce\xbb\xaf\x67\xbe\x58\x04\x41\xa0\x50\x28\x14\x0a\x85\x5a\xa4\xb7\x81\xf4\x83\x90\xfe\x0f\xe0\xf8\x20\xfe\xb5\x6e\xfe\x38\x3a\xf7\xa3\xae\x56\xcd\x64\x88\xfa\x82\xc8\x55\x95\xe9\xff\x11\x33\xbf\xdd\xee\x1f\xbf\xd8\xe7\x27\xd5\x49\x90\x54\x0b\x75\xbb\x65\xd8\x74\x55\xa8\x1f\xdb\xad\x2e\x52\x87\xda\x03\x42\xda\x4a\x5e\xd7\x15\xbc\xa3\x72\x0f\x57\xba\x62\xb8\x71\x16\xf8\x96\x1b\xba\x15\x8b\x78\x87\x30\xe5\x9e\x7d\xa9\xc6\xb8\x95\x4c\x9e\xba\xae\xc0\xa7\xfc\x77\xc6\xe6\xa8\x3e\xab\xdc\x1a\x12\x56\xbc\x05\xea\x59\x6e\xaf\x05\xef\x8a\x45\x57\x53\x72\x58\x5b\xc1\xed\x4e\xc9\xfb\xe6\x94\x58\x93\xf8\x67\xf3\x38\xd7\x44\x2e\x43\xf2\xd5\xf2\xca\xc3\xdd\x5c\xec\x9c\xd9\x47\x58\x6b\xdf\xdc\xef\x40\xfa\x1b\x6f\xcc\x7e\x20\xce\x0f\xa6\x75\xd1\xb9\x40\x11\xfe\xc1\xe9\xfd\xa0\xae\xcd\x02\x5e\x64\xd7\x1e\xda\x79\x05\xc2\xce\xb9\xa5\x64\x07\xdd\x62\xc1\xb5\x72\x5c\x08\x0e\x67\x87\x96\x5c\x0e\xb5\x65\xc2\x8d\xda\xaa\xb2\x16\x4b\x66\x2d\x96\x16\x32\x1a\x97\xad\xd3\xc6\xdd\xeb\x7b\x04\x34\x28\x7b\x48\x38\xb9\x55\x84\xd4\x75\x60\x17\x5c\x86\x11\x3a\x8b\xe6\x7b\x8d\x5b\x0b\x65\xa6\xa0\x46\xf3\x41\xdb\x67\xa9\xd8\xae\xaf\xf3\x05\x75\x5d\x2e\x75\x44\x3f\xbd\x7f\xf5\x12\x59\xbf\x09\xeb\x7b\xbf\x06\x6d\x53\x6e\xd7\x85\xd3\xf3\x81\x52\xf6\x09\x22\xab\xe7\xcc\x9a\x3a\x1f\xbe\x0c\xd3\x03\xdf\xb7\xcf\x5c\xa6\x59\xec\xf4\x7c\xff\xc3\x97\x21\x85\x94\x2e\xc8\x2c\x58\x1b\x26\xbd\x76\xb5\x95\x71\xcb\x4a\x41\x88\xbc\xa0\xfc\x32\x9f\xe8\x15\xf7\x54\x90\xa7\x57\x60\x48\x45\x65\x8d\x65\xb7\xc3\x4c\xf0\xb5\x3b\xf1\x28\x70\xf3\x8f\x2f\x54\x6c\xe8\x7a\xa1\xb6\x97\xb2\x71\x00\x4d\xaa\x00\x03\x14\xe9\x60\x9e\x56\xee\xc6\xfd\x97\x3a\xc1\x23\x07\xa1\x89\x8a\xa2\x2b\x76\x0b\xfb\x9a\x04\x98\x36\xde\xf3\x32\x5b\x4c\x64\x54\xc4\xe6\x0b\x90\xf9\xed\xcb\xfa\x6e\x1e\xad\x57\x0b\xe9\x62\x52\xdb\x2d\x0f\xae\xc1\x86\xad\x40\x53\x70\x7c\xfd\x7c\xa9\x19\x53\x2c\x9e\x01\xd1\xaa\x40\xee\x4c\xb2\x2c\x9e\xcd\x31\xd4\x16\xdb\x06\x9a\x74\xc2\x46\x72\xd5\xa0\x39\x31\xa9\xcc\x40\xec\xbb\xa8\xb7\x69\x98\xa2\x9c\x72\x72\x0d\x9d\x69\x1d\xe1\x46\xd5\xf7\x32\x57\xa5\x65\xb6\x92\xd9\x5b\x1c\xa4\x6d\xbc\xad\xa5\xf7\x4a\xb9\xbd\xb1\x75\x1a\xea\x4e\x79\x9c\x73\x41\x36\x10\x4f\x58\x3b\x2c\x33\xcf\x8a\x53\x51\x90\x92\x4f\x7e\x0d\xea\xae\x12\x84\x90\xbf\x83\xc1\xca\xab\xa0\xa0\x7f\xdf\xd0\x92\x3f\x66\xd9\x35\x38\x35\xfc\x58\xc0\x56\x53\x0a\x0a\xf6\xbc\x86\x78\xc5\x09\x68\x03\x7f\x6d\x38\x47\x4c\x2b\x5a\x8c\x13\x3e\x6b\xbe\x9e\x6f\xb7\x55\x05\x5c\x90\x17\x34\x80\x63\x8a\xa7\xdc\x79\xc4\x32\x84\x59\x80\x3e\x11\x66\xd2\x26\x1e\x98\xd0\x8a\xd7\x1c\x05\x36\xdc\x43\xb7\x50\x06\x6f\xd7\x5c\x86\x4d\xab\x0c\x7d\xb9\x32\x33\xfa\xec\xba\xbf\xb6\xfc\x35\x6c\xfd\x12\xa5\x4f\x95\xb5\x34\x6c\x3c\x2c\x5f\x54\x05\xe2\x4c\xbe\xae\x79\xa0\x98\x57\x62\x0f\x6a\x36\xfb\x36\xcf\x1b\x1a\xa8\xcb\x38\x9f\x08\xd8\xe8\x4d\xef\x73\x9d\xb6\x56\x7c\xbb\x05\x1b\x9b\x6e\x27\xa1\x6c\xe9\xc9\x68\xa7\x2f\xb3\x92\x4b\xc1\x41\xcc\xb5\xd8\xa7\x93\xc5\x82\x4a\x93\x26\xeb\x60\x7f\x20\xb8\xbd\xf5\x6a\x16\xce\x91\xeb\x7a\xbf\x06\x5d\x6e\x34\xae\x5b\x78\x62\xab\x2d\x2e\x21\x37\x64\xf5\x1b\x61\xa7\x5a\x2f\xf5\x5e\x65\x8d\x1a\xc3\xbe\xbf\x71\x9b\x97\xee\x6b\x3a\xb3\xfa\x77\xdd\x7f\xbc\xa8\xae\x8b\xab\xb5\x2b\x98\x3b\x42\x80\x13\x58\x67\xf0\x79\xfd\xad\x8a\xd2\xca\xb9\xf7\x85\xda\x03\xca\x48\xae\x15\xeb\x89\xba\x4f\x14\xf5\x27\x99\x35\xa8\xfa\x52\xae\x79\x7f\x66\x08\x27\x77\xd7\x94\x9e\xa1\x89\x8e\x6f\x5e\xf5\x2d\xdd\x39\xf0\x63\xd7\x5d\x73\x4d\x2a\x5e\xa6\x6e\x7f\xc4\xb4\x82\xc7\x53\xa5\x2f\x39\x08\xb1\x38\x6b\x26\x29\xa7\xc5\xb3\x84\x27\xe0\x04\xb5\xb9\x10\x14\x0a\xa1\x3b\x2c\x99\x69\xc1\xad\xbb\x56\xa0\xd2\xcb\xbd\x43\x40\x40\xaa\x1d\xef\x01\x70\x64\xe8\xf5\x80\xe8\xb8\xbd\xef\xe9\x17\x3e\xb5\x7e\x2b\x21\x25\x76\x1c\x9c\x68\x04\x23\x23\x22\x16\xae\x9b\xbb\xae\x97\x18\x81\x14\x27\x95\xd0\x9a\x23\xac\x5f\xb8\xae\x51\x44\x45\x53\xab\x8a\xc7\x49\x52\xbb\xfa\xd0\xdd\x62\xef\x3f\x84\xb4\x28\xcf\x14\x6c\x8e\xe2\xaa\xa5\x88\x10\xa2\x5b\x83\xbe\x4d\x6b\xff\x4e\x0d\x24\x58\x1c\xf6\xab\xe6\x10\xd2\x1a\xa7\x2b\xde\xa1\x6a\x6e\x59\x33\xb6\x8c\x18\x8d\x7d\xa3\xb9\x43\xa4\xd3\x86\xc8\x71\xff\xc6\xa7\x22\x71\x76\x7f\xe6\x3b\x08\x57\xc7\xb6\x2e\xb3\xb4\x6c\xe9\x15\xae\xeb\x40\x32\xad\xdc\x84\x10\x91\xfa\x5b\x72\x10\x62\xaa\x6b\x7c\xee\xa8\xf1\xab\xa9\x91\x13\x2b\xf3\x45\x8e\x70\x56\xbe\x4e\x5e\x7b\x79\x15\x94\x64\xa2\xf2\x60\x15\x2a\xbb\xd5\x65\x91\xdf\x38\xb1\xb4\xe1\x22\xf2\x4f\x3f\x9f\x5c\x14\x34\xf9\xa4\xb2\x50\x5d\x15\x19\xfb\xd4\xa8\xe2\xd7\xaa\x80\x4b\x72\x4c\x83\x2f\x84\x06\x5f\xea\xaf\xa4\x87\xb2\x7e\x57\x6f\x79\xb3\x16\x2f\xbe\x12\x1a\x7c\xad\x7f\xb4\xc8\x6f\x98\x79\x55\xff\x46\xce\x94\x78\x29\x7f\x11\xfd\xa3\x9f\xef\xac\x93\x0d\x47\x31\xb7\xb6\xde\x0b\xeb\x24\x02\x2b\x0c\x8c\x7c\xac\xab\x38\xae\x29\x2b\x27\x1c\x8e\x4b\x38\xeb\xbc\xb4\xa8\x2f\x36\x65\xcb\x8a\x99\xa5\x6b\xe5\x2a\xc7\x8b\x9a\xf8\xc9\xbd\xf4\xa2\x2a\xc6\xdd\x14\x62\xaf\x45\x5b\xdb\x0b\x07\xfa\x5c\xd1\x4f\x6c\x8e\x1b\x48\x1f\xe7\x11\x66\x3b\x31\xce\xa4\x4b\x5b\x72\xc5\x5b\x16\x99\x6d\xf7\x77\x04\x21\x47\x70\xf9\x00\x3c\xe8\x8f\xd5\x2d\x63\x33\xb2\x2d\x38\x21\x81\x4c\xb3\xdd\x72\xd9\x6a\xda\xd1\x2a\x58\x8d\x56\x5c\xf3\x6e\x01\x53\x6d\x17\xc0\xda\x58\x72\x0d\x67\x06\x98\x0d\xab\xc4\xa3\x33\x0e\x3f\xe7\x84\xeb\xa8\x38\x0a\x3d\xc0\x8f\xea\x83\x90\x26\x3b\x06\x76\x29\xe1\x3c\x8e\xa2\xaf\x62\x42\xa7\xbc\xc3\x5e\x87\xd8\x02\x78\xcb\xe8\xca\xf1\x95\x31\x0f\xaa\x19\x61\xc4\x9e\x6e\xea\x2a\x5b\x2c\x28\x13\xcd\x80\xc7\x2f\xe6\xc1\x32\x4f\x37\x25\x04\x98\x52\x2e\xc1\x42\xc6\x04\x7c\xad\xbe\x63\x16\xc0\xba\xc3\x8c\x83\x4f\x39\x5c\xf6\x54\xec\x6b\xaf\x9f\xa2\x3e\xb2\x22\x84\x62\xca\x3d\x98\x29\x7d\x67\x6e\x9d\xf6\xe5\x6d\xc5\x1e\xf4\x61\xa5\x1f\xe8\xb4\x3a\x2a\xa5\x09\xc5\x0a\xc3\x6d\x88\xba\x46\x80\x1b\x08\x65\x8d\x94\xd9\xbb\x66\xba\xb3\xf6\xc5\x6b\x6e\x02\x30\xcb\x30\x6a\x96\x47\xaf\x23\xbd\x40\x54\x88\x37\xb0\xea\x15\xc5\xbd\x0d\x4b\x3e\x27\xd9\x4a\x20\xd4\x31\x81\x87\xd3\x4f\xc4\x33\x11\xdc\x90\x2c\xd9\x5d\xf3\xbd\x11\x0e\xa1\x9e\x1d\xe5\xd0\xae\x5b\xb3\xe5\xbf\xe6\x70\xde\x78\xc5\x49\x97\x7d\xc9\x0e\x5f\x72\x72\x6b\x86\xf7\xfe\xeb\x9a\xc6\xce\x5f\x5e\xbd\x74\x70\x41\xd7\x34\xe1\x4f\xf3\x0d\xe3\xb1\x93\x49\x97\xcb\x8c\x53\x07\x2f\x36\x45\xec\x0c\x4a\x67\x87\x3f\x73\x65\x43\xb3\x6e\x5a\xca\x80\x3e\xf6\x15\xc7\xb7\x8b\xd8\x79\x15\x8d\x8f\x82\x31\x1e\x8d\x8e\x83\xe3\x95\x1f\x0d\x82\x23\x3c\x38\x0d\xc6\xa9\x1f\x9d\x04\xc7\xfe\x69\x30\xf6\x87\xe3\xe0\xd4\x1f\x44\xc1\xc0\x1f\x47\xe2\x71\x14\x9c\xae\x06\x83\xe0\xd8\x17\xff\x3c\x8d\x06\xc7\xc1\x11\x1e\x0d\xc3\x60\x8c\xa3\x51\x04\x4d\x85\xd8\x6a\xf4\x5b\xef\xd5\x28\x14\xad\x1e\x0f\x7e\x3a\x09\xc6\xbd\x34\x0a\x46\x58\x34\x87\xc7\xc1\x08\x8f\xa2\xe0\x18\x47\xe2\x9f\xa3\x28\x88\x5e\x8e\x43\x3c\x14\xef\x9e\x8e\xc6\x41\x84\x87\xe1\x58\xb4\x12\x05\x27\x78\x70\x72\x8a\x75\x33\xa6\xc5\x51\x28\x1a\x13\x90\x9e\xe0\x71\x30\xf0\x87\xd0\x54\xe4\x8f\x47\x41\xb4\xf2\xc5\x30\x60\x40\xbd\xa7\xd1\x48\xf4\x72\x3a\x0a\x86\x38\x0a\xf1\x20\x3a\x0a\x8e\xf1\x49\x30\x16\x2d\xfc\x24\x9a\xfa\xd6\x7b\x75\x04\x2f\x05\xd8\xe9\x71\x70\xe2\x47\xa3\xe0\x14\x47\xc7\xc1\xc0\x1f\x9c\x40\xf7\x41\xe4\x8b\xd1\xbd\x3c\x3a\x0d\x8e\xf1\xe9\x20\x18\xa6\x7e\x34\x14\xad\x8e\x83\x23\x7f\x20\xe0\x1c\x0e\x82\x13\xc0\x0e\x16\x78\xea\xbd\xac\x5a\xfc\xd6\x7b\x35\x3c\x3d\xc6\xa3\xe8\x34\x38\x82\xcf\x4e\x71\x34\x10\xf0\x8d\xf0\x60\x10\x0c\xfd\xd1\x11\x0c\x36\x18\xad\xa2\x28\x38\x15\xf8\x3f\x49\x07\x21\xa0\xff\x14\x0f\x4f\x83\x13\x81\xea\x23\x3c\x3e\x0a\x4e\xfd\xe1\x71\x70\xf4\xd2\xb4\xf6\xad\xf7\x2a\x8a\xc6\x02\x9e\x51\x2f\x15\x0d\xfb\xd1\x40\x7c\x3f\x12\x5f\x0c\xb1\x68\xd8\x87\x86\x7d\xd1\xb2\x0f\x2d\xfb\xa2\x69\x7c\x2a\xda\x3a\x15\x43\x1b\x04\x47\xfe\xf8\x28\x38\xc1\xd0\xb4\x6e\x4e\x20\x59\x4c\x1f\x1e\x8e\xc7\x82\x1c\x8e\x83\x13\x2c\x90\xe2\x0b\xa4\x08\x7c\x9c\x08\xcc\x44\x62\x76\xc6\x3d\xa0\x07\xd1\xd2\xb1\x00\xe2\xd8\x17\x48\xc1\x02\x29\xfe\x70\x20\x86\x20\xbe\x13\x48\x79\x69\x35\x29\x3a\x38\x06\x5a\x38\x1e\xa4\xbe\xf8\x21\xe6\xd1\x1f\x07\x03\x3c\x3c\x16\xe0\x46\x18\xe6\x51\x4c\x23\x86\x69\x4c\x8f\x83\xb1\x20\xc4\x48\x3c\x0e\xfc\xd1\x50\xbc\x18\x06\x47\xfe\xd1\x51\x70\xf2\x13\x34\x26\x30\x0d\xb4\x35\x3a\x12\x8d\x8e\x83\x63\x0c\x30\x0c\xf0\x89\xf8\xe2\x34\x18\xe0\xd3\x60\xf4\x79\x38\x08\xa2\x14\x48\x3a\x52\x34\xe8\x0b\x62\x14\x24\x28\x7a\x3e\x7e\x69\x1a\xf9\xd6\x7b\x35\x18\x85\x18\x1a\x87\x35\x71\x22\x3e\xf1\x87\xe2\x83\x01\x10\x1a\x80\x6a\xaf\x1c\x80\xf0\x58\x10\xee\x50\x42\x3e\xc0\x02\x40\x00\xf5\x4f\x1a\xca\xd1\xd1\x00\x47\xa7\x61\x70\x92\x8e\x31\x80\x79\x22\xc6\x3d\x90\xf0\x61\x01\xe8\x95\x00\xb2\x07\x98\x51\xab\x2f\x18\xf9\x00\xaa\x80\xd0\x87\xe5\x62\x5a\xf9\xd6\x7b\x25\x26\x0d\x0f\x4f\x8f\x53\x3f\x1a\x00\x8d\x01\x09\x00\x95\x01\x09\x00\x95\xc1\xaa\x38\x11\xab\xe4\x34\x15\xc4\x05\xa4\x00\xc4\x05\xb4\x20\x28\x00\xc8\xac\xf7\x52\x37\x27\x10\x70\x3c\x80\xb5\x97\xc2\x42\x13\x18\x1b\x1e\x09\x2a\x17\x4b\x78\x24\x66\x43\x20\x40\x8c\x1f\x96\xdc\xd3\x61\x24\xe6\x18\x96\xdc\xe0\x74\xac\x96\xdc\xb1\x98\x81\xf1\x9f\xd4\x62\x03\x98\xf1\x38\xec\xa5\x62\xec\x3e\xac\x9d\x81\x2f\x50\x20\x46\xee\x9f\x06\xa3\x3f\x9d\x08\xa2\x83\x59\x88\xd4\xb8\x05\xbf\x80\x61\x03\xbf\x78\xa9\xdb\x00\x42\x15\xc4\x2e\x16\xe5\x4b\x58\x15\x38\x8a\xc6\x29\x84\xf7\x11\x43\x14\xef\x60\xad\x01\x8f\x12\x58\xe8\x09\xa2\x3a\x81\x25\xf1\x74\x74\x1c\xe2\x68\x20\x98\xc1\x68\x7c\x0c\xc0\xc2\x04\x98\x16\xd5\xda\x15\xe8\xa8\xb8\x1e\x90\xd6\x11\x30\x00\x1f\x96\x3d\xd0\x7a\xc5\x1e\x2b\x6a\xe8\x3d\x1d\x1e\x87\xc1\x08\x1f\x0f\xc4\x12\x3f\x19\x05\x23\x7c\x22\x98\xa4\x6e\xf3\x1b\xd8\x96\x7e\xe5\xca\x32\x97\xe3\xdb\xda\x39\x36\x76\x74\x6c\xa0\x1d\xc2\x8f\x79\x65\xea\x59\xdd\x9d\x7f\xe6\xca\x66\x31\xcd\x8a\xb4\x61\x3f\x6c\x18\x7d\xfa\x25\x76\x06\xe3\x23\x07\xa7\x5f\x63\x67\x78\x34\x72\xb0\xd8\x25\x4e\xea\x96\x97\xb2\x99\x04\x34\x3e\x1d\xed\x74\x00\x57\x38\x18\x44\xa4\x52\x34\x36\x89\x46\x93\xc1\xc9\xc4\xfc\x80\x91\xdd\xd3\xe6\x57\x1d\xb6\xb2\x8c\x9d\x68\x12\x4e\xa2\x89\xfc\x57\x7c\x3b\xd7\x5f\xef\xdf\xbf\x14\x72\x62\x27\x72\xb0\xd8\xcb\x06\x47\x82\x25\x0f\xa3\xc1\x95\x1f\x1d\xa5\xfe\x51\x70\x84\x43\xb1\x1c\x04\xe5\x88\x55\x31\x48\x43\xff\x38\xc2\xc7\xc7\x82\x92\x04\x71\xc0\xaf\x28\x3c\x0e\x4e\xd2\xd0\x1f\x84\x82\xb9\x9d\xf8\xa3\x50\xac\x36\xf1\x46\xfc\x4a\x05\x55\x47\x38\xf4\x47\x82\x9f\x9f\x0a\x66\x79\x2a\x39\xe0\x71\x2f\xf5\x45\x23\x63\xc9\xad\x8e\xfc\xe8\x48\xbc\x00\x6e\x3b\x0c\x22\xff\x54\x7c\x2c\xe8\x44\x2c\x46\xc1\xbb\xa3\x48\x90\x8a\x20\x9c\xe3\x60\x20\xf9\xcf\xe0\x18\xf8\x8c\xe8\x4b\x2c\x98\x53\x51\x26\x7e\xa5\x63\x41\x80\x21\x3e\x3d\x16\x1c\x52\xac\x4d\xf8\x75\x12\x06\x83\x5e\x1a\xe2\xa3\xe3\xe0\xc8\x17\xc0\xe3\xa3\x61\x30\x96\xbf\x60\x18\x4f\x07\xc7\x82\x9b\x0c\xc3\x23\xd8\x2b\xc3\x60\x28\xd0\x81\x0d\x62\xbe\x7d\xd7\x94\x37\xa7\x47\xfe\xef\xfb\xa7\x27\x54\xd3\x33\x1c\x00\xcb\x1e\x05\xe3\xd5\x31\x8e\x8e\x4e\x52\x01\xdf\x51\x30\xc2\x63\x58\xb4\xc0\x2e\xe1\xef\xd5\x69\x2a\x8a\x43\x58\xea\xfe\x18\x58\xbe\x40\xdf\x78\x75\xec\xab\xef\xfc\x23\xb9\x5b\x88\xb5\x36\x96\xb3\x1b\x8c\xaf\xfc\xc1\xb0\xf7\x74\x30\x04\x0e\x34\x18\xe0\x01\xb0\x54\x21\xa3\x1c\x63\xab\xf7\xdf\x8e\x85\xd0\x10\x69\xa8\xb0\x30\xdf\xe1\x1b\x6e\x6e\x35\x2d\xcf\x46\xde\xa9\xcc\xc7\x05\x49\x3d\xaa\x8e\x6a\x23\x84\x23\x34\x33\x0e\x77\xb7\x60\x92\x58\x19\x41\x71\x6d\x04\xa5\x6e\xcb\xea\xee\xaf\x05\x9a\x76\x19\xcd\x6a\x3b\x9b\x87\x38\x6f\xa8\x80\x5a\xa8\x6d\xfb\xd9\x9a\xd4\xef\x6b\xd6\x84\xe1\x42\xb8\xcb\x6c\x7a\x11\x17\xb3\x70\xbe\xdb\x4b\x41\xdf\xd7\x99\x8a\xfe\xb5\xbf\xab\x68\xbe\xdb\xcd\x77\xf1\xbe\xce\xf6\x7c\xb6\xb3\x8f\x12\x1f\x79\xed\xa6\x42\x1c\x06\xbe\xda\xa7\x4c\x63\x23\x93\x11\x3d\x8b\x91\x9a\xc5\x71\x34\xd0\xf3\x28\x7e\xca\x99\xe4\x10\x1d\x8c\xba\x2e\x77\xdd\x1b\x0e\x77\xa6\xf0\x67\x46\xf5\xa5\x69\x8f\x79\xdf\xb8\x67\x0a\xd1\xa4\xe6\x15\x5c\x8b\x27\xf4\x1f\x19\x97\x21\x85\x10\x9c\x68\x1b\xf7\x9c\x32\x80\x65\x67\xfd\x80\xe7\x9f\x28\x73\xdd\xee\xd6\xe4\x5b\x2c\x81\x3c\xf8\x35\x68\xc6\x44\x9a\x16\x70\x28\xba\xe6\x9e\x3c\x3a\x65\x65\x4f\x45\xc1\x82\x60\xda\xf2\x50\xd7\xab\x5d\xae\xde\x64\xfc\xaa\x27\x30\xd0\x13\x07\xb2\x9a\xc1\x14\x42\x31\xf3\x32\x13\x45\xea\x4d\xd7\x9a\x7a\x6f\xad\x29\x50\xcf\xa8\x85\xf3\x0f\x2e\x6d\xe5\x5a\x3e\x46\x4f\xd0\x74\x8f\xc2\x4d\x19\xd9\x71\xcb\xa4\x34\x27\xaa\x19\x9c\xd9\x39\x58\xc4\x44\xdd\xc8\x2f\x4b\xa9\x28\x7b\xc1\xb8\x77\x49\x21\xaf\xcc\x86\xd3\xc5\x3b\x01\xa5\x54\xdd\x33\xfe\x2e\xfb\x06\xb9\x63\xc1\xa4\xf6\x92\xf2\x27\x2a\xe5\xe3\xd3\x55\x46\x19\x7f\x4b\x53\xee\xa1\x49\x46\x52\x65\x6c\x5c\xe2\x84\xa4\xda\xe0\xb8\xdc\x75\xe8\x11\x0e\x18\xd8\xe9\xb5\x9c\x80\x1a\x9a\x00\x84\xbf\x1a\xb7\x72\x6f\x46\xf1\x33\xea\xdd\x2a\xab\xc2\x98\x56\xb7\x4b\x8a\x26\x33\x4d\x91\x89\x75\xe4\x2e\xd4\x29\x9d\xa9\xa3\x76\x8e\x8d\x49\x30\x68\x9c\xe7\x48\xc6\xea\xed\x8c\xf3\xd0\xd0\x8c\x49\xfc\xe6\x95\x8e\x2c\xab\xa1\x3a\x21\x5c\xbb\xbd\x95\xda\x61\x6e\xa5\xd1\x3f\xd9\xb7\xc8\x38\xde\xa0\xdb\xaf\x32\xd8\xc1\xec\x23\xf7\x18\xce\x11\xfe\xc8\xbd\xb2\xea\xbb\x54\xfd\xa1\x39\x92\xae\xf7\xd5\xd7\xea\x9a\x67\x43\x52\xaf\xc4\x03\x84\xd7\x64\x23\xd8\xf2\x92\x6c\x66\xd1\x7c\xc2\x05\xd2\xfe\x4c\x3d\x50\x5a\x94\xf1\x2d\x78\x43\xad\xa5\xee\x61\xb9\xc3\x6d\x2b\x18\x66\x61\x2e\xd3\xca\x8a\x44\x7d\xa0\x30\x59\x28\x4c\xae\xda\x98\x84\xdb\x80\x5d\x23\xcc\xcc\x17\x8b\xbe\x1f\xec\xf2\x38\xb5\x1f\x62\x4d\xb1\x8f\xf5\xc4\xb4\xa3\x62\x19\x27\x6b\x5c\x74\x46\x07\x08\x92\xc5\xc2\xba\x27\x7e\x57\x63\xb7\x90\x3f\xb2\x2b\x30\x5d\x8f\xa9\xe0\x57\x77\x7f\x9a\x91\xba\x65\xcd\xd4\x36\xa9\xf8\x33\x8a\xed\xc7\x37\x1c\xe1\x84\xcc\x9c\xc0\x34\xf8\x04\x3b\x31\xcb\xb9\x37\xab\x5a\x7d\x8f\x9d\x39\x72\xd0\xbc\x6e\x2b\xd1\x15\xba\x31\xb0\x03\x3e\xee\x69\x06\x82\x40\x4a\x05\x29\xee\x49\x0d\x3b\xe0\x5b\xdf\xa1\x2a\x36\x30\x9b\x43\x04\xa6\x52\xea\x1f\x6b\x91\xf5\x1e\xaf\x56\x5e\x82\x6a\x51\x79\xb3\xa5\x57\x5d\xce\xa1\xdb\xc2\x33\x91\xbc\x10\xce\x3d\x48\x37\xb4\xa2\x70\xdf\x29\x9d\x11\xaa\x8b\xd0\x9c\xbd\x2f\xa8\x58\xdc\x2b\x08\xad\xdd\xa5\xda\xac\x12\x7a\xbd\xe7\x1e\x47\x13\x06\x61\x7b\x64\xa8\x12\x0b\x88\x4f\xdb\xed\x9f\xb8\x1d\xfd\xe6\x9a\xbb\x6e\x3d\xb7\xdc\x9f\x38\xb2\xd5\xe1\xb3\x39\xda\xbb\x12\xc1\xac\x4c\xad\xc4\x55\x6b\xa5\x31\x74\x9b\x8a\xd5\x59\x0b\xd8\xec\x39\x89\xcc\xe7\x88\x70\x61\x8f\x59\x60\xa0\x42\x47\xe7\x75\xb6\xeb\x72\x0f\xe1\xd4\x43\xd8\x84\x45\x0b\xe4\xc8\xec\x1e\xd2\xea\x8a\x18\xa1\xda\xe6\xfd\xfa\x77\x5a\x56\xb0\xfd\x34\x07\x4b\xd1\x2d\x75\xdd\x54\xf0\x8f\x39\x96\xd7\x7c\x95\xf3\x7f\xfd\xaa\xde\xd0\xdf\x6b\xcb\xa2\x5e\x1b\x6b\x38\xb1\x03\xab\x65\x3f\xd2\x0b\x9c\x5b\x59\x9a\x9b\xaa\x5c\x66\xae\x6b\x0a\x4f\x1b\x31\xc8\x98\x0a\x4a\xb4\xbb\x3b\x52\x42\xbd\xb1\x2f\x48\xa0\x7f\x87\x84\x70\x8a\x13\xf2\x2a\x68\x6f\x77\x98\x8b\x3d\x2e\x11\x6f\x74\x24\xfd\x3f\x09\x21\xd9\x83\x48\xc8\x2a\x90\x29\x68\x8e\xc5\x44\xfd\x2c\x48\x78\x6f\xe5\x1b\xd8\x8c\xe4\x72\xcb\x5c\xf7\x20\x45\x96\x51\x9f\xe0\x29\xd2\x7e\x26\x03\x3b\x00\x51\x29\xd5\xbc\xbc\xab\x49\xb5\xed\x39\x82\xc5\xff\x63\xe6\xbc\x93\xf1\x91\x9d\xb7\x3a\x36\xb2\xf3\x52\x45\xc0\x7d\xa6\x63\x22\x3b\x32\xe8\xb0\x65\xc1\x97\xce\xa2\x39\x9a\x3e\x9b\x89\xbf\xf5\xdb\xb9\x79\xfc\x76\xb6\x12\xdb\xc6\x4f\xd4\x1b\x82\x63\xb3\x24\xa4\xe9\x26\x28\x37\x17\x25\x2f\xbc\x08\x47\x28\xde\x20\xbc\x20\xff\x4e\xbd\x35\x5e\x22\x7c\x45\x16\x90\x96\x6e\xb1\xdd\x66\xae\x9b\xd5\x71\xfd\x52\xe0\x7a\xdd\x2a\x7e\x2e\x8a\xaf\x50\xa1\x8d\x36\x68\xfd\xb6\x99\xe1\x2b\xf0\x48\x68\x62\x68\x22\x43\x80\xdf\xd6\x8d\x27\xd5\xc6\x2e\x7e\xda\x16\x86\xd5\x0e\x76\x43\xf5\x16\x76\x10\xc9\x3d\x4c\x86\x2e\xaa\xeb\xdc\x67\x73\xad\x74\xbf\xdd\xd5\x44\xe8\xdd\x6e\x87\xaf\xc9\x85\xda\xbf\xaf\x6d\x69\xe5\xcb\x9c\x70\xb1\x49\x2f\xf0\xba\xb5\x76\x72\x2d\x33\xff\x59\xb9\x56\x5d\xe0\xda\xfe\x9b\x4b\x50\xe0\x5e\x41\x03\xbe\xae\xb6\xe0\x2b\x05\xdf\x75\x63\x7b\x15\xbb\x46\x3b\x86\xcc\xe7\x4b\x07\x4d\x9c\xf8\x42\xa6\xd8\x87\xd4\xd7\xb4\x1e\x88\x25\xc1\x34\x58\x66\x45\xc9\x01\x99\x28\xa6\x41\xb2\x16\xac\x49\xe2\x36\x41\xda\x6f\x51\x9a\xe9\x7c\x8f\x81\x10\xd6\xd3\x64\xaf\x57\x41\xcc\x15\x2b\xcb\xd1\x4e\xda\x0c\xc8\x52\x2b\x64\x87\x6d\xe5\xaa\xa5\x9f\x97\x72\x13\x53\x83\x41\x58\x3d\x27\x90\xfc\x5f\xc8\x17\x55\x00\x8e\xba\x91\x6c\x65\x82\x71\x40\x2a\x4b\x36\x19\xcc\xfd\xe0\x1f\x4f\x2d\x73\x8b\xca\x8a\xce\x8a\x76\x83\x5c\xf7\xa0\xc5\x2b\x5c\xd7\x3b\xb0\x5b\xde\x6e\xb5\x2d\x9e\x5d\xaa\x1b\xb4\x60\xfb\xbb\x36\xcb\x79\x8c\xf6\xcb\x7c\xc6\x66\xb6\x7b\xaf\x75\x1e\x39\xc8\xb0\xb6\x77\x5c\x5e\x55\x3d\xe7\x08\xe7\xd6\x3e\xda\x19\x7d\x18\x4d\x56\x9c\x1c\x84\x58\xe1\xb4\x68\x91\x27\xba\xcd\x3d\x84\x37\x62\xf3\xe1\xde\x9e\x5d\xc7\xd4\xa8\xb6\x1e\x88\x77\xc1\xc9\x0f\xe5\xe7\x4b\x90\x32\xe2\x22\xcf\x39\x0a\xea\x11\xea\x7b\xb7\x1f\x58\xaf\x97\x7f\xa6\xc5\x72\x95\xdf\xc4\xbd\xcf\x59\x99\x5d\xac\xe8\xe4\x03\xdb\x7d\x60\x1f\x58\x67\x6d\xe3\xb1\xa9\x5e\x5c\xac\xf2\xf4\xd3\x44\xbc\x01\x2e\x0a\x26\x0b\xbd\x8c\x5d\xd1\x22\xe3\x50\xac\x84\xfc\x5e\x44\xaf\x27\xfb\xba\xeb\xf5\x74\xf0\x6e\x3f\x59\x65\x97\x2c\xee\xf9\x61\x10\x0d\xc6\xf0\xc9\xae\x05\x49\xb0\x4c\xfc\xd5\xa5\x84\xa7\xe3\xc3\xc1\x9d\x1f\xde\xf8\x91\xfc\x52\x9e\x42\x7a\x61\x10\x1e\xdd\xf3\xc1\xa0\xf1\xc1\xdd\x90\xdd\xf8\xc3\x66\xfd\x93\xe3\xbb\x3f\x18\x35\x3e\xb8\xa7\xfd\x71\xa3\xfa\xf0\x3e\x80\x8e\x9a\x1f\xdc\x03\xcf\x71\xa3\xfe\xe8\xbe\x0f\x4e\x1a\x1f\xdc\x5d\xfb\xb4\x59\xfb\xbe\x09\x88\xc2\xc6\x17\xf7\x7e\xd0\x9c\xe3\xa3\xfb\xa6\x20\x6a\x4e\xf2\x7d\xf5\x9b\x93\x7c\x72\xdf\x24\x44\xcd\x59\xbe\x17\xa4\xe6\x3c\x9f\xde\x37\x0d\x51\x7d\xa2\xa3\xbb\x2b\xd7\x67\x39\xba\x7f\x1d\x44\x27\x8d\x2f\xee\x1d\xf2\x69\xf3\x83\xfb\xc6\x3c\x08\x1b\x5f\xdc\xd9\x83\xc9\x2b\x20\x3f\xba\x4e\x8a\xcb\x8c\xc9\xe4\x02\x40\xe6\x8a\xe5\xa8\xc6\xc4\x91\xef\xee\xa6\xe0\xcb\x5a\x5b\xa2\xf1\xef\x6d\x4a\xa6\x3d\x90\xcd\x18\xee\x77\xe7\x92\x58\x65\xb5\x51\x0f\xee\xa8\xba\xbc\xd9\x8b\xa0\x0f\x2c\x30\x79\x2f\x7a\xe5\xe7\xcb\x4e\xfe\x7d\x91\x73\x9e\x5f\xc7\xbd\x10\x86\xa3\x86\x37\xa9\x46\x6c\xc6\xd6\xeb\xad\x73\x95\xf0\xba\x97\x5c\x94\xf9\x6a\xc3\x25\xab\xd6\xe8\x85\x07\x9e\xaf\xe5\xcf\x66\xff\xf7\x6c\x16\xcd\x5d\xa1\xea\xab\xa0\xab\x44\x9c\xd1\x64\xf3\xf4\x0b\xd7\x9c\x3d\x05\x07\xdd\xfb\x76\x8b\x0e\xe2\xbf\x1f\x29\x2d\xcf\x5e\xe5\x51\xaf\x3b\xb5\xfb\xd6\xff\xdd\x5f\xb7\x81\x12\x9d\x43\x02\xf7\x82\x7a\x7a\x92\xfb\x70\xb5\x67\x1e\x3a\x71\xd3\xec\xb3\x6a\x5f\x4e\xf5\x38\xfc\x63\x35\x6f\xfa\xa1\x35\xfc\xb8\x57\xb9\x75\xfb\xe3\xf0\x8f\xb8\x27\xfe\x45\xdd\xe3\xbf\xab\xf2\x7f\x29\x62\x15\x81\x27\xe9\xa7\xcb\x22\xdf\xb0\x85\x9f\xe6\xab\xbc\x88\x7b\xff\x6b\xb9\x1c\x8c\x87\xc9\x44\x92\xbf\x58\x9b\x7e\x91\x2c\xb2\x4d\x59\x91\x9f\x86\xf3\x22\xff\x22\x44\x98\x8c\x5d\xc6\xba\xea\x45\xfe\xa5\x06\xde\x1d\x55\xaa\xfe\x96\x93\xae\xc5\xdf\xeb\xc1\xcc\x9a\x62\xb5\xec\xbe\xf8\x8a\x64\x75\xad\xeb\x8c\xf9\x66\x7d\x8f\x5b\x72\x93\xd4\xba\x4a\xd2\x48\x16\x0b\x80\xc4\xc8\x0c\xcd\xf5\x29\x88\xa4\xfa\x94\xae\x56\xd9\xba\xcc\xca\xfa\xda\xed\xa4\x00\xe9\x9c\x2f\xda\xdd\x3b\xef\xcd\x2a\xfb\x67\x9b\xe7\x6b\x09\xd7\x3d\x33\x6d\xd7\x6b\xce\xb2\xe4\x5c\x36\x8f\xae\xf3\xb2\x36\x5f\x32\x9c\xec\x5f\x3d\x3c\x09\xc8\x83\x46\xd8\xa8\xba\x67\x90\xd5\x9e\xb6\x9f\x5f\xab\xf1\x9a\x41\xfe\xb7\x0c\x59\x00\xf4\xb0\x11\xab\x9a\x2d\x06\x95\xaf\xed\x29\xed\xde\x5c\xfe\xbf\x41\xa0\x62\x28\xd5\xc4\xdd\x3b\x55\xff\x75\x03\x7b\xc0\x24\x59\xd5\xaa\x61\xa9\x23\x96\x75\xb0\x8b\x82\xa1\xf9\xaf\x8b\xa5\x19\xb1\xb9\x73\x8f\x0e\x8f\x8e\x8e\xeb\xc2\xca\x97\xb2\xd5\x85\x2d\x79\xcb\x4a\xe5\x75\x47\xa5\x93\x66\xad\xe8\x4b\x1b\xda\x7a\x8d\x41\xbb\xc6\xa0\x5e\x63\xd8\xae\x31\xac\xd7\x18\xb5\x6b\x8c\xea\x35\xc6\xed\x1a\x0d\x48\x8f\xda\x35\x8e\xea\x35\x8e\xdb\x35\x1a\x88\x3b\x69\xd7\x38\xa9\xd7\x38\x6d\xd7\x38\x6d\x60\x2c\xec\x40\x59\x58\xaf\xa3\xc5\xcd\x3d\x82\xd8\x5e\x29\x74\xb3\x52\xab\x20\x2b\xb9\x0f\xfa\x3a\x9f\x7f\x5d\x53\x15\xe8\xa9\x25\x60\x0f\xcc\x36\xa7\x76\x34\xbf\x5a\x3e\x3b\xd3\xe2\x79\x4f\x0b\xca\x9d\xe2\x62\x45\xb8\x99\xbd\x04\xfd\x41\x4b\xc6\xbc\x5f\x8e\x6a\xc8\xe2\x0d\x32\xaf\xf4\x1b\xa6\x4f\x5b\xe8\x97\xbf\xe3\x1e\xa4\xb2\xeb\x85\x41\x78\x42\xaf\x7b\xff\x8b\x52\xda\x25\x82\x84\x41\x54\x1f\x3a\x6c\xe6\xf4\x5a\x6d\xe9\xe2\x7d\x03\xb7\x8d\x53\xcf\x72\x95\x27\x3c\x6e\xad\xde\xe6\x81\x46\x55\x6b\x32\xaf\x5a\x83\x18\x8a\xca\x8e\xb2\xa2\xa3\x6c\xd5\x51\x76\xf1\xe0\x63\xd9\xae\xde\x3d\xbc\x6d\xf6\x6f\x15\x16\x5d\x85\xab\xae\xc2\x8b\x07\x1f\xe7\x2a\x0e\xb3\xce\x58\xfd\x24\x90\x68\x9f\xc3\xb8\xa7\xdf\x0f\xca\x5e\xc6\xa4\x89\x33\x50\x43\x52\x17\x5b\x1f\xfa\x85\x3d\x41\x25\xbd\xb7\xd7\xc8\x6a\xa3\xe4\x74\x5d\x7a\x27\xe8\xbe\x7e\xf7\x7c\x03\x3d\xff\x6f\xdd\xd7\x27\xfa\x55\x26\xed\xee\xd5\x10\x10\xfe\x51\xfe\xed\xdc\x99\x54\x60\xa5\x70\x41\x2f\xeb\x40\xd4\x36\xa7\x56\xad\x9d\xf8\x27\x0a\x1f\xd2\xf4\xf0\xe8\x61\x8d\xdb\xf5\x76\x7a\x68\xff\xb7\x0d\x49\x50\x89\x49\x89\xa8\x28\xe5\xba\xf4\xa5\x9e\x39\xee\x39\xeb\x22\xbf\xcc\x16\xf1\xb3\xbf\xbc\xb8\x4e\x2e\xe9\x7b\xdd\x62\xf0\x2a\x4b\x8b\xbc\xcc\x97\x3c\x78\x92\x94\x59\x0a\x6f\x3d\x68\x28\xcb\x19\x89\x90\xb3\x4f\xf2\x50\x90\x9c\xb6\x01\xbe\xa3\x92\x21\xe8\x2a\x63\xe3\xef\x06\xeb\xe0\x5e\x58\xa3\x93\x87\x00\x5b\xd5\x6a\x42\x3b\x38\xfe\xfd\xa0\x1d\xde\x0b\xed\xe0\xf8\x21\xd0\x56\xb5\xaa\x7d\xb8\x9e\xf3\xf2\x77\x03\x39\xc4\xbd\xeb\xac\x28\xf2\xe2\x2e\xb2\x90\xd2\xa6\x1f\xe1\x5e\x74\x8f\x44\x6a\xea\xd4\x01\xd7\xb2\xe0\xef\x47\x17\x0f\x07\x3b\xc2\x3d\xff\x3e\xb0\x4d\x9d\x3a\xd8\x17\x39\xbf\x92\xda\x9a\x06\xfa\xff\x47\x0c\xcc\x7f\xc8\xc8\xfc\xfa\xd0\xe0\x1a\xa8\x57\xe3\x2b\xb8\xa3\x34\x3a\xe9\x2c\x1e\x1c\xd7\x8b\x1b\x58\x69\xbf\xd3\xe8\x69\xbf\x11\xa8\xad\xef\x7d\x1a\x71\x46\x40\xd4\xff\x35\x5e\x54\x9b\x36\x4f\xd2\x4f\x0f\xd5\x33\xb6\x65\xc0\x9a\x9e\x51\x0b\x7b\x41\xf3\xe8\xa1\x92\xc6\x62\xfb\x51\x9f\x23\xfe\xb5\xaa\xd4\xb6\xea\x57\x03\xd3\xd0\x2c\x37\xd4\x9e\x77\x6b\xcc\xeb\x23\x68\x62\x67\x1f\x1a\x54\x96\x5c\xf9\x51\x5d\xcb\xa5\x80\x95\x01\xf5\xea\xe2\xaf\x1c\x56\xba\xca\xd6\x02\xdb\x29\xf7\x42\xdc\x53\xff\x47\x75\xfd\xd8\xfa\x4b\x0d\x6d\xbe\x2e\xb8\x47\xe7\x75\x17\x6a\x35\x3a\xa0\xa5\x1a\x90\xbe\xf1\x56\x8c\xa5\x35\x10\xee\x75\xbc\x82\x5f\x6a\xc0\x30\x02\x33\x97\x1a\x6a\x53\xa0\xc1\x0e\xef\xb8\xdf\xac\xa0\x2c\xc5\x4a\x4f\xbb\x2f\x13\xda\x77\xae\x20\x28\xca\x44\xcc\x4a\x8c\xcf\x56\xab\xb8\xf7\x39\x29\x3c\xdf\xaf\xde\x49\x55\x27\xee\xd9\x06\xc4\x12\xc7\xda\xfe\x5d\x69\x1b\xcd\x63\xab\x05\xf5\xa6\xc6\xbf\x3b\x80\x31\x19\xa0\x3b\xc1\x31\x6f\x1f\x00\x50\x18\x8c\xf6\x80\x54\xb5\x62\x80\x0a\x83\xd1\x3e\xb0\x00\x2a\x2b\x85\x75\x1b\x67\xff\x35\x5d\x36\x30\xf3\x7b\x22\xfe\x3a\x29\x3f\xd9\xc3\xc2\x77\x54\xe9\x9c\x20\xc8\x20\x61\xad\xe8\xc5\x7d\xab\xfa\x07\x2b\x0b\x06\x37\x01\xec\x3e\x62\x4e\xde\x60\x46\x1a\xa6\xf0\x45\x47\xc4\x1c\x9c\x93\xa7\x10\xfe\x85\xc9\x7c\x35\xc5\x01\x21\xdc\xe4\x34\xb2\x62\x01\x7d\xf8\x50\xb3\x89\xfc\xf0\xc1\x77\x10\x76\x2e\x21\x61\x49\xbd\x9e\xef\xef\xa9\x58\xee\x6d\x90\xcb\x1a\x93\x9c\xe4\xc6\xc8\x2d\xc3\x96\x15\x26\x93\xf6\x6e\xe6\x65\x82\x1d\xab\x9b\xe6\xdb\xd2\xfe\xb4\x30\x91\x93\x7b\xb9\x95\x98\x43\x60\x4b\xd9\x4e\x43\x12\x61\xd7\x3d\xf8\x0b\x77\x5d\xef\x1b\xf5\x04\x26\x11\xfe\x0b\x27\x07\xa1\x1d\x44\xb9\x6e\xd6\xaf\x8c\x4f\x65\x02\x53\x6d\x55\x26\x06\x9c\x5c\x94\xbc\x48\x52\xee\xe0\xdb\x4b\xca\x63\xbe\x43\x78\x6f\xdd\x2b\x7e\xbd\x52\xf5\xda\xb1\x36\x69\xa0\x9b\xba\xd7\x7c\x68\x77\x57\x27\x2c\x5f\xd0\x76\x27\x95\xdd\x6f\x47\x12\xad\x45\xf6\xd9\xf2\xf0\xb6\xf3\x64\x05\x02\x64\x5c\x85\xc7\xdf\x89\xae\xad\x84\x27\x4f\x78\x67\x5c\x72\x13\xd8\x86\x4f\x9d\x65\xe2\xc4\xdc\xa4\xd6\x91\x21\x55\x96\x9e\x49\xfc\xc9\xb8\xf7\x56\x0d\x03\x58\x71\x09\xa1\x16\xb7\x5b\xc6\x3d\x13\x0f\x50\x94\xc8\x10\xb0\x1c\xbf\x85\x20\x39\xb6\x9d\x8d\x01\x86\x7a\xe8\xf6\xa0\x6e\x02\x9b\x2d\xbd\x03\x8f\xda\xc6\xad\x7c\x4f\x6a\xb8\xa7\x32\xff\x62\x9a\xac\x56\xbd\xa4\x07\x66\x6d\xf5\x14\x8c\x0e\xda\x41\x4a\x41\x4c\x55\x9a\x40\x0b\x66\x72\x2b\x63\x0f\x41\x90\x15\x83\x48\x42\xb1\xc7\xc8\xec\xf6\x13\xfd\x1a\x3b\xc9\x62\xa1\x5c\xe2\xec\x69\xa9\x52\x70\xc9\x34\x88\x2d\x23\x54\xcc\x60\x15\x49\xbf\x1e\x8e\x70\x41\xc2\x49\x71\xc6\x27\x45\xbf\x8f\xd8\xac\x98\x5b\x86\xa9\xc5\x5c\x87\xda\xd2\xf6\xc0\x32\x43\xe1\x7a\xb3\x5a\x3d\xb3\xf0\x7b\xbb\x43\x13\xdb\x96\x3a\xef\x8a\x2c\x04\x49\x3a\xad\x11\xce\xb8\x0a\xd6\xd9\x2c\x95\x11\x3b\x67\x7c\x8e\xf0\x8f\xd4\xe3\xea\xe7\x1f\x94\x39\xee\x0e\xcb\xd1\x17\xb4\xa4\xbc\x63\xfc\x5d\x88\xd4\xdf\x34\x01\x6f\x7d\x5e\xf3\x31\xd0\x11\x5f\x2a\x6f\x03\xfd\x7b\x7a\x1b\xc6\x7c\x17\xf3\x49\x47\xa4\x3e\xd6\x8c\x5f\xc0\xab\x98\x98\x7c\x8e\x73\x13\x35\x11\xd2\x7f\x59\x99\x7a\xe4\xc3\x84\xce\xf2\xf9\x76\xeb\x89\x3f\x90\x00\x5b\xfc\x98\x65\x73\x92\xc8\x50\x9c\xbb\x39\x72\xdd\xcc\xb3\x5c\xfc\x31\x43\xb8\x80\x32\x99\xda\x4d\xb3\x9e\x08\xff\x8d\x93\xdb\x6c\x50\x7e\xbe\x8c\x5b\x11\x4a\x5b\x96\xc9\x61\xa7\x65\x72\x68\x5b\x26\x87\xf3\xf8\x76\xa7\xcc\xfd\x05\xf7\x9b\xe8\x45\x2a\xf8\x43\x7d\x89\x5e\xaa\xf5\x99\x56\x21\xab\xcc\x5b\x2b\x56\x2f\xba\xdd\xc5\x45\x15\xcf\xa2\x3b\xa4\xd3\xdf\xb9\xc7\x10\xfe\x22\x3d\x30\x76\x95\x69\xa2\x4c\x39\xe8\x39\x6f\x20\x11\x2a\x84\x73\xa4\x7f\xdf\x64\x05\x15\x4b\xec\xd9\x9b\x57\xbd\x7c\xd9\x2b\xf3\x6b\xda\xfb\x94\xb1\x45\xe0\xa0\x1d\x4e\xcb\x32\xfe\xc4\xb1\x34\xc3\x7c\x5a\x96\x36\x5a\xfe\xc2\xb7\xdb\x16\xeb\x96\xa6\x9e\xbf\x23\xf6\xb0\x40\x57\x3d\x30\x19\x04\xee\x62\x7b\x22\x7a\x4d\x0e\xa2\x8e\x50\x67\x10\x5c\xab\x5e\x24\xc0\xc5\xed\x60\x63\xe4\x20\xc4\xff\x5e\x33\x21\xfc\x91\x7b\xb7\x6d\x00\x60\x93\x59\x72\xef\xd6\x8e\x49\x16\x7f\xe1\xd8\x0e\x49\x16\xbf\xe6\xb8\x3b\x22\x59\xfc\x77\xde\xca\x8d\x0f\xcd\xb2\x9d\x5a\xb3\x2f\xb8\x9d\xfa\x6c\x4f\xc4\x17\x51\xf1\x17\x4e\xbc\x9f\xbb\x82\x24\xfd\x46\x5b\xfa\xdb\x1d\x44\xd2\xa9\xbc\x81\x6a\x21\x3d\x6f\x28\x84\xf4\x34\xfe\x41\x56\x40\xaa\xdc\x75\x73\x70\x1d\x02\x7f\xa1\xb4\xfa\x2a\x91\x69\xf7\x12\xf0\x21\xd2\x39\xb4\xcc\xdb\x95\x7c\xbb\xc2\x6b\xc2\xb5\x87\x98\xc9\xa5\x45\x08\x59\x4f\x67\xf3\x78\x8d\x17\x84\xdb\x71\x46\xaf\xaa\x0a\x8b\xe9\xed\x2e\x5e\xe0\x0b\x01\x94\xdc\xab\xae\xab\x97\x17\xe2\xe5\x05\x78\xf3\x49\xbc\xbc\xaa\xf6\xc8\x4b\x3b\x77\xc7\x67\xf5\xa0\x17\xd7\x33\x0e\x49\x7f\x20\xa6\x07\x04\xdf\xda\x89\x4d\xc7\x6b\xcb\x0c\x62\x61\xe3\x5a\x68\x99\xcd\xf4\xea\xf7\x0b\x2d\x73\xb5\x27\xb4\xcc\x55\x67\x68\x99\xa6\x8b\xd4\x37\xee\x7d\x56\x59\x6e\xd2\xe9\x37\xee\xa5\x32\x6d\x4a\xdc\xf4\x82\x04\x73\x72\xed\xce\xaa\xa3\xdb\x4a\xc3\x71\x65\xd8\xfd\xaa\x32\xec\xbe\xb4\x2c\xd3\x61\x3f\xba\xa1\x82\x91\x2a\x0b\xf5\x4c\x99\xb3\x6f\xb4\x79\xba\x65\x89\x7e\xa5\x0d\xd4\xaf\xb1\x36\x5a\x5f\xee\x34\xc5\xff\xbe\x14\xac\x03\xc0\xca\xc8\xd9\xb1\x10\x92\xa0\xc0\xa4\x80\xb3\xc2\x30\x79\x05\xf1\x0a\xab\x7a\x21\xaa\xcb\x02\x84\x7f\x16\x7c\x14\x86\xc9\xf1\xad\x4c\xbf\x05\x96\xc4\xf8\x27\x4e\x6e\x59\xfe\x78\xc3\x73\x9b\xdf\xb5\xf9\x4c\xd4\xc9\x66\x22\xbc\xe6\x10\x6c\x6e\x91\x95\x69\xce\x18\xb8\x1e\xee\x70\x0a\xbe\x9d\xf1\xaf\x78\x91\x5f\xc7\x7f\xe3\x78\x95\x5d\x14\x49\xf1\x35\x7e\xcb\x31\x38\x37\xc6\x2f\x38\x5e\x66\x6c\xf1\x22\xcd\x59\xb5\x2f\xc7\x4f\x64\xf0\xde\xf8\x17\x8e\x39\xfd\xd2\x15\xb1\xf4\x5f\xcb\x0d\xe4\xaa\xae\x45\x53\x84\x55\x2d\x19\x82\x5e\xd5\x35\x9e\x30\x9b\xc7\x09\xde\xd4\x57\xf5\xba\xaa\xb0\x11\x0b\x77\x83\x97\xd5\xaa\x5e\x54\x2f\x97\xe2\xe5\xd2\x5a\xaa\x6a\xa1\x8a\xb1\x3b\xd8\x38\x56\xee\xf6\xae\xd7\x9a\xff\x65\x37\x39\xab\xfc\x29\x1d\x54\xbc\xd6\x54\xbc\x30\x54\x3c\xbb\xc3\x19\xda\xb2\x37\xb3\x1c\xe1\x56\x5e\x0a\x87\x08\xc8\x07\xac\xcc\xb4\x7e\xff\x69\x53\x7e\xb4\xd6\x94\xc1\xb4\xc8\x49\xd3\xd3\xd2\x0a\xca\x0c\x93\x66\x4d\x4b\x69\xcf\xdb\xed\x2e\x4e\x70\x5a\x4d\x8b\xc5\xca\x53\xf1\x32\x6d\x4f\x8b\x1a\xde\x83\x66\xe6\x49\xcd\x33\xd6\x44\xf0\x47\x0d\x9f\x4d\x7b\x3e\x4a\x93\xf9\xee\x7b\xe6\x43\x03\x65\x4f\x49\x56\x4d\x09\xd4\xfa\xdd\x27\x44\xa3\xbc\x36\x25\xb3\x79\xcc\xda\x48\x03\x00\x9c\x3a\xa2\x2c\x21\xb2\x0a\x4f\xd7\xc8\x2e\xdf\xcc\xc2\x3d\xa5\xed\xb3\x2c\x17\xa0\x28\x7d\x81\x39\xf2\x8a\x71\xc7\x7b\xdf\xe0\xd9\xdd\x99\x43\xee\xc7\x78\x0d\xd3\x05\xb2\x52\x49\xee\xea\x89\x94\x04\xfa\x79\xfe\x13\xbf\x5e\xc5\x05\xdf\xe1\x1f\x79\x3b\x5f\xc0\xbf\x40\x9e\xac\x0b\xe3\x13\xcf\x3e\xa2\xe8\x53\xb0\x49\xa6\x1c\x6e\xb7\x75\x47\x59\xe4\xba\x8f\x5d\xb7\x2d\x77\xfe\xc4\x83\x45\x7e\x1d\xc0\xa1\xc2\xbb\x15\xc2\x21\x88\x78\x3b\xa4\xf2\x69\x88\x13\x27\xf3\xa2\x31\x12\xff\x0e\x42\x14\x94\x94\xbf\xb8\xbe\xa6\x8b\x2c\xe1\x14\xd9\x9b\x22\x86\xe3\x20\xfd\xb2\xce\x0b\x5e\x92\xdb\xf7\x82\xcd\x2b\x86\xf7\x2c\x2b\x28\xe8\x6b\x63\x67\xa1\x7f\x3a\xf8\x69\x7e\x2d\x06\x2e\x96\x1f\xfc\x70\xf0\xbb\xb4\xc8\xd6\x3c\x76\x4a\xf8\xeb\xe0\x77\x32\xd5\x98\x8c\xb2\x87\xdf\x43\x96\xcb\xe4\xd2\xc1\x4f\x9f\x3d\x7e\xff\x38\x76\xd2\x45\xc2\x13\x07\x3f\xcb\x53\x49\x91\x0b\xf9\xc3\xc1\x59\x29\xea\x76\xf8\xf0\x8a\xaf\x4d\xb4\xd8\xed\x56\x77\x54\x2b\x82\xce\x4c\xc9\x6e\xd7\x1c\x23\x07\xff\xa5\xe2\x92\x34\xf3\x31\x64\x4b\x8f\xf7\x32\xd6\xa3\xc6\xfd\x70\xc6\x21\xfa\xf6\x90\x90\x16\x41\x18\xd5\xc6\xa4\xd2\x34\x48\x2d\xc3\x0f\xce\x0f\x7d\xde\xff\xc1\xe9\x65\xe2\xd8\xa3\x4e\x40\x8b\x9e\x6e\x20\xf8\x41\xe5\x58\x67\xe4\xf0\xaf\xde\x34\xf6\x66\x1f\x6e\xfa\x1f\xfc\x60\xde\x47\x31\x9a\x7e\x38\xfc\x70\x28\x0a\x3f\xdc\xf4\xe3\x0f\x37\x7d\xf4\xbf\xd1\x54\x54\x08\xfc\xf9\x23\xe4\x4d\xe3\xd8\xfb\xb0\xe8\x23\x34\xf5\x82\x47\xe8\x0f\x87\xb8\x20\x87\x7f\x15\x38\x8c\x83\xfe\x07\x1c\xf4\xff\x70\x58\xa9\x0e\x73\x5b\x67\x23\x9d\x30\x99\x15\xe0\xef\xb6\x4c\xaf\xe8\x35\x8d\xf9\x2c\x9a\xe3\x64\xc3\xaf\x62\x3e\x1b\xcc\xf1\x55\x5e\xf2\x98\xcf\x86\x73\x2c\xa8\x20\xe6\xb3\xd1\x5c\xa6\xfd\xe5\xb3\xf1\x7c\x27\x33\x11\x54\x21\xe5\xab\x2e\xaa\x9c\x59\x34\x90\x2d\xbb\xae\xc7\xfb\x44\x3f\xf5\x21\x56\x25\xef\x13\xe7\xf0\xd0\xc1\xb0\x40\xae\x74\x0d\xf1\xbb\xef\xfc\x6f\xf0\x92\x13\xfd\xeb\x72\xf1\x5b\x94\x09\x48\x64\x99\x13\x3b\x7d\xf9\x0c\xe5\x49\xd5\x06\x64\xf1\xc3\x56\xbe\x95\x44\xc3\xc6\x88\xd8\x9f\x04\x36\xa4\x46\x0a\xb4\x45\x85\xfc\xc0\xc4\x37\x65\x44\x96\xec\xb4\xaa\x26\x81\xb8\x04\x59\xf9\x58\xdd\x6b\x88\xf3\x6e\x4a\x98\x0a\x89\x78\xf8\xe1\xb0\x7f\x88\xf0\x8a\x84\x78\x43\xd2\x2a\x7f\xfc\xe6\x9c\x84\x93\x8d\xef\x23\x27\x10\x04\xe8\x25\x24\x9d\x6d\xe6\x68\x9a\xc2\x77\x29\xf5\x36\x38\x42\xb1\x13\xc0\xdb\x64\xba\xea\xf7\xe3\x15\x44\xe6\x74\x64\x81\x57\x55\xec\x47\x78\x05\x3d\xa0\xd8\x2a\xc5\x03\x84\x57\xbe\x6f\x9c\x84\xe1\x3b\x8f\x91\x54\xb1\xba\x43\x07\x21\x88\x25\x5a\x4e\x9d\x43\x27\x76\x02\x07\xe1\x62\xea\xc9\xc1\x11\x86\x33\xc1\x16\x63\x56\xa1\xa9\x94\x4b\xc2\x51\x19\x57\x3c\x4a\xe0\x1b\x19\x79\x53\x20\x17\x9e\x15\xb9\xe6\x1e\x47\xb8\x34\xb8\x84\x4c\xca\xa4\x84\xb6\xb7\x5b\xd1\x37\x66\xae\x7b\xc0\xd4\x94\x6b\xec\x96\x32\xc7\x24\x94\x91\x52\xbf\xc4\x99\x20\xc7\x6c\xe9\x31\x3b\xbe\xbb\xfe\x86\xab\xf6\x0f\x4a\x45\x11\x07\x65\x6d\xc6\x64\x31\xe1\x38\xf3\x4a\xed\x35\xef\x1c\xca\x54\x9f\xe9\x55\x52\x3c\xe6\x5e\x88\xa6\x3c\x4e\x3c\x5a\x25\x44\xff\x70\xd8\xff\xc3\x21\x76\x1c\xd4\x77\x0e\x9d\x7e\x95\xd5\xa2\x9c\x7a\xb2\x75\x92\x42\x7b\x28\x4e\x77\x3c\xd8\x14\xab\x9f\x85\x3c\x4c\x72\x0c\x0f\xff\x46\x19\x2d\x12\x4e\x49\x86\x79\xc0\xf2\xe2\x3a\x59\x65\xdf\x28\x49\x30\x07\xdc\x93\x12\xdb\xf4\xd2\x11\x20\x41\xc2\x47\x2b\xf8\xb6\x5b\x16\x70\x0a\x11\xde\x77\x98\x07\xfa\x52\x94\xd4\xb9\x55\x73\x6a\x20\x7a\x6d\x35\x24\x39\xa2\x89\xa6\x5b\x46\xc2\x49\x3d\xa7\x07\x15\xa3\x45\x13\xad\xf1\xa2\xc1\x2a\x29\xf9\x0b\x9d\xf0\xe3\x50\x45\x11\x3e\x0b\x6b\xa8\xf7\x20\x66\x2f\xd0\x5c\x88\xc5\x4e\x2a\x27\xe8\xf0\xaf\xde\xec\xaf\x1f\x0e\xe7\xfd\xf8\xc3\xa1\x60\x55\x8f\xfe\x70\x68\x4d\x59\xbf\xcf\xb4\x2e\x48\x8a\x06\xac\x6f\xa2\x15\x07\xc1\xa1\x83\xfa\x5c\xbb\x48\xeb\x98\xf4\xfd\x48\xf1\xc2\x94\x1c\x78\xce\xc7\x8f\xa0\x41\xfb\xf8\xd1\xc9\x8c\x02\x4f\x45\xd4\x84\xf4\x13\xa8\xe2\x6e\xab\x5a\x96\xff\x2a\x0e\xbc\xf2\x27\x3d\xd0\xd4\x77\x10\x19\x95\x98\xca\xe8\x24\x98\xfc\xd9\x69\xf5\x3a\x5b\x7a\xa7\xe3\x03\x3d\x31\x2a\xb5\x13\xf7\x23\xb4\xdd\x76\x95\x0f\xd0\x76\x1b\x45\x51\xfb\xc5\x10\x5e\x1c\xb5\x5f\x8c\xf6\x7d\x31\x86\x17\xa3\xf6\x8b\x23\x78\x31\x68\xbf\x38\xde\x03\xd4\xc9\x9e\xf2\x53\x54\x8d\xb3\xa2\x10\xee\x47\xe1\x84\x09\x56\xc5\x7c\x1f\x89\xed\xad\x05\x35\xb3\x3e\x54\x3f\xc2\x0a\xcb\xeb\xda\xa5\x09\x05\x89\x26\x84\xbd\x41\x90\xea\x34\xd2\x3f\xf9\xd4\x8f\x62\x7a\xce\xa7\x51\xec\x47\x3b\x2e\x64\x6d\xca\xa5\xb8\x4d\xd2\xe9\xaa\x4b\xe7\x24\x26\x70\xea\xfc\xc1\xe9\x53\x21\xc2\xf3\x60\x59\xe4\xd7\x0f\xfb\x88\x9a\xf0\xc7\xf2\xcb\x34\xbf\x5e\x27\x05\x7d\xf2\x55\xe7\x09\xf9\x59\x5d\x03\x97\xad\x7d\x5f\xae\x8c\xb5\x47\x83\x12\x72\x89\x60\xae\x7e\x18\x16\x21\x13\x9a\x15\xb1\xf8\xeb\x89\x45\x94\xab\x46\x5f\x66\x8c\xfa\xbc\xf6\x88\xba\xea\x3d\xcd\x57\x9b\x6b\x66\xd5\x94\x05\x82\x07\xd8\xd5\x2f\x15\x93\x59\x98\xfa\x8d\x12\xd4\x59\x5b\x41\x51\x7b\x16\x35\xc5\x90\x58\x72\x2d\x06\xc4\xc0\xf3\xda\xc6\x8b\x66\x68\x0b\x83\x98\x67\x74\xb9\x12\x05\x7b\x10\x74\x4f\x87\x7b\x71\x75\xff\xa0\x6a\x58\xe8\x9a\x87\x4e\x9c\xfe\xb3\xb8\xff\x7e\x04\xbd\x60\x1d\x08\x32\x62\xc6\xc3\xd1\xc3\xa6\x4c\x82\xc9\x1e\x36\xe7\xa6\x76\x37\x6e\xac\xc6\xee\xc4\x4d\x47\xbd\xbd\xb8\x61\x9d\xb8\x01\x0d\x91\x4c\xb8\xf3\x2a\x59\xbf\x60\xeb\x0d\xef\x0a\x05\xf4\xef\xef\xde\xbc\x96\x75\xed\xfd\xf7\xaf\x1f\xd0\x7c\xf7\xc3\xec\xaf\x1f\xd8\xfc\xd1\x07\x06\xfb\x96\x41\xf8\x86\xab\x66\x7f\x79\xfb\xb2\x53\x2e\x27\x7c\xbb\x75\x1c\x2c\x36\x42\xe7\x10\x42\x0b\xcc\xa8\x11\xbc\xe6\xae\x2b\x0b\xf9\x2c\x84\xf4\x6b\x42\xce\x14\xf2\x26\xa1\x7d\x8e\x2a\x0a\xce\x95\xcc\x71\x50\xa0\xa6\xd0\xee\x94\x7a\x54\xbf\xbc\x7d\xd9\x4b\xf3\xcd\x6a\xd1\x63\x39\xef\x5d\xd0\x1e\x0c\x64\xa1\x36\x4a\x29\x86\xa8\xac\xc1\xf2\xa9\xbd\xa3\xa6\xe7\x44\x48\x75\x4a\xec\x52\xb5\xe4\xd6\x97\xb1\x4b\x2f\xc4\x69\x3f\x42\x68\xc7\x49\xe9\x09\x89\x0c\x57\x81\x77\x12\x8f\xa3\xd6\x81\xa5\x3a\x94\x75\x46\x6e\xb9\xa1\x17\xeb\x24\xfd\xf4\x73\xbe\xfa\xba\xcc\x56\xab\xed\xd6\xa3\xc1\x82\xae\x0b\x9a\x26\xbc\x91\x4d\x53\x0a\xca\x25\x99\xcd\x71\x15\x18\x06\x3e\x30\xd9\xa9\x67\xf3\x3b\xae\x9d\x57\x79\xb2\xa0\x0b\x07\xdf\x52\xb6\xb9\xa6\x85\x8a\xb8\x81\xf7\xdd\x75\xaf\xee\xbc\xc3\xce\x1e\xde\x50\x06\x37\xd2\xcd\x91\x92\x08\xae\xdf\x70\x37\xbb\x62\xde\xd1\x18\xe1\x5c\xfc\x3d\xb6\x24\x87\xac\x96\xa0\x4b\x25\x34\x32\x18\x9e\x71\x81\x99\xea\x81\x30\xcc\x76\xd6\xa1\x18\x44\xc2\x22\x2e\xf0\xfb\xfc\x13\x65\xd9\x37\x5a\xc4\xcc\x3b\x3a\x42\x58\xdd\xbf\x40\x88\x6e\xe6\x0d\x8f\x11\x7e\x96\x5f\xff\x94\xb0\xc5\x8a\x16\x71\x2e\x06\xd6\xfb\x91\xd2\x85\x2a\xa9\xc6\x96\x79\x8e\x55\xee\x88\x43\xfa\x70\x20\xd6\x85\xf8\xe2\x1d\x2f\x68\x72\x5d\xab\x2c\x8b\xa0\xde\xe8\x48\xd7\xfb\x73\x91\x71\x81\xc2\x8e\xfa\xf5\x57\xe2\xbb\xe3\x91\xfe\xec\xe7\x22\xff\xf2\xb5\x0b\x22\xfb\x05\x74\x35\x1e\xea\x6f\x9e\xe5\xd7\xbf\xf0\x6c\x55\xd6\xea\xeb\x42\x51\xf7\xe8\x54\x57\x7d\x9a\xaf\x56\x34\xe5\x19\xbb\xec\xea\xa3\xf5\x56\x76\x04\xc0\x3d\xa3\xcb\x64\xb3\xe2\x75\xf4\xbd\x2d\xcb\xae\x76\xaa\x62\x15\xaf\xdd\x42\x27\xda\x49\x9d\xf6\xb3\x37\xaf\x3a\x2f\x94\xc5\xf2\xcf\xad\xfc\x76\xe2\xb9\xf0\x18\xe6\x28\xa0\x6c\x01\x29\x1f\x82\x45\x7e\xad\x5a\x11\x0d\xc7\xed\xc0\x24\x39\x34\x63\x68\xc4\xee\xdf\x3a\x71\xcb\xa6\x73\xcc\x64\xd3\x1c\xe1\x5c\x36\x2d\x05\xdc\x67\xf9\xb5\x9c\xa1\xb8\x8b\x98\x33\x05\xa9\x2c\xaa\x37\x99\x09\xee\x81\x9f\xff\xe9\xf9\xeb\xf7\xef\x2c\xa5\x65\x3c\xc0\xa0\x5d\x81\xfc\xca\x71\x28\x1f\x28\x5b\xc4\xa1\xd4\xdf\x47\x78\x5d\xe4\x29\x85\x70\x8d\x99\x8a\x47\x9f\xe5\x4c\x7c\xa6\xb4\x3a\x91\xfe\x25\xbf\x4a\x57\x79\x49\x79\x72\x19\x47\x38\x5f\x53\x26\x7e\x0d\xf4\x2f\xb1\x3f\xc4\x11\x86\x30\x62\xe2\xaf\xf8\xa0\xad\x77\xe9\x8a\xed\x55\x93\xf2\xa7\x5d\x8c\x0e\x34\x36\x82\xa7\x07\xe5\x66\x4d\x8b\x8f\x84\x43\xb6\xc3\xee\xc0\xfb\xf6\x1d\xfc\xad\x15\x67\x3f\x96\x01\x5c\x63\x8a\x6d\x7e\x13\xe1\x1b\xb5\x3a\x20\xdb\x0e\x5c\x8c\x6c\x34\x2f\xda\xed\x10\xda\xc5\xfb\x20\x12\x5b\x92\x60\xcc\x1a\x26\x75\x42\xae\xa5\xde\x63\x16\x98\x36\x60\x36\xf8\x62\x0e\x99\x5d\x52\xcb\x0e\xd0\x52\x5e\x09\x82\x70\x36\x25\xed\x89\x9d\x24\xe5\xce\xc4\x6b\xea\x8f\x05\xdf\x8b\xc6\xa1\x64\x7c\xd1\x38\x42\x38\x83\x1f\x03\x8b\x05\x26\xd5\x02\x4a\x83\xf7\xbf\xfe\xfc\xfc\xd9\xc7\xc7\x6f\xdf\x3e\xfe\xf5\xe3\xbb\x5f\x7e\xfe\xf9\xcd\xdb\xf7\xd3\x41\x34\x3a\x1e\x9d\x0c\x8f\x46\xc7\x71\x14\x1e\x0f\x8f\x47\xd1\xc9\x60\xd8\x52\x1a\x64\x4b\x2f\xf1\xd0\x19\xb7\xf6\xd2\xb7\x09\xbb\xd4\xb6\x36\x2f\xd8\xe7\x64\x95\x2d\x7a\x62\x54\x8b\x5e\x22\x4e\x84\x3d\xb9\x61\x57\x66\x48\xdd\xdd\x7b\x12\x2f\xbf\x64\x8c\x9f\x68\x9b\x18\x14\x98\xd3\x21\x49\x2b\x74\xc5\x9e\x3e\x76\xc0\x09\x59\x7c\x96\x8a\xda\x58\x0b\x07\x84\xd7\x4c\x99\x52\x4b\xa6\x38\xe8\xec\xdd\x75\x0f\x40\x69\x6a\x9b\x13\xa5\xc8\x8e\x4f\xa4\xdb\x10\xf2\x80\xc3\x36\xd7\x17\xb4\xb0\xd3\x4a\xca\x6c\x5d\xad\x30\xac\xbc\x2d\x72\xbc\x58\xf6\x28\x4b\xf3\x45\xc6\x2e\x7b\x59\xd9\x2b\xd7\x34\xcd\x96\x19\x5d\xf4\xf8\x15\x65\xe2\x9f\x1e\x44\xa3\x32\x9a\xc3\xde\xf5\xa6\x04\x89\x24\xe9\xa9\xe6\x0d\x22\xd7\xda\x6a\x49\x0b\x12\x4a\xf3\x2b\x21\xdd\xd9\xe7\x66\x9d\xd1\xb9\x13\x7a\xde\x69\x37\xf5\x83\x03\xcb\xc7\x69\x40\xa2\xe4\xa3\xa4\x27\x9b\xf9\xc1\x68\xa5\x36\x32\x21\x05\x5d\x58\x39\x82\x61\x22\x9f\x6c\x96\x4b\x5a\xb8\x6e\x2d\x12\xa1\xf5\x66\x5a\x27\x76\x05\x26\x0f\x2e\xbe\x72\xfa\x52\x99\x4a\x9d\x85\xdb\xad\x5d\x72\xc6\xf6\x10\xe0\x0f\xf9\x72\x59\x52\xfe\x83\xc0\x6d\xbe\xe1\xbd\x7c\xd9\xbb\xc8\x37\x90\x53\x7b\xd2\x68\xf5\x8c\xf5\xbd\x62\xbb\x0d\xd1\xbe\xa6\x24\x31\x75\x36\xc5\xad\x9b\x16\x7d\x47\x00\x36\x35\x2d\x1a\x8e\xef\x78\x89\x19\x8a\xdb\x65\xb8\x40\x93\xbd\x6b\x84\xef\x5b\x13\x94\x2c\x61\x85\x56\x69\x5b\x0d\x3a\xe3\x0e\xc2\x9c\xb6\x38\x4c\xab\x0e\x73\x5d\x47\xcc\xa5\x90\x15\x19\x71\x36\x7c\x79\x22\x91\x78\x90\x06\x59\xf9\x5c\x11\xb1\xc7\xba\xcd\xee\x7e\x70\x34\x99\x3b\x16\x09\x4b\xee\x20\xbb\x32\xeb\xe0\x07\x9d\xb2\x32\xdc\x5e\x01\x52\x70\x4e\x3c\x4a\x04\xc7\x29\x10\x0a\x04\xbf\xa6\x50\x3e\xc9\xc5\x31\x13\x16\x7d\xa5\xa9\xca\x51\x6b\xcc\xcd\x68\xb5\xd9\xd2\x13\x20\x4b\x72\x13\x9c\x42\x89\x02\xe1\x76\xe1\x71\xad\xda\x37\x67\x35\x42\x74\xef\x0c\xe9\xab\x99\x29\x8d\x3d\x71\x68\x59\x0b\x21\x36\xc4\xa1\x00\x92\xa2\x9d\xdc\x11\xc4\xa2\xba\x9f\xfa\x83\x0b\xf8\xb5\x67\x11\x6c\xb7\x8e\xe2\x93\x19\xeb\x71\xc5\x79\xf4\x52\xad\x9a\xd4\xd0\x6e\xb7\x5e\x41\x0c\xe8\x70\xf8\x16\x00\x87\x28\x56\x54\x20\x60\x92\x2d\x4b\x05\xa9\x4a\xb4\xe7\xf1\x40\xc8\x04\x86\xb5\x41\x6d\x59\x04\x66\x8e\xc5\xa4\xd3\x84\xf2\xc7\xbb\x59\x12\xee\xc9\xae\xb0\x3d\x22\xf5\x80\x7b\x79\x21\x37\x02\x7f\x95\x7d\xa2\x3d\x19\xd0\x3a\x70\x5a\x71\x70\xb5\x1a\xaf\x3d\x68\xba\x87\xc0\xca\xec\x5b\x8b\x3d\xd5\x59\x53\xb6\xf4\xe8\x59\xd8\xbd\xbe\xbb\xbf\x57\xec\x8d\xd1\x4b\xd0\xcb\xfe\x80\x5a\x1a\xb0\x6c\xe9\x6d\x20\xe9\x28\x90\x08\x3f\x0b\xa7\x61\x0c\x84\x84\x10\xee\xde\x5d\x90\xad\xa8\x65\x67\xa0\x34\x45\x90\xf5\x3b\x9c\xb4\xd5\x99\xcb\xba\xf5\xa3\x9c\xe2\xaa\x17\x43\xae\x9a\x44\x8d\x92\x4f\x1a\x90\xb2\x49\xd1\x27\x11\x82\xb4\x5f\x83\xf1\xd8\xe5\xb3\x62\xde\xd1\xcb\x42\x61\x9b\x9e\x93\xc4\xdb\xc7\x01\x1f\x73\x4e\xaf\xd7\xbc\xc7\xf3\x5e\xb2\x5a\xe5\xe2\x68\xa9\x66\xba\xb7\x4a\x8a\x4b\x5a\xf4\xf8\x55\xc2\x7a\xd7\xc9\x97\xec\x7a\x73\xdd\x53\xa1\x02\xbe\x38\xfd\xc4\xab\xa7\xc9\xef\x3b\x3d\xc1\x77\xcb\x6a\xef\x0a\xb7\x16\x30\x57\x5d\xcb\x94\x56\xa9\xe8\x2c\x35\xee\xfd\x0b\xad\x4b\xe2\xb4\x2a\x04\x59\xf9\xa7\x8c\xde\xb8\xae\xd7\x2e\xf4\x28\xda\x6e\xe9\x9e\x15\x6a\x81\x53\xed\x21\x13\xcd\x36\x2d\x6a\x95\x6a\x7b\xa7\x4f\xf5\x15\x8a\x0d\x3f\xec\x18\xba\xa5\xd0\x9a\xbb\x83\x68\x32\x41\x2a\xe5\x1e\x57\x29\xf7\x92\x32\xcd\x32\x27\x96\xa9\xf3\x12\x9e\xb1\x48\x3d\x5c\x64\x2c\x29\xbe\x3a\xb1\xb9\x8e\x94\x69\xf2\x04\x87\x8e\xf5\x4f\x5f\xfd\xee\xc9\x0d\x48\xd7\xfd\x9b\x47\x35\x53\x53\x5f\xa5\xe5\x40\x7f\x95\x96\xfe\xa0\x6a\x21\x3a\x5a\x51\xab\x3d\xf9\xa8\x9a\x19\x3c\x52\x9d\x5e\xd1\x2f\x15\x1c\xe7\xe7\xe7\x91\x2c\xbe\x48\x4a\x7a\x34\x32\x6f\x5e\x58\xbd\x2e\xe4\x41\x2f\xb6\x6d\xc5\x6d\xa8\x38\xf1\x1c\xa7\xcf\x51\x3d\x04\x2b\x2e\x88\x90\xcf\xab\x4c\x7d\xf5\x83\xbf\x54\xea\x7b\xd5\x75\xfb\x76\xcb\xcf\x42\x04\xb7\x59\x21\xc2\xfc\x1c\x8e\x89\xb5\x5b\x5c\xc7\xa9\x7f\xc2\xb6\x5b\x56\xab\x26\x13\xf4\x59\x05\x98\x9d\x91\xb0\xfe\xb5\x18\x32\x09\xd1\x19\xf1\xb8\xfc\x55\xbd\x16\x73\x4b\xb7\x5b\x41\x0c\x6a\xef\x34\x13\x4c\xd5\x04\xdb\xc8\x7b\x2e\x85\x37\xd8\xe7\xf6\x4c\xa7\xaa\xf9\xbe\x59\x53\xd1\x89\x7a\xfd\xba\xf9\xfa\x2e\xd2\x79\xd9\xac\xdc\x98\xb8\x37\x2d\xa8\x7e\x13\xb9\xbc\xb3\x9a\xa9\xcd\x7f\xe7\x76\xf3\x0b\xfb\xc4\xf2\x1b\x66\x04\x84\xb8\x07\xab\x89\x12\x8f\xf6\x21\x63\xfa\x5d\x84\x71\xdd\x50\x60\xcf\xf8\x7c\x22\xfe\x21\x82\xe3\x62\x60\xbb\x45\x55\xfb\x95\x96\x92\x54\x9c\xe5\x5a\xf2\x64\x09\xbc\x0f\xa4\xd5\x21\x1f\x4d\xbd\x82\x30\xcc\x48\x88\x62\x76\x5e\x1d\x9f\xa6\x8c\x58\x67\x29\x76\xe6\x9b\xa7\x13\xa0\x28\xeb\x19\x61\x46\xfa\x4c\xe5\xde\x64\x92\xe0\xf2\x69\x18\x57\x5a\x4e\x41\x73\x21\x94\x9b\xeb\x33\x86\x30\x3b\xaf\x80\x14\x50\xe7\x15\xa8\x55\x45\x3f\xda\xe9\x8c\xe6\xec\x2c\x94\xa7\x9f\x5a\xc5\x70\xd7\x7d\x68\x81\x45\x93\xc2\x35\x0c\x18\xb3\x23\x5c\x97\x9e\x2c\x41\x49\x6f\x47\x53\x3f\x8a\x2f\x2d\x54\x76\x1f\x93\xb8\xb9\x37\x74\xc5\xde\x84\xf7\x9c\xc5\xba\x38\x78\x25\x22\x5b\xc7\x66\x75\xdd\x39\xcd\xa7\x77\xbd\x96\x36\x31\x4a\x30\xec\xac\x68\xe9\x72\x6b\x95\xc5\x88\x66\x7c\xae\xc7\xd4\x49\xab\x9f\x93\x95\x91\x3c\xb4\x34\x24\x07\x2e\x04\x1f\x25\x82\x59\x52\x84\x8d\x25\xa9\xe7\xc1\x09\x89\x70\x69\xa6\x0d\xac\xe0\xaa\x0d\xc3\xd8\x1f\x09\xb9\x57\xae\x3e\x02\x77\x1d\x6a\x77\x2d\x1a\xcb\x01\x6d\xb7\x6a\x61\x8a\x23\x87\x78\x50\x2b\xb3\x7a\xf4\xcd\x33\x92\x32\x80\x16\x32\x06\xe2\x90\xa5\x7f\x57\x94\x92\x90\x01\x2e\x0f\xc9\x00\xa7\xe2\x1f\x76\x48\x06\x8d\xb3\xa5\xd1\x2c\x44\x60\xd1\x20\x56\x5b\x4c\x83\x82\x26\x8b\x5f\x5e\x30\x1e\x1d\x3d\x79\xee\xf1\x47\x09\x88\xcb\xb9\x0e\xe2\xed\xcb\xdb\xc9\x8c\xb0\x49\x76\x56\x4e\xb2\x7e\x1f\x65\x4b\x4f\x34\x97\x21\x42\xc8\xca\xe3\xd8\x8f\xc0\x62\x33\x8c\x33\x7f\x23\x21\x95\x25\xae\xeb\x6d\x48\x86\x70\xe6\x6f\xfa\xa2\xc0\x44\x0e\xdf\x3c\x4a\x80\xe4\xfd\xe8\x40\x56\xcb\x7c\x22\xbe\xc5\xa2\x3b\xb9\x18\x44\x9f\xac\x9f\x9e\x97\xd2\x62\xc2\x4f\x41\x57\x32\xc9\xce\x49\x38\xc9\x7c\xbf\xf2\xdb\x59\x93\x83\x10\x2f\x49\x38\x59\x9e\xa5\x93\xa5\x05\x5d\x7f\x29\xe4\x6d\x01\xdf\x12\xa1\xdb\xb5\xd8\x79\x20\xed\xac\x18\xdd\x5a\x43\x92\xed\x34\xf6\x2a\x54\x7d\xae\xce\xb7\x8c\xbc\x06\x12\xf1\x18\xda\x6e\x43\xe5\xdc\x63\xd6\x2d\x9b\x14\x82\xb5\xa8\x2a\x05\x42\xe7\x39\x58\x13\xe7\x28\x2e\x48\xae\xc2\xbc\xdb\x34\x92\xfd\x71\x70\x40\x48\xd8\xcd\x4c\xb5\x4a\xe6\x8a\x7e\xb1\x34\x08\xe7\xd9\xe1\x00\x1a\xcd\x0e\x07\x95\x08\x99\x90\x70\x92\x9c\x15\x93\x7e\x3f\x69\x25\x3f\x31\xf7\xf8\x83\x47\x09\x1e\x20\x1c\x1d\xc9\xd0\xed\xc0\xbb\x4a\xc3\x15\x92\x09\x9d\xb1\x7e\x32\x27\x26\xb1\x49\x52\xa1\xe0\x6b\x85\x02\xf5\xf2\x17\xef\x6f\x1e\xc7\xd5\xd0\x11\xa6\xd2\x29\xcc\x7c\xf3\xb8\xe3\x1b\x5b\x01\xa6\x61\xe7\x64\x36\xc7\x52\xc2\x36\x02\x97\x10\xb4\xb9\x4c\x8c\x20\x64\xe1\xe6\x75\xb7\xb1\x8c\xda\x81\x40\xdf\xe8\xf8\xa6\xd5\x71\x05\x4a\x55\xeb\x5b\x07\x78\x2f\xba\x9a\xfb\x78\xe7\x38\xc4\x22\x32\xc7\x04\xc1\x1c\x70\x26\xc6\x23\x27\x84\x9a\x3c\xd7\x07\x9e\xc7\x7d\x32\x40\x67\x21\x82\x49\x62\xf5\x2b\xfc\x04\x52\x03\x9f\x9f\x9f\xe0\x9c\xb0\x3f\x0e\xc6\x47\x38\x93\xa3\xcf\x91\xfe\x55\x98\x51\x67\xbb\x7b\x30\xff\x46\xef\xa4\x36\xc3\x77\x5d\x66\x6d\x91\xd3\x02\xb6\x89\x27\x5f\x39\xd5\x96\xa1\x71\xab\x48\x1d\xd5\x45\x53\x56\xeb\xef\x75\xeb\x8c\xbc\x4a\xf8\x55\x70\x9d\x31\xc3\x89\xea\xc7\x9a\xd9\x1c\xe7\x84\x4f\xf2\x33\x36\x31\x2c\x13\x97\x38\xc5\x2b\x42\x67\xf9\x1c\x6f\x64\xe6\x9e\x35\x59\x9d\x0f\x86\xa7\xd3\x51\xbc\x3a\x1f\x0c\x86\xd3\x61\xbc\x3a\x8f\x4e\xa3\xe9\x20\x86\x0d\x3c\xef\xaf\xcf\x08\xd3\x12\xd8\x5a\x4a\x60\xbd\x28\x5e\x9d\x45\x83\x13\x60\x29\x2b\x64\x25\x90\xee\x0d\xe2\x68\x70\x22\x58\x6d\x74\x3a\x70\xbd\x4c\x74\xd5\x8f\xe6\x60\x6a\x95\x12\x6f\x18\xb9\x2b\x74\x76\x76\xb4\x3d\x1a\xba\x19\x3a\x8f\x06\xc7\xd0\x44\x5a\x6b\x62\x18\xeb\xcf\x70\x02\x3f\x06\x73\x6c\x35\x9a\x21\xd7\xb5\x1e\x13\xd5\x74\x34\x86\xa6\xa3\xc1\xd6\x83\xc6\x55\x2f\x09\x3a\x1f\x84\x23\xd1\x4d\x7a\x36\x1e\x0f\x4e\x8f\xb6\xdb\xf4\x7c\x7c\x3c\x1c\x0d\x51\x47\xd7\xa3\x8e\xae\x4b\xf8\x31\xbc\x0f\x06\xeb\xb1\x6c\x80\x74\x62\x40\x52\xd0\x25\x1a\xba\x12\x9d\x1f\x8d\xc7\xc3\xb1\xeb\xa6\x67\x51\x14\x8d\xa2\x68\xa0\xa0\xda\x29\x65\xed\x66\xea\x6d\x88\xa8\x33\xc4\x6b\x12\xa1\x78\xa3\x3f\xf0\x36\x3e\x94\x1f\xe1\x42\x92\xe8\x46\x1c\x23\x42\x37\x0a\x07\xc3\x2d\x8c\x54\x30\xf0\xf1\xd1\x70\x10\x6e\x45\x99\xbb\x41\xa6\x26\xc2\x79\x9f\xac\x35\xa7\x69\xdb\x55\xd7\x2d\x80\xc8\x17\xcd\xa5\xe4\xe6\x09\x84\xfa\x54\x2d\x9f\x20\x59\xaf\x57\x5f\x3d\xf9\x06\x9b\xc3\x9b\xe3\x80\x67\xa6\xa0\x46\x70\xcf\x44\xac\x4f\xee\xff\x5a\x91\x7c\x81\x8b\x3e\xf9\x62\xa5\xf7\xd8\x79\x05\xda\xf1\x40\x8a\x05\x24\xc5\x3c\x78\xb7\xca\x6f\xd4\xa3\x0d\x7e\x9f\x1e\x28\xf5\x76\x68\x29\xce\xe1\x14\xee\xf5\xe5\xbd\xfc\x8b\xd7\xef\x7e\x7e\xfe\xf4\xfd\xc7\x57\x8f\xff\xf2\xf1\xc9\xaf\xef\x9f\xbf\x23\xe3\xb0\x5b\xa4\xb2\xd3\xfb\x77\xe9\x15\x3b\x4b\x6b\xce\x9c\x2a\xdf\x4c\x4b\x47\x5f\xe5\x1d\xa7\x96\x5e\xf2\xd6\xfc\xec\x94\xb7\xf0\x32\xcf\x3b\x6e\x7c\x47\x83\xdd\x0e\x8f\x06\xc0\x5d\x96\x79\xee\xa1\x6e\x49\x90\x8a\x7d\x08\x14\x4a\xae\x2b\xa5\x75\xfd\x0c\x49\x38\xac\xc3\xb9\xca\x84\x63\xc4\x93\x83\x68\xb7\xf3\x10\xe6\xc1\xa7\x57\xc9\x17\x59\x85\x24\x9e\x90\x6e\xd7\x79\xbe\x7a\x97\x7d\xa3\xe4\x24\x3a\x1d\xe0\x34\xf8\x98\x6c\x2e\xaf\x29\xeb\xb4\x73\xa0\xdd\x0a\x58\x4c\x77\x58\xca\xcc\x2d\x53\x06\xa3\x9d\x97\xe9\x35\xa4\x76\x7e\x9f\xf0\xeb\x59\x6d\x5a\x3d\x75\xe2\x31\xed\xac\x80\x3b\x75\x24\xef\xc0\x8f\xca\x75\xe5\xdf\x00\xee\x1d\x68\xe9\xba\xe9\xac\x5e\x32\x17\x02\x95\xeb\x76\x5f\xe0\xa7\xb8\x5e\x59\xe5\x48\x94\xce\x5d\xcd\xbb\x34\x38\x37\x00\xc5\xee\xc3\x48\x5b\xf1\x6f\x8c\xbb\x38\xc2\xfc\x8c\x84\x53\x79\xed\x14\x1b\x02\x66\xd3\xf6\x81\xa5\x50\xb5\x82\x65\xb6\x5a\x41\x56\xbe\xb8\x56\xa0\x1f\x77\xcd\x09\x00\xe0\x7e\x61\x65\xb2\xec\xb2\xdd\xec\xad\x55\xfd\x66\x5d\xb1\x64\xef\xad\xaf\x0f\x4c\x1d\x15\x0f\xd4\xfd\x15\xdd\x6e\x0f\x68\xf0\x51\xd7\x84\xcf\x94\x21\x52\xfb\xe6\xf1\xa0\xa6\x1a\xdb\x6e\x0f\xea\x67\xb2\x4e\xd1\xef\xb1\x36\x5f\x37\x27\x14\xf9\x81\xba\x0c\x01\x23\xbe\xb6\x2e\xaa\x3a\x41\xe2\x4a\xc7\x8c\x73\x12\xe2\xac\xda\xa9\xe1\x96\x22\x3f\xcb\x26\xfd\x7e\x2e\x44\x63\xb1\x11\x83\x2d\x4e\x3e\x17\x3b\x3a\xec\xcb\x05\x3c\x2a\xe9\x58\x73\xc0\xb3\x42\x9c\x15\x8b\x33\x36\x8d\xe2\x50\x22\x4a\x5f\x25\xd4\x50\xa5\xf6\x69\x75\xca\xa1\xcd\x53\x8e\xa5\x3f\xb9\x43\xf7\x75\xbf\x06\xad\xa6\xf3\xf8\xed\x0a\x8e\x83\xd0\xa8\x35\x2a\x5e\x03\xd3\xc9\xd2\x84\x77\xcc\x66\xe6\xd1\x7d\xf7\x26\xab\xac\xe4\x5d\x6a\x6d\x65\x61\xdb\xcb\x97\x7a\x1a\xa5\x86\xbb\x43\x65\x61\xb6\x8a\x50\x6d\x63\xd5\x49\x12\xe6\x5c\x4c\x35\x27\x61\xa7\xb8\xdc\x07\x45\x89\x2e\x92\x12\x58\x8d\xfc\xc1\x8e\x41\x6d\x89\x1d\x0d\xdc\xca\x83\x84\x68\x64\xd2\xa0\xdb\xe4\x77\x19\x72\x22\xef\x61\xc4\x01\x5a\xec\xfe\x3a\x4d\x9b\xa6\xb0\x42\xe0\xbd\xda\x04\xc8\x15\xae\x71\x54\xb3\x2e\x0f\xc2\xda\x8b\xf2\x26\x59\x47\x47\x6d\x9f\x20\x4b\xff\x07\x6b\xa6\x75\xd4\xb2\x15\xe6\x4a\x39\x5e\x66\xdf\xa8\x75\x1d\x71\xbd\x59\xf1\x6c\xbd\xa2\x62\x18\xd1\x91\x7f\x91\x41\x1e\x9a\xea\xdc\x12\x4e\xf8\x19\x9d\xf0\x3e\x19\xa0\x6b\xad\x27\xe3\xfd\x6a\x6b\x15\x45\xbb\x16\xb0\xc3\xc1\x03\x80\x1d\xfd\x53\xc0\x0e\x07\x77\x00\x3b\xb2\x81\x1d\x22\xac\x9f\xfa\x11\xe6\xfd\xc1\x3d\xc0\x1f\x8d\x1e\x00\xfc\xc9\x3f\x05\xfc\xd1\xe8\x0e\xe0\x4f\x6c\xe0\x8f\x1b\xc0\x1f\x59\xcf\x03\xcc\xfb\x63\xeb\x79\x88\x79\x7f\x74\xc7\xe0\xf4\xad\x47\x7b\x78\xe1\xd6\x1e\xa0\x75\xa4\xa2\x53\xc7\x89\xc3\x0e\x6f\xa3\xa9\x52\xf4\x86\x98\xa2\xf8\x42\x49\x98\x50\x62\x6a\xa2\x7a\xef\xf4\xef\x9b\x64\x55\xb7\x18\x6c\x6d\x1d\x77\x6f\x15\x16\x32\xb5\xee\xca\x1e\x2c\x81\x5d\x0b\xbc\x32\xf5\x56\x65\x8c\x10\x6a\x90\x64\x4c\x88\x08\x1d\x3e\x76\x8e\x03\x2e\x8b\x2d\xe1\xd5\xee\xc5\x72\xbf\xf3\x14\x5d\x98\xdb\x24\xe0\xf9\x70\x01\xab\xfd\x13\x82\xdb\xc1\xee\xf0\xd2\x72\xfc\xc3\x76\x1b\x4c\x99\x86\xf6\x82\x20\xe8\x39\x08\x61\xe7\x4c\xd1\x8e\xd3\xa7\x7d\xe7\xdc\xa9\xc3\xdd\xb5\xff\x5a\xea\xe1\x7f\x16\x95\x35\x36\xac\x2f\x27\x6c\x53\x02\x8f\x11\x3a\xd5\xfc\x34\xb6\x5f\x4a\x8f\x72\xbb\x24\x77\x5d\x2f\xaf\x5f\x50\xf0\xb3\x70\xbb\x65\xe7\xd4\x5c\x13\x17\xa2\x20\xaf\x5d\x6b\x74\x2f\x28\x65\xe1\x50\x88\xa2\x1e\x68\x4e\x95\xf1\xeb\xb9\xe8\x87\x9f\xdb\xb7\x56\xaa\xb8\xa6\x1f\xb7\x6b\xc8\x02\x45\x2e\x6d\x01\x23\x23\x5e\x2e\x2f\x4b\x7c\xaf\x90\x3f\x70\x42\xf4\x55\x8a\xaf\x6f\x52\x70\x59\x89\x1b\x19\x4e\x10\x5e\xc9\xb1\xea\xa3\x55\x2e\x8e\x85\xb6\x72\x01\xaf\x49\x38\x59\x9f\x95\x93\x7e\x7f\x0d\xea\xba\xd9\x5a\xc8\x24\x9b\xd9\x7a\x8e\x6e\x33\x22\x1e\x71\x02\x8f\x75\x99\x24\x3b\x4b\x84\x4c\x92\x9c\x65\x5a\x26\xb1\xe9\x38\x5d\x6d\x16\xb4\xed\x3f\xa0\xc7\x2e\x84\x1e\x01\x95\x71\xbd\x31\xd2\x65\x4b\x11\xbd\x4f\x0c\x7e\x65\x99\xed\x60\x88\x77\x92\x76\x2b\xa7\x1f\xd6\x40\xd4\x68\x00\xec\x27\x5a\x04\x0d\xe4\x6c\x89\x04\x85\xba\xa5\xc2\xb5\x2b\x2f\x2c\x78\xa6\xbe\x45\xb0\xe9\xb4\xcb\xd6\xa9\x20\x7c\xcf\xd7\x52\xe4\x29\x7f\x84\x10\xc9\x75\x71\xb5\xc6\xcf\x95\xad\x87\xd6\xa3\xeb\xfb\x1f\xdc\x93\x56\x3d\x33\xac\x8c\xc9\xe6\xa8\x97\x95\x3d\x96\xf7\x56\x39\xbb\x14\xdb\xc0\x66\xbd\xce\x0b\x0e\x06\xdb\x7c\x2b\x24\x55\xdd\x17\x43\x53\x8f\x89\x92\xc6\x3a\x52\x57\x72\x28\x56\x77\x38\xf2\xb5\x34\x82\xa8\xad\x29\x9f\x77\xdc\x12\xe6\xea\xaa\xa6\x32\x39\x03\x5e\x25\xcd\x94\xce\x42\xb4\xdd\xf2\x07\x2c\x39\xeb\x7a\x1d\xc6\xdd\xcb\x37\xbc\xcc\x16\xb4\xa7\x2c\x45\x8c\xb5\x51\x01\xe6\x1e\xfa\x16\xb1\x5a\x46\xf6\x9d\x71\xd1\x71\xa5\xf8\xd9\xb6\x07\xbb\xe7\x52\xf1\x6b\xbb\x6e\xfd\x5a\xf1\x71\xbb\xc2\x5d\x17\x8b\x37\xed\xea\x8d\xab\xc5\x6f\x1d\xd0\xfd\xa6\xcb\xc5\x8f\xb5\x86\xac\xeb\xc5\xec\xe1\xd7\x8b\x05\x9a\x14\x70\xef\xdc\xbc\x4f\xc1\x19\x5c\x2f\x36\x36\xf9\x7f\x7f\xf7\xe6\x35\x69\xa9\x30\x94\x8f\xbd\xe2\xf6\x18\x9c\x74\x9b\x77\x4d\xc0\xae\x2a\x37\xed\xe0\x63\x52\x14\xdb\xad\xdc\xe7\xd1\x4e\x3a\xc6\x7d\x21\xa3\xf0\xf4\xa8\xb2\xdd\x7c\x5d\xbf\xd2\x74\x9c\xc9\x3d\x3a\x53\xad\x2e\x15\x87\xb3\xa2\x53\x5f\xe5\x45\x83\x63\x57\x9c\xd2\xcc\xf6\x6e\x5d\x8a\xbe\xfc\x17\xf4\xb7\xaf\xaf\xe7\x4d\x7f\x23\x25\x20\x79\x07\x8d\x2b\x7c\xef\x40\x2c\x3d\xb9\xbf\x15\x72\xfd\x15\x36\x04\x8e\x83\x33\xc2\x27\x19\x80\x91\xa1\xbc\x4f\xfe\xe2\xd1\x59\x56\x75\x6a\x05\x0d\x7c\xa7\x3b\xad\x94\xcc\xb5\x8d\x44\xb5\x16\x4e\xb2\xb3\xc2\x88\xa4\x42\x3e\xcf\xbb\x07\x57\xcc\xb2\x79\x7f\x30\x3e\x7a\x54\xcc\xb2\x7e\xd4\xd9\xe5\xdf\x2d\x23\x54\xfa\x47\xb1\x6d\x84\xdb\xed\x5e\xe3\x24\x47\x32\x3c\xc9\xe5\x78\x6f\x93\x31\x95\x29\x97\xf6\xf9\xf9\x3e\xdb\xc7\xf7\xc5\xd7\x8c\x5d\x82\xb5\x4e\x9a\xd2\xb2\xec\x5d\xd0\xaf\x39\x5b\x68\x76\xa2\xed\x70\x2b\x98\x9e\x56\xd2\x0d\xce\x1e\x2a\xdf\xfc\xe0\xc8\xf6\x3a\x2d\xaf\x9e\xd4\x6d\xdc\xe4\x01\x95\x9f\xe7\x62\x2a\xb3\x7d\x76\x58\x4d\x3b\xd3\xa6\xbd\xa5\x6c\x85\xf5\x0b\x23\xd7\xec\xb5\x3e\x5e\xd0\x2f\x3d\x5b\x92\xb1\x47\xfb\xa9\xda\xfa\x38\xdc\xa9\x73\x50\x3b\x8f\xfb\x70\xd6\xaa\x08\xa9\xa6\xe7\xa8\xee\x47\xf0\xa0\x52\x78\xd0\x19\xeb\xe7\x73\xe2\x71\x77\x30\x1e\x9f\x9d\x9d\x3c\xf2\x8a\x69\x1e\x47\x7e\x8e\xd0\xf9\xf9\xb9\xf5\x68\xc5\xa9\x6c\xf7\x3e\x1a\x9c\x8e\x4e\x8f\x8e\x07\xa7\x0f\x06\x61\xd4\x02\x81\x57\xfd\x0d\xfd\x1c\x09\x78\xac\x48\x97\xad\xf9\xfd\x8d\x48\x9c\x28\x1b\x82\xdf\x82\xf6\x27\x06\x88\xac\x72\xe1\xd8\x6e\x9f\x81\x21\xa5\x18\x12\xce\xd5\xb6\xaf\xeb\x0d\x86\xa2\x94\xf5\x47\x55\x23\x3f\xdf\xdd\xc8\x49\xbb\x91\xf1\x40\x94\xb2\xfe\xc9\x2e\x6d\x72\xdf\x2e\x4f\x3e\x5c\x34\xcf\x9f\x1e\x25\xff\xf8\x07\x45\x67\xe1\x54\x9c\x1f\x0a\x74\x16\x2a\x75\x7c\x4c\xcf\xa5\x0d\x6a\x81\xb0\xc7\xed\x08\x1f\x45\xfc\x8f\x7f\x70\xf8\x82\x9b\x2f\x04\xef\x8a\x39\x7c\xc1\xc5\x17\xfc\x0c\xa2\x24\x10\x8a\xba\x35\xc0\x48\xdb\x1c\x19\xad\xb6\x00\x72\x8f\xd5\xaf\x14\xae\x14\x07\xf6\xe9\x84\x29\x63\xf8\x5c\x89\x3b\xb6\xb0\x20\x98\x59\x0e\xac\x91\xcd\xb2\x39\xf4\x31\xcb\xfa\x74\x6e\x34\x73\xf5\x3d\x4e\xdf\xde\xbf\x7c\xde\x92\x3a\xa9\x90\xa7\x40\xcc\x62\xdb\xad\xe4\x6b\xb6\xb0\x63\xdd\xdc\x41\x27\x74\x8e\x73\x12\x01\x3b\xed\xf7\xb3\x33\x71\xec\xc9\x1f\x91\xc1\xf8\x08\x4d\xc4\x66\x21\xeb\xf4\xb3\xf9\xa3\x7c\x62\xab\x70\xda\xa0\x3c\xf9\xe7\x41\xe9\xfb\x3e\x04\x7f\x8c\x26\x1c\x24\xb6\x0e\x40\x44\x8d\x7b\x41\x39\x69\xd0\x90\x3e\xbc\x4a\x20\x22\x5c\x3f\x94\x49\x2c\x74\xb7\x14\x1d\x35\x30\xdc\x6c\x6c\xd0\xd9\xd8\x56\x41\x1b\xcd\xcf\xce\x4e\xf6\xb5\xfc\xe4\xb7\xb4\x7c\x76\x76\x52\x35\xde\xdd\xf2\x70\x70\x0f\xcc\xa3\x7a\xcb\x5e\x17\xd0\xfa\x61\x30\x3f\x3b\x8b\x8e\x50\x3f\x3a\x3a\x3e\x3e\x1e\x44\x47\x8f\x54\xf9\x70\x6f\xe7\xf7\x0c\xab\xd1\x79\xa3\xdd\x79\xdf\xb3\xa0\x88\x8e\x6c\x30\x0c\x4c\xc3\x39\x6a\x77\xfe\xdf\xb5\x18\xce\x89\xa8\x12\x0d\x4e\x84\xd0\x53\xf8\x72\x63\x58\xe7\x37\xde\x00\x9f\x3c\xe2\x08\xe1\x0e\x1a\xfd\xa7\x57\x8b\x82\xd2\xac\x89\x62\x3e\x29\xea\x2b\x26\xeb\xdb\x6f\x2b\x78\xb3\x1a\xbc\x59\x07\xbc\x59\x27\xbc\xdf\xb5\xa4\xa2\xc1\x89\xab\xf0\x39\xf5\xa3\x47\xde\x60\x3c\xf6\xf5\xfc\x46\x28\xde\xbb\xe2\xba\x17\x5c\xe7\x7a\x50\xf7\xbf\x5d\xa4\xab\x87\x3a\x1c\x1c\x1f\x9d\xb8\x6c\x0a\x1b\x79\x18\x1d\x1f\x85\x5b\x16\x77\xf0\xd1\xee\xc5\x78\x7f\xaf\xfd\x48\xf7\xfb\x1b\x7b\xfd\xde\x85\x7a\xff\x3a\xad\x56\xc8\xd9\xd9\x60\xb4\xa7\xd3\xef\x5b\xa0\x66\x84\x83\xd1\xf6\x21\x4b\xb3\xdd\xe9\x8f\xab\x3c\x69\xae\xcd\x7b\x3a\xcd\xe1\x43\x7d\x70\x3c\x08\xa5\xd0\xb1\xa7\xe9\xef\x1b\x4f\xa3\xe9\x68\x5f\xd3\xcf\xf2\xcd\xc5\x8a\xde\x03\xf6\xc9\x3d\x60\x83\x98\xb3\xaf\xed\x7b\xe0\xbe\xbb\xed\xa8\xab\x6d\x90\xb1\x3a\xc5\x02\x21\xd8\x7a\x94\xf4\xa9\x66\x30\x24\x84\x68\xdf\x4f\x6d\xdd\x54\x8d\x15\x30\xe4\x47\x58\x5d\x50\x69\x9e\x08\x17\x53\x62\xa2\xb9\xf4\x5e\xa0\xc0\x25\x99\xcd\x77\xe4\xeb\x7e\x36\x27\xf4\x30\x17\xf2\xae\xd1\x1c\xf7\xd9\x1e\x60\x5b\xac\xf0\x9f\x05\x96\xf9\x02\xdc\xc8\x02\x57\xc8\xe2\x12\x60\xdf\xcf\x65\x24\x80\xac\x01\x71\x2e\x20\xce\x1e\x06\xf1\xc9\x3e\x55\x9f\x0d\xb4\x0d\x6e\x84\x07\xe3\x31\x0e\xf7\x08\x95\x60\x85\x0e\xe3\x59\xae\xf2\x1c\x8e\x76\xb8\x86\x66\xcc\xfb\xd1\x1e\x50\x5a\xfc\xf2\x01\xd0\x0c\x30\x9c\xac\xf6\xc2\x33\xf5\x1a\xbd\x4b\x0c\x45\x73\x42\xc5\x79\x06\xc5\x9f\xaa\xb6\x0e\x42\x84\x79\x7f\xb0\x17\xba\x8e\x7d\xee\x77\x83\x0e\xa0\xb1\xa0\x03\x68\xeb\xd0\x45\x77\x41\xd7\xe2\xbf\x0f\x80\x6e\x84\xab\x73\xe1\xbd\x20\xf6\x87\x12\xc8\xc1\x48\x43\x39\x90\x05\xd1\x51\x13\xa9\xf5\x09\x47\xf1\x9f\x9b\x28\x1e\xed\x1d\xc4\xf7\xa3\xf8\xbb\x06\xd1\x1c\x42\xd4\x1c\xc2\xa0\x31\x13\xc3\xce\x41\x44\xfb\x06\xb1\x8f\x5d\x81\x09\x84\x86\xff\xa0\xd0\x9e\xfd\xf5\x75\xef\x47\x68\x52\x63\x0b\xb9\x1f\x61\x71\xb2\x57\xa7\x2a\x65\xbd\x7d\x17\xeb\x4a\x34\x23\xa0\xe2\x44\x28\x8e\x8a\xa5\xeb\x86\xea\xe2\x40\xb0\x32\x08\x66\xe2\x95\x24\xd2\xab\x52\x70\x37\x8f\x1e\x26\xe7\xe7\x21\xf2\xcb\xfb\x59\xc6\x3e\x1e\xf7\x7b\x8c\x50\xf0\xba\xf6\x18\x05\x84\x9a\xdf\x65\x92\xdf\xdd\x3b\xcc\xfe\xef\x30\xcc\xdf\xc0\x18\xa3\xc1\x31\xf6\x85\x38\xfa\x70\xde\x48\xd5\x61\x7f\x30\x1e\xf7\x69\x3f\x7a\x18\xb3\xfc\xcd\xbc\x52\x08\x74\xc7\xd8\x07\xb9\xee\x5f\xca\x30\x7f\x33\xbf\xfc\x2e\x08\xff\x19\xa6\xf9\x9b\x79\x66\xe5\x71\x83\x6b\xfe\x35\xbf\x05\x9b\x7b\x59\xa9\x61\xb6\x0f\xe4\x9e\xbf\x99\x79\xee\x1b\x8d\xa6\x4b\x4b\x73\x08\xe4\xf9\xdf\xca\x5e\xbb\xa4\x6f\x6b\x94\x4f\x6c\x4c\xb5\xae\x46\xab\x16\xf6\xe3\xc9\x6e\x21\xea\x6e\xa1\x53\x96\xb6\x9a\xf8\xf9\x7e\x20\x3a\x45\xe6\x3d\x4d\xb4\xa1\x48\xf3\xf5\xd7\x6e\x06\x2c\xdd\xe7\x43\x84\x0b\x69\x38\x21\x2f\xf3\xea\x27\xa0\xca\x9d\x4b\xea\x06\xab\x37\xdb\xad\xbc\xfd\x80\xc3\x77\x01\xdb\x49\x41\x18\xc2\x45\xdd\x8f\xb4\x61\x06\x26\x7b\xe2\x2d\x97\x47\x59\x93\xef\xd5\xe4\xf2\xa4\xb8\xa4\xfc\x1d\x4f\x0a\xde\x15\x3d\x41\xdd\xbe\xd4\x1a\xee\x6e\x48\x06\xd6\xda\xdb\x50\xb1\x17\x02\xf9\xe1\x73\xb6\x68\x7d\x56\xd8\x37\xaa\x80\x86\x1a\x0e\x8d\x96\x9c\x9f\x15\xbe\x44\x53\x55\xd4\x67\x4a\x72\xc7\x19\x29\x7c\x66\x9b\x27\xb8\x2e\x3b\xe3\xae\xcb\xcf\x0a\xb0\x8a\xcb\x49\xe6\x47\x13\x21\xc1\x0b\x41\x1e\xd1\x59\xde\xe7\x4a\x59\x9a\xf7\xd9\xdc\xdc\x85\x67\x67\x11\x1d\x82\x15\xe6\x3e\x87\xef\x9c\x84\x96\xb2\xbe\xab\x99\x4e\x5f\xb4\x92\x72\xe3\x83\x56\x53\x03\x33\xcc\xfa\x19\xb2\x22\x3c\x34\xd4\x28\x10\x1c\xab\x93\x02\xdb\x77\xf5\x7b\xe3\x95\x4c\x05\x5a\xb1\x34\x0d\xb4\xd1\xdb\x11\x42\x42\x91\x62\xa3\x22\x8e\x6c\x6b\xc4\x5b\xed\xd9\x64\xf9\xa8\x84\x68\x92\x9f\x0d\xc6\x47\xc0\xc8\x72\x70\x0a\xb3\x7d\xdc\xda\x0e\xd5\x7b\x9c\x44\x4d\x14\x95\x8e\x00\x29\x9d\x83\x2b\x5c\xb7\x1e\xb9\xa2\xd8\x63\xc0\xd3\x7d\x3f\x0c\xfe\x63\x1d\xa1\x5f\xc4\x38\xc0\x9d\x11\xa9\xb5\xb5\xb5\x0d\xbd\xce\x78\xfd\x71\xdf\xdd\xdd\x9b\x3d\xe6\x37\xec\xac\x32\xd1\x15\xed\x48\xef\x2f\x79\xab\x76\x7e\x0e\xf3\x64\xc5\x7c\xb7\x7a\x8a\xd9\xf9\xf9\x79\x88\xa5\x03\x72\x88\x70\x57\xd0\x1a\xe9\x80\x57\xdd\x99\x02\x7d\x8a\x83\x75\x75\xaf\x90\x90\xda\x8d\xe0\x94\xc6\x7f\xf3\x74\x3c\x9c\xc2\x72\xf2\x47\x08\x97\xc6\x14\x53\x79\xf6\x85\xa2\x61\x9f\x5b\x4d\x8b\x45\x90\xcc\xb2\x3f\x96\xe6\xd6\x41\x94\xcb\x4b\xef\xb7\xe4\x70\xf6\xd7\xfe\x87\xc3\xd0\x3f\x7d\xec\xff\x3f\x89\xff\xcd\xff\x38\x3f\xbc\xac\x2e\xc1\xff\x62\xdb\xe0\x9f\x45\x47\x53\x27\x74\xfa\xb4\x16\x66\x20\xae\x3f\x56\xd7\x47\x7f\xb3\x6e\x7a\x26\x10\x56\x30\x3a\xb4\x9d\xef\x69\x65\xe5\x2c\xf3\x94\x54\xbe\x57\xca\x19\x0e\x7c\xbd\x9b\xce\x56\xe8\x7c\x3c\x1e\x9c\x8e\x05\x0b\x19\x1f\x0f\x47\x23\xed\x63\x0b\x6c\xff\x7c\x7c\x34\x8c\x4e\xd1\xad\xc7\x7d\x32\x44\xe7\x7e\xe4\xba\xca\x05\x6b\x30\x3c\xc5\xd1\x69\x84\xa3\x93\x53\x34\x49\x73\xc6\x33\xb6\xa1\x62\x1d\x24\xe0\xce\x58\x3c\xfc\x9b\x9c\xb0\x5a\x03\xec\x0c\xdc\x64\xee\x6b\x00\xd7\xbe\x63\xd2\xfb\xa6\xef\xe5\x3e\x78\xdb\x9c\x9d\x45\xe1\x96\xf9\xb2\x25\xe9\x35\x99\x8b\x6d\xe9\x4e\x90\xb2\xa5\xa7\x70\xc7\xce\x84\xac\x0d\x08\xe3\x3e\x89\xd0\x59\x88\xa4\x5f\x92\xfa\x8c\x21\xcb\x2d\x79\x10\x8e\xaa\xba\x83\x76\xdd\xf3\xf3\xa3\x6d\x74\x3a\xc0\x47\x43\x97\x6d\x45\xbb\xd6\xb7\x00\xb5\xf9\x78\xd8\xf5\x71\x34\xd8\x0e\x06\x23\x2c\x9a\x71\x8f\x86\xa2\x81\x46\x4b\x32\x8d\x1c\xd3\x2e\x4b\x1d\x86\x49\xda\x7d\x32\xcd\x17\xb4\xb7\xce\xcd\x45\xbc\xe8\x73\xd4\xd9\xe7\xc9\x76\x30\x0a\x31\xf4\xae\x3b\xed\x06\xc0\xd8\x9f\x55\x84\xfa\xc2\xce\x09\x18\xf0\xbc\xf2\xa2\x6b\xd8\x74\x7a\x9d\x1e\x0b\x34\xe0\x45\x76\x3d\x95\x7f\x3c\x14\xd7\x02\x71\x96\xfd\xed\x87\xb2\xff\x87\xc3\x4b\xec\x40\xf4\x95\x2a\xcd\xe2\x5b\x08\xcb\xd9\xf4\xfc\x55\x21\x0c\x26\x7a\x71\x48\x63\xe2\x09\xa2\x7d\xe2\x10\xc7\x8e\xb9\x63\xbb\xf5\xfd\x52\x6d\x3d\xd6\x7d\xf6\x24\x3f\x13\xec\xd7\xcb\xfb\x42\x7c\x30\x52\x4a\x6e\xf9\xb1\xc3\x46\xc9\x61\x7b\x04\xf7\x81\xca\x86\xa2\x9d\xd6\xe0\x8e\x14\x06\x6d\x1f\x30\xcd\xee\x74\x50\xe3\x03\x88\x27\x2a\xe3\xd0\x38\x10\x29\xc2\x76\x33\x6a\x85\xe2\x6c\x85\x5f\x63\xc1\xc2\xe3\xd8\x49\x9c\xae\x6c\x23\xf9\x0e\xe9\x68\x46\xcc\x93\x11\xd9\x02\xe6\x15\x28\x48\x54\xb8\xba\xa7\x39\xe3\xf4\x0b\xf7\x6e\x77\xe8\x9e\x7e\x54\x3c\x9e\xe0\xe3\x47\x5a\xbe\xca\x17\x9b\x15\x25\x07\x21\x06\x9f\x9c\x64\xb3\xd2\x17\xcf\x4a\x23\xd9\x1a\x36\x66\x15\xeb\x2c\x3c\xc3\xfc\x24\x98\x92\x95\x19\x9c\x72\x24\x37\x29\x04\x61\x82\x88\xb3\xa0\xe9\xca\xc1\x26\xb0\x37\x23\x14\xc3\xe5\xf5\xde\x10\x7c\x56\xd4\x3b\x84\xf9\x9e\xc0\x76\x1c\x73\xeb\x16\x9b\xe1\x62\xe7\x79\x42\x82\xf0\x46\x47\x08\xb9\x6e\x61\x0d\x74\x5a\xc4\xb7\xc6\x9f\x62\x87\xf4\x90\xd1\xa4\x1a\x7d\x5e\x85\xec\x24\xa6\xf4\x1e\x8c\x3e\x08\x97\x05\x49\x3c\xe6\x1d\x8f\x91\x98\x3c\xf8\x79\x84\x10\xce\xe0\xe7\xe8\x18\xd5\x42\xea\x59\x2b\xcf\x75\xa9\x3d\x00\x5a\x0d\x80\xca\x0c\x92\xa5\x6d\x2f\x66\xda\xa0\x35\x17\xe6\x5e\xc6\x7a\x66\x3b\x97\xee\x7f\xb7\x3b\x65\xcf\x5c\x24\x37\x25\xb9\xdd\x61\x8a\xcc\xb1\x6e\xc6\xe7\xbb\x2a\x43\xa7\xb6\x09\xd0\x3b\x6b\x00\xa1\x19\xdb\xbe\x27\x0d\x03\x64\xd3\x81\x0a\x2d\x7c\x5b\xdd\x40\x05\x3a\x8b\xf2\x93\xaf\x56\xc0\x4c\xab\x72\x90\xb1\xf5\x46\x75\xe4\x51\xcc\x82\x55\xc6\xc4\x9f\x14\x02\x0a\x5b\x21\x6e\x21\x6c\xa5\xc6\xb6\x8a\x7d\x7f\x93\x14\x6c\x4f\xd4\x69\x99\xd2\x44\xca\x06\x86\x8b\x08\xe4\x30\x54\xcc\xf2\x39\x61\x16\x7f\xa0\xd0\x10\x04\xaa\x90\x11\xf5\xaf\xf3\xcf\xb4\x6d\x9b\x27\xc1\x5e\x27\x05\x65\x42\xdc\xaf\x1e\xd4\x17\x4f\xaf\xb2\x95\xbc\xfc\x50\xe8\x90\x6f\x15\x65\x40\x91\x68\xbe\x6d\xdf\x2f\x30\x56\x9f\xb2\xcc\xd0\x2b\xa6\x81\x14\x43\xb3\xe5\x57\x1d\xb6\x4c\x3f\xeb\x94\x3b\x56\x16\x0d\xb9\x1a\xeb\x39\x75\xfa\x84\xee\x10\xc2\x1c\x82\x26\xaf\x72\x46\xef\xea\xf9\x76\xa7\x5b\xb5\x08\xcc\x0e\x8f\x4b\x6f\x7a\xdc\x5e\x94\x75\xec\x72\x04\x21\xf2\xae\x92\xf2\xcd\x0d\x33\x4e\x7f\x39\xd2\x01\x49\xf9\x2c\x17\x62\x91\x62\xa8\xd9\xc4\x91\x38\x72\xa4\x2d\x7a\xc5\x52\x49\x32\x85\xd3\x01\x4c\x95\x38\x3b\x00\xb1\x40\xb5\x29\x14\x66\x71\xd6\x8a\xb2\xa4\xde\xb4\xb3\x76\x56\xd8\x11\x53\x8c\x50\xec\xd9\x3d\xb9\xae\x90\x3a\x0e\x08\xc9\x5c\xf0\xd2\xf6\x32\x84\xb0\x6c\x0a\x55\x2e\x41\x72\x62\x2b\x17\x37\x99\xf1\x85\xcf\x98\x0c\x0b\x53\x05\x02\xd0\x58\x7e\x42\x97\x79\xf1\x40\x5c\x03\xb9\xc0\x57\x1e\xad\xaf\x12\x45\x61\x32\xd3\xa5\x6c\x52\x73\x5c\x6b\x46\x1f\x2f\x79\xc3\x4f\xf0\x9f\xed\x0a\x5a\xac\xf7\xa4\xf6\xfa\x3f\x67\xfc\xca\x5e\x1c\xea\x24\xac\x3e\xb7\xd3\xd6\xb6\xf2\xd5\x72\x2b\x5f\x2d\x45\xda\x77\x6c\xc2\xfa\x7d\x89\xc8\x2a\x27\x12\x9b\xdb\x41\xc9\xc0\x79\xbf\x38\xcb\x8d\xeb\x4b\xbf\xaf\x09\x2a\x9f\x15\xf3\xc9\xdd\x98\xca\xd0\x4e\xb2\x3f\x58\xa5\x1e\xaa\x1d\x1c\x30\x0f\x18\xfd\xc2\xef\x1a\x90\xe5\x5b\x64\xfa\x58\xd0\x2f\x8a\x20\x3a\x30\x28\x58\x8f\x32\x7e\x81\xe8\xe7\x05\xfd\xfc\xaf\x68\xdf\x57\xed\x5f\xb4\x09\xed\x41\x14\xa4\x72\x15\x8b\x26\x92\x16\xfd\x3c\x84\x30\xac\x06\xda\xf6\xcc\x72\x54\xb7\x15\xf7\x85\xad\x09\xc6\xa4\x11\xd0\xe0\x12\x1c\xb9\xae\xe6\x07\x55\xea\x71\x65\xc9\xc0\xe7\x13\xd6\x5e\xf0\x10\x95\x89\xed\xcb\x89\x6d\x2d\xf2\xea\xa8\xad\x6d\xaf\xa7\xfa\x87\x10\x72\x05\x4f\x68\xd7\x66\xae\xcb\x4c\x6d\xd9\x53\xf5\x09\x3c\xef\x8c\x08\x2b\xd6\x47\x72\xd3\x79\x59\x0e\xa7\xdd\xdc\x70\x74\x51\xcf\x28\x02\xe5\x86\x93\xe7\x35\x02\xac\x27\x7e\x9e\x50\x35\x01\x13\x44\x89\xf9\x6d\x77\x9c\xae\x68\xc2\xde\x8a\xcd\xdd\xc6\x81\x8a\x51\x6e\x76\x7e\x45\x27\xb8\x55\x0e\x93\x2f\x8e\xf9\x1d\x5f\xf0\x1b\x4a\x19\x10\xb1\xda\xc7\x5f\xb0\x32\x5b\xd4\x89\xad\x72\x8e\xe3\x35\x3f\x2b\xa4\x15\x3b\x6a\xa7\x87\x98\xd2\x7a\x63\x2f\x3a\x5e\xc1\xd6\x2f\x45\x7d\x3a\xc9\xfb\x7d\xe4\x7c\x90\x6e\xfb\xb3\x7c\x3e\xf5\x18\x89\x30\x04\x26\x8c\x59\x9f\xe8\xfc\x22\xb7\xe2\x9b\xb8\xc0\xb2\xd5\x98\xed\x6c\x58\x9f\x7c\xed\x92\xe5\x9b\xdd\x82\x4d\xb4\x5c\x72\x88\xd7\x85\x16\x39\x58\xf3\xd6\xa8\xee\x68\x70\x93\x17\x8b\x9a\x9c\x53\x8d\xba\xf2\xe3\x91\xb5\x26\xe0\xe1\xc3\x40\x52\xea\x6a\x9d\x55\x49\xe9\xf9\x0e\xb2\x3e\x5b\x32\x6a\xf9\x2f\x93\x51\x71\x4e\x40\x74\x3e\xbe\x47\x74\x56\xc1\x82\xea\x84\x5d\xa3\x68\x8f\xa3\x4a\x26\x11\x92\x99\x05\x7f\xf6\x30\xf8\xeb\xe1\x78\xb4\xe0\xd1\x0c\x6a\x43\x42\x6c\xa9\x64\xa3\x49\x71\x4e\xc2\x49\xe1\xfb\x46\x49\x28\xf6\x02\x99\x43\x2b\x9f\x52\x9d\xfd\xaa\xb0\x92\x67\xe5\x53\xaf\x56\x8e\xc5\xd6\x13\x33\x19\x27\xdc\x2e\xf6\x7d\x15\x9a\x15\xce\xaf\xcc\xf7\x27\x0c\xd1\x60\xc3\xca\xab\x6c\xc9\x3d\xd1\x1a\xea\x08\x89\x59\x18\x09\x19\x94\xa9\x9c\x16\x55\xc4\x47\xf9\x2c\x84\xe0\x6a\x3c\xb3\xb9\xca\xd9\x4e\xed\x9d\x8d\x7b\x62\x20\xb8\xc0\x14\x09\x06\x04\x5a\x01\x51\x62\xc5\x00\x11\x9b\x71\x99\xaf\xea\x52\x6a\xb5\x0e\x1d\x07\xe7\xe4\x20\x12\x47\x8e\xc6\x16\xec\x47\x93\xec\x9c\xf8\x91\xeb\x1e\xe4\x32\x5a\x95\x54\xd1\x65\xe7\x24\xb4\x52\x12\x66\xf3\x98\x06\xe9\xcd\xc2\xab\x29\x42\x2b\x85\x6a\x72\x5f\xb4\x00\x9e\xf7\x20\x7b\x85\x02\xb3\x11\xdf\xac\x74\xd0\x24\x81\x05\x91\xc8\xa4\x5a\x38\x57\x79\xb8\x92\x2a\xcf\x95\x5e\x15\x5e\x2e\x93\x92\x39\xa8\xef\x71\xc2\xbc\xc2\xe3\x2a\x9f\x1a\x24\xeb\xe8\xe0\xfb\x07\x07\x20\xf0\x1e\xe4\xc8\xca\x6f\xb6\xdd\x3a\x81\xb3\xab\x25\xe1\x6a\x32\x87\xac\x9e\xbb\x8d\x22\x9c\x28\xb0\x72\x8f\x62\xdf\xb8\x53\x7b\x14\xc0\xa0\x0f\x04\x23\xab\x83\x91\xc9\x80\x8e\x90\x94\xcb\x75\x13\x2b\xef\x88\x97\x99\x91\x02\x5f\xff\xbe\xbc\x60\x3b\x9d\x52\xac\xb5\x09\xdf\xe1\x40\x64\xa6\x1c\x57\x41\x62\x2c\x14\x89\x51\x62\xaf\x75\xfe\xeb\x08\x59\xfa\x50\x82\x10\x10\x76\x50\x83\x59\x4b\xc8\x46\xd6\xbe\xfc\x66\xcc\x62\x12\x45\x7d\x0b\x02\xff\x6c\x73\xc5\x23\xb3\xa0\x09\xe1\x81\xf7\xfb\xa8\x23\x3e\x85\x1f\x41\x4a\x2b\x53\x93\xcd\x21\xbb\x95\x41\xc5\x39\x64\x41\xb5\x3c\x7b\x7c\xde\x8f\xd0\x8e\x12\xb3\x02\x3d\x8a\x74\x58\xb3\x08\x76\x3c\xf3\x82\x59\x2f\x2c\xcf\x8c\x3a\xe1\x20\x9c\x91\xc2\x63\xb5\x92\xa4\xf2\xdc\xd0\x22\x2f\xce\xcc\xf5\x48\x49\x12\x9c\x92\x70\x92\x9e\x25\x93\x54\x46\x95\xcb\x67\xe9\x5c\x9c\x5f\x66\xe9\x1c\xdd\x96\x24\x55\xce\xa9\xa2\xbf\x15\x99\x49\x51\x3a\x25\xe5\x24\xad\x44\x68\xf1\xe5\x4a\xf2\x16\x9b\x9b\x79\x2b\xb2\xd2\xc9\x50\x33\x35\xea\x12\xd9\x93\x22\xe6\xa4\xa4\x6b\x41\xb1\xb0\xb3\xac\xb2\xeb\x4c\x08\x8f\x4e\x0c\xcf\x59\xc1\x92\x6b\xda\xf4\x1f\xdf\x13\xe3\xb6\x4f\x1c\x07\xe1\x8e\xe8\x13\x4e\xe0\x58\x3e\xf7\x8d\xcb\x1f\xcc\xc8\xe8\x58\x88\x05\xb8\x20\x7e\x24\x38\x5d\x88\x33\x7b\x46\xb3\x73\x12\x4d\x7c\x3f\x13\xa8\x81\x9a\x5e\xa3\x8d\x0c\x21\xa3\x68\x2f\x48\xa6\xd0\xa5\x14\xd5\xc4\x24\x2f\x83\x58\x81\xc5\x94\xe9\xa4\x88\x62\xa3\x90\x45\xa2\xc0\xce\x74\x07\x62\x78\x52\xd2\xc6\xd8\xab\x28\xcc\x36\x3e\xee\x42\xc6\x44\x69\xde\x60\xab\x53\x83\x93\x36\x33\xf6\x00\xb9\xbc\x5c\xe4\x66\x80\xf5\x04\x6e\xd5\xe0\x18\xe1\xfd\xc8\x1e\x9e\x1c\x12\x78\x7d\x1f\x44\x42\x08\xab\x82\x44\xa8\xd1\x3a\xd5\xc8\x20\x96\x9b\x7d\x4a\x14\xdb\x91\x22\x69\x3f\x7a\x64\x02\x49\x2b\x45\x10\x23\xe6\x6d\x88\x99\xb9\x39\xd5\xb5\x10\x06\x41\x92\x7e\xe1\x2d\x0a\xb9\x13\x23\x15\x1d\xf8\x51\x1d\x31\x58\x1a\x4f\x59\x88\x49\x24\x62\x4c\xe8\xc1\xc6\x6d\xcb\x04\xf0\x75\x40\x48\x89\x9a\x88\x48\xfa\x11\xc2\xa3\x23\x42\x48\x39\x85\x77\x7c\xca\x49\x12\x47\x46\x2d\x10\xa1\x58\xba\x6a\xc3\x93\xd8\x0c\xb4\x34\x28\x11\x9d\x54\x88\xb6\xf0\xc9\xb7\x5b\xd9\x93\xbc\x4f\xcf\xb6\x5b\xf1\x94\xb9\x2e\x17\x85\x62\x1f\x16\x3f\x58\x3f\xb2\xf1\x0e\x5a\x0a\xa5\x95\x75\x2e\x04\x63\x72\x92\x0b\xa7\xc2\x3c\x6a\x85\xde\x37\x52\x86\xaa\x03\x0e\xe4\xad\x9c\x30\x7a\x1a\x95\x57\x91\x09\x07\x2b\xb5\x4c\xd6\x97\x0d\x75\xf9\xd1\xa8\xa9\x2e\xff\xad\x7a\xd1\xcc\x63\x5e\x74\x7c\x02\x8a\x51\xf8\x7d\x12\xa2\x5a\x92\xa5\xef\x51\x87\x26\x9d\x2b\xad\x2e\x9a\x8a\x17\x58\xe6\xc1\xa9\x94\x87\x0c\x4d\x78\xf1\xf5\x36\x53\xb9\xc6\x90\x8a\xf2\x95\xa0\x5b\xb9\x89\x25\xe6\x5a\x05\x8e\x66\xb6\x3c\x9b\xfc\x06\x79\xfc\xbf\x4f\x0b\x6f\x12\x2c\xff\xdf\xa7\x88\xff\xef\x43\x6a\xc2\x8b\xcd\x8a\x0a\x9c\xfe\x6b\x90\xa9\x60\x2e\xda\xfa\xf8\x3c\x48\xd6\x6b\xca\x16\x4d\x09\x8f\x4b\x05\x18\xa8\x85\xb6\x5b\xaf\x7a\x20\xb3\xb9\x2d\xf4\xb4\xf4\x71\x85\xa5\x8f\x63\x48\x1d\xbd\x19\x1c\xbd\x41\xff\x59\x1d\x08\x8c\xb2\xdc\xab\xdd\x14\x28\x80\x24\xbb\xd0\xe1\x65\xf0\x4c\x40\x60\x72\xaa\x17\x82\x79\xe4\xc1\xba\xa0\xff\xc3\x60\x57\x10\xdd\x0f\xbc\xa1\xee\xf1\xe0\x7f\xd6\x35\x93\x60\xa1\xa3\xb1\xe1\xa6\xe3\xdf\xc8\x4c\xed\xeb\xa8\xc6\x81\x7b\xc2\xce\x4c\x98\x60\xa6\xb5\xae\x05\xe1\xa0\xf1\x0e\xaa\xac\x58\xc4\x7e\xd8\x6e\xc5\x96\x1a\xd8\xd1\xfc\xc4\x20\x94\x97\x76\xc6\x7a\x10\x40\x23\xd0\x59\xb4\xc8\x41\xb8\x3f\xdd\x5f\x11\x7c\xa2\x5f\xc5\x7e\xd8\xbc\x01\x33\x4b\x39\xab\x86\x5c\xda\xc9\xff\x3a\x83\x1d\xc9\xa5\xbc\xcb\xe4\xca\x2d\xf7\xaf\xdc\xec\xfb\x57\x6e\x26\x53\x12\xe3\x15\xde\xe0\x35\x29\xdb\xeb\x77\x0d\xf2\x76\xf7\xad\xbb\xba\x2b\x92\x1c\xc7\x2c\x02\x75\xf8\xd7\x7a\xd6\x75\x40\x93\xb4\xde\x80\xb4\xd7\x49\x4a\xfe\x3c\x49\xaf\xf4\x02\xd2\xcf\x90\xb7\xc0\x84\x96\xa9\x16\x98\x7a\xac\x2e\xee\xf4\x07\x7d\x12\xd9\xd7\x04\xba\x58\x5b\xbb\xe9\x0f\x67\x7c\x4e\x42\x0b\xcc\x5a\xe0\xe1\x49\xa3\xe6\x99\x35\x1c\x63\x7a\xc7\x48\xa3\x16\x3e\x88\x54\x02\x56\x8b\x07\xcc\xd8\x1c\x33\x84\x94\x03\x8c\x55\xbb\x52\x00\xf6\x6c\xa5\xa5\xd5\x5c\xb1\x13\xe8\xba\x49\x56\x9f\xf6\xaa\xb5\x05\x2e\xed\x7b\x22\x73\xc9\x05\xd2\x01\x40\x22\x84\x21\x29\x1c\x48\xe7\xf7\x2c\x58\xe7\x25\x4f\xcb\xf2\x75\xbe\xa0\x84\xe3\x2c\x28\x79\x92\x7e\x72\x5d\x9d\x56\xd5\x75\x0f\x3f\xb0\x0f\xe5\xed\x68\x97\xf0\xde\xa1\xcc\xd3\xad\x2a\x21\xad\xa6\xd2\x75\x27\xea\x05\x51\x7f\xad\xfc\xdc\x55\x13\xd8\xf9\x83\xeb\xf4\x73\x75\x4d\xba\x2c\xf2\xeb\xbe\x13\x8b\x82\x4a\x65\x5a\x2b\x90\x8a\xd0\xbe\xf8\x0a\xed\xa4\x38\xa3\x23\x89\x03\x86\x21\x8f\x90\x40\x8b\xb4\x7f\x84\x9f\x60\xb0\x5e\xec\x04\xab\x93\x28\x7b\x46\xd3\x55\x33\x75\x9d\xc6\xdc\xb4\x96\xdd\xe4\x2d\xbd\x7c\xfe\x65\x2d\xad\xc6\xa0\xa9\x0a\x9f\xc6\x76\x10\x6c\x01\x84\x94\xab\x52\x08\x51\x89\x16\xd8\x1b\xd7\x55\x22\x70\x79\xdc\x40\xd2\xf5\xf2\xc1\x8d\xc9\x56\xec\x28\x51\x55\x43\x82\xdf\xe3\xae\xd6\xa8\x8a\xa2\x61\x5a\xa3\xd0\x5a\xd5\x82\xa8\xb0\x43\x15\x42\xde\x6e\x56\xf4\xf7\x43\x08\xc8\x0f\x5d\x08\x29\xe9\x8a\x0a\xc6\xf2\xbd\x48\x69\x36\x58\xb5\xf4\x5b\x11\xa3\x5b\xbc\x0f\x31\x8f\xf9\xef\x8b\x1a\x25\x5c\x75\x21\x07\xb2\x09\x7f\x27\x62\xda\xcd\xc9\x76\x7e\x2b\x5a\xaa\xf6\xee\x43\xcc\x53\x29\x7a\x77\xe6\xde\xed\xea\x42\x07\x76\x31\x32\xbb\xc9\xb9\x85\xac\xdb\x6b\xe8\x43\x74\xd1\x16\x04\xff\xeb\xaf\x5d\x71\x42\x14\xab\xd6\xda\xc2\xac\xda\x4d\xb4\x9e\x4a\xea\x1e\xb3\x52\xf6\x5e\x22\xbc\x52\x4e\x40\x25\x49\xa7\x65\x5c\xea\xd8\xc1\x19\xa7\x45\xc2\xf3\x62\xee\xa1\x89\x8a\xd1\xbe\x11\xdb\x4e\x0a\x58\x59\x9d\x13\x63\x1f\x2c\xad\xe5\x36\xa4\x9c\xad\xfa\xfd\xb9\xb1\xc1\xf3\x56\xa4\x84\xab\x5c\x0f\xa1\x60\x91\x33\x6a\x2a\xae\x02\x10\x3c\x40\x80\x58\x93\xcd\xa4\xb9\xbd\xae\x2b\x3b\x3a\xbd\xcd\x76\x08\xab\xbf\x17\x7e\x95\x00\x05\x7a\xc2\xcf\x14\xce\x9f\x38\x6f\xa0\xa9\x40\xc6\x95\xb5\x20\xf9\xb4\x88\x8b\x3b\xd0\x94\x4c\x64\x52\x0c\xb1\x3d\x9d\x93\xa2\x8e\xa6\x84\x14\xb3\xac\x86\xa6\x8c\x14\x5d\x68\x4a\x48\x66\xa1\x49\xce\x5d\x63\x76\x95\x60\x02\xc9\x25\xb1\xa3\x50\xe4\x20\x6b\x1c\x2b\x92\xe2\x4d\x63\x2c\x2b\x19\x54\x4f\x8c\x65\x45\x36\xd3\x55\xbc\xba\x63\x2c\x4b\x31\x96\x0d\x8c\x65\x7d\x4e\x56\xf5\xb1\x2c\xc9\x6a\xb6\xae\x8d\x65\x4d\x56\x5d\x63\x59\x92\xb5\x35\x96\x05\x59\xda\x53\xae\xef\x70\x16\x68\xa7\xa7\xf4\x4a\xdf\x4c\x6b\x01\xa2\x2e\x6e\x5c\xcd\x49\xe3\xb9\x9f\x36\x22\xc6\x6a\xba\xe9\xb8\x89\xd5\xf7\x41\x96\x04\xa9\x2b\xd5\x0e\x99\x35\x71\xca\xba\x58\x84\x12\x5c\x34\xb0\xca\xec\x00\xba\xc5\x94\xc5\xec\x0e\xac\x82\xb1\xb7\xe4\x88\xf9\x39\x61\x75\xac\x66\x84\xcd\xf2\x1a\x56\xc1\xe0\xb0\x8d\xd5\x8c\xe4\x0a\xab\x59\x35\x04\xc8\x3b\x2e\x46\x6e\x9b\x17\xec\x89\x8e\xa3\xd2\x22\x56\xb8\x14\x72\x87\xeb\x1a\x4a\xc2\x79\x93\xe2\xb8\x85\x94\x19\x9d\xe3\xc2\x26\xb6\x8c\xe4\x38\x69\xa0\x25\x43\xc6\xc9\x30\x23\xc9\x34\x8b\xb3\x3b\xd0\x92\x0a\xb4\x48\xc3\xec\xf2\x9c\x64\x75\xb4\xa4\x24\x9b\x95\x35\xb4\x94\x24\xeb\x42\x4b\x4a\x4a\x8b\xd8\x56\x24\xb5\x89\x4d\xdd\x29\x52\x1c\xe2\x55\x45\x6f\x9b\x16\xbd\xd1\x33\xd2\x14\x89\x37\x73\x88\x5b\x56\x2f\x22\xac\x9f\x1b\x6b\xd7\x06\xed\x59\xe6\x19\x8d\x09\x68\xe0\x7c\x52\x0b\x57\xb4\x17\xdb\xa8\xc6\xa0\x0a\x9c\x35\x70\x9d\x23\xb0\x6f\x57\x2e\x2f\xd3\x3c\xce\xef\xc0\x75\x09\x89\x5e\x64\xf2\xdf\x73\x92\xd7\x71\x5d\x92\x7c\x96\xd4\x70\x9d\x90\xbc\x0b\xd7\x25\x49\x2c\x5c\xa7\xa4\xec\xc2\x75\x3f\xc2\x21\x4e\x2b\x6c\xaf\x3a\xb0\xdd\x44\xf6\xaa\x8d\xec\x95\x40\x76\xb1\x0f\xd9\x96\xc5\x5f\xfb\x48\xda\x30\x12\xab\x63\xbf\x8e\xe4\x0e\x1b\xc1\x26\xe9\x44\xf5\x33\x1c\xd2\x66\x04\x1a\x50\x36\x47\xe7\x60\xe5\xd5\x28\x25\xdc\x6f\x06\x80\xd6\x70\x3f\xb6\xfd\x7c\x6a\x06\x48\x92\xdb\xf0\xc6\x54\xab\x4d\x0d\xd2\xd1\x11\x3e\xa5\x31\xbd\x63\xaa\x8b\x89\xc9\x69\x6a\x27\x19\x93\x33\x58\x10\x3a\x63\xb5\xa9\x66\x84\x76\x4d\x75\x41\x98\x9a\xea\xa2\x8e\x23\x9b\xe5\x1a\x4d\x11\xae\xc6\x07\x47\xa8\x3f\x89\x2f\xf7\x45\x5c\xed\x49\x7f\x3a\x8e\x2d\xcb\x55\x73\xea\xb1\x44\xb2\x02\xdd\xc2\xc1\x7f\x5d\xba\xae\x54\xe6\xcb\x27\x63\xe0\x51\xc8\x13\xcc\x76\xcb\x83\x65\x52\x72\x55\xab\x90\x70\x9b\x5a\xf2\x25\xda\x6e\x3d\xf5\xc6\xd4\xd0\xe7\x3d\x48\x13\xbb\x43\xd6\x29\xff\x33\x2d\xbe\xee\x95\x1c\x25\x7d\x40\x1d\xb0\x83\x5d\x07\x65\x7e\xbd\xdf\xfe\x4b\x91\x53\x7e\x4d\x55\x6d\x00\xac\xeb\x46\xb9\xed\xdf\x33\x95\x26\xb4\xaa\x0d\x63\xd8\x02\xcd\x74\xdd\xa3\x6b\x76\x2f\xc3\xfe\x74\x3b\x51\x51\x44\x6b\xb6\xa5\x15\xb4\x7b\x0d\x37\x95\xc9\x9b\xa0\x71\x35\xe5\x54\xff\x42\xc8\x18\x34\xa9\x63\x35\xe6\x42\x46\xf6\x98\x37\x3a\x45\x1e\x45\xaa\x9a\xb9\xad\x69\x52\xb6\x89\x36\x5f\x25\x04\x16\x9b\x48\xbd\x5a\x82\xe0\xca\x55\x2c\x80\x84\x94\xd3\x24\x4e\xee\x58\x00\x2b\x31\xee\x52\x26\x23\x3d\x37\x1e\x4d\x8a\xae\x57\x24\x99\xa5\xb5\x05\x90\x92\xa4\x6b\x01\xac\x48\x6a\xf1\xba\x0d\x59\x4d\x36\xc6\xf6\x78\xd3\x65\x78\xbc\xc1\x4e\x76\xc9\xf2\x82\x3a\x68\x67\x7c\x5c\x9c\x22\xcf\xb9\x75\x5e\xb9\x95\x42\xb0\x18\xac\xa2\x0b\x3d\xe4\x65\x63\xc8\x6b\x84\x17\x6a\xc8\x6b\xb2\x9c\xae\xe3\xf5\x1d\x43\x06\x0d\xd1\x12\x86\xbc\x38\x27\xeb\xfa\x90\xaf\xc8\x7a\xb6\xa8\x0d\x79\x41\xd6\x5d\x43\xbe\x22\x0b\x6b\xc8\x17\xe4\x6a\x72\x61\x86\x7c\xd1\x35\xe4\x8b\xae\x21\xab\x91\x52\x32\xa3\x73\xcb\x62\x0b\x96\x6a\x23\xd1\xb2\x9d\x12\x06\x3a\x6e\x3b\xef\x00\x27\xe9\x2d\x33\xba\x5a\xf4\xb2\xb2\x77\x9d\x95\x25\x5d\x80\x1d\x79\xbe\xa0\x3d\x50\x16\x66\x39\x73\x50\x57\x1a\x57\xd9\x26\x18\x17\xc9\x85\xaf\x53\x51\xa8\xce\x10\xa6\x64\xd6\xb4\x6b\x9f\x5b\x03\x31\xfa\x80\x5b\x59\xd1\x63\xde\x78\x88\x50\xa3\x16\x1c\x8c\xad\x1a\x91\x55\x03\x2e\x82\xc5\x11\xfa\x4b\x47\x22\x79\xed\xa5\x08\x43\x11\x40\x77\x8d\x4b\x81\x98\xd7\x40\x34\x6a\xcb\x3d\x96\x97\x46\xa1\x29\xce\xef\x1d\x13\x47\x11\xde\x33\x0d\x96\xa5\xa2\xeb\x72\xd7\xed\xcc\x44\xc3\xeb\xd5\xbc\xda\x67\xa4\xf6\xb6\x52\xaa\xcd\xfe\xfa\xa1\x9c\x4b\xd7\x25\x84\x8d\xc2\x35\xc3\x14\x8e\xd4\x29\x29\xb1\xb7\x22\xb3\xdb\x4f\xf4\x6b\xec\xc0\x19\xc7\xc1\x97\x94\xc7\x1d\x86\xbb\x92\xa3\xb4\x78\xec\x2c\x9c\xef\x76\x58\x36\x20\x8e\xc0\xdf\xfd\x7d\x4b\x51\x0a\x16\xbe\x42\x34\x49\xec\x9c\x3e\x78\x85\xf0\x06\xca\xf0\x06\xe1\x72\xe7\xc1\x35\xc0\x11\xea\xbc\x7d\xf8\xd7\x19\x10\xca\x2b\x87\x81\xb9\x7d\x38\x19\xfe\xff\xf1\xf6\x01\x02\x8a\xe2\xb2\x1a\x78\xfa\x9d\xd7\x89\xea\x32\xd1\xdc\x80\xb1\xea\xfa\xab\x75\x6d\x9b\xfe\xde\xd7\xb6\x24\xc5\x5e\xa6\x89\x5e\x73\x9b\xb2\x45\xb8\xe6\xfe\x51\x4d\x5b\x90\xe6\xd7\xd7\x89\x24\x66\xc3\xa3\x76\xb8\xb4\xbf\x6a\x18\xdc\xaa\x5a\xd3\xda\x93\xce\xbf\x80\x3f\x94\x8f\x0e\x91\xcc\x01\xc5\x08\x9f\xf2\x59\x38\x8f\x1d\xec\xf4\xb5\x29\xb2\xe7\x28\x53\x64\x07\x3b\x72\x5d\xbf\x59\x53\xc1\x9d\x6a\xcd\x11\x2a\xcd\x94\x18\xd2\xab\xc6\xba\x44\xc5\xe2\x6c\x08\x65\xb8\x44\x38\xdd\x79\xc5\xef\xb5\x5c\x24\x51\x5a\xe8\xda\x4d\xaa\x46\x8a\xf6\xc7\xd5\x4b\xe6\x45\xd1\xe9\x7d\xa6\x15\xb5\xea\x83\x11\xda\xe1\xbb\xeb\x7b\xcd\x29\x60\xa4\x93\x89\xde\x64\x6c\x91\xdf\xec\xe1\xb0\x8b\x3c\x05\x95\xd5\x9e\xd7\x2c\xf9\x9c\x5d\x0a\x19\x00\x17\xdd\x3a\xb2\x99\xf3\x7c\x71\x49\x1d\xec\xbc\x2f\xb2\x05\x98\x20\x38\x3f\x66\x05\x5d\xe6\x5f\x9c\x39\xae\x5b\xe9\x4d\x78\x9f\x44\x48\x9c\x16\x5c\xd7\xb4\x1b\x6c\x4a\x5a\x3c\xbe\x34\xce\x10\x42\xea\x9c\x71\x71\xd2\x09\xab\x14\x11\x3a\x22\xc5\xce\x33\x51\xd5\x5c\x57\x0e\x2b\xf8\xb9\xc8\xaf\xb3\x92\x4e\xdb\xf4\x68\xcc\xbb\x7a\x16\xe4\x32\x4a\xc6\x41\x88\xeb\x9f\x1b\x5b\x3e\x14\xf0\x2b\xca\x3c\xdb\x5d\x53\xb4\x84\xa9\x27\xb5\xbe\xbb\x0e\xc2\xbf\xbb\xa3\x92\xf2\xf7\xd9\x35\xcd\x37\x7c\x4f\xab\xb8\x10\xed\xee\xe5\xa8\xce\x4c\xfa\x2b\xf4\x7e\x54\x15\xe6\x62\x1f\xbd\xdd\x19\x4b\x74\x15\x03\x02\xb5\x18\x6c\xb6\xf4\x22\x48\xe4\x27\x18\xcd\xfb\x4a\xc3\x3c\x9b\x9b\x6c\xf3\xf9\x0d\xa3\xc5\x33\x45\x03\x7a\x19\xfc\x29\xa3\x37\xc1\x25\xe5\x4f\xf3\xeb\xf5\x86\xd3\xc5\x3b\xfe\x75\x05\x87\x97\xcd\x6a\x55\x1d\x34\xa7\x6c\xc6\xe7\x31\xdb\x59\x97\xb2\xd5\x09\xe3\xa7\xf7\xaf\x5e\x4a\x69\x54\xf4\xfd\x3a\xb9\x16\x9b\x81\xde\x8b\x5f\xe7\x0b\xba\xdd\xd2\xe0\x2a\x2f\xf9\xce\xe2\xa7\x2a\x05\x8d\x51\x84\x6b\xda\x0c\x2e\xf2\xc5\xd7\x89\xce\x87\x6e\x5a\x54\x59\x0c\xa0\x2b\x19\xee\xff\xc9\x9b\x67\xbf\x9a\x50\xff\xcd\xc1\x41\x23\x50\xed\x7f\xe9\x86\xad\xba\xe2\xad\x72\x90\x4c\xe4\x31\x98\x07\xf9\x67\x5a\x2c\x57\xf9\x0d\xe4\x36\xd3\x0f\x7f\xc1\xb9\xf5\xf4\xab\x42\xc7\xa1\x97\x6c\x78\xbe\x2d\xd3\x22\x5f\xad\xb6\xe2\xed\x2a\xf9\x8a\xd4\xbd\x20\xeb\xe7\xfd\x02\x4d\x69\x9c\x7a\x65\xdd\x03\x7a\xd5\xdc\x3c\x0b\xba\xa4\x05\x65\x29\x15\x38\x9a\x36\x9e\x63\x7d\x44\x60\xae\x7b\xe0\x1d\x28\x0a\x7e\xf5\xee\x05\x5b\x6f\xf8\x2b\xca\xaf\xf2\x85\x72\x19\xde\x6e\x0f\x0c\xf2\xf4\x8f\x57\xf9\x82\x22\xbc\x16\x1f\x1f\xbe\x7a\xf7\xe2\x79\x2f\x0a\x35\x7c\xed\xc5\x68\x6d\xf0\x4b\x0b\xc6\x08\x42\x76\x4c\x37\x71\x24\xb3\x11\xad\xe3\xcd\x76\xbb\xae\xc6\xb3\xd8\x3f\x87\xfa\xc7\xf3\x15\x15\x7f\x2c\x6b\xbf\xa5\x17\x85\x68\x5a\x9b\x6c\xbd\x43\xd0\x40\x06\xb7\xff\x19\xe8\x66\xbb\x15\xc5\x13\x26\xcd\x10\xa5\x36\x41\x35\xf7\x2e\xbb\x58\x65\xec\x72\x82\x18\x01\xd7\xc9\xf6\x2b\x54\x6b\x4a\xfb\x5d\xc3\x3d\x91\xa2\x27\x13\x45\xd7\x75\x25\x25\xa9\x28\x23\x40\x60\xe2\xf7\x14\xec\x02\x67\xce\xfb\x9f\x04\xbf\x7b\x26\xfe\x79\xfc\xe4\xe5\x73\x67\x6e\x58\x57\xd5\x18\x82\xf0\x24\x09\xcf\x52\xb0\x76\xf7\x18\x76\xb4\x3b\x88\x83\xa6\x0b\x8f\xa1\x98\xc5\x62\x86\x1b\x2b\xb0\x8e\xa5\x78\x1f\xfa\x2a\x94\x5f\x59\xd3\xa3\xdc\x1b\xed\x75\x36\x15\x2b\xa6\x7a\x44\xb1\xe5\xc5\x70\x51\xe5\x98\x93\xf9\x05\x35\x9f\xd8\x6e\x0f\x04\x09\xf1\x26\xe3\xd8\x3f\x9b\x9a\x9f\xa8\x9c\x48\x7a\x3c\x3f\xab\x21\x7b\x1c\xb9\xa2\xfb\xe0\xd9\x9b\xa7\xbf\xbc\x7a\xfe\xfa\xfd\xc7\x9f\xdf\xbc\x7b\xf1\xfe\xc5\x9b\xd7\x1f\x7f\x7c\xf3\xf2\xe5\x9b\x3f\xbf\x78\xfd\x6f\xb8\x20\x6c\x4a\x63\x8e\x73\xc2\xa6\x3c\xa6\x38\x23\xa6\x3b\x29\xfb\x40\x10\x14\x0f\x4d\xb2\xa0\x54\x91\x87\xbc\x02\x87\x08\xc3\xf3\x73\xb6\xf0\x72\x1d\x76\x33\x21\x19\x88\x2e\x39\x7b\xcc\x52\x5a\xf2\xbc\x10\x0b\x23\xc9\x18\x05\xa5\x15\x3d\x00\x6f\x50\x2e\xfe\x6c\xb7\x20\x42\x8a\x97\xa5\x97\x9b\x7b\xc7\x36\x97\xa7\x4d\x42\x31\x44\xc2\x5d\xd7\x33\x1c\x8f\x6f\xb7\x0b\xf0\x0a\x29\x4a\x8d\x1d\x38\x0a\x21\xb8\x8a\xdc\x79\x09\x9a\x26\xf1\xc2\x4b\x24\xa0\x25\xb9\xb2\xec\x6e\x4b\x60\x89\xd3\x0b\x4f\xfe\xc0\x1c\xc5\x62\x8e\xae\x3c\x8e\xa0\xc0\xe2\x1c\xd7\x15\x60\x0e\xcf\xd7\x90\xe8\xbd\x79\x5f\x75\x1e\xb9\xae\x89\x97\x53\xdd\x4d\x45\xf3\xa9\xfd\x10\xc3\xf7\x68\xea\x48\xe6\xf5\x3e\x5f\x3b\xb1\xfa\xfd\x92\x2e\xb9\x03\xcb\xd0\x0c\x5d\x9c\xab\x61\xdc\x32\xbf\x8d\x19\xb6\x95\x95\xe3\x4e\x8a\x36\x9e\x15\x8d\x6a\xb2\xc3\x8c\x5d\xaa\x7a\xdb\x6d\x81\x66\xbc\x3a\x80\x8a\xdf\x66\xf0\xaf\x6c\x3b\x50\xe7\x0b\xa0\x7d\xea\x00\xb4\xb1\x23\x06\x80\x0b\x22\x1f\x21\xd4\x8d\xf3\x36\xbb\xbc\x12\xaf\x9e\xe4\x9c\xe7\xd7\xc6\x89\x1a\xac\x42\x21\xa0\x98\x47\x67\xce\x45\x5e\x2c\x68\xe1\xf4\x59\xdf\xf9\x73\xb6\xe0\x57\xce\x1c\x47\x21\xea\x77\x57\x2a\x6a\x95\x3a\x52\xf6\x57\x09\x97\xc0\xc2\x3f\xf9\xe2\xf1\x99\xca\xd4\xe1\xf4\xe9\x1c\xf3\x99\xc2\x31\x3c\xb1\x99\x93\xae\x32\xb1\x23\xa9\x27\xab\x26\xab\xd5\x94\xcc\xd2\x64\x5a\xaf\x55\x55\xc0\x8a\xf2\x62\xe6\x5c\x27\xc5\x65\xc6\x9c\xbe\xe7\xfc\x44\x61\xfc\x32\x7f\x9c\x9c\x5f\x40\x0e\x7a\xd8\x17\x0a\x6b\xb1\x42\x23\x9a\xa3\xd8\x1e\xf2\x67\x7b\x89\x08\xe6\x0d\x04\xd3\x98\x76\x21\x3e\x0a\xc8\x5d\xb7\x25\x57\x30\x4d\xfe\xb7\x57\xd0\x6b\x7c\x69\xfa\x57\xa8\xc4\x37\x02\xd5\xa2\x5c\xe2\x5c\x27\x56\x87\xdd\xf0\x6b\x47\xc6\x4c\xaf\x66\x8e\xb0\x2f\xe5\xe9\xd3\x84\xb1\x9c\xf7\x84\xf4\xd4\x4b\x7a\xe9\x2a\x29\xcb\x5e\x52\xf6\x12\xb3\xf6\x1d\xb4\xc3\x8f\xf7\x85\x62\xf8\x9f\x7b\x82\x6d\x72\xb0\x3a\x3d\x32\xd7\xa5\x9e\x75\x6e\xc4\x0c\xe1\x02\xca\x04\xa6\x39\xa4\x3d\xbe\xd9\xa7\x50\x07\xd7\x5e\x3a\xdd\x07\x03\x37\x49\x7e\x71\x35\xc8\xf8\x20\x6c\xe6\xfb\xc5\x7a\x44\x90\xfb\x57\xb9\xd8\x62\xba\xc3\xdf\xf4\x61\x37\x29\xcb\xec\x92\x6d\xb7\xdd\xee\xa7\xd1\x84\x9f\x35\x99\x1d\x38\xfe\xdc\x36\x6c\x48\x67\xdc\xb2\x73\x90\x41\x21\x54\x07\xd5\xb9\xb9\xee\x9c\x2c\x85\x69\x81\x30\xd7\x05\x67\x3c\xc2\x66\xc5\x1c\x55\xfe\xbf\x95\x60\xf4\xd1\xda\x79\xbf\x79\xb7\x3b\x4c\xf1\x6d\x01\x14\x2c\x4e\x3c\x4b\xde\xa7\x01\x10\x2e\xbe\x80\x05\x04\x11\xa7\xd6\x7d\x1a\x48\x32\xdf\xd5\xb3\xe7\xeb\x25\x74\xbb\x93\x26\xeb\x4b\x0f\xd6\x8b\x38\x27\x50\x21\x8b\x3f\xc9\x37\x6c\x91\xb1\xcb\xa7\xc0\x26\xde\xd2\x94\x7b\x3a\x00\xfc\xb5\x47\xb1\xe4\xe1\xb8\x90\x0f\x2b\x58\xdd\x13\x0e\x1d\x12\x86\xb9\x84\x87\x14\x58\x88\x57\x02\x18\x59\x0a\xd0\xf6\x49\x21\x75\x8c\x77\xf4\xa4\x6c\xe3\x16\xe8\x56\x65\x3d\xbb\x15\x0d\xc6\xb2\x5d\xcc\xf3\x75\x0c\x7d\xa9\x85\xaa\x1a\xf6\xd5\x6b\xb5\xac\x75\xd7\x3e\x54\xdd\xe1\x8c\x74\x9d\x12\x3e\x37\x77\x06\x14\xdf\xee\x70\x49\x32\x89\x4b\x71\x6c\x90\x9c\xf2\xcf\xf2\x31\x57\x38\x4e\x49\xa6\x10\x5b\x55\xf9\x49\x3d\xe7\xea\x0d\x5e\x19\x81\x12\xbe\xf6\x4b\xc8\x0a\x28\x4b\x64\x65\x1f\xee\x8a\x57\xdb\xed\x46\x6b\xd0\xc5\x69\x60\xb2\xf2\xc9\x2b\x6f\x8d\x9d\x2f\x0e\xc2\x1b\xf5\xfb\xab\x03\x99\x64\xa0\x21\xb2\xc2\xba\x13\x9f\x6c\x34\xb1\x7c\xf4\xec\xac\x3e\xef\xed\x4d\xab\xb5\x55\x0f\x3a\xb7\xea\xc1\xdc\x75\xed\x27\xcd\x46\x71\x5e\x21\x8f\x1b\xe4\xe1\x8c\x08\x4a\xc2\x25\x79\xe3\x71\x30\xd2\x10\x4f\x1b\x92\x88\xa7\x35\xb1\x76\xb2\x4d\x20\x37\xb2\xf7\xf9\x1a\x30\x21\x36\x31\xbc\xe8\xaa\x21\x36\x0a\x53\x65\xc2\x5c\x37\x77\x5d\xaf\x14\x33\x48\xcc\xce\x06\x8f\x42\x10\x2b\x61\xc2\xed\x17\x40\x00\xa1\x8a\x73\x74\x45\x3e\x7a\xb7\x82\x58\x32\xf1\x81\x0f\x9f\xf9\x6b\x0c\xa4\x94\x41\x55\x5f\x7e\xe1\x2f\x14\x25\xa9\x59\xd7\x24\x94\x99\xb5\x23\x66\x49\xf4\x21\x36\xac\xf7\xf9\x9a\x84\x58\x3f\x09\x80\x21\x82\xb1\xeb\xe6\x12\xdb\x17\xf5\x71\x99\x8f\x60\xd0\xaf\xba\x5e\x8a\x36\x60\xbc\x57\x00\x22\x59\xfb\x17\xf8\x4a\x93\xaf\x7a\x02\x38\xc9\xc2\x7f\x85\xaf\x14\xb9\xab\x87\x0a\xa8\x8b\x3a\x50\xaf\xb4\x9f\x6b\xe1\xba\x07\x6c\xca\x2b\xb1\x73\x85\x62\x4e\x08\x59\x59\x07\x8f\x95\x7d\x92\xf0\xae\x3a\x3d\x60\x7e\x3b\x11\x5d\x7b\x5c\xb3\x8c\x5c\x3e\x48\x96\x81\x33\xc2\xa6\x7e\x14\x47\x55\xc4\x1c\x60\x21\xc5\xa3\x0c\x53\xc3\x3a\xe4\x93\x64\x29\x39\xfc\x56\x8c\x04\x1e\x76\xde\x15\xe6\x08\xe1\xab\x8a\xf4\xbf\x98\x63\x21\x1c\x33\xe4\x71\xc4\x08\x7a\x4b\x0f\x7d\xc7\x69\xb1\xf1\xf9\x84\xbb\xae\xc3\x72\x46\xe5\x31\x4b\x0c\xab\x48\x58\xb9\xcc\x8b\x6b\x07\x4d\x10\x27\xbc\x51\x5f\xef\x64\xdb\xed\xfd\x67\xab\xd7\x95\x34\x27\xd9\x5e\x0b\xe3\xa3\x4e\x8c\x8f\x6a\x18\x1f\xcd\x71\x46\x80\xee\x43\x49\xeb\xe1\x0e\x6f\x48\x3e\x15\x58\x01\xf9\x7e\xe5\x71\x24\xfd\xaf\x3f\x67\xf4\x66\x9d\x17\x20\x79\x15\x28\xeb\x88\x6a\xf0\x60\x19\xdf\x86\x20\x9a\xe3\x0e\x65\x4f\x4b\x42\x7b\x0f\x17\xd4\x38\xaf\x16\x30\xb3\x99\xad\x56\x99\x65\x8c\xd1\x42\xb1\x5f\x71\xfa\x6a\x57\x97\xbc\xb4\x56\x5f\xf3\x62\xc8\xdf\xca\xa7\x61\x7c\xed\x31\xc1\xa9\xd4\x4f\xb3\x67\x19\xd6\x09\x08\x4b\xfc\x02\x08\xb0\xb0\x56\x2d\xa0\xb0\xf4\x0b\x49\x80\x85\xbd\x64\x25\xd3\xc8\x0d\xbb\xd8\xa1\x9d\xb7\xc1\x39\xaa\x62\x54\xae\xf5\xcd\x86\x92\xa9\x7f\x36\x51\x89\x8a\xa9\x39\xd7\x78\x6b\x92\x7a\xa5\x98\x14\x64\x56\xa1\xeb\x7a\xeb\xfb\x50\x88\xe2\x35\x71\xe4\xa0\x65\x8b\xf7\x9d\xee\x0b\x60\x8b\x4b\xf2\xde\x5b\x63\x80\x53\xd0\x80\x56\x37\xac\x4d\xdf\x95\x18\x24\xaf\xd1\x95\xd1\xd8\x43\x0e\x65\xda\x20\x1c\xaa\x2c\xb3\x2f\xf2\x12\x0e\xd6\x49\xa5\x8e\xd0\xb5\xf4\x7d\x4f\x59\x45\xf0\x3a\x38\x00\xd9\xb0\x10\x88\x44\x82\x20\x2b\x54\x2e\x48\x7b\xaf\xc6\x57\x64\xa1\x37\xdb\x57\x64\x21\xb9\xf7\x24\x93\x4c\x64\x09\xcc\x74\x69\x4d\x65\xa6\x58\x0a\xb9\xea\xc3\x4b\x9c\x29\xae\xb2\x94\xec\x75\x69\x4f\x6e\x26\xb9\x0c\x79\xd5\x97\x6f\xa5\xf8\x7f\x49\x5a\xd6\x0c\x1e\x13\x48\xa8\xdc\xdc\x75\xa3\x97\x53\x16\x33\xf8\xbd\xdd\x86\x58\x01\x25\x0b\x79\xbe\x96\x65\x8a\x93\xcb\xd2\x42\x91\xac\x81\x53\xbf\x90\x4f\xf0\xa6\x95\x09\x53\xe6\x7f\x96\xb6\x11\xad\xc5\x3a\xee\x5c\xac\x63\xfb\x40\x3e\x9e\xc7\x10\x79\xd9\x97\xd1\x71\xb5\x66\xc9\x49\x36\x3c\x37\x53\xd5\xa3\x4a\xcd\xf1\xda\x93\xf7\x52\xb9\x58\x4b\xb0\x64\x6e\xe5\x22\x48\xea\x3b\x27\xc8\x5c\x7e\x22\x25\x2f\x29\xa4\x9a\x8a\x5a\x58\x83\xbf\xfa\x83\x44\x6f\xb5\x5a\x7a\xed\x6e\x37\xa9\x84\x3a\xf9\x63\x27\xd7\xe7\xad\x96\x04\x61\x1e\x93\x9a\x20\x68\x9a\xde\xe1\x54\xcb\xfb\x9f\xe8\xd7\xd2\x2b\xd1\xde\x6b\xe6\x6f\x1e\x5c\x5d\xd1\x1d\x06\xfb\xc0\xdb\xa4\xa0\x49\xec\x71\x02\x4f\x5c\xc2\xf4\x88\xab\x86\x91\x8e\x81\xb5\x43\x28\x28\xf3\x82\x7b\x5e\xb7\xd9\x7a\x20\x9a\xf1\x29\xfc\xd9\x21\x90\x98\x74\xf8\x8e\xd6\xe5\x8a\xd8\x79\xe4\xd0\x0b\xa2\x65\xf8\x2a\x7a\x00\xa9\x71\x4a\xd7\x2d\xaa\x92\x9f\x94\xc8\x22\x24\xb1\x95\x49\x01\x3c\x5d\xcd\xc2\xb9\x18\x76\x9c\xaa\x1f\x58\xf0\x17\x15\x1d\xc0\x77\xd0\x2c\x32\xa1\xc6\x36\x7d\x6f\x3d\x75\x7c\xa7\xbf\x8e\x1d\x3b\x5d\x62\x23\x1f\x6a\x8b\xda\x86\x9d\xd4\x36\xb4\xa9\x6d\x38\x07\x55\xab\xee\xe9\xbd\x20\xa7\xe9\x17\x0f\x14\x4f\x1c\xaf\x3c\x86\x90\x38\x53\x9a\x2e\xdf\xd9\xe8\xf8\x9e\xcb\x03\x84\x99\x2d\x69\xf1\x8a\x0b\x88\xa5\xda\xef\x78\xf5\x44\x2f\x32\x71\xac\xe9\x78\xff\x52\x2e\xe4\xce\x6f\xdf\xea\xcd\x46\xab\x16\x24\x39\xd6\xa4\xff\x7e\xa1\x09\xb2\x7e\x04\xe8\xb3\x5d\x2d\x15\xab\x39\x99\x01\x61\x3b\x85\xd4\x4c\xc8\x35\x24\x77\x2d\xbd\x44\x40\xa2\x82\xd3\x90\x23\x4b\x9c\x5d\x25\x47\x19\xf3\x04\x60\x40\x92\xb5\x28\x3e\xc2\xf3\xf5\xe1\x65\x57\x60\x91\x1e\x9f\xd1\xf9\x0e\xb5\xd3\xb0\xa2\x5b\xf0\xc1\xaf\x88\x25\xd4\xf6\xe6\x62\x82\x70\x4e\xd4\x80\x8b\xfa\x6a\x2d\xcc\xa2\xce\x88\xd2\x65\xab\xe1\xc8\x81\x58\x8a\x6c\xb1\x4d\x67\x53\x18\x91\x1e\x65\x29\x0a\x56\x52\xc9\x06\x23\x4d\x45\x81\x6c\xd1\x89\x9d\x1b\xa9\x9b\x59\x89\x42\xf9\x3b\xd6\x2f\x8d\x5f\xeb\x2c\x99\x13\x3e\x4b\xe6\x7d\x3e\x4b\xe7\x87\x03\xbf\x80\x3f\x38\x9f\x95\x73\xc2\xc0\x25\x9f\xcf\xca\xb9\x5f\xcc\x56\xf3\x98\xcf\xfe\xee\x95\x68\x8e\xf3\x46\x5a\x56\x83\x9c\x66\xb4\x93\x65\xc6\x16\x53\xf9\x47\x10\xb0\x15\x89\x67\x16\xce\x5b\xd9\x55\x4d\xd0\x2e\x2b\x26\x36\xb5\x62\x3d\x34\x35\x20\xc6\xa2\xac\xde\x21\x24\x34\xb5\x83\xff\xa8\xa2\x6e\x63\x99\x19\x9f\x8b\x8e\xaa\xc0\xaf\x9f\xea\x61\x57\x3a\x6b\x9a\xc6\x8d\x39\x22\xda\x89\x53\x3e\x4b\xae\xa9\x03\x6e\x73\xc1\x32\x2f\x9e\xd7\x9d\xdc\x28\xba\xa5\x81\x7e\x72\xdd\x34\x67\x65\xbe\x52\xf1\x2f\x9d\xff\xbc\xce\x17\xd9\x32\xa3\x85\xa9\xf1\x9f\xbd\xac\xec\x2d\xe8\xba\xa0\x69\xc2\xe9\x02\xf7\x36\x25\xed\x59\xd5\xd8\x7f\x1e\x38\xc8\x68\xf9\xf5\x57\xe2\xa8\xbd\x64\x13\x1a\x50\x96\x5c\xac\xe8\xc2\x75\x33\x8f\x81\x81\xad\x5a\x51\x65\xb0\xce\xd7\x6b\x5a\x90\x8f\xad\x22\x84\xab\x12\x73\xcb\x55\xab\x67\x4a\x11\xe6\x84\x79\x1c\x53\x65\x3c\x69\x67\xad\x95\xe7\x0a\x69\x1d\xc0\x13\x4e\x83\xac\x7c\x46\x4b\x5e\xe4\x5f\xe9\xc2\xc4\xa6\xd3\xca\x40\xb0\x71\xc4\xa5\xe0\x48\x65\x7c\xbb\xc3\x49\x51\xe4\x37\xef\xaa\x47\xce\x8b\xec\x62\xc3\xe5\xd3\x72\x95\xad\xd7\x74\x11\x1f\x44\x58\x41\x14\xdf\xee\x76\x13\xda\x01\xf5\x73\xaf\x02\x40\x45\x04\x85\x31\xaa\x68\xac\xba\x9e\x7c\xcc\xd7\x02\xf4\x2a\x3a\xd8\x8f\x42\x2a\x03\x43\x25\xc1\x1f\x04\x2b\x25\x2f\xbd\x7a\x4d\xfd\x02\x77\x74\xfe\xe0\xfe\xf4\x64\x96\x81\x18\x59\x00\xc9\x12\x92\x22\xa3\xa5\x3e\x00\xdc\x55\x7b\x9d\x2c\x16\x19\xbb\x14\x60\xe6\x45\x76\x99\xb1\x64\xf5\xb3\x01\x97\xd6\x20\xac\x8d\x8b\xec\x1f\xb2\x35\x18\x45\x24\x4f\x3d\x7b\x2c\x5d\x63\xb5\x7a\x42\xad\xef\x4d\xf3\x77\x74\x3a\x55\x42\x70\xec\x24\x2a\xe2\x92\x83\x29\x91\xb9\x4b\xaa\x31\xeb\x80\x87\x86\xa4\x9e\xc2\xfd\xd3\x62\x5a\x6b\x38\x67\xbf\xac\x17\x09\xc4\x8f\x8a\xbd\xae\xea\x60\x52\x55\xff\x42\xbe\x81\x4b\xe0\x46\xda\x63\x3b\xb6\x47\x7e\x4d\xdb\x02\x08\x5c\xc3\x58\xd7\x94\xd6\xaa\x83\x1b\xd1\xda\x3e\xf1\x73\x5d\x61\x3a\x3b\x88\xb0\x73\x5d\x3a\xd8\xf9\x33\xbd\xf8\x94\x09\x86\xff\x2a\xff\xe6\x60\xe7\x8d\x23\x8f\x86\x26\xb8\x54\xc0\xf3\x5f\x04\x32\x65\x46\xfb\xbe\xe6\x87\x11\x52\x01\xcc\x78\xcb\x47\x2c\x27\x7c\x56\x88\x23\x6e\x3e\x75\x9c\x7e\xde\x67\xb1\x3c\x90\xdc\x65\x6d\x02\xf7\x04\x01\x2c\xc4\x59\x36\xd7\xec\x33\xdb\x59\xf7\x98\xd5\x58\xde\x36\x02\xf3\xb6\xd6\xb9\xc0\xf3\x93\xe6\x14\x3a\xe0\x16\x0e\x8b\xdb\x31\x36\xff\x8a\x50\x94\x71\xbc\x5e\xee\x9e\xf3\xc5\x37\x74\xe5\x20\x7b\x45\x49\x18\x2b\xca\x72\x9c\x8e\xb7\x3c\x5f\x77\xbf\x00\x6d\x58\xe7\x1b\x79\x94\xe9\x7c\xa5\x8e\x44\x9d\xef\x6e\xb2\xd5\xea\xe9\x55\xc2\x2e\x69\xe7\xfb\xd9\xcf\x9e\xad\xfe\x98\x43\xd4\x25\xa8\xb5\xc8\x4a\x41\x2b\xcf\x3f\x53\xc6\x5f\x66\x25\xa7\x8c\x16\xa5\x87\xea\xe4\x29\xd1\xf2\x86\x29\xc4\xea\xd0\xc7\x6a\x71\x99\x3b\xe4\x56\x14\xe4\x8a\xa3\x5f\x65\x65\x35\x6f\x7f\xd9\x2b\x2b\x56\x36\x24\x35\xb1\x31\x96\x67\xe7\x46\x2e\x06\xa9\x7f\x61\xc1\x06\x16\x1b\x68\xa7\x49\x81\x45\xe3\x41\xb2\x58\xd4\x46\xe4\x39\x05\x2d\xb3\x6f\x60\x66\x67\x55\xc7\xb7\xeb\xa4\x2c\xb3\xcf\xf2\xba\x41\x59\x10\xa5\xd6\xbd\xab\x7d\xbc\xae\x9f\xe0\xcc\xb1\xda\xd2\xb2\x0a\xc1\x88\xef\x17\x7e\x63\x3e\x49\xda\x90\x89\x56\x6b\x60\xe0\x6c\xbb\xa5\x5e\xea\x25\xf6\xed\xbc\xea\x1c\xe7\xd2\x61\x31\x41\x3b\x2f\xc7\xfa\xfa\xaf\x31\x28\x16\xd8\x2a\x8c\x12\x99\x02\xc5\xcf\x49\x8e\x59\x40\x05\x10\xe5\x73\xc9\x28\xc4\x3a\x61\x76\x02\x01\x15\x55\x40\x2e\xa8\x5a\x55\x1d\x40\x00\x5e\x91\xbf\x79\x77\x6c\x2c\xb8\xb9\xf7\x95\xe9\x15\x5d\x6c\x56\x54\x72\xc7\x7a\xc0\x7f\xb5\x25\x63\x15\x0d\xa4\xa3\x67\xd7\xf5\x52\xb1\x57\xaf\x1e\xb3\xec\x1a\x6c\x93\x7f\x2c\x92\x6b\x15\x2c\xa0\xd1\xb4\xd5\xb5\x71\x38\xb3\x80\x24\x16\x64\x7f\x91\x49\x0c\x04\xe1\xee\x21\x19\x6e\x63\x57\x48\x27\x35\xf4\xee\x13\xb1\x3a\x9b\xd4\x13\x56\x6f\x12\x64\x97\x1a\x19\x83\x95\x4b\xa3\x23\x70\x72\x69\xcc\xa4\xaa\xd7\x98\xcc\x08\x73\x1b\xb9\x3f\x59\xe6\x57\x82\xe5\x52\xd7\x3d\xc8\xca\xd7\xc9\x6b\xcf\xbe\xc2\x46\xc8\x75\xb3\xf2\xc7\x8c\x41\x02\x7c\xeb\xf3\x1f\xe5\x26\x64\x9f\xc7\x79\x97\x60\x69\x8e\x9b\x8e\x33\x51\x67\x08\x25\xf9\x6b\x69\x5f\x6a\x96\xb1\x39\x5a\xa8\xb3\x50\xc7\x19\xc3\x75\x7f\xf2\xf8\x8c\x81\x4f\x56\x41\x9c\xf5\x17\x47\x86\x41\x17\xac\x8c\xcd\xe1\xf2\xb4\x0f\xe1\x0a\x44\x8f\x7f\x02\xcb\x25\x65\x5c\x78\x98\x3d\xc4\x74\xe9\xd7\xfa\x01\x79\xaf\xb0\xad\x5d\xc5\xe1\x94\x9e\x13\xa9\xf4\xea\xd8\x86\x9b\xf5\x99\xa8\x66\x76\x61\x21\x1a\x2d\x68\x71\x56\xc8\xbf\x3b\xa9\xd3\x3d\xa8\x78\xc9\x7f\x3a\x7d\xde\x77\xfe\xd3\xc1\x09\xfc\x66\xe2\xf7\xa4\x26\x99\x27\x7d\xa7\xa7\xb7\x30\x21\x91\x17\xf4\xef\x9b\xac\xa0\x8b\xde\xc5\xd7\x9e\xd3\xcf\x6a\x6f\x59\x0f\xba\xe9\xf1\xbc\x77\x93\x17\x9f\x30\xc4\x59\xdc\x14\x54\x14\x64\x2c\x5d\x6d\x16\xb4\x97\xf1\x9e\xb4\xa2\x95\x5f\x1f\x38\xe6\x22\x33\x07\x9c\xfe\x1b\x99\x81\x62\xc9\x87\x98\x12\x0e\x96\x5a\x26\xf9\xc7\x07\x57\x4d\x07\x6e\x6a\xd4\x5b\x39\xaf\xa2\x44\xbe\x93\x9a\x23\xfd\x56\xcf\xb7\x2c\x95\x35\x94\x76\xc8\x7e\xa8\x4a\xf5\x87\xa0\x23\x92\x55\xe4\x49\x53\x96\xc8\xd7\x73\xfc\x1f\xe4\xdf\x94\x14\x32\xb4\xe6\xf6\xff\xfc\x1e\x3a\xf1\xff\xb0\x5c\x9d\x70\x41\xfe\x43\xc7\xc3\xeb\x47\x48\x07\x06\xfa\x0f\x73\x22\x64\xc8\x32\x7e\x2c\x2a\xa7\xc9\xb8\x00\x5c\xfe\x81\xdc\xfe\xf8\xf2\xc5\xcf\xb1\x23\x04\x66\x07\x3f\x7d\xf9\xe6\xe9\x7f\xfc\xf9\xc5\xbb\xe7\xb1\x93\xae\xf2\xf4\xd3\x4d\x56\x52\x07\x3f\x7d\xf3\xcb\xeb\xf7\xcf\xdf\xda\x2f\xf3\x0d\xe3\xb4\xa8\xea\x58\x37\xcc\xff\xde\xbc\x7f\x98\x85\x38\x9c\xdf\x7b\x78\x2f\x10\x04\xcb\x93\xea\x81\x43\xef\x43\x7f\xfb\xc1\x47\x87\xfb\x95\x6b\x3a\x07\xcc\x4e\x65\x66\xd2\xed\x7c\xf2\x92\xae\xf5\xe2\x4b\xa3\xd2\x92\x26\x05\xd8\x74\x6f\x3f\x94\x87\x60\x1c\x3b\x49\x66\xe5\x5c\x39\xc7\x89\x9f\x95\xf2\x12\x0b\x11\xac\x7e\x06\x7d\x23\x65\xf7\x5e\x49\xd7\x49\x21\xa4\x65\x41\xe3\x37\x57\x19\xa7\xbd\x72\x9d\x40\x34\xca\x5e\x52\xd0\xd6\xa1\x34\xe9\x81\x4d\x7a\xcf\xc3\x08\x8c\x3c\x68\xb2\x08\xd4\xd1\x34\x25\x87\x1f\xca\x47\xf8\x43\xf9\x68\xfb\xa1\xec\x1f\xe2\x95\xc4\x53\x39\x9d\x25\x66\x12\x4b\x33\xb1\x33\x00\x51\x22\x29\x45\xb3\x70\x3e\x47\xb8\x51\x16\xcd\x4d\x7c\x28\xdd\x42\xd9\x8f\x10\x9a\xc7\xb3\x64\x6e\x07\xd2\x6c\x60\xb6\x9a\x30\x4f\xc6\x5a\x3c\xc8\xe2\x0c\xb5\x75\x25\x89\x65\x3a\x2c\xb6\x92\xc5\x26\xa5\xdd\xba\x4a\x15\xb5\xb4\x8a\x80\x08\x78\x06\x22\xe8\x3b\xd8\xf1\xad\xd9\xe7\x68\xea\xd5\x6a\x12\x2e\x3a\x0a\x31\x45\x71\xd2\x78\xd5\x97\xef\x22\xf1\x8e\xea\xa1\x72\xb4\x43\x78\x36\xdf\x4f\x2f\x75\xd5\x48\x35\x58\xaa\xcd\xfc\x3d\x6f\x1a\x7f\xf0\xb7\x1f\xfa\x68\xfa\x61\xf1\xe8\x43\x20\xfe\x45\x5e\xf0\x08\x1d\x22\x9c\x91\x7e\x2e\x16\x5f\x42\xf2\xd9\x60\x0e\x1c\x32\xab\xb4\xda\x2a\x39\x61\x45\x83\xce\x1f\x1d\xa4\x83\x3c\xaa\xab\x1b\x65\x08\x9c\x28\xfb\xdf\x3f\xae\x9d\xb8\x24\x6c\xa2\xbc\xb4\xa1\x48\xd9\x03\xff\xb1\x70\x62\xed\x80\x52\x92\xff\x97\xbc\x3f\x6f\x8f\x1b\xd7\x11\x47\xe1\xaf\x62\x6b\xe6\xe7\x23\x8d\x65\x77\x2d\x5e\xcb\xad\xf6\x9b\x8e\x9d\x4e\xfa\x64\x3b\x89\x93\x5e\xdc\xfe\x65\x54\x12\xab\x4a\x1d\x95\x54\xa6\x24\x2f\xb1\xeb\xbb\xbf\x0f\x01\x2e\x20\xa5\xb2\xdd\x3d\x33\xf7\xce\xf3\xdc\x3f\xe2\x14\x41\x88\x0b\x08\x82\x20\x08\x82\xdc\x9c\xcb\x57\xc1\x79\x7d\xf1\x5d\xbf\xd7\xfb\x8f\x6c\x09\xe7\x6e\x33\x38\x16\xb9\xbf\xf7\xae\xe0\xe8\x26\xd6\xd6\x21\x95\x75\xac\x0f\xb9\x56\x1d\x1b\x3e\xe5\xec\x6b\xf4\xd4\x52\x1e\x38\x70\x0b\x64\xbb\xf5\xa6\xc9\x67\x61\x19\xaa\x90\x21\x2b\xac\x41\xf8\xf0\x51\xc7\x6a\x2e\x46\xef\x25\x1a\x6d\x4a\x88\xb7\x54\xfc\x87\xef\x6d\x21\xb7\xf1\xad\xfe\x05\x9c\x06\x07\xb2\xe8\x10\x57\x8d\xdf\xa3\x3b\xbd\x5d\xd2\xa6\xce\xd0\xda\x67\x8f\x04\x4f\x51\x75\x65\xb4\xde\x0b\x9d\xfd\x05\x58\x56\xe4\x8e\x98\x5e\x42\x59\x86\x6a\x67\x6d\x43\xf5\xde\x6e\x74\x07\x91\x1d\x46\x77\xb0\x00\x8e\xfa\xbd\x5e\xc8\x4c\x2d\x93\xa2\xc3\x45\x9f\x9a\x28\x8a\xa8\xb6\x4d\xa7\xe0\xdf\x6d\x5b\xde\x31\x8e\x82\x62\x6b\x69\x67\x10\x7b\x5c\xa2\x5f\xc6\x51\xa9\x6c\x15\x95\x92\xc8\x7a\x89\x13\x4b\xa5\x65\x4e\x4d\xa2\xca\xb6\x9e\xe6\x02\xe0\x18\x4a\xc3\x26\xba\x83\x65\x6f\x74\xed\xdf\x2d\xc3\x24\x84\x48\xbf\x21\x2b\x52\x0a\xd8\xcc\xce\xf3\x8b\xad\xf8\x3c\xbf\x08\xa8\x3d\x4a\x5a\x51\xc0\x15\x29\x0e\x1b\xdb\x6d\x69\x29\x8d\x58\x8a\x68\x83\x07\x88\x16\x92\x33\x46\xfc\x0a\xce\x3c\x0c\x05\x5d\x9a\x48\x2a\xc4\x16\x79\xaa\x88\x3b\x64\x4e\xd4\x0c\x96\xad\x4a\xa2\x97\xfe\x66\x11\x1c\x9f\x6f\x16\x61\xef\x62\xf4\xb3\x5f\x84\x59\x18\x87\x55\x20\x57\x34\x30\x08\xfb\xf2\xa0\x2e\x11\x25\x48\x2f\x91\x28\x39\xef\x5f\x04\xca\x16\xbf\x0a\x6d\x53\xa1\x49\xff\x58\x40\x52\x19\x80\x05\xce\x1d\x12\x49\x8e\x1c\x3e\x45\xdd\x81\x28\x4b\x03\x03\x17\xd0\x39\x0b\x99\x26\x6a\x6f\x19\x2e\x38\xf0\xfb\x3b\x79\x31\x40\xd1\x79\xf8\x44\x3a\xb7\xcc\x71\xe8\x46\xac\x2c\x97\x6a\x8b\x7d\x44\x40\xc6\xfe\x88\xaf\x0e\x14\x51\xea\x17\xda\xb2\x6c\x9b\x02\x60\xc8\x9c\xc2\x50\xd1\x86\x01\xac\xcb\x05\x8c\x1e\x1c\xd3\x55\xf8\xd6\x4a\xa9\xec\x1a\xa5\xb6\x63\x08\xb8\xd0\xfb\x71\xb1\x7d\xdb\x6e\x5f\xd8\xd5\xbc\xb0\x56\xe6\xc3\xb0\x70\xed\x83\x81\xac\x26\x53\xb5\xc4\x58\x49\x15\x52\x92\x44\xc9\x11\xc6\xdc\xa8\xb7\x17\x3c\x2b\x79\x56\xdf\x12\xcf\x2d\x6d\x31\x5c\x44\x77\x0b\x9e\xcd\x63\x7e\xdb\x92\x00\x45\xd4\x9c\x33\x73\xa0\x76\xce\x2e\xbe\x4f\xce\xd9\xc5\xc6\xc6\x7a\xbd\xcd\xaa\x24\x5e\xc0\x6b\x37\x1f\x54\x93\x81\x9a\x5a\x56\x0b\xf4\x50\xa0\x07\x41\x78\x8d\x8e\x7e\x05\xdc\x82\x4b\x4a\xd1\xc0\xae\xda\x0c\x6b\x32\x7b\xd6\xf3\xa8\x21\x8f\x08\x89\x92\x7f\x78\xa4\x21\xdc\x04\x09\x17\x9f\x42\x43\xb6\x7c\x5a\x41\x83\xa7\x3c\xa3\x46\x9d\x7f\xaa\x76\xa2\x97\xac\xaa\x2c\xef\xde\xc3\x5e\xc9\x90\xcb\x20\xbf\xa4\xfe\x6d\x4b\x2f\x16\x1c\x7b\x92\xb0\xde\xc8\xd3\xdd\xf6\x8e\x1a\x14\x36\x4d\xb8\x38\xaf\x2f\x7c\x69\x9e\x6f\x09\xa4\x46\x4c\x14\x35\x6e\x23\x5d\x07\xb7\x36\x8b\x72\xfa\x5d\x84\x92\x55\x46\xbb\x61\x6b\x4a\x8c\x6c\xa7\x8d\x65\xf8\x95\xb1\xc5\x59\x39\x65\xf5\x8c\x71\x35\xe1\x76\x9e\xb4\x1a\x28\xe9\x25\xa6\x9e\xe4\x1e\x0e\x91\x9a\x14\xcf\x96\x54\xe0\x39\x72\x2c\x23\x6f\xc0\x87\xb1\x22\x9d\xdd\x0f\x4d\x3c\x38\x99\x8f\x8f\x65\x77\xcd\x72\x99\x08\xa0\xbd\x1e\xc4\x2b\x0f\xce\x8a\xf3\xea\xe2\xfb\xcc\xe7\x62\x35\x80\x6b\xd0\x36\x89\xcf\x93\x8b\x48\xe6\x6e\x15\x62\x59\x08\x8b\xf3\xe4\xe2\x07\x01\xaa\x1e\xfc\xa0\x12\x2c\x2d\x16\x07\x38\x09\x51\x24\xdc\x7d\x8a\xcc\x02\xcd\xed\x37\x2a\x02\xa8\xed\x55\x14\xe7\x85\x1e\x1d\x20\xd7\x79\x41\xd0\x9b\x49\xa7\xac\xee\x47\x78\xa5\x33\x37\xef\x10\x5d\x97\x0d\xe3\xb7\x1f\xe5\x75\x50\x9f\x07\xa6\x6c\x7d\x5f\x7e\xbd\xfd\x95\x76\xb8\x33\x81\xf7\xec\x4d\xc9\x2f\xcf\x3e\xbc\x7d\xf5\xf6\xa7\xd1\xda\x7f\x42\x0f\x54\xfb\xfe\x53\x3f\x64\x90\xcc\xb2\x3c\x5d\x2b\x27\x6b\x59\x5d\xad\x61\xa9\x6b\x12\x69\xdd\x0b\x42\x76\xa4\x54\x86\xd5\xbc\x63\x98\xaf\x8a\x32\xc5\x7c\x49\x94\x11\xe6\xcb\x9d\xe9\x88\xbc\x63\xf1\x54\x13\xe5\xed\xfd\xc4\x42\x00\x89\x83\x7f\x38\x89\x16\xdb\x75\xf9\xba\xbc\x56\x06\xfd\x30\x15\x28\x94\xed\x66\x02\x30\x56\x2e\xfe\x72\x52\x8e\xa3\x8f\x3e\x0f\xce\x9b\x8b\xa3\xe4\x7c\x76\xb1\x35\xfe\xbe\x3a\x9f\x5c\x74\xf1\xd1\xe4\x62\x2b\x12\x79\x5b\x3e\x22\x06\x41\x98\x9c\x4f\x2e\x36\xc7\x3f\x54\xe7\xb3\x15\x5f\x88\x95\x54\xa0\x6c\x09\x94\x0e\x79\xf1\xa5\xf5\x11\xae\x69\x73\xfc\x2e\x39\x6f\x2e\xbe\x1b\x6c\x8d\xbf\x1b\x84\x6f\xa2\xb8\x63\x8d\x0c\xa7\xd4\x5d\xe0\x8d\xb9\xd7\xb0\x80\xcb\x1a\xe1\x95\x93\xad\xee\x74\x2c\xac\x3b\x1d\xe1\x6d\x34\xdf\xea\xea\xef\x74\xeb\x4a\x4d\xcb\x5b\xb3\x46\x68\x19\x5d\x9d\x37\x17\x5b\xe3\xf0\x36\x08\x7b\xa2\x6f\xc0\x47\xca\x8e\x47\x0f\xb5\x20\x23\xf2\xaf\xfd\x22\xba\x5b\x86\x93\x10\x0a\xe0\x42\xe4\xf9\xb7\x20\xbf\x8b\x30\x0d\x3d\x2f\x08\x0b\x31\x43\x43\xa6\x44\xe0\xf9\xcd\x16\x7c\x7a\xe1\xe1\x11\xa5\x9a\xb4\x7b\x8f\x4c\xda\x6c\xe2\xff\xb8\x62\xb6\xc2\xfe\x82\x4e\x4f\x7c\xd7\x06\xcf\x3f\x21\xb0\x83\x3e\xea\x13\x1b\xff\xd6\x01\xa0\x3d\xaf\x8b\xbf\xa3\x18\x74\x28\x40\x2d\x55\xc1\x56\x42\x9d\x79\x55\x46\x97\x18\x4d\x6f\x05\x4a\xff\xe2\xfe\xde\x13\x3b\xee\xf3\x0b\xb5\x81\xac\xb7\xc7\x6c\x16\x5f\x65\x25\xc7\x9d\xe4\xda\xbf\x6f\x83\x01\x27\x8e\xce\x79\x58\x5e\x90\x0d\xe5\xda\xbf\x6f\x1b\x8b\x4d\x1c\xfd\xcb\xe7\x81\x93\xeb\x9a\x75\x00\x29\x5c\xef\x29\x3c\xb5\x0b\x8d\x23\x53\xab\x52\xce\xe3\x8e\x75\xb9\x0a\x31\x1e\x22\x5f\x8f\xa2\xea\xfe\x5e\xc5\x96\x89\xa2\x28\xd9\xec\x1b\x7a\x3f\x4e\x11\xa9\x38\xb5\x74\x25\xaa\x3e\x99\x01\x59\xd0\x95\x6d\x12\x69\x35\x9c\x6f\x6c\x2c\xfc\x1c\x4f\xad\x82\x1f\x16\x7e\x03\xca\x5a\x70\x7f\x6f\xd4\x10\x89\x02\xf0\xef\x05\x06\x22\xdf\xdf\x2b\xf5\x5b\x22\xa0\xa8\xc1\x42\x6a\x08\xaa\x44\x54\x6f\x89\x23\xe0\x50\x86\x44\x0e\xd3\x88\x96\x8d\x4e\x7c\x41\x38\x8b\xac\x46\x49\x87\xbd\x20\x1c\x47\xa4\x10\x70\xee\x0b\xc2\x79\x64\x57\x5e\xe8\xb2\xdf\x58\xdd\x4c\x9d\x3e\xcd\xac\x0e\x8c\xdd\xd6\xce\xc3\xe9\x23\xeb\x3f\x17\x02\x67\x7d\xbd\x86\xf9\xf4\x39\xe6\x19\x9c\x69\x88\x3d\xc6\x14\xaf\x88\xa2\xb7\x6f\x06\x55\x0b\x10\x2b\x52\x09\x98\xdd\xdf\xaf\xbb\x48\x63\x09\x33\x58\x73\x21\xaa\xda\x15\xfc\x78\x0b\x77\x81\x8b\xba\xa3\xa6\x99\x5b\x53\xda\x51\xd3\xbc\x55\xd3\x38\x08\x9f\x45\x57\xf7\xf7\xb7\x47\xfe\xe4\xfe\xfe\xcd\xfd\xfd\x33\xd4\x2d\xa4\xa4\x88\xd6\x7b\x21\x64\xa0\x39\x3f\x3e\x4f\x36\xc5\x86\xe9\x19\xbc\xa3\xd1\x11\x85\x4a\x16\xcc\x8e\x65\xb5\x23\x53\x3d\x3b\x86\xdc\x11\x5b\xc2\x1b\x9d\x54\x02\xf1\x4d\x3f\x03\x67\xb8\x6c\xe4\x79\x1d\xab\x07\xde\xc4\x71\xd9\xfd\x79\xa7\x48\x7a\xd8\xc1\x20\x00\xcf\x80\x4e\x91\xc9\x42\xb4\xf2\x4a\x8d\x77\x19\xaa\x39\xad\xac\xbf\x0f\x6a\xb1\xda\xcb\x3b\xb4\x87\x6c\xb4\xde\x0f\x57\x0c\xe2\x68\xbd\xbf\x0c\x41\x4e\x2b\x79\xbf\x4f\xe5\x7d\xff\xef\x59\x3d\x8c\x2a\x02\xcf\x10\x20\x59\xb2\x88\x5b\x46\x8e\x87\x55\x11\x70\xe2\x06\x8b\xaf\x9a\x01\xad\x53\x1e\xe2\xfd\x65\xa9\x1e\x17\x51\x76\x5e\x5c\x6c\xf9\xd5\x31\xe4\x38\xaa\xef\xc5\xa8\x67\x0f\xfc\xa5\xdf\xe1\xf3\x11\x7d\x11\xca\x90\xd0\x60\x67\x59\xca\x14\x6d\x0e\x1e\xdc\x03\x3c\xa4\xb8\x8a\x52\x3c\x88\x79\x4a\x37\xf3\xae\xea\x5a\x77\x0a\xcf\x22\xfa\xda\x5d\x6a\xd7\x8b\x95\x6e\x0d\x78\x0b\x2a\x9e\xc3\xc3\x58\x86\x67\x20\xc4\x9e\x14\x55\xdf\x4b\x3f\x65\x74\xaa\xfd\x41\xfb\x27\x83\x6f\xef\x0f\xc6\x2b\x59\x7a\xf2\x7e\x2f\xc5\x24\xf4\x17\x9f\x5e\x12\xbd\x33\x3d\xc1\x34\x58\x86\xb7\x8d\xeb\xd3\xb9\x77\xb3\x55\x36\xf5\x56\x39\xd9\x32\xcd\xf0\xc4\xb6\xdf\xc4\x99\xea\x3f\x50\x5a\xff\x49\xa5\xad\xf7\xa9\x69\x2a\x41\x5f\x51\x70\xd6\xd0\x63\xb8\xfb\x34\xc3\xc9\x0d\x6c\xdc\x6e\xa9\x4d\xca\x70\xf2\x5f\x18\x10\xe2\x2e\x62\x8d\xc5\x74\xd1\x3c\x4b\x12\x96\x33\x0e\x53\xf2\x48\x1f\x2c\x65\xee\x89\x86\xd9\x3c\x38\xdf\xfc\xe7\x1a\x1e\x95\xaf\xcd\xcb\x2b\x96\xae\xd5\xe5\xda\x7f\xd2\x1e\xff\xa7\x39\xd4\x8b\x8b\x74\xed\x3a\xcb\xf3\xb5\xa2\xc4\x77\xd3\x9a\x85\x10\x14\x18\x88\x6c\xd2\xd4\x0d\x67\x6b\x57\x8c\x57\x42\x36\x88\x5d\xc8\x7b\xdc\xd7\xfc\x59\x29\xef\xbc\x38\x32\xed\x3b\xce\x46\xb5\xdb\xfc\xb0\x8a\xba\xcc\x4a\x61\x12\xbd\xc3\x98\xcd\x77\x4a\xe7\x1a\x95\x5a\xfd\x5a\x86\x4d\xe7\xfd\x23\x23\x3e\x78\x54\x28\xa2\x97\x51\x41\xe6\x84\xdc\x2a\x83\x5e\xab\x9e\x3b\x43\xed\xa2\x33\x60\x36\x5b\x8a\x9d\x90\x2f\xaf\xd5\x89\xf6\x64\x3e\x57\x89\xe6\x11\x51\x64\x39\x87\x2d\x22\x79\x4c\x65\xd4\x23\x7d\xa4\xb0\xe5\x05\xe1\x24\xaa\x8f\x9b\xfb\xfb\xc5\xfd\x7d\xf2\x7f\x06\x51\x14\xe5\xff\x67\x70\x9c\x8d\xe2\x51\x15\xa6\x51\x7d\x9c\x8d\x2a\xfd\xee\x28\x9b\xd4\xa3\x89\x8f\x58\xfd\x8d\x8d\x5c\xfd\x58\x5f\x6c\x6c\xd4\xc7\x78\x0d\x65\xab\x3f\xe2\x52\x29\xa9\xcb\xc5\x28\xf5\x39\x6a\x1d\xd2\x31\x58\xa4\x95\xba\x81\x8e\xc3\x13\x9f\x4b\x6d\x65\xb9\xf4\x99\x32\xf4\xa7\xec\x2a\x4b\xd8\xfb\xec\x86\xe5\x1f\xc4\x70\x7d\x3f\xb8\xbf\x5f\xff\x2c\x3a\x43\xb4\x8e\x42\x79\xe5\x2a\x4b\xc2\x84\x58\x9b\xb8\x96\xb0\x72\x27\x37\x73\x0d\x81\x63\x15\x82\x74\xae\xac\xb1\xd9\xc4\x9f\xd3\x0a\x16\xc7\xfa\x02\x49\x65\x2e\x66\x6e\x55\xd6\x01\xc7\xa6\x52\xce\x46\x5b\x89\x34\x3b\x19\x10\x68\x76\xe1\x98\xb4\x6b\xf2\x70\x99\xe8\x90\x2d\x75\x46\x51\xe2\xb5\x05\x40\x75\x33\x8c\x37\x36\x66\x41\x7e\x3e\xbb\x88\xb0\x47\x79\x5c\xb3\x61\xea\x7b\x9b\xe3\x4d\x6f\x71\x13\xae\x79\x9b\x73\xfc\xd1\x0b\xbc\x30\x3f\x5f\x5c\x44\xbd\x30\x3f\x9f\xc0\x7f\x96\xeb\x94\xa1\x87\xb9\xce\xf2\xc6\x26\xc1\x56\x7f\xd4\x0f\xa7\x56\x0f\xe0\x5e\x1c\x14\x3b\xff\x8f\x37\x58\xf0\xf8\x3f\xa6\x76\xd1\x8b\x4d\x4f\xb4\x63\x02\xe7\x24\x57\xd1\x9d\xe5\x59\x36\x22\xdc\x48\x3c\xc3\x8d\xb4\x44\xe5\xe5\xca\x92\xa0\xda\x23\x42\xe6\xe6\x3a\xad\xb7\x97\x1f\x49\xb6\xb3\xc1\xb4\x51\x40\x55\x71\x24\x82\x10\xae\x37\x86\x99\x6e\x15\xe7\x2c\x43\x23\x11\x95\x4c\x3e\x7c\xdc\xb6\x16\xaa\x68\x68\x6b\x2f\x3a\x55\x2e\xd5\xf4\xba\x6d\xd4\x01\x47\x44\xd3\xf1\x90\xba\xa2\x14\x2b\x7c\x9c\xe1\xa9\x8b\xe2\x9c\x5d\x1c\xd7\xdb\x15\xab\x8d\x4b\x1f\x0b\x05\x34\x18\xd5\x2d\x67\x3f\x26\xad\x94\x74\x67\xbe\xb1\x41\x2b\xb3\x69\xa6\xdf\x32\x79\xe1\xdb\x1f\x75\xd0\xb6\x2c\x5e\x97\x71\x3a\x72\x0f\x48\x8d\x3f\xd9\xa9\x5f\x86\x75\xc8\xc2\xc2\xdd\xdb\xc6\xd1\x6b\xbf\x20\xea\x5a\x26\xd1\x1e\xf5\xda\x6d\xa1\x28\x57\x5d\xf3\xca\xa7\x45\x18\x8b\x23\xc3\x38\x08\x5f\xf8\x75\x68\xa4\x7e\xf1\xa8\xbf\xec\x12\xde\xf7\x73\xb9\x48\xc6\xec\x5d\x2e\x43\xc6\x56\x84\x4c\x20\x9e\x38\xe0\x87\x1d\x3f\xfd\x02\xeb\x31\x4d\x8c\xee\x96\x47\xb7\xd6\xc3\xe4\x8e\x5f\x58\xd4\x8e\x68\xc7\xd9\x65\xc3\xaa\xda\xf1\x29\xe3\xd2\x1b\x2b\x58\x62\x31\x98\x8a\x4a\x9f\xa4\xb6\xc7\x70\x9f\x60\x96\x55\x81\xed\x2e\xa9\xe6\xdb\x09\x6e\xed\x2b\x41\x4b\xe2\x8f\x76\x47\x1c\x54\x85\x82\xae\xbd\x82\x45\xc2\xf2\xf8\x1a\x9d\x5f\x2c\x1d\xcf\xed\xa8\xde\xd8\xa8\xb7\xff\x04\x2b\x27\x06\xc9\xab\xa9\xb7\x27\xc6\x2d\x92\xd9\x85\xc8\x2e\x56\x78\x6f\x47\x77\x4b\x6b\x1e\x39\x6d\x26\x3a\x51\x6c\x7e\x77\x1e\x21\xd7\xc1\x1d\x6f\x97\x7f\x5e\x5f\xb8\x74\xb0\x32\xef\xef\xef\x96\xb4\xe8\xe3\xd8\xca\x1e\xdd\x2d\x75\x3c\x64\xd2\x68\xcb\x09\xad\xb3\x5f\x0f\xde\x14\x13\xaa\xdb\x88\x2d\xc3\xae\xf6\xb2\x8b\xe0\x91\x5b\x61\xd2\x8d\x6b\xab\xd6\x6e\x5c\x4e\xf3\x56\xb9\x02\x92\x4b\x10\x6c\x1b\x25\x41\x00\x5e\x61\xf0\xd3\xa7\xbb\x2a\xbd\xd9\xd2\x4d\x0c\x05\x10\x38\xc7\x10\x04\x19\xd0\x57\x91\x82\x2c\x4a\x58\x87\xeb\x47\x95\xf4\xd5\xc5\x26\x74\x7b\xf9\x76\xf8\x5a\x46\x95\xd2\xc2\x9f\xf9\x2c\x94\xd1\x21\xb1\x56\x2f\xc4\x48\x1e\xed\xa9\x74\x62\x62\x5c\x06\x3a\x0c\x6a\x8a\xac\xbe\xfa\xab\x0f\x5d\x5f\x75\x35\x77\x75\x11\xaf\x3a\x2b\xee\x72\x6c\x5e\x5d\xc6\x27\xab\x8c\x8b\x00\x9f\x61\x67\x6c\xfb\x53\x9d\xe5\x55\xd4\xed\xb5\x8e\xda\xd9\x31\xfe\x37\x62\xc1\x36\xaa\xdd\xf0\x49\xc8\xc8\xa2\x5e\x45\x3f\x89\xb4\x9a\x09\xd1\xef\x61\xbd\x1d\x47\x8c\x39\xcf\x6c\xf6\x77\x1f\x7d\x66\x13\xc5\xa4\x9c\x07\x53\x56\x93\x08\x25\x18\x9c\x59\x6c\xd9\x1f\x09\x65\x12\x66\x6d\x8c\x85\xcc\x7b\x55\x9d\xea\x00\x2d\x47\x34\x6e\x20\x86\x73\x6f\xf2\x5c\x6c\x82\xee\xef\xf5\xe5\xa8\x15\xef\x3e\x5b\xe1\x5a\xd6\x12\x8c\xa8\x33\x66\x10\x54\x87\x89\xbd\x4c\x3d\x03\x6f\xfe\xb5\x92\xaf\x19\xd2\xea\xb5\x09\x3f\x17\x4b\xb2\x09\x7e\x49\x63\x24\x62\x24\x94\x75\xab\x16\x73\xa7\x19\x6f\xf7\x88\x16\xc9\x78\xcb\x5e\x3c\x4e\x3c\xf0\xba\x64\xe7\xbb\x17\x91\x07\x7b\xf9\x5d\xa1\xbd\x75\x52\x52\xe8\xa0\x95\xcf\x82\xf3\xde\x85\x29\xd4\x5c\x9a\xb8\x5b\xca\x17\x5e\xfa\x3d\xf9\xc4\x8b\xf7\xc5\xdb\x94\x31\x17\x27\xbc\x9c\x3f\x97\x4f\xce\xfa\x45\x70\x11\xc1\x81\x98\xd7\xeb\x0f\x86\x3b\xbb\x7b\xfb\x07\x87\x82\x7f\x1e\xa8\xb5\x5e\x2d\xc1\xe4\xa5\x3f\xf9\x12\xb3\xb9\x9e\xdd\x97\x5c\x71\xa7\x74\x47\xd1\xdd\x94\x4d\xa6\xb3\xec\xcf\xaf\xf9\xbc\x28\x17\x97\xbc\xaa\x3d\x65\xe5\xf1\x56\xa8\x4c\xfc\x9c\x5d\x44\xf0\x60\x79\xf7\xf7\x86\x5a\x20\x7f\x2d\xda\x0b\x49\xcf\x49\xd3\x64\x5c\x98\x52\xbf\x84\xde\x5f\x2e\xfd\xe0\xd8\xfa\xc6\xd9\xb7\x9b\x07\xe4\xaa\x30\xc1\x58\x8b\x79\xd4\x3f\xca\xdb\x01\x7d\xf2\xcd\x4d\x83\x0e\x4f\x69\x14\xb2\x65\x26\xd2\xd9\x79\x7e\x11\x04\xa5\x0a\xda\xd3\x04\x1b\x1b\x7e\x02\xcf\x67\x9c\x37\x17\x81\xf4\xe2\xa9\x22\xee\x17\xe6\x89\xc9\x45\xd4\x3b\x5a\x7c\xaf\x6b\x59\x6c\x6e\x06\x99\x2a\xa0\x3a\x5f\x5c\x60\x19\xe2\x97\x28\x06\xfe\x37\x41\x95\x92\xe5\x23\x13\xd7\x5a\x30\xa5\x2f\xc0\x97\x2f\xd3\xbc\x1c\xc7\xf9\x97\xa6\xc8\x2e\x1b\xf6\x25\x4b\xbf\x7c\xa1\xe1\x5e\xdb\x62\x0a\x5e\x13\x02\xd7\x68\xb8\xe1\xda\x77\x1f\xea\x7d\x82\x04\x59\x1d\xdb\xb9\xde\x3e\xfd\xf5\xd5\xd9\xab\xb7\x3f\x89\x5f\x6f\xcf\x4e\x3f\x9c\x9e\xa8\x5f\x12\xf8\xeb\xab\x33\x80\x7d\x7a\xfb\x06\x0e\x36\x4e\xec\x78\xd0\x8e\x31\xcd\x89\xfa\xec\x9a\xca\xee\x96\x47\x52\xa4\xac\x47\x2c\xb0\x5f\xcc\x08\xb2\x89\xff\xa4\x80\x4c\xf0\x72\xc2\x9d\x25\x15\xed\xe8\x53\x5a\x83\xb7\x27\xdb\x09\xab\x12\x9e\x2d\xea\x92\x1f\x3f\x92\x0f\x55\x08\xd5\x92\x0b\x94\xfb\x7b\x2e\xd4\xe6\x15\x91\xae\xd0\xeb\x71\x04\xa3\xc4\xce\x0b\x1d\xa5\xce\xd0\x98\x85\xf5\xd2\x2f\xfc\x3e\xf8\x93\x57\x7e\xe1\xf7\xe0\x01\x78\xf1\x6b\xd8\x83\x97\xdf\x0b\x7f\x38\x08\x8e\x0a\x7f\x6f\x10\x1c\x75\x85\x50\x7d\xc2\xbb\xc8\x49\xe4\x35\xc5\x1c\xfc\x87\x53\x31\xe0\x66\xb8\x94\xbf\x8c\xc7\x6e\x32\x99\x29\x07\x35\x3f\xc2\x10\xa2\x1e\x2b\x6a\x06\x07\xee\x47\x64\xec\x9b\x23\x9c\x21\x98\x2b\x3f\x94\x2c\xb2\x38\x32\x8c\x03\xe5\xc2\xc7\x18\xc0\xa2\x6b\x1b\xa8\x3b\xc5\xe9\x8b\x8b\xdc\x8e\x91\x1d\x16\x32\x4a\x36\x1e\x9c\x87\x59\x54\x6c\xc3\xee\x1c\xb6\x20\x3f\xf1\xb2\x59\x84\x71\x94\x6d\x6c\xac\x67\xdb\x59\xf5\x46\xf4\x35\x2b\xa6\xc7\xf5\x36\x34\x70\x54\xc3\xfb\x68\x31\xd7\xa1\x3b\x65\xfa\x63\x1d\xd7\x4d\xa5\xee\x4d\x64\xc5\x71\x7c\xec\x97\x51\x1e\x3a\xf9\x4d\x30\x2a\xa3\xc5\xa8\x8c\xea\x6d\x49\xc8\x77\xc5\xe9\x4d\x06\x36\x55\x95\x14\xf5\x1c\x27\xa3\x5c\xa9\x67\xe0\xa0\x57\x37\xd5\xa8\x14\x0a\x66\xc1\x6e\xea\xe7\x71\x9e\x8f\xe3\xe4\x2b\x56\xc7\xff\x27\x5f\x0b\x8e\xbb\x5e\x0b\x8e\xe1\xba\xfd\x2c\xcb\x55\xf4\xd7\xb6\x40\xb9\x73\x68\x0a\x97\xfe\x97\xa2\x03\x53\x56\x9f\x30\x9e\x5d\xb1\x54\xd0\x84\xbd\xe0\xe5\x5c\xb0\xf9\x8a\x87\xfe\xc4\x9e\x1d\xde\xc0\x44\xfa\x45\x51\x72\xac\xc8\x91\x2f\xb1\xd0\x30\x86\x20\xa0\x65\xc1\x8a\xfa\x24\x4b\x61\xc8\xac\x35\xdd\x68\xb6\x38\x0a\xbe\xba\x25\x49\x87\x26\x70\xcb\x71\x77\x76\xfa\x8c\x03\xc2\x17\xc8\x98\x9e\xb8\x45\x12\xcd\xb7\x5e\xd6\x42\xcd\x17\xdb\x79\x64\x70\x04\x5f\x14\xeb\x51\xd4\x6c\x6c\x88\xff\x16\xf0\x56\x7a\x13\x8c\x28\x0c\x82\x38\x6b\x6e\x0f\x96\x1d\xad\xef\x87\xb5\xdd\xda\x5f\xb2\x3c\xff\x84\xec\xd4\xea\x38\x5e\x6d\x7a\x4b\xb8\xc6\x87\x8f\xa7\x3a\x48\x74\xd5\x7a\xb0\x07\x6d\x08\xa4\x73\xdb\x35\xa2\x6a\x13\x52\x54\x47\x45\xc4\x43\x94\xb1\x7c\x63\x43\x85\x44\x31\x2a\x2c\xdf\xd8\xf0\x21\xf6\xe0\x4d\x56\x87\x35\x04\x21\xac\xc1\xe2\xa2\xb7\xdb\x6a\x6a\x1c\xab\x1f\xa3\x3a\x08\xef\x04\xfe\x88\x85\x72\xb6\x85\x32\xa7\x58\x8a\x36\x53\x32\xb4\x83\x30\x1a\xcd\x11\xaa\x5e\xef\x07\xb2\x7d\x51\xfd\x00\x2d\xa4\x07\x41\xa6\x03\xd0\x4f\xb2\x22\x3d\x79\xf7\xe6\xad\x50\xb3\x40\x6b\x3f\xaa\xa3\x28\x6a\xf0\x26\xee\x82\xf1\x49\xc9\xe7\x30\x47\xfd\x22\x64\xf2\x91\x48\x05\xbe\xc9\x6a\xbf\x08\x64\x70\x3b\x43\x3d\x6b\xaa\xcb\x8d\x13\x65\x11\x8c\xc4\x25\x03\xce\xd7\x30\x2d\x7c\xc5\xe5\xc9\x12\x86\x8b\x56\xdc\x69\x1a\x07\xe9\x66\x8d\x19\x12\x5c\xbe\x7c\x96\xe0\x44\x75\x45\xdd\xf1\x43\x99\x44\xfe\x8d\xea\x10\x1f\xde\xa1\x7c\xe3\x8b\x55\xa5\x3c\xce\xd4\xf0\x65\x58\xe5\x91\x58\xcb\x8e\x7d\xd2\x92\x12\x85\x9a\xcf\xc2\x52\x6d\x0d\xe3\x09\xfb\xe8\x76\xb5\x59\x86\x34\x5e\x79\x61\x7f\x0d\xcf\x9b\x88\x02\x8a\xed\xb2\x38\xd3\x2d\x3d\x2d\x52\x9f\x85\xb1\xf3\x65\x67\xf9\x8b\x07\xcb\x67\x29\x14\xbf\x54\xae\xe7\x72\x68\xff\x66\x49\xf8\x9a\x66\x4c\x39\xa3\x43\x94\xa0\x72\x65\x0d\x9a\x98\x2e\xbc\x83\xd4\x47\x85\x4b\x52\xc1\x6c\xec\x21\x7a\x6a\x29\x62\xb7\xb6\xb6\x8a\x00\xb2\x42\x68\x84\x16\x51\xe5\xe4\xb5\xbf\xed\xac\x29\x7f\xa8\x06\x4d\x8e\x47\xc9\xfa\xb4\x62\x84\xe4\x6b\x4d\x64\x2a\xc3\xd4\xac\x87\x37\x4f\x08\x8e\xba\x93\x4d\x61\xb2\x28\x65\xb2\x68\xad\xae\x50\x1d\x6d\xac\x33\xf9\xf4\x23\x14\xb5\x25\x56\xd4\xa3\x8b\x7a\x3a\x33\x29\xb3\x1d\xc4\xd5\x3c\xb1\xde\xa3\x0f\xac\xd9\x0d\xd3\x1f\xf1\xe0\x0e\xfd\xb0\xc5\x9a\xd0\xa1\x1a\x30\x7c\x65\x7e\x55\xaf\x2d\xa2\x45\xeb\xfd\x0e\x4c\xd1\x66\x87\x33\x5a\xa1\x5a\x3b\x29\x50\x28\xb7\x70\xdc\xda\xd7\x1b\x1b\xeb\x84\x7d\xe3\x34\x3d\x2d\x52\x65\x3e\x39\x62\x1b\x1b\xeb\xb6\xc8\xb0\x11\xd4\xc5\xf0\x8e\x2c\x9f\xb5\x1b\xad\x04\x7f\xbd\xb1\x41\xde\x42\x68\xa1\x85\x75\x10\x8c\x1e\x44\xe8\xc1\x98\x71\x56\xa4\x8c\xaf\x78\xd6\xce\x5a\xea\x85\x56\x20\x74\x94\x80\x84\x15\xa0\xaf\x9e\x43\x07\xc0\x31\x02\xdc\x3a\x39\x2b\x42\x57\x9a\x6b\x63\x88\xda\xd6\xdc\x2d\xd5\xab\x8a\x61\x19\xdd\x2d\x8d\x8d\x05\x4f\x0e\x02\xf9\x96\x6b\xef\x88\x7f\x9f\xd1\x50\x09\x45\x94\x9d\xf3\x8b\xb0\x26\x7e\x11\x3f\x44\xbd\xfb\x7b\xbf\x54\x9b\x08\xe3\x27\xb1\xf4\xeb\xf0\xdc\x53\x6d\xf2\x70\x23\x2b\x1f\x3f\xe3\xdb\x59\x11\xea\xdf\x54\x49\x35\x50\x6b\x81\x33\x60\x5c\x17\x4c\x9a\xd9\x5f\x31\x0b\x59\xaa\x18\xe4\x6b\x6b\x9c\x0d\xbc\x74\x6b\x37\x0b\x44\x0b\xc6\x52\x0b\x64\x55\xa8\xe5\x9f\x0b\x62\x69\xe8\xa9\x41\x21\xde\xc1\x85\x1e\x55\xb8\x6f\x77\x84\xe7\x2b\xe6\xe5\x9a\xe7\x92\x7c\xdb\x65\x91\xdf\x52\x2f\x14\xf3\xb6\x4d\x5e\x16\x4c\x1e\xa3\xf8\x59\xc8\x83\x65\xc8\x97\x3e\x29\x41\x29\x74\x64\x83\x96\xfa\xc1\xdd\x72\xa2\x96\xe8\xb3\xdb\x05\xab\xa2\x96\x72\xcd\xb7\xf1\xc5\x8e\x65\x38\x41\xce\x7a\xfe\x20\x3a\xbd\xe4\x24\x3e\x11\x6c\x29\x51\x45\x52\x36\x07\xb5\xf2\xbb\xac\x18\xad\xf7\x43\x3a\xee\x22\x6d\x8d\xb8\x00\x48\x1d\x60\xbd\x2f\x55\xb7\xf5\x5e\x08\xaa\xdc\x7a\x2f\x94\x63\x31\x4a\x43\x33\x52\x26\xc1\x52\xfc\x2d\x90\xd5\x0f\x8d\x00\xa3\x31\x4a\x45\xab\xcc\x5e\xb3\x17\x4e\xd4\xe6\xb2\x2f\x7e\xaa\xbd\xe4\x40\x25\x4e\x4f\xa2\xa1\xc4\x11\xf0\x1d\x19\x0b\xd6\xef\x89\x05\xb9\xcc\x6f\x27\x59\x9e\x07\xfe\x84\xbe\xce\x33\xfb\xcb\xc6\x0d\x08\xdf\x0d\xa6\xb5\x8f\xb3\x78\xc1\xa2\x5a\x71\xb0\x4c\x53\x03\xc6\x91\xcf\x23\xd8\x9b\x6f\x6c\x70\x52\xd0\x91\xfb\x0d\xc8\x8b\x76\xd1\xb8\xcd\xf9\x9b\xc6\x17\xcb\x90\x52\x75\x98\x08\xc0\x2e\x00\xf6\x81\x7e\x7f\xff\x6f\x99\x06\xf4\x27\x89\xde\xff\xf9\xc9\xff\xfe\xc0\xda\xc1\x36\x1c\x38\xa3\x61\x40\x57\xe4\x3e\x96\x62\xed\x2c\x88\x4d\x5a\xdf\x98\x91\x86\x69\x51\xca\xda\x2c\xae\x8a\x7f\xd4\x6b\x63\xc6\x8a\xb5\xac\xc8\xea\x2c\xce\xb3\x8a\xa5\x6b\x5b\x6b\x55\xb3\x60\xdc\x0f\x2c\x0c\xb4\x59\x1b\xe3\xb4\x7a\x6d\x45\x76\x0c\x8e\x14\x2a\x9b\x72\x96\x19\x5b\x2d\x01\x2b\x5f\xb7\x84\x47\x0c\xe0\x59\xf7\xa7\x1b\x4c\xc2\x32\xf2\x57\xd9\x4c\x82\xed\x59\x5c\xa4\x39\xc3\x79\x89\x07\x95\xb9\x9f\xc3\x75\x08\x63\x11\x91\x56\x0b\x8a\x3a\x2a\x43\x78\x9f\xe2\x03\x2c\xa5\xa3\xf5\xde\xf2\x7f\xd6\x6c\x91\x75\x99\x2d\xb2\xbf\x61\xb6\xb8\x23\x7b\xa0\x75\x62\x34\x60\xe9\x72\xb9\x0c\xb3\x27\x58\x1e\x14\xbe\x8e\xcd\x24\xed\x67\x91\x20\x42\xf6\xb4\x4d\xbc\xfe\xa4\xff\x17\x2c\x28\xca\x5f\x8d\xa8\x1a\xb5\x35\x7e\xca\xe1\x48\x21\x8c\xea\x6d\x32\x48\xc7\x20\x2e\xa7\xac\x7e\x85\x7c\x0c\x84\x7b\x13\x2f\x16\x59\x31\x0d\x60\x05\x1c\x29\x0c\x50\xfc\x9c\x6c\x78\x46\xc1\x1a\xf3\x3e\x10\x8c\x36\xa0\xb3\xc1\xaa\x50\xbb\x40\xa2\xff\xa9\xe6\x06\x47\x4c\x4c\x00\x90\x05\xf7\xf7\xf2\x1d\x4e\xb3\x5b\x80\x6b\x04\xf6\xfe\xa1\x0e\xac\x11\x70\xb7\xdc\x1d\x96\xf4\xc4\xbf\x5b\x86\x35\xa9\x52\x85\x8d\x46\x8d\xa1\x38\x87\x26\x5c\x84\x86\x86\xc5\x12\x5e\xed\x0a\xb3\x87\xd5\x46\xd4\x04\x6b\xf9\x80\x0d\x30\x80\x0c\x8b\x95\xe5\xe9\x8b\x58\x30\xf6\xed\xff\x16\xdd\x90\x09\xdd\x50\xb5\xd2\x0b\x3d\xda\x46\xef\x42\x2c\x21\x0d\x8d\x46\xa6\x89\x05\x62\xa9\x45\xb3\xa7\xa9\x85\xf2\x40\xb0\x3e\xce\x46\x44\x7f\x02\xa9\xa0\x14\xa8\x3a\xe4\x61\xf6\x80\x0a\xb5\x78\x8a\x2a\xa4\x9f\xea\x93\x1a\xd4\x76\x56\x7d\x90\x21\x50\x96\xe1\xc2\xd6\x8c\x16\x8e\x66\xa4\x69\x32\xf2\xd2\xec\xca\x0b\x29\x5d\x46\x9d\xbe\x86\x4b\x69\xbd\xf6\x7b\x61\x46\x34\x91\x05\xd5\x44\x26\x8f\xbf\x13\xa8\x1f\xbe\x07\x1f\x54\x85\x7c\x67\xbd\xe8\x26\x24\x87\xf3\x28\xab\xd9\xea\x88\x55\x48\x7a\x7c\x32\x31\x30\xf2\x90\x94\xbe\xe7\xd6\xf1\x7d\x92\xb3\x98\x3f\xb5\x84\x4a\x9d\xec\x46\x51\x64\x2a\x56\x2a\x34\xd9\x75\xb1\xb0\x07\xdb\x0d\xc0\xcc\xee\xef\xd7\x8b\x80\x6e\xdb\xb4\xd2\x4d\x4a\x09\xdd\xcf\x6b\x7e\x7b\x47\x94\xf3\x9e\x3a\x26\xac\xf1\x44\x57\x65\x49\x8d\x00\x76\xc6\x16\x92\x8d\x80\x8e\x3e\x02\x61\xb9\x5c\x77\x0e\x87\x8b\xa8\x6b\x6b\x60\xda\x73\x6c\x7e\x8e\x32\x59\x01\x13\xbb\xeb\x6c\x09\x2d\xe9\xfc\x9c\x12\xf6\x98\x26\x46\xb1\x29\x82\x47\xf1\x52\x3d\x47\x98\x84\x79\x74\x7e\x11\x36\x62\xdf\xbf\x88\xb6\xfa\xf4\xed\xb4\xe0\xae\xd9\xd8\x48\x36\x36\x7c\xc8\x4d\xe4\xb4\x3f\xce\xa3\x44\x85\xdb\xc8\x83\x91\xf8\x28\xcc\xb5\xa3\x59\xea\xd3\xb8\x4e\xa9\x8c\x71\xd9\x28\x89\x55\x09\x5d\xb9\x89\xd6\x7b\xe4\xac\x3a\xd7\xca\xda\x11\xea\x73\x49\x94\x43\xab\x8e\x36\x37\x17\xdf\xd7\x47\x41\xb2\xb1\x91\x9c\x2f\x2e\xb6\x79\x53\xf8\xc1\x11\x54\x68\xbe\x5a\x26\x68\xa0\x80\x36\x3a\xa7\x7b\x5c\xec\xa0\x09\x11\xf4\xc5\x49\x02\x13\xb2\x4d\xf0\x0c\xc7\x20\x1a\xeb\x42\xc7\xeb\xfa\x86\x5b\x25\x85\x6e\x11\x30\x24\x3e\xeb\x66\x17\x4e\xd9\xa5\xcd\x2c\x9c\x32\x8b\x60\x15\x51\x8e\xf5\x4a\x5a\xa8\xec\xce\x93\x46\xa8\x3a\xa8\x0d\x70\x1e\xdf\x46\x35\x7d\x12\x2d\xb8\x5b\x96\x60\x76\x38\xcb\x3a\x0d\x42\x62\x06\xca\xb7\xc2\x1d\x45\x79\xab\x0f\x54\x68\x47\x23\x32\x87\x9e\x51\xff\xa8\x68\x2b\xd8\xe8\x5c\x50\x6c\xf5\x2f\x88\x82\x5d\x5c\x1c\xe5\x18\x05\x4e\xd4\x88\xed\x0f\xc2\x3e\x3c\x0d\x81\xdf\xdd\xdf\x37\xf7\xf7\x95\x9f\x06\xcb\x70\x46\x94\x31\xde\x14\x2d\x8d\x65\xd2\x14\x52\xbb\xc6\x23\x31\xdd\xf7\x60\x19\x96\xdb\x75\x56\xe7\x2c\xf2\xc6\xbc\xbc\xae\x18\xf7\xc2\x72\x5b\xfe\x14\x4a\x52\xb9\xcd\x8a\x2b\x21\x6f\xcb\xed\x98\x4f\xaf\x04\xa3\x97\xdb\xd2\x07\x1d\xa3\x03\x28\x87\x74\x44\x2a\x8b\x68\x2c\x70\x53\x6d\x2b\x80\x74\x59\x24\x0c\x7f\x4c\x26\xf0\x3f\xba\x65\x5a\x38\xd2\x53\x33\xcf\xb5\x23\x0f\x80\xd9\x3c\xab\xe1\xc7\x82\xb3\x05\x2b\xec\x72\x25\xec\x5d\x91\xd8\x65\xe5\xba\x88\xb6\xe8\x3f\xbf\x10\x0d\x15\xea\x72\x56\x4c\xad\xfc\x96\x90\x5d\xf0\x32\x61\x55\xa5\x90\xd7\x32\x14\xb3\xda\x2f\xdf\x03\x02\x26\xd7\x69\x5b\x79\xf5\xbe\xf3\x20\x6f\x96\x66\xfc\x69\x95\x00\xea\x8a\x2a\x9a\x79\x5c\x7d\xed\xf0\x14\xe8\x75\x38\x24\x48\x4b\x9f\xbf\xb7\x07\xa1\xa0\xb3\x62\xd1\xe0\xce\x7f\xa1\x1c\x7e\xcb\x45\x3d\x85\x05\x17\xde\x27\xcd\x59\x02\xf9\xe3\xa6\xae\x31\x3f\x8d\x6b\xb1\x55\x02\xa8\x58\xae\x21\xdc\x3a\x68\xc8\x62\xcd\x1e\x89\x7f\xa0\x3f\xc3\xdf\x14\x72\xea\xd9\xe8\x0e\x00\x4b\x01\xb9\xab\x67\x2c\x4e\x5b\x48\xf0\xb6\xe3\x9d\xca\xca\xb3\xe2\x2b\xb4\x00\x8e\xe0\x01\x21\xcf\x46\x77\x79\x06\x3f\x17\xa3\xbb\x05\xfc\x98\xf5\xf5\xaf\x81\xfe\x35\xd4\xbf\x76\xf4\xaf\x5d\xfd\x6b\x4f\xfd\x92\x9d\x2b\x43\x24\x42\x19\x96\x4d\x8d\x3f\x64\x67\x4b\xd3\xd7\xd2\x74\xb5\x54\xb4\xba\xd3\x34\x5b\x1a\xa2\xdd\x11\xf2\x2d\x97\x61\x1c\xdd\xe9\x0d\x0f\x3e\x5c\x29\xc9\x15\x8e\xe3\x8a\xa9\xff\x27\x65\x81\x44\xe6\xf8\x20\x56\x8e\xff\xcd\xe7\x71\x01\xc4\x60\xf3\xb1\xf4\xaa\xe6\xf1\x1c\xbe\x9a\x01\x66\x36\x9f\xc2\x7f\x6a\x10\xb3\x0a\xb4\x44\xf1\xf3\x2b\xbb\x9d\xb2\x82\x52\x72\xce\x6a\xa8\x78\x11\xf3\x78\x0e\xa4\x2d\x1b\x9e\x40\x69\x35\x8f\x13\xc0\xb9\x1e\xe3\x8e\xaf\x6a\x35\x7b\x1e\xe3\x60\x55\x57\x53\xc0\x48\xda\x18\x19\xd4\x52\xc2\x5f\xa8\x79\x5e\xc1\x5f\x41\x39\xf1\xc3\x03\x0f\x30\x70\xb1\xdd\xba\x99\xe7\x1e\x74\xa8\xe4\x2c\x9b\x16\xa8\x0b\x03\x77\xb1\x2a\x81\x26\x09\xb9\x83\xc3\x1e\x7d\xf7\x47\x75\xff\xc7\x77\xdf\x99\xa5\xb3\x21\x12\xfb\x8b\x72\xb9\xad\xc1\x9f\x14\x61\xc9\xb8\x8a\x18\x49\xd7\xf1\x14\xc2\xf2\xa9\xc0\xa8\x5f\xd0\x95\xbc\x0b\x86\x8f\xf4\x3b\x40\xe5\x2e\x00\xa0\xaa\x8e\x93\xaf\x10\x8a\x11\x92\xb2\x0b\x6a\xa3\xaa\xe0\x70\x5f\x11\xc2\x7d\x47\x72\x37\xc9\x64\xf8\x6f\x5a\x56\xae\xae\xdf\x9f\xc5\x53\x30\x23\x45\x1e\x05\x55\x5e\x26\x4f\x15\x54\x37\x8f\xd7\xd7\xad\xf4\xb6\x85\x3e\x72\x32\x6f\xe6\xf9\x9b\x32\x65\x6e\x65\xda\xe3\xdb\xad\xd2\xce\xf8\x0b\x95\xdb\x1f\x3e\xdc\x0c\x05\x3d\x2b\xbf\xb2\x22\xfb\xc6\xe0\x21\xbb\x68\x45\x5e\xa0\x46\x50\x01\x60\x91\xe5\xbe\x85\x0e\x38\x81\x19\xfb\xed\xb2\x80\x6b\xfc\x3c\x2b\xf4\x29\x6e\x0b\x2e\x1d\x3d\x0b\x7f\xa7\x1f\xf8\x4d\x58\xf8\xfd\x61\x2f\xd8\x06\x67\xd1\xd3\x79\x56\xd7\xa2\xee\x86\xac\x9d\x5f\xf0\x4c\x5b\x3d\x5b\x6a\x89\x6d\xb5\x07\xa2\xc3\x7c\xec\x34\x7c\xfb\x4b\xc5\xe0\x03\x78\x9d\xf4\xfb\x88\x1d\xb7\xf8\x64\xe4\x42\x1e\x2c\x62\x8b\x75\xe3\xab\x06\x6c\xf6\x1d\xbe\x73\x4b\x9b\xb2\xfa\x99\xf4\xdc\xc7\xb8\xf4\xc1\xd2\xea\xb1\x6b\x7a\x61\x6a\xca\xd9\x94\xf0\xfb\x81\x5d\xd1\xd6\x96\x35\x14\xa2\x10\x7b\x10\x04\x44\xe8\x60\x4e\x6d\xe5\x82\x15\x6a\xa6\x3a\x9a\xe6\x8a\xd9\x02\xee\x03\xcc\x0e\x63\x11\x38\x73\x9e\x85\xdd\xdc\xb8\xb1\xc1\xd6\xb2\x62\x2d\xd3\x1a\x58\x7d\xe4\xcb\xc3\x1f\x9c\xe2\xe7\xe4\xb7\x09\x8b\x17\x88\x6f\xce\xd9\x05\x3a\x8b\x94\x45\x92\x97\x15\xab\xe3\x29\xbc\xd3\xf4\x60\x4d\xb1\x0a\x9c\x2b\x8b\x04\x05\x8e\x05\x21\x64\x56\xc7\x5d\xd2\x04\x71\xd6\x7b\xc1\x08\x90\x12\x45\xc6\x4e\xac\x7e\x60\x4f\x01\x42\x4e\x9b\xfc\x24\x43\x1f\x4b\xdb\x59\xea\xfc\x55\x8b\xbf\xbb\xe5\xaa\xd1\x62\x45\xda\x52\x29\x57\x31\x88\x2a\x4e\x17\xef\x54\xda\x01\xf4\xad\xc1\xb4\x8b\x09\x3a\x64\x74\xb0\x72\xb4\x69\xe1\x6a\xd0\x14\x54\x16\x0f\xa3\xd4\x8d\x69\xb7\xc3\xe5\x31\xcf\x73\xa9\xa3\xbe\xeb\x66\xe4\x55\xf4\x79\x22\x83\xfb\xc8\x32\xf7\xf7\xc8\x15\xc1\x2a\xb6\x28\x17\xbe\xa6\x07\x65\x63\xf9\x61\xac\x4e\x7a\x5d\x62\x05\x9d\xd0\xfb\x7b\x6f\xcc\x65\xf4\x60\x6f\x01\x3f\x14\x47\xaf\xe2\x29\x41\x84\xe7\x0d\xe7\xac\xa8\xcf\xe2\xa9\x1f\x90\xd7\xb6\xac\xa9\xb6\x9d\xc7\x15\x8a\x30\x08\x29\x85\x6f\x1c\x81\x3b\x90\x26\x99\x3d\x1c\x30\x69\x9d\x22\x70\x86\xd6\x47\xf5\xd6\xd6\x51\xf0\xc0\x18\xca\xd9\x27\x88\x83\xed\x59\x6b\x17\x13\xd5\x90\xa3\xbb\xb9\x82\x20\x7f\xb1\xf7\x4b\x97\x4b\x2a\x96\x4f\x04\x5a\x56\x4c\x2d\x5e\x71\x74\x1b\x53\xa1\x0d\xe6\x2c\x29\xa7\x42\x96\x7f\x64\xf9\xe4\x39\x96\xa3\x70\x6c\x5e\x38\xef\x64\x10\x2d\xd4\x8e\x57\xb4\x78\x64\xf7\x8f\x15\xa9\xbb\x46\xb8\xdf\xac\x30\xa2\xaa\x99\x72\xd4\x51\x60\xf8\xa8\xcc\x95\x9e\x62\x0f\xcd\x60\x67\xa4\x99\x55\xaa\x1c\x6c\x97\xfa\x44\x09\x6c\xaf\x71\x2b\x54\x9b\x87\x56\x1c\x52\x1e\xeb\xae\x4b\xec\x27\x3a\xea\x22\x9a\xe7\xe6\xaa\x4f\x3b\xe5\x2c\xf6\x5a\xdf\x8b\xb4\x89\xa1\xc1\xbe\xdb\xbc\xb6\xc2\xdb\x12\xd0\xeb\x4f\x3a\xb2\xb3\x3e\x6a\x51\x21\x70\x97\x91\x73\x17\xe3\x22\x7a\xa4\x25\x0f\x69\xe8\x0e\x23\xc2\xf9\x07\x1e\x35\x65\x65\xf1\xd6\x1d\x55\x15\x9b\x41\x86\x26\xce\x83\xb0\x88\xea\xef\x7b\xf8\xae\x4f\x33\xae\x6a\xee\xf7\xc2\x3a\xb0\x5c\x79\x3a\xe5\x71\x11\x15\xee\xf0\x17\xee\x90\xa5\x2c\xc9\x63\xbc\xfd\xd8\xbd\x00\x48\x65\x14\x37\xf7\x59\x31\xcd\x4c\xcb\x03\x4b\x3c\xb6\x7b\x05\xd6\xb0\xc7\x0a\xf1\xbd\x75\x6f\xb3\x0e\xc5\x5f\xd6\x16\x3b\x9d\x9f\xfc\xbf\xd5\xd0\x63\x68\xe8\x71\x67\x43\xc5\x1e\x98\x15\x4f\x50\x41\x77\x6c\x35\x46\x7e\xe7\x08\x07\x04\xba\x2a\x8f\x04\xb3\x22\xed\x44\xef\x90\x79\x65\x91\xac\x98\xc8\xab\xd6\xf5\xa7\xca\xf1\xe7\x27\xcf\xce\x9e\x1d\xdb\x82\x4e\x54\x05\x2a\xbe\xd3\x3c\x0d\xf7\x83\xa7\xa9\xdb\x61\xeb\xf3\x76\x9f\x25\xd4\x0f\xb4\xe8\x57\x54\xf3\xce\xa1\x71\xe7\xde\x26\xdb\xf4\x2e\x2e\xbc\x16\x4d\x18\xe7\xa5\x6b\xcc\x32\x25\x43\xae\x5d\x19\x80\x3a\xb6\x01\x8e\xa4\x7b\x48\x03\xa0\x2b\x0c\x5d\x33\x8e\xd8\x0f\xbd\xa3\xc7\x54\x80\xf3\xad\x2d\x76\x11\xd8\x3c\xda\xa2\x48\xc7\xf0\x73\x56\xb1\xf6\xc1\xaf\xc4\x87\x4c\xbb\x08\x00\xf9\xad\x8d\xec\xb6\x03\x7f\xba\x89\xe2\x21\x6b\xc4\x5f\xdc\xfd\x5a\x1d\x83\xdc\xe7\xe5\x7c\x91\xb3\xba\x63\x49\xb4\xda\x2b\xe8\xe2\x0e\xdd\x35\xcf\xba\xbe\x23\x5d\x06\x8c\xd6\x77\xd6\x80\x77\x7c\xd5\x55\xd7\x22\x6e\x2a\xd6\x1e\x04\xf3\x11\x20\x74\x0c\x5d\x33\x7f\xf0\x33\xc4\x70\xbf\x43\xca\xcc\x9a\xe2\x6b\xd4\xea\xb0\x85\x98\x96\x05\x8b\x9c\xbe\x91\x53\xc2\xa6\x6d\x90\x35\x99\x73\x15\xfb\xb2\xf0\xfb\x83\xdd\x20\x2c\xe1\xc7\x3e\x3a\xfe\xf4\x07\x07\xd2\xf3\x67\x70\x18\x84\x55\xd4\x0b\x93\xa8\xda\xdc\x0c\x73\xf8\xdb\xc0\xdf\x05\xfc\x9d\xc0\xdf\x14\xfe\xce\xe0\xef\x18\xfe\xce\xe1\xef\x1b\xf8\x3b\x85\xbf\x57\xf0\xf7\x16\xfe\x3e\x83\xbf\xd7\xf0\xf7\x1b\xfc\xfd\x02\x7f\xdf\xc1\xdf\x33\xf8\x7b\x03\x7f\xdf\xc2\xdf\xd7\xf0\xf7\x14\xfe\x7e\x84\xbf\x97\xf0\xf7\x39\xfc\xfd\x0a\x7f\x7f\x81\xbf\x27\xf0\xf7\x47\xf8\xfb\x1e\xfe\x7e\x80\xbf\xbf\xc2\xdf\x3f\xe1\xef\x2b\xf8\xfb\x09\xfe\xbe\x84\xbf\x2f\xe0\xef\x67\xf8\xfb\x1b\xfc\xfd\x09\xfe\xfe\x13\xfe\xfe\x0b\xfe\xfe\x3b\xfc\xfd\x19\xfe\xfe\x0e\x7f\x19\x83\xff\x6a\xfc\xaf\xc0\xff\x38\xfe\x57\xe2\x7f\x19\xfe\x17\xe3\x7f\x15\xfe\x97\xe0\x7f\x39\x8b\x7a\x61\xc3\xa2\x9c\x09\x6a\xca\xff\x27\xf8\x3f\xf1\xf3\x63\x24\x34\xd0\x9a\x87\x97\x61\xbd\x3f\x0a\xfd\xab\xd6\xbf\x26\xfa\x17\xbc\x41\xcb\xc8\xa1\x13\xb3\x2d\xf2\x8e\x4a\x69\xae\x6f\x44\x11\x3f\xb6\xee\x92\x03\x44\xcf\xfd\x9a\x45\xf5\xc8\xa7\x49\x79\xdd\xff\x4b\x86\xa6\x98\x60\x69\x0e\xb8\xcb\xe0\xae\x14\x9f\xdf\xdf\x97\x10\x48\xed\xaf\x94\x42\xce\xc1\x98\x1d\xe8\xa7\xb3\xe1\xd4\xf1\x99\xe3\xd3\xc3\xfc\xb1\x3a\x9b\xd5\x75\xce\x19\x35\xf9\x22\x7a\x22\xd1\xc7\xcd\x64\xc2\xb8\x11\x92\xd4\x46\xa6\x6c\xaf\x58\xa6\x4e\xe1\x27\xf8\xcc\x84\x01\xc6\x15\xfb\x68\x95\x5c\x2d\x58\x92\xc5\x79\xd4\x30\x62\x57\x96\xd1\x16\xbe\xf0\xa6\x28\xb2\x62\xaa\x9d\x85\xbe\xb0\x22\x95\x4f\xef\x40\x52\xae\xf5\xd1\xba\x7a\xda\x5c\x6d\xae\x65\x7e\xca\x92\x32\x65\xa7\x45\x9d\xd5\x19\xab\x0c\x9a\x0d\x0f\x96\x73\x46\xb5\x5c\xe8\xfa\x99\x6b\x96\xf3\xbe\xc7\xc8\x78\x3e\xe9\xec\x0f\x6d\x6a\x74\xa8\x05\x5a\x79\xfb\xc8\xa4\x48\x24\x3b\xa7\x9a\x45\x79\x17\x51\x49\x2d\x52\x4f\x70\x7a\xa3\x2a\x52\x04\x8c\xa2\x86\x6d\x6c\x78\x1b\x9e\xb5\x93\xfb\x6f\x69\x66\xc7\xa8\x41\xaa\x64\x8f\xb5\x7c\x19\x76\x90\xf6\x47\x78\x12\x47\xaa\xfb\x36\x8d\xbf\xf3\x5a\x0c\x3c\x19\x39\x94\x7f\x1a\x65\x57\xd2\xd2\xfb\x41\x0a\x0c\x8b\x7c\xeb\x82\x7c\xf7\xf7\x20\x77\xac\xea\x93\x91\xb7\x6e\x55\x8f\xe0\xeb\x47\xea\xd9\xec\x07\x23\xef\xb8\xe3\xc3\x2f\x4f\xf8\xd0\xfa\xc0\xe2\xf4\xfb\x7b\xaf\x52\xe6\xa1\x8f\xf0\xe3\xb8\x19\xbd\xff\x5b\xa3\xf0\xaa\xe8\x1a\x01\x5f\x0e\xc1\xfd\xbd\xa6\x13\xd0\xc4\xec\x33\xd9\x3c\xab\xe1\xe8\xc0\xf7\x2c\xa3\x8c\x67\x33\xf5\xd8\x15\x34\xab\x39\xe1\xb9\x50\x1c\xb3\x62\xda\xd5\x1e\xa8\xfc\xfe\xde\x97\xad\x71\x86\xa6\x3d\x84\xc7\x5e\xa5\xda\xff\xb1\xfd\xc5\x07\x9b\xb4\x89\xd3\x46\x3b\x37\x7d\x8c\xac\xab\xe8\xfa\x50\x7f\xfc\x27\x91\x55\xa9\xd2\x0e\x4d\x67\x4f\xa1\xe9\xb3\x49\xcd\xf8\x43\x4d\x90\x2d\xd0\x35\xdb\xb4\x78\x80\x2f\x1f\x18\x42\xcb\x80\xd3\x55\xdb\x71\x97\x35\xda\x31\x4d\x3d\xad\x15\xa3\x2e\x21\xb1\x18\x29\x46\xa1\xd0\xf9\xdf\x9c\x18\xc4\xd4\x77\xe6\x98\x97\x3b\xbb\x63\x9b\x18\xff\x46\x97\xba\x1a\xff\xa4\x09\xf4\xaa\x58\x4d\x79\xdf\x8b\xd4\x54\x78\x6c\x4e\x53\x63\x56\xa1\x5f\xfb\x7b\x5c\xb0\x6e\xf5\xad\xae\xbe\x79\x32\x7f\x3e\xc0\x2f\x51\x7b\x74\xa7\x23\xb7\x07\xc7\x1d\x0d\x6f\x73\x93\x4b\x42\x87\xce\x0f\x7f\xfc\xf7\x98\xc7\x99\x0e\x9f\xc1\x8e\x46\xfb\xf7\x0f\xef\x1f\xed\x45\xe1\xea\x29\x6c\xff\x8f\x8e\xd5\xe4\xf6\x6f\x32\xd7\xb3\x47\xbe\xfb\x8b\xbc\x07\xdd\x3c\x29\x9b\x71\xce\xfe\xd5\x94\x35\xab\x1e\xea\xb2\x25\xe9\x8c\xcd\xd6\xb3\x8d\x27\x2b\xc7\x74\x95\x36\xe4\x6a\x3e\x8f\x55\x63\x94\x1a\x52\xfc\x7f\x87\x7a\xe3\xd2\xe5\x63\x56\x4c\x3b\xe9\xe2\x8c\xe8\xff\xd7\xe8\xf2\xb6\xec\xa0\x89\x64\x56\x67\x9a\xff\x17\x49\xe3\x8a\x81\xff\xe5\x84\x42\x19\x72\xb2\xc2\xbe\x4d\x2b\xf0\xce\x91\x4c\xaf\x47\xf2\xcd\xb0\xe3\x77\xa3\x6f\x2b\x88\xbf\xaa\x3c\x57\x1d\x40\x5a\x12\xeb\xfa\xa3\xfb\x97\xbf\xab\x3a\xbc\x2a\xde\x6b\x73\xf5\xab\x15\x46\xf2\xee\xd6\x75\x9b\xb9\xff\xa7\xda\x29\xb5\xd4\x0e\x3b\xb9\xa2\xba\x25\x5b\xcf\x9e\x20\x93\x29\xfe\xaa\x01\x7b\xa0\x42\x47\x77\x5b\xc1\x47\xa8\x09\x62\x29\xfd\xd5\x3c\x24\xfb\xf0\x76\x74\xf6\x68\x29\x83\xc7\x75\x21\x65\xcb\x96\x73\x04\x8c\x00\xf2\xf0\x27\x2b\xb4\x6d\x98\x90\xc6\x9a\x9c\x83\xbf\x3e\x64\x82\xf5\xd7\xdb\x34\x39\x7b\x70\x2c\xc5\x44\xee\x47\x33\xe6\x7b\xcf\xbd\xf0\x34\xfc\x16\x3c\x82\x3b\x00\xdc\x13\x2f\xfc\xf8\x38\xee\x10\x70\x9f\x79\xe1\xe5\xe3\xb8\x3b\x80\x7b\xe6\x85\xcf\x1f\xc7\xdd\x55\xe5\x7e\x7d\x1c\x77\xcf\x1e\xa8\xf3\x0e\x36\xfd\xe5\xaf\x6e\x44\xbf\x3d\x4d\x29\x78\xde\x3a\xb7\xf1\x2e\xba\x98\xf6\xe4\x21\xa6\xc5\xf1\x59\xc9\xb2\x58\xe0\xf1\x8f\xa3\x5f\x1e\x29\xe3\x29\x0c\x2b\xf0\xfe\x9f\x64\xd7\x8b\x2e\x76\xfd\xe5\x21\x76\xfd\x28\x4d\x3c\x56\x5f\x12\xa5\x11\x3f\x6f\x2b\xcc\xbf\x8e\x3c\x6d\x20\x3d\x6b\x67\xff\xeb\x11\x9b\xe0\xa3\x2d\x39\xed\x3c\x4d\x30\xfb\xf0\x85\xa8\x38\x51\x86\x8a\xe7\x68\xa8\x70\x91\x26\x02\xa9\x56\x48\x67\x16\x92\xbd\xbf\x87\x14\x63\x56\xf2\xc5\x43\xad\x04\x87\xe6\x7e\x34\x66\xbe\xf7\xc1\x0b\xff\x7c\x60\xb6\x20\xea\x00\x50\x5f\x79\xe1\xab\x47\x51\x87\x80\xfa\xde\x0b\x3f\x3d\x8a\xba\x03\xa8\x67\x5e\xf8\xf2\x51\xd4\xdd\xbf\x68\x84\x51\x46\xbf\x05\xb3\x19\xd0\x19\xca\xd5\xb3\x43\x91\x68\x86\x24\xfa\x1c\x26\x9d\x6d\x24\xb8\x28\x02\x5f\x79\xe1\x6f\x8f\xe3\xa2\x08\x7c\xef\x85\x3f\x3d\x8e\xab\x45\xe0\x3f\x1f\xc7\xdd\xed\x9a\xce\xca\x6a\xe7\x90\xa6\xb1\x75\xb1\xc7\xac\x39\x5b\x7b\xdd\x5a\xa2\x64\xc5\x87\xb8\xad\xbe\xcd\x19\x32\xdb\x6f\x5e\xf8\xef\x0f\x8d\xb5\xc0\x44\x5e\x7b\xed\x85\x3f\x3f\x86\x89\xac\x76\xea\x85\xbf\x3f\x86\xb9\xf3\x37\xd9\x67\xf2\xb7\xd9\x07\xfb\x3c\xc3\x3e\xd7\xec\xc1\xa1\xc3\x5e\xcf\xb0\xd7\xc5\xe3\xb8\xc8\x3d\xa7\x5e\xc8\x1f\xc7\xdd\xf9\x1f\xe4\x88\xdd\xbf\xcb\x11\xb0\xa7\xb8\x85\x5e\xfc\x9b\x17\x66\x2c\x8c\xd9\x03\x23\xf8\xb6\x99\x33\x9e\x25\xe4\xa3\x5f\xbd\x30\x61\x61\xd5\xfa\x08\x8e\x48\xdf\xc6\x73\x96\x22\xf2\x47\x08\x77\xd0\x79\x90\x4f\x3b\xb5\xd9\xff\x9e\xee\x39\x2c\x9f\xb1\x27\xac\x78\xca\xc7\x59\x7e\x1e\xd6\xb6\x49\xfa\x38\x1e\x95\x47\xb5\xe3\xba\xe4\x33\xdb\xb2\xf9\x3e\xe6\x75\x16\xe7\x7e\x7d\xce\x2e\x1e\x33\xd1\x0b\x35\xdc\x25\x2e\xf4\xfc\x35\x9b\xc6\xc9\xad\xa4\xd3\x0a\x1f\x38\xb7\xe1\xd6\x80\x32\xb8\xb1\x57\xff\xb0\x07\xa1\xe6\xf6\x82\xa3\xfa\x87\x68\x70\x64\xc5\xaa\xb3\x09\x02\x07\x62\x47\xd9\xc4\xcf\xdc\xfe\x15\xfa\x49\x9a\x76\x27\xb3\xf3\xe2\x22\x08\xaf\xca\x2c\xed\xa2\x66\x54\x6f\xf6\x83\xa3\x7a\x6b\xab\xd5\x49\xa9\x40\x91\x01\xb6\x99\xfb\xc8\xd2\x5e\xba\x99\xc1\xef\xa2\xae\xcd\x00\xda\x23\xd5\x71\xdb\x6d\xd1\xd8\xd9\x46\x3b\xbb\xde\x60\xe4\xb3\xef\xbd\xd8\xbb\xbf\x67\x3f\x78\xdf\x3c\x08\x2b\xf1\xbd\xf7\x0c\xd3\xbf\xab\x74\x0f\xd3\x87\x9e\xe1\x07\xc7\x41\xc7\x6e\xa8\xf2\xf0\xc7\xa6\x6a\xab\x95\xae\x75\x3d\x8a\x92\x63\x2f\x92\x5a\xc3\xc3\x94\x18\xad\xec\xd7\x83\x1d\x7b\x44\x1b\x42\xb3\x81\x3d\x69\x57\x85\xa0\x73\x7a\x07\x2f\xfb\x15\xeb\x56\x17\xd5\x2b\xd7\x2b\xa6\x63\x61\xcf\xbd\x0c\xdf\x4e\x7c\x55\xd4\x7e\x29\x58\xb3\xcd\x7c\x1c\x5e\xec\x7a\x78\x86\x2d\xa9\x47\x2e\xbd\xed\xb0\x75\xf4\x00\x5d\x56\xb1\xeb\x0a\x4a\xb4\x18\xb6\x83\x70\xfe\x00\x9e\x7a\xec\x20\xd5\x26\xb2\xd7\x6a\xf6\x39\x7e\xa0\xa5\xa3\xa7\x55\xf8\xc8\x46\xe6\x25\xbb\xf9\x7b\x9d\x1a\x86\xfd\xbd\x87\x3a\x25\xe7\xcc\xc4\x99\x33\x2f\x1e\x9f\x33\x7f\xb3\xd3\xb4\x41\xab\x3a\x9d\xe4\x2c\x2e\x9a\x45\xdb\x6f\xc7\xba\x51\xd3\x3b\xb6\x76\x4a\xc6\x21\x80\x9e\xf6\x6f\xae\xb2\x24\x47\x3d\x35\x27\xe5\xc1\xbe\xb3\x09\x12\x73\xbb\x43\x64\xda\x13\x66\xe5\xc9\xb5\x2d\xb9\xdb\xc5\x98\xe3\xec\xff\x5a\xdb\xad\x59\x65\x35\xed\xbf\x4c\x1c\xfb\xfb\x27\x76\xcb\x1a\xd8\x0e\xb1\xf3\x40\x23\xba\xca\xb1\x5d\x3b\x5c\x3e\x59\xe5\x7f\x06\x8e\x19\x5d\xbe\x87\xf2\x8e\xad\x74\x4b\x0b\xd6\x62\xa1\xba\xad\xa5\x65\xc1\xd6\x3d\x67\x44\x36\xd5\xb5\x70\x14\xd9\x7e\x8b\x47\x01\x6c\xbd\x6e\x52\x72\xff\x88\x74\xff\x7b\x8b\x64\xea\x3e\xbf\xc5\x72\x47\x9d\xfa\x4f\x32\x8b\xf9\xb3\x9a\xfa\x4c\x04\x47\x2e\x67\x92\xf4\x19\x7a\x7b\x8e\x6c\x94\x9c\xa2\x58\x4e\x0e\x6d\xdc\x86\xe2\xea\xa3\xf8\x36\xde\xa4\x5d\xa6\x73\xb6\xdb\xfe\x26\xb5\xcb\x7e\x14\x7f\x46\xf1\xbb\x8e\x8f\xdb\x9f\x2c\xec\x2a\xec\x03\xd3\x36\xfa\xb8\xdd\x0b\xeb\x04\xb0\xfd\xc5\xdc\xae\xe0\x11\xec\x37\xad\x1e\x3c\xf2\xc1\xf4\x81\x06\xc1\xe1\x44\xfb\x93\xab\x15\x2d\x6a\x9d\x7d\xb5\x3f\xbd\x7d\xe8\x53\x7a\x3c\xd4\xfe\xf4\xd9\x43\x9f\xaa\x13\x94\xf6\x67\xd7\xed\xfe\x11\xfb\x7f\x1b\xff\x9b\x5d\xcd\x83\xb8\x5f\x6c\xdc\x4e\x1b\x7e\xfb\xab\x77\x1d\x8c\xac\x9d\xc5\x1d\xdc\x33\x87\x81\x57\xe1\xdd\xb4\x19\x57\x5a\xbb\xdb\xb8\x6f\x57\xe1\x0e\xda\xb8\xaf\x3b\xda\x0a\x16\xc9\x36\xea\xe9\x0a\xd4\x8e\x52\x3f\xae\x40\x1d\xb6\x51\x2f\x57\xa0\xee\xb4\x51\x9f\xaf\x40\xdd\x6d\xa3\x7e\x5d\x81\xba\xd7\x46\xfd\xc5\x19\x01\xb0\x91\xb6\xb0\x4e\xda\x34\x5d\x41\xa6\x1f\xbb\x31\x3b\xa8\xf4\xbe\xdd\x48\x69\x74\x6c\xe3\x7e\x58\x89\x0b\x21\x7b\x5d\xf4\x5f\x3b\xd0\xd1\x0c\xd6\xc6\xfd\x73\x15\x6e\x47\x93\x5f\xad\xc2\xed\x18\xd9\x4f\xab\x70\x3b\x86\xf6\xe5\x2a\xdc\x8e\xb1\x7d\xd1\x22\xf0\xca\xae\x7d\x5e\x81\xda\xd1\xb3\xdf\x56\xa0\x76\x74\xec\xa7\x15\xa8\x1d\xfd\xfa\xe7\x0a\xd4\x8e\x6e\xfd\xab\x83\x04\x60\x7a\x6a\xa3\xfe\xfb\x0a\xd4\x8e\x6e\xfd\xbc\x02\xb5\xa3\x5b\xbf\xaf\x40\xed\xe8\x16\x63\xed\x7e\xad\x68\x6b\xbd\x02\xb5\xa3\xad\xc5\x0a\xd4\x8e\xb6\xf2\x15\xa8\x1d\x6d\x2d\x59\xbb\x5f\x72\xb3\xd0\xc2\xcd\x3a\x70\xed\xfd\x45\xeb\x93\x98\xd9\xf2\x83\x6c\xce\xdb\xc8\x95\x8b\xfc\x70\xd9\x89\x83\xae\xb7\x69\x06\xb5\x43\xff\x6c\x8a\xaf\x45\x79\x5d\xac\xe1\x57\xb6\x5f\x9d\xa5\x41\x6f\x6e\x2e\x65\x21\xb8\x21\x6a\x69\xa1\x2b\x6e\x45\x68\x57\xe5\xbe\x83\xbf\xea\x3e\x44\xcb\xb7\xf9\x51\x0d\x56\x6a\xc5\x61\x87\xc6\x3d\xc9\x8a\xac\x9a\xb5\xda\xda\x7d\xeb\xe3\x51\x5d\x1d\x5c\x28\x5c\x4d\x5d\x99\x5b\xd4\xfd\x12\xdb\x23\xbb\x67\x7b\x6c\x3f\xd2\x2e\x09\x7f\x64\xb3\x49\xc8\xa2\xca\xc3\x78\x89\x67\x3c\xce\xf2\xac\x98\x9e\x88\x55\xc9\xf6\x01\x91\x77\x89\xec\xda\xda\x5f\xad\x32\x1f\x3e\xba\xd9\x72\x76\x05\xbf\x68\x2b\x96\x5a\x12\x5d\x80\x5a\xf9\xe8\x61\x63\x5b\xe1\x71\xbf\xba\x71\x01\x6f\xed\x62\x3a\x35\xa2\x75\x31\xf1\xd4\x87\x1d\x16\x83\x75\x31\xd7\x1e\xce\x4f\x1e\xc9\x6f\xb4\xd7\xb9\x04\x8c\x5d\xc0\xd4\x05\xbc\x71\x01\x73\x17\x70\xeb\x02\xae\x5c\xc0\x33\x17\x90\x76\xde\xbe\x1b\xfd\x0d\xa3\x8c\xcd\x65\x1d\x9e\xd7\xae\x5d\xb0\x8b\x05\x83\x07\xab\x5e\x65\xe4\xfa\x6f\xae\xfa\x01\xfb\xed\x7f\x7f\xa5\x6d\x21\x67\xdf\xd7\x9b\xd3\x90\xb9\x77\x92\x99\x46\x16\x6b\x85\xb6\x03\x56\xa7\x57\x16\x09\x36\xe4\x56\xe9\x46\x56\xe9\x7a\xc6\x8b\xcc\x69\x69\xf8\x20\xbd\x77\xa5\x84\x71\x1c\x7a\xa4\xa8\x27\xfb\x07\xb4\x04\x91\x76\x29\xeb\xbe\xc3\x79\xce\x2e\x9e\xee\x79\xdb\x55\xb6\x34\x02\x77\x94\x6e\x1b\xd0\xe9\xdc\x31\x9e\x6d\xee\x02\xaa\x42\xc8\xac\x8e\x70\x36\xdc\x0f\xc2\x32\xfa\xee\x8f\x6a\xf3\xbb\x29\x5c\xa1\xdb\x53\x37\xe8\x86\x7d\x3b\x76\xb6\x0c\xd2\x8d\x61\x45\x49\xb0\x47\x76\xec\x17\x51\x1d\xd6\x11\x0b\x31\xb2\x77\x30\xea\x8a\x09\x59\xc3\xa5\x70\x81\x97\x68\x79\xaf\xde\x76\x70\x62\x1e\x45\xf5\xfd\xbd\xf2\xc3\x60\x18\x1c\xf5\xf9\x8f\xea\xae\x55\x5a\xce\xcd\x3d\x4e\xb8\x48\xa8\xef\x12\xd5\xf1\xf4\xa3\x7d\xcf\x13\x6f\x72\x46\x34\x71\x7f\x0f\xd1\xc7\xf1\xf5\xaf\xbb\xa2\xe4\xf3\x38\xcf\xbe\xb1\x5f\x66\x59\xcd\xaa\x45\x9c\xb0\xd1\x7a\x3f\xbc\xce\xea\xd9\x47\x19\x30\x28\x4b\x58\xa5\x60\xa7\x10\xbb\x47\x42\x96\x47\x95\x7d\x5f\x5c\x5f\x1b\xed\x18\x3d\xd9\x12\xb6\x0c\xed\x8f\x5a\xd3\xae\xa2\x81\xaa\x2d\x32\xd9\x44\x72\xe9\x13\xb8\x25\x77\x86\x42\x10\x04\xd3\x47\x32\x48\xbd\x9e\x4d\x2b\x72\x69\x16\xe5\x86\x79\x01\x43\x8c\xad\x53\x8d\x83\x13\x55\x8f\x5c\x76\xce\x26\x7e\x27\x73\x58\x1d\x0d\xec\xa4\x7a\x11\x23\x2d\xe7\x32\x12\x49\x36\xf1\x55\xe4\xf2\x16\x41\xdb\x21\x65\x5a\x21\x36\x3e\x9a\x68\x17\x47\x16\x4d\xb7\xed\x31\xde\xd8\x80\x97\x97\xdc\xd0\x50\x48\x28\x0d\x0d\xdc\x91\x50\x0b\x9b\x06\xc0\xb5\x5c\x8b\x6a\x18\xf8\xf7\xa4\x9c\xcb\xd8\xbf\x2e\x8d\xd6\xdb\xcd\x3a\x29\xe7\xaf\xaf\xf2\xbe\xf3\x36\xe0\x91\xf5\x1a\x60\x1d\x79\x75\x3c\x85\xd3\x8d\x6d\x51\xd1\xb1\x1d\x7d\x3c\x0e\x46\x36\x20\x0b\x42\x16\xb8\x31\x2b\xfc\x02\x0e\x2d\x5a\x81\x93\x6b\xa7\x0f\x71\x9a\xae\xe8\x00\x0d\x78\xa0\xc8\x7d\xee\x50\x5f\x47\x2d\x09\x8b\xa8\x3e\x36\x11\xa9\x47\x6a\xa8\x43\x1e\x15\xe7\x85\xc1\x3b\x62\x10\x53\x94\xf2\x27\x25\x0f\x9d\xad\x30\x68\xad\xf8\x60\x72\xd8\x0c\xdc\x0d\x3b\xe0\x0e\xfe\x13\x46\x9e\x1f\x43\x98\x6e\x76\x15\x71\xf9\x94\x5d\xc4\x82\x91\x04\x41\x4b\x0b\x13\xc0\x6a\x7b\x01\xaf\x55\x0b\xe9\x86\x0f\x20\x54\x5d\x91\xa2\x3a\x4f\x22\xef\x04\xce\xc8\xc3\x30\x8f\x78\x7a\xc5\xb7\x71\xcb\x3d\xf2\xe0\x41\x78\x0d\x84\xd7\xe6\xf9\xf6\x59\x3c\x0d\xf1\x15\xe7\x50\x5e\x87\x1f\xd5\xa1\x26\x32\xc4\xef\x94\x9d\x72\x79\xd1\x2f\xd4\xac\xb0\x46\xd8\x2f\x83\xd0\x9d\x41\xa2\x67\x65\x4b\xf0\xb4\xc2\xa1\xc9\xf0\xfc\x4e\xf0\xba\x0e\xd1\xeb\x46\x7c\xc8\xa6\x45\xc9\x49\xfe\x91\x99\x1a\x0e\x23\xc9\x39\x97\x96\x73\x0d\x50\x81\x8f\xd2\x72\x7e\xee\x64\x6e\xf5\x2f\x02\x98\x20\x62\xcb\xbd\x7d\xc6\x6e\xea\xa0\x38\xae\xb7\xc1\xed\xd1\xc7\xff\x37\x59\xb0\xcd\x19\xbc\x4b\xec\x97\xa1\xb7\xe6\x05\x23\x99\x11\x31\x2d\x84\x56\x34\xc5\x7f\x32\xf3\x07\x88\xac\xb9\xff\xdc\xfc\xb4\x90\xea\xff\x6a\x6b\xe1\x59\x25\x16\x31\x07\x4b\x3d\xfa\xb2\x82\x13\xee\x44\x11\x23\x16\x02\xf7\x61\xd5\xcb\x6e\xe6\xc8\x84\x8e\x51\x3d\x1a\x95\xe4\x2f\x49\x06\x31\xda\xb5\xd5\x77\x69\xef\x0d\x9c\xbe\xc9\x39\x62\x37\x56\xe2\xfe\x77\xf2\x79\xab\x87\x3a\xb8\x48\x7b\xb1\x31\x01\xf4\xcf\xb1\x61\x9e\x67\x91\xf1\x42\xb7\xf3\xe4\xd9\xd9\xb3\xa5\x76\x73\x69\xb5\x92\x75\xb7\xb2\xee\x6e\x65\xdd\x9a\x8d\x26\x40\x4b\xd4\xd1\xfa\x4e\x25\xc1\x5e\x22\xdd\x02\x1f\x0b\x8b\xe3\xfa\x4f\xb4\xb9\x4a\xca\x25\x20\x4b\xad\xe8\x70\x92\x71\xa1\x1d\x5f\xb1\x15\x1c\x56\x04\x4b\x12\x22\xa2\xea\x0c\x20\x4f\x83\xc7\x4f\x59\xbd\x06\xcf\x35\xc0\xbb\x0b\xb6\x12\xa0\xc6\xe6\x88\xbc\x06\x73\xde\xbb\x50\x72\x59\x7c\x9a\xc7\x4f\xff\x92\x19\x9e\xa5\x45\x14\x65\xca\xce\x6e\x17\xcc\x6c\x41\x4a\xe4\x75\xd1\xe3\x8b\xfb\xfb\x72\x5b\x6a\x08\xcb\x65\xc8\xa3\xbb\x1a\x4f\xea\x46\x1e\x5c\xc5\x45\x59\xfd\xb6\x4c\x59\x35\x32\x0f\x59\x85\xb8\x84\x08\xf0\xc8\xc3\xdf\x5e\x28\x16\x9b\xac\x6c\xaa\x8f\xd9\x58\xec\xef\x46\x9e\x00\x78\xa1\x58\x8d\x34\x48\x24\xbc\x50\xb4\x08\x8e\x9d\x46\x1e\xdc\x83\x11\x93\xe3\x4e\x36\x62\xd4\x87\xe0\xbd\xa3\x61\x08\x8c\x31\xda\x09\x25\xe7\x8c\x0e\x96\x47\xf4\x15\x06\xbe\xe2\x55\x6c\x9c\xdb\xfc\x9c\x5d\x1c\x75\xbf\xf9\x5b\x84\x2c\x14\xc3\xd2\xf1\xa8\xbc\x20\xcb\x79\xad\xa9\x57\x51\x24\xe6\x62\x89\x8d\xc6\x72\x89\x4f\xe7\x75\x6f\x6b\x34\x1b\x1c\x9d\x8b\x8d\xcc\x30\x08\x0b\xbf\xbf\xd3\xc7\xff\x06\xf8\x9f\x04\xee\xe0\x7f\xbb\xc1\x45\x77\xaf\x9c\x87\x69\xda\x38\x75\x70\xc7\xa1\x51\xe7\xf5\x05\x3e\x20\xc3\xd5\xe3\x80\x4f\x79\xa0\x5e\xf4\x49\x29\x8c\x5f\xb2\xb9\x68\xb5\x7c\xfc\xbe\xf3\x9d\x9c\x87\xdf\x2d\x5a\x41\xf8\x3a\xf4\xcc\x27\x5e\x78\x87\x4f\xfb\xaf\xf7\x96\x28\xfe\xcb\x88\xfb\x85\xbf\xdf\x87\xc7\x93\xc4\xcf\xfe\x70\x1f\x1e\x58\x06\xf0\x20\x08\xc2\x4a\x82\x0f\x02\xb2\x25\x4c\xcc\xa0\x3b\x44\xc2\xb7\xcd\xef\xbd\x20\x2c\xa2\x46\xa8\x3e\x18\x8e\xf6\x03\x9b\x9e\xde\x2c\x7c\x6f\xc3\x3f\x1e\x79\x9b\x7e\xbd\x19\x79\xf7\xff\x76\x7e\xf3\xeb\xc5\xf9\x1f\x7f\xa4\xf1\xd6\xe4\xd9\xd6\x8b\x8b\xcd\xfb\x7f\xfb\xe3\x8f\x74\xd3\x0b\x36\xbd\xe0\xc8\x0b\xbd\xa9\xd7\x8e\x95\x61\xa8\x21\x1f\xad\x27\x8b\x1f\x0f\x8b\x60\xb9\xac\x65\x78\x88\x5f\xdf\xbc\x8e\x12\x3f\x56\x8f\x4e\x04\xa1\xca\x78\x79\xf6\xe6\xb5\x74\xbd\x4c\xcc\x63\x1b\x81\x7c\xf3\xd9\x96\x2c\x8a\xf2\xdf\xd7\xc7\xfd\xd1\x56\x7f\x69\x05\x58\xd6\xd9\x16\x3f\x60\xd0\x93\x7f\x83\x0d\x8e\x72\x4c\xe8\x07\xc7\xde\xaf\x16\x64\x10\xdc\xdf\x7b\x37\x0e\xe8\xb8\x52\xad\xf1\xb5\x9f\x58\xad\xac\x99\xc3\x20\xec\xef\x05\xc1\xe8\x21\x9c\x41\x10\xf6\x7b\x41\x30\x62\xe7\xf5\x76\x95\x67\x09\xf3\xfb\xe1\x56\x3f\xb8\x30\x54\x11\x9d\x77\x5d\x30\x50\xc4\xd1\x71\xd4\x0f\xc8\x06\xdb\x55\xc9\x6b\x3f\x0f\x42\x7b\xa0\xcb\x36\x42\x11\xf5\x42\x0e\x0f\xfe\xd7\x34\x32\x3f\xbc\x55\x15\x45\x62\x4b\x71\x0c\x1b\x8b\xcd\xc8\x3b\x3a\xf6\x42\xbe\xb9\x89\x4f\x80\x8b\xb4\x27\x9f\x67\x6e\x73\x4a\x6d\x18\x6a\xb3\x83\x63\x8e\x8e\x91\x67\x8e\x8e\x03\x64\x98\xb0\x8a\x1a\x3a\xa8\x36\xc7\xca\xc1\x39\x02\xff\x43\x45\xb4\xad\x3e\x38\x6e\x41\x3b\x82\x50\x30\xf1\xf2\xaf\x70\x5d\x1c\x26\xc1\x72\xe9\x5b\x33\x9e\xc6\x2c\xfa\xf9\xe3\xbb\xb7\x18\x1d\xc9\xff\xc7\x9d\xf7\x2c\x4e\x9a\x9a\x79\x23\xef\x8f\x9b\xa4\xef\x85\x5e\x6c\xd2\x4c\xa4\x9f\x8d\x39\xbb\x82\x74\xd3\xeb\xf7\x06\x02\xc3\x82\x0c\x05\x24\x81\xd4\x60\x30\x64\x90\x4a\x55\x72\x02\xc9\x53\x9d\xfb\x47\xd3\x1b\x0e\xc5\x17\xcf\x92\x8c\x27\x58\x29\x14\xa9\x93\x0c\x93\xaa\x09\xe3\x1d\x40\xbe\xc5\xda\x76\xfa\x3d\xc8\x55\xc9\xa1\x48\x3e\x3b\xcd\xb3\x29\x16\xb5\x27\x72\x99\x4a\x32\x48\x4e\xb0\xf2\xde\x1e\x74\x66\xc2\x21\x99\x1e\x0c\x77\xff\x68\xd2\xb4\xb7\x03\x28\x36\xb0\x2f\x3a\xf1\x6c\xca\xe3\x2b\x49\x16\xa8\xd4\xa4\x19\xa4\x73\x36\xa9\x6e\xe7\x58\x78\x7f\xb8\x8b\xa0\xc5\x8c\x02\x9e\xe5\x8b\x59\x8c\x4d\x1d\x1e\x02\x6d\x09\x60\x0c\xed\x99\xc7\x09\x57\x94\x84\x62\x29\xa0\x8f\x80\x7c\x8a\x85\xc6\x48\xce\xf9\xc2\x1b\x79\x1b\xe2\xe3\x37\xef\xe5\xaf\xb8\x48\xe3\x42\x12\x3d\xde\x85\xaa\x4d\x72\x88\x08\x72\x0c\x06\xfb\x98\xd4\xd9\x09\xa6\xab\xbc\x5c\x30\x05\x3b\x40\xd8\x95\x4a\xc7\x90\x9e\xaa\x22\x7a\x98\x94\xe8\x87\xf1\x0e\xa6\x73\xe6\x20\xcc\xab\x34\x8e\x15\xd2\x81\x81\x8d\x15\xec\xd0\xc0\x12\x05\x8b\x0d\x2c\x55\xb0\xb1\x81\xe9\x4a\x13\x03\x9b\x28\x58\x6a\x60\x53\x05\x63\x06\x36\x53\xb0\x89\x86\xa9\x16\xf7\x11\xc2\x6b\x09\xe8\x4f\x14\xe0\x4a\xb6\x76\x30\x66\x06\xa4\x5a\x76\x28\x6b\xac\xd4\xc0\x0f\x06\x03\x09\xa9\x91\x77\x76\x31\xf9\x2d\xe6\x38\xac\x83\xe1\xbe\x68\xf9\xb3\x72\x5a\x16\x6a\x9c\x81\x7e\x14\x00\x23\x58\x2e\x26\x16\x5b\x0e\x81\x82\x2e\x74\x17\xea\x5b\x88\x09\x24\x47\x6b\x0f\x9a\xbe\x90\xed\xd9\x81\xaf\x16\x72\x0a\xc6\xfb\x30\x34\x6a\xa4\x07\x3b\x40\xed\x45\xa6\xe8\xb0\x03\x94\x5e\x94\x95\x48\xff\x43\xb4\x62\xb1\xc8\x6f\x5f\x28\x13\x19\x99\x49\xf1\x62\xc1\xcb\x1b\xbb\x12\x01\x61\x97\xb4\xe8\x67\x42\x36\x11\x42\xe8\x24\x83\x2e\x56\x89\x35\xf3\x92\x43\x18\x54\x17\x3a\xde\x03\xdc\x2a\x9b\xca\x16\x0c\x76\x81\x62\x40\xe2\xff\x80\x5f\xb7\x73\xbb\xbf\x02\x60\x5a\x22\x06\xe9\x59\x9d\xe5\xa9\x9c\xcf\x30\x23\x4c\x9a\x81\x40\x6a\xe6\x39\xe6\x42\xd9\x2a\xc5\x20\x75\x9d\x94\x45\x56\x28\xde\x00\x01\x16\x5f\x6b\x40\xdc\x17\x04\x19\xc7\xc9\xd7\xa4\xd4\x93\x64\x27\x91\x30\xb6\xa8\xb2\x5c\x0d\xed\x70\xb2\x27\xc1\x0b\x9e\xcd\xe5\x28\xf4\x40\x58\x08\x60\x95\xcd\x55\x1d\xa9\x01\xe9\x8e\x24\x02\xf8\xa3\x00\xe6\x71\xa5\x18\xae\xbf\x07\x40\xae\x26\x2b\xdb\x87\x2f\xf9\x15\x53\x83\x3c\xc6\xb2\xf8\x35\x93\xc3\x3c\x04\x06\xfb\xd1\x82\xec\x69\x1c\x35\xaf\x11\x6b\x3c\xe6\x5f\x65\x7a\xac\xd2\x35\x81\xc1\x77\x6e\xbf\x7f\x34\x02\x1b\x48\x63\x04\x36\x24\xd3\xcb\xa6\x94\x5d\x07\x59\x3b\x66\x49\xdc\x54\xaa\xe7\xbb\x1a\xc2\x28\xe8\xc7\x36\x68\xcc\xe6\x8b\xfa\x56\x76\xfc\x70\xdc\x03\xd0\xa2\xca\x2c\x5a\x33\x5e\x94\x8d\x94\xca\x03\x68\x1c\x40\xf2\x3c\xab\x6c\x68\xad\x45\xf5\x00\xbe\xd3\xe9\xb1\x4c\x6b\xd9\x8e\xe5\xd6\xd7\x8c\x29\x86\xdc\x83\x22\xdc\xc5\x05\xda\xe8\x2e\x2e\x62\x76\x8e\xb3\x69\xa2\x67\x28\x2c\x80\x02\x22\x97\xc0\x66\xb0\xcb\x14\x52\xa3\x91\x86\x08\x29\xd3\x52\x71\x1d\xac\x17\x02\xb4\xc8\x15\xf1\x62\x58\x32\x04\xac\xce\xe6\x4c\x03\x65\x05\xd5\xa5\x2e\x2f\xc6\xf1\xce\xa6\x55\x1d\x4b\xb9\xb1\x87\xcd\xcd\xa6\x35\xcf\x40\x98\xa7\xe5\xb5\xec\xde\x2e\x72\x90\xc9\x52\xc5\xec\x8e\x65\xb3\x1a\xda\x86\x1d\x84\x19\x06\x4c\x64\xab\x08\x73\x0d\x60\x51\x1d\x7f\x8d\x79\x79\x2d\xc7\xaf\x07\x95\xe4\x71\xf2\x35\x2f\xbf\x31\xb3\xbc\xb0\xb1\x82\x57\x97\x4d\xcc\x25\x78\x17\x16\x0a\x00\xab\x56\xa9\x36\xed\xb8\x19\xb4\x27\xcc\xcd\xcc\xd9\x44\x52\x74\x17\x47\x82\x66\xf2\x6c\x3a\x53\xb9\xe3\x03\xcc\x2d\x24\xef\xef\x0c\xa0\xf3\xf9\xd7\xfe\x40\x62\x20\xe3\xe4\x5f\xfb\x3b\x0a\xd0\x47\xc0\x50\x03\xf0\x93\x32\x91\x65\xec\x1e\x40\xa1\x85\x68\x7b\x24\xe6\x03\xc8\xc5\x71\xc1\x2e\x9b\xec\x4a\xf1\x56\xdf\x64\xbc\xd5\xa3\xcf\x80\x5a\x85\x4a\x0f\x41\x33\xfa\xb1\xb5\x66\x88\x15\x76\xdc\x5a\x33\xa0\x15\xea\xd3\x41\xbc\x8b\xc9\xba\x9c\xdb\x90\xeb\x3a\xd3\xc3\x05\xed\x2c\x6f\xc6\x4a\xe6\x1f\x26\x58\xf4\x4d\x9a\xcb\xae\x40\x0b\x04\xe0\xb5\x04\xec\x62\x29\x37\x27\x0a\x63\x77\x4f\x02\x34\xc6\xbe\xfc\x44\xf2\xe0\x6e\x2f\x91\x80\x0f\x0a\x63\x20\x3f\x51\x18\xb2\xed\x37\x27\x1a\x63\x07\x01\x33\x55\x84\x6c\xc6\x4b\x95\x2f\xd3\x33\x29\xea\x76\x07\xb2\x8e\x97\x0a\xb0\xa7\x4a\x38\x51\x00\xd9\xf0\x97\x1a\x20\x1b\x3e\x93\x82\x64\x77\x28\x3f\x79\xa9\x00\x7b\xb2\x27\xb3\x4f\x0a\x20\x09\xf6\x52\x03\x24\xbd\xe6\x59\xa1\x65\xdd\xe1\x04\x61\x66\xf6\x0c\x0e\x19\x82\xc8\x04\x1e\xc4\xb2\x0b\x8d\x26\xb5\x2c\xbc\xd1\x84\x1c\x23\xe0\x93\x26\xb5\xec\xe4\x27\x8d\x91\xca\x4f\x14\x21\xfb\xb2\x0b\x8d\x26\xa4\x2c\xf4\x93\x26\xb5\x6c\xf1\x27\x8d\x11\x23\xe0\x4a\x91\x5a\x0e\xce\x67\x95\xdf\x97\xf9\x6a\x2c\x86\xb2\x15\x57\x6a\x30\xf6\x64\x09\x9f\x15\xc6\x9e\x6c\xf8\x67\x8d\xa1\x3e\x51\x3d\x19\xc8\x76\x5e\xa9\x9e\xec\xc9\x5a\x3e\x2b\x8c\x3d\xd5\x0c\x8d\x21\x79\xe4\x4a\xf7\x55\x15\xaa\x7b\x22\xa9\xfc\x59\xf7\x55\x8e\xc4\x67\x85\xb1\x07\x34\x6f\xaf\xd2\x66\xeb\x33\x48\x05\xc1\x7e\x74\x01\x63\x7e\x35\x46\x99\x7a\x13\x03\xdb\xb4\xd4\x19\xc1\x2a\x3f\x2a\xa8\x5c\x7e\xc6\x15\x9b\x67\xb2\xa2\x1d\x68\x8b\xab\x0b\x54\xba\x25\xa8\x07\x8c\xab\x32\x57\x8a\x34\x28\x57\x02\x20\xd2\x7f\xfc\xf1\x87\x4c\xcd\xaa\x46\x62\xec\xe3\xfc\x6d\x72\x49\xb3\x1e\xa8\xa9\x22\xcd\x6a\x1b\x62\x14\x29\x26\xd3\x4a\x75\x8c\x15\x40\x2b\x8f\xa2\x9d\x3f\x36\x54\xd3\xd2\x28\x97\x14\xe7\xb9\xde\xcf\x09\xe5\x56\x10\x25\xb1\x20\xfb\x00\x59\x98\x2d\xcc\xce\x0e\x42\xc6\xdc\xac\x58\x3b\x87\x08\xd3\x0b\x67\x0c\xca\xaa\x59\x47\x07\x87\x50\x95\x4a\xa6\x03\x89\x6f\x4a\x90\xf5\x98\x25\x74\xa7\x87\x9f\x64\x75\x9c\x9f\x64\x13\x78\x71\xba\xce\xe2\x5c\xce\xfb\xfe\xce\x2e\x7e\x51\xe9\x2a\xfe\x68\x26\x0c\x24\x4c\x12\x73\x4d\xba\x9d\x3e\x02\x94\x96\x37\x48\xf6\xa1\xdc\xdb\x9c\xdd\x6a\x25\x43\x8c\x59\x62\xca\x8a\x41\x2b\x7d\x4e\xbe\xea\x83\xf0\x4b\x2c\x08\xe2\xb0\x34\x93\xba\x29\xf4\xc0\xa4\x41\xd7\x7b\xae\x15\x87\x5e\xbf\x77\x00\x08\x04\x00\x44\xb1\xd5\x57\x68\x7e\xd2\x98\x96\x24\x0a\x50\x49\x96\x8b\x41\x68\x3e\x57\x84\xea\xf5\x7b\x62\xde\x26\x24\x0d\xa4\xd7\xed\x80\xa5\xf1\xb9\x48\xe6\xb1\x01\x24\xb6\x7a\x06\xe3\xc1\xb0\x19\x37\xb1\x4a\x31\x2e\x4b\xbd\x81\x79\xf1\x1c\x40\x27\x14\x94\x38\x1a\x14\xec\x2e\x9f\x4f\x38\x25\xec\xf3\x97\x5a\xc5\x84\x0d\x6e\x32\xd3\x69\x1c\xf5\x19\x53\x4b\xee\x7e\x7f\xa8\x00\xf3\x98\x5b\xc0\xe7\x33\xa5\x3a\xc6\xf8\x91\x4a\x22\xdd\x35\x55\x07\x60\x68\x10\x69\xcd\xe7\xbb\x0a\x23\x67\x31\xe7\xe5\xb5\xd1\x2a\xfa\xe3\xd8\xce\x22\x3a\x45\x7f\x3c\xd6\x79\x29\xee\x67\x60\x0d\x20\x50\xa3\x15\x0e\x0e\x4d\x41\x69\x6a\x36\x00\xb0\x07\x7d\x0e\xe0\x13\xbd\xa6\x1f\x1e\x1a\xdc\x0f\x48\x71\x66\x20\x1f\xa5\x06\x03\x52\x01\x3f\x7d\x43\x97\xa5\x3d\x0d\x7e\x4f\x56\xa6\x5d\x0d\x3d\x23\x8b\xd3\xa1\xec\xb9\x94\x9b\x89\x6c\xfb\xa9\x12\x4d\x43\x4c\x33\x87\x50\x93\x82\xec\x9f\x7a\x08\x9b\xab\x7d\x68\x0c\x0a\x70\x92\xf1\x4a\x17\x7c\x08\xca\xd9\x73\xa1\x3a\x5d\x67\x15\x7b\x5e\x16\x75\xd9\xf0\x57\x45\xcd\xa6\x3c\xce\x15\x6b\x4b\x1c\x78\xdc\x24\xbf\x25\x97\x68\xe4\x4c\xed\xa7\x16\x82\x95\x05\x14\xcb\x9b\xb1\xec\xd8\x1e\xac\x22\x00\x68\xb2\xda\x82\x95\xb8\x9f\x1b\x89\xb2\x4a\xb5\xb7\x1b\x0c\x86\xfb\x0a\xa0\x0c\x29\xfb\x3b\x0a\x5d\x77\xdf\x40\x2e\x6d\xd0\x7c\x1e\x43\x89\xf2\xb7\xa8\xf1\xff\x87\x09\x25\xd1\x40\xb9\x17\xe9\x89\xaa\x11\xf4\x80\x04\x82\xbf\xcf\x99\x9e\xe0\x1a\x2f\x67\x37\x6a\x98\xd0\x72\x47\xf7\x69\xbb\x32\x6d\xa4\xe1\x1e\x10\xa7\x2c\xa6\xbc\x31\x85\xed\x61\x61\x44\x7e\x0c\x18\xa2\x11\xc8\x04\x21\x1d\x23\x02\xc8\x49\x4b\x01\xdd\x81\x0f\x24\x54\x37\x6e\xc1\x4b\x65\x88\x00\x96\x78\x0e\x90\x26\xa9\x29\x30\x29\x17\xb7\xc8\xd0\x20\xda\xde\xbd\xff\xcd\xa4\x44\x5e\xa5\x04\x43\x1f\x87\xa3\x29\xf0\xfe\xd9\x83\x7c\x03\xc3\xca\xb5\x8d\xa6\x0f\x5b\xdd\x84\x97\x55\xa5\xe4\x03\x14\x66\x00\x31\xf6\xb9\x65\xc0\x80\xee\xb6\x56\x7c\x18\x26\xbd\x18\xc7\xc9\x44\xa6\x15\x9f\xa4\x7d\x04\xa8\x95\x2a\xed\xc9\xb4\x46\x00\x02\xd5\x7a\xac\x06\x38\x41\x9a\x34\xe6\x5c\x76\xe2\x10\xec\x43\x08\x52\x73\x06\x54\x96\xa4\x61\x0b\xae\x16\x45\x86\x80\x4a\xc9\x94\x14\xcb\xc9\x49\xd7\xf7\x34\x64\xa1\x8a\x81\xb5\xab\x11\xcb\xb1\x59\x7c\xb1\x36\xba\x1c\x83\xd4\x68\x16\x66\x09\xde\x91\xdf\x29\x5e\x88\x11\x41\x55\x3d\x94\x25\x98\x05\x3a\x46\x88\xe9\xe6\x81\x2c\xa1\x54\xc6\x2d\x64\xdb\xc6\xac\xc8\xb1\x59\x91\x1b\x3a\x80\xfb\x1a\x32\x57\xbd\x48\x10\x94\xdf\xb2\xcb\x05\x67\x89\x4d\x12\x00\x57\x4d\xe2\x10\x86\xe7\xb7\x64\x1f\xab\x51\xad\x9d\xac\xc4\xe4\x68\x0d\xb8\x01\x73\x68\xd2\xf0\xab\xf6\x4a\xb0\x67\xe5\x58\x0b\x01\xb6\xb7\x55\x97\xb6\xd0\xc8\x6a\x1c\x4b\x14\xb0\xc5\x35\x01\x00\x23\xdd\xe6\x49\x8d\xcb\xdf\x60\x08\xcb\x63\x1a\x4f\xa7\x4c\x92\xa6\x07\xeb\xe7\x89\x05\xe9\x03\x4e\x4e\x4c\x1c\x07\x00\xd1\xe4\x84\x7d\xeb\x89\x49\xc7\xf0\xc5\x33\x9d\x86\xb1\x34\x6b\x52\xaf\x8f\x75\x54\x33\x6d\x95\xda\x91\x08\x6a\x57\x1b\xc3\x17\xb6\x01\x60\x02\xa0\x3c\x56\xcb\x6c\x2a\xda\x7e\x62\x29\x44\x82\x2a\xa9\x05\x99\x00\x8e\xb6\x37\x41\x3d\xc6\xde\x04\xc9\xb4\xdd\x59\xd2\xb7\x44\x70\xdd\x89\xa5\xf2\x29\xeb\x78\x1f\x78\xfa\xe4\xa4\xac\x79\xac\xf6\x8f\x87\x7d\x2c\xa0\xac\x2b\x25\xc2\xe3\x7d\x31\x7a\x29\x43\xd3\x26\xd8\xa1\x4e\x98\x92\x2d\xa0\xdd\x9e\xb0\xdc\x98\x97\xa0\x4d\x04\x30\x46\x80\xa5\x2c\x41\x1d\x93\xac\x52\x0c\x72\xb8\x0f\xfd\x74\x2d\x4c\x50\xaf\xab\x1f\xc1\xb7\x2f\x95\x5d\xe7\x10\x76\xb3\xe9\x2c\x56\x82\xa2\x0f\x4b\xb2\x00\x68\x0a\x08\x36\x3a\xc9\xe2\x84\x67\x75\x96\xc4\xf9\x33\xfb\xf8\x85\xe4\x28\x05\xa3\x37\x48\x0f\xdd\x1c\xb1\xd6\x3e\x33\x6a\xbd\x1c\x3d\x83\xf1\x93\x3c\x40\xf9\x4f\x1b\x7c\xa6\xec\xb0\xe2\x13\x31\x45\xd3\x2c\x56\x3b\x1f\xb0\xc5\x8a\x74\xa9\xcf\x2f\x12\xd9\x22\x17\x24\xb1\xe8\x5a\xbd\x27\xc1\x95\x0d\xc0\x9e\xc1\x79\x44\xa7\xce\x8f\x58\xd3\x18\x17\x64\x31\x40\xd0\x93\x34\xab\x32\xb5\xee\x4e\x06\x00\x80\xd1\xba\x99\xec\x63\x22\x93\xe6\x64\x92\x2e\x0b\xba\x8d\x4f\x64\x46\x59\xdc\x50\xc8\xc9\xcf\x9a\x5d\x61\x1d\x4c\xff\xd4\x69\xb0\x7e\xa4\x79\x52\x72\x59\xf3\x10\xec\xa5\x69\x9e\xf0\x52\x0a\xcd\x21\xec\x11\xd2\x32\xcf\x61\xc0\xff\x5d\x14\xd8\xb2\x02\x8d\x01\xc5\x5d\x84\x77\x01\xb7\x36\xe4\x48\x9d\xd1\x2d\x6b\xad\x50\xf6\x70\x68\xca\xda\xa8\x2d\x3d\x05\x30\xe2\x1a\x0c\x00\x27\x65\x7d\x7a\xd9\xe8\xb5\x55\xe1\x51\xbb\xc7\x50\xd6\x46\xec\x1e\x38\x71\xcb\x9a\xda\xf8\x06\x28\x66\x80\xb3\x5c\xdb\x34\x4c\x4c\xc8\x59\xa1\x78\x4c\x34\x82\xd5\x47\x05\xba\x2e\x9e\x71\x2d\x7a\x50\x7e\x61\xd6\x6b\x36\xa9\xad\xac\x9e\x95\xf5\x41\x08\x6d\x2b\x7f\xc7\xca\x3f\x53\x12\x1c\x45\x9e\xcc\x28\x8b\xa9\x53\xee\xfe\xe4\xa0\x95\xed\x96\xbd\x3f\x89\x2d\x9c\x76\xfe\xa1\xce\x6f\xb7\x6b\x60\xe7\xe9\x86\x0d\x08\x1d\x3e\x2d\xac\x4f\xfa\x24\xa3\x45\xa2\x5d\x9d\xf9\x99\x71\x98\xba\x3f\x2a\x19\x33\x18\x60\xa6\xfc\x42\xc3\x0f\x61\x5b\x95\x96\xd7\x45\x4c\x4a\xc2\xc5\xc4\x29\x5e\x03\xe3\xf6\xb0\x48\x4c\xbb\xb1\x13\x55\x25\xb1\xc0\x0c\x51\x36\x97\xd7\x85\xae\xb3\xa2\x52\x5e\x40\x67\x31\x5f\x94\x65\x41\x96\xe5\x64\x68\x67\xd1\x75\x19\x45\x63\x79\x5d\xe8\xf1\xf9\xcc\x92\x5a\xa9\x23\x87\xbb\x3d\x92\x7d\xc6\x98\x9d\xc9\x48\x26\xe6\x18\xca\xec\xee\xb5\x32\x95\x2a\x90\xca\x1c\x35\x6c\x76\xa1\x13\x9a\xdb\x2a\x75\xbf\x9d\xab\x7a\xd2\x97\x59\x67\x8c\x51\x3a\xc6\xfb\x06\xae\x18\x04\xe6\x22\xb7\x16\x67\x58\xd1\x53\x4e\x45\xd1\x04\x21\x44\x14\x09\x19\x71\xd2\xd2\x89\x01\xaf\xa5\x13\x03\xeb\x7e\x34\xa2\x6f\x17\xb1\xb4\xe8\xc3\x74\xa9\xb4\x5b\x38\xcc\x39\xa9\x6a\x5e\x7e\x95\x2b\x3f\xb6\xc8\x82\xc0\xe8\x13\x2d\x79\x82\x00\x2e\x2d\x6b\xbb\xe3\x89\x4c\x4f\x14\x00\xc4\x69\x63\x96\x42\xe0\xaa\xb4\x99\x99\xd5\x13\x3e\xb9\x26\x07\x0c\x87\x60\xd6\x3b\xf9\xdd\x34\x1d\x50\xbe\x99\xa6\x63\x3a\x9b\x1a\x7d\x74\x7f\x22\x60\xa7\xc4\xd5\x42\x74\x9f\x11\x57\x0b\x4c\x57\x35\xd3\xc7\xb8\xa2\x69\xa7\x54\xd5\xe9\x0b\x16\x66\x16\x64\x0c\x38\xda\x95\x02\x11\xb4\x2b\x85\x4a\x2a\x49\xbc\x07\x69\xb2\x63\x05\x22\x9f\x1a\xd3\x49\x0a\x08\xda\x72\x02\xc9\x13\xbd\x06\xa0\x9a\x73\x6a\xac\x40\x70\xf4\xc8\x48\x7a\x1f\x3e\xb0\x97\x03\xc5\x55\x7d\x30\xc4\xb0\x09\xc9\x16\x73\xeb\xd4\x55\x69\x0e\x00\xcb\x51\x69\x04\x26\x53\x6e\x10\x60\x07\x39\x25\xfe\x19\xf0\x09\xf1\xcf\xc0\xb4\xda\xa9\x81\x35\x83\x4d\x2b\xb3\xd1\x3d\x04\x84\x5c\xa5\x04\xe9\x4f\xed\x1d\x34\x22\x64\x62\xeb\x28\x8b\x19\x82\xad\x8d\x29\x03\x6a\x1f\x24\x1b\xcb\x75\x25\xbb\x98\x24\x95\x00\xb1\x88\x3b\x47\x1f\x3a\x41\x01\x50\x84\x50\xfb\x54\xb5\xbb\x0a\x50\xb1\x9a\xc2\x4e\x05\xec\xe3\x3c\xce\xf3\x8f\xf4\x08\x6c\x32\x56\xf8\x57\x2d\xec\xcf\x8c\x77\x7c\x11\xe3\x17\xd5\xa2\x3f\x94\xeb\x3a\x9c\xd6\x01\x64\x47\x41\x76\x25\x44\xa5\x45\x33\x4f\xdf\xfe\x24\x5b\x0d\x9b\x34\x26\xed\x08\xbd\x3e\x18\x61\x59\x61\xb0\x61\x50\x89\x33\x03\xd8\x28\x18\x05\x00\xbd\x5b\x3a\x4a\x02\x68\xae\x8e\x02\x63\xb7\xd0\xeb\x0c\x2c\x42\x22\x5d\x29\xb9\x00\x87\xf7\x8c\x1c\x3f\xee\x03\xd3\x99\x53\x60\xd8\xca\x9f\x5a\x87\xf0\x38\x58\x16\x68\xac\x40\x57\x12\x00\x82\x80\x5d\x12\xf3\x1b\xb6\xe5\xb2\x35\x7f\xd8\xa5\x31\xd5\xef\x0c\x10\x90\xc7\x45\x3d\xad\xb9\xc5\x81\x08\xcd\x59\x65\xf1\x0c\x51\x95\xe2\x7d\x2c\xae\x89\x81\xad\x22\x95\x6b\x34\x64\x5d\x41\xc3\xb4\xb1\x10\xa4\xcd\xe9\x65\x93\xe5\xd9\x98\x67\x8d\xf2\x48\x4a\x12\x44\x24\xc7\x88\x0a\xa0\xf6\x3a\xf1\x3e\x0c\xcd\xe5\x95\x45\x4f\x68\x83\x91\x5c\x87\x48\x4f\x4e\xa6\x2d\x50\x9c\x9c\x5f\x40\x03\x4c\x1a\xec\xcb\xac\x22\x5a\x61\x0f\x10\x14\x91\xe2\x7d\x2c\xc0\x26\xda\xa9\xd9\x1f\xc1\x44\x33\xbb\x23\x98\x47\x67\x70\x3e\x74\x03\xca\x98\xdc\xa6\xde\x4c\xa0\x5c\xed\xb7\x01\x8c\xa8\xfd\x36\x30\xc5\x95\x9f\x01\xb8\x0b\xb1\x9b\x44\xe4\xae\xc3\xcf\x4c\x53\x10\x19\x5c\x00\x2a\x0a\x61\x37\x0b\x96\xd4\xb1\x71\x7c\x91\x3d\xbb\x59\x94\x05\x6e\x19\x2c\xc9\x76\x6a\xe0\xa7\x14\x3e\x89\xf3\x3c\x03\x33\x5b\x65\x74\x67\xd1\xe3\x17\x46\xee\x8a\x39\x38\x31\x72\x17\x92\x6c\xae\x2b\xd8\x83\x73\x8a\xc9\x24\x93\x9e\x6d\xcd\x64\x0c\x2d\x9c\x4c\x08\x00\x51\x72\x02\x11\xc5\xbc\x70\xc5\xeb\x21\xa0\x39\xe2\x15\x0a\xa3\xa5\x8b\x31\x7f\x91\xe5\x39\x4b\x3b\xa4\x4e\xa2\x33\x57\x08\x19\x21\x21\x26\x7f\x62\x71\x93\x3f\x45\x22\x8f\xf5\xae\x2c\x85\x34\xa9\x6b\x00\x80\xba\xa8\xd4\x9a\x2c\x2a\x9f\x14\xe5\x44\xca\x0b\x38\x55\x7f\xd1\x92\x17\x50\x4e\x4b\x5e\x00\xc5\x4b\x1e\xe7\x7a\xfb\xdd\x83\xaf\xf9\x33\x1b\x32\x29\x95\xe9\x7f\x00\x0a\xbc\x48\x2b\x5b\x05\x6c\x7e\x5e\x94\x0d\xcf\x18\xaf\xb9\xb2\x51\x82\x69\x65\xb2\x88\x79\x6d\x0c\xd7\xb0\xf7\x9a\xf0\x38\x41\x17\x80\x9b\xb1\x4e\x4b\xf1\xda\x87\xc9\x02\x90\x1d\xc4\x48\x54\x7a\x57\x61\xec\x2a\xc8\x9e\x82\x1c\x2a\xc8\x81\x82\x8c\x25\x64\xa0\xcb\xdd\x51\x10\x5d\xce\x9e\x84\x0c\x65\x4d\x4c\xa5\x35\xc6\xbe\x82\xe8\x72\x55\x6b\x76\x34\xce\x81\x84\xec\xea\xd6\xc4\x0a\xa2\xbf\x52\xbd\xdc\xd7\x10\x59\x97\x92\x22\x3d\x64\x61\xae\xfd\x2e\x86\xb0\x82\x4f\x5a\x4a\xa0\xe8\xd7\x0b\x22\x3a\x04\x8d\xa7\xf4\x6c\x10\xc4\xf0\x4f\x64\x2f\x0e\xfb\x04\xba\x39\x07\x17\x14\xc0\x48\x25\x04\xb6\xaa\x53\x0b\x92\x02\x44\xd9\x19\x0f\x04\xa9\x7e\xa2\x5e\xac\xb0\xad\x9e\x5a\x10\x21\xd5\x7e\xd2\x47\x5c\x4d\xaf\x0f\x5d\xf8\x89\x9c\xad\xc1\xa9\xf2\x94\x02\x52\xc0\xd0\xb6\x28\x68\xaa\xb1\x45\x41\x43\x8d\xb6\x04\x76\xb8\x29\x49\x43\xe7\x95\xa0\x07\xab\xcd\x54\x79\xce\x82\x7b\xc1\xf4\x54\x2d\x14\x07\x50\xb3\x36\x31\xa5\x63\x48\x5e\x5a\x9f\xb2\xcb\x4b\xeb\x63\xb9\xfe\x28\x19\x0c\x1d\x66\x95\xb2\x77\xc6\x60\x3f\x9f\x6a\x9f\x21\x95\x6f\xf4\x99\x83\x9e\x86\x94\x0a\x34\x30\x20\xdd\xb4\x1d\x84\x99\xb6\x69\x03\xad\x80\xea\x0a\xc0\x0a\xf6\x93\x2b\x9d\x04\xaf\x4d\x5d\xe9\x04\x25\xaa\x73\x0b\x70\x18\xf8\x49\xa5\x60\xaa\x4e\xa7\x76\x32\x9b\x2b\xca\xf4\xe1\x48\xe6\x27\x62\x60\x81\x21\x21\x06\x16\x48\xe7\xb1\x22\x02\x50\x4e\x35\x1d\xd4\xdd\xa9\x92\xe6\x31\xc8\xa1\x69\xfe\xa7\xc2\x85\x66\x15\x86\xa9\x62\x99\x36\x7e\x91\x0a\xa6\x2c\x02\xe0\xec\x33\x2d\xf4\xa0\x1e\x62\xee\xa5\x9d\x4d\x06\x0e\x11\xcc\x4a\x09\x3a\xe8\x4f\x2d\x51\x08\x63\xd5\x12\x85\x50\x1a\xb1\xb9\xfd\x04\x37\x9f\x38\xb5\xcd\x00\xa7\x50\xf8\x6b\xad\x9d\x20\x53\xc9\xbc\x17\x4d\x9e\x5b\xdf\xed\x9b\x3c\xf9\x9f\xa2\xca\xc0\xe4\x90\xc2\xf6\xc9\x07\x1f\x05\x1b\x5a\x6a\x0f\x33\x99\x54\xd7\x01\x3d\xe1\x27\x57\x66\x40\x0d\x53\x23\x33\x90\x67\x0c\x8d\xe0\xab\xa9\xf1\x96\x88\x0f\x98\x04\x68\x85\x1f\x98\xb1\x36\xac\xbf\x8f\x69\xed\x41\xbb\x0f\x45\x0a\xc6\xff\x41\xb4\xe0\x4c\xfd\xa8\x29\x0f\x4e\xc9\x3e\x33\xc5\x12\xf2\xf7\x7a\xdb\x08\xba\xdd\xb4\x26\x8a\x5a\x0c\x7e\xbf\xd3\x9a\xdb\x1c\xb2\x27\x81\x46\xdf\x3a\x40\x48\xab\x74\xce\x2e\x73\x67\x78\x00\x48\xa0\x52\x30\xd4\x3c\x77\x48\x3f\xad\xb9\x4b\xa1\x2b\xc6\x6b\x8b\xd7\xcc\x3c\xbd\x22\x2c\xaa\xa1\x2f\xe3\x84\xc9\x8d\x36\xda\x2d\x67\x71\xc6\x8d\xda\x1f\x03\x24\x9f\x98\x75\x70\x16\xcf\xb3\x5c\xd9\x51\xc0\x61\xe0\xe5\xb3\x0f\xc6\x52\x3f\xc0\x2f\xb8\x31\xd6\xef\x48\x08\x37\x87\xbe\x70\xca\x44\x2c\xd5\x20\x35\x66\xe4\xdc\x61\x47\xe6\x6b\x6b\x46\x0a\x4d\x15\xd5\xfe\x5f\x91\x35\x8e\x35\x9f\x08\x81\xfe\x92\x48\x6b\x90\x2b\x33\x0a\x10\x63\x36\x63\x31\xaf\xb5\xc5\xd8\x40\x88\x5d\x19\x81\x79\x9e\xa9\xce\x0f\xf6\x00\xc2\x13\xbd\x31\x00\xeb\xc6\xcc\x15\x64\xe2\xc3\x97\xda\x71\x01\xac\x25\x2f\xb3\x7c\xcc\x78\xfd\x71\x11\x27\x8c\x92\x6a\xf6\xb5\x62\xc4\xfa\x82\x4d\xfb\x5a\x5d\x53\x18\xd4\x5a\x12\xdb\xc5\x04\x00\xf3\x7a\xa6\x8f\x83\xa0\xa8\xb2\xfc\x9a\xb3\x49\x4d\x0d\x6b\x20\xed\x45\x06\xd8\xba\xac\x1c\x18\x84\x96\x30\x11\xf8\x2f\xc9\x81\x2d\x0c\x70\xc9\x35\x79\x7b\x7d\xe8\x5c\xc9\xb3\x6f\x65\x51\xc7\xf9\xeb\x4c\x49\x3d\x74\xc8\x9b\xb5\x96\x7e\x18\x28\x32\x8d\xa1\xa9\xc4\xb1\x59\x0e\x18\xb5\xef\x60\x8f\x2d\x88\x60\xc4\x97\xcd\x1c\xac\x95\x2f\x1d\xe7\x25\x91\xa6\x52\x0b\x7c\x91\x66\xb7\xc4\x0b\x6a\x67\x08\x90\xc5\x4c\x39\xf2\xe2\xc1\xd5\x2b\x62\xa7\x11\xcd\xcc\x88\x9d\x06\xd2\x52\x72\xf4\xc0\x1d\xe0\x95\xb1\xbf\x30\xc8\xd4\xf6\x17\x06\xb9\x5a\x1d\x38\x80\x5c\xad\x0e\x88\xe4\x2b\xb3\xfc\xc3\xe6\xe2\x95\x31\xc6\x00\x41\x33\x63\x8d\x19\x62\x1a\xb7\x30\x7f\xdc\x80\x69\x3c\x9b\x4c\xe8\x44\xc8\x5c\x86\x13\xf4\x7a\xa5\x19\x0e\xcc\x63\xaf\x88\xdd\x44\x30\x60\x46\xec\x26\x90\x96\xb6\xb2\x3e\x4c\xbd\x2c\xcb\x88\xb6\x8b\xf9\xe4\xdc\x1f\x88\x91\x15\x13\x75\x30\x72\x98\x22\x4a\x29\x77\x6f\x83\x3e\x38\x65\xbd\xfa\x59\xa9\xfb\xbd\x3e\x1c\x59\x66\x7f\x12\x00\xd0\x90\x98\x45\x40\x30\x64\x14\x30\x46\x80\xd2\x8d\x64\x47\xe6\xf1\x34\x2b\x62\x7e\xfb\xca\x6a\xf0\x3c\x9e\xe6\x9a\xf7\xd0\x46\x28\x60\x42\x6f\xa7\x5f\x67\xf3\x58\x1e\x76\xf6\x50\xeb\x7c\x35\xb7\xb3\xe5\xf6\x63\x30\x80\xfd\x67\x36\x5f\xc8\x83\xd8\x1e\xfa\x06\xbc\x9a\x2f\xf2\x4c\x3b\x57\x80\xad\x3d\x2b\x12\xbd\x07\xc2\x2b\x1c\xfa\xbc\x08\xec\x49\x84\x4e\x03\xd0\x37\x01\xa0\x5d\x6c\x0f\x41\x49\xcd\x8a\x92\xb0\x04\x34\xa5\xa8\x13\xcd\xc2\xe0\x4b\x44\x06\x40\x50\xe6\x95\x49\x26\x98\xcb\xa6\xda\x6c\x85\x52\xce\x3d\x1b\x19\x4b\x3c\xee\x94\xfc\x0a\x0c\x5e\x8c\x5c\xf6\x40\xef\xf4\xac\xa8\xf3\x98\xcf\xe4\x8e\x29\x06\x3b\x5f\x56\xd4\xc6\x5f\x23\x06\xf3\xcd\xab\xe2\x2a\xab\x32\x38\x92\x51\xfa\xb9\x9a\x23\x2a\x87\x78\x0e\xf5\xc0\x6f\xf3\xd5\x3b\xa3\x9c\x41\x77\x4b\xa3\x9c\xc1\xb8\x10\xcb\x11\x38\x93\x64\x14\x30\x01\x0c\x47\x58\xc1\x6e\x39\x6b\x89\x30\xe8\x60\x69\xcc\x0c\x87\x80\x65\xec\x0c\x90\x76\xbb\x94\xe9\x15\xfc\x06\x8c\xc7\x59\x4b\x8e\xc1\x24\x37\x72\x0c\x39\xae\x72\x86\xbe\xca\x0a\x62\x95\xde\x95\x20\xb5\xca\xc2\x31\x8e\x00\xa8\x35\x7b\xb2\xa3\x00\xca\x7a\x33\x19\x4a\xc8\x95\x55\x6e\x6d\x91\xb2\x36\x47\xa9\xfd\x01\xe6\x53\x08\x4c\xc5\xe6\xab\xa1\xb7\x10\x0f\x19\x01\xc0\x16\xf2\x95\x36\xa8\x40\x7f\xb5\x41\x45\xa4\x7e\x26\xab\x25\x1c\xad\xff\x49\x01\xbb\x80\xa1\xe5\xd7\x21\xe4\x6b\xf1\x25\x92\x3f\xbb\xfa\xbe\x60\xf9\x3f\x5d\xa9\x25\xb8\xeb\x4f\x33\x3f\xd1\xaf\xea\xe7\xd6\x28\x0b\xee\xf8\xb3\x35\xca\x82\xb5\x7f\x6e\xe9\x8c\xa2\x69\x7f\xb6\x86\x0e\xba\x54\x31\x6e\x28\x72\x00\x78\x04\x02\x5a\xf4\xcf\x94\x68\xd0\x6d\x4a\x34\x01\xf8\x67\xbc\x58\x68\xc6\x12\x8c\xf6\x95\x00\xc6\x1a\xa0\x8d\x8b\x82\x49\xfe\x49\x37\x97\x70\xa7\xe4\xab\x05\xd9\x07\x1c\x4d\x4e\x28\xc4\x90\x53\x24\xff\xe9\x92\x53\xf0\xe2\x57\x97\x9c\xa2\x07\x5f\xa7\x5c\x5d\x56\xe9\xa1\x73\xc7\x3f\x89\xc7\xa4\xa0\xce\x57\xe2\x31\x29\xd2\xff\x24\x9b\x26\x31\x11\xbe\x92\x4d\x93\x48\xff\xb3\x35\x1e\x82\x05\xbf\xb6\xc6\x03\x70\x5b\xe3\x01\xbd\x75\xa1\x70\x25\x24\x7f\x66\x14\x9a\x54\x74\xf2\x35\x35\x07\x00\x17\xe5\x16\x24\x06\x88\xed\x3d\xb1\x03\xb0\x29\x8f\x95\xe5\x0e\x6c\xef\xaf\xe3\xf9\x38\xd5\xa3\x34\x06\x1c\x02\x19\x23\x44\x79\xc8\xed\xc3\x31\xc2\x6b\x92\x8e\x65\xbe\xbe\xfc\xd7\x97\x00\x65\xa7\xc3\x4f\x72\xb3\x25\xdc\x85\x12\xe0\x56\xae\x31\x24\x41\x5b\xf2\x58\xde\x81\xba\x89\xb1\x5a\xce\xa5\x77\x58\x9f\xed\x28\xc0\x44\xca\x83\x43\x30\x46\x10\x1f\x2d\xd8\xc1\xbc\x26\x69\x06\x94\x33\x84\xeb\x49\x7c\x53\x42\x2a\x21\x4a\x88\xa3\x0a\x28\x20\xf9\x42\x41\x54\x4b\x16\xda\xa5\x4c\xe1\xe8\xcd\xc3\x21\x6c\x1e\x04\xa8\x56\x7b\xec\x18\xfb\x53\xc7\x99\xfa\x0c\xa6\x7e\xfe\x8c\x42\xb0\x68\xa5\x49\xc8\x9a\x94\xef\x65\x1c\xa7\x32\x5d\x69\x80\xde\x77\xe4\x63\xb3\x37\x02\x4e\xcc\x7f\x24\x00\xe8\xb8\xb9\xa3\xb6\xbf\x0f\x8d\x19\x73\x54\xa7\xef\x54\x42\x64\x9f\x63\xe2\xab\x5a\x6f\x0f\xc6\x12\x50\xe5\x6a\x44\x0f\x26\x1a\xd4\x28\x90\x68\xda\x6b\x7a\xe8\x06\x96\xc7\xdc\x82\x30\xc0\xa1\x93\x17\xca\xb6\x20\x09\x42\x14\x49\x86\x20\x6b\xf2\x04\x9c\x02\xef\xe0\x7b\x3d\xd5\xf1\x63\x3d\xd5\x21\x99\x26\xea\x26\x2d\x88\x8a\x9c\xde\xa1\x4b\x14\x40\x2b\xe3\x40\x96\x94\xa7\xe4\x1c\x73\x1f\x41\x4d\x65\x60\x3b\x58\xb2\xd6\xb8\xc1\x45\x5b\xdf\xe2\x85\x6b\x31\xb9\xde\x09\x8a\x5a\xc1\x87\x41\xf0\xfb\x8f\x82\xa6\xea\x8c\x4a\xce\x14\xe5\xdf\xa0\x4f\xa3\x25\x27\x3b\x5b\x0f\xe4\x5d\xc7\xc9\x42\x03\x63\xd7\xf3\x42\x63\xb6\x1c\x1c\xc0\x09\x5b\x97\x6e\x98\x0d\x19\x52\x7c\xf7\x9c\x41\x88\x49\x4a\x70\x01\x46\x27\x06\xa7\x0b\x7b\x3a\x13\x4e\xc2\xad\x33\x77\x38\x3a\x51\x99\xad\x23\xf7\xc3\x56\xa6\x6a\xe0\x50\xe6\xbc\xc8\x4b\x05\x1c\xc2\x46\x59\xb4\x5a\x3a\x1b\x98\xbb\x69\x78\xf0\x4f\xb2\x94\x5f\x64\x1f\x8c\xc6\x22\x43\xf7\x56\x7b\x35\xec\xcb\x9c\xd6\x3e\x0e\x76\xca\x9d\x0e\x2b\x3a\xa7\xf5\x4d\xba\xd3\x2a\xad\x72\x89\x0d\x59\xb2\x81\x3a\x73\x4c\x33\xab\xcb\x26\x9b\x5a\x5b\xca\x94\x36\xc5\xa2\x2c\xec\xd3\xa4\xef\x84\xe5\x94\xb0\x63\xe0\x92\x01\xe3\xa1\x01\xd9\x1e\x11\x8a\xa2\xf5\x8c\x33\x66\x39\x5c\x8d\xd5\x27\xf2\x3a\x9f\x19\x35\x50\x6e\x68\x96\xfc\x64\x3c\x70\xe0\x74\x03\x39\x56\xad\x42\xef\x18\xbb\x15\x7d\x9d\xd7\x62\x9f\x9e\xce\x6a\x31\xcf\x81\x93\xa5\x46\x5c\x35\xaf\xf5\xc1\xc0\xca\xb0\x18\xe4\x54\x1d\x90\xa3\x64\x63\xda\x2a\x8a\x04\xba\xb4\xe6\x35\xb1\xfc\xe0\xd0\xda\xe6\x61\x64\x45\x62\x1e\x3e\x40\x80\x93\x6f\xcc\xc3\xe0\x9f\x98\xdb\xe6\xe1\xbe\x01\x29\xd3\xda\xc1\x10\x61\xa6\x6d\x46\xd0\xb3\xca\xd8\x9f\x0f\x25\x5e\x65\x5b\xcb\x76\x25\x94\x18\xc7\xf6\x24\x88\x5d\xea\x03\x57\xd5\x63\x01\x34\x50\x24\xcb\x6b\x56\x55\x30\xa6\x96\xdd\x12\xbf\x10\x79\x2d\x53\xe7\x9e\xcc\xb0\xf1\xf7\x55\xb5\xa6\xd2\x7d\x85\x69\xec\x9e\x71\x2c\x49\x50\x11\xeb\xdb\x40\xa2\xb5\xed\xa0\xa9\xcc\xb1\x8c\xa0\x20\x93\x2d\x4f\x50\x18\xec\x89\x2b\x53\x5e\xbb\xca\x20\x0c\x88\xab\x0c\xc2\xca\x3c\xb5\x3a\x31\xd5\x06\x6e\x68\x2c\x71\x1c\x85\xaa\x67\x31\x4f\x2d\x01\x35\x8b\x79\x63\xf1\x9d\x00\xa8\x85\x1e\x2e\xf8\xe5\xb3\x71\xae\x2f\xb8\xc2\x9c\x21\xca\x24\xb4\x80\x28\x93\x90\x26\xba\x0d\x8a\x34\x4d\x7e\xe8\x9a\x3e\x4c\x00\x2e\x04\x7f\x48\x35\x12\xe8\x11\xf9\xda\x5d\x65\x90\x03\x48\xe3\x0f\xc1\x68\x9b\xe7\xc6\x19\x08\x9c\xeb\x5e\xcf\x33\xb2\xdf\x06\x92\x51\x08\x6c\x25\xf3\x79\xd9\x54\x75\x9c\xcc\x94\xf3\xe1\xd8\x40\x2d\x08\x39\x0c\x38\x94\x69\xca\xbc\x08\xd3\x66\x69\xe8\xa7\xb1\xb4\x1e\x60\xee\xa5\x9d\x4d\xa6\x29\x22\x90\xc3\x00\x18\xbd\x92\x28\xa8\x09\x02\x8c\x41\x10\xc6\xab\x34\xda\x91\xfc\x44\xc8\x35\x8b\x5c\xfb\xb0\x25\xed\xf4\x52\x54\x19\xad\x2f\x0e\x48\x51\xee\x4a\xb2\x0f\x3e\xb0\xab\xdd\x1a\xf7\x49\xa1\xed\x6f\x63\x59\xf2\x3c\x5e\x54\x4a\x98\xec\x4f\x12\x09\x6d\xe3\xef\xc9\xd2\xda\xf5\xa8\x9c\xf6\x37\x30\x16\x65\xb9\x70\x5d\xf4\x51\x33\x55\x19\xd4\x13\x30\xc6\x06\x68\x5f\x94\x43\xd4\xee\x5b\xdb\xa0\x21\xa2\x39\xdb\x20\x1c\x09\xe2\xa6\x32\x40\x08\xbd\xa7\x0f\x3b\xea\xbc\xbc\x36\x17\xc1\xc0\xd0\x92\x97\xd7\x68\x66\xfd\x02\xf5\x5d\x33\xde\xd2\x9e\x0e\x55\x4e\x7b\xb1\xc7\x61\xfa\x26\x79\x3e\x41\xda\x92\xeb\xf5\x1a\xa4\x82\xa8\x80\xe7\x44\x8e\xdd\xf4\xe5\x4f\x65\xc6\x3f\x44\xb1\x4c\xee\x59\xa0\x5e\xc0\xed\x19\x09\xd3\x88\x6b\x3d\x53\xea\x07\x9c\x4e\x46\xe8\xbd\xba\x9a\xd1\x43\x35\x9e\xeb\xb9\x39\x80\xf5\x2f\xaf\x62\xa3\xe4\xe2\x56\xa4\xb5\x65\x84\x55\x97\x58\x5f\x40\x64\x19\x85\x16\x56\x5e\x3b\x99\x3b\xa2\x38\xa7\x47\x45\xa9\x04\xe8\x95\x14\xdb\x71\x39\x56\xfb\x87\x8a\xa8\xdd\x07\x0a\xa0\xd5\x6e\x90\x28\xd4\x3e\x0d\x46\x8a\xdc\x82\x40\x9d\xe4\xf0\x69\x0f\xd3\xe6\xf0\x09\x3a\x2a\x08\xfe\xbd\x28\xed\x4c\xfd\xa8\xa9\x44\xcc\x6b\x77\x05\x04\xe5\x87\xea\x3d\xb9\xa5\x09\x61\xa1\x39\x39\x66\xc2\xaf\xac\x03\x2a\xfc\x4c\x0b\x48\xd0\x5f\x45\x9a\x51\xfd\x27\x27\xee\x93\x09\x76\x86\x93\x73\x2f\x28\xb6\xe1\x29\xdd\x66\xc4\x08\xa3\x5e\x95\x80\xe6\x1e\x41\x1d\x18\x5d\x80\x1c\x41\x19\xa8\xb2\x09\xdf\x40\x00\x1f\xea\x1f\x33\xc0\xb4\xd2\xe6\x07\x3d\x99\x66\x2a\x60\x08\x82\xde\x28\x01\x7d\x08\xf6\xd9\x79\xac\xb7\xbe\x7b\x98\xd4\xf2\x86\x42\x88\x8a\x0e\x47\x85\x08\xa5\x42\x63\x47\x43\xb5\xce\x1e\x63\x05\xfc\xab\x9a\x16\xbb\x70\x01\x73\x9e\x18\xd3\x68\x0c\xab\xf1\x1b\xb3\xef\x4b\x00\x41\xef\xfb\x20\x49\x2f\xd5\x40\x35\xc6\x1f\x73\x00\xb6\x8f\x39\x8b\xab\x86\xb3\xd4\x0a\xc0\x24\xd8\xee\x0d\x4b\xb3\x66\x4e\x4e\x96\x7a\xe0\x2a\xf6\x86\xe5\x79\x56\x10\xbf\x16\x31\xca\x6f\xdc\x28\x25\x40\x40\x57\x79\x80\xea\x66\x8a\x42\x60\xa7\x9b\x67\x09\xfa\x58\xdd\x80\x59\x7c\x9e\xa5\x26\x2c\xcf\x3c\x4b\x0d\x5b\x83\xc9\x4b\x5f\xf0\x1c\x80\xcb\xd1\x3c\x4b\xad\xcb\xbf\x70\x45\x40\x85\x5b\x02\xb7\x61\x7a\x69\x00\xe6\x36\x00\x74\x78\xb1\x03\x0d\x69\x14\x49\x45\x1b\xe1\x2e\x2b\xb9\xb9\x0a\x8e\x18\xf3\x3c\xd1\xd7\xeb\xc6\x90\x4e\xf5\x95\x20\x18\xeb\x62\xe1\x7e\x51\xa6\xda\xc1\x73\x00\x23\xff\xa6\x25\xed\x61\x48\x5a\xd2\x1e\x46\x7a\x61\x95\xd5\x92\x5c\xa2\x37\x6f\x88\xeb\x0b\x62\xd5\x32\xf6\x92\x8a\xa5\xf6\x06\x3b\xd6\x1b\x42\x68\xa4\xb9\x4a\x8d\x31\x25\xe6\xb8\xbe\x6d\x07\xb7\x0c\xe7\x8d\x03\x28\xe2\xb1\x72\x6f\xc0\xab\x48\x6f\xa9\xf5\x0c\x56\xab\xc2\x82\xec\x00\x84\x04\xfb\x82\xdb\x1f\x03\x80\xea\xe3\xb5\x43\x4c\x9a\xa8\x52\x10\xd8\x0d\xeb\xa3\xd1\xa4\x28\x58\x76\xac\xd7\x57\x5f\xd3\x00\x52\x08\xaa\x1b\x7d\x48\xb1\x07\xfe\xcf\x12\xa4\x36\x9a\x70\x26\x06\x30\x0b\x69\x8c\xc7\xd0\x37\x10\x27\xa3\xb0\x62\x18\x98\x06\xd8\x91\x0b\x0c\x9c\x5c\x60\x14\xc4\x78\x4b\x0d\x3b\xe0\xc0\x57\x58\x90\x03\xc0\x21\x86\x1d\xb0\x96\x16\x16\x64\x0f\x20\xe4\xae\xed\xbe\x02\xd0\xcb\xb6\xa4\x09\xe6\x06\xe4\x00\x8a\xd7\x12\x21\x85\x6c\x2d\x11\x20\x49\x25\x02\x0c\x1f\x33\x47\x33\x87\x70\xdc\x23\x20\xda\x34\x08\x75\x33\x62\x1b\xdc\x57\x18\x46\x49\x40\x90\x12\xb8\x40\x45\x46\xfd\x37\x75\x53\xdf\xb2\x69\x5c\x67\x57\xac\x2d\x5b\xe0\xfc\x56\x65\x9f\xcd\xb2\xe4\xeb\x43\xb9\xc5\xca\xcc\xcf\x8c\xdf\x76\x22\xd8\x31\x71\x80\x1f\x59\xc5\xf4\x8a\x02\x66\xee\xc2\xf2\x2a\x25\xad\xae\x6a\x96\x76\xf9\xab\xa0\x2b\x07\xe6\xdb\x5b\x37\x5c\x67\xdf\xb2\x6b\x75\x92\xfd\x47\x01\x15\x50\xbf\xd1\x1d\x0d\xa9\x28\xe8\xad\x2b\x4c\x85\x34\x2e\x5c\x61\x0a\x7d\x22\x0e\x5e\x86\x1d\xb4\x0f\x18\xb8\xde\x16\xc6\xb1\x4b\xa7\x2f\x3b\xbf\x72\x1c\xbc\x68\x56\xd5\x01\x25\x4e\x54\x04\x95\x68\x47\xc0\xd8\xc4\xe9\xc5\x08\x82\xa9\x06\x4e\x30\xc9\xad\xf4\x4f\xf5\x15\xf9\x48\x15\x4d\xdc\x38\x60\x29\x2c\x88\x1f\x47\x82\x00\xad\x5c\xc7\x70\xc3\xae\x50\xea\x20\x32\x40\xa6\x8f\xc7\x12\x4c\x2a\x39\x03\x3b\x86\x42\x33\x07\xf2\x13\xd9\x72\x42\x36\xd9\x72\x42\x9a\x9a\xd3\x11\x40\x9a\x03\x13\x8d\x2c\x10\x40\x0a\x62\x0b\x35\xbd\xd2\x6b\x2e\x44\xd6\x2b\x5a\xd6\x4e\x28\xda\xb5\x6c\xca\xf2\xbb\x6c\x70\x48\x9a\x4e\xf3\x1c\x12\xc9\x18\x72\x54\x8d\xc4\x92\x43\xdb\xe5\x18\x74\x68\x56\xd5\x0d\xd5\xac\x8f\x6d\x30\xbb\x6e\x82\x45\xf8\x03\xd8\x9f\xe8\xa5\x86\x3f\xf2\xda\x2a\xc9\xe8\x94\x03\x16\x2b\x80\xa2\x1b\xec\x5a\x8b\xd7\x86\x65\x62\x53\x1b\xd1\x17\x60\x62\x95\x3f\x72\x16\x4b\x51\xd7\x03\x39\xf5\xb6\x2c\x00\x96\x15\x53\x2d\x31\xe4\x3a\xd0\x5a\x95\x27\x80\xaf\x7d\x58\x60\x31\x21\x01\xb5\xa0\x1d\xea\xaa\x60\x82\x79\xad\x68\x08\x03\x09\xa7\xd7\xdc\x61\x33\xf3\xb6\xac\x57\x5e\x8e\xdb\xc3\x7c\xe7\x8e\xc9\xa1\x84\x52\x63\x53\x8f\xc0\x6c\xb7\x7f\x23\xcc\xca\xfa\xb4\x2d\x72\xca\xda\x91\x6b\x13\x0b\x4a\x2b\x01\x29\x62\xb2\xda\xbe\x7d\xb4\xaa\x15\x42\xb3\x03\x85\x7a\xfb\x1d\x5a\x39\x1d\x0e\x7f\x1d\xdf\x5b\x46\x2f\x39\x34\x9d\x9e\x3d\xf4\xdb\xb6\x8b\x8f\x61\x9e\xb2\x36\x87\xf0\x87\x0a\x40\x4f\xe1\x6d\x54\x73\x18\x6f\xc3\xaf\xe2\x56\x21\x3a\x24\x28\x18\x32\x10\xa4\x6e\x89\x4c\xe4\x60\xaf\x32\x3b\xd3\xd6\x77\xd8\x9f\x61\x7e\x38\x59\xb4\x83\x2c\x51\xf9\xf6\x6c\x95\x20\x6b\x9c\x7b\x06\xee\x18\x2f\x0f\x4c\x8e\xb5\xe2\xd9\x8d\xeb\x34\x51\xba\x28\xd6\xb0\x49\x56\x5c\xbd\xde\xc6\xb1\xc5\xc8\x5d\x0b\x6f\x1c\xf7\xe9\x00\x98\x35\x20\x51\x00\x33\x22\x06\xa4\x47\x84\x69\x90\x1e\x11\x39\x3d\xdf\x73\x96\xb0\x54\x6f\x89\x0f\x7a\x36\x98\x76\x33\xb6\x86\x49\x61\xb8\xd4\x18\x30\x59\xc4\x07\x76\xc5\x78\xc5\x9c\xf9\x2d\x47\x0a\x6f\x71\xb6\x38\x21\xed\xd1\x2a\x2c\x24\x55\xfa\xb8\x23\xcf\xaa\x5e\x76\x0c\x2f\x5f\x7c\x6c\xc6\xe6\xd6\xd8\x81\xd5\x01\x8a\x60\x15\x30\xb0\xf3\x17\xa2\x17\x3a\x82\x50\xaf\xab\x08\x44\xb1\x0a\x19\x4a\x0c\xab\xfe\x81\x5e\x0c\x74\x16\xfd\xe8\x40\x15\xdb\x24\x09\x63\xa9\x1e\x93\xbe\x0d\xa6\x63\x32\xb6\xdb\x23\x31\xda\x63\xe2\x14\x61\xf1\xa7\x4d\x15\xbb\xbf\x07\x43\xbb\xc9\xed\x9e\x1e\x48\xb1\x66\x09\xe6\x3e\x81\x59\x92\x68\x87\x64\xb8\x32\x16\x36\x04\x2a\xd3\x2a\x4e\x56\xd1\xb1\x88\xc0\x6a\xbb\x88\x79\x9c\xe7\xda\xf1\x1f\x56\x96\x62\x61\xaf\x34\x05\xb9\xce\x15\x4f\x52\x1d\x3c\xb2\x30\x3e\x70\x83\x9e\x99\x86\xc5\xa2\xcc\x49\x28\x26\xac\x86\xd3\x49\x52\x2c\x78\xd2\x30\xca\xf3\x05\x89\x9f\x72\xa0\x01\xda\x76\x4d\xa6\x8f\xc8\xe8\x80\xf2\x98\xab\x7b\x75\x87\xc3\xa1\x0d\x57\x9a\x13\xe8\x7c\x9c\x28\x65\x13\x85\xa1\x95\x2b\xa2\xbe\xb4\x0f\x40\xe1\xfb\x0f\x2d\x25\x0a\x4b\x21\x1a\xc9\x58\x01\x18\x9d\x57\x85\x0e\x91\x03\x4c\x59\x54\x09\xa1\x81\x84\xb0\x0e\xd6\x6c\xb9\xba\x1c\x22\xae\xb3\xfb\x87\x8d\x5b\x35\x2b\x79\xed\xe8\x38\x08\xec\x1c\x67\xb2\xb7\xe9\xcb\x34\xa3\xdc\x56\xd0\x58\xc1\x12\xd2\x2a\xdd\x65\x96\xea\xd2\xc4\x21\x42\x81\x00\x20\xbd\x55\x66\xd8\x52\x15\xbb\x68\x70\xb0\x23\xd3\x6a\xef\x9f\x90\x75\x94\x14\x75\xa0\x00\x9d\x42\x41\x66\xe8\xd6\x52\x6c\xad\xcf\x3a\x45\x27\xce\x80\x88\x09\x7e\xd9\x1e\x81\x42\x87\x51\x1a\x80\x85\x5e\xa4\x75\x5b\xf7\x2c\x34\x46\x27\xb6\x00\x74\x4a\x03\x99\x61\xda\x7a\x48\x81\x97\x1d\x45\xd7\xe6\x0a\x09\xcc\x67\x13\x6a\x1a\x22\x2c\x14\x26\x3d\xc1\xb4\x39\x91\xc3\xef\x5b\xa1\x69\xa5\xde\x4c\x33\x74\x7b\x50\x71\xed\x88\x58\x2b\x59\xdb\xca\x31\x5f\xc1\xe2\xa1\xad\x4b\xc0\xf2\xda\xba\x84\x29\xc1\x6d\xff\x86\xbf\x98\xba\x48\x89\x77\xbe\x8b\x86\x5c\x0f\x06\x1d\xe8\x8a\x04\x7d\x32\x94\xbb\x22\x61\xea\x40\xa5\x2e\xae\x4e\x08\x04\xaa\xf9\x4c\x71\x60\xf5\xfe\x4c\x71\x60\xba\x5e\x91\x6b\x51\xa4\x74\xbc\xa2\x41\x00\x2f\x89\x67\x10\xf0\xe9\x95\xe5\x9c\x0c\xa5\x5f\x99\x7d\xde\x61\x0f\x3f\x23\x2e\x2f\xa4\x30\xb4\xc1\x5b\x00\x6a\x0a\x27\x19\x9c\x94\x38\x44\x08\x45\xa5\x4d\x26\x51\x3d\x13\x03\xbe\xa6\x16\x9c\xa1\x84\x68\x41\x08\x14\xbf\x26\x16\x9c\x3d\x85\x61\x84\x1d\x82\x0a\x62\x0f\x11\xc3\xf2\xce\x38\xae\x43\x28\x8d\xd2\xa4\x27\x98\xb6\x63\x0e\xbe\xd3\xbe\xeb\xe0\x0a\x52\xea\xe4\x44\x25\x15\x76\x0c\xd8\xda\x4e\xc5\x20\x5b\xdb\xa9\x20\xe9\x86\x28\x7c\x47\x42\x3b\xf5\xe1\x4e\x70\x69\x41\xfa\x00\x51\xbb\xf8\x18\xa6\x92\x09\x77\x8d\x11\x0d\xcb\xb4\x2a\xb5\xb7\x16\x18\x41\xdf\x9d\x1a\x57\x72\x70\x8e\x28\x19\x01\x40\x27\x27\xe6\x3e\x09\x9c\x2b\xbd\x73\xed\x33\xf0\x99\x6b\x9f\x11\x85\x1b\x57\x63\xbc\x6f\xf3\xce\x38\xcb\xc3\xc0\x95\x26\x3d\xc1\xb4\x3a\x28\x83\x83\xa9\xd2\x5c\x3f\x39\x04\xf3\x78\x39\x9b\xcb\x29\x06\xcb\x42\xe9\x04\xd5\x2b\x69\x18\xb6\x18\x00\xa4\xe9\x88\x41\x82\xd2\x1d\x82\xc7\x62\x69\xdc\xdd\x7b\x48\x78\x7d\x5a\x07\x0e\x95\xef\x88\x27\x3d\x44\xfa\x2c\x29\x00\x06\x66\xce\xa6\xb1\xd5\x2e\x02\x80\x93\xa3\x77\x60\xe6\xd7\xd7\xe7\x27\x80\x43\x41\x63\x09\xd2\x43\xb3\x87\x69\x27\xa6\xe4\xbb\x96\xfd\x1c\xf0\x5c\x28\x6c\x83\xc9\x49\x2b\x1c\x0e\xbc\x5b\xb0\x62\x55\x54\xc7\x84\xe6\x5b\x39\xc0\x44\x0b\xa6\x43\xd9\x81\x97\x77\xb9\x70\xa2\x5a\x96\x34\x72\x1c\x0c\xb4\xda\xaf\x80\x77\x6f\xa9\x97\x4c\x28\x8e\xeb\xb7\x33\x52\x4c\x32\x6d\xc4\xdf\x51\x80\x72\xe2\x80\xf0\x62\x14\xdc\xae\x29\x79\x0a\x6c\x70\x83\x63\xcc\xb3\xa9\xb9\x6c\x00\xf4\xe0\xda\x5d\x66\x17\xd3\xd6\xe3\x1c\xfb\x00\xd2\x6f\x73\x00\x0f\x58\x01\x3d\xdf\xb5\x74\x10\xa8\x87\x9c\x35\xec\x00\x96\xba\x6b\x73\x03\x6e\x15\xa5\x49\x4f\x30\xad\xee\x74\x0e\xe0\x10\xf9\x1d\x59\xc5\x80\x66\x64\x15\x93\xe9\x39\xab\x62\x7d\x98\xbd\x87\xdf\x90\xe3\xed\x7d\x8d\xa5\xca\x85\x71\x55\x1e\xe6\x20\xd6\x4a\x95\x82\x7d\x74\x79\xa5\x27\xd0\x10\x8c\xdf\xef\xae\x98\x71\x86\x42\x76\x07\x10\xd7\xc6\xe2\x61\x4a\x81\xda\xc1\x0f\x83\xac\x09\xf0\x7b\x78\xa7\x6c\xc6\x2a\x65\x4e\xc4\xfb\xc2\x42\xe3\xc2\x41\xd9\x93\x29\xaa\x7f\xed\x22\xcc\x49\x9a\x90\x06\x20\x4d\x6d\xbd\x1b\x01\x46\xe1\xf6\x42\x4f\xbe\xa6\x7c\x62\xc1\x8c\x10\x15\x73\x68\x61\x84\x28\x24\x19\x4f\x40\x46\xfc\x1f\x4c\x64\x70\x3b\x61\x1b\x13\x73\xe5\xf1\xd8\x83\xbb\x43\x86\xcb\x31\x7e\xfb\x82\xf1\x9a\xa9\x60\xf5\x3d\xb8\x4b\xf2\xde\x95\x7c\xd0\x6c\x57\xf2\x89\xa6\xbf\x37\xa1\x70\x81\x1e\x26\x14\xae\x4c\x2a\x57\x76\xe0\x85\xc5\x4c\x46\x2c\xd5\x27\x59\x8b\x99\x8e\x79\xba\x07\xa7\xfb\xef\x75\x79\xd0\x56\x5d\x1c\xa6\xea\x64\xe6\xde\xc8\x5f\x98\x2a\xa0\xca\x3c\x2e\x54\x08\x5f\xbc\x1a\x86\x10\x7d\x5b\x8c\x49\x90\xba\xc6\xaf\x90\x9a\x8a\xbc\x8d\x02\x8b\xab\x80\xe9\x53\x46\x26\x01\x04\x67\x20\x41\xde\xc8\xdb\x94\x3f\x53\xa9\xfe\x60\x98\x32\x80\xe8\x13\xc7\x5d\x09\xd1\x41\x5f\x61\x58\xf3\xa6\xd2\x21\x75\x6f\x20\xa4\x81\xc0\x99\x17\x76\xda\x70\xd0\x60\x4f\x82\xea\x6b\xe5\x3f\x07\x4b\xf8\x62\x6e\xbe\x78\x5f\xe2\x1d\x23\xd1\x4d\x7d\xd1\x08\x98\x57\xac\x24\x64\x13\x07\x4d\x6a\x49\x55\x2c\xc2\xd8\x3f\x0f\x01\xab\xc1\x38\x7a\x37\xe0\x5f\xb9\xe0\xfa\x34\x0c\x84\xee\x7b\x45\x14\x90\x8a\x7a\x5b\x08\x17\x64\xe9\xae\x10\x7c\xd2\xc4\x1e\xd0\xf2\x78\x82\x22\xc8\x56\x51\x7e\xc6\x12\x19\x6e\x93\x7e\xec\x58\x67\x00\xb5\xdb\x34\x43\x32\x5a\xbb\x7f\xab\x28\x6b\xeb\xcf\x64\xd5\x64\x93\x2a\x21\xb6\x97\x16\x2c\x10\x00\x36\xba\x3d\xac\xdd\x00\x23\xde\x57\x07\x08\xb3\x4b\x53\x1b\x8d\xf1\x50\x7e\x41\xcc\xe5\xd8\x02\x12\x4f\x1e\xf8\x84\x02\x86\x0a\xa3\xb2\x86\x88\x1b\xbf\x32\xd9\xba\xe2\xd4\x6e\x59\xbb\x5d\x3a\x90\x6e\x0f\xe9\x45\xc3\xe8\xe2\xc4\xe0\xe5\x24\xce\xb5\x74\x1d\x30\x09\x33\xda\xc4\x10\xf4\x22\x01\xab\x1a\xe5\x2d\x30\x44\x89\xa1\x43\x7e\x0d\xe0\x84\xf2\x3d\x2f\x17\x25\xaf\xb3\xb2\xd0\x03\xe1\xc0\x25\x74\xb8\x2f\xbf\xae\x4b\x8a\xb7\xe0\x2d\x32\x35\x5c\x0b\x5f\xf0\xda\x79\xdf\x5a\xd3\x80\x21\x5b\xfb\xea\x5d\xc0\xd5\xb2\x06\x88\xa1\x93\xb0\x3a\x2e\x9a\x22\x31\x9b\x17\x01\xf9\x97\x2b\x15\xc5\x1c\xbf\x74\xa5\xa2\x68\xd7\xa5\x73\x19\xf2\xb2\x35\xc7\x04\xc9\xfe\x45\xe6\x98\x60\xe3\x4b\x3a\xea\xb0\x7c\xff\xab\xd5\x1b\x28\xad\xd5\x1b\x21\x13\x2e\x9b\xb8\x66\xbc\xc8\x8c\xbb\x35\xdc\x9a\x12\x60\x32\xe3\x11\x13\x7d\x79\x8e\xd5\x6f\x13\x6f\x66\x02\x20\xd4\xa5\xff\xf0\x44\x0b\x3e\xbd\x3b\xd3\x09\x4e\xef\xdc\x08\xba\x9a\xe5\x74\x30\x44\x1b\x8b\x90\x1d\x1f\xa8\x9f\x00\x28\x46\xdc\x82\xec\x02\x24\x55\xb7\x63\x07\xd0\x79\xee\x5c\xcd\x19\x02\xcc\xf8\x2c\x1e\x42\xc1\x26\x3d\x96\xf9\xfa\x92\xcd\x40\x02\x74\xf4\xb5\x5d\x09\x30\xb7\x6e\x0e\x01\xa2\x2e\xd4\x8c\xb1\x08\xae\x45\xd9\xe1\xfe\xae\x84\xe8\x2b\x36\x1a\xa0\x2f\xc8\x80\x7f\x90\x6d\x96\x92\x00\xf9\x0d\x34\xe4\x03\x39\xc3\x84\x0f\xc8\xae\x6c\x20\xf1\xcd\x9d\x1b\x26\x21\xe6\xce\x4d\x2c\x21\xe6\xce\x4d\x22\x21\xfa\xce\xcd\x8e\x6a\x1b\xb9\x73\xb3\x23\xab\xae\xf5\x7d\x9a\x3d\x89\x64\x6e\xe1\xa8\xe6\x1a\xe3\x18\x00\xe8\x25\x1c\xa8\xdd\xba\x96\x83\xb5\xd7\x99\x9a\x8e\xc3\x3d\x05\x28\x88\xd7\x05\x7c\x47\xaf\xe1\x40\xd1\xf4\x1a\x8e\xe0\xaf\x0f\x04\x00\xfe\x43\x9c\xde\xcb\x81\xe6\xa9\x7b\x39\x4b\x95\x10\xd9\x17\x98\x30\xf7\x72\x12\x09\x20\xf7\x72\x98\x06\xa9\x7b\x39\x70\x63\xe4\x03\x75\xcd\x00\x5f\x7a\x6e\x41\x80\xb9\xa8\x6b\x06\xe8\xd3\xdc\x82\xec\x23\xc4\xdc\xcb\x01\x6e\xc2\x7b\x39\x4b\xf8\x5e\xdf\x93\x83\x4e\x99\x6b\x72\x90\x24\xf7\x72\xa0\xa4\x34\xa7\x97\x6e\xa0\x2c\x7a\x55\x27\x55\x00\x6e\x43\x8c\x8f\x22\x10\x8a\xc5\x3a\xce\x5c\x22\xd3\xe4\x52\xf3\x58\x82\xe8\xa5\x66\x85\xa6\x07\x4d\x94\xfb\x81\xd9\xd9\x6a\x09\xd8\x05\xd3\x0b\x97\x01\x8b\xc1\xea\xf2\xe1\xf4\x27\x92\xe8\x3c\xd0\x18\x93\x9c\x76\xbc\x31\x92\xfb\x69\xd1\xca\xc7\x38\x8a\xdc\xf2\x63\x87\x36\x58\x7e\xec\xd0\x31\x57\xf0\x02\x6f\x99\x4b\xec\xd0\x13\xe2\xa4\x0e\x72\x88\x38\xa9\xc3\xce\x9b\x13\x27\x75\x50\x31\xb9\xe5\xa4\x2e\xca\xf8\x20\x1d\xd9\x7a\xc3\x18\xbf\x50\x49\x59\x40\xa9\x2f\x6b\x82\xec\x03\xc7\xda\x8e\xab\x4f\x87\x3a\xd3\xb9\xfb\x04\xd3\xb8\x65\x94\x1e\x58\xe8\x2d\x68\xec\x06\x70\x35\xb8\xae\xd3\x2f\x44\x3d\x36\x15\xd0\xfb\x4f\x43\xf5\xa1\x73\x01\x4a\xb7\xb5\xf3\x06\xd4\xbe\xc9\x6d\x5f\x81\x82\xad\xae\xce\x6d\xdd\x4a\xd9\x6d\xe7\xaa\x66\xea\x5e\xbc\x68\x8d\x34\xb9\x4a\x44\x7c\x2c\x91\xfe\x24\x4f\xfb\x54\xe2\x48\x8a\x9c\xf6\x45\xa8\x1d\x9a\xe5\xde\x4f\x4a\x54\x66\xc7\xc5\xa6\x43\x95\xd7\xba\xb7\x74\xa8\xfb\xec\xde\x4e\xda\x23\x19\x72\x76\xc4\x03\x02\xb3\x49\xa7\xfb\xda\xbe\xa0\x94\xe8\x8f\x3a\x0e\x08\xdd\x3c\xa5\x0f\x0d\xdd\x0c\xeb\x8e\x92\x1e\x8a\x8e\x4b\x4a\x10\x01\x43\x66\xb6\x9a\x99\x98\xbc\xd6\xf8\xee\xb8\x79\x4a\x5a\x31\x95\xd1\xfa\x64\x68\xe7\xd8\x43\xa8\xc2\x47\xe2\xbd\x1b\x9e\x55\xad\x08\x79\x20\x06\xe9\xb5\x10\x18\xe0\x9c\x38\x95\xc3\xa0\xe6\xda\x85\x1c\xe4\x4b\xeb\xa6\x46\x5f\x43\x2d\x48\x41\x9e\x1a\x81\xb5\x85\x5e\xa3\x48\x11\x60\xae\x51\x20\x06\xb9\x46\x01\x92\x9e\x5e\x05\xd8\x43\x80\xa3\x0c\x02\x09\x88\x32\x88\x05\xd3\x4b\x00\x58\xb2\x65\x25\x81\xf1\x13\xbb\x32\x2b\xc4\xc4\x21\x9c\xe6\x73\xac\x32\x90\x3f\xb5\xb5\x11\xae\xf4\xf1\x85\x7d\x92\x07\xfa\x08\x75\xd5\x87\xe9\xdf\xbe\xf4\x07\xec\x69\xb9\xda\xc3\x98\xb4\x94\x51\x90\x0f\xc4\xd5\x1e\xbf\xd3\xeb\x16\x48\x49\x3b\xc9\xd1\x71\xfe\x02\x7f\x9a\x45\xf0\x50\x01\xb8\x05\xb1\x5c\xd8\x61\x74\xad\xb9\x02\xad\x22\xb1\x7c\x0f\x65\x9a\x51\xce\xe7\x34\xb8\xef\x81\x04\x18\xff\xa3\x43\xf0\xa1\xfa\xd0\xe4\xec\x84\xe5\xf1\xad\x7a\x5c\xe1\x10\xec\xdb\xbc\xc9\xa9\x8b\x3a\x7c\x7d\xa3\x7a\x2b\xbe\xfb\x68\xa9\xbb\xa2\x3d\x95\x05\x11\x14\xa9\xc6\xa4\xa3\x80\x62\x1c\x4c\xa1\x41\x1f\xa9\x86\x02\x96\xce\xca\x82\xf4\x01\x47\x7d\x91\x40\xbe\xec\x21\x38\xe8\xd3\x83\x48\x58\x42\xe9\x39\x24\x24\xf5\xe6\x70\x07\x8a\xa2\xca\x0e\x43\x7c\x02\x99\x00\x8e\x89\xe2\xb0\x8b\x35\x12\x00\xd6\x41\xf6\xa0\xd8\x2b\xb3\x07\xdd\xc3\x34\xd9\x83\x1e\x02\xc4\x66\xc7\x21\xc0\xc8\x46\x0f\x6b\xd6\xca\x55\x1f\xf2\xb5\x72\x05\xc9\xb4\xac\x95\xa1\x26\x56\x00\xc5\x0e\xbb\x32\xad\x3a\x0f\x57\x0a\x2a\xcb\x17\x76\x57\x42\xb4\x0a\x7f\x00\x00\xa2\xb3\x1f\x28\x0c\xfb\xc2\x4c\x25\x35\xa5\x1b\xf0\xfa\x96\x4f\xb3\x1d\xc1\xcf\xea\xda\x1c\xb1\x40\x37\x99\x15\xd9\xbe\xbf\x27\x61\x85\x0d\xb8\x51\xcb\x2c\x68\xd8\x1f\xdd\x1d\x27\x20\x39\x40\x30\xea\x55\xad\x20\x8a\x95\x58\xdc\x10\xb0\x07\x4a\xd5\xc7\x97\xf4\xf5\x2b\x68\xd3\x8c\xbe\x7f\x75\x08\x38\x06\xe3\x00\x31\x74\x3e\x30\xe5\xac\xe4\x75\x67\x48\x76\xc8\xe9\xbc\xae\xed\x9e\x5e\x0f\x15\xac\xcb\x78\x0a\xc5\x74\x2b\x3e\x90\x65\xc7\x76\x87\x9b\x88\xd5\x4c\xbe\xf3\x23\x18\xf0\x63\x36\xd5\x11\x1f\x41\xbf\xa9\x08\x20\xd1\x80\x89\x82\x0c\x14\xe4\xca\x86\x98\xd3\x37\x4c\x12\x87\xec\x18\x21\xfa\x48\x7d\x28\xd3\x97\x0e\x40\x87\xa1\x66\x32\xad\x1f\xc8\xeb\x21\x40\xc7\x99\x4b\x65\x5a\x5f\xb0\x9c\x20\x40\xbb\x5a\xc3\xf1\x47\x95\xcd\xe9\x92\xb0\x83\x20\x1a\x11\x0e\x9a\xee\x86\x7f\x80\xb8\xab\xf8\x1c\x97\x62\x35\x18\x59\x01\xee\x64\xca\x79\x5c\xcd\xd4\x1c\x86\xcd\x6d\x35\xb7\x23\x29\x43\xcd\xee\x80\xce\x33\x55\xfe\x50\x02\x74\x10\x87\x18\x93\xda\x04\x96\xc8\xb4\x76\xe4\x4a\xf4\xcd\x9d\x8f\xef\x5e\x9c\x19\x0e\x04\xc4\x72\x52\x1b\x1e\x44\x48\x4e\xac\xfd\x13\x09\x51\x72\x7b\x07\xd3\xde\xc8\xfb\x4e\x94\xd7\x3a\x48\x82\xc6\xb4\x56\x60\xf8\x6a\x11\x6b\xbb\xe2\x1e\x0a\x5c\x80\x90\x88\x6e\x12\x68\xd9\xf7\xab\x4b\xf3\xb4\x20\xcc\x04\x00\xe8\xa3\x8b\xa1\xee\x1b\x79\x56\x77\x00\x0b\x31\x00\x34\xe2\x8e\x21\xc2\xa5\x79\x5e\x1c\x9a\x7b\x49\xdc\x2a\x26\x0a\xa0\x46\x13\xe7\xc0\xa5\xed\x41\x31\x21\x30\xcd\x98\x1a\x53\xb7\xa2\xa7\x00\xba\xb0\x81\x82\x50\x07\x2f\x02\x33\x85\x21\x26\x0d\xe7\x0b\x2b\xd2\x0a\x48\x47\xc4\x28\x14\x1b\x5d\x3e\x69\x0e\x9c\xaa\xad\x87\x7d\x92\xe9\xf8\xa1\xb5\x72\xac\x0f\x07\x3a\xfb\x53\x41\x1a\xb1\xa3\xba\xa1\xb4\x01\x64\xd7\xcb\x86\xf6\xa1\xba\x6c\xec\x6c\xd7\xde\xf3\xb1\x65\xa8\x83\x49\xdf\xd2\x8d\x60\xe6\xb5\xc5\x7e\x7b\xf6\x54\xb5\x6e\x11\xbe\x22\xf8\x51\x3f\xc0\x8c\x69\xfa\x20\xb3\x4a\x4f\x14\x00\xf8\xb2\xe6\x31\x78\x72\xd8\xef\x8a\xd3\x2c\x73\x5a\x93\x4a\x30\x6e\x85\xf0\xde\x1c\x61\x3a\xe8\xa2\x4e\xc2\x8e\xa3\x6a\xc6\x46\x26\x82\x23\x88\xe5\xeb\x83\x69\xed\x38\xb3\x27\xd3\xe6\x13\x94\xc5\xcd\x78\xde\xe4\x1a\xd4\x47\x90\xd6\x18\xc0\x56\x20\x00\xba\x9c\x18\x01\x44\x0e\x8e\x65\x53\xa9\x1c\x3c\x44\x10\xf5\x28\xc2\x0e\x18\x88\xea\x83\xe5\xb0\xb3\x47\x60\x97\xb4\x2b\x1d\x8e\x89\x06\xd7\xbc\xd0\xa7\x9a\x87\xc0\x4b\xa7\x17\xe6\x0c\x07\x54\x64\x01\xd1\x2f\xbd\xa5\xbb\x0a\xa2\xef\x9e\x21\x7d\x12\xe7\xa4\xe4\x40\x42\x95\x72\x34\x96\x69\xe7\xa4\x04\x96\x42\xdb\x67\x12\x50\xbb\x1d\x26\x49\x46\xfb\xa4\x84\x16\x65\x3b\x49\xca\xaa\x89\x73\x95\x84\x38\x27\x25\xb1\x02\x93\x93\x92\x3d\x05\x73\xb5\xc1\x26\x69\xe9\x7e\x4d\x32\x3b\x9b\xc5\x96\x79\xa9\x52\xf6\xa2\x01\x5c\x9a\xf9\x68\x27\xab\x46\x6d\xd2\xf6\x70\xb5\x6e\x16\x7d\xe0\xeb\x31\x56\xb1\x90\x51\xb8\x07\x98\x1a\x62\x0a\x09\xae\x7d\xc2\x40\x3a\x99\x47\xe8\xb0\x5c\xf2\x26\x2c\x6c\x69\x05\x84\x8c\x22\x8e\x0e\x71\x23\xc3\xb4\x66\xdf\x7d\x99\x26\xd3\x60\x07\xab\xb1\x3d\x4c\x09\xcc\x62\x3a\xf9\xfd\x4c\x1f\xb9\xef\x27\x87\x0a\x64\x5a\x21\xb1\xe8\x25\x5e\xa4\xd9\x82\x4e\x36\xd9\x79\x33\xd9\x12\x09\xd0\xad\x95\x1f\x91\xc9\x96\xe0\x08\x2f\xda\x6d\x25\x33\xab\xaf\x71\xcc\xc4\xd8\x27\xb0\x4b\x87\x3a\xf6\x14\x1a\x53\xe0\xa5\xd3\x36\x32\x85\x24\xa9\x49\xb7\x77\x14\x44\x4f\x21\xa8\xc0\xf2\x99\x52\x10\x2d\xbc\x81\x7c\xd4\x67\xea\x50\x61\xd8\xb7\xe6\xab\xeb\x82\x28\xf4\xc0\x54\xdf\xa4\xff\xd0\x0d\x3c\x01\x78\x16\x43\x43\xfe\xa8\xbd\xd0\xab\x63\x3e\xd5\x0e\x05\x20\xe1\xcf\x62\xe5\x33\x07\x77\x80\x6b\x9d\x84\xf1\xaf\xb5\xc9\x00\xdd\x0f\xce\xac\x8d\x1e\x60\x58\x90\x5d\xc0\x21\xbb\x33\x38\x4e\xaa\x2d\xc8\x10\x70\xb4\x2a\x85\x08\x5a\x8f\x82\x64\x6a\x1e\xed\x12\x54\xaf\x59\xae\x8f\x60\x87\x70\x34\x7c\xe6\x6e\x3f\xc4\x30\xd6\xee\xf6\x43\x8c\x77\x3d\x63\x9c\xc9\x87\x41\x06\xe0\x36\x02\x90\x49\xa9\x9f\xe8\x02\xe0\xd9\x0a\xa0\x09\xb6\x78\x80\x9f\x9a\x68\x8b\x1a\x50\xdd\x2a\x9f\xa8\xb4\xaf\x60\x57\x36\x24\x4b\xbe\xda\xb7\x45\x0f\x14\xd8\x51\xe8\x5b\xf7\x0e\x77\x27\x3a\x38\x71\xeb\x52\xe1\x21\x16\x42\x9e\x2e\x41\xc8\x57\xe3\xca\x88\xf5\xb4\x6a\x79\xf9\xee\xc3\x5b\xe4\x10\x06\x08\xf2\x4d\xa4\x1b\x30\x14\xd5\xee\x7b\x76\x54\xb8\x0e\x35\xc0\x72\x07\x1f\x2a\x68\xcb\x51\x7c\x57\xe5\x58\x5e\xe2\xd0\xae\x6c\xce\x2a\xad\x30\xc7\x38\x5c\x00\x93\x58\xb0\x1d\xd1\x16\x94\x1b\x10\x1f\x90\xd4\x01\x2e\x11\xc1\x0e\xe7\x5a\x97\x4c\x1d\x68\xc0\x4e\xb1\x2e\x17\x63\xc5\x4f\x43\xd8\xbc\xd6\xe5\x82\x5c\xeb\xee\x23\x44\xd5\x09\x03\xdf\x52\xce\xc7\x88\xe4\x28\xe7\xbb\x12\xaa\x1d\x3f\x62\xb0\x06\xd6\x65\xa5\x5b\x00\x23\x62\x1d\x9a\x03\x0f\xf2\x58\xd1\x02\xa3\xf2\x9f\x7d\x78\x76\x72\x4a\x01\xb5\x65\x32\xdd\x05\xd3\x90\x82\x19\x53\x33\xbe\x07\xd5\xf6\xb6\xc5\xc8\x07\x9d\xce\xb6\xe3\x1d\x92\xa3\x8d\x95\x09\x01\x12\x07\x5c\xb4\x51\x75\xfb\xdf\xaa\x26\xe9\xc9\xba\xcb\x64\x29\xcc\x29\x95\xec\xe4\x62\x30\xcd\x9d\xf1\x6c\x41\xde\x7a\x96\xb3\x5c\x00\x0d\x9e\xac\xb8\xd2\xfb\xa7\x14\x01\xb5\x09\x76\x31\xc4\xcf\x16\xec\x9b\x3e\xa5\x19\x82\x03\xf8\x59\x4b\xe9\x05\x32\xb5\x94\x5e\x51\xc7\x19\xb1\xe0\xec\x21\x96\x16\x46\x20\x20\x89\xe5\x01\x56\xf8\x9a\x98\x1e\xc0\x60\x76\x46\xa3\x63\xec\x61\x19\x14\x02\x6c\x7b\x9d\xdd\xe8\x2b\x78\x40\x96\xeb\x72\xc6\xe2\xb4\x75\xdb\x92\x99\xbc\xf6\xcd\x4a\xc1\xee\x9f\x88\x47\xac\xa0\x65\x43\x3c\x62\x31\x6d\xd6\x90\x3e\xe0\x9b\xb4\xa0\x42\x43\x96\x14\x95\x5f\x92\x78\xe5\x82\x26\x9f\xc6\x24\xa2\xa8\x68\x51\x43\x00\x60\x82\xfb\x44\x5f\x9a\x80\x0e\x35\x16\x44\x0c\xd6\x27\xe3\x8b\x2b\xc8\xd4\x18\x5f\xdc\x31\xe4\x6a\xb2\x0f\x21\x57\x53\x1d\x92\xf4\x79\x53\xc1\x68\x9f\xa8\xa7\x2d\x98\x92\x1b\x0b\xd2\x07\x08\x31\x7e\x42\xb3\xad\xd3\x3a\x68\xb7\xbb\x70\x1c\x00\x9a\xb3\x70\x08\x1e\xfa\x44\x3c\x65\x05\x4d\x1a\xe2\x29\x0b\x69\x72\x82\x07\x2d\x26\xef\x93\xc2\xac\x6c\xc8\x75\x61\x50\xc9\x1a\x1a\x54\x0a\x7a\x60\xbd\x8b\x99\x68\x88\x89\x43\x23\x61\xe4\x81\x3a\x28\x99\xc6\x80\x12\x1d\xf8\x44\x1c\x62\x41\xaf\x6c\x28\x00\x88\x2f\x9d\x12\xc1\x9f\xe4\x53\x91\x2a\x27\xc4\x2f\x3a\x49\x1d\x10\x27\x14\x4a\x3c\x10\x77\x15\xbc\xc3\x05\x11\x46\x9c\xec\x5f\x41\x02\x01\x80\xc4\xb1\x80\x63\xf0\x4f\x24\xfe\x31\x58\x86\x1a\x0a\x80\xcf\x5a\xf2\x17\x08\xd1\x92\xbf\x62\xae\x49\xbb\x1b\x79\xb1\x11\x8a\x5c\xc4\xae\x35\xae\xc3\x40\xf7\xc9\xc2\x4a\x09\x96\x6b\x49\x04\x1e\x14\x4a\xb6\xf3\x10\x24\x50\xa4\xf5\xd2\xa4\x04\xbb\xd8\x29\x82\x3b\x8e\x96\x81\x3d\x16\xed\x87\x1d\x91\x91\x16\x1d\xcf\x3a\x22\x47\x2d\x5c\xd2\x2e\x16\x1d\xc1\x95\xf6\x54\x4e\xdb\x7c\xb9\x0f\xa5\x18\xff\x22\x6c\xa1\x4e\xa7\x03\x99\x3f\xa3\x80\x4f\xd6\xc6\x3d\xde\x95\x38\x06\x24\x8b\x71\x0f\x1d\x35\x54\xad\xb5\xf8\xa5\x1c\x2b\x7d\x9e\x09\x53\xd2\x7a\xa7\x31\xd5\x10\x33\x35\x24\x8c\x4c\x0d\x20\x80\x39\x99\xeb\x23\x55\x29\x00\xa8\x49\x4e\x60\x60\x22\x7f\x6a\x45\x55\x86\xb9\xd9\x5a\x2c\x60\x5e\xd1\xa7\x19\x41\x1a\xd3\xf8\xd4\x70\xe0\xd2\x58\x10\x90\x14\xe4\xc8\x67\x57\xa6\xf5\x09\x8f\x58\x8d\x1b\x22\xb3\xa1\xf7\x9f\xb4\x47\x31\xf0\xbd\xf6\x28\x86\x94\xfd\x92\xa3\x18\xc0\xab\xb8\x98\x72\x7d\x92\x96\x00\x84\x77\x58\x57\xae\x62\x4e\xa3\x3a\x43\x07\xae\x62\x5e\x94\x42\x89\x54\x17\x78\x7a\x12\xd3\x31\xc1\x08\x88\x06\xec\x49\x40\xcb\x0f\xee\x8a\x2c\x36\xf0\x15\x59\x6c\x64\x29\xc6\x4d\x01\x34\xaf\xab\x98\x5b\x86\xf0\x81\x84\xb5\x0c\x18\xda\x08\x49\x73\x8d\x25\xc3\xce\x76\xb7\x6e\x9d\xb9\x66\x0f\x47\xb3\xa9\x8e\x9f\xca\x16\x76\x5c\x67\x1a\x0f\xec\x2c\x7a\x6b\x09\x36\xec\x57\x5a\x22\xc5\xe0\xd1\xf8\xd9\x68\xba\xe0\x22\x26\xf2\xf5\xdb\xe2\x82\x4d\x3e\x1b\x3f\x6a\x28\xdb\xf8\x51\x43\x92\x5e\x32\x02\x00\xbd\x63\x04\x15\x50\x0c\x28\x90\x62\x8c\x15\x86\x32\xae\x40\x24\xbd\x2b\xc6\x74\xb3\x06\xe0\x76\x66\xde\x6f\x07\xe5\xf9\xb3\x39\xcf\xec\x63\xae\xd1\x19\x63\x00\x98\x57\x44\x06\x70\x10\x7d\xc5\xe4\x9b\x1a\xf7\xf0\x39\x7d\x60\x03\x6b\x04\x4e\x95\x99\x35\xcd\xea\xb8\x32\x3a\x24\x60\x19\xc6\xe4\x9e\x80\x3e\xb2\x45\xcc\x63\x7d\x36\xbf\xbf\x7b\x40\x32\xad\xfd\x46\x0f\x33\xda\x81\x59\x44\x27\x3e\xbb\x4a\x81\xa0\xde\x95\xab\x14\xc0\xa0\x92\x40\x10\xc8\x01\xf4\x62\xa1\xb9\x1d\x78\x45\xef\xf0\x99\x8b\x78\x9f\x5b\xeb\x1a\x4c\x9a\xd6\xba\x06\x93\xda\xf5\x51\xbd\xa2\xd1\xe5\x80\x30\x2d\xc1\x05\x43\xd4\x12\x5c\x30\xac\xb6\xf5\xd2\x30\xbc\x6d\xc4\xa4\x70\x6a\x80\xb1\xe1\xac\x3d\xaf\x3e\x5b\xfc\x09\x9c\xf1\x2d\x9b\x7e\x8b\xa7\x4a\x2a\x09\xd0\x2f\xe4\x50\x16\x3c\x02\xaf\x29\x40\xc8\x87\x6b\x96\x9a\x69\x02\x27\xbb\xe4\xc9\xec\x01\xb8\x93\xff\x42\x00\x60\xf5\x01\x0c\xcd\x94\x87\x00\xc9\xf4\x4d\x02\x7c\xbd\xf3\x17\x77\x84\x45\x73\xae\xdd\x11\x16\x4d\xfa\xa5\x35\x44\x82\xa9\xaf\x5b\x43\x24\x4a\xbd\xb6\xea\xb8\xe6\x94\xd9\xae\x39\x53\xf1\xff\x25\xe4\x97\xd6\x70\x09\x96\xb8\x6e\x0d\x97\x90\xdf\x37\xe6\xe4\x06\x24\xe2\x8d\x79\xc5\x73\x17\xde\x31\xb8\x31\x27\x36\xa0\x68\xdd\xd0\x37\x82\x05\xb7\xfc\xea\xf6\x58\x70\xc1\x8d\xdb\x63\x41\xf3\x9b\x19\x79\xe4\x77\x1f\x00\xcf\x0c\x40\x10\xea\x57\x25\xf8\x61\x77\x72\xa3\xdf\x25\x85\x54\x4e\xbe\x86\xe2\x72\xf2\xb5\xa0\xcb\x8d\x8e\xe7\x85\x21\x30\x6f\x48\x18\x1c\x68\x94\xb9\x22\x17\x03\x2f\xfd\xda\x1a\x02\xe8\x71\x6b\x08\x0e\x11\x6a\xf6\x8c\xf0\xfc\xc6\x4d\x49\x76\x88\x70\x41\xe5\x86\xbe\x62\xbc\x07\x00\xd2\x44\x51\xca\xaf\xad\xa1\x01\x9a\xb6\x86\x26\x05\xa8\x39\x2d\x8b\xe1\x80\xe3\xa6\xa1\x6d\xd8\x01\x08\x19\x0d\x28\xea\xca\x96\xa3\x37\xd7\x2e\x17\xff\x46\xb6\x75\xa2\x9a\x5b\xb2\xad\x13\xe9\xdf\x9e\x99\xfd\xd2\x04\xf3\xf5\x86\x49\xa4\x7f\xa3\x53\x49\xb4\xea\x96\x02\xf6\x01\x43\x17\x30\x86\x7c\xfd\x3d\x24\xf1\x71\x85\x1b\xd0\xc9\x7e\x73\x99\x47\x8c\xdb\xad\xcb\x3c\xa2\x96\xdf\xcc\xeb\x40\x70\x8d\xf6\xd6\x3c\x0f\x04\x7e\xa9\xbf\xb5\x62\xd8\x88\xce\xde\xb6\xc6\x52\xb0\xd9\x6f\xad\x51\x10\xb4\xbc\x6d\x8d\x82\x60\xbb\xdf\xc8\xf6\x51\xa4\x6f\xc9\xfe\x11\xd3\x4a\x67\x02\xe2\xc8\x94\x20\x85\x60\xc9\xdf\xa9\xd3\x0b\x1c\xca\x7c\xb3\x20\xa2\x35\xbf\x53\xc3\x26\x9c\x35\x7c\xb3\x20\x0c\x70\xf4\x92\xbd\x0f\x08\x7a\xc9\x16\xc9\xdf\x4d\x14\x5e\x30\x73\x7f\x23\x69\x41\xd0\x6f\x8c\xbc\xa9\x00\xab\xed\xef\x8c\x97\xbf\x64\x69\x3d\x6b\xc5\x0e\xfb\x9d\x58\x22\xf7\xe0\x5b\x63\x88\x84\xb4\x3b\x38\xd0\x00\xed\x73\x8a\xa5\x1b\x43\x06\xac\xb7\xdf\x8c\x1d\x03\xc6\xd2\x7a\xef\xbb\x0f\x5c\xf8\xad\x35\x50\xd0\x18\xe3\x11\x06\x87\xfd\xbf\xb7\x06\x4e\x30\xd1\xb7\xd6\xc0\x89\xa1\xf8\x76\xfd\xa7\xea\x17\x54\x70\x5d\xe8\x74\xe2\x2d\xff\x11\x2c\xc3\x49\x53\xc0\x61\xac\xcf\x82\x3b\xb6\xcd\x6e\x16\x25\xaf\xab\xe8\xe7\x8f\xef\xde\x6e\x2f\x62\x5e\x31\xff\x1f\x77\x5e\x0c\xd1\x74\x36\xbc\xd0\x53\x51\xf9\xfe\x41\x1f\xbc\xd3\xc1\x47\xc9\x8d\x01\xa7\xec\xb0\x0e\x8b\xe0\xce\x6b\x2a\xb6\x56\xd5\x3c\x4b\x6a\xef\xe8\x2a\xe6\x6b\x3c\xaa\x67\x59\xb5\xb1\x21\xfe\x6e\x7f\xf9\x92\xcd\x45\xed\x27\x6c\x12\x37\x79\x7d\x7f\x4f\x9b\xc6\x59\xdd\xf0\x62\x8d\x6d\x6c\xb0\xed\x2f\x5f\x58\xf5\xa6\x4c\x9b\x9c\x1d\xb3\xd1\x5d\x8a\xe8\x23\xb6\x5c\x1e\xbd\x1b\xff\xc9\x92\x7a\x3b\x65\x93\xac\x60\xef\x79\xb9\x60\xbc\xbe\xf5\xeb\xd0\x33\x9f\x78\xe1\xdd\x55\x9c\x37\x6c\xb4\xde\x5b\x06\xd0\x88\x32\x4a\x7c\xee\x17\xfe\xfe\x20\x08\xb6\x65\x69\x41\x98\x45\xb9\x5f\x06\x47\xf5\x36\x2b\x92\x32\x65\xbf\xbe\x79\x1d\xcd\xfc\x32\xcc\xf0\x9b\x58\x7d\xd3\xa7\xdf\x54\x51\xee\xc7\xc1\x91\x6a\xf7\x5a\x42\x5a\x2e\x9b\xf6\x95\xdd\x56\x3e\x0b\xb6\xab\x92\xd7\x7e\xb0\xcd\x59\xda\x24\xcc\xf7\x75\x57\x81\x4e\xf2\x93\xfa\x9c\x9d\x17\x17\x17\x91\xb7\xe1\x6d\x16\x9b\xde\x91\x17\xd6\xcb\x20\xbc\x5b\x06\x4b\x5d\x43\x2e\x6a\x10\x0d\xaa\xa3\xf3\x8b\xb0\x88\xce\x2f\x8e\xba\xeb\x9b\x94\xfc\x34\x4e\x66\xa4\x26\xd3\xb4\x7e\x14\x45\x6c\x3b\x67\xc5\xb4\x9e\x1d\xd7\xdb\x8b\xa6\x9a\xf9\x62\x10\x37\x59\x30\x2a\x30\xc9\x82\x65\x10\x84\xc5\x76\x53\x54\xb3\x6c\x52\xfb\xde\xb9\xb7\x59\x6f\xff\x59\x66\x85\xef\x79\xc1\xa6\x77\xe1\x05\x61\xc1\xae\xd7\x3e\xb0\xe9\xe9\xcd\xc2\x2f\x64\xd6\xbd\x17\x84\xde\xd4\x0b\x96\x8a\x8c\x2f\xcf\x80\x8e\x71\x58\x21\x1d\x9b\xe8\xbb\xf3\xff\xfb\x47\x6f\xeb\x8f\x9b\xfd\x17\x17\xdf\x4d\xc3\x45\xf4\xdd\xf9\x1f\xcd\xc9\x41\xaf\xb7\xf5\x47\x73\xf2\xe3\x8b\x17\x17\x22\xf9\x1c\x93\x2f\x5e\x08\x1c\x43\xde\x89\xe9\x83\xb7\xf1\x6f\x37\xde\x26\xdb\x4e\x66\x31\x7f\x5e\xa6\xec\x59\xed\xf7\x82\xed\xba\xfc\x58\x8b\x0d\xa9\xdf\xdf\x13\x09\xd8\x94\x3f\x8f\x2b\xe6\x07\x82\x9a\x86\x8a\xa9\x60\x50\xbb\x28\xbf\xdf\x1b\xec\xfc\x87\xef\x94\xb8\xb5\xbb\x3b\x38\xdc\x0b\xec\x8a\xfa\xc1\xd6\xee\xde\x70\xd0\xdb\xdc\xdb\xdd\x1d\xee\x3d\xbd\xd6\x19\xad\x75\x4d\x8f\x8b\x19\xff\x62\x1b\xae\xee\x25\xcc\xaf\x43\xc2\x21\x66\x32\x9c\xd7\x17\xcb\x20\xd0\x58\x8b\x30\x35\x89\x26\x9c\x04\xcb\xa5\xa0\xf1\x58\x73\x72\x95\xc4\x0b\x16\x75\x4d\x2b\xfd\xd9\x38\x9c\x3c\x58\x60\x6b\x4e\x1b\x99\x51\xc9\x29\x5d\xf8\x7b\xbb\x41\x58\x46\x85\xdf\xdf\xd9\x0f\xb6\x7f\xe1\x59\x1d\x8f\x73\x16\x66\x00\x39\x08\xb6\x91\x3c\x27\x4c\x30\x04\x0f\xe3\xa8\xf0\x77\x06\xc1\xf6\x8f\xcd\x64\xc2\xb8\x19\xdd\x0a\xc9\x23\xca\x2c\x22\x14\x10\x20\x90\x78\x24\x18\x8d\x43\x6e\x18\xcb\x9c\x14\x0b\x83\xac\xec\xa8\xdc\x4e\xe2\x3c\xf7\x45\x56\x78\x87\x59\x58\x67\x35\x5a\xef\x2f\x83\x10\xbe\x29\x8b\x84\xf9\xde\x24\x2b\xb2\x6a\xe6\x11\xfa\x06\x77\xc5\x36\x2b\x52\x3f\x86\xbf\x81\x60\xfc\x65\xe1\xef\xf4\x03\xbf\x0a\xcb\x20\xac\xb6\x17\xbc\xac\xcb\xfa\x76\xc1\xb6\xbf\x5c\xf3\xac\xa6\x04\x95\x24\x59\xcb\x8a\xaa\x8e\x8b\x84\x95\x93\xb5\x78\x63\xc3\x67\x76\x2b\xb7\xe1\x33\x9f\x05\xb2\x25\xb2\x5f\x1a\x1c\x16\x7e\x17\xa5\x2d\xe9\x59\x13\x29\x18\xad\xf7\xc2\x5a\x49\xa1\xe8\xaa\xcc\xd2\xb5\x9e\x1c\x8b\xd8\x2f\xfc\xfe\xde\x6e\x20\xc6\x03\x7f\xef\x05\x42\xb6\xe1\xef\xfd\x80\x08\xab\xf8\xc9\x62\x96\x0e\x91\x92\x3e\x9e\x02\x7a\x51\x14\x09\xe2\x94\x93\xb5\x37\xf1\xe2\x58\x0c\xc8\x9b\x78\x31\x92\xad\xc2\xf2\xfd\xca\x62\xc2\x6c\xe2\x17\x4d\x9e\x0b\x29\x74\x7f\xef\x17\x11\x0b\xb7\x84\x48\x7a\x21\x51\xf4\x84\xc2\x51\x2d\x82\xed\xac\x48\xd9\xcd\xbb\x89\xef\x9d\x17\x10\x03\x74\x4d\x90\xf5\xc2\x0b\x82\x40\xb5\x1f\xba\x5f\x1c\x65\x13\xdf\x34\x6c\x5d\x37\x8c\x05\xf5\x8c\x97\xd7\x6b\xa2\x71\x67\xb7\x0b\x76\xca\x79\xc9\x7d\x3c\x6a\x5f\x63\x37\x0b\xce\xaa\x4a\xf4\x6f\xde\x54\xf5\x1a\xcb\xea\x19\xe3\x6b\x63\xb6\x26\x1a\xb9\x56\xf2\xb5\x58\x4f\x56\x2f\x80\x2a\x9a\x02\x57\x9c\x94\xd4\x51\x43\xbf\xea\xed\x59\x2c\xa8\xa4\x1a\x56\x6f\x4f\x59\xed\x33\x31\x1b\x2b\xf1\x23\xe4\x44\x98\x73\x5f\x0f\x40\xe2\xb3\x30\xe6\xd3\x66\xce\x8a\xba\x0a\x1b\x60\xe5\x60\x3b\x29\x8b\xaa\xe6\x4d\x52\x97\x3c\x58\x4a\x4c\x6e\xf8\x31\x92\x32\x3f\x81\x08\x6a\x3e\x33\x39\xe1\x1d\xf9\x74\x24\x17\x40\x1e\x32\x88\xd4\x22\x26\xe7\x68\xbd\x1f\x5e\xcb\x89\x3a\x5a\xef\x85\x49\x59\x4c\xb2\x69\x23\xf3\x7a\xcb\x65\x10\xe6\x3e\x0f\xc5\x32\x20\xd6\x02\xba\xc2\x85\x64\xc9\xf2\x93\x88\xcc\x23\x9b\x34\x86\x2f\x3e\xb0\x49\xce\x92\xfa\xfe\x7e\x5d\xfe\x32\x1d\x93\x74\x5a\xef\x0b\xba\xb6\x72\xb7\xab\x59\x3c\xb7\x50\xba\xd8\xee\x3d\x2f\x6f\x6e\x15\x56\xef\xa8\xe6\xb7\x8a\xaa\x27\x71\x4d\x88\xe2\xf0\x55\xab\x36\x5f\xa0\x87\xe7\x17\x96\x6c\x58\x06\x41\x10\xae\xf7\x96\x49\x5c\x27\x33\x33\x63\xd6\xfb\xcb\xa5\x1f\x1c\xb7\xca\x18\xb9\x93\x18\xa7\xe5\xb9\x60\xa5\x8b\x23\x0e\x8b\xeb\x76\xbc\x58\xe4\xb7\x3e\x0f\x6b\xa5\x8f\x14\xec\xda\xd7\xdc\x3f\xce\x8a\x54\xa2\x08\x76\x09\xd4\x02\x5f\x6c\x6c\xe4\x7e\x19\x16\xa6\x43\x41\x58\x2e\x03\x89\x2a\x2a\x30\x1c\x64\x6b\x0c\x66\xd5\xf1\x73\xc5\x33\x15\xab\xdf\xab\x72\xde\x4d\xa8\xee\x45\xd6\x28\x21\x13\xa0\xb6\x2f\x5f\xa2\x3a\x64\x82\x17\xc2\x9a\x94\xdd\x18\x82\xf8\x4d\x77\xc9\xc7\x12\x3a\xb5\xa0\xa3\xce\x35\x49\x57\x76\x7f\xdf\xf9\x95\xaf\xd8\x51\x50\x6d\x61\x89\x14\x10\x4a\x61\x41\xa5\x5b\x1d\x16\x21\x0f\xcb\x30\x0b\x2b\xcc\x4f\x8e\x34\xd3\x32\xb2\x60\xd4\xc1\xfd\x3d\x4e\xb7\x22\x9e\xb3\xc8\x7b\x5e\x55\x1f\x6f\x8b\x3a\xbe\x01\x29\xe1\x85\xc9\x36\x67\x71\x55\x16\x51\x1d\x66\x1b\x1b\x7e\xb2\x3d\xc9\x72\x16\x65\x41\x58\x42\xaa\x2a\x1b\x9e\xb0\x48\xac\x14\x90\x5e\xe4\xcd\x34\x2b\xa2\x2a\x08\x3b\xc5\x44\xb1\xb1\xd1\x09\xe7\xf0\x71\x9e\x15\x2c\x2a\xc2\x64\x3b\x29\xf3\x66\x5e\x44\x3c\x08\x13\x41\xd0\x37\xac\xaa\xe2\x29\xf3\x83\x10\x1a\xb5\x9d\xc4\x8b\xba\xe1\xec\x63\x1d\x27\x5f\xcf\x78\x9c\xb0\x8d\x8d\x15\x19\xbe\x23\x78\x51\x2e\x0b\xd1\x4b\x64\xe2\x07\x36\x61\x9c\x15\x89\x12\x8c\x82\x1c\x6b\xb3\xb8\x2a\xfe\x51\xaf\x8d\x19\x2b\xd6\xb2\x22\xab\xb3\x38\xcf\x2a\x96\xae\x6d\xad\x55\x42\x6e\xfa\x81\x85\x21\xe8\xc9\x52\x4f\x73\x2b\x5b\xfa\x49\x10\xc6\x41\x98\x2c\x85\x80\xf7\xeb\x28\x0e\x56\x4a\x2e\x8b\xa7\x6b\x32\x63\x89\x14\x8b\xea\xb0\x26\xec\x58\xc0\xd4\xa9\xa2\xd8\x60\xff\xff\xd9\x7b\x13\x2e\xa7\x71\x6d\x61\xf4\xaf\x24\xfe\x7a\xb9\xa5\x13\x25\x24\x74\xd3\x83\x83\xc8\x83\x82\x3e\xcd\x3d\x14\x70\xa1\xe8\xe1\x84\x1c\x96\xcb\x51\x12\x37\x8e\x1c\x6c\xa5\x06\x2a\xbe\xbf\xfd\x2d\x6d\x0d\x96\x6c\xa7\x80\xbe\x7d\xbe\xef\xdd\xf7\xde\xea\xd5\x54\xac\x59\x5b\xd2\x9e\xb4\xf7\x96\xe9\xba\x74\x20\xe6\xa2\x27\xa0\xbd\x5b\x9d\x0e\x1f\x6a\xad\x66\xce\xef\x41\x10\xf5\x82\x28\x08\x88\x5b\x78\xa0\x4a\xcb\x75\x9f\xd9\x5f\x51\x70\x3f\x29\xcb\x5e\xca\x77\x7b\x21\x85\xa2\x4e\x9a\x20\x0b\xcb\x35\x0d\x43\xe4\x37\x18\x44\xc1\xc0\xe6\x0e\xec\x97\x5a\x76\x4c\x9a\x85\x7b\x3a\x5f\xed\xc4\x8a\x94\xa3\x72\x93\x5f\xbe\x86\xad\x27\xb9\xd2\xf6\x59\x80\x21\x4b\x8c\xd9\x87\x8a\x6a\x97\x6a\x24\x19\x28\x61\x4c\x73\x59\x2a\x6b\x9a\x1a\x86\x22\x0c\xbb\xb1\x38\x03\xc6\xa6\x30\xc5\x46\xa5\x58\xe6\x7b\x81\x89\x4c\xe7\x14\x8d\x89\x6d\x01\x23\x8e\xb1\x91\x9b\xf8\xa8\xdc\x65\xa9\x40\x77\xde\x16\xb3\xb7\xfc\x8e\x14\x9a\x4e\x63\xb1\x19\x6d\xe3\x2b\x64\x21\x30\xfc\x86\x8c\x31\x49\x74\x4e\xca\xeb\x9c\xc1\x5d\x12\x6b\x51\x05\x93\x8c\x6a\x4e\x3b\xc1\x3a\x6d\xea\xe0\x22\xe1\xb2\x33\xb9\x1d\x67\xc1\x96\x33\xef\x6b\x74\x9e\x67\x4b\x24\x70\x24\x6a\x4c\xb6\x3b\x56\x7b\x5d\xc4\xd7\x33\xff\x53\x55\xd5\x85\xe3\x51\x99\xa5\x09\x43\x25\x49\xf0\x68\x1b\xef\x5c\x81\xab\xc6\xff\xe5\x60\x32\xe0\x24\xa7\x41\x2f\x18\x20\xf9\x4f\x81\x75\xbd\x61\x86\x07\x41\xef\xd0\x0b\xe4\x5a\x15\x12\xda\x30\x6d\x55\x31\xa5\x3b\x94\x5b\x86\xfc\xce\xdb\xe5\x9d\x35\x09\x7a\x01\x96\x02\x89\xaa\x2e\x19\x41\xb5\x69\x86\x93\x9a\x75\x97\x32\x96\x58\xe8\xc2\xe6\x58\xec\x51\xf0\x20\xc0\x83\x1d\xca\xf1\x80\x0d\x82\xb7\xbc\x17\x0c\xd2\xc1\x1e\x05\xff\x0a\x0c\x73\x21\x47\xa6\xf2\xa5\x98\xa1\x44\xba\xb7\x3c\xc0\x72\xc3\x19\xe2\xe9\x9e\x28\x39\x46\x7d\x94\xfc\xfd\x88\x6a\x3c\x00\xbb\x26\x78\xcb\xdf\xf2\x40\x75\x1b\xe8\xed\x2d\xb1\xed\xa0\xde\xda\x66\xb7\xb3\x8a\xc4\x15\x2a\x11\xa0\x22\x2c\x19\x27\xc3\xe8\xee\x48\x2d\x7b\xd8\xd4\xbf\x86\x6d\xbe\x49\xf2\x2c\xe7\x91\x1c\x0d\x91\xcc\x26\x17\x51\xd0\xeb\xf5\x7a\x01\x39\x07\xb3\xb5\xc7\x2c\xc9\x22\x39\x76\xfd\xfd\x6a\x2f\x11\x40\xfd\xfd\x62\xc7\x78\x14\xd8\xe2\x27\x59\x5e\x7a\xf9\x27\xf9\x76\x0b\x8d\xca\xa4\x78\x25\x58\xa1\x7e\x42\xe8\x83\x47\xf9\xf2\x5a\xa2\x9c\x44\x15\x7a\xc6\x56\x02\xda\xd2\xdf\x70\xab\x0c\x09\x25\xdb\xa6\x6a\xa0\xfd\x49\xa5\x59\x07\x67\x35\xec\x66\x96\x32\x85\xc2\x76\xe7\xfb\x34\x93\x62\x12\xab\x14\x52\x60\x6d\x6c\x29\x0f\xb2\x5c\xd7\x74\x75\x4d\x7d\x26\x40\xb6\x30\x67\x23\x59\x78\xa1\x08\x3f\x11\xa3\x22\xcf\x85\x87\x6d\x54\x3f\xf9\xf2\x5a\x0a\x32\x6c\x54\xc4\x97\xe5\x08\x66\xa8\xb5\x3c\x7a\x08\xc8\xcd\x82\x96\xf4\xf4\x8e\xa0\x2e\x59\x1a\x31\xf5\x6e\x5f\x40\x02\x07\x36\x01\x26\xdc\x2b\xa2\xee\x06\x6d\x19\x80\x57\x80\xa7\x5e\xef\xc1\x9d\xbf\x05\x03\x31\x60\x23\xc1\xae\xc4\x80\x0f\x82\xbf\xdd\x09\x24\x77\x0b\x1b\x22\xc9\x1a\x33\x77\xb0\xa3\xee\xe3\x9c\x89\x4b\xc6\x38\xf4\x92\x49\x39\x80\x14\x0a\x98\xbb\x01\x1f\x98\x82\xbf\x48\x36\x5b\x96\x06\x7e\x3b\xc0\x53\x36\x52\x1a\xae\x98\x4b\xac\x5a\x0c\xa8\x06\x82\x4d\x3d\x1c\x82\x5e\xdf\x7e\xc9\x93\xa1\xca\x05\x53\x73\x4a\xcc\x04\x0a\x3d\xda\x42\x6e\xe4\x36\xfc\xb3\x3c\x79\x2f\xc7\xde\x1c\x49\xc9\x32\xe5\x5d\x8b\xed\xe2\xe4\x97\xfc\xb5\xd9\x48\xdd\x6b\xe4\x96\x20\x8c\x04\x8c\x2f\x03\xe8\x3c\x16\x8d\xee\x6b\x60\x05\xff\x57\x30\x60\x70\xa6\x15\x64\xe2\x22\xde\x96\xb3\xd6\x78\x54\x7a\x80\xa3\x20\x38\x2a\x49\xb9\x3b\xe5\x79\xbc\x65\x33\x6e\x01\x67\xd3\x22\xc9\x2f\xf1\x81\x44\xa8\x72\x62\x3c\x5f\xb2\x12\x7b\xa0\xe0\x83\x02\x4f\x59\x56\xb2\x1b\x75\x50\xcc\xe4\xf4\x4a\x1e\x0e\x41\x80\x07\x48\xcc\x82\xa9\xa4\xf7\x8d\xed\xc2\x07\xc5\x20\x97\x10\x97\xb3\x96\x9b\xdb\x03\xf9\x2a\x2f\x90\x39\x4f\xd0\xb3\x26\x46\xc3\xc9\x54\x3c\x18\x87\xa1\xd9\x89\x01\xe8\xd9\xa0\xc4\x5c\x2c\xe0\x20\x4d\xb1\x18\xd2\xc9\xd4\xb4\xe0\x6f\x32\x7b\xbe\x61\x7b\x8d\xa7\xc5\x7d\xbf\xfd\x69\x31\x18\x60\x3d\x1d\xd3\x6e\xb1\x20\x69\xdd\x48\x2e\x77\x2a\xd8\xd9\xe2\x69\xda\x58\xdc\x54\xef\x28\x7b\xdc\x51\x4e\x44\x9f\xd2\xe2\x70\xe0\x7a\xa2\x12\x74\x5d\xab\x4b\x8a\x23\x87\xa1\xc6\x7e\x4d\x08\x8a\x41\x31\x08\x6e\x02\xb9\x7d\x4a\x11\x17\xa2\x5e\xa6\x30\xf4\x67\x35\x43\x1e\x0a\xf1\x41\x02\x0b\x1e\x60\x1c\x75\x25\x93\xc0\xe2\x4f\x89\x14\x1a\xf3\xe5\x8d\x13\x14\x54\x81\xb7\x99\x8b\xf8\xb2\xa5\xc9\x01\xd8\xca\x8d\xc9\x41\x31\x21\xe0\x40\x76\x6d\x52\x94\xeb\x2d\x39\x17\x0b\x2b\xec\xe7\x53\x45\xb4\x61\xfb\x33\x2e\x60\x87\xeb\xf5\xa0\x94\xf2\x30\x44\xfd\xf4\x70\x08\x24\x0e\x95\x09\x29\x6c\x89\x30\x4c\x47\xab\xb4\x28\x05\x30\xe5\x35\x8b\x26\x79\xb7\xd4\x34\x5d\xcc\xf9\x42\x33\x54\x0c\x70\x30\x02\x4d\x44\x2c\xc7\x70\x12\x27\x1b\x76\x38\x38\x1f\xf4\xa6\x3a\x22\x7e\xd4\x65\xe6\x7c\x81\x2d\x0f\xe3\x24\x36\x07\x7d\x38\x68\x68\xcb\x0f\xab\xd6\x00\xc0\x42\xa1\x87\x32\x13\x78\x1d\xc5\x91\x93\x84\x06\x45\x7c\x19\x0c\x10\x2a\x29\xc7\xf3\xf1\xa2\xa1\x13\x2d\x35\xeb\x32\xa9\x45\x5b\xa0\x34\xc9\x62\x96\x53\xfd\x0b\xc5\x84\xe1\x28\x1e\x5d\xc6\xd9\x7b\xd4\x14\x61\x3e\x77\x3d\xfa\x93\x0a\x7b\x60\xa8\x79\x59\x29\xba\xe5\x54\x02\x15\x13\x6f\xf6\x34\x27\xb9\xde\x1c\x16\x05\xb6\x29\x94\x65\x6e\xba\x07\x78\x64\xa3\x87\x61\x20\x69\x8d\xc2\x0a\x59\x5c\x0a\xbd\xfc\x9d\xf3\x11\x06\xe5\x59\xa4\xe0\x4f\x4b\xe8\x51\x3e\x31\x27\xe0\xcf\x8f\x72\x5c\xa3\xa9\x7a\xa4\xb7\x8e\x49\x11\xf1\xce\xf1\x3c\x05\xee\xe9\x88\xce\x19\x68\x1f\x14\x98\x79\x5f\x11\x6a\x8d\xd1\xb2\xce\xdc\x39\x4c\x45\x18\x16\x7d\x4a\x59\x18\x16\x3a\xb5\xfe\x45\x21\xbd\x5b\xe6\x36\x98\x5f\xee\x57\x83\x40\xbd\x44\x2d\xa3\x00\x77\x6a\x37\x25\x45\x82\xe6\xf3\xdc\x22\xf7\x85\xcf\x60\x97\xc0\x60\x07\x98\xf4\x27\x15\x40\x40\x1d\x00\x03\x88\x47\x2e\xe3\xd7\x85\x54\xfd\xe5\xd1\x05\xcb\xcf\xda\xed\x3d\xe6\xcd\x48\x35\x34\x9c\xf4\x29\x45\x9c\xfa\x79\xb5\xee\x54\xce\x0d\x44\x35\xee\x4d\x83\x2f\x06\x5f\xdd\x91\xf3\x80\x89\x1c\x3b\x30\x7c\xe6\x20\x60\x41\x40\xdb\x14\xd4\xbc\x71\x80\x23\xde\xd1\xb6\x01\x11\x26\xdc\x83\xca\xe3\x23\x2c\x97\x0f\x12\x59\xea\x7f\x20\x3c\xa4\x6c\xf0\x85\xf0\x78\xd5\x64\xea\x6e\x3f\xbf\x5c\xa9\xd0\xcd\xf9\x45\xe6\x88\xf4\x41\xa1\xce\x14\x35\xe9\x4b\x74\xfd\x59\x07\xc2\x05\x97\xf0\xcf\x45\x1b\x5c\x82\x8a\xdb\xc1\x25\x3a\x0a\xd5\xf3\x6e\x9c\x0e\x29\x27\xfd\x55\xe8\x15\x38\xaf\x4f\xf1\x93\x8d\xc9\x7a\x59\xff\xde\xb9\x4a\x26\xe9\x8b\xa7\xaa\x08\x86\x5c\xd7\xcf\xa2\x15\x9a\x31\xeb\xc6\xcc\x27\x9f\x43\xcb\xfe\xcc\x99\x53\x7d\x5a\xac\xe9\xa7\xfb\xb0\x89\x1c\x9c\x69\x86\xe6\xb0\x11\x9d\x38\x81\x53\x87\x6c\xca\xbe\x67\x0e\x27\xd8\x81\x88\x7c\xee\xfb\xb6\x0a\x1a\xe7\xca\x3a\x35\xc3\x23\x8e\x95\xd6\xe7\xfa\x58\x5b\x72\x2b\x07\xd8\x72\xf6\x85\xe5\x02\x49\x2e\x59\xf9\x30\x54\x6c\x9f\x64\xb8\xb5\x24\x90\x0f\xe8\x84\x14\xb4\x70\x08\x1c\xec\x4b\xee\x6f\x44\xa3\x0a\x6a\x75\xac\x68\xa7\xba\x92\x4a\x8d\x8e\xcc\xf4\x1f\xd3\xf1\x34\xbe\x9f\x4f\xe3\xc1\x00\xf3\x01\x4d\x8d\xbe\xca\x20\x1e\x90\xc8\x3a\x25\x39\x36\x17\x0b\x90\xe1\x34\x3b\x65\x36\x88\x24\xbe\x23\x90\x6c\x25\x27\x38\x2b\x64\x7e\xc4\x2b\xc2\x2a\xe4\x6a\x69\xf2\x7f\x9b\x96\x86\xe4\x14\x15\x94\xa3\xef\x7f\xc0\x58\x8e\xc5\xb9\xaf\x2c\xea\xfb\xca\xa2\xd2\x5c\xf8\x51\xcd\x48\xad\x02\x07\xdd\xd4\x7c\xa1\x05\x85\x0b\x56\x94\x69\xce\x69\xf0\xfd\x68\x3c\x9a\xfc\xa0\x75\xc0\x4a\x2f\x5c\x2a\xf0\xf3\xbc\xd8\xc6\x59\xfa\x91\x99\x5b\x88\x23\x2a\x95\x7d\xd9\x79\xed\xde\x6e\x50\x7f\x8c\x92\x9c\x27\xb1\x40\x8d\x4e\xe6\x6c\xa1\xef\x8c\x2b\xa5\x16\x4f\x58\xe9\x5f\xa5\xda\x99\x09\x57\x81\xa9\xef\x84\xe0\x7a\xc3\xb9\x13\xb2\xc3\xeb\xd2\xe5\xd9\xba\xd6\x9c\x41\x4a\x49\x95\xa7\xcf\xac\xbb\xb0\x30\x54\x28\x50\xca\x1b\xf0\xe5\xce\xc9\xf0\x92\x48\x28\xcb\xa2\x82\xd4\xba\xa6\x94\x15\xca\x80\xc4\xaa\x56\xd5\x68\x41\xcd\x24\xe7\x5c\x43\xa1\x43\x41\x04\xa6\x2f\x8c\x14\xf4\x61\x51\xc4\xd7\xa3\xb4\x84\xbf\x52\xe2\x93\x67\x4d\x1e\x01\x4e\x8b\x19\x8f\xf8\xfc\xf5\xf5\xf6\x3c\xcf\x46\xa9\x60\x60\xc8\xbc\x40\x78\x3a\xd5\x07\x0a\x18\x4a\x40\x6f\xf9\x03\xca\xcd\xf9\x39\x2f\x58\xfc\x7e\x9a\x52\x3e\xcf\x07\x83\x45\x05\x0a\x84\x74\x85\x90\x64\x18\x39\xbb\x12\x08\xe3\xd1\x32\xe7\xcc\x16\xcc\xd5\x99\xa8\xd4\xa1\x4b\x95\x54\xb6\xcb\x4b\x91\x94\x92\x36\xc7\xd4\x7e\x61\x12\xe4\x70\xed\xe1\xf0\x11\x71\x18\xfa\x73\x88\x0d\xf8\x30\x96\x94\x45\xef\x8b\x3a\x15\x54\x1a\xbd\x23\x37\xa1\x31\xd6\xd6\x3c\xb1\x56\x7d\xc8\x72\xba\x4f\x47\x06\x3c\x1c\xfa\xb1\x5a\x92\x30\xec\xc7\xb5\x42\xc0\xb9\x11\x52\x17\x41\xf1\x20\xe8\xa5\x65\x8f\xe7\xa2\x17\xf7\x5e\xe6\xa5\x38\x79\xfd\xba\xa7\x46\x12\xe0\xca\xee\xa7\x16\x0e\x48\xff\x7d\x9a\xda\x12\x0c\x19\x7e\x00\x03\x07\xf9\xfb\xdb\xef\xc1\xbe\x01\x41\xfa\xf7\xf7\x30\x26\xea\xd7\x77\x18\x63\x12\xab\x22\x3f\xba\x66\x0f\xe5\x97\x9b\x3d\x24\x6a\xeb\xd7\x4a\x9b\xf1\x94\xdf\x17\x46\x29\xc3\x8d\x52\xa6\xa0\x42\xca\xcf\xc5\xa8\xbe\x66\xa7\xee\xc7\xe1\xd0\x9f\x90\x62\xe4\x5e\xb5\xcb\x89\x6a\x6d\x61\x0a\x18\x16\x29\xab\x10\x9d\x87\x49\xb7\x81\x1b\x23\xc5\xe8\x3d\xbb\x26\x05\xae\x1a\xa6\x61\x5a\x7b\xd0\xda\x67\x92\x75\xe8\xd8\x30\x6c\x24\x36\x8c\x57\xca\x32\xab\x1b\x61\xc2\x35\xaa\xa3\x19\xf1\x74\x48\x29\x5b\xd2\xfe\x44\x23\x4a\x85\x9e\x54\x4a\x7b\x04\x3c\x0c\x25\xd9\xea\x83\x1e\xc4\xaa\x40\x38\xd0\x42\x9c\x53\x6e\x37\x36\x77\xad\x69\xd8\xe1\xe0\x7d\xd7\x77\x4c\x20\xc1\xe5\xb9\x20\x7c\xb4\x8d\x77\xc7\x2e\xad\x0a\x9d\x09\x7f\x01\x4d\xc1\xaf\x51\xca\xb3\x94\xb3\xc3\x01\xb9\x9f\xb4\x3f\x31\xf9\xbb\x82\x5d\x50\x68\xd9\x51\x22\x96\x34\x36\xdd\x4f\x8b\x51\x09\x97\xc4\x61\x88\x4a\x6a\x3e\xd4\xa1\x92\x6d\x28\x84\xa7\x33\xd5\x07\x98\x12\xa9\x43\x87\x4a\xaa\x7f\x63\x30\x57\x80\xad\x2c\x57\x53\x59\x19\x24\x5a\xab\xcb\xe4\x21\xa4\x49\x55\xe9\xbb\xbf\x52\x9e\x06\xb0\x78\xaa\x91\x26\xc9\x65\x3d\x7d\xfd\x4d\x4a\xb2\xef\x22\x48\xfb\xd1\x65\x5c\xf0\x94\xaf\xcb\x0e\x8c\xaf\x16\xf4\x9a\x27\x08\xdb\x62\x12\xf7\xef\x6f\x23\x13\xea\xb6\xb2\x2c\xa1\xd8\xc6\xe3\x6c\x1d\x2a\x01\xa5\x62\xdd\xb6\x2c\xa6\xaf\x11\xf6\x23\x98\xe8\x51\x12\x69\xaa\x18\xa3\x0b\x59\x63\x95\xf2\x38\xcb\xae\x3f\x59\x47\x77\xa3\x2a\x6d\x62\xbe\xcc\xd4\xad\x76\xf3\x72\xa3\xb8\xbe\x31\xbb\x59\xc1\x99\x91\xe6\xd5\x3f\xf0\xdd\x3c\xde\x82\x50\xa5\xd0\x9e\x36\xf2\xd1\x18\xfd\x17\xc5\x31\xe0\x29\xd0\x89\x9e\x29\x44\x6d\x81\x97\xf0\x4d\x98\x77\x87\xaf\x57\x99\x63\x30\xd2\xc9\x33\x16\x86\xfa\x87\x1a\x49\xe3\x13\x81\x76\x76\xaf\x26\x78\x96\x76\x6b\x68\xed\x75\xaf\x43\x81\x1f\x50\xf7\x5c\xe6\x45\x83\x30\x7b\xba\x3c\xe7\xf0\x8e\x09\x43\x6a\x5b\xd6\x16\xbb\xed\x46\xe6\x4e\x47\x0b\x92\x6b\xee\x74\xcf\x51\xa1\x15\xc1\xfa\x3e\x9d\x4e\x48\x86\x72\x3c\xcb\xd5\xc2\xf8\x66\x77\x76\x4a\x48\xd3\x7d\xbd\xe2\x9e\xfc\xc1\xdd\x55\x04\x93\x18\x65\x03\x53\x8f\x57\x28\x73\xd5\xa8\xde\x07\x75\x9b\xaa\xc1\x54\x9f\xa8\x46\xb5\xd4\x81\x6c\xf7\xbd\xe6\xb4\x13\x48\x60\xe5\xf6\xb2\xc8\xb7\x69\xd9\xb2\xe5\xd5\xab\x36\xe3\x48\xff\xc2\x91\x40\xcc\xd1\xba\xe3\x7a\xac\xba\xc1\x94\xaf\x67\x8d\xef\x08\x35\x12\xe8\x2d\x5d\x82\x4c\xac\xfa\x32\x5c\xbe\x4d\x98\xda\x4d\x39\x26\xcc\x01\x8e\xac\x28\x01\xde\x5a\x15\xcb\x07\xfa\x5b\xc2\x9d\x40\x65\x0c\x19\xeb\xe1\xc1\x69\x6b\x82\xd1\x6e\x47\xd3\x92\xb7\xe5\x14\x3e\x9b\xb6\x0a\xc1\xd2\x34\x5a\x6f\x32\x26\xc1\x9b\x92\xf5\x74\x3e\x92\xac\x95\x9a\x47\x72\x8e\x7b\x22\xef\x5d\xe6\xc5\xfb\xde\x65\x2a\x36\x3d\x98\xaf\xe6\x58\x4a\x25\x29\xd5\x27\x5e\xb7\x5a\x27\x4c\x9d\xfb\x6c\x35\xba\xf6\xbe\x27\xa2\xc1\x74\xc2\x95\x85\x62\x3a\x19\x15\x33\x16\xb1\x5b\x98\xce\x02\x46\xa0\xd4\x37\x0f\xac\x0d\xb6\xe6\x25\x0b\xca\xe6\xdc\x63\x3a\xb9\xc4\x3f\x6d\xa6\xb3\xa0\xdc\x61\x3a\x73\x0a\xad\x2a\x6b\x26\x38\x82\x39\xc6\x7f\x15\xc4\xaa\xf6\x8a\xc9\x95\x2e\xf6\xbc\x7d\x09\xa9\x41\x96\xc5\xa5\x50\x78\x8f\x32\xd7\x18\x8f\x21\xb7\x14\x90\x6e\x27\xc1\x9c\x54\xb8\x77\xb6\xcb\xe2\x9e\x7c\x41\x18\x26\x02\x0e\x6c\xc7\x8d\x75\xbd\xdb\x1c\xde\xa4\x6b\xbf\xb5\xf9\x17\xbd\xdd\x14\xfd\xe8\xd8\x03\xf9\x4e\xc8\x65\xb7\x92\xca\x94\xd5\xb4\x5f\xca\x7f\x9a\xf6\xd7\x6c\xb4\x73\x5a\x52\x60\x02\xa0\x94\x2b\xf9\x38\x97\xee\x5a\x85\x54\xd7\xd6\xb6\x39\x60\xf4\xec\xd0\xf9\xdb\x80\x07\x43\xc4\xa3\x35\xe3\x72\xc7\x39\xd6\x17\x6e\x99\xa4\x2c\x29\x9f\x8f\x17\x5e\x45\xc9\x15\xf1\xf9\xc4\x4b\xac\x88\xa0\x8c\x20\x4e\xe7\x37\xef\xd9\x75\x14\xd8\x33\x10\x90\x35\x73\x2c\x1c\x7d\xfa\xdb\x3c\x30\x55\x45\x54\x75\x39\xb6\xcf\xa9\x29\xcb\xd9\x4a\x49\x79\x7b\x1d\x07\x1b\x01\x1b\x62\xeb\xe5\x5c\x30\x2e\x3e\xbf\xae\x2a\x6f\xeb\x6f\xe3\xdd\x67\xd7\xdd\xc6\x3b\x5b\x0f\xf8\xd9\x5b\x2b\x2a\xee\x44\x96\xab\x3b\x53\x1c\xc1\x27\x66\xaa\x2a\x9a\xb2\x55\xb5\xc0\x61\x98\x20\xc7\x4a\x8e\x70\xb0\x3d\x4c\x90\x20\x25\x6e\x8a\x62\xfb\xcf\x13\xc5\xc4\x48\x19\xef\x9c\xc6\xbb\xbf\xab\x5d\x94\x17\x94\xa3\x1f\xc6\xb8\x23\x83\x38\xa5\x4f\x72\x5e\x4a\x01\x87\x4a\xa1\x6b\x82\xdb\x19\xb6\xf0\xf3\x7c\xc9\xa0\xd4\xb7\xd8\x49\x69\x0f\xc5\x38\x15\xfc\x30\x51\x4e\x05\xdf\xfc\x80\xc1\x95\xe0\x87\xbb\x78\x04\x28\xf7\x35\x13\xe0\x44\x30\xf9\x7e\x8c\x47\xa7\xf1\x6e\x97\xf2\xf5\xb3\xb4\x14\x0d\x19\x4f\x72\xf7\xea\x26\x54\x19\xdd\x83\xd9\x66\x3e\x5a\x33\xf1\xb0\x58\x23\x46\x02\x99\x10\x80\x2e\xcd\x14\x51\xa6\x70\xaf\xf2\x5c\x78\x05\xeb\xe4\x46\xf1\xf7\xe9\xee\x97\x38\x4b\x97\xf0\x1e\x86\x5f\xc5\xcb\x0a\x88\x94\x2c\xdc\x3e\x4a\xc5\xc7\xeb\x34\xc9\x63\xfa\x29\x5b\x35\x2d\x95\x18\xfb\x55\x4f\xd4\x9e\x2d\xa9\x1c\x4b\xe5\xf9\x27\x18\x15\xd6\x37\xa4\x1c\xad\x8a\x7c\x6b\x57\xa3\x43\x89\xc2\x46\xf5\xbc\x88\xc2\x37\x25\xba\x01\xd3\x46\x06\x16\x8e\xa4\xce\x8f\x44\x55\x5b\x74\x8d\x58\x9c\x6c\x34\xdc\x7d\x56\x4d\x1b\x53\x19\x3c\xb4\x8c\x6e\xa4\x58\x15\x31\x8b\x99\x96\xcf\x52\xce\x88\x32\x58\x73\x93\x4f\x20\xa5\xaa\xa6\x4a\x44\x34\x43\x03\xc1\x4d\x1b\xd8\x9a\x34\xa2\x8a\x08\x37\x2f\x1f\x15\x2c\x03\xcf\x00\x24\x88\x49\xc5\x52\x0e\xcb\x8b\x74\x2d\x05\x07\x6a\x46\x62\x12\xfc\x81\x98\x54\x3d\x0e\x62\x86\x21\x17\x06\x3a\x02\xd3\x60\xf5\x0d\x7e\x51\xf1\x72\x69\x20\x50\x00\x3f\x64\x86\x57\x76\x78\x5e\x15\x46\x85\x5b\xe8\xf9\xc1\xe8\xd3\xc6\xb0\xa1\x5d\xb3\xc6\xe0\x46\x90\xe2\xc3\xc1\x49\x8a\x97\x4b\x64\xdd\xd1\x4c\x7f\x7a\x33\xfc\x94\x17\x92\xf3\x56\xcd\xc7\x61\xc8\xa5\xc4\xf1\xda\x2d\x81\x0a\x12\x2b\xa7\xae\xca\xf3\x69\xa9\x67\xd2\xb1\x47\xdc\x2d\x6d\x17\x0b\x0c\xb0\xdc\x1c\x03\x3d\x73\x3a\x8a\x8e\xd3\x63\xf2\x52\x2f\x4f\xc2\x53\xe7\x4c\xbb\xce\x94\xb2\xcc\x1e\xbd\xbb\x50\x29\xcc\xc0\x5c\xd9\x76\xa7\x58\x2f\x14\x28\x4e\x8c\x6d\x68\xd1\x38\x69\x00\xca\x02\x9b\xa6\x5c\x68\x02\xcc\xa1\x85\x14\x16\x44\xb7\x60\x2c\x65\xd4\xb9\xb4\x4b\xe1\xa6\xa9\xb5\xc0\x8d\xd3\x0a\xc9\x37\xde\x66\x8f\x94\x3d\x27\x69\x6c\xf5\xc8\x98\x6d\x12\x77\x43\x46\x6a\x30\x5c\xae\x1f\xd4\xf2\xf7\xa5\x9b\xad\x6b\xab\xd9\x44\x05\x91\xc3\x8a\xd2\x0a\xfb\x8b\xdb\xdc\x04\xdd\x0a\x7f\xbd\x6d\x9a\x38\x10\x2e\x30\xdd\x3d\xda\xc8\x27\xdc\x82\x4f\xcc\x50\x27\x8a\x3a\x1c\xba\xd3\x9b\xf6\xdf\x72\x03\xe0\x6e\x2c\x37\xcf\x47\x22\x7f\xcd\x84\x5e\x1b\x8e\x17\x54\x68\xf1\xa9\x59\x34\x0c\xd1\x92\x65\x4c\xb0\xde\x67\xb6\x04\x3a\x6b\xd7\x71\xb2\xb3\x1e\x76\x34\xd9\x47\xf1\x30\x6e\x40\x1e\x34\xf0\x5d\xe8\xd7\x25\x72\x20\xfd\x28\x57\x28\xe1\xb8\x45\x29\xf4\xdb\x62\xe1\xbf\x6e\x53\xe2\xa3\x1d\xf6\x0a\xf6\x61\x9f\x16\xac\x34\xee\x4c\x31\xef\xb1\xab\x5d\x96\x26\xa9\xe8\xa9\xf1\xf7\x00\xc7\xf7\xf2\xa2\x27\x36\xcc\xa4\x6d\xe3\xdd\xdb\xaf\xcb\x9e\xa2\x8d\x52\x5e\x00\x85\xe3\xa8\xf7\x28\x17\x9b\xde\x25\x2b\x58\x2f\xdf\xa6\x42\xb0\xe5\xe8\x6b\x2c\x05\x16\x18\xa9\xd6\x7d\x37\xf7\x47\x8d\x8d\x50\xe1\xee\xa3\x18\xbc\x5a\x94\x42\x4d\xd1\xbc\x44\xfb\xf1\x35\x4e\xd3\x9e\x97\x79\x21\xd8\xf2\xa7\x16\x46\x35\xce\x56\x1a\xff\x53\x89\x01\xf4\x4e\xf4\x30\xbc\x41\xbc\x35\x86\x7f\x99\x97\xa9\x6c\x42\x22\x4c\x45\x13\x44\x27\x4d\x10\x4d\x9a\x60\x90\x6b\x5a\xd3\x26\xdb\x7f\xea\xd3\x26\xee\xe6\xe5\xca\x8e\x9a\x13\x51\xd3\xa5\x1a\x30\xa2\x83\x84\xc5\x6e\x51\x7f\x74\x34\x55\x78\xa1\x39\x3a\x9a\x1a\x84\x60\x06\xa9\x29\x97\x50\x94\x2b\xd5\x94\x0b\x56\x2a\xa3\xa6\xfd\xa9\xda\x6f\xd9\xe1\xa0\xb0\x5c\x86\xe5\x2f\x89\xc4\x32\xe3\xae\xab\x1a\xd0\x05\xf7\x87\x43\x02\x05\xf7\x58\xfe\x92\x05\xf7\x58\x33\x58\x4d\xfe\xa6\xf4\x78\x9b\xe4\x56\x02\x29\xcc\x81\xe8\xa0\x6a\xc2\x00\x1e\x2c\x3e\x6b\xf8\x3a\x80\xf5\x21\xda\x00\xa5\xc1\x2b\x2d\x7a\x08\x24\xd7\x0c\xde\x3f\xbc\x4d\x7a\xd3\x38\xbe\x44\x5d\x1b\x89\x30\x0c\xf8\x7e\x7b\xce\x0a\xd7\xe5\x43\xfb\x7b\x74\xe5\x68\xef\x8e\x96\x68\x6e\xd6\x12\xaa\xf6\x62\xbe\xec\xd9\x14\x55\xa5\x17\x17\x0c\x6e\x61\x54\xa3\x65\x6f\x38\xec\x5d\xe7\x7b\x79\x3e\xcf\xe3\xf3\xec\xba\xb7\x65\x31\x17\x52\x90\x97\xa7\x13\xce\xb3\x69\xa1\xa7\x4f\x53\x8f\x71\x91\x16\x2c\xbb\x56\xed\x73\x59\x29\xde\x41\x51\x4b\x9a\x7a\x3b\x7d\x38\x46\xbd\xa7\xab\x5e\x99\x93\xde\x2e\x2e\x4b\xe5\x06\xb9\xd2\x78\xa2\xd5\x6e\xca\x4b\xc1\xe2\x65\x2f\x5f\x49\x1c\xa3\xd4\xfe\x4a\x95\x00\xc6\x99\x12\xbf\x40\x03\xa0\xb0\x28\x47\x4a\x09\x83\xfa\x48\xc2\x08\xde\x2c\x4b\xe1\x1e\x26\x50\x33\xd5\x5f\x0c\x40\xf1\x60\x2c\x7f\xa9\x8c\x07\x74\x2c\x49\xf0\xe1\xc0\x0f\x87\x02\x87\xe1\x27\x1a\x10\x4e\xa6\xf0\x32\xc5\x91\xd6\xc3\x50\xd8\x64\xe1\x26\xf3\x0e\x65\xca\x53\x0e\x3b\xc4\x00\x21\xea\x05\x03\x88\xa0\x50\x8b\x87\x0e\x13\x6c\x18\xe9\xa8\x26\xf6\x91\x50\x04\xbb\xa8\x9a\x74\xe3\x5d\xc9\x8a\x14\xee\x3d\x4f\x8d\x08\xe0\xde\xcb\xe8\x2b\x28\xb5\x0d\x53\x12\xd3\x31\x29\xe9\x84\x24\x74\x4c\x32\x3a\x26\x7b\x3a\x26\x3b\x3a\x26\x2b\x1a\x04\x64\x49\x1b\xf8\x54\xe4\x4a\x65\x85\xc9\x86\x8e\xc9\x39\x5d\x9a\x2b\xac\xcd\xfd\xf3\xe9\x66\x30\x50\x9a\x44\x59\x15\x09\xba\x9c\x6f\x16\xd8\x67\xdc\xfb\x94\x96\x60\x60\x10\xd3\xf1\x54\xb4\xf3\xa6\x98\x81\xe9\x3a\x29\x07\x03\x7b\x9d\xb3\x79\x30\x86\x76\xfb\xf9\x28\xc9\xb7\xbb\xb8\x60\x8f\xae\xff\x6e\x6a\x1a\x6c\x5c\x3e\xe5\xab\x4c\x26\x20\x41\x96\x73\xb0\xb5\xc3\x52\x34\x4f\xf9\x9e\x4d\x65\xa3\x24\xa8\xd8\x00\x6e\xd3\x92\x7c\xc9\x90\x68\x8a\x0e\xc3\x18\x7c\xc3\x9b\xc9\x86\x3d\xa9\x71\x76\x4a\x7d\x36\xd0\x98\x5a\x58\x94\x4b\xdc\x7e\xd2\xe1\x0e\x93\x1d\x4d\x89\xdf\xb9\x8b\x92\x87\x93\x61\x86\x49\x46\x9b\xa9\x47\xaa\xe8\xe1\x26\x98\x24\xb4\x99\x6a\x47\xab\x91\xb7\x71\x83\x57\x2c\x67\x3d\x52\xc0\xe5\x5e\xfb\x7c\xb8\xc7\x64\x4f\x25\x43\xb6\x1a\x50\x66\xb4\x76\xab\xc6\xde\x32\xd0\x79\xed\x31\x30\xdd\x77\x37\xac\xe9\xcd\xa4\x56\xb1\x9b\x43\x32\x6a\xe7\x7d\x96\x4d\x6b\xf9\xac\x21\x98\x31\x6c\x74\x5b\x3e\x23\xc6\x70\x23\x86\x45\x3d\xe2\x4d\x5c\xbe\xb8\xe4\xe6\xde\xb3\x76\xda\x6c\x8d\x80\x70\x3c\xeb\x66\xfa\xf8\x02\xd8\xe6\x6e\x44\x2f\x72\x79\x6c\xdb\xaa\xff\x1b\x2d\x48\x6b\x3e\x53\x7f\xe9\x73\x5c\xfa\xdc\xa7\x73\xac\x60\xa1\x22\x77\xd1\xea\x3c\x73\x0a\x4d\xe5\xe6\x31\x47\xb8\x9a\x3a\x60\x34\xec\xb8\xe4\xaf\x24\x28\x95\xd7\x69\x9d\x66\x39\xef\x36\xd3\xee\x0a\xf6\xad\xfc\x23\x5c\xb6\x53\xcd\x6e\x0b\x55\xb0\x7b\xcf\xd4\xa5\x89\xdb\x9d\x14\x84\x9b\x10\x3e\x7a\x87\xd8\xc0\x98\xd0\x9d\x5a\x10\x84\xc1\x42\xbf\x43\x25\x55\x1e\xd7\x17\x4d\xbe\xfb\xb1\x0e\xdf\xd2\xe5\x1c\x2c\x11\x5b\xde\x69\x99\x7c\x7f\x3c\x9b\x0c\xd0\x90\xdd\xbf\x3f\xc1\xd1\x78\x80\xe0\x47\x25\x37\xe6\x32\xbf\x11\xf4\x9b\x49\x98\x13\x94\x3f\x78\xf0\x80\xde\xc3\x92\x3e\x20\x71\xa0\xdf\xdc\xc5\x84\xbb\x47\x1c\x57\x97\x9b\x34\x63\x28\x7f\x30\xae\x7d\xb6\xb5\x83\x91\x3f\x22\xc7\xd7\x00\x70\xb8\xb9\x07\x20\x25\x1d\x4b\x54\x2e\x7b\x95\xfc\xc5\x03\x1a\xb7\x49\xcf\x93\xab\x1d\x4b\x24\xb1\xde\xe6\x05\xeb\x2d\xd3\x75\x2a\xca\x5e\xca\x7b\xe7\x71\xc9\x7a\xdf\x7d\xdb\xfb\xe5\xd9\x7f\x2a\x5a\xab\x49\x2d\x84\x56\x40\x29\x38\x6e\xc2\x40\xbd\x58\x26\x62\x30\xc0\x5d\xb7\x05\x86\xc0\xc9\x56\xbf\xfb\x56\x75\x23\xa9\x9c\xaa\x2c\x2b\x0e\x27\x18\x4f\x73\xda\xef\xa3\x6f\xee\x86\x29\x26\xe5\x80\xa2\x34\xa4\xdf\x4c\xf0\xfd\xfb\x09\x49\x06\xf4\x9e\x81\x07\x9e\xea\xeb\x8a\x2e\x25\xd4\x83\x07\x93\xa9\x13\x96\x06\x4d\x42\x86\x67\x43\x11\x89\x0a\x95\x98\xf0\x51\xc1\x4a\x41\x45\x47\x74\x0c\xb3\xec\xdf\xfc\x80\x49\x4e\x3f\x81\x39\x48\x4a\x3b\x6d\x18\x4f\xe3\x9d\xeb\x32\xae\x2f\x32\xde\xc5\xf2\xcc\xd2\xf9\xc2\x9c\x15\x26\x68\x6a\x23\x5b\x74\x88\xae\x55\x0c\xda\x36\x38\xea\x0d\x6c\x5a\x1b\x8d\x28\x4d\x5e\x41\xc7\x24\xb7\x2b\x3e\x2d\xee\xe7\xe0\xd5\x03\x1a\x25\xc4\xe6\xc5\x82\x08\x77\xf7\xc4\xae\x30\xef\x19\x43\xd9\xdd\x9b\xce\xec\x28\xa1\x48\x54\xfb\xce\x3b\x10\x78\x2e\xd1\x11\xb2\x25\x8d\x4c\xeb\xf7\x10\x2f\x97\x9d\x1a\x82\x74\xc6\xa2\xa2\x81\xb3\x49\x4c\x75\xcf\x2a\xe2\x45\x94\x7b\xe8\x99\x09\x50\x4b\x53\x07\xa0\x66\xce\x71\x18\xf6\x85\x51\xa7\xa8\x1c\x1d\x73\x88\xc4\x87\x03\xf2\xe6\x03\x31\x33\x4a\x2b\xef\x33\x31\xe7\x0b\x2a\xb1\x78\xec\xaf\x75\x33\xbe\x48\xea\x5d\xfd\x40\x5b\x6a\x98\xca\x46\x9f\x36\x67\x63\x40\xde\x9a\x84\x68\xf4\xa5\xa9\x70\xbb\x3f\xd7\x77\x11\xfa\xd3\x81\x3f\xd4\x41\x1e\xdb\xf1\x54\xd6\x9c\x84\xb7\x47\x91\xae\x50\x07\x18\x5b\x73\x99\xf3\x45\xd5\xd2\x0e\x04\x5f\x0f\xd8\xe0\x6b\x6b\xb0\x25\x59\x5d\x29\xd7\x33\x31\xfa\xba\x31\x87\x58\x34\x87\xcf\x80\xd3\x65\xf7\xdb\xab\xe5\xf7\x0d\x39\x73\xb6\x98\xb6\x10\xc6\xf3\xbc\xc7\xd4\x6b\xc0\x3d\x00\x11\x5b\xf6\xce\xaf\x25\xc2\x68\xf4\xad\x09\xe2\x31\x93\x12\xdd\xb7\xf2\x10\x02\x22\x60\x54\xfe\x34\xfe\x8b\x5c\x7d\xc1\xd5\xa3\x15\xa7\xa3\xb6\xdb\x9d\x2f\x48\x2e\x49\x45\x4a\xfb\x13\xcd\x60\xf7\x25\x87\xdd\x9f\x48\x16\x7b\x9a\xdd\xb7\x87\x37\x33\x96\x5f\x7b\xca\xe6\xd9\x62\x5a\xce\x92\x99\x2c\x07\x11\xd1\x28\xa5\x7b\xf9\x35\x8e\xf6\x94\xd2\x12\x8c\x7e\xfa\x13\x1c\x7d\x1d\x7c\x4d\x41\x92\x0e\xbe\x56\x65\x4a\xba\x8f\x02\xa4\x7e\xc7\x03\x3a\x89\x02\xac\x3f\x80\xd4\xc4\x43\x2a\x89\x12\xa5\x52\xba\x05\xfb\x60\x61\x59\xc1\x3d\x06\x8e\xb6\x3f\xc6\x24\x9d\xa1\x40\x22\xb6\x1c\x3c\x62\xe4\x71\xca\x47\xa2\x48\xb7\x08\x2c\xe5\xf4\x74\x70\x94\x0f\xe8\x5e\x73\x87\x08\x7c\x20\x65\x15\xdc\x51\xa7\xa8\x48\xb9\x8b\x13\xd6\x15\xa9\xa3\xd0\xee\x32\x8c\xcc\x83\x5e\x40\xc0\x93\x39\x78\x2b\x82\x05\xae\xc0\x69\x39\xfe\x54\x25\x12\x2c\x48\x7f\x8c\xab\x8a\xe4\xb4\xf8\x6f\xda\x0e\xab\x6b\xf5\xcf\x5a\xfc\xbc\x83\x2b\x70\x02\x50\xe5\xa8\xe1\x87\x02\xf7\xef\x5d\x81\x42\x20\x84\x85\xbe\xf3\xd3\x6e\x18\x87\x83\x71\xc8\x00\x83\x62\x5e\x15\x2a\xea\x45\x7e\x3c\xea\x45\xf1\xe5\x51\x2f\x0a\x6d\xdb\x9c\xb7\x6d\xbc\xd2\x51\xc1\xb6\xf9\x05\x3b\xd9\xa4\x99\x83\xc5\x5d\x6d\xa3\x3c\x60\xb0\x75\x90\xa5\x31\x7d\xae\xfc\xbf\x8c\xb7\xb6\xe7\x50\x31\x31\x1a\x4f\xe5\x6a\x3a\x59\xb8\xae\x21\xd4\xc9\x29\xbc\x1c\x4c\xdc\xa0\x3b\xce\xa8\x3c\x58\x56\x24\xed\xb2\xf1\x75\xcd\x0d\x5d\x53\xb6\xba\xac\xd7\x0a\x28\x50\x71\xba\x42\xc1\xae\x60\x3b\xc6\xc1\xf6\xaf\xc0\x1d\x73\x99\xf1\x63\xa3\xf7\xe7\x15\x69\x15\xb2\x57\xdc\x4a\xb3\x50\xad\xf6\xaf\xd1\xea\xc5\x9c\xc4\x0d\xab\x10\xc9\x10\x69\xab\x90\x94\xc6\xb3\x34\x4a\x6f\xb1\x0a\x49\xc0\x68\x18\x10\x71\xf9\x80\xa6\xbe\x55\x48\x42\xd3\x79\xe9\x59\x85\x94\x34\xed\xb2\x0a\x49\x68\xa9\xad\x42\x12\x6f\xa6\xde\x44\xac\xd1\x6e\x2e\xe1\x2f\xf2\x57\xca\xa8\xb0\xe3\xbc\x36\xac\xe4\x6f\x2a\xb0\xd7\x46\xca\xfc\x1e\xe9\x9f\xdf\x6b\xed\x1a\x61\xd8\x33\x10\x22\x79\x85\x10\x18\xeb\xdf\xbb\x7b\xbb\xb1\x7e\x1d\x4d\xf1\xaf\xf5\x21\xd0\xd8\x3e\x45\x1c\x8d\x01\x05\xca\x5f\x93\xf1\x0f\xae\x29\x70\xfa\xd9\xa6\xc0\xf5\xd0\xea\xf8\x27\xea\x14\x83\x3c\x74\x25\x0e\x07\x6b\x1e\xf2\x79\x63\x6f\x29\x3f\x39\x0d\xe6\x5a\x7b\xf6\xb0\xbc\xe6\x89\x89\x07\xb5\x08\x48\x51\x67\x39\xa9\x79\x9d\x6a\xe5\x23\x27\x3b\xad\xb3\x9f\xef\xb3\x6c\x11\x90\xb8\x4e\x81\x90\x59\x8b\x80\x94\x75\xd2\x1b\xc3\x1e\x2f\x02\x92\xd0\xda\x7e\xd7\x68\x2f\x41\xa7\x26\x46\x0a\x85\xd9\x6b\x93\x30\x14\x24\x6b\x97\x2e\x59\xb6\x0a\xc3\xfa\xdf\x76\x35\x99\x4a\xf6\x34\x39\x1c\xb2\xc3\xc1\x0c\x1b\x05\x0e\x2f\x10\x60\x84\xc9\xae\xc5\xd9\x93\x15\xdd\x35\xb9\xfb\x25\xdd\x59\x41\x93\x6c\xe8\x7e\xa4\xce\x1a\x39\xa7\x9b\xd9\xc6\xe6\x9c\xc5\x6b\x13\x96\xce\x6e\x81\xad\xb3\x05\xf4\xe5\xcb\xac\xde\xf9\xb3\x32\x4a\xa3\xf3\x30\x3c\x97\xdc\x94\x1a\x08\x62\x78\xd6\x16\x63\x56\x0a\x29\x31\x72\x8e\x09\xa7\x6c\x7e\xbe\x00\xcb\x27\xf9\xc3\xe7\x3e\x6c\x24\xb1\x14\xdf\x68\xeb\x2d\x8d\x16\x25\x0f\x2a\xf1\xed\x0c\x2a\x71\x83\x86\xe4\x57\xcd\x9d\x4a\x99\xb4\x8b\xb8\xda\x36\x64\x81\xaa\xde\x80\x4d\xed\x4d\x47\xac\x0d\x6d\x08\xee\xeb\x1e\xe4\x99\x77\x16\xf5\x70\x70\x8d\xc7\x05\xf4\x52\x87\x65\x53\x0d\x6d\x1d\x2e\x5a\x40\x54\x01\x41\x69\x0e\xff\x72\xf8\x37\xae\x2a\xec\xe0\x6e\x8e\x26\xf7\xf0\xa7\x62\xc6\xda\x75\x2a\x8c\xe6\x1d\x02\x7a\xc5\xca\x7e\x57\x5d\x21\xb1\x79\xba\x40\x31\x26\x0e\xfe\x03\x08\x67\x3e\x2a\xe3\x28\xc3\x55\x09\x08\x73\x26\x50\x82\x23\x6d\x4c\x29\x25\xcc\x3c\xbb\x60\x28\xd1\x26\x71\x05\xc9\x9d\x10\x67\xb9\x03\xe5\x86\x9a\x48\x31\xfb\x84\x53\xeb\x62\x63\x81\xd8\x69\xab\x99\x13\x2d\x25\x48\x89\x5f\x7b\xe8\x10\xde\x72\x4d\x40\xb1\x0a\x5a\x46\x12\x12\x48\x34\x0f\x71\x4a\x5c\x5f\x84\x46\x19\x60\xc5\xa1\x50\xa9\xa3\x7b\x41\x08\xcb\x8a\x8f\x96\x48\x90\x20\xf6\x63\x5d\xda\x9d\xd4\x05\xfb\x7e\x6b\x86\x37\xd5\xd4\x41\x67\x44\x4a\x98\xdb\x5d\xc6\x7e\x4a\xb3\x86\xbb\x9e\x1b\xc5\x74\x05\xb9\xbe\xc3\x6a\xed\x7b\xc4\x4a\x01\xe5\x2b\xa5\xe4\x91\xdf\x47\x1a\xd2\xb6\x12\xa3\xad\x32\x03\x97\x75\x88\xfe\x6a\x69\x53\xb8\xdc\x65\x37\x95\xf5\x14\x1b\x93\x54\x72\xf2\x31\x15\x0d\xe5\x0a\xc9\x28\x1f\xed\x0a\x26\x99\x5f\xb2\x97\xbf\xf3\x52\xc0\xc7\x8e\xf2\x51\x12\x97\xec\x35\xe3\x65\x2a\xd2\x0b\x16\x86\x52\x4c\x1d\x89\xfc\x59\x7e\x69\xc2\x17\x4c\x59\xbb\x14\xd8\x87\xfb\xa5\x8c\x38\xb1\x92\x4c\xc0\xfd\x78\xba\x1a\x0c\x70\x41\xc5\x7c\xb5\x20\xbb\xf9\x6a\x21\x91\xcb\x3c\x5f\xcc\x50\x41\xb3\x41\x31\xd8\x13\xf0\x05\x4c\x06\x74\x32\x48\x70\x24\x47\x59\x0e\x68\x42\xd2\xb9\x61\x06\x16\xb4\xb0\x48\xc0\x8d\xde\x8b\x4a\xba\x03\x4c\x35\xb9\x33\x8e\x4a\x72\x53\x30\xbe\x64\x05\x5b\x46\xa9\x0d\xd6\x4b\xca\x44\xb2\x35\x65\x85\x95\x22\x94\x08\xbd\x40\x1e\xd4\x25\xd3\x55\x07\x1a\x1c\x83\x1b\xa2\xee\x23\x50\x94\xdd\x75\xfd\x9c\xf1\x08\x15\xf2\x8c\xdf\x54\xa0\xa3\x69\x04\x35\xe6\xe6\x94\xaa\x13\x9a\x4f\x8b\x11\xbb\x12\x45\x2c\x11\x3f\x78\x44\xe8\x2f\x94\x6b\x95\x70\xe2\xac\x72\x49\x0a\xec\x63\xa3\x24\x0c\x11\x9f\x73\x0b\x8a\x1b\x35\xa0\x28\x19\x99\xe9\xea\x39\x26\x23\xf8\x0b\x21\x9c\xae\xa2\xb4\xbe\x6e\xc9\x25\xf7\x52\x61\x32\x5f\xe8\x48\xcc\xa8\xd3\x86\x5e\x55\x1f\x32\xf5\xd7\x0e\x42\x2e\x2f\x34\x39\xd4\xa2\x57\x85\x31\x8e\xe6\x8b\xaa\x42\x9f\x17\xf4\x9a\xa3\x6f\xc7\x3a\x42\xee\xbd\x7b\xca\x9a\x6d\x72\xef\x3b\xac\xac\xd8\xee\x7d\x2f\x79\x45\xf9\xe3\x07\x89\xc4\xe4\x8f\x1f\xb1\xdc\xa5\x68\xf2\xdd\x18\xb4\xfa\x68\xf2\xdd\x44\x92\x42\xf9\xe3\x5b\x4c\x56\xf2\xc7\x0f\xdf\x3a\x88\x43\xc7\x33\x66\x61\xf8\xc9\x28\xd0\x1c\xdf\x08\xc4\xe6\x7c\xa1\x4f\xa0\x6d\xc3\x8b\x4e\x7c\x53\x75\xaa\xde\xfd\xe8\x8f\xe7\x2e\xec\xea\x40\xd4\x72\x30\xde\xb5\x81\xa4\x99\x61\xe8\x07\x96\x76\x68\xd4\x29\x00\x69\x4b\xef\xfc\x6b\xfe\xaf\xb7\xe3\xb7\xe2\x2d\x7f\xbb\x7a\x5b\xf4\xee\xdc\xa7\x0f\x16\x83\xaf\xee\xd4\xb3\x3c\x75\x55\x7f\x17\x34\x70\xc8\xc3\x75\xcb\x15\x42\x69\x93\xe3\x35\xd5\x41\x91\x62\x21\x8a\xf4\xbc\x94\xb4\xec\xa6\x22\x26\xd7\xdc\x3f\xd1\x0b\x83\x25\x54\x0e\xbb\x12\xd4\x04\x01\xdc\xef\x96\xb1\x60\xea\x49\xae\xe7\xf9\x92\x9d\xc9\x4c\x07\x51\x3e\xaf\xcd\x43\x9e\xcf\x9f\xd7\xd1\x22\x54\xa8\x29\xca\xe1\x2f\xae\x2a\x31\x93\xe2\x20\x3a\x35\x3c\xa1\x14\x5f\xb0\xf6\x0d\x9a\x19\x17\x49\x9a\xa3\x35\x31\x1f\x38\xb2\xc9\xeb\x08\x09\x5a\x57\xc5\x36\x1d\x80\xf7\x90\x5c\x92\x8f\x54\x8c\x78\xce\xe5\xe8\xce\xe2\x75\x79\x38\xcc\x83\x32\x29\xd2\x9d\x80\x07\x9e\xaf\x33\x78\xf9\x8e\x5d\x89\xb8\x60\x71\xb0\x98\x8a\x51\x9c\x65\xf9\x25\x5b\x3e\x04\xc0\xec\x05\x44\x12\x78\x48\x6f\x2a\x72\x29\xff\x59\xa2\x8e\x12\xa4\x71\x6c\x1e\xce\xc5\x42\xae\xbc\xdd\x02\xac\x3b\xee\x78\x02\x3b\x80\xd5\x7e\xcd\x7f\x0b\xf0\x03\x3a\x9e\xe9\x3d\x21\xf9\x70\x27\xca\xdd\xdb\xb7\x7f\xbb\xb3\x26\xc1\xe8\x6f\x01\xc6\x91\xec\xc2\xdd\x39\x97\xb2\x4b\x27\xf2\x78\xf0\x2f\x14\x0c\x9c\xf0\xe3\x83\x00\x7f\x15\xc8\x92\x0a\xb1\xbc\x93\x14\xcc\x99\xcb\x49\x16\x97\x65\xc7\x44\xc2\x10\x6d\xd0\x43\x10\xf1\x91\x9e\x15\x26\x75\xdf\x41\x22\xeb\x05\x18\x93\x77\x32\x93\x55\xba\xf9\x17\xe4\xcc\x74\x20\x8a\x98\x97\xab\xbc\xd8\x4a\xe8\x37\xdb\x57\x5a\x85\x4e\x0f\xbc\x19\xa7\x2c\x32\x28\xd6\x8f\xb6\xc8\xe9\xa9\xa6\xb7\x67\xa6\x71\x08\x22\x1d\xfc\x4d\x39\xaa\xbf\xa0\x3c\x3a\x03\x78\x98\xf1\x5c\xd1\x31\x79\x2e\xe9\xde\x33\xb9\x86\x4f\xe4\x3f\xaf\x69\x7f\x42\x3e\xd0\x31\x39\xd1\x26\xe5\x2f\x61\xe7\xa0\x9b\x9c\xe7\x3b\xc6\x45\xbc\x8e\x7c\xea\x9b\xae\xd0\x6b\xfc\x41\xdf\xe0\x1a\x35\x3b\xbb\x84\x33\xc6\xf1\xf4\xb9\x82\x48\xa1\x63\xd7\x2a\x35\x59\x42\xfb\xfd\x02\x36\xfa\x74\x83\xce\x88\x5c\x6d\x94\xd3\xb3\x39\x04\x8e\xe3\x98\x14\xf6\xfc\x71\x9a\x9b\xdf\x44\x71\x2b\x7d\x4a\x73\xa8\x0a\x86\x96\x29\xe7\xac\x80\x23\xa6\x12\x31\x61\xaa\x40\xbc\x7e\xee\x1b\x63\xd6\x89\xe4\xc9\xfc\x6a\x51\x7f\x62\x4c\x5e\x40\xff\x2f\x6e\xeb\xfc\xcf\x34\x6b\xb7\x91\x5c\xe3\x30\x84\xab\x15\x2f\xcd\xee\x70\x66\x34\x73\x04\x54\x76\x1f\xfd\x8c\xd7\x32\xe3\x03\x9d\x60\xf2\x4c\x76\xd1\x1f\x63\x72\x35\x18\x90\xf4\x70\x40\x17\x03\x1a\xdc\x0f\x06\x8c\xa0\xfe\xc3\xc3\x41\xee\x49\x86\x0f\x87\x87\xf3\xe0\x6f\xc1\x02\x87\xe1\x12\x71\xe2\xd1\x59\x58\xaf\xad\xe2\xaa\x72\x13\x2b\x00\xb4\x95\x10\x40\xca\xb6\xa1\x75\x87\x0f\xe7\x6c\x61\xc7\x92\xdb\x96\x6d\xae\xfc\xf0\xf2\x37\xe8\x12\x6a\x5f\xca\x8a\xba\x97\xc3\xe1\x52\xd7\x52\x7f\x6d\xef\x89\x14\xbc\x8d\xaa\xe4\x61\x18\xca\xde\xd4\x90\x4e\xe5\x8c\xd7\x72\xab\x5c\x1b\x81\x48\x72\xf0\x86\x4d\xfa\x48\x5e\xc0\xd0\xba\x94\x24\x7d\x74\x4a\xd1\x47\xfa\xc2\xd7\x79\x4c\x65\x8b\xaa\xed\x33\xfa\x51\x31\xfe\xca\x0d\xe6\x0c\x87\xe1\x99\xbe\x42\x57\x7f\x29\xa5\x39\xbe\x49\x8c\x56\xe0\x8a\xea\xe8\x5a\x52\xc6\x3b\x1b\x6d\xf7\x99\x48\x77\x99\x96\x88\x9e\xdb\x80\xa5\x10\x5a\xee\x99\x1c\xf7\x13\x39\xee\xd7\x5d\xe3\xfe\x40\x4e\xe8\xf3\xee\x41\x3f\xa3\xe8\x03\x3d\x69\x0c\xfa\x99\x1d\xf4\x63\xfa\x41\x0f\x1a\x20\x7f\x36\xd2\xf6\x31\x06\xf6\x8f\xe5\x3e\x09\xe4\x39\xbf\x9a\x5d\xd1\xc7\xd1\x15\xc4\xba\x1b\x3c\xc6\x95\x16\x6f\x5e\xe2\x9b\x27\x72\x70\xaf\xe9\xcb\x4a\xfb\x46\x82\x50\xd4\x7f\x16\x86\x27\x23\x45\x8b\xeb\x5f\x08\xdb\x42\xe9\x0a\x3d\xd1\x17\x7e\xaf\xab\x4a\x79\x2e\xb6\xba\xe7\x18\x6e\x04\xd0\x15\xe5\x78\xca\xe9\x55\xe5\x74\xbb\x96\xdd\x5e\x37\xbb\x3d\x0d\xc3\x17\xb6\xdb\x17\x9d\xdd\x1a\x3f\xae\xeb\xaa\xaa\xd2\x15\x4a\x60\xef\x6a\x95\xb6\x3e\x44\xaf\x93\x0d\xdb\xb2\xf2\xe1\x6e\x97\xa5\x6c\x79\x96\xd7\xb4\xc7\xd9\x95\x61\xf8\x2b\x9c\x6c\xec\xca\x77\x5a\x5e\xb6\x87\x7d\x9e\xab\x50\x66\xe9\xaa\x88\xb7\x10\xd9\x83\x85\x61\x50\x16\x49\xa0\xb6\x83\x5c\x84\x47\x54\xc7\x0b\x47\x29\x5d\xe9\xe7\x4f\x38\xe9\x4f\x48\x7f\x8c\xb1\xb2\x28\x84\x30\x6d\x9b\xbc\x14\xce\x27\xe8\x22\x92\x3c\x9b\x3d\xa2\x1b\x10\xb1\xe4\xd8\x9f\x42\x3f\xaf\xb4\xb9\xc3\x9b\x22\x2b\x03\x3c\xd3\xf3\x6a\xe7\x45\x7d\x3b\x65\x95\xf9\x73\x5e\x0a\x6d\x3e\x70\x24\x23\x0c\xd1\x23\x7a\x2c\x73\xb4\x4a\xf9\xb2\xf3\xb1\x0f\x66\x67\x20\x0b\x4a\xc2\xa8\x57\xf2\x15\xbe\x79\x44\xfb\x13\xb9\x12\xfd\x47\x9f\x02\xa5\x2c\x25\x81\x57\x32\xa1\xe0\xa7\xfd\x67\x97\x28\xa5\x7b\x03\x39\xec\xf3\x7d\xbf\xda\x1a\x84\x8d\xf6\x45\x86\xc1\xc8\x80\x5d\xa4\x99\x3c\x05\x92\x98\xf7\x51\x4a\xcf\x51\x4a\x3a\xc6\xdd\x57\x25\xe5\x78\x1b\x37\x51\x47\x57\x9b\x53\xc7\x33\x0c\x7d\xba\x5d\xe2\xd6\xa6\xbc\x06\xcb\xe7\xc0\x42\x31\x04\x14\x2e\x5c\xfa\xa8\xe9\xff\x0c\x96\x32\xf5\xe3\x04\xfa\x30\x80\x13\x83\x0e\x86\x5c\x0e\xee\x60\xdc\x96\x94\xed\x38\x1b\x37\x3d\xc0\xfc\x68\x2e\xa7\x17\xe0\x0a\x71\xf2\x0e\xa2\x83\x7c\x2e\x70\x60\xfd\x80\x0d\x74\x97\x4f\x62\x40\xc4\xbb\xa3\xb5\x29\xe5\xf8\x78\xa1\xf5\xe8\x2d\x21\xcf\x37\x16\x02\xa6\x40\xa8\x88\xa8\x10\xce\x5a\x61\x14\x4c\x98\x16\xbb\xd4\xd8\xa7\x72\xec\xb7\xc2\xca\x04\x9c\x8c\x11\xc3\xa4\x8e\x73\x39\x96\xeb\x2b\xe6\xf9\xc8\x44\x34\x5d\x84\xa1\x00\xea\x33\x2b\x51\x8c\xbc\x1c\x4c\x54\x4e\x93\x0b\x93\x44\xa9\xe1\xbb\x69\xfb\xb5\x11\x58\x94\x77\xae\xdb\xdc\xe1\xa0\x9a\x9b\x72\xc5\x26\x78\x70\xa1\xb9\x0f\x9f\x0e\x50\x36\xfd\x83\x7d\xc9\x4a\x05\x3f\xdf\xc1\xe1\x98\xab\xdf\x8b\x51\x99\x6f\x59\xf7\x69\x56\xb4\x56\x1b\x54\xc8\xb1\x86\xa1\x8e\xf9\xc1\x9d\x78\x8a\x55\x25\x4f\xe3\x7c\x51\x27\x15\x15\xda\xe9\x73\xca\x06\x41\xef\x06\x5e\x18\xaa\x02\x87\xa7\x79\x2d\x77\x47\xf9\xf9\xe7\xed\xf3\xcf\xcb\x85\xa2\x5d\x39\xe1\xb5\xa8\x74\x31\xa0\x5f\xd3\xe0\xeb\xc1\x7b\x89\x70\xc7\x78\xf0\x75\xf0\x35\x56\xb4\xa8\xab\x85\xa3\x19\x18\x13\x7d\x52\x4a\x96\xad\x4e\xb2\xbc\x4c\xf9\xda\x39\x35\x33\xe8\xfb\xce\x83\x20\x02\xce\xea\x41\x40\xfa\x0e\x8f\x79\x38\x24\xa0\xe0\x61\x57\x42\x69\xb4\x14\x03\xe6\x94\x90\xe8\xb2\x22\x4a\xc7\x1f\x35\xb5\xa9\xaf\xeb\xf0\xa8\x9e\xe4\xa7\x43\x15\x22\xb8\xe0\x8f\xd7\x84\x51\xcb\xe9\x3a\x4d\xcf\x9c\xdf\x11\xc3\xc4\x88\x6b\x3a\xe8\xa6\x3d\xac\x1c\x5f\x0c\x28\x73\x43\xd9\xbe\x47\x8c\xf4\x27\x78\xea\x8e\x5c\x4e\xd4\xfd\x46\x39\x8e\x2e\x06\x34\x97\xc8\xca\x0c\x0d\x77\xc9\xa7\x0c\xe6\x97\x64\x79\xc9\x7c\x59\x40\x4b\x02\x40\xa3\x87\x1f\xf4\x6e\x98\x4a\x71\xa2\x52\xf2\xde\xf3\xd1\x2e\xdf\x21\x7d\x05\x07\x85\x25\x9f\xf4\x6c\x3e\x1c\x5e\xd9\xd0\xa2\x7a\xcd\x24\x9b\xab\xd8\x7d\xde\x29\x4f\x23\x3c\x95\xcc\x36\xdc\x34\xc9\x1f\x44\xd7\x93\xbf\xe5\x16\x65\x57\x49\xb6\x2f\xd3\x0b\xad\x78\x94\x7b\xbe\x91\x84\x38\x9e\x5d\xd0\x8b\x51\xb9\x3f\x2f\x45\x81\xc6\x84\xbb\xf2\x3d\x8e\xd0\xb1\x8e\x89\xe6\xe2\xbb\xf7\x8f\xda\xa9\xc1\xfd\x3b\x10\xbc\xfc\x41\x20\xb7\x43\x55\x0b\xe8\xe6\x74\x9d\xd4\x6f\xf9\x9c\xa8\x67\x84\xc8\x45\xad\x9d\x78\xef\xaa\x35\x3b\xb4\x69\x72\xda\x03\x1a\xc0\x61\xd4\x4f\x03\x29\x5b\xad\x27\x5c\xa4\x22\x05\xd2\x2f\x69\x87\x15\x91\x43\x29\x1f\x87\xf1\x76\x37\x0d\x1c\xc1\xf9\x3e\xa4\x66\xc2\x4b\x7c\xfb\x00\x52\xd7\x32\x95\xf0\x66\x43\x6f\x03\xc8\xfd\xb0\xcf\x65\x3e\xc6\xc4\xef\x06\xcd\xfa\xf3\x78\xf8\xf1\xe1\xf0\x9f\xe3\xe1\x8f\xff\x6b\x71\x33\x21\x77\xc7\xd5\x14\xff\x9b\x7a\x27\xac\xd6\x2d\xfd\xea\x46\xcf\x47\x9c\x36\x42\x29\xbe\xbd\x1a\x8f\x87\x6f\xaf\xee\x8e\x17\x03\x1d\x6d\xcf\x19\xc8\xdb\xfe\xdb\xe1\xdb\xe1\xe8\x6f\x33\xf9\x47\x8d\x40\x16\x50\xfa\xc5\x3b\xff\x42\x7a\x4a\x8b\x01\x7e\x1b\xdd\x81\xed\xdb\x37\x81\x13\xfa\x7d\x6e\xcb\xcd\xdf\xde\x79\xfb\x76\x71\x73\xb7\xba\x83\xc3\xd0\xb0\x6b\x2f\x35\xeb\x67\x78\x39\x6d\x57\x50\xcc\xe5\x79\xf2\x34\xc0\x7a\x67\x6c\x50\x93\xb7\x7d\x74\x7d\x26\x71\x02\x9e\xf9\xe2\xa3\x9b\xeb\x0b\x69\x0e\xaf\xa8\x0b\x1d\x0e\x9d\x75\x9d\x3a\xea\x25\xb0\x35\xbd\xf1\x37\x52\xd4\x1f\x57\xd3\x5a\x8d\x44\x6f\x1c\xd9\x35\x9a\x07\x9b\x6f\x02\x12\x6c\xbe\x95\xff\xdc\x93\xff\x7c\x17\x90\x00\x82\x42\xcb\x25\x62\x01\x09\x76\x01\x5c\x28\x04\xfb\x2c\x20\x41\x2e\xff\xe1\xf2\x9f\x2c\x95\x05\x03\x12\xa4\xa0\x6c\x2a\x72\xbe\x86\xe0\xcc\xea\x2b\x7d\xcf\x20\x6e\xfa\x52\xfe\xd9\x14\xb2\xa8\xfc\x67\x99\x5e\x04\x24\x80\x50\x47\xf2\xef\x86\xc5\x4b\x59\x2c\xde\x29\x8f\xd9\x40\x9c\xe7\xcb\x6b\xf9\xb7\x80\x6c\xf9\x8f\x2c\xb0\x2b\x64\x71\xcd\xd5\x2f\x48\x4b\x47\x15\xdd\xc4\x72\x26\x05\xbc\xe3\xaa\xfc\x0b\x03\x11\x17\x6b\x26\x82\x05\x49\xb7\xeb\x68\x0e\x42\xc0\xa2\x22\xce\x89\x8f\xe6\x41\xba\x5d\x9b\x91\xc1\x18\x41\x4f\x46\x82\xf3\xb8\x64\xfa\xcf\x2a\xe7\x42\x76\xcd\x77\x7b\x01\x93\xe6\xef\x03\x12\x6c\x99\x88\xeb\x71\xe8\x95\x90\x23\x10\x42\x42\x4b\xfe\x29\x03\x12\xac\xe0\x6b\x1b\xa7\x99\xc8\x5b\xc5\x61\xd1\xa3\x9b\x8a\x7c\x52\x0a\xaa\xa7\x26\x27\x41\x82\x24\x15\x16\x0a\xcd\xbd\x29\x17\x9b\xb4\x34\x48\xad\x9b\x13\xa3\xe5\xa6\xf6\xde\x93\x1f\x0e\x9c\x08\xad\x2a\xad\xbd\x58\x49\xee\x44\x4e\xe3\xe0\x08\x90\x82\x99\x19\xce\xe7\xe9\x82\x8a\x79\xba\x50\xc2\x7f\x4e\x4d\x54\xc9\x1b\xad\x3b\x89\x18\xd1\x44\x3b\xca\xab\xea\x53\x6f\x9d\x59\xd3\x4e\xa5\x33\xd7\x1a\xf3\x31\xe8\xcb\x47\x5c\xd9\x56\x70\x34\x01\x6d\xf9\x88\xa3\x52\x69\xcb\xbf\x05\x5d\xf9\x88\xa3\x4c\xe9\xca\xef\x62\xb2\xa2\x72\x00\xd1\x6e\xf4\x07\x01\x7e\x1d\x86\x92\x8c\x4c\xc8\x33\x92\x94\xfa\xba\x1f\x12\xd5\x7d\x67\x45\x96\x9d\xce\xd2\xb6\x01\x02\x56\x41\xa6\x26\x49\x29\x03\x22\x6f\x7c\x1a\x51\x3e\x8a\x31\x58\x39\xd9\x1a\x72\x9d\x4a\xfb\x1c\x65\x20\xe2\x75\xb0\x90\x83\xd7\x15\x76\xa3\x35\x46\x7b\x84\xa5\x28\x09\x9b\x6b\xb8\x2e\xf2\xfd\x6e\x28\xe9\xb3\x44\x9b\x16\x97\xc4\xa3\x58\x5b\x1d\x3c\x51\xa6\x76\x28\xd5\x01\xc2\x50\x21\x3b\xbd\xa9\x48\x49\x6e\x9c\x99\x56\x18\x57\xd3\x25\xf0\x94\x67\xd7\x3b\x56\xd2\x15\x59\x9a\xc3\x2f\xf9\xcf\x52\xc1\x27\x28\x77\x31\x0f\x20\xc0\x3f\x5d\x7e\x62\x6d\x5a\xfe\xde\xfc\xf8\x0b\x60\x9e\x9d\xad\xe1\x08\x3c\x93\x5b\xe6\xea\xed\x87\x93\xda\xc5\xbc\xc9\x00\x3b\xd7\x53\x6c\x3e\x5e\xe8\xc0\x83\x9c\x16\x44\x8b\x92\xbc\x6a\x5f\xd2\xda\x6e\x84\xb5\xec\x7d\xc7\xb8\x28\x52\x56\xbe\x7b\x47\xe7\x8b\xca\x77\x3b\x68\xbe\x22\xea\xd8\x1c\x04\x65\xfa\x91\x05\xe4\xe6\x96\x38\x0d\x4e\xd3\xd6\xb6\xd6\x7d\x6f\xad\xfd\xc6\x9a\x6f\xf4\xb5\x66\xce\xad\x42\xed\x9b\x8b\x9a\x8d\x13\x81\x4d\x38\x7e\x27\x15\x02\xcf\xd5\x71\x3a\xe7\x93\x45\xe5\xb5\x5e\x7a\xad\xd7\xa4\xb5\xb3\xfd\xe9\x7f\x15\xb3\x56\x07\xc5\x62\x3e\x59\x50\xe3\x11\xe1\x4c\x16\x84\x8f\xb9\x20\x7c\x81\xfd\x3e\x15\x0f\xd7\x31\xa9\x56\x97\x72\x1c\x5c\x75\x0c\xae\xeb\x3b\x30\xff\x2c\xc8\xa4\xd1\xa2\x67\xe8\x6b\xa5\xcf\x7e\xff\xbf\x3a\xa7\xe1\xd7\x4d\x32\x16\x17\xad\xe7\xa0\xdc\x89\xe8\x6e\xc7\x8d\x8a\xfa\x46\xa3\x69\x18\xed\x07\xc0\x54\x2e\xec\x4e\x84\xc0\x8e\x35\x9a\xf2\xfb\x45\x2b\x68\xa0\x8a\x42\x3f\x35\x56\x6d\x24\x9f\x4f\x16\x24\x9f\x8f\x17\xf0\x24\x43\x85\x70\x85\xe4\x7a\x77\x9e\xaa\xcb\x94\x2f\xf3\xcb\x23\x51\x8f\x97\x79\x02\x46\x09\x61\xa8\x8a\x8d\x4c\x02\xa5\xd4\xfc\x24\x79\x77\xc3\x60\x0c\x75\x1a\x8b\x0d\xa5\xf0\x24\xd3\x8c\x45\x9d\xe5\x1c\x03\x1f\xb7\xb4\x4c\xe8\xae\x60\x46\xac\x87\xe4\x56\x52\x49\xd1\x71\x53\xa0\xb4\xf3\xcd\xc9\x82\x7d\xd8\xb3\x52\x3c\xe4\xe9\x16\x22\x06\xfc\x24\xf9\x82\x59\x67\x2a\xbc\xac\x27\xf9\xa9\x0e\xb9\xba\x64\xe2\x2c\xdd\xb2\x7c\x2f\x3a\x83\x61\xc1\xd3\x80\x23\x9e\x5f\x42\xf4\x2e\x32\x61\xdf\xdc\xf9\x4e\xee\x93\x98\xde\xd5\x8e\xcc\x77\xc7\x24\xa1\xf3\x40\xe4\x92\xcc\x9b\x17\x69\xce\x73\x21\x72\xc9\x05\xe9\x57\x6c\x2e\xd3\x25\x30\x32\x1b\xa6\x0b\x28\xb4\x12\x5c\xaa\xef\x05\xc9\x8e\xb8\x29\xec\x05\x4c\xe3\xc5\x79\xc9\x8a\x0b\x56\x90\x63\xc1\x1a\xf5\xae\x4e\x72\xce\xc1\x49\xe4\x9d\x8d\xce\xb8\xd5\x4d\x3c\xb9\x60\x5c\x94\x0f\x97\xcb\xae\xcc\xd2\x74\xf0\x0e\x36\xb4\x7e\x37\x55\xa7\x95\xef\xac\x47\x44\xce\x81\x9d\x00\xd1\xea\x09\x5f\xbe\xa3\x9d\xa9\x0a\xde\x8e\x6f\x70\xc1\x56\x05\x2b\x5b\x27\x09\x0e\x4c\x7f\x42\x0a\xf9\x0f\x04\x70\xad\x0d\x62\xf0\x8d\x8a\xa3\xde\x9f\x10\x06\x66\xc9\x61\x98\x21\xcf\x1c\x06\xdf\xa4\xc8\x7f\xef\xd0\x38\x71\xd5\x6b\x56\x8b\xa8\x6c\x98\xdf\x8f\x8d\x2c\x0b\xe6\x58\xc0\xb1\x70\xda\x1f\xab\xfe\x9d\x8d\x90\x48\x8c\x94\xd7\xde\x74\x59\x85\xdc\x69\xb8\xd3\xab\x83\xeb\x32\xdf\x9d\xc2\x00\xd4\x63\x29\xfe\xab\x01\x57\x47\xde\xd4\x6e\x11\x4e\x9e\x71\x8d\x68\x2c\xac\x2e\xa8\x13\xde\x21\x5c\x75\x58\xdd\x76\xf6\xee\xf8\x29\xd4\xdd\x10\xee\x29\x1b\xa7\xff\xc5\xa5\x8c\xad\x31\x22\x27\x13\x4c\xfa\xc2\x2a\x6f\x1a\x43\xd1\x09\xcb\xb4\x3c\x3e\x9a\xc6\xc2\xeb\x7d\xaa\x24\xf2\x17\x76\x14\x08\xeb\xb6\x74\x85\x66\x3b\xcd\xf2\x47\xde\x22\x73\xa0\x77\x5c\xc1\xda\x63\xa3\x75\x2c\x36\xac\x78\x98\x80\x7f\x22\x26\x40\x5f\xcc\x57\x85\x9d\x80\x37\xb7\x3d\xa6\xcd\x46\xe7\x45\x1e\x2f\x93\xb8\x14\x4e\x5d\xc2\x6c\x54\x7a\x7f\x0a\x06\x44\x9e\x03\x84\x94\x2f\x9b\x30\x45\x06\x49\xcb\x6d\x04\xa7\xf6\x59\x5a\x0a\xc6\x59\x81\x02\x61\xcf\x19\xe3\xcb\xa0\xfb\x4c\x62\xa2\x91\x6c\xbb\x7a\xc1\x14\xde\x71\x41\x8d\x49\xa6\x63\x78\x74\x21\x03\x76\xd9\xc2\x41\xc8\xaf\x7d\xa4\xaa\x59\x0b\x3b\x1b\x72\x13\xd7\xc2\x8c\x64\x8a\x36\x69\xb6\x94\x43\x53\x1f\x71\x11\x27\x82\x15\x8f\x63\x11\xcb\x84\x72\x7f\x2e\x0a\xa6\xb8\x25\x1c\xdd\x06\x92\xc7\x2f\x4e\x5f\xab\xc2\xa7\xf9\x12\x02\xbb\x35\xe7\x77\x0b\x1a\x1c\xb7\x8e\x17\xdc\x50\x78\x0b\xe7\x6c\xef\xc6\xda\xdd\xb2\x74\xea\x18\xfe\x77\x56\xaf\xb3\x85\xee\x05\x3c\xb2\x04\x7a\x80\x1d\x6b\x53\x4f\x09\xdd\x02\x9e\x30\xbc\x7d\x3a\x5f\x08\xf9\x4e\x1a\x73\x2b\x75\xf2\xa8\x59\x63\x55\x5a\x94\xa8\x4b\x74\xdb\x39\x3e\x70\xc4\x91\x73\xc5\x2c\x08\x22\x31\x4d\x8e\xaa\xdb\xfb\xfd\xff\xe2\xfe\x15\x4c\x17\x7e\x5a\x33\xf1\x54\x47\x28\x3e\xe6\xd6\x64\x22\x18\xbf\x33\x01\x71\x6c\x02\x9c\x2d\x83\xde\x6d\xaa\x6c\xd6\x29\x22\xe1\xc4\x2a\x30\x87\x3e\xe6\x5d\x28\xc9\x97\x17\xc9\x06\xdf\xc6\x6e\x1e\x0b\x2b\x9d\x13\xfd\x56\xb4\x98\xe7\x8b\xa3\xcf\x45\x4f\xda\xa2\x8c\x25\x7f\x15\x59\x75\x5e\x27\x49\x8e\x32\xbf\xe4\xac\x78\x6c\xf9\xd2\x46\x82\x11\x4c\x7f\x49\xd9\xe5\xe1\x90\x4b\x39\xfc\x02\x8d\x09\xfc\xe7\xd8\xba\x39\x8f\x30\xf7\x40\x59\xfa\x53\x96\xc7\x02\x48\xe7\xd8\xb3\x4d\x73\xdf\x69\x83\x80\xf1\x93\x29\xbf\x6f\x4d\x75\x5d\xc8\x88\x39\x1f\x4e\x16\xb5\x19\xaf\x23\x4c\x89\xf6\xbd\x97\xab\x34\x11\x83\x0d\x62\xf3\xe0\x3c\x2f\x96\xac\x18\xc2\x9d\xca\x50\x31\x79\x0b\xc9\x27\x8e\x1d\xbe\x64\xeb\x2b\x13\x52\xc6\xc5\xaf\xb2\xa4\x52\x27\xc0\xf7\xcf\xc0\x06\xaa\x47\x5b\xc3\xb0\x6f\xdf\xd4\x58\x6a\x8d\x88\xdc\x83\x72\xb7\x9d\xe4\xdb\xdd\x5e\xe8\x1b\x1b\x75\x4d\xe6\x82\xbc\x9e\xf6\x4d\x45\xd4\xce\xb8\x9d\x31\x5d\xdc\xb2\x55\x48\x4a\xd9\x3c\xd8\xc5\xcb\x65\xca\xd7\xc3\x60\x90\x2f\xa6\x72\x6f\xd0\x0d\x4a\xeb\xe0\xa0\x15\x2a\x54\x64\x2f\xd9\xdc\x20\x1f\x41\x37\x24\x06\x3f\xff\xdd\x20\x1f\xa9\xee\x48\x49\x37\xa8\x18\x01\x7c\x30\x49\xe0\x43\x71\xc2\xea\x55\x75\x0d\xc5\xf3\xfc\x0a\x9c\x78\x46\xe7\xf9\xd5\xeb\xf4\x63\xca\xd7\x61\x88\xe0\x61\xd8\x22\xdf\xf3\x25\x2a\x07\x29\xd6\x21\xd4\xca\x21\x3d\x47\x85\x65\xaf\xd5\xec\xf0\x20\xc5\xc4\x29\x9f\x0c\x62\xac\xa2\x8e\xa3\x44\x97\x57\xc0\xd0\x40\xc0\x83\x18\x63\xd2\x3f\x72\x75\x0e\x30\xb7\x08\xd0\xfc\xd0\xfa\x17\xb0\x83\xbf\x51\x31\x75\x1a\x23\x1c\x0a\xb2\xa7\x8d\x51\x0c\xf9\x74\xd2\x57\xe2\xce\x28\x3e\x2f\x11\xdc\x88\x97\x43\x9a\x61\xe2\xa5\x83\x5b\x5f\x32\xa4\x7b\x0b\xe1\x0b\xa4\x60\x4b\x00\xa2\xa4\x24\x89\x0a\xe5\x73\xda\x2d\x2f\xbc\xfe\xe5\xef\x7f\x2f\xe2\xdd\x26\x4d\x4a\x3d\xd2\x59\xd7\xf4\xdc\xc0\xea\x30\xcf\x76\xbd\xaa\xf3\xa5\xee\xae\x8a\xba\xc2\xb1\x38\xf3\x6b\x26\x1e\x3d\xca\xaf\xaa\xfa\x20\xaf\x5d\xe7\xc0\xd9\x69\xb7\x63\x85\xad\x58\x6b\xd4\x15\x52\x10\x6a\x1f\x11\x61\xb6\x10\xb8\x46\xc8\x43\x16\x2d\xeb\x43\x77\x51\x07\xec\xd1\x0a\xc9\xab\x88\x91\xeb\x48\x10\xa8\x1d\x71\xa2\x6a\x47\x85\x52\x98\x5f\x7f\xea\x3d\x55\xc3\xea\xc1\xd1\xa5\x3a\x72\xac\x4d\x55\x07\xd8\x24\xeb\xd8\xa2\xaf\x80\x65\xa8\x51\x99\x31\x3e\x2d\xd6\x4c\xd4\xc2\x85\x4b\xd4\x52\xcd\x85\xb6\xd9\xdb\x35\x72\x2a\xfb\x51\x5e\xbd\xde\x18\x61\x0a\x3e\x7d\xfd\x26\x87\x3f\xf0\xc3\x81\x69\xb0\xb5\xf2\xd5\x14\x7c\x22\x6b\x33\x65\xe3\x47\x78\x6e\xb7\x7b\x6f\x5c\x0d\x90\x31\xb3\x6e\x5d\x80\x33\xa3\x22\x4c\x3d\x29\x41\x1e\x76\xca\x8a\x5d\xdb\xe4\x0a\xf0\xe8\x35\x3c\x5c\xa3\x7a\xc8\xeb\xe6\x8e\x78\xff\x3f\x7e\x71\x2a\xc7\xfb\x8a\xc5\xcb\x17\x3c\xbb\x9e\x35\xbe\xb5\x23\x3d\x89\x1b\x7e\x9b\xa9\xe3\xb7\x69\xa6\xba\x43\x31\xb9\xb9\x8a\x04\xb9\x8e\xb8\xde\x5b\x85\xd9\x5b\x39\x11\xf9\x2e\xe2\x04\xd0\x53\x24\x06\x05\x51\x98\x27\xca\x07\x9c\xc8\x53\x1d\x89\x0a\x93\xb8\x92\x34\x7b\xa7\x9c\x63\x6e\xd4\x0a\x47\x8c\x38\x70\x8d\x78\x85\x2b\x72\x79\x6c\x8b\x12\x61\xe2\x52\x81\xbd\x33\xec\x20\xc5\x6b\x29\xbe\xcb\x11\xdf\xbd\x54\xc9\x80\x70\x52\x9f\x5a\x47\x0d\xe4\xc4\x85\x38\xbb\xde\x99\xd7\xe1\xcf\x36\x0c\x9e\x7b\x3f\x8f\x93\xf7\xbd\x5d\x91\x5f\xa4\x4b\xb6\xec\xc5\x65\x0f\x1e\x77\x65\x82\x15\xbd\x49\xfd\x6c\x88\x69\x77\x64\x5e\x08\x35\x55\xdf\x19\xd3\x6c\x39\xc5\x22\xcf\x32\xc9\x12\xea\xb0\xc6\xa6\xcc\x89\xb8\x7a\x47\x8b\xae\x33\xa2\xe5\x8a\x96\x87\x53\x93\xc0\x77\x4f\x61\xd2\x33\xe5\x4c\xa0\xbc\x25\xe9\x9d\xef\x85\x0a\x8c\x35\xee\xed\x0a\x56\x4a\x7c\xaf\x42\x68\x74\x6e\x1e\x8b\xef\x9e\x58\xb7\x77\x8b\x13\xd5\x7e\x51\x03\x42\x6d\x6c\xa9\x6b\xe0\xce\xb1\x7d\xdd\x01\xc5\x7c\xd5\x93\xbd\xf6\x02\x5d\x33\x18\x7d\x6d\x02\x19\xb4\x17\x74\x6a\x42\x1d\x48\x5e\x53\x47\x50\xd0\xf6\xbb\x18\xb7\x20\xee\x2a\x29\x5c\x5d\x8d\x5b\xc4\x72\xbb\xb8\x6a\xc8\xe3\xfc\xff\x5f\x86\x4f\x2e\x03\x44\xe1\x53\xba\x70\xd0\xe3\x40\x90\x8e\x5a\x7d\xe3\x40\xd9\x55\xd9\xa8\xb5\x68\x02\xbc\x96\xd8\x5a\xba\x14\xd0\x6f\x5b\x5d\x46\x7b\x3c\xaa\x00\xea\x5c\xde\x76\xc7\x7e\xb7\xae\xa2\xe4\xc8\x3b\x09\x9f\x37\x86\xce\xd0\x7f\xc2\x12\x3c\x04\x5e\x02\x1d\xa8\x4b\x9b\x97\x29\x9f\xb1\x4e\xd2\xd4\x1e\x9c\xc1\x84\x8e\x52\xc7\xa7\x58\x0e\x8e\x21\x7a\x05\xbb\xba\x6e\x85\xc1\x72\x9c\xfc\x1e\x22\xa6\x89\x31\x69\x90\x49\xf5\xcc\x43\x03\xe3\x59\x2f\x1a\x62\x15\x7a\x2e\xc4\x1a\x8b\xed\xe4\xb5\x56\xbb\x6b\xa0\xce\xfd\x05\xf3\x2f\x4d\xda\x8d\xb8\x14\xba\xab\x2d\x47\x79\x25\xe9\xf0\xc7\x6e\x02\xfa\x2b\x8b\xdf\x9f\xc6\x3b\x08\x8d\xa3\x7f\x47\x8a\x9c\xd4\x82\x78\x8f\x21\x73\x04\x65\x6f\xde\xe3\x3e\xdd\x47\x2f\x38\x89\xb9\x3c\x6e\x12\x58\xbd\xb8\x07\xf7\x99\x92\xbc\xf8\xb4\xe4\xdf\x82\x65\x14\x7f\xb1\x77\x45\x7a\xb8\x7e\x91\x2d\xc2\x3b\x9f\x2a\x88\xd8\xf4\x23\xe0\x55\x20\xd5\x05\xae\xa6\xf3\x40\xe3\xc1\x80\x04\x16\x27\x82\x89\x83\x39\xae\xc1\xa2\x5b\x89\xf8\xae\x5e\xa8\x39\x5b\x34\xcf\x96\xb9\x46\x47\x82\x7e\x84\x78\x32\x0a\x29\xcc\xd9\xc2\xfa\x8f\x3a\xcf\xbb\x59\xa7\x94\xee\xc5\xca\x47\xaf\x40\x6d\x64\x0e\xfa\xac\x99\x10\x49\x9c\x15\xd3\x17\x5f\xee\xa6\xdb\x71\x29\xdc\x72\x09\x67\x61\x08\x4a\x80\x96\x27\x38\x83\x5e\xf9\x97\xf7\x6a\x03\x7f\xfd\xf8\x23\x1e\x9d\xe4\xbb\xeb\xb3\xfc\x24\x4b\x77\xe7\x79\x5c\x2c\xa7\x45\x33\x85\x16\x8e\x63\x7e\x51\x11\xe2\x73\x96\x5d\x3e\xd3\xc4\x0b\xca\x8b\x8d\x6b\x9c\x31\x51\x25\xb9\x14\xb0\x53\xea\xfb\xdc\xc1\x25\xa0\x7a\xbd\x3d\x75\xdf\x6d\xe7\x34\x85\xe8\x4e\xbe\x89\xfd\xe1\x80\xf2\x39\x5f\x50\x78\x8e\xbb\x76\xf3\xfe\x0b\x62\x1d\xdc\x1d\x7f\xfb\xff\x94\x58\x07\x9d\xab\xa6\x1c\x22\x47\x5c\xa9\x0e\x38\xfa\x46\xd9\x77\xa0\x1f\x27\x98\x94\xc7\xde\xfc\x03\x4d\x58\xd1\x15\x11\xb3\xa0\x4d\x64\x20\x9b\x97\x28\x1a\x2c\x7d\xa1\x93\xf1\x34\xbd\x5f\x4c\xd3\xc1\x40\x19\xac\xd4\xfa\x9e\x74\x31\x15\x34\x27\xea\xd1\xf7\xce\xbb\x43\xff\xe1\x22\xad\x91\xd3\x87\x50\xe9\x13\xd5\x03\x46\x75\x10\xbf\x62\x94\x48\xf4\x91\xb9\x83\x05\x1d\x04\xa4\x36\x5a\xe7\x58\x4f\x0e\x57\xa4\xa8\x94\x17\xa8\x3a\xcc\x59\xd7\xdd\xcd\x9f\xf2\xd9\x07\x4f\xd2\x1f\xef\x62\xb2\xfb\xd3\xf1\x1a\x56\x74\x3f\x8a\x0f\x87\xdd\x6d\x11\x1b\x96\x1d\x64\x66\x35\xaa\xef\xe2\x2a\xb2\xa1\xab\x3a\x40\x43\x2b\xbc\xc3\x96\x9e\x37\xc3\x3b\x9c\xd2\xf3\x3a\xbc\xc3\xfa\x58\x4c\x07\xe5\x15\xda\x86\xd6\xd6\x50\xdd\xb5\x8a\xcd\xb0\x36\xb1\x19\xd6\x9f\x8e\xcd\x70\x5a\xc7\x66\xb0\xc6\x15\x10\xa2\x61\xed\x85\x68\x58\x2f\x30\xc9\x2b\x72\xdd\x0e\x43\x67\xc6\xa9\xdc\x34\xbb\x34\xa3\xd7\x36\x74\x03\xb9\x6c\x85\xec\xf8\xd8\x1d\x9f\xe3\xdd\x6d\x30\x78\xd1\xd5\x4b\x47\x6c\x8b\x8f\xd1\x65\xf4\x2e\x0c\xdf\xf9\xb1\x2d\x2e\x10\xc3\xd1\x43\x39\x9c\xa9\xf2\xad\x3a\xd2\x18\xec\xb7\x36\x92\xaf\xc8\x55\x3d\x64\xb5\xc8\x0b\x75\xe6\x9f\x77\xb4\x14\x94\x50\xc2\xa9\x7f\x38\x9c\x01\xcb\xfc\x02\x31\x4c\xe9\x55\x45\x9e\xd1\xe7\xf1\x73\xf2\x84\xde\xf9\xd7\xdb\x72\x70\x78\x5b\x0e\xbe\xba\xb3\x26\xaf\xe9\x9d\x7f\xcd\x87\x83\xc5\xf8\x6a\x3e\x1e\xfe\x18\x0f\x57\x8b\xc1\x57\x77\x52\xf2\x81\xde\xf9\xd7\xf8\x7c\x3e\x9e\xa8\xcf\x13\xf9\x99\xcf\xc7\xc3\xef\xd5\xf7\x7b\x0a\xfa\xe2\xa7\x5c\xc0\x80\x7e\x6d\x0a\x2d\x26\x64\xb3\x23\xff\x5a\xaf\x84\x74\x85\x9e\x3b\xee\x02\xcf\x94\xab\x99\xd1\xfe\x09\xcf\x34\xc1\xea\xbc\x40\x95\xfe\x62\x35\xb3\xbf\x10\x8e\xd8\x94\xd1\x0c\x09\x3c\x13\x83\x20\x88\x84\xf2\xab\x31\x16\xc1\xcd\x7e\xd5\x42\xb1\x68\x20\x6b\xd5\x86\xb3\x4f\x48\x60\x79\x95\x0f\x3a\xa0\x02\x76\xbc\xd5\x4f\x4c\xda\xec\x3d\x62\x3a\x96\xda\x5d\x4c\xf8\xec\x6e\xf4\x03\x8e\x5e\xdb\xdc\x67\xd1\x80\x55\xe4\x31\xad\x63\x4a\xd6\x2c\x56\x40\x1e\x29\x85\xe4\x36\xbe\x22\x2f\xf5\xcf\x94\x43\xaf\xaf\xba\xc3\xd9\x2b\xa7\x7f\x08\x4a\xa1\xe2\x10\xf7\x27\x64\x25\xff\xd9\x48\x1a\xe5\x3d\x59\xda\xbf\x5d\xc5\xf0\xd8\x21\x5c\xe7\xb5\xdd\x50\x41\x52\x9a\xdb\x93\x48\x73\x7d\x7c\xc9\x9e\x0a\x52\xc7\xd4\x48\x09\xef\x52\xbb\x73\xca\x86\xc9\xb4\x19\xdc\x28\x39\x1c\xf8\x03\x89\x2c\xf9\xfd\xf1\xe1\xb0\x0a\x43\x36\xdc\x3f\xa0\x69\x5d\xff\xd4\x8a\x39\x4b\x65\x47\xb0\x75\xb6\x01\xc4\xec\x2b\xa9\x63\x33\x70\x4a\xda\xac\x90\x18\x22\x36\x4c\xec\x02\xad\x66\x2f\x11\x27\xa9\x4c\xdc\x63\x1c\x71\x50\x22\x57\x9d\x6a\xd1\xd2\xcc\x70\x13\x86\xc5\xec\x5c\x1e\x4d\xe4\xcc\x3b\xc6\xae\xa6\xd3\x19\x27\xe1\x2a\x1c\x4b\xba\x42\x0e\x5d\xd4\xaf\xf4\x91\x84\x1a\x3f\x5f\x0b\x06\x1b\xc1\xb7\xe3\xb4\xef\x29\x23\x8d\x39\x0a\x4c\x76\x6a\x38\x71\x85\x12\xe8\x67\x65\x5a\x00\xa9\xc5\x14\x2d\x71\x47\xd5\x73\x94\xd4\x8a\x6d\x3b\x02\xf5\x2a\xa6\x5f\x14\x93\xd8\xde\x31\xd0\x5f\x91\xc0\x87\xc3\x98\x64\x88\x4b\x99\x7a\x47\xfb\x7d\x3e\xca\x58\xbc\x94\x54\x21\xa5\x68\x45\x83\x6d\x7c\xf5\x6b\x9c\x8a\x20\xe5\x3d\x8e\x67\x8f\xd0\xaf\x88\x8f\x74\x1a\x54\x15\x38\x4a\xc9\x86\x06\xa2\x88\xd3\x4c\x1e\x39\x59\x70\x26\xdb\x31\x29\xd1\x06\x93\x8b\x0e\xca\x6d\x1d\x38\xca\x30\x6c\xce\x70\x0f\x57\x2c\x09\xcd\xa9\x59\xaf\x8a\x5c\x8c\x56\xd9\xde\xb7\x78\x68\xcd\x78\x16\x47\x6b\xb4\x84\x58\xb7\x17\x15\xf9\xad\xfb\x18\xc2\x81\xfb\xe3\xc8\xfb\x11\xfd\x31\xc9\xbf\xf4\x6c\xfd\x66\x37\xa2\x06\x64\x41\x03\x0d\xc5\x1a\x1c\x3a\x21\x92\x3c\xee\x6d\xd0\xca\x31\x79\x05\x43\xba\xa9\x6b\x68\x80\x47\x82\xd4\xc5\x2a\x5c\x91\xa7\xf4\x66\xc9\xce\xf3\x3d\x4f\x58\xf4\x8a\xc8\xa1\x09\x91\xb1\xe8\x8f\x8a\xbc\xe9\x22\x32\x4f\xe7\x6c\x51\x91\x9f\xbb\xa8\x46\xd7\x05\x43\x45\x7e\x6a\x03\xbb\xf3\x49\x58\x75\xb1\x5e\x91\x5f\x3a\xef\x29\x5d\xf9\x54\xab\x79\x0e\x07\x2f\xf5\xe7\xb3\xd3\x67\xe6\xce\xd2\xb9\xce\xf8\xbd\x6e\x05\xfd\xde\x69\xaa\xa6\xc8\x61\x18\xd6\x54\xcf\xcf\xb1\x0e\xc4\x5d\x97\x35\x76\x9e\x9d\x17\x32\xdd\xb7\x2e\xa6\x43\x3f\xa2\x20\xa5\x36\xbd\x6f\x7e\xd7\x1c\xcb\xcc\x8c\x2e\xb2\x3d\x62\xe4\x06\x20\xfa\xfb\xff\x88\xc7\x90\xff\xe1\xba\x27\xf6\x25\x33\x5c\x3f\x83\xfd\x3b\x12\xd8\x05\x98\xf3\x44\xc3\xac\xc1\x12\xd4\xec\x92\x73\x96\x5e\xb1\x15\x2b\x18\x4f\x8c\x7e\x01\xd4\x1a\x9b\xb8\xe4\x5f\x8b\xde\x39\x63\xbc\x97\xf2\x54\xa4\x71\x96\x96\x6c\xd9\x1b\xf6\xca\xfd\x8e\x15\x08\x7b\x25\x24\xcb\xc7\x96\x41\x6d\x62\x04\xb7\x57\xa2\x1e\xff\x7f\x3a\xbb\xe9\x3f\x0d\x5b\x59\x32\xf1\xd2\xac\xd3\x8b\xd5\xac\x8e\xf3\xeb\xa4\x76\x6e\x8f\x3a\x82\xe4\xe1\xd0\x59\x0b\x8c\x1b\xbc\x65\xfe\xca\x05\x20\xfa\xaa\x7b\x08\x87\x83\x2f\x2c\xb7\xfb\xa3\x82\xc0\x06\x92\xd2\x91\xdc\x16\xff\x71\xec\xf5\xfa\xb6\xb7\xa4\x75\x0e\xf5\x55\xb7\x47\xf4\xb5\x9f\x56\x1a\x05\xb8\x32\x51\x23\xc9\x3f\xd4\xaf\xff\x44\x02\x77\xbf\x95\xaf\x46\x0b\x42\xfe\xf4\xd8\xc0\x3a\x77\x90\x7d\xe5\x5a\x74\x0f\xf3\xb5\xdc\x0d\x3d\x76\xb5\x2b\x58\x59\x02\x83\xb2\x2f\x85\x79\xa4\xe7\x9c\xa9\xb7\x32\xf2\xc2\x1b\xf7\x94\x1d\x8d\x21\x0a\x31\xf9\x6a\xe1\xe9\xc6\x39\xe8\x91\x36\xe5\x60\x8e\xe5\x46\xdb\x08\xbd\xc2\x44\x84\xa1\x5a\xed\x4a\xbd\xb1\xc9\xa9\x20\xa8\x30\xaf\x3f\xaa\x10\x4b\x01\x51\x8d\x1d\x51\x21\xee\x8a\x7c\x57\x8e\xc0\x96\xab\x60\x5c\xbd\x51\xf8\x77\xe5\xd9\xaa\x47\x56\x60\x92\x43\x1a\xc9\x31\x11\x15\x2a\x46\x2f\xf7\x05\x3b\xc9\xb7\xbb\x9c\x33\x2e\x1c\x86\xef\x9f\xce\xd6\xff\xe7\xff\x8b\x11\x29\x63\xff\x23\x30\x29\xdc\x5a\x98\xf5\x10\xec\xff\x04\x2e\xe2\xec\x7f\x3b\x3a\xb6\x7d\x17\xcc\x43\x84\xc5\x11\x00\x7c\x19\x26\xb4\xad\xe7\xac\xe1\x85\x05\x71\xbb\xd9\xec\xd8\xfa\x08\x63\x9f\xc5\x6f\xf7\x2d\x71\x8f\x7c\x85\x23\x06\x41\x82\x88\x7a\xa8\x2b\x65\xc7\x70\xb0\x91\x58\xa6\xfd\xff\x2d\x48\xb8\xfb\xd1\xf8\x06\xb1\xfe\xe7\x2d\xc4\x1a\xf6\x45\x24\x4c\x8b\x4c\x62\xf3\x5a\x87\xcc\x30\x26\x39\x43\x1c\xb4\x6b\x81\x62\xe9\x7f\x86\xf7\x84\x0b\x3f\x24\x22\x3c\x32\x90\x7e\x64\x3a\x33\x0c\x1b\x09\x5a\x1c\x08\x43\xd4\x9d\x81\xf4\x3b\x05\x75\x86\x56\xe5\x79\x03\x28\xe2\xd5\x49\xc6\x62\xde\xea\x3b\x5e\x41\x8f\xf1\xca\xeb\xc7\x7e\xaa\xd6\xe3\x55\x57\x9b\x22\x5f\xaf\x33\xab\xbf\x0f\x48\x4b\x0f\x2f\x28\x97\xa7\xcb\xb8\x8b\xe1\xa9\xa8\x67\x67\xaa\xcd\xd9\xa2\x33\x51\x5d\xb7\x39\xbd\xd5\x0d\xf9\x73\x50\x62\xa7\x0a\x5d\x50\x12\x41\xd9\xe8\xc3\x9e\x15\xd7\xaf\x75\xfc\x04\x30\xc9\x50\x97\x64\x8f\xf3\xed\x93\x0c\x6e\x6e\x7e\x42\x58\xdd\xd0\x59\x1b\x37\x63\x62\xe5\xd5\x45\xca\x34\xac\x08\xc3\x5f\x50\x61\xc5\xee\x42\x7b\xdd\xf2\x11\x33\xb7\xbf\x5a\x81\x95\x42\x1c\x94\xc7\x2f\x4e\x9f\xe7\x4b\x86\x91\x2d\xa0\x22\xeb\x9b\xfa\xf9\x68\x07\x4e\xe0\xc6\xc6\xc9\x9f\xa6\xa2\xac\x6f\xc0\xd4\xbc\xe8\x0c\x9e\x09\xeb\x01\x8b\x69\x17\xa7\x6c\x3f\x84\x2a\xac\x25\x4a\x51\x5b\xa2\xe4\x06\x4e\xa3\x9c\xab\xdb\x97\xe9\xcf\x10\xd1\x26\x87\xf7\xc8\x88\x7a\xb7\x53\x48\xd2\x7e\xa3\xcc\x48\x44\x6d\xa2\xa4\x1c\xdd\x64\x7f\x5d\x23\x7e\xe5\xee\xc0\x23\x7b\xa1\x94\x2d\x93\x82\x0a\x6b\x23\x23\x6a\x1b\x19\xb3\x82\x31\x4d\xf5\xc3\xdb\xca\x40\xb1\xb4\xdf\xb5\x81\x62\x7c\x38\x94\x3a\x78\x35\xe5\x23\x0f\x64\x08\x1f\x0b\x03\xa7\xa1\xa2\xe9\xa8\x31\x6b\x01\x2f\xd3\xd4\x0e\x29\xab\x87\xb4\xa7\x71\x18\x16\x7d\x4a\xd3\xc3\xa1\x0c\xc3\xbc\x4f\x69\x36\xed\xf3\x51\xf9\x3e\xdd\xbd\xe0\xa7\xf9\x5e\xae\xfc\x3e\x0c\xe5\x6e\x0a\xc3\xc4\x40\x2c\x35\x10\xcb\x2a\x00\x68\x5d\x9a\xf6\x27\x10\x1a\xd5\x83\x9e\x5c\x88\x55\x03\x5e\x76\xe3\x40\xa8\x37\xff\x0c\xbc\x02\x86\x48\x22\xbd\x4f\x1d\x03\xc5\x3a\x81\x21\x92\x61\x8d\x0c\x85\xf9\x19\x09\x3c\xd3\xbc\x95\xc4\xef\x41\x24\xb7\xc1\x2c\x80\x72\x46\xb9\x1e\x44\xd6\xbb\x33\x2d\xe1\x51\x54\x63\xb2\x50\x97\x0d\x22\x3f\xa4\x89\xcd\x80\xcf\x20\x0a\xd4\x56\x0f\x5a\xd3\x38\x83\x13\x69\x19\xb0\x3f\x31\x17\x70\x7d\xe5\xf9\x92\x49\x58\x80\x6f\xae\xda\x5e\x25\xd5\x0b\x11\xeb\x25\xd5\xcb\x11\xeb\x75\xad\xa6\xe5\x65\x2a\x92\x0d\x02\xdc\x54\x83\x53\xa2\x84\x24\x2e\x99\x07\x16\xcf\x45\x13\x15\xa3\x24\xcb\x39\xb3\x60\x00\xfd\x8b\xe1\x53\xe5\xf6\x1f\x2e\x99\x00\xcc\x11\x54\x78\x0a\x8d\x35\x20\x7a\x7b\x7b\x39\x2a\xb1\x5b\xef\x93\xe5\x49\xe9\x16\xd7\x30\xb7\x68\xe6\x88\xe9\x40\xbf\x6f\x23\x75\xb6\x5a\x64\xa4\x04\xc3\x01\x1b\x21\xbd\xd9\xbf\xeb\xff\x8b\x51\x5a\x5f\xfb\xca\xa5\x71\xf6\x3a\x49\xa8\x75\xbc\x39\xcd\x97\x8c\x64\xf5\xf7\x2b\xb9\x4c\xfb\xfa\xfb\x05\xf8\xdc\x97\x53\xbd\x82\x66\xfd\x8c\xf2\x51\x2d\x9f\x51\x6d\xf9\x27\x2a\x77\xa8\x13\xa9\x8f\x8d\xfe\xdc\xf3\xad\x2c\xc5\x96\x54\xc7\x89\xde\xd1\x37\xa8\x56\x85\x36\xc9\xe6\x6e\xb6\x43\x06\x9b\x78\xe8\x8c\x64\x64\x8f\xa3\xee\xac\x26\xe9\x52\x0f\xed\x8c\xe2\x26\xb5\xc6\x84\x6b\xa1\x2e\x21\xd9\xff\x17\x84\x3a\xcd\xba\xba\x52\x5d\x62\xa4\xba\xc4\x9c\xfb\xc7\xe9\x12\x16\xb2\x43\xc0\x53\xa6\xa6\x1e\x8b\x81\xac\xa1\x03\x76\x9e\xdc\xd7\x4d\xfd\x9a\x66\xd9\x1b\xb5\xe0\x9f\xdb\x5a\x6d\x2c\x61\x5c\x04\x6b\xc2\xaa\x4d\x67\x1c\xb6\xcd\x24\x3a\xbb\x6a\x5c\xbf\xc0\xff\x09\x39\x35\x6f\x39\xcf\xff\x07\xb9\x29\xd8\x2a\xd2\xfe\x37\xaf\xd8\x4a\xc7\x85\x6d\x23\x47\xb0\x7c\x93\x32\x2d\x63\x9e\x50\x9b\x60\x92\xa9\x44\x92\x75\x4b\xb5\x29\x73\xbc\xef\x6f\x1c\xaa\x1a\x25\xa3\xf3\x3c\xcf\x88\x4b\x58\x4d\x9a\x73\xbe\x4c\x92\x73\x70\xa3\x64\xa4\x2e\xaa\x88\x73\xba\xa3\xc4\xc4\x34\xf0\x8f\xb4\xa1\x20\xc9\xa8\xdc\xc4\x3b\x86\x91\x55\xd4\xea\x86\xad\x8e\x56\x7d\x57\x98\x78\x0c\x58\xdd\xae\xc3\xc1\x45\xc9\x28\xe6\xd7\xc4\x70\x30\x51\x32\x92\xe0\x26\x6a\x05\xcc\x97\xa1\x12\xba\xb0\xa1\x13\x72\xf4\xf0\xec\x7f\xca\x1a\x91\x08\x5c\xe0\xf4\x27\x3e\x60\xfa\x13\x0f\x28\x52\xe0\x75\x00\x32\x61\xdf\x78\xb0\xd0\x78\xab\x01\x09\x9d\xea\x4f\x4f\xb9\x20\x39\x53\x83\x04\x3b\x33\x65\x6f\xa0\xe6\xa5\xeb\xdb\x79\x29\x14\x67\xa6\x05\xe1\x4c\xd4\x9d\x69\xcc\x68\xaa\x8c\x5a\x62\xf6\x99\xc6\x10\xf7\x54\xa4\x8b\x6f\x94\x29\xc4\xf7\x3a\x32\xf4\xdd\xee\x40\x17\xe3\x3a\xd0\xc5\x94\xa3\x7b\xdf\x39\xba\x93\xdd\xed\xb7\xb4\x8e\x2d\xce\x04\xa2\x88\x9b\xe1\xd7\x12\xe9\xca\x13\x77\x41\x18\xdb\xa4\xcb\x25\x03\x7c\x08\xc6\x8c\xc1\x45\x5a\xa6\xe7\x19\x83\x84\x30\x0c\x92\x2c\xdd\xa9\xcc\xba\x95\xa5\xc5\xa7\xbe\x6f\xcb\x7d\x36\x2a\x93\x22\xcf\x32\xf5\x79\x38\x78\xae\x30\x36\x17\xbe\xcc\xf5\x59\xdb\xe1\x45\x3f\x18\x6f\x50\x38\xe2\xa3\xfc\x82\x15\xab\x2c\xbf\xfc\x1d\x22\xf8\xba\x29\xbf\x49\x0c\xa8\xc9\xee\xa4\x11\xed\xba\x7e\x4f\x80\x94\xf5\x73\x6a\xf7\x59\x18\xc6\x0f\xc4\xe1\x90\x3e\x90\xbf\xee\x8b\xd9\x38\x4a\xef\xcb\xa9\x96\xf7\x29\x3f\x1c\xe2\x07\x54\x84\x61\xf9\x80\xf2\x59\x3a\x64\xc3\x22\x8a\x1f\xc8\xef\xfb\xfc\x70\x80\xba\xe5\x03\x3e\x8b\x87\x62\x90\x47\x63\xa0\x37\xe7\x9d\x36\xec\x42\x4f\x15\x48\xb3\x64\xc8\x21\xce\x0e\x30\xe4\x29\x87\x37\x9e\x25\x4b\x7c\x9e\xef\xf9\x32\x2e\xae\x21\x8e\x3d\x9c\x00\x3d\xad\x9f\x61\x4d\x34\x26\x2b\x49\xd9\xa9\x27\x4b\x67\x69\xa7\x0a\x46\x72\xd4\x15\x88\x61\x72\xbf\x74\x93\x34\xf3\x00\xa0\x0e\x9d\x53\xc7\x36\x48\x6c\xf4\x00\x3d\x83\x94\xaf\xed\x45\xc9\x31\x47\x19\x92\xd1\xf9\x42\x72\x1c\xd3\x1d\x78\xb7\x94\x68\x8f\xa7\xb0\x3f\xd0\x5e\xc5\x8f\xd4\x31\xb9\x30\xa5\x34\xc1\x37\x99\x32\xf8\xdc\xe3\x29\xbc\x6d\x53\xed\x9d\xa0\x05\xa3\xf3\x7c\x79\x1d\x86\x4b\x68\xa8\xbf\x44\xc7\xfa\xc4\x87\xc3\x12\xed\x49\x8c\xc3\xd0\x36\x57\xd5\x71\xf9\xb5\x7f\xe5\x45\x5a\xee\xe3\xec\x97\x94\x5d\xee\xf2\x42\xcc\xfc\xcf\x91\x16\x28\x38\x67\x85\x92\x85\xce\x3f\xaf\x9e\x66\x99\xa0\xa2\xda\xea\x64\x6b\x6a\x2a\xa8\xfd\x76\x38\xec\xe2\x35\xfb\xed\xc5\x6a\x55\x32\x41\x4e\xfd\xdc\xdf\x55\xee\xef\x3a\x77\xad\xfd\x60\xe4\x6e\x48\xf9\xfa\x04\x8e\x8c\xb2\x32\x25\x17\x74\x6d\xe4\xa5\x6b\xba\xd6\x1c\xf7\x43\xba\x06\x47\xa1\x4b\xba\xd6\xce\x58\x1f\xe9\xda\xb8\x61\xbd\xa3\x6b\xe5\x4c\xf4\x82\x06\xa5\x88\x0b\xc0\x0c\xc5\xe1\x10\x70\x16\x17\xac\x54\x9f\xb3\x87\x51\x60\x9e\x53\x9a\x7d\x8c\x1e\x0e\x2e\xee\xdc\x25\x67\x34\x48\x18\x17\x60\x23\x41\xf3\xd9\xbb\xc1\xf5\x9d\xbb\xb6\x58\x3e\xbb\x8c\xde\x91\x2b\xb9\xd0\xcf\xe9\x78\xfa\xfc\x7e\x66\x54\x99\xcf\x8d\x2a\xf3\x19\xcd\xe6\xcf\x17\xe4\x09\x7d\x76\x74\x3a\xaf\xe9\x13\x33\x9d\x0f\xf4\x89\x9e\xce\x09\x7d\x02\xd3\x79\x4f\x9f\xe8\xe9\xfc\x4a\x9f\x98\xe9\x3c\xa6\x4f\x60\x3a\x3a\xda\xeb\x90\x33\xb6\x54\x17\x7e\x3c\x0c\x1f\x42\x18\xdb\x77\xf0\xef\xc7\xfb\xf4\x3c\x0c\x2f\xef\xd3\x15\xa4\x9f\x40\xca\xaf\x90\xfb\x18\xd2\xdf\x1b\x05\xc1\xd5\x54\x45\x87\x6d\xa1\x9e\x67\x98\xbc\xb4\x56\x24\xe8\xd1\x48\xb9\xac\x3d\x63\x2b\xed\xcb\x37\x19\x63\xf2\xaa\x5d\xe0\x2c\xdf\xd5\xf9\xbf\xb5\xf3\x5f\xc9\x39\xd5\x25\xfe\x68\x97\x78\x04\x73\xad\x8b\x3c\xa5\x63\xf2\x86\x8e\xc9\xcf\x34\xc8\x61\x8f\x40\x56\x90\xf2\xde\xb3\xd9\xb3\x91\x93\x34\x7c\xe6\x62\xd8\xe1\xcb\xe1\x6f\xd1\x98\xfc\x64\x6a\xa9\xbd\xe9\x57\x53\x69\xb6\x9e\xfe\x7c\x35\xfc\x23\x82\x8b\xe6\x84\x52\xfa\x0c\x3f\x75\xb7\xce\xec\x85\xb3\x57\x5e\x0c\xcf\x23\x7f\x27\x6d\xd0\x29\x39\x1d\x9c\x93\x73\xf2\x8a\xfc\x41\x4e\x07\x2f\xe4\xff\x83\x0b\x72\x81\xa3\x17\xc3\xf3\x3b\x77\xc9\x1b\xa7\xb1\x7c\x76\x16\x79\x9b\xec\x6c\xb8\xf2\x36\xd9\xd9\x70\x15\x6d\xd0\x96\x6c\x07\x2b\xb2\x22\x2f\xc9\x6f\x64\x3b\x38\x93\xff\x0f\xae\xc9\xb5\x04\x8c\xb1\x5a\x41\x63\xf2\x74\x70\x8a\xc9\x1b\x37\xe5\xcd\x60\x8b\x55\x28\xc5\xc6\x0c\x86\x27\xc3\x57\xde\x2c\x7e\x1d\xfc\x31\xf8\xa9\x35\x93\x13\xf2\x2b\x79\x2d\xe7\x31\xf8\x89\xbc\x20\x76\x16\xe8\x64\xf0\xfa\xce\x5d\x3c\xf8\xa9\x3d\x9b\xe1\xe3\xe1\xcb\xe6\x8c\xd0\xe3\xc1\x07\x59\xfc\xe7\xc6\xcc\xde\x0f\x7e\x1b\xfc\x1c\x6d\xd0\x63\xf2\x9e\x7c\x90\x73\x1b\xfc\x4c\xce\x88\x9a\x19\x6c\xc9\x5f\xe8\x33\x8d\x21\xe4\x9e\x23\xbf\xdb\xcf\xb3\x7c\x37\x7d\x31\xa0\xbf\x0f\x91\x07\x00\x63\xb6\x83\x7e\x1f\x3c\x25\xcf\x3c\xda\x3b\x7c\x3d\xf8\x09\x63\x4c\xce\x06\xf4\x97\x21\x7a\xd3\x59\xeb\x97\xc1\x1b\x5b\x4b\xed\x9f\x0f\x83\x9f\x31\xc6\xd5\x95\x42\xa8\x37\x2c\x8b\x9e\x81\x77\xd3\x53\xe5\xc8\xf4\xa6\xf6\x04\xbe\xaa\xc8\x96\x8e\xc9\x69\xdb\x5f\x40\xb3\xa4\xd9\x68\x5f\x32\x50\x75\x61\xf5\x8a\x2a\x11\x94\xcd\xc7\x0b\x30\xd2\x9b\x2c\xfc\x37\xa1\x55\xe9\x27\xab\x15\x4b\x04\xee\x0a\xd1\xc2\xd1\x60\xb0\xc5\x2a\xd6\x2c\x11\x15\x59\xbb\x71\x44\x2e\x3e\x61\x3c\x30\x63\xd1\x75\xcd\x1b\x5c\x23\x7c\x53\x7f\x3d\x54\x54\x5b\x0b\x80\x2c\x0c\xcf\x11\x23\x37\x86\x30\x47\x82\x00\xe1\xae\x37\x0a\xa9\xe9\x7a\xe4\xa0\xa3\xaa\xeb\x31\x0e\x47\x53\xc8\x32\x70\x60\x93\x58\xae\x80\xe7\x5d\x56\x62\x2a\xea\xc5\xa5\x9c\x08\x67\xe5\x69\xe1\xbd\xdd\x71\xe9\x5f\x3a\x50\x30\xff\x54\x4a\xb6\x38\xe5\xa5\x51\xb8\xc9\xdf\xc8\xbd\x7e\xf8\xe8\xbe\x4e\x50\x5f\x79\x28\x4b\x55\xcf\xcc\x85\x7b\x4f\x22\xd5\x97\x56\x79\xdb\xec\x36\x75\xcc\x6e\x73\xc9\xc9\x8e\xa7\xf1\xfd\x7c\x1a\x0f\x06\x38\x9d\xc7\xae\xd9\x6d\xbc\x98\x16\x60\xac\x74\x24\xfa\x4e\xb7\x9d\x6d\x2a\x57\xd9\x32\x75\xf0\x62\x2b\x58\xeb\x14\x24\xaf\xc7\xf8\xce\x7d\x2c\xbf\x3d\x46\xe1\x8c\x11\x64\xe3\xf1\x94\xdf\x67\xc6\x19\xbc\xdb\x15\xdc\xbb\x34\xb1\x77\x76\xad\xa6\x0b\xa7\x69\xfe\x60\x32\xe3\xc3\x49\x04\xb6\xce\x93\x69\x7e\x9f\x4f\xf3\xc1\x00\x17\xf3\xdc\xf7\x37\xcf\x1d\x7f\xf3\x46\x2c\x82\x7a\x59\x41\x2b\xe0\x41\x62\xce\x16\x26\x6c\x71\x81\xd5\xab\x8b\xec\x42\xca\xf4\xf9\x25\x2f\x37\xe9\x4a\x3c\x56\x02\x16\xb8\x7b\xfa\x41\x87\x03\x0e\x21\x02\x21\xde\x42\x00\x5e\x37\x4e\xc2\xb1\x76\x40\x77\x6a\x41\xfc\xe2\xdf\x08\xe2\x5b\x5b\xe6\x7e\xcb\xca\xd6\x9e\x29\x23\xfb\x79\xe1\xb6\x5c\x2c\xa6\xa2\xfb\xd8\x81\x12\xda\x03\xa6\x7a\x0e\xa7\x9e\xde\x99\x77\x29\x85\x18\x6d\x86\x8e\x9e\x49\x64\x15\x49\x91\x48\xcc\x44\xe4\x88\x50\x57\xae\x81\x6b\xeb\x5d\x0f\x78\x3c\xb4\x2e\xfc\xdc\xbb\x1b\x05\x7d\x6b\xa5\x58\xa5\x79\xb0\x49\xd7\x9b\x4c\xe2\x6a\xb6\x7c\xca\x97\xec\xca\x04\x9f\xfc\x05\x6e\x76\x49\x90\x96\x2f\x76\x8c\x07\x24\x50\xa1\xaa\xd9\xf2\xa9\x80\x98\x9b\xb2\x87\x60\x51\x1f\xe8\x27\x80\x68\x5a\xef\x39\x4e\x4d\x90\x00\x03\xfe\x67\xdd\xef\x05\xb5\x23\x56\x83\x4f\x9b\x75\x5b\xa8\xb0\xc4\xb8\xb6\xb7\xd7\x2e\x5a\x7b\xcf\xae\x01\xaf\xbd\x67\xd7\x27\xf9\xb2\xb6\x58\x7f\x40\xbf\xf9\x3e\x0c\xf9\x7d\xfa\xed\x58\xbd\x36\x55\xfb\x45\x04\x0f\x8b\x22\xbf\x0c\xf0\x4c\xff\x18\x08\xd7\x30\xe6\x43\xe3\xfd\xef\xe1\x64\x6a\x0d\x77\x1d\x8d\xdd\xe1\x20\xee\x8f\x0f\x07\xf1\x80\xaa\xc1\x52\xf6\x60\x3c\x1b\x4e\xa2\x62\x30\x31\xda\x52\x31\xb0\xc3\xc9\xef\x8f\x67\x39\x2d\xa2\xfc\x41\x01\x0f\x87\xc8\xf3\x0a\xab\x70\x42\x3f\x7a\x18\xe9\x57\x84\x21\x6c\xb2\x79\x22\x3f\x08\x2a\x4c\xee\x8d\xdd\xf8\x14\xef\x5d\x29\xef\x57\x24\xf0\x14\x9e\x72\xf1\xaa\x31\x72\x82\x5c\xfc\xfd\x6b\xc7\x02\x19\x69\xc6\x2c\x13\x73\x2e\xf2\x1e\x5d\x3f\x5d\xa2\x20\x9e\x4c\xae\x87\xa5\x88\xc5\xbe\x1c\x6e\x59\x59\xc6\x6b\x56\x5f\x61\x8b\xc3\x01\x21\x08\x35\xe1\xe9\xbc\x40\x4d\x81\xf1\xa8\x64\xc2\x06\x15\x45\x41\xba\x0c\x48\x77\x73\x44\x34\x8a\x16\x39\xc4\xb0\x54\xe5\x3a\xf2\xe3\x22\x8d\x87\x59\x0a\xee\x4f\xbb\x3c\x4b\x45\x57\x23\x50\xa8\x60\x19\xbb\x88\x21\xa4\x6a\xbc\x5c\x42\x04\x97\xb2\xa7\x63\x5e\x6a\x7d\x68\x5c\x96\xe9\x9a\x23\x31\x82\x60\xd8\x92\xea\x4a\x5e\x38\x0a\xc6\x01\x49\xb2\x74\x17\x05\x85\x64\x0d\xc6\x3d\xf8\x0f\x07\x46\x53\x1d\x4c\x76\x57\x01\xd9\xc6\xc5\x3a\xe5\x51\x30\x84\x2f\xa3\x0f\x88\x8c\x3a\x83\xe8\x98\x16\xd0\xda\x4e\xc7\x89\x8e\x82\xf8\xbc\xcc\xb3\xbd\x60\x81\xf6\xe2\x86\xb6\x2a\x89\x5c\xa5\xd8\x29\x51\x06\xe3\x4b\x78\xcd\x16\x09\x6c\xac\x9a\x1e\xd3\x31\x79\x44\xef\x92\x97\xf4\x1b\xf2\x8a\x7e\x4b\x7e\xa3\xf7\xc8\x1f\xf4\x3b\xf2\x94\x7e\x4f\xde\xd0\x1f\xc8\xcf\xf4\x47\xf2\x13\x9d\x8c\xc9\x2f\x74\x32\x21\xbf\xd3\xc9\x5d\xf2\x77\x3a\xf9\x86\xfc\x83\x4e\xbe\x25\xd6\xbc\x6b\x55\x30\xf6\x91\xa1\x9b\x3d\x7f\xcf\xf3\x4b\x1e\x3d\x26\xdb\x7c\x5f\xb2\x37\xbb\x68\x42\x52\xc1\xb6\xa7\xf2\xeb\x89\xe4\x23\xa3\x47\xe4\x3d\xbb\x96\xe8\x19\x8e\xc8\x9b\x5d\xf4\xd2\x4b\x90\x3f\xa2\x57\x26\xe9\x49\x99\xc4\x3b\x16\xfd\x66\xbf\xa1\x89\x3f\xcc\xe7\xcf\xf9\x96\x45\x4f\xeb\xcc\x65\xf4\x46\x42\x37\x79\x2f\xb1\x49\xf4\x33\x39\xcf\xf6\xc5\x53\x89\x76\xa2\x9f\x48\xb2\x89\xf9\x9a\xa9\xaf\x5f\x4c\x95\xd7\xbb\x38\x61\x8f\xf6\x42\xe4\x3c\xfa\x5d\x55\xd5\x5f\x7f\x87\xca\xfa\xe3\x1f\xc4\x3a\x9d\x2e\x25\x2a\x51\xd7\x85\xcb\xd7\x0e\xee\x8a\x26\xf7\x88\xc8\xf7\xc9\x46\x8e\x62\xf2\x5d\x85\xc9\x57\xc7\x6c\x15\xea\x08\x99\x1d\x2f\x34\x4f\xf9\x28\x5d\xda\x9b\xd6\x74\x79\x38\x04\x4b\x43\xcb\x86\xc1\x40\xbf\xb7\xbe\x1e\x0c\x30\xe1\xa3\x2d\xe3\xfb\xa7\x75\x69\xf5\x79\x38\xc8\x26\x06\xc1\x50\x7e\x06\x84\x8f\xb2\xf8\x9c\x65\x4e\x31\xfd\x6d\xcb\xc1\xb7\x2c\x08\x18\xda\x29\xa8\xbf\x6d\x41\x1d\x3e\x18\xee\xbe\xe4\x9c\x9d\xa2\x36\xc5\xb5\x26\x71\x6e\x9d\x55\x7d\xc1\xb6\xc3\x60\xc0\x2a\xd3\x97\xb9\x6b\x91\x19\x25\xb8\x49\xc1\xcf\x13\xb8\x9e\xd1\x79\x92\xa0\xa7\xf9\xbe\x54\xcf\xfd\xaa\x2c\x08\x91\xae\xb8\xae\xa7\x4b\x53\x51\x6e\x0d\x1e\x67\xaf\x2d\x43\xd6\xa1\xbc\x2a\x8e\xf2\x6b\x6e\x7b\xee\xc7\xad\x61\xd8\xfa\x14\xb8\x59\x02\x81\xd3\x88\xc0\x53\xaf\xa6\x7e\x6c\xaa\x52\x37\xe3\x4f\xed\xc4\xfc\xdb\xda\x7a\xc2\x00\x97\x3d\xef\x2e\xeb\x17\x55\xaf\x21\x42\xbb\x3f\x37\x28\xed\xb1\x60\x9f\x0a\x35\x9b\xf5\xd2\xfa\xeb\x66\x65\x4c\x1a\xc1\x41\x6f\xe4\xbc\xe8\x13\x89\x30\x3c\x10\xab\x7b\x7e\x37\x6c\xf0\x4d\x93\xe4\x47\xac\x22\x02\xc3\xf4\x81\x1f\x57\xa7\x25\xcd\x79\x13\x00\xcd\x56\x6f\x5c\x9e\x40\xe9\xaa\x6b\xde\x21\x0a\x02\xd2\xea\xe9\x13\xb3\x22\x8a\xdb\x68\x16\x7b\x0a\xa9\x15\x61\x7a\x89\x64\xa7\xb2\x4b\xdf\x62\xbd\xc0\x37\x9f\x09\x80\xdb\x7a\xf9\xf2\x31\x7b\x40\x60\x2e\x04\xec\xf1\x14\x6c\x7b\xa6\x1d\xa9\xc0\x09\x4b\x60\x52\x34\xe6\xf2\x50\xb4\x37\x45\xfd\x48\xb9\x3e\x79\x73\xb6\x98\x2a\x21\x31\x87\x18\xb6\xb6\x36\xca\xa1\x74\xdd\xa4\x3b\xca\x26\xa4\x9c\xd3\xde\xea\x5f\xdd\x97\x2b\x98\xe1\x51\x13\x16\x04\xee\xfa\x3a\xe0\xdb\x75\x82\x49\x4a\x62\x7a\x53\x1d\xd1\x1b\x1b\xbe\xa8\x0f\x92\x63\x53\x72\x70\x58\x50\xf5\xac\xa3\x36\x67\x79\x6a\xd3\x4f\x80\x4a\x20\x36\xaa\x8b\x12\x6f\x91\x2b\x52\x4f\xe5\x21\x5f\xfe\xcc\xb2\x1d\x2b\x4a\x84\xc9\x4d\x05\x66\x5b\x8e\x15\x8c\x1f\x29\x80\x3a\x20\x10\xe6\xe9\xd0\x72\x26\x3f\x22\x36\x4d\xec\xc9\x84\x6b\xec\x57\x10\xb9\xab\x40\x82\x24\x52\x4a\x48\x5a\x33\xf1\xd8\x66\xe3\x6e\x79\x53\x91\xbd\xc3\x13\x17\x61\x98\x8c\xdc\x82\xe6\xb1\x11\x9b\x00\x0f\xbd\xf9\x65\x30\x49\x80\xcd\xa7\xea\xcf\xe1\xf0\x98\xb8\x4e\xc2\xc9\x11\x5d\x80\x98\xb3\x45\x9f\xd2\x04\x2c\xb2\x50\x3c\x67\x0b\xf8\x8d\x35\x47\xaf\xd4\x0f\x68\x6f\xd2\xe5\x5a\x97\x27\x1e\x4d\x55\x51\x3f\x32\x5b\x13\x78\xf3\x52\x4e\xe1\x4f\xaf\x62\xf2\xa7\x56\x31\xc1\x98\x64\x15\xf6\x8d\x4a\x90\xc0\x08\x7b\x90\x88\xb1\x7d\x9f\xdf\x1d\x04\x34\xa9\xfb\x8f\x8f\xf4\x02\xb1\x60\x9d\x2a\x00\x7e\xc4\xbc\x75\x38\x5a\xd5\xba\xf3\xa4\x6e\x1b\xba\xc7\xf4\x68\xb5\xba\xe8\x9b\x52\xc5\xc3\xc8\xf9\xf1\x01\x56\x0a\x6f\x17\x79\x2e\x5e\xb1\xce\xa8\x78\x7c\xf4\x4e\xe6\x3e\xcf\x97\x4c\x11\xae\x35\x13\xaf\xf2\x5c\xdf\x88\xb6\xcf\xad\x3c\xb5\x8e\x07\xe7\x4d\x15\x31\x52\xd2\x78\x54\xb0\xd5\x3f\xd8\x35\x49\xa8\xe3\x5c\x14\x14\x6c\x15\x44\x25\xc9\x54\x3e\xd9\x53\x37\x54\x7c\x4c\xe6\x81\xaa\x15\x10\x28\xb9\xc0\x64\x47\x91\x13\x1a\xf1\xa6\x8a\x04\x1e\x95\xfb\x1d\x18\x35\xbc\x62\x2b\xb8\x18\x22\xab\xfa\x2d\x9b\x5d\x18\xee\xa6\xfe\x98\x47\xca\x92\x96\xf6\xc7\x8d\xc9\xe8\x21\xd2\xa4\x99\xde\xec\x80\xae\xe0\x1c\x2e\xa9\x87\xec\x14\x55\x68\xa8\x04\x61\x17\x22\x94\x4a\xfa\x3a\x4f\x16\xf4\x05\xca\x6a\x70\x63\x92\x8e\xa4\xac\x42\x83\x24\xdf\x9e\xe7\xe7\xf9\x55\x40\xd2\xb9\x92\x3c\xd8\xd5\x2e\xe6\x4b\xb6\x0c\x16\x74\x69\x13\x37\x71\xb9\xcb\x77\xfb\x5d\xb0\xa0\x41\x96\x96\xc2\xab\x21\x99\x47\x59\x7a\x66\xd8\x45\x4d\x51\x75\x36\x30\x7f\x19\x5b\x9e\x5f\x07\x0b\x6a\x79\x45\x92\x62\xb2\x87\x2d\x60\x38\x6d\x65\xc6\x50\xd2\x9b\x9a\x4b\x6f\xeb\x02\x81\x81\x85\x9b\x53\xa3\x86\x51\xc4\xcd\x58\x3f\xb4\xc0\x52\x73\xc2\xc0\xe0\xfe\x83\x5d\xcf\xee\x45\x13\x15\x7a\x64\x9b\x5f\xb0\x26\x55\x44\x9c\xdc\x48\x84\x12\xbd\xaa\xf4\x93\x4b\x3a\xf8\x64\x93\x85\xd0\xb4\xb8\x3f\x26\xba\x78\x87\x8d\x98\x30\x5c\x2b\xf0\x54\x08\x4f\xd9\x83\x31\x84\x0e\x6e\x33\x55\xe8\x03\x9a\x10\x71\x3b\x0d\xc3\xce\xd0\xe4\xf1\x31\xf2\xcd\xbf\x07\x4c\xc3\x7b\xd1\xf0\x73\x00\xf5\xf2\xcb\x00\xf5\xf2\xbf\x0f\xa8\xe1\x17\x43\x4a\x49\x75\xdd\x70\x72\x5a\x52\x81\x9e\x15\x3b\x55\x50\xd1\x6a\x18\x42\x65\x1b\x7b\xa7\x02\xdf\xb4\xc1\x6b\xd4\x27\x00\x0a\xe0\x7c\x8a\x05\x49\x6d\x3f\x72\x8a\x12\xa1\xfd\x54\xe4\x5b\x35\x9b\x42\xc5\xdf\x06\x0f\xf4\xfc\x70\x48\xc3\x30\x85\xa0\x34\xb5\x3e\x60\x99\x96\xf1\x39\x58\xe0\x9b\xd0\xdc\xd0\x5a\x27\xbb\x84\xd4\xb4\xff\xa8\x70\x55\x11\x2d\xda\x7a\x9a\xbd\x23\xfb\xa1\x60\x25\x13\xba\xf2\x6f\xe4\x13\xdc\x31\x34\xce\x47\xe7\x20\xb9\xfe\xa3\x71\x7a\x5b\x44\xb0\x71\xbc\xc9\x4d\xd0\x0b\x3e\x6b\x4c\xca\x1c\xea\x94\xf1\xbd\x1e\xd8\xef\xb2\x63\x6c\x24\xbb\x2f\xef\x18\x64\x79\x8f\xa5\x80\x08\x48\x06\x82\x3f\xa5\x45\x29\x5e\x14\xcf\xe2\x52\x73\x94\x8c\xf4\xc7\x7a\x1f\x3d\xad\x60\x13\x2d\xbf\xb0\xfa\x44\x57\x7f\x63\x46\xbe\x66\xe2\x0c\xa6\xa5\xc4\xfe\x26\x29\x33\xdb\xb2\x49\xc6\x52\x2a\x24\x05\xce\xd2\xe4\x3d\x89\x29\x92\x1f\x2f\x25\x5d\x20\xf2\x97\x06\x04\x26\x25\xd5\x9f\x6f\x76\x24\x81\xdf\x8f\xb2\x7d\x41\x32\x8f\xb6\x09\x32\x0f\x74\x53\x01\x09\x74\x3b\xf0\x4b\xb7\x63\x7e\xbf\xd9\xc1\x2f\xd9\x84\xa4\x7f\xfb\x2e\x9a\x43\x76\xf4\x46\x37\x16\xbd\x03\xd6\x40\x6d\x0a\x05\x73\x48\xc7\xc4\xb6\x1c\xbd\x03\x76\xc0\x2d\x62\xc7\xae\xbb\x8c\xde\xa1\xb2\x5d\xe4\xcd\x4e\x16\x90\x23\x89\xde\xa1\xa4\x91\x2f\x93\x71\x45\x56\x34\x1b\x99\x93\x22\x81\xb6\xeb\xa2\x87\x6a\x35\x02\x55\x3d\x20\x92\x04\xd6\x5f\x0e\xb5\x0a\xa2\xfd\x2c\x80\x57\xdf\x7a\xa0\xe2\x88\x82\x7c\xc7\xb8\xfa\x4d\x1a\x14\x51\x22\xb6\x60\x19\x8b\x78\xa8\x36\x6c\x00\x2f\x0b\xad\x24\x9f\x97\xe1\xaa\x6b\x32\xf4\xf6\xdd\xdf\x51\x47\xc2\xa8\x63\x9b\xbc\x46\x0c\x4f\x8f\x1c\xc4\xb9\x00\xc7\x85\x63\x79\x4a\x2f\x64\x1d\x03\x62\x8c\x38\xd6\x62\x6a\x6b\x09\x3f\x31\x5e\xcb\xf8\x31\x7e\x91\x16\x39\xf7\xcc\x4d\x74\xfc\x2c\xad\x61\xa5\x94\xde\x5a\x58\x19\xaf\x18\x87\x88\xd1\x2a\x4f\xf6\x25\xc2\x9d\xaa\x97\xce\x6b\xce\x36\xce\xf8\x7b\x65\x38\xcd\xe6\x9e\xe9\x0c\x94\xa9\x3a\x9e\x7e\xb2\x43\x29\x5c\x80\xc6\x51\x82\xf5\x70\x50\x04\xe1\xf3\xe1\x50\xf3\xd5\x9f\x2e\x3b\x4a\x97\x00\x36\x47\x55\xf6\x05\xe0\x16\xb2\xbc\x8b\xdd\xff\x61\x01\xb2\x66\xe2\x99\xdc\xec\x6d\x24\xd4\x75\x72\x36\x62\x9b\xfd\x94\x17\x91\x1d\x08\x49\x97\x91\xe5\xe6\x8c\x8a\x03\x42\x83\xed\xf6\x2d\x1e\xfd\x76\xc4\xa6\xb7\x27\xd8\x71\x69\xa4\xa5\x70\x99\x92\x39\x34\x32\x83\x86\x49\xa6\xd0\x9f\xca\x39\x63\x57\x82\xb4\xb1\x9b\x8b\xc9\x00\x7f\xc9\x1f\xaa\x06\xfc\x7c\xaa\x1f\x29\x73\x9b\x09\x16\x18\x2b\xd9\x16\x2c\xb1\xc9\xca\xc3\x77\x64\x49\x57\xae\xa8\xb7\x91\x9f\x0a\x05\x9e\xd3\x55\x9b\x4f\xa8\x71\xd1\xe1\x80\xd0\x4e\x32\xe1\x76\xd0\x54\xe2\xb8\xc4\x90\x31\x7d\xce\x20\x07\x93\x5d\x0d\x0d\xaa\x10\xaa\x53\xc8\x22\xcb\x9d\x86\x12\x55\x08\xd5\x29\x02\xc8\x90\xec\xe9\x0e\x77\xa2\x3f\x85\xba\xe2\xbd\xc8\x93\x7c\xbb\xcb\x98\x60\x41\x04\xfc\xbc\xc1\x6a\x6a\xfb\x2c\x59\x99\x30\xbe\x8c\xb9\x08\xa2\x4d\x18\xd6\xa1\x5f\x8c\x0e\xe4\x3c\x0c\xcf\x1f\xd0\xf1\xcc\xd1\xd3\xa2\x73\xac\x58\x05\xd5\x90\xd6\x66\x97\x41\xb4\x69\x88\x05\x2d\xa1\xa0\xde\x45\x44\x8e\xec\x44\x8f\x2c\x0a\xf2\xd5\xca\x58\x2c\xeb\xdd\xa6\xb7\x5e\x45\xf6\x35\x7a\x6d\x03\xe8\x18\xa6\x84\x63\xd7\xc5\x3b\x68\x5c\x79\x24\xeb\x16\x54\xd9\x5a\xc1\x4f\x2a\x1e\xe1\x0c\xfe\x42\x6a\x9e\xd8\xe1\xac\x2c\xde\xbb\x50\x7b\xec\x0b\xf5\x79\x55\x73\x48\x3e\x96\x6b\x8c\xa7\x0b\xab\x79\x8e\x2d\x9d\xf8\x25\x0c\xfb\xfd\x2f\x41\x73\x5f\x52\x7a\x24\x89\x68\xc9\xbe\x0c\x39\xea\x3a\x1a\xf1\xcb\xaa\x56\x69\xe0\x7d\xd4\x26\x1e\x9f\xdf\xb8\xa4\xad\x1e\x9a\x67\x4d\x64\xfa\x93\x45\xa6\x72\x87\x37\xf5\x18\x7c\xf4\x4e\x26\x7b\x0a\x0c\x49\x9a\xfe\x07\x29\x30\x2c\x61\x75\x87\xde\xd4\x63\xd4\x19\xbe\x1e\xa3\x4e\x6f\xeb\x31\xc8\xad\x6a\x0a\x0d\xcd\x5a\x4d\xd1\xd2\x39\x78\x4a\x85\x7d\x18\xee\xdd\xf4\x60\x31\x93\xa8\xc6\x41\x2c\xa9\xba\xf2\x52\x78\xa8\x56\x3d\x68\xec\x75\x84\x5a\x91\xb4\xb5\x1c\x31\x4d\x47\x39\x87\x2d\x71\x9a\x5f\x30\xf0\xfe\xd3\xdf\x40\xc1\x12\xf8\x56\x8c\x7a\x46\x51\x6a\x19\xf5\x54\xdd\xe0\x4b\xdc\x9c\x82\x60\x48\x76\x75\xe3\x7b\x1d\x79\x2c\xda\x93\x95\xb7\x8e\x29\x90\x33\xdb\x1d\x90\x2c\xdb\x99\x22\x60\x2d\x46\x3e\x35\xc6\x10\x82\x6d\x83\x05\x9e\xda\x5e\xb2\x19\xd2\xda\x78\x75\x6f\xb4\x03\x83\x79\x9d\x62\xec\x0b\x76\x18\x47\x46\x67\x9f\x2d\xe8\x4e\xeb\x9b\x12\xb2\xa1\x08\x09\xc9\xed\xdb\xd1\x00\x3b\xef\xa2\x8f\xac\x4f\xe9\xad\x5a\x78\xb8\xea\xef\x12\xe9\x33\x2d\x27\x3d\x02\x21\x29\x96\x43\x7e\x6d\xcc\xa7\xd5\x36\xfb\x5c\x06\xb0\x59\x77\x52\x61\x72\xf7\xde\x58\xe9\x7a\x1d\xe0\x81\xa0\x81\x3e\xc1\x88\xcb\x5a\x66\x39\xe9\x3b\xb4\x6c\x38\x27\xb7\xef\x20\xcc\x3c\x7e\x56\xde\xa8\x02\x03\x77\x50\x8b\x25\xee\x00\x36\xee\xc6\xa9\xa2\x4d\x27\xc1\x06\xaa\x57\xd3\xd8\x0c\x6b\x99\x25\x37\xef\xc0\xc2\xa6\x37\xf2\x7a\x10\xdd\x0a\x7e\xb9\x07\x2a\x72\x2e\x49\xe7\xaa\xbe\x34\x7b\x0a\x37\xa3\xad\x5b\xc0\x92\xce\x17\x15\xd1\xe8\xee\xf6\x1b\xbf\x9b\x0a\x13\x46\x9f\x80\x21\x53\x9b\xe4\x79\x77\x14\x3a\x64\x83\xa7\x87\xee\x9e\xf8\x5f\x7a\xd3\xf5\xa9\xab\x2d\x29\x40\x32\x6d\x39\x47\x5c\x29\xe2\x2f\x9f\xf8\x71\x5d\xad\xd5\x93\x15\x15\x29\xc2\xb0\x7d\xd9\xf9\x29\xf2\xaf\xee\x87\x9a\xd7\x0a\xca\x10\xc8\x65\x65\x73\x5a\x18\xde\x35\xa5\x45\x9b\x77\x85\x1b\x3a\x5f\x1d\xf7\x60\xdc\xc5\x05\xa6\xea\x2a\xaf\x7d\x9c\x53\xc2\x30\x51\x17\x1a\x9a\x3c\x4a\xf1\xb9\x01\xcf\x6e\xfe\xc8\x32\x46\x46\xa2\x00\x29\xfc\x8b\xaa\x4e\x4c\x55\xf5\x20\xda\x6b\x30\xc6\x69\x98\x2a\x19\x4e\xc7\x01\x8b\xa8\xef\x2a\x5b\x30\x59\x10\x0d\x43\x07\x26\xb5\x4f\xb8\xcc\x78\x38\x99\x5c\xab\x9e\x4e\x95\x75\x50\xe3\xe2\xd6\xd9\x6d\x9d\x5b\x90\x74\x18\x21\x44\x9d\xa6\x09\xa4\x70\x4a\x14\xde\x59\x10\x6c\x1b\x09\xb8\x24\x9c\x76\x5b\x35\x14\xe4\x3d\x08\x15\xc7\x39\x20\xb9\x7f\xee\x8e\xc7\x4a\x8f\x19\x5b\x27\x67\xc9\x86\x1c\x3b\x5c\x09\x8d\x47\x3a\x8a\x48\x2b\x2f\xab\x89\x5c\x32\x2b\xa3\x84\xec\xeb\x86\x9e\x1a\x15\x92\xad\xae\x53\x56\x75\xa5\xdd\x6c\x1f\xed\xc8\xd2\x29\xe2\xca\x60\xb6\xd8\x72\x16\x04\xd1\x92\x9c\xd7\xe5\x5c\xc3\x19\xb2\xad\x4b\x9e\x2b\xce\xe0\x9c\x9c\xba\xab\xdf\x3e\x6c\x99\x61\xd1\x57\x2e\xf2\xd8\xf8\xaa\xd1\x6d\x85\xfd\x28\xb3\xa7\x8d\xbb\xcf\xfa\xd1\x68\x6b\xef\xd2\x98\x45\x18\xa2\x53\x47\xb0\xa4\x9d\xe8\xc9\x6f\x56\x5d\x01\xc3\xe5\xf5\x29\xe1\x95\xde\x67\xb1\x12\x7f\x99\x09\x7d\xe9\xf8\xc8\xd6\x5c\x9c\x39\x34\x27\x8e\xf5\x72\xd9\x0a\x9f\xee\x9a\xa6\x74\xdd\xc4\x7a\xb6\xcf\x4c\x51\x3a\xbf\x9e\xa6\x1d\xeb\xf6\x25\xbb\x77\x41\xd1\x0c\xfa\xa7\xb0\xaa\xd2\x6e\x83\xe9\x3b\xf1\xa3\x47\xb7\x9f\x9b\x72\x1e\xaf\xe9\x81\x79\xab\x68\xdf\xfa\x16\x78\x26\x14\x54\xe7\xc5\x22\x62\xf3\x62\x41\x78\x85\xc9\x8d\x96\x97\x1a\xc5\xbb\x14\x21\x96\x27\xae\xc3\x39\x41\xfc\x3d\x1f\x25\x1c\x79\xfb\x45\xf1\x57\x26\xd6\xb5\xbb\x5b\x6c\x36\x54\x9f\xb1\x46\x42\xd4\xd1\x6d\x9d\x5b\x83\xaa\x91\x81\x09\x73\x46\xe6\x5d\x36\x74\xcd\xcd\x69\xa2\x53\x22\x6a\xd8\x55\xba\x17\x19\x4f\x97\x10\x9c\x53\xee\x46\xe5\x3a\xe1\xa3\xa2\xa7\x5c\xe4\xbf\xa4\xec\xf2\x08\x5c\x3a\x6f\x43\x9a\x97\x53\xcd\x73\xa9\xdf\x0c\xd0\x76\x0c\xd0\xab\xe9\x06\xe9\x07\x53\xac\xcc\xa5\xe4\xb2\x8e\x9b\xab\x6e\x97\x43\x67\x4c\xe6\x12\x2a\x5d\x21\xfe\x60\x6c\x88\xe8\x07\xd3\xc3\x6d\x37\x4f\x1c\x9b\xdb\x99\x36\x59\x2c\x24\x7b\x21\x07\x75\xf4\xce\xe0\x48\x24\xcb\x8e\xb1\x0d\x27\xd3\xe2\xfe\xf8\x70\xe8\x77\x5f\xe7\x1d\x0e\x47\xaf\xfe\xba\x46\x26\x66\xe3\xa8\x20\xdc\xea\x05\x1b\xd7\xf5\xc7\x57\xb0\x26\x9e\x6d\xa2\x09\xa6\xcd\x8e\xce\xac\xa0\x0d\xfb\x83\x5c\xe6\x1b\x46\xa4\xb1\x95\x2d\x5d\x8c\xf5\xa9\x58\x92\xd2\xf6\x6a\x2f\xc8\x49\x62\xd3\x5a\xd7\x2a\x24\xb3\x79\xb5\x9a\x93\xec\x6d\xa2\x95\x4e\xc9\xae\x06\xb0\xd5\x5d\x92\x95\x07\x75\x95\xb6\xd4\x2f\x99\x68\x66\x86\x6c\xf4\x5b\x19\x86\x45\x21\xe7\xb4\x71\x73\x45\xb6\xd4\xb9\xac\x83\x59\x9f\x36\x53\xb4\xf0\x40\xd6\xf4\xf8\xbd\x1e\xb9\xa0\xc7\x16\x8f\x5c\xd3\xfa\xb1\x0c\x6b\x01\x47\x1e\x3a\xa9\xc0\xe2\x6b\xdc\x73\xe3\xc2\x2f\x2a\x49\x17\xe8\xa2\x84\x78\x50\x8b\x32\xe2\x02\x2c\xda\x13\x0f\x56\xd1\x8e\xb8\x60\x8a\x56\x04\x84\x86\xa8\xbe\x59\x24\x06\x64\xd1\x92\x58\x68\x45\x1b\x52\x03\x2a\x3a\x27\x35\x44\xa2\x2d\x69\x81\x27\x3a\x25\x9d\x90\x89\xd6\xa4\x03\x28\xd1\x05\xf1\xe1\x11\x5d\x93\x1a\x14\xd1\x43\xe2\x9a\x40\x46\x06\xb4\x36\x85\xf8\x36\x92\x91\x0e\xac\xe0\x15\x31\x46\x58\x51\xe7\xb5\x37\xf1\x38\xbe\x94\xa4\xcb\x28\x6e\xcb\x2d\xc2\x93\x4c\x0c\xcb\x91\xfb\x5c\x46\x01\x38\xa3\x15\x93\xe2\xc8\x53\x33\x8a\xbc\xd6\xa2\x07\x60\x11\xcb\x86\xa8\xe7\xa2\x35\x7b\x57\xe8\xd7\x3f\xbb\x31\xbf\xde\x2f\x73\x56\x2b\xd1\x08\xab\xb1\xeb\xe2\xe8\xbb\xa0\x3d\x49\xc6\x95\xd3\xd5\xe1\xc0\xc3\xf0\x12\x42\xe7\xf9\x9a\x35\x2d\x17\xb8\x73\x60\xae\xae\x8d\x4a\x01\xc0\x51\x5e\xf2\x56\xfe\x84\xf4\x05\xe2\xe6\xb1\xb7\x30\x64\x6d\x24\x28\x13\x5d\x6d\xdd\xa4\xea\x8a\x57\xc5\xac\xd9\xd2\x8b\xbd\x60\x05\x08\xfb\x88\xdd\x62\xb4\x94\x37\x47\x7d\x96\xef\x93\xcd\x69\x7e\xc1\xa8\x94\x3d\xd2\x5b\xb2\xc7\x15\x89\xbd\x49\x69\xfc\x6e\x27\x42\xfa\x13\x3c\xf5\x2a\x1d\x0e\xc5\xe1\xd0\xef\x98\xdd\xe1\xd0\x98\xdd\x77\x7f\xcd\xf4\x4a\xda\xcd\x12\x4c\xcb\x8e\x87\x85\xc1\x06\x7f\x09\xca\x28\x8e\xc9\xd1\x12\xfb\x5d\x40\x8a\xee\x7c\xb0\x68\x57\x2e\xa1\x24\xbf\xa5\xc8\x16\xf4\x5f\xe9\x2d\x25\xe0\xbd\xe0\xd8\x79\x3a\x88\xef\x77\x8d\xb5\xe8\x62\x7f\xe1\x6d\x6b\x57\x54\xac\x43\xcb\x95\xdd\x6f\xfa\x36\x27\x7d\xbc\x90\x9d\x77\xf7\x53\xc7\xcd\xa9\x1f\x2f\xe5\xcc\xfe\x78\x21\x0d\x00\x40\x17\xe5\x26\xdf\x67\x5a\x11\xd6\xc9\xef\x38\xca\xe0\x7a\xb9\x9b\x08\x6a\xd6\xa0\xf3\x51\x5d\xb6\x83\xf7\x29\xdc\x46\xdb\x6d\xb1\x48\xb4\x2b\x59\x8e\x58\xbf\x1d\xdc\x71\x88\xfb\xcc\xee\x78\x0e\xe6\xf0\x0d\x6c\xa8\x5c\x25\x1a\x93\x54\x48\xb9\x29\x0a\x34\x8c\x5a\x75\x9f\x9a\x9b\x74\xb2\xd4\x65\xce\xb2\x69\x30\x79\xa4\xb4\x69\xe7\xc8\x6d\xcf\xe4\x9e\x8b\xe5\x8f\xf0\x39\xe8\x58\xdb\x15\x26\x8a\xc7\xf3\x35\x9b\xba\x4b\x77\x99\x41\xfa\x33\xe9\xb7\x31\xe4\x36\x52\x90\xb3\xe9\x95\xd9\x41\x57\xb4\xa2\xce\xb7\xd4\xf8\x7e\xa7\x6a\xa8\xf0\x2f\x6d\x5a\x74\x86\x3a\x42\xdf\x92\x6b\x3c\x6d\x70\x25\x8e\x41\x5a\xdb\x4e\x72\xd2\x91\xa7\xaf\x18\xcc\xb3\x32\xad\xfc\xd6\x55\x43\xa3\x64\xfb\x16\x63\xd2\x91\xd7\xdd\xcb\x2d\x17\x1a\x8d\x92\x35\xef\xd4\xd1\x4d\xcd\x39\xd5\x99\x9a\x6e\x9f\x21\xe6\xcb\x40\x1e\x7e\xae\xfd\xd7\x66\xc7\x80\xa6\x9f\xce\xdb\x75\x8e\x72\x26\xa2\x2b\x24\xf0\x6c\x3f\x8a\xbd\xc0\x6a\x48\xb4\x01\x89\x9e\x23\x81\x31\xd6\x42\x68\xa4\xdc\x41\x44\x85\xb2\x51\x57\x58\xe2\xff\xa8\x9f\x92\x4d\x57\x68\x38\x91\x18\xc0\xbe\x0f\xf2\x60\x3c\x1b\x47\x7c\x38\xe9\x76\x2d\x2c\x94\x13\x70\x94\x3f\xa0\x7c\x56\xa8\x92\x91\xe3\xac\xfc\xcf\xba\x69\xa8\x0f\x7a\xb7\x63\xcf\xce\x15\x88\xe1\x91\xc8\x9f\xe5\x97\xac\x38\x89\x4b\xf0\x9a\xc1\x52\x86\x18\x4c\xcc\x6b\x61\x39\x4d\xf5\xab\x1f\x31\x86\x80\x98\x4a\x04\xea\x74\x2a\x1e\x01\x76\x2e\x7f\x4d\xc5\x46\x29\x3a\xf0\x83\xe1\x64\x96\x0f\xe2\xc8\xb4\x31\x26\x7f\xa2\x95\x76\x98\x63\x4f\x1f\xfc\x05\xea\x8e\xa2\x97\xc2\x6e\x68\x69\x36\x6a\x67\x30\x27\x42\xf1\x9d\x7f\xbd\x7d\x7d\x33\xa9\xbe\xba\x63\x1e\x39\x69\x46\x11\xd6\x7e\xb9\xc1\x80\xd9\xe9\x4d\x24\x3c\xdf\xec\x76\x06\x9e\x36\x6b\x82\x9b\x71\x80\x25\xab\xe9\xbf\xb2\xde\xa1\x3f\x2a\xf0\x4d\xdf\x97\x72\x6b\x67\x91\x20\xe7\xc1\x00\x46\x32\x08\xb4\xb9\x06\xbc\xa7\x6d\x14\x69\x12\xfb\x83\xf9\x7f\xa1\x7c\x01\x38\x7c\xc8\x12\xa8\xc0\x15\x2a\x88\x1a\x04\xf8\x4b\xf9\x86\xf2\x4e\x0b\xc0\x16\xfa\x56\xf4\x1c\x57\x5f\x35\xe2\x6d\x1d\x51\x76\x2a\x13\x06\x4f\x81\x19\xf5\x27\xa4\x4b\x01\xdc\x61\x6d\x6a\xc5\x5d\xde\x14\x85\x0b\x08\x37\x58\xeb\x78\x73\xca\x3a\x75\xbf\xa9\x6c\xc3\x21\x1b\x35\x42\x28\x66\x45\x9f\xd2\x7c\x56\x0c\x82\x9e\x6a\x29\x18\xa0\x09\x04\xe6\x08\x7a\x69\x19\x44\x41\xd9\x8b\x0b\x16\xe0\x41\xd0\x8b\x2f\xe2\x34\x8b\xcf\x33\x46\x7a\xfb\x92\xf5\xf6\xbb\x5e\xcc\x97\x3d\xc9\xd1\xf4\xe2\xa2\xc8\x2f\x7b\x72\xf9\x7a\x22\xef\xf1\xf8\x22\x5d\xc7\x82\x8d\x7a\x70\xbb\xd8\x03\x33\x5a\x99\x2b\x33\xd5\x04\x46\x41\x14\x04\x51\xf0\x3c\xd7\xbd\x42\x2f\x75\x0f\xa3\x20\xe2\xb3\x14\x71\x1c\x05\x41\xe5\x0b\x45\x5d\x26\xff\xfa\x21\xa6\x20\x88\x1c\xa7\x23\x6f\xb1\xa2\x6b\xd2\xf6\xc3\x80\xc4\xda\xeb\x00\x3e\x9d\x1c\x25\x05\xc2\xcf\x9a\x09\x8e\xae\x49\x07\xc9\x8f\x3a\xfd\x8d\x58\x9f\x52\x51\x11\x87\x1b\x8e\x6e\x79\x3d\x63\x76\x53\x45\xea\x17\x71\x5d\x6d\xba\x9b\x16\x15\x69\xa2\x69\x08\xe8\xe6\xe9\xb6\xa2\x87\x15\xf9\x4a\xe9\x44\xb5\xc5\x12\x84\xcc\xfb\x4f\x85\x51\x19\x6d\xeb\xaf\x87\x13\x6b\x63\x32\x69\xdb\xf3\x3a\x2f\x73\xa4\xcc\xd7\x35\xa9\xfd\x55\x2a\xe5\xcc\x11\xad\xbe\xdc\x85\xc7\x6e\x03\xe2\xc6\xed\x1e\x58\x72\x1d\xe3\xfa\xec\xa1\xcc\xc3\xb0\x04\xd4\x5a\x2b\x3d\xd3\x59\x1a\xc5\x33\x90\x5a\x67\x85\xbd\x9f\x8e\x71\xf4\x1f\x12\x0d\x3a\x09\xc4\xbc\xce\x2f\x85\xa7\x48\x55\x18\x4e\x22\x2e\x69\x8b\xce\x91\x04\xa6\xc6\x56\x31\x73\x19\xe1\x40\xcf\x04\x30\x4f\xfd\x6c\x38\x57\xb1\xc6\xd9\x9c\x2f\xa2\x9c\xcd\xc5\xa2\xae\x5f\x32\x1b\xc0\x4d\x45\x24\xb7\x94\x6e\x2e\x16\x5a\xfd\x1e\x68\xd8\xdd\xd2\xaa\x1e\x06\xf8\x48\x27\x8c\xc2\x1d\x51\x19\x25\xa3\x78\x14\xeb\x60\x0a\xaf\xcc\x83\x9c\xde\xb9\x91\x25\xe4\x58\xba\xb1\x4e\x2b\xd7\x68\x40\x5a\x05\x92\xb4\x48\xf6\x59\x5c\x3c\x57\x87\x5c\x9e\x1b\x99\xa7\x02\x2f\x36\xf7\x93\xcc\xd1\x81\x15\x8f\xa1\x46\xa7\xc8\x91\x8d\xe3\x15\x51\xbb\xd3\xf6\xe8\xe3\x54\x9b\xec\xdd\x0c\xd5\xc9\xde\x8e\x06\x90\xf1\x6b\xd2\x71\xf5\x63\xf3\x74\xf3\x9d\x79\xe9\x12\x7e\xea\x50\x8e\xda\x64\xc4\x4d\xd2\xe6\x6b\x4e\x8a\xd5\x80\xd7\xe0\x14\x8e\x16\xcd\x2f\xec\x21\x01\x5b\xde\xa0\x25\x17\xfd\xb8\xb9\x4d\xe0\xb5\x4b\xb8\x58\xd1\x49\x56\xb0\x6a\xa6\xbb\xb8\x0b\xc6\xb6\x89\x77\x0c\xdd\x34\x65\xe9\xba\x42\x87\x9c\x59\x67\x1a\x25\x91\xdb\x94\x7f\x53\x50\x97\xf5\x34\x3f\x16\xe8\xe7\xf9\xf2\xda\x7c\x54\xb8\xc2\x15\xc9\x18\x1d\x93\x3d\xa3\x13\xb2\x63\xf4\x2e\x59\x31\xfa\x0d\x59\x32\xfa\x2d\xd9\x30\x7a\x8f\x9c\x33\xfa\x1d\xd9\x32\xfa\x3d\x39\x65\xf4\x07\xb2\x66\xf4\x47\x72\xc1\xe8\x64\x4c\xae\x19\x9d\x4c\xc8\x43\x46\x27\x77\xc9\x25\xa3\x93\x6f\xc8\x47\x46\x27\xdf\x92\x77\x8c\x4e\xee\x91\x17\x8c\x4e\xbe\x23\x67\x8c\x4e\xbe\x27\x57\x8c\x4e\x7e\x20\xcf\x19\x9d\xfc\x48\x9e\x31\x7a\x77\x4c\x9e\xb0\x66\x7c\x01\xc9\xe3\xff\xa3\x19\x2d\x20\x63\xa4\x99\xfe\x66\x17\xed\xbd\x54\xed\x6d\xb1\xf3\x12\x95\xcb\x81\x5f\x8e\x2f\xa3\x65\x23\x45\xb0\x22\xda\x78\x69\x27\x9b\xb8\x88\x13\x99\x7e\xae\xd2\xc1\xfa\x7d\xcb\xc8\x53\x13\xeb\x00\x4c\x70\x4e\x55\x82\x22\x68\x6b\x46\x5c\x55\x6e\xab\xa5\x8b\xce\xfc\x7a\x96\xd7\xc7\xf3\xdf\xec\xa2\x87\x7e\xae\xea\xf2\x92\x11\x13\x3d\xfa\xac\xd6\xe5\x7e\xac\x53\x5f\x18\xc5\xef\xbb\x3a\xed\xc4\x6a\x80\x5f\xd4\x89\xaf\x3b\x94\xb8\x67\x6e\xb6\x55\x0e\x5f\xb9\x2d\xb1\xb8\xf8\x07\xbb\x2e\x5f\xe7\x3f\xc5\x45\xf4\xbc\xce\x79\x05\x1a\xe8\x67\xac\x72\x84\x94\xd7\x2e\xde\x07\xff\x1e\x88\x53\x9b\x52\x61\x63\xbb\x0b\xeb\xfe\x64\xc2\x70\x17\x2a\xec\x76\xef\x94\x45\xbc\x83\xce\xea\xc8\x2c\x95\x0a\xc5\x08\xd1\xae\x7b\x6b\x28\xaa\x11\x5c\xcc\x50\x6a\x83\xd1\xe0\x36\x62\x55\xf9\xad\x60\x36\xd8\x47\x71\xa9\x36\x4d\xd0\xdd\x2d\xbc\xfe\xb6\xb2\xbf\x4e\x53\x92\x49\xbb\xbf\xe1\xa4\x22\xed\xbb\x1a\x08\x01\x78\xd3\xd9\x65\x87\x35\x44\x85\xdd\xee\xb3\x6e\xc8\xfc\x07\x8a\x67\xf7\xa2\x49\x47\x67\x24\xf5\x2e\x45\x49\x3a\x6a\x93\x22\xec\xcd\x70\x7f\xbc\x0b\xf0\x52\xfb\x4b\x3a\x59\x75\x77\x32\xf6\x0a\x2d\xbb\x0b\xf9\x9d\x0d\x27\x5e\x9d\x9d\xbb\x1f\x8e\xac\x89\x5b\x7e\x73\x6c\x3d\xff\xec\x5e\xfa\xab\x57\xfc\x9c\x45\xf2\x0c\x49\xce\xee\x3d\x18\xa6\x82\xc4\xf8\xde\x9c\xc3\x41\x49\x32\xfa\x4f\x94\xdc\xb2\x2a\xfa\xaf\xe1\x69\xf0\xb4\x31\x61\xdb\x56\x94\x54\x24\x53\x63\x6d\xdb\x68\xf8\xa3\xba\x50\xa3\xda\xeb\x51\xed\x9a\xa3\xda\x93\x15\xfd\x27\xda\x11\x5f\xf4\x9a\xa5\x0d\x0b\x48\x3f\x1b\x03\x27\xfd\xa5\x83\xde\x55\x64\x75\x0b\x80\x57\x0d\x78\x5e\x7b\x1b\x64\xdc\x5e\xd8\x54\x2e\x2c\x23\x13\x7f\xc3\x3e\xfc\xcc\x6a\xc3\x46\xbd\x4b\x16\xc1\xdf\x8f\x5e\x7d\x2b\x9c\xb6\xa3\x6c\xe8\x1c\xc9\x55\xeb\x26\xc7\x7e\x8b\xef\x3e\x73\x24\x8d\x6a\x2f\xfc\x83\xe1\xe5\x9d\x1d\xc3\xb7\xcd\x24\xaf\xd6\x15\xd4\xf2\x80\xee\x8b\x23\x5e\xe9\xe7\x50\xba\x5e\xb6\x20\xf0\xb2\x9f\x75\x0f\xe1\x28\xc6\xee\x3e\xa5\xde\x60\x54\x9e\xaf\x85\x36\x7d\x9a\x47\x0d\xea\x88\xc3\x3a\xda\xb0\x66\x1d\xf5\x43\x4c\xbd\xcb\x54\x6c\xf2\xbd\xe8\xed\x20\x5c\x41\x2f\xd6\x7a\x9e\xeb\x1d\x1b\x05\x36\xf0\x5f\xc3\x1b\x92\x91\x9b\x8a\x70\x25\x6b\x7c\x60\xe4\x84\x91\xf7\x8c\xa2\x0f\x8c\x3e\x96\x1f\x34\x61\xfe\xcb\xac\x6d\x33\x47\xcd\x25\x31\x2e\x8a\x94\x95\xe8\x84\x75\xe9\x76\x6a\x63\x8a\xf9\x78\x31\x95\xcc\x5d\xb2\x61\xc9\xfb\x97\x26\xc6\x3b\x3a\x61\x84\x11\x4e\x3e\xb0\x11\x8f\xb7\x4a\x15\x86\xc9\xaf\x5a\xf6\xb9\x4d\x31\xc0\x66\x56\x1f\x00\x8a\x84\xcf\x90\xab\x47\x2a\x1c\x53\x59\xfd\x29\xed\x0c\x1c\x54\x88\x02\xcd\xb1\xd1\x8a\x99\x80\xe4\x0d\x63\x1e\x01\x42\x6a\x31\x3b\xaa\x03\x09\xa2\xff\x23\x4a\x99\xea\xa8\x08\xd8\x35\xf7\x0e\x8b\x5c\x34\x26\xbe\xb6\x09\x23\x21\x47\xba\x89\x4b\xf5\x32\x98\xa9\x33\x92\x2b\xd2\x50\x58\x7c\xb9\xb2\xc4\x51\x4a\x3c\x66\x47\xb6\xe1\x7b\x99\xa1\x75\xe5\x8d\x2d\xfe\x2b\x53\x06\xb0\xca\x87\x5b\xe1\x6b\xfd\xcb\x35\x26\xe9\x34\xd6\x04\x25\xc5\x11\x68\x81\xf7\x99\x6f\xa0\xb8\xab\xdf\xf3\xb7\x26\x8b\xa2\x61\x8e\x44\x96\x54\xb8\xd7\xa7\x64\x73\xc4\xb8\x67\x3f\x8a\x47\xfb\x92\x9d\xc4\x59\x76\x1e\x27\xef\xdd\xe3\x24\x0b\x09\xca\x98\xfc\xa5\x6f\xdd\xec\x1e\x6c\x87\x72\x21\x29\x85\x92\x98\xc4\xb4\x40\xa2\x15\x8e\x84\xdc\xe8\x13\x11\xa5\x55\x7d\x95\x50\x30\x64\x5f\xb2\x21\x31\x26\x71\x85\x09\x84\x55\x49\xcd\xc8\x4c\xa4\x98\x82\x08\xd9\x74\x3a\x1f\x2f\x48\x49\xd3\x3a\x0a\xed\x9c\x41\x20\x12\x4c\xca\x45\x85\x5e\xb3\xd6\x23\xcf\x82\x82\xc6\xa4\x81\xf6\x20\xb2\xa9\x4c\xee\xc0\xa4\x85\xce\x32\x48\xd4\xd8\xae\xb4\x6d\xa2\xef\x8f\xc3\x50\xcc\x58\x83\x86\x0b\x5c\x5b\x53\x14\x3e\x06\x16\xc4\xc3\xf7\x95\x0a\x54\x47\xce\xe9\x46\xce\x6b\x4b\xcf\x0d\x16\x58\xd3\xf3\x36\xfb\x72\x41\xcf\x7d\xed\xd6\x35\x3d\xaf\x59\x0c\xf2\x90\x6e\xe6\x93\x05\xb9\xec\x32\xb4\x7b\xe8\x5b\x04\x03\xc8\xb5\xb5\x6e\x45\xce\x3a\xef\x68\x1b\xfe\x3a\x60\x84\x9c\x2e\xe1\x99\x2c\xeb\xd8\x52\x7b\xb5\xc4\xd4\x71\x15\x20\x10\x63\xcc\x53\x49\xb8\x0e\x44\xc5\xcc\x8b\xf9\xc6\x10\x8e\x0a\x03\x64\xa3\x00\xc9\x0f\x87\xa4\x8e\xdd\xa6\x75\x20\xa9\x4a\x54\x9e\xd0\xb5\x16\x24\xee\x0c\xca\x96\x78\x11\xd9\x1a\x0a\x92\x52\xb5\xa4\x52\x87\xda\x09\xbb\xaa\xd4\x2b\xd8\x57\xf4\xcc\x4e\xf1\x39\x3d\x73\xe6\xf5\x8c\x9e\x99\x09\x3f\xa1\x67\xcd\x29\x7e\xf0\xe2\x27\xbf\x62\x2b\x13\x3d\xf9\xe4\x58\xc6\xaf\xed\x0c\x3c\xfd\x75\x94\xec\x8b\x82\x71\x41\xe7\x4a\xa1\xf7\xb8\x5d\xaa\x3f\xc6\xe4\x51\x77\xf2\xcb\x23\x9d\x4d\x3f\x15\xae\xf9\xb1\xe9\xf7\x70\x78\x8f\x62\xcb\xf7\x6f\x89\xd2\x0d\x72\x7f\x2b\x5f\x34\x8c\x8c\x2a\x4c\x96\x9e\x21\xf7\x7c\xbb\x30\x94\xfb\x33\xfb\x2c\xff\xfb\x7d\x5e\x7c\x49\x9f\x61\x88\x5e\x5a\x58\xfb\x26\xfa\x97\xfa\xfa\xfc\x39\xab\xb0\x8e\x23\x8a\xc9\x75\x18\xda\xf2\x10\x11\x6f\x7e\xfd\x25\xdd\xcd\x50\x72\x38\xec\x0e\x87\x2d\x0e\xc3\x13\x93\x68\xdc\xcc\xa3\xed\xac\x9d\xb6\x3c\xee\x5a\x7d\x52\x4f\xe2\x43\xb3\xde\xe7\x02\x7f\x0d\x36\x9c\xdb\xc3\xa1\x6f\xb7\x9c\xe6\x2e\x0e\x07\xd4\x97\x9c\xc2\x23\x3b\x76\xfb\x8b\xf6\xc7\xd1\x0a\xd9\x0a\xf3\xf5\x82\xd8\xb1\x00\x47\x35\x5f\x7f\x09\x50\x94\x93\xd4\x7c\xa1\x68\xcb\xab\x63\xf1\x77\x3a\xec\x49\xcd\x12\x65\x8c\x18\xb5\x49\x54\x07\x90\xa9\x8e\x44\xa8\xb9\xa5\xa1\xfd\xd1\x86\x5a\xb1\x3b\x6e\x69\x65\xc5\xba\xa2\x75\xdc\x52\x61\xa9\x2a\x34\xc2\xa5\xd4\x5b\x70\xa7\x1b\x6c\xc6\x90\xb9\xa5\xc9\x0d\x54\x39\x8b\xcf\x1b\x15\xcc\x9c\xc2\xd0\x94\xdc\x32\x88\xa7\xf2\xdb\x9f\x80\xfb\x35\xfb\x13\x30\x7e\xa8\xfa\xfb\xe3\x16\x2f\xe9\x57\x73\xb1\x98\xc9\x7f\xe0\x05\x51\x06\x8f\x8c\x9a\xea\xe7\x52\x74\xb8\x8e\x84\x7a\xb4\xde\xef\xb3\x60\x59\x2c\xd8\x52\xbd\x0f\xd5\xa7\xf4\x43\x7d\x42\xbc\xd9\xba\x6f\xda\xd7\x50\xbe\x84\xac\x9f\x6f\x19\xd7\x6f\x72\x5c\xbf\x75\x8f\xeb\xa2\x1e\x97\x63\xe9\xda\x36\x6d\x6d\x7b\x79\xf2\x8e\xa8\x04\xdc\x09\xb7\xc2\x9d\x08\x05\x92\xaa\xde\xee\x8e\xcb\x3b\xdc\x71\x79\x23\xe6\x4a\x1d\x9f\xa0\xe1\xa4\xdb\x1d\xc3\x4b\xb8\xce\xb1\x9e\xd5\x83\x05\xb0\x7a\x89\x11\x62\x45\x3c\x21\xe2\xb6\xa0\x5d\xa2\x1d\xe6\x6b\x6b\x13\x3d\xaf\xda\xab\x41\xd0\x0b\x06\x4f\x88\x70\x5c\x20\x53\xf2\x06\xbb\x41\x67\x20\x02\xc1\xcf\xc0\x41\xed\x71\xd5\xb0\x1a\xfe\x54\x48\x89\x74\x19\x5d\x29\x5f\x2d\xcf\xba\xf8\xf3\x57\xa8\x8e\x1b\xc1\xeb\xb8\x11\x7f\x7e\x81\x3a\xc2\x46\xfc\x37\xd7\xe7\xa4\x63\x7d\x9e\x11\xd1\x74\x6a\xee\x06\x3f\x11\x23\x11\x9f\x2b\xbf\x80\xe1\x44\x82\x78\xfd\x60\x38\x09\xc3\x9b\x63\xa1\x1a\x9e\xa3\x35\xae\xc8\x8d\x1b\x6f\x27\x25\x7f\x38\xa1\x73\x62\xf2\x14\x57\x66\xa1\x1c\x7b\xed\xcf\x74\x7c\x4e\xd5\x75\xae\x76\x65\x06\x5f\x67\x0d\x6a\xcf\xcd\x4b\x81\x3a\x01\x4f\x67\x09\xea\x5d\xc3\x67\x7a\xe5\xf8\x48\x2f\x5b\xee\xce\xa9\x8a\xd2\x6e\xbc\x98\xbd\x05\x20\x2d\x67\x68\x75\xa6\x16\xb8\x43\xba\x6a\x5e\x31\xb3\x19\x53\x97\xc3\x9a\xc0\xc2\x1d\xb1\x23\x31\x54\xa8\x24\x52\x8a\x91\x42\xff\xe6\xfe\x18\xb7\xd4\x30\x2f\xe3\xb2\x34\xcf\x16\xca\x51\xf6\x72\xfd\x17\xda\xe8\xa5\xbc\xe7\x42\xb5\x1f\xdc\xba\x5b\x32\xb9\x5b\xf6\xa4\x19\x76\xbf\xe6\x02\xc0\x45\x5b\x3b\x57\xe9\xfd\x62\x9c\x7e\x85\x9c\x2e\xa5\x6b\xbb\x15\x6a\xff\xdf\xfe\xb8\x22\xf2\x5c\x3d\x47\x1b\xeb\xee\xac\x7d\xb5\x77\x5d\xd6\xc1\x5e\xf7\x7d\x68\x13\x39\x7c\xc6\xc4\x52\x8d\x53\x46\x52\x1d\x72\x17\xe3\x0a\x6d\xb4\x3f\xb5\x09\xfd\xb4\xfa\x54\xe3\xa6\x9d\xb5\xd3\x8e\x6e\xa6\x22\x4b\x5c\xb9\xae\x00\x1d\xb4\xe1\x23\xd0\x06\xeb\x45\xd0\x51\xe2\x1d\x94\xa8\x9d\x0b\x3a\x8a\xbc\x80\x22\x5d\xde\x02\x5d\x23\x3d\xeb\x88\xc0\xa1\x1b\xb0\x57\x51\x5d\xf5\xae\x58\x23\xb0\xae\xac\xa3\x1c\x22\x3a\xc6\xf4\x0c\xb2\x5b\x1d\xad\x89\x65\xc3\x7d\xf6\xbb\xaa\x1e\xb3\xb6\x21\xc8\x13\xf5\xa2\xde\x57\x15\x21\x9f\xf9\xa4\xde\x8f\x98\xe4\x9d\xe1\x6d\xcd\xab\xfd\xfa\xc5\xfe\x55\x5e\x90\x94\xe6\xb3\xfa\x13\x05\x05\x8b\x13\x61\x1e\x33\x0d\x70\xf4\xdd\x78\x32\xfe\x86\xc4\x9d\xa5\x76\x79\x21\xe2\x4c\x17\xfa\x8e\x94\x9d\x85\x56\x45\xbc\x76\xda\xfa\x9e\x24\x9d\xc5\xd4\x24\xde\x6d\xf3\x25\xd3\x25\x7f\x20\x59\x77\xaf\x45\xbe\x4a\x33\x56\xa8\x62\x93\x6f\xc9\xfe\x58\xb1\x8b\x74\x69\x8a\x8d\x7f\x24\xbb\xce\x62\xf0\x1c\xf3\x95\x1e\xdd\x64\x4c\x56\xdd\x93\xc8\x8b\xcb\xb8\x58\xbe\x93\x88\x4a\x95\xbc\x4b\x96\xdd\xf3\xd8\x97\x3b\xc6\x4b\x3d\x89\xc9\x37\x64\x73\x6b\xb1\x77\x10\xa0\x07\xca\xde\x1d\x93\xf3\xce\xb2\x5b\xb6\xcd\x75\x73\xf7\xc8\xb6\xb3\x48\x16\x7f\xbc\xd6\x45\xbe\x9b\xe6\xee\x02\xdb\x19\xec\xf9\x32\x96\xeb\x20\x17\x8c\x74\x16\x29\x58\xb9\xcb\xe1\x29\xd1\x23\x05\xca\x24\xdf\x31\x1d\x2e\xf8\xf4\x73\x36\x58\x2a\x58\x11\x8b\xbc\xa8\x95\x7f\x6b\xf7\x0d\x19\x41\xd9\x48\xbf\xb7\x40\x38\x0d\x36\x42\xec\xca\xe8\xce\x1d\xe8\xec\x8f\x72\x94\x17\xeb\x3b\xcb\x3c\x29\xef\x30\x89\xa3\x87\x4b\x96\xe4\x4b\x56\x8c\x36\x62\x9b\xcd\x52\x7e\x21\xb1\x23\x17\x34\x18\x08\x52\xd0\xc9\xb4\xb8\xdf\x7c\x2e\x45\xbd\x8b\x32\xa0\x41\x18\x17\xeb\x72\xbe\xa0\xc1\x80\x71\xd9\xc6\x9b\x57\x4f\xeb\x07\x4e\xdd\x37\x53\x2c\x56\xb7\xe3\xa2\xc1\x69\xca\xd3\x55\xca\x96\xbd\x57\x72\x58\x3d\x18\x4b\xef\x7f\x05\x03\x31\x08\xa6\xbd\x8b\xb4\x4c\x45\x2f\x18\xf0\x41\xd0\x5b\xe5\x45\x4f\x6c\x58\x6f\xb5\xcf\xb2\x9e\xae\x2e\xc9\xc8\x1e\xa2\x67\xb2\x1e\xcf\xf9\x70\x6b\x1a\x5b\xb2\x8b\x9e\xa3\x40\x84\xca\x50\x11\xda\x2f\x41\x3d\x6c\xde\x86\x88\xb3\xde\x86\x65\xbb\xd5\x3e\xeb\x5d\xc6\x05\x4f\xf9\xba\x1c\xf5\x02\xc2\x40\xe1\x7f\x41\x6f\xc0\x75\x86\x0b\xd7\xbe\xcd\xbe\xde\x32\xa9\x08\xe3\x1f\xf6\x6c\xcf\x7e\xca\x8b\x44\x3f\x54\xee\x96\xb3\xf9\xaf\xd8\x2e\x8b\x13\xf5\x2c\x55\x67\x01\x63\xf9\xee\x65\x56\xe4\x9a\xde\x38\xca\xdd\x87\x06\x33\xd5\x96\xca\x54\x7b\x56\xea\x93\x46\x85\x89\x4a\xb9\x2a\xe9\xb5\x6b\xac\x5e\x50\x7e\x38\x5c\xb8\x6f\x3b\xb9\xaf\x51\x7d\xfc\xef\xb7\xfc\xb0\x76\x9b\x06\x03\xac\x38\xa9\x1f\xba\xa5\x37\x15\x71\xf3\xcb\xee\x18\xe2\xe9\x0a\x99\x47\x45\xfb\xee\xa3\xa2\x5d\x8f\x27\x33\x13\x4c\x94\x69\x7e\x63\x8d\x14\xb7\xf1\xc3\x3d\xac\x6d\xe5\xf5\xf0\x46\x0d\x10\xab\x37\x1d\xe4\x7c\x03\x33\x8e\x00\xfb\xe3\x5b\xd5\xcb\xe9\x09\x55\x5d\xcd\x3a\x4b\x6f\x5a\x0e\x9c\xfa\xb2\xe9\x4b\xe7\x49\x66\xa7\x1b\x38\xea\xef\xe8\x47\x27\x57\x32\x4d\x97\xd3\x77\x23\xe7\x69\x66\xfa\x91\x14\xe8\x9d\x3b\x3c\x4c\xde\x8d\xd2\xf2\xe5\xbe\x60\x0d\x28\xf7\xc7\xd0\xe4\x0b\x7a\xa3\xf9\x10\x6d\x7c\x7e\x46\x6f\x0c\x4a\xd4\x29\x57\xcd\x22\xcf\x8d\x35\x4f\x0d\x04\x3f\xb4\x37\x79\x06\xf7\x7d\x51\x1f\x1e\xc0\x95\x7f\xde\xbd\x2b\x59\x66\x7e\xe5\xfb\x22\x81\x37\xa2\xbd\xe7\x81\x1c\x6d\x3d\xc9\xe5\x26\x88\xd5\xcb\x11\x25\xfc\x31\xe1\x5b\xfb\x54\x60\x89\xb5\xc0\x24\xbb\x76\xdd\x96\x5b\x2d\x0c\x51\xa9\x7e\x39\xc1\xb5\xe1\x96\x3a\x0c\x51\x4c\x83\x60\x00\x1f\x52\x8c\x7a\xae\x1f\xec\x20\x05\x0e\xc3\xfe\xb3\x66\x64\x72\x99\x8a\x72\x70\x74\x07\x5c\xa4\x62\xbc\x37\xb1\xda\xf0\xae\x1c\xd4\x04\x5e\x0b\xcd\xad\xf7\x05\xe5\xff\x37\x7b\xff\xde\xdc\xb6\xcd\x05\x88\xc3\x5f\x45\xe2\x64\x38\xc4\x1a\x56\x25\x3b\xcd\x85\x0a\xaa\xcd\xcd\x6d\xda\x38\x37\x27\x4d\x53\x55\xeb\xa1\x25\x58\x66\x43\x01\x2a\x08\xd9\x71\x2c\xbd\x9f\xfd\x1d\x9c\x03\x80\x20\x45\x39\xe9\xf3\xec\xee\xec\x1f\xbf\x19\x8f\x05\x02\x20\x78\x70\x70\x3b\x38\x57\x88\xed\xd7\x31\x45\x8f\xa6\xd5\x16\x5b\x60\xf0\xa6\x64\x4a\xe8\x8a\xf5\x87\xab\x47\xd3\xe1\x6a\x6f\x8f\x14\xe3\x55\x18\x2d\x6a\xb5\x77\x30\x19\x06\x8d\x15\x9b\xfc\x3c\x81\x40\x51\xa1\xe2\x74\x85\x81\x29\x6b\x94\xf8\x1b\x82\x01\xdf\xf5\x62\x1a\xec\xa8\x37\x77\xee\xe0\xaa\x48\x73\xf4\x14\x8c\x37\xfa\x0c\x46\xaa\xa4\xc8\x30\x97\xf4\x54\x5e\x09\xae\xd2\x2f\x8e\x4a\xdd\x34\x82\x2b\x59\x69\x5d\x5b\x58\xdf\x2a\x4c\x1d\xef\xb9\x8f\x31\xc6\x72\x14\x8b\xb2\x1f\xfe\xfa\x61\xef\x87\x39\x7d\xca\xc6\x93\x46\xc4\x22\x6f\xd9\xf0\xd4\x62\xd8\x69\xac\x3f\xed\x2d\xe5\x32\xf1\x67\x82\xb4\x4a\xdc\x8c\x53\x69\x46\xf4\x8d\xe2\xe7\xf9\x17\xa6\xa9\x04\x55\x38\x26\xa8\xf4\x3b\x91\x82\x34\xc6\x1a\x91\x56\x6c\x7b\x83\xaf\x63\xcf\xf1\xe5\x54\x03\x45\x97\x0a\x6a\x5f\x4c\x15\x85\xd7\xd2\xfe\xa6\x11\x23\xc9\xa9\x90\xbb\xc0\x70\x15\x00\x36\x03\x61\xc0\xb4\x03\xc3\x3f\x22\x24\x83\xfe\x4f\xae\x8f\x71\xfc\xd4\xdf\x42\x2a\xc9\x5c\xe3\x7a\xe5\x34\xb6\xfb\x69\x65\xd3\x90\xd8\xd8\xc1\x88\xa4\xd2\x87\x9d\x1a\x06\x62\xc0\x2e\x63\x65\x1c\x47\x67\x52\x16\x3c\x83\x1d\xb1\x5c\xaf\x13\x04\xc7\x4d\xeb\xee\xa0\x72\x8d\xcc\x34\x99\x9a\x9d\x01\x66\xb0\x55\xcd\x2a\x51\x35\xcb\x85\x11\x03\xa5\x06\xe7\xa5\x26\x85\xda\x95\x30\xdf\xcd\x87\xd4\xbe\xab\xfd\x04\xb0\xfa\x5d\x39\xea\x44\x64\xf0\xe2\xc6\x4c\xee\x29\xf1\x46\x25\xd2\x6c\xb3\x10\x34\x75\x14\xf5\xa2\xbd\x27\x89\xa6\x7d\x92\x0a\x42\x07\x18\xf4\xb3\x6f\x68\x13\x5f\x9e\x8a\xbd\x28\x8d\x68\x3d\x24\x9a\x26\xa4\x5a\x70\xfd\x61\xf1\xc8\x31\x7a\x87\x85\x0b\x00\xbb\x62\x62\xef\x89\xd9\x29\xc6\xc5\x84\x16\x64\x38\xdd\x63\x3c\x29\xe9\x0a\x70\xb9\x71\x6b\xd7\xe1\x63\xbd\xde\x3e\x65\xf4\x68\x05\x18\x4c\x57\x6d\xa4\x57\xb2\x62\xc7\x71\xac\xc7\xc7\x93\xf5\x5a\x8f\xa3\xff\xf9\x3f\x1d\xed\x15\x4d\xc8\x68\x65\xbd\x33\xb6\x50\x6c\x2b\x80\x5c\xb3\x95\xdd\x9b\x08\x35\x3d\xe8\xc2\x9e\x26\xf8\x17\x9d\x10\xd2\x9b\x49\xc1\x87\x04\x21\x66\xa5\xf5\x60\x68\x3b\x44\x4d\x0f\xa1\x13\x7e\x03\x0a\x96\x67\x69\x4f\x3e\x05\xfb\x20\x75\x07\xe0\xe1\x80\xd0\x68\x8c\xd5\xec\x0d\x7a\x82\x71\x46\xed\xbb\xa0\x07\x81\x42\xf1\x9b\x68\xaf\x61\x77\xf2\xb7\xcc\x45\x12\xd1\x4e\x44\xf6\xa2\x4d\x94\x2a\x1a\x55\xd7\xf1\xe9\x26\xe1\x34\x8a\xd0\x54\xc4\xcf\xda\x27\xa1\xf6\xc0\x37\x76\x0f\x7b\x64\x9b\xaf\x8d\xb6\xb9\x95\x37\x11\x8b\xd2\x88\xf5\x23\x1a\xa5\x26\x71\x10\x39\x8e\x64\x74\x27\xda\x4b\xa2\x68\x0f\x4c\x7b\x80\x94\x4a\x7e\x18\xb3\x74\xf2\xc3\x9c\xb6\x19\x33\xe9\x31\x9f\xc0\x6d\x1b\xbe\x44\x52\xdd\xd3\xce\x5a\xf0\xf0\x5e\x00\xfa\x1b\x04\x1d\xd7\x37\x8e\x91\x5f\xdf\x54\xbb\xc5\xbd\xb7\x17\xbc\xf2\xae\xa9\xf4\x8f\x3b\x07\x68\xfd\xfb\x6d\x63\xc8\xd9\xb7\xdb\xa4\x5b\x91\xff\xfe\x48\x38\x55\x54\xb4\x76\x89\x6f\x08\xba\x09\x85\xd8\xeb\x89\xd9\xb0\x41\xb6\xdf\xa6\xc2\xb1\x7d\x1e\xa0\xbe\x26\xb0\x79\xe1\x50\xe0\xc8\x5f\x82\x83\xc1\xda\x39\xbb\xe3\x81\xf7\x30\xb1\x31\x83\x2d\xf7\x92\x2e\xf4\x6b\xbd\x86\x38\x91\x9f\xf9\x35\x04\x78\x37\xe3\x17\x45\x69\xe2\x14\xc5\xaa\x61\xf9\x87\x46\x77\xe2\x1f\xcc\xec\x31\xff\x04\x21\x54\xb9\xbd\x30\xc0\xe2\x1f\x55\x9c\x74\xeb\xc1\x91\x45\x91\x8d\x73\x23\x20\xf2\x89\x69\x5a\xec\x68\x96\x9a\xbd\xf4\x1d\xd5\xec\x73\xa2\x69\x0e\x8d\x10\xfa\xb1\x16\x82\xf4\xef\x2a\x2c\xac\x3b\xee\x82\x2d\xb1\x49\x33\x1e\x1e\x0c\x2a\xb9\x3e\x92\xfe\x2f\xd8\xcd\x53\x17\x92\xff\x66\x91\x2d\xd3\x26\x77\xc0\xb7\x56\x19\x31\x58\x26\xc1\xd8\x07\x9e\xb4\x03\x6a\xb6\x07\x50\x2f\x50\x1b\x6a\x75\x7f\xbe\xab\x39\xd3\xcd\x37\xd0\x4d\x8c\xb7\xe5\xda\xb1\x9d\xb5\xa7\x59\xcb\x64\x31\x2f\xb6\x39\xf9\x33\xa4\x1e\xc1\x30\xf7\x1b\xaa\x25\x4c\xbc\x16\x9d\x96\x7a\x07\x34\x7e\x78\xd7\xa4\xa4\x7a\x43\xa5\x28\xea\xed\xe4\xe7\x49\xf7\xa4\x0a\x02\xef\xf0\x3c\xb8\x7b\x18\xe2\x79\x43\x31\x8a\xe0\x3b\x7e\xbe\x7d\xbb\xaa\x13\xa8\x1b\xea\xc9\xdc\xf4\x31\x35\xb4\x6f\xf5\xfc\xd5\x36\xf3\xd4\x1e\xf3\xad\x5a\x4d\x8d\xd8\x59\x28\xc2\x4e\x38\xab\xd6\xca\x92\x9e\x4e\xb3\x62\xba\x2a\x3c\x8b\x68\xf6\x24\xd7\x65\xaa\xe9\xa9\x05\xc5\x3a\x9b\xad\x3f\x1f\x98\x0c\x7d\xa1\x78\x36\x43\x97\x17\x7d\xfa\xc6\x72\x47\xf0\x60\x78\x2a\x45\xb9\x5a\xd8\xa7\x0d\xe9\xb9\xd2\xe0\xd3\x2b\x7a\xea\x68\x14\xbe\xa1\xbc\xe7\x5e\x61\x1c\x26\xcc\x55\xa6\x66\x35\x1c\xf1\xed\x95\x7e\x4e\xd1\xa0\x38\x35\x68\x2d\xb2\xaf\xd7\xb7\xd6\x5e\xd0\x53\x73\xb7\x30\xa0\x63\xc8\xc5\x74\x7f\x40\x4f\x2d\x0d\x65\x11\xbe\xe0\x0b\xd9\x8a\xcb\xaa\x99\x33\x47\x6e\x4e\xe5\x62\x99\x29\x9e\x06\x7a\x17\x70\x9a\xea\xcd\x86\x06\x2a\x3a\xed\x43\xf3\x77\x42\x6a\x7a\x3c\x18\x71\xca\xe4\xdc\x36\xa0\xee\x2d\xac\x53\xbd\x84\x12\xdb\x5b\xdf\xc1\x2a\xd5\x2b\x2f\x16\x4b\x73\x9c\xe7\x97\x1c\xdd\xff\x6e\x2d\xce\xfa\xeb\xcd\xea\xb6\x16\x34\xf5\x8c\x9f\xad\xe6\x38\x4f\x6a\xd7\xfc\x55\xc9\x5f\x66\xd7\x72\xa5\xbf\x03\xbc\xb0\x62\x05\xe4\xf1\xae\xe1\x70\xaf\x99\x0a\x55\xf5\x36\x15\xbf\xed\xae\x38\x0d\xa5\xa0\x07\xed\x13\xad\x7a\xe1\x1c\x2c\x0b\x5d\x8c\xed\x5b\xaa\xe2\x65\xdb\x54\x3e\xb2\x5c\xca\xb4\x34\x4b\x03\xf8\x8b\x69\x41\x4f\x80\x29\x09\x01\xad\xa7\xf4\xc4\xdd\x4f\x67\x74\x25\x4a\x9d\x9d\x15\xfc\xd4\xe5\xbd\xcc\x4b\x9d\x5e\xd0\x5a\xc4\xd1\xf4\x39\x0d\xed\xb0\x77\x6f\xa7\x8c\xaf\xd7\x95\x48\xa6\xb1\x1f\x1d\xdc\xbb\x4f\x9c\xe3\x37\xc9\x14\xe8\x7b\x5a\x75\x31\x9a\xd9\x30\xb3\x25\xc3\xc3\xd2\x5c\xcb\xf0\x64\x0c\xef\xad\xe6\x43\xbb\xae\xac\x74\xca\xfc\x5d\xeb\x1b\xd7\x57\x3c\xa0\xc1\x81\xbf\xb9\x7a\xd7\xaf\x7f\x40\xf8\xb6\x94\x0c\x0d\x71\xb9\x02\x3b\xe6\xea\xf6\xbb\x6a\xbd\xfd\xae\xf0\xf6\xbb\x9a\x04\x9a\x51\xe3\x55\x68\x1e\x5c\x8c\xcc\xb5\x35\x35\xb9\xa8\xec\xba\xba\xe5\x72\xbc\xda\x75\x39\x5e\x91\x1b\x77\x29\x5e\x91\xa1\x23\xdb\x97\xac\x3f\x5c\x3e\x5a\x0d\x97\x70\x39\x5e\x86\x97\xe3\xe5\xd6\xe5\xf8\xdb\x24\xcc\x8e\x7b\xed\xd4\x9f\x27\x47\x99\xd9\xdc\xda\x4e\xb6\xe7\xbd\xb3\x5c\xcc\xf0\x38\xe5\x95\x53\x00\x8c\xaa\xc6\xcd\x51\x96\x97\xbf\x67\x45\x3e\x73\xf3\xea\x84\x5e\x72\x55\x42\x08\xd7\xc1\xbd\xde\xa0\xdf\x3b\x88\xaa\x09\x6a\xe8\x68\x37\x49\x9f\x4a\x71\x9e\xcf\xd3\x36\x65\xb4\xf7\x9e\x21\x3d\xac\x92\x6c\x6b\xab\x1c\x6a\x75\x7d\xc3\x13\xb2\x39\xcf\x45\x56\x14\xd7\x37\x41\x65\xb1\xd9\xd0\xd3\xd3\x93\xe7\x4f\xdf\x3d\x7f\x7f\xfa\xe2\xd5\xfb\xe7\xef\x5e\x3d\x7e\x79\x72\xfa\xec\xf5\xe9\xab\xd7\xef\x4f\x3f\x9c\x3c\x3f\x7d\xfd\xee\xf4\xd3\xeb\x0f\xa7\x1f\x5f\xbc\x7c\x79\xfa\xe4\xf9\xe9\xd1\x8b\x77\xcf\x9f\xa5\x37\xc8\x20\xc2\x29\xf8\x2c\x2f\x97\x99\x9e\x5e\x70\x95\xbe\xa6\x61\xc1\x13\x93\x6b\xe1\x7f\x5f\x2b\x79\x8d\x0c\x03\xfa\xa2\x3c\x91\x0b\xfe\x0e\x0e\x18\x34\x15\x16\xf3\xd4\x1f\xd0\xdd\xc1\x86\x62\x48\x5d\xf0\xb8\xf4\xc1\xdb\x80\xa7\x2f\x36\xf4\x17\xf6\x21\x8e\x5f\xac\xd7\x1f\x86\xbc\xc7\xbf\x2c\xa5\xd2\x25\xfb\xc5\x4d\xe3\xf5\xfa\x97\xcd\xf7\x89\x5d\x20\xd4\x39\x4a\x5f\x72\x26\x92\x41\xff\x30\x30\x4f\xca\xfe\x3f\xbe\xf7\xff\x3e\xbe\xb7\x21\xdd\x94\xdd\x27\x33\xb7\x4f\x1e\xdc\x27\xb8\x4b\x22\xe7\x8e\x4e\x6b\x7c\xe9\x22\x81\x7d\xb0\xf4\xf7\x74\x0e\x7c\x2c\xb7\xe8\x30\xa8\x20\x0b\x0c\x45\x40\x54\xdc\x4d\xf6\x07\x8f\x04\x69\x7c\xea\xe1\x3d\xd8\x91\x4d\xf9\x72\x2c\x26\x48\x4a\xea\x1e\xff\xa2\x55\x36\xd5\x60\x54\x59\x36\x5f\xc1\x4d\xdc\x7d\x1c\x98\x68\xe6\x5d\xa6\x41\xa3\x19\xb4\x79\x40\xda\xe7\x78\x4f\x2e\xe2\x3f\x13\x63\x35\xa1\x05\xd3\x74\xc6\x60\x57\x3f\x6f\xee\x9b\xb3\x2d\xf0\x1e\x12\x3a\x23\xc3\xf3\xf1\x6c\xc2\x72\xc0\xc8\x05\xcb\x7b\xcb\x8b\xac\xe4\xb3\x77\x7c\x9e\x97\x5a\x81\x81\xd4\xab\x6c\xc1\x41\x0b\xfe\x02\x67\xa6\x34\x40\x5d\x90\x8b\xe6\x07\x24\x89\xe3\x55\x72\x31\x96\x13\x5a\x98\x86\x25\xeb\xf6\x2d\xc3\xa2\xa7\x1a\xed\x8d\x92\x55\xb2\x9d\x0b\xef\x51\xf3\x1e\x49\xa5\xe5\xfc\x74\x65\x13\xec\x07\x84\x2a\xca\xc9\x66\x13\xb0\xbe\x56\xc1\x61\x39\x1b\xf3\x49\xe3\x9d\x41\xbf\x0f\x78\x35\x45\x4c\xd3\x0b\xf8\x09\xb0\x39\x16\x93\xde\x8c\x2f\xcd\xa6\x20\xa6\x39\xc7\xf8\xf2\x4b\x36\x9e\xd0\x73\x76\xb3\xa1\x33\xf3\xef\xa2\x36\x4f\xce\xaa\x5b\x1f\xcd\x69\x46\x4b\x6a\xe7\x88\x3d\x33\x42\x09\x41\x91\x4f\x6d\x08\x66\xbf\x96\xe8\x21\x81\x3d\x52\xdb\x08\xfb\x82\x16\x64\x33\x35\x9b\x57\xb2\xb2\xbc\x79\x29\x10\xf6\x15\xd9\x00\x38\x0b\xd6\x1d\xd0\x63\x9c\xb3\x73\x93\xbe\xc4\xf4\x35\xbb\xb1\x55\x6b\x87\xc4\x82\x75\xfb\xf4\x98\xf1\xcd\xb6\xd0\xa5\x0e\x74\xd8\xee\x99\x05\xe7\x9a\x7a\x48\xf1\x04\xbd\xc2\xf2\xaf\xf8\x73\x8a\x3c\x6f\xdf\xee\xeb\x26\x23\x01\x43\x7a\x46\x36\x4c\xf7\x3e\x20\x3a\x1a\x72\x47\x41\xa0\x6e\x18\x3b\x4d\x04\x69\x6c\x99\x16\xb4\x92\x4e\x69\x01\x83\xf9\xd8\x42\x04\xe2\x88\x0a\x28\xba\xc0\xd5\xb4\x68\x0e\xf4\xc3\x07\x76\x75\xaf\xd8\xf1\xb0\x86\xb2\xf5\x3a\x01\x37\xf2\x97\xcc\x60\x34\x51\x54\x5b\x3a\x86\x72\x43\xb4\xd4\x41\x83\x7b\x83\xef\xdf\x7b\x2f\xd3\x41\x42\x4c\x37\xbe\x7a\xd8\x27\x35\x1f\xc0\x8c\xf1\x91\x4e\xb7\x78\x22\x4d\x5e\xe0\x28\xe1\xc0\x4f\xb0\x5d\x34\xdf\xa0\x9c\xa4\x36\x37\xc1\xa7\xad\x97\xc6\x7c\xd2\x9b\x4a\x31\xcd\x74\xa2\x49\x3a\xe6\x34\xf4\x4a\xf0\xc5\x8d\xc4\xd6\xc7\xb9\x37\xd5\x31\xe5\x29\x8f\x63\x8d\x73\x52\x98\xb5\x64\x30\xf6\xaa\x31\xaa\x2f\xed\xed\x37\xb0\x0f\x39\x9d\xd9\x83\xd7\x19\x83\x97\x60\x27\xe3\xb3\x5f\x18\x72\x42\x4c\x71\xbb\xd8\xc9\xfa\x54\xac\x3f\x54\x9e\xf5\x69\x7d\x7b\x99\x6d\x24\x43\x8b\xcc\x13\x2d\x97\x4b\x3e\x4b\x08\x1c\x50\x30\xb9\xc0\xab\x0d\x1c\x40\x18\x64\x30\x8e\xdd\x9c\x1b\xb6\x41\xe5\x18\xda\xdb\x80\xb9\x92\xbc\x7c\x63\x88\x21\x53\x5f\x27\x64\xbd\xe6\xa1\x9c\xaa\xa7\x78\xc1\xb3\x12\x28\xfe\x4d\x28\x04\xf2\x73\xc0\x06\x9a\x7d\xc5\xde\x27\xaf\x20\x1e\x2f\x67\xaf\xe8\x2b\xdb\x38\xd4\x32\x23\xf1\x92\xd0\x57\xcd\xdd\xeb\x47\x02\x27\xc2\xdc\xe6\x73\x76\x59\x5b\xcd\x1c\x17\xfb\x09\xbb\xc9\xc5\xdf\xdc\x9e\x12\x6f\x8a\xd5\x3c\x17\xaf\x21\xb2\x7f\x83\x35\xd1\x3c\x40\x06\xfd\x01\x21\xc3\xf2\xb6\x4d\x88\x13\x5a\x24\x64\x43\xb7\x3e\x50\x3e\xb9\x36\xbb\x70\xab\xee\x5d\x77\x00\x87\x92\x75\x75\x01\x41\x25\x1b\xdb\xbf\x26\x7e\xfd\x8f\xf5\x04\xb6\xee\xad\x98\xba\x9a\xac\xd7\xd3\xb1\x9e\x74\x19\x43\x51\x8a\x79\xd8\xea\xc1\x01\xc4\x38\x37\x45\x4c\x51\xf0\x02\xb9\x11\x71\x6c\x60\x0e\xf6\xb2\x7f\x42\xb2\xd4\x6a\xc3\xbc\x92\x33\x5e\x33\xd7\x82\xd5\x68\x09\xaf\xab\x04\xd5\xba\xba\xaa\x56\x28\x98\x32\xe0\x72\x2f\x13\xb0\xf2\x04\xa7\x56\x96\x86\x4f\x4f\xb3\xa5\x5e\x29\xee\x33\x9f\xc9\xd5\x99\x8d\x8f\xd6\x96\xd7\xac\x5e\x45\xed\xd8\xca\x69\xad\x0a\x1a\x6e\x5b\x39\xad\x55\x3f\x2c\x9b\xcf\xbe\x5a\xa2\x58\x57\xf9\xf8\x13\x64\xbd\x36\x19\x89\x8b\x78\xc7\x18\x4b\xb8\xdd\xb2\xc9\x7a\x8d\x51\x8f\x23\xbc\x6c\x5a\x63\x1d\xf7\xa4\xf9\x17\x9d\x29\x9e\xc1\x33\xcc\xf9\xae\x42\xe9\x4a\x87\x7b\xc3\x45\xf0\x7f\x09\xbb\x46\x88\x65\x0c\x99\xd9\x26\xfc\x16\x4d\xfa\xec\x70\x40\xa8\xa6\xbe\xd4\xef\xab\xb0\x2e\x9e\x32\xd5\xfb\xf7\x97\x87\xe1\xd3\xad\xe0\xce\xed\xb7\x89\xc8\x60\xe7\x69\xaf\xbd\xb0\x21\x67\x26\xf4\xf6\x56\x83\xab\x48\x4b\xb3\x41\x69\x53\xa2\x8d\xe7\xd7\x67\xf6\xc3\xff\x4a\x7a\xff\x83\x8c\xff\xfa\xeb\xaf\x1f\x26\x3f\xd0\x8f\xdf\xab\xa8\xf5\x8c\x7d\xfc\x0e\x45\xad\x27\xad\xb5\x1a\x8a\x5a\x6f\x5a\x2b\x6d\x29\x6a\xbd\x6b\xad\xd6\xa6\xa8\xf5\x47\xfb\x57\x9b\x8a\x5a\x7f\xef\xaa\x56\x57\xd4\x7a\xd1\x5a\xad\xa9\xa8\xf5\x61\x57\x2d\x3b\x9a\x01\x84\x83\x01\xfd\xa5\xbd\xcb\x2d\x6a\x5d\x47\xed\xbd\x6e\xaa\x75\xfd\x7e\x6b\xb5\xba\x5a\xd7\xa7\xd6\xba\x35\xb5\xae\x9f\x5b\xab\xd4\xd4\xba\x3e\x7e\x5b\xad\xab\xb5\x4a\xa8\xd6\xd5\x5a\x21\x54\xeb\xfa\xed\x3f\x53\xeb\x7a\xbb\xe5\xe7\x0b\x76\x96\x6d\x4d\x19\x64\x24\xb4\xc9\x2f\x39\xfb\x2d\x8e\xf9\xf8\xb7\xc9\x7a\xcd\x9b\xf2\x4b\xbb\x82\xfc\xe7\xee\x04\x47\x76\x20\x8e\x70\x5b\x52\x6b\x64\x7f\x2f\xb3\x30\x5b\xe6\xb2\xc8\xe0\x4c\x34\x04\x82\x80\x5f\xff\xae\x15\x38\xb7\xbd\xe9\xdc\x86\x70\x2b\x56\x7e\x93\x5a\xd1\x9f\xe3\x1e\x46\x68\x5b\xfe\xc4\xe5\xbf\xc1\x75\x87\xb9\x7f\xf8\x5c\xb7\x2e\x30\xff\x9d\xcb\xaf\xb8\x8d\xb6\xe4\xc8\x97\xb8\xd9\x87\xf9\xbf\x37\xf3\x0d\x81\x14\x6d\xea\xa2\x57\x0f\xbd\x03\xba\x29\x14\x7f\xe1\x5a\xb1\xfc\x69\xcf\xd2\xb7\x5f\xf9\xbb\x59\xee\xa4\x02\xb6\xfc\x97\xd4\x91\x8f\xc8\xd6\xf7\xac\x2a\xa6\xeb\x28\xd6\x16\xc5\x51\x44\x1b\xc8\x4f\x22\x98\x1b\xa3\xe8\xc8\x4b\x10\x12\xe0\x30\x90\x28\x0d\xf2\x22\x82\x5f\xfc\x64\x21\x32\xe3\x8f\x07\x1b\xe6\xff\x9c\x9a\x83\x89\x0d\x40\xee\x67\xa5\x05\x23\xde\x0b\x85\x05\xa4\x7a\xd3\x9b\xd1\xd7\xe7\xd4\xaf\x15\x41\x1c\x45\xc3\x99\xbc\xf1\xa4\x03\xef\xe9\x6c\x6e\x91\x76\x88\x9a\x04\x77\xf1\xe7\x1e\xfe\xdc\xc7\x9f\x41\x1f\x7f\x1f\xa6\xd6\x4d\x58\xb4\x75\x8a\xba\x8b\xd4\xe9\x8c\x9f\xad\xe6\xc0\xbb\x02\xb1\x2c\x3e\x9f\x80\x8a\x12\xcd\x59\xd5\x3f\x81\xe4\xa3\x02\xdf\xde\x77\x12\x85\xd9\x84\x2a\x96\xd3\x9c\x45\x11\x95\xa3\x9c\x45\x9d\x24\xd3\x9d\x68\x4f\xf6\xcc\xbc\x32\xa8\xf5\x42\xc9\xcf\x34\x8a\xc8\x5e\x94\x9a\xc2\x22\x17\xfc\x15\x68\x50\x00\x82\x51\x88\x19\x75\x12\xe4\x48\xce\x3a\x67\xd7\xc8\xd1\x21\x60\xbf\x1b\xfd\x25\x3a\x9d\x8e\xa1\x0b\xa3\xbd\x44\xad\xd7\xd1\x07\xbc\xf5\x45\x64\x2f\xdf\xe8\x3d\x26\x28\x87\xa1\x37\xa8\xdc\x5c\x5d\xe4\x05\x58\x6f\x7b\xc7\x77\xa6\xa7\x7f\x1a\x7a\x64\xb7\x75\x38\xdc\x24\x77\x15\x7a\xd3\xbc\xef\xab\xd5\xab\xb1\xde\x09\xe5\x1c\x11\xa7\xed\xaf\xe0\x8d\x5b\x90\xe2\xee\x1a\xc4\xbe\x26\x9c\xa0\x66\x5f\x9b\x12\x1f\x6f\x12\x32\x0f\xfa\xc4\x59\xa9\x5f\x25\x01\x85\x4a\x86\x9c\x87\xcf\x96\x63\x0e\x71\x21\xfc\x67\x25\x7c\x56\xf3\x91\x30\x7f\x4e\xec\x9c\x0a\xce\xc6\x7c\x92\x6a\xce\x78\x55\x37\xe7\xc8\xb4\xd2\xdc\x3b\x81\xe7\x54\x33\x01\xb4\xb0\x30\x4f\x76\x72\x98\x36\x29\x2a\xa8\x71\xd6\x1f\xf2\x4a\xfd\x84\xef\xed\x11\xc5\x13\x3d\xe6\x93\x10\x8a\xac\xee\x99\x94\xd7\xe4\xd2\x25\xaf\xb4\xa2\xaa\x0a\xf0\x5c\x55\x9a\x1a\xd8\x60\x90\x0b\xce\x32\x4e\x57\x86\x3e\xa4\x4b\x0e\x17\x0a\x57\xe9\xdc\x54\x72\x2a\x2d\x56\xb5\x82\x31\x26\xcc\xca\x37\x0d\x50\xd3\x43\xb2\x11\xfc\xaa\x73\x9c\x2d\x69\xe3\x17\xa3\xd3\x71\xf6\xc3\xff\x1a\xa7\x8f\xf7\xff\x3c\xcd\xf6\xbf\xfe\xb5\xea\xf7\x9f\xf6\xf7\xcd\xcf\xb3\x7b\xf0\xff\x01\x3c\x1c\xc1\xc3\x11\x3c\x1c\x1c\x1d\xfd\xb5\xea\x1f\xde\x87\x6a\x87\xf7\x9f\xc1\xff\xa3\xfd\xbf\x56\x83\x23\x53\x72\xd0\xef\x3f\xdd\x87\x9f\x67\xe6\x3f\x54\x3b\x18\x3c\x30\x25\x4f\xfb\xf0\x70\xf4\xfc\xe8\xaf\xd5\x61\xbf\x3f\xd8\xff\x6b\xf5\xec\xbe\x79\xe7\xe8\x21\x94\x1c\x3d\x7b\x6a\x1e\x9e\x1d\xc1\xc3\xd1\xd1\xb3\xc9\xff\xab\x80\xfd\xb5\xdf\xeb\xef\x3f\x34\x9f\x7e\x72\xdf\x7c\xa6\x8f\xdf\xbc\x07\x9f\x39\x3c\x82\xcf\xdc\xed\x4f\xfe\xc7\x9d\x1f\xe8\x05\xff\xa6\x5a\xe5\x19\x67\x37\x1b\xba\xe0\x35\x46\xd9\x31\x0f\x39\x3b\x96\xb7\x95\x4d\xa7\x7c\xa9\xcb\x27\xa8\xf8\x55\xb2\x03\xd4\x65\x3a\xc4\x9f\xbb\xe6\x07\xd5\x72\x33\x17\x01\xdf\x6c\x56\x4c\xb5\x64\x96\xcb\x6c\xca\x99\xc4\x92\xc5\xaa\xd4\x1f\x4a\xee\x20\x62\xa2\xf2\xd6\x6d\x9e\xa1\x11\xab\x0b\x0c\x62\x12\xfb\x95\x32\x13\xb9\xce\xbf\xf2\x0f\xef\x5e\x5a\x3d\xc0\x39\x74\x22\x72\xb2\x9c\xce\x2c\x13\x73\xae\xe4\xaa\x2c\xae\x4f\xb8\x7e\x21\x04\x57\xbf\xbc\x3f\x7e\xd9\xb1\xfb\x35\x48\x49\xdd\xc3\xd3\x0b\x3e\xfd\xcc\x67\x9d\xdc\xd7\x72\xbe\x3d\xe1\x80\x14\xfa\xf9\x2c\x07\xa1\xcb\x47\x64\x56\xfb\xe2\x5f\xae\x67\xc8\x0b\xf5\x05\xfa\xba\xe0\x51\xaf\x5c\x16\xb9\x4e\xa2\x4e\xd4\xe6\x6e\x85\x93\x9b\x39\x1f\xf3\x09\xe8\xdb\x02\xb2\xfb\xb4\x3b\xa0\x1c\x35\x1d\xba\x03\xb0\xd1\x19\x8f\x23\x44\xf9\xd3\x8b\x4c\x95\x1c\x22\xfd\xc2\xf3\xfe\xd4\x66\x4c\xe8\x38\x9a\x16\x59\x59\x1a\x1c\x45\x14\xd3\x90\x6b\x63\x3e\x47\xa0\x0a\x6c\x73\xf4\xf2\xf9\x3f\xab\xfc\x32\xa2\x90\xde\xe7\xf0\x30\x99\xb4\x83\x67\x4f\xff\x71\x7f\x32\x9c\x73\x73\xa9\xb7\x90\x6a\x3a\x00\x48\xc7\x83\x49\x1d\xd8\x68\x5a\xc7\x53\x44\xa3\x99\xca\xe6\x73\x9b\x2e\x97\xbc\x28\x00\xc9\x11\x8d\x40\xc7\x2c\xda\xf1\xe5\x06\x62\x0e\xe0\x73\x75\xcf\xd0\x8d\x2f\x67\x2b\x2d\xdf\xf1\x4b\xae\x4a\xf3\x25\xfe\x05\x7d\xb9\xbf\xe3\xa8\x14\xec\x7d\x71\x02\x32\xa6\xab\xd2\x42\x64\x46\x8f\xab\x4b\xfe\xb8\x58\x5e\x64\xff\x0a\x98\xda\xe7\xa3\xac\x28\xe4\xd5\xd1\xaa\x28\x4e\xa6\x8a\x73\xd1\xc9\xca\x6b\x31\xed\x18\x98\x8e\xcc\xd7\x20\xf5\xa6\xc8\xae\x3b\x2e\xb0\xb2\x9b\x72\xe6\x97\xab\x8e\xbb\xe3\xbb\xc4\x9b\x7c\xaa\x57\x8a\xbf\x10\x36\xd1\x39\x97\x6a\xf1\x4a\x82\x54\x30\xd3\xbc\x73\x91\xcf\x66\x5c\x74\x0a\x29\x97\x1d\x21\x8f\xe5\x6c\x55\xf0\x8e\xa8\xca\x21\xde\xbd\xa1\xc2\xca\x17\xc2\x10\x05\x1d\xc5\xb3\xd9\x6b\x51\x5c\x77\x94\x45\x44\x47\x21\xb2\x66\x1d\xb8\x1c\xcc\x3a\x25\xcf\x16\x05\x2f\x4b\x30\x8a\x3b\x81\x0b\xc3\xbf\x9d\xbf\x87\xdf\x1e\xa6\x29\x2e\xb1\x88\x46\x8b\x55\xa1\xf3\x25\x8c\xc2\x62\xa5\x21\xcb\x1b\xc2\x7d\xdf\x40\x1c\xd2\x6e\xbf\xb9\x5c\xa2\xa9\x65\x9e\x50\xf0\x90\x51\xc8\xec\x7b\x5b\xbb\xdb\xb2\xf8\xa2\xa9\x2c\xca\x88\x46\x4a\x5e\x99\x9f\x32\xff\x8a\xd3\x38\x13\xdf\xd9\xe8\xbd\xb6\x46\x95\xbc\x3a\x31\x4d\xd0\x08\xa3\x47\x7c\x5f\x53\x3f\x7e\x03\xb9\x70\x98\x5e\x72\xf6\xc3\xf8\xaf\xfd\x74\x92\x8c\xb3\xfd\xaf\x13\xf2\xc3\xbc\xda\xcf\xaf\x79\xa8\x34\x35\x1e\x4c\xea\x9e\xc1\xab\x93\xff\x31\x54\x74\x5c\x35\x77\xc9\x40\xe6\x9a\xd3\xf8\x6d\x68\xeb\x86\x2a\xba\xdb\x4a\xbd\x15\x75\x97\xfa\x8b\x96\xa3\x97\x9d\x77\xa6\x80\x76\xb9\xe2\x4d\xcf\xe2\xf3\x16\x9e\xe5\x08\xb6\x24\x20\xfd\x87\x8e\xb3\x2b\xc1\x97\x93\x84\x23\x22\xed\x1a\x92\xfa\x20\xe0\x56\x27\x91\x04\xf2\x72\xdc\x9f\xac\xd7\xd1\x6b\x97\x26\xa6\x04\x2f\x92\xe3\x81\x29\x79\xe5\xd2\x84\x90\xf5\x3a\x69\xca\x39\x42\xbd\x8e\x5d\xb4\xab\x0e\x1d\xaa\x34\x5e\x43\x27\xe6\x68\xcb\x0a\xb4\xbe\x33\xe4\x19\xd6\x51\xee\xf8\x99\x9e\x64\xb5\x98\x85\x1b\xba\xc3\x64\xb7\x3f\xac\x8f\x8b\xcd\x86\xeb\x84\xfd\xd8\xa8\x2b\x9a\xe7\x76\x1a\xcd\x32\x9d\xed\x1b\x2a\x18\x79\x88\xe1\xac\xf2\xce\xe3\x7f\x24\x24\x8e\xd1\x46\xd5\xd4\xe4\xa4\x31\x6a\xdd\x01\xe8\x67\x62\xf7\x88\x07\x28\x3f\x4f\x54\xd5\xa9\xa0\xd7\xee\xa2\x6a\xfb\xed\xee\x5b\xb6\xaa\x1e\xda\x8b\x97\x7b\xd5\xa0\x13\xf3\x7e\x74\xf3\x26\x2f\x5f\x65\xaf\x12\x6d\x6f\x85\xf7\x9a\xd9\xeb\xf5\xe0\x27\xbd\xf1\xc0\x01\x4d\x2b\xc1\x16\x23\x11\x56\xdb\x4e\x21\x23\xc0\x4c\x93\xd1\xb6\xda\x50\xb7\x7b\x61\x79\xed\x0b\x4e\x39\x59\xaf\xfd\xf3\x19\x87\xf0\x1c\xc9\x8c\x3b\xef\xfb\xa3\x05\x2c\xd0\x6e\x3f\x4d\xce\x6c\xca\x2c\x45\xb2\x01\xc7\x06\x6e\x86\x88\x11\xb7\x31\x5f\x1e\x3b\xe2\x27\xd1\x24\x05\xf3\xa3\x20\x87\x82\xa6\x29\x49\x65\x93\x12\x1a\xf1\xb1\xac\x91\x41\x13\xe6\x5b\x3e\xec\xba\xc9\x1e\xc7\x51\x94\x8a\x34\xd1\x4c\xd6\x89\x2c\xaa\x9a\x39\x40\x76\xd1\xdb\xa1\x4b\x04\x33\x14\x5d\x22\x6d\xf3\x04\x49\x3b\x19\xc7\x5d\x74\xd0\x1d\x45\xa9\x01\x98\xaa\x51\xbd\x23\xaf\x4e\x40\x3c\x27\x5a\x3a\x28\x08\x09\x95\x6f\xbf\xf2\x50\x3c\x15\xc4\xb9\x84\xf9\x28\xe4\x0c\x80\x35\xf3\xaf\xe2\x6b\xd7\xa7\xa9\x59\xb6\x70\x9c\x9c\xc9\x2f\x91\x5d\x8b\x2a\x9b\xe5\xb8\xc8\x83\x4f\x9d\x72\x34\xaf\x38\x05\x92\xe3\xbd\xca\xa6\x9f\xb9\x82\x10\x7b\xb5\x9c\x16\xcf\x15\x00\xe4\xc8\x1f\x5a\xa9\x25\x5a\xa8\xf3\x1c\xd9\x9b\x73\x1d\xec\x4a\xcf\x78\x39\x55\xf9\x52\x9b\x5b\x5a\x4d\x2a\xe5\x09\x6f\xaa\xcd\xc5\x3e\x8a\xf6\xbc\xa4\xa5\x65\x67\x8b\xe3\xba\xa5\x85\xe3\xa8\x87\x6c\xf8\x6a\xab\x01\xaf\x51\xbb\x8a\x4a\xae\xdd\x1e\x0a\xf5\xc0\xf3\x42\xc9\x75\xdd\xb6\xbd\x87\x1f\xf3\x20\x98\x25\x7d\x33\x05\x16\xf7\x4a\x19\x72\x24\xed\xf6\xe9\xbc\x6e\x01\xed\x4d\x66\x50\xe5\xeb\x22\x2f\xd1\x38\xbb\xae\x8b\x07\x5d\xa5\x79\x55\x09\xc4\xff\xde\x1f\x61\xdb\x77\xb9\x58\x2d\x38\x7e\x55\xf4\xaa\x87\x0d\xa1\x37\x73\xae\xb7\xb4\x1a\x9d\x91\x07\x7c\xbc\x51\xea\x21\xd8\xd0\x52\xcb\x25\x8c\x73\xcd\x43\xe1\xd6\xac\x60\x36\x40\x44\xc1\x35\x07\x7f\xf0\x9b\x8d\xd9\xe2\xc2\x89\xfb\xda\xb1\x15\xba\xc1\xce\xed\xc5\xac\x61\x63\x30\xbe\xba\xda\x17\x5d\x64\x57\xd7\x8d\x04\xe7\x82\xd7\xcc\x89\xe3\x44\xd9\x29\xc7\x7b\x76\xce\x8d\x22\xad\x56\x3c\x4a\xa3\xf3\xac\x28\x79\x94\x72\xb4\xcd\x00\xad\x61\x45\xf0\x28\x49\x74\xcf\xf5\x3d\xe1\x84\x76\xfb\x01\xb4\xef\x6b\xce\xf2\xb5\x6b\xd6\x5b\x3c\x25\x37\x1b\x83\xf4\xfa\x05\xc8\x6a\xd0\xd2\xf0\x8e\xe4\xf2\x2e\xc3\x07\xdb\x9a\x35\x09\x10\x23\x91\xf2\xde\xe9\x95\xca\x0c\x55\x01\x9a\x97\xce\xf3\x9e\x6d\x38\x8c\x6c\xf2\xa5\x06\x99\x15\xcf\xf7\xc2\x4f\x9a\x5d\xa6\x9e\x43\x71\x80\xba\x55\x47\x46\x3e\x55\x55\xb5\x1f\x1b\x0a\xf6\x98\x3b\x1d\x49\x44\xdb\xc8\xfe\xa6\x82\xd0\x06\xa4\xec\xa6\x0e\x6a\xea\xdd\xe0\xbb\xf0\x7e\x53\x1f\x8c\x2a\xad\xef\x3b\x4e\x69\xa2\xda\x7c\x20\x67\xd4\x00\x35\xad\x81\x12\xd0\x3b\xaf\x2c\x26\xb0\x3c\xd1\xd5\x2b\x24\x8e\x81\x18\xaa\xc8\x66\x08\x31\x57\xbd\xfa\xd2\xbe\x6a\x9b\xb0\x53\xec\x31\x4f\xb4\x9b\x27\xce\x4f\x76\x75\x0e\x0b\x12\xc4\x02\x57\xa3\xc4\x46\x16\x8c\x70\x8b\x85\xd7\xd6\x6b\x9b\x30\xb5\xe3\x38\xb1\x4f\x0c\x0e\xa9\xd4\x97\xc1\x73\xb3\xb8\x32\x12\x2a\x57\x67\x8b\x1c\x76\x6e\x65\xb0\xc3\xcd\x6d\xd5\x3c\x90\x50\x1b\x7e\xfb\xfc\xb1\x9b\x2c\x19\xea\x2d\x29\x9d\x2d\x19\xa1\x2b\x70\x64\xbe\x09\x92\x6e\x57\x0c\x27\x4d\x44\xe2\x38\x7c\x01\xb0\x13\x56\x20\x84\xba\xe9\x67\xf1\xec\x6c\x84\x9a\x53\x0a\xfa\x5a\xcf\x62\xdd\x6e\xb3\x56\x30\x3e\xcf\x79\xa0\xde\xb4\xb3\x3f\xeb\xf5\xb7\x7a\x50\x45\xa0\x77\x63\xd9\xf5\xf8\xed\x32\xa6\xe2\xd8\xe2\xb7\x0b\xc8\x0e\xd4\x7c\x2f\x31\x4c\xb5\x25\xc1\xdc\xb4\xb0\x43\x30\xd4\xe8\x65\xb9\x75\xcd\xe2\x8a\x13\xeb\xb5\x0e\x27\x86\x1f\x6c\x6d\x96\x50\x08\x25\xd3\x1b\x60\xf6\x27\x82\x59\x07\xb1\x80\x2e\x93\x62\x51\x14\xd4\xf6\x98\x6b\xe6\xb4\x54\xe9\xde\xbe\xa1\x50\xf8\xa2\xa8\x3e\x14\xda\x84\x9d\x78\xe4\x87\xc1\xef\x21\x7e\xd0\x95\xe0\xea\xd9\x2e\xcf\x70\xa6\x97\x38\x21\x0c\x79\x54\xeb\xe2\x37\xb0\x95\xd6\xab\x87\x2b\xa4\xd9\x8c\x08\xcf\x94\x7f\x1a\xdc\x5a\x26\x93\x1b\xc7\xc1\xb2\x7b\xed\xc6\x90\x0e\x89\x6e\x21\x52\xaa\x13\x44\xf5\x9c\xb5\x90\xbf\x51\xf2\xba\xc9\x4c\x65\xbb\xa5\xf7\x98\x75\x4f\xb3\x49\xb4\x57\x7d\x26\x38\x66\x5e\x13\x1a\xc2\x51\x7b\x30\x9f\xf2\xda\x65\xc6\x10\x6a\xe8\xd4\xa6\x84\x98\x7d\xc0\x3d\xb4\x9a\x42\x92\xf5\x87\xf2\x91\xf7\xb5\x2b\xf7\xf6\x88\x1e\x47\x77\xa2\x3d\x31\x96\x13\x43\x2a\x43\x4d\xc1\xfa\x43\xf1\x88\xbb\x5a\x62\x6f\x8f\x48\xb6\xbd\x16\xee\x18\x7a\x49\x4c\xdc\x96\x06\x69\xc7\x2b\xc0\xe8\x33\x49\x2d\x8f\x49\x70\x6f\xa1\x5c\x7e\x23\x7a\x08\x33\x27\xa4\xd9\xa5\x6e\x10\x86\x28\xda\x33\x07\x05\xa1\xd6\x9c\x16\x61\xe7\x21\xec\xd0\xdd\xb1\xb4\x20\x98\x0d\xb3\x0a\x1a\x23\x83\x0f\x77\xfb\xa0\x9a\x96\xe0\xa7\x65\xeb\xa7\xc9\xd0\x2d\xc6\xf5\x1a\xeb\x58\xe6\x0f\x58\xd0\x9a\x1c\xb2\x71\x35\xec\xe1\x1e\xc0\x5d\x8d\xc6\x67\x5e\x53\x6e\x83\xdd\xaa\x9d\xd9\xd9\xd4\x64\x0a\xec\xcc\x1c\x01\x50\x3b\xd6\xdb\xce\x7d\x3f\x1d\xbf\xb1\x04\xc2\x23\xfe\x63\x83\xf8\x80\x8f\x54\x16\x70\xd6\x42\xa2\x71\xea\xd3\xda\x31\xe8\xa6\xe5\x4d\x70\x7c\x35\x7a\x73\x80\x7a\x59\x5b\x4a\x6b\x40\xa3\x25\x83\x9f\x98\xe3\x00\x6c\xa9\xd1\x1e\x12\x32\xd4\xc0\x03\xd8\x08\xa6\x37\x16\x2a\xb8\x2c\x46\x11\xd9\xec\xa2\x10\x10\x2f\x30\x65\x82\xe1\x78\x56\xeb\x6c\xfd\x08\xde\x3e\x72\x02\x33\x43\x9c\x81\xc2\x10\x73\xdc\x6d\xd7\x7e\x97\x15\xd5\xd9\x14\xbe\x1f\x18\xee\xbb\x9d\xa6\x65\x9b\x11\xf6\x64\xeb\x32\xd5\xba\x07\x85\xe2\x9e\x27\xf5\xfb\x18\xff\xa2\x2d\xcf\x7b\x88\xdb\xff\xee\x11\x37\xa4\x03\xce\xd5\x60\xd6\x56\xa7\xc4\x06\x18\xd6\x42\xef\x5f\xf0\x7c\x7e\xa1\x3b\x59\x91\xcf\x41\x33\x7c\xff\x2c\x2b\x39\x30\x27\x33\x95\x9d\xe5\xd3\xfd\x73\xa9\x16\x1d\x97\xb9\x0f\xae\x16\x3b\xd3\x6c\xe9\x5e\x9c\x16\xf9\x72\x7f\x99\xe9\x0b\x4c\xa9\x55\xc1\x3b\x53\x59\x48\xb5\x0f\x91\x3b\x97\xb2\xc8\x50\x70\xb5\x9d\xb7\x7f\x9e\x17\x9a\xab\xd2\x96\x59\xb5\x15\xfb\x84\xb2\xed\x5c\xcc\x3b\x33\xb9\xc8\x45\x16\x42\xc6\x85\x59\x99\xfb\x67\xd9\xf4\xf3\x5c\xc9\x95\x98\x75\xce\xf3\xa2\xd8\x97\xcb\x6c\x9a\xeb\x6b\x7c\x00\x40\xce\x0b\x29\x67\xfb\xd0\xa0\x4d\xfb\x3a\x52\xe8\xfd\xf3\x6c\x91\x17\x36\x5d\xe6\x5f\x79\x95\xda\xcf\x66\x7f\xaf\x4a\x6d\x33\xb4\xe2\x7a\x7a\xe1\x1e\xae\x0b\x5b\xd1\x5a\x04\xe0\xc3\x15\xa2\x63\x5e\x5c\x2f\x2f\xf6\xcd\xa1\x67\x93\x52\xe5\x5c\x68\xec\xef\x85\x54\xf9\x57\x29\x74\x56\xb4\x14\x5e\x72\xa5\xf3\x69\x56\x74\xa0\xd6\x7e\x36\xbb\xdc\xff\x62\xd3\x52\xe5\xf3\x5c\xec\x7f\xe9\xe4\x8b\x6c\xce\x03\xd4\x14\x5c\x6b\xae\xf6\x4b\xd3\x29\xf3\x68\x40\xc8\xc5\xdc\xf6\x78\x91\xa9\xcf\x5c\xed\x73\x31\x73\xc9\x45\xee\x93\xc0\xe4\xec\xc8\x4b\xae\x60\x5c\x97\xb2\xcc\x51\x50\xea\x72\xf4\x45\x3e\xfd\x2c\x78\x59\x76\x96\x59\x2e\xf4\xbe\x54\x33\xae\x3a\xcb\x4c\xc8\x92\xef\x0f\x3a\x4b\x09\x63\x89\xba\xc8\x65\xc7\xc3\x04\x43\x2c\x74\x07\xe2\x17\x05\xa0\x9a\xab\x9e\x85\x0b\x92\x6e\x20\x4a\xad\xf2\xcf\xdc\x6c\x01\xab\xf9\x45\x05\x46\x3d\xbb\x82\xa5\xd4\x4a\x7e\xe6\xfb\xb3\xac\xbc\x80\x80\x5e\x61\x86\x3c\x3f\x2f\xb9\x76\x39\xa6\x13\xd3\x6c\x19\x3e\xfe\x2d\x73\xe1\x9e\x17\xb9\x36\x1d\x5d\xe4\xfe\x85\x00\x22\xf3\x78\x95\xcf\xf4\x45\xc7\x2c\xb9\xfd\x4c\x4c\x2f\xa4\xc2\xf4\x8c\x4f\x25\x4a\x95\xf0\xb9\xea\xe1\xca\x24\xea\xc8\xac\xb2\xaa\x1e\xac\x44\x3e\x95\x33\xbe\x7f\x96\xcf\x72\xff\xa0\xcc\x11\x61\x9e\x74\xb9\xbf\x34\x58\x5d\x74\x2e\xf7\xb3\x62\x79\x91\x9d\x71\x9d\x4f\x3b\x97\xfb\x17\x99\x98\x9b\xaf\x5c\xee\xe7\x33\x2e\xe7\x2a\x5b\x5e\x40\xfe\x22\xd3\x17\x7c\x91\xe1\xd4\xb9\xe4\x53\x2d\xd5\x3e\x07\xfb\xc0\x8e\x99\x51\x30\x8f\xae\x31\xe9\xa7\x51\xf8\x74\xdd\xb9\x92\x6a\xe6\xa7\xd0\x95\xca\x61\x06\x2d\xe4\x8c\x77\xbe\x2c\x0a\x51\xa6\x5f\x8a\x5c\x7c\xee\x7c\xb1\x0b\xfe\xdb\xe2\x87\x4a\x3b\x05\x55\x21\x2e\x39\xbd\xe6\xa4\x5d\x56\x55\x97\xd7\xc0\x97\xd2\x6c\xaa\x57\x99\xe6\x1d\xfb\xa4\xa6\x4a\x16\xee\x29\x48\x96\x17\xf2\xca\x26\x75\xae\x7d\xb6\xa1\xc4\xff\x37\xc3\x08\x42\xb9\xf4\x87\x1f\xae\xae\xae\x7a\x57\x87\x60\x26\x34\x78\xf8\xf0\xe1\x0f\xf0\xc1\xa8\x92\x20\x7c\x59\x14\xa9\xd9\xa3\x22\x0a\xc9\x22\x13\x73\x9b\x04\xee\xde\x2e\x89\xc2\x7f\x0b\xcb\x1f\xc7\x2f\x0d\x3c\x0f\x7e\x10\x8e\x8f\x18\xc0\xe4\x9c\x5d\x46\x34\x9a\x2a\x59\x96\xaf\x61\xd4\xbf\x53\xb8\x31\xf8\x96\xe4\x68\xce\x7b\x80\x84\x5f\x14\x3f\x77\xaf\x45\x3e\x27\xc2\x06\xec\xb0\x5e\xa0\xb3\xc9\x6f\xe0\xb2\x6f\x80\x2e\xd5\xd4\xd4\xc4\x17\x30\x14\x07\x8a\x4b\x17\x18\x8a\xf2\xbf\x07\xbf\xef\x65\x33\x6f\x38\xbb\xb9\xd0\x8b\x22\xdd\x09\x99\x29\x8d\xa8\x59\x67\x3b\x6b\x3d\xf8\xe1\x38\xd3\x17\xf0\xef\xf8\x65\x44\xcb\xcb\x79\x5b\xc5\x83\x7e\xbf\xff\x43\x79\x39\x8f\x02\x71\xfe\xbb\x50\xaa\xe3\xc4\x39\xa6\x8e\x13\xc1\xdc\xd2\x0c\xca\x18\x0c\x60\xb7\xd4\xde\x82\xae\x29\xe3\xb9\xb5\xdb\x01\x25\xf5\x47\xfd\x36\x64\x55\x00\xd7\xeb\xdb\x1b\x00\x67\xa7\xef\x80\x7d\x7d\x5b\x57\x30\x1e\x85\x19\x62\x9e\xcf\xc5\xeb\x4a\x99\x6e\x74\x7b\xf3\x29\x7a\x64\xf8\x9b\xd3\x17\xbc\x25\x3e\x40\x2b\xc7\xf6\xf8\xe4\xf1\x72\x19\xc7\xf0\xd3\xe3\x5f\xf8\xf4\x83\x28\xb3\x73\xfe\x52\x4e\xb3\xc2\x45\x3a\xab\x84\x10\xde\x15\xc5\xad\xf5\x93\x16\x97\x0a\xc8\x5e\xdf\x10\xb2\x49\xf9\x26\x49\xea\xe6\x9f\xa0\xf1\xef\x17\xec\x87\x77\x2f\xba\x8c\xbd\xe1\xbd\xf2\x72\x0e\x3a\xe3\xf6\x8a\x10\x81\x75\x80\x21\xec\x6c\x06\xd3\x43\x7f\x45\x4a\xfe\xe6\xec\x6f\xbe\x5e\xb7\xab\x62\x25\xd1\x2c\xbf\x8c\x08\x09\xde\x8d\x1e\x95\x97\xf3\x9f\xa2\x3d\x4b\x02\xbf\x3e\x4f\x48\xe5\xfc\x84\xec\x45\x8f\x7e\x80\x72\xaa\xd9\xdf\xbc\x77\x9e\xab\x52\xc3\xc5\x75\x58\x7b\x20\x8e\x35\x04\x8f\x49\x58\x86\x76\x76\x43\xdd\xa8\x6e\x08\x54\x31\xc3\xea\x61\x19\xd9\x98\x35\xe8\xe7\xd7\x87\x20\x00\x68\x65\x87\x10\x34\x85\x3a\xef\x02\xe8\xde\x22\xb3\xb9\x71\x7c\x08\x22\x3b\x21\x67\xe0\xb6\x33\xe4\x62\x25\x98\xfd\xbb\x23\x79\x6b\x04\x34\xd3\xd5\xd4\xfe\xa5\x76\x49\xb8\xd9\x78\x1d\xf9\x71\x63\xf7\x98\x30\xdd\xdc\x4e\xc6\xd1\x47\x7e\xf6\x39\xd7\xd1\x1e\x9f\xb0\xe8\xca\xa6\xb5\x29\x38\x96\x5f\x31\x77\x61\x12\x9a\xa2\xca\xfd\x11\x67\x37\x99\xc8\x17\x40\x43\x70\x31\x4b\x7f\xe1\x49\xf4\xd8\x65\x44\xb4\x4a\x3f\x17\xb3\x88\x50\x5f\x17\x15\x73\x73\x29\x76\xbf\xf1\xc2\x55\x09\xdf\x03\x4a\x6f\xf7\x3b\x27\x20\xed\x26\x54\xab\x4c\x20\xd9\xe2\x80\x7a\xef\x73\x22\x1a\x3c\x00\x58\x1b\xfa\x3b\x68\x27\x7d\xaa\x6b\x27\xfd\xec\xd8\xf0\xbf\x9b\xad\xd8\x0d\x06\x3c\x00\x7b\xec\x28\xcc\x46\xa7\x28\x9a\x0a\x06\xd9\x95\x41\x8c\x20\x66\xac\xdb\x44\x30\x50\xfc\x89\xd7\x1a\x66\x62\xac\x27\x95\xe7\x90\x3f\xe3\x38\xf9\xc4\xd9\xad\xab\xa2\x07\x54\x7c\x88\x6a\xb0\xa8\xcb\x85\xd7\x90\x4c\xac\xb4\xe1\x88\xf7\xc2\xc1\xaa\x1e\x68\x4b\x05\x3f\x42\xb7\x57\x83\x01\xa9\x1e\x49\x0d\xb9\x4d\x40\xaa\xf7\x6b\x03\x14\x3c\x59\x05\x72\xce\x7e\xe6\x49\x14\x02\x1b\x11\xfa\xb6\x91\x9b\x07\x13\xe4\x4e\xa3\xac\xb4\x13\xe1\x57\xcc\xaf\x7d\x2e\x22\xf4\x4f\xce\xa2\xec\x4c\x2a\x73\xfb\x13\x4b\xd0\x9a\xc1\x5f\x4b\xa4\x77\x66\x2b\x6c\x1a\x03\xe2\x74\xf8\x62\xa9\x73\x3e\xeb\x70\x31\x55\xd7\x4b\x0d\xa9\x99\xf9\x0f\x06\xcd\x85\xcc\x66\x7c\x36\xcb\x74\x66\x93\x0b\xae\x33\xff\x88\x97\x93\x65\xb6\x2a\x39\xe8\xcb\xc0\x3f\x43\x9e\x2e\x95\x9c\x43\x7c\x26\x95\x69\x6e\x3f\x54\x72\xfe\x19\x34\x65\xf8\x67\xbc\x68\x60\x44\x2f\x34\x09\x98\x75\x74\xbe\xe0\xe8\x97\xb1\x73\x29\x8b\xd5\xc2\xbd\x76\x95\x01\xa5\x1b\xd2\x8a\x94\x83\x7b\x66\xad\xd9\x78\x42\x85\xe5\x3b\x29\xc7\x7f\xb2\xbf\xb9\x66\x4e\x61\x32\xab\x92\xa5\x36\xcb\x7c\x55\x72\x88\x2d\x05\xa9\xd5\xb2\xa3\xe5\x6a\x7a\x31\xcd\xc4\x94\x17\x98\x06\x80\x4c\x02\x7b\x98\xad\xbe\x4c\x8b\x7c\xfa\xb9\x33\x3b\x2b\x30\x61\xaf\x55\xf6\x1d\xfb\x04\x6d\xda\xf4\x6a\xd9\x99\xa9\x6c\x6e\x1a\x32\xbf\xd8\xce\x4c\xc9\x65\x67\x2a\x17\xee\xe2\x61\x4a\x83\x47\xac\xf4\x99\x5f\x43\x43\x9f\xf9\x35\xa8\xc7\x99\xc4\x6a\xd9\x01\x41\x2e\xdc\x65\x20\x00\x78\x07\xbc\x3d\x77\x2c\x00\x53\xb9\xbc\xee\x4c\x57\x66\x2c\x4a\xcd\x3b\x08\xa3\x45\xa0\x35\x0c\x59\x70\xb1\xea\x00\x9b\xbb\x63\x59\xdf\x21\x46\xa7\x9a\xa1\x6a\x57\xe7\xac\x58\x29\x0b\xba\xe6\x98\x2a\x78\x76\xc9\x11\x59\xe6\xda\x69\x53\xe6\x6b\xd8\x57\xc8\x74\xe9\x95\xee\xcc\xa5\xf6\xf8\x01\x7d\xa2\x4e\x21\xcb\x46\x56\xf8\xf5\xc0\x0c\x5d\x37\x75\x6b\x6f\xce\x0a\x39\xfd\xcc\x67\xaf\x45\xca\xa9\x96\xcb\x97\xfc\x92\x17\xe6\x04\x49\x35\x85\x3b\xed\xc9\x75\xa9\xf9\xe2\xa8\xc8\xe6\x65\x7a\x78\xb0\x16\x54\x80\x5f\x17\x58\xa0\xa9\x0a\x6d\xa5\xd1\x13\x4b\x93\x88\x83\x5e\x5b\xed\x10\xd3\xf7\x28\xb5\x33\x2a\x74\xa0\xe7\xf1\x61\x2b\x7a\xac\x44\xa9\xda\xae\xed\x31\x65\x6b\x3b\x7c\x45\xa9\xdc\xae\x1c\xe0\xd0\x56\xaf\x30\x19\xa5\xb9\xee\xe1\xce\x92\xe8\x9e\xcd\x7f\x31\x0b\xe3\x27\x46\x5b\xc8\xb6\xad\xb4\xa0\x3c\xcd\x5a\x5b\x0b\x70\xb4\xd4\xa1\x57\xaf\x2d\x83\x15\x43\x0a\x79\xe4\x82\xc6\x50\xa1\x3d\xe5\x95\x26\xbc\xd7\x1c\x91\x35\x03\x93\xf5\x4a\xe3\x59\x37\x8c\x49\x7b\x7e\x78\x9b\xe2\xe0\xf7\x22\x31\xa7\x7a\x35\xe0\x74\xbb\x79\x5a\x03\xa8\x61\x8b\xcc\x34\xc8\x5b\xfc\x07\x58\x43\xfa\x37\xd3\x4e\xc0\x01\x50\xc5\xb1\xf0\xc8\x09\x6a\x5d\xe8\x04\xcd\xff\x61\xcf\x19\xf6\x1f\x69\xaf\x3c\xee\xb5\xce\x21\xe2\x5f\x7b\xa7\x70\xa0\xfe\xf3\x1e\x39\xa6\xe0\xa8\xd6\x91\x54\xdb\x58\xbd\x89\x67\x76\x0b\x1d\xc7\xe7\x3a\x11\xa8\x3d\xe3\xbc\x63\xd9\x42\x85\x85\x0a\x0a\x55\xa3\x50\x62\xa1\x84\x42\xe9\x0a\x73\xed\xef\x6e\x33\x4d\x68\x56\x7b\xac\xd0\x73\xa6\x9d\xff\xbd\x0a\x3c\xc7\xc3\xac\x72\xd0\xc4\x17\xc6\x43\xb3\x6e\x9f\xe6\x3d\xef\x80\xa5\x9c\x5e\xf0\xd9\xaa\xa8\x5c\x47\x05\x65\xaf\xa4\x5a\x64\xc5\x1b\x95\x4b\x95\xeb\x6b\x7a\xa1\x6b\x3a\x30\x0b\x98\x4b\xfe\x51\x27\xd5\xa5\xe7\xcc\xcc\x4a\x4e\x36\xf9\x79\x12\x0c\x18\xb9\x31\xf9\x66\xb0\x42\x5f\x13\x82\x0d\x86\x22\x18\x55\xe1\x3c\x52\x2a\x33\xb0\x62\x32\x54\xb5\xae\x81\x9e\x41\xa3\x6b\x64\x13\x8e\xc2\x99\x19\x05\x88\xc5\x57\x21\xff\xcc\x20\x3f\xc8\x93\x98\x27\x21\x2f\x40\x75\x1d\xd3\x36\x3e\xfe\xb1\x66\x7d\x3a\xd7\xec\x80\x5e\x6a\x36\xe8\x1f\xdc\x0d\xb4\x12\x75\xc0\x99\xa0\x82\x81\x7c\x80\xf7\xb2\x02\x14\x78\x35\x27\x96\xd2\xb7\x02\x4b\xa2\x99\x4f\xc3\xfd\x84\x33\x3d\x9c\xc9\x9b\x24\xd1\x8c\x93\x1e\xf2\xa3\xde\x67\xf3\x38\x99\xeb\xf5\xa5\x26\xa4\xcb\xd8\xb1\x06\x96\xbe\x7b\x8f\x50\xee\xd3\xde\xac\xc5\x59\x0c\x1d\xa2\xf8\x3e\x9b\x8f\x44\xc3\x22\xed\xb1\x5b\xf8\x00\x71\xb7\xf2\xe3\xe4\xcd\x9f\x1f\x3c\x08\x07\xf7\xca\xd5\xef\x26\xbc\x45\x6a\x17\x74\xd1\xea\x89\x04\x6a\x85\x89\x66\xf0\x95\xa6\xc4\x02\x3e\xe1\x2d\x70\x20\x2a\x06\x58\xdb\xf1\x4d\x35\x17\x38\x55\x4c\x0f\x87\x95\xda\x8f\xc5\x56\xd5\xba\x0c\xd6\x74\xce\x64\x1d\x10\x5b\x27\x0f\xf7\xb8\x44\x31\xe9\x90\x47\x6e\x04\x53\x43\x73\x22\xe7\x62\xc5\x37\xd0\x92\x99\xa5\xd6\x7d\x92\x79\x15\x53\xb8\xe7\x98\xf6\xa7\x78\xa9\x1a\x42\x93\x79\x28\x3c\x7b\xac\x13\x49\x28\x7c\x37\x0f\x35\x03\x30\x5f\x0f\x73\x96\xf7\xca\xfc\xac\xc8\xc5\x7c\xd3\x86\x6c\x20\xde\xed\xae\xcb\x98\x72\x30\x0a\x26\xa9\x62\x79\x75\x81\x45\xa7\x31\xdd\x01\x9d\x7a\x70\xa6\x08\xce\x14\xc0\xb9\x29\xcd\x9a\x76\xaf\xf9\x3e\x4d\x01\x26\x2c\x54\x4c\x52\xe1\x0b\xa7\x6c\xea\x01\x33\xa3\x57\x62\x6f\xa7\xae\xf3\xed\xcd\xe7\xa6\x95\x5d\xcd\xe7\xe6\xfb\x3b\x9b\x6f\xf6\xfe\x21\x21\x1b\xec\xbe\x1f\x3d\x30\xcd\x6f\x3a\xd5\xe8\x23\x96\x0e\xbb\xa0\x6d\x9a\xcd\x6f\x9b\x50\xa2\xb2\x6c\xf2\x31\x44\x40\x06\x9e\x6a\xd0\x81\xaa\x19\x61\x06\x9e\x8e\x86\xd8\xd7\x1f\xdd\xd2\x59\xaf\xef\xb9\xa4\x7b\x05\xfc\x5e\x5a\x79\x1e\xb1\xbf\x76\xb4\x98\xa6\x5e\xd4\x87\x23\x66\xaa\x82\xa1\x3a\x4e\x53\xd8\x00\xba\xda\x21\x64\xe8\xbc\xf1\xe0\xeb\xeb\xb5\x4b\xb1\xa6\x9d\x68\xb5\x55\x6c\xfc\xdb\xfe\xa3\x36\x01\xdf\x76\xa8\x6e\x37\x1b\xfc\xaa\x2b\x36\x0f\x2a\xcb\x82\xa7\x11\x43\x4b\x94\x6a\x6a\xaf\x7b\xeb\x35\x5e\xa3\x48\x6f\x2a\x95\xb5\xc7\xcd\xc5\xfc\x43\xe9\xee\x83\xe0\x27\x95\xef\x2a\x25\xf4\x10\xb8\x0d\x8e\xb9\x30\xe2\xbd\x65\x66\x06\xc0\x0c\x46\x1a\x88\xe0\x4f\x01\x98\x99\xbc\xd9\x36\xcd\x8b\xe3\x1f\xe1\xe8\x36\x68\xf7\x97\x54\xd4\x76\x0d\xb4\xd7\x3c\xc9\x90\x68\xf6\x4f\xc2\xa9\xe8\x39\x4f\x1b\x68\xd3\xbe\xcb\x8d\xd0\x58\x4f\x40\x39\x40\xb4\x39\xed\x78\xdf\x9a\x4d\x35\xa1\xa2\xcd\x93\x47\xad\xba\xcf\xa6\x35\x35\xbb\xf7\x6e\xfb\x44\x59\xe7\x77\xc1\x58\xf7\xbf\x75\x8a\xe3\x64\xda\xa7\x82\x8d\x27\x43\x3d\x24\xc2\x3b\x68\xd1\xec\xd4\x9c\xb7\xc8\x0a\xa8\x82\x02\xf7\x1f\xe9\xfd\xfd\x21\x79\xad\x13\x73\xd7\xa7\xce\x9c\x60\x16\xb9\x03\x57\xb3\xfe\x50\x57\x8a\x0d\x7a\x6f\xaf\xaa\x7c\xb6\x3a\x3b\x2b\xb0\x6e\x40\x91\x7e\xf1\x28\xe7\x71\x2c\x80\x48\xab\xf7\xa6\xe9\x4c\x09\x7c\x83\xb6\x8e\x4d\xb3\xe6\xff\xd5\x11\x79\xa5\x6d\x94\xa3\xad\xe1\xd8\xee\x80\xe9\x73\x7d\x00\xd0\xbf\x4a\xa0\xb9\x06\xad\x7d\x49\x38\x7d\x1f\x52\x63\xcf\x75\x15\xd9\xa2\x1f\xa8\xf2\xe8\x30\xe0\x45\xa5\x37\x13\x5c\xb6\xbc\xe6\x09\xf8\x22\xbc\xc8\xcb\x06\x94\xce\x7c\x2c\x80\xca\x59\x91\x05\xf4\x2a\x18\xbd\xba\x90\x13\x5e\x7f\xf7\x85\xb9\x67\x9c\x67\x53\x4e\xb6\xd4\x75\xa5\x19\x02\xa7\xb7\x31\x32\x6f\x8e\xe5\x84\xe9\x44\x90\x34\xc2\x2f\x45\xa0\x6b\x8e\xa6\x6b\xe8\xa3\x48\xa5\xae\x9e\x30\x6f\xf9\x03\xdd\x54\xc9\xcb\x67\xce\xbb\x22\x50\xd6\x7c\xc6\x9c\xe2\x43\xe5\x77\xd1\x96\x8c\xb6\xb3\x52\x50\x9b\x77\x87\x22\xea\x1a\x8c\x9e\xeb\xf4\xc4\x76\xb5\xcd\x5d\x0f\xb3\x85\x81\xa2\x8f\xae\x29\xfa\xc0\x9b\xf0\x81\x37\x52\x16\x0d\x1f\xfa\x8d\xc2\x9a\x43\x7d\x44\x64\x56\x14\x89\xa4\xae\x41\xef\x2d\x1f\x82\x73\x99\x1a\xfe\x5b\x81\x6e\x4b\x40\x3c\x75\x72\x3b\x1f\xe5\x39\x54\x6f\x12\x45\x07\xf7\x1f\x12\x32\xe4\xbd\x19\x77\xe3\x95\x10\x3a\xe8\xff\xd4\x0a\x75\x1c\x37\xe1\x6d\xba\xc8\xff\x88\xd3\xbc\xaa\xc2\xc6\x13\xca\x7b\x73\x0e\x0f\x7c\xc6\x9e\x6a\xca\x9d\x9f\x21\xf6\x59\x6f\x64\xf2\x4f\x60\x5a\x49\x6f\xea\xa1\x1b\x43\x65\x63\x9c\x95\xcd\xe1\xb5\x9a\xc1\x76\xda\x05\x73\x71\x88\x8a\x20\xf5\xf6\x46\xdb\xb1\x21\x53\xe7\xae\x2b\x34\x6a\x0e\x67\x00\x34\x13\x3c\xb3\xee\x80\xd0\x5d\xb3\xed\xb9\x26\xa8\x2e\x1d\x4c\x94\xb0\x13\xb7\xc2\xda\x78\x6f\xb4\x95\xb3\x0b\x5a\xe4\x02\x3d\x81\x0d\x14\x55\xd0\x82\x0c\xd6\xed\x93\x5b\xa6\x2f\x40\xbc\x44\xa7\x50\x5b\xe8\x0e\xdd\x45\xb1\xe7\xe0\x5b\xb3\xca\x30\xcb\xa2\x9a\x36\x5b\xbd\x34\xc4\xc1\xce\xad\x00\x4e\x03\x8e\x8e\x4f\x61\x39\x5b\xcb\x8c\xe1\xd6\x96\xb2\xbd\xed\xb4\xec\x4e\x68\xcb\xbe\xb3\x8f\xbb\x46\xcb\xad\xeb\x96\x3d\xbd\x9e\x5f\xf7\xb0\xb5\xd9\x10\xfa\x8f\xae\x3a\xc3\x30\x9c\x19\x02\x01\x80\x62\xba\xe6\x5b\xad\x45\xed\x1e\xda\x42\x2e\xd6\x1b\x73\x26\xe3\x5b\x78\x0e\x96\xb6\x09\x18\x48\xd4\xe7\x87\xe6\xf3\x05\x3f\xd1\xd9\x62\xd9\xe6\xb5\x97\xf7\x7c\xf1\x7a\xfd\x2c\xd3\x86\x22\xba\x4a\xc8\x86\x6e\xed\x73\xc8\x21\x2d\xdf\xab\x55\xe9\x1e\x37\xa6\x4b\xfc\x8b\xe6\x62\x56\xbb\x70\x05\x17\xec\x30\xdc\x50\x68\x3d\xd0\xee\xab\x6e\x63\x2f\xd1\x17\x79\x39\x0c\x96\x38\x53\x8d\xf0\x39\x39\x30\x67\x75\xa5\x53\x97\x63\xc0\x77\x17\x29\x27\x78\x60\xb5\xa2\x5a\x88\x1d\x41\x45\x30\x20\xa0\x98\x17\x4c\x37\xb8\x7a\xbb\xde\x29\x9b\xa0\x1f\xcd\x41\x43\xc5\xc6\x24\xfe\xb1\xfa\xdf\xcf\x34\xf3\x78\x48\x2a\x01\x10\x38\x08\xc3\x63\xb8\xc8\x96\x25\x9f\xbd\xcf\x5d\xc6\xb2\xe4\xab\x99\x74\xde\x66\xad\x8f\xa4\x27\xb5\x66\xa6\x45\xbe\x3c\x93\x99\x9a\x3d\xcb\x74\xd6\x32\x72\x51\xad\x02\x48\x13\x47\xbc\x57\x7f\xcb\x3a\x74\xa8\x65\x9a\x89\xf8\xa6\xf6\xa5\xcb\x9c\x5f\xa5\xd6\x0c\x43\x67\x79\xe1\xe0\x79\xa7\xd9\x9b\xaa\x56\x2d\x56\xad\xf3\xbe\x54\x49\x90\x43\xa6\x42\xef\x33\xbf\x7e\x2a\x67\xce\xbe\x28\x9a\x5e\x64\xca\x3c\x23\x90\x7d\xe7\x46\xcb\x65\x93\x38\x1e\x1c\x3a\x0e\x10\x1b\x1c\x92\x94\x33\x4d\x07\x7d\xcb\x39\x81\x2c\x7a\x78\xf0\x88\xf1\xf5\x1a\x2a\x42\x64\x4a\x14\x0e\x6b\x76\xf3\xbc\x9c\xa6\x11\xc6\x22\x8e\xe8\xc9\x32\x9b\xf2\xb3\x4c\xa5\x51\x27\xa2\x2f\xf9\xb9\x4e\x23\x08\xf7\x6b\x92\x11\xfd\xb0\xb4\x8f\x1f\x96\x11\x7d\x97\xcf\x2f\x5c\x31\xa4\x23\x0a\x41\x40\x23\x1f\x56\x38\xa2\xcf\x78\x91\x46\xcf\x80\xc3\x17\xd1\x8f\xb9\x48\xa3\xd7\x27\x11\x85\x78\x89\xce\x85\xcb\x31\x44\x76\x7f\xbc\x5c\x96\x8d\xac\x93\xa9\x92\x45\x91\x46\xf8\xfb\x52\x4e\x3f\x47\xf4\x58\x7e\x7d\xa3\x72\x01\xac\xaa\xdf\xf8\x75\x1a\x7d\x10\xf9\x8c\x0b\x0d\x8e\x5c\xa3\x0d\x7d\xa1\xd9\xcd\x83\x34\x7a\x92\x4d\x3f\x5b\x6d\x8f\x87\x69\xf4\x3e\x3b\x8b\xe8\xe0\x20\x8d\x9e\x16\x3c\x53\x11\x1d\x1c\xa6\x11\xc4\x56\x8e\xe8\xe0\x5e\x1a\x9d\x5c\xe4\xa6\x6f\x83\xfb\xf8\x7d\x25\x8b\x88\x0e\x1e\xa4\xd1\xe3\xc2\xe4\x3e\x4c\xa3\x37\xd9\xaa\xe4\x11\x3d\xe8\xa7\xd1\xd3\x6c\x59\x22\x24\x07\xf7\x2b\xa4\x1d\x1e\x00\xba\x0e\x0f\x4d\xdd\x39\x37\xc8\x39\xbc\x8b\x69\x44\xc3\xe1\x8f\xe6\x8b\xb3\x88\x1e\xde\x4b\xa3\x5f\xe4\xc2\xbc\x73\xbf\x86\xd9\xc3\x07\x01\x66\x0f\x1f\xd6\xd1\x7a\xb7\x5f\x43\xea\xdd\x1f\xd3\xe8\x85\x28\xb9\x32\x45\xf7\x2a\xfc\x0e\x4c\x1f\x8f\x06\x26\x71\x98\x46\x47\x07\x26\x71\x37\x8d\x8e\x0e\x4d\xe2\xc7\x34\x3a\xba\x6b\x12\xf7\xd2\xe8\xe8\x47\x93\xb8\x9f\x46\x47\xf7\x4c\xe2\x41\x1a\x1d\xdd\x37\x89\x87\x69\x74\xf4\xc0\xa0\xaa\x9f\x46\x47\x0f\x4d\x62\x60\x1a\xec\x9b\x14\x34\x6d\xda\x3e\x30\x6d\x0f\x4c\xe3\x77\xef\xa6\xd1\xab\xd5\x02\xf1\x31\x30\x50\x85\x43\x75\x70\x70\x37\x8d\x8e\xb9\xce\xa2\x0d\xfd\xa0\xd9\xcd\xe3\x42\xa7\x51\x56\x68\x88\xae\x6a\x11\x9d\x46\x53\xad\x0a\xc8\x31\x35\xd3\x68\xc1\x75\x06\x8f\x30\x28\x69\xe4\xa2\x57\x87\x6a\x21\xbf\x04\x4b\x65\xeb\x50\xf7\xae\xa9\xe7\x5c\x1f\xcb\x99\x99\x17\xa8\x00\x3a\xda\xce\x4a\x38\x49\xbb\xdd\x84\xb3\x0f\xe0\x8b\x24\x8e\xbb\x5d\x88\x80\xe2\xbf\x74\x54\xd1\xf0\x9d\x5f\xb4\xe7\x58\xfd\x5e\x5b\xd7\x9f\xf9\x56\x0c\x07\x8c\xed\x61\x41\xfc\x5b\x8f\xe1\x79\x62\xae\xdf\x9f\xf9\x35\x38\x74\xaa\x4d\x5b\x43\x55\x78\xb6\x83\x25\x35\x23\x27\x89\xb2\x66\x84\xe6\x86\x0d\x6b\x37\xe1\x0c\xf6\x0a\x32\xb2\x73\x38\x45\x25\x85\xde\xb9\x92\x8b\xa7\x76\x47\x30\x3d\x8b\xac\x4c\xab\x6a\x60\xbd\x8e\x40\xac\x15\x34\xf9\xc2\x02\x67\x5e\x9a\x80\x3f\x9d\x00\xae\x34\x8a\x36\xb4\x90\x53\x24\xa8\xf0\x68\xc4\xe1\xc2\x07\x1f\x39\x1d\x9e\x70\x68\x31\x6d\x87\x31\xb5\xae\x60\x96\x3c\xb3\xa7\xb3\x69\xcd\x1d\xab\xcd\xe1\x48\x8f\x34\x75\x5b\x5a\xdb\x7e\xdd\x82\x11\xc0\x44\xda\xdf\x50\xdb\x85\x1d\xaf\x7d\x13\x0d\x1e\x07\xa6\xad\xab\x8b\xbc\x16\x68\xe4\xdb\x00\xfc\xeb\x6f\x6c\x08\xfd\xa4\x59\x9f\xfe\x6c\xfe\xfd\x06\x82\xd5\xb7\xf0\xff\x4e\x6d\x6a\x95\xe0\x9a\xe1\x0f\x8b\x6d\x78\xf8\x64\xc7\xa1\xc8\xb9\xd0\x7f\x84\x0f\xb6\x64\x99\xcd\xf9\x1f\x55\xf2\xd3\x7f\x3e\x6e\x6d\xe3\x83\x8e\x1c\x1d\xcd\x64\xd2\xa5\x1b\xe4\xf0\x74\x6b\xa5\x93\x6a\x55\x40\x4c\x64\xa6\x6c\x60\xc4\x12\x30\xa7\x46\xbc\xa7\xfd\xf1\x5e\xab\x48\x36\x74\x21\x2f\x21\xf9\x47\x73\xdd\x45\xbe\x04\x95\x83\x2a\x07\xe2\x2e\xdf\x4a\x85\x3e\xf9\x8d\xe2\x93\x39\x6e\x2d\x9e\xe9\x6f\x7a\x84\x72\x43\x53\xbf\x36\x74\xb6\xc6\xbe\x4e\xfb\x69\xf2\x1b\xc8\x53\xfa\x01\x24\x9f\x76\x42\xf2\x69\x07\x24\x9f\x2c\x24\x3f\x7b\x48\x7e\xae\x20\xf9\x44\xdf\x7e\x03\x92\x4f\x08\xc9\x5b\x07\xc9\x86\xd0\x5f\x35\xbb\x53\x4d\x1d\x2f\x69\xc4\xe1\x01\x85\x5d\x4c\xa2\xaa\xaa\x9d\x21\x66\x3a\xaf\x94\x27\xa3\xc5\xdc\x2c\xfe\xac\x78\x53\xcf\xcf\x0b\x37\xd5\x4c\xd2\x4e\x29\x7d\x65\x2e\x2f\xd8\x0c\x7e\xec\xbd\x27\xc8\xcd\x85\x20\x5f\x64\xea\xda\x91\x42\x7f\xd6\x80\x9b\x65\x3a\x03\xb5\x8e\x73\x1f\xde\x85\x72\x11\xce\x7c\x54\x08\x28\x43\xf2\xfe\x7d\x98\x85\x62\xf6\x59\x2d\x6f\xe7\x44\xbe\x65\xf2\xb7\xcc\xf1\x0d\xa1\x5a\x84\xe4\x5d\x68\xca\xfe\x6f\xc8\x51\x21\x6a\x7d\xe6\x85\xce\xfe\x68\xdb\x56\xb0\xc4\x11\xa0\xb6\x5e\x74\x75\xc1\x79\xf1\x2c\x28\xda\xe7\xbd\x20\xcf\x6c\x54\x50\xf5\xd3\xce\x26\x3f\xd5\x9a\xfc\x14\x36\xf9\xa9\xa5\xc9\x5a\x85\x96\x72\xff\xc5\x3f\x1d\xad\x5b\xe8\x0c\xc2\x90\xd8\xfe\x2a\xc1\xc6\x63\x14\xe7\x53\xfb\xd3\x07\x57\x3f\x70\x9d\x8a\xa8\x4f\x60\x2e\x38\xb2\xa5\xee\xd7\xe6\xc9\x12\x1d\x02\xc1\x2f\xe6\x55\x9a\x14\xa6\x24\x24\x10\x6d\xf9\xf2\x1a\x0a\xcc\x0f\xe6\xac\xb4\xc9\x30\xff\xe1\xd9\x29\x92\x44\xd4\x24\x9f\x06\xdf\x73\x9a\x25\xe0\x7a\xa5\xf2\xae\x6b\x0b\x51\x93\xc4\x3a\x04\x02\xea\xcd\xe7\xa3\x3a\x10\x96\xa0\x8e\x98\x2b\x93\x4b\xc8\x36\x3f\x90\x83\x9a\x0e\xd4\xfd\x42\x1e\xba\x07\xa0\xee\xd7\xe6\x5d\x66\x45\x3e\x83\x5c\x9b\x82\x7c\x77\xb2\x50\x93\x42\xf2\xcf\xe5\xe3\x59\x04\x05\x6f\x30\xe9\x4a\x56\x4b\xcc\xfe\xe0\xa0\xf0\xda\x37\x11\xc5\x74\xd0\x92\xd5\xc7\x71\x25\xfe\x1d\xd0\x6a\x89\xa8\xfb\xb5\x79\x40\x09\xbb\x5f\xcc\x2b\x32\x33\x00\xf8\x83\x39\xa1\x9e\x8e\x29\xc2\xe7\xa7\xe1\xf0\x07\xda\x3b\x55\x8d\x00\x2a\xaf\xd1\x53\x95\x7a\xc8\x2a\xfd\xa6\x88\xc2\xc3\x53\xfb\x80\xa5\x1c\x9d\x4e\xd9\x5f\xc8\x43\x35\x28\xf0\xd7\x83\x09\xcc\x45\x95\x1c\xea\x13\x90\x1b\xe8\x25\x45\x14\x9f\x6a\x90\x3b\x5d\x25\x57\x58\xcd\x8c\x4a\x79\xc9\x95\x85\x73\x23\x54\xb0\x8a\xa8\x7d\xac\x41\x6e\x66\x93\x9d\x54\x11\x1d\x54\x73\x10\x6e\x2a\x76\x16\xe2\xad\xc5\x97\x7d\xc9\xdd\x34\x7c\x0e\x49\x5f\x82\x8a\x32\x58\xf4\x12\xd3\xbe\x0c\xd4\x5e\xb0\xe8\xf5\xa5\x6f\xaf\x3a\x6e\xec\x4c\x00\x8f\xd0\x41\x99\x84\x49\x0b\xc9\xd7\x2b\x5d\x2b\xc1\x06\xb1\xa8\x6a\xd1\x8e\x9b\x6d\xd3\x3e\x05\xad\x06\x3a\x37\xbe\xb8\x6a\x39\xd4\xd1\xa9\x8a\xab\xd6\x4b\xb8\x6b\x98\xd1\xb3\x89\x01\x8e\xc1\x7c\x0e\x1e\x9a\x5c\x62\xe0\x47\xc6\xc2\x01\xe9\x00\x0a\xd8\xe1\x22\xea\x7e\x21\x0f\x74\xf9\xcc\x7e\x81\xbf\x07\x13\x3a\xfe\x8d\xd3\x4a\x1d\x10\xc6\xdc\xe4\xbe\x0d\x73\x2b\x0d\x53\x28\xbb\x13\x96\xd9\x99\x70\x60\x37\x44\xbb\x68\xa6\x99\x78\x03\xa9\x30\xdf\xea\x0c\x56\xc5\xef\x5d\x06\xd4\xaa\xab\x12\x9a\x71\xb4\x19\x6e\x2e\x41\x2d\xab\x61\x18\xd1\x2a\x85\xf9\x4e\xe3\xd0\x94\x54\x69\x5b\x36\xb3\xf9\xb3\x2a\x4f\x29\xf0\xc7\x66\x7f\x21\x6f\x5b\xfb\x89\x9a\xbc\x37\x6e\x99\xdb\x3c\xa8\x0b\xee\xac\xa8\xfd\xf1\x39\xa8\xdd\x68\xf3\x39\x32\x60\xc2\x52\xa7\xf0\xe8\x6b\x1c\xfb\x0c\x5f\xcb\x2d\x34\x93\x0e\xb1\xdb\xa2\x83\x45\x21\xb3\x15\x3e\xab\x3c\x69\x37\x30\x48\x61\xbe\x55\xa6\x04\x8f\x6b\x2e\x79\xe0\xf6\x12\x7c\xc3\xa7\x30\x1f\x75\x2b\xd1\x47\x16\xa6\x30\x1f\x75\x2d\x61\x9b\xb1\x29\xc8\xaf\x74\x2f\xcd\xa4\xcc\x17\x2e\xf0\x35\x94\xfe\xca\x69\xa0\x64\xea\xa7\x5b\xe4\x14\x33\x69\x95\x3a\x98\x4c\xa8\x14\x10\x25\x1a\xfe\x97\x82\xf5\x87\xa5\x78\xa4\xbc\xc4\xaf\xf4\xea\x35\x53\xc1\x94\x18\x97\x62\x42\x0b\xc1\xa6\x62\xdc\x9f\xd0\x15\x24\x06\x13\xba\x84\xc4\xc1\x84\x9e\x0b\x16\x49\x11\xed\x25\x2b\x53\xa1\xee\x72\x6b\x6f\x25\xac\xaf\xa5\x01\x21\x74\x26\xd8\xcd\x0e\xc1\x66\x7a\x63\x45\x8b\xe9\xb9\xa0\x4e\x24\x99\x9e\x8b\xbd\xc8\xe1\xdf\x50\x13\x55\x14\x94\x74\x5c\x88\x89\x65\xcb\x5a\xdd\xa3\x74\x29\x36\x43\x29\xc6\x2b\x31\x61\x33\x41\x33\x61\xaa\xb0\x19\x6a\x8a\x5f\x08\x76\x53\xc5\x54\x49\xa5\x30\xa4\xdc\xf3\xda\xeb\x2d\x97\x10\xef\x65\x20\xe1\x2c\x13\xe6\xd2\x3f\x72\x62\x13\xf7\xd6\xc1\x86\xd6\x82\xe6\xa4\xdb\x5e\xb1\x50\x8a\x04\xef\xdb\xa8\x31\xa1\x0c\xbf\xa1\xea\xe8\x0f\xea\x34\x3f\x07\xc7\x15\x7f\xe8\x44\xd4\x15\x13\x5c\xbd\x59\xe5\xad\x1f\x0f\xf1\x94\xb3\xdf\x75\xa8\x77\x88\xba\x92\xa1\x0a\x25\x67\xef\x6a\x35\x90\x9e\x31\xdf\x3a\x00\xa9\x1a\x5e\xd2\xb6\x3f\xe7\x89\x22\xab\x5b\xe9\x28\xa1\x40\x79\x32\x00\xa7\x3a\x1b\x82\xe7\xd5\x72\x4b\xd5\xb2\x55\x13\x33\xa4\xe0\x52\xce\xee\xe8\xa6\x92\x67\xa0\xdf\x69\x96\x47\xba\x53\xfb\x13\x8e\xbb\x2d\x65\x50\xff\x1c\x7c\xb3\x22\xd2\xdc\xb3\x04\x74\xfe\x59\xfb\x78\x78\xd4\xa7\x55\x4e\x05\x44\x75\x6e\x04\xcf\xb6\x5d\xce\xb8\x08\x1a\xeb\xfc\xc6\xd1\xd3\xf2\x5b\xfb\x7b\x87\xa7\x9c\x3d\x0b\xbf\xd7\xf9\xd5\x64\xe9\xf0\x2d\x77\x78\xa5\x9c\xbd\xa9\x81\x86\xa7\x51\xca\x99\xa8\x55\x07\x32\xd7\xa2\xd5\x23\x1c\x29\xb4\x94\xb3\x27\xfa\x3f\x55\x52\x0d\x75\x60\x6b\x08\x09\xe9\xb4\x5a\x4e\x80\x95\x50\x77\xf6\x76\xf5\x5a\x9c\xd3\xbf\x3a\x30\xab\x38\x0e\xff\x38\xbe\x57\xe7\xa5\x4e\xcc\x45\xd8\x0b\x2f\x21\x14\x36\x78\x6b\xa3\x7a\xb3\xa1\x67\x82\x5d\x80\x5f\xa8\xda\x5a\xa7\x0b\xc1\x06\x7d\x7a\x2c\x6a\x91\xd4\xe7\x35\xe5\xb5\x9a\x6e\x05\x68\xe0\x61\xf4\x8e\x1b\xde\x03\xe9\x93\x96\xaa\x44\xd9\xaa\xb0\xba\xbe\x56\x98\x02\x8a\x68\x87\x8c\x31\x85\xfa\x41\x4c\x85\x5a\x47\x52\xe8\x2c\x17\x5c\xbd\x10\xe7\xb2\x52\xdf\x1a\x2a\xaf\xfe\xa7\xbc\x96\xd7\x50\xb1\xc3\xae\x6d\x06\xb5\xe0\x76\xb6\x64\xc3\x89\x21\x9a\x7e\xec\x82\x7e\x1d\x6a\x43\xc5\xf1\x3d\xeb\x88\x61\x1b\x6c\x2a\x58\xa9\x12\x45\xac\x7e\x8d\x20\x35\x97\x15\x55\xf5\x50\xeb\x12\xf4\xfa\x5c\xc9\x58\x4c\x6c\x50\xc7\xaf\x3a\x69\xea\xf9\xb2\xba\x22\xad\xd7\xa7\xca\x59\xad\x26\x44\x80\xdc\x52\xb1\xf5\x01\xd0\xfa\xc3\xe9\xa3\xa5\x83\x60\xea\x0e\xa6\x82\x2d\xc7\xd3\xc9\xb0\x88\xe3\xa4\x60\x45\x3d\x6c\x19\xf8\x67\xcb\xa9\xa4\x19\x28\x8f\x94\xec\x7d\x52\xd2\x82\x90\xcd\xf3\xa4\xb4\xf1\xaa\x2e\x05\xf8\xe7\xf0\x1a\x9a\xd6\x90\xec\xb1\x48\x34\xe5\x75\x0d\xe4\xc7\x3e\x60\x9e\xdd\xa8\xcf\x04\xb8\x5e\x80\x05\xda\xb7\xce\xd0\xaf\x44\x10\xf0\x50\xd3\x41\xa8\xfc\xdd\x19\xa4\x8a\x7d\xdd\x51\xc1\xdb\x0f\xb2\xd7\xcd\x1a\x1b\x31\xe2\xbd\x6c\x36\x83\x4e\x39\xd9\x66\xa2\xa9\xa2\xdd\x3e\x49\x77\x15\x85\xa0\x5f\x79\xd0\x57\x7c\xbd\x9e\xf2\x84\xd8\x70\x33\xaf\x05\x95\x6c\xc5\x87\x2b\x6e\xd0\xa0\xd5\xf5\x4d\xc9\x13\x45\x6d\x74\x52\x17\x17\x31\x59\x71\x26\xc9\x7a\x7d\xce\x93\x50\xd9\xe7\xab\x6f\xf5\xb5\x4b\x05\xca\x5b\x75\x67\x90\xc7\xa2\xa1\x4a\x71\x2c\xac\xfa\x84\xac\xcd\x0d\xc6\xa9\xdc\x9a\x03\x4c\x53\xd9\x50\x5c\x91\xc1\xaa\x64\x8a\x72\x26\x31\x88\x1b\x67\x37\x35\xb3\x03\xbe\x6d\x76\xa0\x6b\x36\x07\x82\x56\x0d\xa5\x8a\xfa\x09\x9d\x8e\x27\x1b\x40\x08\x68\xe8\xcd\x05\x15\x8c\xd3\x25\x27\x3a\x11\x36\x22\x17\x7a\x7f\xba\x59\x7a\xd4\x15\xe8\x58\xdc\x96\x7a\xec\x81\x1b\x71\x8a\xb8\xf3\x99\xf5\x15\xe1\xe2\x3d\xd5\xfa\x88\x59\x41\x37\x6d\x4e\x73\x35\x32\xb3\x7d\xd9\xf4\xa3\x85\x88\xe3\x63\xe1\x35\x3d\x02\x65\xb8\x30\x52\xeb\x25\xd8\x82\x05\xca\xd6\x71\xbc\x3f\x78\x54\xea\x20\x60\x20\xe1\xac\xd0\x36\x6e\x27\xc6\xd2\xd6\xda\x35\x8b\x1d\xc7\x19\xf4\xde\xb5\x3b\xb4\xda\xb4\x6a\x04\xa6\x1b\x82\xa4\xcd\x26\x47\x09\xb4\xa9\xb6\x1b\x24\x2d\xb4\x52\x23\xd2\x91\xa5\x5a\x1c\x39\xa2\xd9\x12\x15\xb7\x9d\xa6\x8d\x73\x0e\x1a\x9c\xfe\x4e\xe0\x0d\x75\x55\x4b\xdd\x80\xde\x70\xe2\x6c\xa8\x2b\x5b\xea\xd6\x4e\x26\x1b\xbe\xb6\xb2\xca\x70\xac\xd8\x1c\xdc\xd3\x25\x92\x2e\x75\x92\x83\xdc\x28\x31\x0b\xa7\x42\x23\x1c\x47\xae\xcd\x96\x73\xd6\xc1\x11\x36\x4e\xb3\xa0\xd5\xec\x96\x56\x03\x6f\xa0\x0e\xc9\xeb\x75\x62\x87\x83\xfa\x15\x09\x4a\xf0\xe1\xdc\xf0\x63\x68\xc7\xf4\x2b\x48\xda\x25\x1e\x09\x81\xa9\x84\x24\x81\xda\xb6\x62\xd7\x06\x0c\x42\x24\xaa\x82\xf8\x39\x91\xe3\x39\x05\xa1\x6b\x0f\x5b\xd4\xab\x07\xfe\x28\xf3\xbe\xa7\x58\x62\x3a\xbc\xe0\x0b\x99\x7f\xe5\x33\xe0\xa7\x92\xca\xa9\x6b\x62\x0e\xc2\x4a\x49\x3e\x8e\x5b\x6a\x3b\xd7\x31\x4c\x12\x3c\x20\x65\x6f\xc6\x2f\xc0\x55\x39\x9f\x79\xa2\x59\x0d\x11\xd8\x8d\xf3\xdb\x56\xc1\x17\x1e\xa8\xf6\x3d\x12\xe8\xc9\xe3\xd1\xbb\xf3\xd4\x45\xd7\xbc\x61\xe3\xca\x3a\x6b\x92\xd6\xe6\xc0\xb6\xe5\x07\x41\x22\xc4\x81\xea\xa4\x8f\xe3\xfe\x67\xd3\xb8\x26\xe1\x78\xaf\xe2\x24\x17\x1d\x67\x82\xe9\x05\x96\xeb\x75\x92\xe8\xdb\x2d\x33\x49\xdd\x41\x29\xa7\x91\xa5\x2b\x22\x42\x75\x6b\x8c\x1c\x90\x6b\x52\x0c\x7c\xf1\x4a\x30\xc1\xaf\x5a\xe3\xd0\x7c\xe4\xd9\xe7\xe3\x6c\x39\xb2\xbf\xe9\x71\xb6\x0c\x54\x13\x5e\x06\x64\xd4\x2b\xa0\xbd\x82\xa0\x1a\xcd\xf8\xf0\xfc\xaa\x73\xc2\x35\x7d\x05\x3e\x3b\xe1\x14\x36\xdf\xaf\x94\x25\xc3\xfd\xab\x0b\x66\xac\x10\xe8\xa2\x69\xe4\x6f\xa9\x62\x38\xc0\x3d\x83\xa7\xdb\xaf\x19\x61\x6d\x1b\x91\x61\x75\xcb\x6a\xed\xf6\x09\xc5\x0c\xe4\x45\x9b\x67\x61\x4e\xd9\x04\x33\xfc\x13\xd6\xaf\x35\x5d\x23\x81\x91\x1b\x9d\xc2\xc8\xc6\xb1\xa3\x29\xea\xb0\x38\xa6\xad\x75\x78\x8c\xfc\x44\x7c\x40\x3e\x64\x5a\xa7\x0f\xf6\x07\x8c\xb1\x3f\x79\xb0\xad\xc6\xb1\xa5\x5a\x36\x08\x16\xb7\xa4\xcd\x89\x08\x4c\xa2\x3d\x87\x09\x43\xe6\x77\xfb\xf4\x0c\x5c\xcf\xbc\x58\x64\x73\xfe\x7a\xa5\x4b\xde\xcc\x3c\x31\x97\xf5\x46\xde\x47\x10\x06\x41\xde\x97\xa3\x82\x7f\x09\x92\x3f\x2b\xb9\x5a\xda\xe7\xd7\x6a\x66\x8e\x39\x9f\x35\x95\xc5\x6a\x51\x7d\x19\x1f\x4b\x93\x3c\xb7\x8d\x9c\x63\x0b\x57\x2e\xfd\x06\x6c\x2c\x2f\xb9\x7b\x3e\xb9\x50\xb9\xf8\xec\x9e\x5e\xf1\x79\x16\x96\x62\xcc\xc1\x6e\x9f\xce\x55\x3e\x7b\xac\x78\xe6\xd2\xef\xb0\x45\x9b\x7c\x2e\x66\xc1\xd3\xc9\x32\x13\xe1\x23\xd8\x73\xdb\xe7\xa7\x00\x61\xfd\x29\x78\x1b\x33\xc2\x06\x6c\x8e\x6b\xe3\x5c\x0a\xfd\x11\xa5\x65\xdd\x3e\x2d\x72\xc1\x9f\x16\xd9\x62\xe9\x1e\x7e\xf1\x45\xd6\x3b\x0e\x24\x5d\x27\xa4\x5a\x5e\x64\x88\x1e\x9d\x9d\x9d\xe4\x5f\xa1\x9f\x57\xf9\x4c\x5e\x41\xe6\x57\x70\x3d\x02\x29\x29\x17\xf0\xb9\xbc\x28\x5e\x57\x2d\x81\x4f\xa6\xe0\xb9\xd4\x72\x59\x7b\x54\xf2\x33\x7f\xe6\x7c\xfd\xd4\xb3\xd0\xdb\x4f\x95\x77\xec\x1d\xfa\x54\x79\x5b\x6d\xb9\x69\xb1\xa1\xff\x08\xe6\x4d\xf7\x69\xb4\x28\x23\x0a\xf6\xfa\x34\x7a\x1d\x05\xd7\xab\xa7\xcd\xe0\xf8\xb8\x77\xeb\xf5\xda\xfb\xf6\xae\xb9\x17\x8f\xac\xd3\x8a\x28\x15\xeb\xb5\xf3\x6f\xd8\x0d\x6b\xf4\xd1\x80\xf0\x64\xcb\xbc\xdd\x2c\x8f\x13\x31\xe6\x93\x51\x12\x45\x7b\x9a\xf4\xb4\xca\x17\x09\x49\xf5\x5e\xb4\xfc\x12\x05\x4a\xb8\x96\xf0\xf7\xb6\x45\x10\x42\x12\x42\x36\x5e\x17\xa6\xa4\xcd\xa7\xa5\xf0\xbe\x2a\xd1\xc3\xb9\x5b\x93\xd1\xfe\x7e\x64\xce\xcf\xa7\x22\x11\x54\x8f\xc5\x84\x2a\x32\x8c\xce\x0b\x99\x81\x82\xb4\xf5\xba\x36\x2d\xcb\x23\xc8\x22\xce\xb5\x74\xd5\x30\x95\x24\xe5\x63\x31\x61\x72\xb3\xb1\xfe\x83\x3f\xf3\xeb\x32\x39\x11\x3b\x5c\xef\xfc\x23\x5a\xf2\xc1\x51\xa1\xde\x43\x7d\xaf\xc7\x3a\xe9\x93\x06\x4f\x8e\xf7\xca\xd5\x19\xba\xaf\x4f\x06\x84\x9e\x88\xb1\x9e\x30\x40\xd7\x86\x78\x5f\x2e\x1f\x05\x93\xc9\xcd\x82\x8b\x55\xae\xf9\x02\x86\xf9\x26\xb3\x8b\xec\x2c\x2b\x71\x8f\x50\x76\x61\x9b\x1f\xbe\x38\xe3\xb0\x56\x2e\x20\x37\x5f\xcc\xe1\x47\x2c\x57\x30\x89\x3e\xf3\xeb\x39\x17\x76\x2d\xc0\x9a\x5e\x70\x0d\xad\x2d\x33\x95\xc1\x84\xc6\x40\x16\xb0\x02\x54\x36\x85\x3a\x57\xf0\x89\x50\xf1\xed\x99\x08\x5d\x5b\xe4\xe7\xc9\x47\x03\xb8\x27\x1b\x2a\x8f\x7a\x48\x29\xdd\xe6\x33\xb0\x69\x29\x74\x78\x9f\x50\x4e\xa3\x28\x20\x7e\x76\xbf\x1c\x3a\x25\xf4\x4e\xfc\xea\x0d\xde\xeb\x13\x1b\x81\x7b\x3b\xa4\xd9\xce\x86\xe3\x38\x3a\x3d\x05\x7f\x2c\xb9\xd8\x5d\xab\x09\xfb\xbd\x81\xb5\x15\xb3\x10\xc1\xfc\x8d\xe3\xed\xe0\x75\xb6\xa8\xf9\xfa\x01\x31\xfd\x0e\x88\xc3\x27\x15\x9a\xf7\x31\x26\x59\x35\xcd\x23\x47\x59\x6d\xc7\x99\xd3\xbd\xbc\x6c\x72\x34\x33\x21\xa4\xf5\xcb\xf6\x65\xe1\x0f\xc9\xd0\x4d\x9d\x67\x51\x82\x1f\xb9\xe9\xd6\xf3\x7e\xa9\xa6\x5b\x79\x2b\x95\x6f\xe5\x9d\x4b\xb5\xc8\xf4\x56\xb6\xc8\x16\x9e\x13\x99\x97\x65\x2e\xe6\xfb\xe0\x33\xce\xc7\x12\x18\x34\xdd\xfe\xf7\x03\x54\xbc\x11\xa1\x47\x13\x43\xdd\xb0\x87\x35\x53\xa6\xf5\x7a\x30\x68\xd8\x36\xa5\x0d\x0f\xac\x64\xa8\xd9\xc5\x58\x4f\x86\xed\x71\x86\x21\x98\xf0\x73\x91\x40\x2c\x61\x5e\xbb\x51\xbf\x13\x35\x95\xde\x3f\xbc\xc6\x48\x4b\x50\x86\x84\x83\x67\xd7\x56\x4f\x3d\x8e\x52\x1c\xb9\x84\x75\x7b\xd9\x30\x7a\x33\x37\x5a\xaf\x7c\x52\x73\x1b\xbb\x5e\xf3\xde\x99\x9c\x5d\xdb\x50\xe0\x81\x2f\x57\xcc\xae\x60\xfc\x1b\x75\x92\xa5\x4a\x86\x60\x4b\x53\x73\x61\x53\xf7\x43\xe3\x3d\x8d\xf8\x97\x5f\x84\xd8\xa6\x8a\x41\x63\x43\x17\x16\x4c\xa1\x6d\x1c\xd2\xe6\xde\x4f\x0d\x3a\xd9\xe4\x7b\x2a\x74\x4a\x63\x51\x4b\xf9\x23\x70\xdc\xf8\x93\xd7\x99\xbb\x31\xef\xa5\x8a\xda\x43\x4f\xef\xf3\xcd\x90\x33\xb1\xe1\xa9\x65\xc5\x0d\xed\xd5\x40\xf0\x2f\xfa\x04\x0d\xe7\xc8\x8d\xb9\x8d\x04\x19\x2e\x2a\xde\xc6\xe4\x57\x86\x6c\x1b\x65\xa3\xde\x6f\x00\x72\x15\x2e\xa9\x0f\x22\xa9\x4e\x1a\xce\x50\x57\x98\x6a\xf6\x87\x48\xc8\x50\x87\x36\x20\xbc\x67\xd6\xf8\x8b\x23\x95\x2d\x1c\xf6\x87\xe4\xc6\x0c\x8d\x0d\xca\xd7\xb2\xee\x6c\x5c\xa2\x8f\xa8\x81\xec\xb4\xf0\x7a\x17\x8a\x9f\xdb\x11\x53\xe4\x46\xd8\x00\xb8\x5d\x67\xf4\x0e\x5f\x4f\x38\x6b\xbc\x4f\x7c\x4c\x3a\x7f\x85\x09\x5d\xfc\x84\x7c\x52\x33\xc0\x2e\x96\x41\x98\xae\xfb\xf6\xf1\xd7\x96\x38\x4e\xaa\x70\x07\xf0\x04\x01\x51\x43\x45\xb8\x92\x67\x6a\x7a\x51\xcb\xd2\xbc\xa8\x3d\xaf\x54\xfd\x79\x99\x95\xe5\x95\x54\xb3\x2a\x93\x34\x62\x02\x1b\x7a\x02\xfc\xcc\x43\x8d\x46\x10\x27\x54\x83\x3f\x12\x2c\xba\x13\xd1\xdf\x05\x8b\x7e\xb8\x13\xd1\x4f\xe6\x71\x14\xd1\x9f\xcd\x6f\x37\xa2\xbf\x59\x13\xf9\xb7\xa2\x11\x85\xef\x8e\x68\xf5\x59\x61\x63\x18\xa7\x96\xde\x5f\x7a\x6e\xb7\x0d\x5c\x6c\x25\x04\x0e\x46\xb7\xf3\x74\x75\xcf\x07\x55\xda\x6c\xdb\x83\xfd\x2a\x42\xcf\x61\xf5\xb0\xc7\xeb\x75\x84\xce\x8a\xdd\x93\x90\x18\xad\xc1\x87\x4c\x6e\x99\x36\xfe\xb4\x0c\x3d\x48\xb7\x94\xfe\x9b\x13\xcc\x39\x44\xf8\x56\x8d\x9d\x15\x7a\x78\x04\x62\x00\x46\xd1\x7a\x55\x2d\xb9\x7e\x9f\x2f\xb8\x5c\xe9\x51\x95\x74\xae\x7c\xb9\x6a\x7d\x67\x5a\xf0\x4c\xb9\xb7\xc2\x07\xfb\x5e\x35\xa6\x5a\xf9\x2d\x0c\x41\xe5\x43\x08\xda\x11\xee\x08\x4e\x50\xe0\xb6\x21\x60\x7d\x04\xc1\xe2\x70\x89\x6d\xb6\xb7\x38\x01\x8d\x9b\xf6\x96\x8a\x5f\xe6\x72\x55\xba\x4d\xa5\x32\xee\xec\x0f\x39\x6e\x43\x0f\x6a\x27\x4b\xe5\xcc\x6b\x96\xe9\x0c\xe8\x14\xc6\xd8\x91\x21\x76\x18\x63\x3f\xdb\xdf\x4f\x78\x5f\x06\xf2\xb8\x72\x10\xa5\xf7\xf7\x91\x49\x61\xaa\xfc\x2e\xe2\x58\xef\xed\x6d\x5a\xa0\xa8\xd9\x08\xc3\x59\xa5\xd8\x71\xa6\x2f\x7a\x2a\x13\x33\xb9\x08\x1d\x9d\x1d\xde\x73\xa1\x74\x0e\x08\x95\x8a\x45\xa7\xa7\x10\x8e\x17\x6c\x3a\x44\x56\x38\x53\x9d\x3b\xd1\x9e\x52\x34\xaf\x2a\x00\xb3\xf3\x97\x4c\xcc\x0a\xae\x4a\x2c\xcd\xaa\xd2\xa7\x8e\xc9\x82\x2f\x56\xc3\x52\xaa\x30\x68\x9b\x54\x20\x4f\xad\x74\xa1\x03\x7f\x11\xa1\x75\xf1\x50\x20\x2a\x35\x13\xe3\x4c\x4d\xd6\x6b\x61\x5e\xf5\xae\x99\x3d\x8f\x89\xfa\x79\x0b\xf3\xde\x11\x90\x86\x72\x77\x29\x6b\xdf\x8d\xc7\x11\x8c\xa3\xf3\xfe\x61\x87\x4b\x20\x5c\xfe\x4c\x1d\xda\x6a\xd5\x36\x2a\x98\x79\x95\xd4\x0e\x8d\x36\xa3\xec\xa9\x0a\x82\xf6\x98\x93\xdd\xb4\xbb\x5e\x73\xd3\x05\xb2\x5e\x7b\x4b\x68\x14\xf0\xd8\x24\x70\xd9\x6c\xda\x27\xbd\x07\x05\xef\xc1\x47\x59\x22\xe2\x47\x66\xab\xa0\x41\x3b\x0f\x0d\xda\xc3\xb8\xf5\x75\x6a\xf1\xf0\x30\x34\x9a\x5d\xa9\x5a\xd0\xad\x1c\x10\xec\xa6\xce\xd2\xc6\x1b\x39\x77\x71\x47\x54\x63\xf3\xbc\x50\x18\x1f\x74\xe6\x3d\x23\xcc\xd4\xd0\x9a\xa6\x51\xc1\xce\x15\x55\xde\x74\x99\x4a\x66\xe3\x09\xe4\xa2\xb3\x54\xa3\xa5\xb2\xb1\x2e\x96\xb5\x83\x9f\xe6\x4c\x3a\xba\xaa\x0a\x27\xaa\xe2\xd8\x5c\x14\x18\x63\x72\xcc\x27\x10\x54\x14\xbe\x93\x31\xb5\xcf\xad\xdd\xf3\x60\xa8\x1f\xb1\xcc\x54\x54\xfb\x1a\xab\xe6\xfb\x7a\x02\x26\xd0\x43\x0f\x1e\x93\x76\xce\x73\x3a\x78\xa4\x47\x83\x7d\x4f\x4a\x41\x97\xcf\x54\xa8\x0c\x6a\x96\xa9\x53\x78\x5c\xec\x2c\x39\x56\x6c\xfc\x90\x0e\x0e\xe9\xc1\x7d\x7a\x78\x30\xa1\x73\xc5\xfe\x8c\xe3\xe8\x69\xe5\x76\xaa\xe1\xcb\x8c\x5e\x5a\x44\x9a\x6a\xee\xac\x3e\xb6\x26\x3f\xee\x39\x8e\x93\x4b\x55\xb1\x08\xc3\x6a\xd8\xf7\x6b\xfc\xcc\x7b\xfe\x45\x37\xda\x8f\xe3\xee\xa5\xa2\x8f\xa1\x3c\xe9\xce\xd5\x7a\x7d\xa9\xe2\xf8\xc1\x23\xf3\x7f\x30\xf8\x89\x5d\x2a\x42\xaf\x14\x6b\x33\x25\x38\x3c\x20\xf4\xab\x62\x37\x67\xfc\x5c\x2a\x0e\x7e\xb0\xd2\x6f\x6b\x7d\x44\x52\x3c\xa9\x5e\x88\x2a\x15\x90\x7a\xc1\x2e\x65\x90\xa8\xee\xb0\x0b\xd5\x19\x9d\xc2\xa3\xf7\xc7\xe5\xb5\x13\x27\x1b\x1a\xbc\xf0\x5c\xcc\xbe\x0f\xc2\xa7\xb5\x77\xea\x40\xd6\xcb\x76\xc0\x09\x9c\xc4\xa6\x73\xb1\x1d\xbe\xc4\x2a\x9d\x8a\xc0\x0b\x57\x0d\x6e\x64\x3c\xfd\x5b\xc8\xad\xee\xd3\x0e\xd8\xa1\xf4\x7b\xa1\xbf\xd5\x17\xda\xb7\xe1\x47\x05\xa6\x7f\xdd\x01\xa7\xf7\xb4\xa3\x07\x58\xfc\xbd\x5d\xb0\xde\xec\xfe\x55\x1f\x36\xf4\x54\xd5\x62\x04\xbf\x56\xad\x14\xa0\x55\xca\xc1\x8d\x63\x7f\xd0\x65\xec\x58\xf9\x6b\xb4\x76\xe6\x1d\xa4\xa1\xcf\x63\xf7\x99\x83\x83\x87\x70\x14\x39\xd3\xbe\x86\x72\x50\xab\xda\x0d\x72\xb5\x7d\x34\xa6\xed\x50\x76\x95\xec\x27\xd8\xb4\xb7\x48\x3b\x30\x16\x44\xd3\x44\x62\xb6\x97\xc0\xdc\xb1\xda\xb4\xcc\xfe\xf1\x05\xd0\x00\xc2\x02\x55\x53\xaf\xfa\xaa\xbe\x4f\x29\xca\x1c\xdf\x73\x45\x78\xda\x44\x5d\x73\x92\xa1\xf0\x2d\x67\x5f\x55\xaf\xb9\x00\x7c\x7c\xf2\xe6\x8b\xa0\x96\xd3\x7c\xe5\xb9\x98\xed\x7c\xc1\x6a\xd7\x6d\xbd\x83\x33\xca\xdf\xf8\x72\x77\xc5\x03\x62\xea\x8b\x1a\xc1\xf0\x43\x14\xa1\x96\xaf\x35\xac\x7d\xe2\xf8\xe0\xe0\x21\xb0\x0d\xed\xc0\xb6\xbc\x05\xdd\xf2\x07\x4e\x3e\x4a\x1e\xab\x38\x8e\x3e\x4b\x08\x04\xd3\x43\x93\xa8\x38\x4e\xbe\xa8\xf5\x3a\xef\xb2\xb6\x97\x47\x39\x6b\xe6\x3f\x17\xb3\x38\xfe\xa2\x40\x36\x65\x0e\x5d\x92\x26\xe7\xaa\x3a\x4f\x93\xa5\x62\x8a\xec\x3c\x52\xcd\x48\xf7\x09\xa1\x39\x3b\x53\x81\xae\x4d\xee\x3d\x1e\x8c\x72\x98\x1b\x4c\xa6\x4e\x7c\x27\xd9\x7b\x95\x60\xb8\x15\x57\x46\xe8\x4b\x9d\xe4\x84\x4a\x96\x93\x14\x45\x64\x34\xe1\xec\x5a\x8d\xea\x0e\x7d\x77\x4f\x06\x18\x53\x8b\x98\xf7\xca\x85\x49\x0c\xd6\x85\x13\xde\x1d\xc0\xe2\x01\xd3\x2c\x24\x7f\x12\xb3\x66\xfb\xf4\x4a\xd9\x57\xaa\x43\x21\xf5\x8e\x6f\x34\xc0\x49\x18\x63\x57\x2a\x8e\x4f\x95\x25\x9c\x1a\x0b\x09\xe9\xb4\x0d\x4a\xbb\xb7\x3c\x11\x7f\x71\x84\x4c\x13\x6c\xbc\x83\x75\xe7\x2a\x8e\xed\x7e\x31\x4a\x38\x0c\x85\xa1\x8a\xce\x15\x73\xb4\x12\xac\x2a\xca\x49\xda\xa6\x1e\x68\x75\xb7\xda\xd4\x01\x2b\xb5\xc1\x6e\xa2\x7b\xd6\x88\x65\xbd\x06\x02\xd7\xa6\xac\x99\x0b\x84\x63\xb2\x15\xe2\xd8\x55\xb0\x11\x9c\xa6\x17\x99\x39\xe4\x1f\x61\xca\xe9\x6f\x78\x3b\x49\x93\x89\xae\x8e\x00\xb9\xae\xa0\x8d\x12\x70\x55\x36\x5b\xd0\xee\x18\xd1\x60\x9e\x6b\x3b\xcf\x71\x08\x70\x60\x6e\x19\x07\x32\x4a\x12\xcd\x16\xe1\xdc\xfc\xaa\x7a\x01\x09\xe2\xe4\xe5\x38\x13\xb9\x99\x88\x9a\x90\xd4\xaa\x57\x38\x29\xf2\x08\x8d\x71\x40\xee\x20\xd3\xb1\xa4\x7a\xb2\xd9\xd0\x97\x8a\xdd\x00\xbf\x32\xed\xf6\x29\x1c\x59\xf6\x57\xe7\x0b\x48\x47\xee\x61\x1f\x80\x8e\x90\x1d\x9e\xe5\xc0\x17\x5f\x48\x81\xd2\x33\xbc\x5f\x23\xc7\x1b\xd9\x15\x26\x0d\xd1\x0a\x80\xfb\x0d\x6c\x0f\xe0\x7e\xf3\x02\x7f\xbe\x00\xe7\xdc\x7d\x65\xa5\x20\xfb\x8a\xf3\xcf\x69\xb7\x1f\x18\xb8\x3e\x57\xff\x29\x3f\x26\x60\xc5\x8c\xba\xdd\x97\x6a\x8c\xcc\x93\x49\x5a\xe7\x9d\xa0\x60\xd1\x60\x01\x54\xc6\xbf\xf3\xc4\xb6\xea\xe5\xb5\x63\x1a\xf2\x6e\x3f\x9b\xad\x43\x54\xf0\x8e\x8a\xde\x4e\xd1\xab\x6a\x70\x44\xaf\x96\x1d\x64\xa2\x54\x6a\xed\xb5\xf3\xb9\x42\xcd\x3f\xaa\x2e\x73\x4a\xb8\x21\xc1\xab\x49\x72\xa2\x7a\xd8\x80\x55\x9c\x20\x18\x7b\x3d\x72\xca\xf2\x12\xa2\x26\x81\x27\x1f\x8a\xee\xd1\x9f\xda\x55\xfa\xb9\x79\x93\xf9\x08\xa3\xf0\xbc\xe6\x69\xe5\x99\xbb\x68\xbd\xe6\x09\x5c\xba\x3c\xb3\x35\xb8\x8d\x3d\x51\x7e\xf3\x70\xdf\x0d\x1d\x7d\x21\xf6\xdf\xd4\x29\x8e\x77\xe6\xda\xf4\xd4\xec\xe6\x4f\x15\x1c\xd5\xd3\x0b\x38\x69\x93\x48\x0a\x67\x7f\xe6\xfa\xf0\x87\x22\x06\x5a\x0b\x78\x00\xdd\x1f\x0e\x3a\x7b\x0a\xc0\x0d\x30\xb4\x5e\x8b\xe3\x67\x2a\xf9\xac\x08\x81\x50\x58\xff\x98\x34\xe5\x14\xbc\x85\x11\xba\xe2\xe4\xb9\xd7\x0a\xaa\x34\xc9\x32\x9e\x7c\x44\x7f\xa2\x56\xe7\x69\x55\x53\x84\xf2\x3c\x62\x3f\x30\x56\x9e\x0e\x6e\x06\x12\xd3\x2f\x40\x2d\x4d\x9e\x2a\xa6\x49\x2f\xd3\xdf\xea\x1b\xc1\x89\x63\x4f\x57\xd3\x40\xc0\x4c\xf6\x3d\x6c\xce\x17\xcb\x11\xab\x8c\x6e\xf1\xc1\x9f\xd3\x0e\xfb\x88\x80\x80\x89\x1b\x0e\x16\x68\x40\x37\x6a\x87\xae\x9e\x7e\x09\x2a\x57\x31\x5e\xd7\xeb\xb6\x61\xc6\x57\xcd\x75\xeb\x8d\x62\x5f\x84\x7b\xc1\x1c\x9f\xdd\xd6\x2b\xdc\x7a\xfd\xf0\x51\xfb\xdd\x0e\x2f\x77\x47\x75\x92\xec\x44\xd1\xd3\xbc\x84\xbd\x10\xb0\x79\xb2\x5a\x2e\xa5\xd2\x7c\x96\xbe\xf9\x4e\x62\x8d\xe9\x51\x61\x80\xb4\x5e\x2e\xe0\x9a\x5d\xed\x34\x72\xd7\x4e\x53\x61\xdf\xf4\x37\x07\x97\xfc\x16\x15\x79\x1c\x47\x20\xff\xf1\x21\xad\x09\x5e\xc9\x9f\x28\x1f\x63\xf1\xb9\x4a\x24\x4c\xc0\x37\x8a\x64\xec\x17\x2c\xb8\xc9\xd8\x0b\x64\x13\x94\xec\x6f\x05\x84\x58\x12\x82\x53\x0b\xaa\x9b\xdf\x1e\x54\x57\x6e\x05\xb7\xb4\xa0\xc4\x71\x92\xb1\x0f\xa8\x0a\x95\xc1\x43\x86\x0a\x2a\x6e\xc8\xfe\x51\x49\x06\xf8\x19\x96\x71\x5c\x26\x9c\x4a\xaa\x09\x0d\x67\x63\xc2\x99\xac\xc7\x95\x22\x66\x4f\xae\xe2\x6c\xc6\x71\xc0\x76\x75\x81\x8e\x4f\x78\x22\xa9\xcb\xa7\xd2\x06\xd9\xda\x6c\xe8\xef\x8a\xdd\x00\xcd\x0f\x76\x5d\xe9\x4d\xd3\x2b\x99\xd9\x62\x8f\x7d\x79\xd4\xbc\x23\x37\xad\xb2\x40\xab\x6d\xb2\xa1\xf0\x00\x46\x5f\xb7\x34\x69\x8d\xc2\xbe\xb3\x49\xab\xc5\x76\x0b\x9c\x6f\x82\x1a\x5b\xcd\xb6\x59\x7a\x35\x9a\xbe\x05\xde\x37\x41\x8d\x7f\xd3\xf4\x86\x7e\xaa\xaf\x99\xdf\xbf\xb5\x32\xa8\x24\x56\xf9\x2d\xe8\xbe\x5d\xe3\x61\xdb\x26\x8b\x66\xac\x42\x57\xa3\x8e\xcd\x01\x2f\xa1\x18\x38\x3d\x39\x3c\x88\x25\xfa\xbe\x6b\xd8\xc1\x8b\x9a\x75\xfb\x7a\xdd\xcd\xe2\xb8\x9b\xd7\x84\x78\xf9\x39\xe8\xca\xe1\x3a\x05\xe5\x4c\x95\x42\x4e\x5d\x26\x39\x92\x3e\x5e\x5a\xce\xaf\xd6\x6b\x69\x79\x92\x28\x03\x72\xcb\x3c\x1b\x25\x19\xd3\x8e\x37\x9a\x68\x54\x2d\xdf\x02\xca\x9b\xdf\x93\x51\x09\xbb\x04\x1c\x36\x71\x9c\x68\xf3\x56\xce\xae\x81\xe0\x42\xbe\xa5\xae\xf8\x96\xda\x2a\xa9\x27\xd6\xa7\x31\x49\x33\x3c\x5f\xb3\x90\x79\xed\x7a\xb5\x85\xc0\x3a\xd6\x09\xee\x08\x77\x34\x9d\xb2\xdf\x55\xaf\x9a\xd7\xb4\xf0\xcf\x30\xe1\xe8\xca\x8e\x45\x04\xdb\x49\x38\x0e\x5d\x8c\x9e\x12\x8e\x5e\x17\x03\x66\x96\xec\x57\xdb\x70\x38\x05\xb1\xe9\x70\xbe\x9b\xc6\xed\x33\xaa\x12\x70\x1b\xfb\x37\x1b\xc9\xb4\x50\x49\x66\x2e\x40\x56\xf7\x05\x73\x34\xa1\xc9\x94\x95\x01\x5d\x32\xa5\x99\xa5\x57\x81\x1e\x59\xed\x45\xd6\x40\x73\xea\x3c\xec\x71\x3a\xad\x0f\x02\x93\x34\x11\xb5\x46\x0a\x4f\xf4\xba\x46\xac\x6d\xa8\x70\x8d\x48\xda\x18\x49\xc6\xe9\x8a\x69\x9a\x28\x96\x91\x38\x5e\x11\x2b\x13\x2d\xd8\x8a\x72\xd6\xa7\x19\x2b\x99\x1a\x66\xc3\x8c\x9d\xea\x24\x23\x84\xef\xed\x01\xeb\x34\x63\x7d\xaa\x59\x31\xd4\x43\xeb\x74\x92\x64\xb6\x64\xd8\x7f\xc4\xf7\xb3\x21\x29\x4d\x7e\x49\x28\xdf\xdf\x77\xf9\xd9\x3e\x1f\x92\xc2\xe4\x17\x84\x66\x2e\xdf\x54\x80\x13\xb3\x64\x8c\x15\xeb\x35\xfc\x04\x7a\xa0\xee\xf2\xee\x1a\xb4\x0d\x6c\xca\x40\x0b\xb3\xb4\xa4\x19\x40\x5e\xd2\x92\x8d\x27\x43\x15\xc7\xaa\xcb\x58\x51\xc5\xad\x4f\x78\x4d\xc1\x74\xbd\xe6\xa6\x9c\x0c\x89\xb5\x8f\x50\x84\x2a\xd3\xb8\x42\xf1\xb3\x32\xad\xac\xe2\x78\xb5\xd5\xca\xaa\xb5\x15\x85\xad\xac\x08\x5d\x99\x56\x56\xd8\xca\x8a\xf5\x87\xab\x47\xde\xa4\x62\xb5\xb7\x47\xbe\xe8\xa4\x1c\xaf\x42\xe7\x9a\x53\x57\x57\x55\x4e\x3b\x57\x06\x2f\x5f\x74\xa2\xa0\x6a\xe5\xb4\x53\x38\x5a\x7e\x3c\xa5\x62\xb2\xd9\xc0\xa9\xf8\x73\xbb\xfc\xcb\xea\x14\xe5\xe5\xc8\xa7\x1a\x17\x58\x47\x9d\x5a\xe1\x6c\x1f\xa7\xfe\xe0\x07\x93\x31\xf8\x41\xdb\xee\xf1\x38\x36\xab\x5a\x6f\xe8\x6f\xca\xc5\x89\xaf\x3c\x7e\xd5\xd5\xa5\x2a\x9a\xf5\x6d\x45\x0d\xfd\x8c\xc9\x2a\x70\xb8\x59\xdb\x5b\xba\x2a\xd6\xb5\xab\x13\x6d\x6e\xa9\xb2\xf8\x62\x5d\x57\x9d\xf5\xb1\xeb\x41\x79\x0a\xc2\x53\x86\x19\x1a\xf5\x7b\x2c\x6a\x41\x2b\xb9\x76\xc9\x35\x74\x36\x8c\x77\x7f\xa8\x2a\x37\xa8\x6a\x6f\xcf\x50\x21\xdd\xdf\x94\x0d\xf5\x4e\xc5\x18\x04\x31\x5d\xd3\x99\xb1\x79\x98\x50\x8d\xbf\xa4\x6a\xc9\xeb\x93\x18\xc0\xee\x20\xbf\x7d\x37\xbf\x7e\x30\xf8\xa9\x9d\x5f\x4f\x7f\x55\xec\x06\xa9\xa8\xef\xbb\x7d\x61\x38\xd6\xfa\xed\x0b\xf3\xbe\xc1\x19\xad\xe2\x50\xb8\xd0\x18\x78\x09\xab\x5f\xbf\xb6\xc3\x73\xdc\x7a\x21\xa3\x7f\xda\x5b\x13\xb7\x5c\x1f\x6d\x7f\x85\xac\x5d\x6b\x94\xac\x87\x53\xf5\x27\x98\x1e\x55\xf8\x48\x1f\x82\xef\x65\xaf\x6c\xa3\x53\x5d\x3f\xd8\xbc\xb7\x67\xe9\x66\xc8\x9f\x6a\xbd\xfe\xd3\x2c\xff\x3f\x44\x22\xac\xaa\x78\x70\x27\x40\x96\x78\x2e\x12\xc1\xfe\x54\x24\x8e\x7f\xc1\x5a\xec\x06\xc3\xfd\x88\x5e\xbd\x26\xe5\x62\x16\x66\x3e\x17\xb3\x4d\x0a\x6a\xb7\xd3\x0b\xa9\xc0\x9f\x71\x22\x58\x22\xea\x50\xc5\x71\x23\xa3\x7e\xf8\x3a\xe7\xca\x73\x6e\x43\xe9\x82\x17\x42\xd2\xab\x1a\xa5\x98\x7c\x8d\x6a\x2b\xa2\x17\x3e\x52\x18\x24\xf8\xb4\xe8\xf9\x34\xe6\xfa\x17\x82\xa7\x0d\xd5\x32\x8e\xdf\xaa\x44\x4b\xea\x11\x62\x06\x85\x36\x6f\xc8\xbf\x2a\xdb\x51\xca\xc1\xc3\xa9\xbf\x22\x5b\x9a\xde\x1b\xab\xb0\x3f\x95\xbb\x28\x13\x94\x84\x49\x59\xa3\xa6\x7e\xfd\xce\x7b\x06\xcd\x1b\xb4\x4b\x7d\xe4\x2b\xbd\x9f\x91\x4a\x1b\x24\x0d\x6a\xdb\x49\xd6\xcd\x09\xb9\xe1\xe9\x4d\xce\x5e\x0a\x64\x38\x5e\xf4\xdc\xfc\xf7\x42\xe2\x8c\xf5\x87\xd9\x23\x2f\x2a\xcc\xec\x02\xcf\x41\xc9\x5c\x8e\xb3\x09\x21\x37\xb9\x99\x9e\x15\xe3\xb7\xdb\xdf\x98\xc6\xc1\x1b\x7c\x9b\x11\x6f\xde\xbc\x23\x35\x02\x98\x98\xdb\x4c\x4e\x02\x55\x94\x7c\x4b\x15\x25\x8e\x93\x3f\x15\xcb\xcd\x4a\xd1\x6e\x99\x90\x6d\x9b\x5e\x2d\x19\x97\xcc\x2e\xab\xad\xb8\x26\x28\x13\x30\x8b\xab\x5f\xb7\x06\x0d\x2c\x6b\x5b\x0c\x73\xbd\x45\xad\x5f\x40\xe6\xea\xae\x64\x02\x97\x9c\x40\x79\xa5\x5a\xe6\x69\x7e\x9e\xdc\x71\x86\x87\xbb\x0d\x93\x9d\x25\x06\x36\x55\x13\x78\x6f\x86\x27\xbd\x5c\x98\xed\x19\x4d\x34\x8b\xd5\x3c\x17\xa0\xdb\x9d\x44\xef\xd0\x91\x38\x57\x41\x51\xe7\x24\x5f\x2c\x0b\x1e\xe6\x3c\xf7\xd4\x58\x98\x8b\xcc\xa6\xda\x9b\x00\x7c\x98\x13\x88\x16\x83\xec\x70\xf3\x22\xf4\x8a\xad\x14\xfd\xca\xa6\x8a\x9e\xb2\x42\xd1\x16\x68\xcb\x27\xc0\x2e\x49\x6e\xb6\x40\x4b\x2f\x04\x6d\x85\x2e\xfd\xa4\xe8\x16\x80\xe9\x91\xa2\x5b\x30\xa6\x52\xd2\x76\x30\xd3\x57\x6a\x43\xa8\x35\xa1\x40\x37\x9d\x92\x8d\x27\x34\x93\x6c\x3f\xd8\x54\x4b\x99\x70\x72\xd3\xff\x29\x93\xe0\x44\xcb\xf9\xbd\xcf\xe5\x38\x93\x13\x8a\x3f\x96\xe6\x96\xfb\xfb\x01\xfb\x62\x6a\x77\xe3\x5c\x8e\xf7\xf6\x4c\x25\xff\x32\xad\x9a\x41\xf6\x54\x21\xd9\xcd\x86\xae\x24\xbb\xb1\xf9\x69\x21\xcd\x55\xad\x7a\xee\x0e\x36\xf4\x5c\xb2\x42\x06\xb2\xff\xda\x6e\x8f\xac\xc7\x9e\x9d\xa3\xb0\x65\x0c\x51\x55\xcd\xce\x96\x42\x5a\xf3\xc5\x50\x33\x21\x3f\x4f\x0c\x65\xd7\x6b\x28\x9e\x1c\x5b\x33\xa1\x0f\x62\x91\x95\x9f\x39\x46\xcc\xb3\xde\x22\xc3\x8b\xc5\xce\x17\x8f\xb7\x5e\x1b\xba\xcd\xc9\xc6\x80\x97\x36\xba\x1a\x38\xc3\x1e\x4b\x1f\x35\x4d\xc5\x71\x92\xf0\x10\x48\xf2\xaf\xa0\x33\xc8\xfd\x6e\xa0\x58\x4e\x68\x1e\x44\x7a\x91\x81\x2e\x86\xbb\xb1\xa1\xeb\xcf\xea\x1d\x40\x2d\x89\x63\xef\xdc\x20\xe0\x45\x2e\xa0\x81\x52\x26\x4b\x49\x68\x29\x93\x95\x0c\xe6\xc3\xf1\x6d\x85\x73\x19\x58\xea\xac\xa4\x9b\x1f\x86\x18\x96\x4d\x45\xeb\x7b\x0f\x08\x19\x4e\x4d\x03\x54\x13\x3a\x35\x0d\xd6\x74\x5e\x2f\x65\xdd\x32\xad\x31\xe0\xdc\x69\xe8\x84\x1d\xa2\x15\xc1\x5b\x91\x88\x20\x0f\x08\xf1\x55\xe9\xe5\x78\x6b\x64\x33\x8c\x8a\x6d\xd5\x4c\x80\xe9\xd4\x4d\xa0\x9c\x6f\xe9\x8a\xf7\x1f\x10\x7a\x27\x31\x04\x71\xf4\xc1\x3a\x7b\xa6\x79\x3d\xe6\xbc\xa0\x37\x9b\x9a\xcb\xef\x6b\x19\xda\x97\x57\x5d\x72\x8c\x5e\x43\x72\xeb\x9d\x63\xcf\xd5\xbc\x3e\xf6\xeb\x75\x21\xcd\x92\xaa\x90\x4d\x1b\x38\x5d\xfa\x12\xb0\x13\xac\x6c\x9a\x6f\xc7\x6f\x77\x2b\xc8\xc6\xbd\x87\x84\x0c\xc5\x28\xd1\xcc\x0e\xcd\xb9\x24\x74\xf7\xda\xd9\x02\x95\x69\x5a\x9b\x36\x1e\x50\x92\xda\x7c\x3f\x09\x0c\x44\x57\x92\x05\x11\x86\xd4\x4a\x7c\xcc\xf5\x85\xb7\xdd\xff\x5a\x2b\x6d\xc6\x26\xa2\xa7\xb5\x62\xb4\xcc\xf2\x85\xaf\xeb\xef\x5e\xc8\x55\x31\xfb\x94\xf3\x62\x46\xdf\xd7\xbf\xc9\xff\x59\xf1\x52\xbf\xc9\x72\xa1\xe9\x97\x5a\x91\x90\x57\xf4\x55\x2d\xc7\xcc\x1c\x44\xb3\x83\x11\x4c\x7c\xe9\xcb\x5a\xad\x17\x8b\x05\x9f\xe5\x99\xe6\xbe\x23\xcf\x6b\xe5\x1f\x4a\xae\x9e\x14\x72\xfa\x39\x17\x73\x5f\xe5\xa4\x56\xa5\x11\x6b\xe9\x9f\x5a\xe1\x4b\x79\xe5\x4b\x9e\xd6\xbf\x3c\x2b\xaa\x8f\x7e\x86\x9d\xfa\xa3\x64\x7e\xf9\xbf\x97\xa3\xf7\x32\xf4\x7c\xbd\xa1\xcf\x2c\x79\xfe\xc4\xfe\xbe\x01\x42\xe0\x9d\x64\x5f\x64\x42\xe8\x1f\x92\x0d\xf8\xdd\x9f\xde\xc9\xd1\x17\xd9\xe2\x31\xdb\xd4\xd9\x7f\x27\x03\x29\xcc\xdf\x32\xf1\x42\xdd\x57\x32\x71\xd6\xf3\x2f\xa5\xa3\x0b\x1e\x3e\x44\x53\xf9\xe7\x55\xce\x03\xcc\x39\xa9\x72\xee\x63\xce\x3f\x55\xce\x3d\xcc\x79\x5a\xe5\xfc\xe8\x65\x84\x4d\x95\xb5\x83\x9a\xed\xeb\x0b\xb9\x1d\x2a\xb8\xf3\xf0\xa1\x6b\xe7\xa5\xc4\x96\x1f\x3e\x70\x39\xcf\x5d\xce\x7d\x97\x73\xe2\x72\xee\xb9\x9c\x7f\x5c\xce\x8f\x2e\xe7\xa9\xfc\x4e\x78\x3e\xc8\xc6\xfd\x1b\x00\xa4\x57\x98\x1d\x48\x14\x64\xc3\x86\xca\xd5\xfc\x2a\xb7\x6c\xf1\x8f\x9a\x87\x01\x63\xec\x99\x1c\x25\xcf\x24\x1b\xf3\x89\x19\xdb\xaf\x32\x79\x29\xe9\x27\x49\x48\xfa\x4c\x3a\xab\x6c\xfa\x59\x56\x6d\xfc\x2e\x93\xd0\x8e\xf7\x89\x74\xde\xf1\x9f\xc8\xa1\x9b\x1c\xa7\xe6\x3b\x9b\x4f\x32\x14\xbc\x7c\xb2\xef\x75\xdf\x48\xaf\x3c\xf9\x4c\x92\x9b\x37\xb2\x0a\x06\x80\xf2\x22\xdc\x0e\x9f\xc9\xe1\x07\x99\x3c\x7c\x48\xc3\xd8\xbf\xc8\x0f\xaa\x8c\x24\xb8\xf3\xfe\x20\x98\x1e\xf3\xc9\x70\x26\x6f\x04\x13\x49\xb7\xef\x1d\x58\x58\x2d\x4d\x88\x86\xeb\x26\xb1\xd5\x7e\x17\xe4\x06\x87\xc0\x43\x13\xc7\x06\x15\xcf\xbc\x36\xdf\xde\x80\x00\x1e\x5f\x4a\xfa\xbb\x24\x54\x78\x09\x16\xcc\xfe\x50\x78\xf5\xb3\xac\x02\x0f\x43\xb0\x10\xe7\xba\x5d\x2e\x4b\x52\xb3\x25\xd3\xe8\xe5\x5c\x13\x8a\x3a\x35\x41\xbd\xca\x12\x76\x2c\x26\x71\x9c\x98\x1f\xc6\xc7\x22\x88\x96\x01\x9b\xe1\x6f\x01\x11\x05\xfd\xa1\x6f\x2d\xe2\xef\xd8\xdf\x5f\x65\x43\x14\xf9\xa7\xc1\xfe\xaf\x92\xdd\x91\xcc\xd6\xad\x60\xe7\x79\x0b\xd1\x75\x6a\xa9\x2e\x73\x28\xff\x26\xa9\xe8\x9d\xda\x2f\x62\x78\x8d\x66\x46\x18\xef\x57\xe7\xd5\xa1\xf6\x9b\x3f\x6f\x86\xa5\x69\x88\xd0\x46\xfb\xbb\x9b\x11\x79\x65\x89\x17\xaa\xd4\x3a\x30\x6b\x11\xbc\x2c\x3d\xf3\xfc\xcb\x32\x47\xfe\xc7\xfb\x7c\xc1\x1f\x69\xd2\x9a\x5f\xf1\xae\x21\x32\x4d\xeb\x9b\xc0\x67\x6f\x7d\x97\xf8\x80\x4d\xdd\xe4\x9b\xcd\x10\x7b\x0f\xda\xd1\xd6\x26\x88\x68\x54\xf5\x5c\xd9\x9e\xbf\x95\x8c\x53\x1c\x34\xaf\x93\xe0\xc8\xb7\x90\x53\x43\xfc\x82\x72\x96\x34\x88\x5b\x88\x29\xc1\x6b\x9f\xfc\x09\x98\x78\xcf\x33\x88\x2e\x51\xaf\xdd\x94\x05\xcb\xdc\x4f\xe9\x5f\x25\xb2\xf8\xba\x83\x2e\x70\x01\xfb\xe0\x6f\x3a\x3f\x4f\x5a\x2c\x04\xe2\x78\xd0\xbf\x7f\x78\xff\xee\xe0\xc1\xc1\x21\xba\x99\x49\x7e\x35\xfd\xd0\xac\xca\x27\x54\xb3\x1b\x3b\x01\x52\x4e\xe5\x59\xc9\xd5\x25\x9f\x3d\xc9\x35\x78\xe5\x30\xb9\x38\xaf\xed\x1e\x75\x47\x86\x81\xe2\xde\x36\xa9\xc7\xc3\xbe\xa1\x1e\xef\x98\xeb\xf1\x5b\x59\xc3\x0c\xbb\xa9\x77\x3f\xed\xd3\xb0\xcb\xa9\xa6\xca\xdd\x27\xd1\x05\xec\x06\xd9\xc5\x77\x0c\xd2\x41\xb7\x9f\x79\xde\x11\xaf\x4f\x55\x58\x89\x79\x5e\x63\x56\x65\x79\xb5\xbf\xde\x9c\x65\x25\x47\x8f\xb0\x1c\x3f\x6a\x95\x1b\x61\x28\x8b\xac\xfe\x8c\x50\x59\xce\x5c\xb3\x62\x5b\x3e\xbc\xf0\x1c\x22\xff\x55\x15\xc3\xe7\x5a\x8b\xcd\x8a\x2d\xf9\xc1\xfc\x2b\x77\x74\xa3\xe7\xd3\xb5\x0e\xd9\x69\x84\x4f\x61\xcf\x30\x90\xb8\xcd\xff\x7f\xaa\x87\xd3\x3c\x3c\x5c\x9b\x93\x84\x53\xf4\xb3\x57\x72\x8c\x53\x92\x6a\xaa\xb3\x79\xda\xa7\xcb\xec\xba\x90\xd9\xcc\xc5\xf8\x40\x0a\x12\x9f\xfc\xa4\x85\x54\xfb\x57\x0b\xfb\x55\xc7\xc2\x0e\xd0\x33\xaa\x21\xb1\x56\xc4\x74\x9a\x84\xcf\x76\x5a\xd2\x7a\x9d\x50\xfd\xbe\xb1\x9f\xb7\x85\x3a\x0c\x08\x7d\xd4\x71\x7c\xbb\xe2\x2b\x6e\xa5\x50\xde\x83\x4b\x1c\x27\x8d\x1a\xcc\x4c\xf1\xa6\xcb\x0d\xeb\xe8\x62\xbb\xad\xda\xb3\x6b\x74\xe4\x55\xab\xbe\xa7\xf1\x66\x33\xa6\x8e\x68\x02\x90\x36\x1b\x2a\xf3\x44\x12\xa7\xb8\x65\xbd\x6f\x34\x2b\x28\xe2\x5d\xd5\xc8\xf5\x5a\x01\x44\x45\x9e\x28\xaa\xfd\x9b\x2a\x40\xb1\x17\x2d\xc8\x70\xd8\x12\xfb\x06\x2d\xf2\x04\x6f\x2f\x3e\x47\xee\x1a\x9f\x65\x63\x7c\x02\xb8\x1c\x40\x89\x60\x6e\xa0\x46\xdf\x44\x51\x7a\x9e\xa3\xc6\x5b\x6f\x7b\x29\x8d\x44\xaf\x65\xe1\x31\xd1\x52\xd5\xcc\xb3\xb6\x7c\x37\xdf\xda\xdf\x09\xa3\x04\xef\x9c\x77\x75\xf6\x83\x88\x63\x88\xb1\x18\xf6\x0b\xc4\xbd\x5b\x63\xd8\x70\xfd\x31\xcb\xbd\x94\x3d\xa7\x99\x27\xd6\xd1\xab\xd9\x8d\xf3\xac\x85\x6a\x6c\xdb\xb2\xae\xc4\x74\xdb\xae\x60\x32\xe2\x28\xb3\xc9\x4c\x5b\x24\x45\xcd\xdf\xce\x61\xca\xab\x68\xaa\x6c\xff\x6e\xff\xe1\xfd\x38\xc8\x59\xdf\xbb\x3b\xb4\x4e\xbe\x02\xff\x37\x79\x9b\x60\xed\xd6\x8f\x91\xf5\xda\x93\x7a\xb9\x25\x10\x42\x36\x81\xa9\x85\x1f\x3a\x48\x73\x60\x31\x3b\x46\x52\x10\xe0\x38\x0f\x35\x0e\xec\x39\xe4\xdd\xa9\x25\x9a\xd9\xd1\x20\xc1\xa6\x6d\xe5\xe8\x25\xeb\xd3\x29\xd3\xf5\x5d\x9b\xe5\x8e\xc6\x9a\x5a\x1a\x6b\xc5\xa6\x0d\xe2\x61\xb8\x7a\x24\x47\xae\xdf\xa8\xff\x32\xa5\x39\x2b\x08\x2d\x1f\xad\xc0\xaf\xda\xca\x2c\x80\xc5\x34\x59\xd1\x69\xaf\xbe\x87\x12\x5a\x30\x18\xbf\x3e\x9d\xd2\x02\x55\x84\xdd\x07\x7b\x6e\x2b\x45\x82\xc5\xa3\x9b\x1d\x1e\xd0\x69\xaf\xda\x4f\x6b\x9a\x99\xba\x57\x9d\x07\x23\xdb\x19\x5b\x2d\x2c\x62\xd3\x34\x09\x9f\xc3\xe6\xa6\xb4\x5e\x93\x10\x42\xa7\x0c\xbf\xb8\x41\x71\x2b\xee\xf4\x0e\x59\xf5\xc9\xdf\x44\xd8\x72\x1b\x61\xcb\x00\x61\x06\x43\x2b\x36\xa5\x01\xfe\x0c\xee\x0c\xf2\x96\x80\xbc\x25\xec\x1e\xff\x27\xb0\x54\x3f\x0c\x47\x8d\xde\xd4\xb0\xd6\xc8\xf4\xd8\xab\xe7\xb7\x61\xb1\xf9\x66\x0d\x9b\x41\xa7\x75\xb8\x2f\x0a\x1f\xd2\xda\x60\x68\xa4\xdb\xf6\x18\x54\xb9\x6e\xf4\xb8\x6a\x30\x40\x2f\xcc\x45\x5d\xcd\x78\x96\xd3\xda\x34\x67\x19\x6d\x1d\x49\xb6\xa2\xc7\x53\xd0\x45\x68\x0c\x20\x2b\x69\x63\xb7\x65\xc1\xc5\xe9\x2c\x77\x57\x6f\xe1\xcc\x04\x5b\x1a\xaf\xfc\x57\x85\x3d\x6f\x20\xc2\x6e\xb2\x6d\xef\xd3\x1a\xc2\xda\x30\x44\x76\xf4\x6a\x27\x36\x09\x5d\xe4\x49\x6d\xcd\x80\x1b\xb6\xdd\x8b\x08\xa6\x54\xf5\x4e\x7d\xa8\x83\x77\xbf\x67\x4a\xd5\x2f\x9f\x8b\x6f\xdc\xf2\xdc\xa4\x0f\xbc\x8f\x81\xc3\x4d\x97\x8f\x04\x8b\x8d\x59\x06\x4a\x03\x2d\x4c\xdf\xa6\x1b\x8e\xc1\xc3\x01\x01\x4f\x75\xb8\x2f\x2b\xb2\x71\xa6\xbc\x08\x23\xfa\x4d\x3a\xce\xd9\xd3\xde\x3b\xb0\x3e\x45\xba\xff\x49\x15\xba\x8e\xce\x73\x96\x08\x7e\xd5\x51\x3d\x30\x34\x12\x5c\x68\xd2\x53\xfc\xbc\xac\x6e\x03\x97\x79\x25\xc6\xf4\xe7\xb9\x39\xd9\x0d\x7d\xc0\xb6\xa8\xa8\xe0\x50\x10\x23\x9d\x22\x97\xc0\xe0\xb6\x39\x03\x85\xbf\x08\x36\xc8\x1e\x82\x8a\x62\xcd\x49\x8c\xa1\xcf\xfd\x9a\xb0\x1c\xd5\xeb\x9c\xdd\xe4\xe5\xb1\x5c\x41\x64\xb9\x6d\x4f\xc7\x10\xd6\x88\xf7\xea\xfc\xdc\xa3\xfc\x8c\x2b\x12\xc7\x10\xa8\xdb\x7c\x6a\x43\xb9\xf8\xc7\x7c\xfb\x84\x6b\xbc\x25\xd4\x45\xb8\x68\xd4\xdc\xd2\x88\x1d\xb2\x5f\xcb\xc4\x90\x78\xc7\xb9\x3f\x2e\x86\x89\x64\xd3\x3c\x51\xec\xcf\x12\x9c\xd7\x49\x42\x25\x21\xee\x2c\x65\x9a\x7a\x2e\x65\x60\x84\x6b\x28\xbc\x60\x4a\x10\x0a\x34\xb0\x24\x54\x4c\x13\x4e\x15\xf1\x60\xbe\xe3\xcb\x22\x9b\xf2\xff\xa3\xa0\xea\x6c\xce\x06\x54\xfe\xef\x02\xf9\x48\xaa\xa9\xf5\xec\xdd\x50\xcd\xb9\x0d\x5e\x81\xf0\xaa\x3a\xbc\xca\xc0\x2b\x0c\xbc\x82\x9a\x8f\xa0\x2a\x58\x36\x67\x07\x15\x8c\xba\xb2\xd6\x87\x99\xe3\x61\xd4\x16\x46\x65\x61\x14\x35\xbd\xfa\xc7\x01\x41\x82\xe4\xd9\x6d\x94\x58\x4d\x16\x86\x4c\x77\xbf\x8e\xfc\x8d\xa8\x35\x3f\x41\xe2\x2f\xed\x06\x0a\x46\xeb\x75\xf8\xd4\xcb\xcb\x37\x2b\xc5\x71\xe5\xba\x97\xd7\xeb\xa4\xfb\x56\x81\xac\x79\xbd\x36\x29\x49\xf3\x5a\xe4\xfa\xbc\x2e\x00\xe9\x0e\xa8\x64\x85\xa4\xb9\x73\x84\x81\x42\xa5\xe1\x0e\x03\xb9\x4e\xee\xb1\x96\x8f\x72\x26\xf3\x24\x27\x69\x22\xd9\x99\x4c\x34\x19\x9d\xcb\x34\x10\xc9\xe4\x66\xe1\x56\x4b\xb8\xd6\x7e\x4d\x0a\xa7\xc8\x08\x04\xa2\x92\xa4\x85\x24\x14\x7d\xe3\xe9\x44\xd0\xbc\x65\x53\x70\x47\x0c\xe0\x35\x68\xc4\xe6\x8c\xec\xaf\x8d\x87\x63\xb7\x0d\xc5\xae\x73\x1a\x8c\x05\xd3\x54\xb7\x4d\x29\xc6\xe9\x7f\x2b\xc4\x94\xff\x56\x88\x19\x10\xfe\x5f\x83\x9d\x94\xbb\x1e\xd1\x56\x77\x85\x68\xe0\x26\x40\x67\xb5\x28\xde\xf1\x29\xcf\x2f\x39\xb0\x57\xe3\xf8\x96\x42\x98\x18\x3b\x5a\xfc\xf0\xea\xe4\xf1\xd1\xf3\xd3\x5b\x1b\xfe\x56\x1d\x6c\xdf\x42\x8e\xcc\xb4\xeb\xbc\xd7\xb2\x29\x25\xda\xd5\xa2\x0d\x7e\xdc\x69\xde\xd4\xbe\x0f\x85\x74\x12\xcc\x34\x4a\xf0\x88\x0b\xb9\xcd\x03\x86\x4a\x38\x9e\xd8\x3c\xb7\xe1\x3b\xeb\xf3\xfa\xf6\x19\x2d\x5d\x5d\x37\xb3\xf3\xd6\x99\x5d\x55\x83\x79\x9b\x13\x4f\xbd\x26\xf9\xd6\x51\x95\xc0\x15\x26\xa7\x82\x4a\xb0\x17\x6c\x07\xbb\x75\x50\x12\x03\xfd\x9c\xeb\x67\x5c\xe5\x97\xb6\xe2\x91\x92\x0b\x64\xa3\xc7\x71\x62\x8f\xde\xdc\x1c\x9f\xff\xa6\xe1\xce\xee\x66\xd7\xeb\xb6\xfa\x12\xb4\xb3\x44\xb6\x2c\x2f\xa4\x46\x9d\x0c\xc7\x2e\x68\x23\x44\x64\xeb\x44\x81\x43\x38\x8e\xdb\x5f\xd8\xae\xb9\x5e\x27\x9a\xc9\x5b\x16\x41\xdb\x4b\x71\xdc\x96\x9b\xb4\x63\xe1\x56\x30\x6f\x29\x4c\x08\xd5\x5d\xe6\x60\xdb\x39\xc5\xa5\x1b\x13\x5a\x91\xff\xff\xd5\x1c\xd9\xd5\x0b\x0f\xe1\xb3\x7c\x66\xa1\xaf\x5f\x9d\xee\x22\x2d\xf4\x3a\x67\x8f\x95\xca\xae\x7b\x79\x09\xbf\xd5\xa9\xf6\x3e\x0f\x74\x18\x2a\xfe\xbb\x30\x6b\x89\xb4\x0f\x59\xab\x93\x35\xeb\x91\xaa\x77\x0a\xca\x69\xd6\x2f\x48\xed\x71\x00\xa6\xbc\x3a\x9b\x6f\x31\xb7\x1f\x12\xe7\xa5\x5b\x54\x0b\x7e\xd3\x2a\x95\xbf\x7b\x9f\x50\xeb\xc9\x41\xb2\x28\xda\x6b\xb2\x5e\x82\xb3\xdd\xf4\x20\xec\x40\xb8\x06\xa0\x08\x7e\x7a\xa7\xe8\x21\xe8\x1d\x3f\x47\x6b\x48\x93\x99\x26\x89\xae\x05\x1b\x46\x59\x8f\x42\xfa\x57\x33\xc6\xe6\x39\x30\x74\x30\x87\xdd\x6c\xfc\x15\x8f\x8f\x66\x10\x6a\xb4\xa3\xc7\x72\x92\x9a\x7f\x8c\x6f\x48\xf8\x15\x49\x35\xf8\xad\x73\xae\x89\x42\x1c\x36\x62\xa0\x3f\xb8\x6b\xbd\xe9\x79\x44\x36\x2a\x3c\xec\x1b\x74\xb4\xf8\xdb\xf9\x52\xc9\x36\x2a\xbb\xc6\xae\xf7\x14\xd5\x18\x81\x01\xa1\xd1\x18\x87\xd4\x2a\x4c\x4f\x0c\xba\xb6\xd4\x9c\x9d\x13\x1c\xab\x0e\x4c\x46\x76\x1e\x74\xae\x72\x7d\xd1\xf9\xcc\xaf\xcb\xce\x4d\xb4\x57\x57\x3c\xee\xfd\x2d\x73\x91\x44\xb4\x13\x91\xbd\x68\x13\xa5\x1a\xbc\xee\x79\x40\x5f\xe5\x8d\x60\xce\x6e\x2e\x72\x47\xa8\x84\xf7\x34\x77\x81\x52\x23\xeb\xab\xcc\x5d\xb9\xea\x8c\x0e\x41\xd2\xdb\xee\x7a\x54\x6c\x73\x13\x02\xb6\xd8\x83\x4d\x18\x4e\xda\xf9\x75\xef\xf2\x9a\xf6\x63\x78\x9d\x53\x43\x70\x96\x0e\xca\xf3\xaa\x57\x5a\xc7\x46\xad\x1e\x6e\x54\x75\x19\xe4\x40\xed\x1c\x67\x4b\xd7\x8c\x1e\x12\x3f\x77\x3f\xf3\x6b\xf4\x94\x89\x4e\x13\xa8\x26\xa9\x7b\x04\x6f\x0a\x54\x1b\x72\x49\x37\x3f\x16\xcc\x00\xb9\x65\x05\xfa\x64\x6a\x19\x66\xd0\x02\xeb\x1b\xba\x08\x5f\xb7\x8a\xca\xd5\xcb\x79\x62\xcf\x61\x6f\x03\x8d\xef\x28\x8a\xd6\xc9\x8e\xb0\xab\x8c\x00\x46\xe0\xbb\x1a\x6a\x91\x47\x62\x94\xe8\x00\xa1\x73\x03\x47\xaa\xd2\x96\x4c\x11\x08\x65\x42\xff\x7a\x9e\xeb\x11\x7c\x03\x38\x0a\x61\x03\x35\x12\x6a\x5a\x11\x0f\x75\xf9\xbf\x5e\xaf\xbd\xd5\x0d\x98\x4c\xff\x31\x35\x97\x83\xde\x42\xce\x38\x5c\x0f\xb0\x3a\x33\xb8\x81\x85\x2f\x13\x34\x8b\x0d\xf2\x03\x11\x47\xeb\x67\x70\xe7\xd1\x3d\x8e\xf6\x40\xe0\xe9\x1e\x76\xbb\xeb\x25\x1f\x25\x89\xc2\x36\x91\x82\x81\x96\xcf\x99\xdf\x78\xa9\xaa\xbe\xa4\x0c\x04\x8a\xbd\x99\x26\xf8\x2e\x05\x9f\x09\xee\x4d\x8a\xc3\x14\x42\xbe\xb3\x9d\x40\x5a\x72\x0b\x62\xee\x3a\xc4\xac\xd7\x7a\x97\xc7\x6f\xf4\x01\x15\xe6\xd4\x2b\x83\xfe\xa7\xe9\x35\xdc\xc7\xa1\x76\x3d\x0b\x90\xfe\xf7\xf7\x20\x3d\x70\xbe\x36\x9e\xec\x1a\x81\x65\xc5\x23\x6f\xe9\xd1\xfd\xda\x50\xbf\x0b\xbf\x6a\xc8\xb5\x7f\x37\xd8\xe7\xc1\xd9\xd8\xe2\x49\xae\xd5\x81\x9c\xdd\x25\x70\x9e\x45\xd1\x9e\x76\xdf\xaf\x7f\x25\x34\xff\xa8\x09\x97\xdd\x74\xaa\xe2\x02\xf4\xee\xdc\xc1\x62\x2b\x02\x78\xe6\xbc\x37\x08\x33\x51\x34\x4e\x14\xbb\x4d\xb4\x4c\x14\x11\x4e\x14\xbc\x1c\x11\xb0\x81\xb2\xa0\x08\xe4\xc4\x3f\x49\x3d\xe0\x7f\x4f\x93\x1d\x50\x9b\x73\xeb\x75\x0e\x3a\x80\x6f\x13\x6f\xcc\x82\x88\xae\x5e\xb1\x7e\xf7\xc3\xde\xda\xf3\xa8\xdd\xed\xd7\xac\x49\xf7\x3b\x1c\x8c\xa0\x57\xe8\x14\xa2\x75\x08\x5a\x7d\xf8\xd5\x42\x39\x19\x6a\x0d\x75\xfd\x71\x83\x88\xa2\x3d\xd0\xec\x6e\x45\x7f\xc0\xbd\x08\x84\x2f\x3b\xd0\xdf\x81\xb5\x09\x44\x03\x2e\x56\xc6\xd8\x9b\x91\x9d\x9d\x38\x0e\x7e\x3e\x83\x10\x23\xad\xf6\x0e\xec\x52\x0d\xef\x41\x73\xab\x7a\x3d\x8b\x74\x01\x48\xaf\xc7\xc5\xaa\x7a\x57\xad\x0a\x40\x3e\x22\x5c\xec\x40\xf8\x45\x4d\xb4\xd2\x86\x58\xd5\x86\x58\xef\xaf\x0c\x06\x1b\x23\x10\x01\x58\x30\xab\xa2\x68\xcf\xb4\xd7\x8e\x59\xe5\x31\x5b\x05\xbc\x50\x3b\x31\xeb\xdb\x76\x52\x4a\x73\x1c\x8a\x14\x7e\xdd\xe7\x54\x88\x73\x4d\x39\x55\x4d\x9c\x4b\x8a\x2f\xa4\x05\x96\x1b\xe0\xea\x28\x5f\x85\xfd\xb8\xed\x5b\x54\x12\x3b\x0a\x0a\x46\x41\xf9\x51\x58\xb6\xa1\x42\x51\x59\x0d\x83\x6e\x6a\xff\x57\xec\xf5\x44\xd2\x8c\x96\x74\x5a\xf9\x48\x2d\xf0\x28\xb6\x72\x99\x25\xcb\xe8\x19\xcb\x58\x9f\x2e\x2a\xb9\x75\x97\xb1\x65\x1c\x9f\x55\x06\x75\x67\x7b\x7b\xe4\x66\x89\x67\xef\x4f\x67\xa3\x64\xc1\x96\x74\x89\x6c\xf0\x74\xc1\x96\x9e\x46\x00\x96\x2f\x9b\x25\x92\x2e\x69\x39\x3e\x9b\xd0\x29\x09\x04\xe6\xc7\x5e\x6c\xbf\x8c\xe3\x64\xc9\x16\x2e\xc2\x13\x8f\xe3\xa5\x3f\x8e\x8f\xc3\xe3\x18\x02\x75\x10\x9a\xb1\x3c\x39\xa6\x19\x3d\x0b\xe4\x1c\x05\x3b\x4e\x57\x9e\xbc\x38\xa6\x2b\x76\x4c\x97\x6c\x61\x90\x78\xc6\x18\x2b\x1b\x3e\x56\x04\xb6\x54\x04\xf0\x2c\x2d\xcb\xbc\xd1\x51\x47\x7d\x2c\xd9\x79\x22\x5d\x37\xd0\x6e\x3d\x4f\x96\x5b\x50\x2c\x03\x28\x96\x74\xc5\x96\x5e\xd3\xac\x00\x01\xd8\x92\x29\xf8\xf4\xae\xcf\x2c\xd8\x45\xb2\xa4\x92\x9e\x85\x9f\xe2\x7e\x32\x2f\x42\x74\x2c\x7b\x48\xfa\xbb\x1e\x2c\x60\x2a\x9d\xa5\xf0\x8b\x68\x5a\x6c\x01\xb8\x08\x00\x5c\xd0\x95\x41\x7b\x45\x03\x2d\xdb\x5d\xa0\x3b\xa2\x2c\x91\x86\xf8\x27\x84\x86\xe2\x06\x83\x15\x3a\xa5\x85\x93\x71\xbe\x4d\x70\x98\xdb\x6e\x72\xab\xe6\xf5\xea\x47\xeb\xbe\x1b\x01\x4c\xa6\x6c\x85\xa4\xfe\x94\x6c\x69\x83\xff\x38\x20\xc4\x0b\x64\x97\xcc\xce\xd8\x33\x56\xd2\x05\x2b\x59\x9f\x1e\x63\xc6\xdc\x0a\xc8\x12\xef\x35\xf2\x2c\x8e\xbb\xf3\xde\x4c\x0a\x3e\x5c\xec\xed\x05\x15\xc8\xcd\x99\x9d\xc4\x8b\x51\x72\xcc\xce\xe8\x99\x9d\xc4\xc7\xec\xac\x36\x89\x2f\x61\x12\x9f\xd1\x39\xba\x09\xa0\x45\x38\x8f\x2f\xfd\x3c\x3e\x8b\xe3\xe4\x8c\x1d\x07\xf3\xf8\xcc\xcf\xe3\xcb\xe6\x3c\x3e\x23\xb4\x64\x79\x72\x49\x4b\xba\xf0\x03\xb4\x1c\xad\xd8\x65\xea\x57\x10\xbb\xa4\x4b\x76\x49\xcf\xd8\xb1\x99\xc7\xd8\x87\x70\x06\x9f\x11\xba\x0a\x20\x39\xb3\x33\x78\x47\x6f\xdd\x14\x9b\xc3\x4c\xae\xfa\x82\x01\xbc\xf2\x64\xbe\x05\xca\x3c\x00\x65\x4e\x97\x6c\xee\xe7\xca\x0a\x26\xf3\x19\x4c\xe6\x33\xf2\xed\x2f\x5e\x24\x67\x54\xd2\x45\xe3\xab\xd5\xbc\x9e\x87\xe8\x39\x6b\xcc\xeb\x39\xcc\xeb\x45\x3a\xc7\x79\xfd\x6f\x61\x85\x16\xbf\x6f\x5e\xaf\xdc\xbe\x19\x88\x05\x14\xcd\xcd\x86\x89\x9b\xe5\xad\x4c\xbd\x38\xce\xfd\x19\xe1\x07\x3e\x37\x40\x43\x10\xb5\x9c\xe5\x8d\x13\x03\xf9\x0a\xab\xdb\x5b\x35\x03\xbc\x22\xce\xf8\x6d\xfb\x08\xb3\xe6\xe3\x2b\xfc\x12\x2d\x98\x72\x13\xbf\x40\x23\xef\xc2\x9e\xf3\x2b\x78\xba\x0f\xb6\xde\x86\x5e\xad\x80\x4d\x8b\xc6\x45\x02\x8b\xc8\x8d\xe9\x7f\xe1\xd0\x4a\x28\xdc\x2b\x0a\x5a\xbd\x38\x6a\xf6\x28\xcd\xb7\xef\x1c\x05\xcd\x6b\x77\x05\xce\x94\x37\xf7\x83\x0f\xb8\x05\xa3\xe1\x81\x16\xcc\x7f\x72\x13\x7c\xca\xdc\x53\xde\x4d\x93\xe6\x17\x1d\x11\x38\xa5\xd0\xff\x90\x0a\xe4\x0c\xae\x37\x53\x43\xb5\x62\x43\x58\x87\xe6\x2d\x54\xeb\x34\x04\xd9\x90\xee\x60\xfb\xef\x5b\x9a\xfa\x23\xb5\x4c\xb8\x3f\xd6\xbd\xe9\x3e\x8e\x72\x75\x3d\x47\xe7\xe6\x88\xf7\x02\x9e\xee\xba\x50\x47\x71\xbc\x33\xd6\x91\x37\x56\xf4\x39\xf5\xca\xf5\x6b\x0e\xd4\xae\x67\xe1\x88\xa9\xc6\x88\x29\x9a\xef\xbc\xe8\x34\x07\x43\x85\x83\x51\x67\x30\x6c\x12\x65\x28\xf5\xbc\x8e\xb1\xaa\x9d\x10\x41\x9b\x56\x22\x2f\x6f\x23\xf2\xbc\x5b\x8d\x9c\x45\xd1\x5e\xee\x78\x97\x2a\x8e\xef\xf9\xe8\x50\xc9\x8e\x6e\x6d\x8f\x36\xf6\xc1\x54\xf8\xe3\x16\x50\x09\x85\x51\x44\x0a\x2b\xf7\xb4\xd5\x99\x5f\xee\xa6\xe8\x6d\x50\xb2\xa8\x95\xac\xe2\x18\xc8\xdd\x9c\xd0\xb6\x10\x01\x66\xf5\x76\x0b\xb7\x64\x79\x4d\x99\xca\x6a\x3b\xe1\xd9\xc6\x2d\x7b\x8c\x56\x87\xdc\x01\xa1\xbc\x37\xcb\xcb\x65\x91\x81\xbd\xe3\x7a\xcd\x7b\x02\x7e\x23\x2f\x79\x8b\x2a\xf2\x0e\x05\x9b\xc0\x72\x7d\x99\xb3\x57\x79\xd2\xed\x13\xfa\x1c\x53\x03\x42\x4f\x72\x76\xb3\xa1\xff\xe4\x95\x76\xfb\x49\xbe\xa1\x4f\x1b\xcf\x9f\xeb\xcf\x81\xbb\xad\xdc\xba\x76\x32\x2b\xf0\x24\x6f\x9e\xc8\xf7\xef\x12\xd2\xc2\x08\x7a\x66\x59\x81\x53\x99\x7c\xce\xad\xa1\xd4\xd3\x9c\x72\x48\xfc\x93\xd3\x93\x9c\x0c\x9d\xf1\xb9\xf7\xeb\xed\x2e\x3f\xce\x4c\x04\x11\x35\x18\xa4\xe0\x0b\xa5\x32\x4c\xf7\x0e\x50\x34\xa0\xa5\x5c\x66\x53\xfe\xe1\xdd\x8b\xf4\x0f\x3c\x2d\x20\xb2\x48\x3d\xac\x93\x66\x7f\xf0\x44\xb3\x44\xb0\x07\xa8\x08\x10\x78\x85\x4e\x35\xa9\x35\x63\xc9\x69\x81\x7c\x63\xf0\x72\xb4\x29\x0d\xd0\x0e\xf6\xf0\xb2\xfe\x24\xb7\xa6\x7a\xa6\xb8\x34\x7d\x84\x9f\xcf\x79\x50\xe7\x0d\xd4\xf9\x98\x27\x9f\x73\x6f\x26\x66\x43\x8f\x7d\xcc\x93\x7f\xaa\x4c\x2a\x00\x4c\xab\xcc\x4f\x86\xda\x4a\xb4\x1b\xb8\x13\xa1\x84\xf5\x1d\x34\xfe\xd4\x37\x62\xfd\x21\xd5\x20\x42\x76\xfc\x1f\xc1\x08\x87\x5e\xed\xfe\xce\x9d\x0b\x76\x6b\x31\x17\xb0\x06\x6f\x5c\x94\x39\x74\x1f\xe3\xfd\x05\xd4\x04\x05\xa1\x12\x49\xe0\xaf\xc3\x20\x30\x08\x12\xb7\x5e\x0b\xf4\x09\xc8\xd8\x27\x11\x3c\xfc\x5c\x5d\x2e\xb5\x0f\x1c\x37\x78\xc8\xbc\xf7\x9a\x40\xe6\xea\x3e\x0b\xa2\xa3\x9e\xe2\x97\x3c\x2b\xc0\x82\x19\x00\x4d\xee\xdd\x8d\x03\x5e\x1d\xe9\x32\x76\xac\xb7\xdb\x16\x35\xe7\xe3\xe4\xc6\x26\xdc\xde\xa0\x81\xc5\x09\x59\x43\xb3\x0d\xe7\x62\x05\x62\x01\xc0\xac\x55\x2b\xf4\x7c\x58\x80\xd2\x51\x89\xa1\x36\xbd\xb6\xcd\xad\xd7\x2e\x15\xfa\x20\x83\x6b\x95\xf6\x95\x36\xbe\x0d\x0f\x84\x4d\x84\xec\xd6\xf6\xeb\xdc\x8b\xba\xce\xb5\x57\xbc\x4f\x39\x85\xf3\x2d\xb5\x6a\x37\x1f\x9a\x6a\x37\xcf\xf2\x72\x99\xe9\xe9\x05\x57\xf4\x97\x9c\xf5\xe9\x51\x8e\xb4\xf3\xef\xf6\xf7\x93\xfd\xfd\xd9\xfe\xfe\x66\x7f\xdf\xda\xdf\x3b\xe6\xa5\x5f\xed\xc3\x9f\xe6\x81\x67\xac\x3b\xa0\xda\xea\x43\x8a\x8c\x05\x7e\xfe\x55\x96\x38\xbb\x20\x2f\x00\x38\x18\x84\x13\x59\x66\x5e\x78\x20\xb6\xbc\x8d\x54\xfe\xe6\xfb\x43\xf1\xa8\x0a\xab\x29\x1e\xf1\x30\x68\x6e\x7e\x9e\x58\x2f\x21\xe0\x22\xa4\xd5\x3f\x48\xc5\x6e\xce\x42\xd5\x0a\xf8\xf0\x2f\x39\xcb\x0d\x22\xb4\xeb\x7d\x97\x31\x3e\x6a\xc8\xc5\x50\xd6\xff\xa1\x5a\x71\x16\xdc\x4f\xf9\x68\x9e\xa5\x97\x19\xd5\xa0\x8b\x24\x09\xe5\x19\xb9\x99\xc9\x1b\xc4\x8b\xc8\xf6\xd8\xe0\xdb\xed\xbe\xcd\xd9\xcf\xb9\xc1\xeb\x6f\x39\x73\x43\x11\x7c\x2b\x68\xde\xda\x62\xf1\x8c\x0c\x43\x9c\x9b\xb9\x1a\xbc\x70\x9c\xd1\x84\xb3\xa3\x9c\x34\x34\x1b\x7e\xce\xb7\xd5\xf2\xee\x98\xbc\x50\x59\xf8\x57\xa8\x54\x09\xf6\xfe\xcc\xa9\xd7\x89\xf8\xbd\x22\x4f\x7f\xcf\x81\xd8\xc7\x79\xf4\x16\x40\xff\x39\x67\x9f\xa0\x03\x47\xbb\xa7\xcb\x96\x48\xae\x4f\x02\x93\xac\xca\xfc\xc3\x4c\x9d\x7a\x8f\xfe\xe5\x87\xb6\xe6\x65\xc0\xff\x37\x8d\xa3\x99\xdc\x4d\xcb\x68\x54\x66\x1a\xf0\x08\x42\xd7\xaa\x24\xb4\xab\xa8\xcc\x6b\x86\x75\xf6\xf0\x6f\xf9\xe8\x67\x80\x94\xa7\xbf\x99\x5f\xd4\x49\xe4\xf4\xb7\xc0\x9c\x7c\x9a\xd5\xac\xff\xde\xe6\xe4\x6d\xce\x92\xdf\x72\x93\x42\xd4\x56\xf3\x26\xf9\xdd\xf4\x98\x8c\x2c\xd2\x91\xa9\xe7\x6c\xa7\xfc\x54\xdc\x12\xb6\xf5\xad\xb8\x73\xab\x9f\xb6\xbd\x86\x5a\x43\xd5\xf1\xdf\xf3\x40\xd7\x19\x11\xf0\x7b\xde\x83\x44\x88\x04\x5b\xcd\x2a\x57\x06\xd8\xb0\xfb\x86\xc7\x84\x41\x83\xc3\x01\x8c\x1c\xaa\xb2\x5a\xa4\x85\x58\x29\xb2\x5a\x08\x96\x36\x99\xea\x48\x27\x9c\xa4\xc1\x64\x59\x65\x95\xe4\xd4\x60\x95\x9a\xbd\x14\x80\xad\x99\x69\x34\xb1\x33\x20\xce\x57\x51\x56\xea\x77\xdc\x6c\xa0\x7c\xf6\x8e\xcf\x56\x53\xd0\xd2\xe9\x3f\x12\x99\x93\x0c\x0a\xa0\xcc\xcc\xce\x19\x9c\x7b\x3a\xf3\xbe\x1b\x33\xcb\x95\x33\xa5\xfe\xe8\x92\xe4\x46\x67\xfe\x46\x4b\xbc\xae\x48\xfd\x1c\x9d\xc9\x9b\x9c\xf1\x24\xa7\x12\x22\x42\x49\x88\x12\x8b\x06\x53\x75\xc3\x4b\xe9\xd7\xc9\xcf\x2a\xc9\x69\xa3\x1d\xb2\x5e\x3b\x5b\xb4\x46\x09\x68\xee\x56\xc3\x04\xd2\x22\xd3\x63\x10\x72\x05\xfa\xbd\x84\xd6\x31\xe1\x5e\x1e\xe7\x54\x4d\x36\x76\xac\xc6\x8d\xc6\x4d\x91\xb2\x0d\x5a\x97\x91\xe1\xc7\xc0\xe7\x1e\x0b\x3e\xe3\x88\xfc\x72\x94\x54\xe4\xbe\x95\xb0\x5a\x7d\x5a\xc5\x4a\x78\x24\xa9\x57\xed\x52\x23\xd5\x0b\xac\x82\x3c\x7b\xd7\x7c\x70\xca\xac\x49\x5f\xc1\x14\x5d\xb1\xee\xc0\x60\x14\x39\x45\xc5\xb6\x0e\xf9\x2f\xf9\x28\x59\xad\xd7\xc9\x8a\x75\xfb\x74\xca\x4a\xf0\x96\x4d\x97\x3f\xdd\xc9\xe3\xf8\x78\x9a\xdc\xc9\x51\x75\x7c\x31\x4d\x96\xe6\xfe\xdb\xd0\xbb\xcf\x4d\x93\xd9\x9c\x2b\x37\x4b\xcc\x8e\x6e\xb3\xac\x61\x57\x92\xd3\xc2\x0d\x24\xa1\x25\x2b\xe0\x56\xbb\x3d\x9a\x45\x1c\x63\x27\x86\x06\x1c\x0f\xc9\x7f\x37\xb4\xd3\x9a\xc6\xb6\x6c\x1f\xd0\x5d\x23\x59\xcd\xf1\x49\x20\x02\xcb\xb6\x64\x7a\x9c\xdd\xe8\x6c\x9e\x72\x8a\x51\x71\x53\x4d\x67\xbc\xd4\x4a\x5e\xa7\x82\xce\xf8\xb2\x4c\x55\x8b\xd9\xe1\xaf\xf9\x28\xf9\x35\x67\x37\x0d\xc3\xb3\x0d\x09\xc5\xe5\x56\x75\x9b\x3b\x9b\xa1\x44\xb3\x5f\xf3\xa0\x02\x19\xd5\x1e\xab\xfa\x10\x69\x06\xb6\x4c\xed\x76\x19\x5b\x26\x68\xe3\x15\x12\x0a\x9f\xcf\xb3\xa6\x3c\xc8\x1c\x0d\xc3\x3f\xf3\x35\xc4\x4c\xaf\xe3\x7a\x99\x05\xa1\xc8\xa9\x57\x30\xb6\x7e\xcc\x43\x39\xe8\x6c\xab\x59\xb3\x2b\x0d\x5d\xf4\xb2\xe0\x25\xbb\x27\xd8\x00\x49\xd5\xd6\xf2\x7b\x8e\x6f\x66\x66\xab\xdc\xa2\xbb\x73\x66\xb6\x15\xc0\x79\x70\x69\x96\x59\xa2\xa8\x29\x58\x96\x9e\xb8\x86\x86\x97\x59\xd2\xa7\x82\xe6\xe6\xc2\x78\x6b\xd7\xf2\x9a\x34\xf7\xe2\x3b\x76\xe2\x84\x33\x9e\x10\x0a\x8e\xa9\x02\xdb\x72\x94\x71\x90\x0d\x71\xfe\xea\x75\x48\xd1\xfb\xb7\xfc\xe9\xce\x6b\x2f\xd7\x68\xac\x0d\xb1\xf1\x5f\x02\x61\x46\x56\x0b\xda\xb7\xc8\xc2\x28\xc6\xc9\xc1\x8f\x3f\x89\xac\xc9\x43\x3e\xec\x0f\xbc\xe6\x4f\xd3\xdc\x99\x31\x76\x94\xfb\x70\x44\x2a\x8e\x15\xe4\x80\x5b\x66\xb3\xea\x28\xdf\x32\x7d\xfd\x25\x6f\x9a\x35\xc2\x0e\x84\xcb\x3e\x15\x34\xdc\x23\xb0\x28\xd8\x22\x1a\x94\x83\x37\x2f\x01\x83\x8e\xcc\xa9\x6a\x90\x6a\x86\x99\xd9\x8d\x07\x8c\x26\x84\xe8\x0c\xb5\x33\xa8\xf3\x0e\x8d\xd1\x75\x84\xbf\xc0\xc1\xc4\x1f\x12\xed\x52\x6e\x49\x6c\x7c\x34\x71\x89\x0a\xcd\x79\x4d\xa1\x39\xdf\xea\xa5\x64\x7f\x96\x89\xa4\xc0\xed\x68\x74\x37\xff\xcf\xfa\xea\x4f\x08\x38\x2e\xaa\xb3\xb9\x24\x96\x3a\xc8\xab\x90\xe7\x53\x7b\x0c\x78\xd3\x20\x08\x75\x00\xb5\xa6\x84\x96\xb6\x3e\x5c\xd2\xa0\x39\x96\xd3\x1d\x1a\xfb\x4e\xde\x86\x21\x6d\x55\xa3\x42\x65\xf1\x9d\x38\x0d\xa0\x06\x2d\x40\x88\x73\xa5\x50\x34\x2a\xe0\xc6\xb9\x62\x2a\x29\x28\x1e\xfe\x79\xfd\x7c\x50\x34\x0f\x4e\x07\xb6\x32\xfb\xfb\x8a\x16\x6e\x7d\x5a\xef\x09\x4b\x72\xb3\x01\x35\x70\x69\x39\x3a\xc7\x19\xbb\x51\x3c\x73\x2a\xbc\xa9\xcc\xe9\xaa\xf4\x4e\x58\x52\x95\xc1\xa3\x2d\xc4\x27\xbb\xa9\xe2\xc3\x8b\xc5\x12\x42\x53\x5f\x72\x8c\x02\x66\xb3\x5f\x66\xd7\x72\xa5\x6b\x35\x8f\xf9\x42\xda\xa4\x1b\x43\xf7\x74\x6e\x53\x38\x92\x98\x7e\xc6\xcf\x56\x73\xb0\xd9\xf6\xd5\xdc\xd5\x53\x65\x1b\x3a\xbf\x1d\xee\x56\x6f\x98\x66\xc7\x6d\x6c\x47\x63\x5e\x4d\x7e\x6d\x63\x14\x4c\x28\xdf\x84\xbd\xc6\xa6\x6d\x5f\x5a\x1b\x3e\xcf\x92\x1f\x07\xf7\xe8\xe0\xe1\x01\x78\xd6\xdb\xb4\x22\xa6\x69\xb7\xe0\xc8\x78\x56\xf1\x36\x2a\x8b\x83\x11\x68\xa7\x4c\x33\x9d\x8c\xf9\x84\x58\xcb\xe9\x2c\xb9\x4b\x0f\xef\xd1\x8b\xac\x77\x96\x8b\x19\xf2\xa2\xcc\xe2\xa4\x02\x3f\x59\x43\xfa\x2e\x40\xa1\x09\x0f\x25\x0c\x4a\xbd\x2a\xde\x83\xe1\x74\xf2\x0e\x8d\xb6\x70\x44\x71\x5f\x15\xdb\xe8\xf4\xe8\x73\x83\xdc\xec\x37\x6e\x8d\x6d\xed\x63\xc7\x13\x4d\x52\x4d\x55\xa3\xe5\xd0\x16\xc6\x7c\x1d\x9c\xbe\x02\xe1\x8d\x27\x3d\xa2\xc8\x91\x15\x95\x45\x79\x63\x81\xa5\x9c\x6e\xad\xaa\x54\x6f\x88\x27\x48\xd8\x22\xc4\xee\x11\xb0\xc5\xc6\x0d\x60\x28\x9f\x6c\xdc\xc4\x6d\x11\xf5\xf0\x8a\x0f\xc6\x37\xb4\x65\xd2\x21\x7e\x9a\xd6\x2c\xee\x5a\x11\x60\xa6\xed\x24\x44\x6f\xe4\x3c\x21\xdb\x24\x5a\x48\x91\x71\xc4\x91\xfe\x4f\x70\x54\x64\x2d\x48\xe2\xdf\x42\x52\x93\xc8\xb3\x48\x0a\xd6\xf1\x59\x63\x1d\xbf\xc8\x37\xf4\xf2\xdf\xac\x63\x9c\x9a\x40\xe1\xb4\xcc\x49\xaf\x6e\x5b\xa7\x62\xea\x9a\x25\x2a\xb4\x93\x91\x86\x18\x51\xe3\xc1\x84\x8c\xd4\xb8\x3f\x49\x9b\x36\xea\x6e\x3e\x93\x7f\xb9\x1f\xcc\xfe\xaf\xec\x07\xb3\xff\x7e\x3f\x98\x7d\xf7\x7e\xf0\x7f\x10\xe9\xb7\x6e\x25\xa4\xb6\x97\xac\xb2\xad\x75\xe7\xfb\x32\xdd\x5a\x68\x3b\x96\x99\x13\x2f\x67\x49\x91\x91\xef\x99\xa3\xd7\x96\xb5\xf3\xd8\xfe\x5e\x65\x35\xff\x21\x5f\xb3\x10\x51\x1f\xa7\xc9\x8f\xd4\x5f\x1e\x69\x9f\x0c\x45\x4d\xf0\x19\x3d\x7b\xfe\xf2\xf9\xfb\xe7\xcf\xc0\x7b\x77\x33\x23\x34\xe9\x09\xb5\xd9\x42\x45\x5e\x47\x87\xf3\xd0\x94\x3a\xe1\x3b\xac\xa5\x05\xe5\x0d\x25\x62\x5e\x53\x22\xae\x97\x06\x76\x2b\x59\x3d\x84\x53\x20\x60\xfa\x31\x0d\x7d\x0e\x35\x86\x3a\xd1\x6c\xd0\x0d\xdd\xfa\xa2\x4f\xf9\x20\x6e\x83\x2f\xdd\x8e\x31\x61\xe7\x14\x88\xed\x6b\xb8\xe8\xf6\xad\x38\xf4\x5e\xba\xf5\xb9\xc8\xc6\x3b\xe1\x62\x06\x1e\xd7\xc0\xea\xe3\xb0\x06\xc3\xb7\xdb\x1d\x1c\xa6\xb7\x44\x59\x7b\x9d\x59\x19\xd5\x55\xe6\x76\xe9\xc7\x19\x86\x2c\x75\x22\x0b\xd0\x68\xb7\x48\xb3\xd7\x03\xcd\xb4\x4a\x44\x2d\xd6\x2c\x59\xaf\x7d\x25\xef\xa0\xa6\x1a\xdb\x20\x1d\xff\xff\x2e\xf5\x7a\xae\x71\xae\x01\x8d\x92\x5c\x67\x8c\x93\xe1\xd7\x2c\xb9\xce\xcc\x0a\x37\x8f\x66\x4a\x6a\xe5\x0d\x7c\x41\xe0\x80\x82\x88\xef\x6a\xd6\x34\x11\x06\x93\xcb\x9c\xa4\xa6\x72\x70\xe4\xad\x7b\xe3\xf8\xc7\x96\x90\xa4\x61\xa4\x52\x0c\x0a\x6e\x5f\x83\xa6\x2b\xcd\x7d\x87\x40\xde\x65\xec\x3a\xab\xd8\xe6\x06\x51\x57\xee\x19\x01\x00\xd8\xfa\xd4\xfa\x00\xd7\x6e\x9a\xe5\xe7\x89\x07\x60\xbd\x8e\x2e\x78\x86\x51\xd1\xe3\x38\x3a\x93\xb3\x6b\x9b\xee\xfe\x2a\x50\x67\x33\x94\xe4\x10\x82\x17\x97\xc7\xd9\x50\x0f\x89\x5d\xae\x54\x23\xe6\xc2\xe1\x31\x1f\x41\x18\x40\x28\x85\x93\x3e\x70\x1a\xe1\x99\xd3\xc9\xb6\x35\xcb\x88\x07\xd2\x28\x0c\x9a\x40\xb8\xf9\x24\x0e\x47\xea\xf1\x1a\x7c\x90\xfe\xcb\xf8\xc0\xbf\x87\xf1\x80\x6f\xb8\xe9\x40\x3d\x96\xb1\x17\xb3\x57\x31\x82\xbb\x8c\x1d\x89\x38\x36\xbf\x3f\xdb\xdf\x4f\x62\xbd\x76\x31\x83\x83\xb7\x37\x3c\x70\xbd\xcf\xd9\x75\x36\x82\xf6\x2b\xd5\x80\xf0\x4b\xc8\x17\xb6\xe3\xf6\xd8\x4c\xc5\x50\xf6\xf1\xca\xdc\x9b\x1f\x67\xec\x3a\xdc\x31\x51\x82\x9c\x35\xe4\x44\xaf\xaf\x04\x57\xf4\x79\x7d\x4b\x3d\x09\xd8\x1a\x56\x58\xe6\xb8\xbc\x7c\xf4\x1c\x14\xf9\x61\x87\xa5\x8a\xa4\x2f\x73\x18\x71\xa8\x04\x39\x15\x18\xff\x64\xa1\x4e\xa8\x00\x03\x20\xb3\xab\x7b\xfe\xa8\xe2\xe7\xde\xdd\xab\x69\x46\xfe\xff\xb9\x7b\x17\xe6\xb6\x71\x64\x5f\xfc\xab\x48\xaa\x29\x1e\xe0\x18\xd6\x48\x76\x92\x49\xa8\x20\xba\x4e\xe2\x99\xc9\x6e\x5e\x9b\x64\x1e\xbb\x5e\x5f\x5f\x9a\x82\x6d\x8e\x65\x50\x03\x40\x71\x3c\x16\xef\x67\xff\x17\x1a\x6f\x92\x72\x92\xd9\x3d\xe7\xdc\xfa\x57\xa5\x62\x0a\x04\xf1\x46\xa3\xbb\xd1\xfd\x6b\x4c\x04\x8d\x2e\x6e\x2a\x70\xed\xf5\xd8\xf5\x87\x45\xe2\x03\xb0\xa1\x53\x62\x5b\x0a\xf7\x31\xee\xca\x2f\x47\x2a\xb9\xe6\x48\x11\x76\xa2\x02\x32\xba\x7b\x7f\xfa\x5d\xe7\xa2\xe4\x31\x80\xdf\x74\xae\x4f\x26\x98\xfc\x60\x6a\xab\xe3\x8b\xad\x67\xdd\x7b\x26\xd7\x62\xa7\xd9\xe1\x31\xa5\xee\xb3\x99\x2b\x36\x9b\xe7\x25\x2a\xbc\x37\xfb\x90\x82\xde\x27\xa0\xdc\x85\x18\xca\xe0\x9e\x55\x08\x16\x65\xe5\x49\xd6\x39\x42\x2c\x36\xf6\x37\xb6\xa3\x86\x39\x31\x96\x12\x95\x35\x83\x81\xf1\x27\x2c\xba\x19\xb5\x53\xcd\x60\x08\xc1\x23\xfb\x3e\x31\xb6\xe0\xb4\x20\x97\xa6\xa3\x85\xed\xa8\x37\x50\x28\x1c\x2e\x2e\xa9\x1f\x57\x80\x1a\x54\xa4\xfb\x9f\x20\xcf\x54\xc1\xad\xb1\xed\x01\x9e\xf3\xfc\x6f\x02\xa3\x9a\x08\x88\xe6\x23\xc0\x5b\x0a\x1a\x85\xe7\x76\xa4\x2b\x9c\xb7\x67\xdc\x38\x9d\x14\xde\x57\xe1\x8e\x5e\x84\x49\xba\x6c\x4d\x52\x7a\x8a\x31\x80\x70\x6f\x51\xad\x6e\xab\x2c\x06\xdc\x54\xf7\x33\x6e\xe1\xf3\x68\xc1\x46\x75\xfe\x52\xa4\x20\xfc\x7a\xb1\xfb\xa5\x11\x8c\xc2\xfd\xd4\x32\x5b\x1d\x58\x8a\xa7\x7e\x29\x1b\x3a\xdd\x7b\x18\xc7\x43\x2b\xba\x91\x73\x4e\x6b\xc4\x5b\xae\xa5\x3e\xf4\x25\xbd\xa8\x91\x02\x13\x2d\xbb\xcb\xf8\x9f\xda\x65\xfc\x7f\x6e\x97\x3d\x2d\x5a\xe6\xe5\xd0\x5d\xd7\xf7\xe1\x64\x76\x53\x23\x65\xcf\x5e\x80\xf5\xa9\xce\x90\xef\xac\xbf\xc9\xf7\x4e\xd8\x61\xc8\x51\xa4\x24\xb4\x31\x15\xba\x09\xd1\x60\x9c\x2b\x4c\xae\x9d\x2b\x13\x39\xb1\x4f\x86\x72\x0d\x27\xb3\xd8\x0a\x21\x26\x01\x51\xe5\x44\xb6\x4d\x1d\x66\x85\xf5\x43\x96\x33\xa3\x0f\x2b\x9c\x4b\x30\x59\x5a\x3f\x99\xed\x1e\xc7\x4b\xbf\x94\x96\xf3\x25\xad\x2b\xb4\xc4\xf9\xd2\x4c\xf8\xb2\x6f\x51\x38\x83\x44\xbe\xd5\x69\x97\xac\x7a\xa3\x9e\xac\xfb\x9d\x79\x8b\x6d\xce\xbc\xb3\x55\xbf\x3b\x6f\xf1\x05\xbe\xe1\xfd\xdf\x6d\xfd\x60\xb3\x41\x72\x08\x7a\xbf\x12\xa2\xc6\x64\xd9\x1f\x7a\x62\x34\xa9\x5a\x62\x62\x70\x9e\x74\xaf\xcf\x3a\x77\x72\x7a\xac\x8d\x7b\xec\x19\xe4\x58\x50\xd5\x81\x16\x1b\x52\xba\x30\x5e\xb5\x8a\x2c\x88\x20\x85\x9e\xed\xb2\x5d\x14\x26\xb6\x09\x7a\x03\x97\x9b\x4d\x00\x8d\xde\x6c\xaa\x6a\x8e\x7a\x87\xd4\x78\x5d\xeb\x25\xb4\xd6\xcb\xa9\xa7\x50\x24\x69\x55\x6d\x36\x07\x26\x97\x24\x82\x9c\x81\x25\x36\x9e\xa3\xaf\x1a\xdf\x3b\xdc\xa5\x8b\x7e\x77\xe9\xfe\xc9\xee\x2b\xb4\x2f\x75\x8b\x93\xf4\x9d\x8d\xbb\xe3\x25\xda\xe2\xae\x5c\xf4\xba\x2b\xab\xd4\x5d\x19\xe7\x9f\xeb\xcc\xf6\x6f\x49\x6b\xaf\x52\xd1\xd1\xfb\x94\x98\xb8\x0d\x2c\x88\x5b\x4e\x25\xf1\x9b\x98\x2e\x89\xa0\xf2\x5f\x6a\x84\xa0\xc3\xa9\xa5\x6e\x9f\xa1\x25\xbe\x29\xca\x99\xd5\x26\x1e\x84\x73\x99\xff\x50\x3b\xff\x2e\xa9\x57\x5c\xa0\x35\xdd\x00\xd6\x2d\xea\x83\xbf\x96\xd4\x10\xd4\x4b\x4a\xd0\x5d\xd4\x07\x7f\x25\x99\xc1\xff\x2f\x51\x99\xee\x0e\x26\x67\x34\x2c\x09\xc7\x05\xb5\xa8\x0c\xee\x50\x97\x0e\xa1\xf2\xd4\x45\x57\x7d\xf6\xe7\xa8\x4b\x4f\xa1\x68\xdd\xa6\x2e\x25\x39\xfb\x13\xd4\xc5\xc1\x73\x7d\xc1\x88\x3a\xa4\x87\x2f\xa1\x2f\xae\xd8\xde\x64\x24\xa0\xa9\x5f\x41\x66\x42\x71\xdb\xdf\xda\x52\xbf\x84\xda\x44\x98\x64\xe9\x6e\xfd\xaa\xf5\xdb\xfe\x7e\xef\xfe\x83\x94\x60\xf5\x8e\xa4\xaf\xde\x44\x76\x6b\xf1\xae\x59\x56\x26\x89\x30\xdb\x9b\xcd\x1d\x0d\x1d\x7e\xbe\xa1\x7f\xbe\x26\xdd\xa5\x2f\xa0\xa3\x67\x7d\x74\xf4\xac\x45\x47\xd7\xff\x7f\x1c\x1b\x20\xef\x8e\x5b\x7f\x9b\x72\xe6\x91\xa1\x71\x4b\x88\xb1\x02\xc6\xcc\x70\x98\xbd\xe6\xb1\x26\x0c\x45\x96\x0d\xbd\x8e\xa7\xce\xb2\x03\xf0\x4f\x26\xc3\xa9\x67\xb5\x2b\x3c\x13\xc9\xb1\xf2\xb2\x08\x81\x69\xec\x55\x6e\xd1\xbf\xbb\x7b\x09\x39\x5c\xc5\x5b\xc3\x07\x2b\xf3\x47\xd7\x4d\xa9\x6c\x11\x58\x71\x90\x3b\x8c\xec\x96\x2a\x15\x34\x13\x5e\x79\xc9\xc3\xbc\x84\x44\xa9\xe5\xd0\xdc\x4a\x27\xd2\xe4\x69\xdf\x5b\x19\xcc\x94\xa8\xdb\x13\x5f\x52\x64\x66\x5d\xf4\x87\x14\x51\x4e\xaf\x69\x2f\x1f\xe6\xe7\x35\x9a\x90\x76\x6a\x27\xc1\xd8\x1f\xdb\x50\x29\xb9\x7f\xcc\x32\xfb\xb9\x3b\x71\xf5\x14\x18\x53\xfa\xd4\x25\xc4\x5a\x74\x17\xe4\xb7\x82\xbc\x28\xc8\x4f\x05\xf9\xb1\xa0\xb7\x2d\xfd\x16\x11\x4c\x89\x1b\xb8\xbf\x9f\x46\xf6\xde\xdf\x17\xc9\x4d\x1f\xa9\xa9\x13\xfb\xa9\x4a\xb4\xb4\xa4\xa0\xbf\x7a\xb3\x4b\x22\xad\xd0\x84\x44\xff\x4a\xc2\x9b\x0d\x12\x74\xa2\x4f\xaf\xbd\xac\xc0\xe1\xb2\x9d\x05\x01\xb6\x03\x30\x23\xe6\x48\xd2\xe1\xa4\x25\x0d\x3e\xb8\xef\xad\x45\x02\x26\x43\x67\x9b\x04\xb0\xd7\xf1\x99\xbd\x8e\xda\x6c\x86\x26\xc1\x87\xe4\x28\x74\xae\x0f\x17\x95\xfc\xde\x67\x41\xc5\x86\x4e\xc1\x96\xfe\xd7\x8a\x4c\xb3\x22\x88\xb6\x26\x1c\xa6\x0d\x8a\x19\x4a\x25\xa8\x02\x9f\x7e\x3d\xa4\x35\x99\xb4\x1c\xcd\x15\xd8\x1a\xa0\xbd\xcc\x8c\xa2\xd1\x65\x46\xc8\x61\x49\xab\xe7\xce\xd8\x1c\xfe\xcf\xed\x2f\xe7\x9a\x13\x4c\xef\xd9\x0c\x7b\x85\x45\x05\xae\xbe\x29\xe6\x06\xe2\xba\x45\x92\xd4\x1d\xbf\x77\x45\xaa\x00\xb0\xd1\x59\xed\x3f\x16\x7e\x93\x54\x84\x3b\x05\x4d\x4d\x83\x6f\x50\xe7\x13\x2b\xe1\x9a\x8f\x82\x6a\x0f\x62\xc8\x04\x2b\xa5\xf6\xd4\xde\x42\x68\xdc\x10\x12\x09\xbb\x46\x11\x33\xbe\x55\x32\xbe\xdc\xc0\x84\xa4\x97\x04\xdb\x87\x18\x7c\x15\xbf\x66\x80\x31\xb4\xd0\x3c\xea\xe9\xb1\x98\x0f\x54\xba\xf1\x96\x33\x2c\x5d\x6d\x9c\x48\x2a\xdb\xe3\x5d\xeb\x16\xd6\x9a\xde\xb6\x6d\x46\xa2\x56\x72\x3f\xf2\x35\xe9\x0f\x4d\x30\xb9\x6b\x46\x38\xa9\xbd\x8d\x7f\x4a\xe0\xa2\xe9\xe1\x5d\x12\x96\xcc\x10\x6f\xaa\xb3\x30\xec\xe4\xeb\x57\xb3\x5f\x8b\x24\xd1\x81\xb8\xc5\x88\xff\x5f\x5e\xee\x3c\x55\xc4\xb8\x8a\xbe\x66\x12\xa2\x6d\x71\xe7\x38\x9b\xf9\x49\x67\x26\x0a\xe7\xd2\xa3\x7f\x6b\x6d\x11\xe7\x3f\x52\xb5\xfd\x00\xe8\x6d\x25\x9f\x16\xe5\xe5\x75\x21\x16\x12\x62\x29\xe8\xe3\xb1\xe2\xe7\xc1\x20\x20\x17\x44\x15\xd5\x32\xe7\xf0\x27\x74\x2f\x9f\x40\xc2\xab\x7a\xc1\xf2\xba\xc9\x51\x35\x8e\x8a\x82\xb1\xf2\x85\x99\xde\x18\x83\x48\xb0\x4d\xd2\x1f\x52\x6e\x1f\x42\x91\x74\x62\x93\x74\xa1\x34\xe6\x36\xfe\x9e\x9e\x23\xed\xc3\xa3\x06\x9c\x2a\xef\xa1\x03\xc1\x26\x75\x39\xfa\x0c\x71\x4a\xf9\x64\x59\xdb\xa3\x03\x89\xe8\xd4\xc1\x18\x0b\x3a\xcd\xc4\x66\x2f\x55\xb2\x3d\xb8\x97\x98\xbc\xdb\x55\xfa\xe0\x5e\x8c\x2b\x6e\x8f\x25\x96\x9b\x15\xea\x7c\x7a\xc2\x92\xf3\xce\x4d\xf6\xf2\xf4\x0e\x6a\xd6\xd1\x4d\xf2\x3e\xd5\x24\x77\xac\x56\x6c\x57\x68\x8b\x2c\xb4\x54\xd1\x53\x48\x3b\x91\x72\x4c\x78\xe5\x37\x1c\xc0\x81\xb6\x3c\x97\x1c\x25\xbb\x65\xa9\xe7\x12\x23\x7e\xdf\x27\x9e\x4b\x20\xe3\xfb\x78\xce\xb1\xef\x12\xeb\xf5\x5d\x62\xde\x77\x89\x05\xdf\xa5\x50\x40\x14\x5c\x85\xb5\xfd\x96\x7c\xb3\xa3\x3d\xdc\x88\x8c\x4e\x75\x3b\xcc\x89\x2b\x3a\x14\xa4\x6f\x9f\x19\x3d\xa9\xbd\xdc\xae\x7d\x70\x4f\x01\x2b\x79\x04\x53\xca\xdd\x94\xc6\xf1\x15\x86\x94\x72\x8f\x68\x85\x04\xe5\x11\x5a\x94\x67\x25\x7e\xab\x90\xc0\x26\x7c\x01\x06\x3f\x3f\x37\x0a\xdc\xbb\xae\xd5\x78\x8e\x6a\x5f\x41\x7c\xc5\x05\x00\xa4\xfe\x93\x88\xe6\xc3\x4b\xf2\x73\x81\x34\xdb\x06\xa4\xaa\x4a\xe3\x89\xba\x8d\xe8\x9a\x6f\x48\x70\x6f\x25\xae\x2f\xf5\x2c\x81\xc8\x13\xb4\xde\xda\x9f\x70\x11\x57\x5b\xef\x5d\x9d\xdb\x35\xb3\x8e\xa9\x24\xad\xf5\xee\x6c\x4c\x53\x27\x96\xa6\xb6\x5a\xab\xea\x73\xa6\x2e\x98\x18\xe5\xae\x47\xc1\x66\xc2\x70\x5e\x1d\x1f\xcb\x9e\x69\x0c\xa4\xb4\xc5\x4f\xff\x50\xb4\x40\xbe\x8d\x98\x9b\x44\x99\x69\x85\xe3\x71\x70\xd4\x6d\x4b\xfe\xea\x0c\xc2\x67\x0b\xb0\xda\x17\x9e\x77\x6f\xc5\x0c\xe2\xed\x10\xf7\xa1\x5e\xfb\x41\xb4\xb3\xda\xa8\x13\xfb\x01\xa0\x22\xf6\x1c\x34\xd3\xa8\x59\x17\x3f\x89\x29\x0b\xd3\xb9\xd3\xc0\xd1\x61\xef\xed\x47\xbc\x5d\x6b\xb4\x1d\xa3\xfd\x03\xb7\x63\x7e\xfa\x7a\x18\xa5\x6e\x2d\x38\x2a\x3a\x59\x9f\x5b\xe7\xe3\xaf\x20\xdf\xa4\x28\x8e\xe1\xed\xdf\xba\xc6\x26\xe6\x40\xb0\x1b\xf3\xa2\x5a\x2c\x18\x1f\xe5\x60\x0c\xa0\x69\x7c\xf0\xd7\x8b\x57\x73\x8c\x35\x17\x03\xac\x71\xda\x02\x96\xe3\x21\x4a\x87\x39\x96\xb4\xa0\x98\xf6\x24\x0d\xb7\xbb\x5c\x16\x2b\xc9\x16\xa3\x9c\xb7\x5b\x20\xb6\xd0\x06\x9e\xb4\x40\x6c\xa1\x04\x62\x1e\x82\x9f\x9b\x82\x93\x26\x99\xe7\xa4\x5d\xb9\x48\x07\x3c\x0c\xe2\x37\x45\x1c\x0a\x2f\x71\x08\x3f\xad\x91\xf5\xf9\xcd\xb2\xab\x1a\x61\x6f\x59\xe1\xa7\xc3\xc9\xc6\xf7\x26\x8f\x1e\x64\x60\x4e\xd4\x8e\xa8\xa1\x36\x0f\xee\x11\x16\x83\x3c\xed\xe7\xd5\x19\x7a\x5a\x21\x4c\x5e\xd5\x08\x13\x7d\x3c\xa2\xa4\x50\x6c\x8f\xc8\x36\x00\xe4\xfd\xc8\xa5\x7b\x4b\x3d\x33\x6b\x69\x64\xb3\x81\x17\x32\x09\x55\x4f\xf7\xdd\x1b\xa9\x89\x3e\x26\xd0\xee\x56\xed\x5f\xd6\x8b\xe9\xa3\x56\x51\xe1\xd5\x3d\xf7\x06\x3a\x19\x7d\x32\x71\x2f\x54\x68\x57\x6a\x3e\x34\x68\x4d\xce\x5f\x12\x0f\x87\x5b\x00\x28\xc9\x19\x91\xf5\x5a\x94\x2c\x57\x44\xaa\xa2\xbc\xcc\xff\x82\x14\x6e\x9a\x5f\x0b\x9a\x5a\xe0\x85\xd5\xde\x62\x32\xb8\x21\xdf\xf7\xa9\x05\x21\xdd\x6c\x1e\xb8\x47\xcc\xc6\xc5\x4a\xef\x62\x30\x0a\x42\x91\x69\x19\xf6\x77\x84\xf7\x1c\x78\x69\xb8\x0c\x76\xa4\x87\xa7\x47\x3f\x87\xc5\xdb\x3d\xfa\xa3\x93\x3b\x39\xf8\x79\xef\xc1\xcf\xfd\xc1\xcf\xe3\x83\xdf\x19\x1a\xf9\xf7\x0d\x6f\x9f\xfb\xdc\xb3\x2b\xa1\xe8\xa6\x21\xbf\x45\x23\x85\x6f\x1b\xf2\x22\x1d\x39\x87\xa7\xe7\x98\xa6\xf4\xce\xb3\x3a\x43\x45\xf0\xed\x02\x78\xa1\x58\x05\xe5\xd0\x02\x5a\x2e\xf4\x96\x4d\xb7\x18\x02\xa3\x8a\xaf\xd6\x6a\x94\x17\xf4\x03\x43\x4b\x52\x60\x22\xcc\x93\xd0\x39\x8f\x8e\x63\x2a\x52\xaf\x40\x73\x95\x17\xf4\x77\x9f\xf7\xf7\x2d\x79\x6d\x4c\xf6\xbc\x30\x61\x07\x0b\x62\x57\x8c\xf5\x4f\xd1\x9f\xda\x98\x33\xed\x17\xed\x92\x3c\x4e\x6a\x5e\xd0\x4b\x5f\xef\x65\xb7\x5e\xb7\x7e\xfb\xd5\x8e\x35\x7f\xb6\xac\xca\xcb\x7e\xe8\x59\x11\x5e\xa3\xe5\xb8\xe6\xa5\x7e\xa6\xef\xb4\xc0\x52\x0b\x24\x07\x15\x1f\x3c\x37\x98\xa3\xc4\x72\x25\x05\xb8\x52\x8b\xf1\x45\x21\xdf\x5c\x73\x3d\x1f\x4c\xa8\x1b\x24\xb1\xe6\x62\x7b\x12\xcd\xf2\x2c\x8e\xe4\x31\x36\xa0\x1f\x37\x4b\x08\xbb\x6e\xa2\x34\x96\xba\x86\xa5\x79\xbd\x6c\x7f\x5e\x82\xaa\x68\xb3\x41\xdc\x20\xda\x1e\x95\xc7\x74\x34\x32\x9b\x60\xb4\x28\xf8\x39\x13\xf5\x5a\x2e\x6f\xde\x33\xf5\x82\x73\x26\x7e\xfc\xf0\xea\xa5\xee\xba\xcc\xb2\x91\x13\x1f\xdc\x6f\xb9\x5e\xad\x04\x93\xf2\x59\x1a\xeb\xfd\x97\x42\x70\x0b\x7a\x1b\xe7\xfa\x11\x94\x65\x55\xcd\x5b\xef\x8b\xb5\xaa\xbf\x87\x38\xf2\x26\x01\x2d\xba\x5d\x9e\xb3\xcd\x06\xe9\xd9\xc1\x60\x1f\x0b\x88\x2a\x26\xb0\xa7\xb4\x12\xea\xcc\x8f\xad\x70\xa8\x58\xe2\x48\x1e\xeb\x65\xbd\xb4\xe2\x72\x31\xd7\x43\x62\xd7\x06\xe9\x1d\xed\xb5\xf1\x0f\xb4\xac\xc7\xda\xa9\xd2\x96\xb8\x3d\xce\xba\x58\x43\x89\xcc\x68\xe3\x61\xcf\x48\x6f\x36\xeb\x2c\x5b\xf7\xa5\xf7\xcd\x80\x2f\x6c\x8d\x7b\xbe\xc9\xb2\xe5\x51\x79\x3c\xa4\x74\x7d\x54\x1e\x77\xa7\x50\xa7\xda\x0b\x49\xfd\xc6\x0f\x97\xe6\x5d\xec\x30\x61\xbd\xdc\xd6\x77\x4f\x34\x05\xff\xd0\x35\x5d\xcf\xd7\xe3\x93\x93\x0b\x75\xb5\x74\xc3\xb5\xa4\xcb\xf9\xb2\x95\x66\x47\xc9\xf8\x53\xae\x8d\x21\x7e\x32\x35\xa3\xd1\xce\x1a\xe3\x3c\x2c\x1c\x28\x1f\x60\xd1\x36\x9b\x2e\x36\xf2\x3a\xcb\x1c\x56\xcd\x30\x36\x73\xe8\x2f\x37\xff\xf7\xac\xbf\xde\xe5\x86\x7c\xd7\xde\x72\x54\x11\x89\x09\xdb\x6c\x6c\xbb\xcd\xc0\xf6\x2c\xc4\x35\xc6\x0d\xef\x8c\x82\x5d\x35\x5a\xe4\xae\x28\x23\x2d\x2b\x9d\x0a\x67\xd9\x5f\x0b\x38\xe7\xc8\x4f\x5d\x72\x8d\x6f\xb9\xe1\xb5\x4d\x1e\x60\x54\xfe\x51\xf4\x9a\x83\xfc\xc2\x8a\xcb\xf7\x4c\xcd\xed\xdf\xfc\x3d\x53\x41\x09\xcd\x64\x6a\xfb\x64\x0e\x5a\x62\x2f\x19\xca\xcb\x28\x58\x1e\x0f\xd0\x22\x82\xfe\x05\xf1\x00\x7f\xcf\xb3\xec\x1b\x6b\xc6\x66\xf8\x47\x83\x2b\x16\x38\xfb\x29\xf5\x66\xb0\xdf\x20\x8f\xaa\x22\x6e\x6e\xcb\x9a\xcb\x7a\xc9\xc6\x0c\x38\x1e\x85\xad\xf7\x55\x8d\x6f\x25\x53\x9a\x85\xae\xd7\x0a\xc5\x21\x72\x0d\x8b\x54\x37\x49\x30\x61\x25\xe3\x4b\x01\xc1\xce\x62\x21\x01\x27\xf0\x77\x31\x56\xab\x6e\x80\x73\x8b\xf4\x31\x73\x5f\xda\xd8\x1f\xb0\x63\x5a\x7e\x8f\x01\x18\x5a\x26\x7c\xb8\x8a\x98\xc8\x89\x07\xcb\x31\x7f\xef\xe7\x42\xa2\x3d\x32\x21\x2a\x16\xeb\x06\x53\xcd\x13\xee\xdd\x7f\x10\xeb\xef\x43\x9c\xd3\x60\xd5\xda\xb2\x74\xeb\x28\xaf\x94\x71\x5e\x89\xa2\x56\x6c\xb9\xf8\x42\x6d\x7c\x62\x63\x5a\x30\xe7\x91\x99\x01\xc7\x70\xd6\xb5\x03\x59\xf4\x15\x47\x55\x13\xf5\x66\x3f\xb7\x6c\xa8\xb5\x3d\xb7\x5c\xa1\xe9\xe9\x77\x79\x4b\x3e\x6d\x85\x5a\xdf\x4f\xe6\x52\xc8\x1e\x48\xfa\xd4\x2c\x31\xbe\x90\x9f\xf3\x71\xcb\x7f\x19\x7b\x80\x00\x6a\x6c\xca\xc1\x9d\xdf\xc8\xa6\xc8\x80\x7e\x31\xec\x9c\x80\x85\x73\xda\x9d\xf9\x27\x9a\x78\x13\x0f\x21\xc0\x62\x8d\x70\x13\x7d\xaf\x8c\xd2\x42\x8c\x8d\xbb\x35\x09\xdf\xd6\x08\x1b\x98\xae\xc8\xbb\x5c\xd8\x08\xcd\x01\x61\xc5\x77\xd1\xae\x9f\xbe\xe5\xf9\xac\xcc\xb2\x67\x25\xd2\x02\xd9\x1d\xab\xeb\x9e\x5f\x65\x09\x80\x7f\xdb\x68\x81\x47\xd6\xd8\x91\xef\x76\x88\x92\x09\xe3\xf4\x53\x8d\x1e\x7d\xf7\x98\xcf\x1f\x7d\x97\xf3\x24\x2e\xb5\xc1\xab\x10\xce\x8b\x1f\xac\xad\xed\xb0\xc5\xe0\x0a\xdc\x63\x2f\xc0\xde\xe6\xc8\x6d\xab\x0a\xb6\x55\x4d\x2a\xdc\x78\x5b\x6a\x87\x9a\x02\x9c\xa5\xde\xce\xc9\xe6\x50\x52\xf7\xbc\xcf\x22\x85\xa7\xab\x3d\x35\x0c\xe0\x57\xc6\x2c\x27\x15\x0b\x60\x9f\xdb\xfb\xea\xf6\x8e\x52\x5b\xc2\x89\xa8\xde\x92\x51\x0f\xa1\x68\x00\x43\x3a\xde\xdb\xf7\x4d\xf3\xe3\xa4\x7b\x79\xe9\x26\x3d\x5a\x08\x55\x42\xb7\x82\xaa\xd2\xab\xfb\xb8\xc1\xc4\x0b\xfa\xa8\xde\xc0\x38\x2d\xb0\x18\x9b\x94\xa8\x70\x6c\x5a\xcb\x5e\x32\xf5\x70\xb1\x49\xed\xb8\x68\xa9\x8e\xa3\xdd\x8a\x28\x91\x7b\xcf\xa5\x4a\x77\x3f\x02\x8e\x91\x91\x37\xd1\x7d\xea\x7d\x13\xf6\xc3\xe3\x3d\xf7\x18\x21\xc2\xc0\x57\xd6\x1f\x20\xd0\xf6\xd8\xd7\xc2\x02\x63\x15\xba\xba\xe0\x60\xe2\x4d\xfb\x23\x5c\xa7\x16\xc9\x99\x60\xdc\x38\xda\x1d\x87\x9d\x20\xbc\xe3\xbe\x23\xe8\x70\x3a\xeb\x92\xba\x7b\xb9\xa2\xad\xbb\x60\x63\x57\x7a\x37\xad\x9b\x62\xdc\x4c\x1f\x64\x3c\x26\xfa\xe8\x27\x86\x20\x2e\x42\x7c\x6d\x92\xd1\xdd\xe9\x77\x78\xc6\x72\x65\x95\x94\x6c\x36\x8b\xc2\xc8\x7d\x81\xe8\x58\x48\xe4\x7e\x60\x17\xa1\x2d\xa0\x0b\x06\x19\xd2\xdc\xc3\x7d\x81\x1c\x39\xbb\x1f\xc4\xe0\x07\xe1\x71\xfa\xd0\x3d\xdb\x86\x44\x9d\x38\x57\xd8\x49\xc1\x83\xd8\xb9\xdc\x8a\xc8\x66\xde\xcd\x98\x47\xf9\xb6\xcb\xd4\x8d\x09\x4b\x9e\xd6\x60\x1c\x16\x82\x3c\xea\xfa\xd8\xb8\x85\x53\x9b\xc1\x33\xb7\x3f\xf7\x21\xc6\xad\xd7\x01\xc0\x23\x78\x89\x5b\xf1\x16\xc2\x01\xf9\xc2\xf2\x3a\x46\x7c\xe4\x52\x15\xbc\x34\x08\x36\x9a\xad\xf0\x70\x27\x72\x26\x29\x27\x0f\x4d\xbc\x54\x85\x83\x3f\x55\x15\xe1\xdb\xe9\xef\x99\xb0\xa7\x28\x2a\x89\xc4\x79\xd5\x4d\x73\x8c\x47\xf2\x42\x33\xe9\x46\x1b\x21\xe6\xe0\x00\x83\xca\xa4\x1a\x54\xd1\x32\xaa\x09\xb7\xbf\x2e\x21\xa6\x51\x89\x13\x55\x87\x0c\xa1\x69\x4a\x5a\xda\xb8\x58\xef\xea\x1a\xc2\x87\xc3\xaa\x8e\xa3\x75\x95\xde\x7a\xa0\x72\x92\xeb\x66\x83\xaa\x58\x8a\xc5\xb9\x6a\x55\xd0\xc4\x1a\x94\x3a\xd1\xa0\xd4\x4e\x83\x52\xa7\xb3\x5d\x03\xd4\x4e\x57\x83\x52\x6f\x81\x7d\xab\x7b\xb7\x41\xed\xb7\x41\xdd\x85\x7d\x9b\xd5\xfe\x7d\x53\xb7\x57\xbe\x7b\x03\xcd\xf0\x1a\x94\x80\x10\xe5\xcf\x6e\xaf\xd8\x24\x10\x46\xcd\xd8\x65\x98\x46\x0c\x25\xbe\x95\xb4\x72\xd4\xca\xdc\x7c\xcd\x92\x06\xca\xb6\x6e\x5b\xd3\x24\xa7\x4a\x11\x54\xc6\x96\xa3\x09\x4d\xaa\x3d\x3d\x1a\xb0\x16\x45\xd2\x7c\x47\x4a\x91\x6a\x4f\x91\x06\xac\x91\xd4\x5d\xad\x37\x92\x0e\x01\x9f\xec\xbe\x81\x97\x75\x9b\xa1\x32\x35\x99\xf6\x9a\x95\x0d\xb1\x73\xc9\x9a\x72\xb2\xa2\xcb\xd9\x4c\xaf\xfa\x5a\xa2\x92\xac\xc8\xda\x2f\x9f\x95\x99\xae\x2c\xbb\x07\x3f\x74\x19\xab\x74\x52\x57\x64\xe5\x72\xf9\xfb\xc2\x15\xa0\xb1\x76\x27\x74\xd5\x3b\xa1\x2b\x3f\xa1\xab\x30\xa1\x4b\x7f\x17\xb6\xf2\x19\x9a\x55\x7b\x46\xdd\x1b\x68\x83\x9b\xd1\x7a\x8e\x4a\x2a\x74\xe7\xa2\x91\xd6\x3b\xab\x0c\xbb\x2a\xde\x52\x63\xc1\xae\xea\x8f\xcc\x2c\xec\x25\xce\xcb\x56\x02\x06\xfb\xa9\x90\x12\x15\x1b\xed\x82\x30\xc6\x81\x5d\xab\xdc\x46\x10\x71\x5b\x7a\x26\xd2\xdd\x71\x87\x0b\xfa\xca\x7d\x1c\x76\x8a\xaf\x0b\x98\x4c\x88\x10\xd6\xae\xe7\x4b\x8a\x01\xcb\x90\x7e\x95\x65\xd5\x3b\x3f\x95\x9f\x9f\xaa\x47\x65\x79\xcf\x50\x46\xf7\x0a\x1b\x4a\x80\x24\x18\x4b\x57\xed\x09\x73\xd9\xa0\x61\xdd\x2d\xb8\xfc\x72\xe1\xeb\x5e\x2c\x84\xdd\x23\x0f\x3b\x42\x58\xc2\xb5\x79\x19\xd8\x1f\x25\x7e\x96\xa2\xcb\xf5\x94\x7f\xac\xfb\x60\x04\xe1\x55\x2e\x66\xcc\x0a\x59\xde\x8d\x2e\x76\x58\x00\x94\x94\x0e\xdf\xe6\x26\xcb\x5e\x6a\x1d\x55\xe2\x98\x0a\x62\xd5\xa7\xc6\x1f\x69\x24\x8a\x45\x55\x8f\x0c\x1e\xef\xcd\xca\x7b\x28\x09\x40\x4f\xcd\xb2\xd7\xcc\xa8\x10\x9f\x72\x13\x71\x53\xd1\xa7\x16\x88\xb7\xa6\x93\x59\xfd\xb8\x72\x48\x8d\xf5\x0e\xdd\xf3\xa7\xde\x51\x7d\x4c\x4a\xfd\x67\x67\x7a\x3c\x8b\x14\x5a\xf3\x4b\x8e\xb8\x3e\x40\xee\x56\x0d\xbd\x60\x36\x57\xaa\xd1\xf9\xc9\x26\x5f\xeb\xbf\x92\x94\x44\x79\xc6\x8b\xa5\x9a\xe1\x97\xa6\xd5\xfd\x2a\xd9\xe7\xdd\x97\x4e\xf3\xab\xf9\xb7\x93\x6b\xa1\xcf\x1d\x83\xe8\x32\xbe\x2e\xe4\xab\xf5\x52\x55\xab\xa5\xe6\xe7\xb6\xbe\xa3\xc3\xa1\x18\x5f\xf9\x8c\x30\x84\x00\x96\x01\xca\x0b\x3c\x7f\xa6\xeb\x4c\xf2\x30\x32\x9c\xe2\x5c\x0d\x69\xf2\xa9\x57\x0a\x0a\xe7\xdd\x07\x0e\xf2\x3d\xdf\xa7\x19\xc8\x70\x82\xf3\xbe\x4c\xee\x71\x7e\x74\x9c\x8f\x46\xba\x4e\xdc\x34\xb1\x78\xf4\x20\x8f\xf1\x4d\x03\x9d\x69\x9f\x28\x7b\x18\xcf\xe2\x58\x3d\x9a\xb0\x41\xd5\x1d\xb7\xa6\x84\xbf\x05\x88\xdf\x48\xc4\xb2\xb6\x8c\x70\x2f\x6c\x9f\xe9\x70\x4a\xae\x14\x6a\x1b\x43\xa6\x9b\x6b\x2f\xde\x5d\x53\xb8\x04\x03\xe3\x2c\xd7\xf0\xd4\x42\x49\xf3\xd9\x39\xd2\x2c\x34\x09\x06\x05\xef\x24\xfd\x15\x44\x6a\xa7\x68\xf2\x56\x24\x7c\x16\xae\x74\xac\xfb\x71\x6c\x0f\x4a\xc4\xbc\x3f\xb0\xa2\x26\xb1\x37\x4b\x86\xc7\x92\x29\xa7\xd7\x9b\x57\xf1\x2f\x34\xb2\x88\xcf\x23\x32\xe2\x35\x67\x23\x32\xaa\xae\x56\xb5\x50\x05\x57\x23\xcd\xb2\xd9\xd7\xd4\xbc\xcd\x51\x5a\x71\x1d\x30\x5a\x50\xdd\x16\x37\x6d\xe5\x81\x09\xca\xb2\xba\xad\x64\xf4\xd5\xe3\x79\xed\xea\xca\xad\x91\x10\x7c\xee\x1b\xf0\x8c\x47\x6d\xd5\xa3\xef\x68\xff\x03\x3f\x28\xac\x77\xfa\xc5\x7c\x34\xca\xdb\xd7\x3c\xee\x5c\x0e\x96\x38\x41\x1f\x95\xce\xd5\x36\x53\xd0\x18\x65\xf8\x16\x86\xc5\x1c\x34\x0e\x29\x3c\xb6\x8f\xa9\xd2\xeb\xb1\x3f\x61\x50\xe3\x2c\x6a\xf8\xbf\x6a\x51\xc3\xff\xbc\x45\xcd\xba\x2d\xe7\x4f\x1f\xe5\xdd\xb4\xef\xcc\x29\xb4\x67\x4f\xa7\xbd\xe9\x57\x29\xc4\xd6\x89\x92\xa0\x75\x82\x78\x25\xe7\x6d\x57\x07\x30\x73\xba\x9a\x70\x9e\x39\xf1\x0b\xee\xfa\x63\x84\x07\xce\xae\x07\xff\x28\x20\xd0\x79\x27\x36\x83\x72\x67\xdf\xfb\x32\xc2\x4f\x01\x83\x76\xae\x17\x2f\x04\x84\x42\x7c\x5c\x2c\x16\x56\x5d\x75\xc1\x38\x12\x44\x60\xd0\xeb\x80\x85\xf4\x4a\x6e\x55\x4d\xbf\x2a\x56\x73\xfb\x37\x7f\x55\xac\x82\x6a\xfa\xcc\xb3\xda\x88\x43\x60\x67\x67\x72\xa8\x8a\x73\xba\x4f\xb8\x8f\x40\x7d\x6b\x15\x9b\x11\xa0\x99\x70\x4a\x68\x8f\xba\x11\x02\x3d\x47\x8a\xad\x17\x72\xb3\x41\x2f\xc0\xf2\xf9\x27\x49\x05\x26\x56\x1d\xde\x90\x08\xe1\x63\x71\x67\x3b\x3c\x82\x1d\xc4\x48\xdc\x66\x62\x3f\xdb\xa2\x84\xf6\x68\x84\xae\xb9\xa1\x57\x5d\xe0\x16\xdb\x38\x22\x90\x03\x25\x4b\x48\x4f\x0b\x60\xa4\xea\xbf\x83\xac\x12\xf7\x8b\x67\x85\x2a\x2f\xf4\x6a\xe8\x1d\x9e\xbe\x2b\x4e\x11\x0c\xca\x7f\x94\xf3\x1f\x25\x2c\x9d\xf7\x4c\xa1\x23\x75\x51\xc9\x63\x9c\xff\x28\xcd\x4a\xb8\xa8\xa4\x1f\xcf\x80\x31\x6f\x2e\x15\xf4\xcb\x6e\x3b\x90\xbb\x38\xb8\xf5\xaf\xde\xc3\x75\xbf\xa3\xfe\x73\x9e\x8f\x46\x0d\x6e\x30\xe1\xd0\xfd\x0b\x49\x5f\x15\xea\x62\x5c\xb2\x6a\x49\x4e\xe5\x76\x60\xed\xab\xf6\x3b\x03\xa6\xf0\x4a\xd2\x09\x39\x97\xf4\x21\xf9\x28\xe9\xf4\x01\xb9\x91\x74\x7f\x8f\x1c\xe8\xd4\x6b\x49\xa7\xe4\x0f\x49\xf7\xc8\x89\xa4\xfb\xe4\x8d\xa4\xf7\xc8\x07\x49\xef\x93\x4f\x92\x3e\x20\xaf\x25\x7d\x25\xc9\x4b\xab\xf8\x3a\xb4\x7f\xdf\xeb\x0f\x7f\x97\xf4\x40\x92\x67\x36\xe9\x52\xd2\xe9\xe4\xbb\xfd\xef\xee\x4d\x1f\xee\xed\x93\x5f\x92\x5f\xcf\x6d\x9e\xa7\xfa\xb3\xb7\x9a\x17\xd6\xe7\xdd\x84\xfc\x2a\xe9\xfd\xc9\x84\xfc\x66\x5f\xbf\x80\x37\x3f\xd9\x5f\x3f\xda\xbf\xdf\x43\xea\xcf\xf6\xd7\xdf\x25\x7d\x34\x21\x3f\xd8\x5f\x7f\xd5\xa5\xfc\xcd\xfe\xf8\x46\xc6\xf0\xdf\x7f\x91\x7e\x39\xa1\xd7\x32\x43\x1f\xe5\xe6\x46\x1a\xf3\x13\x39\xf7\x6d\x9b\xee\x22\x7d\xec\x7e\x3b\x9d\x6c\x26\x38\xd7\x47\xd9\x37\x72\xfe\x8d\xcc\xbf\x89\xda\x9f\xe4\x09\x9b\xe5\x1f\xb1\xfa\xde\xda\x17\x02\x43\x61\x4c\x0c\x9d\xf1\x57\x18\x06\xbb\x7f\x7e\xab\x11\x98\x76\xc1\x27\xf7\xb2\x00\xfb\xf2\xe8\x11\x98\xff\x84\x0f\x72\xff\xb8\x07\x6e\x10\xaf\x65\xf6\x51\x9a\x1e\xb8\x6f\xde\xcb\x18\x0a\x1f\xb3\xb8\xd5\x7b\xf7\xff\x13\x4d\x77\x10\x8a\x92\xd8\x0e\x9a\x6c\xf8\x58\x99\xeb\xa6\x57\x72\xb3\xb9\xcf\xf6\x75\xcf\xf0\xb7\x7b\xf7\x37\x13\x77\xb0\x3a\xe1\xdc\x45\x45\x78\x94\x47\x05\xef\xc7\x14\xff\xd1\xc3\x3c\xa9\x73\x3a\xe9\xa9\x73\x7a\xdf\x0e\x5e\x72\x58\x3c\xb2\x87\xc5\xa3\x07\xf9\xe7\x9b\x7d\x7f\x12\x9a\x18\x97\x71\x3f\x67\x74\xef\x4e\x4d\xe4\xfe\xde\x03\x9c\xc4\x25\x1b\x52\xfa\x52\x66\x19\xc4\x96\x90\x59\xb6\xbb\xcb\x08\x83\x3d\xc6\x4a\xa2\xca\x78\x09\xf1\xd2\xe3\xc3\xdf\x9f\x3c\xfe\xab\x53\x64\x24\x8b\xce\x9f\x65\x60\xc2\x94\x5c\x4d\x08\x1b\x87\xd4\xe9\x6b\x61\xe2\xc3\x30\x02\x62\x96\x9e\xd3\x73\x3b\xa7\x59\x16\x2f\x54\x0a\x0b\x55\x96\x88\xe1\x1c\x55\xfa\x8f\xde\x8b\x26\xdf\xcf\x9a\x53\xcc\x4d\x22\xba\x97\xbd\x96\x26\xf7\x66\xf3\xe8\xa1\xb9\xa3\x7c\xf4\xc8\xc0\x38\x38\xfa\xf5\x83\x9c\xff\x20\x1d\xb8\x27\x3a\x02\x20\xad\x63\x9c\xa3\x18\xe5\xf3\x07\x09\x28\x9f\x0c\xe3\xcd\x86\x3f\x51\x38\xcb\x7e\x90\x00\xf6\x09\x9d\x88\xef\xad\xec\xb0\x74\x2c\x94\x55\x9f\x85\xb2\xc2\xfe\x74\xee\x58\x28\xf3\x2c\xe3\x7d\x85\xb4\x13\x5d\x21\x22\xf0\x26\xd6\x00\x37\x30\x3c\x22\xcb\x82\x61\x75\x1a\x52\x1d\xd6\x74\x2b\x90\xad\x09\xdc\x2c\x42\x9b\x9c\x69\xf8\x61\xb7\x39\xbd\x6f\xa8\x8a\x2f\x85\x7b\x7d\x2f\x6c\x5f\xee\xf8\x18\x24\x5b\xd3\x23\xd3\x7c\x61\x44\xfc\x9a\x8a\xb6\x9a\xb7\x11\x3e\x6b\x6b\x35\xd7\x59\x86\x5e\xea\xa5\xa1\x1f\x5e\xc1\x45\xda\xef\xfa\xe7\x1b\x99\x65\x3f\x96\xa8\x26\xef\x25\xc6\xe4\x7b\xfd\xa4\x30\x26\x75\x74\x3d\x57\xc6\x0c\x17\x5c\x87\xe8\x66\xb2\x05\x58\xb9\xda\x5a\x0c\x6a\xae\xca\x7f\x82\x69\xa7\xf6\x26\xe5\xad\xb9\x29\x01\xdb\xcf\x39\x72\x9f\xbf\xad\xf8\xb9\xf9\x1a\x3f\xf1\xc8\x46\x7f\xe5\xf5\x35\xb7\xf9\x5f\xb2\x8f\x6c\x89\xe7\x2a\x67\x31\x84\x3a\xac\x64\x77\x73\xd9\x69\x08\x66\xfe\xc8\x6e\x8d\x62\x74\xc4\x84\x3c\x6f\x45\x55\x8b\x4a\xdd\xd0\x47\x8f\xa2\x54\xe0\xfd\xbe\xaf\x91\x4c\x38\x3b\x4b\xf0\xec\x10\xc0\x70\x10\xbd\x52\xe3\xaf\x66\x1e\x5e\x29\x32\x0b\x68\x15\xec\x6e\xaf\xfa\x9b\x39\xe9\x6d\xdd\x24\xaa\x5b\x00\x26\xae\xae\xa9\x45\x1f\x04\x7d\xf4\x28\x9f\x9a\x90\xaf\x7b\x2e\xe5\x7e\x2e\xe8\xe4\x09\x45\x82\x02\xb9\x0d\x74\x52\xe1\xdd\x56\x8a\xc0\x78\xfe\xe8\x51\xbe\x77\x7f\xf2\x84\x8a\xf9\xa3\x87\xf9\x7d\xf7\xf8\x5d\xfe\xe8\x7e\x10\x36\x2d\x6f\xd6\x6d\x27\x80\x14\x6f\xeb\x98\x01\xef\x7b\x42\x85\x37\xd8\x1b\x52\x7a\x59\x67\xd9\x49\x8d\x38\x6e\xb6\x7e\xa7\xfa\x06\x44\x10\x45\x5b\xbd\xef\x99\xaf\xfc\xc7\x1a\x09\x52\xa4\xa9\xe4\xd6\x9e\x68\x79\x77\x40\xf4\xd1\xdd\xe0\xf6\x4a\x50\x4d\x44\xd0\x8a\x40\xe7\x35\x0f\x41\x7c\x04\x97\x9f\xcd\x92\xd7\x73\x83\x89\x21\xb7\x91\xb8\x01\xcb\xc5\xd9\x82\x1b\x36\x40\xb5\xd6\x0e\xe9\xb0\x1e\x6d\x68\xe8\xbd\xef\xcc\xb1\xf1\xa1\x44\x98\xe8\x11\xd5\x67\x13\x87\xb3\x69\xb3\x59\x98\x8b\x57\x37\x4d\x87\xd2\xc9\x27\xaf\xe5\xec\xb5\xdc\xd0\x8f\x72\x16\x6e\x7e\x4e\x4b\x84\x67\x33\x83\x16\xac\x1f\x0d\xd5\x30\x97\xb8\x25\xbe\xbd\xd0\x65\x95\xe0\x40\xf7\x8f\x1a\xc1\x61\x22\xc8\xa9\xf4\x66\x1f\xb5\x21\x1a\xd7\xae\x85\x8a\x3e\x93\xc4\x35\xe0\x47\xfb\xd7\x8c\x41\x7c\xbf\x75\x28\x5d\xc0\xa9\x1a\x48\x03\xaf\xe4\x05\x5b\xfc\x52\x8b\x4b\x3d\x14\xa6\xec\x88\xc8\x86\x2c\xad\x25\xc1\xc9\xd2\xd6\x21\xe8\xef\x81\xe1\x74\x2c\xc8\x81\x34\xcc\xc2\xb5\x6c\x1f\xef\xf7\xf4\xb9\x0b\xef\xfe\x90\x60\x69\x62\x26\x03\xa6\x6e\xcf\x8d\xc2\x1f\x30\x55\x11\xe3\x70\x02\x79\x5d\xb7\xf4\x78\x23\x61\x29\xcf\x7b\x00\x9b\x5e\x58\xda\x03\x7b\xbd\x97\x8a\xd1\xeb\x12\xd5\x18\x93\x64\xcd\x5e\xca\x2c\x9b\x4e\x1e\xa3\x9a\xbe\x93\x3b\xbf\x4a\x58\x7d\x06\xfc\xef\xad\x0c\x5e\x59\x29\xa9\x74\x04\xa6\xda\x6c\xaa\x27\xba\xed\xed\x0c\x94\xbb\x89\xb0\xdd\x69\x9c\x91\x47\x65\x16\x21\xce\xb2\x6a\xe8\xc5\xfb\xc8\x3d\xc1\x18\x64\x74\x0b\x14\x2e\x56\xa4\x63\x05\x0d\x00\x29\xfd\x07\x47\x7f\xb4\xb6\x56\xbd\x75\x0c\xdf\xfc\xfb\xc6\xf0\xad\x66\x7e\x80\x0f\xa9\xbb\x27\xc9\x66\x53\xeb\x61\xf9\x82\x71\x71\xc3\x52\xfb\x61\xa9\xff\xd4\xb0\x24\x74\x78\x48\xe9\x2f\x72\xde\xa1\xb5\xbf\x48\x43\x5b\xf2\xd6\xfc\xcf\x05\x9d\xe4\x5d\xd2\x7c\x29\xf1\xee\x7d\xb6\x4f\x26\x4f\x90\xd0\x0d\x84\x85\xb1\x0b\x3e\x41\x82\x4e\x30\x41\xbc\xfd\x05\xc7\xbb\x35\x7e\xac\x73\x4f\xf7\x26\x4f\xc4\x7c\xba\x37\xc9\xef\x3d\xd4\x4f\xf7\x1e\x4e\xf2\xe9\x04\x1e\xf5\x9f\x7c\xfa\xc8\x64\x78\xb4\x37\xc9\xf7\xd9\xfe\x13\x31\xdf\x67\xfb\xf9\xbd\x7d\x48\xd5\x7f\xf2\xe9\xa3\x07\x93\xff\xbc\x90\x48\x7c\xab\x9f\x42\xc5\x1c\xd6\xef\x63\xa1\xc7\xe2\xb3\x2b\x41\x6c\x5d\x09\x1f\x60\x25\x24\x43\xa6\x37\x82\x25\x5b\xcf\x25\xbe\xad\xe8\xa5\xb4\x4e\xfb\xcf\x41\x64\x31\xe7\xd7\x64\x23\xc7\xa7\x6b\x79\xf3\xaa\xe2\xcf\xd7\x86\x1a\xbc\x92\xd8\x0c\x61\xed\xdf\x3e\x67\xcb\xe2\xe6\x95\x24\x42\x2f\x78\x3d\x70\xbb\xa8\x35\x56\x15\xde\x45\x3a\x77\x4b\xb0\xc1\xf8\x31\xad\xe7\x93\xbc\xde\x11\xbb\x95\xeb\xa9\x5b\xb0\x5f\xd3\xe3\x6e\x97\x3f\xc9\xfc\xc7\x78\xed\x6d\x95\x3e\x1e\x61\xa0\xb9\x86\x72\xb6\x4e\xa1\x70\x6f\x34\x68\x9d\x68\x4d\x7f\xe8\x2d\x79\x27\xc3\x06\x07\x90\x63\xd7\x12\xde\x68\x0b\xd1\xd5\xf5\x9b\x9e\x39\x95\xe8\x9f\x3b\xaf\x54\x7c\x5e\xa9\xce\x79\xc5\x7b\xce\x2b\x11\x9f\x57\xe7\xed\xf3\xaa\xb6\xe7\x55\x9d\x9c\x57\x3c\x3e\xaf\x44\xeb\xbc\xe2\xfe\xbc\x52\xf6\xbc\x52\xfe\xcc\x8e\xe4\xb2\xc3\x76\x8f\xf6\x1e\x4c\x35\x17\xf8\x2f\x1c\x5d\xca\x1c\x5d\x8e\xed\xfe\x24\xe7\xb6\xfa\x1c\xb9\x63\x0c\x06\xd9\x36\x67\xcb\xd4\x96\x25\xc2\xb7\x30\xfc\xd3\x4d\x2c\x02\x66\x59\x6c\x9f\x16\x3a\xf2\x83\x74\xd6\x6a\x3f\xc8\xd9\x0f\xde\x5a\xa9\x27\xe0\xac\x66\x6d\x7e\x86\x50\xe6\xd0\x02\x05\x21\x67\xb5\x08\xd9\x34\x08\x13\x3d\x91\x91\x56\xc3\x76\xc5\x5b\xbf\x01\xb3\xff\x14\x62\x0f\xc5\xd2\xce\xc9\x82\x9d\x31\x01\x4f\xa9\xa8\xf6\x44\xb3\x84\xe8\xc7\x1a\x3d\xfa\x2e\x31\xac\xf3\xca\xc9\x93\x9a\x3f\xab\xaf\x56\x10\x96\xc8\xac\x14\xdd\x9c\xdf\x25\xfd\x24\xa3\x66\xac\x93\x66\xd8\xe5\x33\x05\x63\x3b\xa7\x22\x04\xc3\xab\x8a\x17\xcb\xe5\x8d\x1e\x37\xca\x71\x24\x1d\x47\xdc\xdd\xaa\x6c\xc7\x43\xb1\xc5\xdd\x8b\x8b\xfb\xa9\x46\x8f\x1e\x12\x96\xc0\x66\x73\x50\xec\xc6\x75\xd4\x5b\xea\x38\xeb\x36\x37\xa3\xbb\x7b\x44\x57\x73\x2e\xff\x54\xb3\x17\x5e\xca\x4e\x56\xa6\xb7\x66\xeb\x5d\x8a\x13\x2f\x6b\x27\xb4\x4d\xaf\xff\xdd\xa9\x17\x5d\x52\xba\xb7\x3b\x25\x4c\xc4\x36\xce\x87\xc6\x85\x82\xd3\x43\xd9\xb2\x42\xe3\x33\x6f\x71\xea\x0d\x38\x12\xaf\x32\x67\x6a\x0a\x1a\x62\x90\x7b\x9f\x05\xa8\x2e\x0f\x7d\x50\x47\xc6\x36\xb5\x75\x3f\x4b\xee\xe5\xbc\x07\x59\x6a\x6b\xf8\xae\x42\xa2\x65\x6b\xa8\x73\xce\xd2\xcb\x37\x77\x3b\x61\x7c\xb7\x92\x97\x93\x5c\xe9\x22\x62\x9b\xb0\x97\x92\x32\x72\x28\xc1\xc9\xd1\x03\x8f\x80\xd6\x9b\xbc\x97\x54\xb5\x94\x9c\xbf\x48\x7a\xf9\x19\xcd\x66\x14\xc2\xa6\x0c\xbe\x5a\xb3\x99\x31\xce\x74\xd4\xac\x28\x90\xd7\x00\x1c\x4a\xef\xf0\xe7\x47\xdc\x1d\x0b\xbf\x4b\x7a\x0d\xd5\x9b\x46\xcd\x58\xee\x76\x26\x11\x21\x37\xa9\xe9\xa1\x24\x95\x81\x9c\x56\xf4\xbd\x24\x75\x82\xe7\x33\xb9\xf7\x90\xd4\x89\x05\x64\xdd\x31\x7e\x8c\x74\xe9\x7d\x61\xa1\xfb\x15\xec\xea\x82\x71\xe7\x4c\x55\x11\x69\xb0\x58\xa6\x59\xe4\x4d\x4f\xca\x60\x4d\xbb\x34\x9e\x28\x70\xed\x56\x86\xe8\x9e\x6b\x5a\x6e\x8d\xee\xb9\xc6\xce\x73\x85\xae\xa3\x4b\xb7\x20\x39\xaf\xa2\x8f\xcd\xed\xde\x32\x5c\x4b\xae\x3c\x04\x45\x96\xa1\xa1\x49\xb9\x0b\xa7\x65\x28\x31\xf0\xd6\x36\xa8\xfc\x19\x2d\xfb\x6e\xa1\x28\xa5\x67\x26\xc3\xc2\x5d\x09\xcc\x16\x70\x13\x50\x60\x92\x7c\x41\x17\xc6\x48\xe5\xcc\xbe\x9d\x05\x4d\x71\x69\xd5\xc4\x7a\x45\x94\x29\xce\x40\x3c\x79\x9a\x8a\x3c\x7a\x38\x25\x53\x67\xc0\x87\x63\xcb\xaf\xe0\x98\x5d\x1b\x68\xdc\xef\xc2\xc0\x5c\xd0\xb2\x8a\x58\x32\xb3\xa6\x67\x17\x90\x6f\x8f\xac\x2b\x54\x93\x0b\xdc\xb4\xb1\x45\x3a\x6a\xde\x01\x6b\x5c\x84\x28\x52\x5b\xe0\xa5\x53\xca\xc7\xab\x8a\x9f\x3f\x2b\xca\x8b\x78\x54\x4e\xe7\x28\x79\x05\xa3\xb3\xd2\x0b\xd3\x0e\x13\x39\x05\x85\x62\x01\x10\x49\x41\xf7\x58\xd1\x53\x50\x3d\x16\x10\x9d\xbd\x37\x37\x19\x56\x70\x01\x57\xeb\x11\x83\xd1\xac\x8d\x4a\xf0\x8a\x1e\xc6\x9c\x13\x07\xac\xba\x59\x61\x6e\xe6\xae\xc8\x15\x6e\x92\xd1\xbd\x37\x79\xf4\x80\x94\x1d\xf5\xa2\xef\x6b\x49\x5d\xf8\xed\x34\x60\x5a\x89\x67\x15\x35\x0c\x03\xfa\x06\xd5\xc6\xaf\x63\xb3\x19\x1d\x0c\xe0\xae\x65\x50\x86\x20\xc9\x3b\xa3\x81\x74\xe2\xcf\x00\x0a\x19\x78\x08\x0c\x32\x38\x5d\xab\x01\xaf\x07\x6e\x5d\x0e\x7e\x7a\x31\xb8\x2e\xe4\x40\xae\x58\x59\x9d\x55\x6c\x31\xfe\x27\xff\x27\x3f\x58\x2c\x06\xc5\xe0\xf1\x7b\x1b\xf6\xc8\xe7\xa6\xe3\xf1\xf8\x49\xa8\x6b\x70\x51\x9d\x5f\x30\x31\xa8\xf8\x40\x5d\xb0\x81\x12\x8c\x0d\x54\x3d\x58\x89\xfa\x63\xb5\x60\x83\x62\xb0\xac\x0b\x2d\x6a\x0d\x2a\xbe\xa8\xca\x42\xd5\x62\x50\x8b\xc1\x6a\x59\x94\xec\xa2\x5e\x2e\x98\xd0\xb9\xed\xb5\xfa\x78\xb4\xf3\x17\x3d\xba\xcd\xef\x72\x48\xe9\x07\xcd\x76\xfc\x2e\xe9\x1f\x12\x93\x8a\xfe\xa5\x40\x95\xc1\x17\x85\xad\x6c\x29\x7f\x19\x51\xfe\xfd\x5c\xef\xff\x2f\x19\x69\xb2\xaa\x50\x49\xce\x24\x2a\x49\x01\xd7\x65\x89\x81\xdf\x54\x97\x03\xf3\xfa\x4a\x53\x88\x9b\x15\x83\xb8\xfe\x89\x99\x12\x7a\x70\x2f\x8b\x6a\x82\xe3\x53\xf3\x1c\x7d\x14\xea\xd5\xd6\x6b\x4a\x6f\xe3\x79\xde\x4f\xdb\xce\xfb\x2f\x0f\xdd\x75\xe0\x66\x33\xfc\x51\xc2\x8a\x3c\xc7\x5a\xc0\xff\xf2\xae\x2f\x3a\x5d\x6f\xee\x58\x75\xcd\xa1\xa4\x07\x25\x3a\x94\xce\x1c\xff\x23\xbe\x55\xf4\x63\xb0\x0d\xb0\xf2\x49\x08\x4f\x56\x7a\x2f\x86\xc0\x2c\x3b\x55\x6e\xc4\x3e\xbf\x2a\x3c\x06\xd5\xfc\x55\x91\x47\xc0\xfc\x57\x8e\xf1\x78\xac\x65\xb8\xbd\xc7\x2c\xcb\xd0\xa5\xa4\x0c\x47\x66\xef\xec\xf1\x2f\xfe\xdd\x2f\xfa\x04\x7d\x2e\x69\x6c\x07\xff\x0a\xe4\x14\xf6\xe4\xa9\x5e\x47\x4f\x65\x82\x7b\xad\x99\xfd\xdb\x58\x1b\x7f\x28\x67\xf8\x50\xd2\x1b\xd3\x4d\x9f\xef\x63\x37\x5f\x96\x0d\xdf\x68\xae\xa0\x2f\xfb\x4d\x2c\x1a\x95\x31\x84\x32\x61\xe4\xbd\x8c\xdc\xcb\x53\x83\xfe\x16\xb0\x81\xb3\xd9\xc9\x32\xa4\xf4\xc8\x6b\xb6\xfd\x4a\x26\xce\x51\x24\xd2\x5c\x43\x8e\xdb\x43\x49\x99\x3b\xe4\x94\x3e\x96\x5b\x31\xde\xc2\x41\x8d\xf4\x59\x9c\x1d\xca\xf6\xfa\x05\xf3\x7f\x7b\x73\x4c\x84\x3e\xc1\x2b\x8a\x74\x51\x38\x69\xde\xac\xc7\x12\x70\xcf\x72\x3c\x0f\x12\x23\xa4\xfb\x2e\xe4\x7b\x6a\x04\xe8\x1c\xa0\xf0\x9d\x6c\x17\x41\x22\x35\x8c\x4a\xa1\xe4\xcc\x95\x88\x05\x40\x14\x6d\xe0\xb9\x76\x82\x45\x29\xf1\x06\xf1\x9e\xd9\x71\x9e\xe5\x59\xf6\xa9\x40\xca\x39\x01\x92\xdf\x8a\x96\x55\x09\x30\x7e\x0a\x13\x41\x7b\x02\x9a\x3b\x50\xd9\x34\x22\xb8\x79\x8a\xbb\xf0\xa2\x40\xdc\x00\xf2\x81\xcf\xb1\x05\x35\x77\x18\xea\x1d\x5c\x73\x6f\x60\x54\x39\xc3\xf7\xd4\xe9\x5b\x57\x07\xad\xc6\xb7\xd2\x1d\x8f\xdc\x9a\xc4\x07\x6a\x65\xa2\xb6\x55\x86\x90\xad\x69\xd5\xe2\x54\x5c\xf0\xf9\xa3\x5a\x1c\xd3\x8a\x18\x13\xc8\x35\x59\x3a\x73\xc1\x33\x51\x5c\xb1\x51\x6e\x5c\xc5\x0d\x4f\x66\x7e\xb0\xab\x53\xb6\x18\xe5\x37\x1c\x8d\x34\x89\x1f\xa5\x5e\x39\x23\x4d\xfd\x6b\x9b\xb5\x58\x2f\xaa\x7a\xe4\xcd\x9c\x57\x74\x32\x5b\x3d\xfe\x87\x0f\x61\xbd\xda\xd9\xc1\x37\x1c\xfd\x83\x1d\xad\x8e\x5b\xa5\x18\xff\x48\x53\x0b\x38\x2d\xb6\xab\xa9\xae\xce\x6d\x25\xd5\x55\x71\xee\x1a\xba\xac\xf8\x65\xeb\x23\xb2\xad\xa1\x67\xb5\xb8\x32\x79\x05\x93\x4c\xf9\xbc\x72\x7d\x7a\x55\xa9\x76\xee\x05\x53\x45\xb5\x94\xe6\x03\x55\x9f\x9f\x1b\x97\xd2\xa4\x49\xc6\xc2\xf2\x13\x43\x9c\xac\x4d\x59\x15\xff\x58\x2c\x2b\xa8\x9a\xbc\xe5\x48\x90\x51\xcd\x9f\x5d\x14\xfc\x9c\x8d\x7a\xad\x2c\x5b\x76\x94\xf4\x36\x32\xa4\xcc\x87\xc3\xb5\x37\x5a\x6c\xbe\xaa\xf8\x60\xe1\xf9\xcb\x17\x36\x2e\xf1\x94\x5f\xea\x2f\x56\x86\xfc\xf4\xf8\x46\x4b\xcd\x38\x95\x74\x7d\x24\x8f\x49\xcb\x2e\xd5\xb9\x18\x87\xa3\xad\x9c\xf3\xb1\x6e\x8e\x75\x19\xb6\xd1\x0d\x57\xf4\x28\x7c\x49\xca\x63\x9c\x3b\x3f\xe4\xe8\x4b\x2d\xf0\xa7\x9f\x8e\x46\x3b\xdd\xaf\x75\xe2\x31\xce\x7b\xbc\x8a\xdd\xd6\x2c\xc1\xab\x58\x10\x19\x5c\x01\x96\xa9\x95\xec\x09\x43\x1c\x93\x43\x18\x2c\x08\xca\xd3\x3b\x98\x26\xd7\x53\x88\x70\xdc\x33\x99\x09\xca\xc2\x36\x50\x83\x08\x9d\x38\x42\x2d\xe0\x09\x6a\x81\xa0\x2b\x52\x25\xac\xbd\x88\x82\x9f\x1a\xcf\x64\x60\xbd\xd7\x54\x12\x4e\x2b\xb2\xd4\xe7\x3d\x05\x8b\x8e\x60\x66\x2f\x72\x31\xae\xaf\x39\x13\xcf\xeb\x72\x7d\xa5\x25\xcd\x92\x52\xfa\x96\x8d\x2f\xd4\xd5\x12\x66\xf0\x1d\x43\x6b\x8c\xe3\xe4\xf9\x48\x96\xa2\x5a\x81\x38\xb6\x9e\x23\xb4\xa6\x2b\xeb\x8c\x79\x68\x6c\xc1\xd0\x68\x51\x7d\x1c\x61\x3c\xae\x9c\x9d\x32\x1d\x3d\x36\xdf\x3c\x79\xfc\xcf\x6f\xed\xd3\x88\xac\xe8\x3a\xb1\xdb\x5f\xc7\x11\x82\x70\xde\x5d\x27\x7c\x5c\xc9\xf9\xaa\x53\xdd\x9a\xdc\x56\x32\xd7\x2f\x1b\x9c\xa3\x9e\xf7\x98\xb8\xf1\xa7\xc6\x25\x7e\x4d\x57\x84\x07\x63\xdf\xb0\x85\xe8\x70\x02\x18\x3b\x7f\x68\x3e\x62\x0d\x0f\xd4\xfc\xc6\x18\xe7\x9d\xa2\x5f\xbf\x47\xa5\xde\x07\xba\x40\x0c\x44\x73\x49\xd6\x40\x34\x39\xf9\xb5\x40\x9c\xae\x09\xc0\x46\x0d\xa7\x98\xa8\xd8\xe4\x0f\x38\x57\x23\xd1\x3d\xe5\x48\x92\xca\x2f\x3a\xf9\x67\x68\x2d\x11\xb4\xfa\x02\x7a\x2b\xe8\x64\x26\x22\x5a\x2b\x3c\xad\x15\x40\x6b\x5b\xa5\xf4\xd2\xdb\x76\x55\x7f\x8e\xe6\xb6\x4b\xf9\x3c\xdd\x6d\x7f\xb1\x85\xf6\x76\x9a\x17\xd1\xdf\xca\x22\x9f\xc0\x53\x0f\xb1\x2b\xb7\x91\x4a\xb7\x5f\x01\x0b\xa5\x0d\x69\xf6\x85\x64\xba\x8a\xc8\xb4\x05\x46\xa9\x3a\xc0\x28\x5f\xd3\xa8\x16\xfd\xae\x2c\x64\xca\xd7\x74\xce\xc3\x01\xd1\xaa\x79\xae\x97\xa1\xc0\xc4\x29\x2b\x88\xa6\x1b\x2b\xca\x67\x46\x74\x17\xa0\x27\x5f\x6a\xe2\x7f\xa1\x25\xfe\x8b\x36\x25\x75\xbe\xdf\xa7\xf4\xe2\x68\x19\x7b\x31\x2c\xe7\x97\x1c\xad\xc8\xe9\xdd\x5e\x0c\xcb\xb9\xf5\x02\x38\xa5\xa7\xf3\xd3\x14\xd2\x02\x67\xd9\x0b\x66\x8b\x88\x8f\x92\x65\xcf\x51\x72\x3a\x47\x61\x64\x86\x06\xd2\x42\xff\x3d\xc5\x59\xf6\x93\x2b\xa4\x73\x8c\x9c\xda\x97\xa3\xd1\xce\xe9\x17\x41\x58\x2c\x3f\x03\x61\xb1\x6c\x43\xa8\x2c\xfb\x30\x2d\x96\xd8\xf6\xfa\x14\x0e\x9f\x92\x2c\x1d\xe6\xef\x69\x96\x5d\xeb\x06\x2d\xc9\x29\x39\x0b\x0e\xb3\x72\xeb\x89\x54\x69\x1a\xf3\x55\x27\x92\x5b\xd4\xa6\xc2\xca\x98\x7f\xea\xe3\x54\x32\x75\xa0\x94\xa8\x4e\xd7\x8a\xa1\x11\x24\xc3\x01\x7a\xc0\x90\xcd\x85\x7b\x37\x80\x00\x6f\xd1\x2a\xf2\xa2\xa0\xc3\x21\xef\xb8\x79\x2c\x29\x8f\xdc\x3c\x04\x49\xf2\x2c\xc1\xcd\xc3\xfa\xfd\x24\x2e\x1b\x59\xd6\xcd\xcd\x3b\x4e\x1d\x5b\x71\x82\xfa\x81\x80\xd2\x23\xf5\x1b\x43\x89\xdd\xe9\xe9\x84\xcb\x6d\x1c\x79\xd3\x0a\x63\x73\x97\x3b\xc8\x83\xd4\x4a\xd0\x78\x91\xf4\x49\x05\x3f\x19\xa9\x80\xb7\x5c\x9d\xaa\x70\x21\xd6\x45\x68\xa9\xbc\x53\xc0\xe7\x9a\x20\x5b\x02\x0b\x69\x01\x47\x81\x00\x31\x4f\x65\x2d\x80\xc4\x6e\x41\x61\xc0\x51\xa7\x05\x2b\xef\xd7\x60\x14\xb5\x30\x70\x38\xd7\x05\x10\x54\x51\xa4\xb9\x0d\x19\xb8\x0d\x99\xcb\x94\xdb\xc0\xf6\x38\xfd\xc0\x3e\x81\xa7\x1f\xaa\x30\xf6\x65\x87\xe3\xb2\x4a\x11\x0a\xa6\x5d\xe7\x16\x0b\x8b\x56\x75\x02\x4b\xf4\xc3\x74\xdf\xb6\x01\x14\xdd\x45\xfb\x80\x35\xc2\xa9\x77\x2b\x02\xc1\x2a\x9c\x6c\x38\x87\xc1\xc9\x51\xe5\xf1\x30\x64\x3b\xa2\x28\x26\xc2\xcb\x92\x21\x1a\x19\xe4\x4b\xbd\x31\xbc\xdf\x92\xde\x0e\x2a\xd6\x83\xe3\x39\x4a\x7e\x53\x69\x63\x7b\xdb\x9f\x4b\x08\x29\x15\x67\x50\xb1\xe2\xbc\x95\xdb\x08\xba\x32\x8e\xcc\x89\x31\x11\x59\x36\xac\xb2\xcc\x62\xcd\x06\x3c\xe9\xe0\xa1\x00\x9a\xe9\xd6\xac\xdf\xa9\xa7\xee\xaa\xd9\xe7\x70\xf5\x78\x60\xd5\x76\x27\x12\xe7\x08\x14\x79\x3a\x05\x1e\x4e\xe4\x66\xa3\x5f\xbd\x91\x06\xf6\xf6\x69\xb8\x9f\x7f\xa9\xbf\xfa\xb1\x44\x2f\x25\x79\x2f\xc1\x50\xf0\xa5\x24\x4f\x25\xc6\x18\x13\x24\x36\x9b\xaa\x13\xf9\xeb\x5e\xb2\xbd\xac\x1d\xef\xc3\xbc\xc7\x19\xca\xdc\xd0\x74\x65\x7a\x73\x15\x93\xa6\x3d\xf2\xae\x8c\xa9\x4b\xc9\x5d\x4a\x8b\xe9\xa3\x68\x3d\xda\x11\x45\x9d\x75\x89\x83\x05\x88\xec\x87\x92\xf7\xdf\x2e\x69\x84\x58\x8c\x2d\x3c\xfb\xdf\x0a\x64\x28\xbe\xa3\x41\x76\x6c\x43\x08\x3c\x03\x05\xcc\x3b\x4b\x3f\x41\x8d\x6d\x61\xf4\x85\x35\xf9\x5b\x85\x38\xc6\x46\xdb\xd5\x02\x1d\x26\xae\x6e\xef\xc1\x5e\xd1\x65\x3b\x50\x4b\x0b\x4f\x89\x74\xe3\x05\x6d\x5d\xc2\xc6\xdd\xaa\xdd\xc2\x6a\x86\x39\x15\x10\xe8\x09\xc7\x97\x11\xe7\xaa\xbb\xe2\x89\xec\x62\x6b\xc8\xde\xeb\x25\x33\xbe\x91\x76\x0c\xcf\x91\xdc\x82\x97\x2d\x3b\x20\xc5\x44\xc6\xe8\x20\xb2\x0f\x97\x43\xf6\x41\x86\xc8\xae\xeb\xa9\xec\x42\x86\xe0\x7c\x4b\x53\x96\x7d\xa9\xdd\xe6\x2d\x5b\x09\xbe\xb5\x4b\x07\x8b\xde\x6a\xf0\xb2\x45\xe5\xdb\x6d\x5f\xb6\x48\x6b\xda\x8d\x64\x09\x10\x4e\x97\x49\x8f\xfa\x3a\x08\x44\x55\x3f\xe4\xb7\x69\x4b\xf3\xb6\xb5\x35\x31\x72\xa1\x0d\x6d\xcd\xc7\xf1\x4f\x22\x5c\x18\x64\x2d\x02\x86\x1f\x0d\x8e\x5d\x98\x67\x2e\xd2\x41\xa0\x50\x9b\x3d\x83\x97\x65\x96\x59\x0c\xce\xe1\xdd\x9e\xdd\x91\x3b\x94\x38\x01\x44\xfa\xad\xd2\xec\xae\xb1\xaf\x6c\x6d\x0e\xf0\x67\x32\x3b\x64\xe2\xf7\xbf\x01\x0f\xcf\x32\x87\x11\xeb\x93\x0c\x7c\x2c\x8f\x90\x9a\xef\xdc\x47\xa2\xb3\x8f\xdc\xa7\xad\x3d\x54\xc5\x48\x43\x50\x4c\xfb\x50\x70\x66\x44\x40\x3f\x7e\xad\x11\x7e\xd2\x06\x3d\xcf\xb2\xe9\x63\xd1\xa6\xb3\x69\x0f\x41\xaa\x6d\x5f\x2a\xf4\xae\x59\xb1\x3b\xc5\xb3\x04\x89\x7d\x8e\x02\x66\x6c\x1b\xfd\x59\xaf\xfd\x30\x28\xa6\x33\x78\x1e\x40\x65\x97\xb9\xcf\xe9\xd0\xdb\x97\x71\x20\x06\xd3\x15\x7c\x3b\xf1\x03\x1d\x77\x0b\x75\xe0\xdd\x75\xff\xc1\xa1\x43\x4b\x8f\xf0\x32\x41\x89\xf7\xc8\xf0\xbe\x05\x24\x1e\xe0\x64\xe8\x49\x0a\x7d\x4b\xaa\x38\x7c\x88\x59\x84\x15\x95\xf3\x69\x56\x6d\xf6\xf2\x69\x56\xe9\x35\x18\x78\x8f\xe8\x1c\xf9\x52\x8f\x45\x13\x35\x48\x15\xe7\xb8\xb1\x48\x69\xd5\x19\x12\xf4\x50\xc2\x0d\xed\x7b\xb9\xd9\x4c\x87\x94\xf6\x3a\x0c\x18\xf2\x5e\x69\xda\xe6\x32\x44\xb1\x20\x10\xa7\x6d\x9a\x82\x9f\x54\xe6\x3a\x14\x13\x20\x9b\x7d\x65\xda\x2c\x9a\xed\x88\x23\x48\xf4\xae\x8a\xaa\x89\xdd\x28\x1d\x5c\x6d\x14\xcd\xd9\x5c\x4e\xb0\x9e\xbb\x35\x77\x55\x14\x53\x7a\x30\x25\x89\x29\xff\x61\x72\x10\x44\xe6\x24\xd1\x84\x05\x56\x8c\xa5\xa9\xdb\x82\x95\xb7\x0b\x4d\x50\x9b\x92\xa2\x31\x99\x3e\x8e\x2f\x56\xfa\xab\x9a\x6f\xaf\x28\x6f\x77\xa7\x5d\x19\xc6\x4d\x2b\x04\x00\x52\xf4\x9b\x02\xe9\x37\xb8\x1b\x49\x28\xa3\x7b\x93\x7b\xdf\x91\x64\x84\xef\x8a\xb4\x6e\x2c\x7b\x5a\x76\x1b\xf1\x46\x83\x0b\x21\xcf\xd5\x86\x19\x3c\x94\x94\xa5\x17\x87\x87\xe1\xbe\x2b\x61\x0c\x3f\x58\x24\x9c\x70\x81\x75\x9d\x58\x14\xb6\x70\xce\x5d\x0d\x4f\x42\x78\x8f\xd6\xfa\x9b\xab\xf8\xea\xf0\x8f\xa8\x30\xf0\x76\x8a\x8c\xab\x1e\x91\x93\xb6\x53\x6d\xbb\x2d\x27\xc1\x0e\x1f\xcc\x0b\xbf\xcc\x18\x31\x58\xaa\x05\x33\x29\x80\x0f\xec\xb7\x91\x8a\xb1\x99\xda\x00\xed\x5f\x67\x6b\x05\x26\xcf\xde\x68\xa8\x2d\x01\x7e\xf7\x1d\x98\x15\xfe\xeb\x6e\x22\x64\x9b\xed\xb4\x31\xf6\xaa\xe9\x75\x89\x38\x76\xcd\x4f\x5d\x73\x68\x4d\xc4\xe3\x3e\x9b\xec\xb9\xcd\x9b\x24\xf6\x65\xdc\xe6\xc3\x43\x27\x39\x94\xdc\x2d\x25\xac\xf2\xb4\x20\x7d\x28\x85\xd6\x04\xab\x6b\xbf\xf9\x23\x43\xec\x49\x94\x33\xb2\x70\x0d\x74\x22\xa4\xe9\xbc\xce\x0e\x15\x1d\x4a\xfa\x32\x72\x51\xd5\x24\x21\xe2\xc9\xe7\x8e\xff\x8e\xe9\x01\xe2\x5b\x08\x02\xf8\x98\x25\xc4\x27\xaf\x29\xcf\x5b\x89\x8e\xca\xf9\x98\x2b\xd6\xb8\xf0\x46\x76\xae\x8d\xff\xca\xe9\x47\x6e\x2f\x2d\x7f\xe2\xc6\xdd\xe7\x47\x8e\xa4\x61\x6d\xac\x62\xa7\xaa\xf9\x7b\x55\x08\x35\xaa\xf8\x40\x62\x73\xf5\x78\x2b\x75\x4a\x2e\xc7\x69\x16\xc2\xf8\x22\x4e\x3c\xe4\x8b\xc6\x87\x96\x37\x57\x8f\xa8\xd4\xff\xda\x6a\x80\x2c\x2b\xbd\x2a\xa7\x62\xd7\x9b\xcd\x75\xc5\x17\xf5\xb5\x01\xd4\x74\xa5\xe9\x4c\xf1\x6f\xd3\xde\xa5\x11\x64\x97\x63\x51\xf0\x73\xf6\xac\x5e\x73\x85\x6f\x4b\xba\x1c\x17\xbc\xbc\xa8\x85\xbf\xf5\x5c\xfb\xa4\x37\x67\x67\x92\x29\xb2\xa2\xcb\xf1\x59\x5d\xae\x25\x64\x59\xba\x5f\xe6\xad\x01\x48\xf5\x9a\x0b\xb2\xf2\x8f\xd6\xea\xe1\xb9\xae\x84\xc7\xb0\x6e\x46\x9b\x3f\x21\x0b\xba\x3b\x25\x17\xfa\xbf\x53\x3a\x21\x57\x74\x42\x5e\x51\x49\x2c\x60\xbf\xf2\x70\x54\xee\xfe\xf3\xe3\xec\x95\x41\xf8\x9a\x18\xb8\xde\x7d\x4d\x57\x7c\x6d\x9b\x0d\x5a\xd0\xb3\x9d\x35\x26\x3a\xd7\xca\xe4\x5a\xf6\xe4\xba\xa0\x67\x3b\x4b\x4c\xf6\x69\x9c\x9e\x65\xe8\x6c\xc7\xfe\x06\x2d\x8d\x55\xfc\x07\xbe\xf1\x23\x7d\x15\x5f\xba\xcc\xf0\x39\x7d\x45\x5e\xd1\x8f\xb3\x08\x35\xeb\x15\x40\x66\x99\x6e\x82\x3d\xdf\x39\x85\x0b\xba\x9d\x9d\x53\x7b\x9d\xb2\xa0\x67\x98\xe8\xd4\x95\x4e\xbd\xa2\x46\xdd\x79\xa1\x53\xe3\x8a\xe2\xd0\xfc\x56\xfe\x3d\xa7\xe8\x15\x3d\xc7\x11\xd8\x53\xf3\x8a\x7e\x6c\x4a\xba\xab\xb9\x97\xc5\x66\x03\x7f\x2f\xac\x98\x60\x56\xdd\x02\x96\xd9\x85\xe5\x5d\xcd\x2c\x34\xa5\x1e\x42\x9b\x61\x02\x19\x26\x49\x86\xd9\xdf\x38\xbd\x85\x09\x66\x8b\xc3\x25\xbb\xca\x25\xf1\xcb\xf4\x9d\x5e\x39\x79\xd9\x90\x8f\x9c\x0e\xa7\xe4\x37\x49\xeb\xd9\xa2\x06\xeb\xc8\x37\xa5\x87\x9d\x7c\x1e\x83\x59\xfc\xd6\xa1\xfc\xfb\x13\x8c\x67\x2f\x4b\xf4\x9b\x24\xcf\xb1\x2e\xe3\xb7\x58\x2e\x6d\xd2\xd3\xf0\x37\x89\x67\x71\x35\x70\xb1\x4a\x19\x29\x43\x1c\x8c\xdf\xa4\x35\x6d\xbd\xd1\x25\x85\x18\x08\xd5\x19\x9a\x3e\xc8\x6e\x40\x61\xfd\x5b\x0c\x55\x36\x1a\x61\x32\xdd\x7b\x98\xdd\x98\xcf\x0e\xf4\x67\x89\xd5\x87\x2d\xf8\xc0\xbc\xbf\xa6\x07\x80\xd6\x6b\x53\xaf\xb7\xd8\x2b\x5d\xcf\xaf\x0d\x4a\x6f\x7e\x9d\xd0\x0e\xdc\x38\x9d\xf4\x4d\x86\xa6\x7b\x9b\x73\xb5\xf9\xa8\xb0\x35\x00\x39\x57\xb9\x94\xe8\x37\xa9\xc7\x21\xe6\x3e\xfe\xef\xb9\x4a\xb5\xa0\xdb\x72\x91\xa5\x7e\x11\x19\xcc\xe8\x01\x8b\xbe\xfc\xa8\xf2\xd6\x37\x1f\x55\xaa\xcc\xd9\x7b\xd8\xcd\xf1\xb9\x52\xef\xe5\x9f\xc9\xf0\x30\x2f\x25\x92\x64\x4d\x7f\x93\xa4\xc4\xa4\x92\x68\x8d\x9b\xee\x54\xff\xd7\xac\x97\xea\x0c\x5d\xd3\xbf\x71\x72\x00\xa4\x9a\xdc\xd0\xeb\x71\xb4\x9e\x49\x49\xaf\xc7\xe9\x8a\x26\x07\x43\x4a\x6f\x32\xbd\x56\x6e\x52\x7a\x1b\x40\x5a\x07\x0c\x10\x54\xad\x2d\xf8\x10\x0d\xd5\x66\x33\x34\x81\xf5\x8d\x65\x0c\xa4\xec\x83\x36\xd0\x51\x15\x50\x15\x1a\xe7\x60\x1e\x74\xbb\x50\x50\x8c\x83\x98\x8f\x2c\x40\x91\xd4\x27\x87\x9a\x7b\xc0\x22\x89\x38\xce\x87\x43\x83\xf2\x5a\x08\xe6\x5a\xf5\xb6\x96\x95\xa1\xf3\xc3\xa1\x5e\xe3\x5b\x33\x80\x6a\x0a\x37\xa8\xd5\xab\xf1\xc2\x3e\xd8\xcb\x59\x72\x83\xbd\x6c\x5d\x66\xd9\x8f\x1c\xdd\xe8\xa6\x1f\x18\xf3\x3d\xa1\x48\xb0\xf7\xbc\xa6\xe5\x98\xf1\x85\x7e\x7d\x4d\x0f\xfc\x75\x71\x7c\xf4\xdd\xcc\xd1\x4d\xeb\xb8\xa3\x07\xe4\x26\x39\xec\x0c\x22\xc6\x55\xc5\xd1\x35\xb9\x31\x97\x1c\x8e\xe2\xe2\x1c\x5d\x53\x74\x40\x5b\x6d\xde\x6c\x16\xe1\x0c\x3c\xf8\x92\x33\x10\x5d\xd3\xeb\xd6\x31\x48\xd6\xf4\x26\x36\x82\xb0\x75\x12\x19\xda\xe3\xba\xbc\xc6\xa4\xa4\xbe\xdf\xd0\xe9\xb9\xcc\xa3\x6c\x8c\x2f\x74\xa6\xe1\xf5\x98\x7d\x52\x8c\x2f\xb2\x4c\x3e\x29\xe1\xc6\xbc\x24\x25\x95\x44\xd2\xb5\xae\xef\x05\x47\x37\x44\x62\xb2\x32\x4f\x25\x26\xeb\x2c\x5b\x65\x19\xd2\xc2\xe6\x75\x74\x16\x6f\x36\xd7\xd1\x49\x0c\x46\xd3\x7a\xc9\x84\x64\x73\xde\xc2\x8b\x1a\x1e\xf5\x2b\x7f\x2e\x83\x81\xb4\xfb\x20\x3a\x9f\x21\xdd\xe4\xd7\x93\x86\x0e\xe8\x81\xbd\x4a\x80\xa5\x8f\x30\x80\x4c\xc1\x2c\x21\x53\x23\x71\xe5\x63\x72\x6d\xad\x0e\x0e\x96\x4b\xc8\x2d\x11\x26\xf2\x49\x39\x47\xd7\xe3\x62\xb1\x30\x05\x1c\xe8\x6c\x66\x08\x90\x69\x01\xf1\x15\xe2\x1c\x1d\xe8\xe2\x0f\x7b\xde\x91\xa4\x0c\xd0\x58\x1f\xd0\xa3\x63\x38\x4f\xaf\xe9\xcd\x4c\xcf\x5e\xd8\x24\x33\xac\x8f\xb7\xeb\xe8\xc0\x3e\x30\xf8\xf4\x1e\x56\xe7\x9a\x2c\xd9\x99\xca\xaf\xc7\xb2\x14\xf5\x72\xf9\x92\x9d\x29\xa2\xea\x95\x4f\xf8\x50\xaf\x1a\x13\xa5\xa0\x8f\x7a\xdf\x98\x31\xd3\x04\x00\x1e\x80\x6e\x4c\x66\x37\x8f\x0f\x9c\x09\xc0\xcd\xce\x0e\xd6\x6b\xfe\xe8\xe6\x18\x3b\x90\xf2\xa8\x2e\x7a\x3d\xd6\xf5\xeb\xb1\x48\xde\x7d\xa8\x57\xf4\x7a\xac\xea\x55\xf3\x37\x8b\x94\xac\xcf\xce\xe1\x5f\xb9\xe6\x29\x9d\x50\xe1\x8e\x0b\xd2\x3e\xea\x6e\xa8\xe8\x1c\x73\x7f\x74\x8e\xb9\xfd\x07\xd9\x1f\xe6\xdd\x49\x7a\x96\xd9\x83\xe7\x9a\xde\x10\xa4\x8f\x39\xfc\x39\x08\xf8\xe9\x03\xb2\xbf\x47\x0e\x5a\xf8\x83\xba\xe4\x37\xf4\x20\xb5\xe5\xbd\x97\x1d\x44\xda\x86\x40\xc0\x4f\xf0\x9b\x6e\x0c\x7a\x14\x39\xcc\x7f\xa0\x07\x2d\x90\xf7\x03\x03\xf2\x7e\xd2\x82\x26\xfc\xa1\x46\xe6\x0d\x69\xbd\xc1\xb3\x37\x3d\xe1\x99\xd1\x87\x28\x9f\x51\xbc\xbe\xf9\x12\x90\x78\x13\x1d\xf7\x13\x3d\x48\x1c\x06\xec\xa8\x7f\xca\xb2\xd3\x0a\x4d\xc8\x27\xf2\xa6\x65\x71\xa9\x3f\x7a\xdd\xfa\x28\xf0\x0e\xaf\x6d\x24\xcd\xd8\x3f\xe3\xc0\x1a\x4d\xda\x59\xb1\x3f\x13\xdc\x54\xe9\x32\xb5\x21\x24\xdc\x54\xf4\x64\x68\xa0\x81\xaf\x89\x4c\xee\xfe\x0c\x50\xe4\xcb\x64\xd6\xdc\x0c\x65\x59\x32\x79\x40\x2a\x5f\x92\x6f\xb8\x1b\xee\x83\xd6\x70\x67\xd9\xb5\xdb\x15\xad\xcb\xd9\x04\x42\xbf\x0f\x4a\xcf\xd4\x78\xd0\x8e\x90\xa8\xdb\x76\x48\x0f\x7a\xd9\xae\x43\xf3\xfa\x3d\x3d\xdc\xea\x5a\xf2\xde\x64\xf9\x9d\xbe\x8f\x1d\x4b\xec\xcb\xdf\xb3\xec\x4a\xa1\xdf\x5b\x70\x84\xd3\x47\xf9\xbf\x80\x73\xa6\x79\xc9\xbd\x87\x6e\x97\x3d\xa3\x76\x37\xa5\x41\x1c\x9e\x99\xb7\x97\xc9\x98\xfb\xc9\x6e\x43\x76\xff\x42\x2f\x5b\x77\xf0\xbf\xd0\xcb\xa6\x17\x64\x7f\xfe\x0c\xfd\x82\xf3\x67\x9e\x4e\xfc\xd2\xfc\xb7\xf1\x52\x0e\xdf\xe9\x17\xeb\xc7\x59\x19\x51\x21\xa2\x59\x7a\x00\xbe\x97\xd8\x43\x3d\x31\xf2\x77\x49\x55\x00\x6e\x01\x92\x16\xd1\x30\x95\xd6\x49\x7e\xeb\xde\x4a\xfd\x26\x8d\x3b\x14\x70\x1c\xbd\xb0\x25\x59\x86\x2c\xc6\x54\xcb\x89\x5f\xcd\x35\x41\xf9\x9b\x9c\xff\x55\xee\xec\xe4\xc8\xe1\xfd\x30\x9c\xc3\x63\xdf\xf0\xfe\x5e\x66\xd9\xef\x65\x1c\x53\x8b\x08\xe7\x7e\xfa\xc2\x8d\xa0\xc1\xb7\x62\xf4\x27\xe9\x41\xae\x9c\x8e\x2d\xc6\x01\x32\xe2\x17\xfa\xb9\xb6\x2e\x62\x91\x91\xfb\x9b\xb6\x4d\xbc\x27\xe8\x2c\x25\xe8\x10\x70\x83\x99\x4b\xc8\x2c\xe3\x5d\x46\x9b\xa0\xfb\xd3\xbd\x8c\x19\x0d\xef\x66\xf3\xbd\xdc\x6c\xd0\xf7\x70\xd9\xb0\xd5\x77\x13\x74\x72\xdc\x38\x6c\xf6\xcd\xbb\x6f\xa5\xce\xa8\x57\xd0\x23\x2d\x3e\xff\xdd\xfb\xa9\x3e\xfa\xee\xf1\xdf\xe5\xfc\xd1\x77\xf9\xdf\xa5\x53\x0c\x1a\x34\xaf\x9f\x6a\xc4\xc8\xa7\x32\xf6\x7e\xfc\x54\xa2\x78\x11\xfe\xec\x00\xaf\x86\xd3\x99\x29\xec\x67\xf0\x22\x77\xa8\x60\x9f\xd5\x14\xee\x4f\xb1\x0b\x71\xf7\xda\x38\x21\x5b\x25\x0d\x8b\x7c\x7d\x23\xb5\x4e\x1c\xb3\x15\x10\x35\x8c\x92\x11\xfc\x4f\xf4\xc0\x75\x6f\x7a\x9d\x31\xf7\x67\x4f\xc7\xbd\x87\x64\x02\xa6\x73\x12\x4d\xc8\x83\x7b\x10\x27\xc1\xec\x3b\x91\x00\x38\x6e\xdb\x76\x7a\x65\x35\xdc\xea\xe5\xec\xfa\x67\x9d\xe5\xcf\xa8\x87\x09\x7a\x2d\xa9\x02\x7f\x5f\x32\x9c\x84\x11\x7e\x5d\x3a\xf8\xb2\x35\x44\x7b\xa7\x06\x84\x90\xfe\x05\x4c\x62\xe2\x1d\x11\x3c\x43\x1d\xa8\x55\xfc\x2e\xcb\x8c\x57\xb3\x2f\xf8\x65\xd0\xe2\x06\x40\x26\xa8\x0d\x80\x14\xfd\x9e\x76\x7a\xdb\xae\x8b\xa9\xfd\xd2\x0e\xe5\xeb\x12\x71\xf3\x69\x00\x67\x08\x6f\xad\x3b\x6a\xca\x56\xf4\xed\x50\x7e\x37\x6c\xe1\x66\xd3\x6f\xbd\xf4\x85\x5e\x40\x02\x63\x18\x48\x4e\x18\x5d\x48\xf8\xf3\x97\xc2\xb8\x5c\xf7\x0e\x24\xd7\x03\xc9\xbb\x03\x19\x20\x3e\x22\x1f\xd5\x30\xb6\x87\x65\x1a\x00\x99\x45\x7e\x78\xc1\x1c\x59\x8c\x17\x0c\xfc\xab\x15\x26\x00\x0c\xc5\xb2\xec\xbd\x84\x0b\x60\x0b\x0c\xb5\xd9\xc0\xc3\x09\xa0\x95\xb4\xe0\x4b\x00\x60\xe1\x9d\x7c\xfc\xab\x9c\x83\x0f\xf2\x7b\x89\xf3\xb7\x9a\x32\x18\x04\x28\x10\x57\x27\x43\x4b\x54\x5b\x50\x1d\x59\xa6\x1e\x43\xec\xad\x2e\x52\xc7\x1d\x20\x04\xdc\xaa\x8c\xb7\xa8\xd9\x7b\xb4\xf2\x96\xb4\xc6\x8e\xeb\xef\x5b\x8e\xeb\x29\xc7\xe2\xfc\xd6\xc3\xc0\x4c\xcd\xb9\x30\x35\xd2\xf7\x3f\x24\x32\x38\x3f\x84\x59\xcc\xcb\xf6\x9a\x57\x61\xa9\xb3\xb2\x15\xa4\x2a\x40\x66\x77\x03\xc5\xf2\x24\xd0\x51\xdd\x8a\x59\x6d\xd4\xf6\x09\xa7\x34\xa4\xb4\xde\x6c\x56\xb5\xbf\x58\x38\x2c\xe8\x70\xe2\x0d\xd2\xc4\xe3\x10\x4d\x47\xbf\x99\x26\x51\x73\xf6\xf3\x77\xe0\x44\xf3\xba\x68\x3b\x4f\x57\x67\xe8\x2d\xb8\xd1\xdc\xb3\x36\x48\x59\x66\x3d\xc2\xeb\xb1\xb9\x28\x8f\xae\xb0\xbe\xe4\x92\xd9\xd8\x6a\xcd\xb6\xfa\x17\xdd\xd4\x9d\xc8\x30\xcf\x2b\xa4\x62\xcb\xec\x16\xa8\x72\xcb\x40\x88\x99\xdc\xa9\x59\x94\xb1\x65\x9c\xf5\x32\x89\xdd\x68\xf0\x38\xc2\x30\x03\x3b\xbb\x28\x36\x7c\xeb\x26\x2b\xcb\xc4\x13\xca\xe7\xdf\xbb\x28\xc1\x39\xea\x1a\x31\xc4\x16\x00\x3e\x9c\x30\x9e\xfb\x28\xb2\x26\x2a\x53\x8f\xf5\x43\x8f\xcd\x92\xe8\x1f\xd6\x27\x94\x93\xfe\xa8\xe2\x30\xf9\xae\x43\x3e\x12\xfa\xac\x65\x30\x10\x5f\x17\xd6\x9d\xe1\xc8\x32\x54\xb7\x03\xb2\xd7\x21\xba\x2c\xb6\x77\xe6\x71\x8f\x87\x22\xbe\x25\x73\x67\x8a\xef\x7d\x03\x6b\xd0\x2a\x7f\xe1\x39\xf8\xa8\xb1\x6e\x10\xfc\xd8\x6d\xcd\x0e\x82\x89\xc7\x15\x5f\x91\xb6\x62\xf7\xa8\x6e\x42\x12\x73\x1f\x13\xd6\x8d\x04\x7f\x51\x23\x45\xd6\x61\x13\x11\x51\x81\xee\x8d\xd4\xb4\x2a\x1c\xc0\x83\x20\x8c\xd4\x3a\x31\xb5\x36\x25\x5d\x0f\xf8\x3a\x06\xb2\xee\x3b\x29\xdc\xb0\x3a\x68\x03\xf0\xcf\xfe\xe6\x1b\xf3\xd6\xda\xae\x80\x8b\xb6\x71\xfd\x3f\xad\x21\x7e\xb6\xb9\x32\x1a\x4e\x66\xb0\x59\xac\x89\xab\x1e\xc3\xbe\xc8\xd6\x10\x4a\x44\x1a\x58\xea\x80\x9f\x60\x52\x5c\x24\x17\x13\xc5\xd6\xdc\x31\x89\xbe\xc3\xce\x50\x9d\xbe\x1e\xc8\x2c\xfb\xa8\xc7\x48\x10\x09\xb8\x4f\x56\x28\x15\xf4\xa6\x4a\xbc\x29\x6a\x52\x8f\x53\x81\xf8\xfb\xea\x94\x09\xaa\xc8\x89\xf9\x1c\xd0\x75\x14\x7d\x1b\x0d\xf3\x70\x02\x01\x1a\x5c\xc4\x17\x3d\x10\x13\xf2\xde\x67\x30\x73\xe0\xad\x83\xfc\xc5\xb6\x73\x6c\x84\xa0\x28\x49\x54\xb7\x7f\xf7\x82\x09\xf4\x1c\xe6\x6a\xd7\x84\xf1\x3b\xd1\xbd\x5e\x4b\x7c\xeb\x1f\xed\xa5\xab\x3e\xfa\x4e\x4a\x55\x8b\x99\xa2\x0a\x41\x20\x39\xc1\xe4\x7a\xa9\xa8\x72\xa8\xd0\x09\xaa\xf4\x24\x2e\x2e\x33\x30\xb1\x56\x62\x23\xa1\xec\x69\x5c\x0e\x6e\x30\xb9\xb3\x8c\xf0\xdd\x5e\xeb\x3b\xdc\x34\xa8\xc6\x64\x0a\xcb\xc3\xf5\xc1\x86\x13\x74\x19\x67\x1e\xb5\xcd\x27\x11\xb3\x17\x29\x04\x79\x81\x39\x6a\x8d\x4a\xdf\xaa\xf1\x24\xf6\xb9\x3e\x1a\xe7\xd3\x7c\x92\x04\x4a\x63\x71\xa4\x3f\xcd\x3c\x6b\x7e\xdb\x6f\x0b\xcd\x44\x79\x9c\xdc\xe9\xcc\xc2\x9c\xff\xdd\x27\xdd\x73\xe4\x66\x0f\x3a\xc4\xe8\x0f\x35\xaa\x01\xc6\xc6\x73\xd8\x8a\x3e\x8f\x96\x11\x6b\xc5\x27\x9b\xe6\x8a\x3e\xbd\xeb\xbd\xce\xf0\xfb\x5d\x19\xee\xe5\x8a\x3e\x8b\x32\xe8\x16\x18\x92\xc5\x30\x11\x9f\x85\x7f\x9a\x3c\xc0\xa4\x26\xa3\x91\x47\xa0\xb5\x8b\xda\x87\x8b\xf6\x14\xb0\xcd\x19\x90\xe7\x86\xc4\x0a\xd2\x5a\xfa\x00\x12\x5c\xe7\x3f\xd4\x48\x90\x1a\xeb\x16\xd8\xae\x7e\xb6\xc4\xa7\x5f\x57\x22\x9c\xab\x86\x9d\x70\xd6\x9b\xa2\x15\x6f\xaf\x13\xc7\x7b\xcf\xa0\x43\xf9\x58\x21\x3d\x67\xd0\xbc\x1e\xc7\x28\xe6\xe4\xc2\x50\x0d\xd5\xf5\xc3\xd6\x54\x01\x89\x76\x01\xee\x6b\xbd\x7a\x6a\xac\x19\x1d\x12\x9d\xc6\x01\xc9\xaa\x8e\xcd\xea\x5d\x38\x07\xb8\x92\x28\xa8\x12\x68\x2b\x1b\x12\xdf\xd0\x92\x9b\x82\x2a\x52\xd3\x6b\xcd\x82\x61\x52\x3b\x60\x1c\x38\x4b\x00\x9f\xd0\x9c\x1e\xd6\x30\x75\xc6\x67\x38\x92\x0c\x69\x1c\xbe\xeb\xff\xc2\x9d\x5d\x12\x65\x0c\xa8\xe1\x7b\x37\x29\xdc\x72\x6d\x9e\x0e\xb6\x96\x8c\x8f\x7c\x6e\xd8\x38\x27\x26\x66\xd9\x9b\xc2\x78\x47\x6f\x9b\xf6\x6a\x7b\xe0\x16\x63\x0d\xeb\xa2\x50\x09\xc6\xc9\x5f\x38\x2c\x82\xb9\xb4\x11\xf0\x3d\x2a\x0c\xbc\xe8\x9a\x82\x4f\x1f\x60\xf2\x8b\x89\x64\xbe\x9d\xb3\x9c\x77\x99\x81\x6d\x3c\xa5\x72\xd6\xb8\x76\x5c\x64\x72\x34\x60\xa2\x9c\xd6\x30\x62\x4a\xe2\x61\xe0\x3d\x01\xe1\x3d\x4f\xd7\x8a\xe1\xfe\x19\x76\x14\x86\xb4\x0f\x1c\x80\xcd\xdd\x8c\xbf\x4c\x16\x42\x1e\xcf\xa5\x3b\xcc\x1c\x9d\xf9\xec\xee\xfc\xfd\xeb\x76\xe7\x77\xae\x44\x5b\x69\xbb\xa9\xad\x16\x04\xeb\xfc\xbb\x3e\x0b\xeb\xa0\xd3\x83\x49\xce\xf2\xdb\x88\x65\x1b\x9f\x58\x04\x80\x6e\x4f\x64\xc7\x85\x05\x58\xf9\x8a\xd6\x96\x7d\x77\xa7\xb7\xf4\x51\xe5\x6c\x4c\x00\xa7\xaf\xab\xe8\x0f\x02\x95\xa4\xc2\xf3\x49\x3e\xd9\xf4\xc7\x13\x18\x9f\x94\xc5\xb2\x5c\x2f\x0b\xc5\x8c\xa3\xdd\xe2\x69\xa5\xe4\x7c\x4b\x3a\x94\x96\xc7\xf2\xb6\x51\xae\xfb\x1e\x53\x1a\x6d\x83\x2c\x1b\x46\x02\xd8\x6d\x4c\x5f\x3c\x68\x87\x57\x64\x70\x1f\x5a\x4e\x79\x44\x03\xe4\x00\x3d\xa8\xc2\x4e\x00\x2d\xad\xaa\x6e\x49\xcb\xc4\x3c\x3b\x92\x12\x97\xf8\x56\xd2\xd2\x8e\xbb\x53\x92\xac\xe9\x32\xb1\xc1\x76\xe5\xad\x8d\xaa\x64\xed\xa1\x18\x40\xf8\x07\x51\x67\x3d\xae\x4f\x25\x13\x1f\x4d\xdf\xb3\x0a\xe3\xdb\xa9\x03\x5d\xca\x32\x84\xd6\x9d\xe8\x0e\x00\x09\x54\x12\x70\x3e\x6e\x43\x72\x73\xe8\x4f\xdb\x1e\x3f\x08\x43\x6b\x5a\x46\x36\xfd\x59\xb6\xee\x2b\xa0\x9d\x08\x05\x54\x7e\x9c\xf4\x82\x6b\xdb\xd0\xc3\x77\xed\x44\xea\x55\x24\x6b\xba\x36\xf1\x55\xcd\x54\x48\x3a\x9d\x84\x3e\x1a\xf4\x98\x28\xf8\xaf\xa6\x66\x6e\x64\xc3\x80\x4b\xec\xa0\x39\x68\x19\x54\x53\x92\x96\x91\x69\xae\xb9\x84\x81\xd0\x23\x32\x32\x42\x8a\x25\xad\x92\x46\x76\x99\xb7\x7e\xee\x3d\xec\x87\x2e\xd0\x7c\x14\x85\xa6\x2b\xa9\x6c\x1a\xbb\x0d\xeb\x74\xe7\x6d\x39\x02\x1e\xb9\xcd\x5b\x3b\x2a\x22\x8c\xb7\x4b\xbc\xfd\x70\x28\xca\xc9\x3c\x82\x0a\xcd\xe8\x55\xa8\x26\x55\x70\x2c\x8a\x97\x08\xee\xc8\x40\xdb\x69\x99\xa7\x9f\x15\xf0\x63\xae\x29\xad\x56\x90\x67\xb6\x67\xc4\x64\x33\x99\x2a\xcb\x34\x79\x85\xa8\x29\xe9\xd2\x11\xa3\x9e\x92\xe2\x0f\xbe\xfb\x3c\x19\xfd\x0c\xf5\xfc\x97\xc4\x06\x27\xc2\x81\xf4\x36\x47\x8c\x0e\x27\x04\x24\x37\x9c\x43\xa0\x28\x37\xde\xd7\x86\xa5\xa9\xb1\x13\x89\x40\xc0\x69\x09\x44\x2c\x74\xcb\xcf\xab\x17\xeb\xdb\x71\x5c\x23\xbb\x73\x10\x40\x7e\x37\x76\x56\xe4\x99\xb5\xb7\xf2\x6a\xb0\xcb\x08\xed\x10\x62\x8f\xe8\x16\x33\x02\x8f\x97\xec\x86\x72\xf3\xe8\x7d\x01\x20\x3c\x09\x9c\x65\xf0\xe8\x88\x16\xe4\xf1\x22\x9f\x29\x48\x8f\x26\x3c\xc5\xc3\x6b\x7a\xa4\x53\x2b\xbe\x60\x9f\xb4\x90\x6f\xca\x39\x8b\x5e\x25\x61\x75\x95\x49\x4b\x1c\x54\x20\x25\x95\x78\x21\x29\x76\xc7\x48\xf2\x44\x4e\x3f\x26\x5d\x37\x53\x98\xe7\xc0\x7f\xbd\xb2\x75\xc5\xde\x03\xfa\x77\xe2\x0d\xa5\x13\xda\xda\xf3\x30\x2c\x6d\xac\x4f\xa8\xa0\xa3\xd7\xd0\xa9\xe9\xe2\x09\x8a\xc9\x5f\xa2\x19\x71\x4c\x0b\xbb\x8e\x27\x2a\xe4\x05\x21\x2a\x98\x07\x81\xb4\xb4\x12\xb5\xaa\x2d\xde\xd8\x90\x8d\x2b\x69\xa2\xbb\x38\xbd\x74\xf4\xf5\xd3\x96\x0a\x34\x5c\x8c\xa6\xcc\x12\x9f\x23\xc4\xa9\x6e\x97\x5e\x1d\x44\x8b\xa0\x97\xec\x86\x30\x0b\x49\x97\xcc\x2f\x4b\xa5\x6e\xb3\x0a\x98\x55\xda\x44\x4b\x84\x25\xa1\x85\xc3\x58\xb0\x34\x16\x33\xce\x11\x6f\x2f\x07\x9e\xce\x18\xef\xcc\x06\xef\x3a\x98\xf1\xb6\xe5\x3c\x26\xfd\x81\x16\x7a\xcd\xd6\x49\x27\xc0\x44\xdb\xf4\xdd\x95\xe6\xbe\x6f\xbb\x08\x77\xa2\x6b\xb7\x7c\x53\x3b\x51\xb6\x13\x5f\xa3\x34\xba\x15\x04\x55\x48\xdc\xb7\x78\xaf\xfb\x96\xea\x77\xdf\x6a\xb3\xd6\xa9\xfb\x96\xda\xea\xbe\xa5\x62\xf7\x2d\xe2\xa5\x92\x10\xf3\x8b\x70\xbb\xa7\x99\xf9\x6b\x50\x93\xe0\xc6\xe6\x2c\x8e\x1a\xf5\xd6\xaf\x64\x4d\xec\x5d\x98\x45\x08\x59\x23\x28\xeb\xbd\x2e\x65\x18\x56\x3a\x04\xc6\x8c\xdc\x2a\xbb\x00\x03\x0c\x4b\x7a\xdf\x19\x35\xa7\xe1\x14\x07\x6f\x1d\xd5\x7c\x57\xba\x28\x1b\xfa\xd0\xab\x49\x45\x94\xa5\xac\x3f\xe5\x92\x3e\x24\xf5\x86\x7e\x17\x0b\xf5\xef\x5c\x6a\x12\xee\xfa\x57\x5b\x1c\x62\x7a\x6b\x4c\xf7\x08\x27\x8a\x3c\xdc\xd4\xad\x0d\xf1\x2b\x31\xab\x1f\x1e\x5a\xab\xa8\x22\x16\xc7\xee\xfb\xb4\xac\x7d\x28\x4b\x97\x04\x5f\x7e\x4f\x92\x5d\x65\x7e\x6f\x29\xe9\xe7\xb4\xa4\x47\xbe\xa4\xb8\x80\x9f\xfb\x0b\x70\x3a\x09\x3d\xb2\x1d\x8d\x66\xac\x99\x71\x03\x1b\x29\x2c\xa1\xf2\xdf\x72\xcd\x54\xa5\x10\x7d\x2f\x72\x49\x1f\xa5\x49\x3f\xea\x6c\xad\x50\xbd\x7f\xd7\x69\xf7\xd2\xb4\x1f\x72\x88\x3d\x25\x52\x4b\xee\xd6\x49\xb7\xef\x1d\xf9\xd8\x9c\xe5\xae\xb1\x91\x0a\x05\x29\x3d\x12\xb2\x77\x20\x98\xd3\x61\x89\xae\xab\x5c\x15\xe3\xb6\xbd\xeb\x10\x65\x33\xc0\xdf\x11\x46\x04\x51\xba\xd8\xb6\xfb\x69\xe4\xe7\xf2\xab\xbf\x86\x8b\xbf\x7d\x60\xef\x8e\x3e\xfb\xf9\x6f\xed\xcf\xa1\x47\xf7\x3c\x73\xe2\xd7\xf2\x3c\x3c\xe6\x47\xc7\x96\x4c\xf7\x96\x1e\x2b\x68\x6f\x13\x31\x36\x6f\x07\xd8\x75\xe8\x6c\xae\x60\x68\x72\x75\xb5\x32\xc3\x08\x85\xe6\x6c\x9c\x26\x34\xf1\xd8\xbd\xf0\xcd\xf7\x0c\x86\x3d\x67\x53\x94\x3c\x13\xf9\x2c\xaa\xda\xf1\x21\x01\x20\x34\xe6\x0e\x5c\x83\xa2\xaf\xb7\x5e\x09\x26\x6f\x83\xaf\x8e\x69\x4f\x1b\xdd\x38\xa9\xc4\x8a\x4a\xbe\x71\x0e\xa0\xce\xe4\x72\x41\x3f\x2d\x97\x94\x86\x0c\xf1\x9c\x03\xc0\x61\xc7\x9d\xec\x71\xda\x09\x7c\x47\xe4\xaa\xe2\x13\xa3\x9b\x51\xcf\x7f\x74\x5d\x6c\x7c\xf6\xd4\x91\x26\x34\x64\x5b\x7a\xec\x01\x14\x5d\xf9\xff\xd4\x87\xed\x9d\x94\xe1\x41\x12\xfb\x5c\x81\x00\x37\x80\x67\x19\x7f\x62\x20\x20\x69\xb4\x26\x7e\xfc\x6c\xd1\xa4\x37\x36\xc4\x8c\x3f\x56\xdb\x1c\x86\x14\x26\x48\x3c\x51\x9b\xcd\x04\x7c\xb5\xbc\xf3\x4f\x27\x97\xfa\x62\xa7\x22\xf5\xe5\x4e\x45\xa1\x6f\xdf\xdb\xbe\xa9\x27\x5d\x23\xa2\xd0\xf6\x78\xcc\x55\xec\x95\xd6\x19\x63\x3b\x8c\x48\x3d\xa1\xfc\xdf\xe1\x87\xa5\x9e\xf4\x7d\xb0\x6d\xb8\x76\xa6\x98\xe8\x9e\xf4\x96\x76\x47\xa4\x0e\x15\x5f\xb6\xff\xdc\x9a\xee\x76\x24\x02\xd0\xe2\x70\x17\x47\xac\x67\x7c\x63\xb6\xf5\xef\xbd\xfc\x83\xf2\xe0\xa5\x0c\xee\x77\xf1\xad\x02\xfd\xd3\x8d\x42\x9c\xf2\xbe\x1b\x28\x6c\x62\x9e\x81\xee\x11\x44\xa5\xb6\x47\xde\xc4\xda\x00\x95\x94\x6f\xc5\xb1\x2d\x63\xb8\x59\x47\x21\x66\xce\x1d\xc7\x6a\xda\xab\x33\x74\x5a\x23\xa3\x62\xd0\xf2\x7e\xf2\x4d\xcb\x5a\xf4\x95\x65\x03\x5f\x31\x71\xce\x16\xcf\x22\x4c\x74\x57\xea\x5d\xf8\xaf\xb3\x76\x1f\xa6\x26\x9c\x44\xcb\x02\x66\x49\xb9\x47\xc1\x3c\xad\x01\x1d\x8a\xd3\x8f\x35\xe2\x64\x49\xca\x48\x67\xc5\x69\x69\x94\x25\x9c\x2e\xeb\x96\x54\xa0\x5c\x6f\xe7\x2a\x50\xc6\x5c\x75\xd0\x3c\x89\xa2\x15\x41\x35\x2d\x2b\x10\xa9\x71\x37\x38\x29\x6b\xa2\x7b\x72\x7f\x1d\x6a\xd9\x57\x65\x2e\xa1\x7d\x10\x4e\x85\xc9\xba\x42\x12\x84\xf3\xd2\x80\x62\x89\xb0\x36\x7e\xe8\x80\xf7\xfb\x75\x41\x2a\x63\xb0\x51\xd0\x57\xd5\x58\x5a\xa8\x64\x6f\x58\xe6\xbe\xab\xe9\x3f\x24\xaa\x48\x4d\x0a\x4c\x8a\x44\xd6\xfa\xab\x0b\x3a\x66\xc4\x2c\xa7\xec\xb3\x2a\xbc\xd8\x33\xd4\xb3\x47\x5d\x5b\x5b\x8f\xe9\xe5\xc0\x65\xdb\x76\xb5\xa1\xbe\xbf\x45\xce\xb1\x77\x87\x3b\xd4\xdd\x4a\x22\x1e\xaa\xc7\x54\x95\x59\xb6\xbb\x6b\xcf\xd9\x93\xb6\x32\xbd\x74\x27\xf0\x89\xa8\x6b\xe5\xce\xd9\x13\x37\xc8\x56\xc0\x3e\xe1\xe9\x69\x77\x72\x51\x48\x7f\xea\x9a\x94\x45\xb5\x70\xd1\x19\xc0\xb4\xc4\x14\xd3\x3d\x99\x4d\xfc\x07\x1a\x1b\x94\x7d\x53\x22\xcb\x11\x44\xf5\xc6\x5f\x40\xd1\x57\x95\x0a\x05\x43\x28\x08\x9d\x92\xfe\x34\x6e\xc2\x10\x56\x35\x14\xff\x97\x96\xe9\x93\x96\xa1\x1d\x27\x62\x2f\x38\x00\x4a\x07\x36\x86\xbb\xed\x21\xb5\xe6\xac\xf6\x89\xb7\xa0\x26\x26\x88\xda\x77\x26\xa6\xda\x7c\x3f\x9f\x78\x27\x65\x11\x85\xc2\xaa\x23\x76\x4a\x10\x76\x54\x88\x63\x2a\x42\x78\x00\xa3\x65\x8d\x1c\x7b\xc2\xcc\xbe\xd4\xcf\x33\xd9\x17\x5d\x98\xe3\xdb\x43\x6e\x6d\xd9\x1a\x8c\x49\xf9\x05\x99\x1a\x00\x75\x62\x91\xe3\x4f\xce\x5a\xde\x9c\xf1\x76\xf9\x47\xca\x9a\x9d\x54\x96\x08\xbd\xd3\xab\xc2\x8f\x60\xc8\xcf\x96\xf6\x68\xdb\x92\x7b\x8f\xc4\x84\x5a\x2d\x13\xed\x04\x33\xb4\x96\x45\xfe\x14\x8f\x5a\xbf\xa7\xed\x0c\xe8\x61\x92\xb0\xd9\x8c\x06\x40\x2d\x77\xaf\xea\x35\x57\xbb\xab\xba\xe2\x6a\xd7\x69\x28\x07\x23\x9f\xf9\x67\x03\x84\x16\xda\xc2\x97\xe1\xd0\x70\x76\x14\xee\x54\xd0\xed\x7f\xe6\x18\xcf\x59\x00\xf1\x2d\x68\x95\x76\x72\x9b\xad\x60\xed\x0e\xa1\x7a\x56\xc7\x51\x82\x8d\xe9\xe9\x5f\x4b\x54\xe0\x99\x61\xfb\x20\x9e\xcb\x0f\x25\x52\xa4\x20\x10\xae\xc6\x5d\x3f\x6e\x69\x0d\x4d\xc3\xb2\x54\x67\x48\x6d\x36\x48\xd1\x21\x1a\x22\x45\xd9\xbc\x3d\xdb\x6d\x2f\x2b\x87\x51\x00\xdb\xd6\x98\x1b\x99\x59\x50\xd1\x98\x0e\xd5\xf8\xa2\x90\x11\xaa\xdc\xa2\x50\xc5\x2e\x34\x46\x93\x87\x11\xc6\x98\x0c\x0d\x36\x11\x1c\xe0\x33\x77\x84\x43\xa9\x33\xcc\x12\x9c\x50\xee\x77\x08\x84\xce\xd6\xcb\x62\x42\xd4\xfc\xd6\xee\xb1\x7c\x38\x69\x1c\x72\x60\x83\x34\xa1\x26\x9d\x71\xee\xd5\x01\xd4\xee\xf2\xe7\x8e\x41\x2e\xc3\x20\x9f\x95\x28\xb6\x49\x8e\xc7\x3c\xc4\x77\x85\xaf\xa2\x48\xa5\xcb\x98\x4d\xd9\x7b\x5c\x88\x73\x18\x4c\x69\xfd\x71\x22\x3b\x1a\xff\xea\x68\xef\x78\x1e\xff\x30\x16\x35\xfa\x98\x50\x4b\xa4\x3a\x37\xde\x13\x4d\x9f\x6d\xed\xfd\x46\x81\xfb\x5f\x56\xed\x7e\x5c\xed\xbe\xad\xd6\x14\x7c\xeb\xc4\xf2\xfc\x29\xb9\x64\x26\x44\x3e\xa5\xc2\x9c\xa7\xa3\xd1\x8e\x20\x5e\x4a\x64\x24\x15\xfe\x54\x5b\xb2\xe3\x4d\x63\x9a\x67\xee\xd7\x1b\xc6\x3a\xb6\x8c\xce\x7e\x2b\x45\x3f\xac\xce\xd0\x4b\x86\xac\x6d\x0f\x1f\xf3\xe2\x8a\x91\x91\x28\x16\x55\x3d\x32\xbc\x08\xec\x6f\x43\x88\x6d\xd0\x13\x4e\x4d\x94\xef\xe0\x7f\xa5\x39\xb7\xe8\xb7\xc9\xc4\xc7\xbf\xaf\x99\xb8\x31\x2e\x76\xb5\x38\x58\x2e\x91\xa9\xf4\x48\x57\x42\x47\x3b\x7f\x79\xff\xe6\xf5\xd8\xa8\x86\xaa\xb3\x1b\x34\x1a\xed\x28\xbc\xf3\x1f\xc7\x47\x20\xe9\xdb\x36\x1c\xff\x87\x6e\xd7\x64\xa6\x1e\x73\xe7\x6c\xa5\x76\x76\xfc\x61\x71\xa4\x8e\x41\x1f\x65\x74\xff\x42\x13\xde\x2b\x03\x68\x52\x8b\x2b\xc7\x5a\xac\x05\x12\x60\xbe\x30\xac\x5b\xd3\xfc\x48\xcf\xf2\x1b\x86\x04\x26\x2f\x19\xb0\x3d\x89\x63\x48\x04\xff\xf8\x9c\x21\xd6\x06\xd2\x76\x90\xa5\x06\x91\x51\x79\x44\x46\x00\x59\x64\x29\xc8\xa2\x22\xc3\x29\x6e\x1a\xf2\xb7\x32\x28\x7e\xad\x69\x59\xdb\x1c\x67\x18\x9d\xc4\xed\x65\x79\x1f\xd8\x86\xce\x21\x3f\x9c\xb4\x8f\x74\x66\xed\x99\x02\xf7\xd0\xda\xba\x8e\x33\x68\x29\x19\xcd\x01\xfc\x4d\xd9\x66\xb8\x4c\x10\x0e\x73\x25\x1e\x4e\x74\x7d\x48\xa5\x5d\x52\x17\x8c\xb7\x3b\xd4\x61\x41\x30\x43\x49\x80\xd6\x16\x77\xe1\x7c\x91\x0c\x58\x7f\x9b\xf5\x38\x3a\xc6\x44\x19\xff\x3e\xd6\x19\xd1\xd2\xf0\x1d\x1d\xb2\xb3\x75\x18\x54\x1a\x0b\xab\x35\xfc\x1e\x87\xb0\x0d\x03\xb2\x77\x7f\x6a\x2c\x62\x3a\x73\xe1\xa8\x52\xdf\xe8\xc2\x07\x9a\xa8\x6b\x16\xe8\xb6\xf3\x69\x96\xa1\xfe\xef\xa8\xea\xcc\x93\xbd\x8d\xd1\xeb\x07\xa5\x53\x8f\x71\x14\x8c\xcd\x58\x82\x52\x35\xab\x6d\xb5\x33\x2c\x34\x1f\x44\x6b\xc3\x35\xc6\x81\x96\x7b\xbb\x28\x2c\x77\x69\xf3\x93\x88\xe1\x54\x24\x1e\x3a\x28\xbd\x09\xb3\x6d\xf8\x48\x30\xfc\xf8\xac\x1b\xc7\xde\xfd\x7d\x8c\x67\x3f\x27\xc1\xdd\xc0\xb1\x41\x45\x0c\x2e\x69\xf3\xba\x41\x16\x49\xdb\x81\xb3\x4c\xb5\xc6\x55\xf9\xa1\x8a\xc6\xc9\x5a\x2d\xf6\x72\xd0\xae\xf9\xad\xe5\x15\x05\x39\xa3\x69\xf4\xb6\x61\x77\x91\xdf\xf6\xb0\xde\x93\x59\xbc\x1e\xc3\x8a\x8f\x0d\xca\xdd\xec\x19\xb2\xc7\x62\xb2\x87\x26\x84\x1d\xa9\x63\x8c\xf4\xc2\xff\xe6\x6b\xf6\x9d\xde\xac\xff\xce\x5d\xf7\x4d\x77\x58\x5a\x1b\xaf\x3d\x28\xba\x05\xb7\x1d\x91\xe1\x5f\x1c\x10\xa7\xa9\xb0\xe7\x40\xe0\x47\x02\xae\x2b\x6f\xeb\x0b\x1e\x4d\xc1\xda\x86\xeb\x41\x6c\x08\x5b\x76\x09\xf2\x3f\xee\x24\xd2\x81\xf3\xe8\xb2\xd7\x1d\xfa\x79\xb7\xc0\x2c\x8c\x4d\xa9\xc2\x04\x04\xe2\x2d\x04\x36\x69\xe2\x9a\x03\x4b\x9d\xb6\xd1\x25\x76\xe5\x96\x9e\x26\xf2\x2d\x4d\x64\xa1\x89\xd6\xae\x42\x1f\x65\xdc\x34\x91\x41\x13\xed\x3d\xb7\xbd\xaa\x8b\x5a\xc9\x5b\xad\x34\x5e\xe4\x66\x43\x76\x88\xb1\xae\xfe\x6f\xa5\x11\x04\x81\x00\xb7\x89\xdb\xb6\x91\x6d\x51\x6a\x4f\xb8\xe2\x17\x70\x33\x19\xf6\xb3\x59\xf0\x96\x21\xd1\xbf\x63\x77\x9a\x6e\x8c\x43\x83\x8f\x29\xa8\x25\x7b\x33\x57\x94\x88\x62\xc2\x23\x6e\x13\x99\xe7\x4f\x59\x43\x0a\x46\xd7\x25\x91\x8c\xae\x4a\x52\x32\x5a\x96\x64\xc9\x7a\x17\x8d\x05\x12\xda\xfb\x9a\xe8\x81\x06\x11\x6a\x49\x6f\xcd\xb8\xbe\xad\x85\x2a\x96\xb9\x58\x92\xb3\x8a\x2f\x9e\xbf\x79\xa5\xb9\xae\xbc\xb5\xfb\xed\x65\x0b\x66\x61\x1c\x06\xd5\x19\x4a\x25\xb7\x00\x11\xd6\xa3\x78\x0b\x16\xbf\xc6\x4a\x66\x9b\xa9\xb0\xdd\x22\xed\x7d\xf6\xf0\x21\x6e\xeb\xb9\xf6\x1e\x3c\xc4\xe4\x0d\x5c\x59\x8d\x2f\xd9\x8d\x44\x5a\xf6\x63\xee\x22\x14\x31\x7a\xad\x34\x2f\x6e\x57\x5f\xa4\x6e\x09\xe3\xec\xc4\x93\x36\x77\xfb\x45\x9c\x3c\x5f\x7a\x94\x32\x32\x9c\x68\x3e\x99\x98\xb6\xff\x1b\x8a\x9b\x42\x71\xde\x0a\xc7\x94\xfb\x7e\x7d\xaa\x04\x63\x2f\xb8\xaa\xbd\xac\xd8\xaa\x8b\x08\x5f\x1b\xef\xaf\x2d\x4c\xe6\x66\x13\xb6\x68\xaf\xaa\xb4\x65\xa6\xfc\x30\x69\xab\xa9\x6e\x38\x25\x02\x1a\x0a\x24\xc3\xdb\x1b\x1c\xa8\xbe\x45\x34\x04\xdd\x40\xab\xd8\x7b\x61\x08\x86\x43\xd6\x27\x0e\x67\x19\x6a\xc9\x75\x6e\xa8\xec\x78\x0d\xa7\x89\x27\x6a\x6f\x21\xc6\xde\x02\x83\x4e\x65\x38\x89\xc7\x36\xd9\x05\x5d\x87\x56\xb1\x1c\x17\xab\xd5\xf2\xc6\x2e\x5e\xe2\xe5\xaf\xb8\x8c\x53\x4d\x2c\x98\x85\x07\x90\xf9\xba\x0c\xaf\x80\xec\x14\xa5\xaa\x3e\x32\xf7\xba\x3b\x65\xb6\xae\xb2\x44\x98\x44\xa1\x48\xa3\x1a\x16\x95\x2c\x05\x53\xbe\x8c\x55\x54\xc5\xd9\x72\x2d\x2f\x9e\xb7\x32\x94\x25\x81\xf4\xf7\x37\xbc\xcc\x3b\x0a\x85\xcf\x31\x51\xd3\x87\x01\x35\xaf\x2f\xb0\xaa\x01\xeb\x4b\x22\xa1\x46\x51\x50\x21\x0c\xaf\x21\x36\xed\x71\xd6\x93\xd2\x6d\x4e\xef\xca\xd8\x7b\xf4\x08\x93\x51\xcf\xf7\xa3\x44\xd9\x60\xd5\x53\x9d\x9a\x74\xc7\xff\xfd\xb5\x81\x6a\x63\x9a\xd6\x07\xe3\xac\x57\x9a\xa8\x97\x4b\xb6\xc8\xbb\x07\x67\x32\x84\x76\xec\x52\x1a\xad\x52\x1a\x4d\x4e\x4e\xde\x1f\x3e\x7b\x77\xf8\xe1\xe4\xc5\xeb\x0f\x87\xef\x5e\x1f\xbc\x7c\x7f\xf2\xfc\xcd\xc9\xeb\x37\x1f\x4e\x7e\x7a\x7f\x78\xf2\xe6\xdd\xc9\xdf\xdf\xfc\x74\xf2\xcb\x8b\x97\x2f\x4f\x9e\x1e\x9e\x7c\xff\xe2\xdd\xe1\xf3\xfc\xf6\xf0\xa3\x5e\x97\xf9\x51\x29\xc8\x52\x90\xb5\x20\xef\xc7\x15\xd7\xe4\x11\x5e\xbc\x5d\xae\xcf\x2b\x2e\x9f\xde\xbc\xd6\x52\xf9\x19\x79\xa9\x12\x87\x96\x4f\x88\x91\xd7\xba\x5b\x35\x23\x15\x23\x6f\x38\x39\x24\x1f\x4a\x72\x6b\xf5\x99\xf9\x70\xda\x1c\x37\xcd\x6c\xd8\xed\x1c\xb8\x5e\x2e\x80\x64\x3c\xbd\xf9\xb1\x96\xea\x85\x1e\x18\x5e\xb2\x19\x6a\xfb\x86\xac\xf9\x82\x9d\x55\x9c\x2d\x22\x8a\x7f\x72\xf2\xee\xf0\xe0\xd9\x87\x93\xe7\x87\x3f\x7f\x78\xf3\xe6\xe5\xfb\x93\x1f\x5e\xbe\x79\x7a\xf0\xf2\xe4\xc7\x37\x6f\xfe\x7a\x72\x92\xba\x74\x2b\x7a\x77\x6e\x90\x89\xc6\x95\x7c\x5e\x49\x3d\x33\x0b\x50\x73\xc9\xf5\x6a\x55\x0b\x25\x0d\x51\xb3\xe5\x4d\x66\xc1\x63\x5b\xd9\x61\x42\x0c\xcf\x7e\x2f\x13\xbe\x47\x67\x52\x63\xc7\x9a\x40\x09\x7a\x4d\x80\xee\xd5\x12\x84\x07\xf7\xf4\x69\x03\xde\x78\xce\x47\x3c\x78\xe5\xe1\xe0\xb5\xdd\x34\xe4\xd9\x67\x0b\xff\xc9\x10\x52\x5d\x7e\xf2\x69\xfc\x8c\x11\x84\x2a\x61\xe4\xb6\xfe\xc8\x84\xa8\x16\xec\xc7\xba\xbe\x7c\xef\x3d\xbb\x88\x4b\x8e\xcd\xf7\x99\x72\x81\x22\xcd\x9d\xb7\xb0\xe9\x9a\x6c\xad\x97\x96\x6a\x98\x34\xdb\x8b\xe7\x95\x5c\x01\x59\x13\xef\xd8\x59\xfe\x6c\x6c\x2c\xca\xda\xef\x80\x69\x88\x27\xfd\xe9\x0d\x74\x24\xd9\x04\xe9\x1d\x92\x39\x99\x59\xdf\xc9\x4c\xb6\xac\xa4\xbe\xd2\xd4\x5c\x17\x02\x4d\x6e\x3a\xad\x90\xdf\xd7\xba\xd9\x82\xc9\x8b\xb4\xa3\xfd\x89\x9a\x4c\xb8\x71\xb2\x39\x92\x61\x3a\x67\xae\xe7\xa6\x73\xee\x30\x41\xb7\xdb\x1a\x2c\x05\x39\x5d\xeb\x12\x34\x63\x94\x4f\xc8\x47\x26\x64\x55\xf3\x7c\x34\x7d\x30\x9e\x4e\xc6\x7b\x23\xcb\x2b\x30\xf1\xb6\x28\x2f\x8b\x73\xa6\x77\x65\x3e\x32\x7a\xee\x45\x7d\x35\x6a\x0c\xf9\xad\x96\xf4\xd6\xdd\x1f\xd5\xcb\x86\x14\x4b\x5a\x2d\xb3\xac\x5e\x6e\x36\xd5\x72\x06\x16\x3d\x7a\x6d\xd3\x62\xe9\x7c\xc5\x36\x9b\x42\x0f\x48\x8b\x05\x19\xad\x25\x1b\x48\x25\xaa\x52\x8d\xa2\xcf\x38\x9a\x4e\xee\xe1\xcf\x64\x07\xe9\x1f\x4c\xa6\x0a\x02\xc2\x94\x65\xba\xcc\x5e\xf6\xa1\x53\x14\x19\x9d\x9c\x30\xf9\xaa\xd6\x43\x3a\x72\x81\x74\x86\x93\x06\xe8\x6a\x77\xe3\x1b\x30\xad\xd8\xa7\x3e\xc8\x59\xaf\x98\x94\xc5\x39\xd8\xe6\x73\xb6\x74\x4a\x60\x98\x8b\xa5\x0d\x70\x46\x23\xc0\xb4\x18\x2a\xbf\xc4\xf1\xce\xf6\x44\x9a\xd7\xd7\x08\xcf\x4a\x04\x9c\x1a\x71\x10\x85\x6e\x57\x99\xb3\x40\x32\xf5\xc1\x18\x86\x20\x46\x26\x5a\x5c\x6a\xc8\x8a\x3e\x2f\x94\xe6\x71\xf5\xe7\x69\x79\xb4\xcb\x2d\x84\xbc\xbb\xab\x86\xa4\xda\x38\xd7\xbe\x79\x54\x8d\x20\x13\xc2\x70\x8e\x4a\xca\x48\x94\xbc\x26\x13\xac\x49\x71\x8b\xe7\x5f\xd2\xa4\x85\x9a\x5a\x57\x71\x23\xca\x25\x2b\x84\x7b\xbf\xc4\x0d\x29\xba\x4d\x1c\x4e\x1b\xf0\xbd\x08\xa7\x57\x2d\x4a\xf6\xbd\x28\xae\xd8\xbb\x22\xd5\x44\x58\xb4\x75\x83\xa2\x69\x66\x6b\xbc\x62\xe2\xac\x16\x57\x7a\x8d\x93\x85\x4b\xd4\xbd\x26\x17\xee\x57\x68\x23\x39\x75\x69\x71\xcb\xc8\x95\x4b\x15\xec\xf7\x35\x93\xea\x80\x57\x57\x20\x37\x41\x2b\xc8\x2b\xff\x91\xae\x65\x99\xbe\x9d\xa5\xc7\x48\x58\x31\x65\xcd\x65\xbd\x64\x09\x66\x62\x78\x7b\x95\x65\x36\xc3\x18\xa2\x5f\xa1\xd1\x87\x8b\x4a\x0e\x4e\x45\x7d\x2d\x99\x18\x2c\x6a\x26\xf9\x7f\xa8\x81\x3d\x2a\x06\xbd\x0d\x1b\x0f\x5e\x15\x97\x6c\x20\xd7\x82\x0d\xd4\x45\xa1\x06\x37\xf5\x1a\xa2\xe7\x0e\x8a\xc1\xaa\x5e\xde\x9c\x55\x4b\x08\xc6\x64\xa2\xe6\xda\xa2\xe5\x78\x70\xa1\xd4\x4a\xe6\xdf\x7e\x7b\x76\x3a\xbe\x62\xdf\x9a\x1d\xee\xf2\xcb\x11\x26\xbd\xeb\xff\xeb\xda\xdb\x37\x52\xff\x45\xcd\xc5\x3d\x8e\xcf\x67\xfd\xee\xce\x67\x7a\x27\xe0\xcf\xee\x99\x33\xb3\x61\x9a\xa0\x4e\x3a\xa7\x8b\x2f\xdd\x70\x36\xe3\xee\x79\x03\xe0\x5a\x1f\xe9\x70\x4a\x6e\x0c\x85\x38\xa0\xbb\x53\x72\x4d\xef\x93\x3f\xe8\x64\xd6\xb3\x13\x06\x6d\xea\xf0\x84\xfe\xa1\xf7\x46\xbc\x03\xc8\x17\x6c\x14\x86\x6f\x27\x4f\xd8\x66\x33\xdd\xbb\xff\x98\xcd\x5b\xd3\x96\x7e\x34\x50\xc5\x25\x93\x30\x01\xb2\xd2\x22\xc1\xa0\xe2\x6a\x70\xca\xd4\x35\x63\x7c\x30\x19\x14\x7c\x31\x98\xee\xdd\x27\x03\xfd\x59\xc5\xcf\x07\x10\x71\x4e\x8b\xa8\xd2\xc5\x71\x56\x17\x05\xd7\x79\x06\x67\x2b\x39\xa8\xe4\x80\xd7\x6a\xb0\xe6\x76\x21\xb0\xc5\x08\xe7\xd7\x74\xf2\x98\xcd\x01\x40\xf0\x6c\x59\x6b\x66\x9e\xed\x7f\xcb\x70\xbe\xbf\x3f\xde\xdf\x37\xd2\xff\x09\xa8\x4d\x52\x22\x4b\xde\xd0\x93\xb1\x2e\x64\x6f\x66\xfe\x4e\xc7\x35\xbf\x32\x59\x5a\xaa\x38\x4b\xc9\x6e\xbc\x42\xbc\x4d\x66\xff\xa0\x6c\xe7\x1a\x38\xac\x1b\x4d\x70\x19\x9e\xbf\x19\xaf\x6a\xa9\x6c\x8d\x16\xbe\x14\x45\xb3\xe5\xb8\x1d\xee\x68\x71\xcf\x07\x84\x5b\x2f\x9e\x8f\xa0\x4c\x4d\xa9\xeb\x0d\x65\xe4\xe3\x66\xa3\xcb\x9c\x90\x9e\x8f\xdb\xe4\x94\xe3\xdb\x03\x7a\x91\x88\x95\x0c\xb5\x3b\x82\x1b\x0c\x82\x78\x42\x65\x4f\xd1\x01\x86\xc5\x15\xa3\x19\xb5\x4c\x9d\x8c\x52\x91\x19\x1d\xa7\xc2\x33\xe6\x41\x86\x8d\x2a\x3d\x9a\x1d\xc4\x77\xa7\xf8\xdb\x3d\x4c\x6a\xca\x8e\x04\x68\x1e\x87\xc1\x37\xba\xce\xb2\xc9\xe3\x97\xa8\xd6\xf2\x15\x76\x86\xb2\x3a\x1f\x55\x84\x1d\xf1\x63\x5a\x13\x4e\x45\x0c\x8a\x14\xb1\x48\x01\x4d\x93\x51\x76\x34\x39\x76\x1c\x57\x04\xf0\x13\xb1\xf1\x47\x93\xe3\xc4\x2d\x3b\xea\xcf\xaa\x5e\x19\x68\x67\x6e\xd2\x75\x5e\xca\x6d\xaf\x4c\x8f\x26\xba\xfd\x3e\x8a\xe1\xe3\x7a\xe6\x2e\xdc\xf7\xfe\x13\x89\x9d\x29\xde\x9d\x92\x82\xb2\xa3\xea\x98\x48\x5a\xed\x4c\x49\x49\xd9\x91\x4c\x2b\x2c\xb2\x6c\xf2\xe4\x25\x2a\x08\xc7\xd8\x27\x96\x26\xb1\x24\x05\x9e\x23\xe8\x78\x49\xf4\x97\x94\x13\x41\x25\xce\x4d\x5a\x41\x74\xd1\x90\x16\xc5\xe5\x8a\xc6\xd1\x17\xc3\xdb\xe3\x18\x17\xd7\x34\xde\x99\xaa\x89\x01\x2d\x02\x6e\x51\x0b\x3f\xa6\x16\xea\x05\x5f\xb0\x4f\xbb\x2a\x3c\xcf\x22\x3c\x11\x3e\x07\x3b\xd9\xc5\xae\x1a\x57\x8b\xc6\x80\xd1\x1d\x1d\x93\xf7\xfa\xbf\xdf\xe9\x94\x3c\x33\xa4\xea\x92\xee\x93\x5f\xf4\x66\x78\xae\xff\x7b\x4a\x87\xd3\xe0\xac\xf3\x16\xb1\x00\x4d\xad\xe8\x27\xf4\xde\x3b\x0b\xaa\x59\x0c\x06\xa5\xbc\xbd\x14\x7e\xad\x33\x85\x51\x50\x06\x6a\x14\xdc\xe5\xa8\x0f\x74\xa4\x33\x91\xa8\xdd\x1d\x64\x1a\xf2\x01\x1d\x6a\x26\xc3\x54\x1a\xad\xb1\x77\x56\x9e\xd3\x0d\x25\xba\x7d\x64\xf8\x3c\x0a\xc7\xf2\x09\x1d\x62\xfc\x5c\xef\x43\x81\x7e\x4d\x6e\x09\x92\xc6\x67\x59\x8d\xde\x91\xa8\x6d\xbb\x2c\xae\xe4\x57\xb3\x49\xcd\x88\x64\x99\xa9\xac\x42\x18\xeb\x91\x32\x9a\x7e\x41\x2f\x67\x0e\xc0\xf2\x2d\xe2\x98\x3c\x83\xba\x5d\x0d\xcf\xb2\x0c\x0d\xd1\xb3\x56\xaf\x9e\x70\xbc\xd9\xb0\x2c\x1b\x16\x08\xe3\x99\x33\xe2\x78\xe6\x07\x2f\x71\xfc\xbb\x0d\xe9\x6e\xa6\x9e\x8d\x57\xd6\x84\x17\x6c\x1e\xad\xb1\xa0\xec\xd4\xf3\x98\x72\x3c\xeb\xb2\xa0\xbd\x66\x0e\xe5\x3c\xaa\xa7\xcc\x9f\x51\x33\x88\x59\xf6\x1a\x1d\x62\xa2\xbb\x66\x08\x9f\xfe\x39\x33\x9d\x6c\x62\x38\x40\x63\xde\xe7\x00\x80\x8c\x3f\x68\x3c\xd6\x6b\x33\xd6\xeb\x68\xac\x39\x26\x4b\x4d\x46\xed\x62\x5d\x7a\x6d\x84\x5f\x92\x02\x96\x64\x34\x23\xbf\xe9\x69\x6f\xf9\x57\x38\x9f\xe5\xdd\xa9\x8d\x91\xe2\xac\xdc\xf6\xee\x4f\x5a\x2e\xe9\xc1\xaf\xb6\xe5\x62\x3d\x65\xf7\x66\x2d\x1b\xb9\xfb\x6c\xdf\x1c\xe8\x2f\xa8\x8c\x99\x80\x17\x57\x57\x6c\x51\x15\x8a\x79\x33\xea\x69\x7c\x44\xff\x24\x99\x78\xba\xac\xcb\x4b\xf0\x1c\xb2\x39\xf6\xe2\x1c\xaf\x35\xf3\xba\xf4\xef\xf6\xe3\x77\x2f\x16\xcb\x50\xee\xfd\xf8\xcd\xcb\xfa\xda\xbf\xb8\x17\xbf\x10\x6b\xfe\x4b\xa5\x2e\xfc\xcb\x94\x5f\xef\x8c\x55\x19\xc5\x62\xdf\x4f\x30\x2d\xef\xb7\xc0\x21\x19\xdd\x6f\x0c\x95\xb9\x9c\x5d\x52\x16\xeb\xde\x14\x0a\xaa\xa3\x4b\xca\x9b\x84\x49\x81\xbb\x84\xf8\x5c\xb4\x6d\xb8\xdc\xd2\x06\xb3\x2f\xf7\xdb\x00\x15\xf4\x32\xaa\x5d\xa5\xb7\x0b\x77\xd4\xee\x04\xea\x67\x6e\x2d\xc7\x07\x2e\x29\x82\xd9\x6e\x8b\x5f\xe8\x75\x3e\x29\xbc\xf3\x49\xe1\x04\xc0\x62\xbc\x60\xcb\xe2\x66\x56\xd2\xde\xb8\xd3\x93\xc7\xe5\x5c\xee\x94\xb9\x24\x45\x4f\x86\xc2\x59\xfd\xcf\xfd\x53\xfe\x1b\x40\x75\xe9\xad\x55\x50\xfd\x4c\x4a\x2a\x83\x7d\xfb\x6d\xb5\xc8\x7f\xdf\xd9\x21\x6e\x6b\xe6\x9c\x24\x7b\x3f\x67\xc4\x6f\xa8\xbc\x24\x2d\x9f\xab\x82\x96\x3b\x05\xf1\xe4\x35\xdf\x9d\x36\xa4\x7c\x22\xe7\x28\x3a\x37\x68\x49\x3e\xa0\xf7\x84\x79\xa8\x06\xb3\xed\x19\x3c\xbd\xc7\x9a\xec\xcd\x2b\x84\xf3\xa7\x9a\x9a\xea\x2d\x5c\xee\x4a\x8c\xf5\xa9\x17\x95\x51\x00\xa1\x66\x98\x3c\xdf\x6c\x7e\xd9\x6c\x90\x27\xbd\x18\x13\x96\xcc\x8f\x91\x13\x7a\x66\x07\xdf\xb2\x94\xd0\x25\x9f\x5d\x8b\x62\xd5\xfb\x91\x59\x3d\x97\x1d\xdb\x26\x77\x42\x76\x57\x8f\x55\xa6\xab\x8b\x4a\xc6\xaa\xf4\x64\x45\x25\x75\x07\xd5\xcb\xdb\x78\xe8\x7b\xd8\xf9\xcb\x74\x29\x5e\xd4\xeb\xe5\xe2\xef\x15\x5b\x2e\x7a\x2c\x38\xda\x0b\x50\x1f\x62\x56\xdd\x0d\x27\x88\x3b\xfc\xcd\x29\x12\xce\x93\x70\x71\xe7\x9e\xfc\xb0\x41\x9c\xd6\xe8\x98\xd5\xbf\x5b\x27\x42\xfb\x88\xd8\x6c\x0a\x84\x93\x56\x5b\xc1\xf3\x6d\x51\x71\x45\x5f\x24\x53\x57\x73\x55\xf1\x35\x3b\xfc\xc4\xca\xb5\x2e\x20\xee\x55\x67\xe2\x93\x42\x57\xc5\x5a\xf6\x7f\xd7\x1e\xe9\xef\xc1\x6c\x30\x76\x68\xe9\x0e\x33\x1c\x3e\xf1\x77\x6f\x45\x7d\x56\xf9\xf0\x5a\x5f\xac\x7a\x4a\x14\x0d\x5f\xa0\x80\x02\x5d\xd5\x77\x38\x30\x46\xb5\xfe\xd2\xff\xaa\xf4\xaf\x6a\x0c\xb1\xaa\x6d\xd4\x5f\xe3\x3e\x54\x93\xde\x3a\x23\xed\x91\x35\x02\x27\x95\xa6\x50\xd5\x19\x2a\x86\x94\x0a\x47\xab\xb4\xa0\x64\x6e\x08\x46\x7a\x60\xb4\x50\xf6\x56\xd4\xab\x0f\x37\x2b\x26\x07\x10\xce\xb9\x50\xb5\x90\x83\x45\x25\x58\xa9\x96\x37\x4e\x26\xf3\x12\xd9\xe0\xf4\x66\xa0\x2e\xd8\xe0\xff\xac\x44\xbd\xda\xd5\xb4\x48\xfe\x9f\xc1\xca\x28\xfd\xc6\x83\x9f\x24\x0b\xe5\x8d\xcb\x0b\x56\x5e\xfa\x9f\x08\x0f\x54\x3d\xd0\xeb\x4b\x17\x70\x35\x1e\xbc\x63\xc5\x62\x70\x55\x0b\x36\x28\x14\xc8\xe9\x5e\x4c\x5f\x4b\xb6\x0b\x1f\xef\x86\x5a\x46\xee\xc2\x54\x8e\x8d\x8d\xdc\x0b\xfe\xb1\x10\x55\xc1\xd5\xe0\xe7\xaa\x5e\xc2\x2a\x1c\x11\x19\x1d\xf0\x2a\xcc\x32\x6b\x8c\x17\xf1\xef\xeb\x4a\xb0\x85\xb5\x00\xe3\xf4\xb6\x10\xa2\xb8\xc9\x19\x39\xad\x6b\x4d\xfe\xf4\xa7\x39\x23\x86\xd6\xe6\x8c\x18\x22\x0e\x74\x51\x54\xfc\x5c\x3f\xdc\x5c\x9d\x42\xd6\x82\xeb\xef\xe0\xfb\x37\x67\xb9\x22\xde\x11\x80\x44\xce\x79\x39\x23\x95\x55\xa1\x42\x26\x5e\x2f\x98\x2f\x16\x52\x6a\xce\xc2\x5f\xf8\x44\x11\x79\x51\xc0\x5f\xf6\xa9\x28\x55\xae\x48\x3a\x8c\x79\x45\x3a\xab\x22\xaf\x1b\xbf\xc7\xc7\x3e\x27\xe5\x5a\xc4\xfc\xd2\x05\x3c\xb2\x37\x34\xf6\x5e\xe6\xed\xc1\xfb\xf7\x27\x1f\x7e\x7c\xf1\xbe\xf7\x76\x66\xf4\x99\x62\xd5\x38\xe8\x4e\x03\x7b\xcb\xd1\x44\xcb\x85\xa8\x40\x02\x93\x02\x71\x34\xd5\x34\xbd\xa2\xfa\xf1\xc1\x04\xe3\x19\xa4\x4d\x1e\xe1\x68\x5b\x14\x91\x00\xc8\xb2\x8c\x45\x05\xcf\x59\xee\x95\xc9\xb1\xd7\x81\x0c\x57\x63\x88\x0d\xdc\x04\xd4\x67\x03\x7f\x63\xad\x77\x81\x1e\x22\xbf\x13\xb8\x5e\xe3\xb0\x34\x8b\x41\xb9\x2c\xa4\x1c\x14\x72\x50\xf8\x13\x60\x14\x19\xd8\x06\xa8\xd7\x21\x8b\x8a\x7b\xc7\xce\x98\x60\xbc\x74\x65\xea\x23\x61\x70\x51\x80\x5e\xeb\x94\x31\x3e\xa8\x78\xa5\xaa\x62\x59\x49\xb6\x18\xec\xea\xfd\xc4\x04\xc2\x49\x0e\x5d\x3f\x5b\xf8\x0b\xba\xa1\xda\x6c\x1c\x1b\x11\x54\x69\x2a\x56\x4e\x45\xc9\x73\x96\x47\xbe\x69\x4b\xdf\xc8\xde\xcc\x9e\xde\xab\xfe\x01\x79\xaf\x5b\x37\x60\x9f\x20\xfa\xb8\x2e\xef\x6a\x2d\xd5\x80\x55\xea\x82\x89\xc1\x29\x03\x29\x72\x50\x8b\x68\x84\x08\x50\x89\xd1\x8e\xab\x01\xcf\x22\x2f\x7e\x6a\x35\xec\xe6\x16\x12\xa9\x2c\x53\xe1\x25\xb9\x2d\x6b\x2e\x95\x58\x97\xaa\x16\xb9\x55\xb3\x33\xc2\xf8\xfa\x8a\x09\x4d\x91\xf3\xe1\x94\x5c\x0b\x13\x20\x3d\x1f\x4e\x48\x59\xf3\xb3\xea\x7c\x6d\xdf\x4d\x9a\x06\x13\x95\x65\x4e\x8b\x2f\x99\x7a\xeb\x8a\x7e\x73\x36\xef\x4d\x85\xc1\xc9\xf5\x52\x82\x56\x9c\x9c\x50\x65\xc0\xec\xd7\x34\xe2\xea\x3d\x5c\x5d\x9f\xa9\x0a\x29\xc8\x8a\x8e\x4e\xec\xc5\xaa\x31\x34\xdf\xb5\x2e\x44\xbb\xa3\x1d\x34\x21\x95\xfb\x1c\x23\xbc\x33\x3a\x39\x19\x91\xb3\x84\xd9\x08\x66\xfd\xf6\x1c\x57\x44\xcc\xa4\x61\x25\x78\xb0\x53\xac\x69\xdb\x94\x9a\x54\xf4\x40\x93\x1d\x54\x63\x52\xd0\xc9\xac\x78\x5c\xcf\x8a\x9d\x1d\x5c\x1d\x15\xc7\x91\x71\x75\x71\xec\x41\x05\xa9\xa0\xc6\xa4\xc8\x46\x5b\xb3\x5c\x0b\x23\x47\x3a\xf1\x78\x5c\xd6\xbc\x2c\x14\xaa\xf4\x6e\x14\x63\x76\x55\x29\xd5\x32\xbd\x35\x9c\xd1\x91\x2b\xf2\xb6\xe6\xc9\x1d\x56\xb0\x7e\x23\xf5\xd9\x59\xfa\x0a\xa2\x4f\x2f\x15\x13\x29\x3c\xa0\x6b\xdb\x90\x52\xd6\xe8\x13\xfe\x9c\xa9\x1e\x7b\x05\xd6\x10\x19\xbf\x00\xfb\x02\xe3\xfd\xdb\x75\x24\x89\x8a\x35\x90\xd1\x18\x37\x4d\x83\x84\x5e\x6c\x1e\x47\x95\x94\x48\x10\xe5\xcd\x93\x96\x70\x39\x49\x78\x64\xa0\xa5\x79\xb4\xc8\x67\xad\xc3\x6f\xcd\xbc\x07\xf4\x6d\x83\x8f\x56\xc7\x16\x21\xc3\x0c\x9b\x66\x51\x79\x6a\x75\x6b\x8c\x48\x7e\xa9\x96\xcb\x77\xac\x64\xd5\x47\x73\x93\xd9\x6b\x91\x18\x35\x14\x6c\x91\x4c\x93\x63\x93\xba\x28\x07\xb8\x97\x9a\xa7\xda\xda\xa7\xcd\x10\x04\xcf\xa4\x94\xa2\x82\x0a\x3c\x9f\x0c\x29\xad\x36\x9b\xe9\xb7\x15\xa5\x74\xfa\x6d\x91\x57\x06\xd9\xac\x00\x31\x64\x5e\xd3\x49\x8e\x6a\xda\x27\xc3\xab\xb9\x82\xc1\xce\xd7\xe0\x03\x8b\xea\x0d\x9d\xe0\x2c\x8b\xbb\xaa\x77\x15\xf2\x2d\xc0\x66\x0b\x55\xa4\x48\x07\xa0\x6d\x23\x18\xe6\x28\x74\xc7\xd9\x9d\x36\x84\xeb\xe9\x0a\x40\x1f\xb3\x33\xf3\xce\x4e\x85\x39\xd6\x10\xe2\x6e\xe4\x6b\xb7\xc9\xc6\x86\x50\x46\x87\xbc\xde\x44\xba\x41\x11\xbf\xac\x7a\x76\x1d\xfb\xaf\xda\x75\x2c\xec\x3a\x15\xef\x3a\xd5\xbf\xeb\xe0\xd6\x98\x5a\xf2\x07\x30\xa6\xe0\xff\xa3\x19\x6a\x31\xae\xb9\xb9\xd1\x6e\x51\x22\x98\x18\x34\xd9\x88\x04\xfa\x0a\x67\xc6\x7c\xd2\x84\xa7\x51\x0c\xf5\x15\x8a\x1b\xd8\x07\x2c\xd9\x07\x0a\xff\x89\xa5\xeb\xac\x26\xe2\x26\x18\x33\xfc\x38\x25\x32\xf1\x0c\x86\xe3\xf3\x75\xae\xb6\xec\x16\x17\x00\x25\x5e\x37\xb1\x03\xfb\xd1\xea\xd8\x2e\xc6\x90\x30\xd6\x53\x0c\x15\xdb\xe1\xc2\xb1\x01\xad\x59\x69\x5f\xda\x4a\xe6\x5b\xc9\xe6\xeb\xfc\xae\x3d\xfd\x53\xdb\xbe\xf4\x4b\x1a\x7a\x76\xd6\x6a\x69\xd3\xa6\x40\x30\x51\xdb\x76\x4d\x28\x6a\xde\x2e\xfa\x9c\x29\x84\xdb\x0d\xde\xb6\x07\x51\x32\x36\x1e\x4e\x04\x16\xfa\xb8\x92\x66\xc1\x33\x3c\x67\x47\x93\xe3\x9c\x61\x14\x30\x92\x1c\x28\x35\x0c\x70\x77\xdb\xfa\xeb\xac\x32\xdd\xb8\xc5\xb6\x8d\x4b\x0a\x4c\x6e\xdf\x8a\xfa\x63\x05\x16\x87\xe4\x59\xcd\xa5\x66\x00\xf2\x45\xd3\x44\x12\x8f\x3f\x93\xbf\x54\xc4\x9a\x4e\x70\xc4\xe3\x8a\xcf\x7c\x16\xbc\xa8\x22\xae\xb3\xef\x50\x6a\x0c\x91\x88\x85\xbe\x59\x3d\x56\x17\x85\x7a\x07\x59\x24\x15\x24\xf9\xfd\x7d\xb1\x94\x8c\x0a\x34\x9c\xe2\xf4\xc5\x07\xb1\x86\xf4\x49\x2b\xfd\xb5\x5e\x7d\xc2\xde\x14\xa5\x5f\x5c\x54\x72\xcb\xc2\x68\xd2\x9c\x07\x96\x2c\xd1\x1e\x7b\x13\x16\x0f\x6b\xfd\x75\xec\x3c\x09\xac\x91\x3d\x76\x86\xad\xc3\xac\xc5\xa9\x3b\xd7\x62\xe7\x79\x73\xdb\x04\xb5\x74\xb0\x61\xd7\x3c\xf2\x80\xe1\x60\x91\x11\x16\xf0\x45\x21\xdf\x5c\x73\x67\x9b\x61\x3d\xe4\x08\xc7\xee\x02\xaa\xd7\x84\x23\xcb\x6c\xf2\x39\x53\xd1\xd7\xcf\x99\x2c\x45\xb5\x52\xb5\x98\x7f\xe6\x3d\x54\x91\xdf\x36\x33\x20\x9d\x9b\x0d\xd0\xd4\xf9\x36\x73\x11\x38\x2d\xd5\x11\x3f\xa6\xec\x88\x1f\x37\x61\x8c\x58\x63\x44\x1d\xbb\x2a\xa5\xfe\x35\xdd\xc3\x5a\x14\x32\xcf\xf7\x41\x0a\xd2\xcf\x13\xac\x4f\x17\xfd\xf4\x40\x7f\xc0\xd1\x83\xbd\x48\x16\x92\x5f\x2f\x0b\x95\x61\xaf\x97\x6e\x94\x0a\x29\xab\x73\xbe\xd9\x24\xdc\xa8\xbf\x91\x99\xce\x54\xc7\x7b\x2f\xf6\x27\x08\x67\x9d\x3a\x0e\xde\x34\x7a\xea\x38\xfe\xa2\x79\xd3\xe3\x94\x65\xe6\xa2\x8b\x1f\x89\xe3\xc8\x52\x1c\x6f\xd1\xa7\x99\x0b\x81\xf4\xf0\x0b\xe3\x00\xf2\x84\x5c\x2d\x2b\x85\x46\x83\x11\xbe\x8b\x31\x44\x13\x22\x02\x5f\xee\x1c\x8e\x23\xeb\x9b\x7f\xad\xec\xba\xa7\xec\x55\xf7\xb4\x24\x3c\xa6\x34\xd1\xe0\x13\xde\xe5\x3b\x8c\xd7\x84\x21\xc5\x80\xe5\x3e\x99\xd5\x8f\xf9\xac\xde\xd9\xc1\xe2\xa8\x8e\x79\x8f\xda\xf1\x1e\xe0\xf6\x73\x07\xa3\x2f\x30\xde\x6c\xc0\xc5\x60\x5c\xf3\x43\x9e\x32\xfb\x71\x68\x07\xcd\x09\x6b\x69\xf8\x75\x71\xc5\x24\xe2\xf3\x51\xb1\x5a\xb1\x42\x8c\xf2\x11\xd3\x5f\x8d\xf0\xb8\x74\xaf\x67\xca\x79\xd0\xea\x14\xa6\x65\xf0\x11\xfb\x54\xa9\x11\x26\x4b\x60\xc6\x89\x72\x47\xb0\xa9\xd2\x0a\x81\x21\x01\xaa\x6e\x88\x72\xbf\x2b\x7e\xfe\xa7\x9b\x65\x2c\x94\x9f\x25\x8d\x3b\x5b\xd6\xd7\x07\x7c\x71\xb0\x58\x40\x7a\x6f\xa3\x2a\x7e\xde\x69\x57\xc5\xcf\xdb\x4d\x63\x8b\x2f\x6a\x99\x6b\x17\x1e\x2f\x6a\x1e\x5a\x03\x78\x8d\xad\x9c\xae\xe1\x69\xc6\x8a\xf2\xb9\xd8\x19\x0d\x46\x3b\x75\x5e\xf7\x8c\x70\x4f\xd7\x61\xb4\xab\x4e\xc7\xd8\xa2\xd3\x2f\xb6\x88\xbb\xf5\xa9\xea\xba\xc8\xf0\x9e\x76\xc2\x94\xde\x3d\xed\xae\xd7\xa4\x6f\x49\x44\xad\xe4\x49\x2b\x3f\x55\x2a\x69\xe2\xa7\x4a\x81\x40\xe9\x5a\x97\x2e\x87\xcf\x35\xf0\xcb\x16\x40\xa7\x05\xed\xf9\x37\x49\x49\x3b\x92\xb9\xff\x5c\x33\x92\xe9\xfc\xcc\x16\xe9\x34\xa6\x35\x67\x90\x62\x9b\x92\xd4\xd6\xdb\x1e\xcb\xd2\xf9\x4c\x44\xd0\x2e\xd4\x1c\x27\x35\x15\x73\x24\xb2\x8c\xcf\xf9\xce\x68\x77\x94\x8f\x46\x78\x87\xe5\xfc\x88\x79\x51\xdf\x17\x91\xd7\xa4\x35\xaa\xb9\x98\xd7\x3b\xa3\x5d\x93\x3a\xd2\x5f\xed\x8c\x0e\xcc\x8f\x63\x92\x74\xdd\xe6\xd4\x69\x36\xdf\x73\xfd\x78\xdc\x34\x44\x35\x9c\x32\x82\x14\x15\x78\xab\xc6\x28\xe2\x65\xed\x20\x79\x4e\xdc\xab\x8e\x20\x0c\x41\xd0\xe8\x70\x1b\x29\x5e\x84\xdc\x8e\x2b\xad\xd3\x69\xd8\xee\xbe\x96\xce\x29\x00\x8e\xf3\x30\xa4\x10\x2b\xbd\x35\x22\x7a\xc7\xb6\x26\x5d\x64\xd9\xda\xd0\x9a\xda\x3c\xd5\x98\x54\xe6\xa9\xc2\x9a\x61\xeb\x2c\xcc\x56\x83\x00\x2c\x4a\x9f\xf6\x3e\x30\x26\x31\xea\x3d\xfb\x75\x9b\xb5\x37\x32\x4f\x89\x6e\x1b\x12\x98\xfb\xc0\x92\x43\x34\xa0\x01\x8b\x97\x86\x57\x55\xd9\xf1\xb6\xc0\x0b\xa8\xf0\x01\x1b\x4a\x67\xa2\x6d\x48\x47\x6e\x85\x17\xf8\x41\x3c\x3d\x49\x92\xd9\x82\x04\x02\x9a\xbc\xa9\xf8\x39\x31\xeb\xd9\x27\x7f\xaa\x14\xf1\xdb\x2d\x4e\x0d\x79\xa3\xe2\xe1\x17\x1c\xae\xa2\x41\xa1\xf1\x91\xfc\xb1\x72\x89\x46\x5e\x0d\x8b\x58\xe6\xa3\x51\x43\x56\x30\x28\x46\x28\xb9\x35\x36\x64\x67\x74\x15\x6b\xfc\xfe\x25\x99\x63\x1f\xdf\xc1\x31\xa7\x93\x6b\xe7\xe1\x65\x25\xd5\x3c\x7a\x1e\x17\x8b\x05\x52\x38\xef\xf2\x14\x9b\x4d\x1f\x64\x64\x98\xcd\x79\xf4\x4c\xa3\x67\x38\x45\x54\xce\x34\x0b\x1b\xc1\x64\xc0\xfb\x11\x41\x51\x4e\xbd\xd4\xfc\x8f\xf1\x69\x21\xd9\xcf\xc5\x72\xb3\xd1\x94\x01\xca\xc0\x16\x8f\xb7\xd6\xe2\x09\x9a\x4e\xef\xe1\x58\xc4\xda\x32\x5a\xba\xa7\x9d\x6b\xab\x2f\xe5\x66\xff\xb4\x74\xd2\xcf\xd5\x45\x43\x3e\x1c\x2a\xdf\x5d\x18\x77\x1f\x41\x5a\xe1\x7c\x77\x3a\xa4\x54\xb3\x7d\x3b\xa8\x77\x44\xa2\x44\x18\x1a\x6c\x30\x43\xdf\x9c\xc1\x37\x0a\x92\xfe\x8c\xf0\x1a\x4b\xa1\x49\xbb\x05\x5b\x2d\x8b\x92\x21\x73\xdf\x70\x7e\xf8\x69\x85\x46\xe8\x7f\x6f\xfe\xf9\x4f\x89\xa1\x3e\x34\xcf\xff\xf9\x4f\xb9\xf9\x06\x8f\xc8\xe8\x7c\x84\xc9\xe8\x9b\xe9\x08\xfb\xaf\xbe\xfd\xa7\xdc\xf9\xf6\x9c\x40\x43\x7d\xda\xff\xfe\xa7\xfc\xcf\xcd\x3f\xe5\x7f\x7e\xa3\xdf\x8c\x70\xd3\x37\x4b\x77\xad\x53\x43\x49\xf5\x68\x7d\xf9\xaa\x14\xf1\x70\x1a\x4d\x7c\xef\xa2\x14\x5f\xb4\x2a\x81\x10\xfe\xab\xf2\x6b\x91\x48\x68\x85\x95\xc4\x6a\xca\xd1\xfe\xc4\xdf\x50\xed\xff\xb9\x7b\x29\x73\xf1\x7a\xa7\x10\x50\xfc\xcf\x0a\x01\x17\xe0\x1c\xd2\x12\x04\x42\x8b\x58\xb7\x3d\x3c\x6a\x0f\xd3\xe7\xe2\x64\x26\x1e\xb3\x99\xd8\xd9\xc1\x1c\x0c\x18\x7d\x7b\x44\xb8\x86\xb0\xf5\xbc\xac\xce\x58\x79\x53\x2e\x19\x1a\xd9\x03\x61\x44\x26\x96\x11\x8d\x5a\x92\xf0\x7b\xff\x8d\x8d\xd1\x6b\xb8\xaf\x3d\x6c\xf1\x3f\xd2\x1c\xb6\xe8\xb4\xe6\x53\x0a\x26\xf0\xdf\xd2\x14\xcd\xa6\x92\x69\xa7\x1d\xff\x13\x93\x64\xaa\xed\x6b\xcd\xff\xc0\x14\x41\xad\xbe\x2d\x8e\x95\x2d\xfe\x0b\x58\x59\x49\x8b\x2e\x2b\x2b\xdb\x8d\xea\x8d\xd2\x58\x91\xa2\x57\xcf\x2b\xa9\x08\xcc\x93\x4d\x1c\xab\xda\x8c\x4b\x81\x8f\xd4\xf1\xcc\x7e\x73\xc4\x8e\xb3\x0c\x55\xd4\x71\x93\x47\xec\xd8\x92\x95\x0a\xe4\x16\x5f\x38\x64\x4c\x7e\x22\xe0\x61\x22\x67\x7c\xa3\x46\xd6\xdc\x9b\xdc\xca\xbd\x86\x12\x00\x04\x21\x04\x8a\x00\x60\xee\x8e\x27\x51\xe4\xd2\x6f\xa5\x16\xc3\xa2\x00\x54\x1a\xbd\x6d\x48\x45\x53\xcf\x7a\x50\x5c\x99\x69\xaf\xbc\x95\xb7\x9e\x7d\x5a\x1d\x89\x63\xa2\xfc\x49\xce\xf1\x13\x3a\xd9\x6c\x50\xed\xf4\x7a\x9e\x91\xae\x1b\x4d\x52\x47\xae\x69\x23\x32\xaa\xf8\xe8\x18\x93\xe2\xae\x41\x55\x98\x48\x5a\x1c\x4d\x8e\x49\x49\x8b\xa3\xe9\x71\x8b\x2b\xaf\x3d\x4f\xdd\x4e\xd0\x7c\x70\x3b\x8d\x2d\x92\x24\xcd\x43\xb7\x7e\xb7\xbf\x82\xd5\x1a\x34\x60\x2d\x76\xdf\x73\xd2\xa4\x26\x7c\x1e\xe5\x5a\xd6\xdc\x67\x92\xe4\xf6\x92\xdd\xe4\x23\x40\x95\x18\x91\x44\x20\x88\xa8\x65\x87\xf7\x4f\x29\x7b\x5b\x66\x48\xe8\x6c\x83\xf3\x2d\x95\x97\xb6\x72\xc9\xca\x9a\x2f\xfa\x6b\xb7\xa2\x44\x5f\xe5\x41\x9e\xe8\xa9\x3b\x08\x15\x45\x83\x44\x9f\x50\x21\xbb\x52\x43\x09\xf6\xbc\x8e\x99\x28\xff\x04\xb3\xd7\x65\x4d\xdc\xf5\xf3\xab\x62\xb5\xd2\xf4\xb5\x86\x80\xa0\xe2\x9c\xc5\xa9\x92\x56\x26\xeb\x0b\x63\x56\x92\x7c\xd1\xcb\xf6\xd6\x28\xda\x47\x09\xf8\x62\xa4\x1a\x8d\x47\x1b\x23\x0e\x02\x9f\x95\xbd\x22\xe7\x78\x8e\x49\xc5\xf3\xe1\x84\x18\x4d\x4f\x5e\x20\xee\xb5\x3e\x84\x61\x02\x4a\x1e\x93\x6a\xf4\x3d\x90\xa8\xe5\x3d\x93\x06\x87\x09\xc3\x8d\x51\x90\x42\x37\x5e\xb3\x4f\x6a\x6b\x1f\x1c\x1d\x93\x34\xee\x04\x26\x25\xad\x90\x22\x41\xb6\x8d\xf7\x78\xd9\xa7\xab\xf5\xb0\x89\xa5\xe6\x93\xaa\x33\x04\x9d\xae\xe4\xcf\xc5\xb2\x5a\xf8\x6e\x57\xd8\x21\xcc\xd6\x83\x8a\x0f\x14\x59\x9b\x07\x49\x56\x54\x1d\xd5\xc7\xe4\x8c\xf6\x7e\xb7\xc2\x59\x36\x5c\x59\x22\x5b\xf1\xd9\x70\xbd\xd9\x2c\xb3\x6c\x78\x36\x5f\x6f\x36\xc3\xe5\x66\x73\x36\x5f\x67\xd9\x32\xcb\xb6\x7e\x8d\x74\xbb\x68\xcf\x4c\x54\xd1\x4c\xf0\x68\x26\x2a\x98\x89\x50\xa7\x1b\xe5\x2a\x8c\xb2\x9f\x8d\x2a\x9a\x8d\x06\xe3\xfc\x8e\xba\xf4\xec\x4e\x9b\x3b\xb3\xdc\xd1\x9c\xe1\xe4\xcb\x9b\xd1\x00\x2a\x68\x13\x19\x88\xc5\x16\x91\x91\x42\xa6\x75\x8a\x42\xd0\xd9\xc0\x7e\x8b\x40\x6a\xaf\x8a\x15\x62\x04\xf5\x5e\x79\xe1\xbe\x45\xc1\xf0\x2d\x3f\x02\x9c\xf9\xe3\x3e\xd1\x54\x6d\x99\x2f\x86\x8d\xc7\x36\x6b\x10\x8c\x67\x1c\x1e\xa2\x32\x2d\x8f\x8c\x0d\x78\x70\x1b\x87\x35\x35\x57\x47\xfc\x38\x87\x8b\x22\x46\xd9\x66\x73\xdb\x10\x45\x95\xfe\xeb\xfc\x93\xfb\x7a\x4c\x2a\x7a\x14\x2e\x5d\x0a\x73\x5f\x56\x98\x02\x2b\x8f\xb4\x88\xea\xa3\xe2\x98\x56\x90\x19\xe7\x95\xb1\xcd\x29\xb0\xe5\x22\x6e\x1b\x5f\x40\x09\x5f\xc2\xf1\x59\x1f\x95\xc7\x38\x1c\x8a\xfa\x67\x7c\x2e\xba\xfd\x70\x54\x1e\x6b\x96\x48\x1e\xd9\xa7\x63\xca\xd1\x12\x37\xf2\xa8\xd4\x4f\x25\x6e\xb6\x9c\xab\xf2\xa8\xb2\xb9\xf5\x5f\x3f\x73\xb2\x89\xe5\xa9\x38\x3e\x80\x45\x5e\xe2\x47\xea\x78\xae\xff\xcb\x99\x65\x28\xd4\x71\xd3\x90\x0e\x49\x35\xcb\x27\x9e\xbd\x8e\x6a\x46\xcb\x55\xed\xfb\x29\x50\xe8\xa5\x77\x54\xa4\xdf\x1c\xe6\x3d\xd8\x7d\xce\xcd\x9f\x1c\x38\x8a\x7a\x5c\x29\x26\x0a\x05\x81\xd4\xff\xd7\xff\x72\x3f\x46\xa4\xa0\xf5\xb8\x90\x37\xbc\x7c\x11\xbf\x4f\x52\x46\x10\x81\x50\xd5\xef\x41\x66\xfe\x50\x9c\x43\x96\xe8\x77\xa4\x05\xe8\xc2\x41\x27\xf6\x73\xb1\x81\xe3\xe9\x5c\xe5\xa7\x81\xd9\xb1\x4b\xa7\x8e\x59\xce\x02\x58\xdf\x4f\x48\x6c\x36\x47\x61\x22\x00\xbc\xf4\x63\x7d\xd9\xcf\x3f\x0a\xba\xee\xd8\xc4\x03\x6c\x39\x84\x3b\xa1\xf4\x2c\xb2\x22\xb4\x16\x84\x3f\x30\x6e\x7a\x3a\xa8\xe4\xa0\x58\x0a\x56\x2c\x6e\x06\x62\xcd\xb9\x66\xdd\xf1\xcc\x7e\xb8\x30\x26\x8a\xf0\xf5\x08\x62\x5b\x9a\x82\x2a\x57\xdd\x4b\x64\x96\x14\x1f\x5f\x31\x75\x51\x2f\x68\x4d\xf8\xb8\x10\xe7\xb4\x72\xce\x87\x05\x35\x11\xce\xcf\x0b\x05\xde\xd4\xde\x2b\xe3\x04\x3c\xef\x74\x92\xf4\xe1\xcc\x2e\xb0\xb3\x3b\x0f\x2b\xb0\xd1\x2d\xe0\xec\x93\x32\x98\x9e\xa6\x1e\xcc\xc7\x12\xa2\x3a\x8c\x4f\xec\xdf\x42\x9c\x87\x98\x2d\xbe\xc1\x3e\xbf\x1b\x8a\xb5\xed\x81\xa0\x0b\xd3\xd2\x19\x1f\x2f\x2c\xbc\xc4\xe1\xa7\x92\xad\xcc\xa1\xab\xdf\x18\x4f\x8d\x91\x69\x48\x5c\x58\x96\xf1\x71\x71\x2a\xd6\x2b\x85\xdc\x5b\x53\x16\x9e\x09\x7a\x66\xf9\x8e\xa5\x0b\xce\x07\xcd\x07\x37\xa0\x91\x09\x05\x07\xd0\x55\xd0\x1c\xa3\x8a\x9e\x2f\xf2\x15\x29\x61\xd4\x7a\x46\xc0\x1a\x07\xc1\x7b\xd0\xd9\xe7\xe6\xab\xa6\x09\xbd\x2c\x2d\xd2\x29\x32\xbd\xb2\x53\x61\xdf\xdb\x09\x29\x4d\x97\x00\x6a\x95\x93\x02\x93\xaa\x65\x8d\x0a\x08\xcd\xde\x75\xe2\x56\x97\x98\xbb\x86\x93\x42\x9c\xe7\x46\x5b\x01\xd1\xc4\x22\x80\x90\x24\xbb\xad\x51\xe7\x16\x4d\xd3\xb0\xf1\xb5\x28\x56\xb4\x9c\x19\xdb\xcd\x91\x74\xb0\xff\xef\x55\x21\xd4\x88\xac\xa2\x24\x70\x9d\x18\x91\x33\x3a\x62\xc6\x75\x40\x8b\x90\x0b\x3a\x2a\x2d\xfe\xe0\x62\x44\x2e\x80\x36\xba\x46\x9f\x26\xf6\xf8\x57\xc9\xaf\x57\xfa\x97\x71\xed\xbe\x6d\x66\xe7\x47\xd5\xf1\x36\x83\x8c\x99\x71\xe3\x0e\x86\x06\x91\x19\x2a\xb9\xa1\x1f\xb3\xec\x23\xfa\x88\x5e\xa3\xa3\x63\x8c\xf1\xec\x26\xcb\x6e\x8c\x3f\x86\x30\x83\x71\x63\xc2\x8f\x9e\xd3\x1b\x43\xbe\x0f\xe8\xab\x48\xb2\x3c\xdd\x2a\x65\x9e\x47\xc7\xe8\xb5\x26\x87\x47\x66\x89\x13\x37\x84\x6e\x61\x1d\xf7\xdf\x68\xb3\x23\xd5\x7f\x18\x5a\xec\x39\x4d\x2a\x90\xd2\x27\x78\x13\x23\x54\xff\xe1\xb5\x5b\xb3\x38\x27\x8d\xcc\x37\xeb\xe8\x58\xac\x50\x12\x1e\xec\xad\xa8\xaf\x2a\xc9\xe2\x96\x68\x22\x33\x8c\x0c\xfa\xbd\x5f\x83\xd9\xe3\x4b\xa4\x4f\x50\x40\x44\x9e\x85\x7d\x39\xa4\x54\xda\x6d\x60\x79\x74\x58\xdc\x6b\x5a\xda\x90\x9b\xb6\xce\x75\x96\x75\xdd\xb4\xd6\x7e\xec\xd7\x64\x74\x72\x52\x5c\x17\x95\x1a\xe1\xb9\x6d\xdb\x58\x30\x59\x2f\x3f\x32\xb4\x1e\xdb\x77\xb8\x1d\xfa\x9a\xe1\x5b\x65\x09\x0a\x61\xd0\xd8\x24\xaa\xb5\x79\x6d\x67\xc1\xbd\xc7\x79\xa7\xfc\xbe\x72\x6d\xfb\x29\x23\x95\x3e\x6b\x71\x2f\x97\xd3\x53\x7a\x53\x20\x69\xb6\x27\x0c\xa0\x1e\xd5\x08\x40\x5a\x51\x35\xb7\x01\xbc\x2b\x52\xe1\xbc\x42\xb1\xdf\xea\x49\x7c\xc1\xcd\xfc\x91\x77\xe4\xc8\xc0\xb1\xa3\xe5\x56\x0c\xf7\xc4\xd8\xf8\x5d\x6e\x21\x95\xa1\x20\x1b\x04\x02\xa0\x03\x1d\x61\x49\x88\x1e\x55\xc4\xb4\xa1\xaf\x2c\x67\x58\x74\x31\xdb\x42\x96\x5a\x86\xed\x1f\x2e\xd8\xc0\xd5\x0c\xb0\x13\x60\xb6\xbe\x32\x76\x67\x83\x62\xf0\x1f\xf0\xf1\x7f\x0c\x4c\x59\x21\x84\xf5\x85\x35\xf8\x5a\x22\x41\x42\xdb\x1d\x55\x4e\xcf\x30\xb3\xf4\xbc\x3b\x46\x6f\xb3\x6a\x58\x91\xed\xc1\xba\x30\x18\x39\xe6\xad\x3f\x9a\xe7\x95\x21\xe3\x48\x73\xa9\x26\x6c\xf9\xeb\xe2\x8a\x1d\xd3\xca\x9a\xde\x9a\xe8\x71\x36\x5a\xca\xcb\xba\xf4\x9b\x7b\x18\x9f\x29\xd1\xf8\x9a\xc5\x69\x47\x17\x77\x9b\x81\xf3\x2a\x47\x5f\x36\xa0\x7e\x30\x4d\xc3\x9c\xbb\x50\xc1\x07\x76\x67\xf5\x15\x1f\x56\xd7\x9b\x60\x41\xaa\x0f\x87\x97\x75\x99\xb3\xa3\xc9\x71\x33\x9b\x02\x6f\x0b\x91\x97\xe1\x28\x78\x59\x97\x94\x1d\x4d\x8f\x31\xd9\x0b\x6f\xac\x9b\x9d\x79\xb7\x77\x4c\xd4\xb8\x38\x53\x4c\x98\xdf\xfb\xc7\x56\x2f\xa5\xc4\xcd\x21\x57\xa2\x62\xd2\xe1\x17\x24\x40\x07\xc1\x82\xd5\x1e\x05\x55\xcd\x81\x0f\xb7\x61\xb5\xfc\x19\x65\x15\x29\x0a\xa6\x2e\xce\x1d\x07\x05\x02\xbc\x82\x56\xb5\xf4\xc8\xf5\x6d\x04\x58\xf4\xcd\x31\x61\x9e\xec\xbe\x21\x16\xeb\xd3\x80\x16\x4b\xa6\xd0\x30\x8e\xc4\xf3\xda\x59\xd4\x05\x3c\xd7\x0a\xf6\x1c\x0f\x4b\xcc\x02\xc6\x6f\x83\xf6\x37\x0b\x23\xd8\xe0\x55\x67\x68\x58\xc9\xd7\xc5\x6b\xe4\x10\x0e\xb0\x63\x2d\x01\xd6\x20\xb1\x91\x06\xa0\x87\x9d\x9d\x3a\x60\xcb\x62\xbd\xe1\x9d\x09\x5e\x8d\x43\x33\x2c\x71\xd2\x12\xb2\xe1\x21\xe8\x70\x4a\xf8\xac\xf5\x5e\xf9\x97\x13\xc2\xbd\xdb\x52\x61\xd6\x70\xe1\x10\x0b\x6e\xf5\xcf\xfc\x65\x13\x63\x15\x78\x66\xc0\xb0\x2c\xca\xb0\x2b\xc3\x89\x47\x39\xb8\x8a\xce\xc3\x83\x44\xa1\xfa\x8a\xbc\x4a\x7e\x5f\x91\x57\x47\xf2\x98\x5e\x01\x6f\xb6\x2c\x00\x44\x8e\x06\xa6\xf5\x7b\x37\x88\x7a\xb3\xcb\x4e\x72\x8f\xfd\x73\xef\xb8\xc3\x9d\x55\xa8\xd5\xe3\x42\x1a\x18\x61\x4a\xaf\x36\x9b\x9e\x3a\x29\xa5\x48\xc5\x0d\xdb\x6c\x14\xb8\xbc\x61\xb8\x4d\xbc\x2a\xc4\x65\xdf\xd1\xfc\x75\xfe\x2f\xaf\xc0\xe9\x36\xe8\x98\x5f\x11\x09\xfb\x6a\xb3\x41\x80\x1f\xd1\xd3\x2e\x8c\xc9\x76\x9f\x9e\x03\xf0\xcd\x65\xe3\x02\x38\xb2\x6e\xf3\x6e\xed\x71\x99\xb3\xa6\x21\xd7\xe8\x8f\x58\x24\x89\x7e\x68\xc1\x75\x9b\x69\x2b\x1b\x1f\xc4\x22\x14\xfd\x43\x57\xa7\x53\x22\x03\xff\x56\x70\x0c\x76\x3d\xf8\x03\x95\x3e\x39\x68\x0c\xfa\x66\x15\x71\x3c\xaf\xf2\x0a\x16\x22\xea\x3b\x7e\xfd\xc7\x40\x8e\xad\x09\xb4\xff\x00\x74\x59\xd7\x00\xa6\x92\x0e\xe0\x88\x1c\xdc\xc1\x20\x92\x03\x2f\x06\x76\xb3\x8c\x8e\x0c\x15\x1d\xf8\xc2\x8e\x47\x8d\x89\x89\xd7\x67\x84\x1f\xe9\x06\xac\x2d\xad\x75\xcc\x09\xf1\x2c\xd4\x58\xb0\x8f\x4c\x48\x86\x30\xe9\xee\x73\xe5\xf7\xb8\xb7\x68\xf3\x58\x29\xc2\x94\xd8\xda\xcd\x22\xde\xea\x1e\x64\x24\xda\xe0\xba\xb9\x90\x55\xd2\xd7\xe4\x53\xb4\x7e\x12\xb7\xaf\x4f\xc6\xa7\xb1\x0d\xb1\x6a\xaf\x01\xd8\x47\x17\xff\x0e\x88\x84\x7d\x06\xc1\xcc\xb0\x99\xe6\xd1\x06\xd9\xb5\xad\x31\x3f\x92\x93\x47\x99\x70\xba\xf1\x21\x08\x49\x86\xcb\x68\x1f\x16\x8e\x42\x7f\xc0\x64\xd8\x32\x52\x06\x92\x3d\xb2\x12\x63\x79\x51\x88\x03\x85\x26\xd8\x73\x8e\xd6\x9b\x24\xcb\x2c\x99\xdd\xe1\x63\xb9\xac\x4a\x86\xa6\x58\x73\xf3\xfa\xf5\x11\x3f\xa6\x0a\x37\x44\xaa\x7a\x95\xb7\x5d\x07\xec\xe8\xc5\xde\x0b\xa1\x5d\x47\x93\xe3\xe8\xec\x49\x79\x0f\x13\xa6\xd3\x8a\xa0\x2c\xe6\x22\xcc\xf1\xf2\xb1\x58\x36\xa4\x23\x8e\xf6\x8e\xba\x6e\x83\x2b\x68\x16\x6c\xa2\x62\xed\x1c\xec\x34\x7f\x11\x65\x0e\x4b\xcb\x2b\x98\x31\xf5\xac\x89\x20\xf5\x5d\x0c\xc8\x70\x58\x37\x6e\x7c\xab\x76\x7f\xed\x92\xdc\x9d\xce\xaa\x27\x74\x32\xdb\xdd\xf5\x91\x6d\xda\x03\x03\x60\x3c\x45\x7b\x70\xe0\xc8\xa5\x94\x16\x63\x73\x08\x63\xaf\x0f\x1f\x31\xbe\x30\xba\x08\xf7\xee\x31\xf5\x2b\xce\xc9\x0e\x76\x4a\x0b\x32\x72\x7c\xc8\x08\x93\x65\x94\x1c\x98\x10\x53\x56\x99\x65\xcb\x74\xf1\x3e\x2e\x3c\x0f\x13\x2a\x0f\x69\x64\x38\x09\xe1\x12\x6c\xfe\x50\x68\xfc\x45\x94\xda\x38\x5d\x44\xf9\xd5\x75\xf9\x78\x3d\xc3\x65\x57\x6f\xa3\xc4\xcd\x00\x1c\x3c\xae\x18\x57\x83\xeb\x4a\x5d\xd4\x6b\x35\x80\xcf\x07\xb5\x18\xd8\x16\x8c\xfe\x44\x83\x9b\xa6\x21\x46\xab\xd1\x82\xb0\xf5\x3b\x6b\xfb\xcc\x73\x33\xf3\xdc\x6b\xc0\x5a\x33\xcf\x81\x23\xaa\xbb\xb3\xe8\xb7\x64\x9d\x4e\x94\xbf\xa3\x64\x1f\x1f\xd7\x71\x33\xed\xc9\x51\xdb\xd0\xf5\x4d\x95\x65\x68\x04\xcf\x23\xe3\x15\x34\x72\xfa\x13\xf8\x8d\xb3\xac\x0a\xb5\x66\x99\x7a\x4c\xab\xa8\x38\xb8\x33\x35\xba\x6a\xb3\x64\x35\x33\x1f\xd6\x27\xb8\x16\x38\xfe\xc7\x44\x99\x26\x85\xa5\x46\xd5\x1c\x6d\x23\x57\xb0\xa5\xe2\x6a\x34\xc7\x6e\xfd\x80\x8c\x32\x03\x15\xb8\x21\xee\x47\x17\x31\xf8\x0b\x08\x46\xd4\x67\xc8\xd2\xee\x38\x24\xce\x43\x73\xe0\xdb\x3c\x52\x66\xd9\x1c\xc8\x13\x1e\xea\x49\x2d\xe4\x4d\x89\xb1\x93\xf8\x42\x81\x66\x73\xe6\x91\x6a\x8b\x59\x2d\x94\xb2\x24\xd4\xe4\x53\x98\x5c\x00\x60\x6a\x25\x2f\xf2\x7e\x8f\x86\xad\xcb\x4a\x99\x65\x95\x1a\x7d\x46\xcb\xca\x04\x4e\xe0\xb1\x9c\x11\xae\x98\x07\xe9\x88\xf3\x68\x5e\x35\x65\xb3\x82\x08\x26\x1f\x10\xd7\x4d\x6c\x08\x6c\xa2\xff\xaa\x26\x9a\x35\x08\xcd\x73\xf1\x7f\xb6\x9e\x12\x22\x52\x8e\xd4\x54\xc0\xac\xeb\x56\x36\xfe\x66\xbb\xe9\xd0\x85\x6a\xa9\x0f\xd2\xa5\xa5\x04\x85\x52\xec\x6a\xa5\x46\xb8\x21\xee\x84\x05\xfd\x5a\xbc\xd4\x62\x24\xf0\xf4\x2c\xbe\x75\x42\x63\xfe\x1a\xac\x2f\xbc\x48\x9b\x73\x62\x45\xd8\x5c\x34\xc4\x2b\x65\xa3\x95\xe2\xa6\xde\x1e\x1c\x7a\x58\x59\x83\xfc\xad\x2b\xb6\xe0\x2c\xe7\x8e\x5d\x7a\xb7\xe6\xaa\xba\x62\x54\x58\x85\x62\x8d\x6f\x3d\xbb\x37\x12\xa0\x06\x6b\xe7\x1d\xd0\x81\x18\x61\x24\xfa\x8c\xca\x50\x9b\xe7\x12\xb4\x17\xbd\x53\x73\xfe\x9b\x4d\xef\x2b\xc9\x96\x67\x59\xa6\xff\xdf\x6c\x0c\x30\x28\xa9\xa9\x6b\x53\x64\x0e\x02\xd6\x15\xb3\xf6\x8d\x92\xd5\xaa\x2d\x42\xb8\xc3\x25\x2b\xc4\xf7\x5a\x04\x55\x11\x52\x69\x0f\xb3\xa9\xe7\xb2\xb2\x41\x28\x51\x84\x69\x2a\x22\x3f\x1b\x12\xe3\x9a\xc2\xcd\xac\x64\x06\x44\x5f\xef\xdf\xcf\x97\xe9\xb2\xf6\x14\xea\x5e\x41\xa9\x71\x35\xd4\xfe\xec\x56\xc3\xf0\xad\xb5\xfa\xab\x25\xf8\xc1\x56\x49\x54\x0f\xc1\xce\x68\x95\xf8\x38\x9e\xa5\x58\x30\xf1\x4b\x28\xa3\xe3\xa2\xe9\x46\xcf\x74\x40\x10\x37\xba\xd0\x48\xc6\x45\xbd\x6c\x3b\x1d\x25\x90\xb4\x4c\xe7\x5d\x32\xfb\xf3\xc5\x42\xcb\x47\x71\x0a\x55\x06\x58\xa6\x53\xd2\xd7\x96\xb3\x3b\xd5\x05\x9d\x40\x9f\x8d\x7d\x3d\x55\xd6\xf2\xfc\x2b\x4a\x9d\x39\x3d\x47\x9c\x0e\x04\x06\xc2\xd5\xa6\xb9\x63\x68\xde\x56\x34\x02\x03\xf6\x53\xaf\xc1\x72\x36\xfc\xd2\x12\x90\x31\x4a\xe7\x68\xba\x37\xc5\x76\xf5\x38\x84\xb3\xfe\x8d\x12\x76\x43\x92\x79\xcb\xde\x31\x56\xf0\x49\x3e\x3d\x65\xf6\x30\x8f\x5f\xb8\x45\xf6\xe5\xd5\xa7\xd9\xef\x6a\x40\x3b\x67\xd4\x84\xf4\x55\x83\x63\x71\x00\x4d\xef\xe3\x1e\x68\x6a\x94\x2e\xb0\x61\xea\x57\x94\xdc\x62\x02\xe4\x48\xd2\x4d\x4b\x84\x48\x4d\xa7\xa4\xa2\xb7\x0d\x29\xb4\xe4\x23\x69\x88\xa1\x48\xca\xfe\xbb\x87\xd8\x37\x32\xd1\x0c\xe0\x59\x49\xcb\x2c\x2b\x23\x6a\x32\x2f\x73\x46\xbc\x28\xba\x12\x75\xc9\xa4\x3c\xd6\x94\xf9\xb6\xf1\xc2\xab\x55\x08\x8d\xed\x6b\x3c\x4f\xaf\x63\x15\x9c\xd6\x1f\xaa\xf2\x32\x59\x4e\x6b\x73\x77\xde\xc4\x22\x10\xa8\x87\x23\xc0\xd3\x2c\x1b\x42\x6c\xf6\x5a\xa8\xf7\xe0\x98\x29\x9d\xbc\xab\x05\x4c\xca\x02\xae\x6b\x10\xef\x7b\xa1\x5e\x15\xe0\xac\x26\x65\xa3\xd1\x88\x8c\xfe\x73\xa4\x77\x5c\xf8\x84\x13\xd5\x34\x08\xcf\x5b\x56\x69\x8a\x8e\xe2\xb1\xff\x66\xb4\x03\xb0\xa7\xa2\xe0\x8b\xfa\x0a\xe1\x9d\xd1\x37\x23\x12\xa9\x86\x38\xbe\xe5\x63\x59\xaf\x45\xc9\x28\x44\xe0\xeb\x71\xbf\x19\x2f\x0a\x55\x64\x99\x09\xe0\xaa\x9f\xbd\xdd\x99\xc2\x59\xb6\xd6\x82\x23\xa4\x1a\xe9\x51\x79\x6d\x5d\x33\x63\xe3\x62\xb1\x80\x40\x08\x2f\x2b\xa9\xf4\x11\x36\xef\x26\xa1\x91\xed\xd2\x08\x62\x9b\xe0\x9c\x8d\x0b\xa5\x8a\xff\x8f\xbd\x3f\xe1\x4a\x5c\x59\x17\xc7\xe1\xaf\x52\xc7\x77\xad\x7d\xf5\x6a\xd2\x55\x49\x98\x7a\x1f\xcf\x5e\x4c\xed\x04\x38\x80\xc2\xbe\xfd\xeb\xd7\x55\x84\x08\x11\x48\x30\x24\x2a\x9c\xda\xdf\xfd\xbf\x9e\xca\xcc\x24\xd8\xa2\xd8\xcd\x4a\x37\x29\x93\xaa\x4c\x55\xcf\x3c\xa9\x1d\xde\x6b\x77\x27\x78\xe5\x9d\x03\x63\x2f\x9a\x80\xd6\x00\x40\x8f\x7e\x26\x7b\xdf\xe0\xdf\x09\xbe\xcb\x57\x4d\x8c\xa7\xda\x9d\xfc\x50\xda\x8c\x74\xbc\x7f\x6a\xf3\x93\xf0\x6a\x7c\x1d\xf0\x37\xdd\x8b\xe5\xc1\xb5\xdd\xc7\xb0\x6c\x29\xfe\x30\xee\x63\x0c\xff\xf8\x63\xc7\x34\xb8\x65\x99\x4b\x2c\x6a\x87\x1a\x6d\x6d\x47\x07\x61\x34\xee\xd8\xb6\xe3\x06\xf4\xee\x4c\x4d\xa9\x76\x38\x9c\xac\x36\xfa\x67\xfc\xfe\x2e\xd7\x35\xf7\x82\x7f\x1a\xe2\xf4\x23\x1c\xc6\x16\x38\x57\xb0\xcf\xe8\xe4\x56\x7b\x99\x28\x3b\xea\xd5\xf5\xe5\x9a\xb4\xc1\x40\x33\x5a\xfe\x09\xfe\xc6\x71\x90\x8a\x27\x58\x3f\xd0\x80\xe5\x8f\xa3\xdc\x98\x3f\x44\xa0\xa0\x8c\xa1\xb3\x5d\x77\xb2\x42\xa6\x68\x67\x5f\x8b\x54\xc9\xb3\x23\x8e\xb2\x93\x5e\xb4\x02\x81\xc7\xc5\x7f\x1a\xff\x0e\xd4\x46\xc6\xfe\xfe\x1e\x8f\x80\x0e\x1d\x68\x8d\x7d\xf2\xc3\x13\x7e\xfe\x1b\x24\x1e\xd4\x80\x3f\x18\x7e\xb5\x03\xf1\x47\xe7\x4e\xec\x07\xd6\xae\xb9\x77\x60\xee\xef\xc3\x9b\x4c\xe0\xef\x5e\xcc\x9c\xbc\xf7\x5f\x4f\x1b\xaf\x7f\xd7\x7e\x84\x67\x1c\x4f\x83\x41\xf7\xa6\x3e\x4e\x34\x6f\x2b\x0c\xe2\x02\xec\xde\x7f\xe9\xa1\x57\x3b\x63\x66\x25\x10\xff\x81\x79\xa6\x15\x78\x64\xbf\x2e\xb6\xe5\x83\xa2\x9b\x86\x12\x7f\xb5\x77\xa3\xf5\x2f\x11\xf9\x6a\xef\x5a\xdf\xf1\x8f\xd8\x41\xc9\x3b\x78\x60\x7d\x27\xf1\x33\x72\xf4\xcc\x81\xf5\x5d\x0a\x4e\x07\x29\x2c\x3d\x77\x5b\x5e\x47\xe7\x9f\x68\x49\x2c\xf8\x1a\x1c\xef\x83\x84\xfd\xcf\xec\xa2\x24\x40\xe1\xfe\x9a\x79\xc6\x95\xe1\xbe\x6a\x5f\xa1\xcb\xde\x34\xc5\x3a\x30\x76\x93\xca\x2c\xba\xf5\xe8\x57\x51\x88\xc4\xfe\xd3\x83\xe1\xbc\xf4\x62\x7f\x85\x9e\x91\xc3\x5d\x63\x57\x4a\xee\xed\x7d\xdd\x35\x0f\xbf\xf3\xe6\x8f\x83\x30\xb5\xb3\x3e\x4b\x95\xbe\x6b\x1d\x02\x45\x09\x32\xa8\x98\x7b\x5f\xad\x3d\xc6\x42\xc6\xff\x50\xdf\xdb\xfb\x67\x17\xc7\x0d\xa2\x33\x5d\x80\xfe\x0b\x18\xe6\xbf\xff\xf8\x6e\xc1\xff\xfd\xe7\xcf\x99\xa8\x59\x13\xbd\x12\x17\x8c\x3d\xef\xee\x94\x4d\xae\x0e\x81\x15\x35\x36\x0d\x8d\x27\xd4\xd7\x2d\x6d\x88\xdc\x13\xe2\xfd\x50\x44\x55\x4d\x0b\x92\xcd\xf7\xf9\xe1\x7b\x2e\x1e\x7e\xb1\xbd\x51\x5f\x5a\xa6\x3a\xfc\xf2\xff\xe3\xc9\xed\x74\xfb\x8b\x97\xa2\xfe\xcb\x8e\xaf\x1b\x08\x6e\xe9\xc7\x9b\x8b\x3b\x7b\x07\xc3\xc3\x7d\xcf\x5d\x78\x9f\xfb\x0b\xc7\x81\xc0\xa7\x77\xff\xc9\x24\xff\xd2\x84\x74\xea\xab\xf6\x9f\xa4\xf2\x97\x26\x48\x99\xaf\x9a\xa0\xa4\x27\x00\xc3\x5d\xd5\x2e\xcd\x8c\xdc\xc2\x3a\x34\xe0\x0e\xe6\xa1\xf1\x9d\xfc\xe0\x11\x35\xfa\x21\x39\xa0\x87\xf8\x60\x78\x48\x38\x26\x50\x12\x5c\xfc\x56\x3b\xd4\xca\x9b\x2d\xcd\x53\x76\xee\xda\x87\xc0\x6b\x08\x64\xef\x4f\xfb\xdf\x56\x34\x53\x00\x3d\x4c\xe2\xff\xa5\xfb\xbd\x5d\x2b\x3a\xc6\xf6\xf0\x8a\x5b\xaa\xd0\x8c\x0e\xd0\xbf\x1c\x26\xf1\x01\xdd\x3f\xec\x81\x34\x11\x1b\xf2\xbf\x81\x2f\x10\xfd\xdf\x88\xbb\xd8\x20\x2e\x3f\x4f\x15\x3f\xe4\x0e\x0c\xce\x2e\xaf\x08\x19\x8e\xba\x8b\x66\xf0\xb2\x7c\x7d\xf9\x0c\x24\x66\xb9\xee\xde\x80\xcb\x02\x1f\xed\x48\xcd\xf1\x56\x14\x49\x78\x9f\x92\xed\x00\x3a\xb4\xbf\x4b\x3f\x22\xf9\x02\x0e\xac\x43\xfb\xbb\x1c\x1c\xd9\xd9\x3b\x30\x0f\xed\xef\x4a\xb4\x8b\x7f\xf9\x01\xa0\xff\xc1\xae\x05\x3f\xe6\xde\xc1\x3c\x1d\x19\x7f\x54\xfe\x8c\x3c\x5f\xba\xcb\x82\x98\x8e\xd1\xda\xdd\xd5\xbe\x1b\x02\xcc\x20\xde\xdb\x4f\x6a\xca\xff\xba\xde\xea\xda\x77\x5b\x20\x3f\x0e\xc9\x17\xfc\xcf\xae\x79\x10\xe0\xad\x83\xff\x1a\x20\x70\xdb\x30\xf3\xb4\xd9\xb4\x86\x5f\xef\x76\xed\xef\x24\xfe\xec\x7b\x07\xe6\xdd\xdd\x50\xb3\xe1\x24\xaf\x72\x0d\x12\x72\x6f\xf8\xd5\x3c\x18\x98\x03\xc7\x4d\xb9\xf8\x15\x33\xfb\x7b\xe2\x47\xc4\x50\xd7\xf1\x24\x37\x5f\x35\x6f\xef\xb6\x76\x63\x75\xcc\x9b\xd1\xaf\x67\x9b\x00\x55\x2e\x0f\xb9\xcb\xbf\xa0\xd8\xe7\xa2\xfa\x97\xff\xb7\xfb\x9d\x0a\x63\xf4\x63\xff\xff\xed\x7d\xd1\xf7\xfe\xdc\x39\x2a\xd7\xb8\x6d\xcc\xe0\xf9\x4a\xbf\xe3\x1f\x7f\x41\xf3\x3b\xfe\xe1\x0f\xf8\x9e\x15\xfe\xef\xc7\x97\xf6\xde\xde\x5f\x86\x78\x6f\xea\x40\xcc\xf6\xbc\x32\xdd\x5f\x77\x23\x17\xe6\xfd\xfe\x2b\x1f\x24\xfe\x71\x3b\x7f\xc7\x3f\xfc\x6a\xde\xbc\xcc\xac\xd7\xf6\x6c\x03\xf6\xe1\xbe\x27\x6c\xc3\x77\x02\xe6\x90\x47\xa1\xf2\x0f\x73\xc8\x53\xf5\xf8\x68\xe1\x9c\x1f\xdb\xdd\x8b\x7a\x0d\xf9\xd6\x60\x38\xef\x0b\xed\xee\xd8\xaa\x6a\x5a\x9a\x6f\xcb\x80\x4b\x7b\x07\xa2\x5e\x46\xf1\xb9\x3f\xb0\xfe\xb4\x0e\x61\x66\x77\x77\x6d\x91\xda\x02\x70\x73\x7b\x5f\x88\xa4\x29\x0c\xef\xfd\xb9\xb7\xeb\x46\xb5\x34\x79\x78\x60\x81\xda\xda\x2e\x74\xd8\xb7\xf6\xf6\xf6\xfc\xc7\x05\x28\x76\x9b\x7f\x69\x87\xc6\x57\xfb\x30\xb0\xce\x46\x92\xe8\xb7\x27\xa2\x0e\x23\x8f\xcb\x8b\xae\x47\xfe\xfe\x2b\x76\x56\x88\x9d\x03\x66\xd3\x7f\x2b\x3e\x2e\xf8\xeb\xaf\xc8\x19\x21\x72\xfc\xab\xc6\x3f\x93\x18\x2e\x2e\x3e\x6e\xe2\xd8\x5f\x53\x47\x84\xa9\x71\x5f\xbd\x3e\xb0\xc6\xc5\x9e\xa9\xd2\x9e\x96\x37\xfb\x03\x6a\xc1\x37\x09\xce\x44\x26\xea\x31\x86\x18\x38\x56\x18\x70\xce\x6d\x06\x6a\x38\x04\xac\x70\xa0\x7f\xb7\x7e\xf0\x60\x11\xee\xbb\x0b\x8d\xef\xda\x8f\xc3\x7f\x45\xa6\x6f\x14\x09\xf5\x3b\xb0\x0e\x68\x50\x4f\xe0\x60\x08\xb4\x47\xf5\xd1\x8f\x8b\xbd\x28\x47\x5b\x1c\x1d\x21\xdd\x40\x16\x30\x29\xdf\xed\x1f\xde\x17\xe5\x77\xd9\xb3\x26\x7c\x55\x77\x0d\x58\xb0\xdc\x96\xf4\x2f\xec\x21\x57\xee\xa8\xbe\x37\x9c\xec\x09\xf2\x84\xea\x1a\x03\x4d\xc0\x89\xfe\xbc\xab\xe1\xf3\x66\x77\x5d\x07\x3d\x97\x31\x3e\x31\xec\x1e\xaf\x84\x03\xab\xfb\x9b\x69\xf5\xa9\xbd\xbb\xe7\xbb\x27\xb5\xce\xb9\xe1\x68\xb8\xbb\xc7\x53\x4f\xff\x9f\x69\x70\xaf\x02\x2e\x1e\xbb\xef\xf8\x1f\xd9\x07\x71\xf3\xfb\xd3\xae\xb6\xe7\xf1\x5b\xbe\x3e\xf0\xcf\x19\x44\xf5\x0e\xb0\x18\xda\xd9\xd7\xf6\x77\xd0\x9d\x65\xf6\x79\x9a\x59\x78\x0c\x44\x07\xfa\x01\x6a\x3a\x36\x6a\xe9\x2d\xee\x5e\xd2\xa1\x8f\x5e\x15\x18\x10\x1a\x78\x19\x18\xad\x25\xee\x04\x7e\x83\x8e\xe7\x9e\x07\xdf\x5d\x8f\x97\x0d\x72\x73\xbe\xf1\x29\x39\x0c\x20\x65\x0f\xc0\xf8\x9b\xd3\xeb\xfd\xad\x51\x6b\x77\x4f\x90\x80\x1a\xc6\x61\xc9\x3a\xc0\x07\x84\xe7\xe9\xf9\x6e\xfa\x64\x83\xfc\x69\xfc\x5b\x49\xf3\x55\xb1\x6b\x4f\x0f\x30\x60\x80\x0f\x7b\xff\x3a\x3c\x34\xbd\x26\xe7\xba\xcb\xbc\x08\xc6\x81\xee\x67\x4e\xf4\x5b\xb3\x40\x38\xa9\x29\x7b\x7b\x3c\x1e\xd5\x8e\x10\x2c\x85\xdf\x78\xf6\x30\x6b\xdf\x70\x9f\x77\xde\x75\xa1\x43\x92\x77\x08\x58\xf0\x7f\x76\x79\x70\x92\xbf\x48\xd5\xc3\xd1\x2e\xdd\x3b\xe8\xf9\xcb\xd4\xf5\xea\x56\x63\x5e\xe1\x5e\xed\x58\xed\x09\xf5\x77\x6f\x77\xd5\xef\xd6\x8f\xbd\x83\x21\x7c\x23\xfc\xa7\xfe\xef\xe1\x9f\xfa\xfe\xfe\x9e\x21\x0e\x01\xb6\x5d\xdc\x98\xb5\x77\xe9\x77\xfd\xc7\xde\x9f\x3d\xdf\x2e\x1d\xa4\x9f\xe3\x09\xc0\x77\xdb\x7b\x07\x3d\x7f\x05\xe1\xbf\x7a\x80\xdc\x03\x70\xf5\x70\xf4\x3f\x71\xc7\x46\x3f\x91\x19\x0f\x50\x17\x6d\xb3\x64\x3e\x69\x56\x9e\x0e\xb5\xdd\x68\xe4\xf3\x97\x2f\xed\x83\x9d\xdb\x9d\x99\xae\x8a\xee\x1a\xe1\xef\x38\x83\x0f\xe4\x93\xf5\x5d\xfb\xe1\x97\xda\xd7\xe2\x8c\xce\xd3\xae\x05\x3c\x2b\x07\xd5\x90\x11\xd8\x03\xd6\xff\xc0\xf8\x4e\x39\x13\xf1\xe3\x80\x3b\xe4\x5b\x07\x8f\xbb\xf4\x40\x8f\x33\x08\x7b\x71\x4f\x3b\x90\x78\x0f\x9f\xfc\xec\xdd\xb0\x74\x23\xa9\x38\xb8\xc3\x7f\xe0\xeb\xdd\xf9\x8b\xce\x88\xb9\xa6\x7f\xed\xba\x1e\xde\x1d\x98\x3c\x18\x7c\x48\x0f\xe8\xde\x57\xcb\x0d\xcc\xfb\xd7\xe1\xe1\x2d\x37\x4a\xdd\xee\xc2\x91\x83\xdb\xbd\xbd\xbf\x76\x77\xdd\xbb\xb8\xc3\xf6\x5c\x92\xad\xef\x1d\x50\x37\xcf\xb2\x09\xfd\xa8\x57\x99\x6e\x86\xe3\xd6\x81\xf1\xea\xcf\xa7\x1f\x3e\xed\xee\x1a\xb3\x3f\x1e\x7c\x5a\x83\x3b\x7c\x59\xdf\x75\x78\x09\x93\x57\x44\x71\x85\x24\x1e\xde\xc0\x3f\x2a\x74\x99\xe9\xce\xb5\xd3\x70\x6d\x46\xb7\x77\x8c\xed\x3c\xfb\x6d\xdf\x05\x67\xf7\x5f\x9a\x78\x4b\xfd\x92\xb1\x3c\xd5\xe6\xad\x3d\xee\x33\x16\x75\x0e\x7b\x76\x85\x88\x45\xd5\xb9\x66\x56\xbf\x88\x96\x4c\x9a\x2c\x7c\xa5\xc5\x5c\xbb\x02\x05\x83\x9b\x71\x2f\xd4\x57\x73\x85\x8f\x67\x62\xf6\x45\xe9\x03\x7c\x00\x22\xb7\x15\xcd\x36\x39\x25\x92\x03\x1f\x7f\x0b\x4c\xa4\x7e\xa8\x89\x8e\xad\xfa\x62\xa3\x1b\xb6\x15\xc4\x2e\xba\x3a\xb5\xa1\x8b\x82\x39\x71\xa8\xed\xea\xdc\x98\x49\x5b\xad\x5d\x53\x1c\x50\x6b\xa8\xc1\x22\xd8\xe9\xeb\x86\x63\x6b\xc3\x1d\x40\x24\xf6\x98\x5f\xf9\x9f\xdd\xe1\xbf\x25\xc6\xa4\xc3\xc3\xc3\xe1\x1f\x7f\xa8\xff\x4e\xee\xfd\xf1\xc7\x52\x42\x12\xfa\xcf\x21\x92\xc4\xa4\x88\x45\xf4\xb7\xe9\x20\x6a\x69\xc8\x19\xea\x46\x3b\xd2\x63\x67\x3f\x10\x83\xf6\x77\x5c\xa1\x2a\x2a\x4c\xed\xec\x1d\x74\xa2\x3e\x24\xb7\x93\x4e\x23\xae\x61\xd0\xcd\x7d\x61\xf0\xf4\x02\x3e\x7b\x35\x3c\x74\xd9\x8e\xa1\x7b\xc8\x65\x65\xe1\x23\xf1\x46\x94\x33\x1b\x06\x5c\x92\x77\x38\x64\x2c\x0e\xa3\x5c\xc6\x3f\x07\xb7\x5c\x5d\x37\x5d\x21\xf5\xc0\x00\xa6\xd1\x3a\x8c\xdc\x29\x42\xea\x63\xb2\x92\x7e\xb7\x6b\xfc\xdb\x02\x92\xec\xd3\xc6\x7f\x0e\xf8\xd7\x9f\x75\xd5\x03\x2e\x71\xc3\xb5\x3d\xef\x07\xff\x31\x87\xd1\x5b\x1d\xa8\x87\x11\x0b\x22\xdc\xd7\xcd\x17\xa0\xf2\x7c\x01\x40\x87\x0f\x29\x77\xd2\x83\xdd\x3e\xf9\x01\x4b\xea\xbb\xf9\x97\x29\x90\xaf\xe6\x8f\x03\xfb\xdf\xc6\x1f\x7f\x54\xc4\xbe\xf9\xa8\x65\xfb\x4d\xbd\xed\x98\xce\xf0\x9b\x69\x3d\x51\xab\xf5\x97\x0d\x4c\xe3\x7f\x2c\xff\xfc\x89\xc1\x33\xc6\x7b\x67\xb9\x44\x08\xeb\xe3\xdf\xc3\xef\xe6\x0f\x01\x18\xd5\x80\xe0\xd3\x30\x2f\x01\xa2\xdf\xd5\x1f\xff\x70\xa1\x63\x66\x1d\xcc\x60\xbe\xbe\xfb\x2e\xe4\x2d\x0d\x20\xf1\xc7\x3f\x9e\x34\x32\x6b\xd4\xf3\xee\x0e\xa7\x13\x6e\x0f\xd4\xa1\x43\x37\xa5\x76\x4b\x1b\x58\x9a\x4a\x6d\xad\x05\x7c\xd1\x1d\x7d\x34\x2d\x64\xde\x21\xde\xd7\xb1\x55\x97\x2a\xed\xec\xc5\x66\x7f\xfa\xbe\x41\xcf\xb9\x0f\x3c\x6f\xe8\x3f\x07\xfd\x28\x54\x47\x29\xe1\xe1\xd4\xb2\x8d\x30\xcf\xfb\xae\x60\x47\x9b\x6e\x6a\x5a\x31\xfe\xc0\x9c\x2b\xd8\x13\xfc\xd7\xf5\x1e\x9f\xf7\x81\x2f\xe7\x9e\x0e\xa9\xdf\xf7\xff\xbf\x2b\x18\x1d\xec\xec\xec\x71\x54\x07\x9d\x3c\xf9\x2c\x60\xbe\xf7\xf7\xff\x39\xa8\xf8\xa0\x77\xb8\x83\xc5\x84\x28\xa5\x76\x0e\x2a\x5c\x2d\x7b\xe3\x1f\x86\x03\xb7\x70\xa3\xe1\xa1\x01\xcd\x9e\x6e\x74\x87\x87\x16\x34\x0d\x9e\x8a\xca\x3c\xa8\x00\x0a\x39\x1c\x1f\x54\x44\x38\x79\x78\x0e\x0d\x93\xc6\x93\x66\x8d\x3d\x36\x7c\xb8\x77\x70\xbe\xab\xf1\x8e\xc3\xbd\x89\x7b\x05\x78\x00\x9e\x8b\x8b\x4f\xb7\x5e\xa3\xf8\xac\x0f\x23\x09\x4a\x78\x85\xf8\x88\x73\x9e\xde\xaa\x76\xcc\x27\x6e\xb7\xe6\x2a\xa2\xe8\x81\xc3\x7f\xe1\x83\xe7\xdd\x1d\x17\xa5\x88\xf6\x38\x72\xbd\xdd\xff\xe1\x39\x54\xfe\x67\xef\xc5\xd5\xf3\xaf\xf8\xf0\x60\xe0\xce\xde\xde\xc1\xbf\xfe\x75\xbb\x6b\xef\xc1\x23\xb7\x1d\x6d\x38\x33\xd7\x8d\x0d\xc8\x97\xb1\x5d\xfb\x30\xbb\xbb\xb7\x77\x60\x43\x67\x23\x9e\xc7\x2b\x60\x53\x7d\xe6\x4b\xe3\xa5\x0d\xf7\xcc\x49\xb6\x5e\xe3\x12\xeb\x77\xed\x07\x63\xc6\x77\xa0\xe8\x3f\xf6\xfe\xf8\xc3\x74\x69\xbd\xcf\xed\x6b\x3f\x22\xde\x7f\x9c\xcb\xe2\xcf\x07\x4c\xfb\x61\xe7\xa0\x22\x3a\xc6\x80\xaa\xdd\xc3\x56\xd0\xcc\xd1\xa1\x96\xc4\x87\x0e\x3c\x97\xa6\xb5\x86\xee\xa2\x3b\xac\x1d\xcc\x82\x7a\xf8\xa2\xb3\xb1\xc5\xa1\x57\xe5\xb8\x74\x50\x3c\xd4\xc4\xbb\x48\xba\x93\xea\xc2\xec\xaa\x2e\x0c\x8d\xff\xf2\xf6\xee\x92\xe6\x1e\x77\x41\x88\x10\xfc\x11\xd1\x38\x3c\x2c\x73\x3d\x5f\xe1\x3e\x3b\xc3\xe4\x3f\x9a\x68\x8f\x0f\x2b\x07\x9a\x1f\xb6\xcd\x3f\x8f\x37\xc4\xe1\x39\x7a\xbd\xcf\x10\x75\x36\x0d\xed\x6f\xb1\x71\x61\x19\x38\x5e\xc7\xec\x76\xfc\xc7\x1f\xbb\x26\x90\x58\x20\xb4\xff\xb2\xc5\x5b\x7d\x78\x5d\xcb\x73\x17\xf6\xdb\x96\x4b\xa7\xa1\x49\xf7\xc4\xdb\xd6\x81\xcd\xff\xdc\x8b\x11\x62\x3b\x4a\x88\xf7\x0e\xe0\x92\x87\xa6\xbb\xe7\xde\xd8\xfc\x26\x11\xfc\x60\xef\x1d\x04\xf8\xc3\xda\xfb\x37\x49\xfe\xf1\xc7\xae\xf5\xe5\x30\x89\xf7\x0e\xc2\x7a\x78\x61\x7f\xdf\xeb\x09\xae\xf2\x67\xe4\xf8\xae\x60\xb9\x59\xe9\x6e\xc7\x87\xba\xeb\x71\xe6\x0a\xd6\x20\xdc\xec\xfd\x73\x50\x84\x6f\x16\xff\x1e\xae\x56\x5d\xbf\x0b\x78\xc1\x48\xd5\x81\x69\x6f\x33\xe0\x15\x38\x32\x46\x00\x00\x6e\x95\x81\xa6\x86\x28\x72\x07\x1f\xa0\xb6\x5b\x54\x60\x7f\x07\x7d\x0f\x6b\x0b\xec\xef\xfc\x08\xd5\x66\xfe\xec\x02\xd8\x1d\xf8\x4b\x27\x3e\x65\xbe\x3f\xe6\xd7\x19\x4c\x0a\xc0\xba\x61\xba\x62\xe4\x9d\x69\xb9\x37\x0b\x95\xb9\x2f\xe9\x72\x61\x9c\x00\xe8\x4d\x37\xda\x5f\x44\x8f\x90\xfc\xe3\xfb\xc6\xdd\x8e\xf7\xe2\x4f\xc9\xe1\x1c\xbe\x1b\x5c\x83\xfb\x9c\x57\x77\xc3\x3f\xf6\xbc\x13\xd9\x66\xd3\x0a\x4e\xc0\x1f\x70\xc2\xb1\xd5\xc3\x87\x5d\xbe\x87\x3f\xb9\x52\x83\x1f\xe0\x2d\xaf\x87\xb7\x44\x77\x4b\x87\x91\x3f\x0f\xa6\x41\x62\x92\x6f\xfc\x0f\xf6\x1d\x6b\x3c\x38\xd9\x3b\x28\xcd\x01\x94\xbd\x03\x80\x14\x71\xa8\xd9\x85\xc9\x24\x5b\x61\x26\xd4\x38\x7f\x98\x99\xcd\x1f\x86\x97\xd8\xdd\x9b\xcb\x2c\x66\x96\x67\x16\xb9\x15\x37\x0a\xbd\xf6\x5f\xb0\x28\xdc\x92\xd7\x9a\x1b\x89\x97\x3f\xd4\x44\x77\x42\x3d\x14\xaa\x6b\x7e\x81\xac\xc0\xc0\xcd\x79\x71\x6e\xde\x9e\x4a\x67\x1b\x37\x76\xe7\xf7\xfe\xda\xcd\xbb\x58\x76\xe7\x76\xbc\xb3\x77\x10\xfc\x41\x77\xf6\xf6\xbe\x02\x80\xe7\xc3\x0f\xea\x56\x39\x88\x79\xb7\x04\xd6\x8b\xd3\xea\x79\xc5\x03\xf5\xff\xf9\xef\x8e\xf7\x4a\x3b\x5f\x77\x24\x4c\x32\xea\xce\x01\xe7\x6d\x86\x3b\x5f\xbf\xef\x64\xef\x2c\x5d\xa5\x5f\xb2\x4d\xbd\x75\x4f\x0d\x56\x2a\xd7\xd0\x51\xb9\xc6\xda\x62\x1a\x61\x86\x09\x13\xa4\x5e\xab\x71\x2c\x5e\x32\x25\xad\x25\x76\x0e\x82\xfe\xaa\x6a\x51\xbf\x37\xda\xc7\x58\xc2\x4c\xbc\x44\x18\x09\x5d\x86\x89\xb4\xd2\xc6\x04\x29\x99\x6b\x36\xc4\x34\x4a\xda\x63\xd8\x95\x8d\x22\x22\xb9\x6c\x77\x5e\x23\x8f\xe7\x9e\xda\xac\x3e\x4c\x21\xd1\x8f\x56\xa1\xba\x65\x36\x75\xfe\xd9\x8a\x59\xf8\x6c\x92\x8c\xe1\x57\x49\x30\x41\xb2\xc4\x36\x12\x64\x8c\x04\xc9\x41\x82\x74\x0a\x9f\x51\x26\x4c\x20\xdf\xe4\x3c\x9c\x92\x0b\x63\xd8\x99\xdd\xb2\x83\xca\xdf\x1a\xa7\x4c\x49\xc5\x26\xa4\xd7\xd6\x35\x6b\xc8\x2e\xca\x35\x54\x2f\xc2\xff\x6a\x0d\xe5\x8b\xf0\xbf\x5a\x63\x42\x46\xec\xc1\xe4\x10\xef\xbf\x84\xa7\x66\x49\x56\x64\x45\x26\x32\xb4\xa1\x21\x11\x99\x09\x92\xa1\x9a\x30\x52\xad\x34\x61\x77\x9c\xc5\x88\x64\xe0\x47\x2f\x63\x44\x88\x8a\x11\x31\x4d\x8c\xea\x26\x46\xc4\x52\x31\xba\x84\xc3\xc5\x32\x46\xd7\x65\x8c\x0a\x59\x8c\x4e\xfa\x26\x46\x56\x0b\xa3\x82\x86\x51\xa6\x31\xc6\x88\xdc\x35\x31\x22\x74\x80\x11\x49\x9e\x61\x24\x8d\x4c\x8c\xfa\xc5\x01\x46\x9d\xa7\x12\x46\xf7\xcf\x70\x75\x92\xc5\xa8\x55\x68\x61\x44\x52\xd0\x99\xe4\x30\x22\x6a\x05\x23\xa9\x30\xf2\x5a\xe4\x8e\x1f\x2b\x61\x26\x25\xa3\x5f\xa1\x44\xdb\xe6\x90\x7f\xdf\x7a\xb6\xc6\x84\x96\x98\x85\xf7\x75\xd7\xb1\x34\xc2\x2d\x31\xcb\x48\x4a\x4b\x86\x03\x72\xfa\x70\x48\x1d\x3e\x42\xc0\x84\x2f\x7d\x22\x89\x5d\x44\x30\x5f\xfe\x92\xbb\xfe\x31\x92\x9e\x4d\x13\x33\x39\xa3\x29\xe1\xd8\x32\x1d\x38\xb6\xc9\xc7\xe6\xe1\x6e\x12\x15\xbb\xde\xa7\x65\x82\x74\x74\xaa\x51\xb1\x3b\xf1\x7c\x79\x58\x01\xac\x58\xac\xa1\x22\x9f\x16\x09\xc3\x94\x33\x4c\x3e\x74\x63\x02\x69\x9e\x9c\x63\xf4\x08\x5f\x5b\x87\xa9\x21\x30\x53\x3a\x7c\x68\x03\x5a\x12\x1c\x1b\x40\x0b\x57\xfc\x56\x12\x8e\xdd\x8f\x31\x1a\xca\x2d\x8c\x6e\xe0\x90\x09\x27\x09\x5c\xc4\x3c\x8f\xf5\x75\x5b\xcd\x85\xad\x79\xfd\x08\xac\x03\xb3\xe4\xb7\x66\x1d\x9b\xd5\x7a\x8f\x7e\xf5\x92\xbb\xb8\xc9\xd5\x18\xa3\xa7\xc1\xab\xae\xf6\x50\xc2\xa8\xf1\xba\x87\x33\x46\xfe\x4c\x99\x64\x51\xeb\xa1\xb2\x5c\xbf\x97\x47\xc0\x0b\xf3\x93\x57\xf0\x60\xf0\xc6\xe7\x06\x46\x64\xdc\xc2\xa8\x04\x7d\x8a\x15\x8c\xbe\x35\x31\x52\x09\x46\x69\x03\xa3\x74\xa5\x85\x51\xbb\x84\x91\x46\x30\xea\x1b\x98\x91\x44\x14\xf8\xf2\x74\x48\x9b\x3d\x6a\xa8\x2e\x25\xd9\xc7\x80\x0c\x09\x73\xc4\xae\x8b\xab\x56\xa6\x24\x2b\x6e\x4c\x90\xda\x65\xc3\x16\x8b\x88\xc8\xb8\x04\x7b\xab\x89\x11\x20\x9e\xd6\x4d\x13\xa3\x26\x2c\xf1\x5a\x03\xa3\xa2\x99\xc3\xa8\x54\xc2\xa8\x6d\xb4\x30\xb2\xc6\x18\x29\xb0\xe6\xb3\xf0\x35\xe0\x0d\x1b\x0d\x8c\x48\x7e\x80\x11\x2c\xe2\x16\x20\x33\xa5\x6f\x60\x54\x1d\x55\x22\x9d\x9e\xe0\x4b\x7d\xcb\x61\x54\x68\x46\x3f\x59\xe5\x0e\xa3\xa7\x32\x46\xaa\x89\x51\x1b\xf0\xa8\x89\x31\x1a\x62\x8c\x5a\x59\x8c\x1e\x55\x0f\x1b\x66\x31\x46\x1a\xc6\x68\x84\xbd\x03\x4e\xd9\x3d\x50\xf0\x7b\x0c\xbd\x1e\x27\x65\x8c\xea\x65\x8c\x00\xf1\xb6\xcb\x18\x95\xb2\xee\xdf\xf7\x59\xf7\xbc\x94\xf6\x46\x4a\x49\x3c\xeb\x08\x8c\x59\xfd\xd4\x4f\x5c\xe7\xe5\xce\x4c\x96\x62\x38\x54\x73\x6c\xca\xa6\x69\xdc\x24\x79\x9b\xb1\x49\xf2\x3b\x6d\x4c\x90\x12\x67\x3e\x10\xb5\x38\x8e\x48\x0f\x30\x92\x8f\x61\xa5\xa4\xe0\xcf\x3b\x98\x7c\x0a\xd0\xa5\xc3\xac\x53\x98\xd8\x51\xca\x5c\x75\x9d\xdd\x70\x3a\x58\x5e\xee\xe7\x2e\xbb\x42\xe7\x89\x61\xa6\xbf\xf2\x66\xb6\x1e\xbc\x55\x17\x6f\xac\xda\xff\xd5\x03\xe7\xf7\x7f\xeb\x47\x7c\xbf\x3b\x2d\x1a\xc8\xd2\x09\x4d\x0e\x21\xa2\xd8\xbb\xcd\x52\xdd\x31\x02\x36\xc6\xc7\xa4\x97\x62\x99\x73\x32\x3e\x32\x7d\xf3\x85\xce\x04\x62\x15\xc6\x29\x51\x45\xe4\xe8\x26\x0b\xfb\x64\x69\xde\x82\x25\x6a\x2e\xb7\xc5\x87\x6f\x81\x0f\x25\x1c\x65\x43\x4f\x4d\xee\x10\x3b\x6c\x3a\x56\x9b\x55\xb3\xd5\x1a\x0a\x7e\x98\x40\x40\x96\xf0\x99\x4c\x4f\xd8\x3a\x3a\x6d\x39\x88\x64\xef\xe1\x57\x2d\xf9\x1c\x35\x30\xd3\x69\x25\x8a\x68\x4f\x9d\x26\xf5\xb9\x5b\x94\x87\x6b\x16\x39\x9b\x9b\x14\x87\xfe\x45\x23\x17\x5e\xb4\xc1\x3a\x19\xd5\xf9\x40\x32\x3e\xc3\x7c\x0f\x0b\xc5\x65\x31\x39\x93\x7f\x1f\xb0\xfb\x9c\x01\x4d\x71\x06\x14\xd0\x63\x0a\xd6\x50\x07\xd0\x1c\x70\x14\xa4\x03\xfd\x32\xd0\xaf\x0d\xfd\x32\xe3\xd8\x55\x26\xc6\x86\x23\xd2\x70\xb7\x76\x65\xde\xd8\xd8\xdd\x46\x47\x2d\x1c\x7e\x85\xb3\x0e\xb5\x6c\xd3\xe9\xcf\xfa\x12\x54\x4c\xaf\xfa\x25\x88\xfb\x29\x60\x24\x7c\x0a\xbe\xdf\xec\x4f\x81\x8e\xef\x4b\x98\x25\x62\x92\x6c\xd9\x34\x2c\xf3\x51\xa7\xac\x5c\xae\xa1\xb2\xa7\x33\x38\x16\xd3\xe8\x44\x74\x02\xc1\x49\x2e\x8d\xdb\xe2\x25\x92\xd2\x47\x98\x88\x7d\x46\xe2\xb2\x70\xeb\x9e\xf6\x35\x83\xfa\xc2\x1a\xaa\xbb\xeb\x15\x8b\x6a\x4c\x44\x05\x01\x4c\xe3\x47\xa5\x53\x59\x85\x7d\x1d\xf8\x48\x39\x7a\xad\x2a\x35\x6f\x6b\x66\x5f\x0b\xf4\x11\x20\xfc\x65\xc5\xd3\x08\x17\xc9\x2f\x83\x31\x52\xf4\x24\x08\x92\x0f\x38\x32\xc3\x35\x4b\x1f\x98\x3d\x57\x2c\xf7\xb9\x09\x54\x2c\xd6\x98\x70\x29\x9e\xf8\x0f\x13\x93\x99\xe5\x19\xf3\x2a\xc1\x3f\x26\x48\xe4\x54\x85\x61\xa4\x63\xe4\x60\xff\xf8\x0c\x37\xbd\xc0\xe8\x19\x1a\x5a\x05\xa3\x5c\x13\xa3\x14\xcc\xce\x35\x36\x30\xca\xc2\xa7\x6e\x35\x7d\x28\xe4\xad\x56\xcb\x6f\x41\x7f\xd2\xe4\x2d\x82\x7d\x68\x25\xd3\xfd\xc2\xb1\x0f\x04\xa3\xbb\x2c\x4c\xb6\x36\xf0\x8e\x65\xcf\x1e\x30\xaa\xf9\xa4\x23\x3e\x0d\x35\xc7\xd0\x5d\xa5\x41\x5c\x57\x30\x4f\x4b\x30\x53\x7b\xe3\x69\x09\x48\x7a\x40\xf9\xfe\xc1\x93\xfe\xe5\x9a\xea\x8b\xef\x63\xcd\x45\xbb\xb0\xbc\x80\xa7\x21\x4a\x80\x78\xee\x32\xc0\xff\x58\x20\x52\x9e\xc2\x7a\x6c\xe4\x3c\xe2\x67\x65\x3d\x25\x83\xf1\x64\x62\x74\x66\xc6\x98\x12\x7e\x12\x97\x31\x1a\x03\xea\x77\xe5\x45\x5a\x99\x4b\x3b\x01\x67\x46\x5e\xbb\xae\x1b\xad\x8e\xa9\x75\xd9\x3e\x26\x32\x0e\x11\x26\x07\x70\xae\x3a\x08\x11\xa7\xbb\xf7\xd6\x11\xd7\x92\xac\xb2\xcd\xc2\xb7\x55\x10\xfa\x32\x27\xf0\x42\xc9\x0b\x10\xe4\x1a\xfe\x67\x82\x13\xf5\x8a\xd7\x70\x0f\x85\x27\x17\xb7\x7e\x72\xe8\x5a\x6f\x06\x1c\x3c\xa7\x58\x7d\xcd\x55\x56\xb5\x68\x97\x55\xaa\x35\x54\xa9\xd7\x50\xe5\xa2\x86\x72\xd5\x1a\xca\x15\x6a\x28\x7b\x5c\xad\x21\xfe\xbf\x50\x63\x4d\x8c\x28\xff\x17\x34\x28\x46\x19\x3e\x0f\x78\xf1\x57\x4f\x24\x53\xef\xb8\x31\x81\xa4\xaa\x0d\x8c\xd2\x4f\x75\x8c\xf4\x1c\x46\x97\xbd\x26\x46\x09\xe9\x1c\x4f\xd0\x57\x7f\xc1\x8f\xa7\x8f\x41\x6b\x08\x80\x7d\x33\xc6\xa8\x04\xdf\x2e\xd7\x88\xf5\xe7\xa2\xc2\xbc\x91\xf3\x5b\xf1\xb1\x6a\x1f\x40\xe5\x61\xd1\x28\x05\xb0\x06\x3c\xbf\xdb\x9a\x3b\xab\x13\xfd\x7e\x66\xc4\x3a\xee\x76\x05\x38\x66\xdc\xc4\xe8\x7c\x30\xd9\x58\x70\x6a\x41\x63\xa5\x51\x9b\x7a\x0b\x26\x4b\xc9\x28\x18\x1a\x6a\xc7\xb4\x68\x5b\x63\x80\xfa\xb2\xf5\x1a\xca\x5e\x78\x30\x98\x3d\x2e\xd4\xd0\xdf\xd0\x38\xe3\x3f\x85\x1a\xe3\xc0\x07\xff\x82\x46\x06\xa3\xf4\x66\x82\x63\x0d\x03\x38\x36\x30\xd2\xb3\x5b\x70\xdc\x82\xe3\x86\xde\x82\xc9\x38\x46\x16\x2f\x4c\xcb\xbe\x35\xef\x6e\xab\x03\xaa\xbb\xc2\x3c\xf0\xc4\x4a\x52\x54\x90\xe2\x59\x15\xba\x95\xc7\x2b\xf1\x9a\x29\xb2\x2b\xff\xfb\x80\x6c\xd1\xb6\x43\x75\x8f\x9b\x16\xb0\x8c\x04\x2c\x31\x59\x15\xcb\x48\xc6\x68\x29\x36\x6e\x26\x63\xd7\xee\x3d\x95\x44\x15\x1d\xb7\xce\x60\x47\x54\xd5\x67\x44\x9b\x0d\x8c\x8a\x20\xb3\x57\x81\x89\x79\xcc\x62\x54\x06\x96\x13\x04\xfc\x72\xc9\x6b\x8c\x1b\x18\x3d\x40\xef\xe7\x26\x46\x12\x70\xa3\xdc\x96\x90\x27\xee\x29\xde\x28\xf9\x0d\x18\x7e\x2c\x11\x4f\xb3\x6c\xe7\x30\x3a\x81\xeb\x7c\x6b\x61\xf4\xad\xe1\x6b\x96\xa1\x71\x9c\x73\x15\x05\xad\x72\xc5\xd3\x18\xc0\x63\xb8\xfa\xe8\x0a\x06\xe1\xc0\x1d\x1e\x5c\x87\xeb\xac\x83\x23\xd0\x99\xeb\xac\xe1\x3a\x70\x41\x63\x44\xf8\x75\x18\x51\xe2\x2c\x8a\xd5\xd6\x0c\x5b\x37\xe8\x97\x9c\xa3\x19\xe6\xf0\x36\xab\x5b\xda\x90\xe5\xf9\xf7\x55\x82\x6f\xac\xb4\xc5\x32\x52\xf0\xea\x9f\x79\x86\xc6\x10\x5f\x1f\x1f\x8b\x2a\x1a\x9c\x19\xb0\xe3\x1f\x14\x44\xb2\x5a\x73\xf2\x63\x4d\x37\x78\xe7\x25\xfa\xc0\x47\x93\xee\xc7\x6e\x43\xe9\x35\x30\x72\x08\x46\x89\x12\xdc\x62\x00\x5f\x04\xa6\x08\x0e\x39\xf0\xd5\x1e\x61\x82\xa7\x1a\xae\x88\x38\x0f\x75\xd2\xa1\xe1\xaa\x74\xc6\xd0\x37\x37\xf6\x3e\x7e\xad\xe1\x19\x0c\x02\xcb\x41\xd0\x80\x53\x59\xc0\x1e\x8e\x6f\x5d\xa8\x97\xf0\xcc\x99\xc8\x53\x9b\xf6\xa9\xa5\xd2\x37\x9f\x06\x02\xbf\xe4\xb7\x9b\x86\x07\x8c\xae\x68\x64\x1a\xac\x5e\x0e\xa3\x54\x0e\xa3\x34\xa0\x29\x67\xde\x34\x98\x56\xcb\x6c\xae\x69\x12\x7e\x3f\x58\x98\x9c\x84\xe5\x60\xe1\xd4\xb9\x77\x46\x6f\x3c\x05\x20\xdf\xfe\x36\x13\x30\xd6\xbc\x46\xaf\x85\x51\xfd\x6c\xc6\x04\xcc\xfc\xee\x25\x7a\x7b\xa5\x9b\xf7\x6b\x58\xfd\xd2\xef\x86\x83\x2e\x0d\x8c\x1e\x80\x2b\x4f\x1a\x13\xe4\x60\x39\x3c\x54\xd6\x8c\x96\x39\x7e\xeb\x99\xe0\xcd\xdf\x67\x22\x1c\x29\x72\x99\x5a\x30\x09\x75\x8c\x2c\x9d\xb8\xac\x6a\x0a\x3a\xce\x9b\x84\x2b\xdd\xbc\x3d\xa2\xbd\x9e\xd6\x36\xd7\xc4\x1d\xfd\x2e\x33\x31\x9f\x3b\x5a\x0e\x1c\xaa\xb4\x67\xaf\x8d\x28\xff\x5e\x13\x30\x8f\x24\xcf\xf9\xee\xc6\xed\xa9\x43\x8d\x2d\x45\x58\x2b\x45\x68\x61\xd4\x27\x18\xa5\x7b\x0b\x41\xc0\xb8\x2d\x39\xfa\x5b\x23\x22\xbf\x49\x5c\x9f\xa1\x5f\x79\x2a\xb8\xc5\xfe\xc1\xa3\x09\xd9\x0a\x46\x8f\xd0\x27\xf8\xf0\xe9\x12\x46\xdc\x3c\xe9\xb1\xa6\xbc\x31\x73\x2a\x6a\x8e\xea\xf4\xd7\x01\x14\x3e\x4c\xfc\x3e\x50\xb1\x40\x56\x53\x2a\x18\xa5\x73\x8d\x25\xe4\x85\xeb\x61\xc7\xa1\xfa\xdb\xd3\x87\xdf\x0e\x47\xcd\x21\xd1\x5d\x98\x89\xc1\x4c\x12\x9d\x77\x2c\xaa\x52\xd3\xd3\xcd\x29\x32\x76\xd5\x7a\x63\xb1\x84\x14\xc7\xd5\xec\xc1\xd7\xeb\xde\xa4\x4c\xb1\x85\xa4\xf4\x59\xa9\x2a\xb6\x18\x49\xc4\xf5\x51\x43\xc7\x50\x75\xd3\x60\xd9\x70\x02\x99\x7c\x2e\x16\xdd\xc9\x5b\xb7\xab\xe4\xcb\x1b\x13\xc8\x73\x22\x9d\x11\xbb\x88\x14\xce\xca\xb0\x97\xf3\x25\x8c\x64\xee\xc7\x8d\x4b\xde\xfc\x10\x6c\x4c\xb7\xf8\xb7\x0f\x8d\xd9\xbc\x15\x1e\x9b\xd5\x7a\x65\x3f\x00\x19\xa2\x18\xb1\x63\x77\x2d\x0f\x93\x71\x2f\x3d\xca\x87\x02\x22\xe4\x7e\xb0\x03\x8c\x1a\x4d\xdf\x21\x96\xbf\x84\xe5\xaf\x85\x40\xb7\xb8\xd8\xbd\xf6\xc1\x5f\x5c\xb3\xcc\xa5\xfa\x20\x72\x8d\x78\xc3\x8e\xde\x27\x68\x90\x4c\x23\x66\x7c\x98\x30\x43\x44\x1c\x3f\x66\xb4\xf8\xd8\xbb\xdc\x74\x6b\xf5\x11\x3f\x33\x76\x0d\x77\x63\x92\x17\x9c\xe2\x03\x8b\xad\x77\xcd\x2e\x50\x9f\x6a\x0d\xe5\x0b\x35\x94\xaf\xd7\x50\xfe\xa2\x86\x8a\xd5\x1a\x4b\x62\x94\x08\xff\x71\x47\x51\x49\x56\x98\x20\x25\x6a\x97\x70\x39\x60\x3d\x8c\x26\x46\xf2\xbd\x86\x51\xfa\x59\xc6\x48\x7f\xe2\x77\x90\x22\x77\xc8\xd1\x8e\x4e\x6f\x73\xd4\x68\x69\x16\x75\x23\x0e\xca\x70\xaf\x6a\x0d\x5d\x54\x6b\xa8\x5c\xe0\xf7\x65\x29\x82\x52\x18\x25\x31\x4a\xf3\xdf\x44\xd4\x85\x44\x59\xb0\x25\xa4\xd7\x6d\x4c\x20\xd7\x97\xdf\x30\x6a\x69\x25\xa0\xd8\x2a\x7c\x23\xd5\x73\x94\xe0\x6b\xde\xb4\x1b\x18\xb5\xfb\x15\x8c\x2e\x24\x58\x31\xf2\x4d\x6b\x55\x33\xd0\x9d\xbf\xf0\xf9\xb4\xac\x64\x37\x5a\xc6\x82\x54\xdf\x04\x7b\xd5\x3b\xdf\x6d\xd1\x58\x96\x56\x62\xb6\x1e\xbe\xf2\x62\x76\x1e\x69\x24\x2a\x3f\x61\xe7\x09\x37\x6e\xf1\x79\x1e\x88\xd7\xe8\xb8\x55\x82\xdd\x46\x59\x7c\xf8\x91\x92\x7f\x41\xde\xf9\xd8\x77\x1f\x85\x46\x10\x8a\x10\x8f\x49\xf8\x39\xf3\x50\x2f\xe1\x9e\x62\x52\x2a\x86\x61\x72\xd4\x6a\xd2\x96\x17\x6b\x94\x73\x2d\x75\x28\x5b\xa8\x31\xb9\x2e\xda\x88\xff\x04\x74\x39\x54\x6b\x93\x4b\x7c\x42\xc4\x47\x74\x3f\x04\x78\x3c\x2f\xe4\xe1\x0f\xfe\x26\xb3\x10\x1b\x88\x3c\x44\x6e\x72\xdc\x13\x65\x05\x72\x5a\x4f\xeb\xc7\x2d\x7d\x2d\xf1\x7a\xa9\x15\xe0\xda\xf4\xce\x44\x05\x1d\xb7\xce\x60\xf7\x71\x33\x1c\x78\x64\x85\x6f\xa5\x8f\x5d\x17\x3e\xc0\xa2\x02\x4e\xc8\x98\xe3\xd0\xc4\xa5\x58\xe6\xc8\xd3\x89\xe2\xcf\x55\x36\x99\xbb\x5d\x4a\xdd\x9c\x93\x12\x55\x74\x77\xc1\x1d\x95\xcf\x0d\x07\x91\xb1\xea\xa0\xab\xa6\x83\xc8\x93\x39\xd9\x80\x53\x41\x9f\x97\x3a\xbf\x6e\xd4\xec\xce\x6f\xf1\x60\x77\xb8\xec\xa0\x07\x03\xa3\xde\x73\xce\x8d\xbc\x49\xa4\xe2\x58\xa4\x47\x0d\x55\xa8\xd2\x66\x0f\x58\x4a\x77\xed\xfa\x1e\x20\xcc\x15\x07\x64\x6f\xfd\x62\x49\xc6\x9c\x3a\x56\x3d\xea\x78\x7d\x04\x7c\xee\x73\x02\x23\xdd\xe1\xfe\x84\x31\xc2\x68\xd2\xdb\x1b\x7d\x68\xfb\x28\xca\x65\x54\x15\x69\x05\x46\x95\x2f\xd2\xc7\x1b\xb1\x0b\x8b\x14\x76\x1f\x88\x86\x86\xfd\x41\x04\x47\x48\x25\xcc\x92\xd2\xc4\xfb\xb6\x4d\x9b\xb2\x1c\x7f\xd9\x04\xbc\x30\x53\xae\xc5\x36\x30\x17\x4a\xe0\x7a\xaa\x35\x53\xb2\x78\x82\xe4\xf4\xc8\x84\xbd\xa4\x19\x98\x65\x26\x96\xbf\xa9\x0f\x35\x06\xbc\xc3\x45\xc1\xe5\x25\xca\xf5\x1a\x2a\x5f\x70\x5e\x82\xa5\x31\xf0\x11\x2e\x2b\xc1\xff\x31\x2f\x9e\x45\x79\x25\xa3\xb0\xae\x8d\x09\x52\x92\x3c\x4c\xd1\xb5\x34\x7c\xea\x53\x90\x07\xd2\xcf\x12\x46\xfa\x33\x46\x97\x4f\x2b\x3b\xce\xcc\x38\xcb\xa5\x8b\x33\x63\x8d\x4e\x3a\x2f\x8c\xf8\x45\x58\x90\xad\x83\xce\x4c\x07\x1d\x89\xc4\x28\x6f\x9e\xf6\x9b\x96\xde\x6a\x6b\xb7\x39\x3a\x62\x02\xc6\x13\x80\x5a\xf0\x38\x7f\x4f\xea\x70\xa3\xd2\x02\xa8\x4d\x44\x1a\x2e\x25\x03\x21\x20\xb1\xdc\x96\x4c\xa5\x93\x4b\x76\x5d\x62\x73\xfd\xd4\x31\xba\x3a\xcf\x44\x40\xb2\x94\x2f\x79\xe1\x5e\xe3\xf6\x42\x6f\xb9\x4f\x04\x1c\x59\xaf\x25\x9d\x61\x54\xbf\xdc\xc2\xc7\xdb\xc2\x07\x49\xc4\x88\x61\x9e\xf6\x07\xe6\xed\x91\x05\x62\x71\x8c\xfe\xcb\x79\x71\xf8\x0e\x8a\x2a\x97\xbd\xed\x89\x4f\x20\xc0\xc0\x6e\x2b\xc0\xb8\xcf\x0c\xd7\x39\x19\x60\xc4\xe3\x4f\x63\x7d\xf8\x63\x04\x91\xdc\x41\x67\x68\x4c\x3f\x4f\x70\x8b\xa0\xcf\x82\xce\xf1\x86\xf7\x3c\x2c\x95\x9a\xc0\xa8\x86\xea\x05\x2e\x02\xd6\xe4\x91\x37\x9e\xee\x24\x51\x12\x15\x0f\x5b\x2a\x01\xc2\x84\x6d\x91\xe2\xc4\xdd\x5c\x3d\xc8\x11\x46\xd2\x83\x64\x62\x34\x2a\xcd\xd1\x54\xc0\xd3\x3f\xe7\x3e\x46\xcf\xb1\xc2\x88\x42\x0b\xb3\xa4\x3c\xf1\xdd\x2c\xaa\xd2\xc0\xd0\x25\x63\x97\xf3\xb4\x80\xcd\xf6\x75\xca\xbe\x56\xf9\x49\xec\x22\x29\x7d\x56\xe6\x79\x2d\x4e\x9e\xce\x1d\xd4\x7d\x30\x31\x93\x32\x31\x06\x34\x4f\x47\x9a\x61\x4c\x80\xad\x2d\x76\x43\xb0\x65\x82\xd4\xb7\x9e\x1c\xb1\x88\xa4\x76\xdd\x74\xc4\x22\x4b\xa4\x63\x42\xc5\x05\x35\x68\xdf\x35\x31\x00\xe9\x4b\xdc\x8b\x59\x77\xde\x98\x20\x39\x2d\xa7\x28\x9a\x80\x30\x62\x37\xed\xe8\x2a\x6d\x9b\x2c\x42\x31\x7d\x5d\xdd\x2c\x3d\xdd\x8b\x9b\x14\x69\xcb\xca\x07\xa7\xd5\xf8\x99\x84\x1c\x52\x92\x0c\xa7\xd7\x86\x6f\x6d\x08\x75\xc9\x6a\x65\x29\x2d\xf4\xdb\xa5\x85\x98\x7b\x33\xfe\x94\xc7\x63\x7f\xdd\xae\x30\xf4\x2a\x17\xea\x59\xdf\xe8\x61\xe6\xb6\x5e\x29\x0d\xac\x4f\x7e\xd8\x98\x60\x84\xcd\x67\xe5\xb6\x72\xce\xda\xf8\xb8\x8c\x34\x89\x96\x3b\x0e\xed\x38\x34\x66\xd8\xc8\xbb\xe2\x0d\x4b\x29\x62\xd7\x93\x6a\x12\x9e\x2e\x82\xb3\x5f\x40\x9c\x5f\xa6\xcd\xab\x6d\x2f\x1a\x34\xa4\xf1\x65\x65\xc6\x1a\x78\xf8\x40\x0b\xc6\x46\x2c\xf4\x8d\xb2\x60\x4c\x48\xd1\xe6\xd0\xa6\xb7\x57\xba\x4a\x59\xf5\xb4\x1c\xac\x2d\x96\xc8\x8a\xad\x09\x2b\x19\xb0\xf4\xa4\xd1\x4a\x1a\x62\x09\x49\x3d\x07\xc3\x9e\xf3\xcb\x67\x03\x97\x71\x1e\x00\xf1\x20\x09\x38\xd4\x1d\x60\xd4\x2f\x61\x46\x26\xd6\xb2\xa5\x0d\x6d\xd3\x60\x65\xd7\x34\xc7\x52\x5e\xd0\x1a\x10\xd9\x4c\xe1\x0a\x23\x45\xce\x61\x96\x90\xe3\x82\x8c\xa3\xd3\x66\x5c\x85\x29\x9f\x44\x79\xa1\xb5\x0a\x30\x77\x62\x11\x04\x18\xd8\x6d\x05\x18\x05\x28\xd4\xc7\xcb\x2d\x89\x78\x78\x50\x81\x1a\x7d\x6a\x75\x87\x1d\xfa\x68\x44\x4d\x31\x6e\x06\x39\x4d\x2c\xba\xe6\x18\xb4\x64\x76\x0c\x89\x26\xea\xa7\xc0\xa6\x8f\x13\x77\xb0\x27\x99\x6b\xbc\xce\x94\x3e\x3f\x31\xb6\x90\xc7\x2c\x1d\xfb\x12\x4f\x43\xd3\xb8\xcd\x5b\x9a\xd6\x0d\xf4\xd7\x17\xf5\x1a\xba\xb8\xe0\xa4\x23\xd4\x5d\xf3\x7f\x9e\x41\xe1\x15\x5c\xb1\x6b\xa2\x3f\x8f\x1b\x21\x08\x46\xfa\x08\x23\xb9\x92\x7b\x7b\x5e\xf1\x4d\xb8\xe4\x77\x60\x15\xcb\x2e\xd2\x93\xa7\x26\x85\xfd\x5d\xad\xa1\xbf\x0b\x35\xf4\x77\xbd\x86\xfe\xbe\x80\x76\xc1\xf5\x4f\xb8\x28\xd4\x18\x8f\xde\xf5\xfe\xa5\xbc\x5f\xdf\xac\x80\x15\x9c\x48\x7e\xc0\xc6\xa7\xb8\xe2\x4d\xb1\xfb\x4d\xe5\x1b\x8c\xaa\x9a\x05\x93\x8d\x31\xd2\xc7\x51\x35\xe5\xbd\x95\xc5\xe8\xae\xd2\xda\x32\xb8\x5b\x06\xf7\x05\x45\x65\x9c\xbe\x17\x34\xe3\x51\xb3\x38\x4f\x50\x2e\x04\x1a\x7c\x36\x65\x60\x23\xaf\xc6\x56\xef\xa1\x21\xb0\xe6\xac\x03\x3f\x3b\x47\xdf\xc0\xe8\xdc\x6a\xc5\x34\xfc\x5b\x01\x75\x0b\xbf\x9f\x10\x7e\xfd\x34\xba\x01\xfc\xda\x96\xa9\xdb\x71\xbd\x71\xbd\x86\x8a\x17\x5c\x7f\xcc\x12\x4f\x62\x33\xd4\x1d\x2b\xbe\x2d\x7e\x83\xcc\xe5\x4c\x90\xf2\x6d\xdd\x12\x2b\x68\xa0\x3d\xc0\x8e\x24\x92\xdc\x3c\xae\x60\xa4\x3f\x62\x94\xbc\x6b\x79\x0c\xc5\xe9\x73\x83\xa0\x6a\xb9\x11\x59\xec\xb4\x4e\x26\xc1\xee\xcd\x39\x8b\x2d\xdc\x6d\x3a\x50\xbc\x4b\x86\x8a\xb8\xdb\x5b\xb1\xd5\x37\x0d\x90\xa6\x7d\xbd\x50\x8c\x7a\x3e\x8b\x97\x13\x3e\x2a\x31\x31\x47\x59\xa3\xe5\x6f\x45\x21\x7b\xd4\x52\x1e\xc4\x34\x1a\x76\x5a\xb0\x73\xb9\xcd\x54\x0b\xa3\xce\x18\x23\xa9\x95\x8b\xc1\xc0\x1c\x09\xe2\xe4\xa8\x12\x21\xac\xa1\x00\xd2\xb8\x1c\xac\x0b\xd4\xb6\x60\xba\x05\xd3\x39\xec\x6d\xdc\x99\xac\xa8\x5b\x8e\xa1\x0d\x7c\x63\x9e\xe7\x96\x56\x10\x87\x11\xb7\xb4\x25\x14\x51\x8f\x5d\xd7\x92\xde\xfd\x58\x4b\x7a\xeb\xc2\xd3\x2d\x8d\x6a\x2d\x8c\x5a\x89\x06\x66\x32\x89\x89\xbb\xc5\xde\x6d\x95\xf6\x1e\x69\xcb\xb4\x02\x96\x80\x6b\x14\xaf\x3d\xd7\xd1\x30\xfb\x29\x69\xe8\x47\xb2\xa8\x22\xe9\xdb\xa3\x0a\xfb\x68\xd4\x45\x90\x1b\xd1\xbb\x6c\x4d\xbf\x77\xa8\x11\x2a\xc1\x27\xb4\x1b\x2c\x55\x16\x95\x40\x74\x0e\xd4\x1b\x5c\x13\xae\x24\xde\x3e\xd9\xee\x4f\x6c\x5c\x8d\x5e\xc4\x48\xb9\x68\x60\x94\xee\x97\x3d\x5d\x7a\xd5\x47\x0f\x83\xe3\x1c\x46\x69\xd9\xc2\x68\x7c\x82\x51\xe2\x9c\x78\x49\xed\xd5\xf3\x73\x3c\x33\x5f\xf1\x32\x79\x90\x83\x56\xee\x7a\xb0\x45\x75\x6f\xab\x53\x47\xd7\x64\x33\x51\xd1\xbb\x08\x03\x71\x6c\xf7\xcd\xb4\xec\xdb\x8a\xd6\x1b\x9a\xc6\x5a\x15\x90\x6b\xd9\xb6\x5a\xcd\x0f\x37\xb7\xff\x66\x78\xe5\x0d\x59\x28\x26\x67\x62\x6a\x35\x0e\x89\x75\x3a\x32\xb4\x59\x91\x77\x5c\x32\x8f\x7b\xf5\xb8\xcc\x08\xdf\x66\xc2\xa4\x82\x95\xc4\x1b\x6c\x73\xfc\x69\x2e\x4f\x88\x6b\xbd\x7a\x47\x0f\x94\x44\xcd\x6f\x3d\xf0\xa0\xe5\x89\x35\xf6\xc0\x53\x74\x6f\x39\xdd\x79\x8d\x89\xc5\x46\x7b\xda\x78\x32\x18\x6e\xc5\x50\x38\x37\xe8\xed\x01\xf8\xdc\x87\xcd\x32\xb7\x1a\xc3\x68\xec\x49\x02\x44\xd3\x7e\x85\x73\xc2\x4c\x56\x62\x14\xf0\xa8\x47\x55\xd7\x27\xbd\x14\x86\xa2\x05\xe1\x3c\x72\x23\x08\xf1\x97\x03\xfb\xf5\x26\x49\xe3\x27\xc3\x13\x2c\xaa\x28\xff\x74\x0e\xbb\xe9\x18\x23\xa4\x3f\xf8\x30\x74\xda\x26\x5b\xd2\xf0\x19\x48\xc3\x2f\x84\x73\x18\xc9\xc4\xa4\xcd\x23\xb3\x65\x77\x68\x33\x1e\x81\xf9\xb0\x64\x04\xe6\x1a\xc1\x88\x26\xae\x9f\x45\x05\x49\xe3\x44\x0b\xf6\x1b\xec\x43\xb0\x2d\x29\xb4\x79\x25\x85\x48\x6a\x62\x91\x9b\x43\x97\xa4\xf0\x3c\xfd\x85\x1a\x0a\xf6\x5e\xce\xfe\x80\xcc\x14\x0a\x35\x26\x3b\xe2\x25\x92\xe0\x47\x76\x90\xe4\xff\x8b\xe4\x95\x89\xd7\xde\x5a\x41\x3d\xb2\x52\xee\xef\xf4\xbb\xe4\x17\x97\x12\xb5\xaa\xed\xeb\x8d\x0b\x0d\xa0\xfd\xc7\xbc\x7e\xe9\x32\xb9\x3c\xa6\xfb\xa4\xae\x8f\x1d\xa4\xdb\xce\xbc\xf3\xd3\x17\xe3\x8d\x5e\x6b\xad\x52\xdf\xeb\x28\x66\x95\x60\xd4\xc6\xce\xaf\x26\xf9\x19\x64\x3a\x47\x45\xfe\x17\x26\xef\x6a\x63\x43\x68\xef\x7b\x90\xf7\x54\x32\x26\xc4\xf2\xf0\xb5\xdb\x9a\x63\x75\xd9\x59\x39\x0c\x49\xca\x56\x6b\x2c\x91\x12\x69\x60\x53\x7e\x4b\x42\x2f\xaf\x40\xe6\x7b\xc4\xb9\x14\xcf\x91\x74\x7c\x9c\x83\xfd\x96\x8d\x5d\x3f\x1b\x9b\x38\xf9\x84\xcb\x5a\x4e\xc5\x97\xb5\x43\x6d\xad\x4f\x7b\x34\x66\x21\x49\x4a\x7e\x90\x5d\xcc\xe7\x5a\x52\xce\x3a\x37\xe2\x35\x92\xb4\xbb\x06\xec\xb3\x06\x46\x7d\xbb\x85\x51\x65\x8c\x91\xce\xdd\xe6\x53\x4d\x8c\xc6\x05\x4f\x41\x19\x14\xe4\x0a\x6f\x36\xa2\x0f\x8e\xde\x63\x97\x11\x0b\x54\x42\x8b\xa5\x45\x20\xa3\x9b\xea\x19\x92\x9c\x93\xd2\x19\xb2\xc6\x53\x29\x56\x8e\x9c\x11\x0d\x2b\x1a\x28\x09\x8f\xd7\x56\x98\x7c\x29\x16\x91\x7c\x0a\xac\x85\xe7\xd6\xc1\x04\xa9\xf5\x78\x9d\x12\xbb\x48\xb2\x92\xa5\x4b\xb1\x8b\x72\xcf\xcd\x3b\x96\x8e\x97\x57\x38\xa6\x3d\xfd\x8e\x3e\xcf\x94\x91\x15\x4d\x34\xa7\x64\xe4\xd5\xb6\x8d\x91\xa8\x97\xdf\xb8\xec\x7d\x7c\x2a\x66\xd1\xf3\x78\x0c\x3b\x9e\x30\x4d\x3e\x91\x3d\x75\x34\xaf\x57\xca\xb5\x14\x45\xe2\xa9\x3d\x46\x15\x8c\x2e\x00\x02\x73\x2d\x5f\x23\xd2\xc2\xe8\x0a\x70\xcb\x13\xf1\xb2\xa5\x3d\xf9\x6a\x8f\xf8\x11\x5f\x35\x72\x3a\xf6\x2e\x78\xee\x5f\xf0\xda\x88\x25\x5b\x83\x15\x4c\x1a\xd1\x61\x5c\x25\xe2\x2b\x52\xbe\xc5\x2e\x1d\x0c\xcb\xf9\x7d\x60\x9d\xc6\x4e\x5d\xdd\x45\x74\x09\xcb\x72\x4b\x32\xb7\xe3\xbf\x5d\xbf\xa4\xfe\xb2\xe6\x62\xab\x38\xff\xad\xc8\xca\xaf\xc1\x3e\xf9\x45\xf1\x03\x2c\xfb\x08\x68\xfb\x38\x6a\x86\xb7\x79\x20\xf0\x1b\xf3\x4c\x6b\xc0\x86\xa4\xac\x39\x8e\x68\xa2\x94\x34\x86\x1d\x20\xbc\x21\x88\x59\xbc\x9e\x62\xa5\xe5\x85\xba\x54\xbc\x23\xc9\xe2\x20\x72\x0a\x1a\xa7\x05\x1f\x29\x66\xfd\xc8\x14\xd7\x8d\xaf\x11\x95\xe0\x78\xa5\xf8\xc5\x20\xcc\x73\x54\xf6\x82\x3a\x89\xdd\x4a\x34\xc8\x69\x3e\x18\xde\x05\xf6\xc2\x59\x0b\x79\x09\xc4\x17\xb9\xaf\xb1\x02\xd8\xb8\x75\xac\x8d\xe0\x59\xb2\x7e\x45\xeb\x25\x5a\xb3\x34\x43\x3c\xc4\x6f\x09\x87\x03\xc5\x84\x27\x50\x63\x2d\x38\x9b\xd4\x31\x46\x57\xf0\xd7\x93\x89\xd1\x35\x74\xb5\xb3\x93\x47\x82\xc6\x58\xf5\x1a\x70\x9f\x73\xd3\x3b\x32\xdd\xe0\xc3\x67\x9f\xfa\xc9\xce\xef\x78\x0b\x26\xc5\x7d\x5c\x8e\x35\xab\x6f\x0e\xf5\x5e\xcf\x9c\x95\xc4\x92\xa5\x8c\xc0\xa7\x2f\x1d\xf3\xe9\x93\x97\x0d\xd0\x5c\x29\xe3\x24\x4b\xc6\xc3\xac\x4e\x8c\x96\x4e\x0d\xfa\xe5\xcc\x30\x9f\x97\x4d\xe6\xf9\xb2\x75\xff\x15\x89\x01\x94\x9f\xb5\xf3\xcf\x31\x41\x56\xdb\x95\x88\xe9\x71\x2d\x06\xff\x59\x04\x7a\x56\xbf\x85\xac\x84\x9c\x37\x30\x4a\xcf\xc5\x5c\xbf\x76\xa4\xc0\x38\xed\x17\x22\xdf\xb2\x00\x2f\x18\x65\x7d\x80\x2d\x53\x4b\x33\x22\x89\x3d\x96\x74\x03\x98\x01\xba\x11\x33\x3e\x59\x9f\x2b\x40\x1c\x0e\x5b\x23\x1f\x48\x42\x37\xfc\x9f\xf6\x9e\xb9\xb7\xc6\xaf\x82\x94\xac\x5b\xb4\xde\x85\x14\x2d\x39\xd8\x72\xa3\xab\x2d\xc5\x0b\xcd\xd6\x2c\xb7\x3a\xfe\xcf\xaf\xc6\x05\xe4\x03\x48\xc4\xfa\x97\xa6\x71\x1f\xe4\x7f\x79\x9d\xd7\xd7\x92\x28\x55\xfe\xd6\x7c\x2b\x09\x74\x49\x84\x9f\x51\xa7\xb1\xac\xf9\x59\xd6\xdd\xc7\x2c\xed\x9a\xd6\xeb\xdd\xe6\x75\x7b\xf4\x26\x2b\x1b\xd6\x35\x47\xb3\xef\xc1\xea\xac\x77\x1d\xa7\x9f\x8c\x19\x67\xcf\xf0\xb4\xab\xd5\x96\xaa\xaf\xb0\xde\x6e\xb4\x47\xfa\x9a\xb5\xf6\x26\x4e\x7c\x4b\xa3\xc8\xee\x45\x0e\xa3\xac\xbb\x02\x5e\x46\x53\x3d\x63\xeb\x71\xb7\xea\x32\xd0\x0d\x55\x33\x0c\x6d\xf8\x46\x04\x35\x60\xf3\xde\x85\x82\x86\x88\xa4\x8d\x07\x33\x90\x4b\xe9\x35\x78\x29\x58\x54\x0b\x7d\xa4\x55\x5e\x5e\x64\xa6\xcb\xe7\x96\xee\xad\xb0\x00\xeb\xba\x41\xfb\x54\x7d\xc3\xe5\x17\x5b\x84\xef\x80\xa3\x3e\x20\xcd\xdd\xcf\x88\x29\x93\x6b\x94\x7e\xa6\x05\xf4\xde\x6b\xd4\x79\xd4\xbb\x3c\x39\xb4\x1b\x8c\x52\x08\x22\x65\x99\x5f\x07\x26\x15\xa8\xd2\x64\xe5\x03\x36\x26\x7c\x33\xb2\x18\xd9\xf5\x6b\x4f\xe1\xfa\x74\xa1\x61\x24\x0d\x16\xca\xa7\x5b\x63\xcf\xa6\x2f\xc2\x77\x31\xf6\xc4\x13\x3e\x9f\x3c\xd0\x9e\xa3\xdb\x7c\xb5\x07\xf9\x17\x38\x12\x2e\x78\x89\x7c\x3d\x13\x90\x9f\x87\x21\x81\x5d\xb3\x7d\xe8\x73\x20\x2b\x72\x62\xb9\x2d\x99\x5a\xb6\xe7\x12\x1b\x13\x48\xf2\x0c\x63\x94\x82\xc9\xd6\x1f\x7f\xcd\xe4\xe7\xa1\x8b\x5a\x76\x0b\x08\x6f\x0b\x08\xc9\xb8\x77\xcd\x29\xed\x53\x5d\xa5\x51\x8f\xb1\x88\xb7\xd8\x1c\xb3\x67\xc4\x99\xcb\x29\x13\xee\xcc\xb5\x4e\xbd\x38\xcb\xc4\x8d\x2b\xa7\x8e\xa1\x51\xc7\x0d\x99\xf4\xc2\x25\x2f\x0a\x5e\xc2\xb0\x6a\x0d\x65\xcf\xf8\x4f\x21\x1e\x40\x99\xc6\x28\xc3\xff\xf1\x24\x8a\x12\x96\x67\x6e\x8a\xbb\x4f\xbc\x83\x3b\x6e\xd4\x31\x97\xa4\x6a\x52\x24\x7e\xf2\xc6\x9c\xe7\x72\xb1\x36\xdb\x44\x68\xcc\x9c\x83\x34\xb8\x92\x0b\x3f\x6c\x38\xe2\xd8\x52\xd0\xf5\x51\x50\x39\xe6\x67\x7f\xa6\x19\xb6\xa3\x76\x47\x5f\x4a\xa6\xa3\x0f\x1f\xf5\x5e\xef\x15\xb1\x93\x8b\x45\x9b\x98\x74\xf2\x16\x36\x94\x35\x48\x47\xf2\xb7\x16\x46\x95\x26\x46\xa5\x0b\xdf\xe0\x12\x0f\xca\x34\x1a\x04\x69\xb8\x81\x32\x8f\xad\x9f\x8b\x7a\x5e\x59\x9b\xfd\x3c\xc6\xa8\x3d\x34\x7f\x52\xfd\x1d\xb3\xe2\x6c\xb8\xbd\x73\x8b\x4f\x3e\xcf\x2d\x66\xa1\x92\xb2\x69\xd8\xba\xaa\xf5\x7a\x6f\x61\x7f\x5d\x79\x5b\x3f\xb2\x88\xab\x52\xaa\xf5\xc1\x4f\xc2\xe6\x67\xf2\x45\x58\x27\x6c\x6e\x85\x84\xb5\xc1\x66\x89\xde\x5e\xd0\x31\x2f\x8d\x92\xe3\xd5\x2d\x15\xa6\x3c\x89\x59\x24\xc3\x8f\x5f\x02\x9c\x3c\xcb\x29\x4b\x34\xdd\xa2\x9f\x24\x5e\x9e\xa5\xa4\xf7\x69\x2c\x9d\x53\x22\x3d\xd7\xa9\x92\x09\x92\x3d\x3a\xba\x80\x2b\x35\x0b\x63\xd8\xf3\x68\x74\x3a\x63\xfd\x5d\x58\x5e\x18\x3b\x39\xf7\x82\xd6\x93\x47\x03\xb7\x91\x49\xbb\x0d\x46\x88\x96\x8c\x3e\x89\x39\xbc\xcd\x1a\x6d\xad\xa7\x0d\x27\xd3\xad\xb0\x78\x26\xa4\xcd\xca\xb4\xb2\xfc\x36\xa7\x88\xa1\x87\x76\x3c\xe1\x22\x51\x1f\x10\x44\x6e\x68\x03\xc9\xad\xec\x8a\xe1\x9c\x3f\x91\x4b\x69\x22\x90\x73\x89\x30\xdb\x88\xab\xe5\x3b\x5a\xf3\x7f\x13\x94\xb9\x65\x67\xde\x58\x3c\x22\x89\x18\xb2\x29\x53\x55\xd3\xcd\x78\x86\x8f\xbe\x78\xb9\x72\xa8\xbd\x9b\xe5\x23\x27\xa6\xd1\x71\xab\x04\xbb\x8d\xca\xf4\xd1\x2a\x7b\x85\x15\xd2\x97\x64\x5e\xca\x8f\x4c\xbc\x00\x58\x99\x1a\xb4\xed\x50\x56\x8e\x64\xc0\xe5\xbe\xf6\xa7\xa2\x1a\xab\x31\xc9\xab\x1f\x4b\x41\x15\x64\xf2\xe0\xe8\x9a\x58\x46\x64\x94\x2d\xc3\x5e\xe9\x1b\x18\x65\xae\x07\x18\x15\xe0\x85\xce\x88\xdb\x18\xca\xdf\xe0\xaf\x63\x8c\x0a\x39\x8c\x32\x27\x06\x46\x5d\xa0\x07\x6e\x19\x7e\x53\x86\x95\x3c\xc2\x4c\x8a\xd7\xda\x80\x87\x72\x86\xf1\xca\xbf\x58\x54\x96\x2c\x9b\xe1\xe6\x1c\x6c\xf0\xf2\xe3\x67\x8d\x8f\x2d\x3f\xee\xe7\x1c\x9c\x24\xc3\x65\x6a\xd9\xba\xa1\x3f\x38\x1a\xfb\xf6\x2d\x52\xf6\x5b\x51\x62\xd5\x41\x98\x20\xf5\x2f\x6a\x35\xb1\x88\xa4\xd2\x45\x13\xf6\xf0\xe1\x26\x43\x25\xca\xd4\xa6\x7d\xd3\xf2\xaa\x88\x07\x21\x79\xc5\xa9\x80\xbc\x37\x8f\x73\x70\x8b\xe3\x7d\xbb\xf7\x15\xc4\x7a\x72\x65\xd4\xb7\xae\x22\x3a\xbf\x73\x62\x3b\x25\x31\xb1\x3e\xc6\xd4\xee\x51\x63\xb6\x67\x7e\x42\x2c\x2e\xf4\xcc\x7f\xe7\x42\x4c\x2b\xf9\xf9\xbf\xef\x92\xda\x24\xb2\xff\xce\x77\x5b\x34\x96\x29\x71\x7b\x40\x59\x33\xcc\xbe\x6e\x68\x33\x15\x90\x8b\x22\x2d\x7e\xda\x63\xf0\x8d\x58\xf6\xe5\x9d\x2e\xc2\x3a\x08\x49\x85\x60\x94\x39\x6d\x7a\x2c\xf3\x96\xbb\xdd\x72\xb7\x6b\x44\xf0\xe9\xb8\xf9\xbc\xac\x59\x7a\x8b\xc6\xaa\x18\x70\x1e\xae\x2e\x0e\xa7\x79\xb8\xb7\xde\xe2\x35\x72\xa5\xce\x18\xa3\x27\x47\xde\xe2\xec\x0f\xbf\xdb\x42\x9c\x3d\x91\xa2\xba\xac\xd9\x3d\xda\x05\x2e\x61\xca\x8e\x3b\xdb\x7e\xfb\x92\xe5\x36\xb0\xe0\x72\x0d\xec\xb2\x9e\xbb\x9b\x60\x7a\x7d\x19\xf3\x76\x80\xb7\x5c\x00\xb8\x4e\x19\xa3\xfb\xdc\xa7\x41\x26\x44\x99\x40\x26\xcf\xba\x6a\xba\xe1\x00\x93\x65\x3b\xf3\xf5\x1a\x4b\x66\xc5\x6c\x58\xb6\x33\x11\x2f\xdb\xb9\xce\xbc\xe3\x8b\xb8\xc6\x76\xd1\x70\x73\x63\xc9\xcf\x2d\x8c\x80\x0c\x27\xc7\x39\x8c\xaa\x25\x8c\xb4\x44\xcb\x4b\x33\x42\x2e\xee\xee\xb6\x78\xe9\xc3\xef\xb6\x10\x2f\x49\x38\xae\xb7\x01\x11\xb9\xe7\x15\x0a\xc9\x56\x23\x89\x12\x4f\xc4\x62\x34\x2f\xdc\xbb\x25\xc0\x97\xfa\x67\xdd\x3b\xb1\x8b\xa4\x52\x2d\x0b\xfb\xf6\x25\xf9\x25\xa6\x65\xcb\x69\xcd\x44\x8e\x49\x12\x47\x8e\xa6\xa1\xda\xa6\xc1\x80\xc5\x9a\xcc\xfd\xe3\x26\xf4\x7a\x21\xf3\xcf\x27\xcc\xee\xe3\x6b\x7b\xa4\x93\xe1\x31\x46\xf9\xa7\x8a\x97\xa4\x61\x9c\x35\x27\xf2\x56\x2c\xd5\x38\xf3\x93\xf1\x00\x82\xae\xc0\x1a\x74\x88\x5b\xcf\xb5\x2a\xbd\x22\xbf\xce\x1b\xa6\xaf\x7f\x9d\x21\xe3\x8d\x04\xb6\x85\x77\x93\xf3\x83\x75\xdd\xe3\x5d\x04\x4a\x83\x6c\x0c\x9a\xd3\x1a\x9f\x0d\x07\xbd\x0b\x9a\x53\x62\xde\x64\x65\xd3\xb0\x35\xcb\xd2\x46\x71\x8d\xf2\x37\xb1\xfd\x5b\xeb\x94\x37\x89\x5e\x6f\x12\xd3\xa6\x4c\x08\x93\xb0\x7a\x1e\xf5\x96\xe6\xe5\x82\x09\xcd\x38\xf0\x5f\xc6\xc0\xc0\xb9\xbf\x48\xc0\x44\xc6\xc0\xcc\x5d\x20\xfe\xe3\x11\x50\x37\xf1\x2f\x90\x06\xcf\xb5\x7f\xd6\x96\x90\x13\x72\x52\x4e\x7a\xbf\x29\x77\xb7\xec\xc6\x04\xc9\xbe\xba\xbe\x13\x33\x68\x78\xa3\x62\x94\xbe\x57\xa1\xcd\xf3\xd6\x91\x96\xea\x00\xd2\x73\x22\x2d\xdd\x82\x16\x19\x3b\x88\x98\x78\x51\xeb\xa1\xec\xa0\x7a\x29\xda\xb8\xcb\xfa\x57\x0b\x7a\x55\xb2\x0e\x92\xef\x1b\x0e\x1a\x37\x1c\x54\x78\x80\xc3\x99\x86\x83\x06\xaa\x83\xee\xc7\x18\xa9\x7d\xe2\x59\xc8\x92\x36\x7c\xf6\xbb\xa6\x83\x64\x18\x7c\xdf\xc0\x48\x79\xcc\xb9\xbe\x84\x9c\x26\xf4\xfb\x8e\x8b\xc2\x4f\xca\x0e\xcf\x2a\xa5\xa8\x04\x23\xa7\x14\x25\xb8\xd5\x8a\x7b\xa4\x3f\xc0\x48\x4a\x97\x30\xd2\x2f\x72\x18\x39\xfe\xa9\x67\x4e\x8b\xa7\x8a\xac\x07\x95\xcb\x9f\x06\xee\x91\x21\xb7\xdb\x71\x88\xd2\x07\x3e\xdd\x0c\x73\x3c\x2d\x9b\x0b\x6a\x89\x11\x3c\x11\x64\x3c\x89\x63\xcd\xb4\x4c\xc3\x36\x99\x9f\x45\xd5\x0b\x12\x61\xf1\xc2\x9c\xab\x6c\x9f\xd2\xa3\x24\x50\x52\x27\x6a\x57\x7e\xaa\x2c\x52\x77\x10\x31\x60\xed\xdd\x15\x30\xaa\x9f\xc2\x94\x59\xae\x13\x6c\x98\x3e\x2c\x36\x9b\x41\x0e\xe9\xe9\xc6\x4a\x8c\xd4\x4f\x70\x5e\x73\x2e\xa2\x74\xcb\x91\xda\xa5\x91\x5e\x2e\x0e\x9a\x71\x8d\x07\x18\x4a\x0a\x31\x34\xf5\x6b\xf2\x80\xef\x72\xb7\xad\x79\x61\xd3\x59\xb5\x77\xe1\x06\x13\x31\xe4\x5b\xa1\xc3\x21\x75\x38\x2d\x0f\x62\x92\x32\xa2\xb3\xd1\xa9\x18\x99\x20\x75\x2b\xce\xb9\xe8\x20\x29\xd9\x68\xc1\x7e\x0b\x94\x5b\xa0\xfc\xcc\x40\x29\xc5\xad\xec\x15\xed\xe9\xf6\x6f\xd3\xea\xbe\x21\x4b\xf4\x59\xfd\x6c\x03\xae\x28\x49\xec\x39\xeb\x8a\xb3\x09\x8b\xca\x30\xbf\x5b\xc9\xc3\x37\x1b\xea\xc6\x35\x4d\xb3\x4a\xef\x95\x07\x62\xe3\xd0\xe4\xd6\xc9\x78\x8b\x92\xdf\x19\x25\xc7\x23\x1a\x2a\xfa\x40\x6f\x7b\xc6\x81\x45\x18\x79\x03\x90\x6c\x4c\x84\xbc\x32\x9a\x18\xc9\xf7\x5a\x14\x9f\x64\x46\x5b\x76\x66\x0b\x3b\x6b\x84\x1d\x12\xaf\x96\x53\x31\xfb\x9a\x5b\x22\xcc\x2b\x0b\x96\xab\xd6\x50\x6e\x2a\x85\x40\x13\x23\xca\xff\xb9\x8d\x78\x0a\x81\x85\xd9\x6a\xde\x3f\x87\x40\xb5\x81\x51\xfa\xa9\x8e\x91\x9e\xc3\xe8\x12\x16\x4a\x42\x5a\x98\x11\xe4\x43\x08\x98\xda\xdb\x26\x12\xd8\x58\x28\x79\x97\x44\x02\xe9\x09\x40\xb4\x4c\xa3\xe3\xc7\x08\x72\x0d\x3d\x93\x32\x62\x91\xab\xe3\x57\x2d\x87\x7b\x2e\x76\xd1\x71\xeb\x0c\x76\x1b\x15\x28\x13\x2f\x89\x2b\x95\x30\x92\x06\x5e\xa0\x86\x8c\x27\x3f\x87\xdd\xb9\x2d\xd0\xae\x69\xd3\x2f\x39\xcd\xe9\xd1\x0e\xf3\xd2\x70\xa1\x72\xbd\x86\xca\x17\xa1\x7d\xcc\x75\x8a\x0a\xfe\x2d\x9d\x47\xfe\xd5\xdb\xcf\x84\x43\x5b\x53\xf0\xe1\x39\x39\x4b\x18\xe9\xcf\x18\x5d\x3e\x6d\x19\xf0\x4f\x86\xbb\xa6\xb2\x3d\xfe\xea\xb8\x6b\x1e\x9c\xe6\x35\xc3\xd6\xac\xf7\x81\xd3\x75\xe7\x38\xd9\xc2\xe9\xcb\x90\x63\x7e\x2e\x38\xdd\x2c\x20\xfa\x40\x38\xad\x68\x4f\xb7\x55\xda\xd3\xfa\x1f\x49\x52\xb7\xa0\xfa\xeb\x92\xd4\x45\x88\x61\x0b\xaa\x2f\x80\xea\xf9\xbd\x6e\xd0\x36\x9d\x0a\x02\x28\x17\x6a\x2c\x79\x13\x44\x8d\x26\xa2\x51\xa3\x3c\x08\xe0\xbd\x43\x46\xa5\xf1\x65\x65\xc6\xe4\x3f\x7c\x84\x8b\xd8\xef\x1c\x76\x2c\xc5\x53\xd2\x5d\x50\xa3\x6d\xe8\x96\xed\x18\x6d\x9e\xd8\x95\xfb\x4b\xbb\xbe\xd2\xbc\xd8\x3b\x77\x9e\xe6\x7a\xd2\xea\x44\x82\x57\xd9\xf3\xeb\xf7\x72\xbc\x26\xa2\x69\x5e\x89\x42\x12\x0b\xb7\x40\x07\x93\xce\xbc\xa1\x46\x87\x09\xa4\xa1\x97\x31\xba\x30\x8e\x22\x4e\xca\x9f\x23\xd9\xab\x5b\xe3\x6e\x59\xdc\xba\x4d\xf6\xba\x36\x00\x99\x88\xb4\xba\xa0\x16\xed\x53\x4b\x6f\xba\x7e\x92\x17\xde\x7f\xdf\x47\x52\x66\x72\x51\x2c\x22\xb9\x28\x5e\xc2\x4f\x16\xc9\x8e\x17\x57\x20\x03\xbf\x61\x14\xae\xef\xc5\x2e\xaa\x3f\x98\x58\x54\xd1\x03\x35\x1a\xe2\x09\x22\xa3\x9b\x46\x45\x34\x27\x8d\xc5\x17\x1d\x53\x33\xf4\xe7\x28\x9b\x15\xb0\x56\x1e\x47\x85\x25\xdf\x86\x3a\x87\x8d\x51\xb2\x3d\x82\xb2\xf0\x2a\xad\x26\x46\xd5\xfa\x43\x83\xaf\x59\xa6\xc4\x73\x77\x5c\x98\x96\x2d\x50\x47\xb8\xb0\x74\x43\xd5\xd8\xc5\x45\xc4\x6b\x44\xa9\xac\xd5\x67\x84\x09\x52\xfa\xea\xb8\x89\xa4\x6f\x46\xb9\xe9\xa5\x18\x59\x96\x0d\xe2\xd4\x62\x6e\xc6\xa4\x59\x05\x22\x15\x73\xc5\x11\x7a\xd2\x98\xfa\xb2\x2d\x45\x7e\x79\xfd\xc8\x7a\xe5\x13\x2f\x7a\x29\x5e\xd2\xfb\x4a\x37\x6f\x73\x16\x35\x54\x33\x96\x86\x4c\x79\x14\xd5\x25\x17\x87\x9b\xdf\x65\x28\x96\xd1\x71\xab\x04\xbb\x0f\x54\x2d\x56\x72\x2d\x8c\x5a\x89\x06\x66\x32\x89\x43\x9c\x69\xd9\xe6\xed\x8d\xd6\xeb\x98\xf1\x3c\x36\x77\x3c\x51\xdb\xcb\x79\x6c\xdc\xb7\x3c\x11\x4d\x74\xdc\x3a\x83\xdd\xc7\xbd\x25\x93\x53\xf1\x77\x73\x34\x78\xb9\x2b\x5d\x35\x59\x84\xa8\x33\x25\x12\xfa\x84\x99\x40\x52\xbd\x6b\x8c\x52\x8d\x1a\xa7\x95\x80\x92\x62\x78\xc2\x31\x6c\x7a\x9b\xb5\x34\x83\x0e\x59\x35\x5c\x09\xee\x57\x3a\x12\xcf\x90\x1f\x4f\xc5\x5c\xf4\x14\xff\x3e\x6b\x0e\xf4\x63\x82\xf4\x20\xdd\x77\x44\x0d\xdd\x9d\x66\x61\x97\xe8\x1a\xf0\x4c\xe4\x66\x0c\x7f\xdd\x5f\x65\xf9\x5f\x83\x26\xfc\x45\x08\x00\x86\x09\x5f\x6c\x6e\x6b\xd0\xf4\x5a\xc6\x71\x03\x23\x73\x80\x51\xb3\x37\xc6\xa8\x6b\x62\x74\xa9\x99\x1e\x2f\x1a\x78\xe9\x86\x0e\xd6\x33\x3c\x37\x42\x0f\xea\x25\x9d\x39\x62\xdd\x5e\xef\xe1\x3b\xab\x24\xcd\xbc\xfe\x9c\xab\xe6\x08\xf8\x75\xce\xc4\x3c\x5c\x37\xfc\x0a\xbc\x35\x51\x9a\x78\xf6\xb3\xad\xfa\x39\x26\xef\x64\xfa\xae\xf7\xee\x9d\x00\x47\x1f\xc1\xa1\x62\x69\x12\x11\x3e\x19\x6e\x43\x01\xb4\x9e\x1d\x44\x25\xa7\x2b\xaa\x1b\xa3\xdb\x2b\xfd\x51\xb3\x26\x73\xa0\x44\xf3\x9f\x6c\x94\x33\xc0\xe5\x0c\x67\x00\x3f\xdf\xc9\xd6\x19\x60\xab\x1f\x5c\x2b\x8f\x90\x56\xa4\x18\xf8\x18\x5d\xdd\xb8\x3d\x31\x7a\x9a\x5b\x12\xc4\x85\xa1\x82\x0b\x48\xc5\x2a\x48\x89\x49\x5f\x32\x5c\x35\xb3\x89\xf2\x96\x99\x4f\x1e\x0b\x2a\x46\x5d\xcd\xf9\x04\x42\xe0\x76\xad\x6f\xc6\x2d\x98\x14\x77\x7c\xb9\xd2\x54\xfd\x4e\x8b\x67\xa6\xbc\x07\x61\x6f\xa5\xcc\x94\xae\xb9\xbd\xc8\xb9\xc5\x52\xf1\x43\xb9\xc5\x15\xcd\xed\x13\xd2\x81\xd6\xd6\x8d\x50\xe5\x38\x61\x12\x60\xc9\x7a\x90\x7b\x24\x19\x8a\xaf\xb3\x3f\xc9\xc2\x48\xfb\x04\x13\xa4\x6c\x21\x41\x44\x13\x39\xc7\x1a\xec\x38\xf1\x1b\x4a\xa5\xd5\x9c\x67\x93\xc9\x38\xfc\x86\x9c\x83\x5a\x8a\xb5\x02\xe8\x2e\xcb\x11\x8b\x80\xcb\x78\xf0\x0e\xb3\x58\xbe\x75\x04\xb9\x43\xcb\xad\x0f\xef\x3f\x17\x23\xf1\x74\x92\x57\xda\xd0\xec\x39\xb6\xb6\x56\xd4\xfb\x93\x68\x98\x09\x55\x23\x8b\xd1\x51\xbd\xba\x45\xbd\x5b\xd4\xbb\x34\xea\x95\x32\x91\x75\x5e\xa5\x86\x4d\x2d\xad\x1f\x93\xcf\xe5\xbc\x58\x5e\x2e\xcf\x2c\x47\xb9\x4f\x3d\x51\x05\x94\x0b\xbb\x0f\x56\x43\x30\x29\xae\x81\x80\xd7\xd3\x69\xdb\x5c\x59\xb8\x96\xd7\x2f\x5e\x6f\x94\x20\x9e\xc9\x8d\x31\xba\x87\xc3\x66\x65\x2b\x91\xff\x42\x12\x39\x22\x95\xe6\x64\x63\xdc\x7c\xd1\xaa\x37\x2b\x74\x68\xe5\x11\x6e\xe9\xdf\xb7\x1c\xca\x92\x71\x45\x3b\xc0\xb7\x79\x5b\x30\xfb\xba\x01\x40\x5e\x08\xf5\xec\x00\xe9\x32\xb7\xb7\x31\xa5\xe8\x41\xba\xe2\xf8\xaa\xd5\x90\x88\x2a\x44\x61\x02\xb1\xed\xfb\x2e\x22\xbd\xd3\x72\x97\x63\x99\x24\xf0\x6a\xa5\xa6\x83\x48\xde\x74\xd0\xa8\xe4\x20\x72\x95\x75\xd0\x13\x34\x2e\xcb\x0e\x7a\x1e\x43\x03\x3b\xe8\xb9\xe1\x20\x72\x91\x75\x10\x91\xef\x73\x18\x69\x18\x33\x29\x33\xf1\x84\xe6\xed\x05\x75\x7a\xf1\xbc\xeb\x72\x52\x1c\xae\x9c\x77\x7d\xf5\xcd\x45\xcf\x57\xe2\x13\x3a\x6e\x9d\xc1\xee\x15\xe8\x79\x50\x6b\x61\x74\xd1\x58\x03\x47\xcc\x8f\x94\xfc\x0b\xf2\xce\x70\xaa\xd0\xf4\x1a\xf1\xa0\xfd\xe9\xec\x0c\x4f\x15\x37\x65\x12\xbf\x57\x70\xd3\x80\xc5\x8e\x67\x70\x80\x0b\x7e\x0b\x9e\x19\xae\x73\x32\xc0\x08\xd0\x5f\xbc\x0f\x7f\x8c\x27\x3f\x65\x40\xd0\x19\x1a\xd3\xcf\x13\xdc\x22\xe8\xb3\xa0\x73\xbc\xe1\x3d\xcf\x64\xae\xb7\xaa\x6a\x5a\xda\xb0\x39\x1a\x3a\x46\x2b\xea\x7e\x8c\xf6\x31\x66\xc4\x12\x2f\x5d\x17\x64\xe4\x2d\xe3\x77\xa7\x45\x4c\x90\x68\xa2\xfe\x24\xa6\x91\x34\x4e\x68\xb0\x77\x6b\x62\xa8\x67\x01\x02\x5e\x58\x40\x63\x71\x8d\x8d\xb7\x1e\x7b\xb7\x62\x09\x90\x25\x0a\x8f\xcc\xee\xff\xea\x81\x2b\x57\x29\xf9\x04\x77\x5a\x34\x90\x29\x89\xa8\xe0\x5f\xd5\xed\xee\x74\xb6\xd5\xf9\x15\x33\x97\x28\x97\xe9\x6d\x4a\x22\xf9\x8e\xdb\xa7\xc8\xd9\xba\x2d\x97\xb9\xc1\x72\xd9\x7b\x88\x7e\x99\x78\x58\x47\xd5\xbe\x3d\x35\x3b\xc6\xd0\x0d\x39\x2b\xd4\x50\xb0\xf7\xc2\xcf\x2a\x85\x42\x8d\xc9\x0e\x10\x1d\xf8\xf1\x32\x52\xf1\x7f\x3c\x29\xd5\x12\xdb\x04\xf9\x50\x12\x6b\xa1\x4a\xc9\xf7\xa1\x7c\x69\x53\xb7\x81\xe2\x29\x00\x2a\x46\xce\x4f\x3e\xd4\xee\x7b\x05\x5f\x4e\xa7\x35\x5d\x11\x91\x63\x89\xd6\x4f\x8f\x9d\x75\x16\x9f\x63\xa4\x9d\x35\xe0\xc1\xf9\xdf\xfa\xc3\x5c\x09\x65\x76\x1a\xa4\xa0\x91\xba\x3e\x76\x90\x6e\x3b\xf3\xce\x4f\x5f\x2c\x94\x0c\xd7\x97\x5f\x60\x33\xa2\xec\xd7\x78\xb7\xa5\xf5\x76\x06\x89\x21\xc7\x3a\x8e\x79\xb2\xfd\x7a\xc8\x5b\x6d\x6c\x08\x66\x7d\x17\xbf\xb9\x09\xcd\xd6\x93\x7e\x67\xdf\xe6\x1d\xcb\xd2\x0c\x7b\xae\xad\x20\xd5\x14\xbb\xb3\x6c\x05\x33\xec\x02\xae\x35\x40\x29\x8b\x45\xe4\x1c\xb7\x60\xc7\xb1\xdb\xf5\xd1\x20\xaa\xab\xe7\x10\x37\x4b\x39\x11\x6f\xe9\x43\x7f\x55\x4e\x66\x6d\x8d\xe9\x3a\x06\xe5\x01\x0f\x82\x8e\x7a\xcc\xd6\xb4\xb6\xa3\xea\x6d\xda\x1b\xd0\x58\xe2\xcd\x44\x59\xbc\x9c\x48\xbc\xc9\x04\x52\x3f\x3a\x6a\x82\x30\x52\xac\xa9\xb0\x8f\x61\xa0\x23\xf8\xd0\xd9\xd2\x54\x9e\xff\x5a\xc7\xe9\x69\x41\x32\x6d\x5e\x71\x6a\x2c\xa6\x97\x2c\xac\xf5\x06\x22\x39\x4d\xd4\x4c\x20\xa7\xa4\x92\x83\xfd\x4c\xac\xff\xd9\x40\x71\x63\xe0\xe4\x7d\x52\x83\x25\xe3\xcb\xc9\x68\x69\xd6\x6d\x8e\x8e\x98\x5f\x79\xc4\xcb\x7a\x11\x29\x0f\x1c\x49\x7e\x21\xad\xa7\xaa\xd4\x6b\x82\x0a\xa4\x87\x44\x15\x60\x99\x56\x22\x79\x2f\x1a\x95\xdc\x02\x92\xf7\xd9\xd3\x30\x7f\x46\x42\xb7\x31\x4b\xff\x03\x08\xdd\x0d\x35\x54\xd3\x79\xd4\xac\x97\x0a\xe4\x6e\x80\x13\xd9\x4f\x39\x9f\x9d\xe3\x18\xc5\xf5\x14\x09\x1f\x90\x02\x7e\xe5\x9b\xfd\x9e\xdc\xf6\x16\x09\xfd\xc2\x48\x68\xc2\x61\xbf\xde\xd1\x6d\xad\x63\x5a\x43\x8d\xfd\x5d\xad\xa1\xbf\x0b\x35\xf4\x77\xbd\x86\xfe\xbe\x80\x76\xc1\x2d\x24\x79\x51\xa8\x31\xae\x9c\xf4\xfe\xa5\xbc\xdf\x20\x5a\x57\xc1\xef\xaa\x93\x0c\x75\x93\x52\xa2\x56\xf1\x95\x15\x1c\x86\xe5\x1b\x8c\xaa\x9a\x05\x68\x06\x63\xa4\x8f\xa3\x41\x5c\x72\x25\x8b\xd1\xa3\xd5\xda\xc2\xc8\x16\x46\x5e\x84\x91\xa8\xe0\x56\xd7\x0d\x43\x1f\x68\xed\x17\xbd\xbd\x3f\x27\xad\x06\xc1\xed\x44\x77\xc9\x9e\x5c\x29\x78\xf0\x74\x4a\xbd\xcc\xf0\x34\x1f\xab\x8e\x69\xe7\x62\x4e\x02\x73\x09\x29\x87\x33\x0c\xb0\x62\x2e\xec\xf7\x4a\xb2\x1d\x97\xbb\x93\xba\x57\x11\x9b\x37\x5e\x61\x54\x7b\xe5\x88\x48\xd5\xfc\xb5\x8d\xfd\x89\x98\xb4\xd7\x8e\x78\xeb\xbb\x6d\x51\xcd\x7c\x89\x3b\x19\x93\x09\xfe\xa6\x5d\xc7\xa6\xb6\x4b\x8b\x03\x3a\x1c\x35\x1a\x46\x09\xf1\x6a\x65\x1a\xdf\x69\xe3\x16\x43\x12\xa1\xc0\x1b\x69\x31\x34\xb6\x16\xc3\x8d\x05\x8a\x77\x81\xbb\x58\x4c\xca\xdf\x5a\xaf\x67\x3e\x75\x0d\xfd\xce\xf5\x8b\xe6\x1a\x67\x4f\xdb\x5c\x2e\x78\x59\x31\x70\xa8\x6f\x0e\xb2\x62\xbc\x9c\xb0\x60\x3d\x1b\x13\xc8\xa0\x95\xc5\xa8\xa3\x3f\x47\x94\xd8\x9f\x23\x61\xc1\x16\x06\x36\xe3\x16\x8c\x64\x5c\x36\xd7\xb0\xa9\xa5\xda\x00\x07\x79\x3a\xd4\x46\x1c\x02\xf6\x71\x1a\xed\x13\xc2\x30\x12\xd2\x18\x09\xcd\xa8\x6d\x42\x7a\x00\xca\x5e\xb8\xaf\x62\x54\xcb\x60\xa4\xe0\x0b\x8c\xce\x4a\x5e\xcc\xab\xdc\x27\x98\x11\x1c\xbf\x6e\x81\x3e\xea\x43\xef\xba\x29\xb4\x8f\x13\x70\xdd\x14\x46\x82\x1f\x26\xc9\xaf\xfb\x38\x32\x31\xd2\x1b\x36\x46\xb4\x77\x0f\x77\x48\x3d\x62\x74\x93\xc3\x48\xae\x1b\x18\x9d\x55\x30\x4b\x4d\x5e\xd7\xe9\x9b\x86\x5d\xb8\xb6\x1e\xf5\x5e\xcf\x05\xdd\x7d\x82\xe1\xe2\xd4\xbd\x30\x13\xae\xb1\x89\x91\x7a\xf7\x80\x51\xf3\x5b\x1f\xb3\xf4\xc4\x15\xca\x54\x7d\x70\xa8\xa5\x6b\x2c\xcb\xab\x3e\xba\x0e\x96\x98\xbf\xbb\x40\xf9\x9b\x23\xff\xfd\x79\x12\x85\x35\x6c\x32\x13\xa4\x4c\x31\xed\x99\xb5\x95\x2a\x40\x1e\x1d\x8d\x30\x2a\x3d\x0e\x7d\x2e\x10\x98\xa9\x2b\x60\xb2\x9e\xcc\x48\xe3\x1a\x7b\x8d\x12\xb0\x59\x79\xec\xa7\x09\x54\x67\x35\xf8\xa8\xd9\xa7\x16\x34\x66\xf8\x43\xcd\xe9\x0d\xcf\xc1\xfb\xd8\xd9\x48\x83\x3f\x62\xac\xe1\x5e\x71\x82\x07\x5e\xdc\x9a\xc5\x35\xcf\x6d\x85\xcc\xa7\x6e\xae\x7a\x0f\xfe\x43\x83\xb1\x73\x98\x72\x46\x26\x17\xd1\xd3\xd0\x34\xbc\xf5\x9d\xf4\xd7\x77\xd2\x5f\xdf\x12\x13\xf2\x45\x13\x23\xe9\x6e\xd4\xc5\x2c\x09\x2b\xf0\x82\xaa\xfa\x9d\xae\x7e\xc9\x3a\x6a\xb7\x47\x8d\x16\xab\xfc\x5f\xb9\x86\x2a\xff\x57\x0d\x7e\x0a\x35\x26\x34\x1d\x24\xa8\xf0\x1f\x23\xa1\xe5\x3b\xf3\xcf\xde\xd6\xef\x26\xb2\x70\x63\x02\x39\xca\xdf\x38\xae\x97\xa8\x27\x22\x2e\xaa\xa6\xa6\x18\x0e\x08\x0d\xb1\x56\xaf\x09\x5d\xb2\x0e\xe0\xec\xe5\x5a\x0f\x25\x07\xd5\xcb\x5e\xc3\x3b\x49\x9a\x0e\x3a\x29\x7b\xd0\xf0\xba\x25\xff\x16\xa3\x1e\x66\x88\x6e\x13\x2d\x9e\xe6\x8a\x2f\xb3\xb9\xad\xd5\xc7\xfe\xcc\xdd\x78\x6b\x7d\x70\xf9\x36\x63\x57\x82\xe9\xb5\x3e\x29\x23\x5e\xce\x8b\x10\x11\x5c\xd0\x5e\x5f\xb3\x38\x22\x70\x1d\xe2\x15\xee\x14\xef\xa7\xba\x9a\x70\x8a\x97\xdf\xc8\xee\xae\x52\x13\x23\xa3\x80\x11\x79\x6c\xb9\x55\xd1\x79\x83\xa4\xc6\x0b\x04\x2d\x3a\x34\x5c\x8f\xf4\x7b\xee\xd1\xa0\x2c\x8a\x2e\xd9\x46\xa3\xbc\x18\x8d\xc2\x94\x09\xc6\xe2\xca\xb4\x3b\x9a\x45\xfd\xb5\xc0\x3c\x1f\x0c\xd6\x3e\x37\x31\x23\xf2\x44\xef\xea\xc8\x7c\xa2\x1e\x01\x81\xbe\x82\xdb\x59\x78\x1c\x62\xcc\xa4\x89\xce\x35\xcb\xec\xf5\xbc\xce\xf0\x1f\x16\x18\x46\xc2\x1b\x85\x5c\x30\x32\x70\x4c\x8c\x3a\xad\x4f\xe8\xa0\xbd\x29\xae\xe0\x13\x13\x76\x63\x0e\x6d\xb3\xeb\xf3\x07\x2e\x6f\xc0\xa7\xd7\xbe\xcf\x62\x26\x01\x12\x29\x3a\x96\x39\xd0\xbe\x9c\x0f\x7b\x26\xcb\x17\x6b\x28\x5f\xac\xd6\x98\x40\xfc\x69\xdd\xa0\x8d\x09\x12\x7d\x2a\x63\x74\xd9\xc7\xa8\x9e\x34\x31\x4a\x0c\xee\xbc\xef\x31\x4f\x9b\xf9\x74\xaa\xbe\x5e\x4f\xea\x7f\xed\xf1\x40\xf5\x31\xf0\xfa\xe2\x2a\xb6\x31\x19\x9f\xed\x4e\x0b\x01\x31\x29\xb9\xda\xd5\xa1\x4e\xbf\x5c\xe9\x23\xda\xea\x70\xef\x38\xc0\xb1\x82\x9c\x14\x2f\x03\x3c\x5b\x7b\x2c\x24\xc5\x4b\x96\xf0\xea\xd2\x42\xff\x6c\xaf\x4f\xed\x91\xd7\x3f\xe1\x31\xf6\x29\x26\x24\x52\x62\x19\x18\x7b\x97\xc1\x4f\xb9\x6a\xa0\x19\xdb\xa2\x30\x5b\x26\x90\x0b\x95\x5f\x48\xbb\x36\x61\x27\xc9\x5c\x75\xc3\x0b\x14\x73\xd2\x3a\xd1\x6a\x71\xab\xe5\xf9\xcf\xad\x69\x9e\x96\x01\x78\x63\xab\xf1\x91\x2b\x9a\x91\x44\xe4\x2b\xf7\xfb\xd4\x70\x8b\x4f\x16\xe1\x3f\x60\x3d\xc9\x10\x4f\x00\xef\x79\xb3\xb3\x5e\xb7\xc5\x79\x4c\x15\x19\xd5\xf9\x73\x90\x63\xbd\x0c\xfb\xb3\x92\x17\x42\x4c\x48\x33\xd6\x1a\xc0\xd4\xb4\x38\x83\x35\x08\xce\xfa\xad\xbb\x73\xe2\x4f\xa1\xb6\x50\x0b\xce\xaf\x82\xe3\x25\x94\x3b\xc0\x83\x24\x02\x0e\x65\x56\xc6\x43\xce\xbf\xb8\x23\x5e\xe6\xf4\xab\x26\x46\x23\xce\xc1\xaa\xbc\x0e\x36\x5c\xc4\x0c\x5a\xf1\xa9\x0f\x67\x2c\xbc\xe6\xac\xb3\x2b\xae\x04\xa5\xd9\xc0\xa8\x30\xc5\x5a\x2c\x83\x2e\xe6\xdc\x69\x1d\x98\xe6\x8d\x6e\xc5\xa4\xe8\x42\x37\x68\x6b\x64\xb9\xe8\x84\x48\x68\x9f\xc8\x68\x9f\x28\xae\x9e\xa9\x59\x11\xaf\x7d\x29\x1f\x09\x5a\xa0\x6f\x93\xa7\x17\xe6\xa2\xb4\x27\xd1\x5e\x1c\xc3\xf0\xeb\x6a\xd7\x06\xec\x22\x18\x46\x7a\x20\xbf\x2c\x72\x59\x95\x5c\x4a\x3c\x79\x0d\x20\x25\xcf\xe6\xcf\xe7\xea\xc1\xf6\x2a\xe2\xee\x63\xc5\xc7\xfe\x4c\x90\x7b\xa2\x82\x04\x05\xfb\xd8\x7f\x36\xe6\xf7\x8e\xcd\x9a\x17\x3e\x29\xfc\x2a\xda\xb5\x01\x3b\x49\xe1\xf1\xc7\x83\xc6\xc7\xcd\x47\x65\x6d\xf3\x01\x78\x5e\x89\x7c\x52\xb3\xa9\xcd\xf8\xa6\x65\xb1\xb8\xf4\x37\x9d\x4f\x4b\xf9\x65\xb4\x6b\x03\x76\xee\x4a\x97\x0b\xbf\x30\x05\x95\x52\x91\x2f\x3b\xec\xb4\x69\x93\xda\x33\xbe\xed\x95\xf8\xf4\xf2\xb7\x95\x83\x85\x09\xdd\xb5\x6b\x03\x76\xef\xca\x8f\x30\x85\x44\x5e\xc7\x1e\x59\x01\xf0\xc9\x11\xd6\x4b\x61\x82\x6c\x01\x63\x20\xe3\x90\xfd\x52\xe6\xbc\x94\x32\xf5\xb7\xbf\xb9\xaf\x0a\x17\xd2\xae\x4d\xd8\x49\xca\x45\xfd\x83\x61\x70\xb9\xe5\xe2\xa3\xaa\x25\x57\x8a\xff\x41\x73\xb4\xdd\x69\xd1\x16\xcb\x05\x5f\x54\x61\x82\x74\x23\x66\xdd\x2f\xf9\xea\x7c\xcd\x4c\x90\x92\x39\x0d\xae\x23\x65\xf3\x06\xec\x5d\xde\x87\x73\x41\x9c\x1f\xe2\xdf\x30\x5c\x38\xfc\xc4\xea\x12\x55\x4b\xf3\x59\x94\xf0\x87\x9f\x9d\xdb\xfa\x98\x7e\x2c\x99\x0c\xa9\xfd\x25\xb5\xa9\x15\x81\x48\x90\x37\x1e\xc4\xb4\x0b\x8d\xb2\x67\x14\x90\xc8\xe9\x1d\x1c\x94\x52\xb9\xc6\x83\x98\x66\x99\x64\x08\x06\x39\xda\x8d\x02\x01\x87\x6a\x26\xc8\xf7\xa2\xe9\x4f\x9b\x6f\x5c\x58\x55\xf6\x98\x85\x3d\xe1\xb2\xe4\xfe\xda\x84\x7d\xfd\xbd\x20\x9f\xff\x99\x39\xd5\x82\x35\x3b\xfe\x84\x52\x33\xa0\xe2\x44\x38\x69\x46\xbb\x6b\x76\x3d\x50\x4b\x31\x21\x79\x04\x1c\x43\xca\x95\x31\x25\x92\xae\x1e\x89\x0a\x90\xc5\x64\x38\xc2\x32\xa8\xd3\xf3\x66\x3a\xe9\x99\x47\xd3\x4c\x48\x8c\x7d\xf9\x12\x09\xe9\x25\xe6\xf9\x65\x80\x85\x07\xa8\x26\xc6\x68\x90\x37\xc6\x1b\x27\x6f\x0e\x32\x18\x95\x8a\x1b\xc3\x15\xc6\x07\xa6\x8f\xc7\x18\xc9\x56\x2b\x44\xa9\x9a\x6e\x39\x36\x8b\x48\xac\x3e\x54\x6f\xd0\x06\xf3\x4d\x79\xde\x7b\x90\x25\x95\x40\x0e\xcd\x04\xe1\xdd\xba\x9f\xb7\xb1\x77\x39\x98\x96\x6b\x27\x24\xdc\xf8\xb1\x87\x64\x05\xa3\xa2\x31\x67\xc0\xc2\xa1\xa1\x70\xdc\xca\x86\x31\x97\x95\x45\xad\xc7\x9c\x67\xd6\xe8\xc3\x50\x79\x3c\xa7\xdb\x3d\xdc\x4c\x32\x7c\xff\x96\xb9\x5e\x2d\xb3\x22\xd2\x27\x5a\xb1\x4c\x4d\x4b\x64\x7b\x9a\xdd\xff\xd5\x03\x57\x4e\x26\xf5\x09\xee\xb4\x68\x20\x93\xa4\x08\x16\xd5\x87\x9d\xae\xd6\x9d\xd6\xbc\x29\x75\xa0\x7e\xcb\x68\xde\x16\x61\x41\x72\xa1\xf2\x0b\x69\xd7\x06\xec\xde\x07\x13\x6a\x80\x54\xec\x46\xcc\xe2\xb4\xb8\xe5\x6a\x7b\x2e\x9c\x37\x9d\x12\x96\x8e\x08\x0e\x39\xcb\x31\x34\xdd\xfb\xcc\x29\x19\xbb\x84\x27\x55\x00\x81\x2c\xe5\xf8\x64\x87\x09\xe4\xec\xa4\x06\x07\xdb\x05\x35\x23\x16\x99\x12\xd1\xa9\x9e\x99\xbd\x2e\xb5\x29\x2b\x97\x6b\xe8\xa4\xca\x49\x98\x8c\x99\x90\xe8\x89\x14\x09\x09\x07\x09\x49\x87\xf9\xde\x3d\xd2\xf8\xdc\x86\xe3\xc4\x92\x4a\x17\xb0\x77\x0c\x8c\x8e\x73\x18\xa5\xc6\x0d\x1c\x23\x8a\xf9\x8e\x6e\x53\xef\xb9\xd2\x68\x1f\x67\xb8\x53\x8f\x90\x7a\x16\x2f\x5d\x6f\xa4\x8c\xef\xe0\xf3\x73\xcc\x8f\x4b\x13\x2f\xf9\x75\x07\x59\x03\x76\x9b\x46\x17\xd7\x29\x45\xbe\x09\x51\xd4\x78\x92\x5f\x25\x9c\x3a\x53\x6f\xd2\xde\xd0\xd3\xe9\x7a\xec\x0c\xcc\x1f\xcc\x23\x13\x52\x79\x9f\xa5\x41\xdc\xbb\x2a\xe3\x55\xbc\x59\x7e\xf3\x84\x38\x29\x7b\x71\x9c\x47\xd2\x75\xd7\xcc\x23\xf5\x0c\x70\x7e\x8b\x06\xf3\xb3\xa4\x4b\xf0\xdb\xc4\xe5\xbd\x4c\x52\x92\x9d\x82\xcf\xde\xae\xfc\x2c\x5c\x8d\xd1\x21\x77\x70\xec\x94\x63\x04\xb7\xc5\xe4\x74\xa8\xaf\xaa\x76\xa8\xd1\xee\x50\xdd\x0f\x50\x61\x1e\x94\x2c\x62\x48\x98\x40\x54\xe9\x09\xa3\x2b\x78\x2c\x9e\x3b\xf3\xa9\x84\x11\x50\xe4\x34\xcf\x1d\x77\x44\x30\xaa\x05\xd6\xf7\xfb\x40\x3a\x0e\x88\x39\x85\xe7\xb4\xaf\x65\x2f\x59\xdc\x8a\xf1\x9a\x4c\x92\x23\x00\x6f\xf6\xcc\x7e\xd3\xe4\x68\x64\x1f\x27\x64\xdf\x8d\xca\x45\x26\xf7\xe2\x93\x87\x4c\xb0\x8f\x50\x64\x22\xfb\x28\x05\xce\x12\xeb\x5b\xb3\x02\xfb\xf1\xd8\x41\xa9\xec\xc0\x41\x92\xcc\x25\x50\x32\x76\x90\x21\xab\x4e\x8c\xbe\x14\x3a\xb4\x4b\xd9\x71\xd9\x43\x57\xb1\x3b\xa6\x98\x90\xb8\x12\xbb\x70\x9f\xf0\x9e\x29\x3f\xb5\x84\xcc\x04\x92\x2e\x7d\x83\x0e\xc4\x31\x0c\xb1\xcb\xf1\x57\x3f\x69\x60\x24\x75\x9f\x9b\x0e\x22\x3a\xe6\x69\x1f\x82\x37\x2b\xd0\x3e\x1d\xaa\xce\x70\xd2\xc2\x31\x10\xd5\x0f\xb6\x70\x2c\x25\xe0\x93\x53\x0d\x9e\xf4\x98\xff\x2e\x43\xb0\x9e\xaf\xb8\x87\x46\xc3\x67\xf8\x78\x00\x10\x17\xf6\x42\x26\x10\x87\x9c\x5c\xe3\x65\x66\x71\x59\xa6\xf2\xc5\x7e\x15\x68\x64\xbd\x46\x53\x0d\x1e\xb9\xed\xb7\x64\x6e\x47\x79\x6e\x60\x74\x03\x8d\xdc\x18\xa3\x2a\x9c\x7b\xe4\xb9\x86\x02\xad\x46\x08\xa4\x2e\x45\x80\x9f\x36\xac\x6a\xca\x39\xcf\x81\x7f\xec\xae\x35\x87\x7c\xb4\xe2\x5a\x12\x95\x73\xe6\x33\xb4\x4f\x73\x89\xd0\x12\xfd\x32\x81\xb7\x4c\xc8\x17\x80\x1c\x50\x1f\xac\xc0\xf7\x6d\x0e\xef\xb8\xee\x3b\x31\x29\xa2\xbb\x29\xe8\x3d\x3d\xca\x7d\x30\x21\xdd\x07\x94\x10\xe0\x54\x57\x98\xee\x69\xfc\x30\x69\x19\x0d\xbe\x37\x80\x4a\x37\x7a\xad\x30\xe3\x3a\xbf\x98\xd3\xa4\xfe\xd5\x14\x26\xc8\xdf\x00\xf0\x15\x5f\x21\x70\x7a\xf7\x4d\x54\x99\x9c\x89\xdc\xdc\x19\x76\xa8\x11\x68\xca\xa3\xdc\xef\x18\x86\x2e\xc1\xfd\xba\x2c\x2e\xf4\xd6\xae\x0d\xd8\xbd\x0f\x53\xd3\xc9\x61\x96\x8a\x68\xb0\xbe\xd1\x3e\x6d\x3b\x43\x8f\x93\xf3\x71\x9f\xab\x0b\x93\xee\xc4\xb2\x8f\xff\xd6\x87\x03\x97\xf7\xaf\x63\x02\xb9\x51\xf9\x43\x49\x54\x56\xef\x78\xd5\x31\x4e\xc1\x06\x18\x35\xc6\xbe\xd0\x1c\x3a\x86\x85\x20\x3c\x91\x9c\x6c\x7d\x1c\xc6\x5a\xb8\x13\x53\xfe\x0c\x3a\x36\xaf\x95\xb8\xc6\x48\x3a\x1b\x7e\x7a\xaf\x14\x1f\x40\x8e\xe8\x98\x06\x3a\x24\x2e\x3e\x9d\x14\x02\x5d\x12\x5a\x56\xa7\xf4\x82\x90\xb3\x26\xd5\x12\x51\xa5\x07\x8c\x12\x9c\xf3\xc3\x16\xd0\xda\x67\x68\xc1\x9a\x1a\xc0\x1a\x4d\x72\xa6\x31\x17\xb4\x9e\x31\x1a\xe4\x5a\x18\xdd\x8c\xe3\xb4\xfa\x3c\x36\xca\x6d\x35\x17\xb6\xe6\xf5\x0b\x12\xc1\xb7\xea\x18\x75\xee\xfc\x74\xcb\x77\x5e\xbe\xe4\x66\xa3\x85\x51\x1b\xe4\x96\x4b\xec\x0a\x5f\xe4\xa9\xec\x33\xa5\x41\x96\x66\x1e\x78\x88\xfd\x6c\x02\xf1\x1c\xf1\x13\xc9\xfe\x14\x23\xd6\x32\x02\xdd\x13\xb4\x38\xce\xe0\x56\x76\x38\x54\x26\x18\xe5\xf1\x22\xcf\x0c\xbe\x3e\x96\xd5\x4d\x45\xbc\x3f\x82\xab\xa4\xe1\xcf\xe6\xd8\xa7\xfc\x9c\xa7\x49\xc2\xfd\xf5\x52\xfc\xa9\xb9\x97\x48\x96\xa0\xea\x59\x03\x91\xe7\x16\x41\x65\x68\x00\x5b\x14\x75\x78\x0e\xee\xc0\xc9\xa5\x04\x23\x79\x7e\x6c\x49\x5a\x40\x68\xf9\x8b\x98\x7e\xcb\x52\x31\xaa\x9b\x93\x8d\xc9\x5e\xb3\x5a\x2b\x0f\xf8\x89\xa1\x96\x8a\x19\x49\x87\xe4\xf7\x58\x6b\x5a\xa6\xf1\x39\xa1\x72\x0b\x97\x9f\x0d\x2e\x79\x3d\xa2\x7e\x25\xea\xbd\x55\x83\x8f\xe3\xc3\x65\x33\xe7\x45\x2a\xab\xbf\x33\x7c\x4a\x11\x37\x92\x63\xf3\x36\xdf\xd1\x6f\xcb\xba\xe1\x7a\x72\x5e\xc4\xb4\x4c\x5c\xc3\x94\xe4\xfa\xcb\xa4\xe8\x84\x9a\x26\x5f\xcb\xe4\x59\x3c\xa5\x51\x9e\xf7\x6a\x9e\x61\x2c\x52\x44\x3a\xa9\x26\x74\x4f\xf4\xe0\x13\xa6\x4d\x8c\xe4\xf3\x07\x8c\xba\x89\x26\x46\xb4\x8e\x31\xca\x65\xcb\x3c\xc5\x70\x88\x25\x4c\xa3\x7d\x7b\x66\x1a\x6d\xfe\x0c\xc7\x67\xf0\xbf\x0a\x3f\xf5\x1a\x3a\x05\xf9\x3e\x95\x15\x8f\x42\x55\x65\xda\x09\x1f\xe1\x2d\xa4\xf2\xfc\xb7\x63\x8c\x88\x4d\xcf\x31\x3a\x56\x31\x7a\xbe\x76\x50\xc6\xce\x39\x1e\x14\xd8\x05\x27\x0c\x10\x74\x99\x0e\xf5\x65\xde\x67\x22\x77\x03\xac\x2b\x5e\xec\xde\x1e\x7b\x0d\x3f\xe0\x81\x37\xe2\xa7\xa6\x1b\xb1\xce\x0b\x46\x91\xd4\xc2\x6c\x3c\x3f\xc1\x1b\x07\x29\x04\x66\x2a\xe4\xee\x3c\x1f\x4b\x96\x92\xa3\xb3\xfa\xd8\x9a\x36\xc4\x26\x93\x62\x76\x19\x53\xec\x62\x23\xbb\x94\xbd\x38\x82\x0b\x49\xd7\x5d\x13\xf6\x9e\xca\xb2\xf9\x2b\xaa\x2c\xbb\x45\x2e\x18\xc5\xb4\x95\x69\x12\x6a\x2b\x4f\xac\xae\x63\x0f\xbb\xec\x64\x12\x74\x93\x37\x62\x62\x0a\x68\x7f\x46\xc1\xcf\xf5\xfb\xe3\x23\xb8\xec\xe0\xbe\x01\xbb\xad\x7e\x7f\x15\xfd\x3e\x4b\x62\x8e\x7a\xbd\xe0\x94\x93\xa1\x4d\x8d\xa6\xd3\xe3\x33\x17\x15\xe8\x5d\xdd\x06\xb9\x16\xaf\xa3\x42\xfd\x6b\x7c\x8b\x64\xe5\xa7\x83\xe2\x64\x26\x48\x66\xbb\x02\x0f\xd3\x1a\x8f\x61\xc7\x79\x9a\xb4\x9d\x5b\x60\x0b\x97\x01\x49\x5d\xc7\xec\xd9\xe3\x6a\x05\x23\x58\x2d\x5c\x55\xc9\x51\x49\xbb\x82\x51\x7a\x04\xbd\x46\x03\xaf\x98\x4c\x77\x86\x3a\x34\x54\x07\x84\x8a\xd1\xe0\xec\x43\x2b\x87\x91\x9c\x2e\x79\xf6\xea\xda\x18\xa3\x5e\xf2\xdc\xfb\xfa\x01\xb5\xae\xe5\x3c\x7b\x61\x88\x2a\x49\x60\xb7\x07\xa4\x39\xce\x00\x6b\xa0\x61\x04\x4c\x96\xc4\x33\x97\xa6\x03\x3c\x3e\xcb\xa1\x7b\xf1\xe2\x5b\xdc\x65\x56\x90\xf4\xfb\xad\xd9\xf3\xa5\x06\x36\xe0\x9d\x1f\xcc\xd9\x37\x92\xe0\xc7\xc8\xfa\xc7\x82\x70\xf4\xc4\x13\x77\xfc\x0d\xd4\xf5\xa7\xb4\x4b\x2d\x9b\xfa\x0e\x3c\x12\x0e\x2c\xa3\x19\x8e\xa6\xea\x27\x39\x26\xa4\x52\xa2\x8a\x84\x54\xd7\xb5\x92\x66\x3c\x74\xe5\x2b\xe4\x14\x29\xc1\x04\x72\x89\x6b\x5d\xd4\x73\xca\x18\xf5\x2f\xc6\xe7\x28\xfd\x58\x77\x50\xb2\x3b\x70\x90\x72\xd1\x70\xd0\x73\x47\x75\x98\x4c\xa2\xf7\x1d\xd1\x81\x63\xf9\x46\x4f\xb8\x59\x46\xc6\xa8\x7e\x52\x63\x42\xa6\x2f\x96\xdd\xdb\x64\x42\x3e\x82\x09\xc4\x71\xf8\x99\x61\xb9\x0c\xbb\x92\x62\x38\x4c\x8a\xa8\xdf\x4e\x35\xcb\x19\xd2\x9e\xd6\x67\xa7\xe5\x40\x8e\x41\x27\x05\x2e\xcc\x74\x81\x47\x92\x66\x43\xe9\x32\xbe\x44\xef\xb0\xb9\xee\x85\xf0\xa0\xd5\x51\x19\x76\x2b\x09\x35\x72\x29\x87\x51\xb1\x8f\x91\x09\xfd\x39\x0f\xdd\xe2\x1d\x0c\xaf\x6e\x00\xb9\xa7\xb0\x10\xf2\x3e\xc8\x84\xeb\x9c\xaf\x90\x0a\xc5\x28\x0b\x7d\xcb\x17\x18\x65\x81\x94\x9d\x0d\x30\x2a\xe5\x3d\xe6\xb4\xde\xc3\xa8\x78\x59\xd9\x20\x59\xc6\x0d\x16\xe1\x66\x04\x0d\x3e\x02\xb7\xce\x69\x5c\x18\x81\x63\xc6\x9d\x7f\x61\x8e\x06\x33\x75\x3f\x20\x85\x23\x2c\x3e\xa2\x5d\xf2\xe5\x15\xce\x50\xb8\x63\xb9\x71\xe3\x01\x7e\xe0\x1e\x99\x56\xcc\x68\xc1\xaf\xcc\xef\x3b\xf7\x6c\x37\x6e\xe6\x08\x9f\x8a\x97\xec\xc3\xf3\x5a\xd6\x18\xa3\x3a\x99\x6c\xbc\x5d\xff\xb7\xbe\xd3\xa2\x81\xc0\xfb\x84\x0e\x13\x14\xe8\xa7\xeb\xcf\xa9\xc8\x98\x71\x3f\x4e\xc5\xe1\xe6\x00\x82\x2f\x87\x98\x29\x11\x4b\xc4\x19\xed\xab\x1d\x6a\x77\x3d\xbc\x40\x88\x1f\x3a\xc2\x04\x3a\x02\xb6\xb4\x89\x23\xc9\x21\x7e\x82\x57\xe2\x6e\x1e\xd5\xd2\x19\x5c\x54\x7f\x6c\xc0\x6e\xcb\x29\x2d\x13\x34\x92\x8e\x4e\xad\x45\xd5\x8e\x6f\xeb\xf1\x4c\xca\xae\x79\x19\x5d\x9c\xd5\xd0\xc5\x19\x48\x86\xca\x90\x5b\x71\x1c\xcf\xc2\x1c\xf3\xcd\x27\x72\x90\x42\x4d\x7a\x36\x87\xd0\x93\x3c\x9c\x9f\xd5\x45\x95\xfb\xc8\x20\xcd\x01\x1c\xf4\x50\x76\x10\xb9\x1b\xf9\x9a\x89\xd6\x19\xf1\xb5\x36\x5c\xb1\x70\xdf\xc0\x4c\x52\x42\xd2\x72\x6d\x39\xfd\x07\xff\xa9\x92\x4c\x48\x9c\x73\xf3\xb6\x6b\x81\x22\x47\x6d\xfb\x5c\xec\x32\x59\x8a\x2e\x3a\xbb\xd3\xa7\x46\xcb\x89\xbd\x49\x42\x49\x30\x21\xf1\x4d\x6c\xbb\x0f\x9f\x38\x0d\x5c\x98\x3b\x70\x50\x2a\x1e\x95\x9b\x62\x9b\x91\xe8\x85\x3a\xd4\x68\x8d\xda\x53\x9e\x3c\x6e\xcc\x53\x46\x12\x5b\x51\x6f\x9e\x30\xe6\x69\xa5\x45\x3c\xe9\x1f\xe2\xba\xf4\xf0\x8b\x0f\xb2\x03\xd8\xfd\x06\x0b\xf9\xe1\x0c\xa3\x51\xe5\x4d\xac\x32\xa9\x1b\x8c\x52\xe3\x02\xf7\x66\x97\x82\x99\xb4\xe8\xd0\x30\x47\xd4\x1a\x76\x67\x08\xc8\x4d\xf1\x61\x35\x5f\xe5\x65\xa4\xb6\x63\x1d\x2e\x3b\xb0\xb2\xb0\xfb\x0d\xa6\xf0\x2d\xa5\x36\x12\x51\x55\x9d\x39\xb4\x47\x6f\x4b\x4e\x7f\xe0\x58\xbc\x56\xb0\x3b\x6f\x53\xac\x2d\x13\x92\x35\x71\xe0\xce\x61\x9c\xb5\xf5\x1c\xb4\x12\x4c\x90\x72\x6d\xde\x89\xa4\xa8\x01\xfb\x5e\xa2\x51\x04\x1e\xe1\x1c\xa5\xbf\x8d\x1c\x44\x86\x26\x71\x58\x8a\x44\x6f\xae\x76\x74\x4f\x4b\x16\xb8\x18\xc2\x7f\xc9\x77\x07\xeb\x89\x5d\xdf\xd9\x10\x09\xe9\xee\x6c\xa9\x5f\xf1\x9c\x10\xa1\x73\xbb\xd0\xbc\x10\xbb\x28\x39\x32\x1c\x94\x35\x8a\x88\x9c\xe3\xae\xdb\xa8\x64\xe7\x36\xa6\xfa\x0c\xb2\x5d\x94\xfe\x36\xe6\xcc\x7f\x80\xc0\xcb\x54\xf5\x02\x8f\xf2\xd5\x5a\x80\xac\xb8\x3b\x55\x6a\x24\xd2\x38\xb2\x0a\x9f\xf3\x2d\x8a\x55\xe4\xbf\x1d\x8f\xb8\x4b\xe4\xc3\x19\xec\x2f\x38\xeb\x04\x3c\x55\xc2\x77\x9d\x51\x2e\xb9\x2b\x77\xd9\x57\x8c\x76\x81\x69\x75\x70\x5c\xc3\xa7\xce\x5b\x90\xd0\x59\xc1\x53\x67\xe3\xb9\xb9\xc2\xcc\x62\x96\xf3\xd6\x1a\xbe\xb3\x00\x40\x83\xd6\x3b\x69\xf8\x12\xa9\xe8\x0c\xb7\x69\xcb\x77\x4d\x74\x09\x11\x70\x54\x4c\xa0\x32\x50\x65\x2f\xdd\x9b\xa0\xbe\x8d\x6b\x29\xb9\x50\xf9\x75\xb5\x6b\x53\x7e\x37\x2f\x8c\x5f\x05\x89\x21\x39\xff\x80\x59\x26\x11\xaa\x0d\xcb\xb4\x4b\x87\x43\x2f\xaa\xaa\x1c\x61\x29\xea\x27\xb5\x2c\x13\x52\x3c\xa2\xcd\xfd\x0d\x14\xef\x1e\xf2\xe2\x7c\xca\x3d\x9c\x7a\xbc\x53\x31\xea\x8f\x4a\xd0\x4e\x97\x4b\xf1\x5c\x04\x65\x6a\xe8\x3d\x1a\x54\xe3\xe0\x9a\x7c\xff\x52\x99\x48\x02\x40\x26\x90\xee\xe9\x09\xaf\xc0\x84\x54\x60\xbf\x92\x89\x06\x46\xfd\x46\x0e\xa3\xc7\x06\x46\x37\x67\x9e\x7e\x29\xc6\x87\x55\x74\xd5\x1c\xea\x74\xd2\x11\xb0\x25\x0e\x37\xc6\x11\xd0\xf5\x82\x81\x27\x92\xa8\xac\xc2\x7e\xeb\x05\xb3\x71\x5e\x30\x9f\xed\x4e\x0b\xf3\xb3\xc8\x91\x58\x82\x8a\xf9\x68\x76\x9d\xb1\xa1\xd9\xb3\xb8\xcc\x44\x59\x2c\xbf\x1d\x97\xe9\xa1\x67\xbb\xcc\x33\xb0\x94\xca\xbf\x59\x06\x96\x57\xcb\xbb\x89\x44\x7c\xbe\x86\x7a\x53\x9f\x29\x14\x24\x1e\xc5\xe2\xf2\xd3\xb5\x1c\x7e\xe2\x92\x9d\x01\x17\x1e\x64\xbf\x3d\x06\x81\xfe\x1f\x33\x65\xfd\x1e\x46\xe7\xc3\x8d\x9e\xb5\x19\x44\x55\xd1\x2a\x71\x92\x77\xde\x1f\xce\x0a\xb4\xba\x12\x9d\x9f\x4d\x71\x34\x25\xd2\x49\xca\x10\x2e\x3b\x28\x97\x60\xb7\x05\xb7\xd5\x44\xba\x88\x5e\xe5\xdc\xa2\xbd\x39\xf9\x11\x06\x7e\x78\xf8\xa2\xfc\x08\xca\xc2\xcd\x0d\x08\x1f\xf0\x00\x39\x73\xe0\x06\xc8\x9d\xbd\x41\x3a\x8d\x30\xe4\x7b\xc2\x92\xc4\xf5\xe4\xc5\x0f\x98\x9b\x58\x16\x8d\x0b\xd3\xb0\x75\x6a\x50\x17\x1a\x2e\x22\x02\xab\x6f\xf9\xa9\x65\x3d\xf3\x4f\x87\xcb\xac\x1d\x71\xc2\x00\x34\x61\x04\x4a\x32\x41\x72\x28\xef\xd6\x28\x62\x8c\xfa\x8e\x51\x12\xbb\x28\x7d\x45\x27\x2d\x41\xa8\xfe\x60\x38\x4c\x8a\x48\xa2\x17\x23\xd3\x68\x8f\xa8\x27\x39\x9f\x55\x39\x2f\x8a\xb8\xfe\x30\x6d\xf8\xfe\x24\x81\x0c\xca\xf3\x47\x3b\xfd\xb4\x81\x32\xa9\xc6\x15\x22\xbd\xda\xd8\x41\xd2\xb9\xa1\x62\x94\xcc\xc1\x6b\x46\xdc\xcb\x2f\xcd\xa1\x4d\x0d\x3a\x9a\x4e\x16\xa2\x68\xc0\x89\xfe\x44\x22\x16\xd7\xed\x1c\xae\xa2\x5d\x9b\xb0\xfb\xa5\xf3\xb0\x04\x1f\x74\x34\x1e\xf5\x4c\xab\x45\x67\x7c\xd1\x9e\x78\xb9\x4c\xfa\x95\xf9\x38\x13\x3e\x28\x5c\x44\xbb\x36\x7b\x41\x70\xe2\x5a\x3e\xa8\x4c\xcd\x0f\x82\x42\x34\xbe\xec\x71\x3f\x9c\x30\x51\x1f\x35\xda\xa6\x69\xb0\xab\x48\x84\x56\x86\x09\x49\x53\x2c\xb9\x5a\x73\x2f\x08\x83\x4b\x75\x3a\x1c\xad\xf6\x8d\xaa\x58\x42\xa9\xfb\x8c\xc3\x94\x88\x37\x67\x95\x76\x3b\xb4\xa7\x1b\xa1\x59\x35\x30\xa1\x60\x26\x64\x1c\xdf\xb0\xea\x9b\x51\xe6\xc7\x94\x2a\x2b\xe0\x4f\x29\x7b\x74\x03\x97\x26\x39\xb3\xcc\xf7\x0f\xdf\xe8\x06\x93\x3a\x17\x31\x6f\x02\x95\xe3\x39\x16\x58\x22\x62\x53\xa9\xd2\x3e\xb5\xba\xd4\x68\xcd\x80\x2e\x4b\xbc\x5a\x06\xba\x5c\x28\x82\xce\x3c\xdf\xcf\xd5\x3a\xa1\x28\xf8\x93\xc9\x11\x4b\x7c\x55\x33\xbd\x0c\x1f\x11\x4c\x8e\xce\x0a\xfc\x3f\x13\xd2\x16\x0f\x6b\x0e\x70\xba\xa7\x5f\x74\x62\x81\xb1\xb1\xe2\x1f\xfc\x88\x8b\xf3\x61\x6c\x26\xd5\xb8\x11\x2f\x11\xe9\x93\xb1\x83\x92\xf9\x32\x46\xdf\x40\x40\xee\x56\x7c\xbb\xb1\xdb\x8a\x1a\x9a\x93\x20\xc9\x4b\x27\xd8\x41\xe7\x70\xf8\x9b\x67\xc0\xe6\x11\x9b\x41\x99\xfc\xd9\x0d\x89\x47\xb8\x49\xdf\xb8\xbf\x61\x9c\x9c\x46\x1c\x29\xaa\x96\xd6\x32\xb4\xae\xd9\x1b\x05\x0c\x66\x4c\xdf\xa6\xc1\x3b\xbf\xa1\xbe\xcd\x53\xb7\x69\x2e\xb2\xd4\xb6\x91\xdc\xab\x32\x98\x72\x22\x34\xf7\xd4\xa8\x3e\xd0\xdc\x60\xe2\xd3\x78\x40\x71\xa8\x07\x5b\x66\x63\x02\xd1\x9f\xd2\x18\xdd\x73\xb5\xf5\xc8\x7c\x21\xa0\x78\x7e\x8b\x9b\xd2\x73\x41\x18\xa6\xeb\x6b\x1e\x6f\xad\x14\x36\x99\xcb\x79\xde\x5b\xb9\x96\xdb\x70\x1e\xc8\x54\xaf\x4c\x2a\xe7\x16\x59\x4f\x29\x21\x45\xa9\xd1\x61\xa7\xeb\xd7\xa5\x8f\xcb\x4c\x39\xb1\xb9\x42\x78\x1e\xf4\xd6\xae\x0d\xd8\xbd\xdb\x4a\x0d\x6a\x7f\xf2\x37\x69\xea\x3d\x7d\xa8\xb3\x5a\x6e\x32\xc9\x94\xd4\x80\x37\x59\x26\xc9\x14\x99\x09\xa0\x9e\x72\x85\x5f\x86\xdc\x5f\x1b\xb0\x7f\xc7\xa4\x52\xdc\xc0\x30\xad\xe5\x93\xf8\x5a\x09\x14\x81\x72\x25\xf0\xa9\x7b\x75\x08\x69\xd6\x70\x75\x00\xdc\x13\x20\x62\xf6\xaa\x69\x1d\xcb\xb3\x32\xd4\xdc\x8f\xcb\x79\x18\x9f\x78\x71\xbf\x0f\x79\xc0\x53\xd9\xb9\xbf\x4e\x48\xc8\x14\x1f\xef\x4b\x89\xb5\x6e\x4c\x90\x9a\x76\x01\x6e\x4f\x5a\xb2\x8a\x11\xe9\x38\xa5\x9a\x78\x82\x6a\x0d\xc7\x05\xab\x61\x05\xa3\xc7\xac\xe3\x87\x3a\xc3\x8b\x6b\x06\x46\x83\x4a\x0e\xa3\xeb\xe0\xf3\x86\x79\x6f\x97\x69\x2d\x3b\x62\xd5\x7e\x49\x65\xfd\xf7\x78\xef\x7e\x6b\xba\x32\x23\x11\x9b\x44\xad\xa3\xf7\x07\x9d\xb8\xa3\x47\x92\x09\x89\xba\x98\xf5\xb3\x1f\xb8\x6e\x1e\x55\x87\x1f\x23\xb9\xa3\xf2\x50\xcc\xb2\x54\x26\x34\xcb\xd4\xcc\xee\xc8\x64\x40\x27\x4e\x81\x4e\x64\xc2\xda\x4b\x9e\xad\xe4\xf2\xf4\xd4\xb3\x2b\x86\x15\x49\x26\x2b\xa8\x30\x39\x1d\x79\x2a\xb3\x3f\x53\xa5\x58\x10\x2f\x7e\x46\x03\x3c\x4f\xa5\x58\xe9\xc0\x85\x07\xcf\x63\xd8\xfd\x8a\x5c\x03\xcf\xf1\xdc\x5c\x9a\xc9\x5f\x99\x69\xbf\x1c\xc4\x5d\x0e\xae\x7b\x94\x1a\x4d\x1a\xc9\x80\x18\x0d\xcf\x49\x89\x4f\xcb\xf8\xf8\x2f\xe6\xf5\xa4\xec\xc5\x31\x5c\x48\xba\xee\x9a\xb0\xff\xdd\xc2\x29\xa2\xea\xc0\xeb\xa1\x2d\x54\x34\x6b\xd2\xcd\x4a\xf2\xb8\x6d\x10\x74\x9f\xc4\x6a\x68\x14\x55\x3d\xae\x9b\xce\x4d\xbd\x93\x58\x3a\x19\x4f\xc2\xf5\xb6\x82\xeb\x0f\xb2\x03\xd8\xf9\x00\x94\xf9\x85\x00\x68\x4d\xa6\xbf\xd0\xd5\x2a\xc2\x7b\xdf\xf4\x68\x4b\x7f\x74\xeb\x85\x84\x5a\x0b\xcf\x67\x2e\x5d\x12\x1f\x7f\xd2\x5f\x6e\x5a\x6c\xaa\x9e\x9e\xc0\x65\x75\xbb\x01\xbb\x5f\x11\x01\xae\x3f\x40\x86\x4f\x1d\xaf\xdd\x1b\x50\xae\x48\xe2\xb2\x74\x5e\xac\xbf\x69\xe2\x32\xd7\x14\xc6\x2f\x3b\xc8\x9a\xb0\xdb\x4e\xdb\x4a\xd3\x26\x45\x74\x4c\x7f\x6b\x5d\x6a\x6b\x96\x6e\x34\x1d\xab\x1d\xd1\xfe\x47\x75\x4d\x92\xf8\x8c\x04\xf9\x54\x4c\x4c\x69\x9c\x66\xa1\xc5\xe5\xf3\x99\x31\x41\xa2\x6d\x7e\xf5\x54\xff\xb2\x23\x0e\xd1\x43\xee\xf1\x74\x1b\xa6\xb6\xb2\x75\x2c\x22\xa1\xff\xad\x59\xda\x63\x90\x7e\x2e\x2a\xd6\xd6\x97\x17\x6a\x5f\x82\x44\x57\xc0\xad\x73\xf1\xb6\xfe\xce\x19\x93\x17\xff\x28\x57\x8d\x4d\x99\x1a\xf2\xe0\x96\x55\xe0\x53\x63\xf7\xa8\x61\xeb\xea\x97\xec\xd8\xb4\xb4\x21\xcf\xbe\x26\x60\x09\x09\x98\xf0\x22\x66\xf5\x62\x8d\x91\x2a\x70\x74\x18\x11\x8c\x30\x5a\xd1\x1b\x4a\x9e\xf8\xbf\xec\xa8\x85\x9b\xb2\x2a\x63\xba\xfc\xc6\x04\xa9\xd7\xaa\x63\x44\x2f\x1a\x6e\x96\xb1\x12\x4c\xdb\xa3\x8a\x51\x0d\x84\x24\xa7\x8c\x51\xb5\x1c\x3d\x02\x8d\xe0\x48\x32\x09\x1f\x1b\xf8\x7a\xb9\x88\xfd\x7c\x03\xb3\x4a\x24\x06\x99\x0c\xe4\x13\x3c\x55\xc5\x45\xfe\x16\xfc\x19\x06\xf8\x85\xb9\x0f\xc2\x75\x35\x71\x16\xe6\xb7\xa0\xfa\xc5\x5c\x79\x0f\x1e\x70\xa8\x60\x8c\xda\x25\x17\xa5\x0c\x89\xeb\x54\xda\x6a\xb8\xb2\xdf\xa0\xe5\xee\xe1\x3c\x08\x7e\xb3\xfe\x8e\x04\x62\xb9\x8c\xee\x9c\x25\x2e\xe7\xcd\xd7\x57\x13\xfb\x09\x10\x5c\xa2\xdf\xc3\x49\x6f\xde\x88\x09\x16\x7f\xd6\x05\xc2\x2e\xeb\x7b\xdc\xd2\x67\x43\xf0\xbf\xb9\x87\x9c\x9f\xfc\xc2\xc7\x9f\x39\xcd\xea\x3b\x9e\xb5\x39\x5b\xad\xa1\x6c\xa1\xc6\x94\x7b\x51\x47\x8a\x57\x60\xf2\x23\x1c\x47\xa3\x1b\x13\x48\xce\xb8\x2a\x8a\x47\x88\x94\x6a\x4d\xbe\x9f\x2b\x65\x2f\x5b\x86\xfe\x67\xc6\x6e\x4b\xd8\xff\xca\x25\xec\x93\x9e\x83\xb8\x0f\x1e\x79\x6a\x50\xcb\xf5\x6e\x01\xd6\xa2\x5e\xac\xa1\x7a\xb1\x5a\x63\x84\x88\x59\x97\xb1\x10\xc8\xab\x74\x4e\x6f\x43\xf4\xc9\xb5\x4d\xeb\xa2\x89\x1a\x17\x59\xd8\x91\x5e\xf6\x2c\xc8\x56\xbf\x11\x04\x6c\x4b\x11\x36\xe1\x4e\x0b\x29\x42\x42\x89\x53\x84\x3c\x1d\x68\xb7\x37\x9a\xd5\xd2\xbc\x65\xcf\xb9\x6a\x46\x46\xa2\xe2\x72\xd3\x61\xc6\xd2\x16\x0f\xfb\x2e\x9a\x6e\xce\x75\x44\x5a\xf7\x77\x98\x25\x70\xfc\x7a\xdf\xa8\x65\xba\x97\x0a\xa0\xc7\x12\x95\x10\x72\x3e\x80\xa2\x48\x4e\xd5\x78\x12\xaf\x91\x54\x6f\x9b\xb0\xdf\xc2\xc9\x26\xaf\xde\x0d\x81\x13\x25\x13\x27\x0d\x65\xda\xd2\x74\x8b\xb2\x6f\x1e\x6d\x70\x6b\x67\x47\x69\x44\x2a\x42\x23\x5e\xb3\xde\x5f\x25\x84\x7a\x21\xdf\x1f\xb1\x71\x94\xd0\xd8\x0a\xa1\x5b\x21\xf4\x9d\x85\xd0\x2d\x2a\xdd\xb8\x3b\x2d\x16\x42\x53\x71\x16\xe1\x4a\x1b\x75\xef\xe9\xa3\xde\x0d\x18\x6d\x40\xa6\x47\xe5\x1a\x23\xc3\x57\xa9\xef\xe6\x6c\xdc\xc9\xb1\xde\x7f\x42\xfd\x3b\xfa\x14\x7a\x6b\x91\x52\x0e\xa3\xbc\xe1\x35\xe4\xbb\x06\x46\x79\x82\xd1\xb1\xab\xc7\x3e\xc7\x08\x0e\x93\x62\x09\xa3\x12\xbc\x41\x1e\x7b\xce\x06\x61\x80\xf3\x54\x23\xe6\x90\x10\xa9\xa5\x3c\xd1\x0a\x3f\xcb\xc4\xb1\xb9\x23\xe6\x5e\x65\xa5\x11\x6f\x71\x37\x46\xa4\xf8\x2c\x56\x4d\xc7\xee\xdc\x1e\x69\xa6\xd5\xd6\x29\x13\xb0\xc4\x24\xcc\x30\x63\x32\x8e\xf5\xb2\xa9\xd1\xd3\x46\x3c\x77\x80\x80\x15\x24\x60\x19\x78\x4c\x26\x5f\x88\xa6\xab\x74\x40\xd2\xd4\x6c\xcb\x2b\x28\x61\xc3\x8d\x09\x52\xf7\xf4\x29\x0d\x54\x58\x6a\x66\xf9\x3e\x0c\x36\x9d\xc8\xa7\x76\x97\x9b\xdd\xe2\xcb\x22\xaf\xfa\x99\x95\x1e\x4a\x91\x58\x74\xa9\x5f\x59\x58\x98\x8a\x37\x62\xd1\xeb\x2f\x75\x8e\x8d\x5a\xba\xf3\x43\xe5\x35\x39\x35\x63\xa1\xf7\x33\x4f\x31\x89\xb8\x86\x64\x67\x68\x5b\xb4\xa7\xd3\x2f\xd5\x51\xcb\xd0\x46\x2c\x5b\xac\xd6\x50\xb6\x58\xa8\xb1\xd0\x70\xbc\x49\x1b\x13\xa4\x8c\xdc\x6b\xa0\x67\xb5\x81\x08\xbe\x6f\x61\x34\x9a\xe1\x5c\xc1\xe7\x38\x05\x53\x1b\x07\xeb\x49\x67\x22\xb7\x31\x0d\xd6\xcb\x34\x42\x90\x59\xd0\x89\x67\x4b\x08\x90\x26\x30\x20\x41\x23\xc8\xa8\xf0\xba\x27\x5b\x09\xdf\x87\xc7\x57\x40\xf8\xe1\xc9\xf0\x50\x84\xe5\xd9\x08\x06\xe6\x63\x87\x2d\x1a\xcb\x14\xcf\xcf\x29\x80\xb0\x6c\x4b\xeb\x51\xbd\xa5\xb1\x6c\x1e\x60\x8c\xfb\x4a\x67\x1c\x24\x50\x67\x23\x61\xcc\xde\x00\x18\x5b\x66\xd4\x32\x20\x36\x0d\x6b\xc1\x92\x0e\x6e\x11\xf4\x79\x3f\x96\x6a\x0b\x61\x3f\x05\x61\xbe\x23\x75\x00\x61\x39\x4b\x1f\x36\xa9\xa1\x2d\x43\xc5\x5e\x43\x48\x8e\xc9\x3c\x74\xcd\xa4\x49\x68\xcf\x59\x66\x57\x33\x6e\x8f\xf5\x5e\x6f\x0b\xf0\xbf\x24\x51\xdd\x42\xfc\xfb\x43\xbc\x57\xc9\x30\x80\xb2\xbc\x63\x59\xfa\x52\xf0\xfe\xe1\x00\x56\x4c\xfb\x30\xf4\xb1\x10\x36\xbd\x28\xe7\xf4\x7e\x32\x97\xa3\xa9\xee\x15\x43\x75\xde\x12\xad\x70\x92\x97\x18\x11\xc2\x53\xa8\x28\x5c\xf6\x1e\xfc\x27\x54\x2d\x7e\xf4\x02\xde\xac\x61\x0b\x41\x2d\xa5\x24\x63\x90\x56\xa0\xd6\x93\x6e\x2c\x22\x65\x4b\x53\x91\x40\xbd\x10\x5c\xbc\xe8\xa8\x3d\xca\xf6\x71\x5a\x49\xa0\x7d\x9c\x51\x12\x4c\x48\x9f\x22\x21\x73\x3a\x0b\x8e\xf9\x7d\xba\x27\xf3\xef\xd3\xae\x0e\xdc\x25\xdc\x4b\x78\x94\x40\x3f\xcd\x62\x74\x84\x31\x1a\x5f\xfb\xe9\x96\xa7\x91\x36\x93\x93\xe9\xd8\x53\x1d\x9b\x4d\x6a\xd9\x1b\x8f\x5c\x5e\x81\x64\x6e\xee\x02\x17\x41\x78\xfb\x69\x4d\x57\x90\xe5\x6f\x8b\x88\xb6\x88\xe8\x63\x11\x91\x44\x26\x90\x45\xc9\xb4\x5a\xb7\xc7\xe6\x93\x47\xf6\xf7\x09\x96\x79\xd0\x83\xec\x85\x3e\x00\x90\x52\x07\x09\x4d\xc7\x0f\x7c\xf0\x75\xc4\xef\xb5\x31\x8b\xe6\x79\x08\xbd\xe3\xc6\xca\x07\x49\xdb\x67\x37\x78\x20\xe5\x43\xd9\x41\xf5\x92\x03\x2b\x39\xd2\xe0\xa7\xa0\x71\x6e\x38\x00\x11\xb3\x1a\x57\xcd\xb9\xa7\x78\x55\x63\x62\xe2\x45\xad\xe0\xc6\x24\xcb\x2b\xc8\x7b\x87\x96\x18\x10\xef\x16\x1e\x52\xe0\xf6\x6a\x99\x07\x84\xbe\xd8\xba\xcb\x2e\xd7\xef\x0d\xc7\xde\x8d\xdf\xf3\x6e\x8b\xc6\x32\x59\x49\xc5\xd7\xb6\x6e\xb4\xb4\x3e\x35\x96\x25\x3a\x6f\x2b\xc5\x4e\xa3\x73\x46\x70\xec\xf9\xca\x5a\xaf\x69\x3a\xd6\x72\x22\xf6\x87\x53\xc3\xcd\x50\x14\xaf\xae\xc4\x0a\x79\x93\x17\xb4\x58\x0b\xee\xf1\x3a\x2d\xd6\x56\x51\xfc\xfe\x04\xce\xaf\xe9\x1c\x00\xd9\x85\x66\xd9\x1d\x96\xad\x03\x80\xd5\x17\x97\xe8\xe7\xab\xfc\x7e\xc1\x2a\x7f\x2d\x2f\xec\x55\xba\xcc\x17\x6b\x2c\x5f\xac\xa1\x3c\x4f\x41\x4b\x78\x55\xcb\xcd\x01\x74\x26\x48\xf4\x9b\x86\xbd\xca\x91\xfa\xf9\xd4\x3a\xbd\xb4\x54\x8c\x92\xba\xbf\x32\x67\xcd\x40\x12\x7e\xda\xe5\xf2\x1c\x96\x6d\x82\x41\xdc\xe0\xc5\xfc\xd1\xa6\xff\x0d\xf1\x4e\xd8\x0c\x3f\x88\x9d\x83\x9d\x0b\xaa\xea\x77\xba\xfa\xa5\x48\x87\xb6\x66\xb1\x22\x37\x8a\xa7\x90\x80\x93\x48\xc0\x09\x96\xea\x88\x43\x94\xc2\x28\x89\x51\xe2\x05\x17\x88\x77\x75\x3d\x66\x02\x71\xaa\xed\x23\xf1\x09\x91\xa1\x72\x02\xfb\x78\xdd\x21\x6e\x57\x0f\xeb\x0e\xf1\xd6\x43\xc5\xb3\xa1\xf7\x5a\x7e\x22\xa9\xe0\xd0\x43\x65\xba\xff\x8c\x91\x73\xfa\x4b\x83\xec\xd2\x83\x42\x6f\xa5\x79\xfd\x43\x92\xbf\xf8\xa9\xe6\xdc\x2a\x52\xbc\x8d\x04\xd9\x89\x78\x5c\x01\xbf\xf0\x82\x67\x5b\xf5\x4b\x4c\xde\x89\x77\x0b\x5d\x18\x8c\x06\x46\x47\xc4\x73\x5c\x89\xbb\xc5\xfb\x7e\x02\x4a\xd2\xc0\x28\x0b\xa7\x2a\xcd\xc9\xc6\x98\x17\xdb\x9d\x93\xa9\x66\x66\x6b\x61\x6e\x9b\xb9\x23\x5e\x4e\x8b\xb3\xea\x50\x26\x63\xee\xb6\x90\xaf\xd6\x92\xf9\x42\x8d\xe7\x9d\xca\x17\x6a\x28\x5f\xaf\xa1\xfc\x45\x8d\x71\x60\x72\xff\xb9\x54\x4a\x92\x3f\x9c\x48\x4d\x91\xac\x24\x19\x4e\xbd\x79\x95\xd7\x0b\x7c\x96\x31\xd2\x9f\x30\xba\x7c\x7a\x8b\x2c\x14\x41\xd5\x03\xee\xe3\x94\x6b\xe0\x6d\x3c\xcd\x36\x9e\xe6\xcd\x6e\xb1\x73\xb0\x53\x2c\xd6\x58\xa4\x3e\xc1\x72\xe5\xce\xd7\x09\x5b\x9d\x42\x6e\xcb\xc6\x6d\xd9\xb8\x37\x65\xe3\xbc\x82\xb6\x05\xa7\xd9\xd3\x0d\x56\xf0\x0a\x64\x1e\x95\x6b\x28\xe7\x16\xfd\x67\x03\xb1\x87\x84\x91\x58\xf0\xa2\x01\xa6\xa2\xc6\x16\x27\x81\xfd\xac\x1b\xc8\x5e\xcf\x19\x78\x6d\xae\x7b\xb8\x1b\x43\x93\x28\x7c\x1d\xc3\x81\x36\x87\x33\xd3\x77\xb6\xe7\xad\xb0\xb8\x10\x3f\x96\xc9\xfa\xea\x70\xdd\xd7\xf0\x87\x3e\xab\xbc\x35\x51\x63\x3f\x04\x60\xee\xb3\x3a\xf7\xec\xac\xfa\xfc\x21\x4c\xae\x34\x22\x3c\xeb\x87\x11\xb4\x93\xc1\x33\x3e\xc5\x47\x85\xeb\x67\x62\xfc\x2c\x53\xc3\xdc\x07\x08\x5f\x6d\xd9\xc7\xa3\x73\x94\x47\x31\x8d\xcc\x9c\x86\x9d\x75\x75\x00\x19\x6c\xce\xd2\x34\x4d\x37\x16\x5c\x67\x96\x45\x66\xbc\x14\x14\x2f\x03\xed\x2f\x2a\x9f\x96\x6e\x4d\xf8\x67\x6f\xf1\xec\x87\x7f\x0c\x3f\x4b\x19\x30\x12\xf0\x1f\xd8\x77\xe6\xfe\x9d\x28\x16\xf8\x31\x54\x2c\xd4\x50\xb1\x5e\x43\xc5\x0b\x38\x8f\x14\xef\xdf\x26\xf3\xf9\xf6\x3c\x3e\x5f\xc1\x48\x7f\xdc\xf2\xf9\x5b\x3e\x7f\xf3\x6f\x01\x50\x68\xab\x5f\x8e\xca\x35\x01\xb3\xa3\x72\x8d\xf9\xa0\xe9\x1d\x24\x6c\xdf\xad\x48\xec\x1e\xf6\xb5\x5e\x17\xa6\x65\xdf\x96\x4d\x4b\x1b\x36\x47\x8c\xa7\x36\xa3\x3c\x62\xc4\x4b\x52\x11\x8c\x26\x8c\xdb\x6c\x9b\x13\xc3\x6b\xd4\xa2\x4f\x94\xf1\x0c\xe0\xaa\x3b\xd0\x8d\xd1\x0c\x06\xca\x8c\x17\x37\x6e\x4d\x3e\x8e\xc2\xf6\x89\xc2\x04\x6d\xe2\xb8\xc4\xf6\x31\xf0\x2c\x13\x87\x65\xb6\x8f\x65\xc6\xe5\x96\xe8\x61\x85\xf1\x22\x29\xca\xc4\xe1\x04\xe3\xe9\xa1\x12\x13\x87\x93\x8c\xa7\xfe\x4a\x7a\x87\x4f\x8c\x96\x4e\x8d\x2f\xf9\x8e\xa5\x0f\xed\x3e\x1d\x32\x9e\xf4\x39\xe5\xbe\x85\x1b\x76\xe1\x8f\x4c\x33\x9e\xaf\x34\x3d\xf9\xf1\x68\x8f\x3a\x8c\x27\xc1\xcc\xf8\xc3\x22\x2f\xbf\x4f\x18\x0f\xdb\x8e\x3f\x06\xff\xc8\x04\x33\x3a\x79\x18\x66\x87\xb0\xe6\xe4\x61\x89\x09\x44\x62\xea\xc4\x61\x99\x09\x58\x66\x13\xdf\x63\x5f\x61\x02\x56\xd8\xc4\xe7\xd8\x4f\x30\x01\x27\xd8\xc4\xd7\xd8\x4f\x32\x01\x27\x59\x72\xe2\x68\x8a\x09\x38\xc5\x52\x13\x47\xd3\x4c\xc0\x69\x96\x9e\x38\x9a\x61\x02\xce\xb0\x4c\xe4\xe8\x75\x2d\xcf\xe0\xbf\x7f\xc8\xe5\xc9\xb3\xfd\xa1\xad\x59\x2d\xda\x67\xd9\x72\x0d\x55\x78\x25\x4e\xc2\xeb\x85\x62\x09\x73\x93\x05\xca\x17\x6b\x4c\xb8\x17\x9f\x90\x40\xdc\xdf\x2e\x12\xba\x6e\x15\x3d\xb2\x9a\xac\xea\x32\xf3\x1f\x18\x82\xeb\x6d\xdc\xe6\xa1\xc2\xcb\xb8\x09\xcf\xf5\x0b\x9f\x8e\x86\x8e\x25\x8b\x9d\x52\x54\x9f\xe3\xe6\x79\xd6\x2f\xd4\x58\x8f\x9c\x8a\x51\x19\xce\xd9\x2a\x46\xd7\x66\x94\xa1\x73\x80\x49\x87\xc6\x10\x63\x74\x03\x9d\x87\x26\x46\x37\x30\x7e\x58\xc6\xe8\xba\x1c\x75\x22\x72\x80\xf7\x84\xe1\x56\x76\x6a\x54\xd0\x19\x63\x74\x77\x83\x51\x2e\xdf\x80\xd7\x09\x6f\xe4\x8f\x1d\xf6\x31\x4a\x62\xd2\xdd\x5a\x6f\xb6\xec\xe8\xfb\xb2\xa3\x6e\x65\x7d\x1f\xcf\x18\x2d\xd3\xb2\x28\xab\x73\x43\xa8\x67\x0c\xf5\x84\xfd\xe9\x80\xc6\xb5\x6e\x4c\xb8\xce\xc1\x43\x3e\x9f\xcc\x8d\xca\xde\x2e\xd1\xdf\x62\x89\x7a\x89\xd5\xfd\x25\x3a\xb4\x2d\xda\xed\xcc\x4a\x66\x29\xab\xa2\xfa\x52\x3a\xcb\xd5\x42\x6f\xc9\x85\x6a\xa9\xbc\x5a\x71\x59\x5d\x47\xb5\xe2\x59\xf5\xdf\xdc\x24\x0a\x9f\x6f\x95\x86\xc5\x8a\xbc\xbc\xe7\xfe\x84\xd9\x1d\xcd\x18\x72\xc6\xc5\x57\xa1\x47\x38\x16\x32\x12\x2f\xfd\x5a\xbf\x11\x6e\x45\x72\xb3\xc8\xbe\x23\xbe\x99\x87\x85\x24\x9a\x24\xcf\xe2\x25\xca\x57\x9a\xb0\xeb\x1b\x18\x75\xaf\x09\x46\x99\x26\x46\x72\x71\x88\x51\x83\xc2\x84\xf8\xd3\xdf\x95\x1b\x18\x55\xc6\x18\x55\xf3\x03\x3f\x39\x48\xb0\x20\x5c\x1d\x96\xe9\x2b\x0e\x5d\xa9\xf3\x08\xce\xb6\x61\x38\xc8\x68\x4d\x2e\xd4\x5e\x6e\xa9\xf7\x66\x23\xac\x0d\x41\x8d\x72\x22\x0a\x69\x25\xd3\x68\x99\x06\xf3\x35\xf6\xb9\xc2\x04\xf1\x5e\x75\x0b\xc1\xc0\xfd\xeb\xc3\x55\x4d\xab\x6d\x5c\x6f\x4f\x3d\x2e\x9d\x2f\xde\xdf\x40\x67\x2f\x5d\x8d\xbd\x1c\x40\xd3\x5e\x93\x11\x25\x7e\x19\xa3\x6f\x59\x8c\x9e\x73\xb1\x2b\xc1\xab\x35\x9b\xae\x87\x28\x9c\x0a\x47\x6d\x15\xfe\x5b\x85\xff\x67\xc3\x9c\x1b\x82\xa3\x09\xe6\x55\x7c\x3c\x1c\x9d\xd3\x7a\x6d\x8b\xb6\xb4\x8d\xf1\x35\x65\x02\xc9\x5c\xe5\x31\x92\x4f\x2e\xf0\x4c\xed\x83\xa5\x62\x74\x09\xcb\xea\xb1\x6f\x6e\x59\x90\xcd\x59\x74\x9b\xb2\xbc\xa5\x28\x0b\x92\xd3\xac\x9e\x6e\x04\x8b\x1b\xe5\x8b\xe5\x60\x85\xcf\x70\x9a\xf9\x70\xce\xe2\x0d\xfc\xaa\xbb\x25\x8c\x2a\x2a\x46\x7d\xe2\xf5\xe1\x0c\xbe\x3a\x70\x53\xec\xdd\x03\x39\x6e\xcd\xa1\x6e\x5a\x27\xbb\x55\xd8\x7d\x16\x28\xd8\x10\x78\x53\x48\x14\xde\x2e\x2c\xda\x76\x42\x62\xc2\xd3\xcd\xf9\xe0\x36\x83\xa4\x48\x1f\x06\x68\x6f\x04\x6c\xee\x8f\xfb\x6d\x00\xe6\x06\x18\x3d\x67\x31\x97\xca\xa7\x98\x48\xd5\x87\xc5\x66\x45\x9d\x66\x52\xb7\x00\xb7\xe9\x60\xb0\x21\x00\xe7\x15\x6b\xf1\x09\x9c\xe5\x0c\x87\x5a\x6f\x18\x53\x91\xbb\xa9\x72\x03\x51\x3b\x96\x24\x17\xcb\xcb\x6f\x1f\xad\xed\xf2\x34\x5e\x5a\x47\xc5\x48\xe6\xc9\xb0\x89\x3a\x1b\x52\xfb\x23\x8c\x4e\x54\xef\xab\x71\x31\xb1\xe8\xdb\xba\x1c\xe8\x83\xcd\xa8\xf0\xec\x02\xe4\x2c\xb3\xd5\x5c\x79\x96\xca\x2f\xca\xc2\xe1\x55\x66\x45\x9b\xbf\x2a\x71\xee\x08\x63\x94\xa8\x1b\x53\xf8\x87\x1b\xdf\xf4\xa0\x95\xc7\x9e\xc5\x50\xd3\xcc\xad\x3d\x6e\x8b\x6d\xde\x10\xdb\x48\x31\xf2\x9e\x73\xd4\x0e\xb5\xb4\xa1\xcd\x72\x11\xf5\x39\x13\xc8\x89\x68\x46\x58\xea\x8f\xc6\x19\x3e\xe6\x20\xcf\xd9\x01\x3c\x99\x84\x4b\xb0\xbb\xca\xbe\xd9\x02\xcf\x3e\xab\x5e\x54\x96\x0b\x53\xbc\x38\xc4\xcb\x86\x96\x9f\x87\xa9\xb3\x97\x3b\xcf\x08\xb6\x76\xdd\xad\x8a\x5b\x98\xda\x08\x98\x22\x99\x38\x4c\xb5\xe8\x00\x40\x6a\x53\x34\x30\xaf\x65\x9b\x79\xd0\x1c\x0f\x9f\x33\xa1\x65\x37\x31\xba\x94\xfa\x18\xc9\x15\x6d\x36\x03\x6d\x9e\xfa\xba\x6d\x2c\x2f\x02\x8e\x08\xb1\xf5\xff\x4c\x1f\x53\xec\x66\xf8\x78\xaa\x78\x8d\x5c\x0e\xa3\xd2\x18\xa8\xa1\xe4\x3a\x64\x56\x2b\x8d\x6d\xdd\x96\xcf\x02\x30\x9b\x02\x9a\xa9\x28\x68\xfe\x9f\x63\xe9\x6a\x67\x63\x00\x93\x09\x24\x53\x9a\x91\x2b\xf1\xf9\xe8\xe5\x35\xbe\x5d\xde\xdb\xe5\xcd\x2b\xf8\x2b\xe1\xf2\xce\x77\xf4\xa1\x6e\x50\x87\xe5\xcb\x35\x94\x9b\xe5\x0f\x81\xca\xd5\x33\x54\xae\x16\x98\x40\x6a\x28\xc6\xe5\xf9\x72\xa5\xef\xdf\x32\xb3\x5c\x17\xf7\x9b\x4c\xa6\xa6\xb7\xf5\x17\xf1\x92\x92\xf7\xad\x1a\x7a\x3a\x2a\x53\x31\xfb\xf6\xfc\x9f\x94\xca\x62\x24\x69\x06\x46\x72\xa6\x3d\x49\xdc\x6e\x32\x40\xfd\x52\xe3\x75\x96\x9b\x6d\x97\x30\xaa\x4f\x0c\x3f\x9b\x66\xfe\xe6\xd6\xc0\x77\x19\xc2\xc2\x16\x2c\x37\x02\x2c\x93\xa9\x18\x58\x9a\x03\xcd\xe8\xd0\xb6\x66\x6c\x0c\xe5\x99\x66\x00\xc7\x79\x8c\x6a\x63\x8c\x6e\x9c\x73\x8c\x92\xf8\x61\xbe\x8a\xb4\x0a\xaf\x7a\x9c\x75\x8d\x12\x5c\x55\xc1\xdd\x01\xe0\xaf\xac\x89\x11\xe9\x24\xb2\x5b\xad\xc4\x67\x59\xc6\x1b\x02\x30\x71\x23\xdf\x91\xde\xb4\x68\xcf\xa6\x56\xcc\xd5\x68\x86\xc3\xf0\x7a\x7d\x8f\x96\x2e\x28\xff\x56\xdb\xd6\xa1\x68\xc3\x1d\x8a\xf0\xe9\x78\x8b\xc6\x36\x11\xb9\x6c\x08\x1a\x93\x71\xd4\x93\xfc\x58\xeb\x0d\x75\xa3\xab\xf3\xba\xfb\x11\xdd\x6a\x41\xac\x7c\xb0\x6e\x95\x09\xa4\xee\x54\xe0\x39\xce\xaf\x4b\xb0\x23\x2d\x57\xee\x7c\x98\xb1\xd6\x2a\xdb\x85\xbe\x39\xcb\x6f\x43\x16\x7a\x9c\x5e\x9f\xd1\x9e\x6e\xe8\x46\xdb\xa2\xad\xd0\x53\x20\x90\x3d\x3d\x91\x13\xf1\xf0\x50\x9f\x6e\xfb\x42\xa7\x1f\x4c\x31\xed\xb9\x23\x4b\x53\x11\x7b\xab\x48\x8c\x49\xe9\x0d\xbc\x01\xe4\x0c\x46\x20\x19\x12\x90\x0c\x89\x04\x90\x30\x68\x36\xd7\x21\x07\x56\x7e\x41\x18\x49\x1f\x8f\x31\x53\x94\xa8\x28\x74\xa6\x6b\x8f\xec\xcc\x43\x87\xb0\x30\x22\x8a\x89\x82\x9f\xfd\x48\x12\x95\x69\xad\x44\xb0\x48\x78\xdc\x86\x94\x98\xde\x92\x64\x9d\x1b\x8f\xd5\xe1\x8f\xa6\x5d\x9b\xb0\xb3\x8c\x31\x46\xd2\x71\x54\x5b\xd0\xa2\x18\x91\x47\xa5\xbf\x4e\x45\x41\xa1\x89\x91\x2c\x49\xf8\x45\xfd\xc0\xe5\x26\x2f\x8d\xdf\x1c\x7d\xca\x4a\x0c\x7d\xea\x96\xf9\x38\x23\xda\x4c\x17\xcb\x6f\x18\x6d\x06\x80\x05\x0f\xf5\x70\x9c\xc1\xdb\x40\xb3\x97\xf1\x56\x4c\xb3\x5a\xd2\x87\x4d\xd3\x88\xd5\x67\x47\xf5\x62\x39\x22\x93\x66\xc5\x53\x34\x4b\x2e\x5d\x61\x8a\x5e\x57\xc9\xfa\xa5\x1e\x1e\xed\x5c\x0f\x1b\x29\xf5\x34\xbc\x2d\x65\xfd\x8b\x95\xb2\x1e\x3c\x8e\x16\x0e\xdb\xd6\xb3\xfe\x5c\xa4\x68\x43\x88\x9e\x14\x33\xc5\x96\x9c\x67\xad\xdf\x34\x1d\xab\xcd\xb1\x6a\xc4\xd3\x31\x40\xaf\xee\x5f\x4c\x30\xc5\x6c\x80\x58\x67\xfb\x40\xae\xa2\x65\x4b\x24\x13\xc9\xc4\x1a\x90\xe1\x8a\x88\xb3\x70\x84\xe1\xbd\xec\x64\x1f\x76\x35\xdf\x86\x73\x3d\x80\xaf\x25\x79\xdf\xcd\xaa\x63\x94\xe7\xdf\xf4\x02\xa3\xab\x0c\x46\xa4\x78\x8e\xd1\x35\x30\x7e\x0e\xf4\xc1\x7d\xdf\x4d\x43\xe7\x0e\xca\x20\xed\x64\xea\xbe\x4d\xc8\xa5\xe9\xe1\xd9\x56\x2c\x1b\x15\x3f\x16\xb6\x52\x77\xef\xe7\x05\xf9\x98\xc5\x28\x89\x4b\x53\x72\x57\xa8\x30\xdc\x7a\x41\x6e\x71\xd1\x3a\x71\x51\x22\x26\x95\x96\x69\xcb\xd2\x5b\x6c\x0e\x67\xb7\x8c\xb5\x41\xfa\x00\x6b\xc1\x0b\x96\x84\x44\x0d\xe0\x3d\x93\xf3\x29\x31\xb0\xf4\x4d\x1e\x53\x9a\x1e\x60\x24\x1f\x37\x66\xa0\x84\x90\xe5\xf2\x11\x86\x7e\x62\x60\x74\xdc\xf2\x2e\xc2\x75\x1f\x12\xc6\x48\x1a\x4a\x5e\x7a\xfa\x04\x2d\x61\x54\xe6\xa9\x08\xc6\xfe\x15\x43\x74\x33\xa3\x95\xec\xf8\xa9\xe2\x1a\xc7\x8d\x58\x6a\x3c\x1a\xa4\x66\x9f\x4c\x9c\x97\xdf\x02\xfd\x16\xe8\x7f\x1a\xe8\x93\x31\xa5\x65\x99\xf6\x6c\xba\xa1\x06\xf9\x65\x8d\xf6\x96\xef\x22\x19\x4a\xee\x0a\x00\x8c\x69\x60\x54\x07\x98\xe4\x79\xff\x53\x3e\xf8\x96\xe5\x1c\x46\x89\xb2\x14\x23\xbc\x31\x13\x1b\x49\x72\xe5\x95\xe6\x9b\xbe\xb8\x2e\x0b\x5a\xdc\x37\x05\x3e\xec\x51\xad\xee\x39\x4a\xe7\xa3\xa5\x9e\x78\xa3\x58\x9e\x3c\x12\x98\xf4\x82\x72\x50\x6a\xc0\x3f\xf4\xb2\x18\x35\x78\x88\xc7\x03\x5e\xaa\x82\x44\xd8\xd2\xe1\x75\x33\x41\xb9\x88\x2d\xf0\x6f\x30\x48\x6e\x08\xf0\x2b\x52\x8c\xe2\xeb\xc6\xb0\xcb\xca\x8b\x14\xd1\x9e\xbd\xe2\x7c\x9e\x2a\x3a\xaa\x8e\x96\x67\xe8\xa3\x97\x55\x2c\xa7\xb8\x66\x99\x9c\x23\xed\xda\x38\x47\x0f\x95\x06\x46\x72\xfb\x72\x92\x37\xce\xf6\x30\x22\xf6\xd0\x58\x93\x6a\xd9\xd3\xa2\xac\x92\x09\x6d\x03\xd7\xf8\x84\x23\x7e\xd9\x34\xa8\x6a\xb2\x8b\xf9\x4a\x3b\x21\x23\xf6\x7e\x56\x6b\xe7\x6e\x71\x17\xc9\x8f\xda\x98\x20\x19\xaa\x09\x2f\xa5\x56\x9a\xb0\x3b\xce\x06\x7e\x21\xfc\x03\xc2\x2c\x9b\xa6\x9f\x4f\x52\xc5\xe8\xb2\xbc\x20\xb4\x2e\x48\x41\xb9\x5a\x64\x1d\x7e\xf7\xc8\xba\x3b\x8c\xa4\xab\x1b\x9f\x3a\xf0\x34\xc4\xe3\xe9\x18\x85\x3b\x0a\xc3\x1f\x7c\xf1\x52\xeb\x1a\x3e\x6f\xcc\x19\xcc\xad\x7c\xb9\xa5\x36\x6f\x66\xe0\x49\x47\x1d\x41\xca\xe6\x50\x35\x9f\x38\xb9\xe1\xff\xab\x35\x54\x2e\x54\x5d\x52\x03\xb4\x67\x1f\x27\x62\xe6\x72\x26\x48\x8e\xd8\x41\x82\xf4\x28\xde\x23\x41\xe6\xbf\x8a\xfb\xeb\x91\x9e\x44\xc4\x84\xee\xfa\x6a\x13\x17\xf7\x24\x95\x44\x6a\x26\x6e\x48\xcf\x3e\x3c\xbd\x65\x78\x5e\xdc\x36\x7f\x02\x69\x30\xaa\x8b\x75\x44\x9a\xf0\x5e\xa4\x81\xd1\x11\x50\x88\xe3\x26\x46\x2a\x7f\x1e\xbd\x8b\x91\x5c\xc8\x62\xd4\x02\xb8\x4b\x64\x31\x52\x09\x46\xd2\x03\xc1\x48\x2f\x93\x35\x98\x99\x16\x40\x4c\xc5\xd5\xd9\x5b\x8d\xcf\x0b\x34\xdc\xf0\x44\x92\xd1\x74\x3e\x17\xd4\xd2\x87\x71\x12\x16\x70\x2a\x75\x9e\xfb\xe4\xed\x48\x18\x30\x32\x09\x29\xf1\xa1\x9a\x0b\x97\x82\xa5\x5d\x0a\x96\xfe\xad\x28\xd8\x49\x17\x84\x33\x79\x92\x6c\xdd\x3c\x63\xd4\xc9\x6d\x29\xd7\x96\x72\xbd\x0b\xe5\x22\x24\x8a\x7e\xae\xf4\x36\x65\x57\xe5\x1a\x2a\x55\x17\xfa\xec\x90\xac\x38\x42\x82\xe4\xfe\xce\xf3\xdc\xe1\xc5\x45\x5c\x22\x23\x27\x27\xb6\x94\xb4\xde\x8d\x2b\x44\xc7\xf0\x7c\xee\xab\x02\x32\xe9\x9a\x18\xb5\xeb\x7d\x8c\x46\x85\x06\x9c\x91\x9a\x20\x7b\xdd\x15\xa7\x18\x47\xf8\xe1\x9a\x90\x61\x69\xb4\xb1\xce\x5f\xe1\xa5\xe6\xad\x04\xd9\x34\xb7\xe0\xb3\x6e\x1d\x63\xcc\xb0\x70\x65\xf6\x37\x27\x11\xdf\xc7\xa9\x18\xcb\xf1\x0c\x27\xeb\x56\x31\xce\x3e\xf5\xd2\xa8\xe0\x48\x48\x52\xb7\x44\x73\xd3\x61\x71\x43\xa0\x5e\x8e\xe9\x9d\xaa\xb4\x4f\x2d\x3a\xc3\xa1\xaf\x2b\x76\x97\x71\xe8\x5b\xc6\xbd\x99\x48\xef\xea\xcf\x27\x8d\x88\x0f\xaa\x9f\x66\x85\x4a\xc3\x81\xa7\x15\x94\xe2\xb3\x63\x51\x7b\xa6\xbf\xa5\x22\xea\x8b\xa7\x67\x35\x79\x6a\x1d\x13\x14\x99\x96\x19\x78\xe4\x33\x3b\x5c\xa2\x44\x9a\x44\x8a\x84\x56\xf5\xfe\x9d\x66\x99\x03\xb3\xc7\xaa\x0b\xb5\xf4\xae\xba\xa4\x3d\x5f\x4b\xaf\x2c\xd4\xd2\xbb\x4a\xf8\x65\x35\xf6\x29\xb7\x64\x83\xd4\x46\xda\xb5\xd9\x46\x56\xd1\xc0\x48\x7a\x18\x4e\x12\x3b\xf9\x86\x4b\xa2\x6b\x53\x7d\x5c\x62\x8c\x14\xad\x84\x67\xba\x7f\xb7\x1a\x5e\xf5\xf3\x89\x08\x71\x53\xf6\x55\xa3\x1b\x31\xe7\xf3\xfb\x03\xb3\x61\xd4\x31\x93\xe5\x28\x2b\x55\x35\xef\x74\xca\x6b\x24\x47\x22\x4c\xfc\x62\xc9\xb1\xfc\xaf\xd2\x8a\x49\xf1\xde\x70\x63\x02\x49\xa6\xa7\xfd\x9a\x42\xd6\xbc\x7f\x76\xec\xcf\x3d\xaf\xe8\x40\x07\x41\x4b\x82\xd6\xc8\xcf\x4c\xf7\xe6\x6c\xc6\x92\xc9\x04\xb6\x79\xa6\x36\x98\xcd\x98\x20\x64\xb6\xa9\x76\x3b\x66\xaf\xbf\x31\x12\x46\x90\x47\x20\x07\x1c\x43\x41\xdb\xf2\xd1\x9f\x65\xd9\x6d\xca\x02\x8f\x95\x1b\xa9\xd1\x5e\x4f\x37\x0c\x56\x2b\xc7\x90\x7e\x18\x51\xe8\xc7\xd3\xa2\xa9\xb0\xc2\x30\x5a\x8c\x60\xd9\x8d\x7d\x98\xb2\x74\x4c\xaa\xa0\xde\x76\x63\x82\x94\x34\x2b\x05\x64\x6b\x05\xef\x05\x6b\x14\x23\xc5\x6a\xf4\xd0\x59\xb5\x54\x40\xd2\xb7\x06\x46\xd2\xe9\x54\xb2\x19\x92\x3e\xc5\x88\x0c\x6b\x8d\x8d\x55\x34\xcd\x5c\x25\x24\x3a\xeb\x09\xae\x93\xdf\x02\xc8\xdb\x03\x88\x42\xa2\x3c\x51\x4d\xb7\xa8\xa1\xc5\xfc\xe7\x99\x40\xee\x41\xca\xfc\x80\x82\x7a\xf3\x37\x60\xd0\x7b\x39\x78\x2e\xa2\x0c\x54\xd8\x27\x4a\x79\xf7\x4d\xdd\x04\x17\x79\xe0\x4e\xb0\x81\xbd\x4c\x83\x9c\x05\xe4\xc1\x34\xbc\xf5\x50\xf1\x38\xda\x87\x01\x46\x8d\xe6\x64\xc3\xed\xd4\xcb\x45\xbb\x47\xdc\xc4\x92\xc6\x1b\x1b\x1a\xb7\x34\x66\xd3\xef\xb4\x18\x84\x62\x8e\x60\xd7\xbd\x11\x35\xcc\xc7\x61\x77\x52\x1f\x80\x78\x91\x63\xb9\x25\x66\xa3\x3a\x01\x1f\xa8\x66\xa8\x6d\x56\xa8\x25\xf7\xbe\xaa\x1b\xf8\xf3\x57\xb0\x8c\x7b\xb5\xff\x62\xd9\xd2\xaf\xc7\x9d\xb6\x69\x99\x91\xb4\x03\x21\x6f\x10\xe4\xdb\x98\xe0\x0b\xe2\x85\x42\x66\xe8\xd6\xf0\x9a\x7d\xb4\x88\xfa\x50\x9a\x9d\x78\xa0\xdf\xc3\x88\xf0\xba\x7e\x96\x5c\x5f\xa7\xf6\x80\x54\xee\x60\x65\x3c\x2d\x14\x05\xb7\x11\xe4\x9b\x8b\xc5\x48\x8c\x11\xb8\xd1\x35\xc3\xd8\x6c\x67\xf6\x17\xb3\x71\xc8\x67\x65\x2f\x7a\xb6\x94\xc5\x2f\xe4\xe5\x50\x30\x46\x12\xff\x34\x34\xee\x53\xfe\xff\xb1\xf7\x2f\xdc\x6d\xe3\xc8\x1e\x20\xfe\x55\x14\xfd\xef\xdf\x2d\xad\x65\x35\xa9\xb7\xec\x56\x67\x1d\xdb\x79\xda\xb1\x3b\xb6\x93\xee\x4e\x67\xbd\x10\x09\x4a\x88\x29\x40\x06\x49\xdb\x4a\xe4\xef\xbe\x07\x85\x37\x29\x27\x99\xb9\x73\xe7\xce\x9e\xed\xd3\x33\xb1\xf0\x43\xe1\x5d\x28\x14\x0a\x05\xd0\xba\x5b\xcc\x5e\x22\x73\x9b\xe4\x5b\xf7\x70\xff\xde\x7e\xfe\x07\xb0\xfa\x7f\xca\xa4\x1a\xb9\x6b\xcb\x7b\x92\x52\x52\x64\xeb\x0f\x27\x17\xb5\x37\x4a\xc5\xf6\xec\xd0\xce\x16\x94\xd5\x76\xc2\x2f\xce\x35\x55\x63\x89\x76\x9e\x2d\xe9\xf4\xc0\xcc\xdc\x1b\x94\xfe\x1b\x76\xcb\xff\xf5\x3b\xfd\x0a\xf6\xcf\xfd\xb7\xde\xe9\x8c\xbb\x31\xab\x0d\x5e\x1d\x9f\xb4\x59\x2d\x3c\x65\xa2\x96\x5f\xbe\x04\xb5\x93\x24\x0e\x6a\x9d\xf1\x87\xa0\xd6\x25\x15\x03\xf6\xf1\xfb\xa0\x16\xe6\xb3\xff\x11\x03\xf6\xff\xc8\x1e\xf4\x59\x65\xe8\x47\x84\xfd\x3d\x37\xfe\x85\x73\xc3\xbf\x31\xf9\x9e\xa5\x33\x06\xef\x3d\x55\x8e\xd1\x3a\xef\xdb\x47\xff\xe2\x63\xb4\xf0\xd5\x8d\xc8\x74\x99\x1d\x8b\x3f\x7f\x1f\xa5\x7d\x4f\x51\x1e\xbf\xae\x7c\x24\xfb\x03\xe2\x19\xba\x03\x59\x56\x79\xa1\x4b\xc9\x2f\xcf\x84\xa6\x2d\x07\xdd\x5e\xf7\x7f\xdd\x7c\xf0\x4d\xc3\x42\x94\xc7\xac\x16\x1e\xff\xce\x1e\xd7\x2c\xc0\x57\x05\x7e\x0d\xbe\xac\x82\xda\xcb\x0f\x67\x41\xad\xff\xea\xa4\xa2\x5e\x80\x13\xf3\xe2\x58\x3f\xf7\xd5\x37\x4e\x97\x74\x5f\xe7\xb4\xc1\x29\x94\x1c\xfe\xae\x7c\x4a\x2c\x67\xd8\xdb\x6e\x06\xf2\x1e\xb7\xf4\x7f\x68\xa7\x94\x22\xfb\xf7\x5e\x73\x7f\xec\xb6\xcf\xdf\x0a\xcd\xff\x8b\x4a\xfa\xb6\x42\xe3\x7f\xfd\x00\x2d\x19\x67\x5f\xe6\x2b\xbc\xde\x0e\x3a\x9d\xe0\x9b\x8f\xb0\x5d\xff\x33\x4f\xb0\xfd\xf0\xa5\xb7\xff\xce\x1b\x6c\xd7\x35\x7c\xc9\xae\x6b\x5c\x08\xfb\xce\x3b\xd7\x5b\x73\xb4\x08\x6a\xe1\xed\x18\xfd\xbb\xae\x1c\xbc\x09\xbe\x7b\x9c\xfa\xf7\x1e\xfa\x3f\x77\x76\x0c\xe5\x2b\xed\x2f\xcf\x2f\xd6\xe2\xff\x28\x58\x07\xeb\x7a\xab\xfe\x8a\xc6\x04\xd1\x9f\x0f\xe6\x68\xc6\x32\xa5\xdf\xf4\x6b\xdb\xc1\x60\xbd\xd3\x7b\x2b\x74\x9b\x7e\x50\xdb\x19\xc0\x3c\x58\xef\x74\xee\x59\x26\xc0\xee\xfe\x8b\xe3\xb7\xed\xa3\x75\x37\xc0\x1d\x27\x0f\x16\xb1\x6c\xbd\x1d\x0c\xba\xc1\x7a\x67\x50\xac\x83\xf5\xba\x3f\x1e\xd8\xf8\x37\x98\xcf\x0a\x9c\x62\xba\xde\x09\x02\x50\x9f\xb4\xca\xb4\xde\x39\x79\x01\xdf\x06\x0c\x2c\xf5\x09\x9a\x63\x55\x9f\xde\x7a\xa7\xfb\xbc\x7d\xa2\xbc\x5b\xd6\x3b\x9d\xd5\xa9\x08\xaf\x87\x63\xb8\x77\x64\x12\xa4\x31\xb9\xc5\x19\xdc\x3c\x02\xe5\xac\x77\x6e\xf2\x67\xe9\xec\x7c\xdd\xed\x43\x17\x18\xfa\x82\x93\x5c\xec\x79\x54\x29\xca\x31\xea\xd4\xd5\xe5\xe4\xb2\x7b\xcf\xf8\x69\xad\xdb\x2b\xe8\x69\x2d\xec\x09\x4e\xef\x5c\xf3\x00\xcc\xee\xeb\xd0\xcb\xf3\x1d\x2e\x28\x51\x4f\xa7\xe9\x7a\xff\x66\xeb\xbd\x38\x3c\x7c\xde\xfe\x6d\x3d\x92\xda\xe5\x19\x8a\x48\x42\xa2\x9f\xdf\xdc\xa1\xcf\x28\xc5\x84\xae\xb7\xc3\xb0\xb6\x1d\x8a\xbe\x19\xd7\x76\xc2\x4e\x6d\x5b\x74\xfa\x34\xa8\xed\xa0\xa0\xb6\x33\x0e\x6a\x51\x50\xdb\x89\xa0\x5e\x41\xb7\xb7\xde\x09\xaf\x53\x1a\xd4\xd0\xf5\x32\xa8\x0d\xe0\x29\x9d\x0e\x5f\x05\xb5\x0f\x88\x06\xeb\xb0\x07\x5d\x73\x72\x74\xb1\x3e\x11\xa2\xee\x3f\xd2\x4e\xf2\xaf\xf8\x82\x29\x78\xda\xce\x4e\x4e\xfe\xbe\x18\xf2\xb7\xb4\xfc\xd7\x75\x86\x98\x3a\xe7\x17\x6b\xf1\xff\xa1\x12\x94\x27\xe7\x17\xc3\x93\x43\xc0\x6a\x27\x87\x17\xb5\x93\x0f\x17\xb5\x93\x33\x11\x5f\x1b\xa8\xff\xe9\x5b\x1f\xff\xeb\x13\xab\x32\xcd\x06\x21\x37\xfe\x4d\xda\xd3\xe9\x7c\xf6\x36\xa8\x8d\xee\x3b\x41\x8d\xdc\x07\xb5\xdf\xee\x7e\xd0\x53\xca\xbe\x56\xb3\x21\x36\x0b\x83\x5a\xf8\xfe\x8b\xfc\x82\x59\xf8\x6c\xd3\xeb\x36\x8f\xa4\xfc\x4e\x59\x3f\x9a\xb6\x27\xc4\x60\x3a\xd5\xbf\xfc\x16\x3b\xbf\x4a\x74\xff\x9d\x14\xff\x13\xa5\xbd\x13\x02\xf1\xcb\x34\xa8\x9d\x2e\xcb\x3f\xbe\x11\xf5\x8d\x1f\xff\x50\xaa\xff\xd4\x22\x9c\x35\xf3\x60\x8e\xf2\x39\x5a\xac\xb7\xc3\x4e\xd8\x17\xeb\x64\x4f\xfc\xdb\xed\xf5\xd7\x3b\x51\x52\xdb\x89\x5e\xd7\x76\xe2\xd7\xff\xfb\x0e\x01\xeb\x9d\x0f\x37\xfb\x49\x2d\x44\x31\x4e\xe0\x58\x12\xb6\xbf\xef\x2a\xdf\x7f\xf8\x91\x1f\xff\x8a\x54\x20\xee\xe0\xcd\x4e\x79\x1b\x65\xc3\xaf\xd2\x77\x2c\x36\xfd\xfa\xc7\xd3\xfe\x77\x4a\x23\x2c\xa8\x7c\xd1\xe2\xdb\xbf\x4a\x8b\xfe\xbf\x23\x2d\x61\xff\xce\xd2\xbe\x95\x76\x3d\x08\xdc\x89\xb2\xbf\x24\xf2\x72\xc6\x4e\x18\x8a\xed\x6d\x18\xc2\xf6\x76\x3b\xec\x89\xf9\xb2\x9e\xde\xb4\x2f\x6b\xd3\xa2\x36\x0d\x6a\x42\xc7\xc4\x41\x6d\x27\xd6\x46\xcc\x7f\xfa\x51\x8e\xc3\x93\xfb\x76\xaf\x16\xae\x3e\x04\xdd\x76\xaf\xd6\xe1\xef\xa6\x45\x2d\x4c\x12\x55\xd3\x83\x57\x41\x6d\xff\xb7\xff\xcf\x0f\x53\x77\x08\x1a\xba\x1e\xa7\x67\xac\x98\x21\x42\x6f\x49\x9a\xe2\xb5\xde\x03\x6c\x87\xe1\x5a\xeb\xfe\x3b\x53\xd0\x2f\x3a\xeb\x9d\x70\xf0\x61\x15\xd4\x86\x07\x6f\x83\x5a\xe7\xe4\xb7\x25\x9c\xe4\xf4\x3c\xd9\x58\x14\xd7\x3a\x0f\x9d\x7e\xad\x55\x01\x7c\xb7\x0a\x6a\x08\x3e\x1f\xf3\xfe\x77\xf1\x2b\x0e\xd6\xbd\xb1\x57\x97\xa3\x04\xe5\x6a\xef\x05\x1b\x12\xb1\x09\x89\xdb\xb3\x1a\x6c\x45\xa2\xc7\xfc\xac\xd6\x3b\x9d\x74\x4c\x05\x5d\xe7\xfc\x4b\x24\xfe\xca\x25\x99\x89\xc5\x39\x30\x4e\xd6\x70\x48\x99\x3c\xfb\x07\x14\x00\xe3\xa0\x0d\x37\xf3\xde\xc6\x41\x6d\x9f\x06\xeb\xc1\xc0\xaf\x33\x8d\x31\x9f\x16\x7c\xb5\x16\x1b\xa7\x1d\xa8\x77\x77\x1d\x05\x82\xb3\x15\x4b\xaf\xe9\xab\x28\xa8\x3d\x1b\xfe\x1e\xac\x43\x27\xe5\x73\x74\x8d\x58\xc2\xd6\x3a\x8d\x49\xb0\x0e\x5f\x24\x34\x58\xf7\x46\x6e\x39\xcf\xc9\x67\xa2\xba\xa6\x03\xe4\x3b\xd3\x8b\xf6\x2b\xd1\x2d\xba\x98\xff\xae\x8d\x77\x7a\xf9\x45\xe4\xd8\x5d\x8c\xde\x8a\xbf\xe6\x22\xa0\x58\x3e\xe8\xeb\x48\x99\x5f\x59\xe0\x7c\xff\x07\xbe\x44\x66\x3e\x49\xf6\x5b\x10\xd4\xee\x45\x57\x9d\xbf\x0d\x6a\x85\x60\xbf\xf3\x13\xf5\xe3\xfd\x7e\x50\xcb\x82\x4d\x3f\x3a\x01\x0b\x6a\xcb\x48\xfd\xa8\x22\xdf\xf8\xf1\x8d\x7c\xbe\x93\xea\x9f\x2a\x62\x3d\xf2\xd9\xfd\x05\x4a\xd1\xd2\x58\x2f\x76\x82\x7e\x6d\x27\x18\xac\xfb\x1f\xda\xac\xd6\x57\x5a\x39\xac\xc4\xe1\xea\xfd\x79\xd8\xde\xaf\x75\xe2\x8b\x2f\xe2\xef\x4c\x70\x12\xff\x12\xac\x3b\x7d\x8f\x93\x5e\xa0\xc5\x94\x60\xae\x72\x1b\xaf\x47\xbf\xb7\x4f\x6a\x63\xb5\x83\xff\xcc\x92\xa0\x1d\xad\xc3\x4e\xdf\x4d\x51\xa0\x18\xa5\x11\xa2\x28\xd5\xb3\x66\xbd\x83\x0e\xdb\x27\x6a\xd2\x42\xba\xd5\x61\xfb\x44\x3b\x32\x38\x09\x17\xeb\x17\xf0\xfa\xd6\xb8\xf6\xe2\xf0\xa2\x76\x30\x17\xfb\x74\x3b\xe3\xc5\xce\x1f\x66\x7d\xe9\xbf\xee\x7a\x27\x1c\x7d\x7e\x13\xd4\x06\xcb\x67\x41\x6d\x7f\xfe\x2c\xa8\x75\x7f\x3b\x0e\x6a\xb3\xce\x32\xa8\x75\x97\xe3\xb0\xf6\xe1\xf4\x77\xe9\x03\xf5\x25\xd6\x9f\x1a\x5e\xca\x1f\xfd\xfb\x58\xba\x47\xf5\xb3\xb7\x41\xed\xcb\x34\x14\x4a\xc9\xef\x70\x05\xf5\xf2\x78\x0a\x66\x54\xb7\x8e\x2f\x19\x65\x69\x91\x16\xeb\x97\xe7\x17\xb5\x97\x87\x17\xb5\x97\x1f\x2e\x6a\x2f\xcf\x2e\x6a\x60\x45\x2a\x6a\x63\xfd\x3f\x55\xd3\x6e\xd0\x5b\xef\x84\xf9\xfc\xb8\xa8\x8d\xee\x83\x5a\x8a\x93\xa0\x36\xba\xfb\x50\xd4\xc8\x7e\x51\xeb\x0d\x96\x20\xf9\x3c\xf3\x07\xe1\x24\x27\x0b\x94\x93\xf5\x4e\x18\xf4\x02\xbd\x3e\xad\xd1\x91\x5a\x93\xd4\xe4\x45\x47\x62\xf2\x5e\xaf\xfb\x21\x58\x9d\x4c\x7a\x96\x71\x84\xa5\xed\x04\x64\x66\x60\xed\x26\x63\x65\x3b\x89\x64\xdd\x42\xb8\xb5\xd2\xc1\x77\x5f\x84\xe0\x3b\x08\x6a\x2f\x9f\xad\x94\x01\x45\xc8\xc1\xda\x87\xd3\x37\x41\x2d\x9c\xc6\x5f\x40\xbc\xb8\x85\x9c\xa0\xcf\x05\x67\x3f\x5a\xc8\x23\x65\x0c\xde\x09\xb1\xd7\x29\x16\xc1\xba\x33\xf2\x78\xee\x04\xf1\x9b\x02\x67\x48\xf3\xf0\xb8\x1b\xac\xc7\xa4\x36\x2e\x34\xf7\xe0\x17\xeb\x91\x5f\xa3\x33\x34\x63\x57\xe2\x1f\x48\x72\x7e\x7e\xb1\x9e\x2e\xda\x27\x35\xcd\x70\xf4\xf0\xe4\x59\x3b\x12\x7d\xed\x26\x7a\x8b\x0a\x5e\x68\x1e\xed\xea\x45\x46\xb4\x63\xd8\x3e\xaa\xed\x4c\x0b\xd9\x1a\x25\xe3\x05\x97\xfd\x1e\x53\x11\xf5\xdb\x01\x7d\xd6\x3e\xaa\x0d\x17\x37\x45\x2d\x4c\xe9\xb4\x58\x87\x81\xd7\x82\xb7\xa4\xc0\x42\x84\x82\xf9\x5c\x69\x1a\xeb\xe9\xb5\xd4\x2d\xa4\xf5\xf0\x4d\x72\x72\x54\x0b\x87\xab\x00\xad\xc3\x8e\x5f\x2d\xc6\x13\x96\x8a\x35\x2b\x04\xa9\x0a\x55\x0b\x3b\xf0\xaf\x5e\x80\x22\x59\xbd\xa8\xf0\x96\xa1\x1f\x7d\x67\xe5\xcd\x6c\x1a\xd5\x3e\x04\xe1\x0b\x75\x08\x25\xfe\x1d\xbf\x8e\x8a\x7f\x8f\x6d\xe7\x5f\x6b\x4e\x12\x02\xab\xe7\xf5\x5e\xb1\xc0\xa8\xb4\x5e\xf7\xa5\xf4\xf1\xd6\x6b\xb9\x42\x8b\x98\xce\xd1\xcd\x89\xf8\x7b\x2f\x24\xc4\xd9\xb3\xa0\xb6\xa2\x41\xed\x25\x3e\x83\x15\x64\x3d\xf6\x99\xf3\x8c\xe4\x11\x22\x9c\xae\x77\x82\x91\x18\xd8\x60\xb4\x1e\x15\xb5\x91\x5c\x22\x47\xef\xaf\x8b\x75\x7f\xe0\x92\xb3\x39\x5d\x62\xe2\xce\x15\x77\x9e\xa8\x39\xf2\x8d\x69\xb8\xee\xf6\xbc\xf2\xdf\x21\xce\x72\x46\x67\x48\xc8\x07\xa8\xc0\xb8\x2b\x5f\x44\x47\x56\xf0\x3c\xbe\x05\x4b\x57\x1f\x8a\xda\xab\x63\xd8\x06\x15\xb5\x53\x5a\x94\x7e\x80\x76\xba\x39\xea\x1b\x3f\xbe\x9d\x6a\x1d\x76\xbd\x26\x5c\xa0\x39\xc9\x89\xd2\xc3\x83\xf5\xf8\x43\x7b\x26\xab\x2d\x27\x77\xd8\x7e\x55\x56\xe2\x2e\x44\x83\x73\xb4\x2c\xc4\x16\xb7\x23\x26\x42\x17\x84\xe2\x4e\x74\x2d\x14\x0d\x2d\x16\xcd\xc8\x86\xe8\x59\x70\x5d\xeb\xd0\x7e\x7c\x2d\xdf\xa6\x02\xc5\x00\xd4\x80\xdf\x42\xf9\xe3\xcb\x87\xb7\x72\x01\x1d\xaa\x05\xef\xfc\x62\x74\x76\x78\xb1\x3e\x3b\xbf\xa8\x9d\x1d\x5e\xd4\xce\x3e\x5c\xd4\xce\xce\x2e\xd6\xa3\xa0\x36\x54\xff\xfb\x4f\xb6\x68\xdd\x3c\x66\xd1\x0a\x83\x1a\x59\xfd\x6d\xd1\xfa\xdb\xa2\xf5\x9f\x5f\x44\xbd\x55\xff\x70\x74\x61\xde\x62\x5f\xeb\x0f\x3d\xfc\xef\xcd\xac\xf9\xe1\xb3\xbf\x8f\x52\xfe\x3e\x4a\xf9\x17\x1e\xa5\x7c\x6a\xd5\x53\x42\xaf\xb3\xfa\xee\xc7\xfa\x7e\xc2\x49\x84\x7e\xde\x9f\x92\xf8\x33\xa2\x6b\x15\x7c\x86\x16\xe8\x9a\xd5\x5b\x8f\x46\xd3\xcf\x45\xfa\x68\xf4\x01\xa3\xe8\x9a\xaf\x1e\x8d\x3f\x44\xd7\x88\x3f\x1a\xfb\x9c\x63\x9c\xb3\x3b\xfa\x28\xc1\x31\x5b\xe0\x47\x23\xdf\xb2\x02\x5d\x47\x73\x96\xe7\x8f\x92\x9c\x16\x68\x86\x62\x56\xcc\x58\xf1\x28\xcd\x05\x59\x4c\x8b\xeb\x7c\x13\x41\x9e\x22\x9a\x93\xe8\xe7\xf3\xfc\xea\x25\x4e\x31\x45\x96\xe6\x00\x11\xce\xd6\x47\xb3\xd5\xd2\x29\xfd\x35\x9b\x23\x4a\x71\x36\x2d\xf8\x4c\x67\x7f\x82\x32\xcc\x8b\xef\xd0\x4c\xd1\x14\x51\xa7\xa5\xc7\xb0\xa5\xb6\x43\x30\x2b\xc8\x63\x91\x1c\x7d\xf9\x82\xc0\x72\xf5\x08\xc5\x21\x2b\x50\x8a\x1e\x89\x7c\x43\x68\x36\x47\xd9\x63\xd1\xc7\x64\xca\xf1\xb7\x32\x3f\x2e\x10\x8d\x1f\x4b\x7d\x82\x52\x34\x65\x8f\x44\xbe\x25\x68\x81\x57\x8f\x44\x9e\x31\x9e\xb3\x9d\xb7\xec\xd6\x49\x7d\x82\x96\x45\xce\x4c\xbb\xc5\xd0\xac\x38\x7e\x34\xbe\xf8\x5c\x2c\xa6\x05\x47\x8f\x11\xbc\x40\x53\xc6\x19\x7d\x34\x83\x97\x88\xa3\xc7\xb3\x7f\x43\x66\x28\x25\x8f\xc5\x1e\x17\xd3\x62\x31\x45\xd9\xfc\x1b\x14\x19\xba\x76\xea\xf6\x56\xb0\xd3\x94\xe8\xe8\xfd\x38\x26\xd9\xd5\xbe\x60\x8b\xc7\x69\xb2\x05\xe2\xdf\x8c\xc6\xdf\x88\x3e\x44\xfc\x0a\x67\x57\xe7\x28\x45\x68\xf1\x38\xd5\x67\x32\x65\x45\x4e\x1e\x25\x78\x83\x16\x4b\x8f\xbb\x4a\xf1\x27\x6c\x86\x62\x92\xcd\x8b\x2a\x85\xf2\xda\xd8\xa7\x39\xa2\x88\x22\x4e\xdc\xc1\x2e\x11\x1d\xb0\x05\xe3\x8f\x47\x9f\xa0\x15\xcb\x73\x67\xb0\x2e\x38\x59\xb2\x94\xac\x8f\xc9\x74\x05\x95\x5b\x60\xd5\xaf\xe8\x7a\x6d\x02\xf9\x75\x25\xee\xf2\xfc\xe7\xfd\x14\x17\x39\x41\xd4\x8d\xa2\xd1\x9c\x71\x34\xc3\x32\x1e\x65\x7e\x42\x3e\xc3\x34\x27\x54\x30\x1d\xa6\x2c\xbb\xda\x27\x1c\x67\xa6\x18\x17\xdc\x98\xea\x00\xe5\x68\x81\x78\x84\xd6\x1b\xe2\xd8\x82\xc5\xef\xc8\x2d\x8a\xd1\x2d\xd9\x5c\x68\x35\xb9\x41\x36\xd3\x33\x1e\xb3\xa9\x43\x2d\xc3\x3f\x44\xfb\x8e\x65\x88\x13\xb6\x91\xf6\x75\xf1\xb9\x58\x19\x4a\x08\x6d\xa4\x3b\xc1\x34\x66\x5f\x6c\x9e\x2a\xec\xd2\xe6\xe4\x9a\x5d\x0b\x01\x6c\xab\x88\xd2\xab\x97\x88\x4f\x59\xc1\x1d\xc2\x83\x39\x89\xd0\x8c\x89\x51\x39\xc0\x34\xe7\x28\x75\x23\x0b\x8e\x22\xc4\x9c\x4e\x2d\xbc\x56\x96\xe3\xdf\x70\x94\x62\x1a\x93\xcf\xd7\xdf\x20\x3a\x66\x77\x98\x5f\x9d\x71\x42\x23\x6f\x34\x0f\x31\xbd\xc5\xdc\x90\x9d\xcf\xc9\x92\xb3\xe8\xba\x4a\xf1\x16\xdd\xa2\xcf\xac\x8a\x5f\x9e\xff\x7c\xc2\x0a\x9a\x23\x42\xbd\xc8\x9c\x33\x92\x43\x2c\x89\xe6\x64\xe6\xb1\xe5\x51\xbc\x60\x34\x67\x74\x7d\x80\x28\x8a\xd1\xa6\x0c\x9e\x33\x9e\x5f\x7d\x40\x2b\x8a\x4d\xdd\xe4\x9c\x31\x7f\xc5\x3c\xc9\x7e\x28\xc5\x37\x28\x2f\xcf\x7f\x3e\x42\x59\xbe\xa3\x28\x1d\xa2\x97\x28\x25\x09\xba\xd7\x55\xd4\x4b\xaa\x47\x71\x8b\x28\x5a\x1f\xf8\xa3\xa3\x6b\xf9\x86\xb2\x7b\x3b\x44\x94\xdd\x5f\xbd\x7a\xfb\x18\xd9\xe5\xb9\x0e\xef\x9c\xe7\x88\x5f\x63\x87\xf0\x35\x5a\x20\x12\xa1\xb5\xfa\xeb\xc4\xbc\xc1\x34\x2f\xa2\xeb\xd5\xcf\xc7\xac\x20\x99\x3c\x03\xb2\xc3\xad\x21\x27\xc1\xb1\x98\xcd\x74\x86\x53\x9c\x89\x22\x95\xd1\xe0\xbb\x04\x3b\x6f\xf1\x9d\x43\x74\x82\x28\x2a\xb2\xb5\x58\xbf\x49\xfa\xf3\x07\x9c\xe5\x5e\xe4\x17\x24\x7a\x6a\x7d\x82\xef\x49\xc4\x7e\x7e\x86\x3e\xa3\x73\x8f\xf5\x65\xc4\xd5\x01\xc9\x57\x9a\xe8\x05\xa6\xd8\x9f\x02\x6f\xf1\xdd\xd5\x1f\x8c\x5f\xeb\xf1\xc1\xdc\xe5\x8d\xb7\x62\xfd\x9b\x23\x5d\x85\x43\xac\x00\x87\xe4\x0c\x51\xb4\x70\x05\xcb\x6a\xe1\x71\xe0\xd9\x9c\x61\x4a\xa0\xe7\xf7\x39\xf9\xc2\xbc\xa1\x17\x8b\xf8\x15\x4b\xae\xce\x97\x88\xd8\xb9\xbc\x2f\x94\x99\x34\xfd\x11\xc2\x9c\xcc\x8a\xef\xd3\x1d\xb2\x05\xa1\xfe\x90\x6e\x26\x7c\xc1\xb1\xe0\xc1\xef\xd3\x15\x28\xc6\x29\x2b\x96\xf8\xbb\xa4\x27\x88\x93\x19\xcb\xbf\x4f\xc7\x68\x9e\x61\xce\xd1\xf7\x49\xcf\xf3\xab\x67\x88\xe7\x73\x9c\xe2\xc5\xea\x47\xa8\xdf\x90\x3c\xcf\x7e\x84\xf0\xb8\x88\xc8\xf7\x5b\x7f\x9e\x5f\x5d\xcc\xd9\x02\xfd\x50\x96\xef\x85\x1c\xa4\xdf\x6f\xd4\x85\xd0\xe7\x7e\x60\xcc\xdf\x13\x3e\xf3\xe4\xd7\x3b\x3c\x23\x42\x38\x48\xe9\x71\x2e\x56\xde\x3c\x9a\xe3\x3b\x8f\x0b\xdf\x11\x76\xf5\x8c\x23\x1a\x59\x39\x0d\x0a\xe4\xd5\x7e\xc4\xf1\x66\x3a\xc5\xf3\x25\x82\x73\x21\x9b\xc4\x82\x72\x30\x27\x29\x16\x9b\x9b\x9c\x50\x4c\x73\x6f\x52\x9d\x23\x76\x75\x86\x8a\xd4\x64\x22\x66\x96\x1b\x9f\x5f\xbd\x66\x73\x9a\xe9\x4a\xbf\xc5\x77\x09\x2b\x68\x9c\x22\x1a\x3b\x64\x17\xe4\x73\x21\xe4\x9e\x11\xe6\x34\x2b\xb3\x67\x99\x44\x54\x0f\x5d\xbd\xca\xd0\x14\xa7\x1b\xc8\x1c\x59\xf1\x96\xf1\xdc\x6d\xd8\x85\x98\xd9\x39\xf3\xf8\x91\x63\xaf\x59\x9a\x44\xd5\xba\x2a\x2e\xde\x8b\x8e\x2b\xc4\x5a\xa5\x48\xaa\x82\xef\xc3\x9c\xe4\x78\xce\x78\x86\x35\xcd\x1f\xc5\x35\x73\x33\xf9\x40\x28\x25\x4b\x3c\xd3\xf1\xce\xb2\x9d\x11\xa1\xb4\xce\x67\x68\x8a\xf2\xb5\x0e\x5d\xcf\xd1\x14\xc5\x3a\x5a\xec\x84\xae\xd9\xb5\x8c\x3d\x9b\x53\xb6\xb8\x3a\xc3\x74\xbe\x31\xfa\x3d\x11\xfa\x86\xda\x55\x09\xe0\x70\x8e\xae\x91\x8c\x3b\x44\x91\x94\x17\x10\x28\xa6\x88\x48\xfc\xa4\xc8\x22\x39\x45\x45\xe8\x25\xbb\x3a\x98\x93\xab\x13\x42\xe7\x32\xfa\x1c\x91\x99\x6c\x8d\x8c\xa6\xb3\xab\x37\x8c\xce\xd6\xe2\xd7\x35\xa3\x33\x1d\xf3\x1a\xf3\x22\x43\x29\x5e\xc8\x64\x17\x38\xbd\xda\xbf\x25\xb7\xd5\xe8\x57\x19\x47\xd8\x34\xfe\x0d\xca\xe7\x0b\x44\xe3\x62\xad\x83\x10\x32\xd1\x2c\xbd\x46\xb9\x6a\xc1\x01\x4a\xa3\x22\xcf\x4d\x23\xde\x88\x3d\xde\xd5\x71\xb1\x58\x16\x5c\x55\x96\xd0\x19\x5a\x32\x8e\x37\x92\x54\x62\x4f\x50\x84\x54\xc1\xe2\x27\xb3\xf8\x35\xca\x32\xa4\x32\xbd\xfc\x5c\xd0\xd9\xd5\x99\xd8\xf3\xd9\xe6\xbe\x25\x11\xcb\x08\x5a\xab\xbb\x1f\x2a\xa8\x63\x7f\x43\xb9\x4e\xfd\x0c\xcd\xb9\x52\x4f\x44\xf0\x1d\xa2\x33\xc6\xa8\x8c\xfb\x43\x04\x6c\x14\x59\xa1\x58\xf5\xfa\x7e\x8c\x37\xe2\x6f\x8a\x3b\x44\xcc\x60\x9d\x63\x56\xa4\xeb\x77\xa7\x6f\x0c\x30\x47\x74\x36\xd7\x23\x7b\x30\x67\x74\x76\x43\x6c\xa5\xcb\xd1\x05\x9d\x5d\x3f\x1a\x2d\x34\x4f\x5b\x6f\x13\x77\xf6\xee\x40\x63\x17\x88\x2c\x31\x59\xbf\x3b\xb5\x08\x9e\x73\x44\xd7\xaf\x38\x32\x09\x2f\xe6\x64\xb1\x9c\xab\x5e\x16\x81\xa9\x19\xdc\x0b\x76\xbd\x62\xeb\xd7\x68\x69\xa9\x2f\x53\x84\xe8\x14\xd9\xee\xbb\x4c\x11\xbd\x7a\x86\x72\xc6\x0d\x09\x2f\x16\x37\x44\xb3\x8b\x98\x3b\x10\xa5\xcd\x16\xcf\x11\x67\x78\xed\x04\x31\x67\xd8\x25\x78\x87\x57\xd7\x9f\xd1\x2d\xb9\x5e\xbf\x8a\xb0\x96\x4f\xc6\xe8\xc1\x8a\x7c\x7e\xf5\x02\x33\x3e\x13\x83\x9b\x47\x3f\xbf\x38\xb9\xd8\xee\x08\x92\x22\x13\x93\x56\x8e\x4d\x8a\x48\x8c\xd7\x16\x82\x64\x1e\xd1\x33\x4e\xb2\x29\xa2\x2e\xd1\x6f\x05\xc6\x34\xd3\x25\x3a\x94\xec\x1a\xd3\xab\x97\x24\x4d\x1d\xe2\x3f\x84\xe0\xb9\x23\x54\x2a\x17\x06\x3e\x44\xfc\x4e\x2c\x1d\x06\x10\x42\xcf\x2f\xf9\x25\x9b\x22\x9e\x3b\x24\x17\x28\x5b\x20\x4a\xfc\x8c\x8e\x19\x8f\xaf\x5e\xb2\x3b\xb7\x82\xc7\x2f\x5f\x79\x34\x27\x38\x15\x7b\x0f\xaf\x11\xef\x49\x94\x33\x5e\xca\xec\x0c\xf3\x7c\xee\x10\x69\xc5\xce\xf6\xcf\x2a\xa6\x78\xe5\x50\xec\x1f\x5c\x7c\x9b\xe0\x00\xd1\xa9\xd0\x1d\xbe\x4d\xf5\xf6\xfc\x43\xbd\x55\x57\xc3\xb4\x13\xe8\x01\xdb\x84\x6d\x07\x9b\xd0\x0d\x20\xc7\x98\xde\x91\x68\xee\xc5\x94\x33\xad\x66\x08\xff\x96\x91\x12\x50\xca\xfa\xf2\xe2\x00\x8a\xbc\x3c\xb8\x28\x23\x94\xdc\x62\x9e\xc1\x1a\xe1\xe2\x7f\x16\x69\xe1\x40\x7e\xc2\xcb\x8b\x03\x37\xb4\x21\x0b\x9d\x5c\xca\xac\x67\x38\x9d\x71\x14\x63\x2d\xc3\x8e\x3f\x17\xd3\xf4\xb3\xdc\xc9\x3c\x42\x72\xc6\xe2\x19\xe3\x52\xef\x7c\x84\xe4\x1c\x71\xf4\x19\x83\x59\xe3\x31\x8a\x6b\xb6\xfc\x8c\x1f\x8f\xff\x13\xcd\x38\x9e\xda\xf8\x83\x39\xc9\x08\x45\xc5\xda\x79\x96\x2b\x5b\xb2\xd4\x52\x1c\x16\xd3\x94\xd0\xf5\x11\xe1\x4e\xb6\x2f\x71\x9a\x11\x7a\x4d\xd6\xe6\x83\x94\x9c\xe0\x39\x5a\x50\x4b\xf2\x2a\xcb\x11\x9d\x16\xa9\x14\x26\x3a\xb4\x21\xfe\xa2\xe0\xd7\x60\xb7\xd3\x5d\x45\xb2\x29\xa3\x6b\xa1\x70\x15\x33\xe4\xa4\x38\x66\x34\x66\x74\x6d\x5b\x96\x48\x3d\x69\x63\xf4\x8b\x02\x73\x9a\x79\xf9\x7a\xf1\xaf\xb2\x14\x0b\x75\xf1\x04\xd1\xc7\x48\x5e\x63\xbe\x29\x83\x17\xcf\x36\x40\x3b\x7e\xff\xa8\xaf\x26\x7d\xd8\x39\xbf\xb4\xe0\x69\x96\xb2\xf5\x3e\x8f\x84\x2c\x3c\x66\x74\xb6\xc2\x88\x4f\x57\x98\x96\x29\xb4\xbc\x7c\x8d\xe8\xd5\x09\xf2\x08\xce\x38\x9a\x15\x66\x30\x9f\x71\x94\x93\x2c\x45\xb7\xa8\xf4\x6c\xbf\x61\x17\x91\x01\x27\x94\x6d\x8e\x7f\x8f\x72\x12\xb9\xed\x57\x37\xad\xcf\x98\x12\xa4\x9a\x69\x0a\x4e\xa2\xb9\x29\xb5\xc8\x08\x9d\xb9\xb5\xf2\xe3\xdf\xa3\xb8\xf8\xe2\xde\x45\xe3\x24\xcb\x17\x28\xd3\x62\x61\x67\xe8\x3a\xb4\x16\xd1\xb5\x28\x6c\xbd\x4f\x73\x04\x5d\x83\x7e\x3e\x89\x4e\x0a\x1e\xb3\xef\x50\xc9\xd5\xe4\x8c\xc1\x4e\xba\x42\xf8\xf6\xcf\x0d\xee\xe5\x6f\xff\xdc\x39\x78\xb9\x7f\x51\x71\xae\x34\xa7\xf4\xbc\xb8\x7e\x34\xf2\x0f\xb4\x74\x1d\x14\x41\x9b\x55\x6a\xbd\x0c\xbc\xd2\xcb\x8f\xe7\x0f\xa6\x03\xe7\x88\xc8\xa5\xb8\xe2\x89\xa5\x01\xd0\xf1\x73\xb6\x91\xe6\xf2\xfc\xe7\x97\xe8\x0e\x11\xb2\xf1\xa2\x99\xf9\xb5\xd1\xa1\xc8\x78\x25\x91\xf8\x0e\xad\xbe\x49\x72\x8e\x16\x0c\x6d\xa4\xb8\x3c\xdf\x10\x99\x0a\xb9\xa1\x06\x75\xbc\xc1\x67\xc4\x86\x29\x5a\x62\x8f\x80\xe7\x57\x27\x8c\xe3\x6c\xba\x32\x39\x84\x81\xe7\x62\xc1\xd1\x1d\xb2\x71\x9d\x6a\x9c\xf1\xe1\x2c\x28\x4a\xa4\x49\xf9\x11\x8a\x0f\xe8\x1a\x7f\x2b\x36\x4d\x49\x56\xff\xf4\xf0\x53\xf3\xa1\x95\x14\x34\xca\x09\xa3\x0d\xdc\xca\x5b\xb4\xf9\xb5\x5e\x64\xb8\x96\xe5\x9c\x44\x79\x7d\xef\x74\xfa\x19\x47\x79\x3b\xc6\x09\xa1\xf8\x4c\x30\x3b\xcf\x57\x8d\xbc\x55\xbf\xba\xc2\xd9\x09\x8b\x0b\xc1\x8b\x5f\x6f\x51\x5a\xe0\xdd\x27\xc1\x43\x73\xef\x16\xf1\x1a\x9f\xd4\x75\xa6\xf5\xc9\x64\x92\xaf\x96\x98\x25\xb5\xf3\xd5\x62\xca\xd2\xad\x2d\xf9\xb7\x9d\x30\xde\x62\x13\xfe\xd4\x06\x1b\x75\x8e\x51\x94\xb7\xc5\xae\x5d\x6c\x88\x9b\xbb\x83\x20\x0c\xba\x2d\xb2\x91\x6a\xc9\xb8\xd8\x53\x4a\xa2\x41\x0b\x6d\x24\x4a\x38\x9a\x39\x79\x0d\x5b\xd9\x46\x32\xd9\xda\xab\x05\x8b\xb1\xa2\x1c\xb5\xa2\xcd\xa5\x72\x96\x90\x14\x73\x49\x16\xf6\x5a\xe9\x63\x64\xb7\x24\xd6\x64\xc1\xb8\x55\x6c\x24\x8b\x18\xcd\xf1\xbd\xaa\x5d\x18\xb4\x96\x1b\xa9\x50\xb6\xa2\x91\x53\xb9\x30\x6c\x25\x8f\x65\x17\x15\x9c\x63\x9a\xfb\xd4\xf1\xe6\xbe\x61\xfc\x0e\xf1\xf8\x8a\xe3\x44\x51\x76\x5a\xf3\xcd\xdd\x53\x64\x4b\x4c\x33\x9d\x61\xb7\x35\xfd\x26\xd9\x55\x4a\x32\xd5\xa6\x4e\xd0\x5a\x6c\xa4\x5d\xe0\x05\x53\xd9\xf5\x5b\x27\x1b\x49\x52\xf4\x65\xa5\x48\x06\xad\xd9\xe6\x26\x14\x34\x46\x0b\x69\x5c\x90\x94\xc3\xd6\xed\x46\x4a\x8e\xb3\x25\xa3\x66\x44\xc2\x51\x6b\xb5\xb9\x0d\x11\x5b\xea\x76\x8e\xf7\x34\x17\xd7\xf6\x1b\xb8\xf9\x95\x24\x8d\x3a\x83\xf9\xe0\x70\x35\xde\xda\xa2\x45\x9a\x3e\x99\x4c\x70\xf3\xab\x60\xfe\x7c\x82\xdb\xff\xf5\x5f\x32\x76\x2f\xbb\x23\x79\x34\x6f\xe4\xcd\xaf\x11\xca\x70\x8d\xed\x2a\x00\x4f\x70\x5b\x90\x28\x7c\xb9\x0b\x7f\x12\xf9\x07\xc9\x3f\x91\xfc\x93\xc9\x3f\xf3\x5d\x8e\xf3\x82\xd3\x1a\xde\x8b\x71\x82\x8a\x34\x77\xf2\xda\xda\xb2\x65\xaa\x2c\x0b\x99\x2c\x96\x7f\xd2\x6a\x6a\x05\xe4\x0f\x0f\x40\x71\x22\x09\x17\xf2\x0f\x71\xa2\x1f\x4c\x2f\xdc\x89\x5e\x50\x11\xa2\x47\x26\x93\x49\xf2\x90\x43\x43\x4e\x93\xc9\x7e\x2b\x6f\xef\x0b\x56\x3d\x61\x31\x9e\x2c\x5b\x79\xfb\xc0\xf0\x23\x40\x89\x84\x04\xc7\x1f\x30\x9a\x15\x0b\xcc\x27\x85\xc5\xce\xd4\x9c\x99\xa4\xad\xbc\x7d\x24\x65\xc0\x84\xb5\xf2\xf6\x73\xc9\xa8\xef\x70\x32\x89\x45\x50\xcd\xe9\x09\x6a\xe5\xed\x63\xf4\x65\x35\x39\x69\xe5\xed\x13\xbc\x60\x93\x45\x2b\x6f\x9f\x81\x5c\x98\x10\xf1\x53\x4d\xd6\x49\xd4\xca\xdb\xe7\x30\xc7\xa1\x22\x99\x08\x2a\x66\x9d\xcc\x5b\x79\x9b\x64\xef\x51\x4a\x62\x55\xe8\xc5\x6a\x89\x27\x56\x2a\xea\x26\xd7\x85\x94\xa0\x33\x77\xec\xd7\xeb\x4d\x82\x0e\xaf\xd7\x78\x32\x99\x20\xf9\x27\x91\x7f\x22\xf9\x27\x93\x7f\xe6\xf2\xcf\x74\xbd\xfe\x26\x47\x6d\x6d\x35\xec\xc0\x4e\x26\x93\x93\xf5\xda\x0b\x2f\x4a\xe1\xb4\x14\x2e\x4a\xe1\xb8\x14\x9e\x95\xc2\xb7\xa5\xf0\xaa\xf9\x00\xbd\x63\x87\xb5\xda\x2d\xc0\x15\xeb\xb5\xe2\x87\xa5\x4c\x50\x1a\xf9\x3b\x0d\x7a\x63\xbf\x21\x2f\x95\x4b\xf1\xe0\x26\x30\x8c\xf1\x78\x82\x54\x26\xd0\x5c\xb3\x61\xf0\xbe\xdd\xcd\x5e\xab\x99\xcc\xcc\x61\xbb\xc7\x0b\x8e\x15\xad\xe6\xc9\xc7\x29\x91\xa4\x04\x86\x7d\x9c\xea\x44\x52\x01\x37\x3f\x4e\xb5\x90\x54\x8a\xd5\x1f\xa7\x23\x8a\x4e\xcf\x83\xc7\x29\x23\x49\xe9\x4c\x92\xc7\x69\x33\x45\xab\x67\xd0\xe3\x94\xf3\x87\xaa\x7a\x21\x15\x04\xda\x08\x3b\x83\xe6\x1e\x6e\xe3\x7b\xb1\x90\x67\x5e\x26\x24\x69\xe0\x5f\x27\xfd\x7e\x67\x3c\xd8\xda\xc2\xbf\x4c\xfa\xc3\x6e\xaf\xbb\x5e\xe3\x5f\xc3\x30\xec\x85\x61\xd8\x54\x63\xfa\x57\x91\x24\x49\x5c\xdf\xc3\x35\x42\x6b\x5c\x4c\x96\x09\xff\x88\x3f\x49\x25\x24\x9f\xd4\xeb\x7b\xf8\xd7\x41\xbf\xdf\xed\x8b\xa8\x9d\x89\xf8\x39\x68\xe5\xdb\x93\x73\x98\xc8\xed\x84\xb3\xc5\xc1\x1c\xf1\x03\x16\xe3\x06\xfe\xf5\xd7\x5f\xc3\x60\x2b\x0c\x3a\xdd\x35\x94\xdc\x6c\xe1\x49\x7f\xd0\xed\x04\x6b\x81\x6d\xe1\xe6\x9e\x16\x89\x8f\x64\xd0\xf4\x1a\xdb\xfc\x6a\xdb\xf6\xfa\xfc\xf4\x6d\x7b\x89\x78\x86\x1b\x3f\x7d\xad\x07\xf5\x5d\x51\x93\x6e\xab\x1e\x76\x46\xf5\xdd\x51\x77\xd0\x6b\xd5\xc3\x6e\x50\xdf\x1d\x75\xc2\x91\xf8\x19\xd6\x77\x7b\x41\x47\xfc\xea\x08\xb0\x03\x3f\xbb\xe2\x67\x37\x10\x3f\x7b\x80\x42\xaa\x3e\xfc\xec\x8b\x9f\x83\xfa\xee\x30\x84\xf8\xa1\x00\x7b\xf0\x73\x54\xdf\xed\xf6\x21\xfd\x18\xc0\x71\xab\x1e\xf6\x82\xfa\x6e\xb7\x2b\x4a\xea\x75\xea\xbb\xdd\x51\x28\x7e\x41\x46\xe1\x40\xfc\x1c\xc0\xcf\xa1\xf8\x09\x39\x75\x44\x4e\xbd\x11\xfc\x04\x5a\xc8\xaa\x23\x68\xfb\xb2\xd6\x02\xed\x87\xf0\x53\x94\xd5\xef\xd4\x77\x87\x5d\xf8\x25\x6a\xdd\x1b\xc1\xcf\x9e\xa8\x8a\x68\x75\x1f\xca\xea\x8b\x5c\xfb\x03\x51\x15\x51\xa9\xbe\xa8\xa9\x24\x1c\xd7\x77\xbb\xc3\x41\x49\x37\x7d\xbc\x3f\xf7\x51\x54\xe4\xb8\xbe\x5b\xff\xeb\x3e\x0a\xeb\xad\x3a\xb2\x61\x2c\xc2\xfb\x53\x8e\x6f\x21\x5c\x04\x61\x20\xb4\x6a\xe4\x21\x5d\x81\x44\x10\xea\x74\xba\x18\x42\xb1\x0e\x26\x10\x3c\x32\xb1\x7f\x15\x41\xb7\x2b\x52\xec\x47\x84\x47\xb2\x50\xc8\xd2\x04\xb1\x0c\xea\x2a\x4c\x7b\x40\xbc\x92\xa5\xf5\x40\xe3\x47\x26\x08\xef\x85\xec\x1f\xa5\x64\x26\xb3\x1a\x88\x58\xac\x83\xf0\x69\x47\x94\xc8\xc2\x83\x41\x28\x7d\x33\x20\x18\x8f\xba\xfd\xbf\x8a\x38\x0e\x7a\x40\xe2\x83\x21\x18\x28\x67\x1c\xdd\xaa\x6e\x81\x42\x6d\x18\x43\x38\xc5\x49\xb6\x5a\xc8\xcc\x05\x23\x01\xb4\x9c\xbb\xc0\x7e\xba\x9c\x23\x59\xd5\xee\x18\xfa\xd6\x01\xa6\x50\x9f\x05\x8a\xb8\xee\x49\xc8\xd6\x05\x42\x09\xa4\x33\x99\x29\x92\xdd\xb9\x58\xd6\x77\xeb\x5b\x22\xf1\xc9\x99\xfa\x05\xc6\x70\xd5\xe9\xa8\x0f\x45\xdb\x60\x57\x12\xa8\x31\xe8\x0c\x65\xd0\x44\x47\x32\x9c\xa5\x42\x73\x53\xd8\x48\x62\xb7\x3a\x8c\x20\x3c\xd3\x59\x04\x32\xa8\xc8\xc7\xa8\x27\xc3\x29\x2e\x11\x2c\xb2\x18\x21\x4d\x34\xb2\xd8\x54\x63\x63\x8b\x45\x1a\x43\x16\x8b\x35\x36\xb5\x98\x29\x34\xb2\x58\xa2\xb1\xd8\x62\x33\x8d\x61\x8b\xcd\x35\x96\x18\x4c\xd7\x38\x94\x08\xcf\x15\x10\x26\x1a\xb8\x55\xb5\xed\x4c\xb1\x85\x74\xcd\xc6\xaa\xc4\x4c\x0f\x7c\xa7\xd3\x51\x48\x2e\x79\xa7\x2f\x83\x5f\x10\x97\xc3\xda\xe9\x0e\xe1\xb8\x8a\xcd\x18\xd5\xe3\x0c\xfd\xe7\x02\x30\x82\x6c\x99\x78\x6c\xd9\x85\x1e\x2c\xa3\x7d\x28\x6f\x29\x26\x90\x1a\xad\x01\x54\x7d\xa9\xea\xd3\x83\x54\x4b\x35\x05\xd1\x10\x86\x46\x8f\x74\xa7\x07\xbd\xbd\x24\xba\x1f\x7a\xd0\xd3\x4b\x96\x89\xf0\x4f\xa2\x16\xcb\x65\xba\x7a\xae\x95\x34\x67\x26\xa1\xe5\x92\xb3\x7b\xbf\x10\x81\xe0\x1b\x37\xeb\x7d\x50\xf9\x6c\x47\x98\x20\xbc\xd4\xb5\x9f\x45\xde\xcc\x8b\xc6\x30\xa8\x65\x74\x3a\x00\xda\x8c\xcc\x54\x0d\x3a\x7d\xe8\x31\xe8\xe2\xff\x03\x7e\xad\x16\x7e\x7b\x05\x60\x6b\x22\xcf\x14\x48\x1a\xab\xf9\x0c\x33\xc2\x86\xe1\x32\xc4\x7e\xb1\x48\x65\x2c\xe4\xad\x43\x70\x27\x03\xdd\x45\x8c\x12\xaa\x79\x03\x04\x18\xba\x33\x00\x0a\x45\x87\x4c\x51\x74\x1d\x31\x33\x49\x7a\x91\xc2\xf0\x32\x23\xa9\x1e\xda\x6e\x32\x50\xf0\x92\x93\x85\x1a\x85\x00\x84\x85\x00\x33\xb2\xd0\x65\xc4\x16\x32\x0d\x89\x04\xf8\x4c\x80\x29\xca\x34\xc3\x85\x03\x00\xb9\x9e\xac\x78\x08\x29\xf9\x2d\xd6\x83\x3c\x95\x79\xf1\x3b\xac\x86\xb9\x0b\x0c\xf6\xcc\x43\x06\x86\x46\xcf\x6b\x49\x35\x9d\xf2\x6b\x15\x9e\xea\x70\xee\x60\x90\xae\xdc\xee\x67\x56\x60\x43\xd7\x58\x81\x0d\xc1\xf8\xa6\x60\xaa\xe9\x20\x6b\xa7\x38\x42\x45\xa6\x5b\xde\x37\x08\x76\xa1\x67\x55\x68\x8a\x17\xcb\x7c\xa5\x1a\x3e\x06\x6f\xfa\xa9\xe8\x6e\xaf\xaf\x31\xa7\xac\x50\x52\xb9\x03\x95\x03\x04\x2c\x38\x1e\x9a\x1b\x51\xdd\x81\x74\x26\x3c\x55\x61\x23\xdb\x65\xbe\xf9\x1d\xc6\x9a\x21\x07\x90\x45\x79\x71\x81\x3a\x96\x17\x17\x31\x3b\xa7\x64\x16\x99\x19\x0a\x0b\xa0\x40\xd4\x12\x58\x74\xfa\x58\x13\x15\x86\xa8\x2b\x11\x16\x33\xcd\x75\xb0\x5e\x08\x68\x99\xea\xce\x43\xb0\x64\x08\x2c\x27\x0b\x6c\x40\x55\x40\x76\x63\xf2\x43\x72\xbc\xc9\x2c\xcb\x91\x92\x1b\x03\x59\x5d\x32\xcb\x39\x01\x61\x1e\xb3\x3b\xd5\xbc\xbe\xe4\x20\x1b\xa5\xb3\xe9\x4f\x55\xb5\x0a\xb7\x0e\x3d\x89\x59\x06\x8c\x54\xad\x1c\xe6\xea\xc0\xa2\x3a\xbd\x46\x9c\xdd\xa9\xf1\x0b\xa0\x90\x14\x45\xd7\x29\xfb\x82\xed\xf2\x02\x87\x0f\x80\x67\x37\x05\xe2\x0a\xee\xc3\x42\x01\xb0\xae\x95\xae\x53\xaf\x1c\xe1\xb6\x04\x97\x23\x53\x9c\xa8\x1e\xed\xcb\x91\x70\x23\x39\x99\xcd\x75\xec\x74\x24\x63\xa9\xe2\xfd\x5e\x07\x1a\x9f\x5e\x87\x1d\x45\x21\x19\x27\xbd\x0e\x7b\x1a\x08\x25\xd0\x35\x80\x4c\xc2\x22\x95\x47\x7f\x04\x99\x52\x51\xf7\x89\x98\x0f\x20\x17\xa7\x14\xdf\x14\xe4\x56\xf3\x56\x68\x23\xde\x9a\xd1\xc7\xd0\x5b\x54\x87\xbb\xa0\x19\x3d\xab\xac\x19\x62\x85\x9d\x56\xd6\x0c\xa8\x85\x4e\xda\x41\x7d\x19\xcc\xd9\xc2\x47\xee\x72\x62\x86\x0b\xea\xc9\xee\xa7\x5a\xe6\x8f\x23\x99\xf5\x7d\x9c\xaa\xa6\x40\x0d\x04\x70\xac\x80\xbe\xcc\xe5\xfe\x50\x53\xc0\x35\x41\x01\x18\x8a\xa1\x4a\xa2\x78\xb0\x1f\x44\x0a\x78\xa7\x29\x3a\x2a\x89\xa6\x50\x75\xbf\x3f\x34\x14\x3d\x09\xcc\x75\x16\xaa\x1a\x2f\x75\xbc\x0a\xcf\x95\xa8\xeb\x77\x54\x19\x2f\x35\x30\xd0\x39\x1c\x6a\x40\x55\xfc\xa5\x01\x54\xc5\xe7\x4a\x90\xf4\xbb\x2a\xc9\x4b\x0d\x0c\x54\x4b\xe6\x97\x1a\x50\x1d\xf6\xd2\x00\xaa\xbf\x16\x84\x1a\x59\x37\x4e\x24\x66\x67\x4f\x67\x8c\x25\xe4\x4c\xe0\x0e\x52\x4d\x28\x4c\x57\xab\xcc\x0b\xd3\x91\x53\x09\x5c\x9a\xae\x56\x8d\xbc\x34\x14\xb1\x4a\xa2\x3b\x32\x54\x4d\x28\x4c\x47\xaa\x4c\x2f\x4d\x57\xab\x1a\x5f\x1a\x0a\x24\x81\x5b\xdd\xd5\x6a\x70\xde\xeb\xf8\x50\xc5\xeb\xb1\xe8\xaa\x5a\xdc\xea\xc1\x18\xa8\x1c\xde\x6b\x8a\x81\xaa\xf8\x7b\x43\xa1\x93\xe8\x96\x74\x54\x3d\x6f\x75\x4b\x06\xaa\x94\xf7\x9a\x62\xa0\xab\x61\x28\x14\x8f\xdc\x9a\xb6\xea\x4c\x4d\x4b\x54\x2f\xbf\x37\x6d\x55\x23\xf1\x5e\x53\x0c\xa0\xcf\xab\xab\xb4\xdd\xfa\x74\x62\xd1\x61\xcf\xca\xc0\x94\xdf\x4e\xa5\x4c\xbd\x47\xc0\x36\x15\x75\x46\xb0\xca\x33\x8d\xaa\xe5\x67\x9a\xe1\x05\x51\x05\xf5\xa0\x2e\x65\x5d\x20\x33\x35\x91\x7a\xc0\x34\x63\xa9\x56\xa4\x41\xb9\x12\x80\x08\xff\xf5\xd7\x5f\x2a\x34\xcf\x0a\x45\x31\x94\xf3\xb7\x48\x55\x9f\x05\xa0\xa6\x8a\x30\xce\x7d\xc4\x2a\x52\x58\x85\xb5\xea\x88\x34\x60\x94\x47\x51\xcf\x67\x85\xab\x69\x19\x92\x1b\x97\xe6\xc0\xec\xe7\x84\x72\x2b\x3a\x25\xf2\x90\x21\x20\x4b\xbb\x85\xe9\xf5\x24\x32\xe5\x76\xc5\xea\x8d\x25\x66\x16\x4e\x04\xca\xaa\x5d\x47\x3b\x63\x28\x4a\x07\xe3\x8e\xa2\xb7\x39\xa8\x72\xec\x12\xda\x0b\x64\x12\x92\xa3\xf4\x90\x24\x09\xe6\xe0\xb0\x95\xaa\x79\x2f\xb6\xf5\x90\x22\x33\x45\xfc\x55\x24\x18\x24\x4c\x84\xb8\xe9\xba\x5e\x28\x01\xad\xe5\x75\xa2\x21\xe4\xbb\x4a\xf1\xca\x28\x19\x62\xcc\x22\x9b\x17\x02\xad\xf4\xc0\x49\x15\x82\xf0\x8b\x3c\x44\xd2\xe0\x98\x28\xdd\x14\x5a\x60\xc3\xa0\xeb\x1d\x18\xc5\x21\x08\x83\x11\x10\x38\x00\x74\x8a\xaf\xbe\x42\xf5\xa3\xc2\xd6\x24\xd2\x40\xa6\x58\x0e\x81\xd0\x3c\xd0\x1d\x15\x84\x81\x98\xb7\x91\x13\x86\xae\x37\xf5\x80\xa5\xf1\x40\x04\x53\x64\x81\xc8\x57\xcf\x60\x3c\xb0\xac\xc6\x3d\xd2\x21\xcc\x55\xae\xf7\x30\x2f\x0e\x00\x3a\x74\xa1\xa8\xa4\x41\xc1\xee\xf2\x20\xe1\x6e\xc7\x1e\xbc\x34\x2a\x26\x6c\x70\xa3\xb9\x09\xcb\x51\x9f\x63\xbd\xe4\x0e\xc3\xae\x06\x16\x88\x7b\xe0\xc1\x5c\xab\x8e\x48\x26\xd2\x41\xd9\xef\xa6\x57\x3b\x60\x68\x10\x61\xc3\xe7\x7d\x4d\x91\x62\xc4\x39\xbb\xb3\x5a\x45\x08\x3e\xe5\x4e\x94\xa3\x53\x84\xd3\xa9\x89\x8b\xe5\x7e\x06\xd6\x00\x07\xb5\x5a\x61\x67\x6c\x33\x8a\x63\xbb\x01\x80\x3d\xe8\x01\xc0\x87\x66\x4d\x1f\x8f\x2d\xed\x3b\xd9\xe3\xd8\x22\xe7\x4a\x83\x01\xa9\x20\x93\x9e\xb8\xcb\xd2\xc0\xc0\x67\xce\xca\xd4\x37\xe8\x85\xb3\x38\x8d\x55\xcb\x95\xdc\x8c\x54\xdd\x8f\xb4\x68\xea\xca\x30\x2e\x75\x54\x42\x9d\xfd\x53\x20\xb1\x85\xde\x87\x22\x50\x80\x23\xc2\x33\x93\xf1\x18\x94\xb3\x03\xa1\x3a\xdd\x91\x0c\x1f\x30\x9a\xb3\x82\xbf\xa2\x39\x9e\x71\x94\x6a\xd6\x56\x34\x19\x3e\x28\x78\xba\x3a\x64\xc5\x34\xc5\xbf\x15\x2c\xd7\x32\x3c\x8c\x3d\x02\x2f\x0a\x7a\x2c\x2d\xa6\xaa\x61\x03\x58\x45\x00\x28\x48\xee\x61\x4c\xee\xe7\x76\x45\x5e\x4c\xef\xed\x3a\x9d\xee\x50\x03\xda\x90\x32\xec\x69\x72\xd3\x7c\x8b\xdc\xf8\xd0\x62\x81\x20\x47\xf5\x5b\x94\xf8\x7f\xca\x80\x96\x68\xa0\xdc\x8b\x70\xa2\x4b\x04\x3d\x40\x20\xea\xc8\xb7\x44\x97\xe2\x7b\x3d\x4c\xd2\x72\xe7\xee\xd3\xfa\x2a\x6c\xa5\xe1\x00\x3a\x87\xd1\x19\x2f\x6c\x66\x03\x99\x99\x23\x3f\x3a\x58\x92\x39\x48\x22\x91\x0d\x23\x02\xc4\x51\x45\x01\xed\x41\x02\x85\x9a\xca\x2d\x39\xd3\x86\x08\x60\x89\x03\x40\x8a\x28\x77\xc1\x88\x2d\x57\x92\xa1\x41\xb4\x9d\x9e\xfd\x61\x43\x22\x2e\xd3\x82\x21\x94\xc3\x51\x08\x81\xf2\x3d\xbe\x81\x61\xe5\xc6\x46\x13\xc2\x56\x37\xe2\x2c\xcb\xb4\x7c\x80\xcc\x2c\x80\x64\x9b\x2b\x06\x0c\x68\x6e\x65\xc5\x87\x61\x32\x8b\x31\x8a\x12\x15\xd6\x7c\x12\x87\x12\xd0\x2b\x55\x1c\xa8\xb0\x21\x80\x0e\xca\xcd\x58\x75\xe4\x04\x29\x62\xc4\xb9\x6a\xc4\x18\xec\x43\x12\xd2\x73\x06\x54\x96\xa8\xc0\x4b\xae\x17\x45\x2c\x81\x4c\xcb\x94\x58\xe6\x93\x3a\x4d\x1f\x18\x64\xa9\xb3\x81\xb5\xab\x10\xcb\xb1\x5d\x7c\x65\x69\xee\x72\x0c\x52\xa3\x58\xda\x25\xb8\xa7\xd2\x69\x5e\x40\x92\x40\x17\xdd\x55\x39\xd8\x05\x1a\x49\xc4\x36\x73\xa4\x72\x60\xda\xb8\x25\xd9\xb6\xb0\x2b\x32\xb2\x2b\x72\xe1\x0e\xe0\xd0\x20\x0b\xdd\x8a\x48\x42\xe9\x0a\xdf\x2c\x39\x8e\xfc\x2e\x01\x38\x2b\xa2\x52\xc7\xf0\x74\xe5\xec\x63\x0d\xa9\xb7\x93\x55\x94\x5c\x5a\x03\xee\xc1\x1c\x1a\x15\xfc\xb6\xba\x12\x0c\xbc\x18\x6f\x21\x90\xf5\xad\x94\x65\x2c\x34\xaa\x98\x92\x25\x0a\xd8\xe2\xce\x01\x80\x91\x56\x69\x94\xcb\xe5\xaf\xd3\x85\xe5\x31\x46\xb3\x19\x56\x5d\x13\xc0\xfa\x79\xe8\x21\x21\xd0\xa4\x8e\x89\x63\x04\x88\xe9\x4e\xd8\xb7\x1e\xda\x30\x82\x14\xfb\x26\x0c\x63\x69\xd7\xa4\x20\x94\x65\x64\x73\x63\x95\xea\x29\x02\xbd\xab\x45\x90\xc2\x37\x00\x24\x00\xa5\x48\x2f\xb3\xb1\xa8\xfb\xa1\xa7\x10\x89\x5e\x89\x3d\x24\x01\x1a\x63\x6f\x82\x72\xac\xbd\x09\x82\x71\xb5\xb1\x4e\xdb\xc0\x7d\xf2\xd0\x53\xf9\xb4\x75\x3c\x04\x9e\x3e\x3c\x64\x39\x47\x7a\xff\x38\x0e\x65\x06\x2c\xcf\xb4\x08\x47\x43\x31\x7a\x31\x96\xa6\x4d\xb0\x43\x1d\x62\x2d\x5b\x40\xbb\x3d\xc4\xa9\x35\x2f\x41\x9d\x1c\x60\x2a\x01\x4f\x59\x82\x32\x12\x92\x69\x06\x19\x0f\xa1\x9d\x65\x0b\x13\x94\x5b\xd6\x8f\x20\xed\x4b\x6d\xd7\x19\xc3\x6e\x36\x9e\x23\x2d\x28\x42\x58\x92\x05\x60\x7a\x40\xb0\xd1\x21\x41\x11\x27\x39\x89\x50\xba\xef\x1f\xbf\x38\x31\x5a\xc1\x08\x3a\xf1\xb8\x1c\x23\xd6\xda\x7d\xab\xd6\xab\xd1\xb3\x14\x2f\xd4\x01\xca\xff\xed\xc3\x17\xda\x0e\x2b\x92\x88\x29\x1a\x13\xa4\x77\x3e\x60\x8b\x15\x61\x66\xce\x2f\x22\x55\xa3\x32\xa4\xa8\xdc\xb5\x7a\xa0\xe0\xcc\x07\x64\xcb\xe0\x3c\x62\xa3\xce\x2f\xa9\x66\x48\x2e\xc8\x62\x80\xa0\x25\x31\xc9\x88\x5e\x77\x93\x0e\x00\x30\x5a\xf7\xc9\x50\x06\x88\x32\x27\x3b\x61\x46\xdd\x6d\x7c\xa4\x22\x18\xbd\x77\x91\xc3\xd7\x86\x5d\x61\x1d\x8c\x3f\x9b\x30\x58\x3f\xe2\x34\x62\x5c\x95\xdc\x05\x7b\x69\x9c\x46\x9c\x29\xa1\xd9\x85\x3d\x42\xcc\xd2\x14\x06\xfc\xbf\x44\x86\x15\x2b\xd0\x14\x48\xca\x8b\x70\x1f\x68\x73\xdb\x1d\x71\x69\x74\x59\x6e\x14\xca\x40\x0e\x0d\xcb\xad\xda\x12\x68\xc0\x8a\x6b\x30\x00\x1c\xb2\xfc\xe8\xa6\x30\x6b\xab\xa6\x73\xed\x1e\x5d\x55\x9a\x63\xf7\x90\x13\x97\xe5\xae\x8d\xaf\x23\xc5\x0c\x70\x56\xd9\x36\x0d\x13\x13\x62\x1e\x51\x3c\x12\x43\xe0\xb5\x51\x43\x77\x74\x9f\x1b\xd1\x23\xe5\x97\x8c\x3a\xc6\x49\xee\x45\x05\x5e\xd4\x3b\x21\xb4\xbd\xf8\x9e\x17\x7f\xa1\x25\xb8\x14\x79\x2a\x82\xd1\x59\x29\xdf\x61\x32\xaa\x44\x97\xf3\x1e\x26\xc8\xa3\xa9\xc6\x8f\x4d\x7c\xb5\x5e\x1d\x3f\xce\x54\xac\xe3\xf4\xc3\xe5\xd2\x4b\x12\x3a\x11\x95\x2e\xea\x9b\xc8\xf7\x98\xc3\xd4\x7d\xa6\x65\x4c\xa7\x23\x23\x55\x0a\x83\x8f\x61\x5b\x15\xb3\x3b\x8a\x9c\x9c\xe4\x62\x52\xca\xde\x80\xa8\x3a\x2c\x8a\xd2\xaf\x6c\xa2\x8b\x74\x2c\x30\x5d\x29\x9b\xd9\x1d\x35\x65\x66\xae\x94\x17\xe8\x1c\xf1\x25\x63\xd4\x59\x96\xa3\xae\x1f\xe5\xae\xcb\x52\x34\xb2\x3b\x6a\xc6\xe7\x3d\x8e\x72\xad\x8e\x8c\xfb\x81\x13\x7d\x81\xb1\x1f\x89\x9d\x48\x19\x63\x7b\xa6\x3f\xa8\x44\x6a\x55\x20\x56\x31\x7a\xd8\xfc\x4c\x13\x37\xb6\x92\xeb\xb0\x1a\xab\x5b\x12\xaa\xa8\x0b\x8c\xdd\x7e\x44\x43\x8b\x6b\x06\x81\xb9\xc8\xbd\xc5\x19\x56\xf4\x98\xbb\xa2\x28\x91\x88\x23\x8a\x84\x8c\x38\xac\xe8\xc4\x40\x57\xd1\x89\x81\x75\xcf\xad\xe8\xeb\x4b\x2a\x23\xfa\x64\x98\x69\xed\x16\x0e\x73\x0e\xb3\x9c\xb3\x6b\xb5\xf2\xcb\x1a\x79\x08\x8c\xbe\xa3\x25\x27\x12\xe0\xca\xb2\xd6\x9f\x26\x2a\x9c\x68\x00\xc4\x69\x61\x97\x42\xe0\xaa\xb8\x98\xdb\xd5\x13\x92\xdc\x39\x07\x0c\x63\x30\xeb\x1d\xfe\x69\xab\x0e\x24\x5f\x6c\xd5\x65\x98\xcc\xac\x3e\x3a\x4c\x04\x76\xe4\xb8\x5a\x88\xe6\x63\xc7\xd5\x42\x86\xb3\x1c\x9b\x63\x5c\xb8\x1c\xe0\xaa\x3a\xa1\x60\x61\xec\x21\x70\x2f\xc3\xba\x52\x48\x02\xe3\x4a\xa1\x83\x5a\x12\x0f\x20\xec\xec\x58\xa1\x93\x8f\xac\xe9\x24\x06\x02\x63\x39\x81\xe0\xa1\x59\x03\xa4\x9a\x73\x64\xad\x40\x70\xf4\x88\x9d\xf0\x10\x12\xf8\xcb\x81\xe6\xaa\x10\x0c\x31\x38\x71\xa2\xc5\xdc\x3a\x2a\xab\x34\x23\xa0\x2a\xa9\x34\x82\x12\x6b\x37\x08\xb0\x83\x1c\x39\xfe\x19\x90\xc4\xf1\xcf\x90\x61\xbd\x53\x03\x6b\x06\x9e\x65\x76\xa3\x3b\x06\x82\x54\x87\x44\xd7\x1f\xf9\x3b\x68\x49\x40\xc4\xd6\x51\x65\xd3\x05\x5b\x1b\xd6\x06\xd4\x10\x24\x1b\x4e\x4d\x21\x7d\x19\x74\x0a\x81\xce\x72\xdc\x39\xc0\x23\x1d\xbb\x00\x64\x21\xd4\x3e\x5d\x6c\x5f\x03\x19\xce\x5d\xec\x48\x60\xe7\x0b\x94\xa6\xe7\xee\x11\x58\x32\xd5\xf4\xb7\x15\xea\xf7\x98\x6f\x48\x81\x64\x8a\x6c\x19\x76\xd5\xba\x0e\xa7\x75\x80\xf4\x34\xd2\x57\x88\x0e\x8b\x6a\x1e\xbd\x7d\xa1\x6a\x0d\x9b\x34\xac\xec\x08\x41\x08\x46\x58\x4c\x2d\x35\x0c\xaa\xe3\xcc\x00\x36\x0a\xec\x02\xd0\xdf\x15\x1d\x25\x02\xb2\xb2\x8e\x02\x63\xb7\x34\xeb\x0c\x2c\x42\x22\x9c\x69\xb9\x00\x87\xf7\xd8\x39\x7e\x1c\x02\xd3\xd9\x53\x60\xd8\xca\x1f\x79\x87\xf0\x72\xb0\x3c\x68\xaa\xa1\x5b\x05\x80\x20\xc0\x37\x8e\xf9\x4d\xd6\xe5\xa6\x32\x7f\xf0\x8d\x35\xd5\xf7\x3a\x12\x48\x11\xcd\x67\x39\xf7\x38\x50\xa2\x29\xce\x3c\x9e\x71\x54\x25\x34\x94\xd9\x15\x08\xd8\x6a\xa2\x63\xad\x86\x6c\x0a\x28\xb0\x31\x16\x82\xb4\x39\xba\x29\x48\x4a\xa6\x9c\x14\xda\x23\x29\x8a\x24\xa1\x73\x8c\xa8\x01\xbd\xd7\x41\x43\x18\x9a\x9b\x5b\xaf\x3f\xa1\x0e\x56\x72\x8d\x65\x7f\x72\x67\xda\x42\x8f\x3b\xe7\x17\x50\x01\x1b\x06\xfb\x32\xce\x1c\xad\x10\xee\xdd\x99\x4e\x42\x43\x99\x81\xdf\x69\x47\x76\x7f\x04\x13\xcd\xee\x8e\x60\x1e\x5d\xc0\xf9\xd0\x3d\x28\x63\x6a\x9b\x7a\x9f\x40\xbe\xc6\x6f\x03\x18\xd1\xf8\x6d\xc8\x10\xd7\x7e\x06\xe0\x2e\x84\xef\x23\x11\xfb\x04\x7e\x12\xd3\x83\x92\xc1\x05\x90\xb9\x08\xbe\x5f\xe2\x28\x47\xd6\xf1\x45\xb5\xec\x7e\xc9\xa8\xdc\x32\x78\x92\xed\xc8\xe2\x47\x2e\x9e\xa0\x34\x25\x60\x66\xcb\xac\xee\x2c\x5a\xfc\xdc\xca\x5d\x31\x07\x13\x2b\x77\x21\x88\x17\xa6\x80\x01\x9c\x53\x24\x09\x51\x9e\x6d\x45\x32\x85\x1a\x26\x89\x03\x48\x92\xd4\x41\x44\x36\xcf\xcb\xe2\x75\x0c\x64\x25\xf1\x0a\x99\xb9\xb9\x8b\x31\x7f\x4e\xd2\x14\xc7\x1b\xa4\x4e\x64\x22\x1f\x11\x32\x42\x42\x24\x9f\x65\x76\xc9\x67\x11\x48\x91\xd9\x95\xc5\x10\x76\xca\xea\x00\x90\xd3\x4c\xaf\xc9\xa2\xf0\x84\xb2\x44\xc9\x0b\x38\x55\x7f\x5e\x91\x17\x90\x4f\x45\x5e\x40\x8f\x33\x8e\x52\xb3\xfd\x0e\x20\x35\xdf\xf7\x91\x84\x69\xd3\x7f\x07\x14\x78\x11\xd6\xb6\x0a\xd8\xfc\x3c\x67\x05\x27\x98\xe7\x5c\xdb\x28\xc1\xb4\x92\x2c\x11\xcf\xad\xe1\x1a\xf6\x5e\x09\x47\x91\x74\x01\xb8\x9f\x9a\xb0\x12\xaf\x21\x4c\x16\x40\x7a\x92\x22\xd2\xe1\xbe\xa6\xe8\x6b\x64\xa0\x91\xb1\x46\x46\x1a\x99\x2a\xa4\x63\xf2\xed\x69\xc4\xe4\x33\x50\x48\x57\x95\x84\x75\xd8\x50\x0c\x35\x62\xf2\xd5\xb5\xe9\x19\x9a\x91\x42\xfa\xa6\x36\x48\x23\x26\x95\x6e\xe5\xd0\x20\xaa\x2c\x2d\x45\x02\xc9\xc2\xdc\xf8\x5d\x74\x61\x05\x4f\x2a\x4a\xa0\x68\xd7\x73\x47\x74\x88\x3e\x9e\xb9\x67\x83\x20\x86\x5f\x38\x7b\x71\xd8\x27\xb8\x9b\x73\x70\x41\x01\x8a\x58\x21\xb0\x55\x9d\x79\x48\x0c\x88\xb6\x33\x8e\x44\x57\xbd\x70\xbd\x58\x61\x5b\x3d\xf3\x10\x21\xd5\x5e\x98\x23\xae\x22\x08\xa1\x09\x2f\x9c\xb3\x35\x38\x55\x9e\xb9\x40\x0c\x14\xc6\x16\x05\x55\xb5\xb6\x28\xa8\xa8\xd5\x96\xc0\x0e\x37\x73\xc2\xd0\x78\x2d\xe8\xc1\x6a\x33\xd3\x9e\xb3\xe0\x5e\x30\x3b\xd2\x0b\xc5\x08\x4a\x36\x26\xa6\x78\x0a\xc1\x1b\x2f\x29\xbe\xb9\xf1\x12\xab\xf5\x47\xcb\x60\x68\x30\xce\xb4\xbd\x13\x81\xfd\x7c\x66\x7c\x86\x74\xbc\xd5\x67\x46\x81\x41\x98\x86\x3a\x16\x32\x55\xeb\x49\xcc\xd6\xcd\x18\x68\x05\x6a\x0a\x00\x2b\xd8\x8b\xb2\x74\x12\xbc\x36\x2b\x4b\x27\xc8\x51\x9f\x5b\x80\xc3\xc0\x0b\x1d\x82\xa9\x3a\x9b\xf9\x41\xb2\xd0\x3d\x13\xc2\x91\xcc\x0b\xc7\xc0\x02\x43\xe2\x18\x58\x20\x9c\x22\xdd\x09\xd0\x73\xba\xea\xa0\xee\xce\xb4\x34\x47\x20\x87\x66\xe9\x67\x4d\x0b\xd5\xa2\x96\xa9\x90\x0a\x5b\xbf\x48\x8d\x69\x8b\x00\x38\xfb\xcc\xa8\x19\xd4\xb1\x8c\xbd\xf1\xa3\x9d\x81\x93\x04\x76\xa5\x04\x1d\xf4\x45\x45\x14\xc2\x58\x55\x44\x21\xe4\xe6\xd8\xdc\x5e\x70\x8c\x72\xcc\x5d\xdb\x0c\x70\x8a\x8b\x1f\x1b\xed\x44\x32\x95\x8a\x7b\x5e\xa4\xa9\x97\x6e\x68\xe3\xd4\x1f\xdd\x2b\x1d\x1b\xe3\x64\x36\x74\x12\x9c\x0b\x36\xf4\xd4\x1e\x6c\x23\x5d\x5d\x07\xf4\x84\x17\x65\x99\x01\x25\xcc\xac\xcc\x90\x3c\x63\xfb\x08\x52\xcd\xac\xb7\x04\x1a\x61\x05\x18\x85\x1f\x98\x31\xb7\xac\x3f\x94\x61\xe3\x41\x3b\x84\x2c\x05\xe3\xff\x2a\x6a\x70\xa1\x7f\xe4\x2e\x0f\xce\x9c\x7d\x66\x2c\x73\x48\xcf\xcc\xb6\x11\x74\xbb\x59\xee\x28\x6a\x08\xfc\x7e\x67\x39\xf7\x39\x64\xa0\x40\xab\x6f\x8d\x24\x52\xc9\x9d\xe3\x9b\xb4\x34\x3c\x00\x3a\xa8\x12\x0c\x39\x4f\x4b\x5d\x3f\xcb\x79\xb9\x87\x6e\x31\xcf\x3d\x5e\xb3\xf3\xf4\xd6\x61\x51\x83\xbe\x44\x11\x56\x1b\x6d\x69\xb7\x9c\x23\xc2\xad\xda\x8f\x00\x49\x13\xbb\x0e\xce\xd1\x82\xa4\xda\x8e\x02\x0e\x03\x2f\xf7\xdf\x59\x4b\x7d\x47\xa6\xe0\xd6\x58\xdf\x53\x08\xb7\x87\xbe\x70\xca\xe4\x58\xaa\x41\x6a\xcc\x9d\x73\x87\x9e\x8a\x37\xd6\x8c\x18\xaa\x2a\x8a\xfd\xbf\x44\xd4\x14\x19\x3e\x11\x02\xfd\xa5\x23\xad\x41\xae\xcc\x5d\x40\x8c\xd9\x1c\x23\x9e\x1b\x8b\xb1\x45\x1c\xbb\xb2\x04\xd3\x94\xe8\xc6\x77\x06\x80\xf0\xc8\x6c\x0c\xc0\xba\x31\x2f\x0b\x32\x91\xf0\xa5\x71\x5c\x00\x6b\xc9\x4b\x92\x4e\x31\xcf\xcf\x97\x28\xc2\x6e\x57\xcd\xaf\x33\xec\x58\x5f\x64\xd5\xae\xb3\x3b\x17\x83\x52\x99\x63\xbb\x48\x00\x58\xe4\x73\x73\x1c\x04\x59\x31\x76\x9d\xe2\x24\x77\x0d\x6b\x20\xed\x45\x04\xd8\xba\xbc\x18\x18\x84\x8a\x30\x11\xf4\x2f\x9d\x03\x5b\x18\x60\xc6\x4d\xf7\x06\x21\x34\x8e\xc1\x0b\x6c\x39\x4a\x8f\x89\x96\x7a\xd2\x21\x6f\x5e\x59\xfa\x61\xa0\x9c\x69\x0c\x55\x75\x1c\x9b\xd5\x80\xb9\xf6\x1d\xd9\x62\x0f\x11\x8c\xf8\xb2\x58\x80\xb5\xf2\x65\xc9\x79\x49\x84\x5d\xa9\x05\xbe\x48\xf3\x95\xe3\x05\xd5\xeb\x02\xb2\x9c\x6b\x47\x5e\x79\x70\xf5\xca\xb1\xd3\x88\x6a\x12\xc7\x4e\x03\x61\x25\x39\x02\x70\x07\x78\x65\xed\x2f\x18\x22\x8d\xfd\x05\x43\xac\x51\x07\x46\x10\x6b\xd4\x01\x11\x7c\x65\x97\x7f\xf9\xed\x5b\x6b\x8c\x81\x0e\x25\xd6\x1a\xd3\x95\x61\xb9\x85\xf9\xeb\x1e\x4c\xe3\x24\x49\xdc\x89\x40\xca\x0c\x07\x1f\xdf\x35\x0c\x07\xe6\xb1\x57\x8e\xdd\x44\x30\x20\x71\xec\x26\x10\x56\xb6\xb2\x10\xa6\x1e\x21\xc4\xd1\x76\x65\xbc\x73\xee\x0f\x9d\x41\x68\xa2\x0f\x46\xc6\xb1\x24\x61\x6a\xf7\xd6\x09\xc1\x29\xeb\xd5\x6b\xad\xee\x07\x21\x1c\x59\x92\xcf\x0e\x00\x7d\xe8\x98\x45\x40\x30\x10\x17\x98\x4a\x40\xeb\x46\xaa\x21\x0b\x34\x23\x14\xf1\xd5\x2b\xaf\xc2\x0b\x34\x4b\x0d\xef\x49\x1b\xa1\xc0\x84\xde\xee\xa6\x26\x0b\xa4\x0e\x3b\x03\xa9\x75\xbe\x5a\xf8\xd1\x6a\xfb\xd1\xe9\xc0\xfe\x93\x2c\x96\xea\x20\x36\x90\xbe\x01\xaf\x16\xcb\x94\x18\xe7\x0a\xb0\xb5\x13\x1a\x99\x3d\x90\xbc\xc2\x61\xce\x8b\xc0\x9e\xe4\xf4\x53\x07\xf4\x4d\x00\x8c\x8b\xed\x18\x94\x54\x42\x99\xc3\x12\x50\x15\x9a\x47\x86\x85\xc1\x97\xc8\x19\x80\x29\xbc\x9a\x61\x82\x91\x8c\xc5\x33\x63\xb6\x92\x52\xae\x7c\x36\x32\x55\x74\xbc\x94\xf3\x2b\x30\x78\x61\xe7\xb2\x87\xf4\x4e\x27\x34\x4f\x11\x9f\xab\x1d\x13\x02\x3b\x1f\xa1\xb9\xf5\xd7\x40\x60\xbe\x79\x45\x6f\x49\x46\xe0\x48\x46\xeb\xe7\x7a\x8e\xe8\x18\xc7\x73\x28\x00\xbf\xcd\x57\xa7\x56\x39\x83\xe6\x32\xab\x9c\xc1\xb8\x38\x96\x23\x70\x26\x21\x2e\x90\x00\x45\x49\x58\xc1\x6e\x99\x54\x44\x18\x34\x90\x59\x33\xc3\x18\xa8\xac\x9d\x01\xc2\xe5\x26\x11\xb3\x82\xdf\x83\xf1\x98\x54\xe4\x18\x4c\x72\x2b\xc7\x24\xc7\x65\xa5\xa1\xcf\x08\x75\xac\xd2\x7d\x05\xe9\x55\x16\x8e\x71\x04\xa0\xd7\xec\xa4\xa7\x01\x6d\xbd\x49\xba\x0a\xb9\xf5\xf2\xcd\xbd\xae\xcc\xed\x51\x6a\xd8\x91\xf1\x2e\x02\x53\xb1\xb8\xb6\xfd\x2d\xc4\x03\x71\x00\xd8\x42\xbe\x32\x06\x15\x68\xaf\x31\xa8\x88\xd0\x6b\x67\xb5\x84\xa3\xf5\xcf\x2e\xd0\x07\x0a\x23\xbf\xc6\x10\x6f\xc4\x97\x08\xbe\x2e\xeb\xfb\x82\xe5\x3f\x97\xa5\x96\xe0\xae\xcf\x76\x7e\x4a\xbf\xaa\xd7\x95\x51\x16\xdc\xf1\xb9\x32\xca\x82\xb5\x5f\x57\x74\x46\x51\xb5\xcf\x95\xa1\x83\x26\x65\x98\xdb\x1e\x19\x01\x9d\x83\x80\x16\xfd\xda\xed\x34\x68\xb6\xdb\x69\x02\x78\x83\x96\x4b\xc3\x58\x82\xd1\xae\x1d\x60\x6a\x00\x63\x5c\x14\x4c\xf2\xc6\xdd\x5c\xc2\x9d\x92\x6b\x0f\x19\x02\x8d\xe9\x4e\xc8\xc4\x76\xa7\x08\xbe\x29\x77\xa7\xe0\xc5\xeb\x72\x77\x8a\x16\x5c\xcf\xb8\xbe\xac\x12\x48\xe7\x8e\x37\x8e\xc7\xa4\xe8\x9d\x6b\xc7\x63\x52\x84\xdf\x38\x9b\x26\x31\x11\xae\x9d\x4d\x93\x08\xbf\xa9\x8c\x87\x60\xc1\xeb\xca\x78\x00\x6d\x65\x3c\xa0\xb5\x65\x14\xae\x84\xa4\xfb\x56\xa1\x81\x97\x28\x8f\x5d\x73\x00\x70\x51\xea\x21\x08\x10\xdf\x7b\xa2\x07\xd8\x8c\x23\x6d\xb9\x03\xdb\xfb\x31\x5a\x4c\x63\x33\x4a\x53\xa0\x71\x90\xa9\x44\xb4\x87\xdc\x10\x8e\x11\x8e\x9d\x30\x52\xf1\xe6\xf2\x5f\xa8\x00\x6d\xa7\x93\x49\x52\xbb\x25\xec\x43\x0e\xcb\x14\x45\xd8\x1a\x92\xa0\x2e\x29\x52\x77\xa0\xee\x91\x2c\x96\x73\xe5\x1d\x26\xbf\x10\x07\x40\xa2\xe4\xc1\x18\x8c\x11\x8e\x8f\x16\xec\x60\x8e\x9d\x30\x86\x9e\xb3\x1d\x17\x28\x7a\x9b\x43\xac\x10\x2d\xc4\xa5\x0a\x28\x90\x74\xa9\x11\x5d\x93\xa5\x71\x29\xd3\x34\x66\xf3\x30\x86\xcd\x83\x80\x72\xbd\xc7\x46\xb2\x3d\x39\x22\x3a\x19\x4c\xfd\x74\xdf\x45\x64\xd6\x5a\x93\x50\x25\x69\xdf\x4b\x84\x62\x15\xce\x0c\x60\xf6\x1d\xe9\xd4\xee\x8d\x80\x13\xd3\x67\x0e\x00\x0d\xb7\x77\xd4\x86\x43\xa8\xcc\x94\x4b\x75\xfa\xab\x0e\x88\xe8\x8f\x32\x70\xad\xd7\xdb\xd1\x54\x01\x59\xaa\x47\x74\x94\x18\xa8\xd0\x90\xa8\xda\xb1\x7b\xe8\x06\x96\xc7\xd4\x43\x30\xd0\xb8\x93\x17\xf2\xf6\x90\x48\x22\xba\x4b\xba\x20\x6b\xd2\x08\x9c\x02\xbf\x42\x7a\x33\xd5\x65\x62\x33\xd5\x21\x18\x47\xfa\x26\x2d\x88\x8a\xd4\xbd\x43\x17\x69\xc0\x28\xe3\xd0\x2d\x31\x8f\x9d\x73\xcc\xa1\x84\x8a\xcc\x62\x3d\x99\xb3\xd1\xb8\xc1\x45\xdb\xdc\xe2\x85\x6b\x31\xa9\xd9\x09\x8a\x52\xc1\x87\x41\xf0\xfb\x33\xd1\xa7\xfa\x8c\x4a\xcd\x14\xed\xdf\x60\x4e\xa3\x15\x27\x97\xb6\x1e\x92\x77\x4b\x4e\x16\x06\x44\x65\xcf\x0b\x43\x59\x71\x70\x00\x27\x6c\x93\xbb\x65\x36\xc9\x90\x22\xdd\x01\x26\x29\xd1\xf3\x57\x76\xb8\x80\xa5\x13\x43\xa9\x09\x03\x13\x09\x27\xe1\xde\x99\x3b\x1c\x9d\xe8\xc8\xca\x91\xfb\xb8\x12\xa9\x2b\xd8\x55\x31\xcf\x53\xa6\xc1\x2e\x6c\x94\x45\xad\x95\xb3\x81\xbd\x9b\x26\x0f\xfe\x9d\x28\xed\x17\x19\x82\xd1\x58\x44\x98\xd6\x1a\xaf\x86\xa1\x8a\xa9\xec\xe3\x60\xa7\xbc\xd1\x61\xc5\xc4\x54\xd2\xc4\xbd\x4a\x6e\x59\xb9\xb3\x21\x4a\x55\xd0\x44\x4e\xdd\xc8\xec\xa6\x20\x33\x6f\x4b\x19\xbb\x55\xf1\x7a\x16\xf6\x69\xca\x77\xc2\x73\x4a\xe8\x59\x5c\x31\x20\xea\x5a\xc8\xf7\x88\xd0\x3d\x9a\xcf\x39\xc6\x9e\xc3\xd5\x54\x27\x51\xd7\xf9\xec\xa8\x81\x72\xe3\x46\xa9\x24\xd3\x4e\x09\x77\x37\x90\x53\x5d\x2b\xe9\x1d\xe3\xd7\x22\x34\x71\x15\xf6\x09\x4c\x54\x85\x79\x46\xa5\x28\x3d\xe2\xba\x7a\x95\x04\x1d\x2f\xc2\x63\x90\x23\x7d\x40\x2e\x25\x1b\x36\x56\x51\xd9\x41\x37\xde\xbc\x76\x2c\x3f\x72\x68\x7d\xf3\xb0\x64\x45\xc7\x3c\x3c\x92\x40\x29\xde\x9a\x87\xc1\x3f\x31\xf5\xcd\xc3\xa1\x85\xb4\x69\x0d\xbe\xa5\x9b\xe2\xcc\xd6\xcd\x0a\x7a\x9c\x59\xfb\xf3\x58\xd1\x65\xbe\xb5\xac\xaf\x50\xc7\x38\x36\x50\x10\xbe\x31\x07\xae\xba\xc5\x02\xb4\xa8\xec\x96\x63\x9c\x65\x30\xa6\x9e\xdd\x52\xa6\x10\x71\x15\x53\xe7\x40\x45\xf8\xf4\x43\x5d\xac\x2d\x74\xa8\x29\xad\xdd\x13\x21\xd5\x05\x99\x63\x7d\xeb\x28\xb2\xaa\x1d\x34\x56\x31\x9e\x11\x14\x64\xb2\xe7\x09\x0a\x83\x9d\x94\x65\xca\x71\x59\x19\x84\x01\x29\x2b\x83\xb0\x32\xcf\xbc\x46\xcc\x8c\x81\x1b\x2a\xeb\x38\x8e\x42\xd1\x73\xc4\x63\x4f\x40\xcd\x11\x2f\x3c\xbe\x13\x80\x5e\xe8\xe1\x82\x5f\x3a\x9f\xa6\xe6\x82\x2b\xcc\x19\x47\x99\x84\x1a\x38\xca\x24\x84\x1d\xdd\x46\x8a\x34\xd3\xfd\xd0\x34\x73\x98\x00\x5c\x08\xfe\x90\x7a\x24\xa4\x47\xe4\x71\x79\x95\x91\x1c\xe0\x54\x7e\x0c\x46\xdb\x34\xb5\xce\x40\xe0\x5c\x77\xbc\x20\xce\x7e\x1b\xba\xcc\x45\x60\x2b\x99\x2e\x58\x91\xe5\x28\x9a\x6b\xe7\xc3\xa9\x45\x3d\xc4\x39\x0c\x18\xab\xb0\xcb\xbc\x12\x33\x66\x69\x68\xa7\xb5\xb4\x8e\x64\xec\x8d\x1f\xed\x4c\x53\x49\xe0\x1c\x06\xc0\xe8\x31\x47\x41\x8d\x24\x60\x0d\x82\x30\x5e\xcc\x6a\x47\x2a\x89\x90\x6b\x5e\x77\x0d\x61\x4b\xba\xd1\x4b\x51\x47\x54\x52\x8c\x9c\xac\xca\x2b\xc9\x10\x7c\x60\x1f\x77\x6b\x1c\x3a\x99\x56\xd3\x22\x95\xf3\x02\x2d\x33\x2d\x4c\x86\x49\xa4\xd0\x2a\xfd\x40\xe5\x56\x2d\x47\xc7\x54\xd3\xc0\x58\x30\xb6\x2c\xbb\xe8\x4b\xcd\x54\x47\xb8\x9e\x80\x48\x56\xc0\xf8\xa2\x8c\xa5\x76\x5f\xd9\x06\x75\x25\x59\x69\x1b\x24\x47\xc2\x71\x53\xe9\x48\xc4\xbd\xa7\x0f\x3b\xea\x94\xdd\xd9\x8b\x60\x60\x68\x49\xd9\x9d\x34\xb3\x5e\x41\x79\x77\x98\x57\xb4\xa7\xb1\x8e\xa9\x2e\xf6\x72\x98\xbe\x28\x9e\x8f\x64\xdf\x3a\xd7\xeb\x0d\xa4\x1f\x51\x01\xcf\x89\x54\x36\xb3\xa1\x7e\x6a\x33\xfe\x58\x8a\x65\xe7\x9e\x85\xd4\x0b\xb8\x3f\x23\x61\x1a\x71\xa3\x67\x2a\xfd\x80\xbb\x93\x11\x5a\xaf\xaf\x66\x04\x52\x8d\xe7\x66\x6e\x76\x60\xfd\x4b\x33\x64\x95\x5c\xb9\x15\xa9\x6c\x19\x61\xd5\x75\xac\x2f\x20\xb2\xac\x42\x0b\x2b\xaf\x1f\x4c\x4b\xa2\x38\x75\x8f\x8a\x62\x05\x98\x95\x54\xd6\xe3\x66\xaa\xf7\x0f\x99\xa3\x76\x8f\x34\x60\xd4\x6e\x90\x28\xae\x7d\x1a\x8c\x14\xa9\x87\x40\x99\xce\xe1\xd3\x40\x86\xed\xe1\x13\x34\x54\x74\xf8\x2f\x22\xb7\x0b\xfd\x23\x77\x25\x62\x9a\x97\x57\x40\x50\x7e\x5c\xbd\x27\xf5\x34\x21\x99\x69\xea\x1c\x33\xc9\x54\xde\x01\x95\x4c\x66\x04\x24\xe8\xaf\x22\x8c\x5d\xfd\x27\x75\xdc\x27\x23\xd9\x18\xee\x9c\x7b\x41\xb6\x05\x8f\xdd\x6d\x06\x92\x98\xeb\x55\x09\x64\xe5\x23\xa8\x91\xd5\x05\x9c\x23\x28\x8b\x6a\x9b\xf0\x3d\x3c\xe0\xe3\xfa\xc7\x74\x64\x58\x6b\xf3\x9d\x40\x85\xb1\x7e\x30\x44\x42\x27\x5a\x40\x8f\xc1\x3e\xbb\x40\x66\xeb\x3b\x90\x41\x23\x6f\x5c\xc4\x51\xd1\xe1\xa8\x50\xa2\xae\xd0\xe8\x19\xd4\xe8\xec\x48\x16\xc0\xaf\xf5\xb4\xe8\xc3\x05\xcc\x45\x64\x4d\xa3\x08\x56\xe3\x13\xbb\xef\x8b\x80\xc0\xec\xfb\x20\xe8\x5e\xaa\x81\x62\xac\x3f\x66\x07\x6c\x1f\x0b\x8c\xb2\x82\xe3\xd8\x7b\x80\x49\xb0\xdd\x09\x8e\x49\xb1\x70\x4e\x96\x02\x70\x15\x3b\xc1\x69\x4a\xa8\xe3\xd7\x22\x46\xf9\xa4\xfc\x4a\x09\x74\x60\x59\x79\x80\xe2\xe6\xba\x87\xc0\x4e\xb7\x20\x91\xf4\xb1\xba\x07\xb3\xf8\x82\xc4\xf6\x59\x9e\x05\x89\x2d\x5b\x83\xc9\xcb\x5c\xf0\xec\x80\xcb\xd1\x82\xc4\xde\xe5\x5f\xb8\x22\xa0\x9f\x5b\x02\xb7\x61\xf7\xd2\x00\xcc\x6d\x00\xcc\xf3\x62\x23\x83\x14\xba\x4b\x45\x1d\xe1\x2e\xab\x73\x73\x15\x1c\x31\x16\x69\x64\xae\xd7\x4d\x21\x1c\x9b\x2b\x41\x30\xd6\x74\x59\x4e\xc1\x62\xe3\xe0\xd9\x81\x91\x3f\xa9\x48\x7b\x18\x92\x8a\xb4\x87\x91\x5e\x7a\x79\x55\x24\x97\x68\xcd\x89\xe3\xfa\x22\xa9\x72\xf5\xf6\x92\x7e\x4b\xed\x44\x36\x2c\xe8\xc2\xd3\x48\x0b\x1d\x9a\xca\x90\x98\xe3\xe6\xb6\x1d\xdc\x32\x5c\x14\x25\x80\xa2\xa9\x76\x6f\x90\x57\x91\xde\xba\xd6\x33\x58\xad\xa8\x87\xf4\x00\x71\x1e\xfb\x82\xdb\x1f\x1d\x40\xcd\xf1\xda\x58\x06\xed\xab\x52\xf0\xb0\x9b\x2c\xcf\x7d\x4d\xca\x85\x55\xc3\x82\x50\xa7\x76\x1f\x90\x92\x50\x5e\x98\x43\x8a\x01\xf8\x3f\x2b\x48\x6f\x34\xe1\x4c\x0c\x30\x8f\x68\x2a\x8f\xa1\xef\xe1\x9d\x0c\xea\xbd\x61\x60\x2b\xe0\xbf\x5c\x60\x71\xe7\x02\xa3\xe8\x8c\xb7\xae\x61\x07\x1c\xf8\xa8\x87\x8c\x80\xc6\x31\xec\x80\xb5\x94\x7a\xc8\x00\x10\xe7\xae\xed\x50\x03\xee\x65\x5b\xa7\x0a\xf6\x06\x64\x07\xb2\x37\x12\x21\x86\x68\x23\x11\x20\xe8\x4a\x04\x18\x3e\x6c\x8f\x66\xc6\x70\xdc\x23\x10\x63\x1a\x84\xb2\xb1\x63\x1b\x1c\x6a\x0a\xab\x24\x48\x48\x0b\x5c\xe8\x45\xec\xfa\x6f\x9a\xaa\xbe\xc5\x33\x94\x93\x5b\x5c\x95\x2d\x70\x7e\xab\xa3\x2f\xe6\x24\xba\xfe\x56\x2c\x7d\x34\xf2\x3d\xe6\xab\x8d\x04\xfe\x9b\x38\xc0\x8f\x38\xc3\x66\x45\x01\x33\x37\xf5\xbc\x4a\x9d\x5a\x67\x39\x8e\x37\xf9\xab\x48\x57\x0e\x19\xef\x6f\xdd\xe4\x3a\xfb\x16\xdf\xe9\x93\xec\xbf\x28\x14\xe0\xfa\x8d\xf6\x0c\x92\xb9\xd0\xdb\xb2\x30\x15\xd2\x98\x96\x85\x29\xb4\xc9\x71\xf0\xb2\xec\x60\x7c\xc0\xc0\xf5\x96\x5a\xc7\x2e\x13\xbe\xd9\x98\xaa\xe4\xe0\xe5\x46\x65\x1b\x50\xc7\x89\xca\x21\x75\xb4\x23\x60\x6c\xc7\xe9\xc5\x0a\x82\x99\x01\x13\x19\xe4\x5e\xf8\x45\x7e\xeb\x24\xd2\x59\x3b\x6e\x1c\xb0\x14\x52\xc7\x8f\x23\x92\x80\x51\xae\x11\xdc\xb0\xa3\x5a\x1d\x94\x0c\x40\xcc\xf1\x58\x24\x83\x5a\xce\xc0\x8e\x81\x1a\xe6\x90\xfc\xe4\x6c\x39\x21\xda\xd9\x72\x42\xd8\x35\xa7\x4b\xc0\xa9\x0e\x4c\x34\x67\x81\x80\xae\x70\x6c\xa1\xb6\x55\x66\xcd\x85\x97\xf5\x68\xc5\xda\x09\x59\x97\x2d\x9b\x2a\xff\x4d\x36\x38\xd9\x35\x1b\xcd\x73\xb2\x93\xac\x21\x47\x97\xe8\x58\x72\xdc\x7a\x95\x0c\x3a\x6e\x54\xb6\x19\x35\xac\x2f\xeb\x60\x77\xdd\x0e\x95\xc3\x1f\xc0\xfe\x8e\x5e\x6a\xf9\x23\xcd\xbd\x9c\xac\x4e\xd9\xc1\x48\x03\xba\xdf\x60\xd7\x4a\x8f\x2d\xcb\x20\x5b\x9a\xa3\x2f\xc0\xc4\x62\xcf\x38\x46\x4a\xd4\x05\x20\xa7\xde\x32\x0a\x18\xa1\x33\x23\x31\xd4\x3a\x50\x59\x95\x13\xa0\x37\x3e\x2c\xb0\x98\x38\x0f\x6a\x41\x3d\xf4\x55\xc1\x48\xc6\x55\x5e\x43\xe8\x28\xdc\xbd\xe6\x0e\x9b\x99\xb7\x2c\x7f\xf4\x72\xdc\x40\xc6\x97\xee\x98\x8c\x15\xea\x1a\x9b\x02\x07\xf3\xdd\xfe\xad\x30\x63\xf9\x51\x55\xe4\xb0\xbc\x24\xd7\x12\x0f\x75\x0b\x01\x29\x62\xa3\xaa\xbe\x7d\x6e\x51\x8f\x08\xcd\x0d\x24\xae\xb7\xdf\xd8\x8b\xd9\xe0\xf0\xb7\x21\xbd\x67\xf4\x52\x43\xb3\xd1\xb3\xc7\x4d\x5b\x75\xf1\xb1\xcc\xc3\x72\x7b\x08\x3f\xd6\x80\x7b\x0a\xef\x93\xda\xc3\x78\x1f\xbf\x45\x95\x4c\xcc\x93\xa0\x60\xc8\x90\x90\xbe\x25\x92\xa8\xc1\x7e\xcc\xec\xec\xd6\x7e\x83\xfd\x19\xe6\x47\x29\xca\x6d\x20\x8e\x74\xbc\x3f\x5b\x15\xe4\x8d\x73\x60\xf1\x92\xf1\x72\x64\x63\xbc\x15\xcf\xaf\xdc\x46\x13\x65\x99\xc4\x1b\x36\xc5\x8a\x8f\xaf\xb7\x08\x79\x8c\xbc\x69\xe1\x45\x28\x74\x07\xc0\xae\x01\x91\x06\xec\x88\x58\xc8\x8c\x08\x36\x90\x19\x11\x35\x3d\xcf\x38\x8e\x70\x6c\xb6\xc4\xa3\xc0\x87\xdd\x66\x22\x6f\x98\x34\x45\xb9\x37\x3a\x58\x65\xf1\x0e\xdf\x62\x9e\xe1\xd2\xfc\x56\x23\x25\x6f\x71\x56\x38\x21\x0e\xdc\x22\x3c\x22\x9d\xfb\x74\x43\x9c\x57\xbc\x6a\x98\xbc\x7c\x71\x5e\x4c\xed\xad\xb1\x91\xd7\x00\x97\xc0\xcb\xa0\xe3\xc7\x2f\x45\x2b\xcc\x0b\x42\xc1\xa6\x2c\x24\x89\x97\x49\x57\x51\x78\xe5\x77\xcc\x62\x60\xa2\xdc\x44\x23\x9d\x6d\x11\x45\x18\xc7\x66\x4c\x42\x1f\x76\xc7\x64\xea\xd7\x47\x51\x54\xc7\xa4\x94\x85\xc7\x9f\x7e\xaf\xf8\xed\x1d\x75\xfd\x2a\x57\x5b\x3a\x52\x62\xcd\x13\xcc\xa1\x83\x79\x92\xa8\xe7\x44\x94\x65\x2c\x6c\x08\x74\xa4\x97\x9d\x2a\x62\xc3\x22\x02\xab\xed\x12\x71\x94\xa6\xc6\xf1\x1f\x56\x16\xba\xf4\x57\x1a\xea\x5c\xe7\x42\x49\x6c\x1e\x8f\xa4\xd6\x07\xae\x13\xd8\x69\x48\x97\x2c\x75\x9e\x62\x92\xc5\x70\x77\x92\xd0\x25\x8f\x0a\xec\xf2\x3c\x75\xde\x4f\x19\x19\xc0\xd8\xae\x9d\xe9\x23\x22\x36\xa0\x1c\x71\x7d\xaf\x6e\xdc\xed\xfa\xb8\xd6\x9c\x40\xe7\xe3\x8e\x52\x96\x68\x0a\xa3\x5c\x39\xea\x4b\xf5\x00\x14\xd2\xbf\xab\x28\x51\x32\x17\x47\x23\x99\x6a\x00\xbb\xf3\x8a\x9a\x27\x72\x80\x29\x69\x16\x39\x7d\xa0\x10\xbc\x81\x35\x2b\xae\x2e\x63\x49\x5b\xda\xfd\xc3\xc6\x2d\x9b\x33\x9e\x97\x74\x1c\x09\x6e\x1c\x67\x67\x6f\x13\xaa\x30\x76\xb9\x8d\xba\x6f\x05\x2b\xa4\x92\x7b\x99\x59\xb2\x1b\xfb\x0e\x91\x14\x08\x00\x99\xad\x32\x96\x35\xd5\x6f\x17\x75\x46\x3d\x15\xd6\x7b\xff\xc8\x59\x47\x9d\xac\x46\x1a\xd8\x28\x14\x54\x84\xa9\xad\x4b\x6d\xf4\xd9\x52\xd6\x51\x69\x40\xc4\x04\xbf\xa9\x8e\x00\x35\xcf\x28\x75\xc0\x42\x2f\xc2\xa6\xae\x03\x8f\x0c\xbb\x13\x5b\x00\x1b\xa5\x81\x8a\xb0\x75\x1d\xbb\xe0\xcd\x86\xac\x73\x7b\x85\x04\xe6\xb3\x7d\x6a\x1a\x5e\x58\xa0\x36\x9c\xc8\xb0\x3d\x91\x93\xe9\x2b\x4f\xd3\x2a\xbd\xd9\x8d\x30\xf5\x91\x8a\xeb\x86\x17\x6b\x15\x6b\x7b\x31\x36\x15\x2c\x1e\xc6\xba\x04\x2c\x6f\xac\x4b\x32\x24\xb8\xed\xff\x27\x7f\x61\x7d\x91\x52\xde\xf9\xa6\x85\x73\x3d\x18\x74\xa0\x5b\xe7\xd1\x27\xdb\x73\xb7\xce\x33\x75\xa0\x52\xd3\xdb\x43\x07\x81\x62\xde\xbb\x34\xb0\x7a\xbf\x77\x69\x60\xba\xde\x3a\xd7\xa2\x9c\xdc\xe5\x15\x0d\x07\x78\xe9\x78\x06\x01\x9f\xde\x7a\xce\xc9\x90\xfb\xad\xdd\xe7\x8d\x03\x99\xcc\x71\x79\x71\x32\x93\x36\x78\x0f\x70\x4d\xe1\x4e\x04\x77\x72\xec\x4a\xc4\x25\x75\xab\xec\xbc\xea\x19\x59\xf8\xce\xb5\xe0\x74\x15\x62\x04\x21\xf4\xf8\x9d\x63\xc1\x19\x68\x0a\x2b\xec\x24\x44\x1d\x7b\x88\x18\x96\x53\xeb\xb8\x0e\x4f\x69\x30\x1b\x4e\x64\xd8\x7f\x73\xf0\xd4\xf8\xae\x83\x2b\x08\x33\xc1\x44\x07\x35\x35\x02\x6a\x63\xa7\xc2\x10\x6d\xec\x54\x10\x2c\x3f\x51\x78\xea\x3c\xed\x14\xc2\x9d\x60\xe6\x21\x21\x20\x7a\x17\x8f\x60\x2a\xd9\xe7\xae\xe5\x8b\x86\x2c\xce\x98\xf1\xd6\x02\x23\xe8\xe9\x91\x75\x25\x07\xe7\x08\x86\x1d\x00\x1a\x99\xd8\xfb\x24\x70\xae\x74\x5a\xb6\xcf\x40\xb2\xb2\x7d\x46\x64\x6e\x5d\x8d\xe5\x7d\x9b\x53\xeb\x2c\x0f\x03\xc7\x6c\x38\x91\x61\x7d\x50\x06\x07\x53\xcc\x5e\x3f\x19\x83\x79\x9c\xcd\x17\x6a\x8a\xc1\xb2\xc0\x4a\x8f\xea\x31\xf7\x19\x36\x04\x80\x53\x75\x49\xe1\x3c\x4a\x37\x06\x8f\x45\x66\xdd\xdd\x03\xd9\xf1\xe6\xb4\x0e\x1c\x2a\x4f\x1d\x4f\x7a\x78\xe9\x93\xb9\x00\x0c\xcc\x02\xcf\x90\x57\x2f\x07\x80\x93\xa3\x53\x30\xf3\x9b\xeb\xf3\x09\xd0\xb8\xd0\x54\x41\x66\x68\x06\x32\x5c\x7a\x53\xf2\xb4\x62\x3f\x07\xba\x32\x0a\xdb\x60\xe7\xa4\x15\x0e\x07\x4e\x97\x98\x3e\xf6\xaa\x63\xe4\xc6\x7b\x31\xc0\x44\x4b\x6c\x9e\xb2\x03\x2f\x6f\xb6\x2c\xbd\x6a\xc9\xdc\x97\xe3\x60\xa0\xf5\x7e\x05\xbc\x7b\x99\x59\x32\x21\x3b\x6e\xbe\x9d\x11\xcb\x20\x36\x46\xfc\x9e\x06\x58\x52\x82\xe4\xc5\x28\xb8\x5d\xc3\x78\x0c\x6c\x70\x2f\xc7\x98\x93\x99\xbd\x6c\x00\xfd\xc1\x8d\xbb\x4c\x5f\x86\xbd\x8f\x73\x0c\x01\x32\xdf\xe6\x00\x1e\xf0\x1e\xf4\x3c\xad\xe8\x20\x50\x8e\x73\xd6\xd0\x03\x2a\x7d\xd7\xe6\x1e\xdc\x2a\x98\x0d\x27\x32\xac\xef\x74\x76\xe0\x10\xf9\xd4\x59\xc5\xa0\xcf\x9c\x55\x4c\x85\x17\x38\x43\xe6\x30\x7b\x20\xd3\x38\xc7\xdb\x43\x43\xa5\xf3\x85\x71\xd5\x1e\xe6\x20\xd6\x98\x0e\xc1\x3e\x9a\xdd\x9a\x09\xd4\x05\xe3\xf7\xe9\x2d\xb6\xce\x50\x92\xdd\x01\xe2\xc6\x58\xdc\x8d\x5d\xd0\x38\xf8\xc9\x47\xd6\x04\x7c\x86\x38\xa6\xf9\x1c\x67\xda\x9c\x28\xef\x0b\x0b\x8d\x4b\x0e\xca\x40\x85\x5c\xfd\xab\x2f\xb1\x52\xd0\x3e\x69\x00\xd2\xd4\xd7\xbb\x25\x60\x15\x6e\xf8\x9c\x24\x77\x5e\x1a\x53\x98\x15\xa2\x62\x0e\x2d\xad\x10\x85\x20\xe6\x11\xc8\x88\xff\xbf\x0c\x10\xb8\x9d\xd0\x96\x81\x85\xf6\x78\x0c\xe0\xee\x90\xe5\x72\xf9\x7e\xfb\x12\xf3\x1c\xeb\xc7\xea\x03\xb8\x4b\x72\x56\x96\x7c\x50\xed\xb2\xe4\x83\x2f\x92\xda\xa7\x70\xa1\x3f\xec\x53\xb8\x2a\xa8\x5d\xd9\x81\x17\x96\x73\xf5\x62\xa9\x39\xc9\x5a\xce\xcd\x9b\xa7\x03\x38\xdd\x3f\x33\xf9\x41\x5d\x4d\x76\x32\x94\x47\xf3\xf2\x8d\xfc\xa5\x2d\x02\x8a\x4c\x11\xd5\x4f\xf8\xca\xab\x61\x12\x31\xb7\xc5\xb0\x82\xf4\x35\x7e\x4d\x54\x64\xce\xb7\x51\x60\x71\x15\x98\x39\x65\xc4\x0a\x70\x68\x3a\x0a\xaa\xef\xd6\xb7\xd5\xcf\x58\xa9\x3f\xf2\x99\x32\x40\xcc\x89\x63\x5f\x21\xe6\xd1\x57\x18\xd6\xb4\xc8\xcc\x93\xba\xf7\xf0\xa4\x81\xa0\x59\x50\x3f\x6c\x39\xa8\x33\x50\x50\x7e\xa7\xfd\xe7\x60\x09\x5f\x2e\x6c\x8a\x33\x26\xef\x18\x89\x66\x9a\x8b\x46\xc0\xbc\x62\x25\x71\x36\x71\x50\xa5\x8a\x54\x95\x59\x58\xfb\xe7\x18\xa8\x0a\xf9\x8e\xde\x3d\xf8\x57\x2e\xb9\x39\x0d\x03\xa1\x7b\xa6\x3b\x05\xa4\xa2\xd9\x16\xc2\x05\x59\x77\x57\x08\x3e\x69\x62\x0f\xe8\x79\x3c\x41\x16\xce\x56\x51\x25\xc3\x91\x7a\x6e\xd3\x4d\x5c\xb2\xce\x00\xe9\x66\xd3\x8c\x13\x51\xd9\xfd\x7b\x59\x79\x5b\x7f\xac\x8a\x76\x36\xa9\x0a\xf1\xbd\xb4\x60\x81\x00\xd8\xea\xf6\xb0\x76\x03\xe6\x78\x5f\x8d\x24\xe6\xe7\xa6\x37\x1a\xd3\xae\x4a\xe1\x98\xcb\x65\x0d\x9c\xf7\xe4\x81\x4f\x5c\xa0\xab\x29\x32\x6f\x88\xb8\xf5\x2b\x53\xb5\xa3\x47\x7e\xcd\xaa\xf5\x32\x0f\xe9\x06\xb2\xbf\xdc\x67\x74\xe5\xc4\xe0\x2c\x41\xa9\x91\xae\x1d\xac\x30\xab\x4d\x74\x41\x2f\x12\x58\x56\x68\x6f\x81\xae\x94\x18\xe6\xc9\xaf\x0e\x9c\x50\x9e\x71\xb6\x64\x3c\x27\x8c\x9a\x81\x28\xe1\x0a\xed\x0e\x55\xea\x9c\xb9\x74\x4b\x5e\xe9\xa6\x82\x1b\xe1\x0b\x5e\x3b\x67\x95\x35\x0d\x18\xb2\xb2\xaf\xee\x03\xad\x91\x35\xd0\x19\x26\x08\xab\xe3\xb2\xa0\x91\xdd\xbc\x08\xe4\xb7\xb2\x54\x14\x73\xfc\xa6\x2c\x15\x45\xbd\x6e\x4a\x97\x21\x6f\x2a\x73\x4c\x74\xd9\x6f\xce\x1c\x13\x6c\x7c\xe3\x8e\x3a\x2c\xdf\xbf\x55\x5a\x03\xb9\x55\x5a\x23\x64\xc2\x4d\x81\x72\xcc\x29\xb1\xee\xd6\x70\x6b\x4a\xc0\xce\x8c\x97\x94\xd2\x97\xe7\xa9\xfe\x6d\xdf\x9b\x49\x00\x92\xba\xf4\x5f\x75\x51\x83\xcb\xd3\x0b\x13\xe0\xee\x9d\x1b\xd1\xaf\x76\x39\xed\x74\xa5\x8d\x45\xc8\x8e\x77\xae\x9f\x00\x28\x46\xdc\x43\xfa\x80\xc4\xfa\x76\x6c\x07\x1a\xcf\x4b\x57\x73\xba\x80\x59\x9f\xc5\x31\x64\x6c\xc3\x53\x15\x6f\x2e\xd9\x74\x14\x60\x5e\x5f\xeb\x2b\xc0\xde\xba\x19\x03\xa2\x2f\xd4\x4c\x65\x16\xdc\x88\xb2\xf1\xb0\xaf\x10\x73\xc5\xc6\x00\xe6\x82\x0c\xf8\x07\xf9\x66\x29\x05\xa8\x34\x50\x91\x77\xce\x19\x26\x24\x70\x76\x65\x1d\x45\x6f\xef\xdc\x60\x85\xd8\x3b\x37\x48\x21\xf6\xce\x4d\xa4\x10\x73\xe7\xa6\xa7\xeb\xe6\xdc\xb9\xe9\xa9\xa2\x73\x73\x9f\x66\xa0\x88\xec\x2d\x1c\x5d\x5d\x6b\x1c\x03\xc0\xbd\x84\x03\xa5\x7b\xd7\x72\x64\xe9\x39\xd1\xd3\xb1\x3b\xd0\x00\x75\xbc\x2e\x20\x9d\x7b\x0d\x07\xb2\x76\xaf\xe1\x08\xfe\x7a\xe7\x00\xe0\x3f\xc4\xdd\x7b\x39\x50\x3d\x7d\x2f\xe7\x41\x07\x44\xf4\x27\x19\xb0\xf7\x72\x22\x05\x38\xf7\x72\xb0\x81\xf4\xbd\x1c\xb8\x31\xf2\xce\x75\xcd\x00\x5f\x7a\xee\x21\xc0\x5c\xae\x6b\x06\xe8\xd3\xdc\x43\x86\x12\xb1\xf7\x72\x80\x9b\xe4\xbd\x9c\x07\x48\x6f\xee\xc9\x41\xa3\xec\x35\x39\x08\x3a\xf7\x72\x20\xa7\x38\x75\x2f\xdd\x40\x5e\xee\x55\x9d\x58\x03\xdc\x47\xac\x8f\x22\x74\x14\x46\xe6\x9d\xb9\x48\x85\x9d\x4b\xcd\x53\x05\xb9\x97\x9a\x35\x99\x19\x34\x91\xef\x3b\xec\x47\xeb\x25\xa0\x0f\xa6\x17\xae\x1e\x2c\x06\xab\xcb\xbb\xa3\x17\x4e\x60\xe3\x81\xc6\xd4\x89\xa9\xbe\x37\xe6\xc4\x5e\x2e\x2b\xf1\xf2\x1d\x45\xee\xf9\xb1\x43\x1d\x3c\x3f\x76\x68\x58\x59\xf0\x02\x6f\xd9\x4b\xec\xd0\x12\xc7\x49\x1d\xe4\x90\xe3\xa4\x0e\x3b\x6f\xee\x38\xa9\x83\x8a\xc9\x3d\x27\x75\x91\xc7\x3b\xe5\xc8\x16\x74\x91\x4c\xa1\x83\x2a\x03\x66\x2e\x6b\x82\xec\x03\xc7\xda\x0d\x57\x9f\xc6\x26\xb2\x74\xf7\x09\xa6\x71\xc5\x28\xdd\xf1\xc8\x2b\x28\x2a\x3f\xe0\x6a\x69\xcb\x4e\xbf\xf0\xea\xb1\x2d\xc0\xbd\xff\xd4\xd5\x09\x4b\x17\xa0\x4c\x5d\x37\xde\x80\x1a\xda\xd8\xea\x15\x28\xd8\xea\x9a\xd8\xca\xad\x94\x7e\x35\x56\x57\xd3\xb4\xe2\x79\x65\xa4\x9d\xab\x44\x8e\x8f\xa5\xec\x7f\x27\xce\xf8\x54\xca\x91\x14\x31\xd5\x8b\x50\x3d\x37\xaa\x7c\x3f\x29\xd2\x91\x1b\x2e\x36\x8d\x75\x5c\xe5\xde\xd2\xd8\xb4\xb9\x7c\x3b\x69\xe0\x44\xa8\xd9\x81\x3a\x0e\xe6\x77\x9d\x69\x6b\xf5\x82\x52\x64\x12\x6d\x38\x20\x2c\xc7\x69\x7d\xa8\x5b\x8e\xf0\xee\x28\x99\xa1\xd8\x70\x49\x09\x5e\xc0\x50\x91\x95\x6a\x46\x36\xae\x32\xbe\xbd\x72\x9c\x96\x56\x58\x47\x54\x92\x74\xfd\x18\x7f\x08\xf5\xf3\x91\xf2\xde\x0d\x27\x59\xe5\x85\x3c\x10\x83\xee\xb5\x10\x18\xe0\xd4\x71\x2a\x87\x41\x4d\x8d\x0b\x39\xc8\x97\xca\x4d\x8d\xd0\xa0\x1e\x42\x9d\x4f\x8d\xc0\xda\xe2\x5e\xa3\x88\x25\x60\xaf\x51\x48\x0a\xe7\x1a\x05\x48\x7a\xf7\x2a\xc0\x40\x02\x25\x65\x10\xba\xc0\x51\x06\x65\xc6\xee\x25\x00\x99\xb3\x67\x25\x81\xf1\x13\xbb\x32\xef\x89\x89\x31\x9c\xe6\x73\x59\x64\x53\xfd\x34\xd6\x46\xb8\xd2\xc7\x97\xfe\x49\x1e\xe8\x23\xae\xab\x3e\x4c\xff\xea\xa5\x3f\x60\x4f\xcf\xd5\x1e\xc6\xa4\xa2\x8c\x82\x7c\x70\x5c\xed\x65\x3a\xb3\x6e\x81\x94\xf4\x83\x5c\x3a\xce\x7f\x92\x3f\xed\x22\x38\xd6\x00\xf7\x10\xcf\x85\x1d\x46\xd7\x9b\x2b\x50\x2b\xe7\x2d\xdf\xb1\x0a\x63\x97\xf3\xb9\xfb\xb8\xef\x48\x01\xd6\xff\x68\x0c\x3e\x54\xef\x8a\x14\x1f\xe2\x14\xad\xf4\xc7\x15\xc6\x60\xdf\xe6\x45\xea\xba\xa8\x43\xea\x7b\xdd\x5a\x91\xee\xdc\x53\x77\x45\x7d\x32\x0f\x11\x3d\x92\x4d\x9d\x86\x02\x89\x75\x30\x85\x0a\x9d\xbb\x1a\x0a\x58\x3a\x33\x0f\x09\x81\x46\xa7\x88\x20\x5e\xb5\x10\x1c\xf4\xdd\x83\x48\x58\x42\xdd\x73\x48\x08\x9a\xcd\x61\x0f\xb2\x72\x95\x1d\x2c\xe9\x1d\x24\x01\x1a\xfb\x8a\x43\x5f\x96\xe8\x00\xb2\x0c\x67\x0f\x2a\x5b\x65\xf7\xa0\x03\x19\x76\xf6\xa0\x63\x40\x7c\x76\xec\x02\xe6\x6c\xf4\x64\xc9\x46\xb9\x0a\x21\xde\x28\x57\x10\x8c\x59\xae\x0d\x35\x48\x03\x9a\x1d\xfa\x2a\xac\x1b\x0f\x57\x0a\x32\xcf\x17\xb6\xaf\x10\xa3\xc2\x8f\x00\x70\x74\xf6\x91\xa6\xf0\x2f\xcc\x64\x4a\x53\xba\x07\xaf\x6f\xf5\x69\xb6\x3d\xf8\x99\xdd\xd9\x23\x16\x68\x26\xf6\x5e\xb6\x0f\x07\x0a\xa3\x3e\x70\xaf\x97\x59\xd0\xb0\xcf\xcb\x3b\x4e\x20\x2a\x81\x60\xd4\xcb\x2a\x8f\x28\x66\x62\x71\x93\xc0\x00\x94\xaa\xf3\x97\xee\xd7\xaf\xa0\x4e\x73\xf7\xfb\x57\x63\xa0\xb1\x14\x23\x49\x61\xe2\x81\x29\xe7\x8c\xe7\x1b\x9f\x64\x87\x98\x8d\xd7\xb5\xcb\xa7\xd7\x5d\x8d\x6d\x32\x9e\x42\x36\x9b\x15\x1f\x88\xf2\xdf\x76\x87\x9b\x88\xd9\x5c\x7d\xe7\x47\x30\xe0\x39\x99\x99\x17\x1f\x41\xbf\xc9\x1c\x20\x32\x40\xa2\x91\x8e\x46\x6e\x7d\xc4\x9e\xbe\xc9\xa0\xe3\x90\x8d\x24\x62\x8e\xd4\xbb\x2a\x7c\x53\x02\xcc\x33\xd4\x58\x85\xcd\x07\xf2\x02\x09\x98\x77\xe6\x62\x15\x36\x17\x2c\x13\x09\x18\x57\x6b\x38\xfe\xc8\xc8\xc2\x5d\x12\x7a\x12\x72\x5f\x84\x83\xaa\x97\x9f\x7f\x80\x77\x57\xe5\xe7\xb8\x34\xab\xc1\xc8\x0a\x78\x23\x53\x2e\x50\x36\xd7\x73\x18\x36\xb7\xd9\xc2\x7f\x49\x19\x4a\x2e\x0f\xe8\x82\xe8\xfc\xbb\x0a\x30\x8f\x38\x20\x19\x34\x26\xb0\x48\x85\x8d\x23\x57\x64\x6e\xee\x9c\x9f\x3e\xbf\xb0\x1c\x08\x84\x2c\xc9\x2d\x0f\x4a\x24\x75\xac\xfd\x89\x42\xb4\xdc\xee\xc9\x70\x7d\xb7\xfe\xb3\xc8\xaf\x72\x90\x04\x95\xa9\xac\xc0\x90\x6a\x89\x8c\x5d\x71\x20\x05\x2e\x20\xce\x8b\x6e\x0a\xf4\xec\xfb\xd9\x8d\xfd\xb4\x20\xcc\x04\x00\xcc\xd1\x45\xd7\xb4\xcd\xf9\xac\x6e\x07\x16\x62\x00\x0c\x61\xcf\x76\xc2\x8d\xfd\xbc\x38\x54\xf7\xc6\x71\xab\x48\x34\xa0\x47\x53\xce\x81\x1b\xdf\x83\x22\x71\x30\xc3\x98\x86\xd2\xd4\x22\xd0\x80\xc9\xac\xa3\x11\xd7\xc1\xcb\xc1\x6c\x66\x92\xd2\x7d\xce\x17\x56\xa4\x47\x90\x0d\x2f\x46\x49\xb1\xb1\xc9\x27\xad\x84\xbb\x6a\xeb\x38\x74\x22\x4b\x7e\x68\x95\x18\x2f\x61\xc7\x44\x5f\x52\xa7\x12\x3d\xdd\x0c\xad\x0d\x48\x76\xbd\x29\xdc\x36\x64\x37\x85\x1f\x5d\xb6\xf7\x9c\x57\x0c\x75\x30\xe9\x2b\xba\x11\xcc\xbc\xaa\xd8\xaf\xce\x9e\x2c\x37\x35\x92\x5f\x11\x3c\x37\x1f\x60\x96\x61\xf7\x83\xcc\x3a\x9c\x68\x00\xf8\x32\xe7\x08\x3c\x39\xfc\xef\x8a\xbb\x51\xf6\xb4\x26\x56\xb0\xdc\x0a\xc9\x7b\x73\x0e\xd3\x41\x13\x4d\x10\x76\x1c\x59\x31\xb5\x32\x11\x1c\x41\x3c\x5f\x1f\x19\x36\x8e\x33\x03\x15\xb6\x49\xa4\x2c\x2e\xa6\x8b\x22\x35\x50\x28\x21\xa3\x31\x80\xad\x40\x00\x26\x1f\x24\x01\x47\x0e\x4e\x55\x55\x5d\x39\x38\x96\x90\xeb\x51\x24\x1b\x60\x11\xdd\x06\xcf\x61\x67\xe0\x60\x37\x6e\x53\x36\x38\x26\x5a\x5a\xfb\x85\x3e\x5d\x3d\x09\xde\x94\x5a\x61\xcf\x70\x40\x45\x16\x88\xf9\xd2\x5b\xdc\xd7\x88\xb9\x7b\x26\xfb\x27\x2a\x9d\x94\x8c\x14\xaa\x95\xa3\xa9\x0a\x97\x4e\x4a\x60\x29\xf4\x7d\x26\x81\x74\xb3\xc3\xa4\x13\x51\x3d\x29\x71\xb3\xf2\x9d\x24\x55\xd1\x8e\x73\x95\x42\x4a\x27\x25\x48\xc3\xce\x49\xc9\x40\x63\x65\x6d\xb0\x88\x2a\xba\x5f\x11\xcd\x2f\xe6\xc8\x33\x2f\x65\xda\x5e\xd4\x81\x4b\x33\xe7\x7e\x30\x2b\xf4\x26\x6d\x20\x57\xeb\x62\x19\x02\x5f\x4f\x65\x11\x4b\xf5\x0a\x77\x47\x86\xba\x32\x24\x3b\xdc\xf8\x84\x81\x74\xb2\x1f\xa1\x93\xf9\x3a\xdf\x84\x85\x2d\xad\x40\x9c\x51\x94\xa3\xe3\xb8\x91\xc9\xb0\x61\xdf\xa1\x0a\x3b\xd3\xa0\x27\x8b\xf1\x3d\x4c\x1d\xcc\x63\x3a\x95\x7e\x6e\x8e\xdc\x87\xd1\x58\x43\xb6\x16\x8a\xca\xbd\xc4\x2b\xfb\x6c\xe9\x4e\x36\xd5\x78\x3b\xd9\x22\x05\x98\xda\xaa\x44\xce\x64\x8b\xe4\x08\x2f\xab\x75\x75\x66\x56\x68\x68\xec\xc4\x18\x3a\xd8\x4d\xa9\x77\xfc\x29\x34\x75\xc1\x9b\x52\xdd\x9c\x29\xa4\xba\xda\x69\x76\x4f\x23\x66\x0a\x41\x01\x9e\xcf\x94\x46\x8c\xf0\x86\xee\x73\x7d\xa6\xc6\x9a\xc2\xbf\x35\x9f\xdd\x51\x47\xa1\x07\xa6\xfa\xa2\xfc\x87\xee\xe1\x13\x80\x17\x08\x2a\xf2\x57\x5e\x6f\xd5\x73\xc4\x67\xc6\xa1\x00\x24\xfc\x05\xd2\x3e\x73\x70\x07\x38\x37\x41\x18\xff\xdc\x98\x0c\xa4\xfb\xc1\x85\xb7\xd1\x03\x0a\x0f\xe9\x03\x8d\xb3\x3b\x83\xe3\xa4\xdc\x43\xba\x40\x63\x54\x29\x49\x60\xf4\x28\x08\xc6\xf6\xa3\x5d\xa2\xd7\x73\x9c\x9a\x23\xd8\x2e\x1c\x0d\x5f\x94\xb7\x1f\x62\x18\xf3\xf2\xf6\x43\x8c\x77\x3e\xc7\x1c\xab\x0f\x83\x74\xc0\x6d\x04\x90\x84\x99\x4f\x74\x01\x78\xf1\x08\x68\x1f\x5b\x1c\xc9\xa4\xf6\xb5\x45\x03\x64\x2b\xed\x13\x15\x87\x1a\xbb\xf5\x11\x12\x5d\xfb\xb7\x45\x47\x1a\x2e\x29\xf4\x95\x7b\x87\xfd\xc4\x3c\x4e\x5c\xb9\x54\x38\x96\x99\x38\x9f\x2e\x91\xc8\xb5\x75\x65\x94\xe5\x54\x4a\x79\x79\xfa\xee\xad\xe4\x10\x0c\x04\xea\x9b\x48\xf7\x60\x28\xca\xcb\xdf\xb3\x73\x85\x6b\xd7\x00\x9e\x3b\x78\x57\xa3\x15\x47\xf1\xbe\x8e\xf1\xbc\xc4\xa1\x5e\x64\x81\x33\xa3\x30\x23\x39\x5c\x80\x29\x2a\xd8\x8e\x18\x0b\xca\x3d\x88\x0f\x08\x9a\x07\x2e\x25\x81\xff\x9c\x6b\xce\xb0\x3e\xd0\x80\x9d\x62\xce\x96\x53\xcd\x4f\x5d\xd8\xbc\xe6\x6c\xe9\x5c\xeb\x0e\x25\xa2\xcb\x84\x81\xaf\x28\xe7\x53\x49\x54\x52\xce\xfb\x0a\x35\x8e\x1f\x08\xac\x81\x39\xcb\x4c\x0d\x60\x44\xbc\x43\x73\xe0\x41\x8e\x74\x5f\xc8\x57\xf9\x2f\xde\xed\x1f\x1e\xb9\x40\xee\x99\x4c\xfb\x60\x1a\xd2\x98\x35\x35\xcb\xef\x41\x55\xbd\x6d\xe5\xcb\x07\x1b\x9d\x6d\xa7\x3d\x27\xc6\x18\x2b\x23\x07\x74\x1c\x70\xa5\x8d\x6a\xb3\xff\xad\xae\x92\x99\xac\x7d\xac\x72\xc1\xa5\x5c\x9d\x9d\x1c\x02\xd3\xdc\x05\x27\x4b\xe7\x5b\xcf\x6a\x96\x0b\xd0\xd2\xa9\x82\x33\xb3\x7f\x8a\x25\x90\xdb\xc7\x2e\xba\x32\xd9\x12\x7f\x31\xa7\x34\x5d\x70\x00\xbf\xa8\x28\xbd\xd0\x4d\x15\xa5\x57\x94\x71\xe1\x58\x70\x06\x92\xca\x08\x23\x10\x90\x8e\xe5\x01\x56\xf8\xdc\x31\x3d\x80\xc1\xec\xc2\x7d\x1d\x63\x20\xf3\x70\x11\x60\xdb\x3b\x72\x6f\xae\xe0\x41\xb7\xdc\xb1\x39\x46\x71\xe5\xb6\x25\xb6\x71\xd5\x9b\x95\x82\xdd\x2f\x1d\x8f\x58\xd1\x97\x85\xe3\x11\x2b\xc3\x76\x0d\x09\x81\xde\x86\x45\x2f\x14\xce\x92\xa2\xe3\x99\xf3\x5e\xb9\xe8\x93\xcb\xa9\xf3\xa2\xa8\xa8\x51\xe1\x00\x60\x82\xbb\x74\xbf\x34\x01\x0d\x2a\x3c\x44\x0c\xd6\xa5\xf5\xc5\x15\xdd\x54\x58\x5f\xdc\x29\xc4\x9a\x6e\xef\x42\xac\xe9\x75\x08\xba\x9f\x37\x15\x8c\x76\xe9\x7a\xda\x82\x29\xb9\xf0\x90\x10\x10\xc7\xf8\x09\xd5\xf6\x4e\xeb\xa0\xde\xe5\x85\x63\x04\x64\xa5\x85\x43\xf0\xd0\xa5\xe3\x29\x2b\xfa\xa4\x70\x3c\x65\x21\xec\x9c\xe0\x41\x8d\x9d\xef\x93\xc2\xac\x2c\x9c\xeb\xc2\xa0\x92\x15\xee\xa3\x52\xd0\x02\xef\xbb\x98\x91\x41\xec\x3b\x34\x0a\x73\x3e\x50\x07\x39\xbb\x6f\x40\x89\x06\x5c\x3a\x0e\xb1\xa0\x57\x16\x2e\x00\x9d\xaf\x9c\x12\xc1\x9f\xe4\x92\xc6\xda\x09\xf1\xca\x04\x5d\x07\xc4\xc4\x45\x1d\x0f\xc4\xbe\xc6\x37\xb8\x20\xc2\x88\x3b\xfb\x57\x90\x40\x00\x38\xef\x58\xc0\x31\xf8\xa5\xf3\xfe\x31\x58\x86\x0a\x17\x80\x64\x15\xf9\x0b\x1d\x51\x91\xbf\x62\xae\x29\xbb\x9b\xf3\xc5\x46\xc8\x72\x89\xca\xd6\xb8\x0d\x06\xba\x4b\x8f\x2a\x76\xa8\xca\x96\x44\xe0\x41\xa1\x64\x97\x3e\x04\x09\x3d\x52\xf9\xd2\xa4\x82\xcb\xd4\xb1\x84\x37\x1c\x2d\x03\x7b\x2c\xab\x1f\x76\x94\x8c\xb4\xdc\xf0\x59\x47\xc9\x51\xcb\x72\xd7\x2e\x97\x1b\x1e\x57\x1a\xe8\x98\xaa\xf9\x72\x08\xb9\x58\xff\x22\x59\x43\x13\x8e\x3b\x2a\x7e\xee\x02\x97\xde\xc6\x1d\xf5\x15\x8d\x85\x54\x36\xe5\x43\x47\x83\xea\xb5\x56\xa6\x54\x63\x65\xce\x33\x61\x4a\x7a\xdf\x69\x8c\x0d\x62\xa7\x86\xc2\x9c\xa9\x01\x1d\x60\x4f\xe6\x42\xd9\xab\x2e\x00\xbd\xe9\x9c\xc0\xc0\x44\xbe\xac\xbc\xaa\x0c\x73\xb3\xb2\x58\xc0\xbc\x72\x3f\xcd\x08\xd2\xd8\x7d\x9f\x1a\x0e\x5c\x0a\x0f\x01\x49\xe1\x1c\xf9\xf4\x55\xd8\x9c\xf0\x88\xd5\xb8\x70\x64\x36\xb4\xfe\xd2\x78\x14\x03\xdf\x1b\x8f\x62\x08\xf9\x5f\x72\x14\x03\x78\x8b\xe8\x8c\x9b\x93\xb4\x08\x10\xbe\xc1\xba\x72\x8b\xb8\xfb\xaa\x33\x34\xe0\x16\x71\xca\x84\x12\xa9\x2f\xf0\x04\x8a\xb2\x64\x82\x11\x88\x01\x06\x0a\xa8\xf8\xc1\xdd\x3a\x8b\x0d\xa4\x72\x16\x1b\x95\x8b\x75\x53\x00\xcd\xeb\x16\x71\xcf\x10\xde\x51\x58\xc5\x80\x61\x8c\x90\x6e\xac\xb5\x64\xf8\xd1\xe5\xad\xdb\xc6\x58\xbb\x87\x73\xa3\x5d\x1d\x3f\x56\x35\xdc\x70\x9d\x69\xda\xf1\xa3\xdc\x5b\x4b\xb0\x61\xbf\x35\x12\x09\x81\x47\xe3\x7b\xab\xe9\x82\x8b\x98\x88\x37\xdf\x16\x17\x6c\xf2\xde\xfa\x51\x43\xde\xd6\x8f\x1a\x82\xee\x25\x23\x00\xdc\x3b\x46\x50\x80\x4b\x01\x19\xba\x14\x53\x4d\xa1\x8d\x2b\xf0\x92\xde\x2d\xc6\xa6\x5a\x1d\x70\x3b\xb3\xdf\x6f\x07\xe5\xf9\xbd\x3d\xcf\x0c\x65\xac\xd5\x19\x11\x00\xf6\x2b\x22\x1d\x38\x88\xbe\xc5\xea\x9b\x1a\x6b\x48\xee\x7e\x60\x43\x96\x08\x9c\xaa\x22\x73\x37\x6a\xc3\x95\xd1\xae\x03\xab\x67\x4c\xd6\x0e\x74\x8e\x97\x88\x23\x73\x36\x3f\xec\x8f\x9c\x48\x6f\xbf\x11\xc8\x88\xea\xc3\x2c\xa2\x11\xef\xcb\x4a\x81\xe8\xbd\xdb\xb2\x52\x00\x83\xea\x3c\x04\x21\x39\xc0\xbd\x58\x68\x6f\x07\xde\xba\x77\xf8\xec\x45\xbc\xf7\x95\x75\x0d\x26\x4d\x65\x5d\x83\x49\x5d\xf6\x51\xbd\x75\x5f\x97\x83\x8e\xa9\x08\x2e\x18\xa2\x8a\xe0\x82\x61\xf5\xad\x97\x96\xe1\x7d\x23\xa6\x8b\xbb\x06\x18\x1f\xc7\xd5\x79\xf5\xde\xe3\x4f\xe0\x8c\x2f\x64\xf6\x05\xcd\xb4\x54\x12\xd0\x07\xe7\x50\x16\x3c\x02\xef\x5c\x40\xc8\x87\x3b\x1c\xdb\x69\x02\x27\xbb\xce\x27\xb3\x3b\xe0\x4e\xfe\xc1\x01\xc0\xea\x03\x14\x86\x29\xc7\x80\x10\x73\x93\x40\x7e\xbd\xf3\x43\x79\x84\x45\x75\xee\xca\x23\x2c\xaa\xf4\xa1\x32\x44\x82\xa9\xef\x2a\x43\x24\x72\xbd\xf3\xca\xb8\xe3\x2e\xb3\xdd\x71\xac\xdf\xff\x57\xc8\x87\xca\x70\x09\x96\xb8\xab\x0c\x97\x90\xdf\xf7\xf6\xe4\x06\x24\xe2\xbd\xfd\x8a\x67\x1f\xbe\x63\x70\x6f\x4f\x6c\x40\xd1\xba\x77\xbf\x11\x2c\xb8\xe5\xf7\x72\x8b\x05\x17\xdc\x97\x5b\x2c\xfa\xfc\x7e\xee\x7c\xe4\x77\x08\xc0\xbe\x05\x44\x47\xfd\xae\x05\x3f\xec\x4e\xee\xcd\x77\x49\x21\x94\x3a\xa9\x21\xbb\xd4\x49\x2d\xfa\xe5\xde\xbc\xe7\x25\x9f\xc0\xbc\x77\x9e\xc1\x81\x4a\xd9\x2b\x72\x08\x78\xe9\xf7\xca\x10\x40\x8b\x2b\x43\x30\x96\xa8\xdd\x33\xc2\xe7\x37\xee\x99\xb3\x43\x84\x0b\x2a\xf7\xee\x57\x8c\x07\x00\x38\x55\x14\xb9\xfc\x5e\x19\x1a\xe8\xd3\xca\xd0\xc4\x80\xda\xd3\x32\x04\x07\x1c\xf7\x85\x5b\x87\x1e\x20\xce\x68\x40\x56\xb7\xbe\x1c\xbd\xbf\x2b\x73\xf1\x1f\xce\xb6\x4e\x14\xb3\x72\xb6\x75\x22\xfc\xc7\xbe\xdd\x2f\x25\x32\xde\x6c\x98\x44\xf8\x0f\x77\x2a\x89\x5a\xad\x5c\x60\x08\x14\x26\x83\x29\xc4\x9b\xf4\x10\x94\x1f\x57\xb8\x07\x9d\xec\x8f\x32\xf3\x88\x71\x5b\x95\x99\x47\x94\xf2\x87\xfd\x3a\x10\x5c\xa3\x5d\xd9\xcf\x03\x81\x5f\xea\x1f\x95\x37\x6c\x44\x63\x57\x95\xb1\x14\x6c\xf6\x47\x65\x14\x44\x5f\xae\x2a\xa3\x20\xd8\xee\x0f\x67\xfb\x28\xc2\x2b\x67\xff\x28\xc3\x5a\x67\x82\xce\x51\x21\xd1\x15\x82\x25\xff\x74\x9d\x5e\xe0\x50\xe6\x8b\x87\x88\xda\xfc\xe9\x1a\x36\xe1\xac\xe1\x8b\x87\x60\xa0\x31\x4b\xf6\x10\x08\xcc\x92\x2d\x82\x7f\xda\x57\x78\xc1\xcc\xfd\xc5\x09\x8b\x0e\xfd\x82\x9d\x6f\x2a\xc0\x6a\xfb\x27\xe6\xec\x03\x89\xf3\x79\xe5\xed\xb0\x3f\x1d\x4b\xe4\x00\xd2\x5a\x43\x24\x84\xcb\x83\x03\x15\x30\x3e\xa7\x32\x77\x6b\xc8\x80\xf5\xf6\x8b\xb5\x63\xc0\x58\x7a\xdf\xfb\x0e\x81\x0b\xbf\x54\x06\x0a\x2a\x63\x3d\xc2\xe0\xb0\xff\xcf\xca\xc0\x09\x26\xfa\x52\x19\x38\x31\x14\x5f\xee\x3e\xeb\x76\x41\x01\x77\xd4\x84\xa3\xfa\xc3\x4f\xcd\x87\x56\x52\x50\x38\x8c\x6d\xe0\xe6\x57\xdc\xc6\xf7\x4b\xc6\xf3\x6c\xf2\xfa\xfc\xf4\x6d\x7b\x89\x78\x86\x1b\x3f\x7d\xad\xef\x3b\xdf\xb7\x12\xf3\x09\x39\xdf\xb7\x12\xe1\x7d\xfb\x45\x2b\x21\x01\x90\xfd\xa2\x95\x0c\x6a\x62\xe0\xb0\x7d\x7d\x01\xf7\x1e\x0c\xff\x48\x5f\xbf\xbd\x07\x15\x69\xdf\xf9\xdc\x94\xe0\x5d\xe4\x7c\x6e\x0a\xc2\xf0\xb0\xcf\x96\xa0\x3c\x39\xd3\xbf\xf4\xa6\xe3\x1e\x76\x42\xc8\x04\xc1\xa7\x76\xdf\xde\x3b\x04\xd9\x8d\x6c\x18\xde\x2a\xd8\x37\xdf\xaf\x11\xb5\x43\xe6\xfb\x35\x22\x34\xe5\xfa\x42\xe1\x3d\xf8\x70\x1e\x18\xd3\xfa\x3d\x9c\xdd\x45\x36\x0c\x3e\x7e\x36\x08\xf6\xea\x48\x39\x43\xdf\x83\x0a\x19\xb1\xa5\x72\x50\x11\x53\xe0\xe0\xf4\xec\x0f\x1b\x8a\x0a\xce\xb5\x48\x80\x8f\xe9\x2b\x57\x6b\xd8\x1c\xc5\xe4\x96\xe8\x9b\x93\xc3\x1f\xf8\x2c\xfc\xb7\x3f\xf0\xfe\xbd\x0f\xa1\xff\x73\x9f\x4e\xde\xf8\x51\xdb\xd2\x27\x6c\xdd\x0f\xcd\x56\xbf\x96\xf8\xbd\x8f\xa8\x7d\xfb\xb3\x69\xa5\x0f\x9d\x7d\xf7\xab\x65\xa5\xcf\x34\x7d\xeb\x23\x46\xe5\x4f\xaf\x54\x9e\xda\x2d\x3d\x33\x5b\x79\xe1\xd4\x7b\xb3\xb4\xf4\xf8\xa4\xf7\x7e\xd8\x77\xde\x7d\xf8\xde\xed\xfc\x6f\xdf\xc6\xff\xee\x5d\xf4\x6f\xdc\x39\xfe\xde\xdd\xdf\xef\xdd\xf5\xfd\xd6\x9d\xdd\xd2\x45\xda\xf2\xa5\x47\xff\xbe\xe1\x37\xee\x24\x95\xee\xf3\x3c\x7a\x57\xa1\xe4\xab\xe7\x3a\x8d\xfd\x03\xe7\xc3\xa5\x43\xbf\xef\x9c\xf0\x78\x67\x2a\xdf\x33\x29\x7f\xc7\x90\xfb\x3d\x43\xa9\x67\x7a\xfc\x86\x65\xe3\x7b\x2a\x90\xa7\xa2\xb8\x0b\xfc\x0f\x2f\x1b\x56\x56\xeb\xc7\x5c\x7f\x72\x67\xbe\x99\x48\xce\xa0\x96\xf2\x6e\xe5\x2d\xda\xfc\x5a\x2f\x32\x5c\xcb\x72\x4e\xa2\xbc\xbe\x77\x8b\x78\x8d\xb7\xd8\xa4\xce\xa6\x9f\xc5\x48\x4e\x26\x93\x7c\xb5\xc4\x2c\xa9\xbd\xc3\x49\x8a\xa3\xfc\xa9\xfa\xbb\x4b\x8b\x34\x6d\x91\x09\xdb\xda\xaa\xeb\x1c\x1d\x6a\xd6\x46\xcb\x65\xba\x7a\xaa\xfe\xee\x96\x0b\xe5\x38\x2f\x38\xad\x3d\x57\x70\x7b\xc9\x59\xce\x44\x5a\x49\xdf\x8e\x50\x9a\x2a\xda\x87\x3d\xfe\x78\x29\xec\x8e\xbe\xc1\xab\xec\xa9\xf9\xb5\x7b\x0a\x15\x6f\xcf\x70\x7e\x7a\x47\xcf\x38\x5b\x62\x9e\xaf\xce\x57\x8b\x29\x4b\xb3\xa7\x6e\xbf\xaa\x2a\x6c\xa4\x7f\x8b\x16\x38\x6b\xe0\x66\x3b\x62\x34\x42\x79\xe3\x5b\x99\x36\x70\xb3\xf9\xb0\xfb\x8f\xe6\xfc\x00\x5d\x8d\x26\x6f\x8b\xc5\x14\xf3\x36\xc9\xde\xa2\xb7\xeb\xf5\x86\x5c\xf0\x93\xc9\x04\x3f\xec\xe9\x98\x5a\xd6\x68\x7e\xcd\xda\x84\x92\x5c\x76\x52\x3e\x27\x59\xf3\xc1\x32\x49\xd6\xca\xda\x47\xb7\x98\xe6\x47\x0b\x92\xe7\x98\x03\x60\xbb\xf7\x0a\x8b\xb8\x6c\x72\xcb\x48\x5c\x0b\x36\x45\x1d\xb0\x82\xe6\x93\x52\xd4\x02\xdd\x1f\x93\x2c\xc7\x14\x73\x9d\x16\x1a\x10\x4d\xc2\xc0\xd6\x2d\x75\xea\x2d\x89\x26\x93\x49\x29\xf5\xd3\xac\x1d\xe3\x04\x15\x69\x7e\xe2\xa0\xbb\x25\xaa\x07\x93\x67\x21\xd9\xa0\xc5\x9b\x5f\x45\x81\xac\x45\x5a\xa8\x95\xed\x91\xa4\x61\x39\xe2\x89\xe1\x08\xda\xcc\xe7\x9c\xdd\xd5\x28\xbe\xab\x5d\xac\x96\xf8\x88\x73\xc6\x1b\x3f\x5d\xcc\x71\xad\x9e\xaa\xcc\xeb\x35\xc4\x67\xc5\x02\xd3\xbc\xb6\x28\xb2\xbc\x36\xc5\x35\x96\xd4\x44\x06\x96\x1f\x6b\xef\x70\x84\xc9\x2d\x8e\x25\xfe\xd3\xb6\xc9\x5f\x94\x6c\xda\xd6\x20\x13\xd3\x6f\xcd\xa7\x6e\x68\xa2\x46\x3f\x82\xf7\xf6\x1a\x62\xb6\x34\x5b\xe5\x3e\x6e\xee\xaa\xac\x9e\x4c\x26\xa4\x4d\xf1\x9d\x6e\xff\xd6\x56\x03\xb7\xf1\x82\xe4\x8d\xba\x83\xd6\x45\x47\xb4\x75\x33\x9e\xda\x9f\xbb\xb4\xd9\x72\x6b\xd2\x42\x13\xf2\x31\xff\xd4\x6c\x99\x8a\xa2\xa6\x84\x26\xb4\xb5\xbd\xed\x57\x63\x0f\xa7\x19\xae\x79\xfd\x69\x67\x18\x7a\xaa\xd2\xf1\xa7\x1f\x69\x0b\x7d\xda\xfd\x88\x5a\xf4\xd3\x2e\x7f\x8a\xda\x05\xcd\xe6\x24\xc9\x1b\xb4\xb9\x8b\xda\xcb\x22\x9b\x37\x68\xb3\xd5\x60\x13\xc1\x04\xcd\x5f\x83\xad\x2d\xd4\x4e\x31\x9d\xe5\xf3\x5f\xd9\xd6\xd6\x13\xd4\xbe\x43\x9c\xe2\xb8\xf9\x55\xff\x9a\x3c\xd1\x2c\x24\x06\x4b\x0e\x54\xfd\x8c\x65\xf0\x61\xca\x9a\xcb\xc2\xb5\x05\x5e\x30\xbe\xaa\xa5\x18\x5d\xd7\x62\x9c\xe3\x28\xc7\x71\xbb\x56\xdf\xd6\x25\x6c\xd7\x6b\xf5\xed\xf3\x5c\x68\xa6\x8d\xbc\xb9\x5d\xaf\xe9\x8e\xc9\x6a\x28\x8e\x05\xed\x65\x86\x6b\x58\xe6\xd6\xce\xb0\xc7\x7a\x8d\x66\x2d\x67\x35\x42\xc5\x48\x65\xb8\x96\x92\x05\xc9\xeb\xcd\xbd\xa8\x4d\xd1\x02\x4f\xea\x2e\xe9\xd1\x7d\x84\x71\x8c\xe3\x0f\x88\x53\xa1\x05\xb7\xa2\xb6\xca\x74\x82\x5b\x51\x5b\xf4\xd9\x24\x6f\x45\xed\x08\x86\x57\xd7\xae\x95\x4d\xa2\x56\xc4\x68\xc6\x52\xbc\xb5\xa5\x7e\x40\x27\xf8\xa1\x46\xd6\x7c\xd0\x93\xde\xf2\xff\xb2\xd1\xfc\x9a\x30\xde\x10\x5d\x85\x27\x1f\x3f\xb5\xf2\x49\xb0\x97\xff\xa2\x59\x38\x53\x85\xec\xe5\xdb\xdb\x4d\x2c\xc7\xc1\xc4\x09\x1e\xd8\x13\x02\xa2\x9d\x10\x8e\xe3\xf5\x1a\xa4\x45\x5b\x3a\xce\xb4\x39\x5e\xb0\x5b\xac\x1b\xa7\xa2\x56\x4b\xdc\x82\x5f\x77\x1c\x2d\x9f\xd3\x66\xcb\x26\x9f\x3c\x09\x5a\x44\x92\xe9\xfe\x6d\x39\xf9\xb5\x84\x1c\x34\xd5\x4e\xb4\xa4\x87\x15\x65\xf2\x15\x72\xd8\x7d\x12\xb6\x64\xbe\xbb\x4a\xfe\xc8\xa4\xbb\xb8\x25\x0a\xde\xcd\x5b\x96\xa3\x1f\x5a\x6c\xb2\x6c\x4f\x09\x8d\x1b\xbc\xb9\xa7\xfa\x85\x99\x92\x27\xb4\xc5\x55\x1d\x27\xac\xc5\x6c\xc1\xb1\x5f\xb0\xe1\x75\x6f\xde\xf2\xa6\xcc\xf0\xe3\x27\x60\x41\x36\xe1\x1f\xf3\x4f\x7b\x65\xc9\xc5\x9e\x7e\xfc\xb4\xbb\x71\xdd\x79\x4a\x9f\x7e\xb4\x75\x59\xaf\xd9\xa7\xdd\x8f\xec\xd3\x2e\xf5\x16\x18\x3d\x6a\x39\x30\xf8\x3e\xe7\x68\xd5\xc0\x6a\xb8\x9a\x2d\x3a\x09\xf6\xe8\x2f\xb9\x1e\xbe\xed\x6d\xda\xcc\x3f\xd2\x4f\x13\xfc\x91\x7e\x72\x72\x16\x41\x5d\xb1\xfc\xa1\xc1\x9a\xbb\xd3\x06\x6b\x31\x9d\x8d\x6d\xf7\x5c\x14\x29\x8b\x83\x41\xa9\x34\x5b\x08\x49\x49\x41\x27\xf9\x47\xfc\x69\xef\x91\x29\x4f\x55\xdf\xd4\x42\x2f\xad\x81\xa9\x2a\x5b\xf3\x6a\x60\xeb\x30\x15\x7d\x6f\x1b\x4e\x9d\x86\xe7\xcd\x16\x9f\x04\x7b\xfc\x97\x7c\x6f\x7b\x9b\x37\xe9\x47\x2e\x9a\xca\x4d\xdb\xe8\x83\x12\x98\x31\x4e\x08\xc5\x7a\xb9\x6c\x64\x62\xb7\x56\x59\x2e\xea\xad\xaf\x18\xde\x41\x43\xd3\x14\xef\x3e\x09\x5a\x82\x89\x4c\xdf\x9b\x35\x28\x7a\x68\x65\x6e\x04\x6e\x7e\x15\x8d\xa6\xb0\xe6\x3a\xab\x06\x5e\xaf\xf1\x2f\xc1\x7a\x8d\x84\xe8\xb2\x0b\xc8\x3b\x44\x67\xee\x0a\x72\x8b\xd2\x02\xd6\x8a\x8d\x55\xaa\x91\xac\xc6\x8a\x5c\xc4\xc3\x05\xf9\x76\xed\x95\x5d\x60\x50\x8d\x32\xba\x43\xd5\xab\xea\x35\x59\x03\x67\x95\xf9\x69\x1b\x6f\xd7\xdb\x42\xec\x4c\xf0\xc3\x43\xb3\x25\x57\xf8\x89\xd3\x24\x3b\x88\xce\xe8\x6e\x6d\xb9\xa1\x27\x93\x89\xd5\x39\xce\xf4\xe2\x7d\x9a\x48\x1d\x41\x53\x69\x29\xf0\xad\x85\xca\x25\xd0\x6b\x95\x02\x3d\x4d\xa0\x0a\xad\xd7\xb2\xa2\x0f\x9e\xfe\x50\x12\xb9\x93\x7f\xfd\x88\xd0\x7f\x51\xff\xeb\xa9\x56\x6d\xab\x94\x8b\x7e\xbb\x66\x8f\xb5\xcb\xb0\xa0\x56\xd0\xbc\x64\x62\xd1\x98\x6c\x16\x15\x1f\x3f\xb5\xe8\x24\xdc\xa3\x55\x01\x4f\xb7\xb7\x9b\x79\x59\xc0\xd3\x4f\x4d\xa9\xb3\x4f\xea\x58\x74\x8b\x98\xc7\xb8\xc5\x1e\x17\x01\xac\xc9\x27\x7c\x6b\xcb\xca\xb8\x36\xa4\x33\x4a\xc0\x13\x2d\x1a\x9f\xc0\xf4\x57\x5a\x17\x12\xbf\xb5\xac\x12\x6b\x7b\x03\x4d\xf2\x8f\xc1\xa7\x66\x0b\xd5\x08\xcd\x72\x44\x23\x31\x6a\x30\x32\x6a\xb8\x10\xd4\x2b\x73\x17\xf7\x4b\x3a\x47\x34\x4e\x71\x5c\x83\x32\xdb\xf5\xed\x06\x7a\x5a\xaf\x35\xc4\x42\xbe\xc0\x59\x86\x66\x78\xbb\xde\xac\xef\xd6\xeb\x4d\xb1\x6c\x89\x5c\x32\xa1\x81\xe7\xf8\x3e\x9f\xa0\x56\xf6\x20\xd5\x05\xa6\x84\x97\x69\x43\xe4\x55\x79\x93\x4c\x8b\x9a\xa4\x11\xc1\xf8\xb5\xf2\x26\xb4\x15\x9a\x95\x4e\x22\xbd\x46\x17\x93\x69\x23\x6a\xa5\xcd\x3d\x31\x14\x52\x36\xa7\x20\x94\x49\xa3\xf8\x48\x3f\xe9\xb4\x4a\xe8\x3d\x29\xf1\x37\x8a\x63\xcd\x04\x13\x77\xab\x63\xd8\xa0\x00\x36\x68\x89\xa5\xe9\x49\x58\xe2\x06\x46\x27\x8f\xe4\xe5\x91\x2d\x39\x5e\x62\xfa\x0f\x94\x13\x54\xca\x89\x70\x29\xd5\x23\x5a\x74\xfe\x3f\xac\x45\xe7\xfe\x3c\x83\xda\x24\xa6\xe6\xcd\xe6\x86\x99\xa6\x5a\x7f\x4a\x23\xfc\x48\x0f\xfc\x67\xb4\xa5\x34\x4a\xdf\x6f\x98\xaf\x85\x95\xda\x04\xab\x68\x8b\xb7\x60\xd7\xf3\xd8\x9e\xe7\xdf\xd0\x42\x6f\xcf\xc3\x3d\xe9\xd2\x6c\x3a\xcd\xf7\x09\xe9\x84\x7f\xc4\x9f\x2a\x04\x54\xcc\xcb\xf5\xda\x6e\x5f\x44\xb8\x29\x52\xec\xec\x54\x16\x9e\xa7\xdf\x5b\xab\x76\x1b\x31\x4e\x71\x8e\x6b\xa2\xac\x16\x2f\xf5\xa7\x5a\x20\xe5\x56\xca\x8f\xaa\xb7\xb0\xb3\x9b\x5a\xaf\xf3\x66\x73\xc3\x56\xc8\xdd\x5a\x82\x98\x66\x93\x9d\xb0\x45\x26\x5a\x0b\xda\x09\xf7\xc8\xaf\x93\x60\x8f\xec\xec\x34\x45\xdb\x3e\x92\x4f\xaa\x79\x1f\xc9\x27\xbf\x85\x5f\xd1\xc4\x03\x5b\x6c\x42\xf6\xa6\x1c\xa3\xeb\x07\x92\x34\xd8\x2f\x81\xd7\x51\x52\x01\xa5\x6d\xb9\xc9\x6a\xee\xfa\x8c\x21\x6a\xb2\x97\x6f\x87\xbf\x60\x4f\xff\x17\x3b\x35\xfc\x31\xdf\x0e\x3f\xed\xe1\xf6\x92\x2d\x1b\xcd\x87\x06\x6d\xb1\x66\x2b\x9c\x4c\x4c\x95\xb7\xb6\x1a\xa2\xaf\x26\x14\x04\xb8\x59\x19\xfe\xc1\xae\x43\xa2\xc7\x1e\x9c\x1a\x97\x84\x4d\x92\x4c\x1e\x67\xf3\x0d\x33\x60\x3f\x4d\x37\xeb\x07\xb0\x2e\xb6\x68\x8b\x97\x99\xeb\xc7\xb8\x90\x96\x8a\xd6\x84\xb0\x2b\x2e\xad\xb1\x4f\xff\x39\xcd\x68\xd7\x2a\xc9\x1f\xf1\xa7\xad\xad\xc6\x3f\xcd\xcb\x8a\x95\x45\x36\xb2\x28\xd1\x94\x4d\x35\x35\xc6\x10\x9d\xcd\x35\x5e\x65\x0d\x2a\x97\x2f\xa9\x68\x13\xbb\xb5\xe0\xcd\xf2\x00\x3e\x99\x4c\x1a\x6c\x42\x3e\xf2\x4f\x4d\x35\xce\xd5\x51\x68\x30\x5f\xb4\x6d\xa0\x28\x67\xeb\xf7\xcf\x8f\x76\xa0\x94\x8a\x9b\x97\xee\x46\x0e\x9d\x2a\x94\x40\x53\x05\x47\xb8\xe6\x76\xce\x3a\xbb\x1c\xd9\x09\xb9\x9d\xa2\x5c\x4c\x51\xbe\xb3\xf3\x58\x2e\xa2\x1f\xf6\x1e\xe5\xe5\x74\x23\x5f\x2a\xf2\x58\x8b\xf7\xca\x7a\xcb\xd1\xdd\x66\x8e\xae\xa4\x94\x1a\x81\x2e\x46\xf6\xca\xa6\xe5\x7d\x93\x6a\x83\xfd\x74\x4f\x4b\xe1\x46\xde\xdc\x9d\x1b\x73\x6a\x73\x73\xc3\x64\x89\x73\x5f\x47\x15\x23\x04\xd6\xca\x0d\x5a\x6d\x65\x10\x7f\x0d\x9e\x72\x6f\xf2\x34\x77\x3f\x7e\x7a\xa8\x1a\x9b\xa5\xae\x4a\x1b\x83\x51\xb3\xc5\x26\xd6\x6a\xe9\x73\x0a\x6f\xb6\xc8\xe4\x6b\x8e\x66\xa2\xfc\xdd\x3a\x45\x0b\x5c\x7f\xd8\x73\x39\x9d\x34\xdb\x09\xe3\x47\x28\x9a\x37\x1a\x15\x61\x31\x21\x42\x43\xdc\xbc\x9f\x64\x2d\xdc\xfa\xba\x79\xb7\x28\xaa\xff\x31\xff\xb4\x5e\x0b\x46\xad\xee\x1c\x7d\xaa\x09\x6e\x89\x8d\xda\x43\x73\x83\x45\xdd\x34\x72\x28\x1a\x49\x1b\x83\x71\xd3\xda\x48\x89\x1c\x50\xe8\x2b\xb1\xc7\x93\xc3\x62\xa2\x91\xa7\xce\x31\xb1\xc3\x50\xef\x3e\x65\xcf\x56\x17\xb2\x47\x1a\x5a\xbd\x73\x8c\xc2\x3f\x9c\xaa\x15\x36\x3f\x06\x9f\x6c\xd2\xa8\x64\x92\x87\xc4\x17\xf8\x3e\x6f\x7c\x23\x1b\xda\x0a\x9b\xcd\x76\xce\xc9\xa2\xe1\xd4\x22\xd5\xa6\xda\x16\x93\x9d\x40\x26\x51\x43\x06\xf7\xc8\xd6\x56\x03\x96\x27\xd2\x7c\xa0\x8d\x5e\xd8\x6c\x90\x96\x18\x66\x87\xe3\x60\xc7\xcb\x61\xdb\x50\x6c\x98\x2f\x75\x9e\x65\xb0\xbd\x59\xaf\xeb\x09\xc6\xb1\xfe\xcd\xe3\x64\xf7\xdd\xe1\x73\x08\x3e\xec\x11\x4f\xe1\xc5\x34\xf6\xf6\xd0\x88\xd7\xa0\x8a\x93\xaf\x0f\x2d\x36\xc9\x1a\x85\x14\x47\x31\x5b\x34\xf7\xd8\xd6\x56\xc3\x64\xcc\xc0\xfa\xf7\xb4\x91\x4f\x58\x3b\x9a\x93\x34\xe6\x98\xb6\xa8\xb4\xf0\xd5\x51\xce\x16\xf5\x56\xda\xa0\xad\x3a\x81\xb3\xd4\xb8\xde\xca\x9b\x12\xc8\x49\x9e\xca\x53\x29\xf8\x9b\x37\x5b\x0d\x3c\xc9\x1a\xf5\x94\xd0\x6b\x11\x6c\x8a\x7e\x98\xe0\x36\xca\x73\x4e\xa6\x99\x0e\xce\x39\x4e\xc4\x6f\xa1\x90\xd0\xeb\x09\x56\xb9\xc5\x38\x8b\x38\x59\xc2\x94\x87\x9b\xab\x5e\xb6\x51\xa3\x5e\x2c\x63\x94\xe3\x58\xe7\x4c\xdb\x0a\x80\x6d\xd7\xa1\x98\x4b\xb8\xa9\xf2\x42\x45\x3e\x67\xbc\xde\xaa\xe3\x05\x22\x69\x5d\xb2\x50\x8b\xb6\x49\x8e\x17\xd9\x04\x35\xea\x98\xe6\x7c\x25\x72\x6a\x2f\xd0\x72\xc3\xb4\x82\x6e\xdb\x33\xfb\x5a\xb7\xf5\xa2\x09\xba\x9b\x36\x77\x04\x6e\xb6\x1a\xb9\xed\x08\x0c\xd5\xcd\x27\xb9\xdb\x11\x22\x58\xea\x88\x1c\x92\x45\x8d\x7a\x56\x2c\x16\x48\x54\x0f\x37\xd7\xeb\xa8\x51\x87\x6d\x21\xcd\x75\x4e\xb4\xed\x74\x95\x4d\x65\xba\x47\x53\x2d\x8b\xa9\xe8\x15\xdb\x3d\x42\x29\xa7\x0f\xcd\x66\x73\x57\x56\x2f\x9a\x23\x4a\x71\x5a\x6f\xd9\x71\x6f\x56\x38\x40\x72\x47\x3b\x2b\xa6\x59\xce\x1b\x41\xab\x0b\xfd\x18\x4f\xea\xf5\xc7\x98\x00\x60\xd9\x74\xc3\x0a\x9b\x86\xd8\x0b\x99\x51\x4e\x51\x96\x3f\x2b\x48\x1a\x8b\x2a\xff\x43\x63\xbd\x40\x14\xcd\x08\x9d\x1d\xc5\x24\x67\x7c\xc3\xa0\x8b\x1f\x7e\x63\xff\xa1\xc1\x9f\x15\x3f\x3c\xfc\xd5\x2e\xd8\xcc\xe5\x5e\x08\xeb\x91\x54\x03\xf7\x23\x23\xd9\x34\x93\x1a\x8c\xc4\xce\x29\x96\x34\x3f\x1c\xa0\x34\x9d\xa2\xe8\xda\x9e\x9f\xb5\xd8\x53\x21\xf3\x77\x95\x9d\x22\x62\x45\x1a\xd3\x9f\xf2\x5a\x42\x68\x5c\xe3\x8c\x81\x51\x09\x44\x83\x10\xf7\x76\xd5\x22\x8f\xcb\xfe\xae\x92\xfd\x61\xb7\x27\x16\x33\xde\x26\xd9\x05\x9a\xed\xd9\xb4\x62\x11\x7a\x45\x29\xe6\x2f\x2f\x4e\x8e\x77\x37\x6e\xe6\x6d\xa7\x3e\xb5\x3f\xab\xe3\xa3\x05\xb7\x5c\x49\x9a\xcd\xf6\x67\x46\x68\xa3\x5e\x6f\xee\xd6\xeb\x0f\xad\x19\xce\x4f\x8b\x5c\x15\xc3\x5a\x4a\xb8\x9b\x02\x6b\xa2\xe3\xc4\xde\x19\xcc\xb4\x6d\x92\x69\x73\xad\x51\xa8\xa1\x40\x6c\x73\x15\x2a\x29\xb1\x04\xf5\x29\x18\x9d\x72\x29\x30\xeb\x7f\xd1\xfa\x2e\x6e\xe4\x96\x1d\xa4\xe5\x08\xa6\x8d\xd8\x63\x1c\x1c\xee\x5f\xec\xeb\xbc\xbf\x45\x28\x6a\x69\xeb\x10\xa3\x1c\x29\xee\xab\xd7\x1f\xbe\xa1\x58\x84\xdd\xbe\xee\xf8\x81\xe8\x78\xda\x08\x7b\x41\x73\x8f\xb4\xb1\x5c\xc8\x40\xa3\x69\x5f\x5d\x01\x57\x5c\x5d\x4d\xe4\x31\xb6\x92\x42\x45\x8e\x37\xc5\xab\xa3\xda\xaf\x06\x95\x87\xdf\x59\xbe\x92\xc6\x67\xc9\xaf\xe2\xd7\xfd\x62\x29\xfe\x90\x84\x0b\xc5\xe5\x49\xd0\xa2\x0c\x2f\xa6\x38\x96\x3f\x01\xcd\xc4\xef\x65\x8a\x08\x98\xb5\x64\x84\xc9\xe0\x41\x19\xcd\xca\x45\x21\x8e\x91\x20\x9d\xa2\x0c\xeb\xbf\x09\xa3\x90\x7c\xca\xc5\xbf\x11\x4b\xe5\x9f\xc5\x02\x51\x28\xcf\x14\x6c\x2a\x33\x07\x4a\xb2\x98\xc1\x1f\xba\x2c\x20\x3d\xc9\x08\x8d\xf1\xbd\xf8\x79\x8d\x57\x33\x4c\xc5\x2f\x31\x41\xc5\xdf\x05\xce\xa1\xe0\x25\xe2\x68\x01\x6d\x65\x05\x8f\x20\xb7\x9c\xa3\x08\x68\xee\xa0\x06\x0f\xad\xc8\xd1\xe7\x7c\x7e\xf6\x79\x4b\x48\x70\xc1\xcf\x18\x73\xc2\xd6\xeb\x06\x9e\xc8\xed\x8e\xd8\x35\x7f\x7d\xd8\xb3\xa7\x07\xf5\x7a\x8b\x4d\x82\x3d\x66\x37\xb9\x6c\x7b\x5b\x6b\x16\xf8\x23\xfb\xb4\x57\x17\x93\x53\xb0\x1f\x01\xc6\x79\x4a\xb7\x27\x51\x83\x58\x79\x9d\x37\x77\xd5\xcc\x6b\x90\xa6\x88\x2d\x1a\x44\x80\xc4\xf2\xd9\x21\xe1\x38\xca\xc9\x2d\x24\x5e\x36\x88\x17\x79\xc0\x16\x82\x69\x44\xd4\xbc\x1c\x25\x18\x59\x44\xc4\x22\x82\x6e\x4f\x12\xc8\xfa\xc1\x9c\x67\xb4\xd2\xc9\xc7\xfa\x82\xc0\x17\x89\xe1\x83\xc6\xf0\x45\x61\xf1\x8f\x18\xf8\x7a\xab\x8e\x28\x65\x39\x3c\xee\xba\x73\xbf\x48\xeb\xad\x7a\xc2\x38\x26\x33\x2a\x15\x57\x25\x09\x8d\x08\xfd\xb4\xe7\x1f\x89\x37\xbf\x6a\x7a\x39\xfd\xee\x17\xe9\x09\x8b\x31\x9c\x1c\xc3\xc9\xa5\xcf\xf2\x1f\x25\xfa\x49\x74\xbd\xf8\xd1\xc2\xed\x25\xdc\x7b\xdb\xda\x4a\xdb\xc0\x00\xa7\x49\x43\x63\x40\xd1\xfc\x75\x12\xc0\xa2\xac\x14\x69\x94\x65\x64\x46\x1b\x5f\x1f\x5a\x79\xeb\xab\x2a\x6d\xf7\x49\x28\x24\x6e\xeb\x89\x53\xfe\xc7\x7a\x76\x3b\x83\xa5\x27\x9f\xd7\x3f\x39\x79\xff\x70\xa6\xa6\x61\x0f\x4d\x69\xdd\xa6\x93\xfa\x2f\xf5\x6d\x55\xf1\x0d\x76\x3f\x6c\x2c\x65\x93\x7a\xdd\x30\x10\xaa\x11\x5a\xc3\x4d\x3a\xc1\x1f\xd1\xa7\x16\xdf\xda\x6a\xf0\xed\x49\xbd\x56\x6f\xb6\x1e\xeb\x39\x34\x29\x4b\x82\x8f\xe8\xd3\x7a\x8d\x9a\x2d\xbe\x3d\x41\x2d\xd8\xc1\x8a\x5d\xfe\xd6\x56\x5d\xec\xa0\xe9\x7a\x6d\x52\x37\x65\xf6\x3f\x4d\xea\x3f\x6d\x37\xc4\xae\x23\x62\x31\x3e\xa2\x39\xc9\x09\xce\x9e\xb2\x36\xa6\x02\xf8\xfd\xe4\xb8\x41\x9b\xbb\xb4\x0d\xaf\xc6\x47\xb8\xf1\xf3\x5f\xf5\x9f\x67\xad\xfa\xd6\x4d\xc1\xf2\xbd\x7a\xb3\xb9\xfd\x53\xfd\x27\xb3\x13\xe5\x0f\x0f\x0d\xa3\x29\xb6\xac\xa1\x51\x34\x85\x42\x53\xb6\xb9\xdb\xf7\x72\x5a\x49\xd6\xdf\xda\x12\x5b\x61\x67\xd9\xd0\x16\x0e\x91\xf0\xd7\x7a\xcb\xa5\x6c\xc0\xb4\xc1\xee\xb4\x69\xb6\x0c\xc7\x6c\x6d\xb9\x25\x40\xfa\x5f\x7e\xd6\xa3\xb1\x5d\xff\xb5\xde\x04\xf6\xaf\xff\xfc\x6b\xbd\x45\xdd\x73\x6b\xab\xb9\xc3\xe0\x09\x11\x2e\xc8\x4b\x67\xc4\xfa\x48\x52\x12\xac\xd7\xf5\xba\x6a\xe6\x93\x72\x2f\x8a\xe6\x69\x9e\xf5\x38\x55\x8c\x33\x12\x55\x9b\xf8\xfd\xdc\x74\xeb\x13\xbb\xf5\x79\xf2\x11\xa6\xef\x47\x51\x2f\xdd\xea\x8f\xc1\x27\x55\xc7\x4f\x9f\xdc\x5a\xce\x9d\x84\x7f\xdd\x77\xa3\x27\x3b\x3b\xb6\x39\x3b\x3b\x7f\xdd\x77\x71\x7d\xc3\x82\xe4\xb9\x55\x6d\xde\x8b\xe6\xad\xfa\xd5\x15\xce\x4e\x58\x5c\x08\x1d\xe9\x2b\x9c\x66\x09\x51\xda\x6c\xe5\x52\x6a\x6d\xda\x06\xe5\x68\x06\x7b\x1d\x10\x45\xeb\x75\x5d\x2e\x1e\x3e\x24\x56\x26\x8b\x3c\xb4\x72\x58\x4e\x27\x75\x29\x79\x72\x2b\xf4\x26\xf5\x58\xff\x14\xb8\x92\x77\x93\x7a\x24\x7f\x08\xec\x1c\xf2\x9f\xe8\x72\x04\x22\xb2\x9f\xa8\x52\x44\xde\x68\x36\x81\x6a\x89\x1c\x44\xbf\x4e\xea\x91\xe8\x1e\x28\x89\x45\x72\xd3\x14\xcb\x1f\xf5\x7f\x71\x4f\xed\xe9\x85\x7f\x18\xc8\x75\x7f\xd8\x6d\xee\x69\xce\xd9\x68\x44\x69\x3c\xc9\xd7\xeb\xfc\x97\x49\xf0\x94\x2b\xb2\xdf\x4f\x8e\x77\xf5\x6f\xa1\x26\x35\x1b\xb8\x29\xfa\x4c\x22\xe7\x50\xb3\x7f\x32\x2b\x99\x58\x67\x28\x99\xf3\x3b\x59\x39\x3c\xbc\xab\x7f\x9b\x5a\xed\xc9\xc5\x4f\x37\xd3\x50\x0a\x69\xaf\x7f\x9b\x82\x44\x2a\x13\x21\x02\x22\x26\x8b\xd0\x12\x16\x07\xf8\xe1\xd1\xf6\x2a\xc4\x26\xd0\xf7\xa2\x94\x42\x04\x9d\x6e\x3a\x5b\xd4\x02\xd9\xdf\xa6\xff\xa0\x16\xc8\x09\x78\x31\xaa\x77\x51\x05\xf2\xa8\x7a\x8f\x67\xd0\x7f\x3c\xaa\xf7\x63\x99\xf7\xbf\x4f\xf6\x7b\xa5\xa2\xbf\x9f\x1c\xff\xed\xdd\xff\xb7\x77\xff\xdf\xde\xfd\x7f\x7b\xf7\xff\xed\xdd\xff\xb7\x77\xff\x3f\xe9\xdd\xff\x98\x07\x3e\x9c\x6d\x6a\xe7\xae\x2b\xb2\x10\x0b\xcb\xa1\xf4\x39\xdb\xec\x24\x2e\x34\x62\xab\x21\x3d\xc5\xbb\x5f\x95\x8b\xda\x2e\x7e\x78\xf8\xe7\x94\x2a\x36\xe1\x0d\xda\x08\xbb\xe3\xa6\x5c\xe3\x21\xbb\xb2\xe7\x16\xfe\x75\xd2\xef\x77\xc6\x83\xad\x2d\xfc\xcb\xa4\x3f\xec\xf6\xba\xeb\x35\xfe\x35\x0c\xc3\x5e\x18\x86\xda\x42\xf4\x57\x91\x24\x49\x5c\xdf\x03\x45\x9d\xe9\xac\xc0\xf2\x6d\x42\x1f\xb1\xf2\x64\xca\x27\x66\x07\x50\xc3\xbf\x0e\xfa\xfd\x6e\x5f\x50\xee\x4c\xc4\xcf\x41\x2b\xdf\x9e\x48\x47\xdf\x76\xc2\xd9\xe2\x60\x8e\xf8\x01\x8b\x71\x03\xff\xfa\xeb\xaf\x61\xb0\x15\x06\x9d\xee\x1a\x2a\xd4\x6c\xe1\x49\x7f\xd0\xed\x04\x6b\x81\x6d\xe1\xe6\xa3\x29\x9b\x0f\x3f\xb6\x90\x07\xf5\x5d\x51\x85\x6e\xab\x1e\x76\x46\xf5\xdd\x51\x77\xd0\x6b\xd5\xc3\x6e\x50\xdf\x1d\x75\xc2\x91\xf8\x19\xd6\x77\x7b\x41\x47\xfc\xea\x08\xb0\x03\x3f\xbb\xe2\x67\x37\x10\x3f\x7b\x80\x42\xaa\x3e\xfc\xec\x8b\x9f\x83\xfa\xee\x30\x84\xf8\xa1\x00\x7b\xf0\x73\x54\xdf\xed\xf6\x21\xfd\x18\xc0\x71\xab\x1e\xf6\x82\xfa\x6e\xb7\x2b\x4a\xea\x75\xea\xbb\xdd\x51\x28\x7e\x41\x46\xe1\x40\xfc\x1c\xc0\xcf\xa1\xf8\x09\x39\x75\x44\x4e\xbd\x11\xfc\x04\x5a\xc8\xaa\x23\x68\xfb\xb2\xd6\x02\xed\x87\xf0\x53\x94\xd5\xef\xd4\x77\x87\x5d\xf8\x25\x6a\xdd\x1b\xc1\xcf\x9e\xa8\x8a\x68\x75\x1f\xca\xea\x8b\x5c\xfb\x03\x51\x15\x51\xa9\xbe\xa8\xa9\x24\x1c\xd7\x77\xbb\xc3\xc1\x0f\xdf\x5f\x71\xad\x13\xf5\xdd\xaf\x75\x94\xe6\xb3\x74\xb5\x14\x92\x11\xa5\xf9\x0b\xf8\xd9\x32\x68\x8c\x13\x27\xe2\x10\x16\x17\x1d\x07\x36\x6c\x1b\xf9\x0a\x4c\xda\x75\x44\xc9\x02\xe5\x38\x62\x29\x3c\xa9\xa0\x82\x07\x10\x34\xb1\x0b\xa6\x9e\xca\x55\xe1\x13\xa6\xac\xd0\x2a\x9c\x73\x44\xb3\x84\xf1\x85\x25\xb9\x30\x50\xab\x1e\xa5\x64\xb9\x94\x57\xe3\xc5\xcf\x33\xf1\xb3\x55\x4f\xf0\x34\xc5\x20\x79\x13\xfc\x0c\x7e\x09\x0c\x2a\xb2\x40\x39\x27\xf7\x10\x03\x35\x39\x91\x61\x19\xbf\x58\x32\x8a\x69\x2e\xcb\x84\xc7\x61\x04\x95\x42\x2f\x34\x6a\x68\x33\x02\x22\x47\xd1\x40\x48\xc6\xd1\x5b\x96\xde\x62\xaf\x28\x09\x39\xa5\xc5\x24\x49\x8a\x4c\xe8\x8f\xf3\x5c\xaa\x7c\x09\x3e\x94\xd8\xb1\xc6\x24\x5d\x06\x96\x0a\x31\x54\xf2\xee\xbb\xa0\xb3\xd8\x09\x5a\x6a\xba\x1c\xd1\x3c\x55\x2f\x87\x00\x91\x00\x20\x33\x49\xc1\xd9\x32\x9b\xa3\x18\x9e\xd0\x49\xf0\x21\x67\xcb\x73\x19\x14\xb1\x49\xca\x98\xec\xb1\xe7\xf0\x0b\xb0\x82\xc2\xe7\x7c\x12\xfc\xbc\xa0\xd1\xbe\xc1\xa6\x06\x7b\x66\xb0\x99\xc1\x5e\x18\x8c\x1b\xec\x1d\x60\x33\x54\x64\x19\x41\x74\x9a\x16\x32\xea\x85\x02\x9e\x09\x40\x50\x90\x05\x9a\xc9\x3e\x7d\x05\xbf\x04\xb6\xc0\x5c\x61\x27\xf0\xcb\x60\x94\xc5\x0e\xfe\x96\xc5\x2a\x8e\xf1\xe5\x9c\xa5\x6c\xb6\x92\x91\x36\x28\x62\x59\x92\xc8\x47\x3c\x13\x7c\x2a\x7f\x0a\x14\xbe\x18\x68\xfb\xee\x4c\x04\x6d\xcf\x65\x4b\x1c\x15\x29\xe2\xde\x60\x9d\x2b\xd0\x1b\xad\x6c\xc9\x9c\x6c\xce\x97\xcc\xc9\x25\x97\x8f\x1f\x27\xf8\x82\xa4\xb2\xa6\x79\xc1\xa7\x45\x8a\x69\xa4\x70\x1b\x34\x16\x32\x75\x0d\x6c\xb7\x62\x9b\x84\x89\xc7\x61\x52\xc2\xcf\x77\x52\xdd\x23\x14\x23\x3e\xe3\x28\x26\x52\x7d\x97\xc0\x0b\x0d\xc8\x2f\x92\xa1\xd4\xa1\x90\x80\x43\x91\xe3\xfb\x5c\xcd\x29\xf1\x13\xe6\xd4\x83\xd8\x7a\xb8\x76\x39\x21\x30\x60\x39\x23\x62\xbe\x16\xf0\x58\x99\x0d\x5f\xbe\x3b\xae\x3b\x29\xc0\x7f\x60\xd7\xcf\xc1\x8d\x07\xbb\x84\x13\x7f\x21\xc2\xad\x3a\x18\xd9\x39\xbe\x29\x30\x85\xbb\xe5\x22\xfc\xdc\x84\x65\xfc\x92\xb3\x44\xf6\xab\x08\x9d\xa9\x50\xab\x1e\xa1\x34\x5a\x48\xfe\x10\x3f\x4f\x24\x73\x68\x71\x51\x50\x92\x67\x8e\xcc\xb8\x84\xb0\xd8\xac\xc0\x04\x8c\x18\xb8\xd4\x8a\xde\x51\xc8\x81\x46\x5a\x75\x1c\xcf\xb0\xca\x59\xfc\x54\x39\x27\x24\xcd\x31\xd7\xf9\xca\x90\xce\x75\xf3\x50\xe9\x21\x70\x25\x9c\xc6\x5c\x11\xa7\x31\x9d\xb7\x0e\xeb\xdc\xaf\x31\xa7\x38\x35\xc2\x46\x06\x8d\xa0\x91\x41\x91\x56\xda\x1f\x0d\x85\x48\x7e\x2c\x21\x41\xb5\x82\x19\x90\x41\xf4\xea\x4c\xfe\x06\x3c\x5b\x0a\x16\x52\x11\xe7\x2a\x00\x31\x5a\x33\xbc\xc6\xab\x0b\xf8\xd9\xaa\xcb\x32\x50\xfc\x59\x7e\x60\x46\x06\xf7\x65\x50\x30\xe7\x82\x88\x99\xf2\xff\x70\xf7\x26\xec\x6d\xdb\xd8\x02\xe8\x5f\x91\x38\x19\x96\x88\x20\x59\x74\xd2\x34\x15\x0d\xeb\x3a\x4e\xda\x66\x26\xdb\xc4\x4e\xd3\x0e\xcd\xe6\xd1\x14\x64\xb3\x96\x49\x85\x84\xbc\xc4\xe2\x7f\x7f\x1f\x0e\x56\x2e\xb2\x9d\xb6\x33\xf7\xbe\xf7\x7d\x89\x45\x82\xd8\x97\x83\xb3\x9f\x24\xcf\xa8\x72\x3b\xa5\xd2\xf6\xf3\x8c\x42\x3c\x29\x20\x49\x8a\x33\x5a\x9c\x52\x79\x8e\xc4\xeb\x4f\x54\x1e\x24\xf1\xaa\x66\x43\xbc\xa9\xb9\x10\x6f\x97\xe9\x0c\x06\x2a\xde\xc0\x05\x02\x7c\x2b\xcf\xa4\xd0\xda\x14\x2e\xcf\xf6\x45\x92\xa9\xa1\x3c\xb3\x3f\xab\xf4\x6c\x75\x9e\x27\x2c\xbe\x80\x11\x67\xab\xf3\xb7\xf2\x85\x93\x00\xec\x54\xcf\x2d\x7f\xd1\xb3\xba\x8c\x19\xa3\x45\xd6\x68\x54\xa6\x36\xda\x95\xa9\xf6\x66\x90\x49\xf6\x5e\x90\x49\x8d\xaa\x74\x1d\xb0\x6c\x31\xe3\xdb\x40\x3c\xef\xb1\x5f\xac\xf4\x6b\x2b\xfd\x57\x2b\xfd\x8b\x95\xfe\x6f\x11\xa8\xb3\xa4\xc5\x05\x8d\x17\xcb\x53\x0e\xfe\xd5\xfb\x1e\xbc\x5b\xdf\x39\x5c\x64\x2a\x5e\x9e\xce\x05\xa9\xef\x21\x55\xc4\xef\x4c\x59\x7a\x41\x75\x9f\x55\x82\xea\x75\x41\xe7\xbc\xc3\x05\x9d\xff\x22\xde\xae\xc5\xdb\xaf\xf0\xb6\xa4\x31\x03\x6b\x2e\x48\xe4\x6f\xa0\xee\xa4\xbf\xcd\xe0\x26\x11\xcf\xcf\xe1\x12\xe1\x00\x22\x2d\xe8\x8c\x5e\x31\x9a\x95\x32\x4e\xa4\x4a\x7c\x61\x12\x4d\xce\x39\x8d\xd9\xaa\xa0\x76\xbe\x1f\x54\x12\x76\x14\xf0\xb7\x80\x82\x4a\xb2\xa0\x82\x4a\xe2\xa8\x56\x46\x6b\xb9\x5e\xa8\x24\x9e\xab\xa0\xf1\xec\x9c\xb2\x53\xb8\x6b\xc5\xeb\x6b\xf1\x2a\x7c\xdb\x33\x7d\x3f\xc1\x9b\xbe\xa2\x4a\x36\x9b\xd1\x8b\x34\x96\xd8\x52\xc9\x66\xcf\xf5\x2b\xff\x9a\xb2\xe4\x94\x5f\x30\x25\x7c\xe4\x6f\x87\xf0\xc6\x69\xbf\x62\x1e\x27\xb4\x4c\x62\x38\x70\xf2\xf5\x00\x5e\xb1\x53\x5e\x97\x8c\x9e\x2f\xe2\xec\x64\x25\x6e\x5e\x91\xf0\x4a\x25\x60\x87\xc5\xc7\x0b\x0a\xa4\x09\xaf\x1b\xde\x7e\x16\x6f\xca\x03\xf4\x15\xa4\xf3\xa7\x5f\x74\xda\xb5\x4e\xfb\x55\x5e\x29\xfa\x8c\xf0\x17\x7d\x46\x2e\x52\x7a\x79\x0c\x9e\x8c\xf9\xd3\xb3\xfc\x4a\xa6\x69\xdf\xd2\xfc\xe5\x50\xbc\x60\xe7\x4a\x6a\x87\x94\x74\xa1\xa2\x68\x5d\xed\x8b\xa4\x03\x95\x84\x9d\xeb\x76\xae\xeb\x76\xae\x2f\x79\x7e\x1e\x67\xb3\x65\xcc\xe7\x93\xbf\xec\x65\xb3\x77\x71\xe6\x54\x2d\x12\x51\x1b\x6d\x8d\x4e\x28\xdb\x97\xd2\x8a\x2e\x85\x42\x23\xcb\xa8\x70\x21\xb2\x0b\xdf\x96\xdd\x99\x85\x04\xa5\x0a\x20\xe3\x41\x7a\xbc\x48\xb3\x93\x0e\xd5\x5b\x52\x78\xd4\x28\x47\x4e\x33\x8f\xa1\x49\x48\xa3\x0a\x43\xb9\x3d\x75\x69\xc2\xa2\x74\x1b\x25\x68\x19\x16\xa7\x52\xe5\x63\xc8\xa0\x86\xd3\xb8\x14\x35\x74\x96\xec\xf7\xad\xa2\xa7\x71\x69\xd9\x51\x4b\x95\x46\x4b\x3a\x26\x3b\xc4\x2f\xf7\xee\xf1\x72\x34\xa0\x6a\x4e\xad\x32\x83\x94\x7a\x6e\x2d\xfa\x76\xb4\x2c\xe8\x05\x08\x55\xf9\xc3\x28\xa3\x57\x8c\x50\xf8\x41\x58\xfc\x0a\x89\x2b\xbd\x62\x90\x83\x88\x8c\x48\xcb\x57\xd5\x2c\x6a\x89\x95\x5a\xa3\x80\x8d\xf8\xe5\x96\x50\x8f\x8d\x16\x71\xc9\x5e\x2a\x41\x29\xc2\x3e\xa7\x49\x99\x12\x12\xb6\xbb\x66\xef\x09\xab\xd1\x00\x64\x79\xa2\x8f\x4c\x49\x46\x98\xdd\xe7\x00\xa4\xa0\xa2\x0c\x53\x64\x3e\x93\x3d\xd3\x5d\x0c\xd2\xb9\xa7\x35\xf8\x8c\x6a\x50\x90\x86\x69\xa3\xa7\x11\x61\xd0\xd3\x78\xb9\xa4\xd9\x0c\xf6\x66\x5b\x3a\x6b\xea\xc7\x7e\x5d\x26\x09\xc6\x4c\x0c\x19\x11\xa0\x96\xc5\xb5\x04\x97\xc3\xed\x28\x50\x43\xc3\x72\xd4\x19\x96\x83\x03\x85\x4d\xd3\x8f\xce\x99\x52\x83\xc3\x85\x9a\x0b\xe8\x1a\x94\x2f\x54\x8d\x54\xae\xa9\x68\x43\xf4\x1a\x4c\xcf\xd3\xb9\x9e\x36\xa5\x6d\x92\x93\xcc\x4c\x4d\xae\xd6\x32\xaf\xcd\x50\x81\xf0\x98\x6f\xcd\x0a\x94\x94\x33\xd7\xcd\x5a\x83\xaf\x44\xdb\x77\xf6\x1b\x2c\x27\xb4\x9e\x8b\x69\xb9\x50\x2d\x17\xcd\x5d\x04\x2d\x77\x6e\x60\x86\xec\xe1\xd5\xf6\x90\x9a\x52\x50\x10\x80\xf1\xde\xa2\x6c\xf3\xe8\x3b\x24\xf5\x9a\xb4\xb4\x34\x37\xe6\xfa\x4a\x0e\x9f\xe2\x98\x84\x11\x2e\xc9\x18\x27\x5a\x29\x3b\x28\x77\x12\xd7\xed\x7b\xd4\x63\x61\x19\x21\xd7\xf5\xa4\x11\x39\xbc\xe2\xe1\xb0\xd8\x21\x63\x50\xf5\x4a\x09\x4f\x32\xc2\xe9\xbe\x97\xb9\x6e\xea\xba\xa9\x6d\x8e\x96\x12\xde\x70\x0a\x0d\xe3\x98\xc4\xca\x71\x43\x8a\xb0\x57\x0c\x89\xca\x8b\xa0\x52\x14\x94\x83\x81\x06\x69\xb1\xe5\x3c\xe1\x46\x60\xce\x0d\x77\x15\x7c\x30\x4d\xf5\xa8\xf5\xda\x63\x04\xec\xab\x95\xf1\xa2\x51\xc9\x2e\x5c\x37\x2d\x7f\xe0\xb4\x08\xf5\x0a\x9e\xb3\x20\xfe\xd6\xd8\x18\x31\x0b\x4d\x5c\x7e\x16\x78\xd5\x15\x9e\xa7\xd9\x6c\x92\xc3\xcf\xdb\x8c\xc2\x29\xea\x30\xf7\x10\xdb\x61\x8c\x8d\x62\x7b\x90\xed\x14\x60\x16\xc8\x01\x95\xc7\xc2\xcc\xb2\xb5\xb1\xcc\x86\x85\x3a\xb3\xac\xbd\xa6\xf8\x65\x6d\xe5\xd5\x62\xa1\x15\x27\x52\x32\xc6\xb1\x36\x17\x09\xd2\x9d\xd8\x75\xfb\x79\x90\x0e\x06\xa8\x00\x0b\x17\x50\xd6\x14\x4f\xd3\x1c\x8c\x5a\x26\x60\xd9\xd2\x38\xb3\xb0\x32\x39\x81\x86\xec\xcf\x7c\x05\xd4\x5c\x54\x98\x5e\xa5\x25\x2b\xbb\xba\xa6\xfa\x93\x93\xb1\x65\x71\x13\xe4\x3b\x29\x28\x02\xf1\x33\xe9\x65\x61\xae\xbb\x93\x47\x68\xbd\xe6\x3f\x5d\x1d\x11\xbd\xc8\x6b\xbd\x50\xc6\x7c\x4a\xe3\xc0\x17\xd3\xb4\xb7\x58\x4c\xba\x8e\x62\x18\x61\x0e\x2d\x4b\x38\x6e\xc2\xd4\x22\x50\x96\xd8\x81\x81\x97\xd2\x62\x27\x28\xbc\x14\xf6\xaf\xa5\x69\x91\x76\xf5\x2c\x57\xae\x14\x84\xef\x13\x2f\xc7\xa9\xa5\x4d\x49\xa1\x16\x09\x2e\x52\x64\x29\x18\xdd\x7e\x30\xa1\xab\x42\x89\x40\x29\x1f\xb2\x11\xa3\x25\xeb\xbe\x4e\xf4\x0e\x13\x4a\x33\x70\xf5\xd5\x6f\x5c\x2f\x43\xc2\xc8\x8e\xc5\x27\x9f\x80\xa4\x26\x84\x64\x90\xd4\xcf\xe1\x44\xf4\xe9\x48\x7d\xf3\xa4\x0e\x91\xb6\xcc\xac\xb4\x69\x15\xcf\x02\x14\xb7\x29\x2e\xca\xf1\x44\xa9\x01\xb8\xa9\x1c\xa7\x65\xe2\x34\x2b\x4d\xd9\x5a\xcb\xea\xb3\x27\x14\x06\x3b\x6a\xe9\x6b\x85\x63\x5e\x28\xcc\x22\x4f\x27\x58\xc7\x47\x16\x08\xb4\xb1\xa7\x14\xbb\xdf\xa8\xe1\x75\x18\x06\x74\xda\x66\x18\x7f\x00\x96\x76\xbe\xc7\x10\x6c\x47\x31\x43\xd5\xc4\x79\x08\xaa\x1a\xd3\x7c\xb2\x31\xb7\xc8\x0b\x1a\xee\x15\x56\x73\xf5\x67\x3a\xa1\x27\xba\xea\x6a\x54\xab\x61\xaa\xe6\xd4\xc4\xfe\x89\x26\xfb\x66\xdc\xb0\x36\x5d\x0d\xf7\xd5\x68\x79\x0e\xd1\xbc\xe5\xf9\x26\xbe\xcb\x14\x86\x99\x66\x8d\x3d\x43\x66\x30\x48\xe6\xe9\x97\x90\x46\x76\x0f\x3a\xb3\xdb\x99\x79\x23\xd5\x26\x7b\x8b\x8e\x6a\xa8\x97\xa1\xf5\x9a\x79\x19\xaa\x2a\x66\xdb\x51\x90\xf6\xd5\x22\x40\x9c\x6d\xdd\x42\x9b\x5a\xd8\x06\x1b\xb0\xfc\x54\x30\x7e\x54\xd3\x69\x1a\xb2\x08\x9c\xb0\x00\xd0\xac\x0c\x6c\x15\xe6\xdd\x52\xef\x2b\x8c\x26\xd2\x93\x07\xbf\xe0\xbc\x7c\x54\xd0\xd9\x2a\xa1\x5e\x89\x64\x37\x24\xfa\x2c\xfb\xf9\xec\xfa\xe5\x8c\x6c\x70\xda\xb4\xf1\x2a\x54\xbe\x42\xe0\xa2\xf1\x62\x4f\x98\x06\x20\x7d\xd9\x35\xda\x30\x36\x25\x1d\x93\x62\x1b\x1a\xc9\x3e\xa7\x06\xba\xd0\xee\x5e\x8b\x1a\x0f\xf9\xde\xfd\x8a\x1a\x01\xee\x98\x1a\x37\x51\x08\x22\x3a\x59\xd9\x6d\xb7\x2f\xac\x5e\x88\x56\x54\x1d\x0e\xf3\xdd\xa1\x1f\x88\x1c\x8c\x64\xa0\xae\x8a\xf9\x1f\xa1\x71\x5c\x90\xfe\x38\xc8\x02\x49\x63\x28\x1d\xc9\x0c\xed\x0e\x7d\x74\x53\x90\xbe\x8f\xa9\xc6\x28\xb1\x8f\xa4\x99\x68\x46\x32\x45\xb5\x81\x8b\x20\x5e\x1d\xb3\x9c\xc6\x48\x65\x49\x1f\x17\x64\x1b\xe7\xe4\x31\x4e\xc9\x53\x1c\x13\xff\x09\x2e\x09\x1b\x25\xf9\x39\x2f\xfc\x3c\x4f\xc0\x94\xf0\x5d\x5e\x02\xb3\xb4\x03\xeb\x2c\x71\x82\x17\x78\x85\x97\x78\x8e\x67\xfc\xda\x3b\x25\x21\x98\xdc\x53\x30\x64\x55\xfb\x0b\x6e\xc0\x92\xd0\xa0\x0c\xd0\x4c\xfb\x03\x2a\x11\x2e\x49\xa9\xb0\x56\x91\x85\xf1\x2c\xa7\xb7\x64\x99\x93\x71\x30\x0b\xe7\xfc\x9c\x9d\x86\xf3\x28\x40\xf3\xc1\xc0\xde\xc7\xf3\x69\x36\xf1\x16\xc4\x4b\xc8\x2c\x9c\x0f\xfd\xc8\xb2\xc9\x58\xf1\xa4\x08\x2f\xa1\x20\x36\xca\xac\x2b\xb4\x6b\x5e\x96\x68\x9a\xf0\xbe\x4f\xf3\x75\x3c\xc9\x27\x09\x00\xdc\x62\x9d\x4e\x0a\xc4\x09\xe0\x55\x96\x7e\x5e\xd1\x83\xbc\x60\x9d\xa6\xa7\xa9\x59\x58\xde\x59\x4a\xa8\x46\x02\x86\xc3\x14\x16\x9a\x11\x1a\xa6\x11\xf6\x38\xc2\xae\x1a\x65\x88\xaf\xa7\xeb\x66\x3b\x29\xa7\x7c\xe5\x7a\xa6\x7c\x3d\x35\x51\x5a\xe6\x05\xb3\xd5\xf9\x0d\xb6\x21\x60\x8c\x46\xe2\xdc\x62\x3a\xf4\x27\x99\x9b\x4f\xfd\xc9\xb8\x42\x08\x37\x69\x59\x7e\x42\x0d\x26\x9b\x1b\xc5\xb8\xc7\xa8\x86\x9e\xa3\x9b\xc2\xb2\x7c\xc8\xe8\x65\x4f\x38\xf5\x41\x98\x5a\xb6\x5c\x29\xcf\x08\x67\xa5\x4c\xf2\x25\x25\x54\x5a\x6d\xe5\x1c\xc1\xce\x6b\xd6\xbb\xf1\x2c\x3e\x5e\x50\xe5\xce\x29\x26\x99\xf7\x78\x8c\x46\x2f\x7e\x7e\xf1\xe6\xf0\xa0\x66\xb4\x17\x6f\x30\xda\x53\x36\xae\x1c\x28\x5b\xf6\x5b\xa1\x93\x67\xce\x80\x46\xb6\x05\x97\xe9\x91\x30\x4c\xa6\xa8\xd2\x06\xa0\xfe\xbd\xea\x60\x1d\x95\x70\x42\x49\x78\x85\x48\xe7\xde\x76\x5f\x56\x23\xac\xea\xa5\x4d\xc8\x65\x91\x67\x27\xd2\x6f\x48\x2f\x9f\x6b\x73\xfa\xb2\xef\xa0\xe0\xf6\x06\xf9\xc2\x74\x34\xc9\x81\x75\x05\xf6\x83\xf7\x51\x08\xc8\x3c\xff\xf1\xf7\x68\xf4\x6c\x35\x9f\x83\xe5\x38\xc7\xe9\x5e\x64\x49\x3e\x4b\xb3\x93\xba\x4a\x40\x79\x99\x32\x3e\xc3\x94\x38\xce\x80\xf2\x2b\x77\xc4\xf2\x57\xf9\x25\x2d\xf6\xe3\x92\x7a\x08\xdd\x24\x71\x49\x9d\x53\x7a\xe5\x4c\xe0\x69\xc5\xe6\x4f\xcd\xe3\x50\x3d\xc7\x65\x92\xa6\xf2\xf9\x38\xcd\xe2\xe2\x5a\xbd\xc4\x25\x7d\xf2\x58\x95\x48\xca\x6d\xf3\x38\xdc\x36\x15\xf9\x4f\x16\xd4\xaa\xd6\x7a\x2d\xe2\x4b\x67\xa2\x71\x6f\xa5\xa8\xa0\x51\xaf\x2a\xa8\xef\x42\x38\x85\x81\x1c\x96\xb0\x49\x97\x03\xef\x60\x56\x35\xf6\x55\x9f\x2a\x25\x04\x18\xa5\x26\x71\x58\x10\x20\x59\x23\x95\x13\xd2\x9e\x86\x5a\xc9\x3f\x32\x5a\x53\x01\xbc\x8b\x3a\x16\x31\x4b\x33\xbf\x31\xb1\x32\xa7\xfc\x16\xb4\xe7\xd9\x5e\x0d\x58\x3a\x05\x41\xf4\xfc\xa5\x1c\xe0\x88\xd4\x80\x12\x0f\x16\xbf\xbe\xf2\x98\x91\xfe\xb8\xaa\x3c\x0a\xb6\x36\x4e\x09\xda\x10\xb6\x23\x09\x60\x0e\x99\x7d\xc5\xf1\x87\xf5\xba\xcf\x61\x86\xed\x84\x47\x7b\x73\x39\xcb\xf2\xcb\xac\xa7\x16\x63\xd2\xe3\x2d\x6a\xe4\x64\xbd\xa6\x15\xdc\xaa\xf6\x82\x99\xa9\x16\x13\x24\xdc\x87\xd1\x2b\x46\x12\x95\x71\x46\x16\x98\x91\xc7\xe2\xc6\x0b\xac\x95\x51\x17\xf7\xe2\x55\x5c\x32\x52\x36\x33\xa9\xd9\x32\x55\xae\x4c\x95\x4b\xcc\xc8\x23\x99\xbb\xbe\xdf\x7a\xd2\xd9\x59\xca\x28\x99\x83\x33\x04\x4f\x97\x9a\xa1\x4a\x78\x3b\x8b\x4b\xf6\x86\xd2\x99\xb4\x54\x87\xf7\xc3\x9c\xc5\x0b\x3b\x61\xff\x34\x2e\x48\x31\x8a\x17\x8b\x3c\xf9\x90\x95\xf1\x9c\x7a\x0d\xbb\x5e\x83\x1c\xee\x10\x7f\xfb\xbb\xe9\x78\x42\x77\x77\xbf\x25\x84\x3c\x99\x6e\xf3\xc7\xc7\x84\x10\xff\xf1\xf4\x11\x7f\x7e\x44\x08\x79\x34\x9e\x3e\xe6\xcf\x4f\x08\x21\xdb\x1c\xf8\x0f\xb7\x6b\x18\x68\xcd\xdd\x97\xee\xd3\xb0\xd6\x65\x9c\xb5\xb0\x38\x0e\x29\xb7\x9f\xf6\x09\xf1\xfc\xef\xb7\x5d\xf0\xe2\xa3\xed\xb1\xec\xa1\x6a\xb5\x1d\x40\x51\xd4\x87\x5d\x9f\xe3\xe7\x92\x78\xf5\xdb\xb5\xf9\x9d\xb5\xf9\x9b\x6a\xdb\xb6\x6a\xdb\x76\xdd\x5a\x55\xdb\x9d\x55\x6d\xeb\xaa\xaa\x4a\x1a\xd0\xa3\xba\xe7\x36\x8e\x6a\x4e\xb3\x49\x6d\x1e\x76\xf4\x0d\x3e\xf5\xe8\x28\xc9\x97\xd7\x5e\x6d\xe5\x30\xc3\xd6\x5a\xf2\x12\xa8\xbe\xb4\x23\x96\x2b\x07\x83\xf6\x86\xc6\xcd\x2d\x81\xd0\x64\x73\x03\xc6\xfb\x9b\xd9\x68\xaa\xbd\xa1\xee\xa1\xed\x46\x2f\xd1\x5c\x54\xed\x3a\x6e\xc8\xd0\xdf\xb7\x09\x21\x63\xc3\x21\xd4\x7d\xd3\x27\x0b\x0b\xa7\x2d\x35\x86\xa1\x50\x78\xda\xe3\x54\x90\x72\x8c\x00\x99\x0a\xad\xc3\x55\xec\x90\x6f\x9f\x3c\xf2\xbf\xb7\x9d\x69\xd8\x33\xdf\xd8\xfd\x8f\xeb\x53\x14\x8e\x23\x42\x43\x6a\x18\xb6\x8d\xcf\x7e\xed\xb3\x1f\xe1\x4c\x62\x51\x63\x3c\xf4\x2d\xbe\x46\x67\xe3\x7e\xb3\xf1\xed\x5b\x1b\xf7\x23\xdc\x3d\x2d\xd8\x64\xa9\x5b\xae\x6b\x3e\x3d\xbf\x30\xe5\x56\x31\xb0\xc1\xa3\x68\xe2\xc0\xe6\xad\x6f\x12\xc5\x86\xbf\xe5\x08\x6a\x88\x38\xd8\xb0\xa1\x4c\xef\xc6\x1c\x27\xd0\xce\xfe\x9a\xf6\x5e\xa2\xa9\xda\x3e\x78\x64\xe3\xc8\xd9\xd4\x1e\xb2\x84\x87\x98\xa1\x49\xbd\xcf\xe4\xd1\x30\x6b\x4e\xe6\x23\xe1\x20\x66\x7a\xfb\x94\x4e\xbc\x3f\xb5\xde\x08\x77\xf6\xcf\xac\x48\x66\xef\xfc\xe5\x3d\x97\xa4\x6b\xb7\x4c\x37\xcf\xb5\x6a\x76\x8c\x1f\xd5\x97\x09\x4d\x58\xcd\x32\xc9\x12\x1c\x75\x1f\x7d\xd4\x69\x5b\xd4\xbb\xad\xb3\x15\x1b\x89\x9a\x9e\x83\x0d\x41\x41\xd2\x9a\x03\x04\x79\x0b\xb5\x31\x63\x0d\x19\x94\x05\x6c\x20\x29\x93\x8e\x0d\x59\x73\x92\x23\x2f\x07\x75\x6b\xc2\x45\xae\xeb\xb0\xb6\x2d\x5c\x15\x8d\xbb\x4e\xca\x2c\xc8\x58\x93\x20\x3b\x66\x60\x6a\x86\xf9\x45\xeb\x51\x9c\xa1\x49\xf3\x75\xbd\x76\x9c\xaa\x36\xbc\xba\x84\xe3\xcf\x2c\xae\xba\x01\x26\xac\xde\x02\x5c\xfb\x5d\xb4\x54\x37\x9f\xd4\x72\x10\xc3\xc1\xe0\x4e\x66\x28\x5b\xc1\x93\x89\x3d\xe1\x19\x26\x9d\x7b\xf9\x2e\xd1\xfe\x99\x72\x60\x6c\x5b\x77\x52\x3e\xf4\x11\xce\x79\xb6\xe1\xb0\xd8\xc9\xd6\xeb\x21\x07\xd0\xb9\xa9\x8e\xc3\x6f\x5d\x1d\xba\xbd\xaa\xed\x3f\x55\x15\xe4\x9e\xe6\x64\x3c\xa9\x55\xfa\x88\x57\xaa\xea\xa8\x8c\x47\xb2\x00\x78\xa2\xb5\x1d\xd4\xde\xf6\x02\x01\xe3\xb9\x1b\x60\x23\x0b\x94\x93\x55\x39\x91\x5e\xd6\x38\x54\x86\xd0\xed\xb8\x12\xc7\x9c\x96\xec\x68\x07\xf8\x3a\xf6\xba\x6a\xac\xaf\x71\x36\x36\x5c\xf1\xe8\xb6\x46\x6f\xc5\x96\xfe\x22\x1c\x20\xf8\x23\x2d\x1b\xe4\x60\x03\x5e\x70\x0b\xbf\xff\x31\xdf\x34\xa4\x90\xe4\x61\xcb\xd9\x4c\x83\xb9\xaf\xfd\xcc\x36\xdc\xce\xd8\x5e\x60\x14\x85\x9a\x83\xb6\xb4\xeb\xe6\x02\xb3\xd5\x0f\x02\xc5\x6d\xbc\x1e\x2c\xf2\xcb\xa9\xe1\x41\x14\x13\x2f\xf5\x0a\x0c\xd2\x46\xd1\x33\x12\x23\x1c\x9b\x85\x6d\xb8\xfd\xb1\xd8\x0a\x08\xa7\x5e\x8e\x21\x37\x6f\xbf\x0b\x89\x6d\xcb\xdd\x68\xa7\x23\x3c\x67\xaf\xe6\xf9\x2e\xcb\x95\x43\x50\x51\xbc\x21\x96\xcb\x50\x85\x63\x31\xa6\xdb\x1a\xed\x7f\x5d\xa3\xf5\x06\xc5\xaa\xe5\x5e\x07\xe2\xca\xa6\x8a\x2c\xb3\x1c\xf2\x4e\x0b\x38\x01\xc0\x49\x98\xa8\x67\xfd\x34\x46\xb8\xd0\x7d\x16\xeb\x70\x0f\xff\xaa\x5f\xdf\x6b\x33\x4d\xa8\xd1\x1c\x5f\xf6\xff\x64\x93\xc5\x88\xb7\x20\x76\x50\x53\x5f\xbf\x83\x61\xc2\x46\xc7\xd7\x8c\x0a\x15\x9f\x8e\x0b\x87\xe3\x7a\x38\x03\xf7\xa5\xb8\x20\x9c\x62\x51\xed\x3c\x7a\xe8\x65\x83\x02\x6d\x3d\x1e\x16\x15\x66\x23\x96\x3f\xbb\x66\x14\xb8\xdc\xdd\x0e\xe9\x44\x55\x31\xe1\x98\x10\x2e\x09\xc7\x78\xb0\xf0\x66\x9e\x7a\x1b\x78\xe7\x8f\x1e\x7a\x6c\x90\xf1\x26\xb2\xca\x1b\xe3\x18\x97\x08\xe1\x15\x19\xe3\x25\x29\x77\xc7\xd3\x78\xf8\x78\x12\x5b\x2e\x48\x97\x41\x36\x20\x8f\x11\x23\x39\x68\x44\x18\x0c\x1e\x45\x3b\x3b\xfe\xd3\x75\x33\x79\xe0\xc3\x87\xed\xf6\x87\x6d\xfe\xe1\x49\x3b\xfd\x11\x8a\x70\x12\xae\x06\x83\x88\xb0\xdd\x5d\xff\x89\xbb\xfd\xed\xb7\x56\xc2\x53\xfb\x7d\xfb\xdb\x6f\x5d\x16\xf0\x1b\xa6\x04\x1b\xfe\xae\x4e\x75\x34\xed\xa3\x68\x77\xf7\x71\xad\x12\x14\xf8\xb7\xd6\xe2\x8f\x37\x0c\xed\x71\xe7\xc8\x76\x77\xb7\x6f\xed\xb3\xde\x49\x09\x5f\x57\x0e\x50\xba\x57\xd6\x62\xe7\x6b\xa8\x8b\x73\x92\xfd\xfd\x11\x4e\x49\x18\xe1\x98\x8c\x71\x49\xb2\x61\x1e\xc4\x3b\x65\x10\x0f\x88\xff\xe4\xd1\xd3\x47\x28\x15\xc2\x59\x8e\xa6\xc7\x38\x1e\x40\xe2\x6e\x39\x2d\x27\xf2\x19\x89\xe1\xe6\x53\x8f\x71\xb0\xcb\x89\x13\x59\xa4\x08\xd9\xee\xee\x76\x34\x28\x42\xb6\xb3\xf3\xd8\x7d\xf2\x28\x1a\x38\x84\x38\x08\x4d\xe0\x1e\x87\xf9\xf1\x78\x91\xed\x68\x67\xe7\x29\x1a\x74\x94\xf6\xc7\x50\x7c\x77\x57\x14\x87\x9a\xb6\x65\x4d\x8e\x11\x06\xa5\xda\x7f\x8b\xf1\xb0\x51\x08\x89\x76\x18\xe1\x94\x38\xab\x4c\x98\x07\xcd\xac\x23\xfb\x21\xcd\xd8\x53\x98\xa6\xa9\x79\x9c\xc0\x5f\x1c\x13\x67\xef\xd9\xfe\xf3\x17\x3f\xfc\xf8\xd3\xcb\x7f\xfc\xf3\xd5\xeb\x37\x6f\xdf\xfd\xeb\xfd\xc1\xe1\x87\x9f\x3f\xfe\xf2\xeb\xbf\xe3\xe3\x64\x46\xe7\x27\xa7\xe9\xef\x67\x8b\xf3\x2c\x5f\x7e\x2e\x4a\xb6\xba\xb8\xbc\xba\xfe\x32\xf6\xb7\x1f\x3d\xfe\xf6\xc9\x77\x4f\xbf\x1f\x6c\x39\x52\x27\x24\xb6\x74\x42\x82\xc1\xa0\x44\x45\x58\x46\x24\x0e\xcb\x08\xe7\x61\x6c\xaf\x76\x89\x22\x52\x06\x9d\x64\x9b\xd6\x56\x98\x7b\xec\xef\x8f\x77\xc7\x6d\x86\xd5\xcb\xec\x22\x5e\xa4\xb3\x9e\x00\xb0\xa3\x9e\x80\x10\x16\xdc\x39\x5f\x2d\x58\xba\x5c\x80\x6b\xd4\xc7\x8e\x72\x3d\x61\xf8\xf9\x7c\x42\xe5\x7c\x0e\x81\x5e\x72\x5d\x0f\x9c\x4d\x85\x19\x06\xa7\xa6\xd3\xf1\xe4\xf1\x30\xfb\xfb\xe3\xa8\x15\xbe\xc2\x52\x66\xc0\x5a\x1f\x86\x05\xe5\x4e\x16\x94\x03\xf2\x08\xe5\x7c\x99\x4b\xbe\xf3\x9f\xb8\xfe\x93\xef\x7c\xff\xc9\xd3\x31\x1a\xf0\xb4\x81\xcf\x97\xde\x7d\xf2\xed\x36\xa4\xf0\xfd\xcc\x53\xb7\x23\xb8\x49\xc5\x36\xf0\x52\x92\xa3\xdd\x5d\xff\xa9\xdc\x02\xe9\xee\xae\xbf\x6d\x9e\x9f\xc8\xc7\x27\x8f\xdc\xd4\xf8\x39\x8c\xcd\x8e\xc8\x43\x67\xe8\xd8\xf3\x3c\x46\x11\x79\xb2\x8d\xf3\xd0\xf9\xd4\x4e\x7f\xd4\x25\x21\x8b\x9b\xe2\x42\xcb\x0b\x1c\x07\x73\xe4\xe9\xc3\x7c\x58\x0c\x7d\x9c\x10\xcf\xdf\xd9\x29\xd1\xd0\xc7\x0b\x92\xec\xee\xfa\x78\x45\x86\xdf\xe1\x25\xc9\xa6\xf9\xd0\x9f\x8c\xf1\x9c\x64\xd3\xa1\x3f\xf1\xf1\x0c\x5c\x99\x2e\x23\xd8\xaf\xcb\x01\x99\xe3\x94\xcc\x5c\x5e\x7a\xb8\xe2\xc5\x67\xbb\xbb\x64\xb8\xc2\xab\x01\x29\x83\xd5\xee\x38\x48\xc9\xf6\xb7\x4f\x1e\xa6\x03\x51\x0a\x43\x89\xd5\x90\x3c\x15\x9a\x1a\x31\x49\xad\xb2\xa9\x2e\x5b\x40\xd9\x18\xca\xc6\x1d\x65\x25\x09\x96\xa2\x94\xf8\xc3\x85\x96\x12\xa4\x96\xdf\xe9\x5e\x3c\x7d\x13\xbf\x99\xf8\x5b\xe3\x87\xde\x0c\xfa\x8e\x38\x70\x78\x1d\xb3\xd3\xd1\x32\xbf\xf4\xb6\xc1\xd3\xdd\x90\x2c\x24\x6d\xaf\x32\x3d\x8c\x1f\x5a\x79\xd2\xa1\x10\x67\x36\xa9\x40\x35\x99\x38\x95\xbe\xb8\x31\x88\xe7\xc8\xd3\x87\xe9\x30\x1f\xf2\xe9\xe3\xc3\x5a\xf0\x51\x2d\xc9\x8a\x4f\xe8\x9c\x6c\x3f\x02\x78\x63\xd5\x3e\xdc\x7e\x8c\x86\xf6\xfb\x77\xdf\xa1\xc9\x18\xcf\x48\x31\x1d\x4f\xd2\xa1\x8f\x4f\x49\x31\xf5\x27\x43\x1f\x1f\x13\xb6\x33\x5e\xaf\xf9\xa0\x99\xeb\xfa\x5b\x6c\x67\x3c\xf5\x27\x42\xd8\xc7\xc4\xa0\xe2\xe3\xd2\x63\x08\x43\xd0\x1a\x10\x00\x33\x42\x88\xbf\x35\x9e\x7a\x25\x51\x89\xbc\x0c\x8e\xc9\x0a\x4d\xbc\x58\x94\x9a\x2f\xf2\xbc\xf0\xe0\x71\x91\x9f\x78\x0c\x6d\xc1\xf3\xab\x37\xdb\x08\xb3\x87\x5e\x62\x4f\xd8\x30\x46\x68\xc7\x77\x5d\x2f\x1e\x0e\x71\xf2\x90\x6c\x23\xec\xb1\x01\x89\x07\xcb\x5d\xe2\x4f\xe7\x5b\xc9\x64\x6e\xcf\x9d\x3f\x5c\x22\xf4\x30\xd9\x25\xdb\xbc\xc8\x60\x80\x93\x2d\x5e\x04\xb2\xaf\x78\xaf\x64\x57\x64\x79\xaf\x24\x1e\x7b\x98\x0c\x7d\x64\x57\x92\xf3\x02\x64\x89\x26\x5e\x49\x98\xfd\x61\xd9\x91\x91\x8c\x11\x0a\xf2\x5d\xf2\x34\xa0\x61\x36\x98\x89\x8b\xa6\xc4\xb3\x01\x39\xc5\xe5\x16\xdf\x4d\x38\xb7\xf6\x5e\xbc\xb3\x93\xaf\x4b\xbc\x18\x90\x3c\x58\xec\x8e\xed\x42\xb1\x28\x14\x8b\x42\x0b\x28\x04\x9f\x87\xa7\xd1\x9a\xf8\xdb\x4f\x1f\x1e\xb7\x64\xd2\x02\x32\xdd\x54\x9a\x22\xb1\x1c\x8b\xd5\xc4\xf3\x5d\xd6\xa2\x4e\x28\xac\x7a\x84\x20\x3f\x72\x08\xc9\xa4\x36\x6d\x17\x6a\xa5\x21\x59\xa1\x25\x82\x9f\x92\xe3\x92\xd0\xf5\xfa\xa6\xb2\x54\xe7\x0a\x49\x33\x6f\x94\xfe\xe5\xb7\x4b\xff\xf2\x90\x46\x88\x12\x21\x3e\xb3\xdd\xb6\x85\x1d\x12\x40\xde\x03\x70\xb5\x6b\xbf\x79\x0d\x59\xe0\xfd\x6a\x64\xb7\x56\xd9\x14\x0c\xe6\xf7\x17\x0c\x3a\x28\xb8\xbb\x71\x2d\x1b\xdc\xd0\xbc\x11\x12\x7e\xd5\xba\x48\xc9\x87\xf0\xc2\x1b\x46\xff\x5b\xcb\x24\x3a\x20\x6e\x29\xed\xd2\xf8\x3f\xb1\x78\xf5\x86\x30\xbb\xbd\xa9\xff\xda\xa2\x36\xbb\x85\xb3\x3b\x3a\xa6\x96\xbb\xe6\xb6\x30\xcf\x0a\x5a\x52\xb6\x61\x76\x21\x24\x90\xaa\x44\xe5\xb5\xea\x55\x49\x1e\xaa\x6a\xb5\x16\x14\x2c\x3c\x3a\x8f\xd6\xad\xd5\x04\x26\x1a\xd1\x18\x4b\x06\xa3\x1c\xa8\x44\xc1\xe8\x0e\x0b\xa8\x50\xd0\x34\xc3\xb3\xf2\x85\x34\x0a\xc7\x51\x54\x63\x9e\xeb\x2f\xaa\x12\x8b\x21\xbd\xa1\xbc\x27\xb0\xe4\x3b\x32\x35\x92\xfc\x48\xb2\x2a\xef\x9d\x1f\x37\x52\xb6\x23\xd4\x54\xbd\xb4\x15\x2f\xac\xf9\x34\x13\xc5\x4f\xe4\xe6\xb0\x4d\x92\x8d\x63\x87\x6d\xd2\x93\x9c\xf7\xd2\xac\x57\x20\x09\xa1\x39\x4e\xa5\x14\x7f\x8a\x30\x8f\xda\xba\x3f\xf2\x28\x9b\x75\xae\x2b\x71\xb6\xe1\x48\x87\x92\x99\xbf\x35\xc6\x05\xd1\xd7\x84\x88\x73\x17\x39\x38\x27\x5b\xe1\xd1\xd1\x6f\x0f\x46\x0f\x07\x53\x0f\x85\x47\xd1\x4d\xb5\x8e\xb6\x4e\x70\x4a\xde\xd3\x93\x17\x57\x4b\x2f\x1f\x09\xf7\x80\xfc\x7e\x34\x11\x04\x8d\x74\x99\xff\x1b\x89\x1e\x12\x15\xab\xc6\x75\x19\x2e\xdb\xb9\x4b\xba\x98\xbb\xae\xf9\xdb\x2e\xc6\x53\x39\xf1\xb0\x5e\x97\xeb\xb5\x0a\x62\xe0\x39\x16\xcb\xd8\x41\x1e\xc2\x8b\xf6\x94\xa8\x4b\x13\xaf\x48\x32\x12\xa3\xe3\xa8\xd3\x74\x65\xf2\xa8\xf8\x54\x73\xb2\x9c\x2e\x75\x01\x99\x1a\xd4\x19\xff\x96\x2c\xdd\x62\x76\x68\xf9\x7c\x3a\xef\xf0\xd6\xe9\x94\xd0\xac\x63\x07\xbc\x69\xe7\xea\xf7\xa9\xeb\xb6\xa6\x06\xe4\xea\xae\xbb\x50\x97\x36\x21\x05\x4f\x51\x2d\xce\xa7\x73\xf5\x65\xa2\x24\x05\x84\x0e\x34\x37\xdd\x19\x3b\x12\xb3\xa3\x84\x0c\xb3\xa9\x33\x1c\x3b\x13\x56\x75\xf9\x6e\x54\xba\x17\x12\x6d\xa5\xa0\xbb\x06\x62\x05\x8a\xa6\x8e\x33\x99\x79\xe0\x8a\x36\x05\xbd\x62\x8f\xa2\x29\xd5\x8e\xed\x72\xec\x1c\x1d\x3d\x70\x1d\x34\xa1\x55\x85\x6c\x85\x23\xcf\xff\xb6\xeb\x3e\xb3\x39\x26\x9a\xb3\xb9\x3d\x1e\xe3\x9c\x38\x9f\x3e\x2d\xf2\x59\x5c\x9e\x7e\x3a\xe5\x7f\x34\xa5\xfa\xe9\x93\x83\x53\xf2\xfd\x78\xfc\x9d\xff\xfd\xf7\xdb\xdf\x3e\xfe\xee\xf1\xf8\xfb\xef\x7d\xbe\xf7\x0c\x86\x23\x8f\x54\xc4\x69\x4d\x9d\xfc\x2c\xcf\x17\x34\xce\x22\x07\x27\x26\xf1\x79\xcc\x68\xe4\xe0\x85\x49\x51\x9b\x2a\x72\xf0\xca\xa4\xfe\x48\x33\x5a\xc4\x2c\x2f\xac\xcf\x4b\xf3\xf9\x75\xbc\x8c\x1c\x3c\x37\x09\x22\xc2\x63\xe4\xe0\x99\x49\x13\x5b\x32\x72\xf0\xa9\x49\x13\x67\x28\x72\xf0\xb1\x75\xf4\x28\xcf\x74\x6e\x25\xc0\x3e\x8b\x1c\xfc\xba\xe3\x7c\x9e\x90\x3a\x6a\x27\x38\x66\x91\x83\x2f\x6a\xa3\x8c\x7f\x4e\xe9\x65\xe4\xe0\x6b\x6b\xa4\x8b\x3c\x66\x8f\xb6\x25\x42\x88\xf7\x1a\x5f\x9e\x3c\x56\x5f\x2e\xcd\x97\x97\x8a\x21\x10\x39\xf8\x4b\x2d\xd9\x7f\xa2\xd2\x3f\xd5\xd2\x4d\x03\x6f\x4d\xba\x61\x2c\x44\x0e\x3e\x6c\xa4\xef\x2f\xe2\xf3\x25\x9d\xa9\xcf\x57\xf5\xcf\xa6\x9d\x37\xf5\x0f\xa6\xa1\x57\x64\xeb\xe8\xf2\xe1\x83\x2d\xfc\x82\x6c\xfd\x76\xa4\xf2\x8c\x06\x53\xb0\x9d\x2c\x56\x09\xcb\x8b\xa3\xe8\xc1\x16\x3e\x20\x5b\xbf\x79\xd3\xc9\x78\x1d\xfa\xc3\xef\xa3\xa3\xd9\x43\xf4\x60\x0b\x7f\x26\x37\x55\xf0\x39\x8c\x23\xf2\x39\x6c\x62\xcd\x3c\xed\x84\xff\xb9\xe0\x7f\x4a\xfe\x27\xe1\x7f\xae\xf9\x9f\x3d\xfe\xe7\x92\xff\xf9\xc2\xff\x7c\xe2\x7f\x96\xfc\xcf\x9c\xff\x99\xf1\x3f\xa7\xfc\xcf\x31\xff\x73\xce\xff\xbc\xe6\x7f\xde\xf2\x3f\x87\xfc\xcf\x15\xff\xf3\x26\x22\xfd\x31\xb6\x9a\x06\xec\x44\x34\xbd\xa8\xf5\xe9\x23\x8d\xcf\x60\xe3\x45\xa4\xef\xc3\x91\xdf\x6f\x83\x54\xea\xba\x20\x6c\x6b\x41\x52\x8a\xcf\xfe\x30\x00\xfe\x48\xf6\xd7\xeb\xb3\xdb\x00\xf0\x73\x0e\x6c\xfa\x6c\x94\xe5\x33\xb0\xac\xe7\x00\xff\x19\x79\xde\x01\xd8\x32\xd7\xcd\x5c\xb7\x9f\x59\x59\x33\xfc\x8e\x3c\x73\xdd\x67\x1a\x38\x11\xf2\xdc\x80\xdf\xf7\x0d\x33\x43\x8e\x9f\x00\x5f\x17\xf4\x50\xb0\x15\x45\xf1\x97\xa6\x41\xe2\x8c\xc3\x2e\x3b\xc7\xef\x4d\x85\x6c\x08\xf3\x42\xa7\x8a\xb1\x24\x29\xe0\x02\x6c\x8f\xbc\x8c\xd0\x70\x30\xc8\x23\x14\x0c\x06\xf9\x4e\x1a\xa0\x8c\x30\x2f\x03\x05\x5f\x9c\x5b\x1a\x29\x96\x03\xca\x97\x86\x59\x25\x02\x55\x09\x6f\xa2\xd4\x0e\x6d\xdb\x37\x51\x1d\xd4\x9d\x83\x58\x71\x7d\xc3\x48\xbf\xef\x71\x18\x8e\xaa\x24\x66\xc9\xa9\x97\xa1\x9b\x0e\x45\x81\x0f\xa6\x89\xa1\x8f\x33\xa2\x62\x0e\x96\xe9\x17\x6a\x89\xe2\x3a\xf0\x7b\x3e\xec\x2c\x1c\x0c\x58\x44\xc2\x02\xd3\xa8\xaa\x3b\xcf\xfc\xe9\x6e\x7d\x77\xe6\x65\x08\x59\x2a\xf2\x3f\xfc\xe1\xbe\xe8\x9e\x50\xd1\x0b\x5e\xc9\xcf\x92\xac\xd5\x17\x34\xfe\x95\xb4\x83\x07\xe3\x1f\x5b\x97\x3d\xfe\x27\xf9\x18\x3a\x9f\x3e\x25\x79\x41\x87\xbf\x97\x9f\xca\xd3\xb8\x80\x9b\x23\xc2\xff\x6a\x85\x06\x20\x5b\xe1\x6f\xa3\x68\xf0\x60\x6b\x44\xaf\x68\xe2\xfd\xd3\x75\xff\x09\x44\x91\xfa\x1d\xbd\x7c\xf1\xe9\xdd\xfb\xb7\x87\x6f\xd7\x6b\xc7\x88\x27\xe8\xd4\x11\x20\xd8\x2b\x8b\x04\x7d\xf2\x47\xce\x80\x4e\x1c\xa7\xf2\x10\x7e\x40\x7e\x35\xd8\xc6\x3f\xc8\x8f\x0d\x6c\x0c\xff\x9b\xfc\x68\xbe\x53\xaa\xf0\x28\xe7\x37\x67\xf0\x40\xdc\x99\xff\x40\xc6\x57\x6c\x27\xf2\x25\xaf\x59\x93\xab\xde\xc4\x5a\x4f\x2c\x1a\x3d\x9c\x7a\x53\x72\x74\x74\xe4\xa1\x75\x6f\x9e\x17\x1c\x0c\x8a\x84\x08\xf1\x8a\x1e\xf8\xa3\x87\x53\x07\x0d\x9c\x07\x0e\xc2\x8c\x92\x77\xd3\x8f\x52\x6c\xa7\xb0\xa1\x8c\x92\x8f\x0a\x61\x2a\xf8\xb3\x01\xde\x38\xa7\xe4\x27\xaf\x33\xfc\x20\x16\xa9\x08\xa7\x0d\x81\x1f\x8e\x29\xf9\x91\x2f\x15\xf4\xf4\x65\xf9\x42\x87\x74\xc4\x25\x25\x3f\x4b\x85\x69\x9c\x50\x72\x5b\xfc\x65\xbc\xa0\x84\xd1\x29\xa3\xa3\xb4\xac\x77\x77\x65\x75\x89\x2f\x9f\xee\xc8\x92\x92\xe7\xd4\xfb\x88\x1d\x75\x1b\x3a\x08\xcf\x55\xda\xeb\x78\xe9\x20\x3c\x53\xaf\xef\x8a\xfc\x3c\x2d\xa9\x83\xf0\xa9\x4a\x3a\xa0\xcc\x41\xf8\x58\xbd\x4a\xe0\xeb\x20\x7c\x0e\x49\xa2\x15\xec\x88\x41\x3a\x08\xbf\xa6\xe4\x77\xea\x2d\x29\xc2\x27\xf0\x34\xa7\x08\x5f\xc0\xd3\x8c\x22\x7c\x0d\x4f\xa7\x14\xe1\x3d\x78\x3a\xa6\x08\x5f\x52\x92\xd1\x69\x46\xdb\x08\xe9\x17\x4a\x2e\xe9\xf4\x92\x8e\xc0\x24\xfe\xed\xbc\x85\x92\x7e\xa2\x8d\x83\xd7\x02\x61\x40\xcf\x24\x0b\x1a\x17\x1e\x07\x5f\x6c\x27\x0b\x74\xb4\x54\x4e\x7a\x08\x5d\x65\xca\x3c\x90\x6b\x15\x1c\x94\x5a\xe7\xfa\xed\x7f\xb8\xfe\xc3\xff\x70\xfd\x57\xd4\xf0\x4b\x3e\xcd\x62\x16\x7f\xfa\x04\x22\x3b\x18\x97\xc9\xf6\x86\xda\x9c\xb6\x0f\x14\xbc\x96\xb7\x31\xf4\xde\xbd\x92\x6e\xc5\xe3\x7f\x82\x86\xe1\xf1\x1f\x2a\x50\x8f\xc3\x7f\x29\x75\x38\xb1\xd7\x8f\x69\x2b\x79\xbd\xfe\xb7\xc1\xfe\x63\x28\x3d\xdd\x64\x31\x3a\xf4\x71\xa1\xa0\x2f\x9f\xaf\x6c\x87\x06\xa8\x08\xb3\x88\xdf\x58\x96\xaf\x69\xad\x58\x86\xe5\xc5\x33\x09\x23\x5c\x68\xb3\x4b\x9c\x93\x7e\xbf\x30\x36\xa2\x42\x95\xa0\xcf\xef\x76\xdd\xed\x14\xad\xd7\x10\x46\x45\x3a\x5b\x20\x24\x5d\xaf\xdf\x53\x08\xf5\x82\xd6\x6b\x6d\xc4\xd8\x71\x3b\xbe\xa2\x8d\xb8\xbd\x7c\x25\xff\x61\x02\x17\xb9\xee\x4b\xea\x15\x38\xe3\x33\x62\xd4\x3c\xd7\x6b\x26\xfa\xb1\x5e\x8b\xe8\x32\x99\xb5\x84\x2f\x68\x73\x2a\xb4\x90\x28\x1b\x0e\x03\x94\xce\xbd\x97\xd4\xa3\x61\x16\x01\xca\xa0\x09\xa8\x4c\xcb\x78\x4c\x5d\x07\xd4\x66\xc4\xe3\x17\xa2\x9b\x07\xa0\x37\xe4\xba\xde\x01\x49\xa7\x85\x47\xe5\xb7\x49\x01\x91\x38\x74\x37\x0f\x54\xcd\x90\xbf\xff\x2b\xb5\xa8\x35\x2a\xb1\x35\xd8\x61\xfc\xf3\x3e\x10\x94\x07\x5d\x9a\x52\x6a\x25\xc0\x52\xde\xe0\xaf\x1e\x43\x01\x73\xdd\x36\x0d\x1a\x8e\x23\x7b\x4f\x81\x18\xcb\x11\xd1\x33\xe0\x59\x89\xb6\x30\x7f\x5f\xae\x18\xbc\x2f\x57\x96\xd1\x09\x68\x70\xf7\xb5\xc5\x4f\x17\x13\x1a\xb6\x97\x89\x42\x07\xc6\x60\x62\xb7\x15\x48\xda\xc8\xf2\x3d\x57\x04\x46\xed\xc4\x8a\x67\x4c\xf1\x01\xaa\x74\x3c\xce\x33\xf2\x0e\x2c\xb1\x3e\x92\x33\x42\x16\xeb\xf5\x19\x21\x2b\x3e\x27\x3f\xd8\x33\x56\xef\x84\xa5\xf5\xde\x33\x56\x39\x17\x3a\xfa\x70\x7d\xa6\xb4\x8e\x4d\x43\x2f\x29\xe3\x78\x86\xa7\x14\xa2\xce\x08\x99\x41\xe3\xf1\x7a\xfd\xd1\x75\xfb\x29\x34\xf3\xd2\xea\x43\x3a\xa5\x93\x9b\x2a\x68\x2d\x54\xd3\x36\xd1\xc2\xe7\xac\x6e\xac\xd7\xbf\xf0\x01\x4d\x6f\xaa\x89\xc7\x48\x0e\x43\xfe\x95\x7a\x0c\x4d\x53\xfe\x77\x72\x23\x3d\x30\xb2\xca\xfb\xc8\x33\xdd\xb2\x06\x32\xf1\x8c\x6f\xcf\x67\xc2\x8a\x8d\x43\x03\xdc\x99\x8b\xba\xee\x19\xf5\x18\xfe\x91\x02\xee\x8b\x2a\xef\x00\x82\x76\x2b\x5e\x68\xff\x73\x78\x16\x35\x86\x78\xb0\xd1\x60\xb1\x36\x24\x6d\x9e\x21\x34\xfc\x7b\x27\x4a\xbd\x7e\x1f\xf6\x35\xa4\x95\x60\xbd\xd0\x4b\xd4\x27\xbe\x3c\xb9\x37\x50\x9f\x2f\x26\xb7\xec\x32\x36\xe5\x15\x8d\x8e\xe1\x7e\x47\x13\xf5\x14\x58\x55\xd5\x57\x3a\xc3\x14\xd4\x40\x84\x07\x1b\xf9\xf2\x4a\x06\xcd\x06\x7c\x57\xb4\x7a\x2d\x3a\xb5\x27\x7e\x2e\xc5\xcf\x17\xf1\xf3\x49\xfc\xbc\x15\x3f\x87\xe2\xe7\x4a\xfc\xbc\xf9\xcf\xf6\x76\xd1\xee\xe9\xb2\xab\x45\x4b\xb5\xe4\x77\x8f\x4d\x33\xef\x03\x9c\xd8\x31\x9a\xc0\xc3\x7b\xdc\x6a\x4b\xd4\x89\x33\x59\xeb\x5c\x0c\xe7\xbc\xbe\x28\x6a\x4d\x4e\xdb\x6d\x2a\x68\xd4\x75\xb8\x04\xf7\x0f\xbf\x12\xe8\x33\x35\xda\x07\x96\x87\x13\x42\xcd\x33\x66\x95\x6e\xea\xf8\x5e\xc3\xfb\x41\x0d\x0f\x1e\x7e\xb9\x73\x78\xaf\x55\xad\x29\xa1\xf8\x0b\x9d\x0a\xdc\xcc\xfb\x22\xaf\xd4\x14\xf1\xd3\x06\x14\x46\xca\x0b\x9e\xe1\x03\x30\x06\xab\x5e\xac\xd7\xde\x0b\x18\xe3\x15\x15\x87\xf1\x39\x79\xc1\xf1\x4f\x09\xa5\x9f\xab\x63\xf2\x9c\xbf\xbd\x00\x74\x83\xc3\x32\xdc\xdf\x47\x3c\xf7\x33\x52\x8f\x05\xbf\x61\x6c\x52\x0f\xd5\xd2\x04\x83\x7b\x60\x5a\x6c\xf4\xff\x00\xe0\x96\x99\x3b\x99\x5a\x01\xe4\x39\x90\xa5\x61\x3e\xe0\x57\xbb\x05\x66\x69\xc5\x2f\x4e\xbe\x1c\x7c\x88\x3f\x72\x40\x01\x18\xc3\xe4\x47\x6a\x35\x7c\x6b\x83\x35\x1c\x0c\x5a\x72\x5d\xb0\xe9\x65\x70\x7f\xe2\x8c\x93\xbc\x28\xa8\xbc\x67\xeb\x35\xc5\x86\x96\x03\xa1\xf5\x33\xe1\x05\x22\x4c\x49\x1e\x21\xfc\x8a\x7a\x07\x38\xc5\x07\xd4\xcb\xe5\x85\x9a\x62\x8a\x5f\x20\xc4\x89\xbd\x03\x73\xe3\x7e\xa6\x16\xfe\x24\x2f\x4d\xb8\x5c\x28\xfe\x97\xeb\xfe\x8b\x5f\xfb\x22\x0e\xd6\xcf\xe2\xcb\x4b\xe0\x3f\xd2\xc9\x0b\x24\xb8\x91\xbf\xc3\x9d\x21\xe1\xa8\xae\x75\x9f\xde\xbe\x83\x2d\x28\x61\x9f\xd6\x82\x43\x4c\x58\x64\xf9\xc6\xef\x77\xab\xda\x33\x6a\xa0\x63\x06\x91\x28\x38\x0c\x37\xfe\x2b\x80\x97\x60\xc5\xfa\x07\x96\x81\x90\xe6\x13\x16\xe6\xa0\x3d\x36\x2d\xbc\x2c\x8c\x23\x0c\xd1\x4a\x62\x98\x52\x85\xdc\xbf\xa2\x5e\x86\x63\xac\xf5\xba\xcb\x29\xcf\x34\x29\x2d\xa3\x09\xdd\x95\x8f\xb4\xee\x3d\x46\x21\xb9\xed\x75\xd6\xf6\x43\xf2\x8a\x52\xfc\x61\x83\x47\xac\xd7\x46\xc9\x92\xbf\x18\xa6\xf5\x7a\xed\x1c\x0b\x26\xaa\x03\x4a\x8b\x3a\x5e\x91\xd3\x27\x84\x4e\x04\x9f\x98\xd0\x8a\x5f\x6a\x59\xd8\x42\x4d\x8c\x9a\xe3\xc4\x39\x8d\xcb\x53\x27\x9a\x40\x60\x2b\x33\x8c\xe7\x74\x93\xfe\xb6\x31\xd5\x87\x46\xe8\x54\x4c\xcb\x84\xe3\x7f\x55\xcd\x66\xf6\x33\xf5\x32\x34\xcd\xe4\x2c\x56\x9f\x2c\x72\x4a\xd0\x0f\x6d\xe1\x97\xa2\x08\xce\xe9\xf4\x5c\x05\x65\xbd\xa9\x2a\x5c\x2b\x2b\xa2\xb4\x76\x39\x99\x82\x4a\x4e\xe3\x12\xb0\x79\x19\xcc\xb5\x56\x31\x38\xce\xaa\x55\x76\x42\x3b\x6c\x8e\x49\xad\x10\x07\x31\xe7\x54\x5f\x2e\x21\x35\xae\x5d\x40\xcd\x43\x4e\x80\xb6\x9c\x91\x28\x1f\xc3\x14\x4d\x79\x6e\x35\x01\xf5\x86\x4f\xe3\x2e\x67\x5f\xf5\x86\x65\x85\xe7\x6a\x92\xf9\x89\xe7\x15\x5a\x2d\x34\x6a\xad\x09\x2a\xed\xd5\x6a\x4e\x03\x39\xa7\x56\x18\x7a\x36\xcd\x27\x4c\x46\xc7\x7e\xfb\x15\xeb\x14\x46\x8d\xfc\x1d\x6b\xd3\x31\x30\x9c\x91\x17\x14\xba\xaf\x7c\x7c\x78\xd9\xce\x18\x50\x63\x62\x99\x05\x4c\x99\x08\xa2\x3c\x29\xa9\x1a\x70\x86\x7d\x24\x42\xbd\xbe\xfd\xca\x55\x6c\xb5\xd9\xcb\x76\xc6\x6a\xed\x38\xbc\x0e\xfd\xe6\x60\x9a\x4b\x24\xcb\xf1\x6a\x6a\x35\x53\xb4\x3b\xf4\x1b\x65\xdb\x0b\x61\x49\x5b\x75\xc9\x82\xf7\x29\xb3\xfa\x54\xec\x8c\xa7\x99\x2d\x48\x9f\x64\x61\xc1\xbb\x46\xd4\xf2\x1c\x7e\xc5\xf2\xdc\xf0\xc3\x3d\xe1\x30\xf3\x13\xc5\xe7\xf1\x92\x3f\x7a\x73\xba\x5e\xbf\xa5\x08\x0b\x08\x20\xbf\x56\x8d\x8a\x37\x9f\xb1\x8f\x54\x99\xfd\xc9\x4c\xa0\x90\x7c\x78\xdb\x6a\xb4\x4b\x8a\x9b\xbc\x51\x6c\xc3\x74\x5b\xc5\xc4\xd1\x6e\x14\xdb\xb8\xe5\xad\x82\x02\x3f\x60\x2a\x00\xfc\xd5\x57\xcc\xa1\x60\x4e\x34\xca\xdc\x01\x82\x54\x61\x7b\x86\xae\xee\x31\x43\xf5\xc2\x6a\x92\xae\xee\x31\x49\xf5\x92\x6a\x9e\xae\xbe\x7a\x47\x02\x63\xbc\x97\x82\x63\xcb\x84\x5f\x15\x6f\xa9\x71\xb7\x66\x67\xea\xf3\x6d\xa4\xdc\x9b\xec\x14\x43\x5f\xdb\xc1\xb4\xd4\x40\x82\x46\x1b\x30\xa5\x87\xd4\xcb\xcd\xfd\xd9\x58\x20\x40\x1b\x9e\x51\x92\xd0\xe9\x4f\x5e\x42\x15\xe3\xb0\x1d\x34\x98\xc3\x9f\x77\x9d\xeb\xa0\x19\x34\x96\x39\xfb\x7b\x5a\xf7\x6e\xe8\x31\x29\x51\x65\xd3\x74\xc2\x38\xf8\xb1\xee\x5b\x2d\x17\x3e\x50\xe2\x55\xe4\xba\x14\x1c\x4a\xd0\xbf\xfb\x84\x8c\x5d\x97\xee\x58\x38\xc8\x2f\xb4\x61\x54\x65\x93\x67\x0a\x15\x24\x84\xd4\xa2\x6c\x5b\xb2\x79\xb3\x52\xeb\xf5\x8f\x16\x1b\x05\x10\xa9\x1b\x23\xaf\x40\x37\xac\xb8\x56\xa3\x7c\xa0\x47\x29\xe4\x12\x0c\xdd\x54\xd6\x67\x3a\x70\x1c\xeb\x4b\xa5\x6c\xcf\x2c\xa9\x08\xad\x93\xa8\x22\x78\x3e\xe5\x58\x84\xeb\x32\x7e\xdf\x54\xde\x92\xba\xee\x3b\x0a\xa8\xd7\x52\xfc\x58\xe2\x4d\xcf\x47\x08\xf5\xc9\xc5\x7a\x3d\x37\xd9\xe6\x14\xf5\xc9\x72\xbd\x9e\x51\xd7\xd5\x42\x32\xc9\xc9\x8d\x9c\x3e\x79\x47\xbd\x19\xa8\xc0\xe4\x8b\x0b\xea\x21\xb4\x5e\x9f\x9a\xc2\xa7\xbc\xf0\xf1\x7a\x7d\x6c\x17\xd6\x12\x36\x28\xcc\xb3\x1d\x8b\x48\xa4\xef\xba\x2e\x1b\xbd\xf8\x38\x23\x8c\x90\xd9\xb4\xb6\x1a\x8a\x97\x5b\x90\x6c\xfa\x3b\xc7\x51\x14\x9e\x97\xce\xbd\x42\xb9\x25\x28\x24\x25\xfd\x9a\x2a\x12\xe6\x42\x90\x34\x27\x3a\x61\x29\x09\x67\x95\xd0\x1e\xa9\xa4\x71\x75\x89\x63\x91\xb0\xd7\x2a\xa1\x87\x67\xa4\x4a\x02\x77\xfe\x40\xeb\x0a\x85\x66\x33\xff\x64\x21\xe8\x3d\x2d\xcb\xea\xe0\x86\xb4\xb6\x74\x7b\x1b\x93\xd4\xb0\x1f\x91\xeb\xf6\x01\xa7\x07\xb2\xec\x07\x4a\x16\xb6\x6e\x84\x3e\x3c\xbe\x75\xae\x7e\xb6\xb6\x3e\x10\x0a\xd3\x7f\xdb\x2a\x10\x6a\x48\xc0\x53\x62\x84\xac\xcc\xf6\xfb\x95\x6e\xc4\x83\x81\x69\xeb\x59\x5c\xdb\xf5\xba\x76\x72\xac\x23\xf2\xa3\x3d\x15\x30\x2f\xd3\x37\x60\xc2\xd8\x50\xa0\xeb\xff\x62\x33\xb2\x56\x40\x7e\x89\xb6\x43\xa3\xf1\x03\x46\x5a\x92\x4e\xa5\x08\x69\xfe\x5d\x86\x5c\xd7\xb1\x76\x91\xd3\x27\x19\x1c\x5b\x0e\xed\x0c\x23\x17\x48\xea\x2a\xeb\xd4\xe6\x50\x6c\x48\x7e\xe6\xfa\x63\x40\x63\xda\xba\x19\x38\xf3\x1e\x7d\x8f\x80\x5c\xfc\xeb\x94\x34\x9e\x8e\xc7\xca\x11\x51\x4b\x5f\x23\xe9\xd6\xd7\xb0\x14\x31\xf6\xca\xeb\x2c\xe9\xd6\xc6\xe8\x56\xc2\xe8\xd2\xd1\xa8\xa9\x64\x2c\x16\x77\x2b\x64\xbc\x2b\xf2\xab\xeb\xba\x3e\xc6\x07\x35\x2a\xd0\xca\xb8\x5d\xa3\xe0\x75\x97\x46\xc1\x09\xb9\xa9\x82\x93\x70\x83\xe2\x45\x44\x9a\x9f\xb4\xe6\x45\xed\x93\xa5\x7a\xd1\x4c\xd7\x3a\x11\xcd\x0f\xdd\x8d\xd8\xda\x17\xed\x0f\x75\xf5\x8b\xd6\xf7\xee\xb6\x6a\x0a\x18\xa0\xc1\x70\x12\x26\xb5\x1c\x5d\xa5\x6a\x0a\x2b\xb5\x2f\x5a\x59\xa7\x96\x6a\xf4\x58\x9a\xc9\xb4\x91\xa4\x95\x26\x4e\xc2\x55\xed\x83\x54\x98\xb0\x52\x94\xaa\x0e\x4f\x9c\xd5\xbe\x28\xe5\x9c\x5a\x22\x68\xe7\xd4\x53\xa4\x7a\x4e\x2d\xb1\xad\x9c\x71\xf1\x55\xca\x19\xd7\x7f\x58\x39\x63\x8f\x5f\x8b\xd7\xb7\x29\x67\x5c\x76\x28\x67\x7c\x21\x97\xf7\x55\xce\xf8\x44\xbe\xb8\xee\x17\x4b\x39\xe3\x12\xbf\x25\x9f\x5c\xf7\x82\x23\x13\x09\x2d\x4b\x7c\x58\x43\x6c\x8b\x6b\x29\x68\x87\x62\xd2\xdb\xb9\xf5\xe8\x39\x2b\x96\x2e\x1c\x04\xfe\x07\x4b\x8d\xb5\xac\xd7\x6f\x5d\xf7\xed\xe8\x38\xcd\x66\x69\x76\x62\x3d\xaa\xfc\x36\x8e\xe1\x21\x7c\x45\x0e\x5d\xf7\x70\x94\x96\xbc\x9f\xb3\xc6\xbd\xf5\x46\x01\x33\x79\xd1\x2a\x01\x97\xbc\x6f\xc7\x13\x23\x1a\x00\xc0\x28\x39\x89\x7e\x33\x1d\x67\xe1\x38\x92\x1f\xb7\x3b\x3f\xe2\x2c\xf4\x55\x8e\x47\x9b\x73\xe0\x0c\x74\x4a\x8d\x6e\x0a\x78\x01\x05\x5d\x60\x3e\x59\xaf\xf0\x0b\x7c\xd0\x52\x7f\xf8\xdc\xa5\xfe\xb0\xdf\x56\x7f\x38\x23\x7b\x1b\xd4\x1f\x3e\x92\xcf\x46\xf7\xe0\x39\xd9\x6f\xea\x26\x3c\xbb\x4b\x3d\xe2\xcc\x75\xcf\xa4\x7a\xc4\xd9\x1f\x53\x8f\x78\x47\xf6\x4d\x17\xde\x93\x8f\x62\x6a\x94\x94\xfe\x17\x5b\x1d\x42\x7e\x7b\xfe\xbf\xa4\x0e\xf1\x3b\xf9\x34\xdd\x6b\x68\x43\xbc\x24\x7b\x4a\x19\xe2\x03\xd9\xb3\x75\x21\x7e\x22\xbf\x4f\x7f\xb7\x2d\x64\x55\x91\x1f\x88\xf7\x8a\x74\x2b\x49\xbc\x90\xe9\xb8\xe3\xc2\x7e\xe5\xbd\x80\xfb\x18\xe1\x9f\x1b\x1a\x14\xbf\x92\xfd\x6e\x05\x8a\x1f\xc9\x81\xd2\x9f\xf8\x27\x79\x39\x7d\xa9\xe7\xf9\x30\x56\x6a\xac\x75\x05\x18\x73\x36\xf7\x8c\x0a\x43\x3d\x62\x98\xb5\xa6\xde\x4d\x85\x1d\x07\xdf\x54\x08\xd3\xc6\xe1\x7b\x00\x83\x6f\xea\x62\xfc\x43\x58\xf7\x9c\xc7\x57\xf8\xdf\x84\x43\xe9\x51\x96\x5f\x62\x0a\xad\xed\x29\xa5\x0b\x56\x6b\x5c\xeb\x4f\x64\xb4\xa6\x55\xad\x0e\x32\xf5\x8c\x12\x94\xad\xc4\xcc\x11\xad\x7d\x6a\x22\xd4\x0b\x41\xdd\xcf\x0a\xed\xfa\x99\x1f\x69\x8b\x2e\x25\xcc\x16\x17\x1a\xc1\xa0\xc9\xa0\xb4\x5f\xf8\xf0\x0c\x1c\x29\x9a\x8a\x0a\x8a\x1f\x09\xae\x17\x8c\xb7\xc0\x3f\xa7\xae\x90\xff\x57\x5a\x49\xff\x2b\xad\xc4\x74\x03\x6b\x0c\xa6\x1e\x46\x2a\x6b\x48\xbf\x50\xc2\xe0\xc7\xf2\x78\x55\xe3\x08\x03\x7e\x8d\x0b\xd2\xcf\x5c\x17\x54\x3a\x70\x0e\xcf\xfd\xc2\x75\x5f\xc0\x7b\xaa\xdf\xfb\xb9\xeb\x7e\xa4\xc2\x56\x3b\x5b\xaf\x8b\xf5\x3a\x5f\xaf\x53\x5c\x92\xf8\x3f\xa3\x34\x91\x90\xd2\x9e\x34\x5e\xe3\xc2\x52\x97\x78\xae\x30\xfa\x05\x5a\xaf\xe3\x9a\xba\xc4\x42\xea\x4f\xc8\x28\x1c\x90\xe0\x08\x37\x99\xfc\x05\xad\xd7\x29\xff\x2c\xc4\x89\xf2\xb3\x11\x59\x58\x09\x6f\x75\x05\x68\xbd\xbe\xa4\xde\x02\x27\x9c\xca\x95\xb6\x28\x0b\x3d\x82\xd2\x72\x35\xa5\x35\x30\x8c\x03\x99\x6c\xbd\x3e\xa4\xa0\x59\x81\x33\xb4\x51\xf5\x62\xa9\x4a\x5a\x0e\x95\xba\xd4\x39\x9e\xdb\xea\x1c\x87\xb7\xab\x73\x74\xd4\xb9\xba\x5b\x9f\xe3\xf0\xbe\xfa\x1c\xba\xfa\x1b\x4b\x74\x01\x6a\xf1\xff\x9a\xfe\x0b\x3e\xdd\x24\x79\x36\x4f\x4f\x56\x00\x4e\x27\xfd\x31\xa6\x1a\xb8\xf2\x37\x11\x2c\x31\xc3\x97\x45\xca\x64\x5a\x85\x26\x42\x07\xa5\x2a\xbe\x82\xbd\x07\xaa\x6b\x5a\xd2\x80\xcd\xfe\x1f\x57\xb8\xb8\x3f\x67\xfb\x0e\xa1\x43\xcd\x93\x0e\xaf\x7e\x48\x18\x58\x68\xb2\x46\x2b\xf7\x14\x47\xb0\xaf\x10\x47\x3c\xdf\x24\x8e\x28\xfe\xa0\x38\x82\x35\xc5\x11\xcf\x6d\x71\x44\xf1\xf5\x3c\xc7\xe6\xe4\x0c\xec\x39\x9d\x8e\x27\x3e\xce\x42\x1a\x11\xb6\x49\x62\x91\x7f\x95\xc4\xa2\xbe\xc6\xf9\x1f\x92\x5e\xac\xbe\x46\x7a\xf1\x63\x4d\x78\x31\x1c\xea\xf6\x85\x20\x23\xff\x7a\x41\xc6\xea\x6e\x41\x46\x7e\x0f\xa6\xf1\x6a\x83\x20\x23\xff\x23\x82\x8c\x55\x5b\x90\xe1\x0d\x06\x66\xac\x35\xa9\x46\x5b\xac\x91\xde\xbd\x86\x62\xc9\xf0\x26\x11\x47\x61\x44\x1c\x94\xae\xd7\x79\x5d\xc4\x51\xd0\xaa\xd1\xc8\xc6\xc5\xbe\xee\x90\x70\xdc\x76\x80\xd3\x7b\x70\xf6\xaf\xdb\xb2\x8f\xf4\x1e\x2b\x74\xdd\x96\x7d\xa4\xf7\x59\x1c\x53\x0e\x54\x08\x79\x87\x83\x6e\x5e\xbb\x3c\x70\x22\x0f\x01\x73\x74\x5f\x2e\x49\xfc\x95\x52\x92\x9c\xd6\x8f\x56\xfc\x87\x8e\x16\xbb\x65\xd2\x25\x52\x82\xb3\x46\xe5\x5f\x25\x4e\x89\xff\xb0\x38\x25\xfe\xf3\xe2\x94\x7c\x93\x38\x85\xde\x5b\x9c\x22\x66\x62\x30\x10\x4b\xb6\x59\xc2\x92\xde\x22\x61\x11\x75\x58\x35\x08\x91\xcb\x9c\xe2\x59\xd3\xf7\x81\xb9\xf0\x0b\x8e\x96\x29\x4f\xf9\x02\xc5\xcb\x04\x56\xa7\xe2\xbb\x04\x31\x47\x04\x84\x0f\x73\x92\x86\x73\x3a\x8d\x27\x83\x41\x01\xbe\xcb\xfb\x3e\x87\xda\x5e\x1e\x96\x11\x2e\x71\x8e\x90\xf0\xa9\xae\x95\x64\x0c\x66\x7f\xda\xe4\x6c\x1b\x2d\x03\xf0\x1b\x7e\x3c\x99\x4f\xfe\xe9\xba\xff\xac\x31\x6a\xa7\xed\x9d\xa5\xf1\x9d\x7f\x22\x9c\x11\x1a\xfe\x33\x0a\x38\x95\xc5\x1f\x24\x4d\x21\x5d\x41\xf5\xc7\x92\x86\x4a\xd1\x4d\x25\x56\xe7\x9d\x62\x60\x43\xc8\x26\x36\x85\x42\xd9\x44\x5e\xef\xfc\xcd\x8a\xa1\xd2\x64\x35\xcb\x0f\xba\x8e\xaa\xa6\xda\x7c\x6c\x0f\xef\x8c\x02\xda\x00\x43\x26\x24\x31\xb9\xce\xeb\xfa\x37\xfb\x9b\x34\xa0\xfb\xfd\x67\xae\xfb\x0c\xd0\xb6\x4a\xc8\xa8\xbc\x03\xe0\x80\xff\x32\x39\x97\xaa\x38\x0d\x2e\x78\x97\x1c\xe9\xe3\x1f\x94\x23\x01\x59\xac\xfb\xfc\x5a\x89\xaa\x44\x77\xdb\x2a\x93\x6a\x65\x84\x37\x7b\xd5\x91\x0d\x9c\xf7\x6e\xd6\xba\x64\xd8\x7f\xa1\x42\xba\x63\x31\xee\x0b\x81\xbb\x7a\x0d\x26\x7d\xb1\x5e\x73\xb4\x5f\x6f\x86\x02\x99\x78\x2e\x45\x97\x2a\xf4\x09\xb5\x3d\xa8\xd0\x3e\xa0\xa5\x33\x7e\xe3\x9a\x99\x4c\x71\x2c\xc2\x9f\xac\xd7\x5e\x0e\xa7\x2d\xa6\x08\xef\x53\x2f\x45\xa8\xdf\xd4\xd8\x04\xb5\xe4\x58\x1d\x8b\x4f\x14\x98\xf7\x38\xe1\x4f\xfc\x7c\xe1\x05\x89\x01\x38\x25\xa0\xda\xb6\x50\xd3\x06\x5b\x14\xa8\x82\x0c\x2f\xc4\xb8\x57\x24\x9d\xa6\x5e\x89\x13\x9c\x0d\x1c\x07\xf3\xfa\x63\x25\xbd\xc2\x4b\xa2\xcf\x08\x68\xed\x2e\x45\x8b\x73\x4e\xab\x25\x08\x9f\x92\xfe\x1c\x68\xb3\x04\xe1\x63\x78\xee\x9f\x02\x5d\x96\xa0\x60\x45\x12\x3c\x5f\xaf\x4f\xd7\xeb\xe3\xe9\x1b\xea\x95\x68\xba\x22\xe5\xe4\x8c\x7a\xe7\xa4\x44\xae\xfb\x8a\x7a\xe7\x3c\xe9\xaf\xd7\x3f\x2e\xd1\xe4\x74\xea\x2d\x49\xdf\xc7\xcd\xea\x6f\xd3\x2c\xd6\x54\x5f\x41\x7e\x9a\xfe\xe4\x65\x68\xd2\xa1\xd3\xd9\x54\x32\x2e\x10\x2e\x2a\x2f\xe1\x48\x17\x9a\x1c\x6f\x68\x55\x29\x90\xde\x4f\xe1\x72\x83\xba\xda\x07\x5b\x5b\xed\x83\x54\x56\xfb\x8b\x14\x52\x65\xff\x57\x24\x8c\x5a\xe2\xad\x33\x01\x24\x00\x98\xf4\xc9\x4c\x47\xd3\x91\x67\xe6\x07\xa9\x3c\x29\xb5\xc3\x98\x89\xbf\x24\x46\xad\xd1\xf8\xda\x09\x82\x80\x30\x6d\x59\x76\x87\x14\x3b\x73\xdd\xda\x5d\x97\xb9\xae\x84\x2b\x19\x22\xe4\x7d\xe5\x25\x68\xbd\xbe\xe2\x1b\x6e\xea\xad\x48\x89\xaf\xe4\x4e\xbb\x53\x51\xd3\x28\x3d\xf7\xb3\xc0\xe8\xf7\x81\xda\x28\xdf\x80\xb1\xd1\xed\x93\x1b\x2e\xdd\x89\xf5\x3d\xc4\xc2\x34\xc2\x89\x54\xf0\x2b\x23\x4c\xc5\x0d\x64\x2b\xf8\xe9\x83\x93\xb8\xae\x97\x10\x0a\x31\xd0\xf2\xe9\x92\xa3\xb4\x25\x4e\xd0\x64\xa1\x9e\x8c\xc6\x9f\x47\xf1\x73\x2a\xb4\x3a\x4b\x34\xd9\xe7\x63\x71\xdd\xfe\x01\xff\x5d\xaf\xbd\xae\x51\xdd\xad\x97\xfe\x45\xe9\xa5\x67\x14\x54\x6d\xf9\x7a\x23\x84\x26\x7c\xab\xc2\xc5\x74\x1e\x2c\x21\x54\x1b\xdf\x5c\x09\x5e\x21\x9c\x7b\x2b\x9c\x80\x12\x27\x38\x6b\x94\xa8\x53\x82\x50\x20\x21\xc7\x0a\xb4\x4e\x19\x68\x34\x9e\x50\x80\x69\x81\x56\xf8\x17\x6a\x8f\x00\x91\x62\xc4\xeb\x50\x50\x25\x6f\x4f\x4d\xe9\xba\x5e\x49\x52\x84\xa1\xe2\x18\x97\xa8\xaa\x10\x7e\x6e\xdf\x6c\x17\x75\x65\x82\xb7\x74\x93\x1b\x3e\x46\xfe\xe1\x59\x94\x9c\x71\x52\x3c\x61\x78\x8c\xb0\xcd\x6d\xd4\xb8\x87\x76\xcf\x80\xa5\x3e\xe7\x3f\xbc\x42\xbb\x62\xe6\xa5\x62\x09\x77\x52\x6d\x14\x1a\x0b\x3f\x0d\x6c\x90\x47\x01\x2f\xa4\xaf\x0a\xe9\xa5\xc7\x63\x03\x5f\x64\x66\x01\x2a\x95\x53\x07\xcd\x9b\x01\x66\x82\x17\x23\x0c\x22\x0b\x8e\x4e\xf3\x31\xc3\x50\xde\x53\x84\x85\x3d\xa8\x1e\xfc\xf5\xff\x3f\x14\x3f\xf7\xfe\x02\xc5\xcf\xf3\xba\xe2\xa7\xae\xfb\xb2\x56\x77\x4b\xde\x6f\xa9\xe3\x94\x4d\x75\x9c\xcc\xcc\x02\xc8\xdd\x5f\xdf\x4f\x29\xe7\xcb\x5f\xa8\x94\xb3\x6f\x2d\xf6\x27\x6a\x1c\xc3\x37\xf0\x8d\xba\xa2\x82\xe5\x7f\x33\x64\x11\x72\xdd\xda\x8a\x99\x0b\x8e\xcf\x21\xef\xe6\xdb\x2e\x12\x69\x8c\x2d\x37\xd0\x0d\xa9\x50\x41\xfe\xed\x21\x9c\x93\x78\xe8\x15\xc3\x4c\xc0\x77\x52\xe0\x7c\x77\x0c\xbd\x1b\x0c\xd8\x2e\x49\xb5\xa3\x34\xed\xe2\x64\x1c\x09\xff\xd2\xcc\x54\xac\x24\x5f\x12\x9d\xd0\x79\xf9\x9e\xff\xd7\xb4\x73\x27\xfc\xcb\xa3\xd8\x51\x92\x0d\xe7\x76\x9e\x9d\x2f\x79\x76\x5e\x46\x18\x6e\xe9\x93\xf4\xb2\x0a\xd5\x99\x79\xe2\x52\xaa\x26\xef\xa9\xc5\xf4\x3f\xbc\x5b\x5d\x89\x17\xbb\xa2\xe4\xd8\x02\x3e\x3a\xbf\x1e\x53\xe5\x21\x34\x3d\xee\x0a\xe1\xa6\x30\xf2\xe7\x1d\xb6\x80\xfd\x5f\x5b\x89\x15\x7e\xb3\x51\x43\xe7\x55\xa7\x86\xce\x67\x5a\x53\xb5\x39\xd0\xaa\x36\x2f\x28\x79\x70\x97\xa6\xcd\x41\x27\x86\xad\x6f\xf8\xd3\x1a\xd5\x4c\xc8\x0a\xf4\x6d\x96\xf0\x57\xe8\xde\x9c\x76\x6b\xf8\xdf\x4b\x49\xa8\xec\xd6\xe3\x6f\x9c\x63\x33\xd2\xfb\x29\xef\x9c\x75\xce\x52\x87\xb5\x26\x6f\xed\x23\x25\x57\xb7\x1a\x76\xd4\x42\xec\xf1\x9d\x7b\xd5\x49\x9a\xc9\x45\x6e\xac\x45\xff\x24\x84\x19\x8c\xac\x19\x7f\x6e\x77\x0f\x56\x74\x5a\x0a\xfd\x1d\x34\x79\xad\xd7\xee\x19\xc5\xef\x28\xf1\x9e\x75\x05\x3e\x33\xf4\x04\xaa\xf0\x05\xed\x8e\x36\xd5\xb4\x2b\x29\x76\xfd\x29\x0b\x8b\xa1\xaf\xd8\xb5\x38\x25\xc5\xee\xf6\x94\x85\xdb\x91\xb6\x39\xce\x0b\x2f\x27\xcf\xd4\x08\x76\x1f\xd9\xae\x0c\xf4\xc4\xe5\x53\xaf\x18\x0e\xcd\x8d\x8e\x53\x5b\x4b\x4c\x7b\x56\xe6\x1b\x2a\x6b\x6c\xa8\x42\x83\x42\x03\xa3\xcd\x4e\x29\xa6\xaf\x78\x11\xd7\xbd\x04\x3a\x46\xcd\xe3\xc4\x5c\x3a\x85\xeb\x82\x40\x21\x13\xf2\x86\x2c\x64\x11\x98\xbd\x69\x1f\x11\x18\x22\x74\xe6\xa4\xd8\x79\xa4\x6e\x93\x1c\x17\xc4\x47\x98\x1a\x36\x83\xa2\x1f\xb4\xbd\x46\x16\x05\xb1\xeb\x3e\x13\x68\x48\x86\x73\xcb\x0b\x13\x42\xa8\xae\xee\x69\xb6\x83\xa5\x93\xf5\x8e\xde\x5f\xed\x4a\x2d\x50\xdb\x05\x4c\x71\x8b\x67\xa3\xbc\x01\x13\xba\xbd\xfb\xb4\xee\x7d\xad\x73\x0a\x41\x7f\xba\xb4\xf9\x6e\x35\x65\x2e\x8c\x51\x72\xb6\xc1\x67\x61\x4b\xe3\x4a\x2c\x34\x27\x51\xbb\x34\x1a\xe2\xb6\x46\x43\x49\x52\x33\xce\x84\xc4\x4d\xbd\x85\x05\x29\xeb\x7a\x04\x2b\x12\x9b\x02\x4b\xe2\x15\x1b\x24\xf0\xf9\x2d\x12\xf8\xc2\xcb\x85\x04\x7e\xc3\x4c\x82\x42\xf2\xd7\x4c\xd6\x7a\xbd\x52\x93\xd5\xe7\xc8\x45\xfb\xd2\xfd\x8b\x9d\x84\x74\x40\xeb\xe5\xad\xf4\x58\x41\x92\x3f\x49\x8f\x15\xae\x5b\xd8\xf4\x58\xe1\xba\x72\x69\x0a\x44\xc8\xe2\x2e\x3f\xde\x17\x2a\xf0\xd9\x13\xf0\x6e\xcf\x1f\x1e\x21\x9c\x92\xad\xdf\x8e\x66\x83\x07\x5b\x01\x84\xb0\x2e\xbb\x94\xaf\x3d\x46\x44\xb8\x3d\xe6\x39\xd8\x69\x06\xd3\xd4\x33\x7c\x53\x19\xd4\x83\x15\xe9\xb9\x87\x64\xa1\xad\xa3\x72\xb0\xd5\xe9\x07\x51\x02\x2b\x90\x8d\xea\x28\x39\xa3\x55\xb1\x20\x34\x50\x66\xb1\xe5\xea\x58\x9c\x28\x6f\x6c\x47\x9b\xc1\x71\x23\x40\x4d\x49\xa0\xff\x2f\x33\xe6\xe5\xd8\x1f\x23\x9c\x88\x04\x50\xfc\xf3\x72\x11\xa4\xeb\xd2\x21\x84\xc4\xda\xc7\x56\x8e\x10\x1b\x5d\xa6\x33\x76\x4a\x4a\xed\x2f\xd1\x39\xed\xc8\x74\x4a\xd3\x93\x53\x26\x73\x81\x8f\xb2\x2b\x8e\x0c\xc6\xeb\x75\xc1\xc9\xb3\xcd\xde\x91\x8b\xa4\xa4\xac\x37\xa3\x65\x52\xa4\x4b\x96\x17\x10\xd7\x6b\xe0\x8c\x1c\x14\xb0\xd1\x8c\x66\x65\xca\xae\x49\x02\x5e\x0a\x19\x87\x77\x22\x84\x21\x52\x31\x35\x1b\x93\x25\xe7\xe8\x1f\x07\x6f\xdf\x8c\xc4\xac\xa4\xf3\x6b\xd8\xf4\xa4\x91\xc6\xc0\xb7\x35\x04\x30\x15\x46\x7b\x98\x99\xaf\x5d\x34\x7a\xee\xd1\xf6\xca\x8a\x70\xc2\xab\x62\xd1\x11\xb0\xec\xfd\xab\x5e\x5a\xf6\xa4\xaa\xd9\x6c\xe4\x68\xe5\x5b\x28\x60\xec\x25\xc5\x04\x6b\xdd\x5a\xf9\x3e\x70\x2e\x1d\x84\xa9\x9c\x58\xeb\xab\x48\x18\x38\xa7\xf0\x59\xce\x90\xf5\x5d\xa6\x0c\x9c\x2b\x07\x61\x26\xbd\x2e\xf7\x1c\x04\x93\x27\xde\x30\x7f\xbd\xe3\x38\x18\xc0\x23\xd4\x14\x47\xe0\x69\xb7\xd3\x29\x05\xe0\xa3\x77\xd5\x57\x73\xfc\x07\x3e\x4d\xd2\x8c\xd3\x67\xd6\x39\x56\x07\xf9\x80\xda\x97\x8c\x3c\x16\xd6\xed\xa0\xf4\xc3\xfa\xbe\xcd\x51\x3a\xa0\xcc\x0b\xfb\xe3\xa8\xeb\x20\x31\x74\x43\x09\xdf\x3e\xb8\x3f\x16\xf4\x22\x9a\xde\xe2\x81\x8e\x84\x51\xb3\x66\xba\xc1\x4f\xa9\x9a\x76\x24\x36\xe8\xe4\xb6\x5a\x65\x5d\x96\x37\xa2\xd6\x1e\xd6\xa0\x9c\x69\x11\xbb\xc7\xc0\x7d\x94\x30\x44\xae\x10\xda\xd4\x86\xf6\x26\x4f\xc2\x08\x0b\x7f\xfe\x46\x61\x61\x30\x40\xe0\x43\x9c\x69\xef\xe2\x34\xcc\x22\x64\xb6\x0d\x7f\x33\x8c\xca\x7b\xb9\xd0\x6b\x44\x41\xf8\xf4\x89\x96\xaf\xf3\xd9\x0a\x62\x73\x62\x7e\x76\x21\xf0\x5d\x5d\xf4\x30\xf3\x32\xef\xf1\xb7\x88\x03\x58\xfe\xf8\xdd\x77\x88\x83\x58\x48\xe5\x8f\x31\x3c\x7e\x3b\x46\x08\x97\xe2\xd1\x47\x1c\x50\xf1\x47\xff\xe9\x23\x84\xf0\x42\x64\xfe\x1e\xe2\x18\xf0\x47\x48\x5d\x8a\xcc\xfc\x71\x2e\x52\x1f\xdb\x98\x51\x2b\x60\x92\xe9\xeb\x94\x4e\x6e\x54\x88\x3e\x6a\x29\x0f\x9d\xd6\x1c\x6a\x36\xfd\x68\x62\xb1\x98\x4a\x63\x47\x4d\x37\xcc\x33\xf0\x7d\x0d\xe5\x69\xf8\xbf\x62\xfe\x45\x05\xae\xdb\x08\x6b\x1c\x8e\x45\x5c\x79\x08\x14\x81\xc0\xd0\x3c\x57\x53\xc8\x31\xfb\xd3\xd1\x72\xb1\x3a\x49\x9b\x2c\x0a\xdd\x5f\x75\x2a\x32\xc2\x36\xd1\xb5\x46\x22\xba\xcc\x4b\x96\x94\xe5\x3b\x51\x23\xc8\xaa\x45\xca\xcf\xb4\x28\xd3\x3c\x23\x5e\xad\x7d\x34\xba\x10\xe9\xd2\x3b\x96\x66\x25\x48\xc4\xa6\xae\xb6\xe7\x65\xd8\x91\xd5\x39\xf8\xe6\x84\xb2\xb6\x19\x53\xaf\x58\xaf\x3d\x7e\xd7\x22\x84\x8b\xaa\x42\x38\x53\x0a\xbc\x75\x7a\xc2\x84\x51\x3e\xf5\xc2\xcc\x2b\x50\x84\x54\x46\x11\x45\x15\x67\x15\x3e\xb5\xc0\x76\xaa\xba\x8c\x4f\xe5\x6d\xbd\xb0\x52\x2e\x68\x36\xcb\x39\x9e\x61\x92\x16\x69\xc9\xc8\xca\x4a\x48\xf2\xf3\x46\xb8\x7a\x43\xac\xd1\xcb\x5e\xac\xd7\x84\x22\xde\x74\xcc\xde\xf3\x0d\xbf\x21\x77\xd9\xc8\x3d\xa3\xc9\x62\x53\xde\xa2\x91\xb7\xb8\xa5\xde\x65\x33\x6f\x9e\x6f\xec\xf1\xdc\xce\x0b\xa7\xf0\x98\x9c\x06\xe6\x78\x1e\x63\x03\x4e\x74\x6a\x85\xf1\x1d\x61\x62\x0d\xcc\x2a\x38\x10\xbc\xc7\xe1\xcf\x49\xcc\x4f\xfc\xf7\x70\xe2\xf9\xe3\xe3\xa7\xf6\x19\x8d\xef\x7d\x46\x05\x47\xd3\x66\x9a\xaa\x3a\xb4\x96\x95\x90\xf9\xea\x6d\x21\x05\xf5\xe7\xf1\xf2\xed\x92\x95\x04\x58\x80\xc6\x6f\x35\xcc\x9e\xd0\xcb\x18\xe5\xf0\xbd\x92\x1c\x34\x73\x0b\x19\xcf\x12\x69\xf9\x3a\x5e\x92\xd6\x96\xee\x0c\x68\xa1\xab\xe4\x0d\x4e\xfb\xfd\xda\xbb\xf0\x0b\xbc\x2c\xe8\x45\x9a\xaf\x4a\x0f\x29\xb2\x76\xcc\x31\x11\x95\xdc\x56\x8a\x06\xf9\xb7\x2d\xb6\x57\x59\x5f\xc7\xcb\x72\xbd\xf6\x5a\x69\x5a\x05\x88\x8f\x73\x74\x19\x2f\xce\xea\x17\x63\x3a\xf7\x98\x74\xa5\xc1\xaf\x03\xf1\x24\x3c\xf3\xf0\x6e\x1a\xb0\xd2\xfc\x12\xc0\x8d\x42\x6b\x8d\x59\xb1\xc5\xf9\x1a\xd6\x3e\x49\xf1\x26\x47\xe5\xa4\x54\xde\xfe\xcc\x47\x9d\x96\x2f\xb3\x45\x5a\xd7\xbf\xe5\xa8\xe4\xc6\xb9\x95\x2b\x3a\x4a\xa1\x58\x2d\x8e\x64\xfd\x53\x60\x26\x4f\x7f\x89\xb3\x2c\x67\x31\x6f\x46\x79\x9c\xb5\x1a\x22\x35\xf2\x14\x90\x06\xf0\x8e\xd5\xbd\x68\xeb\x75\x33\xbd\xcc\xcf\x69\xd7\xc5\xde\xa3\xb2\x47\x7c\x16\xc4\x98\x0f\x60\x5e\xcb\xfd\x3c\x63\x35\xc8\x73\xf7\xd6\x52\x23\x29\x6b\x35\x4c\x6f\xf9\x36\xf9\x2b\x06\x70\x99\xb2\x53\x59\x9f\x07\x18\x09\x66\x42\x5f\x66\x4f\xcf\x68\x63\x05\x85\xf3\x8e\xee\xc9\xd7\xf2\x70\xaa\xdc\x7b\xc3\x46\xcd\xf2\x19\x2d\x4d\xc4\x3c\xb6\x4b\xc6\x01\x1b\x0e\x91\x23\x21\x34\x5f\x21\x8f\x36\x0b\x84\x2c\x12\xd6\x1c\xae\x2b\x22\x19\x32\x7a\x65\x70\x1e\xe7\x6f\x3d\x31\x1d\xaf\xe3\xe5\x32\xcd\x4e\x3e\xbc\x7f\x45\x80\xc0\xd4\x95\x88\xd8\xfb\xfb\xa7\xe9\x62\xc6\x6f\x5d\x4e\x13\x50\xb6\x79\x81\xcc\xae\xc2\x40\xdf\x6d\x3c\x67\x82\x8e\xcb\x94\xc3\x6a\x1d\x26\xb5\x76\xa6\xe6\x45\x7e\x2e\x5d\x7c\xf5\x21\xde\xde\x0d\xff\xab\x22\x9d\x73\x5a\xaf\xa0\x8b\x98\xa5\x17\xd4\x2b\x50\x00\xd4\x88\xe9\x9e\x5a\x90\x1c\x37\x6a\x4d\xca\x52\x39\xf5\x97\xa8\xc1\xbb\x82\x5e\x00\x64\xe8\x1c\x89\xb5\x09\x30\xab\xf3\x75\x14\xaa\x23\xa2\xd2\xb3\x29\x9d\xd0\x50\x98\x24\x8c\x52\x26\x2c\xe0\x22\x0f\x05\x4a\x49\x1b\x34\x37\xc5\xc0\x77\x4d\xb4\x3c\x11\x16\xb9\x20\x34\xcc\x06\x83\x48\x7b\x83\x82\x50\xf6\x19\xbd\x62\x1e\x42\xa3\x59\x9e\x51\x9d\x31\x13\xce\x07\x2b\xc1\x0f\x2b\x70\x29\x17\x5d\xcd\x45\xcc\xf1\x68\x8a\x80\x39\xc3\xe7\x7e\xbd\xd6\x68\xc0\x68\x96\x16\x59\x7c\x6e\xf2\x2c\xd4\x8d\x24\xd4\x73\x6e\x39\x44\xde\x82\xd4\x90\xa0\xd1\x81\xda\x39\xfb\x79\x56\xae\xce\x69\xe1\xc5\xb0\xbb\x80\x24\xb5\x8b\xba\xae\xb7\x68\x24\x91\x66\x42\x83\x92\xac\x31\x84\x39\x64\x98\x2c\x48\x0c\x5c\x0f\x68\x08\xe9\xfb\x4b\x2c\xa0\xee\x8a\xb7\xc0\x25\xae\xcf\x46\x82\x38\x69\xc7\xe1\x4a\xf7\x69\x54\xac\x22\x28\xa5\x00\xae\x87\xd6\xeb\x7b\x80\x59\x73\x68\xa7\x1b\xd2\xff\x12\xf8\x62\xaa\x53\x40\x92\xe5\xcf\x20\x90\x6a\x17\x92\x53\x4c\x0b\x38\x39\x1e\xc4\x1f\x6f\x04\x5e\x45\x93\xcb\x34\x9b\xe5\x97\xa3\x63\x96\xc7\xde\x2a\xa3\x65\x12\x2f\xa9\x07\xb1\x14\xe9\x87\xf7\x2f\xf7\xf3\xf3\x65\x9e\xf1\x73\x43\x65\x53\xf1\x6c\xd6\x3d\x71\x70\x42\x02\x79\x46\xcc\xc4\x4d\x9d\x59\xcc\xe2\x09\x5f\x97\x34\x81\x42\x5b\xbf\x97\x79\x16\x88\x0e\x60\x47\x06\x2e\x95\x03\xf0\xf4\x42\xea\xae\x22\x9b\x85\xfc\x47\xa7\x5d\x60\x16\x2b\xb6\x5c\xb1\x1f\xd2\x05\xf5\xd0\xc0\xe1\xd9\x94\x3f\x76\xe7\x28\x73\x82\xa1\x06\xc2\x49\x69\x2e\x6a\xe7\xa8\x38\xca\x1c\x41\x7b\xc8\x67\xac\x32\x0d\x08\x1b\x38\x5b\x0f\xbb\xa0\xe6\x80\x0e\x9c\xde\xc3\x2d\x87\x4f\x99\x69\xb7\xbd\xd1\x2c\x1c\x88\xe5\xd3\xfa\x56\xb5\x3f\xc9\x30\x09\xf0\xc6\x57\x73\x63\x56\xfe\x11\x4d\x1c\x96\xf3\x0e\x42\xf3\x27\xc2\xfa\x96\x76\xe2\x65\xa2\x7d\x95\x45\x4d\x39\x96\x8b\x58\x87\xec\x9e\xba\x0a\x5a\x30\xdf\x6b\x20\x2c\x16\xb6\x26\x8b\xd4\x00\xab\x69\xc0\x6c\x25\x5d\x79\x6d\x83\x99\x9c\x7a\x3f\x85\x6a\xf6\xa3\x89\x7e\xd4\xe7\x3f\xe2\x03\x56\xb3\xd2\x1d\xbb\x57\x2f\xec\x8e\x83\x6a\x61\x01\xb6\x7e\x3b\xba\x1c\x4c\x8e\xb6\x8e\xb6\xb6\xb4\x34\x59\x7f\xb7\x94\x53\xd5\x62\xb5\xa1\x68\x7d\xc1\x9c\x91\xd3\x12\xe5\xdf\xb1\x7f\x61\x97\xb5\xeb\x35\x29\xca\x47\x02\xc3\x9b\xb0\x05\x84\x30\x25\x76\x01\xb5\x43\x30\x45\xd8\x39\x3a\xe2\x9d\x30\x9f\x4b\xba\xb4\xa2\x04\x6c\x1d\x1d\x6d\x9d\x60\x67\x0b\xc2\x04\x60\x85\xd1\xbe\x8b\x1b\x81\x1b\xbb\xd0\x48\xb3\x27\xed\x94\x49\x7d\x97\xd2\xf6\x7d\x8e\xec\x1d\x2a\xb6\xdf\x06\x9c\x5e\xad\x35\x71\x1c\x3d\xf8\x4d\x57\x90\x36\x38\xf7\x6e\xf8\xbd\xd6\x3e\xfe\xca\xa5\x23\xc4\x8d\xf4\x71\x4a\xfc\xa0\x4e\x13\x79\x1a\x55\xa9\xf9\x4f\x8b\x71\x09\x5b\x89\x8a\xe3\x9f\xe3\xd8\x75\x1d\x9a\xc1\x8d\x50\x0a\x55\x1c\x49\x29\xa8\xa7\x11\xc4\x75\x99\x0a\x6c\x24\x9e\xcd\x24\x90\xf0\x6e\xc4\xe7\x09\xb5\x66\xd9\x8b\x11\x56\x73\x31\x9b\xdc\xf0\x0d\x3f\x29\x70\x92\x2f\x56\xe7\xd9\x24\x05\x55\xfc\x22\x3d\x49\xb3\x78\x21\x3f\xd6\x1b\x19\xf1\x34\x95\xbd\xf1\x49\xa4\x0e\xfd\xaa\x42\x93\x8d\x7d\x71\x76\xb2\x5c\xc2\xb2\x5d\xa7\xd9\x96\xaf\x6a\x1e\x57\xb7\x77\xb2\x42\x08\x7b\x8c\xe4\xa3\x73\x10\x7b\x6c\x1d\x65\x5b\x27\x08\x4d\xbd\x62\x60\x24\x9a\x19\xc9\x8d\xdf\x41\x80\xb2\x1c\xae\xa6\x24\x37\xc1\xc7\x27\xe9\x40\xbf\xc2\x34\xc3\x40\x60\xa2\xc5\xbe\xe0\xf8\x8c\x30\xc6\x5a\xaf\x6f\x8a\xf8\xb2\x9c\xdc\x54\x55\xe0\x39\x33\x9a\x2c\x80\xb7\x3e\x12\x8a\x1a\x71\x9f\x90\x04\x5a\x5b\xaf\x93\x11\xcf\x38\x2a\xe9\x79\x9a\xe4\x8b\x1c\x0c\x9e\x3a\xd6\x8c\x66\xb3\xbf\x64\xc5\xb6\x37\xaf\x18\xcd\x66\xdd\xeb\xc5\x3f\xfc\x77\x57\x4b\x21\xbf\x2a\x5f\x83\x38\x31\x56\x86\x5d\x70\x99\x63\x59\x08\x75\x5d\x26\xf0\x45\x12\x96\x8d\xe0\xe1\xb7\x1f\x33\x86\x6e\xe8\x40\xb0\xa3\xc1\x41\x1b\xad\x3c\x64\x71\x64\xca\x4e\x8e\x4c\x9d\x23\xfb\x78\x1b\x49\xf3\xe0\x4d\xf2\xdb\x3f\x1d\x2d\x53\x49\xb4\x40\x10\x23\x10\xa6\xd6\x85\xb3\x03\x5a\x46\x3b\x59\x23\x12\x76\x16\xd2\x28\xe8\x0c\xbf\xfb\x5a\x46\xbf\x3c\xa6\xec\x92\xd2\xac\x37\xee\xc5\xd9\xac\xf7\xe4\x11\x48\x7d\x60\x91\x66\xb4\xd5\x92\xac\xf5\xc9\xb7\xb2\x39\xf2\xfd\x78\x4a\x87\x4f\xbe\x9d\x7c\xff\x9d\x4a\xf1\xb7\xb7\xa7\x74\xf8\xfd\x77\x83\xed\x27\x93\xc7\x4f\x55\xea\xb7\xdf\x4d\xe9\xf0\xf1\xd3\xc1\xb7\xdb\x93\xc7\x8f\x08\xa1\xd3\x27\xdb\x93\xc7\xdf\xc1\xc3\xa3\x09\xdf\x1b\x1b\x23\x5c\x3f\x7a\x6a\xb1\xa6\x72\x6d\xfe\x11\x43\x0c\x57\x1d\x02\xab\xcc\x0b\x46\x67\xc0\xf1\x82\x77\x7e\x06\xc9\x8d\xde\x8e\xaf\xf8\x66\x1c\xfa\x66\x7f\xee\xab\x2d\x5b\x59\xb1\xa7\x47\xab\x4c\xd4\xf3\x83\x90\x2f\x34\x38\xbc\x56\xc3\x5a\x02\x21\x78\x9f\x76\x1d\xf1\xac\x1e\xec\xbe\xdf\xb5\x27\xe8\xa8\xd6\x35\x9c\x13\xd6\x48\x49\xed\x3c\xa2\xb7\xa0\x6d\xda\x48\xd3\xa6\x00\xbb\xd9\x7a\x9d\x43\x64\xd2\x78\x97\xa4\xeb\x75\x31\x4a\xf2\x73\x0e\xb3\x9e\x5d\xff\xa8\x8a\xbc\xcb\xcb\x94\xf7\xa4\x7c\x99\xcd\x17\x3c\x01\xba\xb4\x43\x64\x5c\x78\x31\x6b\x98\xa2\xa9\x57\x9f\x54\x1f\xdb\x43\x97\x52\x16\x34\xb1\x0a\x29\xbe\x5e\x23\x4b\x7d\x66\x58\xde\x08\xbc\xdb\x30\x7a\x11\xcd\x29\xc6\x99\xac\x0a\x64\x8c\xf7\x1a\x0c\x6a\x6e\x05\x64\xf7\x89\x6f\x68\x09\xd6\x5e\xa5\x25\x23\xf9\xad\x3b\x4e\x48\x9d\xbf\xdb\x16\x96\x26\x4f\xb7\xd1\x08\xba\x7e\x40\x19\x8e\x79\x82\x8f\x70\x09\x39\x1e\xa1\xd1\xe7\x55\x9a\x9c\x1d\xe4\x05\x33\xdb\x34\xa9\xad\xf5\x46\xd4\x8c\x82\xe1\x5e\x21\xf8\xe3\x1a\xa3\x78\xc9\x31\x16\x50\xdd\x16\x2a\x00\xd9\xa8\xa4\x50\x6d\x39\x05\x8e\xb3\x97\x61\x26\xd4\xce\x17\xf0\x68\xd9\xde\xd6\x9b\xfd\xea\x06\x25\x73\xa3\x18\x9d\x50\xb6\x57\x9c\x78\x19\x76\xa4\xb8\xc1\x81\x68\xd7\x56\xba\xa4\xa1\x1d\x3e\x0f\x76\x3a\x47\x22\x4b\x07\x87\x11\xc2\x49\x47\x81\xf7\x79\xce\x1c\x18\x17\xc2\x8b\xae\x0a\x25\x96\xaf\xf2\xac\x6a\x79\xce\xc5\xfa\xf1\x56\x97\xb5\x0f\x1c\xf3\x92\x45\x38\x7a\x9d\xf7\xa5\x51\x92\xec\x7d\x87\x44\x38\x2b\x57\xcb\x25\x6c\x94\x9e\xcc\xc4\xe1\x5e\x8e\x02\xa1\x87\x5d\x8c\xb2\xbc\x38\x8f\x17\xe9\x17\x20\xe3\x71\x4c\x62\xe0\x13\x48\xa5\x0b\x78\xb6\xf2\x74\x28\x1a\xc8\x9d\x9d\xb8\x6e\xc1\x89\x8f\xe3\x32\x5f\xac\x40\x3f\xba\x91\x40\xd1\xb4\xb0\x58\x06\x98\x72\x84\x58\x71\x65\x3f\xc1\x74\x92\x14\xf0\x57\xc1\xf7\x29\xed\x7e\x60\xb3\xc9\xe5\xfc\xd5\xf2\xc6\xd6\xf7\x58\x36\x28\xa9\x29\x52\x2b\xa5\x8e\xa6\xb7\x79\x20\xe2\x08\xea\x0a\x3e\xbc\x7f\xc5\x3b\xcb\xb7\x9f\xea\xac\x59\x61\x92\xd8\x29\x86\xf3\x22\xbb\xa2\x96\x91\xac\x6a\x7d\x7f\x1d\x2f\x39\x3d\x2b\xe9\x0d\xbe\xa4\x64\x69\x87\x53\x96\x00\xb8\x06\x26\x95\x51\x66\x03\x2a\xaa\x64\x51\x31\xe8\xf6\x4a\xa1\x82\x44\x5d\xa0\x6c\x3b\x59\x96\x36\x1f\xf8\xfc\xc3\xab\x65\x40\xfe\x5f\x3c\x64\xf2\xdc\x3b\x7f\x7a\x57\xd7\xf7\x08\xd8\xe8\xd5\x76\x18\xa4\x04\x42\x9c\x23\x30\xb7\xa1\x85\xd6\xa9\xe2\xb2\x3b\xf2\x2c\x34\xb5\x2f\x36\x28\x5f\x1c\x88\x2e\x81\xa3\x95\x55\xb1\xe8\xcd\x53\xba\x98\xf5\xd2\xac\xa7\xaa\xeb\x65\x39\xeb\xa5\xe7\xcb\x05\x3d\xa7\x19\x33\xea\x19\x99\x99\x0b\x8a\x95\x63\x04\x0e\x99\xed\x29\xe2\x7d\x05\x74\xde\x4e\x14\x1d\x97\xb3\xb6\x53\x02\xf2\x0b\xb7\x23\x11\xcf\xae\x9b\xee\x94\x12\xf3\xed\xe8\x30\x95\xb8\x06\xb4\x58\xea\x30\xe1\x79\x31\xa3\x05\x9d\x01\x9a\x94\xe5\xd9\x30\xbf\xa0\xc5\x42\x6c\xe5\x91\x71\x90\x52\x92\x0c\x1b\xbc\x43\x58\xd1\x4c\x1a\x88\x48\x3e\x68\x63\x22\xe9\xc0\xaf\xb0\x62\x33\x02\x74\x4f\x3c\x7b\xfc\xe7\xc2\x4f\x8a\xc0\xa0\x13\x38\xe4\x7a\x6f\x75\x2b\xcb\x2f\xea\x99\x24\xaa\x92\x58\x17\xb2\xda\x49\xe4\x51\x3d\xf9\x93\xee\xdc\x6b\x75\x54\xe1\x48\x74\x0b\x99\xad\xa2\xd8\x69\x17\xbd\x43\x39\x7b\x8c\xbb\xe5\xd2\xd2\xaa\xb4\x55\x9d\x64\x5f\x7e\x82\xd3\xa5\x12\xbd\x3a\x60\x69\xc2\x23\x05\x03\xdb\xb5\x55\x15\x6a\x0c\x5d\x81\x82\xaf\x1f\x79\xb3\xe4\x9f\x1b\x78\xb3\xb6\x3f\x35\xee\x66\x65\xad\x61\x27\xa7\x71\xf1\xb2\x94\x9f\x0f\xe8\x32\x06\x96\x46\xa7\x85\x1a\x85\xb0\xf0\x7b\xcc\xd3\x56\x17\x4e\xe0\x08\x8f\x21\x0e\x86\x87\xc6\x26\xab\xf5\xb8\x85\x52\xb7\xa0\xc5\x71\xb2\x88\xcb\x92\xca\x73\xa7\xe1\x42\xaf\x5e\x8f\x03\x5b\xf9\xc7\x17\x6f\x5e\xbc\xdf\x3b\x7c\xf1\xfc\xd3\xdb\xf7\xcf\x5f\xbc\x27\x3e\x4e\x46\x6f\xdf\xbf\xfc\xf1\xe5\x9b\xbd\x57\x32\x69\x9b\x67\x7b\xff\x62\xef\xf0\xc5\xc1\xe1\xa7\x57\x6f\x3f\xbe\x78\xff\xe9\xd9\xdb\x0f\x6f\x9e\x43\xde\x57\x2f\xf6\x0e\x0e\x3f\x7d\x78\xf7\x4e\xa7\x6e\xd7\xfa\x4e\xe3\xe4\x54\xb6\xd8\xb2\x4d\xbe\x10\x21\xfd\x09\x5b\xaf\xf9\x16\x51\x71\x30\x32\x4e\xf9\x37\xfa\x25\x1d\x8c\xb5\xd2\x27\xb9\x84\xe8\xad\x7d\x19\x08\x89\x8b\x2c\x56\x1f\x92\x2e\xd5\x5c\x55\x59\x48\xc9\xe7\x3b\xae\x87\xb3\x2c\xbf\xcc\x04\x20\xeb\xe5\xf3\x9e\x90\x14\xa5\x79\x36\x72\x90\x94\xe9\x34\x76\x50\x90\x6f\x52\xa1\x54\xf6\x3e\x32\xf3\x94\xbf\x4f\xea\x48\x45\xcc\x34\x1b\x4e\x6d\x15\xc5\x50\x60\xa4\x03\x9f\x88\x31\xeb\x40\x08\x2c\xae\x07\x00\xcf\x26\xe9\xd4\x04\xa4\x6d\xb2\xc9\xbe\xf4\x27\xb4\x86\x03\xe0\xfa\xcd\x6f\x7d\x95\x65\xf9\xf5\xa8\x6d\x9b\x00\x1d\xb0\x47\x0a\x97\xa7\x18\x27\x7f\x04\xbb\x34\xfe\x05\x59\xf4\x61\xda\x00\xba\xf1\x62\xd1\xa6\x61\x7e\xa8\x1d\x36\x35\xc7\x36\xfc\x97\x17\x5d\x46\xd4\x14\xda\x1f\x45\x12\xbf\x1c\xed\xa1\xb2\xe6\xe8\xec\x22\xf2\x8e\xc4\x63\x04\x4e\xb2\x94\xa4\x52\x6e\xad\x79\x9a\xcd\xc4\xc2\x00\xdb\xcc\x88\x4b\xb5\x48\x73\x67\x2c\x59\x0c\x61\x24\xcd\x21\xc3\x08\xc7\x56\x71\xc5\x43\xca\x70\xf7\x6e\xc5\x8e\xdd\x59\xc7\xbc\xee\xcb\x9e\x59\x44\xdf\x5b\xf9\x49\xcf\x17\xce\xdb\x67\x17\xae\xfb\x78\x97\x8c\xb5\xf9\x65\x67\xbb\x61\x0c\x26\xe0\xc6\xaa\x5f\x21\x02\x4a\xf8\x9d\x90\x3a\x9e\x18\x94\xae\xdb\xc0\x1c\x09\x49\x02\x94\x0a\x32\x57\x32\xba\xd4\xd4\x96\xd8\xa9\xed\x4f\x45\xc9\x24\x8d\x25\xb0\xf3\xa9\x11\x4b\xba\x28\x2e\x59\x73\xc1\x4a\xec\xf0\xe4\x1f\x3b\x4b\x54\x08\x6f\x1c\xec\x60\x10\x47\x42\x5d\x58\x3b\xa4\x22\x4d\x7c\xb7\x73\x80\xcc\x4e\x93\x78\x31\x59\xfc\x7f\x68\xd4\x4a\x01\x3e\xe5\x94\x7f\x4b\x62\x4c\x12\xbc\xb0\x1c\xbd\xd5\x7c\xeb\xd9\xf7\x3a\xb2\xb3\x69\x31\x70\xbd\x74\xeb\xb8\xb4\x8f\x32\xe6\xa4\x82\x56\xea\x6f\x00\x59\x49\x2f\xd4\x25\x6c\xe6\x33\xce\x50\x83\xc8\x03\x85\xd4\xac\xce\x0a\xd5\xdf\x8c\xda\x8f\x70\xdc\x06\xd1\xc7\x3b\x69\x40\x13\x95\x84\x99\x88\xed\x8d\x3c\x21\x8b\x08\x31\xea\x3c\xc6\xa1\x16\x5e\xdc\x8a\x83\x5e\xd8\x31\xc9\xe5\xb4\x2e\xec\x69\x05\x37\x24\x6d\xf2\x96\x2a\xa0\xaa\x29\x52\xa0\x61\x63\x9e\xbb\x8b\xc4\xa5\x1d\x34\x2c\x2f\x11\x64\x36\x3d\xaa\x73\x89\xf9\x6c\x12\xa6\xd4\xdc\xc0\x0d\x61\x63\xd6\x55\x7d\x56\x43\xb1\x32\x41\xaa\xc2\x2e\x58\x50\x9c\xb5\xc8\xd9\xac\x4d\x7c\x77\x55\xfb\x35\x94\xb7\xdd\x03\x45\x84\x07\x06\x7e\x51\x83\x12\x5a\xf5\x4b\x47\x06\x78\x09\x0e\x60\xda\x28\x7e\x18\xe1\x39\x7c\x6a\xa1\xc0\x61\x84\x67\x64\x8c\x4f\x49\xa2\xb6\xcc\x6c\xe7\x34\x98\xa9\x00\xf6\xc7\x24\x09\x67\x11\x3e\x07\x2a\x72\x15\x9c\x37\x48\xf4\xe3\xc6\x85\x7d\xde\xa2\xd6\x8f\x5b\x57\xf6\xb1\x16\x94\x78\xe7\xea\x66\x8a\xf5\xd6\x3e\xd6\xb7\xd1\x79\x1d\x6c\x1d\xd7\x2f\xf7\xf3\x26\x00\x3b\x6e\x5e\xef\xc7\x70\x6f\x43\x2b\x40\xea\xe7\x56\x1b\x70\xa3\x23\x3c\x17\x00\xef\x1c\x21\xbc\x54\x8f\x0a\xb6\x94\x5e\xd7\x7c\xdd\x7a\x73\x21\x9c\x55\x75\xe0\x61\x88\xb0\x6e\x2a\x63\x61\x53\x19\x8a\xef\xb6\x49\x9d\xb7\xfb\xa0\xcb\xa5\xe7\xe8\xc9\xe2\xbe\xa8\xb9\xf6\x8d\x02\x4e\x44\x12\xbc\xc0\x4b\xe2\xe3\x39\x19\xcb\xbd\x30\xc6\xc7\x64\x8c\xcf\xc9\x18\xbf\x36\x5e\x31\x4e\xc8\x18\x5f\x90\x9b\x0a\x5f\xf3\x3f\x7b\x7c\xe7\x5c\x92\x30\x0a\x4e\x76\x5e\x83\x9b\x3e\x41\x2a\x68\x12\xe2\x04\xa1\xe5\x60\x80\x4f\x06\x03\x5e\xb1\x31\x6b\xc1\xcd\x5c\x27\x83\x81\x30\x67\xe1\xbd\xf2\x84\xc7\xce\x15\x6a\x6c\xb4\x25\x4e\xc8\x49\x90\xec\xbc\x76\x5d\xa1\xfb\xb2\x81\xac\xf1\x28\x4e\x50\x90\x0c\x06\x80\x31\xa4\xe4\x22\x04\xe3\x1d\x98\xa3\x13\x9c\xa0\x08\x9d\x18\x79\xa0\x69\x36\x15\x03\x49\x02\x14\x4b\xd1\x88\x47\xf1\x09\xbe\x46\x78\x41\xae\x85\x62\x14\x3e\x21\xd7\xa3\x82\x96\x0c\xa7\xda\xdf\x62\x3a\xf7\xb6\x41\x10\x2e\x05\x33\x2d\xb4\xfc\x87\x7c\x95\xcd\x7a\xb1\x94\xaf\xe1\xde\xf1\x8a\xf5\xb2\xbc\xc7\x2f\x58\xe0\x35\xd8\xdc\x8c\x47\x5f\x51\x13\x14\x06\xb9\x9f\xaa\x52\xd7\x74\x11\xe6\x11\x49\xab\xac\x75\x12\xe7\x83\x34\x1c\x0b\x38\xd0\x3c\x92\xaa\xd9\x5d\x1f\xe2\x48\xca\x43\x79\x3c\x48\x43\x3f\xc2\xc7\x03\x02\xbf\x59\xfd\x3c\xce\x06\x69\xb8\xcd\x81\x47\x3d\xbd\x91\x6d\x40\x7c\x2b\x45\xf6\xe4\x74\x90\x86\x8f\x22\x7c\x4a\x9a\x5f\x4c\x47\x1e\x43\x47\xe0\xdc\x9e\x0f\xd2\xf0\x71\x84\xcf\x79\x37\x1e\x47\x08\xe1\x4b\xa5\xe3\x8a\x8d\xd9\xa8\xf6\x16\x52\x6b\xdd\x75\xf7\xb4\x3e\x6c\xe9\x5d\xe2\x5b\x65\x0d\xcf\x69\x5d\xd6\xd0\x01\x46\x2f\x71\xe9\xed\xdd\x01\x02\x36\x90\xe5\x64\xaf\x6a\xe3\x15\xdd\xf4\xa7\x74\xbc\x01\x7c\xb7\x30\x8b\x76\xc8\x18\x75\x4a\xf9\xf8\x08\x35\x07\xeb\x04\xee\xe1\xa2\xc7\x4e\x63\x4e\x05\xf6\xe8\xe7\x55\xbc\xe8\xb1\xbc\xe7\xe3\xde\x49\xce\x7a\xce\x40\x18\x9f\x40\xa5\x45\xb4\xb3\xa1\x4e\xb1\x0e\x77\xd7\x3a\x36\xb5\x16\x96\xd3\xaa\x51\x49\xe3\x42\x88\xce\x60\x0c\x55\x03\xc5\x82\xbb\x4e\xb4\x71\xb0\x8c\xb3\xba\x7e\xb9\xb6\x03\x19\x07\x74\x67\x03\xf1\x6c\xf0\x9a\x86\xab\xb7\x56\xce\x90\x02\x2d\x40\x07\xfe\x1d\x75\xd5\x5d\xac\x75\xd4\x33\xf0\xa1\xa6\x86\x14\x8f\x10\xfb\x20\xf1\x14\x74\x23\x22\x22\x36\x70\xda\xf6\x79\x1b\xfa\x41\x92\x67\x2c\xcd\x56\xb4\xaa\xba\xcb\xf8\x5b\xe3\xaa\x3e\x79\x79\x63\xab\x75\x93\x95\x0d\x6e\x64\x07\x95\xd9\xa4\xa9\x3b\x08\x47\x54\xe1\xac\x83\xda\x53\x14\x7c\x6b\x8a\x5a\x04\x42\x9b\x10\xb8\xd7\xc9\xc3\x76\x5f\x8e\xd3\xb8\x74\x36\x30\x78\x90\xb0\x70\xd5\xf4\xe0\x46\x5e\x4b\x98\xc1\xd2\xe5\xad\xa5\x63\xcd\xa5\x13\x74\xae\xee\x40\xae\x09\x6f\x29\x7a\x12\xd8\x3d\x49\x5d\xd7\x4b\x49\x8b\x17\x92\x0a\x36\x75\x0b\x99\x6b\xa2\xfb\x69\x17\x13\x44\xb0\xc4\xe3\x5a\xe3\x1c\xf2\xa9\xa6\x6b\x5e\x0c\x48\xec\xba\x9e\xa2\xc5\x35\x8f\x22\x46\x08\x2b\xe6\x41\x8a\xeb\xf4\x5b\xde\xa4\xc6\xbb\xc9\xb7\xbc\x4d\xa5\x8b\x8c\xc0\x26\x89\x2b\xe5\x9f\x4d\x35\x03\xbc\x53\x68\x09\x9e\x64\x75\xf0\xac\x19\x2b\x8d\x2d\x7c\x1a\x2b\xe4\xbb\x7c\x3b\xdf\x5b\x2c\x14\xca\xbc\x49\x6f\xb6\xa5\xf0\xdb\x91\xaa\x2e\x8c\xc6\x9a\x94\xe9\x17\xea\x21\x85\x2c\x34\x8a\x6c\x54\x8a\x95\x3e\x68\x84\x3e\xac\xdd\xf3\xd2\x56\xfe\xfe\xa1\xc5\x3d\x4d\xe7\x5e\x57\x43\xc8\xaa\x36\xb0\x81\x4c\x93\x05\x43\xcd\x7e\xae\xe9\xb7\xd4\x6a\xe3\x7b\x59\x31\x26\x6f\x25\x38\xd3\xdb\x08\xce\x54\xcb\x9e\xdb\x05\x73\x52\x8c\x56\xc5\xe2\x1d\xc7\x1c\x9b\x05\x11\x52\xae\x12\x52\xa3\xe8\xf7\x1b\xa8\xc5\x81\xae\x23\x76\x04\x16\x23\xe4\xb5\x84\xe4\xa3\x32\x39\xa5\x1c\xff\x6e\x93\xb7\x31\xba\x6d\x98\xdd\x24\x6f\x8c\xe0\x24\x7b\xfd\x7c\xb4\x8c\xd9\xe9\x7a\xed\x6c\x41\x2b\xfc\x05\x75\x35\xe2\x6c\x39\x83\xf4\x0f\x34\x24\xca\x45\x95\xed\x29\x0e\x16\xb0\x89\x92\x7d\xe3\x7c\x33\x48\x07\xdf\x38\xbd\x54\x8a\xb9\x78\x2b\xb4\xa7\xa9\xe6\xd1\x37\x8d\x4d\x74\xd2\x04\x7c\x77\x73\x06\x15\xf3\x0f\x86\xce\x36\xec\x1e\x86\x90\xe6\xd8\xdd\x74\x9f\x48\x8b\x03\x03\xe7\x52\xee\x46\xcd\xb2\xad\x33\x17\x3b\x6e\x8d\xbb\xb9\x8d\xa8\xc2\xf9\x7f\x8d\x45\xf8\x75\x17\x45\xae\x2f\x8a\x74\x13\x57\x29\x87\xdd\x95\x2a\xd4\x97\x68\xa3\x91\xda\xbc\xea\x66\xd3\x7b\xf2\xc4\xd2\xaf\xe2\x89\xa5\xb7\xf2\xc4\xaa\xaf\x5a\xe1\x0a\xb3\xd1\xb3\xb8\x4c\x93\x36\x7b\x6c\xc1\x89\xdd\xfb\xb0\xc7\x96\x0d\xf6\x98\xf4\x0d\x41\x92\xda\x97\x3b\x89\xdc\xe5\xbd\x88\x5c\x83\xfe\x85\x11\xb6\x39\x5b\x4a\x96\xac\xbd\x41\x0e\x06\xc6\xb9\x27\x58\x04\xd7\xf3\x85\x2c\xd2\xcc\x3c\x75\xe4\x6d\x0b\x6d\x2a\x48\x82\xbb\x0b\xd9\xc6\xda\x94\xd3\xd7\xcb\xff\x45\x74\x4c\xa3\xd6\x5a\x8e\x22\x7b\x8e\x3b\x3d\xff\x34\x24\x29\x43\x0b\xdf\x11\x72\xeb\xfa\x77\x8d\x63\xac\xd7\x2d\x19\xcb\x6d\x65\x45\x8e\x0a\x8c\x4d\x1b\x13\x6a\x2c\xb2\xd3\x69\x6a\xe6\xb6\x63\xde\x24\xc3\xb9\xd1\xa5\xa1\x97\xde\xde\xe7\xa1\xaf\xcf\x5b\xab\x47\x77\x16\x6e\xa3\x80\xd3\x5b\x4a\x28\xb4\x7d\x32\x46\x98\x83\x9b\x09\x1d\xf1\x9f\x0a\x4d\xbe\x12\x1b\x5a\xfe\x11\x6c\xa8\xd7\x38\x07\xf4\x82\x16\xd7\x1b\x8c\x7a\xf4\x3c\x6f\xa8\x5d\x5a\x12\x2e\xef\x8f\xdb\xdc\x76\xd4\xec\x63\xa5\xc2\x9e\x37\x77\x41\xf3\x58\x99\x86\x84\xbf\x2b\x11\x1f\x51\xf1\x43\xef\x77\xed\xd2\xbb\xae\xdd\xe5\xd7\x5c\xbb\xc6\xa5\xc3\xed\x40\xa7\x46\x27\x5a\x80\x83\x8f\x00\xac\x7e\x32\x33\xd6\xd6\x25\xdd\x75\xab\x23\xe3\xb5\x5b\x17\xec\xea\xad\xc4\x0f\xf3\xda\x5d\x94\x83\xba\xcb\xc0\xcb\xee\x7d\x4a\x72\x29\x0d\xbb\xb3\x0c\xe1\x88\x15\xaf\x7d\x7a\x4b\x46\xeb\x4c\x54\xb7\xdf\x4d\x8d\x7d\x7f\x87\xd2\xc0\x06\xd6\x8b\xd6\x06\xee\x62\x61\x07\xf7\xdd\xa4\x26\x78\x7b\x6b\x9f\x82\xd9\x80\x59\xbf\x36\x91\x1b\x93\x71\x10\xef\x18\xa7\xe4\x6a\x47\x24\x24\x0d\xe3\x08\x2f\x6a\xc5\x2d\xda\x30\xd1\x72\xf2\x45\x17\x89\x98\x37\x0f\x08\xa0\xe9\x8b\x4e\x69\x79\x83\xee\x9c\xcd\x3c\xd0\xb5\xec\x46\x64\xb5\x77\x67\x38\x46\x89\xe2\x86\xaf\x6a\xfd\xd4\x14\xa4\xf8\x5e\xd3\x4d\x84\x06\x56\x08\xaf\x6a\xd4\xa6\xaa\x7e\x25\xe9\xd6\xa5\xc6\x22\x17\x0d\x69\x7e\x52\xdf\x55\x03\x9b\x0c\xdf\xb4\x55\x9b\xd7\x61\xd2\xdc\x70\x77\xd6\x42\x08\x69\x34\x3c\xbd\xa5\x84\x0d\xd9\x6b\x38\x70\x72\xab\x2e\x41\xd2\xa9\x4b\xb0\x52\xda\x74\x1d\xbc\x26\xc0\x39\x96\x5d\x2c\xcb\x65\x83\x65\xb9\x61\x9b\xab\x1a\x2a\xa5\x19\xd4\xb1\x45\xef\xc9\xdf\xd4\x35\x7c\x9d\x74\x83\xa3\x94\x00\xcc\xe8\xac\x8d\x54\x2e\x9b\x06\x12\x6c\x93\x6a\x0e\xeb\x54\xcd\x61\x12\xbf\xb1\xe1\x81\x74\x96\xae\x5c\x73\xd5\xcd\x1f\x86\xbe\xd4\x4d\xb0\xfc\x52\x68\xb7\xe8\x58\x1b\xf7\x40\x80\xb2\xf9\x22\xcf\x0b\x0f\x5c\x99\x6e\x6d\xa3\x41\x86\x17\x24\xf6\x72\x9c\x86\x49\x04\x57\x90\xbc\x6f\x78\x2b\x8b\x69\x32\x59\xec\x8e\xa7\xc5\x30\xd9\xf5\xa7\xd4\x4b\xac\x2a\x27\x25\xc7\x1a\x5a\xbd\x9f\x16\x1a\x2a\x4c\x8b\xc9\xd0\x9f\x24\x93\x64\x98\x41\xe9\x0c\x27\x77\x96\x4e\x26\xd9\xce\x78\x3a\xf4\x27\x59\xe5\x0d\x7d\xed\xf2\x10\xcb\xf1\xaf\xd7\xdd\x33\x29\x04\x1c\x9a\xf0\x93\x7e\x88\x83\x74\xe8\xef\x92\xb1\xb0\xcb\x2f\xbc\x2c\x4c\x23\x9c\x85\xe9\xd0\x17\x03\x45\xc3\x61\xaa\xd1\xb2\x96\x33\x3f\xcb\xcd\x4d\x3b\xce\x13\x44\x41\xa2\x1c\x50\xf2\x3f\xa4\x30\x5a\xb3\x05\xe4\xce\x71\x2a\x9c\xd7\xef\xa4\x8a\x53\x90\x0f\xfd\x80\x57\xc5\x61\x0e\x5e\x92\x14\xc3\x62\x14\xf9\x2a\x9b\x79\xab\x81\x78\x89\xb3\x59\x7e\xee\xa1\x87\xde\x72\xb8\x42\x1c\x8f\x44\x96\x3f\x65\x2a\x9c\x6c\xe7\x41\xb2\x93\x82\x50\x87\x79\x94\xaf\x59\x89\x76\xf8\x18\x79\xdd\xf1\x80\xf8\x38\x41\x81\x78\x86\x47\xa1\x09\x11\x0f\xfc\x40\xf5\x6c\xc1\x41\x8b\x78\x59\x0c\x7c\x9c\x0a\x8d\xa8\x15\x5e\x56\xcc\xa8\xf8\x37\x35\x2d\x21\x7b\xcd\xd9\xdb\x2d\x96\x2c\x4f\xc7\xa8\xc3\x6e\x10\x4c\x0d\x1e\x3d\x05\xff\x76\xde\x51\x31\x3d\xca\xd0\x16\x8e\x89\xf3\xe0\xc1\x03\x65\x15\xfb\x26\x9f\xd1\x07\x0f\x1e\x38\xc6\xc0\xa0\xb4\x03\x05\x08\xab\xa9\xd3\x74\x31\x2b\x68\x66\xc2\x0c\xd9\x98\x54\x49\x94\x8b\x95\x85\xd2\x7c\x26\x44\xaa\x32\x49\xd3\x8d\xc4\xe8\x3e\x13\xc2\xa4\x96\x53\x4b\x8d\x9a\x90\x4c\x7c\xca\x1a\x0a\xd2\x84\xe4\xe2\x43\x0e\x1f\xc2\x18\x02\xc0\x0a\x2e\x52\x61\xec\x6d\xbd\x02\x55\xc2\x60\x53\xa8\xb0\x7f\x4c\xd9\x69\xb7\x0e\x81\x35\x73\xf4\xb2\xc7\xaf\x56\xe5\xd9\x2f\x45\x38\x21\x63\xbc\xe8\xc0\x82\xa9\x87\x06\x1e\xd8\xd0\x3b\x8e\x65\x36\x44\x4d\x8e\x64\x27\x56\xe7\x30\x0e\x93\xc1\x40\x07\xa5\xaa\xf0\x8a\xf8\x78\x49\xc6\x78\x2e\x6e\x43\xed\x67\xc6\xd2\x02\x6c\x29\x3d\x4b\x86\xeb\x5c\xf0\xf7\xbc\xd5\x4e\x83\xa8\x42\x8a\xca\xf3\x32\x12\x87\x49\x04\x1d\x93\x8e\x02\xc1\x4b\x60\xf3\x96\x59\x6a\x48\xc3\xb3\x93\x4c\xe5\xed\xca\x89\x97\x1d\x46\x42\x33\x6f\x8e\x19\xc2\x7c\x54\xde\x9c\x50\x54\xf1\x84\x85\x87\x10\x5e\x0d\x06\x7c\x7c\x15\xc0\x80\x56\x4f\x03\x54\x08\x6c\x41\x66\x85\x40\x0e\x3b\xad\xfa\x15\x86\xab\x06\x13\x88\x52\xd9\x2d\x63\x42\x08\xdf\x31\x96\xce\x91\x54\x73\x42\x95\x3e\x1d\x36\xcb\xe6\xba\xde\xdc\x75\xf5\xa0\x44\xf3\xb1\x0c\x79\xe9\x25\xca\xb1\x9e\x03\xae\x6d\x34\x6d\xdf\xe9\x31\x4e\x72\x7b\x3a\x88\x0e\xc5\xcb\x4f\x5d\x57\x2e\x71\xe6\xba\x1e\x25\xb9\xa8\x3d\xc3\x14\x9a\x6e\xb9\xfc\xa0\x38\x45\x60\x11\x51\xd4\x5c\x9e\x49\xfe\xaf\xd2\x23\x5c\xaf\x2d\xed\x33\xc5\x42\x82\x71\x30\xcb\x45\x7e\x4a\xb2\xa9\x69\x4f\xe5\xd3\x36\xa1\x6a\xe2\xf9\xe1\xf0\x1a\x5a\x8d\x2d\x35\xc6\x14\x33\x2c\x75\x14\x39\x26\x8e\xcb\x5b\x0c\xd6\xd2\xb9\xd7\x74\x35\x82\xe8\x06\x97\x7b\xea\x54\x53\xa4\x56\x4a\x7b\x9d\xec\xd3\x30\x8e\xc0\x96\x16\xec\x23\x2c\x77\xe4\xdd\x52\xc5\x17\x57\x4b\x9a\x30\x3a\xeb\xc5\x3d\x03\xf5\x70\x4f\x14\xc7\xbd\xbc\xe8\xc5\x59\x0f\x4c\xb9\x7a\xf9\xdc\xca\x52\x82\x9c\x5b\x64\x2b\x47\xbd\x1f\x85\xc4\x11\x05\x0a\x4b\x52\x80\x51\x7b\x07\xb4\x08\xe6\xfa\x44\x2c\x0b\xba\xa4\xd9\xdd\x93\x61\x68\x41\xda\xe1\x15\x07\x1a\x95\x55\x41\x00\xc5\xff\x3b\x53\x52\x9f\x8f\x55\x56\x9e\xa6\x73\x76\xeb\x94\x5c\xc6\x8b\xb3\x6e\x3a\x18\x67\x64\x8c\x25\x29\xaf\xab\x54\x54\xd4\x4e\x01\x94\x94\xe2\x46\xab\xef\x61\x16\xa1\x30\x8e\xa6\xd2\x27\x0f\xc4\xe8\x17\x41\x6e\xa8\xc7\xb4\x6c\xca\xba\x72\x04\xb7\x44\xdf\x5b\x9a\x95\x63\xee\x2b\x81\x54\xeb\xab\xa8\x42\xf5\xfe\xf3\xd3\xd3\xa5\x8d\xb7\xa9\xe7\xe9\xdc\x2b\x76\xc7\x62\x98\x96\xf7\xc6\x82\x23\x29\x1c\xb5\xb0\xd8\x82\xf6\xa0\xb0\xf6\x3d\x19\x6c\xce\x52\xbb\xa5\xd9\xe6\x39\x97\x92\x93\xf7\xe0\xc5\xb5\x8b\x6f\x57\xaf\xbb\x6b\x1c\x43\xdf\x78\xcd\xe4\x13\x9e\xd5\x2a\x85\xba\x3a\x3c\x9d\x48\x9f\x26\x77\xd5\x4c\x74\x6d\xa2\xa2\x8e\x53\xe6\x38\xb5\x2c\x08\xb7\x47\xd9\x04\x9d\x5d\x34\x7e\x1d\x85\x09\xf3\x11\xcb\x0f\x28\x93\x9e\x43\x28\x8a\x08\x6b\xef\xd6\x83\x3a\xda\xb3\x81\x87\x83\xb3\xee\xf5\x67\x3b\x19\xb0\x71\x1a\x13\x11\xc1\xb9\x6d\x26\x76\xb4\xa7\xc2\x44\x69\x4f\xd3\x67\xf4\xba\xf4\x3a\x06\xa3\x95\x33\x71\x46\x8a\x66\xeb\xd4\xcb\x05\x8a\xa4\x07\x5b\x84\x26\x06\x5b\x7d\x52\xf8\x97\xa8\xb1\xeb\x95\x43\x9b\xb6\x7b\x8b\x86\x71\x7c\xdb\x05\x9d\xb2\x86\xa7\xdd\x35\x6e\x42\xd7\x34\x2f\x3b\xc9\x67\x74\xe2\x38\xb8\xe5\x19\x40\xe8\x6c\x15\x32\x5e\xaf\x8f\x53\x61\x58\x13\x8b\x1f\x69\x66\x93\xd4\x31\xaf\x8e\x2e\x52\x0c\x4e\x0e\x79\x33\x03\x42\x25\x7e\x49\x0a\xad\x2e\xa8\x13\x84\x9d\x97\x7e\x15\x1d\x99\x7a\x29\xb1\x73\xc7\xc4\x64\x2d\x89\xc9\xe7\xba\x09\xbc\x71\x90\xb2\x5e\x67\x5d\x2e\x11\x54\x25\x4d\x6f\x08\x45\x0d\x52\xa9\x0a\xdb\x9e\x11\xea\x2e\x34\x98\xce\x07\xf0\xac\x90\xc0\x0c\x14\x06\x64\x3b\xb1\xec\x29\x18\xdc\x4a\xe0\x97\xc8\x3e\xf2\x29\x1d\xa3\x49\x0e\x0a\x51\x76\x67\xef\xd9\x2a\xb4\x04\x2b\xc0\xd7\xc6\x50\x57\x0b\x32\xc6\x2b\x13\x63\x6b\xb1\xb3\x0a\x16\x83\x01\xf2\xc7\x5a\x3d\x6f\x3f\x9f\xd1\x3d\xe6\x2d\xd0\xd4\x13\x75\x0f\x06\x58\x55\xcb\x71\xf4\x81\x4f\x08\x59\xf1\x79\x37\xd5\xf3\x7e\xfe\xef\xcd\x29\xd2\x1f\x06\x03\x6d\xbb\xda\x71\x92\x1b\x22\x93\xac\x0b\xd9\x13\xd6\xaf\x62\xd3\x8b\x4d\x29\x02\x81\x56\x46\xe7\x9c\xdf\xc7\xa4\xfc\xc3\x2e\x7b\x1b\xb8\x48\x11\xd2\x48\x12\xf3\x01\x7f\xe6\x99\x3b\x9d\x85\x25\x79\x56\xe6\x0b\xea\xba\xf2\x61\x74\x19\x17\x59\xfd\x4d\x7b\x21\x2d\xc8\x4d\x15\x74\xba\x1e\xfd\x0b\xfc\x0c\xe3\x9c\x80\x7f\x59\xff\xbb\xef\x10\xd8\x3e\x5b\xce\x44\x0b\xe3\x4c\xb4\xb0\x02\x5f\xa4\x9d\x42\x85\x2e\x39\x02\x08\x90\x46\xc6\xaa\x8e\xd8\x2f\xeb\x75\xdf\x07\x66\x95\xb1\xc1\x83\xe9\x02\x4d\x4d\x27\xcd\x7a\x85\xeb\x7a\xc5\x48\x85\x7e\x01\x87\x01\xdd\xc2\x49\x8a\x0b\x0e\xc8\x71\x81\x2a\x69\x26\x75\xb7\xcb\x53\xe9\x1c\x37\x2f\xb4\xcb\x53\x5a\x96\xf1\x09\xad\x3b\x01\xad\x3b\x3b\xd5\xde\xbe\x54\xe0\x79\x51\x30\x56\xf1\xf5\x2a\x8d\xbd\x00\x35\xdc\x72\x89\x1a\x77\x42\x7e\x1b\x9a\x26\x65\x59\xe1\x18\x96\xbf\x89\x5a\xe8\xa0\x58\xe0\x19\xea\xa6\x02\xa4\x06\xdc\x12\x4b\xd3\xc3\x45\x5c\x32\xe1\xa7\x58\x5e\x85\x26\xa1\xee\xc6\x18\x1c\x65\x4b\x1f\xc9\xb7\x66\x44\x56\xfc\x7d\xe3\x62\xd9\x8e\xe7\x54\x9b\x39\xad\xd2\x99\xa9\x31\xd4\x85\x03\x0d\x77\x51\xaa\xd4\x66\xd7\xde\x8e\xac\x43\x68\x1b\xf3\x99\x14\xee\x69\x08\xc5\x5e\x46\xc2\x9b\x33\x7a\x3d\x71\x12\xe5\x91\xe0\x16\x85\x6b\x3e\xad\x55\x84\x5c\x37\xf5\xec\x80\x15\x19\xc2\x05\xa4\xe1\x02\x35\x5d\xcb\xc4\xdd\xce\x7e\xff\x0a\xcf\xde\x1b\x37\x27\x80\x90\xae\x85\xe6\x63\x00\x41\xbf\x9e\x11\x99\x46\xaf\xc0\xb5\x07\x78\xf4\x74\x5d\xf1\x5b\xf3\x9c\x99\x11\x99\xb8\x94\x2c\xe0\x67\xd7\x9c\x88\xb5\x58\x4d\x02\x26\xd7\x58\x4c\x0a\x30\xd7\xe2\x67\x32\x40\xba\xc2\x22\x22\x2c\x2c\xb4\xf5\x0e\xbd\x03\xad\xb1\x57\x81\xf7\x63\xaa\x9f\x46\x14\x88\x28\x3d\x0e\x7c\x23\xb6\xa4\x74\xf6\x0b\xcf\x18\x04\x15\x22\x05\x1e\xf1\x65\x5e\xcc\xc4\x3b\x7f\xaa\x90\xda\x46\x76\xa9\xa9\xf5\x3c\x70\x26\x3d\xe5\x58\x90\x5e\xb1\x89\x7e\x6a\xf9\x12\x2a\xfe\x73\x0b\xbe\x30\xae\xdc\xf9\xa3\x2f\x3d\x3b\x2f\x94\x03\xf7\x58\x3c\xfa\xe0\xcb\x7d\x21\x7d\xb2\xe3\x44\xa4\x3e\xb2\x5d\x3f\x2f\xbe\xca\xf5\xf3\x6a\xd3\x56\x93\x30\x10\x7c\xaf\x29\xf8\x07\xe0\xae\xe6\x8a\x5b\x6e\x8a\x55\x51\x70\xfc\x5f\x67\x92\x68\xee\x32\x4e\xa8\xf1\xc0\xa6\xdd\x68\x69\x6f\x34\x42\x19\xe5\x30\x3f\xa3\x59\xfa\xc5\x78\xe6\x04\x97\xaf\x92\x61\x79\x03\x1d\x98\x50\x0c\xfe\xbc\x9a\xee\xaa\xfc\xaa\xba\xcd\xbb\x74\xa3\xfe\x56\x00\x6a\xa6\xbf\x78\x63\x6c\x1c\xb4\x7b\x66\xe4\x20\x0c\x69\x44\x2a\xb1\x74\x58\x82\x7e\xbd\x9e\x11\xcd\x66\x6f\xe7\xc2\x69\x5c\x80\xa4\x39\xb1\xf2\xab\x6b\x72\x65\xf4\x8a\x41\xaf\x3c\x84\xc2\x71\x24\x6c\x8b\x1d\x98\x2e\x67\x62\x4d\xdd\x80\xd0\xd0\x8f\x2c\x43\x62\x27\x90\xdf\xe7\x05\xa5\x07\x6a\x3e\x39\xc5\x62\xe5\xa9\x64\x1e\x60\x5e\xd4\xbe\x28\x67\xbf\x8a\xfa\x86\xb7\x46\x9e\x98\x0d\xf9\xb1\x91\x79\x62\x56\xac\x16\xb4\x91\xe5\x46\x35\x70\xbe\x64\xd7\xef\x6b\xdf\x8d\xe1\x32\xbf\x11\xd9\x29\xe5\xd4\x42\xa5\xba\x23\xbd\xe9\x01\x76\xd9\x76\x0c\x6f\xc2\x3a\x68\x8f\x83\x81\x5c\x89\x94\x79\x0c\xd3\x70\x3b\xc2\x34\x7c\x14\x19\xa6\x20\xaf\x54\x3a\xbb\xa0\xe1\xe3\x48\x6d\x0b\x1a\x7e\x1b\x29\xdd\x37\x3e\x83\xd2\x30\x64\x1b\x0f\xb7\x91\xf4\xdd\x58\x3e\x7c\x20\xfd\x36\x66\x08\x31\x01\x25\xf9\x46\x15\x1e\xdf\x16\x74\xce\xf8\x5d\x2e\xde\x0a\x20\xe3\x1d\xc7\xf0\xf5\x0a\xf0\x7a\x0e\xfe\xea\x7e\xf3\x8e\xca\x87\xc8\x0b\x7f\x8b\x1e\x86\xbf\x1d\x95\x11\x82\xf7\x07\x5b\x1c\x6e\x40\xad\x05\xef\xb6\x5d\x6f\x11\xfa\x51\xbd\xea\x22\x7c\x14\x01\xbe\xa9\x67\x74\xc3\xc4\x24\xf7\x98\x18\xba\xa0\xa0\xbd\x65\x46\x23\xdd\x83\xe9\x83\xa8\x8f\x2b\xb8\x1b\xe5\x8b\xb4\x81\xc6\xee\xfb\x58\x7a\x52\x29\xf8\x73\x2e\x9e\xa5\x99\x70\x18\xe1\x92\xd0\xa0\x0c\x04\x5f\x94\x94\xe1\x38\xc2\xb1\xb8\xe0\x4b\x84\x1d\x4f\x79\x14\x08\xe1\x01\x89\x68\xc7\x25\x52\x76\x35\x32\xc3\xd4\x41\xce\xc4\x89\x1c\xa4\x4d\x87\xc6\xb6\x81\xcc\x8d\xb6\x38\x12\x4e\x9f\x8b\x5a\x80\x63\x18\xce\x8c\x26\x0b\x2f\x96\x3b\xb0\xe2\xf9\x6f\x1c\x3b\xc4\x8f\xc9\x09\x7b\x39\x16\xfa\xab\x95\xac\xb3\x71\x34\x8f\xe3\xe4\xcc\x8b\x47\xcb\x7c\xe9\x71\xc2\x82\xf4\xc7\xb2\x5e\x67\x02\x05\x38\xbe\xc9\xd1\x4c\x11\x00\x31\xe3\x5d\x0d\x53\xc3\x58\x71\x5d\x2f\x15\x85\xb1\x3d\x0c\x50\xba\x05\xf5\x3e\x14\x94\xb7\x40\x83\x4a\xd9\x70\x76\x42\x14\xb8\xec\x39\x8a\x9b\x36\xfd\xa5\xae\xb2\x64\x91\x97\x74\xf6\xac\x88\x93\x33\xca\xbc\x1c\x61\xe6\xba\x85\x58\xcb\xc0\x62\xbb\x4b\x20\x43\x08\xf1\x4a\x12\x87\xb1\xe9\x39\x87\x43\xeb\xb5\xed\x0f\xbc\x44\x01\xba\x6d\x76\x02\x7b\xf6\x65\x40\x48\xd1\x19\xf0\x51\xf0\x31\x2f\x66\xfc\x03\xdf\x85\xcd\x1d\x4d\x45\x15\xc1\xdd\x3b\x7b\x1c\x89\xcd\x3d\x8e\xe4\xfe\xae\xed\x68\x0b\x56\xee\x65\xb3\x7d\xd1\xf7\xf2\x87\x22\x3f\x7f\x01\xc0\x4f\xde\x27\xf1\xa5\xc7\xb0\xa3\x4e\x86\x83\xd5\x87\xda\x41\x68\x85\x93\x30\x9d\x2b\xba\x3a\x27\x31\x5f\x9c\xd7\x23\x43\x01\xe1\x2d\x76\x6c\x1e\x8e\x23\xad\xcd\x6e\x2e\xbf\x31\xa6\x6a\x7f\xe5\xe1\xe3\x68\xda\x01\xcc\x72\x0b\x98\xe5\x1c\x98\x4d\x3a\x33\x6d\x5b\x99\x1e\x45\x55\xe0\x00\xe4\xee\x13\x02\xf3\x35\x8e\x02\x24\x62\x0a\xa8\xe5\x6f\x2d\x0f\xb5\x66\x74\x9e\x17\x74\x40\xe8\x48\x70\x94\x51\x28\x87\xc2\x6a\x9e\x41\x35\xb0\x15\xeb\xa2\xe1\x2d\x2c\x8f\x08\xb5\x90\x2f\x01\x54\x2a\x5a\x4f\x89\x68\x54\x97\xf8\xd9\x83\xa3\x94\xae\xd7\x66\x37\xa6\xf5\xad\x97\x4a\x77\xe5\xa2\xbe\x7a\xaf\x2a\xd1\xab\x06\x64\xb3\x1b\xd4\x4d\x80\x17\x74\x59\x52\x5c\xb4\xf5\x72\x03\x92\xe9\xfb\xb5\x12\x93\xc7\xcf\x38\x2c\xdb\xd6\xd1\xa5\xba\x20\x42\x3f\x42\x1d\x93\x27\xb9\xc6\xed\x0a\x2b\x07\x02\xea\x8a\xce\x43\x65\xce\xc3\x5a\xc2\x7a\xed\x35\xa6\x5d\x7f\x52\x53\x28\x7e\xe4\xc5\xe5\xa3\x76\x43\x9b\xb7\xfe\x01\x5f\x28\xbd\xf9\x97\x05\x4d\x4e\x69\x72\xf6\x3a\x2d\x4b\x3a\xab\xe1\x0c\x0a\xd0\xc7\xb6\x10\x24\xde\x1d\x07\xf1\x70\x28\x66\xb1\x9f\x9e\x73\x6c\x37\x96\x01\x02\xf8\x6d\x1a\x47\x7c\x11\x46\x2c\x7f\x95\x5f\xd2\x62\x3f\x2e\xa9\x87\xf8\xbc\xea\x9c\xca\xc3\xbe\x84\x73\x82\x45\xfd\x03\xb8\x14\xc7\x31\x0a\x9c\x9e\x55\x69\x1f\xe0\x90\x35\x14\x73\x74\x07\xa5\x88\xd6\x04\xa3\x36\x95\x97\x36\x9c\xaf\xf5\x2e\xeb\xe8\x96\x6d\x4f\x2d\xa6\x72\x8c\xf0\x82\x5f\x84\x2b\x12\x07\xab\xdd\x71\xb0\xe2\x43\x15\xfa\x4d\x49\xb8\x52\x3b\x14\x34\x44\x54\x58\x39\x6d\x31\xd0\x77\x90\xeb\xca\x3d\xdb\x27\x64\x29\x37\xe9\x82\x24\xe2\x3c\x87\x7e\x34\x58\x54\xb7\x94\xf5\xea\xd3\x84\x5b\xa3\x5b\x60\x4a\x12\xb8\x05\x4c\x33\x62\x3b\xea\xd3\x21\x53\x44\xdb\x95\x0d\xdf\x04\x53\x84\x03\x37\xe1\x9b\x5c\xd8\xb3\x9a\x2e\x4c\x74\x70\x86\x0d\x1b\x02\x1c\xb6\xb3\x16\xb0\x36\xf2\x96\x5a\xcc\x9e\x40\x70\xe3\x6c\x04\xcb\x47\xd8\x71\x34\xd7\x55\x1f\x19\xfe\x32\xdb\x13\x98\x64\xa1\x81\x2f\x40\xd1\xc2\x42\x5e\x02\xa3\xb5\x07\xcc\xe5\xbe\x8f\x41\xe9\xef\x56\x1c\xdb\xe0\x07\xf7\x40\xb3\x8b\x2e\xb4\xd1\x06\x63\x00\xc3\x9a\xe0\xba\x89\x58\x50\xa8\x2b\xad\x7f\xa9\xac\x2f\x73\xaf\xd4\x17\xb4\x92\x43\x95\x61\x46\x4a\xeb\x96\x60\x7a\x27\x71\x32\x1e\x60\x35\xcf\x34\x1c\x66\xf0\xcd\xeb\xe8\x2a\xb3\x2e\x05\xc6\x2f\x05\x83\x58\x6b\x04\xbc\x82\xc6\xa5\x20\x0b\x6f\x9e\x38\x74\x93\x9b\xfe\x57\xc5\xd7\xdc\xaa\x25\xc2\x6a\x20\x53\x4f\x96\x8c\xe7\x8c\x16\x6f\xf8\x6e\xb8\x0b\x2c\x95\xd6\x9d\x5c\x60\x67\x19\x17\xf1\x79\xe9\xe0\x12\xe1\x1c\xa4\xf3\x65\x68\xcd\x12\xee\x5c\xb0\x06\x9e\x5f\xa3\x35\xeb\x23\xc1\x45\xf3\x9a\x40\x68\xd2\xee\xb3\xe3\x60\x70\xf5\x17\x9f\x73\x62\x15\xe1\x14\xe6\x1f\x22\xa0\x68\x4e\x9f\x42\x15\x0a\x38\x25\x4d\x11\xb3\x9d\x45\x14\x54\x27\xcd\x4e\x33\x68\x58\xed\x5b\xdd\xc7\x34\xa9\xef\x3f\xb4\x91\x76\xb6\x4b\xc3\x58\x48\x47\xb5\xf0\x01\x14\x56\x06\xd6\x34\x75\x92\xe7\xaa\x9c\x70\x92\x3d\xad\x57\x76\xdf\x73\x53\xe3\x04\xd4\x6b\x94\x52\xc6\x55\x46\xa5\x48\x7c\x9f\xa3\xac\x12\xec\x48\xe2\xb0\x45\xa1\xd7\xab\x68\x62\xbb\x8b\x3c\x39\xf3\xea\xb8\xdc\x7f\x64\xf6\xff\xcc\x5c\xf3\xd1\xd5\xa8\xf5\xa6\x3c\xa0\x45\xef\x77\x8c\xa7\x66\x03\x5d\xfb\x12\x6e\x1c\xa8\x82\x32\x1c\xec\x02\x90\x91\x91\x7c\xfa\xb2\xbb\xf9\x65\xa6\xfb\x64\x6e\x5a\x3b\x95\x6c\xde\x32\x32\x2a\x4a\x96\xb2\x96\xc2\x57\x7d\xdd\x24\x24\xa2\x9a\x9f\x63\xf3\x71\x98\x56\x1f\xaf\xb0\xe0\xf3\x18\xce\x4b\x85\xa9\x8d\x22\xdd\xd2\x17\x6c\xdf\x8d\x54\x8e\xb2\x85\x75\xfb\x82\x12\x89\x2f\x5b\x1d\xd6\x2c\x4c\xa5\xc2\xa9\x55\x50\x71\xc2\xab\x5f\xf0\xab\x7a\x45\xb6\x7e\xf3\xc2\xd1\xfa\x6f\x11\x9a\x7a\xe1\xd1\x65\x84\x06\x5b\x29\x5e\x92\x71\xb0\xdc\x29\x83\xe5\x80\xf8\xc8\xee\x86\x27\x44\x26\xe1\x32\x42\x92\xb0\x82\x65\xd0\x1d\x9c\xda\xd8\x6e\x6e\x63\xc2\xb9\xeb\x2e\x39\xf1\x35\xf4\xa7\x0b\xd2\xf7\x27\xc9\x00\x18\x06\x13\x2f\xe6\xd5\x71\xa0\x98\xf2\x87\x81\x1f\x61\x83\x23\xc4\x02\x47\xd0\xef\x29\xbc\xaf\x04\xfe\x1a\x0b\xfc\x55\xbe\xa5\xfc\x6d\xaa\x6a\x5d\x80\xac\x30\x9d\x7b\xfd\x85\xd8\x63\x73\x50\x0d\x98\xad\x92\x56\xa8\x71\xc5\x52\x1c\x30\x8e\xe2\x22\x30\x04\x15\x4b\x14\xb2\x88\xdc\x88\xf8\xfc\x09\x2e\xe2\xcb\xc9\xbc\xaa\x40\x8d\x34\x81\xb0\x10\x1b\x2e\x92\x8d\x3a\x29\x16\x32\x5f\xa7\x58\x59\x9d\xd2\x6a\x53\xac\x0c\x05\x88\xa3\xfc\x1a\x1b\xd3\xbe\xb5\xb3\x8d\x3d\x81\x6b\xe9\x8f\xf5\x65\xbc\xa9\x0b\x0d\x32\xaa\xdd\x87\x5b\xa7\xa0\xde\xa8\x69\xb3\x39\x78\x8e\x31\x58\x63\x65\x26\xe0\xa8\x0e\xbe\xcb\xdb\xd9\x68\xe7\xc3\xaf\x3d\xc2\x82\xc2\x04\x36\x2d\x06\x03\xe8\x7c\x58\x44\x56\xbf\xa9\x52\xcc\x63\x46\x49\x96\x81\x04\x07\xa4\xb0\x0d\x88\x66\xcd\x1e\x2e\x70\x4e\xc6\x38\x25\xe3\x20\x35\x8d\xa4\x83\x81\xc0\xda\x3c\x49\x53\xc0\x5c\xa6\xe2\xa0\xb8\xae\x97\xf3\xb3\x84\x1d\xa4\xd8\x2d\xf9\x90\xbf\x8f\xc5\xd1\x90\x5c\x18\xc9\x0a\x82\x6a\x14\xd9\x56\x88\x33\xb0\x2c\xf2\x93\x54\x26\xf8\x11\x52\x0e\x18\x8c\x36\xb4\xe0\x5a\xe4\xab\xe3\x05\xdd\x07\xc4\x97\xa1\xaa\xd0\xca\x3c\x7d\x9f\x0f\xab\xc1\x4f\x69\xdc\xf5\x45\x7e\xd9\x33\x80\x4a\x0a\x29\x9c\x0f\xb2\x4c\xef\x58\x14\x72\x2c\xd4\x56\xd4\xa9\x49\xc7\x7b\xd6\x27\x5c\x3d\xc2\xf8\x5a\x9c\x10\x51\x63\xed\x2a\xbd\x67\xad\xaa\x4c\xaf\x6a\xf7\xd0\xba\x57\x37\x84\x33\x6b\x20\x04\x00\xcd\x83\xbb\xa7\x84\xd7\xe8\xf0\xed\x23\x54\x1b\xa5\xbb\x3e\x60\xbb\x98\x95\xb8\xd7\x00\x9e\x43\xfe\x1e\x6c\xbc\xf6\x00\x2c\x52\xa3\xd3\x4d\x69\xbb\xbe\x3d\x36\xe4\xb9\x7b\x97\x29\x3b\xcd\x57\xac\x27\x3c\x32\x30\x60\xda\xaa\x7a\x37\xd0\xd0\xf6\x14\xc1\x61\xb8\x35\x4f\xdd\x91\x89\x26\xc2\x75\x3c\x3f\xdb\x5d\x53\x41\xc6\x38\x27\x6c\xe8\x07\x39\x68\xf9\xdb\x90\x87\x13\xe1\x39\x9c\x96\xf5\x7a\x9b\x5f\x35\x05\x3f\x30\x28\xc8\x87\x43\xb4\x71\x25\x44\xaf\x7a\xfa\x3e\x74\x70\xc6\x47\x98\xc1\x08\x5b\x72\xae\xd5\x5f\x2a\xe7\xba\x4b\x48\x2d\xf9\x68\x87\xf8\x0a\xbf\xc1\xaf\xf0\x0b\x7c\x80\x3f\xe3\x7d\x7c\x86\x3f\xe2\xe7\xf8\x19\x7e\x87\xdf\x13\x08\xa0\x23\xe8\xd9\xb7\x73\x0f\xe1\x5f\x08\x1b\xa5\x27\x59\x5e\x08\x35\xcb\x12\xff\x4e\xde\xab\x3b\xfb\x25\x19\xfa\xf8\x03\xf1\xf1\x4f\x64\x8c\x7f\xe0\x08\xfc\xcf\x60\x3a\xa6\x64\x5b\xbf\x7a\x7a\x37\xd0\xd6\x46\x75\x06\x0c\x7f\xc0\x3f\x0d\x5f\x2a\x85\xca\x9b\xe3\x38\x39\x9b\xd8\x8b\xf8\xb3\xd6\x42\xc5\x9a\xc0\x9c\x34\x70\xba\x9f\x1b\x21\x3c\x7e\x96\xfc\x4e\x50\x30\xff\x69\x97\xfc\xae\x75\xca\xfb\x7d\x90\xd1\x89\xc1\xa8\x6e\x28\x47\xb4\x9e\x97\x91\xf7\xb6\x8e\xce\x4f\x08\x71\xdc\x60\xbd\xce\x08\x21\x0b\xf1\xb3\x74\xdd\x7a\x9e\x81\x8f\x20\xec\x8d\xeb\x7a\x2f\xc9\x4f\xf8\x03\xc0\xd3\x4c\x3a\xb0\x2d\x27\xc2\x21\xad\xf8\x59\x89\x9f\xa5\xf8\x59\x4c\x0e\xc9\x4f\xc1\x2c\xbf\x39\x1c\x10\x1f\x37\xdb\x3e\x14\x6d\x43\xad\x87\xa2\xd6\xea\xf2\x94\x53\x93\xbc\x17\x89\xe8\x8c\xec\xda\x4a\x76\x4d\x76\x14\x05\xef\x48\x28\xb7\x30\x7e\x2f\x99\x05\x3f\xe1\x43\x14\xe1\x9f\xc8\xe1\xd0\xb7\x5d\xe5\xce\x45\x5f\x66\xe2\xe7\x5c\xfc\xbc\x16\x3f\xd7\xe2\xe7\x44\xfc\x1c\x4f\xf8\x14\xfe\x48\x84\x44\x19\xb4\xed\xf6\x65\x77\xbd\x0c\x9a\xfc\x11\xff\x28\x56\xd3\x96\xa1\xf5\x4e\x27\xe9\xdc\x7b\x4e\x7e\x50\x44\xec\x0f\xfa\x0e\x9d\x38\x0e\x7e\x46\x5a\xb3\x89\x9d\x55\xb1\xe0\x67\xef\xb9\xeb\x3e\xeb\x13\x52\x88\x9f\x5c\xfc\x24\xe2\xa7\x14\x3f\x2b\xf1\xb3\x10\x3f\x4b\x74\x23\xa7\x34\x9d\x7b\x67\x9c\x76\x83\x28\xaf\xde\x21\x79\x6f\xf8\x32\xc8\xc1\x87\x03\x1f\x21\xd8\x39\xbf\xac\xd7\x4c\x14\x12\xb4\xf9\xaf\x9e\xa3\xee\x13\x04\x9c\xcf\x8f\xe4\x30\xa8\xf5\xf0\xe3\xd0\xe7\x0b\x93\x06\xe8\xe3\x90\xf8\xf8\x8c\xf4\xcf\xe4\xba\x9c\x89\x79\x97\xe5\xcb\xda\xd4\xf3\x61\xc1\xd4\xe0\x0f\xf8\x70\xf8\x12\x16\x42\xf0\xf0\x9b\x7d\x83\x19\x78\x41\x1a\x65\x61\x1c\x87\xeb\xf5\x27\x81\x55\xbe\x40\x53\xde\x94\xe7\x60\xfe\x5f\xcc\xf9\xc4\xab\xb7\xfe\xa2\xd5\xa0\x2d\x55\xec\x15\x62\x55\xf3\xc9\x15\xe1\x9b\xa6\x98\x3a\xdf\x38\x93\x6f\x9c\x6f\xf0\x9d\x33\x78\xd5\x35\x7f\x03\xdf\xcc\xa0\x54\x93\xfd\x23\x13\xd8\x1a\xf8\x1b\xf2\x42\xc5\xf2\x81\x28\x54\xde\x2b\xf2\xc6\x98\x0e\xed\x8e\xa7\xde\x67\xf2\x61\xf0\x0a\xef\x93\xc3\xe1\x9b\xf0\x55\xa4\x20\xc1\x84\xa7\xe3\x7d\xf2\x12\x61\x38\x0c\xa2\x4b\xdd\x4b\xf2\x19\x1f\x0e\xf7\x23\xfc\x92\xec\xe3\x0f\xe4\x33\x9f\x29\x7b\xa2\xf6\x26\x97\x26\x1a\x16\x1f\x28\xbe\x14\x8b\xf0\x1e\xe1\x43\xc2\x41\xab\xf5\x7d\xfa\x5e\x77\xce\x2e\x36\xdc\x86\x5e\x28\x61\xef\x5d\x3b\xc3\x6e\x3e\x9d\xf0\x59\x3c\x24\x3f\xe1\x03\xd2\x1f\xd7\xa7\x92\x17\x16\x53\x09\x20\xe4\x80\xf4\x0f\xc0\x83\x0d\x69\xe5\xc2\x07\xae\x9b\x09\x37\x47\x99\x38\x44\x99\x38\x44\x99\x38\x44\xfc\x67\x29\x7e\x16\xae\xeb\x41\x75\x6f\xe5\x30\x95\x53\xc1\x43\x84\x24\x8f\x37\x68\x7d\xe2\x1b\x42\xf4\xa2\xb3\x87\x89\xac\x13\x55\x7c\x1a\xbe\x66\x0e\x94\x84\x9b\xef\xd1\xb8\x03\xf4\x12\x42\x2e\xa6\xc0\x40\xae\x9f\xf2\x87\x5b\xfc\x28\x6d\xa3\x81\xcf\x01\x33\xdf\xa6\xd3\x43\x7d\x69\x4d\x7e\xf5\x34\x11\x81\x3a\x4e\xdb\x5f\xb4\xe9\x54\x13\xfa\x28\xb6\x37\x1a\x9a\x78\x5f\x1a\xbb\xeb\x4b\x63\x77\x7d\xe9\xde\x5d\x5f\x5a\xbb\xeb\xee\x69\xfd\x41\xdc\xa5\xef\x10\x34\xad\x14\x86\x7e\x1a\x0c\xf0\x3b\x8e\x95\x28\x7e\x65\x87\xce\x16\xef\xc8\xcf\x9a\x48\xe2\x57\x6a\x85\x95\xfe\x52\x47\xf6\x9f\xaa\x4a\x29\x4a\x3a\xdf\x38\xf6\x9a\x8d\x11\xce\xc9\x37\xce\x37\x8d\xb4\x94\x38\x47\x47\xcd\x8c\x31\x71\xb6\x9a\x69\x25\x84\x03\x6d\x24\x26\xc4\xe9\x35\xd3\x16\xc4\x39\x9a\x37\x13\x57\xc4\x39\x62\xcd\xc4\x25\x71\x8e\x8a\x66\xe2\x9c\x38\x61\x33\x6d\x46\x9c\xa8\x99\x76\x4a\x1c\xaf\x99\x76\x4c\x1c\xd4\x4c\x3b\x27\xce\x4d\x33\xed\x35\x71\xaa\x66\xda\x09\x71\x82\x66\xda\x05\x71\x1e\x36\xd3\xae\x89\x33\x69\xa6\xed\x11\xe7\x7f\x9a\x69\x97\x64\x2b\xec\x1d\x65\x47\xec\xa8\x38\x9a\xdf\x54\x1e\xfa\xc6\x39\x3a\x0a\xb6\xc2\xa3\xe8\x6f\xd1\xd6\x09\xfe\x62\x7f\xe6\x78\xf5\x24\xf8\x9f\x3e\xcf\x72\x14\x85\x7f\x8b\xd6\x47\x5b\xde\x94\x1c\x3d\x44\x5b\x27\xf8\x13\xd9\x1a\x85\x47\x47\x5b\x9e\xf3\xcd\x51\x16\x6d\xe1\xb7\x64\x2b\x8c\x87\xf3\xf1\xf0\xfb\x68\x2b\xfd\x8f\xe9\xc2\xea\x58\xfb\x58\x46\xe0\xff\x56\x47\xe0\xf7\x9f\xfa\x7f\x2c\x04\x7f\xdd\x24\xf4\xff\xb2\xd6\x6c\xcb\x66\xf3\x7e\xca\x89\xc6\x68\xce\xc9\xa1\x9d\x7a\xa8\x9d\xbe\xd1\x0b\x6c\x3b\x44\x7d\x97\x97\x6c\xff\xe0\xa0\x57\xd0\x84\xa6\x17\x80\xa2\xd3\x81\xd3\x4b\xb3\x92\xd1\x78\xd6\xcb\xe7\x3d\xfe\x55\xdd\xf0\x26\xee\x27\xb5\x62\x02\x63\xe7\x68\x35\xa7\xf3\xb9\x43\x4c\xc8\x5e\xa0\x9f\x78\xfa\x7c\x4e\x1b\xe9\x92\xf7\x7d\x1a\x97\xcf\xde\xbe\xd6\xf1\xe8\x78\xa5\xea\xc1\xc8\x65\x27\xb5\xac\x3e\x16\x71\x4a\x5d\xb7\x1d\x1f\x56\x46\x30\x15\x9a\x87\xe0\x6f\x9a\x59\x51\x4f\x21\xa1\x68\x47\x6e\x15\x85\x6c\x2d\x5b\xad\x1c\xe5\xa9\xde\x60\x26\xfc\xca\x89\x00\xda\x82\x01\x0b\xe1\x4e\x83\xa6\xdb\x11\x0f\x41\x43\x52\xa4\xc6\x1f\x5d\x37\x57\xcc\x52\xd1\x27\x59\xf8\xbd\xec\x40\x8e\xa4\x94\x89\x7f\x5d\xaf\xbd\x84\x5f\xc4\x82\xbe\x9c\x11\x67\x07\x88\xcc\x5e\x52\x96\x3d\x67\x90\x0c\x9c\x5d\xc7\x04\xd7\x56\xd5\x9e\xc7\x4b\xab\x6a\x11\xc5\x55\x31\x88\x62\xbc\xe8\xd2\xdc\x5b\x08\xba\xac\xe5\x2f\x55\xea\x12\x04\x7a\x8b\xc1\x46\xd6\x34\xa4\x74\x97\x28\x2c\x0f\x3c\x7e\xc2\x65\x85\x5e\x4a\xe2\x69\x53\x43\x39\x16\xcc\x88\x58\x19\x62\xc4\xda\x4a\x03\xba\x8b\x0b\xa9\x1e\x2a\xe2\xb4\xd5\x74\x9b\xb1\x51\xf3\x36\x91\xae\x4c\x01\x24\xb5\x26\x9b\x4c\x6e\x6c\x5b\xc7\x81\x1a\xb7\xb5\x0c\x5e\xaa\xe2\xdc\x9a\xb9\x82\x20\xeb\x69\x85\x17\x72\x4c\x9b\xdc\x11\x9e\xc7\x4b\xa4\xd8\x57\xb6\x03\x42\x3e\xf5\x56\xd8\xf3\xc2\x72\xc4\xdb\xf6\xcb\x64\x8c\x2e\x2a\x41\xa8\x16\x75\xd7\x68\xb2\xea\x9c\x58\x41\x72\xad\x8d\xa2\x73\xe3\x5b\xed\x3d\x52\xed\x71\xcd\xb2\xd5\x2d\x1a\x21\x46\x7a\xa9\xeb\x7a\xb9\x12\x19\xa4\x08\xe7\x7c\x0e\x4c\x63\x1d\xf1\x2c\x3b\xc2\x31\x4f\x79\x2f\x5a\x07\xaa\x3d\x2f\x96\x3f\x96\xf5\xda\x19\x39\x98\xb6\x14\xc8\xf9\xae\xbd\x55\x7b\x5c\x9c\x0e\x79\x2e\x84\x1e\x79\xd9\xd4\x23\x8f\x21\x0d\xc7\x2d\x3d\xf2\xc5\x1f\x60\xb7\x18\xe6\x3c\x18\x53\xdd\xe3\xea\xca\x49\xc9\xef\x2b\xa1\x57\x5c\xaa\x5b\x2c\x86\x47\xff\xe9\xb6\x7d\x75\x95\x5f\xa5\x42\x9c\xdc\x76\x21\xc0\x94\x2c\xf2\xd8\x8e\xd2\x6d\x34\x00\x40\xbd\x5c\xaa\x89\xc4\x05\xfb\x98\x32\x69\x76\x69\x42\x54\x63\x11\x11\x5e\x07\x14\x83\x60\xff\x53\xf8\x0b\x01\xc4\xa5\xed\xbf\xb2\x06\xe5\x4d\xbd\x8e\x97\x12\x70\x02\x08\x50\x80\x48\x68\x63\xa2\x5b\x15\x86\x95\x9b\x93\x4d\x46\x02\xf2\xfb\x7e\x9c\x9c\x52\x15\xe5\xb2\x96\xb8\x29\xc6\xb4\x72\xa0\x62\xba\xa2\xec\x96\x6a\xc5\x2b\xcc\x46\x97\x29\x3b\x6d\x59\x54\x1a\x97\xa9\xf5\x46\xf5\xf6\x35\xee\x53\x6f\xff\x6e\x34\x13\x84\x98\x40\x4e\x7b\x67\xfc\x31\xc9\x9c\xd2\x6e\x01\x54\x61\x4e\xe4\x80\x94\xa1\xbe\xb0\x1d\xbc\x4e\xaa\xc3\x3a\x6f\x1d\x3d\x3c\x2a\xbb\x82\xdf\x7b\xa3\x87\xe8\xa8\x7c\x78\xf4\xf0\x68\x6b\x0b\x05\xda\xfd\xab\xd9\x01\x84\x81\x66\x0f\x28\xd4\x58\x41\x6d\x45\x88\xf7\xce\x38\x1d\x62\xcb\xc4\xcb\xe5\x22\x4d\xa0\x8a\xad\xdf\x4b\xbe\x93\x02\x2d\x6e\xd5\xbb\x8d\x9f\x4c\xc5\xa5\x13\xf5\x7e\x78\xff\x72\x3f\x3f\x5f\xe6\x19\xe8\x46\xab\xc1\x6b\xaf\x34\x52\x81\xb8\xd9\xc2\x11\x34\x11\x70\x5c\xb7\xa4\x8c\xac\xd8\x7c\x38\x7d\x1a\x1c\xc7\x25\x7d\xf2\x18\x6b\x90\xb4\x5e\x6f\x2c\xd9\xcc\xaa\x3d\x9a\x12\xdd\x87\xf7\xf4\xe4\xc5\xd5\x12\xc8\xac\xd7\x7c\x56\x55\x97\x70\x31\x2d\x60\xbb\x7b\x0c\x3b\xa2\x1e\x07\x59\xe8\xcf\xe4\x32\xcd\x66\xf9\xe5\x28\x66\xf9\xb1\xd2\x5b\xcc\xcd\xd2\x6c\xe8\x90\x17\xfe\x86\xa3\x01\xc2\x5b\x20\xc3\xba\x35\x50\xa1\x74\x56\x7f\x1e\x2f\x7b\x10\xda\x38\xcd\x4e\x20\x66\xa1\xda\x22\xed\xd8\x22\xc0\xf5\x06\x71\x99\xbe\x5c\xc0\x23\x1c\x48\x74\xda\xf1\xef\x4d\xf0\x12\x70\x3d\x2b\xab\xaa\xe5\x50\xa6\x2c\xca\xc9\xae\xeb\x6a\x4d\xa5\x11\xbd\x4a\x4b\x56\x1e\x5c\x67\x49\x77\xaa\x15\x88\x25\xb6\x6e\x8c\x18\x74\x12\x44\x06\xec\xf0\x25\x7d\x5a\x9b\x57\xb9\x27\xbb\xe6\x86\xe3\xd5\x3d\x96\xf7\xf8\xe8\x7b\x1c\x4c\xa5\xf9\xaa\xb4\xe6\x69\xd2\x73\x06\x99\x55\x95\xd0\xfc\x05\xac\x36\xce\x12\x3e\xa2\x5b\x60\x08\xd2\x6e\xd8\x37\x87\xb2\x6f\x04\x0e\x64\x76\xbf\x83\x7b\xb4\xa5\x2b\xd2\x53\xdf\xac\xe0\x54\x07\xf4\x66\x7a\xf6\xfe\x71\xf0\xf6\x8d\x1d\xae\xbb\x73\x6e\xcc\xbe\xe9\x98\x98\xde\x3c\x2f\xce\x63\x06\x16\x39\xad\xf9\x31\x97\x46\xcd\xdf\xaf\x0d\x0f\x9a\xc0\xc3\xf4\xd5\x4a\xb3\x7d\x18\x9a\xe4\xc0\xdc\x78\x5e\x41\x34\x9a\x2d\xdc\x77\x98\xd7\x59\x5a\x64\xf1\x39\xe5\xb7\x58\x81\x2c\x8b\x15\xd2\xce\x52\x20\xdc\xf7\xfa\x5d\x3b\x6e\xbd\xee\x4c\xf6\x0a\x84\xec\x2d\x5a\xdb\x83\xc5\x2d\x7b\x50\xa8\x63\x94\x4d\x8b\x6e\x69\x23\xd7\x45\x74\x75\x1c\x33\x88\x1d\x2f\x23\x15\x76\x7d\xd5\x11\x69\x50\x4b\x62\x94\x7c\x6d\x94\xf5\xbf\x84\x16\xbf\x59\x16\x74\x9e\x5e\x4d\x6e\xb9\x77\x7e\xf3\x86\x47\x97\x83\x21\xda\x32\xf6\x88\x53\x16\x8e\xa3\x89\xe3\x54\x78\x95\x89\x0a\xe8\x6c\xd2\xe9\x65\xd3\x38\xc0\x86\x4a\xc0\xf9\x75\x55\xfd\x49\x83\x30\xe5\x4a\xca\x7f\xfa\xad\x8c\x51\xfd\xf4\x09\xb2\x2d\x67\x8d\xf5\x29\xcb\x93\x7c\x61\x85\xb2\x2d\x17\x71\x79\x4a\x4b\x2b\x25\x5e\xb1\x53\xeb\xf5\x34\x2f\x99\xf5\xca\x3b\xd6\xf8\xaa\x9d\x3d\x61\x45\xb8\xda\xe5\xa5\x6f\x36\x93\xf0\x79\x45\x8b\x6b\xbb\xc6\x98\x9d\x36\xaa\xe0\x49\x76\x8d\x05\x15\xce\x97\x2a\x65\x38\x75\x81\x35\xfa\xdd\x1d\xe5\xf4\xc2\xa3\xb8\xef\xe3\xfe\x18\x19\x34\x5d\x68\xeb\x88\x37\xc1\x9b\xe8\x2e\x4b\xa7\xed\xd2\x22\xbf\xc7\xd0\x04\x90\x14\x01\x51\x6a\xe7\x22\x1f\xa5\xa5\xf6\x41\x01\x7a\x87\x17\x10\xd7\x57\x55\x6a\x03\xc7\x74\x4a\x65\x15\x1e\x9a\xa4\x96\x2d\xa3\x48\x14\x5b\x5c\x68\xb1\x7d\x28\x16\x24\x95\xa4\xe8\xd6\x6f\x5e\x18\x0f\xbf\x8c\x87\xdf\x8f\x06\xc3\x68\x30\x41\x5b\x29\x2e\xc9\xd6\x24\x1c\x0f\xbf\x8f\x1e\x3e\xd8\xc2\x09\xcf\xc2\x09\x96\xa9\x37\xed\x1f\x6d\xa1\xf0\xb7\xa3\xe9\x51\x19\x3d\x44\xde\xd1\x14\x2c\x89\x1e\xa2\xe9\x83\x2d\xbc\x20\xa1\x73\xe3\x60\xa7\x72\xb0\xb3\x76\xb0\x73\x74\xe4\x60\xe7\x37\x07\x3b\xff\x8f\x03\x3e\x57\x93\x98\x79\xa1\xb3\xe3\x60\x67\xd7\xc1\xdf\x38\xdf\xf0\x0f\xd8\xe9\xf1\x9c\x05\xff\x93\xf1\x3f\xcc\x89\x10\x5e\x91\xd0\xf9\xc6\x14\x5a\x20\xbc\x24\xa1\xf3\x77\x07\x3b\x5b\x0e\x76\xa6\x0e\x76\x02\x07\x3b\x7f\x33\x39\x56\x08\xcf\x49\xa8\xbf\xfe\xcd\x89\xf0\x8c\x6c\xfd\x16\x0e\xc4\xb8\xf6\x86\xff\xfe\x34\x8c\x6e\xc6\xf8\xc9\xa3\xea\xc1\x16\x3e\x85\x21\x77\x7c\x43\x1c\xc3\x7b\xb0\x85\x8f\xc9\xcd\xef\xf1\x45\x5c\x26\x45\xba\x64\x93\xfe\x18\x3b\xd6\xab\x33\xe9\x8f\x2b\x7c\x7e\x77\x96\xd7\xe4\xe6\x94\xb1\x25\xff\xc8\x7f\x4b\xfe\x30\x17\xef\x27\xf9\xf2\x94\x16\x90\x90\x8a\xf0\xac\x0e\x64\x75\xf4\x63\x29\x9f\xe7\x3a\x55\x96\x91\xc9\xbc\x98\x68\xe6\x04\x0e\xe6\x77\xd6\xc1\xbc\x50\xa7\x39\x9d\x7b\xd4\x75\xf9\x16\x92\x1b\x8d\x6f\xa1\xfa\x96\x51\xd7\x13\x0d\x8c\xfb\x33\xed\x90\x4f\x86\x95\x96\xd5\xe1\xa2\xb2\x37\x55\xc3\xd6\xd0\x34\xd9\xaf\xed\xd9\x6e\x67\x43\xef\xe2\x22\x3e\xa7\x8c\x16\xbd\x6f\x56\xc5\xe2\x1b\x1d\xde\x25\xd6\xfe\x86\x32\xf0\x23\xa4\x5d\x16\x49\xd7\x8a\x96\x92\xf8\x14\xc2\xc1\x83\x02\x79\xea\xba\xe9\x8e\xf5\xe9\x6f\x0e\x9a\x3a\x53\x67\xe2\xfc\xcd\x01\xb6\x8d\x10\x48\x94\x28\x58\x84\xe3\x88\xf0\x3f\x06\x60\x1e\x1d\x6d\x9d\xf0\x7d\x25\x5a\xb8\x20\x94\x2c\xc4\x3d\x5a\xc2\x85\x7c\x41\x2e\xe4\xc5\x85\xfb\x99\xeb\x0a\x2b\x15\x29\xe0\xf8\x9b\x83\x6a\x11\x5b\xae\x49\x32\xa2\x57\x34\xf1\x2e\xa0\xe8\x75\xed\xea\x07\xe0\x73\x61\x41\x9e\x8b\x06\x9c\xba\x0e\xfd\x08\x5f\x87\xdb\x8a\xa9\x27\x21\xdc\x35\xe8\x77\x18\x08\xc7\xa6\x27\x72\x55\xac\x5c\x0a\xef\xd6\x6c\xbe\x8e\x64\xa3\x69\x08\xf5\x2a\x65\x5a\x51\xab\x32\xcc\x06\x92\x73\x8f\xc4\xf6\x38\xf6\xc4\xe8\x2e\x89\xb7\x47\xf6\xc2\x71\x84\xea\xb6\x0b\x41\xfd\x0e\xb8\xc4\x7c\xca\x64\xc3\x7b\x6a\x7e\x38\x52\x94\xad\xd7\x7b\xeb\xf5\x85\xbe\xef\x38\x44\x09\x7f\xfb\x9f\xa3\xad\x68\xf0\x3f\xf2\x77\x4b\x6a\x1b\x7c\x21\xce\xd6\x16\xbf\xd1\x2f\x0c\x49\xb7\x8d\x82\xfe\x97\xf5\x7a\xcf\x75\xcf\xc3\xbd\x68\xbd\xf6\xac\x76\xb6\x51\xfd\xda\xe9\x8f\xa1\xc5\x3e\xcf\xe9\xba\x9e\x28\xd6\x7f\x1d\xee\x45\x96\xa9\xc5\x27\xfc\x16\x1f\x92\xa1\x8f\xaf\xc8\x38\xb8\xda\x99\x2b\xee\xf5\xd5\x60\x80\x6e\x60\x5f\x79\x6f\xc8\x85\xde\x55\xf3\xf0\x2a\xe2\x38\x8f\xa7\x04\xca\x6f\x76\x0e\xf9\xeb\x21\x79\x83\x2a\x91\xfd\x2d\x11\xdf\xa6\x17\x46\xc2\xc4\xf7\xe3\xff\x38\x68\xd2\x4a\xc2\x87\x50\xdb\x27\x3e\x0a\x61\xf0\x81\xdf\x22\x31\x79\xf0\xfa\x76\xe0\x23\xeb\xea\xec\x20\xf9\x3e\x21\x04\x03\x00\x73\x04\x31\x88\x65\x6d\x10\x7c\x94\x6f\x82\xf6\x50\x96\xb7\x0f\x85\xa7\xc1\xdb\x85\xa6\xdb\xcc\x9d\x6d\x7a\x7b\x68\xf7\xf6\x50\x19\xf1\xf0\xad\xf9\x53\x5e\x32\x0f\x35\xae\xf2\xda\x1b\x38\xf3\xe3\xdd\x7b\x45\x84\xd5\x65\xed\xab\xd0\x8f\x8b\xda\xe9\xb5\x37\x4b\x7b\x98\xaf\xf5\x2b\xed\x2a\xed\x45\xbd\x94\x3c\xae\x5b\x47\xa3\x2d\x84\x0f\x08\x9f\x29\xfc\x42\x8d\x2c\xb8\xda\x39\x30\x93\xf5\x99\xbc\x08\xaf\xa0\xba\xcf\xae\xdb\xff\x2c\xb7\xea\xcc\xda\x34\xfb\xfc\xe0\x9c\x91\x31\xfe\x48\x3e\xab\xb9\x3e\xdb\xf9\x18\x9c\x0d\x06\xe8\xb3\x2d\x40\x3a\x43\xbb\xfe\xf6\x77\xd3\xfd\x01\x71\xae\x9c\xc9\xfe\x80\x7c\x0e\xcf\x44\x47\xf7\xad\x6a\x79\x95\xcf\xc9\x0b\x3d\xa7\x57\x08\x3f\xd3\xaf\x57\x7c\x07\xbc\x23\xaa\x1b\xa7\x28\x78\xe7\xba\xde\x73\x29\x89\x0c\xfd\x08\xe1\x67\xda\xb1\xda\xbb\x70\x3b\x42\x3c\x41\xeb\x80\x5e\x10\x67\xcb\x19\x3c\x93\x2e\x0a\x47\x0e\x1a\x5c\x34\xd7\xe4\xb9\xf9\xa8\x2c\x2c\xaa\xae\x39\xde\xdd\xfe\xf6\xdb\x69\xbd\xa8\x23\x4d\xab\xbb\xd7\xb7\x0e\x22\xf0\x2b\xc5\x81\xd2\xb9\x8b\x11\xcb\xf7\x0e\xf6\x5f\xbe\xac\xa7\x4b\xf9\xc1\xff\xcb\xde\xbf\xf0\xb7\x8d\x1b\x8f\xc2\xf0\x57\x91\xd1\x2e\x97\x88\x20\x5a\x72\x6e\xbb\x94\x61\x1d\x37\x49\xbb\xfb\x36\x4e\xf6\x4d\x9c\xb6\xfb\x28\xfa\xe7\xd0\x22\x24\x71\x43\x91\x2a\x09\xd9\x56\x2c\x7d\xf7\xe7\x87\xc1\x85\xe0\x45\xb2\xe4\xec\x6e\xfb\x9c\xb3\xed\xfe\x62\x11\x97\xc1\x00\x18\x0c\x06\x83\xc1\xcc\x3b\x6a\xa4\x42\xc1\xc6\xdb\xe6\xcb\x47\x88\xfc\xab\x81\x94\x0a\xfa\xfc\x57\xfb\x5d\xc1\x64\xdb\x45\x51\xf2\x5a\x33\xc0\x2d\x18\x6b\x5e\x49\x1a\x89\xec\x04\x8b\x4d\xe2\x88\xd2\x6b\xf9\x54\x52\x0e\xee\xb5\x3c\xee\x1d\x5d\x0d\x6f\x46\x58\xad\x42\xf2\x9e\x2e\xcd\x2a\xb4\x89\xeb\x17\xba\x54\xc4\x05\x2b\xb2\x58\x8e\xda\xc6\xea\x47\x0a\x3a\x89\xf2\x22\xff\x05\xf7\x7f\xa4\x94\xfe\x02\xd6\x4c\x2c\x1f\x07\x0b\x26\x2a\xc8\xa5\x07\x84\xfd\x8b\xf2\x42\xf9\xa3\xba\xfa\xfa\x60\x81\x16\x7b\x94\x64\x00\x1f\x4c\xf7\x85\x20\x6d\x38\xe7\x07\x7b\x11\x77\xc9\x07\x35\x01\x3f\xd8\x30\x06\x32\xdc\x0b\x80\xf9\xa1\xbc\x3b\x19\x38\x3f\x60\x7b\x3b\x29\x92\x81\x89\xe9\xa6\x65\x66\x69\xff\x82\x24\x5c\x46\xe2\x87\xbd\xb6\xab\x6b\x5d\xc2\xec\xa0\xd7\x98\x5c\x0c\x6f\xb4\xef\x34\x3d\x83\x3a\xe4\x92\x2e\x56\xab\x26\x36\xff\xf2\x5e\xac\xf4\xe3\xb2\x69\x7c\xa7\xa9\xd1\xe4\x2a\xde\xf5\x57\x6a\x15\x2b\xc8\x10\x76\xfa\x77\xed\xbf\xda\x4e\xf7\xe4\x96\x2f\x15\xf0\x4a\x42\x57\x6e\xea\xea\x72\xfa\x16\x7b\x56\xb1\x0b\x40\x23\x0c\x8e\x01\x2e\x6b\xa2\x16\x86\x71\x21\xda\x7c\xf3\xf8\xfc\x38\x22\xc8\x47\x98\xb0\x36\x15\xbb\x50\xdf\xb2\xeb\xd4\x3b\xb6\x80\xa9\x3d\xd4\xd9\x5d\xd4\x7a\x6a\x41\x2f\xf0\x0d\xef\xdc\x02\x6a\xaf\xb6\x41\x44\x59\xdb\x7c\xf9\x95\x71\x77\x45\xae\xdc\x63\xca\x6b\xca\x7e\xe8\x57\x66\x2b\x3e\x1a\xa2\x76\x29\xa5\x8d\x46\x66\x7a\xd2\x0c\xa2\x49\xb5\x69\x89\x27\x60\x9b\xf4\x4a\xe2\xae\x45\x61\x8e\x53\xf3\x91\x27\x33\x0a\x7e\x19\xd0\xa9\xad\x11\xb2\xa8\xb3\xf4\x4a\x54\xcd\x76\xe0\x38\x68\x80\xda\x81\x74\x4b\xab\x66\x1a\xcc\xbe\xe1\x45\xa3\xa2\xff\x0e\xd8\xd0\x70\xc0\xb8\x2c\xa3\xac\xd7\xee\x11\x5f\xaf\x2f\x86\x7c\x84\x1d\x07\x0c\x6b\xa3\x81\x1b\x81\xe0\xd3\x76\x23\x78\x9d\x43\x12\xc7\x91\x5c\x27\xd1\xe6\x42\x5d\x0c\x01\x9c\x05\xf3\x49\x30\xf6\xa3\xf5\x5a\xd4\x41\xe0\xfb\x07\xfd\x09\x49\xf7\x73\x56\xd1\x8c\xa2\x3f\xa1\x76\x86\x49\x0e\xf8\x1e\x51\x9a\x97\xf2\x73\x2a\x7a\x91\x63\xc2\xdb\x51\xdb\x4d\x2c\x77\x8b\xc7\xc3\x01\xd8\x39\x34\x86\xf5\x68\xa2\xbc\x0d\xc6\xb8\xed\xe6\x34\x37\x20\x84\xfc\x8d\xbe\x39\x79\x8c\x30\x6e\x67\x65\x52\xaf\x1f\xb3\xcb\xf7\x17\xe5\x03\x72\x71\x72\xc6\x66\xfd\x34\xc2\xab\x1d\xc0\xa5\x07\xf0\xd2\x81\xc4\x76\xdf\xd1\xe7\xe6\x88\x23\xe1\x13\x46\xf9\xa6\x30\x6b\x80\x42\xa4\xee\x60\x11\xab\xe0\x0b\x59\x2d\xf8\x42\x4e\xb3\x61\x30\xea\x27\xc3\x7c\x04\x04\x33\xcc\x21\x72\x57\x22\xf9\x2e\x04\x59\x99\xc9\xb7\xa7\x0c\x98\x82\x09\x2d\xa2\xf4\x11\x05\x7f\x48\x20\x5a\xa4\xa6\x17\x30\x3e\xd0\x6b\xd6\x7e\x2f\x6c\xa3\xc6\x30\x89\x69\xb7\x1f\x9f\x9a\xd8\xc9\xb1\xc6\x6b\x49\xc7\xc3\x78\xd4\x47\x1a\x04\x92\xd6\x6b\x6e\x32\x5c\x8e\x28\x1b\x2e\x47\xc6\xa8\xe9\x62\x98\x98\x86\x46\x8e\x93\xd8\x9c\x34\xb1\xd9\x68\xa2\x34\x2a\x15\x56\xda\xd0\x93\x0d\xf4\x44\x03\x75\x9c\xe2\x37\xd0\x76\xd1\x2d\xb1\x99\x5e\x0c\x8b\xec\x51\xd1\xd3\x45\xb5\xa7\x13\xda\xed\x4f\x0a\x89\x77\xa2\x7b\x1a\xd2\xc5\x70\x22\x66\x20\x14\x1d\x0b\x8d\x77\xa7\x2d\x78\x15\xcd\xd3\xa2\x5d\xc2\xa0\xd7\xeb\xf5\xbc\x84\x8c\xd5\x55\x66\x7e\x16\x41\x7b\x45\xeb\x33\xea\xb2\x12\x1f\xc5\xfa\xb8\x28\xce\x98\x33\xc3\x6e\x8e\x5c\xd9\x04\x9d\x99\x77\xff\x7d\xdc\xd7\xcd\xea\x4c\xb1\xb2\x99\x25\xea\xb8\xcc\x96\xc0\x30\x01\x97\xb6\x33\x10\x49\x66\x46\x14\x14\x19\xba\xa1\xd3\x93\x6a\x8e\xd5\x87\x99\x12\xff\x8e\x91\x3c\xa0\xe9\xcd\x96\xa9\x1f\x24\x51\xfb\x2d\x93\x7f\x89\xa4\x05\xaa\xb1\x14\x1b\x87\x3c\x9d\x30\xf8\x43\x0a\x5a\xa1\x36\xd6\xf2\xb7\x68\x39\xcd\xe4\x4b\xa0\x8c\x5b\x78\xac\xd7\x89\xd9\x6b\xaf\x21\xc4\x77\x52\xde\x89\xa6\x34\xb1\x77\x59\x45\x77\x57\xed\x69\x31\xb5\x46\xe1\x58\xf0\x57\xb3\x74\x1a\x29\x52\x9e\xf6\x6d\x7a\x86\xf8\x7d\x56\x4a\xc1\x27\xc9\xca\x74\x99\xd5\x2a\xb0\xa6\x0a\xe7\x74\xb5\x5e\x5f\x8b\x8e\x89\x6a\x40\xf0\xaa\x10\xb9\xa1\xe7\xe4\x4b\xa9\x61\xab\xc9\x82\x54\xd6\xeb\xe1\x88\x7c\xa2\xee\x8c\xda\x4d\xb2\xad\x45\x13\x6b\x79\x1d\x95\x96\x30\x08\x6f\x9f\x60\xbd\x5a\xb4\xa3\x67\x43\x46\x84\x52\x68\xba\xc0\x98\xbe\x0c\xbb\xa3\x81\xf8\x87\xca\x74\xff\x8b\x21\x20\x99\x80\xb1\xa6\x04\x84\x88\xbd\xae\x6d\xf2\x04\xc0\xcc\x6a\x84\x95\x1a\x11\x44\x3b\x10\xff\xa8\xa1\xf5\x0b\x2a\x65\xba\x11\x56\xa8\x89\xc5\x90\x9e\xdb\x75\x05\x25\x28\x5c\x31\x26\x2b\x5c\x23\x4d\xc9\x61\x85\x90\xa2\x1a\x48\x34\x15\x36\xd2\xa8\x55\x41\x24\x0c\x8a\x9f\x7e\x51\x83\xdc\xbf\x44\xbe\xd0\x99\xf1\x0f\x64\xee\x3d\xbf\xac\xd7\xee\x17\x3a\x1c\x61\xf2\x45\xf9\xdc\xf9\x42\xbf\x68\xe5\xe5\x0c\xdf\x0f\xd6\x80\x04\xe5\xda\x9b\x65\x1c\xbf\xcd\x3e\x68\x4f\x9c\xae\xae\x25\x0d\xcb\x3f\x61\xab\x8b\x6a\x58\xbe\x68\x26\x43\xdc\xd7\xf4\xe8\xc8\xd5\x13\x2e\xff\x16\x02\xd9\xff\x42\xf8\x4c\xc8\x05\x2a\x5d\xd1\xd8\xff\x42\xa0\x2d\x50\x6b\xfd\xb5\x81\xa5\x80\x5b\xcd\xbd\x2e\x98\x59\xb1\x34\xef\x19\x31\xdd\x23\xb7\x58\x07\x58\x8a\x71\x2a\x55\x75\x6e\xbd\xd6\x3b\x8e\x55\x72\x50\xfc\xf4\x11\xc2\x6d\x53\x7c\xa0\x7f\x88\xe4\xad\x9b\xd2\xd1\x97\xca\xfb\x97\xa4\x72\x71\x60\x81\x83\xa6\x41\xf0\xd2\x90\x13\xeb\x4a\xa1\x69\xff\xd6\x7b\xc2\x5b\x31\xfe\x70\xb8\xe9\xf4\xf0\xb0\x3b\x22\x97\x54\xcd\x80\xe6\x8d\xeb\xf5\x17\x13\xf1\x5c\x0c\x35\xf2\x04\x39\xbe\x5d\xaf\x91\x27\x7f\x61\x45\xa1\x6f\x89\x38\x62\xbe\xa1\xba\x78\xff\xcd\x19\xed\xf6\xdf\x74\x3a\x58\x56\x71\xdf\xd2\x2f\xc3\x37\x23\x3c\xf8\xa2\xdf\x42\xbe\x21\x3d\xec\x6b\x30\x03\xb7\x94\x4e\xc4\xe1\xd4\xbf\x75\x9c\x6a\x72\xa7\x23\x2d\xab\xce\x1d\xe7\xe8\x06\x4e\xb6\xfd\xdb\x4e\xa7\x7f\x8b\x0b\x56\x20\x40\xe2\xfe\xd1\xb9\xb5\x10\xd7\xeb\x2f\x52\x75\x73\xac\x53\x0a\x96\x28\x7a\x68\x6f\x43\x97\x5a\xb4\xfd\x52\x6c\x42\x25\xa9\xf9\x8b\xf6\xee\x2d\xc5\xef\xd7\xe4\x15\xdd\xab\xa1\x7e\x85\xd5\x29\x22\x7d\x35\x40\xc8\xd7\xa3\x36\x30\xeb\xc1\x47\xe8\x77\x5b\x12\xc6\xc8\xef\x9c\x9e\x17\x5b\x83\xa1\x40\xc7\x39\x7a\x25\x3e\xed\x51\x32\x08\x5b\x74\x69\x0d\x98\xef\xd6\xe9\xd5\x90\x24\xfe\xbd\x56\x96\x25\x01\x80\xff\x6a\x29\x09\x1c\xbc\x23\x93\xda\xed\xc2\x0f\x62\x28\x9b\x4f\xc3\xc0\xca\x39\xcd\xa5\xa2\x9a\x49\x73\x1c\x79\xf8\x72\x39\xb8\x29\xc1\xe6\xa0\x2f\x76\x20\x6e\xe9\xc2\x09\xa3\xcc\x8e\x20\xa2\x5f\x0a\x1b\xc3\x19\xc2\x6a\xba\x22\xd6\x14\x6b\xa7\xe2\x29\x1c\xac\x55\xfa\x47\x26\x31\xc2\x77\x5c\xfb\x31\xbd\x5c\x2d\x18\x81\x0d\x5c\x7f\xa9\xdb\xb7\xe2\xca\x5b\xdd\x75\x64\x8e\x93\xf5\x03\x6f\x1a\xa7\x57\x81\x0a\xaf\x1d\x78\xd2\x2e\x46\x7f\xe5\x2c\x9e\xc8\x33\x29\x19\xd3\x93\xde\x93\xe7\x4f\xbe\x7b\xfc\xec\xc9\x73\x12\xd3\xc7\xcf\x54\x60\x99\x93\x67\x64\x42\x1f\x7f\x47\x42\xfa\xbc\xdb\x25\x33\xfa\xfc\x84\x5c\xd1\xde\xc9\x77\x64\x4e\x51\x07\x91\x0b\x7a\xfc\x3f\xb7\x49\xa7\x73\x4c\xa6\xf4\x78\xf8\x3f\x1f\x6f\x4f\xba\x9d\x8f\xb7\xcf\x5f\x8d\x8e\xc9\x35\x3d\x1e\x7e\xbc\x3d\x79\xf5\x71\xf9\xb8\xdb\x3d\xf9\xb8\xfc\xeb\x5f\xbb\xaf\xc4\xbf\xcf\x7a\xe2\x34\xb8\xa2\x77\xe9\x35\xcb\x26\x71\x7a\xe3\xa3\xb7\xfa\x57\x4b\x5a\xd7\x26\x8c\x85\x79\xeb\x26\x0a\x59\xd6\x8a\x12\xce\xa6\x2c\xcb\x5b\x3c\x6d\x29\xf7\xc4\x88\xa0\x24\xe5\x9d\xab\x20\x8f\xc6\xc8\x47\x3f\xc6\x31\x9b\x06\xb1\xaa\x7b\x46\x5b\xdd\xdb\xef\xba\x2d\x37\x49\x79\x2b\x68\x41\xa1\x96\x38\x65\xb6\x16\x69\x94\x70\x8c\x08\x8a\x92\xeb\x20\x8e\xc2\x0e\x54\x10\x00\xe4\xb7\x04\x80\x36\xe4\x9c\xc6\x9d\x25\xb9\xb1\x22\x6c\x91\x2f\x4d\x6f\xee\x8a\x9b\xb2\x4f\xc5\xfb\x5d\x71\xd2\x7b\x17\x24\x53\x75\x43\xb5\x1a\xb2\x11\x2e\xec\xdd\xdf\x56\xed\xdd\x35\xd5\x90\x8c\x0e\x47\xfd\xa4\xd3\xe9\xe3\x6c\x98\x8c\x28\x77\x99\x1d\xa5\xd5\x0a\x4a\x75\x59\x8e\x86\x5a\xf0\x11\x92\x59\x9e\xf2\x13\xb3\x0d\xc0\xe1\x3d\x19\x76\x47\x6d\xf4\xbf\x10\x61\xe0\x35\x0a\x93\xac\xfd\xd6\x75\x05\xfd\xea\x33\xf6\x35\x41\x1e\xc2\xe6\x90\xe1\x21\x4c\x38\x2e\xd4\xba\x45\xfb\xb7\xb5\x37\xef\x74\x38\x52\xcf\xde\xcd\x93\xf7\xf4\x34\xea\x63\x97\x97\xfd\xad\xa7\xed\x36\xc6\x67\xf4\xe9\xd3\x93\xef\x9f\x39\x0e\x3f\xa5\x4f\x9f\x3d\xee\x7d\xef\x38\xe9\x69\x34\x78\xfa\xec\xf1\x49\x97\x52\xf7\xd9\x93\xa7\xbd\x13\x07\xdc\x98\x55\x6b\xe2\x41\x26\x59\xb9\xeb\xf6\xba\x27\x8f\x1d\x8e\x4f\x4f\x7b\x5d\xdc\x96\x5f\x09\x6e\x3f\x7b\xfa\xf4\xf1\x33\x70\x77\x23\xa3\x59\x60\x92\x76\x3a\xd8\x37\x9f\x0d\x83\xf9\xc6\xd2\x17\x88\xb9\xa9\x45\xda\xe1\xd6\x98\xb2\x33\xd1\xc2\x53\xa9\x88\xf9\xe2\xba\xac\x43\x65\x93\x67\x67\x67\xbd\xae\x23\xd0\x58\x43\xe7\x04\x67\x80\x0e\xad\x01\x35\x86\x09\x54\x00\xd5\x86\x89\xf4\x53\x20\xf1\xba\xe2\x6e\xe2\xe4\xa4\xfd\xfc\xe9\x23\x97\x9d\x9e\x3c\xc3\x1d\xd7\xed\x1e\x51\xd1\xd5\xa7\x56\x8d\x57\xe5\x58\x53\x5d\x90\x10\x18\x4d\x06\x37\x2e\x3b\x0e\xb1\xcf\xce\xce\x7a\x84\xb5\xa9\xf8\xe4\xb8\xcf\xce\xce\x1f\x2d\xce\xce\x7a\xfd\xac\x4d\x63\xcc\x20\xf9\xdc\x0c\xc7\x8d\x9b\xb5\xdd\xf3\x76\x0f\x3f\x62\xc7\x2e\x6b\x4f\xb0\xd5\xd0\xfb\x92\x3b\x2c\xed\x2e\x84\x4c\x48\x48\x2e\xc8\x94\x5c\x8b\xa9\x5f\x15\x44\x7c\x4e\xbb\xe4\x0b\xbd\x22\x6f\xe9\x0c\x50\x82\x79\xb4\xef\xab\xe6\x18\x9f\x76\x41\xf3\xd4\x15\xf4\xda\xed\x67\xa7\x49\xbf\xdd\xce\x70\x69\xba\x33\x7c\x26\x78\x8c\xe3\x7c\x72\xad\x95\x8e\xc9\xb5\x7a\x88\x5c\x2e\x2b\xdd\x68\xa5\x34\x39\xeb\x0e\x92\x76\xcf\xef\xf6\xd3\xd3\x55\x5f\xd2\x68\x44\xcf\x49\x40\x7b\x24\xa7\x71\x3f\x3d\xa3\x2b\x00\x59\x5e\xff\x98\xb8\xee\x84\xba\xd3\x06\x8a\xeb\x3c\xf9\xee\xb4\xd7\x1d\x4c\x3b\x27\x27\xfe\xb4\xf3\xec\xe9\xe9\xc9\xb3\x81\xf8\xeb\x4f\x3b\xdf\x3f\x97\x1f\xdf\x3f\xf7\x63\x7c\x46\xe3\xf5\x7a\x72\x76\xe3\xba\xe3\xce\x39\x3e\x0e\xc4\x96\xfe\xc9\x45\x9a\xc1\x21\x4c\xce\xdb\x74\xf2\x28\x20\x47\xee\xe4\xd4\x0d\x69\x7e\x4a\xdf\x0e\x96\x7e\x7e\x46\xdf\xb6\x17\x83\x85\x9f\x77\xde\x62\xdc\xcf\xc5\xe4\x04\x67\x37\xee\xf8\xd8\xbd\xa0\x71\x27\xac\x83\x09\x1e\xd1\x8b\xfe\x5b\xfa\xca\x3d\xef\x44\x84\x9b\x7b\xb5\x76\x8f\x74\x29\x8d\x30\xb9\x71\xcf\x8f\x39\x3e\x1b\x77\xbe\x54\x6b\x7e\x11\xc4\x20\x32\xc9\xf9\x37\x94\x93\x6b\x2d\xa6\x9d\xb7\xdb\xa4\x4b\xbe\x18\xa5\xcd\x1b\xf7\xda\x9a\xfe\x7f\xdf\x33\xfd\x64\x45\xce\xe1\xf6\x53\x47\x2a\xa5\x2e\xa3\xb7\xa0\x3d\x56\x14\xc1\xe9\x15\x04\xdd\x89\xe8\x4c\xa9\xba\xae\xfb\xed\x76\x80\xc5\x78\x0f\x83\x11\x3e\x85\x79\xbe\x94\x13\xfb\xc5\x9d\xaa\xd9\xcc\x68\x4a\x2f\x35\x8c\xd4\x14\x98\xe3\x7e\x76\x7a\xad\xe6\x36\xa7\xe3\x46\x90\x67\x94\x3b\xce\xf4\x34\x07\xad\xe4\x54\xc2\xcb\x3b\x5c\x4e\x4f\x82\x8f\xdd\x15\xcd\xda\xbd\xfa\xe0\x26\x6d\x2a\xca\xe1\x47\x2b\x21\x10\x94\x40\x47\x13\xd7\x20\xcc\x1d\xa7\xdd\x4e\xce\xc6\xd5\xea\x53\xe3\xd1\x60\x42\x13\x12\xd2\xb8\x0f\xb3\x7d\x41\xc3\x53\x1a\x0d\x96\x7e\x78\x46\x23\x98\xed\xb0\x13\x61\xdc\x0f\xc5\x6c\xbf\xa5\x93\xce\x05\xec\x37\x17\xc4\x8c\xc1\x6b\xf7\xa2\xfd\xf6\x9b\x73\xd2\xc5\x18\x93\x09\xbd\x71\xdf\x8a\xc5\x6a\x65\x4f\x64\x56\x44\x5f\xb9\x09\x59\x91\x8c\xd2\x14\xc3\x20\xb7\xdb\xd9\xa6\xdd\x4e\x48\xbb\x6d\x22\xf5\x5c\x16\xfc\x26\xa7\x77\x2a\xa0\xb9\x8f\x7a\xde\x13\xaf\x87\xc8\x72\x9c\x9f\xf8\x77\xf2\x4a\xd8\xbf\x25\x52\x1d\xeb\xbf\xd9\x10\x95\xf4\x5e\x27\xfd\x9b\xa8\x6b\xb6\x26\xb3\xb1\xcb\x2a\xe3\x54\xe9\x53\xf3\x2e\x01\x09\x19\x01\xb5\x05\x39\xf9\xca\x5d\x7d\xfa\x21\x89\x00\xf4\x01\x00\x2f\x0c\xc0\xf7\xae\x76\x6f\xf8\xa4\x62\x46\xa0\x1a\xd8\x10\xf3\x64\xc6\x4d\x1b\x8c\xdb\xf3\x8d\xb2\xd4\x23\x09\xe1\x84\x61\x0c\x3a\x31\x6d\xd9\x96\xe2\x8d\x8b\x2b\xc6\x7c\x8f\xbf\xc7\x2e\xc3\x24\x71\x7b\x4f\x45\x07\x76\x5a\xbc\x15\x90\xee\xb4\xc6\xb8\xa1\x9f\x0d\x16\x87\x1b\xa2\x2f\x1d\x9a\xca\x37\x59\x35\xaa\x60\x31\x50\x53\x48\xe3\x4d\xe3\xa9\x5f\xa3\xe9\x32\xd6\x99\x7f\x7b\x71\xb6\x69\x90\x54\x2b\x36\x8b\x92\x4c\xa8\xb6\x7b\x4b\xdc\xde\x77\xdf\x61\x70\x6e\xa6\xd2\xcd\x3d\x08\xe4\x7d\x7f\xdf\xb8\x19\xc6\x93\x95\xb6\x44\xa5\xb0\x2d\x45\x18\x7f\x7b\x93\xe8\x47\x7b\xca\x20\x8d\x70\xbc\x29\x06\xbe\xf2\x92\x4a\xc8\xd0\x94\xaf\xd7\xc8\x41\x24\x01\x27\xcd\x14\x29\xc9\xf9\x6e\xd3\xb7\x6c\xb0\xad\xf8\x66\xeb\x75\xd7\x72\x26\x6b\xec\xa5\xd5\x2d\xce\xf1\xc7\xf6\xf1\xb4\xcf\x8c\x08\xa6\xcc\xcc\xc7\xb4\xc7\x1e\xf7\x23\xc7\xa9\xc7\xc3\x8d\xbc\x79\x70\xfb\x77\xb6\x12\x9c\x69\x4c\xcd\x97\x8e\xeb\x69\x84\xa7\xf1\x59\xd7\x71\x62\xc1\x61\xdc\x98\x8e\x0b\x2f\x91\x4b\xda\xed\x2f\x4f\xe3\x7e\xbb\xbd\x54\x1e\x3c\x81\x13\xcf\xc8\x15\x28\xde\x8d\x28\x97\x13\xf4\xcd\x49\x17\x61\x32\xa7\x57\xe6\xfc\x99\xe0\xfe\xfc\x8c\x76\x07\xee\x82\x5e\x15\x87\x96\xb9\xe0\x30\xe6\x7b\x2e\xd8\xa2\x2f\x4a\x90\x09\xa8\x85\xc3\x26\x73\x91\x05\x26\x8d\x66\x24\x13\x4c\x32\x37\x20\x21\x1e\xa4\x6e\x30\x0c\x47\x78\x20\xfe\x95\x6c\x6b\x86\x7d\xf1\x41\x87\xe2\x5f\x32\x1b\xc9\xaf\x99\xe6\x52\xc1\x46\x99\xe8\x97\xc2\xd6\xad\xd7\x0d\x6b\x60\x28\x17\x41\x0b\x4a\x80\x69\x47\x8d\x3a\xb4\xad\xb0\x31\x54\xdc\xcb\x3e\xd5\x6e\x4b\x79\x23\x31\x56\x63\xca\x5d\xbd\xa4\x10\xdf\x98\xba\x41\xea\x55\x9a\xc6\x2c\x48\x8a\xe4\x01\xe2\xd9\x92\x21\x1f\x4d\x82\x38\x67\x48\x96\x52\xc4\xa0\x0b\x45\xf9\x5f\xa3\x24\xe2\x4c\x3e\xda\x42\xc8\x3c\xb2\x57\xbd\x44\x1b\x3b\xb8\x4d\x85\x96\xf3\xe2\x8a\xab\x4a\xd2\xe6\xe1\xa9\x34\xf1\x04\x16\x88\x49\x03\xe3\x18\x44\x6e\x20\xd8\x59\xc1\x66\x03\x7d\xef\xd4\x70\x29\x97\xb9\x01\xc6\x85\x6f\xb1\xd4\x85\xad\x70\x10\xc1\xdf\x46\x56\x9d\xb7\x1b\xc1\x30\x5c\xc8\xc0\x1c\xfb\xdb\x4a\x09\xe8\xe5\x82\x83\xc6\x82\xb9\xc0\x6a\x6b\x4b\x3e\x42\xbf\x2d\x5d\xd5\xa2\xff\xc0\xf5\x54\xf1\x36\x51\xda\x97\x0b\xce\x50\x1c\xf8\x86\x23\x25\xf7\x96\x7d\x90\xa9\x33\x8a\xcb\x86\xd9\x88\x64\x96\xda\x53\xc5\xee\xb1\xee\xac\xca\xe8\xcb\x43\x8a\x1d\x29\xbe\x15\x25\x2d\x86\xf7\xe4\x99\x09\x76\x1c\xae\x63\xd4\x14\xfe\xd4\xf6\xb5\xe8\x7e\xa6\x0c\xba\x9f\x43\x2c\x2e\xf7\xe4\x09\x26\x01\x4d\xbc\xc4\x8d\x30\xc9\x45\xc2\x33\x4c\xc6\x90\x90\x63\x4b\xa3\x61\x9d\x60\x51\x18\x70\xc6\xa3\x39\x5b\x44\xe3\xcf\x2c\x43\x70\x8a\xd5\x2a\xed\x44\x80\x47\x9e\xf9\xce\x44\x33\x77\x2f\xcf\x2f\xcf\x3f\x5d\xbe\xfd\xdb\xdf\x5e\xbf\xf2\xbf\x1d\x86\x01\x0f\x3a\x3c\x9d\x4e\x63\x46\xd1\xb7\xa6\x24\xf9\x16\x8d\xbe\xc5\x1b\x12\xd0\xbb\x1f\xdf\xfc\xf4\xe1\xd2\xb7\xa0\x12\xa4\x65\xff\x0d\xc9\xe9\xdd\x8b\x1f\xce\xdf\xfc\xed\x95\x8f\xc6\x33\x71\x6e\x37\xc5\x52\x4c\xfe\xf2\xfa\xc3\x3b\x1f\x5d\xc5\xcb\xcc\x4e\xfd\xfb\xab\x9f\x3f\xfc\xe4\xa3\xcf\x6c\xb5\x5c\x54\xd2\x5f\xbe\xfd\xe7\x1b\xc8\x09\xd3\x9b\xc4\xce\xfb\xeb\xdb\x17\x1f\xde\xfb\x68\x92\x8e\x97\xb9\x9d\xfe\xe2\xf5\x8f\x2f\xfe\xfe\x09\x7a\x74\xfe\xd3\x8f\x3e\x1a\xc7\xd1\xf8\xb3\x55\x40\xff\x42\x1e\xf4\x33\x58\x44\x08\x93\x0f\x3f\xbd\x3c\xbf\x7c\xe5\xa3\xe5\x42\x0c\x9e\x0d\xee\xd5\xbb\x77\x6f\xdf\xf9\x08\x1e\x13\xdb\xe9\x3f\xfc\xf8\xf2\x95\x8f\x66\x51\x58\x2a\xfd\xfe\x87\xb7\xff\xf4\x51\x3e\x4b\x6f\xac\xd4\x0d\x19\xd3\xe1\xdd\x8b\xd7\xe7\xef\xdf\x7f\x7a\x73\x7e\xf1\xca\x47\x61\xb0\xca\x11\x79\x73\xfe\x8f\x4f\x7f\xfd\xf0\xe6\xc5\xe5\x8f\x6f\xdf\xf8\xe8\x42\x26\xbc\xbf\x7c\xf5\x93\xdf\xdb\x90\x52\xf9\x79\x9a\xf0\x59\xad\xc6\x6a\x47\x8d\x15\x0b\xb2\xdd\x15\xba\x95\x1a\x21\x1b\x07\x21\xbb\xa7\x4e\x77\x33\x22\x31\xbd\x5b\x2e\xfc\xc7\xdf\x91\xc7\xdf\x89\x01\x43\x44\xcc\x8c\xff\xa4\x4b\x9e\x74\x7d\x04\xb3\x44\x62\x36\xe1\xfe\xe3\xe7\xe4\xf1\x73\x1f\x89\xdf\x88\x40\x90\x0a\xff\xf1\xf7\xe4\xf1\xf7\x3e\x82\x0f\x44\x78\x70\xe5\x7f\x4f\xbe\xf7\x11\x0f\xae\x10\x91\x16\x54\xfe\xc9\x73\x72\xf2\xdc\x47\xf2\x0b\x11\x96\x70\x96\xf9\xbd\xc7\xa4\xf7\xd8\x47\xf0\x81\xc8\x22\x98\xb2\x0f\x0b\xff\xf1\x63\xf2\xf8\xb1\x8f\xe4\x97\x4c\x7d\x29\x30\x79\xfc\x84\x3c\x7e\x22\xd3\x5f\x02\x36\xa0\xb4\xf5\x7b\xcf\x48\xef\x99\x98\x9b\x48\xe0\x33\x4e\x13\x9e\xa5\xb1\xdf\x7b\x4e\x7a\xcf\x65\x74\xa7\x2c\x8d\x11\x01\x07\x53\xfe\xe3\x13\xf2\xf8\xc4\xd7\xde\xa6\xb8\xff\xdd\x13\xf2\xdd\x13\x1f\x71\x44\x42\x16\x33\xce\xfc\x27\xcf\xc8\x93\x67\x62\xcc\xc4\x17\xda\x80\x5d\xbc\x58\x72\x39\x22\x6a\x72\xcd\x9c\xe9\xa9\x30\x03\x3c\x22\x0b\x7a\xb7\x21\x13\xf1\x4f\x48\xef\x44\xb5\xff\x27\x4d\x20\x5c\xa2\x7a\xb8\x74\xd4\x23\x61\xb0\xfa\x47\xc4\x6e\x7e\x60\x41\xc8\xb2\xbf\xca\x64\x74\x71\x71\x71\xd1\xfa\xf9\xe7\x9f\x7f\x46\x84\xdd\xf2\x2c\x90\xe9\xb9\x28\x9f\x73\x06\xef\x6a\xfc\x1e\x99\x47\xc9\xcb\x80\x33\x91\x3a\x0f\x6e\xf5\xcf\x65\xce\x5e\x48\xbf\x7b\xfe\x51\x97\x8c\xd3\x38\x0e\x16\x39\x18\xb8\xc7\xe9\x38\x88\x21\x6a\x1e\xfc\x70\x31\x51\x5b\xa7\xae\x1a\x46\x79\x70\x15\xb3\x50\x7c\x43\x63\x2c\x29\x7f\x47\xe3\x34\xc9\x7d\xe8\x89\xd8\xa3\x5b\x93\xa0\x33\x8e\xd3\xf1\xe7\x4e\x8a\x88\x58\x4f\x26\x31\x88\x59\x12\x06\x19\x22\xcb\x85\x4e\x0b\xb2\x2c\xbd\xe9\x18\x32\x2a\xa5\x4a\x62\xd2\x2f\xbc\x0c\x94\x19\xbb\xce\xd2\xa4\x23\x09\x2b\x61\xb7\xbc\x9a\xa3\xe9\x2b\x0d\x83\x55\xb5\xed\x0e\x78\xd8\x13\x98\x8d\x63\x16\x64\x3a\x5b\xcd\x24\x01\xe7\x69\x3a\x51\xce\xa8\x38\x5a\xa5\x31\x8f\x16\xa2\x8b\x12\xe4\xdf\xd2\x16\x17\xff\x85\xc1\xca\xc0\x79\x21\xfe\xb4\x64\x80\x88\x28\x4d\x0c\x28\xf0\xab\xd8\xe2\x33\xd6\xd2\xfc\x58\x96\xb9\x10\xf4\xe1\xa3\xf7\xf0\xd1\x82\x2f\xd9\x57\x95\xf1\x93\x7e\xd8\xa6\xb2\x44\x47\x55\xd6\x1b\x76\x6b\x6a\x48\x60\x3f\x03\x0a\x0a\x96\xf8\x90\xa0\x64\xb2\x81\x24\x33\x04\x20\x99\x01\x70\x64\xa2\x04\xf3\x12\x48\xd4\x00\x92\x9f\x12\x94\xce\x32\xc0\x74\xa6\x00\xa7\x33\x01\xa0\x5d\xeb\x05\x4b\xf8\x32\x5b\x59\xd5\x54\x8a\xac\x67\xb2\xa1\xa2\xc9\x12\x03\xf5\x43\xba\x14\xa8\x47\xe3\xcf\x2d\xf1\x13\x91\x28\x19\x67\x6c\xce\x12\x2e\x73\x7e\xd4\x9f\x2a\x3b\x64\xa5\xec\x97\xac\x9c\x2d\x40\x5e\x44\xc9\x52\x10\x23\x00\x95\x1f\x16\x58\x9d\x5b\x00\xd6\x45\x0c\x68\x5d\xa4\x00\xae\x8b\x08\xf0\xef\xd9\x38\x4d\x42\x05\x5e\x7e\x58\xe0\x75\x6e\x01\x5e\x17\x31\xe0\x75\x91\x02\xbc\x2e\x22\x37\xe3\x9f\x58\x16\xa5\xa1\x8f\x2e\xe1\xab\x25\x3f\xf5\xd4\x5d\xc2\xe2\x53\x13\x27\x3e\xcc\x9c\xc2\x02\xd4\x33\x1a\x48\x76\x95\xb3\xf7\x20\x78\x00\xeb\x88\x42\xf6\x97\xd5\xfb\x28\x64\x8a\xf1\xe4\x6f\x27\xff\x64\xec\xf3\x4b\xb5\xec\x45\xaa\x5e\x3d\x22\x1d\x96\xfc\x75\xc4\x6e\x2e\x20\xc8\xab\x64\x77\x62\x89\x5c\x05\xd9\x4f\xe2\xb8\x24\x50\x17\xbc\x11\x98\x08\x22\x57\x4b\xce\x81\x3f\x88\x6d\xf1\x12\x16\x90\x68\x75\x96\xde\xc0\x92\x29\x3e\xc4\x72\x39\xea\x6d\xc8\x4d\x14\x4e\x19\xd7\xde\x25\x04\x53\xbb\x9b\xa5\x59\xf4\x25\x4d\x78\x10\xfb\x28\x58\xf2\x14\x91\x6b\x96\xf1\x68\x6c\xbe\x4d\x2d\x70\xf2\xed\xcb\x20\x43\xe0\x10\xf1\x1d\x0b\xc2\x34\x89\xa1\xd1\xcf\x8c\x2d\xde\x2e\x58\x22\x7e\x83\xe0\xf0\x36\x79\x3f\x4b\x6f\x04\x17\x94\x6f\x42\x75\x21\x75\x81\x21\x3f\x57\x7f\x89\x92\x30\xf7\xc5\xae\x67\xa9\x3d\x8c\xe7\x0c\xd9\x70\xd9\xc3\x85\xba\x0b\xfb\x24\xb8\x9f\x74\x13\x03\xdf\x53\xc6\x2f\x52\x08\x98\x55\x0e\x6d\x28\x41\x78\x93\x28\x09\xa5\x5c\xa2\x65\x37\xec\x45\xb9\x8b\xfc\xeb\x28\x8f\xae\x62\xa6\x6d\x32\x45\x01\x97\x79\xe3\x38\x4d\x98\x0b\x77\xb3\x3c\x0b\xc6\xdc\x7d\x4e\x50\x88\xf4\x43\x93\x4a\x21\x08\x2b\x2f\xdf\xad\xcb\x9d\xc2\xc5\x04\xcd\x11\xc6\xe4\xa8\xbb\x91\xbc\xf7\xde\xce\x49\x64\xc5\x64\xb9\x98\xfc\x27\x7a\x2a\x3a\xb1\xab\x93\x66\x24\xb6\xf7\x54\x6f\xf5\xad\xe5\x02\xfd\x97\x4f\x67\x8f\xa0\xd5\xae\xe9\xec\x11\x34\xab\x75\x0b\xf6\xcc\xff\xce\x8e\x29\x9c\xb7\xf6\xc9\xee\xb8\xe9\x18\x88\x92\xff\xe9\xee\x28\xc3\xf5\x1d\xf8\x86\x1a\x5f\x29\xe8\xfe\x77\x22\xac\x26\xc0\xe0\xaa\x04\xe9\xff\x4e\x64\xed\xd1\xbd\xb0\x31\x7e\xb9\x17\xaf\xfa\x4f\x0e\xb0\x41\x57\x9e\x5e\x1a\x1c\xb0\x58\x8d\x19\x83\x86\x28\x14\xb2\xf7\x51\x17\x6f\xf4\x59\xe8\xf0\x8a\x86\x0d\xa8\x40\x90\xfb\x41\x28\xf7\xda\x52\x1d\x6c\xe9\xb5\x5d\xfe\x5b\xef\x8a\x27\x52\x65\x10\x40\x53\x14\xd9\xd2\x0a\x1a\x7d\x8b\x3d\x38\x82\x6b\x14\x1b\xfc\x1f\x35\x22\x05\x43\x5b\x9d\x2c\x05\x43\x9d\xc2\xf6\x03\x04\xf2\xb9\x6a\x5d\x54\xbd\x5a\x4e\xc5\xbe\x1e\xc4\x71\x7a\xf3\x63\xb2\x58\x72\x29\x4f\xd9\x27\x1d\x21\x3f\xfd\x28\xe6\xee\x3a\x88\x73\x3b\x43\x08\x93\xf6\x11\xc8\x7c\x0b\x79\x48\x9f\x97\x00\xf2\xc5\x32\xe6\x51\xa8\xcf\x61\xfa\xe3\x3d\x5b\x04\xe0\x12\xc3\x47\x04\x6d\x36\x6e\xe0\x05\x64\xec\x05\x15\x2d\xbe\x74\x61\x52\xc4\xf3\x2e\xb4\x8c\xbf\xfc\xff\xe1\xdd\x43\xcd\x23\xc6\x25\x9b\x2f\x84\x4c\x9e\xce\xa3\x64\x99\xb7\xfe\x92\xa6\x3c\xe7\x59\xb0\x78\xf2\x6d\xde\xca\xd8\xbf\x97\x51\xc6\x72\x55\xd9\x53\x7f\xcd\xcb\xde\x28\x19\xc7\xcb\x90\x85\x2d\x19\x25\xa3\xb5\x0b\xd6\xff\x2f\xb8\x0e\xde\xc3\x53\x6a\x4f\x3e\x3d\xaa\x2b\xce\x54\x2b\x93\xc4\xfb\x05\xac\x08\xb5\xfd\x43\x0b\xe1\x61\x77\x64\x59\x43\x80\x57\x8d\x61\x77\x74\x7a\xe2\x38\x7c\xd8\x1b\x9d\x7e\xbf\x5e\xf7\x54\x24\x23\xc7\xf9\x1e\x7e\xf5\x46\x22\xef\x64\x74\xda\x5b\xaf\x45\xfa\x19\x7d\xf2\xc0\xce\x07\xbc\x15\xb3\x20\xe7\xba\xf7\xd7\x8f\xbd\xae\xd7\x6d\x5d\x2d\x45\x7a\x9e\xb7\xf8\x2c\x48\x5a\xd7\x4f\x44\x22\xc2\x1b\x21\x32\x34\x8d\xff\x1c\xe8\xf0\x81\x28\xc8\xca\xde\x2f\xb9\xd7\xba\xd0\x3f\x7f\x85\x59\x90\x5a\x3f\x05\x5c\xdd\x47\x56\x86\x39\x11\xc3\x4c\x4f\x1c\x27\x11\xe3\xdc\x7b\xbe\x5e\x27\x30\x98\x8f\xbf\x76\x30\x4d\x97\x5a\xd7\x27\x5e\xef\x79\x7d\x40\x1f\xcb\x01\xb5\x34\x95\xda\x58\xac\xc9\x05\xcf\xfb\xd5\xfc\x2a\x8d\x1d\x07\xe5\xf0\xa3\x96\xe3\x45\x5c\x7a\x94\x19\x34\xbd\x4e\xd1\x37\x7e\x8d\x8e\x38\x1c\x67\x57\x83\x0c\x9c\x5d\xf1\x6c\x09\x61\x4f\x29\x35\xe9\x47\xfa\x77\xa1\xf7\x1d\x68\xec\xfc\xe2\x8e\x91\xef\xf2\x5f\xf6\xdf\xe9\x8b\x53\x0d\x8c\xc1\x5b\x79\x47\xd4\x5a\x72\xc7\x61\x0d\x41\xcc\x99\x0c\x62\xce\x37\x1b\xd7\x72\x6b\x60\x39\x64\x72\x4b\x4e\x0c\xf8\x16\x27\x03\x2f\xc0\x63\x4e\x6b\x1c\xc4\x71\x2b\x68\x8d\xe3\x20\xcf\x5b\x41\xde\x0a\x0c\x36\x48\xba\x58\x2b\xb9\x6f\xd4\x76\x7c\x75\x05\x77\x44\xe5\x5e\x6d\xa7\x05\x3b\xb5\xda\x95\xd2\xa3\x6f\x41\x6d\x2d\xd5\xda\x69\x5b\x2b\xb3\x37\x64\x5c\xd3\x65\xb7\x23\x5b\x87\xdd\x8e\xca\xba\x6b\xf9\x5d\xd6\x59\xb7\xa3\xb2\xae\xba\x1d\x6d\xd1\x51\xb7\xa3\xb6\xa5\x94\xae\xea\xa4\xdb\x51\x59\x17\xdd\x8e\x6c\x1d\x74\x3b\xb2\x75\xcf\xed\x68\x43\xe2\xff\x93\x74\xce\xcb\x3f\x74\xce\x35\x9d\xf3\xe2\x20\x9d\xb3\x56\x37\x6f\xc8\xec\xbf\x47\xe7\x9c\xfd\xa1\x73\xfe\x43\xe7\xfc\x87\xce\xf9\x0f\x9d\xf3\x1f\x3a\xe7\x3f\x74\xce\x7f\xe8\x9c\xff\x0b\xa6\xf3\x0f\x9d\xf3\x1f\x3a\xe7\x3f\x74\xce\x7f\xe8\x9c\xff\xd0\x39\xff\x1f\xaa\x73\xee\x57\xf5\x3e\x96\xbe\xea\x4a\xea\x71\x12\x69\xa0\x7f\xa5\xdc\xe2\x7c\x4a\x17\x22\x57\x79\xd9\xf9\x34\x65\xfc\xad\x4c\x70\xb9\x2e\xc1\x62\x10\xc0\x28\x23\x16\xe5\x9b\xb8\xe7\xf2\x53\x1e\x1c\x39\x0b\x8b\x74\xdd\x01\xcb\xf5\xeb\x32\xc9\x19\x2f\xe2\xa5\x68\xf3\x53\x13\xb2\x5c\x0e\xb3\xf9\x5c\xe6\xec\xe4\x09\x0c\x88\xed\xd0\x76\xcc\x97\x41\x2c\xdb\x2b\x39\x99\xcd\x72\xa6\x8e\xaf\x56\xb2\x8a\x46\xfa\x0f\x25\x5c\x5a\x39\x17\x51\xa2\x53\xdf\x80\xb1\x31\x55\x68\x7d\x8a\x04\x5d\x68\x0d\xda\x95\x65\x12\x2a\x72\xaa\xef\x62\x95\x57\x27\x3d\x48\xa0\xe1\x71\x11\x0f\xb2\x29\xe3\xda\x6a\xb2\x5f\x2e\x22\x56\x80\xca\x91\xbb\x9a\x0c\x06\x52\x2a\xa4\x82\x16\x1c\xa9\x20\x39\x45\x29\x94\xb0\x20\x63\xb9\x34\x4e\x1e\x94\x01\xcb\xe5\xa6\x40\xfb\xcc\x35\x2e\x9a\x1a\xa7\x6c\xd8\x95\x9e\x72\xec\xd5\x50\x9d\xba\x6a\xbe\xe6\x4b\xe0\xd5\x98\xb3\x24\x74\xf5\x64\x6a\x3a\x2a\x5a\x08\x2e\x53\x4d\x4a\x1a\x8f\x54\x93\x96\x5d\x03\x9b\x61\x8f\xb8\x22\x23\x29\x62\x15\x43\x60\xba\xaf\xd8\x85\x8c\x83\x62\x8d\xa3\xe3\x94\xcb\x79\xd7\x41\x6c\x5c\x5f\xeb\xb7\xdc\xb2\x99\x9c\xf1\x7f\x04\xf1\x52\x71\x82\x4f\x40\x37\xb0\x68\x5f\x1a\xf6\x50\x07\x81\x49\x57\x49\x18\x1a\x6b\xcf\x52\x69\x38\x4e\x23\xaa\x45\x9c\xa3\x02\x68\xc0\x79\xe6\x22\x78\x77\x30\x4b\xe3\x50\x70\x44\xd5\xa7\x2a\x62\x0d\xed\x90\x6e\x65\xd1\x2a\x5f\xe7\x0a\x82\x14\xa3\x37\xa4\x44\xb2\x52\xbf\x58\x0b\x9b\x5f\x66\x68\x9f\x26\x51\x1c\x43\xff\x75\x03\x22\x41\xf0\x2c\x08\xa8\x50\x02\xa8\xd1\xac\x46\x6d\x2d\x82\xca\xc0\x2a\x1f\x88\x95\xe6\xdb\xe4\xc6\x47\xf2\xc5\xad\xd8\x5d\xcb\xee\xd9\x4d\x77\xca\x7c\xce\x71\x7a\x7a\x44\x25\x08\x3d\x91\x6e\x46\xdd\xac\x71\xdd\x81\x2e\x15\xb7\x11\x41\x85\x3f\x36\xf3\xd8\xbd\xc6\x3e\xa0\x20\x41\x56\x59\x44\x2a\x09\xc7\xe4\x63\xfe\xe8\xcf\xe0\xd7\xdb\x5e\x3b\x45\xc0\xeb\x1e\x6e\x64\x83\x76\x01\xec\xbb\x0d\xdc\xef\x5e\x36\xba\x65\x01\x54\x49\x34\x33\xb1\x52\x44\x0a\xcf\xa2\xe9\x94\x65\x66\x61\x54\x78\xb8\x3d\x4c\x44\xd7\xfc\x94\xa4\x3c\x9a\xac\x5e\x5d\x8b\x25\x7e\x27\x66\xd9\xbf\xf2\xe0\xcb\x93\xea\x71\xa2\x77\x9d\x34\x06\x15\x9d\x9f\x6c\x14\x72\xb2\xbe\xa4\x31\xe9\xf5\x9f\xd1\x42\x78\x51\xea\xbf\xf2\x1c\xcb\x44\xdd\xf4\x2c\xc8\x2f\x95\xba\xd2\xc5\x8e\xc3\x3c\xfe\xa5\x52\x5e\x6b\x33\x31\x29\xa8\x41\xe7\xe9\xf3\x98\xa8\x38\x07\xc5\x49\xee\xc2\x2b\xf4\x2c\x5d\x26\xa1\x5b\x24\xe2\xe3\xe6\x8a\xf8\xd1\x96\x74\x2f\x07\x45\x49\xee\x9a\x25\x17\xe5\xff\x10\x07\x78\xf0\x64\xa6\x23\x06\x18\xca\x2e\xef\x8d\x66\x16\x21\x47\x93\x1f\xfa\xf9\xe7\x9f\x7f\xee\x5c\x5c\x74\x5e\xbe\x44\x35\x46\x6b\x06\x8d\xec\x5e\x11\xf5\xd5\x70\xd6\x2b\xee\xa0\x52\xda\xed\xa7\xa7\xf5\x32\xfd\xb4\xdd\xc6\x59\x9b\x22\xe5\xbe\x4f\xe1\x9d\x8e\x76\x2c\x8d\x32\x1e\x75\x79\xa3\x9f\xd1\xac\x69\x99\xc8\x18\xb1\x19\x2d\x0f\xd0\xf6\x86\xfa\xbf\x13\x95\xab\xd5\xa7\x44\x0b\x43\xb3\x07\x2d\x81\x4a\x9f\xf4\x94\x59\xcb\x42\xf6\xbe\x3c\x76\x96\xfa\x67\x70\x48\x6b\xcc\x06\xec\xef\x35\x4c\x08\xb5\x2d\x5e\x33\xd0\xce\x62\xf7\x98\x06\xbc\xd7\x00\x6f\x47\x1c\x6e\xaf\x1a\xf0\xae\xec\x1e\xf2\x9e\xad\xd8\x3b\x0a\xcf\x0c\x2e\xf7\xa4\xd4\x84\x4b\x3b\x2f\xc9\x68\x32\x68\xdc\xaa\x13\x0c\x4a\xb9\xd2\x69\xab\xd8\x44\xc5\xb4\x7b\x39\x4f\x17\x3f\xce\xe7\x2c\x8c\x02\x0e\xf7\xa4\xc1\x54\x06\x98\xc2\xe4\xa8\x57\xc1\xac\x90\x7c\x4b\xd8\x59\x41\x76\x0a\x89\xe7\x6e\x43\x66\x84\x57\xfb\x66\xf1\xb2\x86\x17\xb4\x66\xfe\x32\x8f\x7f\xa9\x4a\x0c\x35\x6e\x67\x1e\xaa\x6e\xcb\x06\x0f\x74\xcd\x99\x15\xb4\xa2\xfc\x95\x3c\x5a\x54\xdd\x33\x36\x3e\xe1\x64\x05\x5b\x69\xbc\xdc\x35\xd0\x5a\xec\x76\xc1\xc6\x3c\x6f\x05\xad\x3c\x4a\xa6\x31\x6b\x8d\x67\x81\x38\x5e\xb3\x4c\x39\x93\x6f\x2d\xb4\xb7\x79\x84\x75\xc0\x72\xfd\x36\x70\xa5\x9f\xf6\x75\x0c\x57\xb7\xc9\xb1\x70\x03\xf4\x33\xc2\xf2\x45\xe0\xc5\xbe\x35\x2e\x74\x8d\xf0\x9e\x1a\xa5\x77\xd0\x45\xfd\x50\xd7\x9f\x21\x08\x38\x8d\x7e\x78\x18\x9c\x99\x86\x33\xdf\x17\xf3\xb9\xae\x91\xef\x5b\x23\xd7\x35\x02\x85\xeb\xf9\xc3\x70\x0d\x10\xae\x3c\xa9\x3c\xea\x6d\x9a\xc9\x7b\x5b\xe4\xb3\x82\xce\xa0\xeb\x4a\x2d\x62\xa7\xce\x1b\x53\x73\xd4\xb0\x8e\x5e\x56\x64\xd6\x6d\x0d\xad\x1a\x41\x5e\x34\xa6\x86\xb5\x86\x4a\x87\x94\xbd\x0e\x76\x98\x24\xf4\x6e\x53\x84\x83\x13\xfc\x4e\xd5\x77\x9c\xd2\xa7\x6d\x28\x21\xcd\x35\x1c\xe9\xa6\xa5\xe0\x22\x09\x29\xd5\x00\xc7\x7b\x2c\x18\xcf\xca\x02\x50\xdd\xc7\x4a\x26\x2d\x1c\x50\xdb\xf2\x7c\xe8\xf1\xf4\xc3\x62\xa1\x27\xb6\xcd\x4c\xfc\x51\x6b\x7b\x1d\x66\xa3\x41\x32\x64\x23\xf8\xe5\x4b\x8d\x47\x4b\x24\x6c\x30\xf8\x81\x2a\x8d\x8d\xc5\xe9\x4b\x7c\x83\x79\x22\x9f\x52\x5a\xde\xb1\x84\x04\x26\x25\x14\xf9\xd7\x8b\xf2\xf7\x10\x03\xc9\x53\x7b\x01\x5e\xaf\x8f\x74\x91\x23\x93\xaa\xa7\x49\x0f\xb2\xde\x77\x58\x75\xaa\x84\xa0\xf4\xa1\x72\x94\x61\xf8\x0e\xad\x90\x79\xbd\x0b\xf2\x15\xba\x7f\xa7\x92\x96\x17\x44\xee\x44\x3e\x2b\x14\x2d\x65\x91\x4c\xef\xee\xb5\x2d\x4c\x1c\xb3\x40\x97\x60\x23\x52\x3e\x54\x19\x3f\x56\x55\xf5\x03\x08\xa7\xf3\xe0\xd6\x6d\x56\x41\x10\x99\x1f\x25\xee\xe3\x46\xf5\x45\x9b\x99\x7d\x7a\x9b\x5e\xb1\x75\xd6\x0a\xa3\x6b\x84\x95\x12\xcf\x9b\x44\x31\x17\x1b\xb9\x55\xa4\x83\xda\xf1\xb0\x09\xfc\xc8\x2b\xcc\x37\xb0\x3a\x4e\x56\x7b\x1f\xe5\x3f\x26\x2f\xed\xeb\xfb\x06\x57\xc2\x47\xe6\xd0\x5b\x9c\x62\xed\x2a\xc3\x66\x99\x78\xd4\xd0\xd4\xab\xe4\xd0\x96\x6c\x53\x82\x03\x1a\x7a\x69\xeb\xe3\x0e\xeb\x13\x54\xb1\x9a\xfa\x61\x67\x57\x0e\x68\xc0\x56\x09\xde\x07\x1f\x0e\x27\xd4\xb6\xf7\x52\x7a\x6c\x4f\x1f\x5c\x70\x39\x92\xde\xf6\xe9\x71\x1c\x04\x56\x91\x89\x3e\x6e\xd4\xe6\xbc\x08\xe8\xd6\x04\xcc\x9e\x01\x0b\xd6\x51\x01\xcc\x9e\xd5\xdd\xb0\x94\xe9\x89\x60\xae\x51\xfe\x17\x30\x9e\x6c\x2e\x51\x44\x69\x6c\x04\x23\xcd\x56\x24\x98\xf3\x09\xd7\x61\x36\xab\x05\x76\x43\xa9\xdf\x64\x5b\xdd\xeb\xd4\x8f\xa7\xf5\xf2\x66\xc7\x15\x9c\x7f\xe5\xe2\x7d\xe6\x04\xa6\xdf\x71\xc4\xae\x2a\x5a\x5a\xaf\xd1\x5c\xff\xc8\xe1\x07\x6e\x9a\x27\xa8\xb5\xd7\x3c\xed\x03\xbf\x3e\x77\x7b\xc0\x6f\xd4\x7d\xef\x6c\x48\xef\x6f\x12\x5a\xd3\x6e\xd8\x0c\xd4\xda\x23\xe5\xe1\x1c\x88\x85\xdf\x30\x26\xb5\xdd\xc3\xae\xd4\xb2\x0c\x7b\x23\x13\x89\x30\xa3\x47\x5d\x71\x0a\xc0\x98\x64\xa6\x13\x1b\xbd\x16\x2b\xeb\xab\x7c\xf4\x68\xf2\x9e\x5e\x56\xf6\x19\x74\xcb\x15\x07\x99\x17\xe5\x4a\x97\xca\xc0\x85\x4e\x55\xc3\xca\x30\xf6\xd9\x4e\x18\x2e\xc3\xa4\x2a\xe2\x2b\x63\xc4\x86\xf0\xaa\xd2\x39\x25\x35\x21\x70\xd5\x8f\x54\xff\x88\xf4\x8f\x80\x0e\x47\x24\xa7\x77\x1b\x32\xa6\xcc\xbb\x99\x45\x63\xe9\x92\x0c\xdc\x23\x4c\x86\xe3\x11\x45\x0b\x44\x26\x78\x52\x71\x8c\xe0\x0a\xf2\x40\x0b\x31\x7f\x93\x61\x32\x72\x1c\x37\xd0\xee\x11\x88\x42\x9c\xbb\x09\xe9\x75\xf1\x11\xa5\x63\xc7\x71\xf3\x61\x32\xa2\x47\x5d\xe5\xb8\x0a\xc0\x57\x8f\xcb\xd2\x3c\x02\xd7\x08\x4a\xe7\x34\xa2\xd0\x14\xf3\xb3\xb1\xb6\xc4\x32\xa5\x89\x65\xbb\xae\x75\xc4\x94\xd2\xc0\xb8\x0a\x5f\x8a\x5e\x53\x9a\x0e\xd3\x22\xe4\x8d\x76\x93\x76\x24\x06\xd3\xa4\x9f\xf4\xb3\x33\xda\xed\x67\x9d\x0e\x06\x33\xd9\xe5\x30\x1d\x66\xa3\x51\x94\xb4\x72\x8c\xef\x22\x41\xcf\x32\xcc\x4b\x34\x71\xa5\x67\x9d\x6d\x98\xe9\x70\x30\xe0\xc0\xd2\xb8\x53\x82\x08\x74\x70\x9a\x2d\x1f\x62\x19\x04\x38\x66\x09\x7f\xa9\x42\x8f\xd7\xb6\x6b\x30\x5c\x2d\xd1\xc5\x64\xa8\xa6\x77\x44\x51\x86\x48\x68\x3e\x1d\xc7\x2d\x3e\xe8\x51\x8f\x3c\xac\x45\xe0\x70\x7f\x8b\xae\x59\x52\xd9\xb4\xcd\x51\xff\x6e\xa3\x62\x5c\x18\x47\x81\x6a\xa1\x97\x96\xb1\xbc\x6b\xcd\x1a\x35\xf4\xb8\xcf\x8a\x6d\x0d\x9c\xe9\x6f\xd9\xe8\x21\x22\x15\xc6\xe4\xe8\xc8\x76\x62\x9f\x14\xd1\x27\xaa\x62\x6f\x81\x7d\x65\x9f\xb6\xb0\xdf\x89\x76\x02\x92\x95\x68\xf8\xc0\x76\xed\xcb\x8f\x2d\xce\x57\x0d\xc1\xc8\xbe\xae\xd7\xe8\x75\xeb\xf5\x25\x22\x92\x9e\xfa\xb5\xd3\x9e\xe5\xae\xf2\xd8\xfd\x38\x1c\xfe\xcf\xc7\xe1\xe8\xd1\x08\xaf\xdd\x8f\x1f\xf1\xc0\x7d\x7d\xf9\x7e\xfd\xfa\x72\xfd\xfa\xf5\x40\xfc\x7f\x1d\xdf\xf5\xc8\x93\x0d\xde\x12\x79\x82\x17\x97\x46\x4a\x83\xfb\x12\xce\x43\x5e\x9c\x26\x53\x31\x2f\xb2\x45\xe0\x6a\x6c\x83\x71\xc3\xa5\x5c\x65\xf3\xb1\xcc\x4d\x07\xdb\xb3\xd4\x39\x06\xfb\x5a\x4f\x6e\x83\x34\xbb\x29\x03\x2f\x89\xdb\xf3\xeb\xea\xae\xe6\xf2\xd2\xa9\x4c\xad\x70\xed\x36\xf2\x90\x73\xf5\x69\x4f\xb5\x54\x2a\x5f\xc4\xc1\x1b\x7a\x8f\x06\xa3\xe3\x29\xdc\x3a\xd8\xba\x83\xd3\x1e\x69\x3a\xee\xea\x93\x45\xfd\xfa\xf2\x04\xd7\x2b\x5c\xec\xaa\xd0\x6b\xa8\x10\xee\xaa\xa0\x75\xe1\x87\x9e\x6a\x9a\x2a\xd9\x5a\x59\x7d\x0a\xac\xdc\x80\x69\x82\x23\xdd\x2a\x8f\x99\x32\xfe\x3a\xc8\xf9\x4f\xe2\x38\x13\xee\xd4\x15\x28\xc5\xe7\x4c\xdd\x6d\x97\x6b\x81\x97\x4d\xb7\x26\x4c\x37\x97\xdb\xdd\x84\xd9\x21\xca\xb0\xcc\xc6\xde\xb0\x35\xab\x40\xb5\x46\xc1\x68\x24\x08\xb6\x5e\x6b\xb7\x54\x83\xcc\xd5\xf7\x8e\xa5\x9b\x92\x41\xe6\xf1\x2f\x2e\xab\x2f\x09\xd2\x74\xd9\x52\x49\x34\xb6\x9a\x64\xcb\x4d\x8b\x9f\x7d\x35\xe8\x2d\xf7\x3b\x7c\xd7\xfd\x0e\x2f\x8f\x9d\x7a\xcd\xb1\x65\xd8\xe5\xf9\x57\x45\x31\x82\xa3\xae\x8a\xc0\xd8\x70\x09\x5a\x36\xdb\xac\xaa\x41\xc5\x90\x07\xd9\x74\x29\xa6\x29\xaf\x38\xaf\x2b\xa3\x5a\x86\x03\x5e\xf0\xb4\x37\x33\x4b\x87\xba\x45\x6f\x5a\xaa\xdb\x72\xb1\xa5\x3f\x55\x40\x4a\xfa\xd2\x5d\x2d\xd3\x8a\xfc\x97\x36\xe8\xad\xef\xe9\x58\x45\x9b\x5d\x6a\x4d\xba\xa0\x2f\x07\x00\x97\xdb\xd8\x96\x07\x3f\xfa\x5a\x1f\xcb\xf1\x52\x9f\x45\x77\x5a\xf9\x2c\x5d\xc6\x21\x04\x1a\x4d\x5a\xca\xb9\x1a\xee\xef\xb0\x21\xd0\xef\xde\x60\x5f\xbb\x4f\x2b\x06\xd7\xcf\x5a\xcb\x95\x0c\xd9\xc8\x71\xc4\xbf\x2e\xc7\x9b\xaa\x74\x52\x51\x20\xa9\x77\x4d\xe0\x16\xae\x4b\xee\x25\x84\xda\xc5\x76\xf3\x2d\xdd\xc0\xe6\x0b\xd2\x23\xdb\x3d\x77\x69\x78\xcb\xcd\x12\xbc\xee\x53\x0e\x2b\x1d\xa7\x41\x5f\xef\x38\x47\xa5\x23\x05\xc4\xb7\xb1\xe7\x0d\x54\x6f\xcd\xb3\x26\xef\xbf\xac\x59\xd2\x8f\x15\xd3\x84\xb5\xd2\x49\x6b\x08\x67\x07\x13\x18\x56\x3e\x06\x6c\xa5\x19\xc0\x1c\x19\x12\x35\x4c\xdb\xf0\x2c\x6b\x80\xea\x47\x97\xea\xad\x49\x43\xec\xe5\x83\xd6\xa4\xac\xbf\xc5\x23\xa5\x38\x6c\x36\xac\xd0\xf5\x1a\xe2\x7e\x6d\x1b\x18\xed\x1b\xdf\xbe\xe1\x90\x17\x1a\x69\xa6\xd7\xaa\x0f\xce\x0a\xad\xc1\x43\x6d\x56\x5d\xb4\xaa\x6b\xac\x6e\xb7\x64\x0e\xec\x15\x93\x97\x0a\x03\xac\x5d\x26\x1d\x3a\x38\x1a\xc2\x96\xe1\x69\xee\x7e\xc2\x6e\x24\xbb\xae\xf7\x7f\x3b\x83\x32\xb8\xb2\xea\x82\xab\xbd\x3a\x7a\x78\x77\x1a\x80\x1d\xd4\xb3\x86\xfa\x87\xf5\xb2\xa9\x37\x95\x0e\xdb\xc2\xeb\xc3\x7b\x6a\x43\x01\x6e\xdc\x93\x2c\xa0\xb2\xba\xc1\xf9\xe2\x16\x2a\xb6\x41\xd8\xbd\x4c\x5a\x81\xa8\x25\x68\xb9\x42\xc3\xb5\xee\x96\xfa\xd2\x20\x11\xec\x47\xc6\x61\xb3\xb6\xf8\xfe\x3d\x6a\x87\x8a\x72\x60\xf6\x8e\xea\xe6\x55\x2e\x57\x33\xda\xb2\x33\x61\x60\xf9\x1e\xad\x35\x58\x0d\x1c\x75\x1b\x36\xc9\x5d\xd3\x51\x02\xd8\x34\x1f\x3b\xa8\xae\x84\x8b\x1e\xf2\xd2\x29\xbb\x30\xd6\x6c\x52\xc2\xd6\xf1\xaf\xd0\x6c\xa3\x92\xfd\xd0\x09\xb2\xa1\xec\x98\x1f\xbb\x58\x75\x7a\xec\xbc\x5d\xb3\xb3\xbb\x73\x87\x4f\x8e\x0d\xef\xb0\xb9\x29\x61\xb2\xe7\xd4\xdc\x43\x5b\x35\x06\x5a\xd1\x21\x7f\x15\xff\xac\xea\xa3\x95\x99\x5a\x17\x97\xa4\xd9\x92\xc7\xec\x6d\xc6\x7a\x0d\x98\x6d\x9f\x8a\xbd\xd9\x56\x1d\xea\x7d\x13\xb2\x87\x9a\x1e\x14\x21\xe1\x72\xcc\xdc\x8a\xd8\x28\x3b\xe6\x72\x6a\x54\x95\x9c\xf4\xba\x18\x9f\x3d\x5b\xaf\xf9\x69\x77\xbd\x8e\xf2\x37\xc1\x1b\x97\xe3\x01\xf3\x65\x44\xd5\x22\x8a\x2a\x07\x7b\x35\x1d\x3a\x83\xe1\x0d\x26\xc3\x11\xf6\xf2\x34\xe3\x35\x33\xae\xe2\xad\xac\xd1\xa5\x37\x58\x07\x99\x48\xda\x9c\x76\xfb\xbc\xc9\x8e\x8b\xb7\xdb\x65\x8f\x03\x46\x31\x2f\x95\x61\x65\x31\x12\x1e\x66\xf4\x1b\xcc\xd5\xac\x77\x1b\xe4\x71\x0f\x54\xef\x30\x19\xe8\x32\x8b\x58\xd8\x7a\xdc\x6b\xc1\x43\xd5\x16\x4f\x5b\x93\x28\x09\x5b\x41\x4b\x46\x7c\x81\x6b\xe7\x7e\xd2\x6e\x6f\x76\x1c\xd8\xf9\x48\x08\x79\xbb\x68\x5a\x5d\xb6\x3c\x9c\x90\x15\x80\x41\x63\xaa\x16\x9e\xfd\xc6\xdc\x1d\x74\x0e\xd3\xbb\xb3\xc1\x66\x02\x6f\xf0\x4b\x2f\x04\xcf\x24\xbd\x41\x4a\x70\x97\xb2\x33\x7c\x35\x29\xfd\x31\x2e\x45\x08\xae\x4b\xcd\xfd\xea\x4d\x5e\xe3\xd2\x51\x48\xba\xb8\xf5\x02\x8e\x5b\x49\xca\x5b\x00\x0a\xe6\xad\x58\x33\xbe\x14\x56\x1f\x7e\xd7\x76\x6f\xfb\xe5\xf6\x5a\x51\xae\xfd\x9e\xd8\xe7\x43\x0d\x4d\xa0\xc3\x77\x18\xa6\xf5\x9b\xa7\x82\xf7\x2b\x9e\x37\xea\xab\x25\x69\xb7\xf1\x43\xd6\x61\xc9\xcc\x72\x98\x8c\xcc\x9d\x21\xbb\xcf\x58\xbb\xb8\x46\x54\x58\x1b\x6b\x02\x73\xed\x68\xf4\x6b\x96\x95\xfd\x96\xe7\x86\x35\xb3\x54\xf5\xea\x70\xe7\xda\x92\x83\xfa\x15\x6b\x4b\x02\xa8\xae\x2d\x99\xba\x6d\x6d\xc9\xdc\x07\xae\x2d\x85\xf1\x7f\xf7\xda\x92\x48\x3e\x7c\x6d\xed\x79\x01\x7d\x6f\xf3\xf5\xa5\x15\x08\x68\x95\x95\xa5\xbc\x34\x1c\xb8\xb2\xd4\x44\xfc\xbe\x2b\x4b\x31\x9a\xfb\x97\x96\xb9\xe7\xaf\x2f\x2d\xcd\xac\x76\xae\x2d\xf3\x5e\xf9\x21\xcb\xca\x7a\x85\xf1\x15\xf2\x57\x01\x64\xb0\x35\x67\xcb\x12\xb3\x4a\xec\x7a\x41\x61\xe3\x09\x91\xb5\xb7\xac\x20\x46\x61\x0d\x49\x6d\xb3\x5e\x43\xa0\xbd\xa9\xae\x1f\xbf\x92\xc0\x7e\x9d\x05\x65\x21\x7a\xc0\xa2\xaa\x8a\x3b\x7b\x01\x57\xc0\xf2\x9c\x85\x62\xbd\xa8\x70\x56\xad\x60\x3c\x4e\xb3\x50\x1c\xf8\x79\xda\x32\x6f\xd1\x5a\x39\xe3\xcb\x85\x94\x77\xe0\xd2\x33\xaf\x9f\xc7\xac\x31\xe6\x64\xfb\x73\x1d\x4d\xd0\xe5\xc7\x3a\xeb\x75\xa3\x25\x37\xc4\xd8\x2c\x12\xca\xaf\x8f\x0e\x7a\x22\x54\x26\x5c\xa9\xa6\x7f\x38\xcd\xca\xfa\x30\xf6\x99\x7d\xf3\xb7\x8d\x53\x69\x97\x2f\x2d\xf9\x43\xcc\x5c\x1b\x89\x61\x17\x93\x1b\xa7\x41\xc8\xc2\xd6\x24\x4b\xe7\x5a\x9f\x28\x8b\xe5\x47\xb5\x51\x56\x88\xb3\xfe\x5e\x42\x71\x45\xbe\xdd\xf5\xf2\xa4\xca\x3e\xee\x7f\xa5\xb2\x8f\xea\xce\xb6\xca\xab\xbc\xa3\xb5\xee\x25\x2a\x93\xa3\x19\xd0\xc3\xa7\x47\x43\xe8\xb3\xe2\x08\xc3\xc4\x11\x86\xb8\xf2\xe8\x02\x17\xb2\xa7\x10\xdc\x96\x15\x37\x7e\xd5\xea\x55\x2d\x56\xc1\xcd\x1b\x2e\xae\x86\xe0\x80\x48\x3b\x24\x92\xfe\x89\x10\x41\x33\x70\x8b\x82\xe4\x93\x1b\x34\xea\x1f\xd4\x8f\xa2\xc1\x6d\xd7\x2a\x8d\xfa\xef\x66\x1a\x2c\x80\x35\x5e\xb3\xa4\x8d\x06\xea\x96\x22\xb1\xc4\x2a\xe1\xd4\x57\x98\x5c\xb3\x4a\xf8\xac\x83\x30\xa8\x36\xdb\x4a\x27\xb0\x45\xcb\x98\x63\xa4\x85\x6a\x7b\xb2\x35\x11\x95\x29\xd2\x0e\x97\x1e\x4e\x3b\x1a\xc2\x61\x17\x59\xba\xd6\xbd\x37\x58\x35\x19\xc8\x60\x5c\x88\x82\x47\xdd\xfe\x96\x32\xec\x41\x0b\x0a\xfc\x46\x3d\xe8\x1e\xac\xa6\xa7\x02\x50\x07\x5f\x85\x41\x2d\x6b\x68\x8a\xa9\xe6\xa9\xba\xff\x7a\x5b\xbb\xff\x6a\x68\x98\xf0\x87\x71\x14\xed\x58\xea\xd7\x19\x03\x0d\xed\xe0\x61\xd0\x15\xbf\x6e\x24\x34\x94\x87\x0e\x86\xb9\x8d\x7e\xf8\x1a\x31\x20\x0e\x5b\x24\xa6\xda\x81\xf7\xbc\x05\xc6\x95\xd5\x5e\xb8\x54\xfa\x8a\xbd\xc2\xc0\x38\xac\x33\x45\xbd\x03\x7b\x63\x21\xfd\xb0\xe5\xac\x7d\x42\x3d\xbc\xcf\x1a\xc2\x41\xf7\x44\xba\xd2\x7d\x97\x43\xd1\x44\xea\x04\xaf\x3c\x6d\xd5\x62\x9b\x24\xdd\x0b\x7b\xeb\xcd\xab\x8b\xda\x36\xc8\x62\x77\x68\x23\xdc\x92\x7e\x41\xab\x43\x6d\x46\x8a\xdd\x63\xa2\xd3\x8c\x6b\xa7\xb7\xc5\x29\x82\x16\x18\xf4\xa3\x87\xea\xb9\xa8\xe4\xc6\xeb\x2b\xb6\x22\x1b\xcc\x81\xfb\x91\x5d\x75\x17\xbf\x31\x04\xdb\x3c\x82\xe5\x9e\xb0\x9d\xa7\x41\xe5\x80\xec\xd7\x61\xb2\x0a\xd8\xc1\x3c\x56\xd5\xdb\x93\xc5\x4a\x7b\xea\x26\x2e\xab\xe0\x08\x26\xdb\x30\xea\x8d\x65\x3d\xe3\x78\x6d\x27\x6a\x45\xb1\xfb\x45\x85\x83\x9a\x06\x37\x6f\xf7\x37\x2d\x1d\x28\xfe\xda\x4d\xa7\xf9\x16\x4a\xac\x15\xdb\x87\x59\x1e\xc8\x11\xb5\xbf\xb9\x87\x2f\x35\x0d\xe1\xb0\x55\xa6\x6b\x1d\xb8\x03\x18\x74\x59\xd5\xea\xc3\xb8\xca\xfb\x1a\xd3\x0f\x03\xe4\xb0\xce\x58\x15\x0f\xec\x8f\x8d\x77\xa5\x4b\xf2\x74\xff\x15\xc6\x65\x50\xff\x40\xa3\x32\xa8\x73\xa8\x2d\x99\x44\xb4\x7a\x9c\x10\x6b\xa5\xe6\x26\xa4\x6c\xdd\x53\xa3\x45\x69\xb6\xfe\x35\xb4\x28\x21\xd4\xa8\x46\x01\xae\x1a\x93\xb0\xab\x65\xed\xac\xbc\xff\x68\x41\xf5\x03\x07\x4b\x36\x59\xc1\xa3\xea\xe8\xe9\xe1\x03\x50\x85\x74\xd8\xf4\x57\x6b\x1f\xd8\xb7\x5a\x37\x58\x9d\xd7\x28\xbd\xed\xd7\xb1\x1b\x05\xe4\x70\x8e\xa3\x2a\x3e\x80\xe9\x68\xbc\x6b\xe6\x48\xfa\x11\x24\xf4\xfb\x6b\xae\xd2\x4b\x80\x0e\x34\x43\x2a\xd5\x3d\xd4\x04\xa9\xdc\x83\x4a\x07\x77\x3c\x54\x3a\xa8\x7f\x65\x38\xd0\x3d\xf3\xc0\xe6\xde\x0e\x56\x54\xc2\xd8\xb6\xff\xcc\x2d\x2f\xf0\xfd\x5d\x6d\xd6\xa6\xae\xe9\xe1\xd7\xd7\x9b\x13\x95\xc0\xed\x61\x56\x54\x2a\xbf\xcd\xbc\xa8\x54\x68\x1f\x33\xa3\x72\xa7\x7e\x45\x73\xa3\x12\xe0\x87\x99\x1d\x95\x71\xe3\xbb\xaf\x49\x9a\x5f\xd1\x3e\x74\x72\x00\xcc\x1e\x93\x02\xe5\xb6\x4d\x06\x64\xee\x33\x09\x12\xe9\x5f\x71\xf0\xe5\x1b\xc9\x83\xcd\x57\x4a\xe8\x68\x6d\x73\xe9\x59\xd2\x56\x73\xaf\x4a\x17\x1e\x68\x7e\xb2\xf3\xda\xcf\x98\x9f\x64\xbb\xcd\x4f\x92\x11\xf8\x5c\xad\x9b\x9f\x24\x23\xcb\xd7\x2c\x39\x79\x42\x29\xcd\x4a\xe6\x27\x27\x4f\x76\x9a\x9f\x64\xbb\xcd\x4f\x92\x11\x49\x76\x9b\x9f\xb0\xc6\x87\xd8\x0f\x34\x77\xbb\x8f\x44\xed\x62\x5b\xcc\xdd\xee\x25\xd0\xe6\xc9\xfd\x6a\x73\xb7\x87\x91\x67\x09\x99\x3d\xa9\x73\xcb\x0a\xfb\x83\x3c\x9b\xc8\xd3\x5c\x5d\x1f\xbc\x79\x57\x5d\x57\x34\x5d\x14\x1b\xe8\x95\x47\x56\x75\x37\xb6\x85\xb3\x47\x49\x60\xbf\xf2\xf3\x03\x8d\xc8\xce\x27\x08\xf7\x3d\x3e\x28\x3b\xaa\x6c\x7a\x6e\x60\x8a\x7d\x68\x1c\xec\xf2\xcb\x8d\x87\x9f\x2d\xca\x70\x1e\x22\x88\x17\x48\x54\x04\x9f\xfa\x73\x91\xaf\x30\xee\xa9\xbb\x71\x7b\xa8\x23\xa8\x3a\xa8\x03\x3d\x42\xdd\x87\x99\x18\x07\xee\x5e\x11\x78\x86\x32\xbc\xfb\xcc\x56\x3e\x7a\x73\x7e\xf1\x0a\x91\x29\x6b\x70\xf9\xdb\x4a\x37\x1b\x22\x4b\x41\xe8\x9d\xbf\xbf\xfa\x79\x4b\xc9\x6a\x7c\x20\x53\xef\xd5\x3f\x5e\xbd\xb9\xdc\x51\xb1\x15\x95\x9b\x38\xff\xe9\xc7\x5d\xcd\x14\xd1\x7e\x8a\x6a\x01\x67\xf0\xae\x30\x03\x0d\xec\xb6\x76\x62\x53\xc1\x28\x6b\xb7\x15\x5d\x14\xd8\x5f\xb3\x84\x6f\x2b\x36\x36\xc5\x64\xdc\x86\x34\xdb\x56\x32\x28\x90\xd5\xf1\x16\x9a\x0b\xce\x36\x24\xb7\x33\x18\xbe\x9b\x51\x66\x6a\xbf\x88\x83\x3c\x7f\x13\xcc\xd9\xb6\xfa\xf9\x66\x33\xc2\xe4\x6a\xe3\xe2\x8d\x2b\xc3\xb6\x11\x15\x80\xcd\x8a\x27\xc6\x75\x58\x28\xee\x4d\x92\x61\xe6\x09\x02\x18\x91\x88\x0e\x11\x4f\x17\x88\xa0\xab\x94\xf3\x74\x8e\x88\x8c\xd9\x30\x22\x01\x1d\xaa\xf8\x40\x3a\x26\x90\xce\xc9\xe9\xb0\x88\x20\x51\xae\x3d\x22\xe3\xda\x35\x77\x42\x59\xc9\x97\x2f\xc2\xc6\x69\x82\x7e\xb2\x99\xac\xd7\xe0\xd1\x49\xfa\x74\x9d\x65\x6c\x82\xf0\x7a\x8d\x10\x49\xe8\xf1\xff\xfc\x69\x18\x74\xbe\x8c\x8e\x23\x8f\xb3\x9c\xbb\x09\x1e\x24\xe0\xad\x0e\xc3\x2b\x33\x37\xa5\x22\xcd\x78\xa6\x4d\x7d\x37\x95\xad\x65\x9e\x26\x5e\xbc\x5e\x73\x4b\xaa\x48\xb5\x03\x2a\x69\xc9\x85\xd5\x27\x26\x29\xde\x90\xb8\x40\x3f\xb5\x3c\x3e\x8f\x4b\x1e\x9f\xc7\xd2\x6e\x27\xab\xbf\x7f\x3b\xb2\x99\xda\x3b\x36\x61\x19\x4b\xc6\xe6\x2a\x6f\x16\xe5\xad\x59\x90\x27\xdf\x0a\xce\xcc\x92\x56\x94\x44\x3c\x0a\xe2\x28\x67\x61\xab\xd3\xca\x97\x0b\x96\xb9\xb8\x54\x62\x1c\xc4\x31\x0b\x91\x76\x84\x7e\xc4\xd7\x6b\xa4\x5e\xfd\x59\x2a\x56\xdb\x67\x83\x95\x3c\x60\x3e\xdf\x48\x8c\xd3\xc2\x03\x02\x11\xb8\x1a\xcf\xea\x99\xb4\xbf\x70\x31\xc9\x6a\x91\xce\x4c\x84\xc5\x26\xe0\x85\x5b\xbd\x66\xa6\xf6\x5e\xf4\x46\xf0\xb1\x8c\xe5\xb9\x18\x42\xd8\x90\x58\xc4\x67\x2c\x13\xfb\x92\xa8\x2d\x76\xa1\x22\x96\x19\x01\xc3\x16\xd4\xd6\x2d\xe0\x3e\x2b\x78\x37\x55\xaf\xff\xc7\x19\x03\xd7\x05\x8e\x63\x07\x5d\xbb\xb3\xa2\xd2\xf9\x77\x70\x2b\xe1\x33\x52\x44\x86\xf3\x8f\x7a\x44\x87\x7d\x93\x21\x96\x8a\x10\x71\xfe\x51\x77\xb3\xc1\x84\x3b\x8e\xab\xda\xc8\x19\xff\x49\x83\x7e\x3b\x19\x34\xa6\xc2\xe0\xf8\xcc\xfb\xf4\x09\xb0\xf8\xf4\x89\x72\xbc\x71\xc7\x24\xc5\x64\x5c\xf5\x46\x40\x2b\x2e\x55\x80\x5b\x6b\x3f\x5d\xb3\x20\x87\xf5\xad\x1c\x44\x76\xa6\x59\xba\x5c\x20\x5c\xf6\x56\x50\x76\x4b\x6d\x69\x2e\xa4\xa2\x1c\xe1\x3e\xbc\x76\x2e\xb9\x67\x2e\x7c\x82\x37\xc0\xb8\x2f\xcc\x9b\x92\xaf\x0b\x18\x82\x1b\x8d\x2b\x4f\xbb\x0b\x16\x7c\xc9\xe6\x8b\xb8\xf2\x78\x5c\xe1\xef\xa2\x53\x3e\x63\x41\x78\x86\xb0\x17\x2c\x16\x70\x69\x22\xd2\xb2\x6a\xc2\x0c\x12\xc2\x50\x8d\xc6\x22\x63\xd7\x22\x01\x38\x82\xe5\xc2\x1e\x11\xa4\x83\x4e\x95\x01\xe4\x8b\x20\x29\x81\x68\xb0\x05\xf0\x74\x55\x8c\x77\x37\x2e\xbd\x7b\x49\x4f\x8b\xdb\xb0\x80\x32\xef\xcb\x45\xc6\x69\x2c\xf0\x40\x64\xc7\x8d\xd8\x00\x3d\x43\x3e\x7a\x8a\x76\xa3\x90\xb0\x5b\xbe\xa5\x65\x9d\x75\x60\xdf\x45\x35\x8c\x31\x26\x89\x9c\x95\xab\x34\x5c\xdd\x3b\x2b\x72\xde\x0e\xe8\xdb\x77\xc8\x47\xcf\x11\x36\x1c\x66\x28\xc0\x84\xd1\x75\xb9\x77\x96\x0b\x35\x88\x51\x54\x6e\x54\x2c\xcb\x72\x79\x48\x6a\xc1\xbf\x9d\x7c\x5e\x14\x67\xe5\x8a\xaa\x4b\x58\xf0\xf6\xdd\xad\xaa\x08\x70\x7b\xb5\xdb\x19\xa7\x49\xc8\x92\x5c\x30\x62\xd3\xb0\x16\xe9\x4d\x4a\x62\x52\xee\x6f\x5d\x86\x9d\xfb\x0f\x35\xae\x63\xdd\xfd\x36\xcd\x8f\xea\x7c\xe2\x32\x9a\x6b\x51\x2d\x88\x92\x7b\x78\x85\xa0\x40\x4d\xa1\xf0\x3b\x2b\x7e\xf7\x77\x78\xc9\x04\xbf\x3e\x75\xca\x2d\x12\x02\x43\xc9\x77\x42\xc0\xf0\xd1\x9f\x20\xca\x21\x9c\xb8\x7d\xd4\xe9\x21\xc2\x23\x1e\x33\xbf\xd9\x70\xc6\x2b\x85\x38\xdb\xd8\xe3\x74\xc5\x93\x2d\x0b\xb5\x54\xe7\x21\xec\x6a\xb9\x90\x0b\x76\x67\xc7\x6a\x90\x50\xc1\xca\x3b\x60\x4a\xa8\xfb\x2d\xd1\x13\xb9\x1d\xc3\xd9\x91\x0f\xe6\x86\xf9\x3d\xdd\xd7\x61\xdf\x36\xcd\x3d\xcd\x67\xe9\x8d\xea\x24\xc6\x24\xfb\x2d\x27\xa2\x14\x4c\x6e\xcf\x89\x28\xd5\x79\xc8\x44\x84\xe9\x4d\x82\xb1\x71\x19\x59\xf1\xc5\x6a\x6c\xe5\xf7\x22\x49\x83\x6f\xae\xcf\x67\x68\xcb\x1c\x37\x95\xf4\x66\x7c\x1e\xbb\xc8\x47\x5b\xc6\xb9\x11\x3a\x26\xbf\xcf\xda\x90\x21\xf7\x0e\x5d\x1d\xb2\xd6\x7f\x66\x7d\x28\x1b\xdb\x7b\x56\x88\x72\x7e\xbf\xc7\x1a\x29\x46\x60\xcb\x2a\x31\x9d\xfd\xdd\xd6\xc9\x41\x93\x52\xa9\xf5\x2b\xaf\x95\xbc\x79\xad\xcc\xff\x6f\x5c\x2b\x32\x7e\xe4\xa1\x6b\x45\xd6\xfa\xcf\xac\x15\x19\xc8\xe1\xbe\xb5\xa2\xc2\x3d\xec\xb1\x56\x8a\x11\xd8\xb2\x56\x4c\x67\x7f\xb7\xb5\x72\xd0\xa4\x54\x6a\xfd\x0a\x6b\xa5\x70\x8c\xb6\x5e\x7f\xe5\x7a\x28\x12\xe4\x19\xb1\x5c\xfd\x8a\x27\xad\x2b\x9e\x74\x16\x59\x34\x0f\xb2\x55\x65\x4e\x55\x0f\xfd\x72\xb4\xb0\x43\x06\xd4\xae\xb8\xd9\x36\x7d\x5b\x96\x5f\xa3\xfc\x6a\x91\xa1\x89\x7f\xf6\x40\xf1\x75\xc8\x48\x42\xb2\x11\xc6\xbb\x24\xd5\xdd\x52\xea\x2e\xf4\x66\x75\x11\x63\x1f\xec\xb4\xd0\xbb\x0b\xf4\xbc\x89\x27\xef\x07\x3c\xbb\x17\x78\xde\x44\xc4\xfb\x01\x4f\x69\xe1\x17\xae\x59\xd8\x77\xf1\x68\xb7\xf0\x9e\xca\xe7\xff\x6c\x9b\x80\x95\x1a\x57\xa8\xcd\x9b\x8a\xca\xcf\x30\x49\x1b\xa6\x55\x06\xc0\xad\xcf\xe5\x70\x54\xbf\x95\xab\x59\x5c\x16\xbe\x09\x1e\xc6\x79\x6a\x6b\x0a\x1e\xf9\xdc\xb3\x7c\xc2\x60\xb5\x39\x9c\x9d\x40\x3d\x60\x27\x95\xcb\xbf\xc2\x7e\x5c\xbf\xba\x52\xa1\x01\x5c\x6c\x25\xa8\x30\x55\x4a\x6b\x5b\xf1\x74\xdb\x57\x41\xd4\x6b\x8e\x79\xb5\xc1\xf4\xc0\x4d\xaa\x61\x34\x74\x7f\x8a\x68\xc7\x24\xa3\x8d\x7c\x30\xe0\x0c\xfb\xf7\x01\x10\xf8\x6d\x01\x20\x70\x03\x9f\xaa\xbf\xe6\x44\x01\x0f\x53\x81\xc1\xe5\x7c\x25\xf7\x4c\x4a\x26\x06\x7f\xd3\x78\x61\x54\x33\xa7\xfd\x95\xe9\x0a\xcc\x0e\xef\xa1\x2b\x28\xf3\x00\xba\x82\x7a\x96\x48\xb7\xd5\x9c\xf7\x57\xef\x53\x9a\xb3\x7b\xfb\x94\xe6\xec\x41\x7d\x4a\x73\x06\x7d\x2a\xe9\x4e\x11\xf2\x0f\xdd\x50\xf6\xd2\xa6\x89\xa6\x1a\x38\xd3\x61\xdb\xcc\x55\x9a\xf2\x9c\x67\xc1\xa2\x53\xd6\xd8\x76\xa4\xed\x73\x2b\xcc\xd2\x85\x10\x29\x3a\x73\x96\x2c\xd1\xd6\x2d\xa5\x14\x3b\x55\x23\xac\x19\x78\x5d\xab\xeb\xee\xb3\x7f\x34\x40\xaa\xef\xa6\x70\xcb\x02\x90\x96\x71\x19\x50\x1c\xe5\xbc\xb3\x4c\x72\xbe\x82\xfb\x0e\x12\x41\xa9\x38\xda\xa5\x97\x6d\x6f\x79\x15\x37\x40\xfa\x45\x72\x9a\x28\x15\x37\xf2\x91\xad\x6f\x35\x18\xca\x8d\xc1\xc5\x15\xd5\x52\xd9\xc0\x57\x10\x75\xc6\xe6\xe9\x35\xd3\xe3\x57\x19\xe6\x8a\xec\x26\xca\x17\x38\x2f\x73\xc6\x6f\x58\xc2\x57\x13\x50\xc5\x6c\xd9\xbf\x8e\x76\xc2\xb8\x89\x20\xbe\x61\xf5\xc9\xe9\x01\x4c\x7d\xe0\xb2\x2d\xdb\xfe\x55\x8e\xb0\xbc\xc5\xab\x71\xf6\x6a\xe0\x78\x40\x4a\x0e\x61\x54\x39\x26\xd5\x28\x23\x4b\x6f\x90\xa5\x1f\x2c\x32\xc6\x69\xdc\x99\x87\x9d\x67\xd6\x7c\x64\xcd\xd9\xd8\x5c\x2b\xd6\x03\x34\xd5\x30\x33\x37\x92\xf7\x96\x5d\xaf\x4b\xbd\xc0\xbe\xbb\x6f\xef\x53\xab\x5e\x6d\xc0\x53\x7b\x38\x2a\x84\xdb\x4c\xa7\xf5\x49\x32\x4f\x42\x81\x5e\x0f\xae\xef\x38\xf7\xee\xd1\x48\x9c\xd0\x66\xa5\xb9\x11\xe3\xac\x07\xef\xa1\x83\xa0\xdb\xff\xaa\x41\x90\x23\xf9\xf0\x41\xd0\x33\x71\xff\x20\xc0\x08\x48\xe8\x8a\x02\x2d\x62\x3b\x70\x0c\x0c\x31\xa5\x35\x06\x0f\x8e\xa9\x9b\xee\xc3\x55\x6c\x9f\x40\xff\xf5\xe4\x62\x94\x96\x43\x24\xa3\x49\xd1\xb8\xe4\xec\x3f\xa5\x79\x24\xbe\xa3\x64\xea\x5d\xb3\x8c\x47\xe3\x20\x26\xe9\xee\x72\xb3\x34\x8b\xbe\xa4\x09\x0f\x62\x3b\x36\x81\x9b\x14\xb7\x7a\x8e\x63\x7d\xe8\x0d\xd0\x4a\xf2\x13\x73\x6d\x88\xbd\x85\x02\xed\x62\x92\x3f\x1c\x4a\x3a\x99\xe4\x8c\x2b\x7f\xac\x35\xec\x83\x4c\x14\x8a\x1a\xfa\x05\x39\x05\x3b\x51\xe1\xc4\xfb\x10\x23\x50\x82\x6a\x88\x09\x2c\x21\xe9\x0c\xf0\xee\x52\xd4\xf5\x16\x81\x7c\x55\x0e\x40\xee\xca\xf8\x48\xc6\x8f\xad\x88\x14\x6e\x19\x56\x05\x11\xdc\xb7\xb3\x89\x55\x72\x3c\x8b\xe2\x30\x63\x09\x04\x10\xca\x72\xee\xe2\x2a\x22\x9b\x68\xe2\x4a\xd3\x0a\x4a\x69\xe6\x38\x6e\x46\x05\xcd\x2d\xda\x3d\xef\xe9\x23\x5d\xca\x9b\xb1\x68\x3a\xe3\x2e\x3e\xa3\xdc\xbd\x89\x92\x30\xbd\xc1\x26\xad\x5d\x24\xe5\xe3\x2c\x8d\xe3\xcb\x74\x21\x16\x42\xad\x72\xdb\x42\x2c\x5d\x72\x96\xfd\xa0\x32\x4e\xa1\xc5\x01\x30\x42\x5f\x2f\x04\x4c\x0c\x5a\x29\xc4\x79\x88\x04\x3c\x3e\x83\xe2\x31\x9b\xf0\xb6\x69\x00\x80\xfd\x53\x66\x1e\x9f\x38\xce\xae\xfc\xb3\x02\x5b\x05\x6e\xa0\x2c\x4c\x7c\x69\x70\x52\x6c\x47\xd9\xc0\x40\xb0\x36\xaf\x74\x01\x61\x65\xad\x0d\x59\x23\xec\x37\x14\xd7\x79\xe5\x1a\x00\x44\x5b\xb6\x88\x0e\x36\xb5\x34\x89\xd3\x80\x77\x64\x19\x0b\x76\x09\x50\xa9\x0c\x41\x19\x8b\x03\x1e\x5d\x33\xb1\x0d\x45\xde\x18\x84\x16\xb5\x70\x40\xc9\x19\xd1\x48\x11\x5e\x5e\x84\x94\x72\xeb\x16\x4f\x06\x8e\xe0\x46\xca\x4e\xa5\x02\x6d\x83\x0d\x49\x49\x19\x36\xd2\x06\x6b\x85\x41\x86\xf5\x4e\xa2\xd8\xf3\x6d\x17\x2d\xe6\x39\x01\xf0\xaa\xb0\x75\x13\xf1\x59\x94\xb4\x82\x96\x46\xa0\xa5\x1b\x64\x61\x6b\x2c\xb8\x49\x94\x80\xcd\x99\x19\x0d\x81\xd5\x1d\x4f\x17\x7e\x31\x69\x92\x6c\xfc\x00\xa8\x78\x1b\xc9\xb5\xd1\xe2\x16\x11\x39\x3b\x56\xdd\xa8\x5c\xaa\xe3\x46\x94\x5a\x4b\x6b\xd0\x95\x60\x65\x75\x5f\xb6\x44\x04\xd9\x28\xe2\x81\xb9\x6c\xaa\x24\x72\xcb\xb5\x60\xd2\xec\x6a\x0a\xef\xa8\x44\xae\x9d\x6a\x07\x74\xfa\xee\x46\x36\xd5\xcd\x00\x02\x43\xdb\x8f\xf4\x1a\xaf\x3d\x1b\xad\x4f\xbd\x9c\x07\x19\x7f\x3b\x71\x91\xd8\xb7\xcd\x47\x88\x64\xe4\x97\x86\x78\x57\xa5\x4b\x79\x4b\x6c\x6b\xb2\x34\x18\x0b\xa0\x9c\xdd\x72\x17\xfd\x09\x61\x31\xb3\x15\x9f\x75\x35\x74\x58\x12\x2a\x64\x70\x1f\xef\x84\x1d\xa6\x06\xb8\x09\x1e\x8d\xc2\x10\x29\x4d\xb4\xf1\x9d\x68\xbf\xe0\xac\x5b\xb9\x80\x8d\x40\x0b\xcc\x48\xec\x03\x55\xc3\x00\x5f\xc0\xb5\xbe\x3d\xc6\xda\x88\x99\xd1\xe1\x68\x8f\x01\x5e\x55\x07\x38\xd1\xf1\xf7\xca\x35\x89\x28\x29\x3a\x6f\x4e\xbb\xe6\xd0\xd9\xa4\xcc\x06\xf5\x05\x20\x57\x1a\x9e\xb9\x4a\xa9\x0c\xd0\xc5\xc5\x45\x79\x84\x2e\xee\x1d\x21\x69\xcf\xd0\xe2\x62\x80\xd8\x7c\xc1\x57\xee\xf6\x81\x92\xc6\xd2\xf5\xa1\xb2\x2c\x8e\xee\x69\x07\x68\x95\xa9\x6c\xd1\x03\x92\x15\x9f\xe2\x24\x8c\xb0\xfa\x02\x8b\x11\x38\xf4\xcd\xa2\xbc\x9f\x78\xec\xdf\x6e\xb7\x9c\xa7\x06\x0c\xce\xf8\x55\xdb\x92\xe2\xba\x20\x63\xd7\x3f\xb3\x20\x13\x63\xc2\xfe\xed\xf6\xf6\xab\x25\x87\xdd\xaa\x77\xf2\x80\xa6\x13\x76\xab\x40\x30\x33\x1e\xca\x08\xbf\xba\xa9\x14\xe9\xa4\xc9\x5c\xbe\x4e\x75\xda\x47\x61\x0f\xc8\x89\xc8\x20\x9c\x7a\x90\xac\x55\x54\xc0\xd5\xdd\x07\x8a\xa9\x80\x5d\x31\x38\xca\xee\xd7\xb6\xa2\xac\x4a\xb3\x27\x5b\x9a\xcd\xca\x1d\x15\x84\x7d\xcd\x4c\x37\x6b\x61\x3e\x5c\xbc\x63\xd5\x98\xc3\x6e\x92\x33\xee\x38\x99\x68\x77\x3b\x1c\x20\x38\x30\x35\x31\x78\x99\xd6\x33\x19\xce\xa0\x14\x65\x27\x2d\x7a\x9e\x36\x74\x5b\x82\x63\x98\xa8\xd0\xa6\x6a\x6b\x6d\xea\xf4\xa6\x49\x61\xf3\x5e\xf0\x86\x57\x49\xf8\x73\xe9\x8d\xaf\x15\xb7\x9f\x1d\xf7\xba\x24\x93\x5e\x22\x26\x71\x9a\x66\x2e\x3f\x66\xf8\x11\xd3\xe6\x50\x19\xc9\xda\xdf\x3f\x4a\x48\xa9\x40\x82\x1f\x25\x55\xc3\x19\xb9\x4a\x45\x3b\x07\x2f\x52\x65\x5e\x44\x78\x79\x8d\x6a\xee\x57\xe9\x86\xdb\xeb\x92\x2d\x94\x94\x6d\xe3\x97\x50\x20\x19\x76\x47\x7a\x69\x6f\x2f\xd3\x1b\x61\x12\x51\x84\x60\xab\xe2\x5f\xc3\x00\x5e\x82\xe1\x12\x26\xfc\x60\x16\x50\xaa\xf9\x50\x26\xa0\x81\x1c\xce\x06\x8c\x65\xbe\x71\x0b\xdb\x94\x6c\xdc\x59\x66\x6a\x99\xf0\x5d\x8c\x80\xdb\x8c\x20\x53\x33\xd6\x46\x1d\xd4\x4e\x2b\x8c\xc0\x34\x63\x1c\x67\x36\x25\x17\x9b\x7e\x6a\x37\xbf\x8d\x21\x44\x6d\xfa\x2d\x6c\x79\x2d\x6b\xa7\xa3\xa8\xe0\xb8\xa8\x35\x16\x95\x28\x78\x38\x6b\xa5\x71\xf8\x6d\xdb\x2d\x33\x26\xd9\x4d\xd0\x48\xb4\x0a\xc8\xed\x6f\xd1\xd9\xb7\x6d\xd3\xa3\x4e\x0f\xb7\xd1\xe9\xb1\xdc\x5c\xfb\xf0\x46\x46\x0e\x52\xaa\x76\xe0\xc3\x10\x01\xc8\x25\xd6\xd4\xc0\x73\xea\x5c\x0a\x34\x8a\xc0\x74\x7c\x84\xf0\x21\x1d\x29\x66\x46\x77\x82\x64\x16\xef\xed\xff\xc6\xe3\xd8\xd0\xbc\x61\x09\xa1\x36\x90\x88\x9a\x05\x04\x49\xef\x07\x33\x1f\x63\x5e\xb8\x3f\xfb\xf9\x1d\xf8\xcf\x51\x8f\x04\xe2\x9f\x5c\x6b\x42\xc6\xbf\x0a\x4b\x7a\xc1\x12\xbe\xcc\x56\x5f\xc9\x59\x0c\x94\x43\x58\x0b\xbc\x55\xd2\xf3\xab\xe3\x7e\x3d\x88\xd3\xfc\x97\xb3\x9a\x82\x15\x74\x4f\xbb\x83\x71\x9b\x2a\x59\xdb\x49\xae\xf2\x45\x5f\xd3\xb5\x3f\xde\xb5\x92\x24\x2d\x9b\xb5\x24\x69\x54\xac\x26\x24\x4b\xcb\x52\x50\xc1\x62\x3e\xed\x67\x75\x76\xd4\xbd\x87\x1f\xe5\x66\x4e\xda\xbd\x1e\x89\xe8\xd7\xed\x00\x8d\xa5\x24\xf8\x53\x9a\x93\xa0\x0a\xfe\xbe\x71\xdf\x09\x5e\x95\x2a\xc0\x1f\x3e\xa4\x86\x39\x35\x8b\x84\xaa\x79\xd3\x74\x53\x29\xd3\xfc\x3e\x4c\x77\xbd\x8e\xd6\xeb\xa0\x81\xf7\xed\x35\xad\xdb\x99\x73\x57\xce\xe6\x6f\x49\x53\x7b\xb1\xe6\x71\xa3\x16\xa1\xf9\xc2\xf0\xde\x13\x74\xd3\xa9\x6d\x38\x6a\x8c\x60\xab\x7e\x68\x6e\x59\x58\x49\x18\x35\xbb\x3c\x59\x7f\xd5\x81\x0e\x4e\xa0\x0f\x39\xd1\xd9\x15\x1f\xca\x73\x15\x8c\x43\x38\xee\xae\xb3\x97\xed\x1a\xdc\xf2\x30\x52\x0b\x72\xb4\xef\xf1\xcc\x3e\x1a\x5e\x20\x7d\x5c\xd9\x79\x34\x3c\xe4\xd8\x57\x01\xb9\x8d\xf5\x6e\xdd\x5b\x8d\x8a\xe4\x02\xed\xd0\x4e\x91\x9c\x76\xfb\xf9\xe9\x93\x93\x7e\xde\x6e\x9b\xf7\xb5\xa9\x77\xc3\xd8\x67\x08\xda\x0d\x0a\xd1\x42\xff\xb5\x53\x87\x15\x69\x7d\xc6\xb7\xa7\x3c\xd4\x8b\x6e\x7c\x23\x96\x92\x84\x28\x97\x12\x18\x1d\x90\x4c\xea\x65\x22\x8c\x49\x40\x11\x22\xe9\x36\x9d\x16\x51\x81\x3d\x83\x36\x45\xb0\x76\x31\x94\xb5\xfd\xca\x37\x16\x4d\xd8\x4d\x0d\xe1\xf2\xe3\x63\xb9\x2e\xc7\x6a\x04\xe1\x71\xb8\xf2\x72\x6c\x05\x2f\x4f\x1b\x83\xed\xe2\x3e\x84\x40\x1f\x3b\x4e\x5a\x16\x56\xcb\x50\x86\x63\x19\x97\xa4\x72\xa0\x96\x08\xea\x43\xf2\x06\xae\x48\xd2\x3d\x84\xde\xfb\x20\xf5\xcb\x04\x96\x42\x8d\xf5\x5a\x16\xb2\x89\xa6\xd4\x96\xf5\x0c\x5e\x35\x21\x2b\x48\x33\x28\x4c\xba\x47\x82\x22\x14\x35\x3c\x2b\x3e\x34\x60\x31\xb3\x2c\x81\x23\x47\x89\x00\x9a\x18\x72\xb0\x52\xac\x37\x0c\x56\x82\xe9\x16\xa3\xfb\x5a\x6e\x0a\x9a\x55\x07\xab\x6f\xdb\x81\x64\xc3\xf0\x1a\x94\xd9\xb4\x93\x5a\x7a\xc9\x4d\x55\xab\x55\xd1\xad\x65\x65\x5f\xf7\x52\xa7\xe6\x96\x13\xe1\x08\x5f\x49\x53\xb2\xb5\x8b\xab\xcf\xea\x04\x7f\xaf\xb8\xd3\xd8\xc1\xe0\xab\x66\x87\xf2\x85\xd4\x5e\x9a\xe4\xb0\x60\xff\xc5\xfb\x1a\x90\x87\xcb\x15\x05\x5c\x17\x9f\xf5\x7a\x4d\x36\x0a\x89\xcc\xee\x9d\xec\xd0\x93\x5a\x71\x70\x6d\xf3\xd6\xc6\x66\x4e\x7b\x27\x06\xa8\xf8\xd8\x52\xec\xac\xd7\xc3\x7d\xac\xcb\x7d\xf3\x84\x52\xda\x85\x0b\x2a\xeb\xd5\x90\x64\x00\x29\x86\xf9\xdc\x4d\x37\x02\x23\x43\x1b\x02\x66\xed\x88\x95\x80\x0b\x8b\xe6\x23\x56\x52\xe2\xfd\x45\x17\x07\xe8\x87\x1f\x90\x8f\x66\x33\x64\xd1\x56\x62\x79\xc4\xe8\xb3\x3a\x35\x35\xa9\xb4\xa5\xd1\x67\xb3\x4e\x7b\x37\x4d\x28\x7b\xd1\x03\xa8\xc2\x12\x0a\x7a\xb5\x4b\x05\xed\xe2\x7c\xf0\xd4\x6f\xce\x20\x16\x33\xaf\x87\x96\x00\xea\x48\x94\xaf\x90\xc4\x93\xc8\xb9\xf8\x1b\xf7\xc9\xa3\x14\xab\x29\x8c\xea\x53\x28\x78\xf8\xbd\x4b\x5f\x0e\x92\x99\x44\x09\xbb\x69\x1a\xe7\xf7\x4e\x23\x9a\xcf\xeb\x33\x96\x42\xcd\x3d\x67\x4c\x99\x83\x3f\x64\xc6\x94\x11\xee\x01\x33\x36\x6f\x5a\xc7\x5b\xc7\x7e\x2e\xc7\x5e\x36\xe3\xe2\x6f\x4e\xba\x5f\xb9\x76\x64\x5f\xcd\xc0\x4b\xc0\x4d\x03\x9f\xdf\x3f\xf0\x79\x5e\x1f\xf8\xa7\x50\x73\xcf\x81\xbf\x8c\xe6\x0d\x82\xb1\x92\x65\x75\x58\x68\x3d\xa6\xdb\xe6\xa0\x25\x04\xc9\x61\xc3\xdb\x06\xe3\x2b\xa5\x6c\xa5\x7f\x0f\xb4\xa1\x3d\x68\xb6\x59\xfc\x08\x34\x24\xdb\xcf\x41\xf5\x60\x2b\x4d\xa5\x66\xd2\xf3\xd0\x19\xed\x9d\x0c\x3a\xbd\x13\xbf\x77\x22\xbd\xed\x30\x5b\x4a\x6d\xaa\xa8\x07\xfd\x1c\xd5\x45\x52\xc9\xed\xaa\x46\x6f\x66\xde\x7c\xd6\x28\x2d\x8a\x29\x53\x17\xda\xa8\x69\xfc\x28\xe0\x3a\x42\x78\x4f\xd4\xb6\xf3\xd3\x7b\x5b\x52\x8c\x6f\xff\xb6\x60\xd1\xdf\x0b\x56\xad\xce\x03\xc0\x0a\x92\xd6\xc3\x6b\xb6\x76\xd7\x4e\x51\xec\xbd\x94\xa6\x18\x88\x5b\xa5\xf1\x30\x3d\x97\x74\x64\x5d\x3c\x24\xc6\xad\xc7\x36\x64\xe0\xf0\xe6\x32\xed\xc8\xfa\x12\x9c\x70\x60\xb0\x93\xb1\x4e\x3d\x3a\x8c\x40\xaf\x2f\xad\x2b\xdd\x84\x26\xeb\x75\x43\x3d\xe9\xca\x43\x5d\x6d\x62\x7c\x37\x0e\x72\x26\x9f\xa4\xfb\x02\x91\x88\x66\x5e\xc5\x37\x8b\x7c\x1c\x50\xf1\xa3\x3d\xf2\xde\x9c\xff\xe3\xd3\x5f\x3f\xbc\x79\x71\xf9\xe3\xdb\x37\x55\x8e\x25\x88\xfe\x10\x38\xef\x2f\x5f\xfd\x44\x22\x7b\x0c\x95\x54\x5b\xc0\x55\x5e\x8b\x22\xdc\xbf\xca\x58\xf0\xb9\x0f\x78\x1b\x57\x02\x80\x7b\xf0\xab\xe0\x6e\x8e\x6e\x07\x77\x20\xd8\xa7\x03\x41\xb9\x03\xb6\x17\x02\xb5\x2d\x1b\x0f\xe3\xbd\x52\x51\xfb\x12\x1a\xba\x9b\x53\x31\xbd\x5c\xcd\x2b\xd8\x43\xe7\xbc\xf9\x02\x57\x1e\x58\x5c\xab\x7c\x6d\x93\x91\x37\x6b\x39\x6e\xf6\x9a\xae\x64\x89\x9a\x57\xf4\x81\x5a\x44\xc6\xc3\x57\x5a\xd6\xdf\x36\x2b\x86\x55\x63\x8d\x18\xe0\xad\xb7\x92\x3f\x42\x1f\x6a\xca\x4a\x1d\x4c\x08\x52\xa5\xdb\x68\xec\xbb\x95\xa1\xec\xf4\xea\x73\xd3\x30\x39\x70\x53\x5f\x1b\x73\xd0\xe3\xfb\xf2\x38\x58\x84\xc7\xb4\xc6\x1e\xb8\x09\x26\xbd\x2e\x5e\xaf\xbb\xd5\x81\x85\x3e\x8f\x7f\x97\x71\xfd\x4f\x8e\x9c\x38\x00\x37\x0d\x9e\x52\xb3\xc1\xf0\xc5\xcd\xc3\x27\x59\x92\xd1\xb7\xa1\x9d\x23\x19\xff\xdf\x3b\x92\xc1\x4a\x0e\xe3\x72\x8b\x54\xd9\xb7\x07\x15\xf6\x07\xd0\x88\x38\xce\xb2\xa6\x8f\xaa\x95\x04\x85\x88\x28\x69\x99\xac\x88\xb6\x16\x74\x29\x4f\xd8\xf7\x10\x3e\x26\x13\x5a\x0d\x61\x53\x56\xa8\x0c\x40\x29\xe2\x4e\x76\x6b\x54\x16\xcd\x1a\x15\x3c\xa8\xcc\x22\xf8\x42\x9b\x68\x3f\x92\x26\x79\x71\xcf\xc4\xb5\x7b\x07\x57\xa9\x99\x49\x57\x2f\x6b\xb4\x6b\xf7\x6a\x7a\x89\x28\xb6\x0c\x4a\x89\x64\xec\x29\xaf\xf8\x9e\x80\x79\x0f\x69\x5a\x55\x04\xce\x6a\x7a\x9d\x90\xc8\x17\x79\x95\x5e\x86\xf7\xf5\xb2\xb1\x71\xfd\x8a\x1c\x9a\x9f\x55\x9a\xdf\x72\x88\x84\x43\x4a\x19\xa7\x19\x91\xaf\x00\x2b\x38\xcd\x1e\x84\x93\x7e\xad\x0b\x38\x5d\xd5\x87\x24\xaf\x35\x7f\x45\xe4\x23\x8d\x4a\xf3\x57\x87\x34\x5f\x71\x41\x01\x8d\xcf\xad\xc6\xed\x05\x56\x9f\x94\x79\xf3\xa4\xcc\x1f\x84\x41\x69\x52\x2e\x9a\x70\xd8\x7f\x66\x2e\x9a\x67\xe6\xe2\x41\x88\x95\x66\x66\xba\x65\x70\xea\xd3\x33\x6d\x9e\x9e\xe9\x21\x38\x94\x5e\x3a\x57\x57\x78\x99\x44\xd2\xad\x87\xae\xc3\xdb\x93\x4f\xa7\xa0\xbf\xd7\xb6\x34\x46\x56\xf4\xba\x90\xc8\x02\x84\xc9\xb9\x9d\xb0\x8c\x11\x26\x37\xf4\x5c\x9f\x37\xe5\x8b\x0e\xf2\xa5\x48\xd1\xcf\x23\xfc\x24\xe5\x2e\xe4\x63\x84\xc9\x27\x7a\x0d\xdc\x5a\x0a\x75\x83\x6b\xff\xba\x6c\xa6\xf7\xd6\xba\xef\xb9\x71\x9c\x1b\x6d\x50\x7c\x17\x4d\x5c\xf7\x2d\xbd\x51\x3b\xad\x79\xa0\x81\xb1\xe3\xbc\xf5\x78\x16\x24\xe6\xd9\x41\x11\x8e\xec\xa6\x78\x90\xe5\x16\xbf\x5d\x24\x78\x95\x40\xd6\x4a\x92\xf8\x63\xdf\xbd\x29\x9f\x39\x75\xbf\xec\xb7\xe2\xb2\x28\xf9\xa4\xde\x98\xef\x78\x0c\x1b\xcd\x59\x1b\xb5\x50\xbb\x29\x13\x34\xf4\xe4\x53\xe1\x7e\x6d\x6b\xa1\xc1\xea\x10\x43\x23\x78\xc7\x7a\x48\x0d\xb1\x25\xe0\x8d\xbd\x57\xcf\xd2\x1b\x4d\x17\xbb\x55\x0b\x67\xad\x30\xba\x96\x13\x5c\x7b\x1e\x8f\x11\x2e\x85\x40\xd9\x0a\xa4\x5e\x15\x61\x15\x30\xa5\x5f\xc1\x4a\x71\xae\x07\xc0\x3b\x18\x13\xfd\x88\xbe\x19\x11\xc3\xc0\x7e\x0f\x54\x8a\x47\xf7\xcd\xc8\x18\xa6\xf5\x7b\x20\x53\x3c\xd2\x6f\x40\xa6\x50\x66\x03\x43\xb9\xbc\xef\xac\xd1\xa0\xcd\x2a\xf3\xb6\xde\xc9\x11\xa5\x97\x8e\xe3\x5e\xb6\x69\xef\x04\xfb\xbd\x13\xaa\xbe\x69\xd7\x88\x35\x0d\x5c\x52\xc2\xb8\xdc\x57\x08\xb6\xde\x42\x06\xc8\x48\x47\x65\x0f\x00\x87\xc9\x4c\x4a\xd8\xd3\xfa\x12\x97\x11\x7b\x59\x29\x09\xae\x2e\x33\x95\x74\xc9\xdb\x37\x01\x45\x11\xf7\x4b\xb4\xbf\x52\xf7\xf3\xdf\xb5\xfb\x4a\xa3\xbb\xbd\xfb\x8a\x06\x7f\xdb\xee\xff\xa6\x1d\x95\x4f\xe5\x95\x8b\xcb\x18\x0e\x6c\xe5\xec\x34\xd7\xf3\x5f\xaf\x2c\x2f\x2e\x61\x85\xdd\xd6\x42\xa4\x57\x24\x93\x5b\x75\xfd\x55\x19\xcb\xdb\xfb\x86\x66\xa3\x95\x71\x65\x05\xe0\xac\x14\xb4\x50\xeb\xb7\x8f\x7a\x4d\xf1\xaf\xca\xec\xa4\xd8\xb1\xab\x26\xd3\xda\x6e\xb9\xe4\x0c\xd7\xda\xe1\xb5\xe7\xd9\x64\xbd\x3e\x4a\xca\x5b\x3d\x68\xbf\x8f\xba\xe4\xa8\x87\x37\x18\x13\xb6\x5e\xcb\xa6\xad\x97\x81\xe5\x6f\xcb\xd9\x29\x78\xd5\xa9\xe5\xdb\x5b\x7a\xc5\xc8\x5c\xbf\x64\x53\x1c\xd3\x3c\x21\x4b\x27\x13\x17\x65\x2c\x8f\xbe\x98\x9d\x16\x9e\x32\x19\x02\xd3\x2f\xd0\x44\xb9\x71\x1c\x8d\x3f\x23\x82\x6c\xa5\xfc\x08\x35\x14\x9c\xa7\xcb\x9c\x85\xe9\x4d\x82\x44\xef\x4a\xf9\x52\x40\x29\x73\xed\xc2\x11\x7f\x92\xf2\x68\xb2\x02\x07\xd2\xee\x9d\x98\x34\x3f\xf3\xe0\xcb\xfb\xe1\xc7\x97\xaf\x88\x90\x28\xfc\x2d\x93\x5f\xe8\xfc\x37\x98\x34\x46\xb6\x2e\x7e\x7b\x57\xf1\x32\x2b\x69\x07\x2d\xdf\xed\x3b\x20\x57\x4d\xda\xf3\x59\xd3\x8b\x24\x73\x51\x72\xb7\x62\x41\x56\xf2\x4b\x6d\x62\xf0\x49\x65\x5b\x17\xcb\xc3\x7d\x4f\x33\xfd\x6e\xc1\x1f\xba\x05\xa7\xec\xe2\x0d\x81\x0a\xcd\xb0\xf6\x05\x11\x06\xab\x66\x00\xf7\x55\x14\xf9\xcd\x35\xb7\x21\x0b\xbf\xef\xab\xb2\xd9\x08\x41\xb9\x61\xaa\x0a\x3f\xbf\x72\xb6\x16\x59\xba\xb0\xaf\x4a\xd6\xeb\x8a\x7f\x96\x68\x9a\xa4\x19\x7b\xc7\x82\x30\x4d\xe2\x55\x69\xa6\x65\xdd\x4c\x65\x19\x0e\xa9\x1e\x8f\x4a\xac\xfa\x0d\x38\xc8\xb8\xe7\x8e\xd3\x94\xaa\xa2\xa1\x97\xfc\x05\x57\x83\x2c\x54\x22\x00\x6c\x01\x81\x49\x57\xb1\x59\x65\x33\x52\xee\x97\x1d\x8f\x42\x5f\x95\x95\x2c\x42\x6a\x71\xa2\x77\xd6\x4f\x86\xdb\xb2\x47\x2e\xab\x4b\x24\x8c\x74\xb1\x32\x80\xf9\xaf\x46\xd1\xe6\xdf\xc5\x1a\x2e\x9c\x66\xd8\x5a\x3f\x21\xf5\xd9\xd7\x47\x25\x8b\x93\xdd\xd6\x21\x7b\x0a\x9c\x96\xc4\xbb\x57\xf1\x42\x26\xb5\x8b\x17\x41\x55\x78\x59\x8b\x59\x62\xde\x49\xc1\xbb\xef\x24\x38\x20\xa6\x8d\xcd\xc9\x2b\xec\x39\xd9\xc6\xc6\x09\xac\x95\xdb\x95\x5b\x16\x0a\xa0\x76\x75\x33\x48\x9a\x59\xfc\x6f\xb2\x73\xe9\xfd\xa8\x84\x81\x14\xdf\x77\xb0\x79\x43\x40\x56\xa0\x44\x6d\x82\x23\x97\xa1\x38\xc8\xfb\x90\x6b\xf0\x91\x19\x90\x66\x06\x7e\xfb\x8e\xf4\xfe\x87\xb7\xff\xac\x3e\x53\x0d\x59\xce\xb3\x74\x55\x0b\x5f\x58\x9a\x5a\xfd\x1c\x56\x6e\x85\x2f\x2b\xde\xf6\xb7\x17\x82\x77\xc8\xa8\xda\xa2\xe4\x8a\x3b\x5b\x7c\xf8\xbc\x34\x9a\x35\xde\xb7\xb9\x56\xd8\x35\x39\xea\x56\x70\x96\x91\x7b\x6a\x28\x3f\x1c\xcd\x6d\x26\xa7\x07\x63\xda\xab\x60\x5a\xf5\x5d\xf1\xf0\x80\x27\x55\x48\x07\x05\xea\xab\x56\xde\x37\x1e\xf4\xfd\x51\xa0\x1b\x20\xef\x8a\x06\xbd\x5f\x0c\xe8\xda\xa8\xed\x1f\x74\xdb\x1e\xfc\x9a\x4f\x8e\x83\x46\x7f\x6b\x20\xac\x1a\x58\x19\x7b\x77\x28\x03\x43\xa8\x40\xc5\x23\x31\x29\x77\x1b\x8f\xa7\xef\x61\x78\x65\x00\x88\x6d\xa3\x58\x03\x59\x0e\x66\xa5\x20\x5f\x07\x59\x24\x0d\x93\x64\x10\xe4\xc2\xc3\x88\x8c\x13\x51\xa7\x06\xbb\xc8\xde\x0d\x17\x75\x4c\x8b\x66\x26\x35\xb5\xd4\x51\xa0\xf6\x87\xc7\xd3\xd7\xe9\x0d\xcb\x5e\x04\xb9\x98\x22\xa0\xa5\xa0\xa0\x25\x1b\xad\xc3\x07\xc4\xc2\xaf\x1a\x27\xba\x20\xb4\xa0\x4c\x68\x35\x12\xdb\xe5\xaf\xa5\xd4\x95\x0d\xf4\x53\x3b\x7d\xd9\x3a\xd0\xa6\xc0\xde\xdd\xd1\x35\xee\x1f\x64\x5d\x92\x16\x3f\x9b\x06\x38\xb2\x06\xd8\xa0\x73\xf8\xf0\x1a\xbc\xb6\x0f\x6e\x74\xf0\xe0\x36\x74\xa1\x16\x3a\xac\x61\xe9\x82\xa7\x8e\x87\xf3\x4c\x1b\x8a\xcd\x2f\xa9\x1d\xf8\x4b\x08\x9d\x20\x1a\xaa\x80\x2a\xcc\x71\x9a\x03\x84\x95\x03\x82\x6d\x0b\x66\x6e\xb7\xd9\xc4\x66\x21\xe6\x8a\x8c\x12\xa4\xd7\xf5\xf6\x58\x52\xa5\x61\x38\x84\x09\x7e\x92\x2d\xfc\x10\x24\x61\xcc\x2e\x67\x91\x65\x0d\x99\x90\x94\x44\xf2\xa8\x19\x40\xf0\x9e\x5a\xbc\x1e\x18\x2a\x15\xe6\x86\x52\xea\xa2\x65\x12\xb2\x49\x94\xb0\xd0\x1a\xb9\x74\x60\x25\xfb\xcc\x4d\xd5\x3b\x36\xc3\x34\x33\x4f\x85\x5d\x22\x29\x26\xc1\x7a\xed\x06\x54\x0c\xd5\xd8\x15\x6d\x8a\xb4\xa6\xb6\x49\x80\x9b\x44\xfe\x14\x26\x5e\xee\xc6\x62\xf6\x87\xe9\xa8\xe6\x65\xe5\xdb\x37\x69\x6b\xce\xf8\x2c\x0d\x5b\x49\x30\x67\x61\x0b\x7d\xdb\x4e\xdb\xdf\xa2\x6f\x8d\x73\x39\x53\x3f\x1a\x08\x08\x2e\xf6\xe1\x4f\x24\xad\xc0\xd5\x90\x41\x80\xd0\x49\xd9\x71\x14\xe1\xe6\xfc\x69\xcc\x72\xd5\xd9\xad\x61\xa8\x61\x62\x86\xdd\x11\x44\xfa\x91\x87\xb3\x9a\xd2\x67\x5b\x35\xa8\x23\x5f\xbe\x6f\xdc\x0c\xf7\xb9\x1b\xa6\xe3\xa5\xf2\xdd\x94\xb8\x5a\x74\x7c\xf1\xfa\xc7\x17\x7f\xff\xa4\x43\x77\x91\xcc\xd3\xb1\xb0\xe4\x40\x5e\xbe\xfd\xdb\xdf\x5e\xbf\x22\x55\x2d\x13\xa3\x62\xf0\xa5\x3c\xde\x17\x52\x8d\xf6\xba\xe8\x38\x71\xad\xfb\x6a\xc3\x22\xea\xaa\x4c\xfa\xbb\xb1\x51\xf8\xe1\xfc\xcd\xdf\x5e\x11\xe4\xa1\x76\xe6\x99\x10\x59\xde\x8f\x6f\x7e\xfa\x70\x49\xdc\xba\xd3\xad\x4a\xd3\xc9\xbd\x4d\x27\x04\x7d\x1a\xcf\x82\x64\xca\x10\x61\xd5\xd6\xff\xf2\xfa\xc3\xbb\x87\xb4\x0d\x4e\xbb\x6a\xf4\x5e\x46\xc8\x4d\xad\x27\x44\xec\x6a\x39\x5d\xaf\xe5\x81\x49\x7f\xed\xc0\x18\x2e\xd7\x08\xc3\x55\x7c\xff\xfe\xea\xe7\x97\x6f\xff\xf9\xe6\x37\x1e\xae\xcf\x6c\x25\x4f\x54\xb5\xf1\xfa\xfb\xab\x9f\x3f\xfc\xf4\xdb\xb7\xbe\x5c\x34\xb4\xfd\xd7\xb7\x2f\x3e\xbc\xff\xad\x26\x2b\xad\x58\x66\x58\x51\xc0\x77\x62\x0b\xf7\x98\x12\x57\x62\x47\x64\xa3\xf5\x3a\xa5\x7c\xef\x45\x11\xea\x8a\xc6\xe5\xac\x24\x7d\x91\x26\x93\x38\x1a\x97\x42\x4e\x19\x79\xd2\x6a\x24\x25\xf5\x66\x36\x3a\x78\x1c\xde\x88\xdd\xd0\xe6\x3e\x24\xc1\x77\x1b\x22\xfe\x57\xe6\x49\x47\xd5\xd1\xe3\xf4\x4e\xdd\x6f\xfa\x77\xa2\x87\xfe\x51\x8f\x8c\x73\x79\xf6\xf1\xd1\x24\x4e\xf9\x65\xb4\x40\x64\x9c\x26\x9c\x25\xdc\x47\xdf\xe4\xad\x75\xeb\x5f\x7e\xeb\x9b\xdb\xd6\xba\xf5\xb3\xdf\xfa\x66\x85\x08\xbc\x42\x95\x86\x3d\x10\xe8\x8d\xac\xaa\x09\xa0\x4a\x14\x93\x98\xcb\xef\x30\x58\x59\x5f\xf9\x2c\x9a\xf0\xdc\xbf\xbb\xf5\x7b\x5d\xb2\xf2\x4f\xba\x1b\xa2\xdc\x1b\x5e\xce\xd8\x1c\xe2\x7f\xe5\x49\xb0\x10\x7f\xe3\x28\x61\x39\xe0\x18\x47\xe3\xcf\x97\xd1\x02\x3e\xd2\xe4\x87\xf4\x9a\xd9\x0a\x43\xd1\xd7\x0d\xf9\xb3\x38\xaf\x05\xdc\x3f\xea\x6d\x36\x7d\xae\x2f\x72\xdf\x2e\x78\x4e\xcd\x57\x5f\xd2\x90\x3d\x2e\xc0\x80\x79\xb4\xd0\xe2\x08\xbd\xbb\xf5\x05\x62\x5d\x25\xd7\x43\xfc\x35\x86\x37\xfd\xc4\x92\x3f\xca\x71\xc3\x8c\x77\x11\x2e\xfd\x03\x32\x6f\x11\xa7\xdc\x5b\xc4\xcb\x69\x94\x98\xa0\xad\x5a\xe7\x28\xf2\x7e\x92\x59\x74\x38\x22\x99\x09\xf7\x9a\xd2\x6e\x3f\x3d\xcd\xfa\x69\xbb\x8d\xab\x25\x95\xff\xed\x12\xe0\x61\x3a\xf2\xc4\x56\x86\xfb\x26\x10\x5e\x54\xac\x93\x3b\x81\xf1\xad\xc0\x25\x98\xb2\x7f\x91\xc4\x5b\xa9\xdf\x3f\x13\x88\x96\x76\x29\x47\x44\x77\xdb\x4d\xf0\xc6\x80\x09\xdc\x4c\x4a\x01\x89\x07\x43\x3f\x07\xff\xd1\xcc\xe5\x9e\x10\x37\xc4\xb1\x6b\x96\xc6\x21\x03\x5b\xcf\x2b\xd0\x38\x09\xbc\x66\x62\x5a\x10\xc9\xc5\x8a\x11\x8c\x4e\xb5\xe0\x62\x62\x81\xa1\x47\x3d\xec\xbb\xb9\x6a\x80\x24\x02\xe2\xcb\x74\xfe\x2a\x56\xc7\x43\xa9\x37\xb9\x8e\xf2\x08\x4e\x32\x42\xfe\x6a\x6c\x76\x99\x34\x35\x5c\x6a\xa8\x8b\xad\x2e\xe9\x16\x95\x60\x53\x5e\x3e\x24\x33\xeb\x10\x1c\xbf\xe4\xff\xce\xb8\xeb\x26\x1d\x86\x1f\xc1\xbf\x6d\x37\xeb\x70\xfc\x08\xfe\xc5\xa0\x55\x8e\x30\x57\x2e\xc8\x65\x1f\x23\x92\x58\x14\x27\xed\x72\x92\x60\x31\x88\xfc\xd4\x76\x83\x28\xb0\x35\xf9\x2c\x8b\x58\xee\x01\x91\x03\x2c\xc7\x01\x57\x61\x35\x40\x50\x42\x22\x9e\xd3\x32\x8c\x69\x16\x85\x1e\xa8\xca\xce\x41\xa9\xf5\x2e\x08\xa3\x65\x4e\xc6\xf4\x2e\x8c\xa4\x28\xea\xe7\xed\xde\x86\xc4\x34\xed\x33\x29\x66\xc0\x60\xbe\x94\x21\x16\x2d\xf6\x2a\x86\x40\x13\x62\x44\xbb\x24\xa7\x9d\x1e\x59\xd2\x5e\x7f\x79\x9a\x49\x27\x98\x8a\x8c\x97\xed\x36\x96\x29\xc3\x65\xa7\x37\x1a\x76\x47\xa7\x34\xf5\x6e\x1d\x47\x27\x8a\xa4\x33\x99\xe4\x46\x74\xd9\xe9\x91\x9c\x2e\x95\xce\xe0\x88\x52\xd5\x93\x85\x58\x67\xaa\x4a\x24\xaa\x90\x95\xf5\xd9\x1b\x6d\xc8\xc4\x2a\x91\x97\x4b\xe4\xb2\x44\x58\x9b\x46\x31\xc5\x24\x97\xb1\x1e\xf3\xf5\xda\xcd\x1b\x4b\xc8\x53\x5a\x21\x9e\x16\x72\x7c\xa2\x0e\x0a\x77\xb7\x7e\x42\x56\x3e\x87\xb9\x6e\x2c\x99\x15\x25\x99\x40\x6c\x03\xac\x25\x80\x71\x3b\x76\xdd\xa8\x93\xe1\x63\x37\xed\x24\xc6\x77\xf1\xdd\xad\x1f\x50\x37\x7d\xe4\xb2\x47\x79\x87\xb7\x33\xdc\x4e\xc4\xef\x4e\xde\xe6\x9d\x08\xe3\x63\x37\x7f\x04\xe5\xdb\x59\x27\xc2\x64\xe5\xe7\x8f\x82\x4e\xfe\x88\xb5\xf9\x66\x53\xc2\x1d\x7b\xb7\x67\xd2\x7f\xd1\x3c\x02\x69\x1d\x3b\x4e\xee\xdd\x9e\xaa\xb4\xe0\xd6\xa4\xad\xac\x72\x19\x89\x64\x9a\x55\x4e\xa4\xe9\x67\xb0\x59\x27\x12\x44\xd2\x49\xc8\x92\x26\x8f\xa2\x4e\xf6\x28\xed\xdb\x2b\x22\xb8\xca\xdd\xf1\x23\xd6\x8e\x1f\xf1\xf6\x12\x1f\x17\xab\x64\xfc\x68\xdc\x8e\x1f\xc5\x78\x23\x27\x35\x30\x0b\x8a\x4c\xd4\x87\x40\x5a\xc3\x5a\x9c\x4d\x06\x13\x7f\xb1\x71\x33\xef\x36\xb8\x15\x2c\xee\x64\xec\xa6\xde\x2d\xb8\x91\xb0\x12\x56\x22\xa1\x28\xb1\xa8\x96\x58\x54\x4b\x4c\xaa\x25\x26\xa2\xc4\x51\x0f\xe8\x2e\x3c\x1d\x7b\x7a\x3d\xc8\x0e\xcf\x68\x20\x80\x92\x85\xb7\x22\xa9\x77\x4b\x44\x8b\xa7\x81\xab\x7e\x92\x89\x77\x4b\x04\x80\x41\xe4\xe7\xe4\x8a\xba\x92\xec\x16\x69\x24\x4e\x94\xf2\x4f\xf4\x85\x91\x61\x2a\x41\xb4\x45\x6b\x1d\x81\xd3\x23\x57\xc0\xe8\x08\x7c\x8f\x05\x4e\xf0\x0b\x8f\x70\xdf\x5e\x91\x21\x89\x38\x9b\xfb\x77\x06\xa6\x7f\x45\xc4\x6f\xb8\x5e\xf6\x67\x44\x32\x06\x3f\x53\x3f\x64\x32\xdb\x6c\x9a\x59\x8c\xe3\xb8\x31\xbd\x03\x26\xef\xdb\x23\x72\x05\xee\x57\x80\xe1\xfb\xf6\xc0\x5c\x0d\x7b\x23\xbc\xc1\x1b\x75\xf1\x52\xe6\xd4\x42\xdc\x29\xc6\xea\x34\x6f\xf7\x06\x65\x3e\x37\xf6\x04\xee\x24\xc6\x7e\xb5\x66\x23\x38\xee\xcd\xd2\xf4\x73\x0e\x9b\x04\x48\x7b\x6a\x23\x2b\x18\x0f\x17\x8c\xa7\xca\x1b\x29\x30\x29\xf5\xe1\x82\xef\x5f\x19\x9e\xba\x38\xf2\x95\xf9\xa0\x1a\x17\xc7\x71\x1b\xd3\x85\x10\x20\x2f\x53\x1b\xb3\x49\x63\x6a\x73\x59\x01\x8a\x84\x2c\x66\x9c\x35\xe3\x20\x0a\x08\xca\x03\x31\xb4\x21\x5f\xb1\xfa\x66\xf6\xb3\xb5\x82\xd8\x8a\xcb\x93\xbf\xb5\x2b\x15\x1a\x51\x62\xd1\xc0\x4d\xbc\x1b\x31\xea\x14\x81\x5b\x57\x44\x12\x6f\x26\xbf\xa5\xfb\x59\x84\xfd\xa2\x48\x94\x24\xca\x93\xa6\x55\x0e\x12\x7f\x50\x85\xfb\xb5\x9d\xbb\xbf\xbf\x7c\x50\x43\xd2\x08\x78\x8e\x73\x1f\x14\x75\xbb\x14\x54\xa5\x0a\xc2\xdc\x4c\x97\x83\x1d\x71\x9e\x5e\x33\x44\xc4\xe9\x1d\x64\x78\x49\x88\xf9\x6c\xc9\xc5\x19\xa8\x4e\x86\x09\xbe\x3b\x44\xd2\xb8\xbf\x6c\x81\xa8\xbe\x40\x28\x04\x22\xe6\x26\x45\xe1\x32\xb6\x80\x6c\x5d\x3e\xab\x49\x9b\x19\xad\xcd\x00\x49\x69\x56\x72\x82\xda\xae\x73\x0c\x90\xbe\xbd\x5b\x12\xe9\xa2\x3f\x14\xce\x87\x9b\xcb\xae\xfa\xdc\xbb\xed\xb0\x8a\x0f\xe3\xd7\x6c\xc2\x5d\x7c\x66\x92\x87\x8a\x76\x46\x2e\xee\xa4\x8e\xe3\x8a\x3a\x34\x25\xdc\xbb\x2d\x36\x1c\xee\xdd\x12\xb0\x3c\xf2\x56\x35\x78\xe0\x13\xb9\x04\x6e\xa6\xc1\x45\x00\x6e\xd5\xa1\x11\x26\x51\xfe\x26\x78\x23\x00\xe1\x41\x62\x4b\xed\xde\x2d\xad\x7c\xff\x94\xb1\x6b\x41\xd1\xe5\x42\x02\x85\x86\x82\x22\xbd\x00\xbe\xaa\x02\x5f\x55\x80\xaf\x9a\x80\xaf\x28\xf7\x56\xa4\xa1\xa0\x48\xc7\x1b\x52\x62\xa4\xb6\x5c\x92\x91\x54\x4e\x69\xd4\x30\xa5\x01\x4d\x3c\xa9\xef\x92\x47\x2c\xb7\xbe\x76\xe4\x69\x8d\x30\xdc\x47\x82\x97\x04\x42\xee\x92\xfe\x69\x82\x66\x5a\x72\x85\x78\x53\x1e\x04\xb2\xaa\xa4\xac\x36\x98\x48\x0f\xc9\x77\xe0\xbe\xb7\x52\x7e\x07\x65\xf1\x74\x51\x85\xb5\x9d\xb6\x36\xda\x54\x92\x14\x61\xac\x6d\x26\x5f\xa9\xa6\xce\x7e\x8e\xb3\x2d\xc7\x65\x42\xa8\xd9\x94\x4f\x20\xf6\x71\xbb\x7e\xe0\x90\x2a\x52\x15\x8c\x0e\x41\xdd\xd2\x72\xdd\x5d\x5b\xdb\x1b\xc1\xf6\x5c\x1c\x10\x4b\xc5\xaa\x26\x3c\x9c\x32\x13\x93\xa1\x14\xd9\xa2\xdc\x27\x75\x95\x58\x9d\x6e\x75\x5e\x77\x1c\x08\xb0\x0e\xb0\x3c\x65\x45\xbd\xa5\xa8\x89\xbf\xee\x38\xae\x6b\x1a\x6f\x1d\xd7\xfd\xff\x6f\x07\x20\x1f\x76\x5f\xa6\x2e\x52\xef\x0f\xd5\xb0\x01\x85\x68\x27\xd4\x3e\x0a\xae\xf2\x34\x5e\x72\x86\x36\x4a\xe9\x5c\x81\x68\x1f\xf5\x1d\x47\xb9\xa7\xbe\x0a\xc6\x9f\xa7\x59\xba\x4c\x42\x1f\xfd\x69\x32\x99\x20\x82\xbe\x74\xe0\xb2\x02\xf9\xa8\xd7\x7d\xd2\x45\x64\x11\x84\x61\x94\x4c\x7d\xd4\xf5\x9e\xb0\x79\xab\xeb\x3d\x63\x73\x88\x6b\x9f\x85\x2c\xeb\x64\x70\xec\x41\x22\xf7\x29\xa4\x4f\xd2\x84\x77\xc0\x70\x41\xa4\x7d\x27\xd2\x64\x51\x1f\xf5\x16\xb7\xad\x3c\x8d\xa3\xb0\xf5\xa7\x5e\xaf\x87\x48\x18\xe5\x8b\x38\x58\xf9\x28\x49\x13\x86\x08\xba\x99\x45\x9c\x75\xf2\x45\x30\x16\x95\x93\xf4\x26\x0b\x16\x08\xb8\x72\x79\x86\xed\x45\xd9\xe4\x6a\x54\x1d\x46\xc4\x89\xe0\xf8\x9b\xfc\x98\x8c\xe9\xf1\x37\xe3\x63\x12\xd3\xe3\x6f\xe2\xdb\x63\xb2\x14\x7f\x57\xc7\x64\x41\x8f\xbf\xb9\xfd\xe8\xdd\x75\x49\x6f\xe3\x7e\x0c\xef\xba\x64\x83\x8f\xc9\x84\x1e\x7f\xb3\xaa\xa6\x6e\x3d\x8b\x70\x7d\x96\xe4\xb3\x8c\xe5\x62\x37\x82\x60\x4f\x85\xd0\x2a\x0e\x4f\x59\x29\xa1\x07\x1e\x09\xac\x84\x93\x11\xf6\x77\x03\x1f\x2f\xb3\x6b\x16\xbe\x16\x87\xd1\x3d\xc0\xdf\x07\x0d\x0e\xb5\x82\x02\xca\xc7\x60\xce\x16\x0a\xba\x4a\xaf\x09\xde\xc3\x93\x47\xb2\x25\x90\x8b\x65\xc3\xfb\x95\x6d\x43\xa7\x11\x92\x91\xac\xec\x4a\x43\x1b\xa2\xee\xcd\xd6\x7c\x35\x76\x5b\xf3\x4f\x46\xf2\xb2\x48\xf0\x31\xd3\xbd\xe0\x8a\xc5\x56\x77\xd3\x2c\x9a\x46\xc9\x7b\xf8\x80\xed\xcd\x2e\x47\x1b\x8b\xc9\xbc\x66\x46\x29\xef\xa9\x58\x05\x0e\x9c\x19\x39\x6e\x94\x9f\x99\xe3\x1c\xe9\x08\x0a\x08\x09\xd2\x4a\x25\x0c\x2f\x63\xd2\x22\x06\x7d\x33\xe6\x88\xa4\xa2\xfa\xce\x99\x5c\xb0\x6c\xcc\x12\x3e\x88\x68\x35\xe9\x1e\x12\x50\xa5\x72\xe9\x58\xa4\x9a\x5a\x1a\x53\x4c\x50\x02\xcf\x3d\xad\x1e\x44\x85\x41\x58\x10\xfe\xb2\xcc\xf9\x3f\x82\xf8\xa7\x8c\x8d\xa3\x5c\x2c\xc4\xe3\x6f\x16\xb5\x55\x05\x7b\x03\x31\x2d\xcd\x82\xfc\xed\x4d\xf2\x53\x96\x2e\x58\xc6\x57\x2e\x5a\x44\xa0\x70\xda\x8d\x34\x4c\x77\x57\x10\x81\xe3\xb8\x01\x6d\x48\x6f\xc2\x35\xa8\x8d\x6d\x82\xe0\x2e\x8b\xd1\x7b\x96\x89\x98\xc7\x41\x51\x31\x27\xe5\x2c\xec\xdb\x79\x08\xdd\x0f\x71\x9c\xc6\x69\x66\x41\x1c\x93\x72\x96\x0d\x71\xac\x20\xca\xab\xc4\x20\x3f\xbf\x8d\xf2\xd7\xa2\x59\x17\xc1\x41\x13\x11\x8e\x2d\x50\x71\x01\x4a\x9e\x43\x8d\xea\x5d\xd7\xb3\x81\xc7\xdb\x81\xaf\x1a\x80\x2f\x0b\xe0\xab\xfb\x81\x2f\x01\xb8\x54\xe0\xc2\xbb\x4e\x30\x6e\x2b\xb0\xd6\x66\x3a\xf9\xbf\x0a\xed\xb5\xcb\x71\x65\x9a\xd4\xdb\x51\x08\x58\xc3\x83\xf9\xe2\x32\x05\x63\xcb\xa4\x71\x6b\xb3\x14\xe3\x5b\xc6\xc1\x44\x68\xb3\x51\x5a\xd5\x50\xfa\x79\x17\x4a\x93\x66\x94\xb2\x46\x94\x56\x4d\x28\xad\xaa\x28\xd5\xc9\x35\xd9\xb9\xb4\x16\x84\x91\xa4\xb1\x5e\xb6\xb3\xde\x84\x30\x92\xdd\xcb\x4e\xe4\x88\xf1\x68\xfc\x59\x69\x0a\xc3\x7e\x68\x68\xe4\x5d\xca\x03\xce\xc2\x7f\x09\x5a\xb9\x14\x45\x5c\x8e\x07\x28\x93\xa9\x90\x80\x7c\x04\x75\x51\x5f\xea\x79\x6c\xfe\xaf\xdb\x80\xaf\xbe\xd6\x76\x5e\xb5\xa2\xa4\xd2\xfc\x30\x1c\x49\x1b\xe1\x6a\x6a\x95\x67\xcc\x8c\x4f\xb6\x46\x2a\xc3\xca\x2e\x37\x7f\x11\x70\x36\x4d\x05\xa8\x4a\x89\x41\xad\x89\xe1\x6c\x24\x97\xb6\xdf\x98\x75\x8d\x29\xa5\x49\x9d\x4e\xb7\x82\x31\x85\x8e\x3f\xfe\xf9\x78\x4a\xd0\x9f\xff\xfc\xe7\x3f\x23\x8c\xf1\x66\x73\xaf\x38\xb1\xb2\xa6\x42\x8f\xd6\xbc\x34\x5a\x76\x89\xd2\x80\x59\x19\xd5\x31\x9b\x6f\x1f\x96\x55\x7d\x58\x2c\x40\xc3\x79\x6d\x64\x2a\xb9\x30\x38\x59\x7d\xc5\xec\x02\xb6\x75\x7c\xd4\xde\xb8\x27\xb1\xea\xa7\xee\xd5\xd6\xd1\x37\xb7\xa8\xca\x0e\x4a\xe5\x05\x37\x29\x65\xe3\x3a\x46\x32\xda\xda\x9e\x73\xb5\x1d\x93\x15\x6a\x1a\x8a\x02\x93\xac\x92\xbd\x0d\x13\x56\x96\x84\x0b\xd2\x6f\xb4\x89\xd8\x89\xf7\x90\x8d\x0c\x23\x9f\xa7\x21\x53\xe1\xc1\x90\x25\x3b\x55\x8b\x54\x1b\xb7\x38\x38\xad\xbf\x08\x68\x6e\x7d\x37\xfb\x76\x1c\x65\xeb\x73\x4f\xb9\x2a\x26\x3f\xff\x3a\x98\xac\xf6\xc4\x64\xb5\x1d\x93\xf2\xc2\xfa\x55\xa6\x65\x6c\x40\xee\x3f\x39\x95\x5d\x8a\xda\xea\x36\x92\x69\xd7\x48\xea\x56\x33\x0c\x38\xfb\x1b\x4b\x18\x84\x9a\x06\xbd\x70\xdf\x3c\xea\x80\x02\xd2\x73\x04\x6c\x77\x29\x69\xde\x83\x8b\xab\xe7\xe6\xd3\xa7\xba\x89\xc6\x65\x34\xeb\x7b\x15\xad\x5e\xaf\x83\xc6\x4d\xe3\xa3\xe7\xc4\x9b\x07\x7c\x3c\x73\x99\x10\x1a\xc5\x20\xbe\x63\xd3\x57\xb7\x0b\xef\xcf\x3d\x88\x12\x66\xbe\x48\x02\x77\x7a\x7f\x8d\x6e\x99\x74\x49\x49\xb9\x59\x58\x72\x27\xad\xcc\x9f\x2d\x0c\xd1\xb2\x8a\x52\x62\x00\x17\x69\xcc\x8b\x92\xf3\x2c\x0b\x56\x2e\x32\x22\x50\xae\x1e\x59\x59\x37\xc7\xdb\x24\xda\x44\xcf\x20\x1f\xd5\x45\x29\xc7\xd9\x99\xad\xd4\x09\x67\xdd\x1a\xde\xb5\x0d\xba\xa4\xb7\x6c\xc6\x5e\x30\xa1\x77\x29\x4f\xb3\xfd\x91\xaf\x30\x54\x5b\x00\xd8\xf4\x2b\xd7\xef\xa0\xe9\xbd\x8b\x92\x88\x97\x1e\x0c\x25\xec\xa6\x95\x40\xf4\x1d\xd5\x3d\x9f\x93\x24\x98\x33\x1f\x29\xa2\x41\xe4\x9a\x65\x39\x68\x35\xba\xde\x77\xde\x53\xb4\xc1\x85\x09\x06\xa9\x19\x60\xa0\x65\xce\xc0\x88\x6f\xcc\x51\x5f\x1a\xf9\x7a\x12\x71\xb3\xf3\x71\x82\x3e\x7d\x82\x25\xb9\x8c\x19\x22\x77\x60\xdd\xec\x1f\x75\x37\xe2\x50\xf2\x22\x5d\xac\x2e\xd3\x17\x71\xb4\xb8\x4a\x83\x2c\xd4\x4f\xfd\xa5\xaa\x57\xc1\x0b\xf2\x3c\x9a\x26\xeb\xb5\xdd\x0f\xbd\x31\x73\xda\xeb\xf3\xd3\xaa\xe1\x63\x9f\xb7\xdb\xda\x22\xc0\xe4\x0d\xf9\xc8\x48\x3f\x99\xd8\xcf\x13\xac\x1a\x28\xcd\xa5\xb5\x69\x6b\xbb\x98\x0c\xc4\xd1\x61\x36\xa2\xc9\x30\x1b\x99\x50\xca\x6c\x43\xd2\x92\x3f\x45\x7d\xeb\xce\x24\xc7\xd1\x8d\x25\xb4\xdb\x4f\x4e\x75\x14\xc2\x7e\xa2\x71\xcb\x28\x1f\x26\xa3\x7e\xe6\xb1\x64\x39\x67\x19\x58\xef\xdb\x1f\xeb\xf5\x51\x8f\x64\xde\x38\x4d\x26\xd1\x74\x29\xf3\x8f\xba\x04\x49\xf3\xf0\x28\x01\xc1\x33\xf3\x6e\xb2\x88\xab\x3c\x4c\x9a\xa7\x80\x91\xcc\xfb\xcc\x56\x24\xc3\x1b\x8d\x7c\x95\x29\xe9\x45\x2e\xaf\x22\xcc\x88\x90\x04\x93\x0c\xd2\x88\x58\xc3\x9b\x8d\x8b\x49\x44\x73\x37\x71\xbb\xe0\xc6\x58\xfc\x3a\xe9\x76\xb1\x65\x8d\x91\xdb\x0f\xd3\x1c\x87\x79\xc5\xec\x0f\x98\x7f\xa7\x74\x61\x3e\xdb\x14\x66\x0a\x63\x39\x60\xd1\xc4\x3d\xb2\x6d\xf5\xdf\xb1\x09\xcb\x58\x32\x36\x66\xf5\xb3\x28\x6f\xcd\x82\x3c\xf9\x96\xb7\xae\x18\x4b\x5a\x82\xbc\xa3\x20\x8e\x72\x16\xb6\x3a\xad\x7c\xb9\x60\x99\x8b\x4b\x25\xc4\x0c\xb2\xb0\x78\x31\xca\xd7\x6b\x6d\xc4\x69\xad\x2b\xc7\x29\xd4\x0b\x56\xf2\x80\xf9\x7c\xe3\xd6\x89\xb4\x44\x88\xba\x0f\x5c\xdb\x13\x8a\xf1\xec\x1f\x95\x37\x1f\xd1\xb3\xfd\x2c\x65\x5f\x04\x49\x92\x72\xc0\xbb\x15\x48\x0f\x96\xad\x20\x6f\x05\x66\xc2\x10\xde\x48\xa3\x48\x8e\xfb\x85\x0d\x4d\x75\x05\x90\x9c\x4a\x3e\x93\x62\x12\xd3\x6e\x3f\x3e\x4d\xfb\x71\xbb\x8d\xf3\x61\x3c\xb2\x96\x44\x6c\x22\xe0\x27\x34\xa3\x63\x09\x58\x1c\x66\xbc\x4f\x9f\x80\x06\x3e\x7d\x5a\xaf\x15\x4d\x4d\x19\xff\x49\x93\xc5\xdb\x89\xcb\x31\x86\xf5\xe1\x05\x8b\x45\x2c\x48\x0c\xde\x98\x8d\x04\xb9\x8e\x03\xee\xc2\x19\x2b\xf3\xd2\xe4\x45\x1c\x8d\x3f\xd7\xe2\x8d\x72\x9a\xc1\x3b\x91\x9c\x24\x94\xc3\x03\x6d\xd0\x2e\xa5\x89\x18\x6b\x92\xd3\x22\x46\x25\x19\x8b\x74\xc9\xac\x48\x4c\x23\xad\x4c\xf5\x5e\xa8\x02\x5e\x9a\xc4\x2b\x37\xc7\x64\x49\xdd\x2e\x09\x74\x3e\x76\x13\x32\xc6\xfd\xd4\x71\x52\x37\x21\x4b\x4c\x62\xc7\x89\x65\x9b\xf6\x74\x17\xc7\x38\x95\xa9\x51\x36\xa5\x75\x82\x8c\x59\xe6\x66\x24\xc1\xb5\x45\xa4\x27\xb9\x91\x8c\x0a\x71\xa6\x79\xca\xdf\x0b\xba\x6d\xb1\xdb\x45\xc6\x72\xc1\x79\xa5\xc9\x3b\x8b\xf8\x8c\x65\xad\x2b\x06\x1b\xaf\xb4\x90\xd6\xd0\x49\x4b\xd0\x08\x6a\xeb\x16\xb0\xe0\xfe\x7a\x6e\x34\xdb\x1c\x67\x0c\xde\x48\x3a\x8e\xbd\x9e\xef\xc6\x85\xa9\x9e\xaf\x78\x31\x23\x05\xd3\xf1\x8f\x7a\x44\x73\x14\xff\xa8\x4b\x6c\xee\x23\x98\xb6\xe0\xda\x8e\xe3\xaa\x36\xf2\x12\x4d\x0c\x1a\x53\x61\x70\x7c\x56\x50\x14\xe5\x82\x84\x09\xc3\x24\x75\x39\x19\xde\x7d\x66\x2b\x1f\x65\x2c\x09\x59\x86\x88\xc4\xa8\xd9\xcf\xb4\x24\x18\x4e\x5d\xe9\x48\x94\x30\x4d\x2f\xcc\x10\x08\x33\x74\x83\x49\xd2\x18\x0b\xeb\x6e\x53\xde\x05\x18\xe6\xe6\x89\x40\x86\xcf\x68\xd7\x10\xfc\xee\x6d\x81\xc9\x6d\x41\xec\x08\x54\xec\x0d\x46\x6e\x4b\x36\x62\x31\x20\x81\x21\x22\x48\x62\x28\x7e\x48\x0c\x11\x41\x1a\x43\x04\x81\x62\xb6\x11\x34\x37\x00\x8b\x12\xf0\x60\x5a\xdf\xc2\xa4\x24\x73\xef\x36\x24\x21\x77\x8a\x40\xa5\x55\xb5\xfa\xd8\x88\xb3\xee\x48\xb0\x6c\xb7\xa8\xff\xd3\x32\x63\x2f\xf4\xfb\x2e\x8c\x75\xba\xe8\x58\x4e\xef\x24\xaa\xbe\x7a\x68\xad\xe5\x03\xf9\xb9\xa9\xdb\x5e\x96\xb6\x7e\x75\x37\xeb\x9e\x74\x7b\xa2\x53\x48\x40\x6a\xf1\xb4\x35\xd6\x4c\xd3\x6f\xfd\x49\x4c\xf4\x86\xb4\x5e\x25\x9c\x65\xa8\xcf\x3c\x76\xbb\x48\x33\x9e\x37\x5e\x23\xc0\x15\x02\x19\x93\x98\x2c\xc1\x97\xc0\x7a\xed\x72\x7a\xb7\x01\xe7\xc3\xda\xe2\x58\xa4\x67\x2b\xb1\xec\x02\x9a\x41\x04\x60\x6d\x16\xae\x68\xff\x5d\x90\x4c\x99\x8b\xc9\xb8\xc8\x98\x32\xfe\x5e\xbb\xe4\x73\x31\x71\xe3\x6a\x1d\x3d\xba\xca\xfb\x90\x74\x1e\xf1\x42\x5e\x36\x52\x46\x62\x0f\xa2\xc1\x7b\x41\x1c\x53\x04\x4f\x77\x91\x49\xd3\xf7\x41\x14\x4d\x84\xd0\x5b\x64\xf0\x74\x41\xbb\xe6\x4b\x0c\x09\x45\x19\x1b\x73\xb7\x4b\x5a\xea\x3f\x5c\x94\x86\xab\x98\xf7\x8b\x60\xcc\x28\x5a\x64\xcc\xca\x60\x57\x9f\x23\xfe\x21\x67\x99\xec\x02\x55\x34\xa6\xf3\x2f\xd2\x2f\xdb\x33\xe7\xf9\xf6\xbc\x65\x43\x4e\x10\x4a\xd3\x95\xd7\x51\xce\xc5\xf1\xc4\x45\x63\xa0\xe3\xc2\x78\x20\xc1\x77\x89\x97\xf3\x74\x21\xc8\x27\x98\x06\x6a\x48\xf5\x89\x45\x5a\xa5\x64\x4c\x00\x51\x6f\x1e\xb4\x4d\xa4\xa4\x88\x97\x01\x0f\xa4\xa7\x0b\x65\x97\x57\xcd\xcb\x95\xc5\x9e\x86\xa8\x2c\xc8\x89\x99\xb1\xab\x34\x5c\xa9\x2b\x3a\x58\x3b\x6e\x8c\x89\x76\x61\xf4\x26\x0d\x99\x9a\xb6\x5c\xa4\x8f\x45\x8f\x24\x41\xe4\x98\x1c\x19\x18\xec\x96\x8d\x5f\xa4\xf3\x79\x90\x84\xaa\x8b\xb8\x1e\xaa\x56\xa4\xb7\xc6\xb2\x54\xeb\x26\xc8\x5b\xcb\x24\x5f\x8e\xc7\x2c\xcf\x27\xcb\x18\xe1\xfe\x92\x1e\x75\x37\x63\x38\x16\x2d\xf0\x5d\xe2\x38\x82\xc9\xa6\x31\xf3\x98\xac\xbf\x84\xa7\x99\xb0\x1e\x04\xa4\x65\x1e\x25\xd3\x96\xd5\xb2\xdf\x42\x64\x81\x89\x55\xf1\x26\xc8\x12\x17\xf1\x6c\x25\x4a\xfe\xf8\xaa\x95\x2f\xd8\x38\x9a\x44\xe3\x56\xce\x97\x93\x09\xc2\x40\xf9\xca\x00\x7f\xf7\xa8\xad\xd7\x6a\x4e\x99\xd8\x21\x1f\x80\x67\x09\x7c\x1d\x53\x55\x75\x12\xc4\xb1\x28\x7d\x15\x8c\x3f\x0b\x00\x8b\x2c\x9d\x2f\x38\x12\xd2\x62\x7d\xef\x77\x8f\xe7\xc1\xb8\x95\xe6\xad\xdb\xe3\xc8\xe3\x2c\xe7\x6e\x12\x5c\x47\x53\x71\x04\x06\x62\x3c\x9f\x0a\xfe\x34\x40\x1f\x97\x27\x8f\x7b\xdf\x21\x1f\xbd\xe0\x59\x8c\x70\x1b\xb5\x5f\xa0\xe2\x78\x6c\xd4\x34\x7f\xba\xfb\x98\x3f\xfa\xcc\x56\x1f\xf3\x47\x9b\xe3\x29\x11\xdb\x0b\x9a\xb3\x3c\x0f\xa6\x20\x26\xf3\x01\xf7\xd4\xa7\x9f\x62\xa2\x46\x4d\x22\xe8\x46\x84\xe1\xcd\x66\x12\x25\x41\x1c\xaf\xee\xc6\x8e\xe3\xda\xb2\x81\xda\x60\xc7\xea\xc2\x1b\xe8\x67\x50\xfa\x72\x73\xec\xeb\x84\xf3\x38\x86\xb4\xdc\xc5\x20\x6e\x94\x09\x55\x3d\xa7\xd5\x84\x1a\xb8\x46\x8c\x58\x56\xb8\x2b\xbe\x6b\x60\x8e\x7a\x27\xdc\xc2\xca\xfa\x20\x3c\x7b\x99\x68\xff\x45\xba\x4c\xb4\x17\x86\x96\x05\xa0\xd8\xf9\x78\x01\x46\xbe\x0b\x7f\xa5\x83\x84\x83\x71\x36\xed\xf6\xb3\x53\x1b\x58\x3f\x6b\xb7\x71\xa2\xcd\xb1\xa7\x8c\x43\x3f\xcf\xb9\x9b\x61\xac\x7d\x33\x73\x8f\x07\x53\x78\xc5\xc0\xd3\x0f\x8b\x85\x7e\x86\xa7\x9c\x31\xc3\xcb\x06\xe4\xc3\xef\xcb\x57\xff\xba\x3c\x7f\xf7\xea\x1c\xf9\xda\x67\x88\xf2\x65\xa3\xcf\x06\x9c\x0a\x99\x67\x63\xcd\x74\x65\x78\x89\xd5\x2b\xf4\x22\xc8\x18\xbc\xc9\x62\x9e\x98\x2f\x71\xe4\xa8\x57\xb0\x7b\xb3\x5e\x83\x7f\xf7\x57\xe5\xf7\x47\x30\xec\x86\x49\x70\x69\x93\x24\x84\x27\xf5\x74\x7d\xb3\x69\x38\xff\xba\x35\x73\xf8\x7e\x52\xbe\x8a\x32\x87\x09\xee\xcb\xb7\x4c\x0d\xfb\x1e\xc8\x8e\xcc\x7b\xf1\xfe\xbd\x40\xfe\xc5\xfb\xf7\x1e\xcb\xc7\xc1\xc2\xc4\x7a\xb7\xd3\xfa\x72\xfe\xea\xcf\xff\x6a\xaf\xff\x1a\x85\xcd\xff\x5d\x40\xfa\xdf\xad\x8c\xfd\x7b\x19\x65\x0c\x9e\xd3\xea\xea\x1e\x2a\xce\x15\x82\x1e\xe4\x4b\x5d\x97\x61\x92\x99\x17\x26\x24\xa5\x9d\x1e\x04\xd0\x04\x4b\x9d\xf1\x2c\xc8\x5e\xa4\xa1\xa0\x87\x2e\xee\xb7\xdb\xe9\x69\xd6\xc7\xdd\x23\xea\xf2\x72\x66\x8a\xf1\x20\x6a\x53\x7e\x46\x7b\x8e\xc3\x4f\xe9\xe3\xde\x7a\xdd\x3b\x79\x4e\x29\x5f\xaf\xbb\x10\xcf\x9d\x9f\xd1\x27\xdf\x41\xde\xd3\xe7\xeb\x75\xaf\x96\xe6\x38\x4f\x9e\x52\x1a\x0c\xd0\xc7\x8f\xa8\xcd\xcd\x3b\x62\xb7\xf7\x0c\xb7\x51\x0b\xf9\x12\x4a\x0f\xd4\xe1\xa2\x24\x5f\xaf\x8f\x5c\xd1\xde\xc9\x77\xeb\xb5\x4a\xf8\x5e\xfe\x29\x37\xc5\xcf\xe8\xb3\xa7\xf0\xf5\x7d\x17\xbe\xbe\x7f\x0e\x5f\xbd\x93\x13\x2c\x5b\x93\x3d\x81\x5e\xf8\xf6\xef\xa8\x4d\xd1\xc7\xe5\x64\x32\x09\x0d\x6b\x8a\x36\x7d\x7b\xe2\xd6\x6b\x39\xb7\x20\xbf\xd8\x53\x49\xb9\x10\xcf\x12\xbc\x91\x27\x29\x79\xfa\x4a\xdc\xde\x53\xdc\xf0\xd4\xa5\x24\x6e\x71\xeb\x50\x4d\x8f\xba\x46\xfc\xea\x0a\xe1\xcb\x0d\xdc\x4c\xf0\x97\xc4\xed\x89\x43\x58\x44\xc5\xcf\x67\xe2\x8c\x2e\x7e\x3c\x7d\x62\x1f\xd6\x83\xc3\x0f\xeb\xf9\x6f\x71\xa4\xfd\xff\x84\x2a\xc0\x20\x19\xff\x71\xe0\x3b\xf4\xc0\x27\x5d\x3c\xf7\xba\xcf\x1f\x3f\x7f\xd2\xfb\xee\xe4\x71\x9f\xeb\xd3\x47\xa3\xfc\x1f\x90\x05\x45\x9f\x3e\xc9\x2e\x75\x32\x16\x8c\x79\x07\x4c\xfe\x6e\x79\x07\xb5\xdd\x2e\x89\x8a\x73\x3e\x6e\xa3\x4f\x9f\x10\x99\x34\xeb\x65\x8c\xf9\x19\xc9\xfa\xea\x39\x69\xb2\x53\x73\x12\x15\x9a\x93\x80\x76\xfb\xc1\x69\xda\x0f\xda\x6d\x1c\x0d\x03\x5b\x73\x12\x18\xcd\x09\x2f\x34\x27\x6c\x97\x46\x24\x92\x1a\x11\x36\x8f\x38\x67\x59\x83\x54\x34\xd4\x20\xef\xd2\xa4\xa4\xb4\xe5\x6a\xe3\xc5\x1b\x92\x4e\x26\xe5\x2c\xca\x75\x78\x08\xb7\xae\x73\x6e\xf1\x23\x4a\x19\xbc\x9c\x9d\x32\xee\xd7\xdf\xdf\xb1\x0d\xc9\xed\x0c\x50\x05\x32\x9a\x48\x29\xbe\xbe\x41\x6a\xb0\x70\xfa\x85\x23\xe6\xc6\x55\x8a\x1c\x0f\x48\x0b\x83\x86\x84\x1b\xd1\x26\x76\x13\x21\x78\x56\x8c\x04\x41\x08\x7a\x21\xa7\xb3\x26\xe1\xa8\x41\x70\x99\xe0\x97\xc3\xc5\x48\x9e\xfd\xd5\xb0\x55\x6f\xe1\x8c\xb7\x92\x7f\x46\x71\xfc\x8e\x8d\x59\x74\xcd\xe4\x71\xb6\xb2\x41\x16\x0a\x04\x89\x28\x28\xe3\x25\xca\xd6\x33\x36\xbb\x04\x3c\x69\x93\xbf\x74\x34\xc2\xbe\xeb\x46\x34\xc1\x94\x52\x71\xe4\xc4\x83\xee\x11\xa5\xd1\x7a\xdd\x3b\x8e\x28\xa5\xbd\xe3\xc0\x8f\x44\x82\xe3\x04\x47\x94\x06\x78\x90\xd2\xae\xef\xa6\xb4\x49\xd9\xc4\x07\x1c\x06\xdb\x5f\x42\xb0\x31\x37\x5d\xd3\xae\xb6\x85\x50\x5d\x15\xab\xca\x35\x18\x60\xb9\x84\x22\x12\x94\x07\x40\xea\x4d\x9a\x9e\x56\x16\xdd\xd1\x0a\x87\x0d\x49\xc4\x74\x15\x1a\x80\xfe\x44\xe6\xa9\xa9\x10\x2c\x2a\xa7\xae\x9b\xe8\x91\x4f\x8d\xe6\x40\x32\x4a\x2f\xca\xdf\x49\x91\x21\x14\x8b\x48\xba\xef\xb6\xe9\xa3\xb6\xea\xd8\x6f\xb5\xea\x58\xb1\xea\xb8\xbd\xea\x78\xf3\xaa\xcb\x79\xc0\x19\x55\xec\x2f\x13\x34\x28\x5d\x5d\xe1\x0d\x28\x29\xa5\x97\xfa\x0a\x27\x82\x89\x71\xbb\xeb\xcc\x4b\xaf\x72\x96\x5d\xb3\xf0\x2f\x11\xcf\xb1\xc3\xb1\xe3\xc0\xec\xbc\x17\x40\xdd\x26\xa0\x4a\x53\xc8\x4a\xeb\x80\xe3\x07\x90\xae\xb2\x9c\x2d\xa1\x20\xfd\x21\xd8\x29\xd4\xbc\xe2\x17\xc2\xad\xb2\xc2\x1b\x2c\x7d\xbe\x65\xb5\xbc\x8c\xc2\x0b\x21\x09\x37\x78\x0b\x02\x4a\x18\x2e\x46\xc6\x1d\x90\x4e\xf0\xc4\x14\x4b\x0d\x93\x1c\x2e\x49\x00\xb6\x6e\x6e\x6f\x2c\x99\xc1\x92\x0d\x96\xfe\xae\x35\xfd\x21\x99\x1f\x8e\xe8\x64\x52\xc1\xb4\x66\xa6\x0c\x13\xb5\x6d\xd5\x14\xa0\x06\x55\xd0\x53\xc6\x5d\x5c\x45\x78\xdb\x1a\x74\x4b\x63\x63\x14\xda\x40\xe8\x5e\x94\x4b\x82\x67\x78\xc0\x86\xdd\x91\xcf\x94\x7d\x08\x50\xaa\xe2\x4c\x72\x80\xeb\xcb\x56\x21\x1b\x6a\xcc\xf4\xc2\x0d\xb6\x2d\x5c\x12\x60\x72\xf7\x53\x96\x5e\x47\x21\xcb\xfc\x09\x79\x91\x26\xb9\x10\x00\xfc\x70\xb3\xb1\x4e\x24\x66\x4f\x6e\x7c\x69\xbd\x97\x02\xf0\x31\x3c\x50\x77\x9f\x0a\xb9\x13\xe4\x51\x71\x40\x48\xdc\x08\x93\x9c\x0a\x81\x94\x8c\xe1\x3b\xc7\x24\xa6\x89\xfb\x04\x93\x25\x7c\xc7\x98\x2c\x68\xe2\x9e\x60\x32\xa1\x77\x71\x34\x9d\x71\x7f\xec\x05\xde\x55\x9a\xc6\x24\x0c\xb2\xcf\xc5\xd7\x64\x19\xc7\xd6\x57\x74\xcb\x42\xf8\x94\x96\xc9\x24\xe7\xd1\xf8\xf3\xca\x4e\x01\xfb\x3e\x3b\x21\x4b\x63\x66\x7f\xf3\x60\xea\x2f\xbc\x5f\xc8\x58\x3f\xc3\x2f\xd5\xce\x95\x38\x0c\x89\x6a\x34\xd9\xed\x22\x48\x64\xb3\x69\xc2\xde\x4e\xc4\xf8\xbb\x43\x83\x54\x51\x7d\x84\xcb\xef\x35\xb5\x28\x92\x50\x18\xf4\x20\x09\x49\x44\x99\x67\x5a\x26\xb9\xf8\xd2\x4d\x92\x31\x65\x1e\x0c\x06\x89\x29\xf3\xc4\x38\x90\x09\x04\xcb\xbd\x65\x21\x09\x29\xf3\x64\x6f\xc9\x4c\xd4\x12\xdd\x24\x57\xe2\x10\x1c\x4c\xc9\x5c\x09\x85\x6e\xea\x05\x18\xf4\xd1\xb2\x39\x44\x90\x69\x4c\xfc\xce\xcd\xbd\x2c\x82\x86\x10\x41\xa2\x19\x44\xb4\x0e\x13\xc9\x26\x44\x59\xd1\x00\x22\x88\x07\x53\x34\xc2\xe4\x42\xb7\xb0\xf0\xa6\xd8\x5d\xba\xd8\x8d\x08\x4a\x82\xeb\xab\x20\x43\xa4\x6e\x07\x02\x4f\xc3\x98\xe3\xb8\x47\x6a\xfd\xa3\x5b\x30\xa9\x60\x03\x55\xa9\xa3\x10\xf4\xcb\xdf\x1d\xd4\x66\x58\x1c\x92\x88\xeb\x72\x7a\xa7\x33\x25\xb2\xfe\x58\x37\xd9\x01\xac\xfd\x78\x83\x87\xe8\x6a\xda\x41\xed\xd9\x88\xce\x08\x1f\xca\x6e\x74\x50\x7b\x32\xa2\x13\xf1\x2d\xbb\xd3\x41\xed\x70\x44\x43\x30\x13\xce\xcd\x7a\x0a\xbc\xa0\xa2\x05\xbe\x52\x17\xaa\x6e\x26\x86\xf1\x6e\x43\xe6\xe4\xae\x20\x93\x0b\x21\x01\xf5\x43\x58\xdf\x72\x09\x4e\x48\x58\x51\xaa\x0b\xe2\x12\x38\x22\x4d\x34\x47\xbd\x0d\xe1\x5e\x40\xc3\x3d\x35\xea\xbf\xc6\x82\xd2\x14\x0e\x9e\xf6\x6c\xe2\xde\x9b\xe2\x35\xf3\x82\xb4\x04\x4c\x5e\x1a\xe8\xba\x44\xca\x49\x89\x94\x81\xcc\x35\x07\xcc\x15\x95\x8e\x6b\x54\xba\x8d\x38\xcd\x9d\x89\xa1\xbf\xb8\x46\x7f\xdc\x10\x83\xf4\xce\x92\x21\x2c\x84\x8e\xad\x93\x9b\x57\x27\x77\x6c\x4f\x6e\xbc\xc1\x24\x5a\xaf\xeb\xd5\xe4\xcd\x80\x5d\xd4\x46\xa4\x82\x42\x27\x1a\xa7\x09\x22\x09\xde\x97\x54\xae\x96\x9c\x8b\x1a\x30\x55\xfa\xeb\x00\x8a\x01\x62\x79\x2c\x89\xe5\x29\x10\x8b\xfb\x5c\x91\xca\x09\xd0\x8a\xdb\xfb\x4e\x92\x4a\xb7\x42\x2a\x3d\x41\x2a\xe2\x7b\x81\x49\x28\x49\x69\x06\xdf\x21\x26\x57\x02\x68\x0f\x93\xb9\x24\x29\xb3\xf6\xc7\x6a\xe4\xae\xbc\x4b\xe3\x84\xb9\xe8\x23\xb9\x8b\xf2\xb7\x0b\x96\xf8\x13\xc3\x19\x35\x19\x4d\xca\xac\x53\x7c\x06\x62\x3b\x7c\x3b\x71\x27\x8a\xc2\x30\xd1\xbf\x46\x18\x78\xf4\xbc\xc4\xa3\x75\x26\x91\x03\x6e\xb5\x61\xe8\x77\x52\xd0\x2f\xbc\xe2\x7c\xc7\x26\x4d\x0d\x8b\x41\x85\xb6\xd4\x02\x28\xaa\x8d\xf0\x06\x93\xe9\xce\xce\xda\x53\x68\xfa\x7b\xd4\x23\xc1\x62\xc1\x82\x4c\xfc\x62\x09\x67\x99\x38\x59\xb3\xdb\x88\x8b\xbf\x30\xcf\x61\x74\x8d\x08\x8f\xe6\x2c\x5d\x72\x7f\xee\x31\xef\x85\xf2\x6e\xbd\xc1\xe4\x9a\xba\x6e\x06\x5b\xf9\xdc\x0b\xbd\x57\x6f\x2e\x5f\xbd\xfb\xf1\xcd\xdf\x46\x54\x7b\xc0\x8e\x92\x29\x22\x59\x91\xf9\xea\x65\x91\xc7\x5a\xd2\x89\x8b\xca\xfe\xd7\x8f\x97\x5b\xab\xfe\xeb\xc7\xcb\x52\x4d\x44\x32\x4b\x33\xb4\x2a\xfb\x17\x86\xe7\x8a\xf2\xd5\x24\x1c\x44\xce\xb7\x59\x41\x18\x3d\xa8\x92\x81\x80\x0d\x18\xed\x16\x57\xae\x82\xb1\x96\xc8\xe5\x33\x5c\x70\x92\xb2\x21\x43\x94\x26\x70\x3d\x08\x68\xea\x0f\xd8\x86\xd2\xe4\xd5\x6d\xc4\xcd\x0f\x53\xe0\x36\xe2\x2c\x44\xa3\x86\xe3\x2a\xc3\x77\xc9\x90\x8d\xa8\xf8\x47\xbe\x90\x55\xf3\x18\x88\x79\x4c\xe4\x5d\x52\xb2\x51\x89\xb9\x48\x84\xe7\x84\xea\x34\x58\xc8\x77\xe6\x62\xd7\x2b\xb0\xab\x1c\x15\xa4\xe4\x66\x4e\x04\xaa\x53\x62\x08\xf5\x8b\x30\x6d\x4a\xa0\x01\x40\x3d\x21\x46\x9a\x4e\xee\x05\x12\xc6\xa9\x09\x24\x0b\x6d\x88\xb7\x11\xaf\xbb\x7b\xd9\x0f\xbf\x5b\xe9\xf8\xc5\xc0\xa9\x7a\x88\x64\x42\xbc\xce\x19\x97\xb4\xd0\x6f\x86\xdc\x6d\x02\x2b\xd5\xc8\x05\x64\x16\xee\x81\x63\x63\x87\xa1\xb2\x82\x55\x17\xbe\x8b\x53\x89\x8e\x65\x6a\x59\x9a\x04\x53\x78\xe6\x24\x17\x2a\x09\x28\x2f\x09\x5f\xdc\x93\xdc\x84\xc4\x94\x5b\x9b\xd7\xc2\xb6\x47\x99\x50\x97\x7b\x9a\x9f\xe8\x2d\x24\x92\xe4\x33\x84\xdd\x89\x20\x09\xbe\x22\x6c\x69\xe1\x68\xdb\xc6\xa6\x61\xa2\x11\x16\x1c\xd8\x3a\x0d\xc8\xb1\x28\xd8\xee\xdc\x8b\xb0\x3b\x21\x73\x6f\x6c\xb1\xa7\xb9\x37\xd3\x89\x9a\x62\x97\x75\x81\xc6\xe2\x5d\xc4\xde\x7c\xef\x36\xe4\x82\xdc\x45\x89\x9f\x91\x82\x48\xb5\x45\x81\xfe\x26\x86\xd8\x4a\x39\x2c\x24\x72\x52\x4c\xea\x6d\xc4\x89\x99\x74\x3b\x55\x01\x81\x09\xb4\xd3\x59\xb8\xb1\x1d\xb3\x98\xd7\xde\x75\x41\xb2\x75\x3d\x64\xa3\xf5\xba\xe0\x5a\x1b\x97\x8b\xed\xce\x8c\xc2\x14\xbb\x33\x17\xbb\x01\xc9\x48\xee\x38\x7a\x3f\x2e\x82\x07\x90\x18\x36\x3a\x79\xfc\x0c\x07\xe2\x87\xaf\xa9\x2d\xdc\x6c\x1f\xba\xda\x78\x4d\xc9\x1d\xdc\x9f\xfb\x95\xfd\x61\x2a\xaf\xd5\xc9\x04\x5b\xdb\x55\x44\x32\x36\xf1\x99\xa2\x61\x3d\xd5\x1b\x4c\x16\xd2\xb3\x1d\xdf\xb8\xb1\x7d\xc4\x3b\xb7\x44\x85\x0b\x72\x5e\x16\x15\xa6\x20\x0f\x9c\xff\xae\x12\xe4\x55\x5e\x9c\xba\x16\x51\x1c\x5b\x9f\xda\x79\xe5\x5e\x07\x22\x52\x78\x11\xb5\xa5\xce\x5f\x96\x39\x8f\x26\x91\x3a\xcc\xa9\xb3\x9d\x7d\xd2\x53\xdb\x7c\x01\x33\xc8\xac\xb2\x07\x9f\xe1\x1e\x22\xbf\x8a\x41\x00\xd9\x15\xfa\x0f\xa7\x33\xdd\x75\x52\xf6\x8f\x0a\xc7\x34\xd3\x25\x38\xaa\x89\xde\xc0\x41\x4d\x71\x98\x2b\xd8\x17\xb3\x90\xcc\x95\x30\x7c\xb1\xb7\x30\x2c\xf0\x40\x04\x01\x16\x88\x20\x8d\x03\x22\xa8\xc0\x00\x11\x64\xda\x87\xd3\x5c\x1c\x97\x58\x50\x90\x85\x85\x2c\x3d\x6d\x90\xa5\x67\xe6\x60\x26\x4e\x2f\xea\x0c\x73\x74\x14\x3b\x8e\x02\xbc\xea\xa8\x37\xf8\x1d\xd4\x8e\x0f\x3b\xf1\x4d\x62\x76\x2b\x56\xe4\x72\x9e\x20\x5f\x7e\xa1\x36\x6b\x23\x9d\x86\x37\xee\x18\x13\x38\xec\x75\xa0\xb3\x7e\x24\x51\xee\xcc\x58\x10\xb2\x4c\x25\x5e\x39\x8e\x3c\x73\x76\xe4\x50\xf8\x79\xb9\x94\x4a\xbd\x72\x9c\x5c\x16\x2b\x46\xc4\x9f\xc8\x14\x18\x17\x5f\x30\x9f\x5d\x27\x85\x79\xf5\xa4\x70\x61\x8b\xff\xd3\x7d\x65\xfb\x65\x8c\x8a\xb5\xf2\x9f\x3c\x07\xca\x3b\x7f\x6b\x2d\xfd\x96\xab\x46\x36\xf6\x80\x33\x9f\xf2\x58\x7f\xef\x89\xaf\x13\x71\x36\x17\xb4\x19\x39\x4e\xe1\xe6\xfe\xab\x4e\x7e\xfb\xcd\x67\x1c\x1d\x72\x32\xab\xcd\xe1\x73\x79\x3c\x13\xe7\xb2\x5c\x4e\x69\x69\x0a\x7b\x95\x29\x7c\x52\x39\x9f\x9d\x88\xf3\x19\x20\x12\x7a\xbf\x14\x07\x9c\x65\x99\x07\x2f\x8b\x33\xd0\x52\x9f\x75\x96\x36\x3b\xd6\x7e\xda\xa1\x22\x50\x83\xa2\x8e\x65\x9d\x3a\x96\x4d\xd4\x61\xb5\xa0\x0d\x11\x4d\x4b\xb3\x4c\x61\x14\x24\xab\x0d\xb9\xfa\xda\x33\x83\xb6\x26\x4e\xf4\xaf\x92\x5c\x1f\x29\xb9\xbe\x10\xea\x83\xfd\x84\xfa\xba\x89\xb2\x25\x6e\xea\xf1\x19\xb0\x9a\x35\x9b\xef\xa2\x3f\x21\xed\xfa\x56\x96\x16\x1d\x76\x9c\x7a\xd1\xb2\x00\xab\x0c\x8c\xeb\x69\x2e\xc3\xf7\x0a\xb5\xc6\x0c\x76\xaf\x65\x17\xa8\x65\x97\xc3\xdb\x13\x25\xb4\xc6\x0f\x5b\x83\x25\x11\x95\x2c\x35\x90\x50\x2c\xc7\x49\xb1\x1c\xe3\x28\xf9\x8c\xc8\x9d\x21\xac\xd8\x8c\xa1\x26\xad\xa8\xc4\x6f\xc7\xb5\xf5\x19\x54\xd7\x67\x4c\xee\x04\x25\xe5\xa4\xc9\xd4\xd5\x26\x50\x2d\x4b\x09\x98\x96\x34\x75\x65\x2d\xe6\x19\xb9\x6a\x5a\xcc\x81\x5a\xcb\x57\x0f\x5a\xcb\xbd\xef\xe4\x62\xee\xc2\x5a\xf6\x12\x37\x50\xca\x16\x58\xcb\x5e\x22\xf6\xb3\xa5\x5c\xc4\x0b\xf8\x5e\xc2\x6a\x16\x8b\x18\xd6\xf2\x73\x58\xcc\x46\x3d\x12\x6b\xe5\x86\xc5\x95\x6c\xb5\x5d\x9a\xb3\x17\x5b\x73\xce\xb3\x28\x80\x07\x4b\xa5\x1c\xb3\x5e\x63\x4b\xab\x07\xaa\x71\xab\xd4\x24\x08\x65\x01\x58\xf8\x4a\x9b\x61\xbe\xa5\x4e\x0b\xbe\x61\x75\x8b\x71\x9b\x78\xbf\x90\x22\x00\x97\x84\x35\x0b\x16\xcc\x0d\xbd\xa0\x18\x74\x5c\xf0\xa7\xb8\xcc\x9f\x2c\x6c\x2c\x3c\x74\x13\x23\x2c\xb8\xc6\x9d\xc4\x13\x29\x9b\x4b\xa4\x11\x2b\xe9\x52\x2a\x5d\x47\x2f\x20\x60\x9a\xec\x91\x28\x58\xe0\x68\xb3\x8b\xbb\x0d\x11\x88\x96\xb5\x38\x4b\x79\xe7\xf4\x56\x9e\x69\x8e\xba\x1b\xbc\x29\xf4\x22\xf3\x1d\xfb\x5e\x69\x5e\x60\xe9\x95\xb1\x02\x91\xb1\x58\xa6\xb1\x5a\x9b\x4b\xa3\xbe\x17\xf2\xa1\x3a\x9a\x82\x26\x1f\x06\x1c\x24\x44\x73\xfc\xbc\x10\xe9\xc5\x19\x6e\x2a\x44\xcb\x20\x64\xe4\xda\x5e\xe0\xab\xdd\x0b\xbc\x84\xa7\x4e\x30\x58\xd6\xa4\xcd\xa9\xa5\xfd\x37\x27\x5b\xe5\x01\xbb\xac\x9a\x35\x78\x09\x91\x33\x08\x59\x85\x65\x9c\x6b\xb4\x26\x82\x65\x2c\x24\xcb\x08\x62\x96\x71\xa4\xfe\x76\x50\x7b\x49\xee\xd4\xef\x30\xca\xe7\x51\x2e\x7d\xa2\xfa\x57\x1b\x4c\xc6\x98\xdc\xd4\x40\xa8\xd0\x78\x24\x81\xfc\x2f\xf4\xbe\xe9\xbd\x20\x77\x57\x81\xea\xbf\x3f\x1d\x5c\x78\xc5\x17\x2a\x54\x72\x22\x43\xff\xee\x6e\x0c\xaf\xca\x6b\xbc\x2a\xf4\x6a\xdc\x6a\x45\xbe\x10\x60\x2a\xf6\xde\x79\x4e\xa2\xc4\x9f\xc9\xcb\x27\xdd\x67\xb3\x28\xae\x37\x98\x5c\x0d\xea\xc0\x8d\x3a\xf8\xae\xa4\x0f\xb6\xc0\xde\x10\x14\x64\x51\xd0\x81\x57\xdd\xc8\x0f\x0c\x87\xbc\xda\x90\x06\x78\x4a\x77\x2d\xeb\xcc\xa2\x30\x64\x42\x02\xe7\xd9\x92\xa1\x0d\x41\x1f\x6f\xc3\xe7\x08\x63\xe5\xd0\x18\x6f\xe6\x25\xb6\x39\x2f\xb3\xcd\x2b\x60\x97\xf3\xff\x80\xf8\x9a\x47\x5f\x1e\x76\x8d\xf1\xb0\x43\x9f\xdc\x3c\xc1\xf7\xe5\xfe\xc2\xab\x5c\x35\xe0\x8c\x69\x9b\xe8\x0a\xd1\x72\x3a\xd3\x2c\x5d\x2e\x10\xc9\x07\xf6\x77\x07\xb5\xa5\xe3\xe8\xdd\x72\x6c\xf4\xeb\xc8\xb1\x82\x7f\xfe\xee\x87\x91\xc4\xfd\xbe\x2b\x36\xbf\xe2\x50\x12\x86\x69\x72\xa9\x6f\xa8\x60\x8b\x70\x87\x68\x91\xb1\x05\x83\x7b\x4b\x69\xe8\x8f\x46\xd8\xb6\x42\xa9\xdd\x4b\x1d\x42\x0c\xb3\x07\x13\x83\xc1\x55\x72\x74\xcd\x9b\xf7\x97\xab\x24\x79\x18\x30\x95\x57\x41\xe1\x3d\xe4\x22\xc8\xc3\xa2\x8c\x7a\x68\x88\xf1\x60\x0f\x62\x89\x6d\x62\x11\x47\xe0\x7a\x9d\x89\x17\x90\x42\x2a\x19\x6f\x30\xf6\x0f\x06\x4c\x4a\xf5\x37\xfd\x99\x45\x90\x21\x99\xed\x26\xc8\xd9\x7f\xee\x64\x65\xd0\x5e\x6a\xd2\x02\x1e\x6c\x9d\x81\x80\x0f\x59\xdf\x57\xf9\xfb\x4a\xca\x75\x10\x47\xd6\xc9\x2a\x4a\x2a\x09\x5f\x7d\x7a\x5b\xc4\x41\x04\x26\x20\xd6\xf1\x4d\x10\xd5\x03\x4e\x6f\xbf\xc2\xf9\x6c\xca\xf8\x3b\x36\x91\xfe\x1c\xdf\xb1\xc9\x96\xd3\x99\x34\xa8\xa7\xea\xef\xaf\x71\x84\x53\xed\x6e\x39\xc1\xe9\xc1\x2d\x1d\xb8\x74\xa2\xab\x43\xf9\x65\x6c\x42\xc1\xae\x47\x62\x57\xb5\x37\xca\x4c\xfd\x8c\x4d\xcc\x93\x80\x5f\xe7\xa8\x06\x76\xba\x42\x5a\x94\x04\x04\x1c\x06\x08\x05\x24\x44\x45\x34\x20\x25\x0a\xfe\xb3\xd0\xfc\x07\xa4\x45\x43\x00\x20\x30\x1a\x01\xb0\x6e\xff\xb1\x95\x13\x49\xf6\x23\x9b\x46\xf0\xba\x3c\x0a\x41\x6e\xd3\xbf\x2c\x5e\x85\x08\x32\x0d\x56\x64\xbb\x0b\x3a\x44\x59\x10\x46\x29\xf0\x32\x36\xfe\x7c\x95\xde\xa2\x91\x79\x5a\x19\xe1\xb3\x4e\x8f\x4c\xa9\x34\xe6\x9e\xbe\xba\x5d\xb8\xe8\xe3\xc7\x97\x88\xa0\x29\xc2\xe4\x9a\x2e\xd7\x6b\x57\x05\x7b\x16\x7c\x2c\x52\xcf\x96\x82\x8c\x05\xf0\x3d\x88\x7c\xc9\x01\x11\x26\x2b\x8a\x26\x69\x36\x07\xfd\x63\x96\xc6\xa8\x3f\x1b\xb8\xab\x36\x45\x1d\x0b\x37\x80\xa8\x6b\xf8\x68\x12\xc5\x4c\xc2\x81\x82\xf0\xe9\x5f\x38\x8e\xbb\xa2\x0b\x79\x05\xa0\x40\x0a\xcc\x3b\xba\xa1\x39\xec\xfa\x8e\x33\x95\x8f\x94\xe4\x27\x36\xd6\xd0\x6e\xe8\xc5\xd8\xfd\xf6\xa7\x98\x05\x39\x6b\x2d\x21\xa2\x27\x6b\x89\x39\x6f\xe9\xf1\x04\xfb\x78\x16\x84\x2d\xf0\x7a\xc2\x5a\x52\x22\x80\xd8\x51\x69\xca\x73\x9e\x05\x8b\x8f\xdf\xe6\x2d\x68\xb0\x95\x47\x5f\xa2\x64\xea\x7d\x2b\xb8\x97\x6c\x4b\xfb\x5c\x56\x2d\xf7\xe5\xcd\x6b\xfd\xdc\x1d\x3b\x0e\x8a\xf2\x8e\x99\xb3\x5c\x7e\xab\xaf\xa3\xa3\xc0\x71\x4a\x43\xd6\x41\xed\x80\xac\xac\x2d\xc4\x55\x43\x45\x29\xbd\x5e\xaf\x97\xcd\x2f\xa4\x97\xa2\xeb\xff\x2f\x77\xd7\xde\xdc\xb6\xad\xec\xff\xbf\x9f\xc2\xe2\x9d\xd1\x21\xc6\xb0\x2a\xb7\xe9\x8b\x3e\x3c\x9a\x24\x4d\xdb\x4c\xea\xc4\xd3\xb8\xa7\xa7\xe3\xf1\x78\x28\x09\x92\x18\x53\x24\x0f\x49\xc9\x56\x2c\x7e\xf7\x3b\x58\xbc\x16\x24\x28\xcb\x76\x6e\xda\xe9\x4c\x26\x16\x41\x00\xc4\x63\xb1\x8b\xfd\xed\x62\xb1\x04\x72\x0d\x63\x3e\x3a\x8a\x45\xf6\xfb\xbd\x45\xbf\xaf\xa6\x4f\xf8\xc0\xb6\x85\xd2\xda\xca\xb2\x6e\x0e\x23\x5c\x52\x72\x70\x13\x57\x8b\x83\xe8\x80\x17\xe1\x63\xe6\xfd\xe3\x30\x3e\xfc\x87\x77\x30\x11\x67\x08\x16\xd1\x9a\x1d\xa8\xaf\x0e\x0e\xd0\xc8\xcb\xa8\x08\x5f\x78\x52\x9c\x80\x83\x9f\x1e\x7e\x3e\xa6\x7a\x28\xcd\x09\xe1\x36\xf2\xb0\x76\x38\xfc\x14\x6c\x16\x8c\xf1\x4e\xfe\x71\x20\x03\x6c\xe0\x81\x38\x9f\x02\x34\x7c\x12\xd1\xd6\x44\xf8\x2c\x15\x02\x0b\xb4\x24\x93\x68\x9e\x10\x25\xa0\x86\xa3\xf7\x6d\xec\x30\x5b\x55\x49\x9c\xb2\x4f\x28\xe1\x5a\x98\x62\x53\xea\xb6\xe5\xf4\xfe\x80\x25\xa8\x8e\xba\xb1\x7f\x43\x84\x72\x6f\xd8\xf1\x01\xa2\x4c\x22\x8b\x69\xc8\x2e\x30\xe1\x5c\x82\x2c\x03\x92\x91\xd0\x87\xe5\xd4\xc8\x47\x1a\xe4\x99\x91\x7d\x06\xf7\xe0\x32\x4d\x92\x0e\x48\x35\xe0\x7d\xc6\x97\x11\x09\xb6\xb6\x95\x4c\x43\x94\xa8\x2d\xd4\x83\x76\x34\xbd\x1d\x05\x50\x60\xdb\xdf\x25\xae\x21\xbf\xae\x74\x36\x07\xe0\x79\x52\x5a\x61\x79\x0c\x5f\x3b\x45\x7c\xd0\x37\x0f\x61\x9b\xbb\xb8\xd5\xef\xde\xd0\xa8\xde\x40\x06\xf3\x10\x6e\x64\x3d\xf4\xf3\x91\x77\xa4\x1a\x16\x78\x1e\x39\xf4\x00\x1f\x59\xb7\x24\x00\xdf\xa5\x03\x29\x97\x35\x2d\xb7\x5b\x28\xce\x7f\xcc\x69\x0f\x38\xf3\xb8\x4a\x8f\xbc\xc3\x85\xb4\x91\xf0\x27\x39\x3e\x8a\x15\x54\x66\x2d\x3b\x28\xab\x26\x34\x21\x27\xa7\x12\xdd\x56\x28\x44\x18\x86\xe3\x7e\xdf\x1f\x87\x5e\xe4\x89\x86\x6f\xc2\x72\x24\x81\x37\xd0\x5e\xbb\x11\xde\x86\x63\xa5\x85\x6e\x88\x7a\x4f\x15\x71\x8e\x54\xba\x0a\x45\x60\x5b\xdf\xd6\x60\x58\x5f\xba\x91\x61\x8b\xb1\xa5\xdb\xed\xe6\x51\xac\x5b\xc1\x8f\x70\xa7\x74\x54\x6c\x3c\x8a\x5d\xf5\xfe\x74\x6e\xde\x66\x80\x71\xfa\x89\x99\xf0\x5f\x50\x89\x28\x57\xe3\x65\x5c\x85\xea\xc7\x5f\x4e\x8d\x90\xed\xdb\xad\x47\x88\x4c\x9f\x4c\x91\x10\xf3\xfe\x54\x9b\x8f\xa8\x65\x6f\x9b\x8f\xe0\x29\xb0\xbb\x94\x25\x1f\x6b\xdc\x71\xd8\x71\xca\x07\x5a\x71\x78\x33\x9e\xb4\x22\x9f\x86\x4c\x5a\xfc\xe6\x51\x8e\xd6\xcd\xc3\x09\x4d\xac\xd3\xf2\xb5\x11\x9b\x96\x87\x63\x9a\xa5\xd6\x32\x95\xfb\xca\x44\x92\xcc\xfe\x54\x22\xc5\x24\x72\x3e\x91\x66\xfa\x99\x03\xbc\x32\x72\x47\xe1\x57\x31\x2d\x47\x28\x41\x57\x13\x98\xc4\x7b\x8c\xf8\x93\x9d\xb0\xd3\xec\x21\xe0\xa7\x44\xe5\xc5\x57\x3f\xbf\x5b\xc6\xfe\xd4\xd1\xa4\x06\x11\xde\x1f\x3b\x4d\x89\x94\x84\x95\xc8\x3f\x8b\x67\xce\x71\x26\xfb\x44\x0d\x5c\xef\x62\x1e\x0b\x56\xe6\x59\x5a\x2a\x07\x91\x7b\xfd\xb9\x14\xed\x9b\x72\xe7\x32\x45\x8b\x1b\x47\x3d\x20\x63\x70\x77\xb1\xd3\xf5\x53\x48\x5a\x0d\x09\x90\xb4\x19\x0d\xd8\x7a\xca\x81\x00\xef\x2c\x38\x4d\x33\x05\xaf\xad\x35\x13\x96\x37\xd3\x03\x6b\xef\x69\x75\x0c\xec\x6f\x9a\xa9\xce\x1f\xba\x5c\x54\xeb\xf4\xcf\x04\x0c\x9a\x9e\x6c\x99\x39\x7e\x23\xef\xdc\xf1\xcc\xc7\x35\x43\xb6\xda\xd3\x60\xd0\x6b\x17\x72\x0c\x67\xbb\x95\x83\x0c\x3c\xc0\x02\xec\xf5\x4a\xfd\x6c\xda\xd5\xeb\x4d\x1a\xa9\xa2\x89\xc2\xf5\x4b\xa4\xeb\xd6\xf6\x7a\x33\x9d\x28\x1a\xde\xeb\x4d\x75\x8a\xe8\x03\x5f\xc5\x74\x13\xee\x71\xb8\x66\x2e\x04\xc1\x29\x62\x97\xeb\x9a\x40\x68\x93\x85\xa0\x82\xe7\x56\xf7\xc0\xb1\x6c\x31\x92\x5f\x43\x23\x15\xb4\x92\x60\xf7\xbb\xdb\xc5\xeb\x0e\x6b\xf8\x74\xa3\x8f\x6e\x6e\xf6\x62\x23\x72\x8c\xed\x45\xf0\xe7\x58\x56\xb4\x34\x4a\xb3\x9f\x56\x55\xc5\x8a\xf2\x11\x9e\x5e\x94\x4b\xd2\x27\x09\x19\xfd\x75\xe4\xfa\xc5\x20\x28\xd1\x03\xa4\x8c\xae\x44\x53\x3f\x48\xf8\x0e\x31\x13\x8f\xbc\x34\x3b\x9a\xcb\x12\xc2\x8c\x39\x19\x89\xbd\x49\x91\xdd\x78\x81\xc7\xff\x7f\xa0\x6f\xd8\xe3\xc5\xca\x53\x66\xfe\xd9\x57\x8d\xa9\x7f\x94\x6e\xe0\xd8\xe7\x8b\xf0\xf5\xf6\xf6\x7e\xec\xca\x08\xf4\xe2\x2c\x21\x7e\x82\x97\xc7\x9d\x46\x63\xf6\x2e\x7d\x49\xa8\xb8\x94\x66\x41\xc5\x49\x82\x60\x51\x93\x4b\x42\x97\xc6\x99\xed\xb6\x0c\xc6\xb4\x5c\x06\x63\xba\x9c\x06\x63\x9a\xcc\x83\x31\xbd\x4d\x2c\x10\xee\x3e\x64\x07\xae\x7b\x2b\x85\xef\x59\x51\x44\x9b\x9a\x9e\x62\x81\x2f\x5f\x5f\x78\xb7\xc0\x7d\x97\x1e\xf5\x96\x9c\xfb\x26\x9c\xc4\x6e\x13\xef\xb2\xa6\xf3\x56\x38\x64\xe9\xd7\x0a\xd7\x95\x6e\xb7\x1e\x57\x54\xd3\x11\x1b\x79\x93\x8c\xef\x5b\x26\x00\xab\x56\x81\x17\xad\xaa\x0c\xbf\x3b\x82\x04\x9d\xe1\xd0\x93\x09\xf2\xad\x77\x98\xe2\x77\xde\x61\x5a\xd3\xf5\x83\x57\x9b\xe8\x90\x5e\x6a\xfb\xaf\x30\x51\xd0\x6c\xdf\x56\xe1\xc5\xe5\x49\xec\x0a\xff\x80\x62\x57\x5f\x54\x97\x70\xc5\xa4\x80\x54\x93\x8b\xea\x92\x66\x72\x44\xf4\xad\x5e\xbd\x82\x67\x89\x7c\xe2\x67\xf2\xc2\xcd\x92\x4e\xc2\x78\xe4\x1d\x79\x81\xa7\x3a\x4b\xf3\x70\xee\xc7\xb4\xa2\x99\x44\xb8\x57\x22\xd6\x45\x53\xcd\xf0\xfd\xd2\x9c\x6d\xe6\x39\xd5\xd7\xa4\xe0\xbf\xf0\x80\xa6\xbc\xc3\xc9\x61\x36\x80\x9f\x3c\x23\xfc\x80\xd8\x42\xea\x01\x72\x02\xd5\xc9\xac\xf0\x1b\xf2\xc2\x2f\x9d\x19\x9e\x68\xc9\x75\x48\x22\xae\x79\x94\x57\x68\xca\xe6\xea\x96\x2e\x48\x0d\x77\xed\xad\x64\x24\x83\xed\x56\xbe\x00\xb2\x10\xfa\x66\xee\x50\x9b\x56\xbb\xb5\xa4\xdd\x6c\x28\x07\x36\xb4\x46\x6c\x68\x49\xd7\x36\x1b\x3a\x05\xe6\xb3\x7e\x18\xf3\x39\xfe\xd2\x2d\x77\xbe\xfa\x72\x3f\x77\xb6\x67\xcf\x5c\xbe\xa9\x02\x63\x3a\x8f\xc6\xe0\xfc\x15\xa5\x9b\x0e\xb7\x36\x87\x8b\xda\x27\xc0\x13\xe4\x41\x33\xd3\x88\x54\xea\xee\x3a\xa5\xa6\xa9\x12\xf6\x78\xd5\x40\x88\x52\x71\x71\x30\x2b\xe2\x35\x9b\xc2\xc9\xa4\x1f\x8b\x6c\xd9\x0c\xd3\x40\x51\x68\x14\x53\x2d\x84\x18\xd1\x4f\x23\xd4\x02\x94\x5c\xcb\xa3\x6f\xd5\xce\x78\x02\x0f\x42\x02\x32\xc9\x03\x62\x43\x75\x0b\x82\x02\xa0\xa8\x20\xd1\xd7\x6c\x53\xfa\x0b\xc2\x67\x18\x93\x27\xf8\x54\x55\xd1\x58\xb9\xf7\x7b\x10\xb8\x62\x87\xc4\x9c\x0d\xa2\x81\x8a\x2d\xa0\xc2\x7b\x9b\xce\xbe\x96\x88\xa2\x38\xc9\x64\xfa\x5d\x3b\xdc\x0d\xb2\x26\xd1\xc7\x98\xe8\xcb\x9a\x48\x54\x20\xc6\xa8\x80\x3e\xc0\x97\x67\xc9\x66\x16\x27\x09\xf1\xc7\x44\x20\x00\x74\x0f\xc4\x00\x04\xf5\x3d\xab\x24\x1d\x4c\xc1\x53\x0d\x87\xbf\xd4\x33\xbe\xa8\x25\x6c\xfb\xf4\xed\xdb\xb3\x67\xc8\x2b\xf4\x4e\xb9\x57\xee\xbf\x67\xab\x60\xb8\x27\xd2\xdf\xda\xf8\x2c\x2e\x1e\x70\xc2\xe5\xf5\xf4\x11\xae\xfa\x50\x0e\x7b\xea\x3b\xce\x6d\x61\xbf\xbd\x95\xa2\xb1\x3c\x4a\x99\x47\x2b\x8d\x43\xc7\x21\x04\x2c\xa2\x29\xa9\xbb\x09\x2e\x07\xf0\x56\x44\xb0\x80\x3b\xc7\xa8\xef\x12\x97\x88\x04\x1f\x7d\x14\x40\xc4\x01\xe4\xff\xf6\x75\x5b\xf9\x9c\xb8\x41\x33\xb2\x45\x6e\x9d\x98\xaa\xf6\x50\xc3\x95\x1d\xac\xad\x91\x5f\x92\xa7\x39\x57\x3d\x22\x3c\x00\x98\x82\x2c\xd0\x72\x22\x0f\x5b\x69\x57\xd9\xd9\xfe\x11\x03\x94\xc3\xaa\xd2\x8e\xc5\x81\x29\x43\xa4\x4e\x27\xab\x71\x34\x9d\x83\x9e\xce\xff\x4a\x2d\x99\xeb\xc3\xe2\x19\x2a\xc0\xcc\x70\xa6\x4c\x22\x60\xd8\x09\xc3\x30\x81\x8b\xa9\xbd\xc8\x73\x79\x53\x25\x4d\x5a\x9b\xd9\x8e\x52\x80\x82\xee\xa1\x60\xb4\xed\x11\x30\xf1\xbd\x63\x61\x97\x80\xb6\xfc\x09\x28\x56\x8b\x5a\x8a\xec\x06\x69\x9e\x0b\x36\x41\xa0\x93\x34\x51\x18\x48\x4a\x99\x9f\x3e\xef\x91\xbe\x22\xbb\x01\x8a\xd3\x27\x14\x84\x3f\x1f\x9b\x5c\x4b\xdf\x1b\x00\xd4\x67\x92\xfa\xa6\x7b\x53\x1f\xd7\x33\xa9\xa7\x6a\x55\x2e\x31\x4d\x70\xfd\x92\x6f\x93\xba\xd0\x52\xa8\x42\x69\xaf\xa2\xb8\x74\x52\x91\x2e\xa3\x3d\xbf\x37\xd9\x6e\x7b\x09\xd1\xce\x1d\xd2\x79\x45\x7c\x41\xbe\x86\xdb\x44\x74\x43\xb0\xd7\xe0\x2c\x66\xc9\xb4\x14\xa1\x53\x67\xfd\xbe\x3f\xd5\xa3\x10\x96\x4e\x67\xc0\x26\xf9\x4e\x31\xf9\x2e\xfe\xaa\xde\xa6\x5c\x93\x6e\x6b\xc6\x0e\x5e\x28\x35\xd5\x89\xad\x19\x3b\x32\x22\xc8\x12\x97\x41\x0a\xf1\xa2\x53\xc5\x6d\xaf\x12\x61\x06\xee\x5c\x28\x4d\xc8\x77\x66\xb3\x7c\xb5\xc7\xde\x7f\x93\xd0\xa9\x5c\x4b\x9d\x78\xd2\x56\x99\xa5\x51\xfd\x6f\xa7\x34\x8b\xa1\x07\x06\x20\xf5\x67\x63\x07\x51\x6c\x20\x57\xe0\xf2\x42\xa0\x57\x74\xbc\x37\x13\x90\x06\xfe\x86\x8e\x6d\x78\x81\xc4\x84\x67\x59\xe1\x01\x71\x5c\x5c\x9e\x94\x0f\x52\xbc\xc7\x2e\xc5\x9b\x46\x52\xf5\x9e\x35\x54\xef\xc8\x56\xbd\x4f\xe2\x70\xee\x47\x46\xf5\xa6\xcb\xb6\xea\xbd\x42\xaa\x77\xfc\xd9\x55\x6f\xd8\x06\x72\xd5\xfb\x40\x37\x55\xb7\x52\xdc\x70\x0f\x2c\xe2\x34\x6c\x36\x59\xb1\xd0\xb2\x38\xca\xd2\x64\xa3\xc0\x6b\xc4\x24\x25\x45\xf7\x7a\x79\xbf\x0f\x74\x04\xef\x20\xf5\xc8\x3b\xcc\xe9\x92\xf6\x7a\x4b\x7d\x7f\x74\x23\xc7\xc3\x0c\x53\x8b\x6a\x99\xfc\x98\x15\xc1\xa2\xa6\xe3\x76\xf4\xa8\x4f\xaf\xc3\x7f\x12\xe8\x78\x96\xac\xe2\xe9\x67\x3a\x20\x0c\xdf\x7a\x84\xd2\x01\xe5\x76\x1f\x0f\x8e\x39\xb7\x48\xab\x28\x4e\x59\x71\x24\xf2\x07\x26\xe5\xf3\x9c\x12\x7e\xb4\xbc\x1b\xc2\x44\x0e\x52\x11\x13\x13\x66\xcc\x3a\x5b\xf8\xad\x04\x82\xbf\x14\x58\xcc\x71\x03\x8b\xf9\x5a\x48\xbb\xe3\xef\x20\x8e\x93\xff\xd5\x10\xc2\x38\x0d\x52\x7f\x21\xe2\x38\x7d\xff\x35\xa1\xa7\x90\xb0\x24\x74\xce\x29\xe0\x7b\x42\xd7\x90\x30\x27\x74\xc3\x8b\x0e\x09\x7d\x0e\x09\x1b\x42\x6f\x78\x1d\x5f\x11\xfa\x11\x12\x6e\x08\xbd\xe2\x39\x8e\x09\x7d\x07\x09\x57\x84\x9e\xf3\x8f\x7e\x47\xe8\x2d\xaf\xfc\x1b\x42\xdf\xc2\x8b\x5b\xe2\x13\xff\xae\x04\xd7\x0a\x11\xc2\xf9\x6d\x36\x65\xea\x96\x91\xc2\x91\x58\x13\xfa\x4b\xe8\x67\x46\xc7\x77\x04\x17\x38\xe8\x08\xa2\x58\x13\xfa\xaa\x19\xfa\xd5\x79\x75\x34\xbe\x42\xac\x15\x8c\x34\x05\x37\x65\x51\x75\xf5\xaf\xe3\x51\x75\x74\x1c\x0c\x09\x2d\xc2\xe3\x93\xe2\x9f\x32\x18\xfe\x45\x71\x74\x8c\x43\x93\x16\x26\x34\xa9\x0c\x45\x2a\xbb\x98\x92\xba\xa6\xef\x43\xd7\x75\xf1\xb4\xca\xf2\x60\x48\x13\x36\xab\x82\x21\xcd\xf2\x68\x12\x57\x9b\x60\x48\xe1\x1e\x6f\x56\xc0\x05\x1c\xa5\xbc\xa3\xbd\xa6\xff\x0d\xef\x6a\xfa\xb2\xfb\xf6\x29\x1c\xb5\xbd\xd5\xa5\x02\x75\x29\xe5\xf4\x35\x3c\xc9\xfe\x99\x9e\x64\x87\x87\xa4\xb8\xc8\x70\x47\x32\x14\xd9\x78\x67\x40\xe3\x82\x48\x8c\x8d\xbe\xf3\x89\xff\x9c\x2f\x38\x42\x3d\xc0\x79\x3c\x7a\x37\x8d\xaa\x48\xcd\x32\xdc\xd3\xc0\x6b\x37\x33\x8c\x8b\xe4\x59\x9e\xb3\xe2\xb5\x8c\x24\xee\x51\x91\xc9\x95\x87\x53\x89\x47\xc5\xc1\x28\xfc\x36\x2a\x8a\xec\xa6\xeb\x65\xc9\xaa\x33\x54\xda\xc2\x0a\xe0\x3a\x7e\x53\xb7\x8c\x58\xf1\x4a\x5c\x81\x86\xfc\x7b\x04\x14\x68\x32\x86\x8c\x56\x83\x15\x04\x17\x3d\xb3\x5a\xef\x8b\xb8\x52\x8d\xef\x3f\x37\xed\xf3\xed\xc8\xce\xba\xe5\x10\xa7\xd9\x2a\x27\xaa\x07\xd0\xf1\x34\x9b\xc6\xb3\x98\x15\x1e\xbd\x63\xa9\xd0\x93\x7a\x43\xb9\xc7\xfc\x7e\x38\xa4\x33\x3b\x60\xb4\xf0\x71\x82\xc3\x01\x62\xdc\xf5\x8c\xa2\x00\x4b\x30\x41\x0c\xcd\x4d\x5a\x13\xca\xea\xc6\xdc\xcc\x59\xf5\x4e\xdd\x5c\xd4\x06\xbf\xee\x4c\x69\x35\x62\x3a\x85\x82\x2b\x6a\xf9\x4a\xb6\x57\xbd\xb7\x52\xa9\x5a\x14\x70\x4d\xa4\xa9\x03\xa7\xd2\xa5\xec\x7c\x19\xac\x7d\xe0\xc3\x2a\x9b\x7e\x41\xef\x60\x18\x3b\xdf\xcb\x88\xe8\x38\x49\x0c\x3c\x1a\xce\x1e\x9a\x0b\xca\x12\xd5\x29\x9d\x56\x13\x0a\xcb\xe0\x3d\x84\xfc\x31\xe5\x8e\x6b\xea\x98\xa8\x40\x51\x87\x95\x5a\xc3\xa6\xa5\x39\xbe\x82\x80\xa0\x5e\x27\xc0\x88\xe9\x0e\x2e\xd3\x07\x24\x95\x4f\xdf\x08\x3a\xac\x19\x0b\x7e\x25\xb7\x51\xa5\x2c\xab\x87\x94\x8f\x0e\xca\x05\x91\x8a\x4a\x12\xbc\xef\x6c\xd7\x99\x9a\xcf\x8e\xb6\xa1\xd6\xa8\x87\xf6\x72\x6f\xd5\x0d\x0b\x62\x57\x97\xf5\xb8\x37\x7a\x6c\xb5\x3e\xd2\xb5\x94\xc1\x7f\x1d\x5f\x79\xb7\xaa\xde\xcd\x5e\x64\xab\x74\x1a\x15\x31\x2b\xdf\x0b\xd6\xb4\x6f\x37\xe0\x13\x8b\x18\xc9\x25\xfb\x03\x53\x56\x56\x45\xb6\x39\x6b\x70\x2f\x5c\xbd\x9a\x3a\xf5\xb6\xdf\xf7\x9b\x49\x03\x59\x8d\x6f\x18\x8c\x7a\x05\x41\xaa\x5a\xec\xc4\xc5\x75\x9a\x5f\x75\x36\xcd\x57\x01\x9b\x45\x4d\x88\xaa\xa8\x74\x88\xcc\xc1\x2b\x51\x5e\xb4\x20\x96\xc0\x49\xda\xef\xbb\x9a\x0d\xe2\xe4\x7c\x10\xf9\x29\x65\xc2\x48\x22\xd9\x84\x4f\x1c\x1c\x70\xb2\x60\x7c\xd3\x26\xa2\x31\xdf\x37\x44\xad\x11\xb2\x8b\xfb\xe2\x66\x96\xfa\xa3\x7f\xbf\x47\x27\x0e\x78\xed\x8c\xf1\x8d\x5c\x39\x35\xd5\x82\xdd\x46\x3f\x09\x11\xd7\x31\x3a\x90\xb5\x99\x68\x95\xb0\x58\x99\xa8\x19\xa7\x88\x00\xd3\x6e\x41\x82\x3d\xb1\x2d\xae\x09\xd5\x58\x29\xca\x27\xb5\x45\x6c\x1d\x35\x8c\x1c\xd9\x07\x82\xa5\x59\xb7\x7e\x95\xba\x15\x0d\x9a\x15\x40\x51\x33\x2f\x90\x30\x1a\x46\x64\xf8\xd1\xc9\xb2\xa9\xad\x39\xa5\xe9\xbd\x81\xbf\x5f\xf9\x0e\xcf\x5b\x29\xf0\xe1\x4d\x07\xd9\xbb\xbd\x6b\x25\x91\xfc\xe2\x3b\x62\x74\x13\x1f\x3c\x91\x54\x48\x42\xb3\x7d\xa0\x22\xe2\x1b\xbc\xb0\x59\xb7\x4f\x90\x28\xb5\xdf\x6b\x16\xea\x13\x9a\xd9\x2c\x49\xe7\x74\xb1\x2a\x9f\x50\x7b\x98\x02\xc7\xd0\x51\x60\x82\xa0\x70\x04\x56\xa3\xf5\x9e\xa3\xd1\x66\xc3\x7a\x7d\x2e\x8e\xc0\xa0\x96\x59\x06\x35\x9f\xf8\x2f\xa9\x87\x55\x19\x8f\x22\x49\xef\x8d\xb3\xaa\xca\x96\x5e\x43\xc0\xf7\xd0\x6e\x5e\xae\x04\xbd\xff\xb3\xa4\x7c\xef\xb8\x26\x27\xe7\x83\xc8\xd0\x44\x69\x4c\x55\xd7\x58\x6b\x6c\xd6\x47\xd3\xf0\xd4\x17\x4a\x61\xf3\x95\x67\x2e\x60\xcc\x1a\x7a\xdc\xdb\xfb\x8c\x45\x05\xfe\x14\x1f\xb1\xae\x9a\x5e\x52\x10\xb8\x1d\xdd\xe4\x04\x3f\xaa\x82\xa2\xa6\x22\xb8\x28\xc4\x49\xfd\x3d\x84\x2b\x77\xe8\x0f\xa0\x0c\xfd\x4e\x4e\xd0\x50\x03\xe7\x7a\x21\x74\xef\x33\x11\x05\x06\x92\x7e\x45\x30\x61\x2e\x61\x42\x7c\xe8\x5d\x2c\x46\x13\x00\x26\x47\x16\x20\x3d\x4b\xae\xc4\xb3\x82\xcd\xe2\x5b\xfc\x0a\x88\xc7\x59\x13\x17\x7c\x40\x2a\x90\xa8\x11\xf9\x17\x83\x0f\x2a\xfc\x8a\x4a\xb7\xce\xe3\x6b\x4c\x20\x47\x61\xa1\x04\x06\x9a\xdb\x48\x2a\x6e\xa0\x46\x52\x2f\x09\x9d\x45\x49\x32\x8e\x26\xd7\x67\x56\x57\xba\x0b\x02\x56\xc9\xcb\x25\x71\x6e\xda\xaa\x95\xfc\xe0\xc5\xe0\x9a\x56\x51\x31\x67\x15\xff\x89\x1b\x6b\x36\x96\xa8\xb1\x63\xbd\x06\xd5\xec\x76\x7f\xfe\xc5\x20\x92\x27\xd4\xb2\x92\x4d\x21\xa3\x08\x26\x1c\x4d\x19\x1a\x36\x13\x7a\x26\xd7\x38\xf1\x99\x15\x1e\xa7\xa6\xff\x09\xef\xda\x5f\xf6\x44\xd8\xdd\xb3\xa8\x80\xfd\x17\x5a\x82\x00\x86\xa2\x39\xea\x1d\x53\x13\x7b\x58\x8e\xf7\xd0\x31\x94\x1e\x1f\x25\x4f\x8c\x95\xb8\xec\x47\x8e\x92\x37\xce\xa6\x1b\x0f\x0d\xc9\x5d\x6d\x3a\x86\xb8\x66\xbd\x23\xa2\xce\x54\xe2\x24\x67\x8d\x90\x2b\xa4\xa6\x1f\x9e\xea\xc5\xb1\x88\xd2\x69\xc2\x74\x47\x5e\x2e\xa2\x74\xce\xc2\xd4\x9d\x6e\x1d\x06\x99\xa0\x33\x23\xac\x3a\x07\x4a\x00\x85\xab\xf1\xdc\x55\x68\xde\x28\x34\xdf\xb3\x50\xe7\x21\x16\x94\x4d\x8d\x70\x68\x7e\x76\xb6\x5d\xb8\xb1\xc8\x59\x56\x11\x6c\x6b\x73\xc4\x25\x79\xb4\xcf\x8a\x8a\x39\xd4\xef\xf7\x54\xbd\x23\xf5\x21\xf5\x4e\xfa\xa9\x3c\x76\xb3\x25\x77\x5a\x57\x52\xb1\x92\x9b\x00\xf5\x28\xe4\x2e\x1f\xcf\xb2\xfb\xcd\xc5\xf0\x72\xe7\x4b\x71\x28\x7f\x8f\x2c\x62\x43\x60\xd3\x42\xeb\xcc\x4f\x65\xde\xc1\x71\x9e\xb9\x3b\xbb\x7d\x71\x88\x29\x24\x8b\xbc\x54\xeb\xab\xa3\x94\x9c\xba\x17\x83\x19\xb1\xb6\x21\xaa\x18\xa9\x69\xf7\xb1\x24\xd5\x47\xd1\x40\xf7\x02\x71\x20\x67\xae\x4d\x99\xbd\xe5\x55\x5b\x34\x0d\x15\x18\xc6\x83\x72\x01\x5a\x80\x69\xb8\x39\xd9\xe6\x88\x29\x7f\xad\x62\xe0\x99\x5a\x35\xc3\xaa\xd1\x0e\x4d\x5d\x82\x7c\xbf\xf7\x93\xc6\x90\x53\x1c\x82\x25\x33\x11\xb4\x22\xc0\x96\xe3\x9c\x4e\xe0\xc6\x68\x98\x1b\xaa\xc2\x57\x13\x30\xf1\xb4\x18\x24\x9c\x49\x6d\xc8\x4b\x11\x71\xc1\x12\x94\x60\x0c\xd2\xdc\x17\x4e\x0b\x34\x84\x32\x0a\xeb\xea\x33\x33\xa1\x94\x19\x08\x82\x40\xf0\xae\x16\xd7\xa7\x6b\x5e\x42\x0d\x1b\x15\xe1\xbd\x08\xdd\xd8\x71\xbf\x50\x28\x2d\x05\x93\x77\x44\x95\x56\x01\xbb\x04\xe7\xf7\xc4\x38\x78\x54\xd9\x62\xa8\xd7\x1a\x04\x11\xe5\x01\x0f\x81\x27\x21\x36\x1c\x34\x4c\x77\xdf\x53\xe8\x1c\x7e\xab\xa2\x86\x29\xa8\x9d\x7a\xba\xdf\x70\xf6\xa1\xd1\x69\x71\x53\x36\xf4\xd8\x84\x0e\x43\xe1\xc4\x2e\x51\xe4\xaf\x17\x83\x39\xf1\x4b\x9f\xf8\xa2\x4d\x70\x21\x6d\x45\xe8\x47\xa7\xba\xb1\xdd\x3e\x47\x90\xd4\x55\xf8\x71\x50\xe6\x49\x5c\xf9\xde\x91\x47\x2e\x86\x97\xf4\x5d\xab\xd6\x31\x5d\x8d\x56\x60\x53\xbc\x0a\xae\xac\xc0\x8d\x7a\x84\x09\x3d\x0f\x2d\x99\x27\x25\xae\xfa\x3b\xa9\x85\x84\xd5\x28\x51\x44\xc7\x6c\x11\xad\xe3\xac\x08\x92\x9a\xca\x53\xda\xef\xd6\xac\x98\x25\xd9\x4d\xe0\x90\xfc\x73\x85\x2a\x05\x0e\xc0\xef\x6b\x00\xfc\xa0\x61\xce\x55\x5f\xd7\xf4\x94\xd0\xdb\xf0\x1e\xb1\x4c\x37\x38\x12\xda\x7a\xb4\x71\x47\x42\xe3\x2f\x1c\x91\xd0\xe2\x96\xbd\xe4\xac\x1d\x09\xed\x96\x3e\x87\xa0\xe2\x59\x2b\xe8\xb7\xa4\x6e\xb8\xd7\xa1\x26\xb4\x5d\xdb\x35\x6d\xef\xb3\x1b\x4c\x16\xed\x56\xce\xd1\xe6\xe8\x63\xed\xf6\x07\x2b\xd8\x0c\xee\x74\x13\xd1\xb9\x33\xbc\xd0\x81\x57\x18\x45\xaa\xbb\x8f\xc2\x7b\x5c\xe8\x59\x52\xaf\x2a\x90\x75\xec\x1d\xf5\x6e\x8f\x74\xad\x5e\x90\xd5\x34\xa5\xbd\x45\xbf\xef\xa8\x49\x9e\x05\xe7\x55\x45\xd0\x36\x1c\xd4\x4d\x54\x2d\xf1\x39\xe1\x81\xb6\x5b\x8d\x55\xbc\xd5\x08\x29\xbf\x43\xb8\x88\xf1\x23\x8a\x1d\xc3\x72\x91\x42\x5f\x79\xa7\xd8\x31\x4d\xf5\x22\x1e\xc9\x73\xab\x98\x4f\xfb\x24\x18\xeb\xbe\x9d\x65\x45\x15\x25\xfe\xee\x61\x93\x6a\xe8\xaf\x6c\x56\x53\x67\x85\xb2\x65\x4d\xf1\xe9\xcb\xc0\x74\xd2\x03\xd4\x3a\xbf\xfd\x01\x99\xe1\x7e\xa5\x1f\x6c\x33\xdc\x7f\x60\xd3\xf2\x3a\xfc\x40\x7f\x0b\xef\xf2\xb6\x56\xe1\xbf\x18\x8c\x49\x87\x8a\x60\xab\x11\x0d\xc5\xc7\x38\x2d\xe9\x14\x87\xd6\xf4\x70\x85\x62\xe2\xd2\xc7\x00\xef\x70\x6a\x6a\xdd\x3a\xdc\x0e\x45\xd1\xa9\xa8\xc9\x00\x9f\x5a\x8f\xe1\x5a\x06\x00\xa0\xba\x33\x3b\x54\xc9\x29\x4b\xa2\x8d\xb3\x6f\xd2\x31\x66\x21\x47\x45\xfa\xcc\xe8\x8a\xc5\x73\x4d\x6c\x35\xd0\xa9\x9c\x3d\x4c\x93\xd4\x8e\x8f\x8e\xfc\xd0\xbf\x46\x41\x75\xfe\x90\x56\x45\x3c\x9f\xb3\x02\xf7\xce\x56\xe9\x2c\x5d\xb3\xa6\x3f\x87\xa2\x77\x43\xd1\xa9\x61\x4d\x7f\x0c\xd1\x5d\x30\x96\x9a\xa6\xc7\xb4\x77\x2c\x87\xec\x67\x35\xee\x96\x9a\xa5\xda\xe0\x4d\x92\x78\x72\xad\x03\x99\x22\xaf\xde\x7f\xdb\x8e\xe7\xfd\xbe\xcf\xc4\x05\x80\x95\x5a\xb2\x25\xc4\x13\xe6\xd4\xff\xc7\x53\xf5\xaf\x2b\xb1\x3e\x00\x92\xa6\xe9\x20\x9a\x4e\x05\xa7\x11\x36\xca\xb0\x95\xd2\xa5\xc6\x08\x81\xf5\x83\xbc\x7d\x5c\x05\x4b\x71\xa4\x76\x55\x20\xae\xf6\x6e\x7c\xbc\x9d\xd8\x55\x5c\x0c\x75\xa8\x7e\x74\x6a\x5b\x8b\xec\xe6\xf7\xb8\x5a\xfc\xc0\x67\x28\x6c\x3c\x77\xf6\x2d\x9e\x32\x5c\xc8\x7a\xee\x56\x01\x4f\xb3\x55\xc9\xf8\x66\xe0\x3c\xcb\x92\x2a\xce\x5f\x0a\xbf\xfb\x70\xc7\xbb\x7b\x2a\xfb\x85\x45\x6b\xd6\x55\x9b\xe3\xe5\xae\x51\x90\x9d\xdf\xd5\x67\xd9\xd5\xee\x46\xbd\x2a\x27\x6f\xd8\xe6\x87\xec\x26\x0d\xed\xc7\xbf\x80\xfa\x3c\xb8\x8a\x4b\xb8\x0b\x93\x4d\xc3\xde\xb1\x43\x9d\xde\x57\xe5\x75\x5f\xa8\x89\x6b\x1f\x52\x84\xf6\x0b\x62\xdd\x0f\xf8\x6e\xd5\x74\xac\x24\x67\x93\xec\x95\x96\x35\x49\x58\x54\xbc\x5f\x64\x37\xe7\x62\xe7\x66\xa5\xff\x1c\x4f\x99\x4e\xaf\xff\x3f\xe1\x82\x9d\xf4\xed\xd6\x17\x25\xdf\xd3\x81\xe3\xe4\x49\x68\xf2\xaf\xa3\x63\xfe\x41\x93\x51\x31\x52\x65\xe6\xb8\x5a\x98\x6e\xa9\x3b\x41\x5b\xbd\x6d\x6f\x7a\xec\x4a\x55\x9a\xd8\x69\x02\x8b\xf0\x09\xa9\x77\x2f\xad\x8e\x80\x21\x8f\xef\x49\x69\x26\x0e\xf7\xc4\x9e\x4f\x36\xc8\x59\x51\xc6\xa5\xee\x15\x1e\x80\x90\x6f\x05\x65\x56\xa1\x28\xe8\x05\x0a\x8c\x9d\x99\x4d\x16\x70\x27\x1f\xd4\x39\x8f\xa8\xbe\xa2\x15\x8b\x7b\xe7\xbd\x82\x8b\xeb\xe1\x1a\x8f\xc1\x35\xdb\xc8\xd6\xf1\xb2\x32\x86\x94\x03\xac\x10\xfb\x6f\x87\xe9\xe6\x84\xcb\xac\xae\xdb\x91\x19\x09\xd4\xf5\xec\x21\xbe\x5a\xdd\xaf\x06\x93\x55\x51\x00\xee\xa1\xb6\x8a\x57\x79\x96\xf3\xb1\xd5\x50\x8d\xe0\xc0\x3b\x1b\x01\xb2\x57\xb9\x42\xb7\x3f\x34\x8a\xcb\xb7\xd1\x5b\xbf\xba\x60\x97\x64\xf4\xf3\x05\xbb\x0c\x2a\xf8\xaf\x56\x6c\xb1\x2b\x4a\x0c\x10\xd0\x76\xeb\xef\x5c\x86\x92\xb2\x64\xb4\x7f\x5b\xd8\xb4\x71\x9e\xfd\x09\x1b\x53\x4e\x8b\x04\x0c\x1b\xef\x20\x01\xb8\x39\x4e\x34\x09\xd8\xfa\xce\x2e\x2a\x62\xed\x6a\x8a\xdd\x45\x5b\x34\xb6\xbb\xb8\x17\xc5\x7f\x3a\x2a\x07\xa6\xdb\xf8\x00\xe6\x47\xf0\xce\xaa\x19\xb7\xd0\x35\xd8\x2a\x36\x55\xda\x1a\x90\x7b\xea\x45\xdd\x71\xf5\xd0\xd4\xeb\xda\x39\xed\xa4\x70\xc5\x7f\x24\xe0\x71\xe0\x91\x93\xca\x30\xa3\x84\xcd\xa3\xc9\x46\x72\x23\xdf\x41\xc1\xff\x36\xa0\x99\x68\x96\x52\x1c\x47\x0f\xe6\xb7\x36\xdd\xf4\x5a\x35\xcb\xe5\x4b\x46\x7a\x12\x35\xad\x70\x3e\xe0\x68\x9c\x26\x68\x9c\x91\x04\xa8\x7f\x62\xdb\x2c\xba\xd7\xd5\x95\x47\x88\x0e\xdc\x8c\x5d\xcd\x6d\xb5\xad\x76\xec\x9a\x11\x65\xd8\x57\xd4\xcb\xa9\x6b\x43\x9f\xae\x49\x3d\x3a\x06\x76\xac\x7b\xbe\x8c\xd2\x55\x94\x78\xbc\x77\x3e\x73\x0d\xc8\x76\xcb\x9c\x74\x40\xfa\xfd\xa9\x24\x2f\xde\x54\xcb\xba\xaf\xca\x53\x04\x3b\x59\xb4\x48\x7b\x43\x62\x8d\x2e\xd7\x47\xdc\xb2\xcf\xc7\xd9\x1c\x5f\x5a\x72\x41\x2b\xe2\x9f\xb4\xc7\xb2\xf5\x9d\xce\x0a\x56\x95\x6a\x2d\x9e\x21\x5e\x9e\x0b\x4f\xdd\x32\xb0\x09\xec\xd9\x32\xc8\x1b\xa7\xa8\x5d\xfb\x34\x07\x4a\xd9\xcd\x11\xad\xb8\xa7\xdc\x35\xdb\x4c\xb3\x1b\xf5\x35\x2c\x94\xa1\x38\xa9\x6b\xb7\x3e\xd4\xda\x39\xea\x09\xb1\x3e\x28\x4a\x3e\x6d\xec\x77\xd4\xd1\x3d\xfc\x7b\x54\xb1\xbb\xeb\x7b\x54\xb0\xcf\x4c\x75\x17\x74\x4d\x96\x5e\x1a\xce\x62\x7b\xac\x0e\x3e\x5b\x78\xef\xdf\x36\x71\xec\x46\xec\x4e\x98\x72\xa9\x69\x4c\x68\xb7\x1a\xa0\xb4\x76\x26\x1e\x1b\xfc\x47\xee\x6c\xa5\x4a\xdc\x65\x2a\xb2\x43\x41\x6e\xb7\xbd\x86\x36\x32\x62\xae\x0b\x8f\x30\xd3\xd6\x5b\x81\x9d\xe6\xa2\x7b\x0c\x43\x0d\x66\xd9\x6b\x6d\xe4\x89\xd2\xca\x56\x49\x72\xe2\x50\xb4\x4e\x1e\x7c\x88\xde\x86\xdc\x64\x58\x3d\x90\x22\xa5\xb1\x32\x4d\x2c\x4b\x50\xe2\xb4\xe8\x58\x46\x25\x30\x27\x35\x4d\x4c\xb3\xb6\x89\x69\xea\x30\x2a\x89\x8b\xde\x95\x2d\x69\x1c\x22\x6b\x12\x18\x9c\xe4\xd9\x99\x53\x75\x29\xcc\x5c\x99\xc0\xd6\x86\xb6\xba\x63\x01\xfc\x46\x88\xb9\x39\x06\xec\x21\x53\x9a\xa2\x5b\x5b\x20\x29\x43\x67\x26\xda\x40\xef\x6b\x7c\x44\xa2\x52\xa0\x6a\xa4\x90\xd3\x12\x61\x61\x13\x07\x32\x8a\x00\xc6\x60\xd5\x06\x1b\x9b\x50\xe7\xac\x85\x70\x6e\x10\x62\xbb\x40\x18\xe2\x58\x41\x87\x4b\x84\x7c\xa6\xc6\xc3\xc1\xb6\x4a\x00\xd6\x76\x2a\x50\xbe\x79\xed\x30\x4e\x08\x3c\xbb\x61\xec\x58\xb7\x00\x6e\xeb\xfa\x17\x11\x63\xae\x12\xaa\xa3\x0a\x57\xab\x62\xc0\x96\x14\xe9\xc9\xaa\x35\x1d\x8a\x33\xc5\xaa\xa8\x95\xd7\xa1\x9c\xd2\x2c\x95\x8c\x33\x68\xb1\x52\x14\x4f\xc1\x42\xd3\xff\x40\x68\xfa\x6f\xf4\x0f\x1b\x4d\xff\x11\xd6\xd1\x4f\xe1\x1f\xf4\x8d\x63\xfb\x09\x66\x39\xd3\x47\xa1\x51\xd0\xd4\x4a\x3f\x82\x75\xe5\xd1\xe6\x02\xdb\x41\x56\x3f\x35\xc7\x9a\xd1\xbb\xe6\xd4\x57\x4d\x88\x3c\x85\x13\x3a\x6f\xac\xce\xbc\x69\x9c\xd0\x41\x2e\x35\x55\x96\x7b\x08\x9d\x1d\xb6\xc8\xcf\x1b\x97\x47\xba\x6b\x36\x3c\x7b\x00\xdb\x9b\x03\xb1\x95\xa8\x4f\xaa\x41\x14\xbe\xa9\x2f\x2f\xc9\xc9\xff\x7c\xf1\xc5\xff\x1e\x94\xd9\xaa\x98\xb0\xd3\x28\xcf\xe3\x74\xfe\xdb\xaf\xbf\x84\x5f\x0e\xbe\xfd\xf6\x9b\xd9\x37\xc3\xef\x86\x83\xc9\x62\x95\x5e\x0f\x3e\x94\x83\x65\x94\xff\x5f\x00\x00\x00\xff\xff\x14\xf5\x95\x3a\x72\x79\x0f\x00") +var _pkgUiStaticReactStaticJs242f57af3ChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x0b\x93\xdb\x36\xb2\x30\xfa\x57\x24\xae\x3f\x86\xb0\x20\x0e\x29\x69\x5e\x94\x61\x95\xd7\x76\x36\xc9\xf1\x24\x7b\x12\x6f\xb2\x67\x39\x74\x3e\x8e\x08\x8d\xb8\xa1\x48\x85\x84\xc6\xf3\xa0\xf6\xb7\xdf\xea\x06\x48\x82\x14\x65\x67\xf3\xe5\x3b\xe7\xd6\xad\x5b\x65\x8f\x48\x10\xcf\x46\xa3\xd1\xe8\x17\x2c\xb1\x8e\x0b\xfb\x23\xbf\xd9\x86\xcb\x5f\xbe\x29\xb2\x74\x7b\x9b\x87\xdb\x35\xeb\x4f\x2e\x4b\x3f\x20\xf6\x76\x57\xac\x2d\xdf\x9f\x04\xd4\x5f\xed\xd2\xa5\x88\xb3\xd4\xe2\x54\xd0\x94\x3c\x19\xbb\x82\x0f\x0a\x91\xc7\x4b\x61\xcc\xb9\xcd\xef\xb7\x59\x2e\x0a\x96\x5a\xae\xe3\x92\x3d\xed\x66\x6f\xe7\x38\x23\x56\x4f\x9e\x56\x95\xa9\x1d\x59\x82\x1a\xb7\x06\xb5\xea\x7c\xe4\x29\xe7\x62\x97\xa7\x83\xe5\x9e\x10\xaa\x72\xac\x7b\x73\x24\x5a\x8e\xb8\x37\xc7\x4e\xcb\x91\xf4\xe6\x58\x69\x39\xc2\xde\x1c\x6b\x2d\xc7\x2f\xbd\x39\x6e\xb4\x1c\xff\xec\xcd\xb1\xd1\x72\xf0\xde\x1c\x57\x5a\x8e\x65\x6f\x8e\x5b\x2d\x47\xd4\x9b\xe3\x4e\xcb\x71\xd3\x9b\xe3\x41\xcb\xb1\xea\xcd\xf1\xb8\x27\x64\x7e\x17\xe6\x83\x9c\x66\x2c\xb5\x2e\xce\x08\x8d\x59\x6a\xa7\x56\x46\x68\x08\xf3\x4a\x68\x81\xef\x21\x99\x57\xa5\x07\x4b\x98\xdd\xa6\x1b\x59\x1c\x0d\x1c\xc6\x18\x37\x4d\x8b\x33\xc3\x20\xb4\x4e\x12\xa6\x69\x09\x96\x13\x2a\x16\xdc\x2e\xb6\x49\x2c\x2c\x63\x60\x10\x7b\x13\x6e\xad\xa6\x37\xbc\xae\x4b\xf8\x3c\x28\x4b\xbe\x27\xc4\xfe\x67\x16\xa7\x98\xd9\xe3\xfb\xba\xe5\x44\xb6\x0c\x1d\x4e\xd9\xd3\x7e\xae\x8a\x7d\x77\xf3\x4f\xbe\x14\xf6\x2f\xfc\xa1\xb0\x38\xb1\x57\x59\xfe\x36\x5c\xae\xb5\x16\x72\xf2\x34\x76\xa1\x3f\x76\x9c\x46\xfc\xfe\xbb\x95\x95\x13\xd3\xb4\x52\x3f\x0f\x18\xf7\xf3\x80\x20\xa0\x9a\x76\x76\xb2\x9d\x55\x96\x5b\xd8\x16\xcd\xd9\xab\x3c\x0f\x1f\xec\xb8\xc0\x5f\x4b\x90\x85\xf0\x7c\x11\xd0\x8c\xe5\x76\xc2\xd3\x5b\xb1\xa6\x31\xf4\x28\x7b\xe9\xcc\x49\xec\xa7\x2c\xf7\xb3\x31\x73\x03\xa8\x3f\x0d\xaa\x8e\xc6\x7b\xa8\x6e\x0b\x19\xeb\xb6\x56\x30\xfe\x2d\x0e\xdc\x32\x76\x69\xc4\x57\x71\xca\x23\x63\xc8\x98\x78\xd8\xf2\x6c\x35\x58\x66\x69\x91\x25\xdc\x34\xd5\x83\xcd\xf3\x3c\xcb\x2d\x4e\x28\x94\x62\x43\x87\x60\xad\x11\x33\x32\x84\x83\xc1\xea\xa2\x1f\xe3\x34\xca\x3e\x9a\xa6\xfc\xb5\xdf\x26\x7c\xc3\x53\x51\x96\x1a\x22\x68\x3d\x59\x57\xab\x36\x5e\x59\x43\x8b\xfb\x22\x88\xd3\x42\x84\xe9\x12\xaa\x8a\x08\x51\x83\x48\xf9\xc7\xc1\x5b\xec\x82\xf1\x75\x7a\x17\x26\x71\x34\xd8\xe6\xd9\x76\xf0\xbf\x8d\x91\x18\x19\xff\x7b\x50\xec\xb6\xdb\x24\xe6\xd1\x40\x64\x90\x96\x8e\x8c\xff\x6d\x0f\xde\xde\x6f\xf9\x52\x70\x95\x55\x64\x83\x1b\x3e\x08\xd3\x41\xd5\xc0\x20\x5b\x0d\x54\xef\xec\xc1\x8f\x50\x67\x28\x81\x13\xc6\x09\x8f\x6c\x43\x0e\xf1\x86\x15\x76\x68\x67\x29\xff\x6e\xf5\xfe\x61\xcb\x2d\x1f\x5e\x81\xba\xa4\xb7\x14\x1e\x61\x24\x74\x8d\x8f\xc5\x3a\xdc\x72\xeb\x69\xb9\xcb\x73\x9e\x0a\x0f\x92\xc2\xf4\x61\x4f\x02\x42\x37\x7d\xb5\x60\xd1\x4e\x75\xaa\x8e\x67\xcf\x24\x34\xb1\x92\xe2\x61\x73\x93\x25\x34\xe7\x69\xc4\x73\xaf\x2a\xb9\x27\x58\x20\x04\xdc\xf8\x6e\x65\xfd\x5f\xa8\x3f\x20\xd0\xf5\x2b\xf6\xf4\x65\x18\x71\xcf\x3d\x75\xe8\xeb\x2c\x49\xc2\x6d\xc1\xbd\xe9\xa9\x43\xaf\xb2\x28\x4c\xbc\xa9\xe3\xd0\xd7\x61\x9e\xed\x0a\x9e\x78\x67\x8e\xb3\xa7\xb7\xcc\x37\xe2\xd4\xa0\xc6\x26\xdb\xa5\xe2\xbb\xf4\x6d\x2a\x78\x6e\x50\x63\x97\x56\x09\xf7\xb1\x30\xa8\x11\x6e\xb7\x3c\x84\x0f\x5c\x65\xe0\x32\x5d\xc4\x1b\x9e\xed\xe0\x29\xab\xcb\xaa\xa7\x38\xbd\x6d\x5e\x78\x24\x9f\x65\x29\xf9\x50\x67\xb8\x8f\x05\x8f\x8c\x80\xde\xb1\xa7\xb7\xdf\xbe\x7f\xfb\xfd\xd7\xdf\xfe\xc5\x93\x0d\x61\x16\x4c\x7b\xfb\x46\x25\x41\x4d\x6f\xff\xfe\xf5\x7b\x99\xa9\xaa\x06\x52\x30\x8b\xac\x6b\x4f\x1f\x98\x6f\x84\x3b\x91\x8d\x0b\x11\xe6\x38\x82\x9d\xc8\xd4\xcf\x98\xa7\xd0\x1d\x91\x6d\xeb\xaf\x22\xdb\xaa\x14\xf9\x2d\x8f\x6f\xd7\xa2\xfe\x8a\x6f\x75\xaa\xcc\x71\x93\x09\x91\x6d\x5a\x2f\x4d\x6a\x55\x30\xe1\xab\x2a\x3f\x3c\x56\x29\xf2\x73\x40\x5f\xb1\xa1\xbe\xa4\xbb\xeb\xb2\x2c\x87\x6a\x61\x46\xd9\x72\x27\x57\x66\x37\xc5\x5e\xe6\x3c\x14\x5c\xad\x0d\x8d\x08\x7f\xd4\xc8\x66\xba\x4b\x92\xa1\x24\xc0\x6d\x32\xc5\x49\x59\xbe\x32\x4d\x23\xdd\x6d\x6e\x78\xae\x75\x80\x2b\xa2\x45\x1a\x9a\xf7\x08\x15\xc2\x2a\x13\x4c\xa7\xcc\xf1\xaa\x87\x50\x0f\xad\x21\x2f\xcb\x8a\xde\x34\xa4\x8a\x13\xd3\x34\xd4\x9a\x33\xe2\x74\xc0\xf7\x16\xaf\xe9\x06\xb7\xd5\x97\x79\xbc\xb2\x62\x8b\xe8\x9f\x2c\x02\x89\x86\x5c\x1c\x7a\x3f\x4d\xf3\x55\xd5\xab\x1a\x24\xbf\xee\x78\xfe\xf0\x03\x4f\xf8\x52\x64\xf9\xab\x24\xb1\x38\x96\x16\x6a\x4c\x65\x69\x7d\x2a\xb3\xf1\x27\x63\xc4\x09\xa1\xc3\x2a\x3f\x11\xeb\x3c\xfb\xa8\x93\xb5\xf7\x6b\x3e\x10\x61\x7e\xcb\xc5\xe0\x0b\x63\xc4\x47\xc6\x17\x83\x65\xb6\x4b\xa2\x41\x9a\x09\x20\x5c\x71\xc4\x53\x11\xaf\x80\xc6\xc5\xe9\x40\xac\xf9\x20\xca\x36\x74\x20\xe2\xad\x37\x58\xae\xf9\xf2\x97\x41\xb1\xe5\x49\x02\x43\x21\x15\xe9\x17\xfb\x6a\xac\x00\x93\x2a\xf5\x23\xee\x24\xbe\x13\x78\x62\xff\x19\xee\xa9\x9e\xa8\xbc\xde\xbe\xad\x9c\xa9\xad\x2f\x2c\x8a\xf8\x36\xd5\x08\x3b\x6f\x76\x2f\xc1\xdc\xb9\x78\x11\xe6\xb7\x08\x90\x42\x8d\x7a\x2e\x46\xa3\x6a\x27\xad\xbf\xf9\x22\x98\x57\xc5\x72\x18\x5b\x4a\x54\x03\xdb\x3c\x13\x19\x4c\x8a\xbd\x0e\x8b\xef\x3e\xa6\x7f\xcd\xb3\x2d\xcf\xc5\x83\xbd\x0c\x93\xc4\x4a\x29\xee\xa7\xb0\x95\xb2\x14\xf7\xd3\x7a\xb0\xc4\x0e\xb7\xdb\xe4\x01\x59\x55\x5a\x37\x44\xf6\x9f\x64\xc2\xf2\x3d\xe9\x61\x26\xb1\x57\xf3\xa1\x96\xbd\x05\xa0\x8a\x2b\xe8\xf4\xb0\x01\x5c\x66\x35\x40\xe1\xcc\x0f\xa8\x60\xce\x27\x21\x93\xb7\x21\x13\x03\xdb\x80\x1f\xe2\x0a\x3f\xf3\x0e\xda\xc6\x65\xa9\x2d\xb6\x98\x70\xc9\x6f\xe7\x64\xce\x93\x82\x0f\xe2\x55\x67\x81\x02\xd8\x2a\x06\x42\x56\x1d\xb2\x4c\x41\x0c\x56\x35\xcd\xc9\x3c\x34\x4d\x55\x4d\x48\xf6\x55\x35\xda\x5e\x1f\x93\x6a\x50\x05\x4c\x59\x4e\x52\x39\x29\x39\x2d\xa0\x76\xbf\x08\xea\x0a\x0a\xb2\xaf\x67\xa6\xe1\xb0\xf6\x35\x27\xbf\xb0\x32\x3b\xe2\xab\x70\x97\x08\x96\xd1\x86\xc1\xcf\x88\x57\xf3\x74\x56\xce\x0e\x27\x2c\xdb\x57\xd3\x4c\xfd\x80\x90\xb2\xb4\x9a\xc2\x39\xd9\x7f\xf6\x68\xa0\x21\x37\x72\x5e\xf1\x0a\x87\xcf\x18\x57\x24\xe2\x69\x3f\x57\x9c\x18\xcd\xd8\xd3\x9e\xc6\xac\xcd\xf4\x21\xda\xe6\xcc\x99\xe7\x2f\xe2\x6a\x1e\xf3\xd1\x88\xa4\x2c\xf6\xf3\x80\x36\x8c\x5f\x4a\x5e\x32\xa7\x2c\xad\xcc\x4f\x25\x6f\x56\xaf\xc5\xec\xf7\xe0\xe4\x27\x47\x51\x1d\x3a\xda\xe4\xb4\x4b\xa2\x89\x4e\x18\xf4\x25\xac\x00\xf1\x03\xb2\x04\x76\x2c\x78\x1e\x8a\x0c\x97\xa5\x1c\x3b\x66\x37\x7c\x89\x09\x83\x57\x15\xaa\x06\x80\x14\x07\xcb\x56\x64\x3f\x20\x96\x4a\xdc\xe0\xa4\x5a\xfb\x7e\x40\x73\x36\x74\x68\xc6\x86\x2e\x8d\x99\x9c\xe6\xb9\xc8\x1f\xea\xa5\x12\xd2\x82\x71\xbf\xd3\x8b\xc0\x22\xf3\xa1\x95\x33\x2b\x64\x85\x9d\xf2\x7b\x61\x11\x62\x47\x59\xca\x91\xaf\x56\xe8\x6a\xdf\x85\xc9\x8e\x03\xa9\x2d\xcb\x54\xcd\x0a\x6c\x16\x64\x0e\x4d\x92\xf9\x7e\x19\x8a\xe5\xda\x5a\x92\xa7\x0c\xba\x10\xb3\xe5\x7e\x15\xa7\x61\x92\x3c\x3c\x41\x07\xf2\xb2\x94\x48\x50\xd8\x12\x44\x65\x59\x3d\x59\xa4\xce\x19\xaf\xac\x4c\x91\xf0\xb8\xc6\xee\x74\xbf\x47\xf8\xb5\x58\xdd\x86\xce\x03\x5f\xd6\x61\x61\x43\x21\xf8\x66\x2b\x80\x35\x8d\x78\x21\xf2\xdd\x52\xec\x72\x3e\x48\xb3\x74\x8c\x63\xbe\x49\x78\xcd\xad\x1a\x88\xd1\x7f\x24\xb6\xe0\x44\x37\x27\x29\x6d\x4b\xfa\x9e\xaf\x78\xce\xd3\x65\xd5\x5f\xa0\xa3\x83\x75\x58\xa4\x5f\xc0\x56\xc4\x81\x85\x8e\x45\x1c\x26\x71\xc1\xa3\xc1\x18\x98\x6f\x9e\x5b\xa4\x95\x03\x66\x9c\x47\xcd\x56\xc4\x7f\x4b\xd7\x7f\xd3\x51\xfe\x78\x05\x9f\x3e\x98\x66\x9f\x3d\xfe\xc6\x9f\x3d\xfe\x86\x9f\x3d\x64\x17\x9f\x3d\xfe\xea\x42\x87\x7e\xb1\x44\xf2\x59\xb1\xc4\xee\xb3\x62\x89\xed\x67\x05\x06\xab\xcf\x0a\x1d\xa2\xcf\x8a\x36\x74\xc1\xc5\xe6\xa8\xe0\x42\x1e\xf6\xd9\xd3\x36\xe7\xab\xf8\xde\x33\x56\x61\x61\xd0\x78\x99\xa5\xdf\x86\x1b\xee\x19\x61\x9e\x67\x1f\xc7\x51\xf6\x31\x95\xa9\x9e\x3f\x9b\x5d\xd0\x53\x77\x42\xfd\x80\x1a\x2b\xe7\x6c\x6a\x50\xe3\x6a\xe6\x4e\x6d\x77\x30\x99\x4c\xec\xd3\x64\x32\xb1\x27\x03\xf8\xb3\xbc\xb4\x67\x83\xea\xff\x64\x66\x9f\x0d\x9c\xc1\x74\x6a\x5f\xbe\x9b\xcc\xdc\xc1\xec\x7c\xba\x1c\xab\x8f\x63\xfc\x08\x0f\xf0\x79\xe0\xbc\x73\x27\xf6\xf9\x60\x72\x7e\x61\x9f\x61\x9e\xfa\xbf\xac\x04\x73\x61\x33\x63\xd5\xcc\xe9\xf8\xd2\x3e\x1d\x4c\xe0\x67\x3a\x98\xce\xec\xa9\x3d\x7b\xe7\x5e\xcc\x06\xd3\xd9\xd4\x9e\xfd\x78\x7a\xb6\x74\xc6\xee\xd4\x9e\x0e\x5c\xc7\x3e\x1f\x4f\xa0\x33\xe3\xc9\x6c\x3d\x9d\x2c\x31\xd5\x19\x4c\x66\xf8\x69\x80\x9f\xee\x26\x17\xe7\xf6\x2c\x71\xdd\x99\x7d\x31\x76\x27\x8e\x7d\xba\xbc\xb4\xa7\xe3\x4b\xfb\x02\x06\x71\x31\x76\x1d\x6c\x62\x6c\xcf\x1e\x8d\x60\x0f\x9b\xcf\x27\x41\xb7\xdb\x1e\x01\xdc\x04\x00\x37\x9d\xd9\x97\x83\xc9\xc5\xa5\x7d\x9a\x8c\x9b\x11\x1d\x1b\xf4\xbb\x89\x73\x3e\x98\x5e\x2e\xd5\x27\x04\x2a\x3e\x48\xb8\x25\xee\xe5\x0c\x46\x09\x7f\x8f\x02\x7f\xe6\x4e\xb1\xc1\xd9\x12\x81\x06\xc0\x9b\xc0\xcf\x74\xac\x46\xf5\x6e\x72\x36\x1b\xb8\x67\x17\xf6\xd9\x8f\x33\x00\xdd\x00\x80\x34\x56\xf0\x91\xd0\x5b\x8f\xa7\x93\xa5\x04\xa9\x33\x9e\xcc\xc6\x0a\xae\xe3\xc9\xec\x47\x2c\xf8\xee\xec\x12\x70\xe0\xe2\xd2\x76\x97\x38\x27\x97\xf6\x05\x8c\xe3\x62\xe0\x3a\x63\x39\x3f\x08\xbb\xf8\x28\xec\x96\x61\xc2\xd3\x28\xcc\xc7\xc8\x3d\xf7\x42\x70\x72\x3e\x43\xd4\x9b\x9e\x0d\xdc\x33\xe7\x2b\x77\xb2\x1c\x9f\xd9\x67\x93\xf3\x81\x33\x76\x27\xe3\x53\x7b\x7a\x3e\x85\x07\x77\x72\x37\x9e\x02\x06\x4c\xce\xec\x53\x77\x30\x71\xed\xd9\xe5\x78\x76\x31\x98\x5d\x8c\x67\x17\xeb\xd9\xc5\x8f\xee\x64\xe9\xa8\x92\x55\xa1\x01\x96\x5b\xcf\x9c\xa5\xaa\x71\xe0\x4e\xe4\xc7\x01\x7e\xbc\x3b\x9d\xac\xdd\xc9\xef\x2e\x3a\xbb\x58\xca\xce\x38\x83\xd9\x85\xec\xd1\x00\x7b\x74\x07\x1d\x1d\x60\xc1\x71\x55\x46\xd6\xf9\x78\x05\x3f\x97\x93\xf5\x6c\x32\x3b\x56\xf3\xe4\xcc\x59\x3a\x03\xac\x79\x5c\x55\x2a\x47\xfa\xd5\xec\x62\xa9\xc6\xef\x8c\x67\x17\xe3\x0a\x08\xe3\xd9\xc5\x8f\x13\x67\x76\x64\x10\x8f\x9b\xe9\x74\x6a\x4f\x2e\xcf\x06\x97\xa7\xf6\xe5\xec\x3c\x19\x4f\x2e\x6c\xf7\xec\x12\x7e\xa6\x97\x17\xcb\xf1\xcc\x3e\x3b\x3b\x1f\xcf\xec\x73\xe7\x74\xec\x4e\xec\xc9\xd9\x29\xbc\x4c\xcf\xc6\xee\x99\x7d\x79\x3e\xb6\x9d\xb3\x8b\x77\x80\x8c\xee\x64\x30\x3d\x83\xcc\xa7\xc9\x78\x76\x6a\x5f\x5e\x8c\x67\x67\xf6\xf4\x74\xd2\x53\xc3\x99\x5e\x83\x8b\x55\x24\xb2\xbd\xf3\x01\xb4\x7e\xbe\x94\xb9\x07\x75\x49\x98\x7e\xd9\x36\x64\x1e\x60\xc1\xe4\x62\x62\x9f\x39\xee\xe0\x62\x6a\x4f\xce\x2e\x97\x98\x77\x20\xcb\xc9\xbc\x03\x55\x10\x32\x63\x1b\xee\x6c\x62\x5f\x9e\x4e\xc7\xee\xcc\xb5\x2f\x9c\xd3\xa5\xec\x52\x5d\x10\x7a\x84\x05\x21\xb3\xec\x1c\x22\x70\x78\x1c\x81\xd7\x61\x2e\xc6\x61\xce\xc3\x0a\x79\x01\x71\x6b\xe4\x75\x57\x1c\x90\xf7\xd4\x71\x06\xd3\x0b\x9c\xd1\x6a\x3e\x67\x6a\x36\x67\x8e\x44\x85\xb1\x4c\x92\xb3\x52\x61\x79\x85\xe3\x33\x89\xe1\x3f\x9e\x9f\xc9\x39\x1c\xc8\xa4\x16\x12\x76\x2b\x9e\x3a\x17\xeb\xd9\xf4\xec\xf1\x6a\x7a\x0e\x64\xd6\x3d\xbd\xb4\x4f\xdf\x4d\x2e\x00\x11\xcf\x92\xf1\xc5\x29\x2c\x76\x77\x6a\x9f\x2f\xc7\xa7\xb6\x3b\x3e\x03\x8a\x77\x6a\x9f\x8e\xcf\x20\xfd\xd2\xbe\x1c\xb8\xef\x2e\xcf\x06\x93\xd9\xc5\x9d\xeb\xcc\xd6\xd3\x8b\x59\x32\xbe\xb8\xb4\x2f\xc7\xee\xc5\xb9\x7d\xb1\x1c\x4f\xed\xc9\xf8\xcc\x3e\x1d\xbb\xae\x3d\x1b\x5f\xd8\xe7\x63\xf7\xdc\x9e\xc1\x3c\x21\xbc\x8a\xcf\xc0\x2b\x89\x53\xde\x0b\xaf\x89\xe3\xe2\x62\xbf\x3c\x03\x78\x7d\x75\x36\xfb\xf1\xc2\x59\x3a\xe3\x0b\xfb\x62\x36\x3e\xb7\x5d\x40\x18\xf9\xef\x2b\xf7\xec\x35\x24\x0c\xce\x66\x03\x67\x70\xee\xc2\xa3\x33\xb8\x70\xee\xa6\xb8\xb6\xdc\x73\xfb\xec\x7c\xe0\xce\xec\xe9\x74\x30\x9d\xc8\x7f\xeb\xd9\xd9\x6c\x09\x35\x01\xa4\xce\xb0\xba\x01\xd6\x75\x07\x64\xae\xaf\x91\xc7\xab\xd9\xd9\x6c\x70\x79\xf6\xd5\x14\xd0\x79\xb6\x84\x05\x35\xbd\x00\x22\x3d\xb1\x9d\xcb\xc1\xe4\xd4\xbe\x38\x95\x58\x32\x98\x39\x80\x8f\xd3\x09\x10\xe9\x09\x10\x57\x00\xf4\x6c\x62\x9f\x9f\x26\xe3\xf3\xa9\x3d\x3d\x97\x7f\x97\x80\x5f\xa7\xf2\xcf\x74\x62\x9f\x9f\xc9\xc7\xd9\xa9\x3d\x39\x1d\x38\xc9\x18\xa8\xea\xe5\x00\xff\x02\x02\x4c\x4e\x07\xf0\x47\x3e\xb9\x67\xd8\x38\xec\xb9\x67\x53\xd8\x17\xcf\x70\xff\x3d\x9b\x2c\xeb\x8c\x2a\x0f\x3e\x62\x36\xd8\x64\x2f\x27\x83\xc9\xf4\xdc\x9e\x9c\x26\xd8\x85\x81\xec\x08\xb4\x3b\xc0\x3f\xd8\x0f\xf9\x58\xf5\xe3\xf2\x6c\x0c\x33\x50\x8d\x66\xe9\x9e\xc2\xe2\x96\x7f\x71\xa4\x83\x99\x0d\x9b\x3b\x3c\x4a\x00\xfc\xe8\xba\x93\xa5\xed\xb8\x35\x14\x4f\x11\x84\xa7\xf6\xe5\x25\x00\x12\x90\x62\xf9\x09\xa4\xe0\x77\x79\x96\x7e\x82\xfd\x38\xbf\x00\xb4\x98\x38\xe7\xb6\x33\xb9\x1c\x4c\x2f\x5c\x7b\x76\x7e\x06\xfc\xc3\xd9\xc5\xd9\x00\x50\xd2\x9d\xe2\x76\x0a\x74\x4d\xff\x3b\x99\xd9\xa7\x67\x97\x6a\x5b\x9d\xb9\x08\xb5\xb3\xf3\xb1\xfc\x81\xfd\xfe\xf4\x7c\x8c\x7f\x61\xef\x3c\x9d\x4c\xb0\xd8\x29\xee\xa0\x0e\x90\xa5\xd9\xbb\x09\xec\x84\x17\x33\xfb\xd4\x39\x4d\xdc\xd3\x99\x7d\x3e\x3b\x1d\xc3\xaf\x33\x71\xa1\xfc\xf9\x25\x14\x99\x9e\x62\xf9\x19\x6c\xd7\x53\xf7\x5c\x95\xb7\x9d\x99\x6a\x70\xd0\x34\x78\x0e\xbb\x64\xf3\xb7\xea\xe0\x40\x76\xf0\xdd\x04\x61\xea\x56\x43\x54\x63\xc2\xcc\x93\x6a\x34\xf2\x05\x0b\x4c\x06\x0e\xc2\x36\xf9\x2c\x6c\xa5\x98\x52\xc2\x76\x3a\x71\x34\xd8\x9e\x4e\x15\x87\x72\x0a\x88\x72\x69\x3b\xd3\x77\x93\xc9\x85\x7d\x71\x3e\x98\xcd\x00\x0f\xa1\x39\xec\x06\x76\x56\x3d\x62\xeb\x03\x07\xc7\x27\x87\x87\xa3\x03\xf6\x4e\xfe\x51\x10\xb5\x1d\xc9\xb5\xbc\x73\xa7\xb8\x55\x4d\x4e\xcf\x12\x09\xbe\x01\x42\x13\x99\x2e\xe0\x5e\xa6\x17\xf0\x67\x22\xe1\x38\xae\x8a\x21\xb7\x54\x37\x20\x9b\xc6\xfe\x60\x57\xe4\xa3\xea\xca\x3b\x35\x82\xf3\x89\x7d\xa9\xb2\x6a\x7f\x64\x7e\x85\x07\x08\xb2\xdd\x67\x41\xa6\xa4\xc3\xbd\x30\x43\x9e\x64\x72\x71\x0a\x93\xa4\xda\x74\xdf\x5d\xba\x80\x87\x83\xd9\xd9\xb9\x3d\x75\x67\xfa\xdc\x4d\xf5\xb9\x9b\x2a\x6c\x84\x05\xdf\x46\xc8\xb1\x86\x91\x12\x15\xc7\x0a\x2f\x6d\x47\x72\xcd\x8e\xfb\xce\xbd\xb8\x00\x6c\x04\x50\x02\x87\x3a\xbb\x00\xae\xd6\xb5\x27\xa7\xa7\x4b\x89\x8b\xe3\x1a\x2f\x5d\x39\xf0\xd9\xac\x29\x7e\xb8\x04\xaa\xc5\xa2\x70\x51\xbd\x54\x5d\x7c\x27\x07\x79\xaa\x50\x43\x43\xe1\x89\x8e\xc2\x17\xb6\xe3\xb8\xaa\x10\x82\x77\x7b\x14\xbc\x9b\x38\xdd\x15\x47\x98\xe5\x0b\x79\xca\x38\x1b\x4c\x9c\x8b\xaf\x90\xf9\x44\x42\x0e\x14\x57\x52\xf3\x31\x92\xf2\x3b\x20\xd8\xfd\x44\x1e\xb6\x59\x55\x68\x30\x9d\x8c\xab\xaf\xe3\xe9\x44\x91\x79\xfc\x38\xae\x2a\x93\xff\xb0\xc7\xab\xa3\x3d\xde\x26\x47\x3b\x7c\xae\x77\x78\x72\x3e\xf9\xf1\x6c\x76\xa4\x0d\xc5\x4c\xf7\x8f\xc7\x9d\xcd\x7e\xdf\x70\xdd\xd9\x0c\x0a\x1f\x85\xc6\xe4\x08\x30\x7e\x9c\x3a\x33\x28\xfc\x3b\x61\x15\x1d\x85\x55\xc1\xc3\x7c\xb9\xee\xdd\xdc\x1d\x67\x22\x99\xa1\xd3\xc1\x0c\xb6\xc6\x77\x33\xe7\x14\x0f\x72\x53\xe0\xf6\x4e\xf1\xbf\xeb\xd8\x67\x63\xe0\x26\xc6\xe7\x5f\x4d\xcf\x27\xcb\xc9\xb9\x7d\x36\x9e\x42\xb6\xd9\x6c\x7c\x7e\x69\x03\x51\x1a\xbb\x93\x8b\xd7\x00\xf3\x4b\x38\x8d\x4e\x27\x13\x38\x14\xc1\x04\x0c\x9c\x1f\x1c\x99\x88\xaf\x05\x3e\x42\xba\xfa\xbf\x9c\x5d\xe0\x39\xf0\x72\x62\xe3\xb6\x05\xac\xd2\xc5\x18\x20\x78\x66\x4f\x91\x0d\x9b\x0d\xea\x6d\xf1\x7c\xe0\x9e\x27\x97\xd0\x22\xfc\x59\xb6\xce\x58\xda\x59\x0c\x98\x56\xe4\x5c\xeb\xd3\x5a\x75\x98\xb3\xdd\xf1\x74\xf6\x78\x05\x6d\x03\x53\x32\x3e\x87\xa3\x15\x30\x74\x17\xe3\xd3\x73\x7b\x82\x0f\xee\x04\xd8\x09\xfc\x52\xa5\x0d\xaa\x74\x99\x1f\x5e\xf1\xdb\x40\x7d\x03\x76\x07\xce\x61\x55\x5a\x55\x06\xe7\x65\x7d\x7c\x5e\xb6\x71\x9a\xf2\xbc\x9f\x4b\x75\x1d\xdc\x02\x9c\xd9\x60\x76\x71\xe4\x6c\x51\x74\x0e\x14\x9d\x13\x56\xe7\x84\xf3\xb8\x81\xb4\xe9\x59\xeb\x3c\xa2\x17\x29\xb4\xcc\xf2\x9f\xde\x9e\xde\xd0\x18\x6a\x9b\x38\x17\x63\x98\xc0\x3f\xa4\xb6\x2b\x60\x6c\x4f\xeb\xb3\x62\xe7\xf3\x0f\xc0\x61\x5d\x42\x61\x07\x72\x7d\xba\xea\xc7\x8d\x3b\xb1\x2f\x27\x13\xc0\x11\xe7\xfc\x77\xf6\x4f\x75\xc4\xb9\x94\x89\xae\x3e\x6e\x38\x56\x9d\x9e\x0d\x9c\x3f\xa4\x66\x0d\x04\xae\x73\x81\xfd\x3e\x73\xe0\xe7\xff\x04\xae\x5a\x77\x01\x03\x6f\x8e\x62\xa0\x88\x37\xbc\x26\xa3\xd3\xd3\x16\x61\x88\x70\x3b\x05\xa2\x30\x91\x2c\x82\xe3\xd8\xce\xf9\x58\xfe\x00\xaf\x8a\x78\x6e\x23\xa6\xc3\xf3\x74\x62\xbb\xc0\xd6\xcd\x60\xff\x93\x22\x95\x99\xfc\xbb\x1c\x6b\xb9\x65\x3e\xf5\x8c\x79\x81\x21\x06\x6e\xf7\xe2\x12\x2a\x3b\x3f\xb5\x2f\xa7\x03\x78\x76\x3f\x5f\x0e\x72\x0d\x5c\x38\xf0\x9c\x2e\x5b\x9d\x91\xcf\xaa\x4b\x03\xcc\xfe\xce\x75\xb0\x01\xd8\xa3\xb1\xdc\xf4\xf4\x0c\x46\xf2\xb9\x72\x28\xee\x9a\x0d\xe4\x48\xb4\xbc\x90\x6b\xa2\x1e\xf5\x71\x00\xf1\x3b\x9f\x28\x70\x0d\x74\x70\x1d\x2d\x97\xe8\xc0\xfa\x0c\x64\xdf\x35\x53\x02\x93\xdb\x96\x6b\xeb\x86\x60\x1d\x4d\xc7\x7f\x9f\x40\xfb\xb7\x74\x49\x8a\xb1\x2b\x75\xec\x20\x4e\x07\x7c\xa1\xd4\x24\x52\x43\x5f\x69\x0c\x31\xeb\x13\xea\x2e\xbc\x94\xf2\x74\xb7\x91\xf2\x7f\x6f\xe8\xd0\x65\x96\xae\xe2\xdb\x5d\xfd\xfe\x31\x8f\x85\x7a\xde\x13\x8f\xfb\x22\x60\x29\xed\xf6\xe7\xb3\x8a\x22\xde\x28\x6a\x2a\xcd\x8d\xd4\xfb\x5b\x9a\x0a\x87\x50\x2d\x9b\xbd\xcc\x52\xa9\xa5\xc8\x72\xc6\x29\xb7\x7f\xfe\x19\xbf\xfd\xfc\x33\x13\x7f\xb0\x1e\xeb\xbf\x0f\x6a\xff\xa7\xfd\xfe\x64\xf9\xab\x46\xfa\x9d\x5a\xd3\x33\x82\x06\x6f\x6e\xc7\xde\xcd\x39\x62\xef\x56\x6b\xdc\x97\xcc\xa8\xd2\x35\x33\x05\xa9\x1c\x33\x4d\x43\x9a\xef\x1c\x7c\xa9\xd5\x66\x8b\x3e\xa3\x37\x65\xea\xb0\xf7\x7a\x3e\x72\xd3\xfc\x54\x83\x6d\x3c\x60\xac\x4e\x1f\x56\xcf\x0d\xca\x2c\xaa\xde\x79\x75\x8b\xc4\xe2\xa4\x63\x5d\xf7\xdf\x37\xdb\xba\xb5\xdd\xbf\x63\xad\x20\xad\x5d\x74\xcd\xfc\x42\x7f\xf1\x9e\xf6\x34\x6f\x69\x87\x53\x32\xef\x83\xa1\xca\x72\xcb\x85\x66\x2d\x20\x81\x56\x98\xa6\x95\xb3\x1c\x80\xbb\x0c\x85\xf5\xa9\x9c\x56\x4a\xec\x55\x9c\x08\x9e\xf7\x5a\x34\xf6\x16\x7d\xc3\x8b\x65\x1e\x6f\x45\x96\x5b\x29\xe5\xc4\x6e\xc0\xb7\x27\x84\x10\x9a\xf7\x98\x30\x0a\xf2\xa4\xe6\xc7\x17\x68\xaf\xd8\x98\x58\xd4\x80\xdc\xfe\x16\xe5\xf9\x81\x7e\xf9\x7f\x40\xd1\x8e\x6d\xcf\xe3\xd5\x27\x21\x5b\x99\x5a\x7c\x12\xfa\xff\x7e\x87\x0e\x34\xe3\x5b\x55\xe5\xd7\xc5\xdb\x7a\x1e\x94\x96\x9c\xa6\xc4\x34\xb5\x11\xec\xeb\x11\xb4\xcd\x37\x7f\xa3\xa2\x5f\x43\x72\x87\xa6\x0c\x76\x43\xf5\xad\x32\x01\x99\x8b\x17\x5c\x47\x79\x98\x6c\x06\x2b\x66\xae\x2b\xb6\x49\xdb\xd0\xe7\xff\x9e\x8d\x80\x6a\x54\x0e\x64\x95\x67\x1b\xa0\x17\xed\xf6\x7f\xbb\x5a\xbd\xd8\xe6\x3c\x8c\x3e\xa5\x51\xaf\x81\x1a\xe9\xe4\x91\x71\x6a\x89\x31\x73\x08\x2c\xdd\x05\xf7\x2c\xce\xb8\x9d\xf3\x6d\x12\x2e\xb9\x75\xe2\x5f\x8f\x7f\xbe\x2e\x82\x91\x65\x93\xc5\xc9\xad\x46\xf8\x75\x0b\x0c\xb1\x10\xb6\xc8\xfe\xb6\xdd\xf2\xfc\x75\x58\x70\x8b\x78\x86\x01\x4b\xcd\x2e\x76\x37\x85\xc8\x2d\x87\xba\xc4\x16\xd9\xbb\xec\x63\x95\x61\xc4\xab\x6f\xae\xdc\x35\x04\x5a\xa0\xae\xd9\xd0\x45\xe3\x88\x35\x1b\x3a\xca\x7c\xe1\x8e\x3c\x35\x3d\xbf\xe9\x98\xe5\x01\xf3\xb3\x80\x07\x4f\xb3\xd8\x81\x0d\x05\x6d\x72\x90\x43\x86\xa7\x8a\x3d\x5e\x70\xaf\x8b\x35\xa6\x39\x81\x4a\x14\x56\x2c\x2a\xb6\x9a\xfb\x4e\xd0\x70\xd5\xdc\x77\x83\xbd\xd7\x63\x3f\xb7\x38\xc2\x86\xf3\xbd\xb2\xe8\x69\xba\xbe\x69\x81\xac\x6b\xef\x6c\x9a\x95\xbd\xdc\x4b\xa7\x2c\x87\x3d\x9f\x17\x89\xf5\xb4\xa7\x50\x87\xf7\xb4\x6f\xaa\xbd\x6a\xec\x0a\xe5\x38\x69\xca\xb8\xbd\x09\x8b\x5f\x68\xc6\x78\x65\xf0\x1a\x33\x6e\x2f\x93\xb0\x28\xa0\x77\x34\x64\xdc\x16\xb1\x48\x38\x2d\xd8\x8d\x25\x08\x5d\xb2\x8d\x65\xe0\x77\x38\x3b\xf8\x41\x45\x99\xdb\xc6\x89\xd8\x0a\x56\x0f\xc7\x5c\x9a\x33\x6e\x6f\x77\x49\xc1\xb1\xa1\x55\x7c\xcf\xa3\x9f\xe2\x08\x2d\xb5\xb9\x1d\xa7\x77\x3c\x2f\x64\x53\x37\x59\x1e\xf1\x9c\x16\x00\xe5\xb8\x10\x5f\x0b\xbe\xa1\x4b\x28\x92\xc4\x5b\xba\x83\xea\xe2\x47\x4e\xb7\x80\x76\x99\x40\xc3\x64\xba\x92\x75\x27\x34\x62\x56\x62\x09\xf6\x64\xac\xc2\x31\xb4\x6a\x78\x29\x85\x67\x6c\xd8\xf0\x72\x7c\x59\x7d\x34\xbc\x0c\x9f\x54\xb3\x86\x17\xe3\xab\x6c\xd9\xf0\x42\x7c\x4b\x62\xc3\x2b\x64\x81\x24\xde\x8e\xd7\x59\x1e\x3f\x66\xa9\x08\x13\xc3\x33\xb4\x17\xc0\xa0\xb2\x34\x6e\x32\xb1\xc6\xe7\xa6\xc4\x1d\xcf\x45\xbc\xc4\xfc\xf5\x63\x37\xf7\x1e\xb3\x1b\x15\x04\x77\x84\xf6\x5a\x9d\xef\x4c\x53\x99\x95\xee\x08\x4d\xd0\x84\x22\x1c\xe3\xf0\x79\x53\x78\x7b\xa4\xf0\xb6\x2e\xbc\x6d\x0a\x03\xb8\x9a\xa2\xab\x23\x45\x57\x75\xd1\x55\x53\xb4\xf8\x18\x6e\xc7\xd9\x36\x5c\xc6\xe2\xc1\xa0\xdc\x86\xf7\xef\xe4\x2b\x81\x9d\xa4\xc7\x0f\x20\x3a\xee\x65\x10\xf9\x3c\x58\x70\x0f\x9a\xd9\x93\x4f\xee\xde\xb0\x1f\xa3\x09\x2b\x5d\x59\xb1\xe6\xc0\x00\x9b\xf4\x16\x50\x52\xe4\x61\x5a\xac\xb2\x7c\x63\xd0\x9e\xc5\x67\xd7\x9f\x17\xb9\x1d\x35\x6f\x96\xf6\x85\x78\xfa\x0b\x8d\xa0\x56\x58\x1c\x06\xbd\xb1\x52\x42\xe8\x9d\x22\xd3\x56\x6e\xdf\x10\xab\xa0\x3b\x58\x64\x4b\xba\xa5\x11\x7d\x92\x6b\xc7\xcb\x28\xae\x15\x2f\x04\x0e\x37\x5e\x59\xc3\x3b\xd2\xdd\x90\xe4\xda\xe0\xf3\xe1\xba\x76\x23\xe8\x67\x2c\x5b\x3e\x06\xe8\xd0\xa1\x52\x88\x4c\x52\x66\x7e\x5c\x37\xe5\xb4\x8c\xd7\xb5\x75\xec\x2a\x4e\xa3\x01\xac\x72\x83\x16\x84\x02\x88\x91\x7a\x3e\xb0\x3b\x3b\x04\x72\x1a\x2e\x05\x7d\xf5\xef\xb8\x6e\x08\xf2\x74\x55\xd9\x24\xc2\xe6\x5f\x74\xcc\x3b\x2d\x41\xca\xd2\x7a\x55\xed\x93\xe8\xc9\x71\x6b\x3d\x00\x75\x7c\x45\xf6\x57\x76\x14\x17\xdb\x24\x7c\x00\xb2\xc2\x8c\x2f\xb3\x54\xbc\xfa\xc8\x8b\x6c\xc3\xbf\xc6\x3e\x5e\xe1\xee\x0f\xfb\x56\xc1\x9e\xe4\x62\xf4\x62\x3b\xb4\x6f\xb2\x2c\xa1\x35\x3d\xc2\x24\x65\xb8\x0f\x73\x83\xef\x9a\x81\x3f\xbe\xe2\x40\x68\x5c\xb9\x01\xd0\xa6\x4c\x40\x68\x43\x7c\x9a\xea\x15\x29\x68\x12\x60\x09\x37\x55\x5b\xbe\xbe\xe6\x69\xb3\xa0\xa9\x5c\xcb\x01\x91\x32\x94\x7f\xbb\x2f\x15\x89\x6b\x1a\x86\x95\xd9\x6a\xb8\x32\x88\x47\x6d\x51\x40\x28\x12\xb3\x26\x7f\x45\x05\xf5\x32\x97\x0e\x75\x2f\x1c\x3a\x39\x77\x02\x42\x81\x5e\xb6\x2a\x4c\x6e\x0d\x6a\xdc\x17\xb0\x4a\x60\xa9\xb8\xf7\x06\x35\x26\xf0\x67\x0a\x7f\x66\xf0\xe7\x14\xfe\x9c\xc1\x9f\x73\xf8\x73\x01\x7f\x2e\xe1\x8f\xeb\xdc\x43\x1f\x80\xb8\x36\x5d\x50\xa8\xdf\x33\x78\x09\x5b\x7d\xc0\x72\x75\x68\x73\x58\xaf\xb7\xbe\xf2\x2a\x4f\x03\x47\x68\xbb\xa1\x37\x75\x17\xf6\xb4\x8d\x97\x35\xfe\x0c\x5d\x0d\x73\x0c\x43\x62\x0c\x1a\xf3\x6a\x58\x30\x74\xeb\xf9\x1f\xba\x72\xe6\x31\x0b\x4e\x29\x3e\xd5\xd3\x34\x74\xe5\x04\x61\xaa\x9c\x89\xa1\xdb\xcc\x01\x26\x23\xc0\xe5\x13\x80\x69\xe8\x56\x00\x1a\xba\x6a\xf8\x86\xa1\x0d\x5b\xe6\xd4\x06\x35\x74\x25\xdb\x7f\x5b\x1f\x0f\x06\xdc\x6a\x8c\xae\x59\xf7\x3c\xf6\x72\x62\x9a\x92\x7f\x18\x32\xed\x28\x36\xd1\x8f\x62\x13\x38\x8a\xf5\x9b\xf5\xa7\xb5\x2f\x11\xb6\x9a\x31\x2b\xb5\x97\xeb\x38\x89\x72\x9e\x4a\x37\xc5\x36\xed\x6e\xce\xa4\xb2\x57\xb0\xc8\xdb\x07\x93\xd4\x0e\x85\xc8\xe3\x9b\x9d\xe0\x45\x59\x3e\xed\x89\x9d\xf3\x68\xb7\xe4\x56\x87\x21\x54\x02\x00\x2d\x37\x30\xd7\xc5\xc7\x18\x38\x39\x41\x9e\x96\x61\xc1\x25\xa3\x61\x78\x1c\x73\x15\x0d\x5f\xc2\x72\x1a\xf1\x84\x0b\x3e\xd0\x2b\x90\xdf\xe7\x37\x39\x0f\x7f\x99\x63\xf9\x42\x3c\x24\xbc\x29\x8f\xaf\x2c\xaf\xf6\x8f\xf9\x27\x1c\xe0\x60\x2f\x88\x37\x16\xf9\x0d\xfb\xd2\x27\x06\x08\xac\x4f\x73\xee\x31\x3c\x83\xd0\x8c\x45\x96\xb0\x8b\x24\x5e\x72\xcb\xa1\x39\xc2\xaf\x7a\xcf\x47\xc0\xfd\x62\xbb\xf5\x11\xcd\x46\x1f\x96\xe2\xa7\x58\xac\x2d\xe3\x23\xbf\xf9\x25\x16\x06\x59\x70\xdf\x4a\x59\x46\x61\xb2\xc2\xfc\x95\xb0\x1c\xd2\x66\xab\x47\xa9\xaa\xd2\x25\x24\x60\xb1\xc7\xfd\x2c\x60\x31\xe5\x7b\x42\x9f\xf6\x44\x81\x48\x2d\x1a\xcf\x69\x39\xe4\x19\x61\x1e\x87\x63\x83\x94\x65\x27\x3d\x0a\x05\xa4\x2f\x14\x34\x7d\xd1\x66\xd4\x03\x96\x57\x80\xf6\x23\x4b\xc0\xbb\xe6\x7c\x40\x9f\xf0\x0b\x30\xa4\x84\x86\x30\x07\x30\x17\xb4\x60\xb5\x68\x32\x5c\x3c\xed\xbd\x90\x2e\xd9\xd6\xca\xa9\xaf\xa6\xae\x39\xab\xc6\xad\x39\xc4\xcd\xb7\x95\x04\xbb\x9c\x50\x9b\xa2\xac\x93\xfa\xa9\x2d\xc2\x5b\xaa\xe7\xa5\x4b\xa2\xb1\xac\x19\x21\x64\x6f\xdf\xc4\x69\x24\x6d\xfc\x0b\x3b\xec\xb8\xf9\x74\xc5\x99\x38\xa9\xf3\xb4\xc7\xf0\x5e\xac\xe3\x62\x6f\x11\x3c\x93\xa4\x2c\x2d\x4b\x38\x87\x7d\x59\x65\x33\xb4\x5c\x06\xb1\x88\x3a\xb1\xe4\xe4\xe9\xb8\xaf\xa0\x95\x32\xf9\xa8\xf9\x05\xb0\xf4\xdf\xb7\xdf\x1f\x5a\xcd\xf1\x2e\x5b\x0d\x04\x21\xbd\x07\xc5\xd7\x61\x0a\x7c\x03\x9c\x38\x07\xe1\x00\x97\xd2\x20\x2c\x06\x61\xcd\xbb\x18\x7f\xac\xa5\x75\xcb\xaf\x93\x39\xf3\xf4\x45\x75\xae\x99\xa7\x8d\xdf\x87\x40\xa7\x4d\x4d\x30\xc3\xf4\x97\xb2\x04\x02\x6c\xeb\x72\x2e\x36\x74\xa8\x81\xe2\x30\x23\x4e\x07\xc0\x39\xe5\x76\x25\xf7\x62\x43\x87\xd0\x63\x52\xb4\x1c\xe8\x17\xcd\x89\x76\x62\xca\xba\x72\x38\xd3\xcc\x2d\x4d\xf6\x4b\x05\xa1\x29\xa6\xd1\x94\x7c\x4e\x6c\x9a\xfd\xbf\x57\xdc\xab\x0f\xf8\x0f\x16\x00\x66\x7f\x80\x00\x30\x63\xd9\xff\x94\x00\x30\xeb\x67\x84\xf3\x23\x02\xc0\x3f\x12\x01\xfe\x7f\x61\xd6\x1f\x24\xcc\xfa\x1d\x44\xcb\x6a\x85\x54\x98\x4c\x08\xb1\xc5\xa3\x9d\x64\x61\x64\xc1\xfb\xf4\x77\x4d\x64\xe3\x24\x58\x70\xe0\x54\x25\x78\xbe\x5b\x2d\x1a\xcc\xd4\x52\x7b\x75\x10\x8d\x72\xa9\x16\x9f\xb6\x4b\x01\x24\x51\x97\xf0\xc7\xfa\xc4\xd4\x03\xf8\xff\xae\xce\x25\xd3\xc6\x99\xfd\xd6\x71\xe6\xdd\x25\x42\xfa\xc6\x08\x20\xfc\xef\x1b\x5f\x5e\xe3\x40\x3d\xb6\x58\x17\x28\x0e\x45\xcb\x61\x38\x43\x99\x61\xd3\x8d\x46\x00\x24\x16\xff\x63\x5a\x64\x8b\x13\xef\x33\xda\xd3\xf8\xf7\x7a\x01\x1e\x5b\x86\x5d\x87\xbf\xc3\x35\xc7\x04\x45\xac\xa1\x82\x74\x78\x04\x04\x4f\x2f\x0c\x6b\x21\x9a\xe8\xe7\xba\x7e\x00\x78\x0c\xf8\xfd\x36\xe7\x45\x81\xc2\xdf\x5d\x21\x06\x3c\x16\x6b\x9e\x0f\x6e\x38\x8a\xae\x07\x59\xde\x62\xc3\xe6\x9f\xd0\x52\x9b\xa6\x46\x7a\xe9\x93\x86\x40\x9e\xe2\x11\xb8\xce\x05\x74\x39\x04\xe0\xce\x25\x97\x03\x83\xfc\x1d\xdb\x59\xd7\x35\xf8\x70\x56\x0e\x19\xde\xc6\xeb\xb5\x21\xbb\xa2\x76\xbc\x5f\x40\x25\x43\x87\x78\x1d\x6c\x1c\xf2\x3a\xcb\xa1\xe3\xf8\x3f\xff\x73\xc7\xf3\x87\x41\xce\x7f\xdd\xc5\x39\x07\x2e\x56\xb2\xd2\x83\x8f\xb1\x58\x0f\xc2\x41\x55\xb2\x41\xba\x14\x17\x29\xec\xee\xfb\xfe\xe8\x1f\xb2\x82\x85\xfc\xf1\xd0\x8b\x5a\x3b\x17\xd3\xac\xc7\x09\x3a\x66\x7e\x40\x43\x96\xd6\x1d\xa5\x05\xeb\x25\xdb\x74\xc9\x62\x79\x60\xa3\x09\x8b\x15\xb3\x43\x77\x2c\x46\xff\x4d\xba\x65\x71\x75\x0c\xa3\x2b\xf6\xb4\xa7\x11\x5b\xd5\xdb\x2a\x5d\xb3\x55\x47\x14\x47\x6f\xd8\xba\xf9\xbe\x61\x37\x72\xeb\x95\x4d\x63\xf0\x8a\x3d\xbd\x65\x87\x04\xa9\x8f\x18\xf1\x26\x6a\x81\x16\x5e\xc0\x4e\xb3\x88\x03\x1a\xef\xe9\x5d\x4f\x45\x2a\x10\x02\x37\x4d\x8e\x2a\x13\x09\xb4\x3d\x7d\x60\x4f\x50\x03\x20\x5e\x91\x2f\xe1\x27\xcd\xd2\x25\x97\x0f\x57\x59\xb4\x93\x48\xd8\xac\xdc\x57\x2d\xbc\xa2\x19\x8d\x99\x85\xa7\xab\x90\xb4\x4f\x6a\x96\x21\x19\x39\x03\x05\xaf\xb1\x2d\xf8\xbd\x60\x80\xc4\xa8\x94\x04\xce\xe5\x81\x58\x19\x13\x7e\x1e\x94\x25\x82\xff\x55\x25\x37\x80\x25\xa3\xbf\x5b\x39\x21\xa6\x19\x03\x79\xd0\xd2\x68\x46\xe6\xa9\xbd\xe6\x61\x04\x87\x4c\x9e\x46\xaf\xd7\x71\x12\x59\x31\xb1\xb7\x61\xce\x53\xf1\x6d\x16\x71\x3b\xe7\x9b\xec\x8e\x57\x5f\x1a\x22\xd1\x8d\x11\xc1\x18\x5f\xf0\x91\x61\x78\x3d\x8b\xa1\x2c\x7b\xa7\x61\xb1\xf2\xa3\x8a\x83\x0a\x1a\x0a\xde\x6c\x67\x00\xa1\xc7\x03\xa9\x91\x16\x2a\x86\xdb\xab\xd4\x06\x6a\x2c\x25\x37\xf4\x67\x76\xf2\xc1\xbf\x2e\xae\x77\x5f\xbe\xfd\xf2\xcb\xeb\xfb\x57\x4e\x30\x2a\x3b\xef\xcf\x4e\x6e\x9b\xb9\xf8\xae\xd1\x1f\x0d\x87\x80\x16\x92\xa3\xc4\xf0\x12\xb0\x59\xa9\xe8\x3b\x29\xfb\xd8\xc4\x55\x18\xde\xa2\xe2\x6c\x78\x87\x3f\x96\x81\x52\x50\x18\x56\xaa\xc4\x0b\x2d\x37\xfd\x86\x68\x8a\x97\x8e\x69\x8a\xb1\x8b\xe7\x1e\xb2\x7f\xb4\x57\x29\x7b\xd4\xa8\xde\xd3\x3f\x31\x9c\x84\x67\x4c\xed\x99\xed\x1a\x54\xa7\x73\x8f\x54\xf6\xc4\x73\xa8\xc8\x90\xc9\xf4\x7a\x1c\x4e\x25\x2c\x61\x19\x93\x3d\xbd\xe5\xa2\x6f\x7f\xae\xa6\x4a\xcf\xec\xf1\x17\xce\x02\x9e\x7c\x3e\xc2\xf0\x5e\xb2\xb1\xc0\x93\x69\xc1\x9e\xc2\x92\xfd\x41\x84\xcb\x5f\xbc\x03\x95\x18\x7b\xb4\x37\x3c\xbf\xe5\x32\x5e\x98\xd6\x69\x8b\xd0\x26\x16\x05\x50\x70\x7e\x27\x57\x2b\x86\x10\xa3\x62\x4f\x79\xb8\x5c\xf7\xf5\xf1\xd1\x86\x2f\x32\xaa\x03\x27\x7b\xba\x09\xb7\x7d\xd9\xb0\xc1\xba\x67\xd6\x23\x0a\xbe\x3a\x44\x4c\x47\x18\xa5\x78\x17\x34\x85\x8d\x80\x00\xa9\x47\xfa\xd4\x03\xca\x4e\xd5\xcb\xfe\x38\x13\xb0\x57\xc4\x79\x21\x8e\x55\xc0\x7f\xb5\x1c\xb2\xa7\x49\xf8\xc9\x2c\x63\x97\xec\x29\xff\xb5\x07\xb2\xda\x5c\xd0\x94\x8d\xf8\xc8\xc2\x89\xf2\x9c\x06\xac\xed\x7e\xa6\x2f\x99\x63\x9a\xe9\x0b\xb1\xf0\x71\xea\xd2\x20\xf0\xfc\x00\xaa\x4f\xa3\xa3\xa3\xac\xe7\xa5\x2c\x0f\xa7\x50\x4e\xbd\xb7\xa3\x45\x96\x0b\x2f\xb6\xe1\x87\x16\x5b\x04\x9b\x54\x5a\x2d\xf9\x9e\x3e\xda\xfc\x5e\xf0\x34\x62\x80\xd4\xd5\x73\x57\x3f\x04\x44\x8f\x22\xbd\xa3\xa1\x76\xc0\x76\x82\xb2\x7c\xda\xd3\x82\xb9\x74\x79\x20\x0a\xa6\x09\x1b\xba\x68\x84\x61\xdc\x64\x59\xc2\x43\x9d\x7e\x84\xa6\x69\x25\x2c\x6c\xd5\x56\xa8\xda\x46\x23\x42\x0f\x09\x51\x58\x96\xb7\x56\x48\xca\xd2\x0a\xd9\xd3\x9e\xd0\x82\x31\xb6\x34\x4d\x2b\x94\x28\x59\x8c\xc7\x64\x5e\xbc\x58\xce\xa1\xb8\x32\x5e\x19\x32\x8b\xb7\xea\x27\x48\x7e\xa5\xf4\x82\xe4\x78\xe4\xa4\x46\xcd\x4f\xe1\x86\x62\x9a\xe1\x90\xb1\x1c\xba\x67\x9a\xf0\xf3\x68\xc7\xc5\x5f\x93\x30\x4e\x2b\x75\x1b\x74\x21\x63\xdd\x70\x1d\x84\x2c\xac\x94\x85\x50\x63\xcc\x32\xd3\xec\x28\xc2\x53\xb2\xf0\x03\x2f\x2b\xcb\x6e\x75\x29\x59\xa4\x52\x30\x31\x74\x29\x14\x67\xd5\x84\x58\x09\x8d\x69\x4e\xaa\x08\x1b\xaa\x57\x98\x25\x27\x35\x16\x85\xcd\x0c\x5a\x4f\xfc\x7e\x1b\xa6\x51\xe6\x29\x7e\xc3\x18\x59\x8a\x20\x8d\xae\x42\xb1\xb6\x73\xf8\xb8\xb1\x50\x44\xac\xac\x24\xae\xdf\x9c\xdc\x52\xc3\x20\x34\x2e\xbe\xe7\x61\xf4\x00\x5b\x1f\xea\xf3\x5a\x28\xdd\xe5\x67\x60\x61\xa7\x59\xb6\xd5\xf1\x72\x4f\x5b\x03\x3b\x5c\x12\x34\x9d\xb7\x82\x04\x55\xc7\x75\x99\x3f\x00\xe8\xd7\x3b\x0a\x10\xe7\xa1\x25\x58\x01\xcf\xbd\x3b\x90\x95\xb2\x75\x45\x13\x0c\x0d\xed\x0d\x34\x48\xd0\x12\x88\x69\x2a\x7e\x23\x25\x8c\xb1\x0d\x81\x8e\xbe\xdd\x6c\xc5\xc3\xb1\x8e\xce\x75\x24\x91\x3d\x76\xab\xae\x3b\x7b\x7a\x9b\x64\x37\x61\xf2\xf6\x2e\x4c\xbc\x36\x87\x0e\xcc\xc1\x93\x64\x20\x90\xef\xc5\xc7\x3d\x39\xa0\x95\xba\x34\xde\x41\x63\x27\x18\x25\x34\x9a\xd6\xe6\x1c\xf3\xfc\x45\x6a\x9a\x43\x17\x50\x52\x01\xc5\xcf\x03\x9a\x53\x8c\x4a\x87\x76\x4c\x32\x72\x4c\xcd\x4f\x70\xc0\xfa\xa1\x0c\x66\x77\x50\x80\x48\x09\x7b\x7d\xa0\xa1\x22\x8f\x37\x9f\xda\x62\x0c\xc3\xb3\x80\x23\x68\x50\xe5\x67\x40\x13\xa0\xe7\xbf\xf0\xce\x26\xa6\x85\xde\x13\x65\xe9\x37\x52\x9c\x8a\xe9\xb2\xbe\xb3\x6a\x39\x0d\x59\x54\x7b\x4e\xda\xa7\x19\x5f\xf8\x3c\xf0\x38\xf1\x76\x55\xfc\x20\x8e\x01\xf8\x68\x9c\x1e\x36\xaa\xf3\x13\xd8\x6d\xb1\x18\xbb\xde\xb6\xc2\x0a\x8e\x5c\x05\xb6\xd5\xe9\x6b\x23\xe6\x1d\x55\x32\x5e\x98\x0a\xb4\x06\x69\xc0\x8f\x40\xe6\x7e\x36\x1a\x05\xc8\xa7\xd5\xd0\x53\x79\x58\x46\xf9\x9e\xde\xe6\x7c\x7b\xd0\xab\x3a\x54\x12\x30\xdc\x19\x73\xd0\xb0\x44\x35\x14\xb2\x61\x3a\xcf\x5e\xc4\xf3\x6c\x34\x22\x43\x61\x71\x3f\x0b\x68\x46\x86\x8c\x85\xa6\x99\xcb\x00\x29\x90\x56\xaf\xf0\xbc\xbb\x89\x76\x39\x50\x87\x86\xcc\x0f\x5a\x88\x94\x37\x23\x89\x5f\xe4\xf3\x78\x34\x22\x8a\x20\x66\x0c\x9a\x8c\x03\x1a\xd3\x14\x96\x59\x28\x5b\xcc\x34\x74\x8a\x25\x3a\x7d\xb6\x40\x15\x09\x43\x6d\xb0\x70\xb6\x00\xde\x65\x17\x47\x9e\x4b\x8b\xdd\x16\x4e\x4e\xde\xd5\x9e\xd0\x4f\x09\x15\x2c\xd8\x76\x0e\x82\xc8\xb0\xf8\x20\x89\x50\xc5\x5a\x18\x7f\x96\xbb\xc9\xe0\x5b\x64\xd4\x06\xf2\x58\x51\xeb\x36\xa4\x1c\x6f\xf0\x26\x14\x7c\xf0\x3d\xbf\x7d\x7b\xbf\x55\x14\x46\xd2\x2e\xd5\xb0\xa1\x19\x6d\x74\x6d\xc3\x56\x7e\x4d\x9b\x30\x72\x61\x60\x04\xac\xa3\x5c\xaa\x4c\x86\xdf\xb3\x1e\x32\x57\x6d\x94\xb4\xa0\x4b\x9a\xd0\x1d\xdd\xd2\x15\x8d\xe8\x9a\xde\xd0\x0d\xbd\xa2\xb7\xf4\x8e\x3e\x30\xa3\x88\x1f\x1f\x13\x6e\x8c\xdc\xe7\x40\x57\xa1\xbb\xf4\x15\x6b\xce\x90\xf4\x23\x73\xe8\x23\x73\xe8\xcf\x6c\xc9\x2d\x42\xbf\x93\x3f\xef\xe5\xcf\xbd\xfc\xf9\x96\xf5\xcb\x08\x54\x84\xcd\x2d\x2a\x18\x9c\x3d\x7d\x77\x18\xfd\x8a\xbe\x05\xdc\xfc\x81\xbd\xb5\xb7\xd9\x96\xfe\x0a\xbf\x70\xb4\x7b\x5d\x3d\xfc\xc2\xde\xaa\x13\xe0\x4f\xec\xd8\xea\x71\xa8\x86\x67\xe9\x8b\x1c\x15\x25\xf1\xca\xe2\x7e\x1a\x40\x17\x1a\x65\xae\x7c\x18\xbb\x7b\xfa\x86\x19\x18\xcb\x81\x47\x65\x81\xc1\xd7\x78\x54\x86\xc5\x43\xba\x2c\xc3\x9d\xc8\x56\xd9\x72\x57\xe0\xd3\x36\x09\x1f\xca\x65\x96\x8a\x3c\x4b\x8a\x32\xe2\x2b\x9e\x97\x51\x5c\x84\x37\x09\x8f\xca\x75\x1c\x45\x3c\x2d\xe3\x62\x13\x6e\xcb\x24\xcb\xb6\xe5\x66\x97\x88\x78\x9b\xf0\x32\xdb\xf2\xb4\xcc\x79\x18\x65\x69\xf2\x50\xaa\x03\x77\x54\x16\xcb\x6c\xcb\x23\x83\xfe\x99\x19\xfe\xf5\xf5\xfd\xc4\xb9\xbe\x16\xd7\xd7\xf9\xf5\x75\x7a\x7d\xbd\x0a\x0c\xfa\x57\x66\x58\x0b\xef\xfa\xfa\xfa\xda\x2e\xfd\xeb\xeb\x8f\xe3\xa0\xf4\x3f\x5c\x3b\xe3\xeb\xeb\xfb\xd0\x09\xc8\xc8\xa0\xdf\x33\xe3\xfa\xda\x37\x46\x7f\x1e\x19\xcf\x2d\x63\xf4\xd7\x91\x41\xac\x85\xa7\xde\xfd\xe7\x1f\x9e\x95\xc3\x7f\x05\x0b\x46\x54\xca\xc2\xfb\xc2\x6a\x6a\xfc\x00\xbf\x5f\x04\xe4\x39\xf9\xa2\xbc\x36\xba\x1f\xae\x0d\xf8\x72\x6d\x94\xaa\x5e\x52\xaa\x5a\xae\xaf\x03\x83\xfe\x9d\x19\x5e\xd3\xe0\xf5\xb5\x65\x59\xff\x7e\xd5\xa4\xec\x7e\xb1\x88\x7f\x7d\x1d\x04\xa5\x31\xfa\x7e\x64\x90\xe7\xa4\xb4\x9f\x93\xeb\x6b\x68\x9a\xfe\x93\x49\x49\x1a\x2c\x1e\xeb\xcf\x23\x63\x64\x50\xe3\xd6\x20\xf4\x6b\x3d\xdd\xf8\x80\x7d\x1c\x61\xc5\x1f\x54\xa5\x01\xa9\x5a\x21\xcf\xe5\x18\x46\xcf\x54\xe1\xbf\xf5\x14\x7e\x4e\xe5\x8f\x41\xe8\x57\x7d\x9f\x2d\xff\xe5\xe8\x5f\xd0\xc5\x3f\x8f\x0c\x52\x67\xfd\xb2\xd3\xbd\xf2\xa5\x41\xe8\x8f\x7a\xe2\xdf\x09\xfd\xaf\x6e\x7d\x7f\x1d\x19\xcf\x0c\x42\xff\xc2\x9e\xbe\x7e\xe3\xb5\xbe\xfd\x49\x41\xd7\x20\xf4\xf5\xbb\x57\x3f\xfc\xd0\xfe\x7a\x7d\x6d\x37\xdf\xdf\xbf\xfa\x4b\xfb\xab\xfc\x54\xfa\xcf\x03\xf8\xfc\xea\xfd\xfb\xef\xbd\x4e\xbb\xdf\x13\xfa\xd7\x1f\xde\xfe\xed\xcd\x77\xdd\x0f\x7f\x27\xf4\xf5\x57\x5f\xbf\xeb\x74\xc6\xb3\x10\x71\xf1\x6c\x52\xc2\xe9\xa3\x4c\xc5\x1a\xfe\x8f\xe1\x85\x8c\x2d\x34\x87\x28\xb3\xd5\x18\x5d\x3f\x24\x46\x28\x68\xf1\x3b\x9e\x96\x59\x14\x95\x96\xe5\x8f\xc6\x41\x49\xac\xeb\xeb\xe8\x39\x49\xcb\x06\x29\xd5\x07\xf5\x7e\x7d\x1d\x8d\x48\x49\x6a\x6c\xc3\xd9\x37\x62\x83\x50\xe0\xd8\x3b\x23\x05\x64\x7f\x33\x32\xc8\x33\x95\x25\xe5\x3c\x2a\x5e\x67\xa9\xe0\xf7\xa2\x3b\x36\xa8\x4e\xce\x9d\xd7\xf4\x8a\xff\x5a\xde\x8a\x32\x91\x23\x6a\x06\xd8\x1e\x83\xb5\xf0\xc6\xd7\xd7\x11\x59\x60\xd7\xb5\x8e\x59\x0b\xe6\x7f\x18\x07\xe5\x33\xd5\xc5\x3d\xfd\x0f\x76\xf2\xd5\xfb\xab\x77\xcf\x4e\x62\xfa\x9f\xec\x04\x3a\x18\xa7\xdb\x9d\x50\x74\xa5\x84\x7e\x85\x39\x0f\xcb\x9b\x9d\x10\x59\x4a\x20\xdf\x33\x76\xf2\x61\x7d\x1d\xc1\xe3\x37\xec\xe4\x83\xff\xe1\x29\x18\x5d\x3f\x5d\x17\xcf\xaf\xfd\x34\x14\xf1\x1d\x1f\x5c\x7f\x3c\xa1\xff\x90\xb5\xfd\xc9\xf2\x81\x10\x8c\x48\x69\x5d\x7f\x1c\x91\xf2\xda\xae\x12\xc8\xb3\x13\xca\x39\x3b\xf1\x47\xff\x0a\x4e\xa8\xe0\x2d\x5c\xc3\xc5\xe5\x5f\x5f\x47\xe1\x78\x15\x3c\xb9\xf4\x6c\x8f\xa3\x58\x94\x72\x88\xa4\xb4\x71\x04\xb7\x08\xc2\x03\x37\x24\xc9\x36\x18\xce\xbd\x31\x12\xe3\xb3\xd3\xd3\xe9\x59\xcd\x07\xc0\x09\xa0\x2c\xd3\x85\xf0\xf2\x17\xce\x42\x29\xb1\x56\x79\xb6\x79\xbd\x0e\xf3\xd7\x59\xc4\xad\x7c\x84\x25\x88\xd7\xfb\xf1\xe5\x4b\xd7\x29\x4f\x4f\x27\x97\x67\xd4\x75\x26\x53\x33\x2f\x4f\xcf\xa6\x13\x38\xe5\xe6\x9c\x9d\x58\x3e\x90\xbb\x7b\x77\x75\x7d\x7f\xbe\x0a\xca\x0f\xe3\xc5\x75\x44\xca\x0f\xe3\x67\x8a\x10\xaa\x2f\xe3\xeb\xdd\x97\x5f\x7e\xf9\x25\xc0\xe1\xe4\x96\x66\xbc\x7f\x07\x12\x0b\xe3\xda\x31\xd0\xc6\xd9\xb8\xde\xad\x56\xab\xc8\xf0\x78\x6d\x65\x32\x76\xc9\xc8\xb8\xbe\x36\x46\x1c\xed\x45\xa0\x77\xaf\x44\xad\x1e\x1c\xa3\xc9\xb5\x1c\x81\xe5\x9e\x91\x91\x31\x30\x3c\x99\x7d\x4f\x63\xae\x9f\x4d\x57\x70\xc8\x0d\x39\x7b\xe0\x7d\x2a\xd6\x21\xea\x06\xec\x6a\xd7\x30\x4d\x63\x15\xf3\x24\x2a\x38\x1e\x2b\xa5\xcc\xf0\xdb\x70\xc3\xbb\x5b\x3b\x7d\x8a\xe2\xdc\x33\x1a\x39\x9a\x41\x53\xc0\x71\x23\xe1\xb7\x3c\x8d\x8c\xbd\xb4\xaa\x78\xad\xf8\x9e\xb7\xec\x17\xc9\x72\xbe\x92\xa6\x4a\x50\xa2\x20\xb4\xfd\xf6\xd6\xd7\xdf\x2b\x21\x4d\x23\xb6\x94\xf6\x17\xdf\x71\xf2\xf4\x9a\x3d\x61\xbd\xde\xdb\xca\xb2\xbb\x0d\xe1\x5f\x6b\x4b\x4b\xd5\xac\x20\x2d\x6d\x4e\x7b\x8b\xe6\x1a\x7f\x3b\xe7\x7e\xaa\x98\xd9\xd1\x28\x98\x93\x79\xcd\xc9\xc2\xce\xac\xd9\x19\x14\x1c\xb1\x31\xa7\x99\x72\xb5\xa0\x85\xe2\x63\xd6\xc0\xbf\x30\x3c\xdd\x64\x1f\x53\x9e\xbf\x69\xb8\x15\xb1\x10\xf5\x70\xbc\x4b\x8c\x89\x09\xe8\xea\x07\x35\x9b\x3f\xd4\x85\x8a\x70\x04\x84\xd3\xcd\x47\xd3\xbc\x94\x3f\x2e\xbe\x56\x3c\x03\x06\xd0\x1c\x66\xa6\x69\x59\x50\x73\xab\xb5\xb2\x14\xde\x2b\xe0\x98\x23\xd3\x5c\x59\x82\x50\x01\x07\x8f\x88\xde\x10\x94\xc4\xbb\xaa\x5e\x6b\xcb\xfe\x61\xf3\x7b\xbe\x04\xae\x18\xf8\x92\x98\x6d\x7d\x37\xc0\x3c\x97\x0c\xda\x92\xe6\x28\x09\x43\x81\xab\x92\xdc\xfe\xf9\xe1\xeb\xc8\x8a\x09\x69\x75\x24\xb1\xe3\x08\x23\x6a\x56\x89\x92\x09\x4e\x08\xcd\xeb\xc8\x9b\xb7\x28\xd2\xb8\xed\xa9\xca\x34\xef\x2c\x41\x13\x62\x9a\x9f\xab\x07\x3a\xb4\xf5\x27\x41\xf5\xbd\xc2\xb1\x9c\xea\x5d\x2c\xfe\xfc\xf0\x3e\xbc\x05\xd4\x45\x13\x64\xec\x21\x0e\x6e\x1a\x10\xd3\x4c\xdb\x39\x5f\x57\x46\x6a\x4a\xae\xdc\xf3\xe5\xb3\xad\xd5\x39\x61\x34\x34\xdf\xc7\x2b\x2b\xb5\x7f\x2d\x42\xd3\x1c\xde\xfb\x1c\x16\x68\x00\x07\xf6\x4d\x59\x0e\x37\xb6\xe0\x85\x50\x47\x78\x9c\x88\x76\x3c\xe0\x23\xab\x4e\xce\xdc\x15\xe3\x80\x5e\x14\x4e\xb1\x1f\x4d\xf3\xcb\xba\x2e\xc4\x68\x6b\xc7\x3a\x92\x71\x23\x8e\x0c\x42\x16\x3b\xb6\xab\x8f\xa9\x39\xa7\x19\x27\x9e\x68\x8b\xcb\x21\x23\xdd\xb1\x07\x42\x0b\x66\xad\x59\x08\x75\x56\x8c\x6b\x31\x1e\xcf\xc9\xda\x2f\x02\x66\xfc\xc9\x18\xed\x60\x34\xa3\x3b\x6e\x41\x0a\x99\x5f\xb1\xb5\x8a\x87\x4a\x0d\x42\x6f\x19\xe7\x55\x9f\x4c\xf3\x0a\xbd\x30\x6b\x2a\x41\xca\x52\xec\x31\x3c\x65\x17\x9a\xb7\x87\xc1\x86\xaf\x10\x8e\x72\xd5\x3f\x92\xa7\x7b\x8b\xd3\xa1\xd3\xc4\xae\xdc\x31\xc6\x1e\x60\xc2\xa4\x04\xbf\x33\xe2\x7d\x1d\xce\x72\x69\x35\x1e\x2f\x5f\x53\xe3\x99\x6b\x10\xb5\x70\x9b\xd5\x0c\x27\x85\xa7\x2a\xb4\xed\xbc\x63\xc4\x31\x10\x52\x57\x54\x9f\x6d\x11\x1f\x53\x00\x02\x79\x99\xdb\xcb\x70\xb9\xe6\xef\x10\x4e\xa6\xa9\x4c\x1c\x85\xcf\xed\x62\x1d\xaf\x84\x45\x02\x2a\x7c\xcc\x1b\xb0\x4c\xa3\x1f\x09\xd7\x95\xca\xfe\x43\xc0\x86\x4e\xcb\xaf\x8f\x37\x72\xd2\xa8\xab\x37\xa9\x69\xb4\xa4\xb2\x8a\x94\x0f\xb9\x25\x88\x46\x25\x2b\xb9\x4c\x13\x17\x54\x9b\x09\x54\x3a\xf6\x6b\x41\x90\x58\xa0\x81\xbf\xe6\x1d\xc7\x0f\xa9\xa6\x3a\x1d\x96\x68\x21\x59\x85\x28\x9d\x67\x80\x2a\x39\x9a\xee\x7d\x15\xa6\x51\xc2\xfd\xd4\xcf\x82\x80\x09\xcd\xed\x8b\xb7\xe4\x21\xa6\xc9\x69\xce\x52\xd3\x74\xeb\x2d\x07\x08\xa4\x7c\x17\xda\x3b\xb7\x8b\x6c\x97\x2f\xf9\xd7\x69\xc4\xef\xc7\x42\x7f\x93\xf1\x85\x75\x72\x94\xe2\x21\x7f\x9e\xb2\x14\x43\xac\xfe\x10\xdf\x24\x71\x7a\x3b\x47\xb9\xa7\x76\xf0\x1a\xbb\xb5\xcc\x62\xe1\x7a\x63\x57\xf3\xa3\xe2\x7d\x06\x3d\xf5\xfe\x6d\x20\x23\x65\xb0\xe3\xeb\x15\x40\x8c\x9a\x0f\xc6\xb8\x06\xca\xf5\xb1\x7a\x15\x38\x8e\xd4\xa6\xba\x69\x35\xed\xa6\x65\x69\x48\xbe\x0d\xdf\x8e\xb5\x77\xf3\x99\x71\xa0\x07\x46\x2c\xfd\xbc\x74\xfc\x50\x72\xb2\x8a\x35\x58\x18\x49\x78\xc3\x13\x99\x53\x7b\xd6\xca\xb4\x2a\xa8\x0b\x42\x77\x3c\xd1\x7d\x8d\x8b\x37\x5a\x42\x59\xea\x29\x43\xc6\x86\xdc\x34\x43\xc0\xe7\xbe\xd2\x5a\xeb\x30\x66\xfd\x9b\x36\xee\x8d\x3e\xee\x84\x77\xac\xc1\x2a\xff\xb8\x91\xa0\xad\x6f\x29\xcd\x1b\x2c\xcf\x68\xcc\xb8\xe5\x07\xb4\xc2\x6e\x2a\x08\x0d\x59\xed\x2a\x19\x02\xae\xa7\x7e\xc6\x62\x3f\x0c\x02\xbc\x14\x23\x0b\xd8\xd0\xca\xe1\x07\x9e\x09\xda\x9a\x11\x8d\xd2\x5c\xf1\x8e\x31\x49\x9f\xde\x9a\xf7\x6e\x64\xa6\xc9\xf7\xb5\xd8\x35\x65\x05\xb7\x95\x00\x49\xba\x9a\x16\xdc\x8e\x8b\xbf\x5f\xbd\x3b\x14\xb7\xc0\xa2\x0a\x37\xbc\xd8\x86\x4b\xfe\xb7\xef\xbf\xa6\x29\xb3\x78\x97\x5b\xe0\xa4\x16\xab\xa8\x86\x2b\x71\xee\x7f\x48\x6a\x2e\xca\x32\x85\x8d\xb3\xc2\xce\xb2\x34\xe0\x64\x01\x87\x8c\x15\xf6\x85\x8b\xaa\xb6\x1e\x81\x4f\x46\x43\xc6\x17\x87\xad\x7a\xaf\x6a\x21\xbd\xe4\x55\x80\xe9\x08\xb5\x35\x1f\x76\xbb\xb5\xb0\xd6\xcc\x8a\x58\x78\xd0\x5f\x7a\xc3\x86\xb1\x15\x11\xfa\x4a\xd6\x64\x65\x2c\xaa\x9c\x0c\x7e\x8c\xf9\x47\x62\x9a\x99\x2d\xb2\xed\x90\x31\x60\x99\x32\x3b\x8c\xa2\xb7\x77\x3c\x15\xef\xe2\x42\xf0\x94\xe7\x8b\xc3\x24\xcb\xd8\xa5\x49\x16\x46\x06\x8d\x39\x1d\xba\xc4\xcb\x80\xb0\x85\xcb\x35\xe6\x82\x0a\xb5\x57\xcb\xc8\xd2\x26\x3b\x06\x94\x6d\x0c\xdd\xd9\xae\x97\xff\x1e\x68\x9e\x7b\xcc\x88\x0d\x3a\xe4\x9d\xed\xbb\xfe\x6c\xc8\x8b\x56\x7a\x51\xe3\x78\xed\xba\xe2\xbb\xda\x47\x5e\x67\x1b\xb9\x8f\x18\x84\xa8\x06\x0f\xb9\x26\xe3\xb9\x51\x6d\xff\x3d\xed\xd6\xdc\x0e\xfb\x46\xa2\x47\x74\x8c\x6f\x92\x25\x81\xcd\x3b\xd6\xc9\x75\xab\x93\x9c\x00\xff\xf7\x40\x87\x9d\x1a\x25\xce\xf5\xa5\x5a\x0f\x07\x1d\x85\xe6\x16\x56\xae\x6c\x4b\xed\xaf\xdf\xf4\x2e\x8a\x8a\x2b\x10\x9c\xa6\x8d\x2a\xb7\x17\x8c\x87\x2c\x15\x10\xc7\xfd\x9e\x42\x1b\x69\xd4\x6e\xa1\x32\x2e\xea\x5b\xda\x5d\x36\xda\x34\x6f\x1a\xca\xdf\x61\x8b\x9b\x3e\xa5\x0b\x3f\x0d\x3c\x3f\xd8\xef\x89\xf7\x07\x0c\x4b\xb6\x77\x9c\xf4\xd4\x43\x95\x3b\xc1\x61\x9a\x04\x41\xdd\x3b\xa0\x0b\x68\xa9\xf4\x87\x03\x45\xca\x89\x7b\x41\x03\x87\x15\xac\xd2\x4a\x59\x7c\xa4\x87\x44\xef\x59\xc5\xc3\xfb\xb1\xbc\xa8\x21\x63\xa2\x07\x99\x38\x91\x2a\x27\x96\xa9\x23\xe0\xef\x6b\x41\x71\x9f\x38\x65\x15\x3c\xde\xbf\xfa\x0b\xeb\x5f\xbf\x8b\x3e\x09\xc1\x67\x41\xa5\x95\x3f\x7a\xf4\xf1\xf0\x10\xb2\xe8\xbd\xf8\xa3\xf2\x62\x3e\xa2\x77\xab\xf5\x32\x47\x2b\x47\x07\xa5\xe7\x28\x29\x90\x9b\xe6\x3c\x65\x31\x6a\x83\xe6\x04\xb8\x87\x54\x23\xe4\xea\x18\x97\x6a\x3a\x9b\xda\x2c\xb0\x02\x10\x8a\x16\xbb\x20\xd2\x0e\x67\xff\x3e\x36\xb5\xcb\xdf\x90\xda\x5c\xe3\xc8\xd9\x8d\x93\x3d\xbd\x82\x91\x6f\xe0\x8f\x3c\xc1\x35\x24\xae\x0b\x43\x3c\xc0\x75\xa9\xda\x21\x39\x4b\x53\x9e\xc3\x5e\xc9\x8c\x17\xe1\x20\x8e\xd8\x17\xc6\xe8\x61\x64\x7c\xf1\xf2\xc5\x49\xf8\xf2\x85\x94\xc4\x35\xc9\xe3\xeb\xfc\xfa\xfa\x8b\xc1\xa6\x08\x93\x24\xfb\xb8\x0c\xb7\x62\x97\x73\xf6\xc5\x17\x2f\x5f\x64\x5b\x25\x79\x90\x2a\x01\x4c\x3b\x91\x89\x2f\x5f\x9c\xc8\xe4\x97\x06\xe5\x3d\xd7\xb6\xf8\xed\xea\x3e\xb0\x2f\xbe\x08\x6a\xf2\x6e\x9a\x1b\x39\x37\x86\xff\xfc\xc3\xb3\x80\x35\xd2\xf9\x2f\xca\x6b\xe3\x1a\x85\xba\xbd\x95\x56\x3d\x69\xaa\x2a\xcb\xaa\xaa\x46\x0f\xb0\xf0\x70\x79\x94\x52\x32\x7a\xac\xae\x38\xfa\x17\x93\xe3\xef\xab\xed\x5f\xec\x48\x39\x4f\x29\x4a\x7a\xca\x34\x9f\x7a\x4b\x86\x7f\xc2\xe6\x46\xcf\x7b\x8a\xda\x7f\xb2\x47\xfe\xe8\x5f\x81\xdc\x72\xbb\x13\xcc\x3b\x33\xba\xce\xf9\x8a\x7d\xf1\xc5\xa0\xe6\x43\xbf\xa8\x9e\xda\x53\xdc\xfb\x5d\xce\xdf\x89\x36\x81\xf3\x23\x87\x3e\xc9\xf7\x93\x79\xf7\xd8\x0e\x58\x6f\x50\x43\xea\x7b\x70\xb0\x3a\xfe\x09\xd2\xc9\x0e\x9c\xa0\x41\x8d\x37\xc7\x26\x02\xbe\xb3\xa8\x0f\x3b\xb0\xa4\x14\x5b\xd7\xaa\x1c\x83\xd0\xc9\x10\x4e\x6d\x3d\x53\xc3\x53\x1c\x64\x4f\x4d\xf5\x27\x6a\x78\x15\x2c\x0c\x42\x0f\x56\x4e\x0d\xb1\xa1\x73\xbc\x99\xa6\x82\xdf\xda\x4e\x5f\x35\xcf\xa9\x77\x6f\x10\x5a\x95\xa4\xf6\x73\x0f\x67\x9f\x00\x11\xd8\xc0\x99\x9a\x17\x55\x81\x8a\x20\xdc\xb2\x75\xf5\xa9\x2c\xd7\xb6\xf4\xf4\xbb\x6a\xe7\x85\x0f\x9b\xec\xb1\x27\x35\xeb\xcb\x59\x74\x12\x81\xc2\x74\xf1\x2f\x05\xb8\x2c\xb3\x34\xc5\xc5\x87\x05\x58\xe5\xa9\x41\x51\xfb\xd3\xbc\xf9\xc5\x10\xd6\x3a\x8e\xed\x4a\x8d\x6d\xc8\x0c\xfa\x77\xc4\xec\x0d\xdb\xd4\x30\xd3\xc4\xf3\x1b\x25\xce\x29\x81\x3f\xbc\x62\x57\x7d\x79\xae\xf4\x3c\xa2\x82\xc8\xda\x5e\x66\x1b\x38\x03\x56\x2c\xfe\x5f\xb3\x22\x86\x7e\x13\x7a\xc7\x44\x59\x6a\xd9\x52\x11\xc6\x69\x41\x16\x7d\x26\x12\x97\x2d\x41\xc0\x82\x77\x59\x7d\x8f\xd3\x5c\x4a\x58\x9b\xf3\xe6\x5c\x53\xec\xe6\x65\x39\xb4\x86\xb9\x94\x9e\xe6\x75\x45\x90\x9a\xd6\x4d\x2f\x9a\x47\x2b\x27\x1e\x3f\xd6\x75\xd3\x74\xcf\xcc\xa3\x5f\xd1\xac\xa9\xbb\x83\xc6\x2b\x4b\x5a\xb1\xce\x05\x6b\xf5\x11\x98\x09\xa1\x31\x0a\x43\x67\x5e\x4b\x69\xe8\xb7\x4c\x2c\x0e\xea\xe1\xba\x92\x78\x0b\x0b\xc1\x51\x81\xb8\x86\x47\xfb\x34\x1e\x8a\x63\x9f\xea\xcd\xb7\x2c\x2d\xd7\xb4\xf2\xde\x93\x20\x63\xcc\x3a\x14\x27\x93\xc5\x71\x20\x08\xe2\xb9\xa4\x2c\x87\x29\x1a\xd0\xbd\xe1\x70\x26\xe2\x91\xb4\x32\xea\x2f\x81\xad\xe4\x0b\x18\x5e\x54\x96\x9d\x4e\x30\xc6\x5e\x99\xe6\x9d\xf5\x8a\x72\xb2\x18\xbb\x9e\x90\xb9\xc4\xb1\x5c\x82\x2c\x5c\x6f\xb7\xf8\xc9\xda\x51\x4e\xc6\xf0\x23\x88\xe7\x78\x33\x33\x87\xd2\x6e\xdf\xfc\x1c\x83\x6b\x5a\x5b\xb9\x34\xd3\x86\x2c\x90\xf6\x1a\x32\x9f\x07\xb4\x60\xea\x5e\xab\x61\x56\x96\xc3\x5a\x5c\x8d\x23\xaa\x3b\xbd\x70\xbd\x0c\x5e\xe2\xbe\x0e\x42\xe1\x4c\x17\x75\x2b\xc1\xd8\x5c\xd9\x39\xa1\xf0\x4a\xc7\x9e\xd0\xde\xa5\x52\xac\x98\x56\x99\xc4\x41\xa6\xa2\x9b\x69\x1e\xfa\x79\xc0\x18\x2b\xfc\x3c\x98\x93\x7c\x34\xaa\x91\x60\xb1\xe2\x16\x7c\xa4\xf0\x89\x78\x2a\xdf\x2b\xe8\x70\x51\x3d\xbb\x9e\xb3\xa7\x11\xf1\xa2\x3d\x2d\x78\x45\xee\xfa\x35\x5a\xa8\x13\x41\xaf\x5c\xfc\x23\x88\x5e\xa4\x26\x9e\x07\x53\xd1\x87\x82\x95\xe2\x02\xcf\x8f\x9d\x1a\x4c\xf3\x06\x85\xea\xa2\x16\xaa\x5f\x95\xe5\xf0\x4a\x89\x29\xa4\x5d\x9c\x26\x66\x17\x84\x10\x91\x3f\x28\xad\x61\x4d\x1a\x65\x0c\xad\xbc\x2c\x7b\xc8\x29\x20\x64\x45\x72\x94\xd2\xa5\x49\xa8\xc9\x49\x2d\x6e\xd4\x64\xae\xf7\xd2\xf1\x61\xdf\x40\x44\xd0\x48\x82\xc3\xe7\x01\xa9\xa3\x00\x21\x64\x2a\xf2\xd3\x0b\xcd\xcf\x40\xe5\x4e\xba\x7b\x40\x35\xa1\x10\x5d\xa8\x7e\xba\xb0\x8a\x1b\xd0\x12\xd2\x76\x3d\xc3\xa5\x85\xe6\x3b\x75\x1b\x9a\x96\x93\x76\x72\x92\x85\x74\xb9\x1d\xde\x54\xe7\x89\x0a\xbd\x6a\x9b\xcc\x78\x11\x7b\xed\x18\x03\xc3\x9b\x45\xe7\x4c\x2d\x88\x67\xc5\xac\xe7\xa4\x29\x94\x65\xff\x96\x2f\xf1\xd6\xc0\x45\x6c\x2b\xc7\xd9\x5d\x92\xe0\xf8\x79\xb1\x0c\xb7\xbc\xc7\xa5\xa1\x63\x9d\x27\xd5\x1e\xb2\x48\x9e\xb7\x30\xf1\xd0\x7c\xd3\xf8\xe1\x21\x15\xe1\xfd\x00\x73\xd2\xc1\x2e\xcd\xf9\x32\xbb\x4d\xe3\x47\x1e\x69\xae\x3f\xde\xc0\x18\xa9\x2a\x77\x69\xfc\xeb\x8e\xff\x90\xe5\x7d\xe2\x2f\xed\x30\x85\xab\x7e\xcb\x86\xa9\x1d\x71\xc1\x97\xe2\xcd\x6e\x9b\xc4\xcb\x50\xf0\x82\xee\x98\x22\xa0\x3f\xa0\xaf\x0f\x0a\xbc\xa5\x3a\x18\x78\x16\xf8\x60\x7d\x4b\xe8\x56\x1d\xb5\x04\xe3\x7e\x8c\x47\x2d\xdc\x51\xfc\x38\x40\x99\x97\x3a\x67\xc5\x44\x2d\x7e\x94\xc7\x73\x65\xca\x8c\x92\x49\xea\xd6\xf8\xb9\x43\x39\x3f\xe5\x7b\x9a\xb1\x02\x81\xff\x9e\xdf\xf7\x0d\x20\x65\x86\x81\x94\x31\xd6\x36\xe6\xe6\x08\xee\xca\xeb\xfb\x2e\xe5\x8f\x8b\xaf\xf2\x80\xd6\x17\xd8\x87\xdf\x0b\xb4\x89\x48\x45\x73\xbd\xa5\x96\x88\xfd\xe6\x18\x75\x2a\x2f\x04\x32\x83\x73\x3e\x87\x04\x4d\x90\x4f\xd2\x11\xcb\xe0\xb8\x56\xa9\x16\xa7\xb2\xed\x99\x4e\x4f\x65\x57\x7f\x04\x74\xd9\xd7\xa6\x7b\x08\x38\x79\xb4\xc7\x3a\x9a\x10\x48\xe9\x9e\x5a\xb9\x94\x65\x4a\x4a\x53\xb0\x27\x4d\xbb\xe3\x9d\x3a\x54\xf2\xe4\x7f\x2d\xf8\x2e\xca\xbc\x84\x53\x24\x4d\xde\x5f\x68\xb3\x3e\xbc\xa7\x3d\x85\xc3\x2c\x86\x52\xe4\x09\x5a\x4c\x78\x4f\xc6\x4b\xc3\x3b\x54\x99\x4b\xeb\xfa\xa1\xb3\xa7\xc6\xa0\xe7\xfb\x9e\x1a\xa3\x3a\x39\xe7\x77\x71\xb6\x2b\xd4\xf0\x5b\x65\xff\x75\x2c\xd3\x7e\x4f\xb7\x39\xff\x12\xa5\x45\xde\x13\x5a\xde\xf4\x49\xb7\x7c\x37\x60\xf0\xa7\x23\x39\xa2\xdc\x9f\x06\xcc\x82\xbf\x65\xc9\xfd\x19\xfe\x3d\x0d\xca\x52\x5f\x54\x2a\x2b\x9c\xd0\x10\x0b\x27\x01\xde\x65\x39\x0d\x98\x01\x6b\xc3\x9f\x06\xa8\x27\xa3\x8d\x65\xc3\x8c\xec\x95\x51\xcf\x27\xfb\xd2\x22\x32\xd4\x48\x65\x04\x2e\xfc\x54\xd5\x34\x25\x0b\xd5\xbb\xa2\xbe\xd8\xd9\x77\x02\xe8\xf8\x2c\x60\x23\x0b\x7e\x16\xd0\x65\x78\x3c\x0b\xca\xd2\x25\xde\xe4\xb9\x65\xf0\x3b\x9e\xca\xca\xa6\xe8\x96\x13\x45\xd5\x1b\x81\xb2\xa7\xb2\xec\x79\x30\xe2\xfe\xc5\x41\x06\x0f\x7e\x4c\xb3\xdb\xe2\xbe\xb2\x60\xea\x5b\x3b\x43\x68\xde\x34\x01\x3a\x15\xae\xfd\xc5\x46\x18\x28\x4d\x29\xd4\x21\x23\xdd\xe1\x80\x16\x90\x93\xb5\x41\xee\xa5\xa6\xf9\xa3\xcc\x8e\x81\x15\x05\x0b\xad\x14\xf6\x1a\xf9\x92\x36\x41\x3f\x88\x51\xeb\x2b\xc6\x82\x8c\xab\x67\x79\xc9\xa8\x03\xf5\x3a\x0d\x0c\x05\x8c\x78\x12\xb0\x54\x4b\xd1\x67\x6b\x4a\xc8\x1e\x10\x5a\xa2\xd0\xfb\x57\x7f\xe9\xf1\xe3\xe8\x8a\x1c\x7b\x15\x57\x4a\x4e\xb4\x38\x70\xd3\x18\x3a\xfd\x8e\xb6\xb5\xa6\x01\xe8\x60\xbf\x4e\x4c\x89\x1b\xa5\x45\xda\x61\xbf\x7e\x56\x7a\xf7\xda\x9b\x04\x6f\xb7\xd5\xed\x90\xac\x0f\xb5\xe1\x1c\x1f\x19\xd2\xf8\xa8\x7c\x46\x50\xac\xf7\xb3\xc5\x69\xef\x3d\xeb\x72\x12\xfa\x28\xdb\xb2\x11\x35\x69\x2f\x65\xf9\x1b\x24\xad\x5d\x29\xab\x12\xfc\x1b\x04\x97\x1b\xfa\x6d\x76\xd6\x6f\xcb\xb8\xbb\x4e\x56\x97\xac\x22\x39\x07\xa2\x64\xe5\x9a\x97\x92\x34\x01\xcf\x16\x70\x04\x84\x7e\x7b\x43\x00\x49\x36\x02\xe2\x6e\xc8\xa4\x05\x30\xa4\xa9\x57\xe5\x58\x64\x43\x7c\xfd\xa0\x5e\x53\xd3\x74\x18\x63\x99\x16\x18\xd4\x33\x9e\x37\x1f\xf5\x0f\x2f\xc7\xae\x67\x3c\xd3\xbf\x49\xa4\x6a\x30\x52\x36\xf5\x2f\x95\xc5\x02\x8a\x91\xd5\xb8\xf4\x4f\x20\x8a\x68\xd9\x44\xba\x95\x96\xb2\x04\xee\x77\xa8\x07\xcd\x6a\x7c\xad\xea\x1e\xb9\x58\xfb\xc8\x18\x1b\x88\xc1\x5d\x8a\x53\x79\xeb\x54\x81\x52\x91\xc0\x20\x9f\xd7\x60\x3e\x0d\x99\x91\x84\x85\xd0\xd3\xc7\x33\x42\x0b\x66\x28\xdb\x42\xec\x46\x05\x5d\xd8\xf5\x72\x05\x9f\x1e\x9f\xf2\xe1\x50\x3f\x53\x68\x38\x0f\x3d\x59\xca\x7e\xb4\x2c\xa1\x59\x3c\x64\x2c\x5c\x18\xda\xae\x67\xf4\x6c\x04\x9b\xf6\xe1\xe4\x8a\x15\xd2\xb1\xa2\x6f\xc1\xd0\x5b\x36\x5c\x9a\xe6\xb0\xa0\x77\x6c\xe8\xc2\xfe\xbd\xc1\x6d\x3a\x56\x3c\xc5\xcd\x5c\x3e\xac\x98\x98\xaf\xd8\xca\xbf\x91\xf2\xef\x62\xb1\x3a\xbe\x02\xaf\x3c\x18\xf8\xaa\xcb\x16\x0f\xdd\xf9\x9a\xdd\x30\x23\x4b\x13\xf4\x1e\xe4\xa6\x39\x5c\x9b\x66\x6b\x34\xfb\x9a\x02\xc4\x2b\x6b\xcd\xfc\x70\xb1\xd1\x36\x7d\x6f\x63\x03\xf4\xf1\x39\xa0\xa1\x69\xde\x2a\xcd\x2c\xb3\x22\x66\x25\xcc\xda\x31\x6b\xcb\xac\x15\xdb\x10\xff\x21\x28\x4b\x6b\xe5\x3f\x04\xec\x69\x4f\x88\xbf\x52\xec\xd8\xd7\x6f\x20\x7d\xab\xbf\xcb\x0c\x3c\xc0\x50\x59\x40\x0e\xd1\x8c\x26\xf1\xdd\x80\xc0\xcf\x24\xa0\x2b\xe0\x93\x37\x9a\x29\x9a\x1f\x05\xf3\x15\x1b\x8d\x80\x7d\x36\x4d\x80\x4a\x59\x5a\x77\x2c\x62\x0e\x29\xcb\xb5\xbd\xcd\xb6\x16\x41\x38\xb5\x01\x61\x9a\xa3\xd1\x9d\x69\xae\xf0\xa4\xf9\xb4\xf3\x79\xc0\xfc\x8f\x34\xa2\x77\x81\x0c\xe6\xb4\x6f\x99\x45\x41\x7d\xfa\xa0\xc4\x1f\x34\x28\x8a\x7a\xfc\x3b\x29\x8e\xb0\x3e\x37\x0c\xd8\x24\x3e\x31\xdd\x43\x9c\xee\x61\x6b\xba\xcb\x72\x38\x1a\xdd\x95\x25\x8e\x42\x76\x7f\xf5\x3b\xba\x0e\xb0\xb9\x0b\x08\x5d\xa1\xe3\x3d\x99\xd7\x06\x0f\x77\x63\x96\x11\x29\xd4\xb9\xfb\x5f\x39\x63\xcc\x31\xcd\xbb\x93\xfc\x25\x73\xf6\xfb\x9e\x5d\xb7\xd1\x60\x20\x2f\x8c\x9c\x5a\x81\xa0\xc9\xed\x82\x0b\xc9\x0c\x15\x7e\x67\x60\x3a\x0f\x61\xec\x52\xa5\x58\xe7\xd1\x40\x56\x20\xf9\xfc\x3a\xc0\x97\xff\x10\x2c\x80\x71\xf4\xb2\xea\x40\xe7\x2e\xac\x94\xf9\x9c\x72\x6a\x18\x54\x04\x54\x6f\xab\x1b\x74\xb1\x6b\xd6\xb5\x48\xda\x81\xc8\x74\xe7\x18\x38\x86\xe1\x98\x0e\xcc\x0e\xb8\x9f\xb3\x9f\x2c\x4e\x63\x3f\x0c\x48\xc0\x86\x56\xea\xa3\x4f\x48\x88\xf1\x6d\xfa\x76\x54\xa8\xc8\xc1\x00\x70\x5e\x06\x9c\xa1\x04\x8d\xf7\x94\x66\xc2\x4b\x3a\x32\x46\xb9\x81\xfa\x01\x55\x97\x1c\x17\x87\x46\x54\x8d\x22\x07\xc0\xd1\x19\x03\xd0\xb4\xac\x19\x47\x4c\x43\x96\x57\xc2\x81\x8c\xfa\x01\x91\x01\x63\x35\xeb\x32\x2b\x66\xa1\x5f\x04\x92\x4b\x29\x60\x40\x02\x7e\x62\xd2\x19\x0e\xcd\x68\xdc\xec\xc5\xc8\xcf\xd0\x1c\x68\x28\x46\x00\xa4\x29\xa1\x98\x88\xaf\xc3\x54\x62\xf5\x7e\x4f\x08\x5d\x87\xc5\xc1\x30\x8f\x5a\xc5\x28\xfb\x4e\xed\xc0\x0e\x55\x54\x07\xf6\x63\xf5\xf0\x03\x56\x88\x1e\x56\x6d\x09\xfd\xb0\x53\x96\x80\x48\xcd\x0e\xc7\x61\x87\xc3\xc6\x92\x30\xbd\x3d\xd6\xd0\x7f\x29\xbe\x11\x99\x83\x63\xa8\x8b\x15\x20\xe2\xd2\xc3\x8e\x75\xf6\x85\x03\x3b\xa4\x79\x94\x61\x7c\x73\x76\xb3\x10\x36\xd6\xd4\xb5\x2b\xbc\xdf\x24\x1e\x7c\x80\x0e\x74\xbf\xc9\x74\xb5\x13\x58\x29\x4b\x3b\x28\x2f\x6d\x7e\x1c\x54\x11\xd6\x23\xc7\xbd\x7a\xff\x71\x1d\xc3\xa0\xdb\x82\x53\xd2\x35\x06\x23\x8d\xdc\x14\x60\x25\xc2\xbc\xe5\x0f\x5e\x4b\x92\xb9\x9d\x64\xcb\x50\x8a\x71\x9b\x67\x58\x91\xeb\x96\xf6\xba\x8a\xbc\x27\xc3\xe7\x45\x7b\x9a\x67\x59\xaf\x7f\x39\x67\x8c\xad\xf7\x14\x9d\x70\x8e\x7d\x8f\xec\x70\x09\xc7\x3e\x25\xad\x36\x4d\x6b\x18\x41\x93\x5f\xa2\xe7\x4e\xd9\x3c\x23\xbd\x1d\x0e\x81\x22\xa0\x78\x9a\xdb\xeb\x9c\xaf\xca\xf2\x5f\xdc\x16\xe1\x0d\x1a\xb6\xa1\x73\x33\x2a\x2e\xbc\x1b\x6e\x0d\x5d\x42\x2b\x45\x06\xbe\x3b\x84\x2a\x35\x57\x2f\x5f\xfe\x49\x53\x32\xcd\x82\x0d\x7a\xc1\xed\xca\xe9\xa8\x34\xa4\x56\x4a\xfb\x54\xa9\xfa\xf6\xb4\x7a\xea\xe7\xd9\x75\x03\x32\xfd\xad\xae\x00\x07\x45\x95\xd9\x79\x53\x2b\xdf\x6c\xc5\x43\xab\xca\xdf\x24\x04\x88\x57\x56\x23\x8e\x78\x71\xd6\xe7\x8a\x2a\xfb\xd0\xd3\xdb\x61\xbd\x3b\xd8\xd8\x3a\xea\x7e\xd7\x3c\x8c\x78\xde\x37\xb6\x67\x6a\xc9\xd5\x30\x25\x7b\x8a\x00\xec\xcb\xfc\x9f\x3d\x99\xa5\xa9\xde\xff\xe1\x34\x69\x06\x7f\x15\xd2\x68\x49\x62\x4f\xd1\xd3\xe4\xd0\x5d\xb7\x5b\xd5\xb1\x36\x4d\xd3\x80\x1a\x9a\xfa\x4d\x53\xdd\x71\x60\x09\xd6\x3d\xa1\x20\x07\x8c\xbe\xc7\x55\x99\xae\x6c\xb0\x0a\x20\xb0\xd1\xc9\x58\x05\x25\xdf\x09\x24\x9d\xeb\x66\xd0\xa4\xa0\xbe\x18\xbb\x98\x8b\xff\x7a\x90\xa7\x39\xfe\xf8\xe9\x0b\x67\x91\x8e\x84\x97\xca\xbc\x77\x3c\xed\xa9\xb1\x13\xb9\x70\x9e\x8e\xd8\x84\xf0\xae\x59\x02\x87\x1a\xb2\x28\xfa\x64\x05\xee\xe7\x2a\x48\x0e\x87\xd4\x76\x7a\xad\x7b\xfc\x52\x2c\x84\x97\xce\xc7\x63\xe0\x68\xe6\x55\x75\x79\xbb\xba\xdb\xdf\x5c\xdd\x7c\x34\xca\x5f\x88\x23\xf5\xec\xf7\xa4\xc6\xf9\x54\xac\x99\xb6\x02\x7e\xa5\x4f\x79\x18\xc5\x19\x06\x18\x02\x3a\x70\x93\xdd\xc3\xf3\x2a\x96\x41\x87\xb6\x61\x51\x7c\xcc\xf2\x08\x9e\xe3\x4d\x78\x2b\xe3\x11\x36\x0c\x96\x08\x18\x0a\x6b\x6b\xc7\xf0\xa7\x62\x77\xb3\x89\x05\xe4\xcf\x79\xc1\xc5\x61\xfe\xb5\xcc\x5f\x59\x46\xde\x72\x4b\xbf\x0c\xe0\x8e\xb7\x03\x1b\x3a\xb4\xe5\xa9\x61\x18\x73\xf1\x22\xc5\xd0\x78\xf9\x08\xa3\x14\x48\xb1\x70\x63\x5d\x52\xd7\xf4\xc0\xdb\x8e\x43\xc2\x8e\xe2\x9c\x66\xb0\x9b\xf0\x7b\x01\x1c\x56\x59\xe6\x34\x64\xa9\x69\xea\xd2\x37\xc6\x58\x4c\x0b\xf6\xd8\xe8\x4b\x84\x24\x46\x8b\xd6\xc9\x2d\xab\xc5\xb1\xe8\x00\x5d\x1d\x03\x84\xa6\x75\x0c\x6b\x79\xa4\x2a\xd1\x6c\x5e\x9f\x3a\x05\x02\x47\x5c\xa0\x86\x69\x79\xd8\x46\x4f\x23\xa6\xc9\x55\x2d\xb5\x76\xb1\x25\xf5\xfc\x44\xff\xe2\x95\x64\xdc\x85\x64\xdc\x45\xcd\xb8\x8b\x0e\xe3\x2e\xda\x8c\x3b\xcd\x4c\x33\xfb\x84\x09\x34\x11\x55\xf8\x9e\x79\xe5\xba\x61\x25\x6c\xe7\xc7\xf2\xb0\xa5\x1f\x54\x18\x63\x45\xad\x07\xf3\x27\x01\x83\xb3\x18\x0c\x1e\x72\xb3\x15\xc5\xb4\xc3\x01\x36\x6c\x40\x3d\xdf\xaf\x5a\x26\xb6\x0d\x87\xde\x02\xb5\x6e\xe5\xdb\x70\xa2\x28\x2c\xc7\x40\x55\x7e\x16\xa8\x7c\x3d\x9b\x0a\x5e\x20\xa1\x85\x0a\xe2\xba\x3c\x41\xe7\x79\xfd\x80\x16\xcc\xc1\xfb\x10\xea\x80\x1f\xd2\x67\x5c\xd4\x81\x38\xac\x98\x71\xc5\xf8\xa6\xa6\x39\x4c\xad\x18\xeb\x29\x4b\x2b\xac\x44\xf9\x34\x41\x5d\x37\xbc\x14\x44\x8f\x6b\x51\x77\xe1\x51\xeb\x82\xc6\x1f\xe7\xa6\x39\x04\xf6\x1c\xaf\xe4\x79\xc4\x30\x49\x30\x65\xc3\x4c\xa6\x65\x90\x06\xf9\x49\xdb\x08\x5a\x39\x66\x77\xb0\x31\xa0\x11\xfc\x59\xb3\xb0\x1a\xcc\x0d\x8b\xdb\x21\xd8\xda\x44\xc9\xc1\x45\x56\x47\x0b\xc8\x30\x5a\x80\x64\xac\xfd\x3c\xa0\xa9\x26\x78\xb7\x44\x59\x1a\xcf\x0d\x5a\x34\x5a\x7f\xbf\x08\xbc\x02\x8f\x0a\x1b\x36\xe4\x65\x39\x8c\x4d\x53\x2c\x6e\xbc\x8f\xdc\xba\xa1\x2b\xca\xb1\x87\xf4\x8a\xa5\x8b\xac\x2c\xad\x78\xc1\xbd\x75\x59\xe6\x18\x43\x24\xf4\x36\xe8\x02\x60\x9a\xa9\xb5\xa1\x57\x32\x67\x8e\x47\xe0\x84\x7d\xe4\xd6\x15\x8d\x08\xcd\xad\x84\xc2\xfc\xc0\xb7\x1d\x4b\xaa\x7e\xee\xf0\x30\xb2\x65\x89\xbf\xc3\x39\xb9\xf2\x23\x7f\x17\xc0\x79\x64\xa3\x9e\xb6\x44\x33\x3e\xcc\xca\x52\xc6\x36\x53\x33\x9f\x00\x88\x76\xb5\xcd\x44\x5d\xdd\x95\xac\x2e\x91\xb3\xb8\xf1\x77\x50\xcf\x3c\x93\x41\x8c\xd1\xe2\x2c\xa1\x4b\x82\xf6\xdd\xc7\x4b\x5b\x09\xcb\x16\x3f\x59\x31\xdd\x12\x6f\x05\x49\x2f\xc7\xae\x69\x5a\xb1\x9f\x40\xff\x42\xf8\xd9\x02\x95\xc7\x55\x7f\x85\x23\xc5\x28\xcd\x57\x95\xfa\x67\x4d\xab\xaa\x89\x77\x45\x68\xb6\x50\x1d\x08\xe9\x15\x5d\x12\xaf\x72\xc7\x09\xe9\x55\xdb\x6a\xfd\xe7\x36\x31\x06\x22\xd6\x8e\xd7\x90\xdb\x95\xae\xc3\x47\xf1\x32\xb0\x06\x80\xfb\x21\x1c\xbb\xeb\x4f\xc6\xc0\x08\xe8\x92\x85\x0b\xd7\x73\xe8\xee\x88\x4b\xa2\x74\xcd\xdf\x13\x5a\x50\x60\x6f\xb7\xc7\xb2\xfd\x64\x09\x2a\x4f\x4b\x55\xd6\x15\xf3\xf5\x63\x34\xad\x65\xa1\xc3\x10\x16\x40\x59\xa6\x43\xc6\x12\x58\x59\x96\x60\x29\x69\x50\x6d\xa7\xb2\x7b\x5b\xf5\xd0\x04\x20\x92\x07\xc9\x6c\x1f\xcc\x97\x2f\xe2\xf9\x52\x05\xce\x69\x8f\x77\xa9\xc6\x4b\x56\xcc\x7f\xe0\xd6\x2b\x6e\xad\x08\x4d\x49\xd0\xd0\x3c\x28\x20\x65\xe8\x5a\x76\x05\x6c\xa9\x81\x83\x54\xa5\xe7\x26\xc4\x7f\x08\x24\xb4\x33\x36\x1a\x2d\xe7\xd9\x8b\x18\xd6\xb1\xde\x64\xa6\xea\xc0\x08\x19\x55\x67\x1f\xb9\xb5\x7c\xe9\x9a\xa6\xec\x00\x3e\xc2\x2e\x5a\x4b\x34\x97\x63\x97\x54\x51\x79\x55\x64\x41\x63\x20\x35\x1b\xcb\xf1\x44\xd6\xb8\x30\x9e\x1b\xf2\x82\x9f\x03\xa7\xa9\x94\x2e\x5f\x64\xa6\xf9\x73\x53\xe5\x92\x66\x40\x50\xa0\x7b\x90\x5a\x0b\x49\xeb\x54\xdc\xc4\xc9\x7e\x55\xf1\x48\x95\xde\x11\x7b\x58\xbd\xdc\xea\xb1\x11\x2b\x38\x15\x0d\x73\xd2\x12\xa6\xa0\xf8\xfe\x96\xd3\x90\x15\xb0\xd7\xfc\xc2\xd3\xf8\xb1\xeb\x60\xab\xc4\x3f\x7a\x7c\x09\xf6\x5d\xa5\x0b\x80\x1d\xa5\x36\x03\x5d\x38\xde\xae\xd6\xb1\x22\xeb\x52\x30\x4e\x97\xb8\x1c\xa1\x03\x95\xf2\x6c\x5e\x28\xc1\x68\x88\xbe\x17\xa6\x39\xb4\x32\xf6\x37\xe9\x38\x59\x10\x8c\x76\x64\x9a\x56\xc1\x8a\x0a\x00\xb0\x06\xd4\x42\x2b\xcb\x82\xd0\xa5\x22\xe5\xcc\x0f\x08\xa1\x29\x1b\xba\xd4\xca\xd8\x57\x75\x0d\x18\x3a\x3c\xab\x7c\xc6\xa8\x0c\x22\x68\xd5\x21\xa2\x31\x02\x1f\x56\xaa\x4d\xca\xc0\x20\x18\xe3\xa9\x6a\xb4\x16\xab\x4b\x83\x63\xe8\x37\x81\x7e\xfe\xc5\x0f\x03\xad\xab\x89\x1f\x06\x72\x00\xf0\x04\x73\x55\x96\x9f\x6f\x3c\xa4\x0a\x3b\xbd\xec\x48\xa3\x68\x0a\x93\xca\x28\x3a\xfb\x1a\xc0\x95\x1f\xaf\x57\x2c\x1a\x95\x19\xf1\xbe\xb3\x38\x5d\x92\x1a\xf4\x7b\xa8\x51\x9a\x17\xc5\xc9\x91\xe9\x84\x49\x89\xe5\x8e\xfa\x5e\x9b\xcc\x61\x21\x67\x46\x2a\x77\xd0\x6b\x91\xa6\xcd\xb6\x93\x22\x05\x2d\xd8\xcf\xdc\x12\x7e\x1a\xe0\xda\x5a\x64\xd5\x5e\xea\xc5\xd5\xd3\xdc\x2a\xd8\x7b\x8b\xf7\xc5\x8e\x67\xcd\xe5\x4d\x5a\xf8\x9b\x97\x0e\x8d\x59\x77\xc7\xa4\x3b\x59\x66\x4b\xd7\x74\x43\xaf\x98\x43\x6f\x99\xe1\x18\xf4\x8e\xc5\xa6\xe9\x07\xf4\x01\xfa\xff\x8a\x25\xf4\x11\x76\xce\xcc\x34\x1b\xcb\x70\x0b\xb6\xbf\x1d\xa1\x3f\xb3\x8f\x23\x26\x8f\x5c\xaf\x16\xae\xd7\x0a\x4a\x55\x96\xb6\x4b\xbf\x63\x8f\xd5\xe0\x70\xb7\x90\x51\xc2\xa4\x85\x54\x58\x96\x3b\x32\xbf\x1d\x32\xf6\x5d\x15\xc5\xd4\xda\xb2\x47\xff\x36\x20\xf3\xdb\xd1\x48\x6e\x54\xa6\xa9\x4c\x08\xd6\xcc\xa1\x61\x59\x6e\x0f\xcc\xaa\xa2\xb2\xb4\x56\xd6\x16\xe6\x79\x78\x43\xe6\x1b\xc6\xfd\x75\x65\x0b\xbf\xb1\xb6\x50\x28\xa2\x05\x21\x4f\x0a\xad\xb7\xea\x7a\x82\x3d\x74\xe6\x23\xfb\x99\xec\x53\xd3\xb4\xac\x2d\x1b\x6e\xa0\x31\xd3\xbc\x1a\x8f\x29\x90\x83\x2a\x3b\xd9\xc7\x2b\xeb\x6a\xc4\x6e\x69\x6a\x9a\xd0\xdd\xab\xba\x47\xf3\x0d\x13\xaa\xb5\x8d\x75\x47\x1f\x00\xb0\xda\x7e\x7b\xf5\xd2\x91\xa2\xec\x5b\x98\xd8\x3b\xff\x36\x28\xcb\x07\xfc\x6b\xc1\x0f\xfb\x41\x5a\xac\x2c\x09\x99\x3f\xc0\x06\xf8\x40\xf6\xd5\xae\xb6\xa4\x0f\x84\xee\x4c\x13\x18\x89\x87\x7a\x16\x4d\xf3\xaa\x8e\x70\x04\x14\xb3\x65\xca\x61\x2d\x1b\x53\x09\x39\x34\x9a\xb0\x57\x84\xde\xed\x1b\xcf\x8c\x84\x5b\x31\xf1\xe2\xbd\x15\x03\x35\x24\xb5\xf1\x00\xe3\xb5\x15\xd0\x9e\x2e\x1b\xb3\x02\x76\x28\x26\x95\xec\x62\x1d\x08\xa7\x37\x94\x31\x37\x4d\x4e\x23\x36\xcc\x4c\x33\xb4\x38\x5b\xd5\xed\x00\x03\x82\xdc\x0e\xc3\xeb\x3f\xd0\x31\x38\xaa\x56\x25\xee\x3e\x4b\x16\x01\xab\x1d\x69\x7a\xdf\xda\xb5\xf7\xe5\xc4\x34\x8d\xaf\xdf\x40\x43\x56\xc2\x96\xbe\x13\x10\x75\xee\xbf\xec\x78\x5f\xde\x00\xb6\xd6\x5b\xd0\x12\x75\xf4\xb8\xeb\x49\x0f\x71\xc1\xac\xda\xed\xc3\x4a\xaa\xbd\x4c\x27\x59\x4a\x22\x2a\x48\xa5\xa5\x20\x4d\xf0\x9b\x15\x2a\xb1\x5b\x22\x3f\xda\xec\x27\xcb\x8a\x36\xc9\x33\x5e\x35\x38\xe4\x96\x62\xf6\x17\x5b\x0f\xb3\x51\xf9\x1e\x2f\x1c\x6f\x59\xc7\x77\x1a\x8f\x71\x95\x2c\xfd\x38\xa0\xfa\x46\x0a\x7c\x9f\x1c\x84\x3c\x54\x6d\x99\x1c\x83\x62\xb7\x32\xb6\xfd\xe4\x50\x2a\x4f\xe7\x65\xc5\xf2\xf4\x7b\x3c\x2b\xcf\xed\x65\xc5\x85\xc5\xd4\x25\x74\x68\x71\x96\xd5\x96\xb5\x77\x1c\x50\xb6\xeb\x64\x0e\xc8\x41\xd3\x4a\x5b\xa4\xa4\xa9\xab\xb2\x2c\x2c\x4e\x23\x42\xac\x0c\xed\xae\x68\x4a\x87\xa2\x2c\x3f\xe3\x76\x8d\x21\xc2\x74\xf3\x22\xf6\x50\x79\xf0\x1a\xa4\x32\x2e\x52\x46\xbd\xe8\xdd\xf4\x40\x0f\x4d\x94\xd8\x70\xb8\xa5\x2b\x8b\xd0\xb6\xa1\xe7\x31\xcf\x2e\xf7\x13\x76\xb3\x9f\x70\x6a\xee\xb5\xba\xaf\xcf\x73\x7d\xc6\xf7\x7f\x92\x96\xf6\x06\x35\xfe\x24\x45\x57\x8d\xd4\xb0\x23\xb3\x82\xfc\xa8\x4f\x2f\xcb\xad\x12\x61\x95\x28\x74\x5d\xf3\xf8\x76\x2d\xca\x8f\x71\x24\xd6\x06\x3d\x10\xb5\xc8\xcd\xad\xdf\x1f\x4c\x50\xa3\x56\x06\xb7\xcf\xbf\x0b\xd7\x9b\x28\xb7\xbd\xc6\xfc\xed\xd0\xa2\xbb\x77\x6c\x28\xab\x3b\x41\x87\x0e\x6d\x34\x6d\x63\x7e\x79\x69\x06\x06\x27\x34\x3e\x33\x70\x99\xb5\x19\xb9\x2a\xda\x3f\x50\xd3\xfc\xbc\xa8\xb0\x01\x46\xe5\x64\x89\x76\x56\xc7\xa7\x4e\xc5\xcd\xeb\xf4\xab\xb1\xcb\xaf\xba\xf6\xe6\xb0\x53\x32\x44\xb5\x3e\x07\x52\x82\xec\x8b\x60\xd1\x01\xb9\x87\x81\xdd\xfa\xcd\x08\x73\xcd\x8c\x30\xd7\xcd\x08\x09\xa1\x05\xdf\x5b\x29\x99\x3f\xe2\xfa\x67\xef\x31\x62\xe4\x36\x67\xef\x1b\x63\x30\x95\xe4\x1b\x9e\x21\x23\x50\x6e\x1b\x16\xf5\x51\xb7\xff\xab\x5e\xd8\x7b\x2d\x95\x3e\xca\x00\xc7\xef\x2b\x2b\x3b\xfa\x28\xfd\x75\xdf\x64\x4b\xf6\x5e\x3e\xd2\xc7\xc6\x26\xf4\x7d\xfd\x08\xed\xa2\x89\x63\x6d\x42\xfb\x5e\x25\xa0\x21\xe7\xfd\x41\x7c\x9c\x4e\x68\xbd\xda\x0e\x33\x9d\x03\x8f\xee\x0b\xa0\x6d\x97\x43\xdd\xc4\xbe\x16\x0b\x35\x49\x15\xaf\xf0\x88\x2e\x4c\x85\x95\xd6\x01\x12\x55\xfc\xbd\x7a\x67\xcc\xf7\x07\x41\xd6\x1a\x49\xa9\x1f\xf4\x88\xed\xbb\x8e\xfe\x5c\x46\x15\x4d\xab\x9a\x35\x83\xbc\x77\x15\xa4\x91\x0a\xb7\x28\x7d\x23\x3a\x7c\xdb\x09\xff\xfe\xdb\x2c\x87\x3a\x31\x6d\xa0\xbf\x3f\xb0\x93\x0f\x2f\x2c\x3f\x1c\x3f\x06\xfe\x87\xeb\x93\x6b\xe7\xa5\x87\x81\xd0\xc4\x75\x7e\x9d\x5e\xaf\x82\xe7\xc4\x6f\xbf\x5f\x9f\x2c\x5e\x5a\x0b\xef\xc5\xf5\xc9\xb5\xfb\xb2\x24\xcf\x4e\xe2\xa6\x57\xbf\x76\x6c\x74\x6e\x2d\x41\x16\x8f\xf6\x6d\xce\xb7\x6d\xd3\x22\x38\xa8\x56\x36\x22\x55\x60\x4a\x9a\x53\x34\xd9\x4d\xf7\x84\x78\xcd\x36\xdc\x5b\xbe\x7d\x72\xae\x0a\x1d\x86\x94\x11\x9f\x2e\xdd\x44\x85\x84\x53\x75\x55\xcd\x63\x75\x41\x8b\x8a\x16\x59\xbd\x1f\x89\xca\x24\x7c\x27\xd0\x34\x6b\x16\x67\x86\x97\x66\xc2\x42\x03\x2b\x62\x10\x2a\x85\x8f\xd5\xbe\x87\x36\x33\xfa\xe8\x90\x83\xe8\x18\x7c\xa3\x0d\xd3\xc2\xcf\x03\xcf\x0f\xbc\x76\x16\x8b\x53\x35\x26\xd1\x3b\xa6\x36\xa6\xc9\xa0\xc8\x5a\x10\x5f\xeb\x09\x4d\x35\x7b\x6c\xf6\x68\xde\x0a\x4f\x9c\xe1\x9b\x7e\x21\x9b\x66\xc8\x55\x1f\x27\x3b\x01\x9b\xf1\x52\xc6\xee\xed\x36\xea\xb4\xc2\x9c\xb9\x78\x91\xa3\xfc\x3a\x5e\x59\xcd\xba\xb7\x32\x5f\x04\x14\xc3\x56\x37\x42\x4e\x42\x6a\x73\xff\x76\x13\x7e\x40\xa8\x5e\x95\x04\x8e\xc5\x29\xd6\xa2\xf9\x5a\xbe\x74\x17\x3a\x89\xb2\x52\xe2\xa5\xb5\x59\x5f\x9f\x91\x5b\xbb\x9d\x5f\x55\xb0\x6a\x64\x30\x87\x2e\xc1\xd8\xb6\xbd\x9a\xaf\x4f\x16\x74\x08\x46\x96\xed\x53\xc6\x0d\x55\xce\x1e\xb3\x3a\xd3\x7c\x57\x33\x75\x00\x53\xaf\xee\x46\xe5\xf6\xbd\x97\x26\xed\xaf\xe9\x2f\x32\x2a\xd9\x75\xf1\xdc\x7a\xe1\x5f\x7f\xbc\xfe\x29\x18\xbd\x24\xfe\x87\x97\xc1\xf3\xf2\x4f\x5a\x60\xb2\x39\x46\xd4\xc4\xc0\xea\xfd\x68\x4c\x33\xdc\x6c\x5a\x33\x5b\xf3\xd8\xaf\xfb\x3a\xa9\xb8\xe0\x9c\x19\x2f\xa4\x44\xc5\x09\x4c\xd3\x78\x29\x9f\x9b\xb0\x5d\x41\x13\x75\xfd\x25\x9b\x2e\x7c\x29\xfc\x41\xe3\x85\xc0\xfb\xa5\x8e\xc4\x54\x96\xc3\xdc\x87\xcc\x95\x85\x34\x30\x78\xc2\x96\x11\xd4\x17\x18\x8b\x81\xa8\xa9\x26\xde\x41\x54\x6b\x51\x7f\x43\x17\x87\x2a\x9e\x93\x60\x42\xbf\x54\xec\x71\x01\x6b\xd5\x83\x7d\xa8\x09\x70\x4e\x1f\x81\x6d\x2c\x38\xf0\x20\x58\x92\x8a\xca\x9a\x0c\x17\x68\x4f\x94\xa9\x10\xe7\x95\xfe\x20\xe7\x28\x97\x86\x54\xdd\x10\xce\x82\x34\x51\xfd\x05\xb9\xc5\xb6\xfc\x3c\x20\x0b\xf5\x60\x09\xf4\x40\xc1\xa1\x28\xb3\x45\x21\xa3\xf8\x36\x13\x50\x31\xc0\x19\x0b\xbb\xee\xe0\xb9\x3f\x09\xa4\x21\x2c\x54\xe7\x04\x2c\xa3\xda\xea\x65\x2e\xa1\x5a\x05\xda\x55\x08\x8b\xba\x00\x6f\x17\x90\x2b\xd0\xbb\x05\x9c\x6b\xf6\x4f\x3b\xe7\x61\xf4\xb0\x50\xbf\x88\x8a\xd6\x23\x90\xc8\x3a\xe2\xaf\x25\xeb\x21\x7b\xa2\xc9\xb4\x00\xd9\xe8\x6b\xf6\x68\x85\x12\x4f\x7f\x92\x58\x2a\xf9\xf3\xa2\xdc\xe6\xfc\xce\x5a\x78\x7f\x4b\x45\x9c\x94\xe8\x55\x7c\x42\xdf\xb0\xa7\xea\x4e\x47\x75\xe5\x87\x80\xbc\x78\xeb\x02\xbf\x47\xad\x1a\x14\x6b\xdf\xbc\xf0\xe7\x66\xf3\xd5\x76\x7a\xb7\xb3\xd3\x37\x0a\xc1\x16\x21\x5c\x87\x45\x5f\xf0\xfb\x6a\x40\xba\x4c\x45\x5f\xea\x47\xe8\x9b\x8c\xa5\xe4\xcc\xf9\x8b\x74\xce\x0f\x68\x9c\x0c\x90\xef\xf3\xa0\x45\xe3\xf6\x74\x99\x64\x05\xd7\x83\xc9\xb7\xe3\x40\x2b\x2a\x5c\xd1\x64\x75\x55\x47\x0f\x41\x96\x5c\x0b\x2e\xe1\x9a\x74\x48\xa9\x41\xa5\x85\x68\xa8\xa9\x9f\x07\xf3\xd4\x34\x53\x28\xde\xf1\xa5\x42\x51\x6f\x63\x5e\xe0\xba\xa6\x69\x85\x8b\x50\x5a\xac\x28\x5b\xd4\xae\x9b\xfb\x91\x1d\x0c\x83\x34\x93\xa7\xb8\x56\x16\xb7\xc5\x64\x6d\xa2\x19\x37\x3a\xab\x16\xd1\x8e\x89\x17\xa3\xd5\x41\xc4\xef\x7b\xcd\x2f\x16\x7d\xd1\xa2\xd5\xb6\x0e\x10\xa1\x0a\xdb\x49\x1d\x01\x1a\x89\x73\x45\x57\x80\x68\x79\x8a\xa0\x20\xfd\x52\x0f\xad\x10\x3f\x72\xd2\xf3\x02\x4e\xe3\x80\x82\xaf\x92\xc4\xaa\x08\xb1\x37\x76\xf7\x34\x8c\x22\xaf\xd7\x3d\xec\xe0\x3e\x03\x6d\x68\xad\x4b\x16\x6e\xb9\xb0\x08\x45\xd4\x23\xb8\x63\x87\x51\xf4\xe7\xee\xe5\x0c\x7a\xa5\x61\x14\x59\x55\x54\xee\x4e\xd0\x7f\xaf\xf3\x5e\x21\x2c\x47\x6d\x78\x15\x2f\xf9\xa9\xc7\x4a\xa4\x32\xce\x38\x74\x31\xad\x7c\xc2\x74\xba\xa8\xdc\x91\xd4\x9a\xee\xeb\xe9\xbd\xc5\xa9\xae\x5f\x26\x75\x6e\x5c\xf9\xc7\x2c\xbb\xbb\xc5\x30\x62\x77\xda\xb5\xf2\x50\x99\x81\x02\xb4\x2c\x6c\xc9\x5e\xd2\x89\x63\x79\xbb\xd6\xc4\xaa\xee\x57\x49\x72\x74\x08\x3d\xd5\x7f\x2a\xfb\x91\x16\x3e\x3f\x66\xbd\x1d\x1c\x34\xd4\xf4\x1b\x40\xd5\xb5\x8f\x86\xa2\x85\x7c\xe9\x9d\x97\x6f\x2d\x4b\x9f\x64\x79\x01\x6e\x73\x8c\xc6\x1b\x3a\x6a\x5a\xdc\x5b\x5e\x3f\x75\x43\xe6\x8a\x58\x1f\x66\x3e\xe2\x08\xa0\x4a\x54\xbb\xea\xe2\x20\xc5\xb3\xe0\x88\x63\x08\xbe\xd9\x26\xa1\xe0\x06\x5a\x49\xb2\x3a\x5b\x59\x72\x52\x6f\xe3\x7e\x40\xb9\x1e\x57\x93\xec\xf7\xdd\xe8\xdd\x18\x4f\x9c\x07\x0d\xef\xa3\xe9\xca\xb4\x6b\x46\x44\xc3\x41\x1a\x08\xf8\x96\x21\xfc\x29\x41\xad\x72\x4a\x68\x6e\x9a\x87\x84\x27\x97\xfa\xe5\x6a\xbd\xe5\xa8\x2a\xd2\xc8\xf7\x4b\xa0\xa6\x6f\xd0\x30\xb7\x45\x09\x32\x42\x7f\x6a\x04\x59\x99\x9d\x73\xbc\xe9\xd9\xaa\x4a\x37\x04\x24\x43\xbb\x4e\xdc\x51\xff\xca\x4e\xfc\x0f\xad\x93\xd9\x48\xbf\x06\xe7\xfb\xd6\xf5\xbf\x75\xf2\xdf\x1b\xc7\x3f\x2d\xf5\x9f\x95\x26\x5d\x41\x04\x43\xec\x71\xd3\xbc\xb5\xd0\x2b\x38\xcf\x36\x71\xc1\xc9\x22\xab\xee\x61\xb0\xa3\x2c\xe5\xc8\x73\x85\x71\x02\x8c\x75\x9d\x57\xac\x79\xda\x64\x44\x70\x7a\xdd\xfb\x6e\x79\x25\x92\xcd\x49\x15\xbb\x0f\x5d\xfc\xbb\xb9\xc8\x7e\xff\x68\xbf\x0e\x93\xe4\x26\x5c\xfe\x52\xb4\x3c\xf4\x38\xeb\x23\xfb\x87\xa4\xac\xb9\x38\x5e\x51\x3d\xe5\x9b\x6b\xfd\x15\x25\xb2\xb4\x63\x83\x2c\xfc\x34\x60\xb8\x31\x53\x81\xb7\xbb\x35\x77\x68\xec\xa9\x72\x22\xad\x2d\x0e\xe4\x56\x8c\xca\x99\xb1\x4b\x97\xac\xc3\x0e\x64\x2c\x43\x27\xef\x74\x89\x9e\xfb\x6c\xe8\xcc\xc3\xda\xfa\x97\x8d\x5d\xb5\x1f\x87\x95\x9c\x77\x3e\x1a\x15\x2f\x6a\x7b\x67\x82\x26\xec\xb1\x5f\xd4\x2a\x53\xdf\x09\x68\x2a\x39\x4d\x6e\x17\x22\xdb\x7e\x97\x7e\x19\x26\x05\x47\x25\x5c\xdc\xdc\x29\x33\x74\xc9\x9c\xdb\x1b\xbe\xc9\xf2\x07\xd4\x72\x0d\x81\x15\x64\x43\x97\x66\xa6\x69\xc5\x2c\x5d\xf8\x81\x87\x77\x36\x24\xec\xa9\xb5\x71\x35\x97\xd6\x29\xbb\x0c\xd1\xaa\x7b\xec\xd2\xb0\xda\xcb\x1b\xeb\xd9\x01\x1c\xac\x9e\x14\x74\x53\xda\x89\x2a\x77\x6b\xe5\x64\x51\x69\x17\x4c\x33\xb1\xd7\x61\x81\x57\xa5\xc4\x95\xad\x96\x97\x9b\x66\x5e\x9f\x8d\x35\xc6\xe6\xa3\x95\x13\xd3\x14\x56\x8e\x6a\x79\xab\xb9\xa2\x87\xaa\xae\x2d\xab\xf5\xb1\xa7\x32\x94\x63\xcf\x48\x54\xbf\xea\xc2\x07\x31\xfd\x2b\xa1\xcd\xdc\x4a\xd9\xa3\xad\xae\x93\xb0\x84\xbc\xd5\xe0\xe5\xd8\x9d\x93\xea\x4a\x1c\x2b\xa5\x2e\xa1\xe9\x0b\x56\x98\x66\x31\x1e\xef\xeb\xc6\xbb\x5c\x64\xcd\x99\x34\xf5\x71\x1a\x23\xe7\x14\x6b\xce\xd0\x1d\xf3\xcf\x16\xf0\x51\x67\xaa\xaa\x57\xc2\xc2\x9e\x9c\x19\x0b\xa5\x82\x10\x3d\x55\x5b\xb9\x7b\x66\x75\x18\xef\x69\x92\xe9\x1c\x45\xb7\xa2\xb4\x2c\x45\x59\x5a\xb2\xbe\xaa\x79\x28\xd2\x5b\xdd\x30\x43\x4b\x47\xfe\x53\x2c\x5a\xb7\x98\x34\x7b\x53\x86\xe8\xe7\x73\x5a\xe9\x69\x94\xf2\x73\x51\xd9\x1e\x13\x2f\x0d\x1a\x9c\xa2\xa2\x2c\xb5\x39\x85\xba\x7b\xfa\x9a\xd8\x55\xa3\xdd\xab\x9b\xb4\x72\xbd\xfd\xcd\xf7\x35\x31\x48\xf4\xdb\x71\xde\xf0\x15\xcf\xf3\x5e\x6b\x62\xdf\x37\xd2\x4c\xc4\xab\x07\x03\x36\xd9\xec\x36\xe7\x45\x61\x50\x8d\x28\x59\x86\x5c\x68\x06\x39\x92\x3a\x09\xa8\x6f\xe4\xbc\xc8\x92\x3b\x6e\x50\x03\xe8\x66\xa7\x02\x20\x10\x83\xfe\x5a\xda\x9f\x1c\x5a\x55\x14\x19\xb2\x56\x8c\x9e\x4b\x0d\x20\xc2\xbf\xb7\x52\x97\xaa\x7a\xa0\xd2\x80\xe6\xcc\xd8\xf2\x34\x42\x26\x22\x63\x4f\x85\x08\x45\xdf\x24\xe4\x7b\x1a\x26\x1f\xc3\x87\xa2\x0f\x7f\xe5\xe6\xd0\xcc\x8b\xdc\x24\x0e\xe6\x09\x09\x7f\xaf\xcf\x06\x6e\x22\xca\x46\x04\x78\xa0\x78\xdb\xea\x83\x3c\x67\xd5\xf5\x35\x04\xbe\x9a\x48\x3d\xb4\x65\x4d\x9a\x44\xeb\x06\xb1\x7a\xeb\xbf\xb5\xb8\x9f\xfb\xb3\x00\xc9\xaa\x7c\x9a\xc7\x3e\x9c\xe8\x83\xd6\x01\x4f\x36\x9a\x61\xf8\xc3\xbe\x7b\xc3\xe6\xb8\x03\x6a\x7b\x65\xfd\x88\x67\x06\x89\x3a\x78\xb2\x02\x74\x52\x1b\x28\x1c\xaa\x71\x42\xab\x8d\xd4\x96\x73\x41\xbc\xd4\xcf\x7d\x27\x18\x19\x80\xe7\x46\x20\x1b\xcb\xf0\x12\x9c\xa6\x49\x19\x66\x93\x72\xa6\xc4\xf9\x4d\x83\x7b\x0a\x10\xd4\x17\xa5\xe6\xf5\xe7\x34\x3c\x42\xd8\xc4\xf3\xee\x7a\x85\xc8\xdc\x85\xbc\x44\x4b\xbb\xc4\x8b\x26\xdd\x4b\xc0\x52\x9a\xcc\xe5\xf5\xed\x2f\x62\x42\x6a\xd3\x1f\x09\xa5\x82\x2e\x89\x14\x3c\xd7\x9d\xeb\xbf\x60\xf4\xfd\x5a\x9a\xfc\x0f\x0a\x9e\xac\xc6\x08\x96\x9d\x90\xd7\x88\x26\x2c\x35\x4d\xeb\xf0\xe6\xaf\xb4\xff\x0a\xc2\x14\xc3\xd3\x01\x00\xe8\xad\x95\x90\x45\xb6\x48\xaa\x4b\x83\x42\x2b\xa6\x82\x7e\x4f\x33\xa2\x1e\xff\x0e\x1c\x9a\x67\xc5\xa3\x11\xfd\x74\xa6\x3a\x55\xa8\x19\x84\x89\x21\x50\x36\x1f\x32\xf6\x3d\xee\x93\x8a\x71\x59\x32\x3f\x0d\x08\xb5\xb2\xb2\x14\xd5\xfc\x62\x6e\x09\x8c\xfd\x9e\xee\x58\xb6\x48\x74\x8c\x06\x6e\x2b\xa9\x6f\xdb\x47\x9c\xad\x70\xd9\xe6\xf7\x4b\x8e\x9e\x09\x5f\x65\xd9\x2f\x70\xd6\xee\xff\x62\xa5\x74\x67\x17\xc0\x23\xbe\xcf\xc3\x25\x27\x94\x8f\xdc\x97\x0c\xf6\x12\xe8\xe0\xdf\x7b\x3a\x28\x14\xb2\x21\x29\x55\x5d\x9b\xf3\xc5\xce\x22\x9e\xa5\xb5\x72\xcb\x05\xb2\x9e\xb2\x79\x4b\x6f\x84\x1d\xc9\x66\xa1\xf2\xaf\xe0\xe2\x7d\xbc\xe1\xd9\x4e\x58\x3b\xa8\xfb\x33\xcb\x54\xf8\x4e\xe0\x4f\x03\x3c\xd7\x86\x96\x43\x61\xf6\x32\xb2\xc8\xbc\xef\x69\xda\x82\x39\x15\xbe\x7b\x90\x13\x16\x9c\xf7\x3d\x7e\x9c\x1c\x7c\xcc\xc9\x22\xf7\xfe\x8e\xab\x45\x5f\x23\xea\xf1\xd8\x75\x57\x43\x06\x3b\xb8\xda\x24\x38\xcd\xa4\x07\x59\x7c\xc8\x52\x8a\x2e\x17\x09\xab\x22\x64\xa9\x3f\x01\xd6\x30\xf5\x4f\x83\x79\xe6\x03\xe7\x16\xb0\x10\xfa\x45\x0b\xd3\xc4\x87\xb6\x7f\x00\x2b\xf6\xd0\xfd\xe9\x98\x07\xfe\x24\xa8\xe2\x80\x55\x29\x53\x3d\xc5\xc1\x1c\xb0\x33\xd3\x0a\x6c\xf0\x42\xa8\xac\x36\x85\x04\xd8\x06\x09\x8d\x7d\xe0\x1b\x03\xd6\x43\xa6\xf1\x4b\x8b\xc2\x00\xc3\xa9\x24\x7f\x5e\xff\xde\xda\x2e\xc4\xc2\x7a\x2f\x46\x07\x82\x1a\xb8\x31\xa1\xd2\x1d\x1c\x56\x54\x4c\x63\x42\xe3\x3d\xfd\xb8\xe6\x7d\x9e\x20\x07\xd7\x03\xa6\x4c\xd0\x9c\x55\xd7\xe3\xd1\x8c\xa9\x6b\x2d\xb5\xce\xc4\x1a\xe6\x59\x84\x86\x7d\x57\xbb\xea\xb8\x95\xc3\xc1\x4f\xd2\x50\x78\xea\x36\xf9\xd2\x5d\x1c\xb4\xe1\xa5\x74\x3c\x16\xc0\xa7\x6a\x4b\x18\x4f\x74\xfb\x3d\x90\x3b\xf1\x82\xc1\x61\x0e\x0e\x4e\xd5\x86\x07\x6c\x71\x95\x9b\xc6\x6a\x75\xd1\xa1\x20\xb4\xde\x53\x01\xc2\x36\x6e\xaa\x16\x29\xcb\x5b\x2b\xf3\xd3\xc0\x34\xe1\xaf\x3c\x38\xd5\x0a\xe6\x58\xee\x81\x2a\x9e\x09\x1a\x74\xfd\x13\x73\x53\x68\xa6\xae\xbd\x16\x6c\xc6\x1a\x62\x2b\xcd\xc0\xd7\xec\xe4\x83\xf5\xf6\x2e\x4c\xca\xaf\x53\xc1\xf3\x34\x4c\xca\xef\xc3\xf4\x96\x97\xf5\x55\xd8\xa5\x8c\xf7\x52\xa2\x45\xfc\xdf\xbe\xff\x9a\x20\x2d\x7e\x76\x32\x3f\x46\x64\x3a\x1a\x4f\x0c\x26\x56\x64\x09\x07\x82\xab\x1e\xed\x8f\x61\x9e\x9a\x26\x37\xcd\xaf\x6b\x7f\xa0\x70\xc3\x49\x37\x4b\x75\xf7\x71\xdd\xd2\xa0\x6e\x09\xfd\xf7\xec\x0d\x2f\x8a\xf0\x96\x53\x2e\x09\x0e\x06\xfe\x79\x94\x42\xe8\xb7\x55\xce\xd6\xbc\xb7\x28\x8e\xbe\xb2\xaa\xd3\x2e\x21\x7b\x04\xcc\xdf\x5a\xd8\xd3\xec\x86\x5f\x59\xe4\x29\x54\x51\xe1\x3b\x11\x91\xdf\x7c\x77\xa5\x7c\x17\xdf\x65\x61\xc4\x23\x83\x7e\x05\x24\xae\x37\xaf\x0c\x86\xfc\x15\xa9\x7a\x6b\xc9\x7b\x61\xe5\x4b\x1f\xa6\xfe\x4d\xce\x35\x27\xb6\xa4\xff\x2d\x9d\x5e\x77\xc8\x78\x6b\x7a\xb5\x1c\x1b\x1e\xb6\xbe\xa6\xd1\xa5\x98\xff\xa7\x30\x16\x9e\x7a\x6e\x2d\x3a\x4b\x1a\x11\x2c\xc6\x63\x55\x33\xe6\x7c\xb4\x55\x05\xa4\x2c\xad\xfa\x85\x0d\x1d\x3a\x74\x86\xe8\xc7\xde\xca\xff\xd2\x29\xcb\xbf\xb5\x16\x46\x48\xfd\xc7\xa0\x12\x2f\x62\x3e\x1c\x14\x93\x63\xa3\xc6\x32\xdb\x6c\x13\x2e\xd0\x5e\x24\x94\x19\x7e\x80\x65\x50\x96\x08\x2f\x75\xe4\xd3\xbf\x98\xe6\xf0\x20\x0e\xb6\x1d\x65\x3f\x2c\xf3\x2c\x49\x16\xad\xc9\x56\x2d\x12\xcf\x0a\x7b\xa2\x59\x1f\x99\xbb\xc3\x8c\xd5\xc4\xc9\xe5\xf3\x65\xe7\x8e\xe2\xe6\xf6\x36\x49\xb9\x96\xcc\xa1\x49\xad\x1f\xa0\x3b\x65\xbf\x88\x16\x1b\x1a\xaf\x02\xa7\x58\x3c\xe9\x2f\x07\x71\x3a\x88\x01\xa4\x39\x51\x2e\x1d\x34\xf7\x97\x01\x1d\x3a\xd2\xdc\xaf\x72\x8c\xaf\x55\x2f\xf2\xb8\x3e\x74\x70\x23\x2c\x4b\xab\xc0\x6b\xdb\x76\xb0\x95\x2f\xac\xb4\x52\x5c\x67\x84\xa6\xd8\x36\xf1\xac\x1d\x4b\x69\x7a\xa0\xdd\xab\x8c\xf9\x34\x99\x78\x2a\x0d\x74\x94\x82\x60\xf9\x22\x41\x2b\xef\xd4\x12\xd0\xa1\x9c\x16\x8b\xcc\x53\x22\x1c\x4c\x59\xd2\xea\x93\xe6\x89\x11\x2f\x84\xb7\x5b\x54\xfd\x20\x5e\xb2\x80\x4c\x0e\x64\xf2\xc2\x3d\xfd\x91\x9d\x7c\x18\x6f\x8a\xf1\x09\xfd\x2f\x76\x32\x96\xf6\x05\x44\x17\x50\xfd\xa5\x2d\x28\xb7\x45\xf6\xb7\xed\xb6\xb6\x4c\xa8\xb3\xfd\x47\xcb\x58\xa8\x32\x46\xfb\x91\x1a\x9b\x62\xac\xc5\xe4\xf9\x2f\xfa\x17\x69\xce\xf0\x9f\x7d\x4b\xac\xad\x12\x97\x41\x9b\xf4\xf7\xe1\x48\x53\x98\x37\x5d\x7c\x86\xd4\x23\x2e\x6c\x75\x81\xaa\xb4\xcb\x80\xa7\xd1\x33\x7b\x17\x47\xa3\xd1\x1e\x7f\x99\x4b\x9f\xe9\xb7\x3e\x63\x00\xa5\x3e\xc1\xba\xaf\xd7\xd6\x89\xd1\xf2\xb4\xa7\xff\x29\xaf\x9f\xd6\xc3\x40\xb6\x4b\x30\xe1\x29\x91\xbe\x14\xa9\x36\xfe\xf5\x54\xcf\x47\x95\x1d\xb3\x38\xb8\x37\x9f\xa0\x64\x8b\x16\x5c\x1c\xbb\x38\x52\xaa\x9b\x70\x04\x55\xb4\xe3\x03\x49\x9b\x20\x99\xff\x1f\x96\x20\x01\x4b\x3b\xb7\x8d\xca\x2f\x39\x69\x5f\x8d\x99\x75\xaf\xae\xd6\x26\x5e\xa2\x3b\x06\x43\x69\xb5\xec\x75\x86\x0e\xc7\xb3\x56\x82\xec\xc1\x9e\x86\xcb\x25\x2f\x8a\x63\xf2\xf1\xa6\xfa\xb2\x14\x7d\x32\x5b\x61\x9a\x75\x9e\x74\x51\xeb\x62\xa0\x8b\x9e\x54\xcd\x14\xf2\x95\xa6\x84\x36\x6a\xd1\x45\xea\x09\x72\x28\x78\x6a\x29\xef\xba\xd3\xad\x2f\xee\x1c\x4f\x4a\xf5\x2b\xec\xa6\xcc\x12\x9d\xeb\x83\x05\x59\x08\x14\x4d\xff\x07\xf4\x85\xc1\x80\x49\x9c\x0e\xf2\x85\x2f\x02\x4f\xb4\x24\x99\x44\xb7\x8f\x96\x0c\x83\xba\x97\x25\xf7\x85\x9f\x06\xc1\xde\xd2\x41\x01\x34\x5e\xbb\xec\x56\xde\x25\xff\x29\xc4\x53\x6c\xa1\xaa\xb3\xf3\x15\x0e\x35\xeb\xb0\x78\x13\x8a\xf0\xb7\x63\x7d\x33\x76\xd3\x1c\x76\xfb\x23\x80\xcd\x82\xe2\xdf\xa0\xf3\xc3\x33\xfa\x0f\xf5\xcb\xb9\x32\x77\x78\x92\xb6\x0e\xcf\xaf\xf7\xe5\xb5\x5f\x3d\x07\xe4\x19\xde\xbb\x76\xe2\xbf\x1a\xff\x23\xd0\xa9\x4d\xca\x0f\xec\xea\x9a\x69\xef\x5e\xc3\x42\xf0\x96\x2a\x23\x0a\x45\x38\x36\x46\x42\x37\x81\x35\xc6\xcf\x4c\xa3\x1b\x49\xe0\x00\xab\xf0\xc6\xde\xee\x65\xfd\xf2\x9c\x97\xf6\xd0\x27\x43\xe4\x3b\xdc\x1a\xf1\x56\xfd\x30\x29\xb8\x21\x77\x5d\xcb\x00\xca\x2e\x83\x48\x61\xa8\x2c\xce\x18\x1b\xf1\x91\x61\x2c\x46\xdc\x6b\xac\x5f\x17\xdf\xfc\xf0\xdd\xb7\xd2\x8a\x01\x97\x0e\xd9\x5b\x69\x75\x9c\xcc\xc8\xd3\xfe\x1f\x1a\x12\x4b\x4f\xa9\x94\xb5\x03\x17\xa6\xfb\x47\x5d\x2d\x7e\x30\x95\x2a\xdb\x3f\x6c\xf5\xd1\xe2\xa4\x2c\xbf\xd1\xde\xf6\x34\x6a\x97\x69\x2d\xc3\x7f\xd8\x72\x99\x56\x7d\x50\x0b\xe7\x4d\xb7\x08\x79\xfa\x87\xe2\xaa\x54\xac\xc7\x9f\x3f\x55\xeb\x37\xdd\x5a\x7f\x3e\x5a\xed\x37\xad\x6a\x91\x4d\xd1\x0c\x01\x0e\x1a\xe9\x84\xe2\x97\x3a\x61\x1a\xc2\x81\x3a\xd6\xcc\x5a\x5b\x68\x24\xed\x61\x34\x75\x0f\x6a\x83\xfe\x81\xe4\x24\x96\x46\x60\xb1\xa6\x35\x1f\x7e\x23\xbf\x50\x43\x01\x11\x90\xa5\x30\x88\xba\xd5\x2a\xad\x5d\x0e\xe5\x6a\x0e\xf1\xa8\x00\xed\x58\x39\x83\x17\xc9\x57\x37\x21\xd0\x24\xb6\x4a\x05\xd5\x7f\x58\xb9\x12\xb1\x9e\xc2\x3e\xcf\xa5\x7f\x25\xde\xf8\x3c\xff\x06\x71\xa1\xdb\xac\x1e\xc1\x33\x53\x0f\x87\x22\x17\xa5\x6a\xc6\x63\xaf\xce\x62\x4b\xfc\xaa\x2e\xf7\x27\xc4\xfb\xf2\xe0\xd2\xfe\x2a\xc6\x46\xbc\xb2\x62\x8d\xe4\xd6\xe1\x10\x6b\x72\x60\xa5\x15\xcc\x28\x27\x64\x91\x7a\xfa\x17\x1c\x8a\x9e\x3c\xff\x7c\x87\x60\xc2\xe1\xf0\xaf\x22\xb4\xd2\xc3\xe3\x9f\xfc\x32\x74\x8e\xe1\x65\xe7\x7e\xff\xc3\xc6\x14\x6e\x35\x00\x50\x7a\x76\x85\x5e\xbf\xee\xf8\x8e\xf7\x6f\xb8\x00\x8f\xc6\xe4\x8a\xa1\x4f\xe8\xea\xde\x20\x23\x03\x0b\x19\x34\x67\xdf\xd4\x1b\x12\x4d\x4d\x13\x63\x3c\x1f\x5c\x22\x0f\xb9\xb4\xb5\xa0\x5b\xe7\xa4\x84\x78\x79\xa3\xb7\xc1\xbb\xf7\xf6\x34\xe2\x87\x9d\x22\x4f\x78\x61\x1e\xb4\x2f\xe3\x02\xb3\x47\x1b\x73\xc9\xc6\xf3\xfa\xc2\x2b\xbc\xfb\xaa\x76\x9d\x62\x8f\xf6\xcf\x98\x0d\x8e\x88\x85\x0c\x33\x6b\xc4\x69\x2d\x2f\x67\xea\xf2\x19\xad\x4c\x3e\x1e\xa3\x53\xae\x05\x6d\x31\x65\x08\x5b\x85\xf0\xd5\xcb\x12\xaa\x76\x9c\x18\x55\x5e\xb4\x56\x2c\xea\xf0\x7f\xb4\xd5\x68\xe4\xe2\x26\xe8\xdc\x3b\xcc\x4d\x13\x57\x2b\xea\x59\x50\x50\x61\x01\x85\x68\x7a\xda\x7f\x53\xb9\x02\x3c\xe6\x30\xe6\x35\xa1\x91\x53\x90\x22\xd1\xab\x01\x9d\xd2\x27\xa9\xc5\x39\x2e\x60\x3f\x90\xf3\x68\x84\xc8\x17\xf5\x2c\xa7\x81\xc4\xd1\x03\xca\xd4\x37\x4b\xb2\xa7\x93\x4a\x4d\xdd\x67\x0b\x64\x09\xc6\x29\x67\x00\x5e\x9a\x02\xb0\xbb\x48\xff\x22\x5d\x54\x93\x5b\x51\xb7\xfa\x72\x8c\x9a\x19\xf3\xfa\xf1\xbd\x8d\x1b\xf5\x22\x9b\xb7\xf1\x40\x2d\x06\xaa\xa6\x98\x4b\xfb\xfa\x6a\x62\x81\x87\x42\x7b\x9b\x66\xf2\xb4\xd5\xd3\x83\x9e\x9f\x59\x83\xfd\xd5\x2c\x13\x1e\xe6\xff\xf9\xc9\x9a\x14\xe2\x48\xb4\xa7\x7e\xd0\x2b\x18\xd4\xb9\x3a\x97\x66\x6d\xf1\x93\xdc\x1f\x68\xd8\x32\xd4\x2a\x74\x91\xdb\x78\x9c\x97\x65\xd6\x3a\x30\xc7\xd4\x8f\x03\xb2\x47\x76\xed\x53\x33\x28\x67\x04\x1d\x83\xd4\xca\xc4\x48\x58\x56\xaa\xc8\x42\xec\x87\x01\xe5\x2d\xa4\x95\xf7\xb3\x20\x62\xc2\x66\x30\x1a\x51\xf5\x86\xb8\x58\x34\x27\xb8\xc2\xd2\x85\x76\xa2\x96\x1c\xe5\x78\x85\xed\x38\x58\x00\x9f\x15\x3d\xbf\xb6\x4b\x72\x1d\x8d\xac\x85\xe7\xf3\xb7\x01\x7e\xb8\x8e\x46\x25\x39\x51\x97\xd1\xd1\xac\x7d\xd1\xed\x87\xea\x3e\x61\xc2\x4a\x62\x19\xa3\x9c\x8f\x0c\x82\x07\xc0\xff\x15\x3c\xaf\xaf\x09\x8e\x39\xf3\x8d\xf7\xd9\xd6\xa0\xc6\xf7\xf1\xed\x5a\x18\xd4\xf8\x73\x26\x44\xb6\x31\xa8\xf1\x8e\xaf\x84\x11\xd0\x90\xb3\x03\x11\x00\x2d\xfa\xa2\x1e\x0f\x34\x43\xbb\x4e\x18\x68\x69\xcb\x02\x87\xb2\x6c\xb3\xcd\x0a\x1e\xa1\xfd\x60\x88\xec\xd9\xf7\x59\xa6\xe2\xf6\x58\xbf\xa3\xda\xb2\x6c\x55\x62\x2d\x31\xbe\x7b\x27\x9f\x02\xe9\x81\x83\xa7\x5a\xbb\x69\x96\x22\xe3\x67\x71\x26\x2f\x24\x2b\xc4\x43\x82\xf7\xc8\xe1\x45\xe7\xa5\xf2\x70\x69\xa5\x9a\x26\x72\x79\xa6\x59\x97\x7e\xb4\x97\x48\x8f\x0c\x95\xc3\x20\x7b\xba\xeb\xde\x21\x5c\xeb\xbc\x68\x4c\x43\xf6\x24\x51\x2f\x96\x87\xb6\xd0\x8f\x83\xaa\x19\x3f\x0e\x68\xf3\xc8\x44\x75\x75\x10\x66\x05\x22\x5e\xdd\x33\x8b\x3b\x09\xa1\x82\x68\xb9\xa1\xa2\xe6\xd4\xd7\xb0\xdf\x5b\xde\xd7\x89\x89\x43\x0b\x96\x1f\x86\x47\x1d\xe4\xf6\x72\x97\x5b\x7a\x0c\x7b\x7d\x4a\xd4\x26\x87\x36\x0c\x4b\x06\x58\x8c\x2a\xa2\x14\x43\xdb\x5a\x98\xe1\xdb\xdd\xe6\x86\xe7\xbe\x08\x16\x86\xe1\x19\xdb\x7b\x83\xd0\x5d\xcb\xfd\xa2\x93\xad\x2c\x21\xd3\x90\xb1\xc4\x34\x47\x4b\x62\x9a\x19\x97\x86\xc9\x75\x73\xd2\xd9\x77\x67\x9a\x3b\x7f\x1a\xa0\x4f\x3d\xb2\x69\xcb\x13\x36\xa1\x09\x4b\xca\x12\xd2\xe9\x8e\x8d\x96\x65\xe9\xca\x45\xfa\x28\xe1\x82\x9d\xdd\x8d\x12\x42\x2d\x77\x1c\x93\xe7\x96\x3b\xb6\x62\xe8\xf6\xc9\xb2\x2c\xed\x53\x42\x5e\x30\xc7\x34\xad\x90\x39\x84\xee\x4e\x58\x3c\xdf\x3d\x67\x13\x7a\x50\x58\xe9\xd0\xf7\x9a\xa3\xc1\x8e\x8d\x76\x65\x09\x2d\x3a\xb0\x25\xfb\x6e\xb0\xd8\x8d\x2c\xf8\x1d\xb9\xe4\x79\xea\x4f\x02\x6f\x84\x6a\x88\x1c\x08\x81\xbd\x4b\x63\xc1\x12\x9a\xdb\x85\x08\x73\xc1\x76\x34\xb7\x79\x1a\x31\xf4\x5c\x47\xd9\xc9\x8a\x23\x5e\x54\x93\x16\x71\x3d\xa0\x6f\x77\x01\xe4\x9a\x97\x14\xcd\xd8\x8a\xeb\x07\x7e\x19\x75\xd6\xbe\xc9\xa2\x87\xd6\x05\x27\x69\xc7\x03\x0e\x83\x73\x28\xfc\x15\x1a\xfe\xd2\x4f\xdd\xd4\x59\xe3\xbd\x64\x2b\x8c\x9b\x24\x5b\xfe\x62\x10\x8a\x5d\x60\x59\xeb\x96\xd3\x75\xf7\x12\x4f\x60\x84\xa5\xd5\x84\x43\xc3\x26\x0a\x4a\xfc\x22\x9c\xc7\xa3\x11\xb1\x72\x0c\x2b\xae\x16\x22\xba\xa8\xe7\xed\xe5\x47\xc5\xc2\xaa\x7b\x00\xb3\x90\x01\xe2\x4b\x6a\x9c\x6b\x43\x28\x4b\x19\x46\xc1\x8f\x01\x2b\x3b\x95\x30\xbc\x87\x0e\x57\x77\xde\x5d\xdd\x09\x47\xcb\x17\x59\x6f\x24\x8f\x8e\x9e\x6c\x71\xa8\xb5\x28\x53\xa8\x64\xe7\xb5\x86\x69\x5a\xb9\x4e\x60\xe0\x75\x35\x2e\xa9\xd1\xca\x64\xc4\x74\x18\x61\xa7\x3f\xf0\xe5\x98\x99\x74\xb1\xce\x3e\xf6\xac\xc4\xb5\xda\x6b\x91\x6f\x5e\xc7\x51\x9f\xa1\x80\xca\x43\xf6\x54\x64\xb7\xb7\x49\xdf\x36\x6c\xdc\x64\x59\xc2\xc3\x96\xdf\xef\x42\x1d\x34\xa0\x65\x4b\x99\xc8\x43\x0b\xd5\xf3\xc1\xf6\x9f\xa8\x76\x16\x8f\xf2\xb7\x2a\x59\xbd\xca\xc2\x92\x31\x47\x82\x7c\xa3\xe4\x08\x55\xdc\xa7\x12\x23\x41\xe1\x65\xf0\x1b\xce\x4e\xda\x0e\x51\x1d\x7f\xa8\x93\x98\x5e\x41\xf1\x67\xe5\x87\x4d\x16\xed\x12\xfe\xac\xbc\x3e\xb1\x16\xde\x3f\xc3\xbb\xb0\xe4\xcb\x4d\x48\x8a\x65\x1e\x6f\xc5\x49\x4c\x6f\x39\x7b\x92\x81\xe5\x3c\xdf\xa5\x46\x75\x2d\xd2\x66\x97\x88\x78\x9b\x70\xf6\x45\xf5\xf4\xc5\x4b\x83\x1a\xcd\x85\x48\x01\x15\x6b\x1e\x46\xb2\x10\xba\xae\xca\xef\xea\x31\xa0\xcb\x2c\xf1\xfc\x49\xfd\xf1\xc5\x32\x4b\x6e\xf3\x6c\xb7\x95\xd9\xea\x37\xad\x84\xc8\x5b\x05\x04\xac\x4d\x55\x29\x3e\xea\x59\x23\xcf\x9f\x76\xb3\xbe\x10\xb9\xca\x9e\xbf\xec\x29\xf3\xb3\xf2\x88\xf4\x7c\x87\x1a\x06\x35\x8c\x40\xa3\x24\x77\xfa\xed\xb7\xb5\xc8\xe1\x13\xb7\xf1\x1d\xde\xf6\x76\xe4\xca\x46\x19\x43\x87\x78\x47\xaa\xea\x5e\x7a\xb4\xe8\xb9\x07\xa9\xaa\xc2\x0f\x68\x47\x5a\x28\x7d\xec\x16\xb5\x95\x29\x0f\x28\x3a\x11\xd5\xe3\x7a\x38\xb8\x22\xd8\x41\xba\x58\x1d\xdc\x5f\xe4\xf3\x74\x34\x22\x72\x8d\x72\x3f\x0d\xa8\x71\x9b\x64\x37\x61\xf2\xf6\x2e\x4c\x0c\x74\x61\x96\x84\x43\x74\xbf\x11\xb2\xbf\xe5\x76\xb6\x15\x38\x8f\x4c\x3e\xc7\x59\x4a\x6f\xb9\x8d\xb0\x87\x24\xb1\xca\x32\x01\x0f\xd5\x7c\xe3\x73\x28\x75\x63\xb7\x68\x8c\x19\x46\x58\x62\x8d\xaf\x11\xa2\xfe\x2b\xc0\xef\xd2\xfc\xd3\xe2\xfa\xe3\x68\x7e\xd2\x4c\xd2\xd1\x90\x4e\x55\x40\x11\xba\x65\x42\xd1\xef\x6a\x17\xf8\x32\x0f\x6f\x91\x90\x93\x2a\x5a\x92\x43\xd7\x0d\x00\xa2\x17\xeb\x79\x24\x5d\x21\x30\xe4\x53\x14\x10\x19\x02\x33\x26\x5d\x35\x49\x4c\x48\x05\xe7\x15\x8d\xb5\x90\x48\x71\xe0\xc5\x8d\x76\xe4\x95\x92\x79\xc5\x4a\x4c\x12\x32\x8c\xe6\xd0\xba\xfe\xab\xeb\x65\x1d\xc5\x77\x40\x6d\x0b\x66\x6d\xd4\xae\x1e\x93\xb2\xf4\x25\x96\x92\xc3\xc0\xfb\x4b\x76\xcb\xfd\x22\x28\xcb\x5b\x6e\x57\x68\x4d\x43\xcd\x51\x79\x09\x3b\xec\xa3\xbd\x16\x9b\xe4\xaf\x39\x57\xd6\xbe\x31\x19\x2d\x61\xaf\xdd\x61\x44\x01\x19\xc6\x28\x64\x61\x13\xcf\x79\xde\x8c\x2f\xd4\x8d\x95\xa9\x15\xb2\xad\x6e\x4e\xad\xc7\x4a\x65\x86\xa1\x02\x9a\xc9\x23\x7c\x35\xb8\xf7\xfc\x5e\x72\x9d\xd5\xa5\x17\xdb\x4e\x29\x98\x8a\x79\xcc\x56\x7e\x54\x45\xb1\xc8\xd1\x45\x49\x59\x24\xc6\x34\x27\x2f\xc7\x2e\x41\x8b\x26\x15\x72\xab\x06\x72\xc2\xa4\x12\x3f\x64\x77\xdc\x6a\x03\x37\x26\xd4\x90\xd4\xcd\xc0\x10\x5d\x0f\xdc\x0a\x09\x95\x17\x4f\xef\xb0\xc5\xd0\xdf\x61\x8b\x57\xd5\x4c\x55\x31\x1b\x0d\x52\xbb\xbb\xc6\xf5\x56\xb3\xdd\x0f\x0f\x4d\xbb\x8e\x22\x59\xab\x2b\xe1\x91\x79\x16\xec\xe0\xcb\x67\xee\x91\x43\xda\x8f\x4c\x47\xfb\x73\x75\x9b\x1e\x35\x9a\x7b\xf5\xba\x79\xd4\xdd\x72\xa2\xe7\x16\x3a\x7a\x25\xc3\x8b\xbe\x4e\xb2\x14\x2d\xd7\xe1\x17\x27\x6d\xe8\x90\xce\x5b\x8d\x25\x55\x44\x52\xda\xf6\x8c\x87\xc9\x0d\x73\x1e\xbe\xbc\x7f\x71\x52\x3f\x1b\xf4\xca\x4e\x33\xac\xfe\xb5\x2c\xc5\x30\xa6\xe9\x91\x9a\x5b\x3e\xeb\x96\xdc\x07\x1f\x61\x23\xfb\x85\x3f\x9c\xd0\x9f\xd5\x8e\xb8\xc9\x76\x05\x2f\xb7\x59\x9c\x0a\x9e\x97\x4b\xe9\x77\xbc\xe1\xe9\xae\x8c\xf2\xf0\xb6\x8c\xf2\x6c\x4b\xca\x65\x12\x2f\x7f\x39\xa1\xdf\x61\x19\xff\x83\x1d\x3c\x27\x70\x58\xb4\x2d\x7b\x44\x4a\xa2\x11\x95\xf7\x5c\xbf\xf4\xa0\x4e\xbe\xd7\x92\xb5\xfb\xc7\xbf\xe5\x6d\xaf\x66\xc6\x58\xc7\x4c\x4a\x7d\x09\xdb\xe1\x66\x1b\x2b\xf2\xfd\x1e\x1d\x9d\x2d\x03\xa3\xd5\x22\x4f\xa1\x71\x83\xef\x3a\x21\xe3\xd0\x52\x87\x16\x1d\x9d\x6d\xad\xe5\x42\x0a\x53\x0c\xe2\x1e\x19\x4b\x8a\x72\xd6\xbc\x2c\x53\x9a\xd6\x87\x74\x41\xb0\x81\x02\x1b\x10\x7e\x11\xd0\x58\xe3\xa9\xe2\x95\x72\xd8\xc9\x65\x9c\x1a\xc6\xb2\x85\x95\xb1\x94\xe6\xac\xae\xc2\x53\x1f\x4c\xb3\x47\xed\x96\x42\xf6\x9c\xe6\x75\x66\xf5\xaa\x75\x41\x85\x3e\xcf\x48\xc6\xee\x79\xbd\x9e\x87\x59\x1d\xb8\x40\x0f\xdc\x1f\xe3\xa9\x23\xa3\x56\xd6\x7b\xf6\xb5\x88\x9d\xad\xf0\xe2\xa5\xb0\xdf\xe6\x71\x4f\xec\xdb\x5d\x1c\xb1\x10\x7f\x30\x78\x1f\xbe\x3f\xe2\xcf\x68\x84\x97\x6a\xf4\x48\x6a\xf8\x1d\x4f\x05\x0a\x23\x94\xcb\x45\x46\x73\xa9\x92\x6e\x66\xea\x6d\xad\xaf\x49\x17\xd6\x37\xb5\xfa\x62\xe8\xa2\x5c\xb5\xae\x00\xd2\x9e\xea\x8b\xbe\xbd\xa1\x4b\xd7\x78\x23\x4d\x7e\xa0\x87\x92\x92\x7c\xb5\xdb\x62\xb3\x78\xa0\x73\x4d\x6e\xc7\xc5\xfb\x3c\xbe\xbd\xe5\xb9\xf2\xfe\x12\xd2\x77\xb4\x32\xd6\x26\x56\xd5\x22\x46\x52\x08\x13\x3c\x2f\x3e\xed\x89\x1d\xf1\x84\xdf\x02\x31\xae\xae\xea\x17\xd9\xf6\xaf\x79\xb6\x0d\x6f\x43\x39\xd8\x7a\x06\xe2\x1e\x2b\xa6\x6f\x1a\x19\xb5\xa0\x31\xca\x57\xab\x9e\x51\xd5\x0f\x8b\xd0\x78\xc8\x98\x95\xb5\x3b\x4e\xca\x32\x5f\xb4\x8a\xe3\x3d\xdd\x78\x27\xfa\x10\x66\xbf\xd6\x97\x43\x8f\xbe\xde\x6c\x78\x14\x87\x82\xb7\xba\x46\x39\x7a\x88\xf1\x54\xbc\x91\x64\x01\x85\x41\x77\xcd\xbd\x41\x71\xa3\xc5\x68\x35\xa5\x74\xcb\x15\x4c\x84\x04\x9d\x55\x4b\xbb\x63\xdf\x09\xe8\xa3\x8d\xc6\x15\x8d\x52\x9c\xd0\xb8\x0e\x38\x5d\xb9\x8b\xd2\x4f\xf5\x0f\x1d\x5d\x1a\x81\x64\x23\x04\x87\x5d\xac\x8d\x00\xef\x39\xd9\xab\x34\xf6\x24\x79\x28\xef\xe9\xd0\x29\xaf\x75\xf9\x85\xce\xd5\x54\x97\x4f\xd0\x4d\xd5\x0c\x91\xd7\x44\xa0\x1e\xc6\x56\x18\x85\x67\x41\x2b\x66\x29\xa9\x52\x68\xc6\xe2\x3a\x54\x06\xca\xb3\x8f\x78\x42\x86\x1c\xcd\x34\xaa\x65\x92\x76\x96\x09\xb5\x96\x6c\x23\xfb\x5f\x90\xb2\xd4\xde\x30\xde\xa8\x15\xb2\x8d\x6a\x12\x23\x64\xd6\x6f\x4c\xd7\xae\x7c\xc2\xd9\xea\xb1\x01\x99\x9a\x2d\x1e\xa1\x2b\x9f\x90\xf1\x07\xe4\x27\x38\x09\x62\xbc\x89\x4a\xbe\xa3\x19\xc3\xa9\x4b\x93\x09\x4d\x98\xa5\x94\x14\x06\xd1\xf5\xcf\xc0\x48\x55\x4c\x5f\x82\xca\x67\x76\xc3\xac\x82\x7d\xa7\x18\x2e\xe1\x27\x81\x8a\x81\xe4\x06\x74\xcd\xac\xc2\x9f\xa8\x5b\x95\x54\x40\x1e\xbb\x8a\xc8\x43\x68\x64\x9a\xd6\x96\x75\x17\x5d\x84\x8b\x8e\x46\xcc\xca\x16\xdb\xd6\xd2\xf3\xb6\xf6\x4d\x9c\x46\xea\x66\x86\x88\x1e\x2d\xbb\xfb\x7f\xa8\xfb\x13\x2e\xb7\x6d\xe4\x5f\x18\xfe\x2a\x2d\xbc\x1e\x5e\xc0\x42\xab\x25\x67\xf9\x4f\x28\xc3\x3c\x8e\x97\xc4\x13\x77\xec\xd8\x4e\x62\x0f\x5b\xd3\x87\x2d\x41\x2d\xc6\x14\xa9\x90\x50\x6f\xa2\xbe\xfb\x7b\x50\x58\xb9\xa8\xe3\xcc\x7d\xee\x3d\xcf\x13\xcf\xb4\x48\x10\x04\x40\x2c\x85\xaa\x42\x55\xfd\x98\x3b\x93\x81\x08\x6f\x0b\x5a\x94\xe9\x25\x94\x71\xa1\xce\x2f\x4b\x4b\x40\x72\x2a\x87\x27\x54\x83\x45\xcd\x30\x87\x05\xf5\xe3\x71\x84\x30\xe8\x07\x82\x75\x28\xfe\x47\x8e\xbc\x25\x50\x2b\x1d\x6d\x68\x84\xc8\x5e\xae\x79\xbc\x64\x73\xc5\x15\x63\x7d\xc9\xe2\x99\x23\x2c\xcf\x8a\x6d\x2e\xd8\x98\x6e\xe4\x02\xdc\x6e\x82\x60\x30\x19\x30\xa6\xef\x5c\xd4\x8c\x15\x4d\x40\x1b\xd9\xb6\x69\x92\x34\xa9\x63\xe7\xb4\xa0\x09\x21\x74\x23\x1f\xc8\x7e\x96\xbf\xa6\xa4\x2d\xa1\x5b\x33\xb9\xcd\x64\x6d\x26\x30\xd5\x1d\x84\xd0\x22\x5a\x1a\xc7\x98\x65\xb3\xbd\xc3\x21\x1d\xd3\x2d\x09\x35\xc7\xba\x75\x14\x5b\xad\x4d\xf9\x91\xde\x59\xdb\x7f\xb1\x46\xdd\xa9\x73\x10\x34\x56\x6c\x10\xf8\x4b\xc9\x44\x27\xfd\xc2\x29\x9b\x2e\xf1\xff\xd6\xac\x55\xd5\x1d\x9c\x7c\x30\xbc\x0c\x97\xf7\x4f\x5e\x80\x33\xa1\x15\xab\x00\x55\xac\x85\xdb\x74\x76\x36\x22\x68\x68\xe6\xd0\xd9\xd9\x08\x47\xe1\xe8\xe1\xd9\xd9\xa8\x26\x88\x0c\x11\x96\x57\x0f\x08\x02\xe0\x0c\xb6\xf4\x22\x81\x4d\xc9\x96\x2d\x21\x10\x58\x11\x04\x17\x03\xc6\xb6\x23\x33\xf1\xeb\x1a\xc0\x00\xe4\xa8\x42\xba\x1a\xf6\x2a\x08\x06\x95\x9a\xbf\xdb\x91\x9d\xbe\x72\xdf\x09\x82\x12\xf2\x55\x16\x99\x12\xa3\x87\x0f\x25\xb5\x29\xeb\x7a\xe0\xd2\xe5\x94\x5e\x36\xa2\x7f\xf9\xef\xb4\xa6\xcc\xf1\x31\xdd\x68\x2d\x5f\x10\x98\x2b\x37\x2b\xc9\x34\x09\x82\xc1\xd2\x6d\x48\x52\xd8\x49\xca\x45\x71\x9d\xdb\x25\x61\x12\xcc\x5b\x2b\xea\x11\xcd\x3b\xdf\x54\x13\x73\xba\x70\x0f\xcd\x01\x23\x2c\x43\x17\x3b\x7a\x71\x94\xe6\x47\x73\x62\xc6\xd2\x9e\xd9\x2d\x86\x72\x52\xc0\x34\x1d\x8c\xc9\xb4\x6d\xb7\x32\x87\x19\x69\x73\x23\x55\xc9\x91\x9a\x90\x88\xec\xc1\x41\x6b\xd3\xf1\x7c\x69\xf8\x15\xca\x69\x6f\x27\xd1\x32\xbd\x91\x1c\xd8\x1c\x4e\x58\x94\xe8\xd6\x3e\xca\x03\xaa\xec\xf1\x07\xc8\xd4\x06\x4c\x4a\x5c\xa9\x68\x6f\x30\xaf\xb6\x9d\xc9\x69\x9f\xea\x03\x01\x29\xbb\xb2\x8a\x0a\x36\x99\x8a\xc7\xed\x9a\x20\xde\xca\x3c\x16\x9e\x09\xb5\xc6\x83\xad\xdc\x9c\x06\x58\x0a\x75\x24\x36\xd8\x4a\x1e\xe3\xb9\xfe\xe2\xba\x86\xa1\x6a\xa4\x79\x2e\xf9\x95\x95\xe8\x4d\x1b\x35\xe1\xa9\xfc\x4c\x34\x53\xd1\x5f\x70\xc1\x92\x58\x0c\x87\x33\x02\x33\x35\xad\x3c\xe6\xe1\xbd\x28\x36\x1b\xb0\xed\x85\x1d\xbc\x1a\xcd\xb7\x65\xc9\x73\xa1\x9b\x56\x8c\x78\xc6\xd7\x34\x97\xa5\xa4\xac\xb0\xd5\xc4\xb9\x57\x5c\x1f\x53\xe2\x95\x5b\x8d\x4a\xbb\x2a\xf4\x14\x4c\x47\x7e\x8a\x9f\xc1\xc8\xc1\xfe\x3a\xc2\x95\xae\xf7\xcd\xc5\x1f\x2c\xa5\xd5\x48\xee\x3e\x2c\x85\x1f\x67\x66\x86\x4b\x86\x3b\xdc\x67\x6a\xd7\xae\x66\x43\x55\x41\x75\x9d\x9a\x4f\x21\x7a\x0f\xd7\x5f\x3a\x07\xc8\x0d\xc9\xf1\xe3\x6a\x54\xf2\x6a\x9b\x09\x06\x1a\xe6\xaa\xcb\x02\x56\x5d\x26\xd6\x1d\x18\x6e\x47\x9b\xa2\x12\x66\xec\x82\xa0\x79\xdf\x18\x4b\x6a\x6a\x02\xd3\x30\xd5\xc1\x87\x2d\x6c\x60\xca\xc7\x33\x3a\x67\xa2\x49\x18\x68\xc6\xf8\x48\x21\x9d\x40\x50\xf8\x20\xc8\x7c\x13\x1a\x8c\x40\x10\xf5\xa1\x1b\xf8\x48\x61\x43\x3c\x61\x13\x6d\xde\x9a\x49\x5e\x67\x95\x56\xd3\x8c\x65\x0d\xa7\x77\x60\x43\x75\x10\x30\xbf\x58\x53\xea\xc0\x01\x4e\x80\x19\x74\x66\xc1\xd9\xf5\x54\xd5\x2e\xc0\xbb\x3d\x55\xf8\x0a\x73\xd0\xf6\x59\x9e\x35\x89\x0b\x39\x82\x10\x83\xd5\xd2\x3e\x03\xe0\x9b\xc4\xc5\x8c\x95\x0d\x7e\x21\xba\xc3\x2a\x86\x8b\xb6\xea\xc1\x19\x38\x8d\xea\x00\x47\xea\x91\xc6\xd5\xcd\xec\xde\x45\xa8\x2c\x29\x08\xac\x43\xed\xd4\x31\xee\x95\x8e\x6a\x2b\x67\x41\x98\xb9\x71\x48\xf7\xd6\xd6\x27\xd3\x1e\x5e\x8f\xc5\x5f\xbe\x25\x4c\x64\x4a\x08\xc1\x0b\xfc\xb5\x9c\x27\xad\x51\xed\xb7\x4f\xed\xc8\x03\x94\xd3\x1d\xcf\xb7\x6b\x6e\x4c\x53\xdb\xa6\xaa\x60\x31\x0a\xe1\xc3\x3c\xd9\xd1\xd8\x57\xc9\x05\x90\xe6\x49\x06\x85\x5a\xeb\x99\xbe\x67\x8d\x23\xc4\xfb\x5f\xef\x3c\x89\xf9\xac\x65\x2a\x7b\xf0\xfb\xb4\x11\xc4\x5f\x7c\xd2\x75\x99\x0a\x73\xad\x2d\x74\xc1\xe4\x63\x4f\x97\x69\x7f\x74\x93\xd8\x5a\x1c\xcf\x22\x1e\xca\x3d\x40\xf7\x24\x58\xdc\x69\x8a\x10\xee\xb2\x22\x59\x84\xbb\xbc\xf8\x7e\x7b\xa1\x0d\x7d\x29\x4c\xe1\x70\x07\x9c\x62\x8f\x51\xa6\x6c\x70\x5d\x5b\x75\xc0\x85\x26\x52\xc2\x84\xf4\x14\x23\x28\x20\x08\x5e\x60\x41\x8d\xfe\x2c\x08\x5e\x40\xe4\x47\xb5\x3c\xa4\xdc\x45\x07\x93\x3d\xd5\x42\xc5\xff\x99\x5a\x08\x95\x5f\x63\x4f\x17\x7a\xcc\x4b\x0d\x7d\xf8\x9b\x95\xe8\x1d\xd3\xd6\x53\xd7\xf0\x3c\x81\x5d\xfa\x82\x2f\x8b\x92\x6f\x73\xd5\xb1\x3e\x95\x6b\xb6\xc0\x10\x6a\xae\xa9\x9d\xa4\x3f\x8d\x39\x04\x56\xb5\x8d\x94\x91\x6a\x27\x68\xe1\xec\x7b\x64\xbf\xdf\x2b\xff\x16\xcb\xa6\x74\xec\xf8\x79\x9f\xbf\x89\xac\xb0\xcf\x0d\x45\xd9\x43\xea\xc9\xd2\xc5\x1f\x1f\xc0\x8c\x6d\x84\xc6\x52\x59\x5d\x7c\x5a\x7f\xae\x51\x01\x0e\xae\x8a\x1a\x46\x3d\x8b\xc8\xc4\x92\x02\xfb\x77\x95\x4d\x25\xa4\x95\xde\x5b\xde\xaa\x9d\x86\x2f\x98\x0d\x9e\x69\x93\xea\xda\x19\x51\x76\x1e\xea\xad\x8b\xfb\xfd\x16\x7d\xe0\xe1\x8d\xa9\x52\xed\xea\x66\x1a\x04\xc1\x57\x6a\x37\x80\x3b\xcf\xa0\xd9\xa4\xb8\x1d\x20\x34\x69\xaa\xa0\x26\x97\xc0\x9b\xf7\x2a\x0b\x04\xd1\xe5\x0b\x9b\xa5\x71\xaf\xcf\x26\x55\x17\x50\xa1\x04\x43\x10\x36\x7d\xad\xce\x48\xa4\x6b\xfe\x5e\x24\xeb\x0d\x53\x3d\x6a\x6e\xeb\xfa\x79\x22\xf8\x28\x2f\xae\xb1\xd6\xff\xb8\xb5\xcf\xe4\x1a\xe8\xd0\x50\xb6\xf3\x22\xa0\x85\xfa\x31\xed\xf6\xb8\xec\xaa\x3e\x06\x49\xa5\xdf\xc3\xe9\xa8\x0c\xef\xd3\xf5\x16\x3e\x33\x1c\x4c\x68\x93\x61\xe8\xba\x65\x77\xa7\xc6\xf4\xd0\x3c\xf8\xc0\xa9\xdc\xc3\xf5\x63\x5b\x0b\x80\x68\xb5\xd8\x92\x3d\x6d\x71\x25\x7f\xa7\xe2\xee\x77\xdd\x57\x75\x87\xfd\x51\x75\xf7\xf5\xd2\xdf\x69\xc4\x3d\xbd\xfc\x57\xad\x39\xa0\xbf\x53\x07\xe4\x9d\xd6\xee\x6d\x7c\xa7\x24\x13\x3f\xf1\x5b\xb9\xd7\x5c\xc0\xb6\x00\x91\xd4\xe6\x72\xb9\x67\x76\x83\x5a\x25\xf9\x25\x5f\x7c\x28\xb6\x10\xe6\x5e\xa6\x88\x32\xd3\x6f\x2d\xb8\x48\xd2\x4c\x5e\xc1\x60\xbc\x5d\x25\x15\xbc\xb4\xe6\x22\xd1\x59\x36\xc9\x25\xff\x68\x2e\x3e\xc9\x0b\x30\xe1\xd4\x4f\xaf\x52\x7e\xad\x6b\x29\xd5\x76\xb8\x30\xb5\x96\xcf\xf4\xf5\x67\x95\xf5\x33\xbf\x35\x29\x1a\x33\xcc\x5e\xa9\x66\x65\x29\xcf\xc5\x47\x77\x09\x95\x15\xcb\x65\xc5\x55\xaa\xba\x84\x54\x7d\x74\xf1\x6a\xe1\xdd\x80\xa4\x2d\x9b\x37\x2f\x39\xcf\x3f\xba\x4b\x78\x43\x51\x01\xaf\x17\x44\xa1\x0f\x16\xd4\x8d\x4d\xbf\x5e\xa5\x7d\x92\x1b\x33\x4c\x67\x13\x74\x98\x8f\x20\x7f\x10\xdc\x19\x43\x7d\xb5\x25\x45\xda\xbd\x78\x64\x3a\x22\x72\x97\x21\x1f\xd9\xbe\xb0\xef\xfb\xae\x12\xe7\xad\xb2\x26\x81\x88\x26\xe1\xa3\x40\x44\x5f\x85\x5f\x07\x22\x7a\x14\x8e\x43\xfd\xa2\x9a\x0b\x46\x55\x2a\xa7\x89\x0b\xfe\xa5\xc0\xfc\xd4\x29\x49\x9a\x23\x7a\x91\x6d\x4b\x7d\x5b\x6c\x05\xea\x09\x9f\xd4\x14\x42\xf8\x8c\xb5\x79\x0b\xcb\xb5\xbc\xb0\x46\xa1\x3f\x1f\xe2\x10\xba\x79\xd5\x3e\xdf\xd0\x8c\x08\xc0\x39\x34\x2d\x86\x73\x29\x49\x39\xca\x10\xc1\x75\x71\xc5\x4b\x44\xe1\x32\xe3\xc9\x15\x37\xc9\x5b\x81\xcc\xb0\xeb\xec\xfa\x4e\xbd\xa0\x6f\xf4\x2b\xe6\xd1\x97\x7e\x73\xb3\x81\xd4\xa8\x6e\x42\xa1\xf9\xe4\xce\xe4\x30\x51\x55\x01\x46\xa1\xb1\x5f\x00\x9a\x8c\x15\x02\xad\xe9\x94\x46\x78\x2e\xeb\xda\xb3\x3e\x84\x50\x52\x75\xad\x47\x9d\x39\x11\x90\xe6\xcc\x8a\x7d\xfd\xa7\x34\x54\xbf\x03\xd1\xd0\x75\x8f\x7a\xc6\x3d\x0d\x78\x3e\x63\xa2\xa7\xdb\xf2\xda\x59\xf7\x42\xfa\x9e\x16\x79\x57\x5f\x77\x28\x3b\x9d\xc8\x17\x96\xcb\x43\x9e\x66\x60\xfa\xde\xa5\xf6\x32\xc5\xf6\x8a\xe1\x46\x4a\xbf\xab\xe8\x1d\xe6\x2d\x7d\x83\x3a\xaa\x2a\x9d\x88\x1d\x95\xb6\x8b\x86\x68\x84\x86\xde\xa3\xd0\x3d\x02\x98\x15\x25\x97\xd1\xd2\x4a\xcf\x40\x5a\xfb\xcf\x04\x35\x22\x50\x71\x94\xe6\x47\x9c\x28\x72\xbf\x5c\x42\x50\x7a\x1e\x17\xbd\xb1\x3b\x41\x39\x20\x82\xc0\xc5\xaa\xf0\xa2\x13\x43\x84\x1c\x41\x85\x3d\x42\x04\x5e\x27\x87\xb3\x86\x1b\x1d\xbc\xf0\xf0\x11\x5a\xc3\xed\x80\xe6\xda\xd1\x41\x5b\x38\xbd\x07\x33\xa6\x68\x90\x94\x3c\xa9\x2f\xca\x7a\x5e\x64\x35\x5f\x5f\xf0\x45\xbd\x2a\xeb\x74\x7d\x59\x03\x27\x5c\x67\x69\xfe\xb9\x96\x24\xbd\xde\x24\x65\xb2\x26\xf8\x3e\xcb\x27\x08\x2b\x4b\xce\x4e\x9e\x9c\x5c\xa6\xf4\x4f\x59\x81\xb2\x05\xa8\x1f\x83\x35\x59\xfd\x58\x96\x76\x92\xd2\x67\x9c\x9d\xe8\x73\xec\xb3\xea\x21\x8e\xc2\xf8\x3f\x6c\x56\xb3\xb3\xea\xa1\x39\xde\x1e\x91\x93\x94\x7e\xe6\xec\xe4\x3f\x67\xd5\xc3\xc7\x03\x1c\x85\x67\xf1\xb3\xe7\x4f\x3f\x3c\x3d\x8b\xeb\xe3\x63\x52\xcb\x84\xd9\xd9\x4c\x5e\x3f\x39\xab\x1e\x3e\xf0\x7d\xb9\x7e\x6f\x9e\x12\xab\x30\x71\x72\x4b\x03\xd9\x01\x77\xe3\x14\x0a\x3f\xb6\x1d\x12\xa5\xcc\x07\x91\x8a\x4d\x8c\x3b\x8c\xc0\xa6\x06\x91\x78\x3c\xab\x6b\x2f\x30\xda\xf3\x26\xae\x1a\x2c\x24\xac\xc8\xf7\x21\x68\xc8\x21\x3a\x41\x43\xcd\x02\x7b\x25\x7d\xcf\x5b\xfe\x5e\x27\xca\xee\xd7\x59\x47\x58\xcc\xa2\x6f\x48\xc4\x7d\x4e\xda\xba\xf2\x84\x86\xd7\xef\xd4\xea\xd7\xf4\x96\xf7\xea\x57\xe8\x5c\x05\x6a\x69\x81\xca\x4a\x69\xa0\xa9\x51\xc7\xa9\xe7\x4c\x42\x68\xc2\xf4\xf1\x1f\x4d\x09\xcd\x58\x6a\xb5\xeb\x76\x21\x68\x0d\x6a\xa2\x17\x10\x4d\xdc\xe9\x15\xcd\x74\x98\xb3\x31\x2d\x59\x16\x17\xb3\xb6\x69\x54\xe3\x34\x98\x16\x54\xe6\x89\xf3\x19\x99\xfe\xbb\xd9\xa6\x8a\xfd\xdb\x6b\xd3\x9c\xf9\x81\xd9\x2a\x42\xb5\xbf\x8f\x8a\x62\x62\x7b\xe2\x1d\x6f\x42\xda\x1c\xc0\x1c\x75\x71\xff\xf3\x20\xb8\x68\xed\xaf\xc2\xcc\x58\x66\xc1\x62\x43\xfd\x82\xb2\xc6\x44\xc6\x1c\x03\xee\xeb\x1a\x8b\x86\xa1\x05\x6b\x62\x05\x78\x47\xdc\x1f\x3d\x9b\x68\xc1\x32\x4d\xbd\xe3\x99\x14\xb6\xac\x8d\xb4\x42\xd8\xa1\x1b\x36\xa6\x4b\x07\x3e\xb6\x60\xcb\xe3\x09\x5d\x41\xe4\x71\x7a\xc1\x2e\xf1\x0a\xce\x3f\x2e\xea\x7a\xf9\x64\xd2\xe7\xe5\xba\x0a\x82\x81\x6f\x8d\x12\x04\xcf\xf4\x77\xae\x3c\x50\x83\x16\xa1\xb1\x21\x83\xf8\x88\xff\x89\x0b\x32\xbd\x08\x02\x70\xf1\x66\xbe\xae\xaf\xa0\x29\x58\x42\x61\x42\x08\xfd\xc8\x21\x4e\x0e\x6c\x16\xca\x62\x7a\x09\x13\x0a\x17\xec\x5a\x0a\xf5\x00\x94\xd6\xb4\x23\x1e\x4c\x28\xa7\x25\x69\xc4\x9f\x04\x1b\x06\xcf\x46\xca\x77\xa8\x4b\x09\x4d\xeb\xba\xd4\x2a\xb8\x8a\x81\xc2\x78\x9d\x6c\xf0\x15\xc7\x85\x67\x9c\xf4\x9c\x5b\xc0\x97\xe9\xe6\xf1\x72\xba\x19\x0e\xc9\x9c\x15\x74\x33\x60\x6c\x01\x07\x45\x77\xca\x52\x06\xcf\x29\x04\x3a\x20\xb4\x92\x32\x9b\xb2\xd1\x4a\xe8\x95\x7c\x60\x8b\x83\x90\x36\xea\x68\x21\xde\xcc\xe8\x9c\x6e\xe0\xeb\x2a\x6d\xf8\x94\xc4\x89\x8b\x77\xdd\xfa\x40\xd5\xba\x84\x7e\xcf\x89\x1c\xc7\xe9\xe6\x71\xa5\x1b\x93\xc8\xa2\x8c\x9d\xd4\xdc\xb7\x93\x1a\xd8\x15\x38\x6f\x9a\x05\xca\x16\x5a\xae\x60\x4b\xe7\x72\x6d\xcc\x47\x55\x39\x0f\x02\xa4\x8c\x51\xe5\x34\xf4\x0b\x6b\xa1\x73\xdc\x8d\xce\xf9\x55\x92\xfd\x5a\x66\x41\x30\x98\x8f\xf2\xe2\x14\xde\x92\xe5\x9a\x07\xaa\x40\xba\xcb\x8b\x7c\xce\x43\x99\x27\x9f\xf3\xba\x9e\xb7\xe8\x1d\x24\x23\xb2\x27\xe1\x53\x59\x9f\xb3\x3e\xb3\xfe\xb2\x9f\x39\xc0\x74\xcc\xe9\x96\x58\x85\xa3\x1f\x75\x92\x77\xd0\x1b\x68\xc1\x44\xe4\x87\xdf\x27\x21\xa7\x29\x1b\x4f\x35\xb0\x53\xa9\x0d\x95\xc1\xa4\xb9\xae\x25\xa5\x2f\x3d\x3f\x7e\x39\xa2\x3c\xc9\x81\x6c\x5c\x29\xe8\xc7\xb2\x81\xcf\x8c\x73\xf0\x9e\x28\x09\x58\xae\xc9\x2c\xde\x10\x37\xf2\x36\x8c\xce\x3d\x74\x3c\xee\x3b\xca\xfa\x06\x80\xfd\xe0\xd0\xa6\x2b\xde\x73\x8a\x1e\x3f\x98\x3c\x79\x7c\xf2\xe0\xd1\x13\xa4\xe2\x3e\x77\x78\x29\xcf\x52\x05\x34\xe2\x2d\x53\x2e\x40\x54\x32\x41\x9e\xdb\x96\x5f\x41\x80\xdb\x51\x0e\x26\x2d\xaf\x66\xed\x67\xad\xf0\x37\x4c\x78\x68\xb0\xf1\xab\x88\x8e\x35\x8d\x53\xa6\xf0\xeb\xda\x10\x96\xef\x38\x4e\xe3\x72\x46\x13\x88\x50\x9e\x2e\xb1\x80\x48\xd1\x44\xa9\xc1\xd3\xba\x86\xd7\x28\x98\x63\xfa\x05\xa6\xed\x82\xde\x36\x0a\x82\xf3\x36\xd8\xb0\x2a\xd3\xc3\xba\x45\xde\xb8\x78\xb8\x55\xb7\x72\x65\x0e\xe6\x0a\x65\xcf\x1f\xba\x4a\x39\x7b\xe5\x1d\xcf\x4d\x1f\xc0\xb1\x04\x5f\x83\x06\x53\x0f\x93\xcb\xf7\x30\xe5\x76\x7e\xa5\x4b\xfc\x0b\xce\x89\x8e\x23\x9f\xc7\xff\x72\xfe\xee\x90\x64\x36\x42\x17\xfc\xc0\xa4\x14\x71\x39\x8b\x5a\x4c\x1a\x60\x2d\x36\xcf\x21\xc1\x4a\xcc\x9c\x43\x4e\xfd\x0a\x34\x3b\xb8\xcf\xe3\x7f\x7b\x01\x10\xb0\x7f\x6b\x38\xc6\x7d\xd7\x99\x19\x10\x8a\xfa\xa6\xe3\x1f\x96\x57\xec\x3f\x7f\xef\x66\x24\x3d\xe8\xda\x3a\x4f\xc7\xc5\x97\x77\x83\x2e\xf0\x48\x21\xc0\x28\x2b\x7c\x6d\xbb\x0f\xc0\xe3\xa4\xcb\xd5\x4e\xf4\x39\x8d\x77\x12\x33\xe9\x49\xfb\xae\x9d\x24\xb7\x5c\x50\xac\x79\xf6\xaf\xdc\x77\xf9\xe5\x1d\xef\x47\xb2\xa7\xca\x54\xb3\x47\x22\xfd\xc8\x5b\x12\x54\xf3\x13\xff\xfb\x56\xfe\x6e\x3b\xb5\x61\x27\xaa\x5d\x15\x37\x25\xff\xef\x1a\x64\x58\xba\x66\x65\x93\x9e\xb4\xef\xda\x49\x46\x7d\xe1\x5a\x36\x15\xa3\x34\xaf\x78\x29\xbe\x07\x05\xb8\x24\x4b\x8d\x40\xcf\xd0\x54\xa5\x1c\xff\xfb\x2d\x85\xba\x7d\x6a\xdc\x4a\xe8\x54\xad\xcc\xc4\xe4\x60\x2d\x45\xaf\xf6\xe0\xff\x40\x85\x0d\xd0\x1e\xa8\xbc\x13\xa8\xd5\x06\xfb\x87\x93\x68\xbd\x33\x29\xe5\x5f\x2c\x66\x04\x4e\xc9\xdb\x70\x3f\xb8\xb5\x35\x71\x80\x14\x91\xb2\x79\xc3\x6a\xbb\x29\x40\xf6\x6c\x12\x9e\x6d\xac\xd6\x22\x05\x81\x6c\x87\xd2\x38\x89\x88\x87\x5a\x55\x2d\x79\x8e\x2e\xfe\xfc\x91\xe1\x79\x1a\xae\xf1\x54\x6e\x64\x5f\xba\xc6\xdd\xc9\x0e\x08\x4b\xea\xf0\xb3\x09\x1d\xd3\x0c\x8b\xa0\xa2\x6b\x78\x22\x87\x0d\xf9\x63\x0d\x9c\xfb\xc3\xcc\xf0\x20\x18\xfc\xe9\x21\xbc\x0d\x2e\x79\x6c\x4d\xf8\xf9\x7d\x26\xfc\x33\xb2\xe3\xac\x6d\xa0\x2f\x67\x77\x79\xab\xa0\x22\x8c\xf8\x01\x87\xe2\xfa\x6b\x72\x7d\x9c\x7e\x78\xd0\x84\x1a\x34\xaf\xe1\x4c\x16\xca\xc6\x5e\xa8\x8d\xbd\xd0\xd3\xcc\xd0\x39\xb5\xd6\x61\x99\xdf\x43\x8e\x34\x9f\xd0\x0c\xa6\x6b\xd4\xca\xb1\x75\xac\xbb\x6f\xc2\x3b\x41\xa7\x39\xcb\xa7\x5e\x5c\x63\xb5\xca\x1f\x8f\x7b\xbe\x0d\xe0\x77\x28\x18\x03\xe9\xc6\x68\x3b\x76\x8d\xcc\xb3\x27\x72\x3b\xf0\xf0\x03\xd4\x87\x7d\x28\x42\xa4\xae\x90\xa1\x61\x32\x49\x5f\x22\xea\x2f\xb1\x10\x29\xd2\x61\x52\x9f\xc2\xb2\x46\xb0\xba\x91\xe9\x82\xa7\x59\x16\x22\xaf\x3b\xfa\xf4\x72\xad\x50\xee\xbc\xe1\xdf\xa7\x10\xc0\x20\xce\x55\x6a\xe1\x06\x8f\x27\x34\x61\xe3\x69\xf2\x98\xa5\xd3\x44\x32\x8f\x00\x1f\x9a\x7a\x6e\xee\x6a\x5d\x48\x36\xeb\x0e\x17\x71\x32\x23\xb1\x98\xe1\x9c\xd0\xad\x16\xcc\x4a\x9a\x2b\x94\x86\xc6\x1a\xf5\x62\xb3\x97\x2e\x36\xfb\xab\xb6\x47\xb4\xf1\x82\x8e\x06\x9b\x1b\xa2\x5c\xa1\x87\xc6\x13\xfa\xd7\xa6\xeb\xb1\xd1\x28\x37\x84\x08\x2b\x43\xa6\xfc\xda\x83\x64\x10\xa3\x62\xc3\x73\x5e\x2a\x77\x4b\x39\x33\x2f\xb9\x78\x56\xac\x37\x5b\xc1\x17\xef\x95\xff\x28\xd9\xd3\x1f\x1b\xcd\x49\xb9\x36\x20\xab\x11\x81\x16\x38\xcd\xca\x4b\x7e\x88\x11\x05\xfd\x8e\xe1\xd0\xc0\x15\xf5\x57\xe0\x13\x83\x00\x23\x90\x38\x12\x06\xdd\x63\x4e\xc4\x41\xd8\xc5\x82\xd4\x75\x2e\x69\x62\x5d\x03\xe7\x0a\xe6\xab\x9e\x67\x2b\x21\x74\x70\x3a\xda\xa4\x37\x3c\xfb\xbe\xb8\x81\x06\x57\x98\x04\xc1\x2b\xbd\xea\x13\x12\x04\x3f\x9a\xf3\x5c\x15\xda\xa4\x1a\x01\x5c\x21\x2d\x58\x35\x5a\xa7\xf9\xef\x70\x93\xca\x9b\xe4\x46\xdd\xb8\x74\x2f\xd5\xbc\xc7\x12\x2a\x5b\x7a\xad\x73\xaa\xb4\xd2\x7f\xa7\xa0\xde\x5b\x29\xf1\x82\x3e\x25\x51\x32\x44\x28\xf4\x20\xe8\x7f\x6b\x68\xa2\x76\x8d\x20\x57\xea\x9c\xd5\x81\x06\x5a\x9c\x0f\x26\xc8\x81\x18\xc2\x5a\x91\x62\x32\xee\xf7\x0d\xe7\x18\x5b\x2b\x57\x65\x6f\xc9\x2e\xd3\x5e\x9c\xf3\xaa\xfa\xc0\x6f\x04\x43\x1b\x0d\x35\x19\x26\x17\x10\x41\x97\x4f\x33\xbe\x14\xe1\xf1\x44\xfe\xb7\xb9\x99\xc2\xf7\x86\xdf\x8e\x37\x37\xd3\x75\x52\x5e\xa6\xf9\xb1\x28\x36\xa1\x7c\xb2\x49\x16\x8b\x34\xbf\x0c\xc7\xd3\x8b\xa2\x5c\xf0\x32\x1c\x23\x88\x28\xdb\x5f\xbc\x41\x13\x9d\x6a\xff\xd1\x10\x7c\x70\xa7\x17\xc5\xcd\x71\x95\xde\xc9\x72\x54\x29\xc7\x17\xc5\xcd\xb4\xb8\xe2\xe5\x32\x2b\xae\xc3\x0a\x82\xf7\xe9\x9a\xc3\x64\x2b\x0a\x53\x99\xdf\x02\xbf\x9d\xff\x98\x42\xfb\xfe\x81\x68\xd2\xf4\xae\xc9\x9a\x4c\xd4\x56\xad\x3b\xae\x26\x61\x73\x05\x6c\xc9\xb4\x64\x68\xf2\x0f\x6d\xcf\x53\x6c\xe8\x9c\x4d\x1e\xc9\x6d\x06\xd0\x00\x64\x5b\x5e\xf3\xa5\x20\xf6\x73\xcb\xf4\x72\x25\x18\xfa\x76\xfc\x0f\x44\x2b\xf6\xd5\xb7\x3a\x2b\x24\x13\x5a\xb8\x14\x68\xa5\x7b\xcf\xf4\x0e\x43\xa6\xf7\x11\x4d\x4d\x55\xdb\x91\x3a\xa2\x82\x79\x75\xf2\x15\x91\x1f\xe4\x8b\x98\x19\xd1\x31\x04\x3d\xfd\x95\xf0\xb6\x62\x05\x8a\x5c\x6c\xf3\x05\x86\x38\x4f\x2f\xb3\x22\x01\x8c\x9f\xbd\x5b\xaa\xa0\xe3\xeb\x7a\x3f\x81\x5f\x14\xdd\x1e\x78\x30\xdd\x5a\x5f\x67\xf3\x21\x17\xc9\xfc\xf3\x25\xd4\xf5\x2c\x4b\x37\x0c\x69\xc8\x0d\x39\x98\x72\x52\x34\xfd\x8b\xfa\x5f\x41\xf4\x14\xf6\x97\x12\x64\x54\x18\x88\x66\x39\x0c\x8c\x48\x7b\xde\x75\x71\x73\x4e\xe9\xee\xa2\xb8\x79\x0f\xf3\xe9\x1d\xcf\xd2\x03\x61\xf0\x39\x26\xb4\xd8\xd3\x26\x15\x39\x90\xaf\xd2\xf9\x0c\x24\xeb\x81\x6c\xa5\xdc\x90\x55\x85\xa7\x76\x82\x1c\xc8\x3b\xdf\x53\x35\xaf\x55\x5b\x0f\xb5\x30\x05\xde\x59\x7b\x5d\x7d\xe2\x2c\x46\xbf\xf3\x8b\xcf\xa9\x40\x14\x9d\x16\x77\x88\xa2\x75\x85\x66\xf4\x07\x7e\x60\x94\x54\x57\xd1\x9f\x9a\x1e\xfa\xbf\x70\x0f\xb6\x4a\x2e\x53\x49\x7e\x2b\x00\x18\xf9\x89\xc7\xbc\x11\x61\x90\x4b\x11\xf5\x07\x1e\xf1\x10\x1e\xf5\xee\x9e\x02\x40\xdc\x9a\xa1\x18\x87\xdc\x39\x6e\xe4\xec\x13\x6f\x44\xa5\x4a\x97\x18\x73\xf6\x89\xc7\xf9\x6c\x28\x08\x54\x60\xd5\x89\x7b\x20\xf8\x5c\x4d\xd0\x07\xe0\x29\x96\x17\x39\xaf\x41\x55\x8f\xa3\xc1\xf1\x3c\xe6\xc9\x8c\x8c\x86\xe4\x84\xfe\x4b\x3e\x3e\x3e\x3e\xa1\xff\xe6\x6c\x67\xa9\x8c\xb7\x8e\xae\xd2\x2a\xbd\x48\xb3\x54\xdc\x86\x68\x95\x2e\x16\x3c\x47\xd4\xd0\x1e\x1d\x00\x60\x4f\xb9\x60\xbb\x8c\x0b\xc1\xcb\xf7\x9b\x64\x2e\x69\x09\x1a\x23\xba\x2c\x72\xf1\x3b\x20\xdd\x86\xe8\xeb\xf1\x18\x79\xfd\x27\x44\x13\xc9\xd1\x44\x7d\x70\x81\x75\xcb\x08\x16\xde\x3a\xb9\xc1\x63\x5a\xc6\x8f\x66\xc7\x38\xaf\xeb\x31\x21\x43\x5c\x42\xbc\x09\x08\x2e\x11\x0a\xb7\x68\x73\xd1\xe3\x63\xc6\x90\x02\xd9\x85\xd0\x3a\x93\x70\x4c\x2b\x36\xa6\x73\x36\x56\x00\x7b\x8c\xe1\x32\x42\x8a\x14\xa2\xd0\x2c\x13\x64\x35\xb3\x63\x15\xd5\x2f\x79\xfc\xf5\x34\x19\xb2\x47\x04\x29\xaa\x65\x02\x10\xcc\x87\x36\x02\x48\x3e\x4c\x79\x9c\x40\x50\xd1\x82\x10\x5a\x46\xd8\x96\x66\x32\x1f\xbb\x70\x21\x9a\xe2\xa2\xe6\x4b\xa6\xf4\x41\xf7\x05\xdd\x44\x95\x7f\x88\x7e\x57\xc0\xc1\xea\x3d\x12\xfa\x0d\xe9\x2d\xdb\xa5\x42\x08\x45\x3f\xfb\x3d\x25\x87\xd5\x97\xe5\x33\x63\x06\x91\x9f\x9e\x40\x4c\x8d\xf9\x90\x79\xc3\x07\x97\x73\x9e\x66\x98\xc7\x48\x51\x63\x34\x14\xdd\x09\x2f\xec\x84\x9f\x1d\xa7\xc7\xf3\xe3\xea\x78\xf4\x0d\x21\x72\xd4\xe9\xdc\x8d\x73\xd9\x9a\x3b\xc0\x0f\xd1\x82\xe1\xc1\xe9\xa8\x43\xb6\xb0\x64\x84\x48\x10\x20\xb7\x2d\x36\x02\xb7\xd8\x17\x10\x1d\x4c\x68\x09\x9c\x2b\x4d\x98\xe6\xc7\x4a\x42\x2b\xf6\x65\x2d\x96\x13\xca\x71\x4f\x2d\x0c\xe7\x64\x9a\x30\x24\xb7\x5d\x64\x70\x05\xfb\xdb\x1a\x04\x45\x5d\xab\x8c\x8c\xb1\xa4\xae\x07\xde\x96\x23\x79\x32\x94\xe6\x59\x7a\x20\xf6\x8c\xfa\x00\x40\xa9\x91\x5b\x31\x58\x6b\xbc\xe3\x73\x51\x59\xc8\x34\x1d\xb5\xe3\x0b\x7b\x02\xa7\xac\x52\xc7\xad\xe0\xae\xc8\xe3\x6a\x46\x94\xcf\xb4\xdf\x26\x39\x3a\x43\xb3\xf4\xea\x1a\x17\x7d\xeb\x89\xa6\xb4\xa4\x09\x19\xca\x35\xeb\x06\xb2\x10\xbe\xe7\x89\x67\xfe\x56\x78\xb6\x56\x00\x9c\xe9\xe5\xf3\xb4\xc0\xf3\xaa\x52\xf1\xc4\x76\x85\xa4\x3a\xe2\x36\xdc\x75\xa3\x9d\x82\xc6\x54\xcb\x67\x30\xaa\x48\x67\xb6\x22\x3f\x04\x03\xc9\x23\x34\x41\x61\x0e\xd6\x80\x36\x3e\x4d\xb8\x4b\xf2\x74\x0d\x06\x3e\xaf\x04\x2f\xe1\x02\xac\xa3\x95\x51\x4d\xb6\x5d\xbb\xdb\x65\x9a\x65\x6f\x74\x33\xe4\x6d\xc6\x6f\x7e\x28\x8b\x6b\x73\xfd\x7e\x55\xa6\xf9\x67\xb8\x73\x54\x71\x30\xa6\x97\x65\xba\x78\x5a\xf2\xc4\x5c\x3f\x83\x52\x9b\x77\x2f\xf2\x45\x33\xe1\xbd\x48\x4a\xfb\xf6\x3b\x55\x89\xbe\xf4\xf2\xbe\x2b\xae\x6d\x46\x39\x69\x7e\xb4\x95\x16\xae\x9d\x8a\x0b\x84\x8b\xcd\x2a\x51\x36\x3f\xd7\xe9\xa2\xb8\x86\xab\xbb\x57\x00\xff\x27\xaf\x8a\x62\xad\xcc\x5b\xf5\x5e\x17\xee\xf6\x14\xb6\xc6\x1e\xb3\x04\x65\x5f\xf0\xd5\xa0\xa9\x89\xf9\x67\xeb\x5e\xcb\x36\x5e\x5c\x22\x5a\x41\xa8\x55\x3a\x67\xff\xb2\xb2\x07\x18\xa2\x2b\x21\x28\x5d\xe2\x39\x08\x5c\xbf\x70\x2c\x45\xe6\x44\x4d\x5e\x98\x03\xe0\x1a\xea\xdd\x56\x5e\x4c\x09\xb7\x0c\x83\x00\x5d\x72\x81\x52\xb8\x74\xca\x67\x0d\xf2\x09\xba\x21\xb9\x84\xa2\x22\xcc\x62\x31\x9b\x7a\x9a\x11\x9c\xfa\x30\x17\xb8\xb0\x3b\x56\x2e\x57\x5c\x01\xf8\xa9\x38\x67\x3a\xdc\x52\x21\xe9\x08\xca\x61\x12\x21\xa5\x7d\x18\x40\xa4\x24\xbd\x17\x98\x47\x03\xc6\xd2\xba\x96\x1f\x95\x0f\x01\xe3\xa4\x1b\x49\xa9\x72\x91\x94\x48\x97\xb5\xab\x6b\xa4\x4f\x3f\xc1\x4a\xc9\x05\xa5\x74\xac\x1d\x92\xc2\x9f\xfc\x1c\x86\xd2\x7c\xc5\xcb\x54\xae\x47\xd9\x13\x55\xab\x27\x18\xa8\xe1\x13\xed\xf2\x2b\x07\x12\x7c\x22\xa3\x4c\xa6\x38\x83\x6b\x9a\x13\xe8\x1d\x96\x03\xa6\xc6\xbc\x13\x02\xb8\x11\x6a\x4a\x0f\xa9\x8d\xe7\x67\xc7\xd5\x1f\x48\x7c\xff\x48\x92\xc6\xb0\xf9\xa3\x35\xa6\xb9\x95\x13\x6d\x58\x22\x4b\xbb\x21\x60\x51\xb9\x4e\x32\x1d\xb2\x48\x00\x35\x13\x90\x89\x0b\x29\x1d\xab\x40\x40\x79\x5d\xe7\x11\x4e\x7d\xba\x56\x10\x0a\xf1\xda\xf3\xba\x4e\xab\x97\x92\x04\x71\x9c\x92\x28\xad\xeb\x71\xa8\x00\x29\xac\x3a\x26\x46\x0a\xcd\x1f\x51\xcd\x6a\xcc\xba\x6a\x13\xef\xdb\x58\x9b\x46\x99\x15\x63\xc1\xe6\x1f\xe8\x3e\xea\x06\x17\x33\x91\xcf\xfa\x69\x3b\x3c\xfa\x5e\x0e\x79\x9a\x5f\xba\x2c\x98\x28\x71\x29\xd2\xfb\x66\x49\x42\x08\xd8\xf8\xef\x66\x2c\x47\xc3\x76\x99\x4c\xa0\x9e\xac\x7a\x9a\xaa\x87\x56\x6f\xbb\x09\x1b\x9c\x8e\x1a\x6c\xb8\xdc\xc5\x1c\xff\x08\xb1\x57\x0d\x5f\x49\x2b\x86\x93\xba\x2e\xbf\x78\x3f\x4e\x25\x2d\x28\x23\xbd\xbd\x94\xb4\xa2\x29\x09\x6d\xe8\xdc\x2a\x08\x12\xc5\x27\xfd\x37\x0c\x86\x37\xda\xa9\x9c\x0b\xc7\xba\x16\xb3\x7d\xa9\xfa\x81\x03\xa1\xf3\xee\x92\xd7\x61\xcb\x70\xe1\x98\x51\x30\x39\x57\x11\xd9\xe4\xf2\xa0\x39\xf3\x82\x98\x51\x21\x00\x15\x65\x4e\x8c\x2d\x98\x99\x14\x9e\x28\xcc\x7e\xe3\xf8\x74\xd4\x95\x80\xda\x33\x0a\x36\x35\xcd\x49\x78\xdf\xa1\xf6\x37\x57\x9c\x9b\x31\xbd\xd3\x22\xe3\x4b\x71\x0c\x73\x61\xe7\xde\x09\xc7\xfb\xbe\x79\x71\x7f\x29\x7b\x42\xf4\xe6\xee\xdb\x0d\x2a\x6d\x03\x42\xd4\x28\x18\x10\xa2\x5a\xed\xa0\xf9\xc7\x1e\x0d\xa3\x5d\x2a\x7c\x28\x17\x8b\x3a\x75\x73\x93\xd0\x3f\xb3\x86\x73\xce\xdd\x5e\x92\xda\x9e\x90\x0d\xb9\x71\x15\x3d\x42\x24\x8c\xf3\xd9\xb4\x7c\xfc\x35\x1c\x84\x16\x31\x97\x5c\x6c\x39\x93\x15\xa4\x71\x39\xab\xeb\x34\x2e\x8f\x1f\xc1\xef\xd8\x8b\xa2\xb7\xf7\x39\x72\x1b\xba\xce\xb5\x4e\xd2\x45\x26\x40\x93\xdf\x3c\x08\x6c\xd3\xc4\x7b\xd4\xfa\x2d\xa5\x9f\xfc\x9c\x44\x49\x27\xed\x88\xe4\xea\xc3\x1d\xbb\x6b\x11\x92\x93\xc7\x05\x68\x56\xd3\x58\xc4\xc9\x6c\xe6\x26\x1d\xb0\xff\x72\x43\xb3\xc8\x01\xfb\x76\xcc\xdf\x3c\xf2\xc3\xdd\xe5\x24\x74\x33\x76\x4f\xc0\x9e\xb0\x1b\xb4\x57\xeb\xa2\x3f\x5c\x73\x9e\xb3\x42\xd0\xe2\xa0\x65\x7c\x21\xa8\x24\x9d\x3d\x8e\xc6\x52\x3e\x53\xca\xfa\x8c\xaf\x8d\x0f\xc3\xa6\x2c\x36\x2c\x37\xa6\x77\x55\x9a\x5f\xb2\x42\x6e\x05\xea\xda\x45\x04\x52\xd6\x7f\x10\x6c\xa9\x62\xc2\xd8\x63\x27\xa5\x30\x87\x6c\xd7\xcc\xf8\x15\x18\x73\x6d\x9e\x2f\x58\xa9\x2e\x21\x18\x5f\xda\xda\x65\x73\xb7\xcb\xee\xe9\x7c\x5b\x76\x8f\x02\xd4\x57\x6e\x34\x19\x37\xcd\xb5\xb3\x85\x6b\xfa\xab\xc2\x65\xe9\x63\x57\xff\x1d\xdb\x7c\xf7\x7c\x4f\xcb\x6d\x0f\x32\x0f\xcd\xff\xaa\x32\xbf\x03\x46\x8b\xad\x62\x4c\x35\x18\x71\x51\x31\xc1\x4c\x9f\xc5\x5e\x5f\xce\xcc\x39\x5b\xfb\xc5\x87\x9c\x8e\xe9\xa4\xff\x99\x3e\x3a\x56\xa5\x9a\x73\xba\xe2\x9a\x61\xd3\xab\xc7\xae\xf7\xc9\x43\x31\x74\x77\xcd\xf2\x2a\xc1\x37\xfa\x78\xc6\x4f\x72\xd6\x4c\xca\x61\xd2\x94\x6f\x60\xc0\x83\x00\xf0\x46\x14\xea\xc8\xbd\x9d\x6a\x9f\x2b\x84\x96\x3d\xed\xc8\x10\xde\x24\xf5\x9f\x51\xbf\x3c\xb6\xb3\xfe\x4e\xad\x6d\x5a\x8f\x8d\x8d\xe2\x02\xbc\xac\x6c\xb3\x77\xcc\x6b\xac\xcb\x65\x72\xcc\xd5\x90\x99\x88\x33\x3a\xb3\xda\x1d\xf4\xb3\xa8\x99\x35\xc4\xc2\xac\x5d\xd5\x1b\x2a\x9d\x22\x08\x2c\xab\xa4\xc2\x01\x44\x08\x96\x34\xba\x6a\x35\xef\x6e\xb4\xbc\x81\x3e\xb5\xa5\x77\x52\x30\x27\x61\x6f\xc3\x07\x3e\x61\xbb\xa7\xdd\xbf\x70\x05\xb4\xb7\x21\xed\xb6\x03\x63\x7f\x1d\x5a\x62\xd2\xf8\x00\x78\x36\x04\x30\x52\xf0\xb7\x6a\x74\xb9\x66\x1e\x3e\x14\x1b\xd6\x93\x0c\x9b\xe2\xae\xfd\xad\xad\x0f\x90\x4b\x0f\x12\x1a\x06\x47\x7d\x0d\x34\x5e\x1a\x40\x5b\x76\x52\x28\x4a\xfa\xcd\x87\xf6\xb4\xba\x96\x3b\x56\xf7\xd9\xe8\x9b\x63\xc5\x6d\x14\x15\xe6\x0f\xe1\xf2\xed\x2b\x72\xf2\xc8\x73\x95\x43\xf0\x2e\x92\x55\x2d\x6f\x58\x67\x22\x52\x3b\x30\x6c\xa7\xb0\x16\x52\x41\x13\x41\x2b\xa1\xe2\x40\xa9\x80\x8d\x75\xb5\x2a\xae\xeb\x55\xba\xe0\xe4\xc1\x09\x9d\x0b\x76\xe2\x22\x0d\x3f\xf0\xe2\x3c\x65\x02\x93\x5d\x22\x99\x5a\xb0\x60\x4e\x46\x4a\x49\xa7\x4e\x13\xff\xdc\xf2\x4a\x3c\x35\x32\xec\xcb\x32\x59\xf3\xe8\x40\x3a\xce\x04\x09\x1b\xe8\x3e\x99\x6e\x29\xd8\xe9\x5f\x25\x19\x51\xb7\x22\x9d\x7f\xc6\x7e\xc4\xa0\xad\x70\x6c\xc2\x41\x2c\xa8\xd4\x58\x5a\xcb\xcd\x32\x15\xcc\xb9\x5c\xb9\x82\x36\xa2\x8b\xc1\xbf\x53\xcc\x75\xc8\x95\x97\xbc\x50\x5a\x3c\xbd\x97\xb3\x47\xc7\x82\x14\xb1\xd9\xa5\x87\x38\x67\xb0\xb1\x93\x19\x2b\x62\xa7\x08\xcb\x67\xcc\x87\x53\xc7\xc5\x48\x0b\xc0\xac\xd0\xe7\x50\x72\x43\x75\xed\x58\x8a\x3e\xf3\x38\xbc\x10\x23\x21\xf7\x3c\x5e\x2a\x19\x25\x9e\x91\xd1\xbc\xc8\xe7\x89\x68\x3c\x42\x0f\xd1\x8c\xe8\x28\xa7\x45\x3b\xca\x29\xe0\x5b\x14\x71\x3a\x33\xa0\x87\x82\x72\xab\x6d\x2c\x5d\x13\x16\xa2\xcb\x1a\xc8\x02\x17\x72\x32\xe9\x73\x75\x2f\xe4\xb5\x1f\x16\x7b\xa4\x00\x42\x1b\xbd\x6f\x42\x2d\xc0\x92\x90\x23\xd0\x00\x4d\x4e\x97\xd8\x44\x2e\x1a\x4c\xa6\x4e\x25\x9d\x8a\xba\x96\x83\x4b\x73\x5f\x99\x97\x29\xfa\x2e\x07\x79\x98\xd9\x8d\xe2\x18\xe2\xd4\x4f\x8e\x71\x7e\xe2\x12\x41\x73\xa7\x1a\x9e\xa9\x0e\xaa\xda\x1d\x62\xd2\x65\x97\x94\xdb\x1c\x3b\x66\xa5\xf2\xc0\x07\x31\xa7\x71\x46\x4b\x9a\xcf\x08\x2d\x1f\x4f\x82\x20\x89\xf2\x50\x8a\x12\xdd\x4c\x13\x3a\x9e\x69\x27\x78\x1b\xf3\x9b\x83\xdf\x36\x1d\x4c\x00\x7b\xb9\xb2\x91\xb7\x95\xa7\x35\xa7\x1b\x50\x68\xf8\x96\xcd\x82\xd0\x62\x23\xbc\xb4\xc1\x98\xee\xb4\xe5\xda\x0b\x20\x1f\xe1\x6e\x4f\x15\x21\x09\x3b\x1c\xca\x9e\xe6\x84\x1a\x6f\x34\x2d\x39\xa7\xbc\x0a\x85\x4d\x7c\xa3\x36\xc1\x30\xa7\xb6\x33\x43\xdb\xdd\xa6\xfb\xc2\xdc\xf6\x24\x55\xbd\x14\xc6\x33\xaa\xc3\x10\xca\x7b\xcf\x3f\xda\xa9\x43\x35\x67\x86\x39\xcd\xe4\x5e\x0b\xc8\xea\xfa\x72\xd4\xf8\x02\x98\xc4\xfa\x81\xfa\x00\xdb\xf7\x76\xb4\xb4\x6b\x3b\x2d\x95\x33\x5e\xd8\xb5\x79\x00\x0b\x94\xa8\x35\xbc\x21\x70\xb0\x85\xef\xe1\x3d\x55\xd0\xdc\x83\xb1\x35\x01\xb1\x43\x9f\xab\xa1\x9f\xb8\xf3\xfd\x08\x7f\xf9\xc0\x52\x31\x23\x24\xac\x7c\x50\x4d\x93\xac\x79\x01\x42\xb7\x2c\x83\x6d\x40\xb5\x62\x70\x4f\x38\x04\xc8\x90\x2b\xb5\xa7\xfc\x04\x26\xe2\x92\xfd\x84\x73\x32\xa3\x29\x83\x40\xa2\x4d\xbe\x3c\x55\xda\xa0\x34\x9e\x98\x0c\x4c\x0a\x11\x84\xe6\x03\x88\x37\x87\x21\x34\x72\x4a\x2d\x7e\x0f\x40\x94\x36\xf4\x1d\x25\x28\x38\x94\xa0\x03\x3a\x0e\x62\xdb\x90\xb2\x44\xdb\x1d\xe2\x94\xb8\x32\xca\x19\x4d\x89\x6a\x64\x5d\x63\x5d\x69\x3e\xa3\x80\xa2\x5e\x68\xe3\x4e\x01\x31\x99\xf7\x78\xdb\x3b\xf8\xa4\x49\x92\x1a\x74\xc5\x92\xa7\x8c\x72\x6a\x5e\xb7\x54\xea\x12\x42\x2a\x17\x1b\x02\x02\x91\x0f\x3c\x90\xa9\x5d\x5f\x57\x07\x0f\x08\x64\x65\xea\x0d\x88\xb7\xa3\x6c\x83\x1d\x92\xe7\x3a\xd9\xe0\x2d\x5d\x0a\x9a\x11\x7a\x89\x4d\x53\x81\x9f\x0c\x02\xff\xd6\xc4\x97\xc9\x08\xcd\x1c\xb0\xaf\xce\x61\xee\x35\xbe\xaf\x4e\x95\xd7\xa6\x39\x06\x08\x4f\x23\xfe\xea\x54\x79\x6d\x29\xa6\x4e\x53\x77\x76\xb7\x5b\xfb\x31\xd6\xe6\xd4\xd0\x8c\x24\x4f\xd7\x61\x46\x15\x5a\x82\xff\xc9\x92\xbc\x66\xfb\xbb\x91\xdd\x5e\x9d\xcb\xc4\x42\xd0\x9d\xd9\x27\xc2\x1d\x7a\x88\xc2\xb8\x67\x2a\x6a\xe1\xc5\x2d\x73\xe5\x06\x6e\xe2\x76\x72\x9c\x6b\xee\x8a\xba\x53\x33\x49\x70\xf2\xfd\x6c\x4f\x75\xf1\x2d\xf1\x13\x70\x5a\x35\xb0\x81\xda\xa0\x42\xce\x1c\x22\xff\xd4\x37\xe2\x19\x83\xc3\x5c\xcb\x78\x38\x67\x30\xeb\xfc\x7d\x2e\x9f\xb1\xe6\x2d\x04\xba\x69\x26\x59\x68\x11\xa1\x0c\x2d\xf5\x04\x6b\x7e\x76\xc7\xea\xc5\x06\xbd\xd5\x0a\xb5\x14\xce\x51\x8d\x9a\x4d\xde\xd1\xa5\x72\xed\x5b\x48\x79\x79\x65\x14\xc4\xf4\xa2\xa1\x5f\x06\x1b\x1c\x17\x5a\x8e\xa2\xe5\x8d\xe4\xa9\x90\xfa\x5c\x30\x1c\xce\xd5\x90\xd5\xb5\x0e\x10\x09\x0b\xb3\x89\xa9\x02\xa0\x30\x64\xb4\xcd\x21\x75\x11\x04\x38\xb1\x37\x6c\x4c\x2b\xb9\x42\x2d\xd0\x09\xf5\x6f\xfc\x2d\xd6\xbd\x53\xd7\x15\x96\xb2\xb5\x4b\x19\x0e\xe9\xb2\x6f\xd3\xee\x4d\x74\xaf\x1d\x1f\x53\x87\x12\x03\xad\xd4\x83\x56\xd7\x49\x13\x7b\x05\x00\x78\x09\x15\x96\xa0\xcd\x68\x65\x63\xa4\xc1\xf6\x6f\xec\x5f\x80\xb2\x48\xe1\x18\x29\x26\x14\x14\xa7\xb4\x60\x8c\xe1\x8b\x08\x49\x66\x14\x85\x48\x75\x22\xbc\xa7\xae\x07\x4c\xca\xe9\x83\xb5\x17\x4d\x60\x2d\xa9\xda\xbc\xc8\x45\x9a\x6f\xf9\xf4\x82\x0d\xc6\xfb\x85\xa4\x47\xeb\x20\x58\x83\xc6\xc5\xa9\x1d\x4a\xb2\x4f\x97\x18\xcf\x59\x0f\x16\x19\x01\xd9\xa4\x99\xba\x20\xce\xf0\x7b\xd3\x06\x10\x0b\x02\x9c\x8f\x8c\xd9\x0b\x8b\x57\xf6\x9a\xba\xcb\x8f\xde\xf5\xa7\x19\xd5\x23\x9f\x41\xdb\x4c\x58\x76\x49\xdc\x32\x37\x73\x9c\x06\xd6\xc5\xc0\xc7\xdb\x1e\xf8\x07\x78\x2f\xda\xb2\x2c\xc4\x2b\x15\xb7\x7a\x30\xf6\x8e\x30\x1c\xbe\x44\x46\xfb\x5e\xa7\xea\x25\x39\x5a\xd8\x3b\xea\xdb\xd6\xb5\xbe\x3b\x56\x27\xee\x32\x4d\x49\x68\x03\x96\xf5\x02\x52\x2c\xb3\x22\x81\x68\x1b\x70\x64\xb2\x54\x64\xd1\x9f\x48\x2b\x1b\x81\x3e\x03\x48\x4a\xe8\x85\x0c\xb0\x0d\xec\x23\x9a\x31\x5b\xf2\x36\x42\x28\xdc\x12\x42\xdd\x8b\xcd\x36\x81\xa3\x8e\xe9\xd7\x20\xc0\xae\x93\x99\x35\x1c\xe8\x9d\xd2\x5e\x46\x57\x40\x3c\x9e\xf9\x43\xe6\x3f\x99\xf8\x4f\x3e\xf9\x4f\x1e\xcd\x60\xa2\xcf\xd9\x60\x42\x17\x44\x7e\xf8\x3a\x32\x75\xa7\xf9\xd1\x3a\x08\xf0\x05\x5b\x6b\x09\x89\x84\x6b\x1f\xbb\xc9\x50\x07\xba\x33\xd6\x0d\xd9\x9e\xd0\x34\x08\xb0\x79\x81\x0d\x2e\x08\xbd\x08\x02\x6f\x60\x7b\xfa\xd5\xce\xcd\x8b\xba\xd6\xa3\x49\xfd\xc0\x64\x86\x08\xd1\x85\x07\x53\x51\x52\xb9\x3a\x88\x6e\xfd\x52\xe0\x8b\x48\x2e\x93\x70\x4c\x4b\xba\x24\x14\xca\x5b\xcb\xcf\x91\x6b\x68\xae\x15\x2c\x17\xe0\x81\xc4\xf3\x85\x4d\xd1\xbf\x6c\x4c\xc8\x7e\xe6\xe8\x6d\x1b\x6b\x2a\x6a\x4a\x11\x86\x46\x73\x12\x36\x1f\x00\xf3\x67\x4c\x4f\xab\x0d\xe7\x8b\x4e\x68\x14\xc5\x72\xf2\x20\xe8\x83\x2c\xf3\x19\x6a\x4e\xc2\x9d\xd9\x82\xc3\xbc\xae\x07\x79\x10\x88\xba\xbe\x04\xfb\x62\xee\x58\x5e\x6e\x98\x6a\xf5\x5c\x04\xc1\xe0\x12\x2c\x10\x85\x87\xfe\xbd\xbc\x19\x15\xcb\x65\x54\x5a\xf6\x98\x8d\x43\xef\x48\x4d\x37\xc0\x3d\x06\x10\x0e\x73\x23\xfb\x52\x49\xe0\xf2\x8b\x2a\xbf\x14\x2f\x39\x76\xc9\xb3\xb0\x3f\x8b\x65\xf7\xcd\x01\x5f\xa9\xc8\x71\x10\x40\xd0\xaa\xd2\xee\x2d\xfa\x0a\x40\xa1\x08\x2d\x47\x45\xb6\x60\xa5\x65\x48\xa8\xbb\xf4\x77\x0c\xc9\x66\x15\xd9\x82\x04\x01\xfc\x3a\x4d\x99\x2c\x41\xd7\xd3\xc2\x5e\xd2\xe9\x64\x2f\xd9\xf5\x86\x42\x7a\x99\x2c\xf8\x87\xe2\xb0\x03\x39\x70\x1c\xda\x5a\x3b\xe3\x04\x88\x88\x3d\x27\xa7\x63\x83\xea\x20\x27\x9b\x14\x30\x81\xb3\xe1\xd8\x1e\xbb\x8b\x3d\xe5\xda\x4f\x5d\x3f\x3b\x74\x24\xc8\xda\xd4\x9c\x2b\x1c\x33\xe8\x51\x85\xf6\xdb\x80\x15\x37\x36\x56\x0b\x1d\x62\xaf\x39\xa5\x68\x4a\xa6\xb8\xb0\xa1\xfc\x21\x06\xdf\x32\xcd\xd3\x6a\x05\x94\x58\x00\xd7\x89\x07\x63\x62\xe7\x4e\x32\x52\xcf\x59\x42\xe5\x96\xa5\xa0\x01\xa1\xd7\x3c\x80\xbd\x44\x6b\x3d\x55\xd7\xea\xe7\x34\x21\x6d\x19\xa8\xb1\x06\xfa\x2c\x89\x65\x76\x63\x5b\xaa\xee\xa8\xc0\xb9\x6d\x4d\x3f\xfc\x94\x72\x4b\xf7\x21\xa8\x84\x0e\x74\x67\xfc\x28\x3a\xc8\x59\x07\xbc\xd5\x55\x33\x06\x00\x51\x63\x5d\x16\x1a\x88\x55\xd0\xf7\xc0\xe2\x56\xe0\x6e\x6c\x55\xd3\x4a\x7c\x53\x01\xce\xe4\x5f\x68\x7c\x10\x94\x10\x3d\x8d\x38\xec\x59\x70\x43\x4e\xba\x19\xe7\x96\xbf\x70\x2f\x29\x01\xd0\xfa\xa5\x15\x60\xc6\x26\x5f\x91\xdc\xac\xf6\xda\xb1\x4a\xd4\x20\x80\x47\xd0\xd6\x01\xe0\x73\x62\x48\x90\xf3\x4b\x0d\x6b\x4e\xa8\x90\x84\x3e\x35\xb1\x2e\x0b\x3a\x21\x64\x3a\x10\x41\x90\x4b\xfe\xa2\x0f\x96\x4c\x0d\x7e\x8f\x56\xcf\xf4\x2f\xb6\x70\x5f\xf7\x76\x2a\xcd\xfd\xce\xa2\x25\xcb\x63\xd3\xb1\x68\x06\x88\x40\xcd\x7e\x9e\x35\x3b\xba\x8c\x4a\x27\x28\xab\x58\xc7\x7a\x5a\x0e\xc6\xb4\x05\xef\x26\x87\x17\xb0\x02\x54\xc7\xaa\x5f\xcf\x0b\x58\x6e\x43\xc2\xf5\xaa\x50\xbd\x2a\x54\xaf\x6a\xbf\x23\xd9\x99\x42\x77\xa6\x72\x0c\x81\x23\x4f\xaf\x33\x65\x29\xb6\x23\x05\x74\xa4\x52\xb7\x8d\xa7\xe2\x71\x02\x8e\x35\x65\x2c\x66\x41\x20\xff\xea\xc6\x36\x6e\x3c\xfa\x64\x66\xbc\xf9\x28\x87\xca\xa8\x8e\xcb\x35\x6b\x49\x15\xf3\x48\x15\x5b\xd9\x39\x34\x37\x58\x77\xcb\x3c\x16\xb3\xa9\xfe\xf5\xf7\x9f\x86\xd1\x90\xd2\x55\xd7\x75\x2f\xa6\x4d\xde\x6f\xf5\xad\x16\xb9\x21\x66\x1b\x81\x05\x74\xa6\x2a\xb9\x11\x01\xa5\xca\xd2\x05\x7f\x5e\x5c\xe7\xe1\x46\x68\x9e\x97\x50\x48\xfc\x75\x03\x49\xf0\x09\x3a\xe9\x83\xc2\xdb\x91\xc9\xfa\x4b\x09\x95\xf4\xf7\x55\xee\xec\x94\x54\x19\x7b\x48\x7f\xb3\x15\xde\x03\x28\x49\x3d\xd0\x05\xb9\x67\xba\xb8\xfd\x17\xf8\x65\x74\xa9\xbb\xf9\x4e\x61\x48\xb5\xfa\x40\x35\x27\x59\x3c\x73\xca\xdd\x36\xf5\x05\x6f\x2b\x38\xcc\x56\x99\x15\xc4\x91\xaf\xc2\x9d\x8a\xc7\xb9\x1f\xa9\x14\x73\x06\xce\x07\x58\x7b\x21\xa8\x05\x9c\xdb\xf9\x75\x7c\x4c\x27\x64\x9a\x5b\x79\x45\x2b\xc4\x8b\x0d\x06\xdd\xb0\x56\x14\x7b\x02\x38\x6b\x9e\x74\xa8\x76\x18\xfe\xc4\xe8\xd3\x93\x12\x02\x56\x35\x74\xd6\x6c\xf2\x95\xf7\xb8\x21\x91\x89\xba\xc6\x09\x90\xc7\x4c\x60\x62\x5e\x04\x75\x45\x23\x9b\xb2\x0d\xa7\xde\xc6\xcf\x76\x55\x56\x5c\x87\xdf\x8e\xc7\x74\x99\x54\x22\x7c\x34\x1e\x3b\xe5\xff\xd7\xe3\xb1\xde\x7c\x17\x5c\x32\xc9\x07\x7c\xc8\x64\x71\x10\xb6\xdc\x32\x1c\x7c\x56\xd7\xb2\xab\x35\x10\x28\xf5\x48\xbd\x7f\xfe\x2f\xdc\x5e\xda\x50\xb6\x0b\xca\xc9\xb4\xec\xb4\x3f\x57\x16\x43\x26\x57\xa1\x3d\x09\x3b\xc7\x9b\x87\x90\x3b\xfa\x40\x3d\x54\xe4\x16\xf4\x17\xa0\x20\xea\x9c\x0f\x11\x32\xd5\x31\x35\x90\x81\x7c\x42\x06\x9f\xe3\x4d\xce\x90\x72\x0e\x80\xa0\x8c\xf4\x74\x54\x6c\x84\x0a\xde\xce\x17\x4c\xe8\x10\x31\x7c\x41\xf1\xe1\x06\x12\xf5\x2e\x43\x02\x99\x80\x3b\x1a\x56\x84\x9e\x8e\xe0\xe2\x37\xf3\x9c\xd9\x9a\x8c\x39\xf8\x4a\xd0\x0b\xc1\x74\x1c\xf1\x44\x88\xf2\x47\xf0\x09\x9e\x36\x98\x27\x99\x7e\xef\x71\xfe\x1d\xbc\x7a\xf0\xb4\x9c\xba\xd0\x21\x7f\x07\x56\xd3\xbd\x75\x10\xde\xb6\xd3\xb2\xe6\x81\x81\x13\x8b\xe5\x76\xfe\xd5\x00\x80\x27\xfe\xa9\x7e\x1e\xc9\x1f\xd2\x89\x5d\xcf\x9a\x68\x50\x36\xe8\x40\x74\x07\xfa\x53\x63\x25\x80\x35\x8a\x45\xc3\xab\xbd\xae\xb1\xe4\xef\xa0\x1b\xd5\xc1\x75\xcb\x37\x10\xce\xdc\xbd\x90\xed\x92\x56\x1b\x73\xb0\x68\x25\x42\x0b\xa5\xe1\xa3\xbd\x03\x65\x67\x79\x04\x69\x8d\x5e\x01\xa4\xf8\xc2\x19\xb2\x15\xbe\x49\x5f\xc9\x0a\x6b\xc8\x26\x08\x89\xca\x10\xf3\x26\x80\x8c\xa0\xf9\x10\x21\x22\x3f\xa7\x70\x06\x66\x85\x11\xab\x55\x11\x06\xfb\x40\x16\xa0\x15\x05\x25\xd3\x60\x03\x89\x69\x04\x89\x34\x48\x3b\x30\xc0\xe6\xf3\x43\x15\xe9\x7e\xd7\x86\xfc\x57\xa6\xc1\xfe\xdc\x0c\x02\x3d\x63\x15\x20\x2f\x84\xd5\x31\xb3\x5b\xef\x83\x7a\xde\x4e\x1d\xbe\x44\x0f\x9c\x8e\xc6\x29\xd6\x79\xc1\x2d\x0d\xec\x59\x7b\xe7\x5f\xfb\xa0\x0d\x9c\xda\xac\x42\x50\xb2\x7f\x1d\x70\x76\xe5\xc0\xc9\x8a\xb8\x04\x9c\xa1\x6e\x4c\x9c\x1c\xe6\xe7\xaa\x73\x62\xeb\x63\x87\x03\xcf\x2d\xa2\xd6\x48\xe6\x24\x6c\x7d\x53\xae\x54\x9a\x36\xaa\x5e\x77\xe6\x28\x10\x54\xdd\xe6\x93\xb3\xeb\xe1\xc9\x25\xe9\xe7\x22\x2e\x84\x36\x2a\xb4\xe3\x36\x85\xa4\xa6\x38\xdb\x40\xc8\x6c\xcd\x5d\xeb\x95\x20\xf9\x50\x59\x5e\x32\xa3\xf0\x17\xd4\x63\xda\xbe\x53\x97\x12\x25\x30\x55\xf4\xf3\x94\xd0\xc2\xba\x27\xae\xf5\x11\xaf\x8a\x00\xa5\xc8\x5b\x6d\xc2\xd8\xd4\x2a\x94\x1d\x40\xe1\x9d\xea\x8c\x49\x2d\x9f\xc8\x24\x77\xe2\x7b\xe9\x79\x27\x61\xee\x47\xd6\x9f\x11\xed\x60\x78\x84\xbc\x63\xd5\x2b\xd1\x08\x8c\xe1\x2f\x6b\x6d\xb4\xe2\x23\x2f\x65\x49\x05\x11\xcc\x91\x67\xa8\x7d\xeb\x97\xd0\x3c\xff\xe0\x24\xe2\x61\xaf\x07\x71\xb3\x65\x4d\x60\xc3\x4d\x37\x7c\x71\x9b\xa4\x2a\xcb\x81\xfb\x49\x6a\x2b\x0a\xf2\x5f\x90\x54\xcf\xc9\x2f\x56\xe5\xbf\x4c\x6f\xd4\xb6\x3b\xeb\x90\xd6\x4e\x0b\xff\x3b\xd2\x7a\x74\x80\x50\xca\x4d\xc7\xb4\x40\x4e\x4d\x01\x01\x32\x3c\x9b\x9f\x59\x83\x0a\x7e\x39\x95\x53\xa6\x87\x5f\x48\xd1\x64\x66\x40\x5d\xde\x18\x8a\x95\x5c\x28\x8b\xef\x7e\xeb\x97\x16\xe5\x43\x22\xb9\x00\x83\x63\xcf\x7b\x3e\x02\x73\xc4\x57\xb9\x64\x48\x26\x63\x12\xae\x85\x89\xea\x64\x62\x40\x91\xba\x3e\xed\x26\x42\xf0\xb9\x92\x2f\xa3\x71\x78\x3c\x91\x44\x4b\xf7\x4e\xb8\x5b\x16\x65\x88\x56\x62\x9d\xbd\x2c\x4a\x44\x61\x7e\x86\x6a\x9a\xca\x17\x91\x1c\xb6\x06\xdf\x00\xbb\x8c\x67\x47\x62\xd8\x89\x03\x9f\xc4\x7d\x87\x6d\xdf\xc1\xb7\x11\xbe\xc0\x8f\x5d\x60\x4a\x84\x9e\xa2\x8a\x3b\x6c\x5b\xa8\xf4\x94\x2d\x82\x00\x8b\xd6\xcb\x5f\x5a\x4b\x4b\x80\xd2\xa3\x84\x28\x2a\x79\xb2\x78\x93\x67\xb7\x88\xa2\x75\x72\xf3\x1a\x16\x08\xa2\x68\xce\xb3\x4c\x7b\x62\xe9\xbb\xb7\xda\x18\x82\xa2\xb2\xb8\x7e\xbf\x49\x72\x99\x5e\x64\xfa\x6a\x5b\xf1\xd3\x64\x83\x28\x5a\x96\xc9\x9a\x7f\xaf\x0d\x60\x8d\xff\xc6\x8b\x85\x8a\x9e\xdd\x10\xd2\x24\x8b\x62\x67\x30\x44\x01\x69\xec\xf5\x20\x77\x76\x0c\x23\x93\xc5\xe2\x19\x0c\x60\x8f\xd1\x9b\x1f\x30\x4d\x59\x40\x5e\x62\x67\x1b\xd1\xb7\xa4\xa5\xe4\xa3\x61\x46\x4d\xc1\x98\x7b\xa2\xb1\xa0\x57\x5a\x42\x27\x26\x28\x16\x16\x0c\x88\x99\x0d\xe2\xae\xf7\x34\x20\x0a\x73\x03\xd8\x57\xb0\x2b\x81\x73\x30\x68\x90\xbc\x87\x77\xba\x80\x8e\xd0\xf0\x52\xb2\xd1\x43\x49\x63\x35\x6c\xc2\x78\x9a\x32\x11\x27\xf0\x76\xe9\x4c\xf0\x8f\xd0\x30\x85\x6c\xe0\xf5\x5f\x0e\x99\xba\x9b\x16\x72\x29\x56\xec\x12\x40\x78\xb5\x85\x5b\x87\x02\xd3\xca\x06\x6e\x52\x11\x29\xb4\xcb\xea\xff\x91\xde\xf3\xca\xfe\xab\x0e\x1c\x74\x42\x28\x34\x84\x4c\x49\x18\xcc\x17\x20\xf4\x7f\xa7\xcb\xa1\xbc\xbe\x7e\x7f\x72\x3c\x99\x92\x92\x95\x36\x16\x94\x7d\x44\xff\x37\x06\x42\x49\xe1\xed\x81\xf0\x4e\x6f\xf5\x0e\x48\x4b\xdf\x2c\x39\xaf\xeb\xf6\xc6\x69\xb4\x80\x5d\x95\x85\x08\x82\x32\x12\x4a\x23\xe9\x66\xb6\x56\x58\x34\x06\x8b\x84\x70\xb4\xdb\x37\xbe\xb9\x1b\x5f\xaf\xc9\x8d\xf1\xcd\xed\xf8\x42\x90\x6c\x39\xc6\x07\x60\x7e\xd5\x2c\x53\x16\x12\xe9\x12\x97\x2a\x06\x21\x1b\xd3\x94\xe9\x4a\x68\xa2\x86\x79\x2a\x58\x12\x17\x6a\x58\x47\xab\xa4\x52\xb5\x0a\x12\xa5\x8d\x96\x0b\x12\xa6\xee\xdb\x84\x56\x29\xba\xb0\xee\xe0\x21\xa0\xfa\x45\x47\xf7\xc3\x82\xd9\xd9\x18\x04\x1e\x32\x1a\x3a\x3f\xb7\xdb\xc1\xf9\x39\xb2\xf1\xbe\xab\x06\xa3\xd3\x49\xb2\x03\x2c\xb4\x22\x98\x47\x08\x85\xbe\x2a\xb9\x59\x2e\xf0\x44\x44\x87\x6d\xd1\xdf\xd5\xbf\x12\xd9\x58\x2b\xcf\xe4\x7c\xe3\x72\xbe\x99\xe9\x5e\x9a\xe9\xde\x9e\xe4\x58\xcf\x72\x58\x04\x6a\xa6\xdb\x09\x2d\x00\x2f\xd4\x40\x39\x4e\x2d\x78\xa3\x0e\x37\xfa\x54\xb0\x93\xb3\xf2\xe4\xb2\x29\xb4\x5e\x25\xd9\x21\x32\x61\x42\xc8\x58\x9d\x78\x6b\x45\x47\xb8\x64\x72\x56\xf5\x2a\x40\x35\x17\x54\x4c\x3b\x61\x8e\x82\xc0\x1c\xa2\x17\xac\x8c\x9a\xd3\xcc\x4c\xc4\xab\x24\xc3\x84\x84\x9c\x44\x05\x43\xc8\x9e\xd9\xb8\x99\x5f\x44\xc5\x50\x3e\x69\xae\x95\x42\x19\xd9\x28\x63\x91\xa2\x37\xf2\x95\xd6\x00\xca\x21\xe4\x43\x84\xe0\x24\x0d\xb8\xac\xab\x24\xf3\xcc\xa8\x35\xe6\x4e\x3b\xb9\x3f\x3e\x25\xd8\xe5\x68\xb6\x4b\xf8\xc1\xa0\xdd\xdc\x2b\x28\x02\x61\x0b\x9c\xac\xa0\x28\x25\x7b\x15\xea\xcc\x3d\x2c\xa2\x66\x23\x8a\x9e\x16\x14\xf7\x55\x7f\xd9\xad\x1e\xe7\x4c\x19\x91\xbb\xca\x49\x94\x77\x99\x70\x9c\x33\x8d\x2b\x48\x22\x1b\x5a\x06\x3f\x05\xfc\x7e\x2d\xcc\xe6\xb2\xbf\x72\x83\x32\xd7\x60\x80\x4d\xf3\x42\x03\xa3\xfd\x65\x2c\xa1\x6e\x90\x1f\x8f\x7b\x00\x26\xcb\x97\x02\xeb\x90\x64\x1c\xfc\xc6\x14\x7f\x73\xa0\x54\x3d\x51\x0d\xf6\x72\x05\x1c\x77\x93\x75\x4a\x98\xd6\x43\x1d\xeb\x03\x6a\x1d\xf9\xb5\x62\x09\x28\x0d\xc0\x54\x8e\x25\x51\x3a\x9c\x84\xd6\x0c\x53\x79\x50\xa4\x8f\xc7\xd1\x3c\x4c\xa2\x14\x0c\x49\xe7\x60\xe0\x22\x37\x2a\x0c\xb2\xad\x85\x8c\x91\xac\x64\x09\x90\xc9\x41\x30\xc8\x2d\x04\x4d\x10\xe0\x41\xee\x73\x6a\xe6\x41\x5d\x0f\x5e\x60\xff\x09\x45\x06\x46\x1a\x11\x13\xcd\xee\x0e\xe7\x7a\x19\xd0\xc4\x6e\x9d\x53\xad\xcb\x14\x76\xab\xa9\x3a\xbe\x57\x1d\x28\x7d\xbf\x73\xe4\xca\xf8\xcc\x8d\xa7\x88\x6f\x78\x9a\x1c\x1f\x4f\x09\x06\xa3\xd3\xc4\xfb\x32\xe6\x42\x13\xb9\x99\xa8\x0b\x54\x80\xfa\x84\xa6\x40\x77\xe0\x44\x6a\x30\x76\x23\x0a\xc1\xb0\x1b\x63\xc1\x8e\x27\x10\x66\xa1\xc1\xa4\x6a\x1d\x9c\x53\xfa\xb5\x99\xc7\xc6\x0a\x9c\x75\x55\x06\xd0\x61\x1d\x27\x18\x2b\xc6\x9a\xe0\xb0\xde\x87\x60\x6e\xba\x16\x48\xe6\x7e\xef\xf4\x8c\x20\x14\x34\x6b\x84\x88\x30\x07\x29\x49\x27\xc8\xb0\x9e\xd8\x11\x2a\x72\x14\x1a\x35\x22\xb8\xfe\x9c\x8e\x74\x30\x77\x86\x8a\xdc\xc4\x75\x4f\xf3\xa3\x1c\xc8\xf3\xb5\x96\xe4\xf5\x03\xf8\xa9\x4d\xb8\xf7\x8b\x6c\x5b\x92\x07\x27\xf4\xae\xd9\x92\x3e\x30\x84\xa9\x5d\x9a\x3a\xbe\x21\xdd\x75\xe1\x5f\xc0\x49\xce\xa2\xf8\x35\x31\xfc\x2e\x58\x5c\xd6\x75\x32\xa3\x6b\x13\x45\x56\x4a\x70\x10\xc4\x58\x47\x3d\x0e\x39\x3d\xf5\x9e\xd9\xb8\xdd\x90\xc1\x81\x6a\x39\x04\xbe\x30\x56\x18\x64\x6c\xc1\xe6\x0c\x40\x79\x13\xfa\x55\x23\x32\xa8\x12\x8a\xfd\xfb\xc1\xb5\x16\xfe\xd6\xc3\x0e\x36\x26\x01\x6b\x0b\xcb\xc8\x8d\x80\x85\x0b\x02\x7c\xca\xd6\x5e\xad\x74\xcd\x4e\x47\xca\x64\x41\x76\xbe\x42\x01\x24\x74\xcb\xbc\x57\x43\xc5\x75\xcb\xc1\x1a\xae\x29\xe6\xec\x1e\x40\x9f\x35\xed\x31\x5e\x08\x02\xc9\xb1\x5a\x80\x5a\x56\x44\x8f\xc2\xaf\xa8\xd7\x0d\xec\xd4\x21\x4a\x52\xee\x81\x8e\x31\x2f\x53\xd4\x8b\x23\x78\xfa\x97\x38\x82\x4a\x81\x64\x30\x6a\xf4\x81\x08\x35\xa8\x29\x2a\x1c\xbd\x82\x42\x29\x89\x17\x83\x2e\xe6\xb3\xb0\x41\x0a\x28\x98\x9f\x2c\x3b\xe0\x73\x6b\x15\x3f\xae\xa8\xeb\xc1\xd2\x74\xbf\x46\x89\xb3\xf7\x36\xfa\x96\xd0\xc4\x6b\x50\x00\x16\xa0\x01\x3b\x0a\x82\xc1\x15\x2e\x2d\xd6\xe3\xb2\x01\xae\x58\xd7\x6b\x6a\x06\x3a\x1b\xae\x01\x77\x8d\xf9\xb1\xd1\xc8\xb4\x9a\xb6\x52\x2e\x14\x11\xac\x20\xdc\xea\x74\x0e\xc1\x39\x9a\xc1\xb8\xea\x3a\x21\x41\xa0\xf3\xcd\xfd\xd0\x5c\x75\x3d\xd7\x45\xfd\x9e\xe6\x8b\xe2\xba\xae\x73\xb2\x57\x21\x52\xc7\x53\x5c\xb1\x8b\x38\xd5\x18\x73\xfc\x20\x64\xdd\x82\x55\xe6\x04\x21\x7d\x32\x89\xb2\x70\x69\x01\x22\xe5\xe7\xe0\x8d\x01\xfb\xeb\x20\xfd\xa9\xb7\x66\x06\xda\xa8\x32\xf0\x83\x60\x85\xb0\xd1\x1d\x09\x40\x34\x78\xc3\xb6\x41\x50\xc5\xdb\x99\x7b\x12\x04\xbf\xe0\x4a\x39\x8f\xea\xf1\x6e\xbc\x62\x41\x78\x0c\xcc\x51\x1b\xa3\xc5\x45\xc8\x55\x8d\x5f\xcb\x71\xe5\x3d\xc0\x2f\x98\xd4\xf5\xd2\x5a\xad\x68\xa3\x02\x97\xa0\x2b\xbd\x18\x6d\xe0\x20\x4e\x90\xba\x1e\xfc\x82\x4b\x52\xd7\xdb\x20\xb8\xc4\x65\xbc\x86\x0e\xbc\x82\x20\xbe\x18\xcf\x59\xa9\x3e\x03\xcb\x5f\x98\x83\x0e\x70\xd4\x2e\x69\xb6\xa6\x87\x7a\x3c\x08\x16\x5d\x90\xd4\x35\xbd\x13\x84\xca\xba\x00\x29\xf9\xf0\x9b\x7d\xd8\x4b\xea\xe5\x6e\x1b\xf4\xfa\x99\x9b\xb6\xce\x21\x00\xa4\x85\xc9\xab\x34\xf0\xcb\x01\xcb\x0e\x4b\x78\x3d\xa2\x41\x73\xba\xd3\x24\xb3\x81\xd3\x33\xde\x93\x69\x1b\xa0\xb9\x54\xd1\x07\x05\xe9\x04\x8c\xed\x23\xe0\x7f\x79\x2e\xd4\x2c\x5c\xb6\x54\xd8\x70\x9d\x3a\xf5\xc7\x0e\x14\x77\xd3\xb8\x58\x32\xff\x9e\xc7\xf9\x51\x5f\xa1\x39\x84\xaa\xdd\x7b\xdb\x9b\x72\xc5\xfc\x6f\x30\x4c\x54\xcd\xcd\x33\x5c\x4d\x90\x74\xd7\x61\x61\xa9\x1b\x6d\x22\x70\xaa\x9d\xaf\x85\x02\xde\x03\x81\xa2\xc6\x4a\x79\x18\x36\x69\x86\x62\xd4\x9d\xad\x9f\xa4\x68\xd3\xa2\xae\xcb\xee\xec\xe3\xea\xb3\xa9\x9f\x97\xe2\x02\x62\x9c\x4c\x20\x24\xaf\xc2\x3a\xfd\xef\x2b\x3e\x9e\x4c\x8b\xa8\x51\x7c\x41\x42\x5c\xf6\x4e\x67\xd7\x1a\x6d\x3e\x08\xb4\x78\x6f\x4f\x13\xce\x05\xcb\x47\x59\x31\x57\x1e\x22\x6f\xfc\x13\x79\xfa\x41\x4a\x85\xd1\xc9\xf4\x6e\x04\x0a\xd9\x8f\xa7\xaf\xbb\x16\x4a\xa0\xcf\xe1\x75\xdd\x63\x87\x44\x3c\x66\x08\x82\x77\x0a\x06\xd3\x3f\x1f\x3d\x7f\x73\xfa\x56\x96\x58\x12\x55\xf2\xcb\xb2\x58\xbf\x87\xf7\x81\x9f\xe0\x37\xe2\xe4\x66\x9d\x21\xa2\x23\x73\x42\x88\x7d\x2d\x5f\x38\xed\xea\x00\x04\x18\x7d\x94\x5b\x7d\x7f\xfb\x21\xb9\x94\xf2\x0f\x46\x50\x64\xc9\xcb\xb2\x28\x3d\x7b\xe6\xbb\x11\xa4\x60\xf4\x2a\xbf\x4a\xb2\x74\x71\xf4\xf1\xf4\x75\x28\x65\x6b\x42\x85\xf2\xa0\xbb\x91\x9f\x1b\x9f\xcd\x1e\x9c\xd0\x9f\x41\x1e\x8e\xce\xf2\x93\x4b\xfa\x5a\x33\x5f\xd5\xf6\x62\x9d\x0a\x7d\xc0\x52\xa7\xeb\xe4\x92\xd7\x25\xaf\xb8\xa8\x97\x69\xc6\xe1\xc4\xe5\xc5\xbd\x47\x33\x9f\xf9\xed\x25\xcf\x89\x7f\x0c\xf3\x5e\xb4\x6c\xdb\x7a\x9d\xb6\xf5\x92\x69\x9e\xe0\x17\x64\x97\xd7\xb5\xc1\xa9\xe6\x24\x92\x63\x5d\x90\x50\x16\x39\x44\x31\x1a\xf6\x00\xa0\x58\x35\x7e\x11\x89\x10\x49\x6e\x61\x86\x68\x61\x03\xfe\x1b\xbc\xfb\xbc\xae\xcd\xbb\x03\xc6\xae\x81\x65\xd6\x30\x72\x0d\x9b\x2d\x41\x6c\x65\x05\x14\x25\xe2\x62\xa6\x4a\x83\x29\x93\xac\x59\xff\x59\x21\xc4\xf8\xec\x5b\xde\x00\x19\x29\x30\x09\xc5\xb4\x8c\x8d\x7d\xd3\x8c\xf1\x7c\x5e\x2c\xf8\xaf\xef\x5e\x3d\x2b\xd6\x9b\x22\x57\x08\x8a\x43\xc4\xd0\xb0\xe7\x89\x2f\x95\x92\x3d\xd0\x28\x25\xd7\x9b\x93\x6a\xd4\xed\x64\x88\x75\x36\xfa\xe3\xcf\x2d\x2f\x6f\x75\xa0\xf5\xb7\x59\x92\xe6\xd6\xc0\xd0\x8c\x41\x33\xde\x45\xa1\xc4\x75\xc9\xaa\x51\x27\xb8\xbb\xbe\xf4\xfc\x80\xde\x0b\x9c\x53\xf0\xfd\x91\x43\x67\x8f\x02\x35\x17\x17\x20\xd2\xb2\xb6\xac\x78\x99\x26\x59\x7f\x44\x3a\xdd\xb9\x58\xab\xa3\x74\x46\xf5\x25\x2a\xe2\x86\x9f\xd4\x53\x80\xe8\x8b\x31\xac\x6c\x38\xf4\x19\xbd\x52\x5e\x71\xbd\xb8\x9c\x2c\xce\x23\x9f\x37\xd4\xea\xc4\x3d\xe0\x3f\x80\xe1\x67\xb7\x40\xab\x32\x69\x38\x9e\xcb\x2e\x93\x1d\xad\x75\x3a\x69\x85\x51\x68\x64\x60\x00\x82\xd1\xf3\xba\xa1\x59\x91\x9c\xc3\x6b\xe1\x42\x0a\xab\xa7\x5a\x88\xab\xeb\x81\x45\xff\x00\xc5\x49\xeb\x03\x7d\x83\x30\x5f\x93\xd4\x44\xfd\x52\xc6\x02\x2d\xd5\x51\x4e\x22\xa5\x36\xca\xfb\xd4\x46\x3b\xf9\x2d\xa1\x50\xb3\x40\x01\x83\x3a\xe4\x80\x9f\x05\x45\x67\xe5\x59\x8e\xc0\x66\x26\xec\xc9\x9b\x1f\xc8\xab\xc2\xd5\x1a\x05\xdd\x9f\x82\x9d\xfc\xe3\xd1\xf8\xe4\x92\x3e\x13\xec\xe4\xff\x37\x7a\xf8\xe0\x84\x7e\x16\xec\x04\xc7\x51\x30\x23\xe7\x2c\xfe\x4f\x30\x7b\x78\x42\x7f\x07\x02\x34\x7a\x18\x91\x30\x3e\x3a\x13\xb3\x87\x38\xfe\x8f\x2c\x72\xf6\x90\x3c\x38\xb9\x5c\xd3\xe7\x9a\x40\xfd\xf0\xe2\x43\xfd\xe3\x8b\xa7\xcf\xa5\xdc\xf8\xbd\x4c\x3b\x3b\x39\x3b\x39\xa1\x6f\x05\xdb\xed\xe9\x3b\xf8\xfb\x51\x30\xf4\xf0\x04\x19\xef\x54\xf4\x10\x11\xfa\x47\x8f\x21\x4f\xe2\x87\xa0\x7d\xe5\x1f\xf2\x36\x1d\x0b\xbb\x1b\x84\xb0\x86\xaa\xb2\xf0\xa9\xf1\x91\x1d\xd3\xb4\x7d\x72\xde\x38\x05\x56\xe7\x12\xb9\xc6\x07\x2e\x59\xaa\x35\xc5\x68\x28\x29\x5d\x19\x8f\x67\x11\x2e\x59\x69\xa3\xb4\xd4\x35\x7a\x88\xa8\xf2\xa1\xe3\xe0\x37\x12\xcf\x88\x35\x58\xcf\x09\x09\xdb\xcf\x40\x34\xc8\x7d\x2c\x9a\x5f\xdb\x74\x5a\x85\x0c\xe1\x8c\xb1\x77\xc2\x7d\x7e\x82\x2b\xf5\x7c\x6e\x03\x80\xc4\xd5\x4c\x19\x64\x2a\xf2\x11\x57\xca\xc5\xc9\x9f\x97\xfa\x9d\x8c\x55\xda\x78\xf9\xa0\x69\x6f\x56\xd7\x69\x5d\x17\x71\x36\x8b\xd2\x68\x80\xe7\x2c\x23\x5a\xef\x16\x62\x01\xe8\xd3\x52\xd0\x70\xd6\xf8\x19\xa1\x89\xfc\x33\x98\x80\x92\x61\x6e\x76\xcf\xc4\xcf\x1d\x8f\x67\x92\x4b\x2f\xc0\xa7\x2b\x08\x12\x18\x6a\xf7\xe9\x3f\x8a\x96\x87\x23\xbb\x1b\x25\x7f\x24\x37\xef\xb9\x10\x69\x7e\x59\x8d\x96\x59\x22\xb4\x2b\xaa\x05\x22\xcf\xd5\xf6\xe0\xb4\x9d\x71\x3e\x93\xfc\x7e\x11\xe7\x52\x72\x2e\xeb\x1a\x97\x6c\xb7\x27\x24\xce\x67\x0a\x62\xd9\x52\x44\x0f\x79\x73\x30\x06\x70\x19\xca\xf7\x7f\x08\x38\xd8\x65\xe7\xea\xd7\x37\x5f\x9a\x8b\xf4\x8a\x87\x63\x9a\x25\x95\x38\x2d\x16\xe9\x32\xe5\x0b\xf0\xab\x15\x09\xf8\xd7\xfa\x6d\x0d\x77\xdb\x32\x0b\x4d\x21\xc0\x7b\xa3\x1f\x5e\x7c\x40\x34\xad\x5e\x17\xf3\x24\x0b\x95\xbd\xc4\x45\xb1\x15\x75\xb2\xd9\xc8\xff\x1f\x57\xa2\x28\xe5\x56\x3f\x1a\x1e\x43\x9d\x55\x5a\xe4\xb0\xe3\xcb\xcd\xbf\xbe\x4e\x17\x00\x1e\xfa\xe0\x44\x91\x9e\x73\xed\xa8\x3f\x2f\x32\x42\x15\xf4\x0b\x00\x19\x96\x85\xe4\xd5\x00\xdf\x62\x30\xa6\x49\x75\x9b\xcf\x35\xc6\xb0\xe0\xb9\x00\x10\x3a\x24\x45\xa7\x54\x31\x62\x27\x37\xc7\xd7\xd7\xd7\xc7\xcb\xa2\x5c\x1f\x6f\xcb\x4c\xed\x72\x8b\xe9\xd1\x7c\x25\x79\x1b\xc1\x7e\xfd\xf0\xf2\xf8\x9f\x88\x4a\x0e\x70\x23\xb4\x1b\xe0\x47\xa1\xd0\x1e\x14\xff\xb4\x91\xdb\x17\x52\xb1\xe1\x55\x8a\xbc\x44\xf4\x46\xde\x37\x6a\x5a\x67\xf4\xc8\xb2\x5c\xf4\x8f\x0a\x42\x77\x7a\x19\x64\x8a\xce\xf1\x47\x72\x95\x68\xd4\x8e\xbd\x69\x7b\x15\xee\x64\x99\x27\x67\x17\x37\xeb\xec\xec\xe2\x44\x55\x79\x72\x76\x21\x7f\x4f\x54\x79\x27\x67\x17\xf2\xf7\xec\xe2\x64\x4f\x4b\x5e\x6d\x8a\xbc\xe2\x2f\x53\x9e\x2d\xf4\xcb\xc8\x24\x7e\x3c\x7d\x8d\xf4\x57\x98\xa4\x0f\xfc\x46\x98\x66\x99\xb4\x7f\xbd\x7f\xf3\xb3\x6a\xc1\x15\x2f\x85\x76\x84\x84\x26\xa2\x50\xf1\x91\x8a\x8b\x3c\x82\x6f\x96\x1d\xad\x6e\x65\x29\x28\x94\x6f\x2b\xbe\x53\x27\xcb\x0f\x0f\x1d\x93\xbb\xa7\xde\x94\x56\x53\xc6\x0c\xd5\x8d\x90\xe2\x99\x9d\x54\xdb\x03\x06\x28\x22\xfa\x51\x60\x58\x38\xcd\xb5\x22\x05\xe2\xf0\x47\x81\x9b\xa9\x00\xd4\x21\x13\x1c\x1a\xcd\x2b\x81\xdf\x0a\x02\x89\x1f\xca\x24\xaf\x36\x45\x29\x64\xe2\x3b\x9d\xd8\xaa\xb6\x57\xf7\x84\x5b\x0e\x00\x4c\xc0\xf2\x6c\x05\x1c\xb6\xaa\xbd\x95\x5b\xd7\xdb\x8d\x76\x5f\xbf\x60\xab\x91\xfe\xee\xba\x5e\x29\xa5\x9f\xba\x0d\x02\x7c\xe1\x05\xff\xb8\xd0\xbc\x13\x89\xee\xf0\x05\x09\x8d\x76\xf1\xb4\x11\x54\x80\x5e\xb2\xbb\xd1\xb3\x24\xcb\x2e\x92\xf9\xe7\x0a\xa3\x22\x9f\xf3\xa3\x35\x5f\x17\xe5\x2d\x22\xf4\x8a\xad\x46\x95\x48\xc4\xb6\x7a\x06\xf8\xee\xbb\x3d\xbd\x95\x54\xf6\xa9\xfc\x73\xcd\x90\xc2\x3e\xe5\x0b\x44\xcf\xd9\xae\xe4\xc9\xe2\xf6\xbd\x90\xf2\x36\x60\x8d\xbf\xd3\x13\xe3\x47\x9e\x2c\xfa\xb0\xac\xa7\x2a\xe2\xb6\x94\x55\x14\xe4\x4b\xc5\x76\xfb\xa9\x60\xbf\x0b\xe5\xfc\x9a\x92\x29\xa9\x62\xd1\x81\x22\x00\xbc\x77\x86\x0f\x3e\x6a\x04\x70\x10\xf1\xa3\x19\x99\x0a\x56\xc5\xbc\x27\xeb\xbe\xc1\x67\x08\xc5\x67\x08\xcd\xff\xd1\x23\xc9\x00\x5e\x72\xf1\x34\xcb\x9a\xdf\xd2\x17\x0b\x79\x1b\xa5\xa1\x35\x19\x79\xa7\x02\x71\x74\xbe\xdc\x9b\x8e\xaa\xca\x2d\x78\x26\x3c\x6d\x37\x6e\xd6\x93\x54\xd7\x9c\xde\xc6\x7c\xc6\xf4\x31\xe8\x9e\x16\x57\xbc\x2c\xd3\x05\x3f\x4d\xd7\x0a\x3d\xf3\xa0\xd2\x7b\x0b\x6e\x7b\x6b\x9d\x8f\x71\x53\x82\x1b\xdb\xfe\xe1\x01\x57\xf9\x2d\x39\x37\xde\x7d\x3c\x3e\xd7\xf3\xc1\xf7\x15\x51\xe1\xf7\xc8\x95\x94\xdf\x63\xf9\x97\xf2\x58\xcc\x66\x4d\xe0\x8d\xe4\x42\x2e\x97\x1e\x53\x9a\xba\xbe\xf6\xf6\x99\x72\x04\x19\xb1\x20\xf4\x0d\x1e\x9b\x23\xdf\x3d\x88\x0c\xa7\x36\xbe\xc3\x39\xa1\xab\xd1\xb6\xcc\x18\xc6\xbc\xae\xe1\xb2\xae\xf5\x16\x42\x86\x08\x11\xcb\xbf\x7d\x2f\xa8\x47\xfe\x87\xe8\xe4\x04\xc9\x77\x15\x7e\xe7\x68\xcd\xc5\xaa\x58\xd4\xb5\xd0\xe0\x5e\x2b\x9b\xa2\xb2\xd0\x95\xdb\x92\x19\x76\x37\xc0\xbe\x90\xc3\xfc\x10\x42\xc6\xfd\x74\x35\x9a\x97\x45\x55\x3d\x2f\xd6\x49\x9a\x93\x5d\x4f\x2c\x71\xc9\xab\x49\x41\x3c\x53\xbb\x29\x7c\x0c\xd5\x37\xea\x87\x36\x0a\x61\x7f\xb4\xbe\x67\x28\x37\xe2\xa2\x12\x03\xa6\x82\x21\x78\x4f\x32\x78\xa0\x25\xf6\x0f\x64\xd7\x2c\x48\x52\xcd\x74\xa9\x3f\x2b\x08\x56\x23\x6f\x47\x74\x90\x77\x8e\xd3\x31\x19\xf5\x1b\xcc\x88\x3c\xea\x56\xf6\x6a\x99\x2c\x20\x1e\x60\x92\x11\x42\x7f\x95\xf4\x92\xae\xa8\xa0\xe7\x84\x6e\x8d\xe2\xe1\x1c\x78\x91\xe5\x51\x9a\xe3\x8d\x51\x5f\xcb\xba\xd5\xbe\x4c\x82\x60\x0c\xde\xae\x8a\x85\x18\x0e\x81\xf3\x68\xe8\xb0\x10\x10\x44\x91\x94\xc2\x8d\xa4\xfa\x69\xc6\x04\xa4\x2b\xb0\x52\xd0\x40\x30\x83\xe7\x5a\x46\x51\x59\x09\x2d\x54\x4f\xdb\x89\xf2\x0c\x8e\x4f\x1b\x2f\x45\x07\x7a\x06\x02\x6a\x6a\xaa\xab\xf8\x04\x05\x0b\x67\x0f\x29\xfe\x92\x69\x00\xff\x5d\xdd\x8b\xea\xc7\xb6\xe3\x4f\x41\xd1\x10\x49\x06\x78\xa1\x5b\xa8\x78\x66\x73\xf0\x47\xa8\x37\x0c\x5e\xb3\x9c\xb6\x87\xb5\x06\x0c\xce\xd8\x87\x0c\x7f\xb0\xae\x5b\x11\x0a\x50\x88\x22\x44\x86\x7a\xe8\xb4\x05\xa5\xce\xaf\x34\xd3\xab\xd1\x3c\x99\xaf\xb8\x0a\x90\xe8\x00\xe8\x04\x45\x0f\x26\x88\xd0\x45\x7f\x81\xe8\x9c\xa1\xe1\x1b\x31\x1c\x0e\x17\x66\x8d\x16\xea\x32\x5d\x1a\x4e\x10\xe2\x4b\xf8\xac\x21\x38\x99\x9d\x8f\xda\x84\x13\xa3\x57\xcb\x63\x93\xe7\xf8\x7d\x9a\xcf\x39\xa2\x9d\x37\x41\x2f\x2c\x92\xcb\xfb\x0a\xf9\xb9\xc8\xf9\xf1\xa9\x5c\x05\xc8\xe5\x26\x84\x7a\x73\xdf\x0d\xbb\xd6\x9f\xb7\x06\x58\xf8\xb7\xa4\xbf\x26\x5d\xc0\xf1\x07\xb0\xda\x6e\x14\x40\x68\xdf\x0b\x4f\x81\x57\x44\x3e\x99\x89\xc7\x33\xd9\x1c\xcd\x45\xc6\xcd\x27\xb3\xe8\xe0\x93\xa1\x14\x11\xa0\xd9\x7e\x72\x24\x77\xb1\xe1\x47\x31\x44\xd3\xa3\x3f\xd9\x78\x34\x9e\xa0\x10\x21\x12\xba\x62\x54\x54\xa3\xd5\x68\xa5\x76\x36\xd2\xd3\xcc\xa5\x7b\x1c\x2f\x15\x56\xdd\x6a\xa4\x70\x67\xde\xf3\x7c\x61\x22\x54\xf9\x69\xea\xac\xf1\x82\x9e\xd3\x15\xa9\xeb\xad\x3d\xde\x3d\xd7\xe4\x1d\x0a\xb9\x66\x08\xee\x10\xbd\x04\xb4\xd2\x95\x8b\xe5\x41\xcf\x95\x03\xf6\x6a\x54\x6d\x41\xa3\x2a\x53\x20\xbe\xc7\x4a\xa9\x0c\x09\x2d\xd9\xaf\x92\xf7\xd2\x04\x06\xf8\x88\xf3\x91\xe3\x41\xd8\x84\x6e\x82\x60\xdd\x22\x1b\x00\xa0\x13\x9f\xd3\xd5\xac\x41\x92\x56\x23\xe0\xfe\x65\xc7\x0b\xe5\x50\xf3\x04\x82\x9d\xb3\x83\x61\xaf\xcc\x87\x20\x9d\x1f\x91\x3d\x50\x23\x75\x47\x14\x49\xdf\xb2\xc1\x04\x00\x91\xf3\x05\xbe\xa5\x6f\x88\x23\xc4\xb0\xad\x8a\x55\x59\x5c\x1f\x7d\x98\xbe\xc1\xc7\x13\xfa\x81\xec\xf7\xb0\xa3\xc2\x1d\xfa\xb9\x38\xb2\x4c\xa6\x2f\xcc\xbf\x01\x99\x37\xb1\xf2\x29\xb0\x89\xb7\xf4\x29\xbd\x66\x62\xba\xad\x6b\xbc\x95\x92\xed\x3c\x08\x5a\xfe\x41\x73\xd9\x61\xfa\xb8\x24\x65\x95\x24\x58\xb4\xd1\x5d\xfc\xc9\x38\xfa\x5a\x8a\x6c\x8c\x3f\x61\x8f\xc6\xe3\x20\xe0\x8f\xbf\x1a\x8f\xeb\xfa\xab\xf1\xd7\x8c\x31\x4e\x25\xc5\xb9\xed\xf8\x89\x7b\x81\xb4\x1c\xc4\xa2\x16\x42\xe8\x9c\x71\x37\x1b\xa7\xe8\xa1\x24\x4d\xf3\x78\x3c\x9b\x92\xb9\x3d\xe7\xb5\x91\x25\x4a\x00\xa3\xe1\x96\x4b\x91\x4b\xae\xc3\x45\xb6\xd6\x98\x32\x5d\x2c\x1d\x70\x6e\x25\x19\x96\x0a\x48\x81\xfc\xab\xe8\x53\x49\xc8\x6e\x6e\xe5\xef\x82\x4c\x2f\x4a\x9e\x7c\x96\x5b\x9f\x6c\x4c\x9a\x1f\xe5\x24\x55\xed\x92\x03\xe0\xe0\xa8\x73\xc5\x9c\xce\x15\x84\xf1\xc8\x49\x36\x71\x21\xb9\xc7\xa1\x7c\x30\x23\xbb\x94\x15\xba\xc4\x04\xd0\x78\x0a\xb2\x87\x50\x1b\x89\xac\xc1\xda\x8b\xa7\x03\xf5\xed\x41\xe0\x9a\x92\x12\x9a\xc7\xe9\x6c\x8f\x57\xf4\x9c\x26\x84\xd0\x76\xff\xb6\x22\x2e\x03\x18\xc9\x6e\x4f\xb7\x7e\xbf\xea\xfd\x01\x7a\x62\x1b\x4f\x66\x0a\x83\x12\x58\x32\xaf\xc9\x24\x8b\x93\x36\x8f\xd9\xf8\xa4\x64\xa6\xdc\xff\xd8\xd6\x0c\xcd\x34\x05\x8b\x36\x38\x4f\xf3\xa4\xc3\x38\x55\xc0\x89\x3d\xe9\xc0\x9b\x0e\xe6\x41\x50\x06\x81\x6a\xe1\x4b\x10\x9d\x94\xdc\xe3\x25\xc0\xa9\x90\xf9\x02\x08\x8d\x90\x52\xaf\x66\x59\xad\x9a\x2d\xa9\x1c\x19\xab\x03\x57\x14\x6e\x1e\x04\x73\xb0\xc4\x87\xd1\xc1\x09\xcb\xe2\x39\x8c\x47\x3a\xab\xeb\x2c\x46\x0f\xe1\xd2\x43\x53\xce\xc0\x08\xa8\x62\x85\x17\x38\x96\xc4\x93\x99\xb2\xe0\xf7\x0a\x00\x42\x6a\xcb\x80\x3b\x42\x76\x10\x2f\x3a\x89\x12\x40\x5b\x0e\x21\x04\x40\x06\x33\x0c\xa7\x4c\xe6\xa1\x5b\x3b\xa0\x95\xec\x7f\x6f\x7e\x41\xe6\x44\x56\x9f\xc8\x1e\x81\x05\x5f\x11\xc1\x12\x6b\x18\xa9\x8e\x60\xe4\xbd\x23\x0e\x5a\x85\x59\x81\x28\xd5\x38\x39\xa1\xf0\x13\x26\xd1\x87\x50\x52\x08\x35\x7c\x15\x84\xb6\x2b\x8b\xb5\x9c\x92\x43\x74\x24\x0a\xd9\x01\xfb\xfd\xbe\x59\x8e\x26\xa4\x88\xca\x7e\x0f\xc5\x5e\xce\xba\x5b\x7a\x0e\x61\x97\x22\xdc\xda\x9f\xf1\x53\x76\xde\xb7\xfa\x5e\x27\x95\xb0\x5b\xb2\x8a\x8a\xd2\xd9\x90\xd9\x53\x42\x0f\xbd\x2f\xb7\x5e\xf3\x9a\xde\x86\xd9\x53\x42\xe8\x23\x45\x64\xea\x1a\xfd\xf8\xe2\xe9\x73\x04\xbb\x89\x64\x62\xa2\x6b\x86\xf2\xc2\xc0\x0d\x84\x9a\x16\xa9\x54\xb1\x36\xed\x08\xf1\x35\xbb\x05\xc1\x84\xd3\x25\xbb\x55\x3c\x4d\xc6\x06\x78\xc1\x6e\xf5\x76\xa1\x18\xaa\x6b\x3a\xe0\x41\x70\x5d\xd7\x72\xef\x31\x5d\x0a\x56\xdc\x9c\x8d\x09\x81\x4d\x1a\xc4\x1b\xc6\xed\x25\xe0\x34\x61\x51\xd7\xd7\x52\xb2\xa0\x59\x74\xda\x88\x54\x76\x41\xe3\x25\xbd\xa6\xe7\x33\x12\x9e\xfa\xa1\xca\x2e\xe4\x36\x73\x4d\x17\x33\x57\xa8\x94\xb3\xf0\x95\x94\xaa\x35\x21\x6e\x6c\x50\x59\xa4\xb6\x28\x3d\x4c\x21\xdc\xbd\x50\x6d\x94\x3b\x16\xcd\xa2\x65\x28\x8b\xbb\x84\xf0\x3f\x5e\x25\x33\x22\x4b\xc2\xad\xbd\xee\x99\xde\x4b\xed\x7e\x77\x7c\x6c\xd8\x6a\x38\x78\xeb\x63\xaa\x0b\x30\x68\x33\x52\xf1\x39\x48\xbf\xff\x7a\xff\xe6\xe7\x03\x2e\x5f\x47\x77\xc6\xeb\x84\xe6\x14\x81\x22\x47\x49\xcc\xef\x41\x1f\xd5\x2f\xf8\x9a\x77\x74\x1f\x08\x87\x39\xdb\x30\x33\xbb\xe4\x02\x51\xb4\x29\x2a\xd1\x13\x77\xbd\xe5\xe2\xd5\x04\x9a\xb8\xc4\x26\x92\x7f\x5d\x97\xb4\x84\x78\xdd\x46\xe1\xa2\xd4\x29\x2e\xec\x17\x28\x92\xb8\xd2\x3a\x0a\x6a\x28\x52\x58\xa8\x45\x92\x53\xbd\x68\x42\x88\xbb\xd1\x3e\x7f\x02\x53\x22\xed\x6e\x6d\x90\x9e\xfb\xdd\x82\x75\xb5\x7e\x6d\x4a\xc7\x69\x6b\x34\x9d\x40\x81\xe9\xf6\xf4\x91\x13\xab\xb1\x9c\x34\x75\x6b\xa0\x25\xd3\x6f\xf9\xfa\x88\xfd\x9e\x3a\x42\xdb\x8a\x24\xeb\x70\xaf\x55\x24\xe8\x7d\xfb\x84\xeb\xba\x4c\x36\x4f\xb3\x1e\x0b\x63\x5f\x98\x87\x5d\x0c\xab\x08\x2f\x98\x33\xcf\x22\x38\x1e\x4b\xae\x5a\xb0\x3b\x1d\x92\xb8\x83\x4d\x4e\x46\xfc\x4f\x3c\x26\x1e\x34\xa0\xc9\xd6\xf4\x97\x69\xc0\x88\x9a\x92\xa9\xe8\x9c\x8f\x59\xe0\x50\x38\xd2\x9a\x72\x05\xad\xaa\x65\x6b\xf0\x5f\x9e\x12\xd9\xc2\x6e\xb2\x0d\x08\x4b\x2c\xa0\xa4\x32\x41\xd7\xaa\x11\xd9\x13\xaf\xf2\xbc\x1f\x85\xfa\xa0\x6d\xbe\xe7\x7b\x61\x0b\x68\x7a\x5e\x90\xbf\x32\xc6\xb7\x76\xf7\x39\xb3\x32\x47\x85\x9d\x57\x7d\x94\x8f\xf4\x28\xc1\x51\x9f\x8f\x86\x49\x54\xb3\x7b\xb4\x2c\x97\xce\x2d\xa1\xd7\xfe\x24\x6f\xb6\x5b\x16\x2e\x9a\xa6\xde\x24\xd4\x35\x6c\xf3\x4e\x1d\x0d\xf4\x46\x18\x47\xcc\xc9\x28\x2f\x04\x46\x17\xc5\xe2\x16\xf5\x40\x13\x3b\x0f\x15\x0b\x4b\x69\x4e\x0e\x0d\x44\x3d\x1c\x8f\x98\x40\x8f\xda\x4b\x74\x53\xf1\xed\xa2\xa8\x4c\xe0\xa6\x9e\x78\x1f\xad\x8c\x80\x72\xa5\x41\x1b\xfb\x1f\xf5\x15\x32\xc0\xdc\x07\x97\x93\xdc\x9f\xba\x55\x50\x2b\xf7\xa0\x35\x40\x35\x8d\xa3\x98\x9b\x55\xe9\xfb\xed\xcb\x0d\xdf\x43\xc4\xc9\x47\x1f\x4f\x5f\xff\x28\xc4\x46\x8b\x5c\x9a\x0b\xe0\x72\x1d\x83\x5a\xf8\xa5\x60\xbb\x31\x44\x22\x98\x3c\x7a\xf4\x55\xf8\x68\xfc\xf5\x9e\xfe\x26\xda\xe7\x3d\x37\xab\x12\x93\xe9\xe9\x68\x5e\x94\x15\x1b\x0c\x7e\x13\x41\x80\xae\x53\xb1\x7a\x56\xf2\x05\xcf\x45\x9a\x64\x15\x4a\xf3\xa3\xdf\x04\x3d\x85\x17\xd9\x6f\x02\xb2\xe9\xc6\x5a\x51\x03\x77\x81\x69\x69\xa9\x74\x6f\xb2\xe8\xba\x96\x25\x0f\x78\x43\xa9\x65\xd8\x8c\x06\xd6\xb2\x03\xea\x02\x91\x40\xb5\x4f\xf2\xe6\x80\xaf\x89\xb5\x4d\x37\x07\x65\x17\x57\xd2\x97\xbc\xab\x38\xd8\x5b\x52\x3e\xda\x24\x55\x75\x5d\x94\x0b\x42\xe1\x6d\xc5\x63\xfa\xbc\xad\x4b\x94\xcc\x2b\xf3\x12\x0c\x2f\xab\x33\x1a\x81\x22\x08\xaa\x51\x5b\x65\xda\x97\x86\xdd\x2b\xb2\x72\xef\x53\xeb\xba\x88\xd1\xc7\x63\x3d\x54\x7c\x71\x0c\x68\xaa\xb3\xba\xc6\xbd\xe9\x0c\x35\xc7\x16\x11\x5a\x90\xaa\x2b\x5f\x27\x14\x6c\xb8\xa7\xbd\x56\xcb\xfe\xd4\x01\x3e\xba\x64\xd5\xa8\xc8\xb3\x22\x59\xc0\x05\x70\x31\x70\x05\x02\x29\x5c\x69\x29\x14\xae\x41\xc4\x03\xd6\x68\xbe\x4a\xf2\x4b\x05\x72\x4c\xb5\xe0\x0d\xcc\x54\x65\x64\xf2\x50\xb3\x44\xca\x65\xa6\x13\x76\xab\xd2\x6c\x4c\x94\xe2\x31\xd5\x59\x49\x98\x62\x93\x4e\x2b\x8f\x63\x92\x0f\x5e\x8a\xd8\x24\xcd\xea\xba\x37\x9b\x3a\xec\x01\xbc\x8d\xca\xca\x13\x5a\xa3\x06\x4f\x48\x9f\x15\x93\x97\x95\xdf\x88\x68\x77\x91\xe6\x49\x79\x1b\xba\xe4\x7d\xb8\x83\x73\xa1\x66\xc6\x3d\x05\x10\xd0\xae\x3a\x1f\x13\xe5\xb9\x60\xfa\x55\xca\xa5\x65\xab\x77\x4d\x9f\x0a\x6c\x3e\xdd\xf9\xf1\xda\xde\x8f\xdc\x38\x94\x61\x6f\xef\x7b\xc3\x29\x59\xd9\xca\x13\xc1\xb5\xa3\x5a\x9f\xb6\x41\x04\x41\x89\xb5\x25\xa0\x6c\x81\x1a\x3d\xa5\x64\xa8\x94\x7e\x81\x37\x34\x58\x4a\xba\x52\x41\x97\x8c\x64\x31\xd7\xf0\x22\x4a\xed\x30\xdf\x77\x74\xf2\x50\x0f\xd8\x37\x28\x9e\xa6\x71\xfc\xd5\xa4\x0c\x8d\x65\x01\x16\xae\x66\xa7\x1a\x29\x96\x84\xe9\xe3\xed\xc6\xf9\x95\x3d\x1a\x55\x79\xf4\x19\xa8\x3b\xc0\xa4\x47\x8d\x33\xce\x03\xe9\x7c\xbe\xee\x4d\xbf\x39\x76\x4f\x1a\x47\xa1\xba\xb6\x93\xb3\x0b\x1c\x85\xb2\xd4\x5a\x66\x24\x2a\x19\xce\x3f\xbf\x80\xb1\xe2\x3e\x03\xeb\xb1\x51\x84\x72\xed\x1f\xd1\xec\x2e\xcb\xd0\x35\x29\xaa\xc5\xf0\xb6\xda\x55\x7d\x25\x3b\x8c\x76\xbb\x55\xc5\x3d\x91\xbc\xa2\xd7\x9d\x8e\x5c\x1f\xa8\x45\xb9\xda\xc0\x09\x4e\x93\x7e\x71\x3d\x3c\x4f\x85\x28\xab\x7e\xca\x0d\xac\xb4\xe4\x42\xd0\x63\x95\xf7\x09\x22\xda\x0b\xc8\x7f\x59\x21\x7b\x83\x5d\xd2\x4e\x9f\x80\x87\x26\xc3\x33\x75\x4f\xab\x72\x1e\x02\x89\xdf\x93\x51\x91\x63\x24\x17\xd7\x91\x16\xbb\x9a\x9b\xb7\x30\x96\x90\x92\xed\x51\x36\xf2\x41\x50\x60\x8f\x20\x29\x71\xf0\xeb\xf1\xd7\xb0\x17\xaa\x5b\x15\x6e\x75\xc5\x93\x45\x23\x62\x8d\x90\xcc\x62\xcf\xec\xce\x83\x20\xc7\x9e\x99\xe5\x27\xc1\xe2\x19\xfd\x41\xb0\x13\xcc\xc8\x59\x84\x23\x16\xd4\x0f\x48\x7d\x16\x29\xfb\x4a\x6f\xe2\x4a\xd1\x66\x13\xa2\xb9\x3e\x27\x55\x47\xdf\x1b\x73\x6c\xda\xc5\x14\xf9\x24\x94\xad\x35\x08\x5a\xca\x39\x61\x88\xce\x95\x62\xbc\xc1\x49\x73\x30\x44\xe1\xbd\x13\x48\xd6\x01\xa7\xe3\x1b\xd4\x02\x96\x69\xe1\x70\xa9\x18\x67\x23\xc8\x1a\x04\xf8\x07\xeb\x84\xbf\x2d\x33\x12\xa1\x6d\x99\xa1\xbe\x48\x0e\x5a\xf5\x0d\xa7\x19\xfc\x7f\xf7\x34\xc3\x55\xaa\x8f\x1c\x90\xfc\x55\x8e\xc2\x55\x5d\x23\xf5\x1d\x30\x90\x0d\x23\x17\x63\x92\x63\xda\x6f\xfa\x54\x72\xac\xcd\x14\x12\xb5\x12\x30\x09\x5b\x29\xb4\x8a\x78\x5c\xcd\x00\xd1\xd0\x9e\x58\xfc\xa0\x4e\x2c\x86\x05\x09\x5b\x1d\x05\x1d\xe4\x1d\x8c\x98\x0e\x33\x67\x19\x3a\x27\xd8\x34\x16\xb0\x38\x9d\xba\x4c\x2f\x3c\x65\xbd\x30\x63\xdd\xf3\xe0\xc4\x59\xb7\x16\x43\x74\x74\x9d\x54\x47\x79\x21\x8e\xe4\x14\x92\x3d\x46\x93\x78\x3c\xdb\xd3\x66\x6f\x30\x25\x43\xd3\x94\xe5\x60\xb4\x19\x17\x8d\x92\x13\x66\x3d\x3a\xf7\xb4\xec\x8b\xb8\x6a\xc9\x4b\x1a\x81\x3f\x9a\x8b\xa6\x81\x0b\x12\x42\x79\x29\xe5\x4a\x79\xd5\xee\x70\xd1\xea\x4b\x39\x87\xb7\xd5\x0a\x17\x04\x50\xe5\x2e\x21\x22\x7a\x8a\x13\x90\xc4\x12\x96\x7a\xb0\x0f\x86\x0a\x29\xa7\x29\x75\xbe\xf9\xe3\x07\x88\x8a\x01\xcd\xed\x04\x1e\x63\xc9\x28\x5d\x6f\x94\x38\x06\x13\xab\xe7\x25\x2c\x27\xa1\x14\x1f\x9c\x17\x44\x2a\xc5\x29\x99\x87\xa1\xc7\x72\x0e\x3e\x79\x7c\xa2\x7e\xfc\x1b\x44\x1f\x29\xfa\x6a\x05\x09\xcd\x9a\xef\xb1\x5c\x64\xa0\x4e\x83\x32\xfa\x75\x1a\x3d\x36\xd3\x51\x3c\x0b\x71\xbf\x37\xb7\xb6\x95\x93\xb4\x5b\xd4\x35\xee\xfb\xf8\x08\xe3\x92\x61\xf1\xa5\x9f\x4c\xda\xe7\xc3\x17\x49\xc5\x65\x32\x1c\x08\x27\xd6\x2c\x5c\x9b\x4b\x75\xa9\x5f\x29\xc5\x4b\x96\x10\x9a\xb2\x41\x1e\x04\xf1\x8c\xe2\x82\xbd\x57\x26\x15\x9c\x90\x28\x16\xad\x1a\x8a\x78\x32\x23\xb3\x10\x17\xec\x5a\x05\xc0\x15\x34\x85\x00\xb9\xa9\x45\xa0\xbb\xc3\x29\x71\x14\xfa\x6e\xb4\xe6\xe5\x25\xc7\xf1\x8c\x16\xbe\xbc\x46\x88\x33\x64\xd1\x7a\x05\x60\xa7\x0e\x46\x5b\xa1\x89\x8a\xf6\x2d\x25\x04\xcf\xcb\xdf\x21\x45\x28\x2f\xb1\x92\x5d\xca\xc5\xa9\xf4\xdc\x52\x42\x97\x12\xbd\xba\x1b\x53\x79\x0f\x16\xca\x7a\x28\xb4\xa6\x27\x14\x7d\xa1\x6b\x15\x44\x20\x7a\xfb\xe6\xfd\x07\xb9\x04\x4d\xe0\x99\x71\x10\xf4\x68\x68\x8a\xba\x6e\x2b\x69\x94\xb9\x96\x56\xa0\x92\x76\x8c\x60\x4e\x76\xa9\x5b\xa2\x72\x67\x12\xeb\x0c\x97\x91\xdc\x4a\x17\xe9\xd5\x13\x1b\x58\x0d\x7b\xd3\x10\x02\x28\x2c\x55\xfc\x7c\x25\x62\x9b\x85\x9d\x07\x41\x53\x99\x94\x74\xc5\xe8\x46\x04\xc4\xb4\xae\x3d\xad\x3c\xb0\xd7\x82\xf2\x99\x8a\x13\xae\xd5\x1a\x56\xbf\xe6\x4e\xd1\xa9\x53\xfe\xd1\x96\xe6\xd0\xd7\x41\x36\xb4\x93\xd4\x1d\xa7\xf5\xa0\x22\xb6\x43\x3a\x36\x35\x04\x60\x7c\xca\x6d\x20\x46\x5f\x24\xd7\xb1\x0c\x17\x7d\xef\xde\x8d\x2e\x4b\xbe\xc1\x36\xda\x66\x43\xe9\x62\xc3\xef\x31\x26\x0c\x16\x8a\x59\xf6\xf4\x4e\x0b\xef\xe0\x5c\xf2\x06\x2e\x0f\x47\x00\xb2\xe7\x2c\x0e\x77\x59\x83\x1c\x02\xe2\xfb\x9d\xe4\xf8\x00\xdf\x07\x49\xb6\x3e\x9d\xcb\xd9\x95\x39\x80\x40\x0f\xb2\xde\x20\xfa\x23\x42\x2b\x66\xc0\xea\xb1\x0a\x8b\xab\x8b\x06\x85\x2b\x9d\xbb\x84\x0c\xc0\xfd\x28\x6e\xe0\x2c\x66\x75\x8d\x96\xe9\x8d\x8a\xe2\x96\x91\x20\xc0\xe9\x70\xee\x6f\xd0\x5b\x51\x80\x47\x65\x84\x13\x86\x4b\xb6\xb5\x8d\xc0\x84\x00\x3c\x7f\xc1\x4a\x80\xf3\x23\x61\x13\xe5\x37\x25\x75\x3d\xa6\x85\x9f\x34\x57\xb0\xcc\x2a\x36\x33\x16\xcc\xc2\x33\xe4\x8d\x18\xbd\x72\xb5\xeb\xe8\xc8\x62\x04\x01\x4c\xf1\x46\xfe\xaa\xbb\xe3\x4a\xfe\x1d\x26\x2e\x8b\xac\x1d\xf2\xc8\x0b\x7d\x7f\x5c\xc1\x8f\xdc\x5b\xd1\xb6\x92\x44\x37\xcd\x8f\x44\x24\x46\x70\x63\xea\xdd\x90\x70\x0b\xdd\xb3\x51\x20\x4f\x9e\xb6\xb2\x68\x8f\x25\x48\x38\x87\x02\x99\x38\xde\x1b\x54\x77\xbd\x3a\x38\x98\xbe\xaa\xd8\x91\x9d\x2c\x26\x62\x2b\xc4\xd1\x98\xba\x68\x10\xad\x70\x0b\x65\x54\x1e\xd2\x0a\x45\x52\x6e\x3f\x04\xb4\x48\x73\xd6\x72\x87\xf4\x1d\x20\xe9\x4e\x14\x9b\x10\x7a\x75\x98\x8f\x36\xc9\x25\xff\xa4\x5a\x45\x65\xdf\x85\xaa\x27\xf5\x93\x8f\xea\xc9\x9e\x84\xf0\xd2\x58\x65\x19\xef\x4d\x1c\x00\xba\xe9\x01\xe9\x97\x32\xa1\x56\xb0\x9a\xa8\xa0\xfe\xd7\xd1\x82\x35\x0b\x93\x1c\x9d\x9b\x8e\x6a\xe6\x96\xfe\x2a\x21\xf7\x7c\xab\x3b\x61\xd5\x98\x7e\x76\x55\x74\x3a\x81\x72\x99\x02\x8f\xdf\x82\x4e\xb1\xae\xf3\xd1\x42\x3f\xd4\x7b\xd7\x54\x45\xf6\x65\x2c\x07\x4e\xa1\xae\xd5\x75\x2b\x17\x44\x7b\xb0\x8b\xb5\x67\x5d\x2b\x1d\xb1\x17\xd2\x89\x07\x01\x57\x30\x2f\x1d\x14\x02\x5c\x00\x0d\xb0\x0d\x87\x05\xd6\x81\x53\xff\x50\x6c\x2c\x90\x3a\xa1\x85\x1a\xa4\x76\xa6\xd7\x7c\x29\x5c\x2e\x73\xec\xe2\xc6\xfb\xb8\x80\xbf\xb6\x8b\x15\x1a\xd6\x07\x49\xa7\x01\x7c\xc0\x8d\xff\xb1\xaa\xa1\x9d\x15\xa0\x42\x95\xbb\xdf\x9e\xfa\x5d\xf9\xa5\xee\x27\x4d\xf5\x7a\x63\x34\x64\x1f\x7d\x49\xaf\x36\xde\x31\x64\xba\xae\x13\xde\x8c\x1e\xbc\x73\xb0\x70\x21\xf2\xe6\x32\xa2\x16\x46\x4e\xa5\xeb\xd9\x7f\xc8\x17\xb1\x91\x47\xee\x06\xd3\x4e\x0c\xdd\xf2\x3e\xd4\x4e\xe7\x65\x2f\xe7\xf9\x15\xe6\x24\x4a\x19\x0f\xbf\x6b\x4f\x83\x54\x0a\x32\x6e\x95\xfa\x58\xc5\xf6\xc4\x3f\x4a\x63\x31\x0b\x79\x5c\xce\xa6\x69\x94\x5a\x3c\x3c\x9c\x47\xa9\xbf\x5c\xc3\x82\xe6\x51\x11\xa6\xfe\xe2\x26\xf0\x1a\x2b\xf6\x2a\x6c\x71\x87\xa4\xf9\x51\x8c\x63\xa4\xb6\x6e\xd8\x3b\xfe\x02\xa3\x18\x60\x68\x37\xe9\x0d\xcf\xde\x1a\xe8\x5e\x3f\x7f\xde\x00\x2c\x36\xc0\xea\x82\x50\x03\x80\x9f\x93\x08\x66\xbf\xdb\x60\x62\x31\x03\x80\xd8\x30\x57\x70\x24\x76\x40\x35\x2a\xb9\x05\x51\x86\x99\x1e\x6a\xe4\x97\x9e\x48\xc7\xea\x2d\x8b\x28\x0b\xbc\x3e\x1a\x72\xa3\xc7\x09\x05\x45\x28\x44\xc5\x56\x40\xb2\x5f\x00\x98\x49\xc0\x30\x97\xde\x30\x3b\x0d\x34\x6b\x77\x9f\xe4\xdb\xbd\x90\xd2\x8e\xd5\x2f\xe4\x56\x9d\xd7\x35\x86\x33\xff\xa2\xae\x07\x4a\x98\x32\x40\x74\xa1\xc1\x10\xb6\x2c\x6a\x67\x0a\x49\xe2\x69\xa7\x90\xd9\x79\x24\x7f\x0a\x36\x2e\x6e\xd3\x56\x1f\x42\x22\x11\xdb\x4f\x9d\x85\xc2\x92\xae\x36\x0d\x8b\xd1\x1c\xc8\x28\x64\xfb\x0e\xd8\x1c\x33\x1b\x23\x9c\xb2\x4e\x7e\x6a\x81\xdd\x04\x90\x46\x10\x58\x8b\x2c\x93\xef\xd3\xb4\x71\x67\x32\x18\x78\x65\x95\xa1\x79\xe7\x2a\x27\xc6\xbb\x45\x76\x50\xa4\x96\xbd\xfc\xe6\x8a\x58\x90\x48\xe8\x02\x5a\x01\xd3\x49\x93\xa8\xd0\x2f\xd0\x44\xc5\x28\x76\x73\x04\x5d\x64\xdb\xf2\x08\xdc\x8b\x8f\xb4\xcf\xf1\x91\x71\x36\x3e\x2a\x79\x95\xde\xf1\x23\xd5\xd0\xa3\x79\x96\xce\x3f\x1f\x2d\x2e\x32\x75\xb1\x2e\xb6\x15\x5f\x14\xd7\xb9\xba\xda\x6e\xd4\xaf\x14\x50\xd4\x55\x71\xc5\x4b\x7d\xb5\x15\xea\x82\xe7\xc2\xa4\x65\x3c\xb9\xe2\x47\x4a\x25\x7b\xa4\x5c\x42\x8f\x94\x2b\xe9\xd1\x67\x7e\x0b\xe5\x7e\xe6\xb7\x9b\x92\x57\x95\xbc\xd8\x6e\x8e\xb4\x89\xfd\x9a\xe7\x5b\xe4\x99\x91\xfc\x35\xef\xeb\x9d\x96\x77\x02\x5e\x8e\x23\xc7\x10\x2b\xa5\x17\x35\xc0\xac\xe6\x60\x5e\x98\xa5\xee\xb1\x3d\x2b\xf9\x71\xf7\xf8\x96\xbb\xaf\x95\x4b\xd5\x7d\x30\x16\x75\xcd\xbb\xce\xea\x17\xa9\xaf\xfe\x6b\x1e\xf0\x9b\xf6\x71\xed\xea\x4e\x73\x38\x01\xec\xbc\xd2\x7a\x61\xb9\xb4\x6f\x90\x3d\x35\xf1\x23\xfe\x02\xa6\x42\xc9\x05\x1a\x6e\x62\x9b\x1f\x78\xcb\xbe\x03\xa0\x98\xed\x08\x57\x5e\xf5\xe8\xe1\x43\xa4\x3b\x53\x26\x08\x0a\x56\xdb\x0f\x11\xcd\x75\x17\x6c\xca\xe2\xa6\x1d\xc6\xdb\x3a\x54\x01\x97\xd3\xd1\x99\x29\x89\x9f\xc7\x62\xa6\x91\x1c\x72\xc9\x29\x7b\x40\x8f\x6c\xae\xd8\x56\x27\x05\x3e\x22\x52\xfe\xee\xee\xb7\xdc\x48\x6e\xda\x9d\xbc\x34\x1e\x0b\xed\x12\x20\x44\xdf\xe8\x72\x9b\x2e\x18\xf7\x7f\xea\xfa\x0e\x7e\x87\x43\x5a\x48\xbe\x78\x55\x64\x8b\x77\x3c\x59\xdc\x36\x23\xce\x40\x40\xde\x64\x71\xfb\x7b\x92\x8a\xe1\x30\xd4\x77\x80\x9d\x01\x26\x0d\xe0\x4d\xc9\x1a\xbe\x95\x46\x4b\xf2\xaf\xf7\x6f\x7e\x66\x9e\x63\xce\x9d\x75\xfa\x64\x2f\xe0\xdd\x97\xba\x22\x76\x09\xb7\x2a\x42\x07\xbb\xa2\x77\xa3\x79\xb2\xe6\xd9\xb3\xa4\xe2\xec\x27\x7a\xa7\x94\xd8\xd7\xf0\xfe\xb5\xf5\x65\x87\x57\x7e\xde\xae\x79\x99\xce\x7b\x40\x36\xd4\x5b\xee\xd8\x1a\xfb\x31\xc5\x9a\xc6\xce\x24\x08\x06\x69\xf5\x73\xf2\x33\xe6\x3e\xf8\x3b\x27\x64\xef\xb6\x65\x5c\xf6\x0c\xc2\xdd\xde\x8c\x02\x8d\x67\x84\x40\xfc\x15\x7e\xb3\x29\x4a\x51\xb1\x52\xb1\xfa\x3f\x09\x96\x8f\xfe\xf8\x65\xcb\xcb\x5b\xfa\x8b\xbc\x7e\xe0\xe0\x6a\xf2\xe2\x59\x91\x2f\xb3\x74\xde\x1f\x6f\x68\xf4\x40\x32\x46\x80\x5c\xf5\x80\xfd\x22\x08\x85\x23\x1e\x55\x96\x7d\xa2\x6f\x7f\x12\x84\xde\x41\xe0\x16\x97\x26\x5f\xbb\x93\xc9\x8d\xc0\xee\x7a\x15\xa0\x6d\xc5\x8f\x64\x27\xcc\x05\x52\x6a\x17\x96\x63\xc9\x6b\xb2\x7c\x94\x43\x94\x27\x86\x73\x3c\x19\x7f\x43\x68\x8e\x27\xf2\xcf\x57\xdf\x10\x42\x13\x78\x9c\xc2\x3e\x87\xff\xf9\x8d\x14\x3e\x65\x42\x45\x68\xc6\x72\xfc\xd5\x23\x29\xe3\xf6\x2e\x6c\x3e\xaa\xb6\x17\x95\x28\xf1\x98\x1a\x80\x72\x22\x3b\x7f\x4f\x37\xec\x40\x34\x2b\x63\xe6\x64\x0d\x4f\x0b\x26\x0c\xed\x8c\x10\x91\xc2\x45\xca\x2e\x31\x6c\xba\x08\xac\xfd\x64\xd2\x9c\x9d\x4a\x19\x3b\x63\x63\xba\x65\x73\x13\xee\x2a\x7b\xbc\x9d\x66\xc3\xa1\x9a\x1d\x1b\x36\x98\xd0\x25\x9b\xc7\xd9\x6c\x54\xca\x8d\x54\xae\xd6\xa5\xe1\xc7\x48\xc9\x76\x90\x1a\x2e\x29\x38\x28\x54\xe1\x6e\x4f\xb7\x65\x1a\x8a\xbd\x93\x3f\x64\x39\x0b\x76\x89\x97\xa3\x4d\x22\x56\x84\x5e\xb0\xdd\x9e\xae\x1d\x1e\xaa\x51\x7e\xd1\x85\x35\xbc\xbf\x62\xe3\xe9\xd5\xe3\xf5\xf4\xca\xb4\xe3\x29\x5b\xc4\x57\x33\x7a\xcd\xd2\xf8\x0a\x5c\x60\x95\xd1\xe2\x53\xb2\xbb\x00\xbb\x6a\x96\x6a\x35\xd5\x95\x72\x7c\x5e\xf0\xb6\x63\xbc\x89\xeb\x7c\x82\x3c\xab\x41\x3b\x67\xaf\xc9\x6e\xc3\x06\x63\xfd\x44\xd6\x78\xc7\x56\x4a\x93\xf7\x14\x34\xeb\x77\x41\x30\xa8\xc8\xee\x58\xd2\xc2\x5b\xcb\x5b\xdc\xc5\x93\x19\xa9\xeb\x04\x13\x3c\x98\xe8\x88\x12\xac\x5b\x37\xbe\x26\xd3\x8b\x58\x66\x9e\xb1\xf3\xbd\xb1\xb1\x7c\x3a\x68\xd7\x0b\x86\x8c\x1b\xb2\xcb\x3b\xdd\x7a\x01\xbd\x8a\x4e\xd0\x30\xb5\xfa\xb8\x2b\xef\x93\xf6\xa6\x84\xbd\x8b\x31\x56\xaa\x43\xc9\x3d\x5d\xb2\x4e\x50\xb0\xad\x24\xdb\x27\xc8\x05\x03\x9b\x9a\x20\xe9\x6e\xd6\x00\x26\xcb\x58\x61\xb1\x00\x34\x67\x7b\x4a\x25\xec\x52\x4e\xff\x8a\x5d\xe2\x14\x3a\x09\xa6\x56\xe2\x1d\x36\x5c\xe1\x94\x16\x2a\xe8\xe9\x16\xf4\xd9\x14\x8d\x4c\x44\xf6\x39\xab\x0c\x21\x4e\xfc\xc1\xb1\xaf\xca\x5b\xc5\x13\x22\xf9\xe5\x64\x38\xa7\x85\x8a\x48\xa4\xfd\x85\xdd\xeb\x74\xc3\xe2\x19\x5d\xb2\x31\x5d\xb0\xcc\x46\xaa\x7b\xbc\x98\x2e\xcd\x04\x5a\xb1\x2c\x5e\xce\xa6\x68\x34\x02\x93\xc7\x68\xa3\x8e\x8d\x42\x34\x02\x53\xfe\x20\xd8\x28\x1d\xfc\xca\xda\xe4\x5d\xc9\xfa\x87\x1b\xd7\x32\x59\x3b\x5d\xf4\xae\x59\x99\xf3\x12\x58\x80\xa6\xd3\xbd\x91\x95\x56\x46\x29\x6c\xdd\xed\x23\x11\xcb\x5e\x9d\x85\x60\x16\xe5\xc6\x91\xae\xd8\xc9\x7f\x42\x3c\x1a\x92\x13\x7a\xd1\x47\xeb\x56\xc6\xc9\x5f\xae\xa1\xbe\xb6\xe8\xa9\xc3\x69\x35\x2f\x4a\x1e\x5a\xe1\x29\x1a\x87\x97\x98\xab\x35\x38\x2a\xf9\x62\x3b\xe7\xed\xf8\x00\x66\x32\x0c\xd9\xd7\x74\xd0\xad\x1b\x86\x97\xef\x25\x8b\x7d\x21\xff\xf0\x21\x7b\x14\xf6\xe5\x7b\xe8\x32\xf2\x21\xfb\x2a\xe4\xc7\xec\x9b\x90\x0f\xd9\x84\xf2\x3d\xa1\x63\x42\x61\xfd\x84\x62\xbf\xa7\xa7\x7d\xdf\xc8\xa1\x1f\xd7\x44\x05\x26\x3b\xd0\xc8\x11\x7c\xdf\x63\xa1\x7e\xa3\x49\xa8\x53\x9e\x98\x94\x63\x99\x04\x35\x1d\x0b\xf5\x0b\xe4\xfd\xb2\xbf\x46\x73\x88\x75\x82\xff\x73\x76\x32\xac\xcf\x4e\x86\x0f\xc8\xc9\x25\x45\x88\x98\x59\x0f\xc3\x73\x75\x80\x66\x0f\xb1\x88\x50\x84\x86\x10\x58\x64\x4f\x6f\x59\x8c\xb6\x65\x8a\x28\x92\xfd\x8d\x66\xf4\x29\x53\xc6\x8c\xa3\xa4\xaa\xd2\xcb\xbc\xae\xfd\x46\x38\xbc\xe8\xc9\x54\x3c\x6e\xb3\x5a\x80\x07\xa3\x27\x92\x7d\x16\x8b\x99\x85\x1c\x55\x38\x9c\x44\x57\xe0\x90\xd2\x57\x49\xf5\xe6\x3a\xd7\xe0\xc9\xb7\x06\x2e\x1b\x42\x4f\x81\xcc\x9b\x03\x60\x9e\x35\xcf\xa3\xd7\x7d\x3d\xf3\x14\x70\xc2\x5c\x8c\x1c\x6d\xe4\xcc\x47\xab\xb4\x12\x45\x69\x8c\x81\x3f\xf3\xdb\x76\x1a\xc4\x23\xf7\x13\x46\x9f\xf9\x2d\xc0\x30\xa6\x22\x4d\x32\x04\x26\x91\xbd\x71\x50\xe2\x19\x2d\xd9\x35\x06\xdf\xb1\xc1\x84\xa6\x3e\x3f\x61\x90\xbf\x76\x97\x5c\x1c\x99\x56\x39\x3e\xa3\x04\xab\xd8\x23\x51\x26\xb9\x92\x9b\xd3\xfc\xd2\x3d\x2d\xf6\xf4\xbc\xc8\x3f\xd8\x87\x46\xff\xee\x6b\x69\x54\x95\x98\xec\x69\x06\x51\x84\x1a\x80\xcd\xb9\x89\x32\x39\x55\x71\x10\x7c\x46\x47\xb5\x58\xe0\x9d\x69\x55\x58\xd2\x04\x9e\x86\xe8\xed\x9b\xb7\xf2\x7b\xdd\x01\x5b\x27\x6e\x12\xda\x14\x1b\xe8\x25\x44\x0b\xe2\x83\xcb\xf0\xde\xc0\x46\xcd\xec\x39\xcb\xbb\x21\x48\xbc\xd9\x2d\xe5\x6e\xd0\x02\xd1\x3c\xb9\x4a\x9b\xbc\xbe\x38\x24\xbb\x3f\x99\x78\x11\x53\xdd\xc4\x9b\xcc\x22\xff\x46\xee\xf8\x15\x4b\xf4\x34\x98\x33\xeb\x5f\x47\x33\x66\xdf\x9e\x07\xc1\x7c\x5a\x31\x98\x4b\x15\xdd\xc9\xc9\xe2\x02\x2d\x41\xac\x59\x30\xb0\x29\xea\x3a\x8b\xdc\xa4\xd1\x05\x81\xc9\x0e\xae\x8c\x94\xe3\x4d\x33\x39\x16\xad\xa7\xda\x02\x67\x23\xfb\xcd\x8c\x43\x9c\x45\x48\x97\x85\x42\xa4\x16\x20\x9a\x41\xa8\x50\x3b\xcb\xc6\x30\xa0\x5b\x96\xf3\xeb\xa3\xb7\xda\xf7\xb5\xaf\x2b\x53\x26\x09\xb6\x25\xe3\xa3\x65\x51\xbe\x68\x2a\xb6\xbd\x6e\xef\x9f\x0a\xbf\xbe\xff\x11\xa9\xb0\x97\xdb\xfd\x7e\x8f\x07\xb8\x17\x3c\xe6\x5a\x07\xe1\x1b\xa8\x0b\xab\x75\xe8\xa6\x34\x0f\x19\x49\xa4\x1e\x77\x4d\x25\xba\x42\x71\xef\xf8\x8e\xfd\xf1\x1d\xcf\xe4\xd6\xab\xd1\xab\xe2\x9d\x24\x66\x10\xc3\x85\xd3\x8a\x27\xe5\x7c\x15\x22\xb4\x9f\x41\x48\xa3\xfb\x97\x65\x0e\x30\x09\xed\x49\xdf\x12\x6c\x4d\x84\xf6\xfb\xf3\xe8\xc1\x87\xb0\xb7\x47\x3c\x17\x65\xca\x2b\xaf\x22\xb5\xfe\x81\xdc\x7b\x2a\x57\x95\x0a\x73\xd4\xa3\x15\x0a\xbb\xc1\x4c\x22\xbf\x26\x4f\xa5\x95\xfa\x2c\x51\x05\xec\x8d\x9c\xe6\x92\x25\x32\x33\x9c\x31\x36\x97\x5c\xca\x5c\x92\x6a\xaa\x69\x84\xeb\xac\xca\x74\x56\xb6\x27\xb4\xb4\x98\xa0\xd4\x9f\xdf\xff\x4f\x54\x0e\xfa\x90\xde\x6a\xa9\xfc\x54\xc6\xf7\x72\xbe\x11\x32\xbd\x1b\x19\x32\x30\xcd\x47\x0b\x2c\x28\x4a\x50\x23\xb2\x93\xee\xa0\x5f\x01\xd6\x56\xe5\xb8\xe8\xcd\xf1\xc9\xcb\x31\xef\xcd\xf1\xd9\x86\x5a\xfb\x7f\xff\x0e\xd8\x72\xfe\x33\x55\xea\xa8\x2e\xb6\x22\x4e\x84\x95\x00\x4a\xf2\x84\x8d\xeb\xfa\x8b\x6a\xe6\xaa\xe6\xdc\x84\xdb\x71\x64\xc4\xc5\x9b\xf9\xe0\xf0\x8d\x30\x3f\x4a\xf3\x4a\x24\xf9\x1c\x14\x22\x44\x9b\x13\x4a\x0a\xf5\xe1\x76\xc3\x5f\xa8\x78\x6e\xcf\x92\xdc\x58\xbb\x1c\x25\x47\x10\x6d\xfd\x28\xa9\x8e\x12\x6b\xce\xea\x47\xb3\xb9\x71\xa5\x73\xaf\xb8\x77\x7c\xc9\x4b\x9e\xcf\x4d\x99\x62\x95\x56\x47\xab\xa4\xca\xff\x97\x38\xba\xe0\x3c\x3f\xd2\x5b\x76\x5a\xf1\xc5\xd1\xf1\x51\xb5\xdd\xf0\x12\x93\x46\x0e\x63\x6d\x63\x62\xab\x8b\x46\x10\x35\xa7\xd4\x41\xb6\x59\x5e\x72\xc4\x43\xe1\x1a\xf9\xb3\x6d\x64\x6f\x66\x8b\xc5\x22\xfa\x3b\xe4\xbd\x6c\xdd\x11\xbf\x01\x9d\xa2\x2c\x6f\xbd\xad\xc4\x11\x4f\xc5\x8a\x97\x47\x17\x1c\xe2\x34\x1c\x15\xa5\xd7\x43\x14\xec\x85\xd0\xd0\xd4\x40\xa6\xdc\x8d\xa4\x99\xb5\x8a\xc8\x62\x85\x6b\x62\x1e\xd2\xdd\xbc\xc8\x2b\x51\x6e\xe7\xa2\x28\xc3\x9d\x0e\x7f\x45\x79\xbe\x5d\xf3\x32\xb9\xc8\x78\x38\x98\xd0\xeb\x52\x61\x7f\xe8\x30\x2a\xcb\xf4\x72\xab\x9f\x41\xbc\x70\x11\x04\x58\xd7\x51\x71\xf1\xd6\x14\xfd\x66\x19\xf5\xa6\x2a\xcc\x2e\x3e\x3a\x3f\x87\x56\x9c\x9f\x33\x41\x40\x60\x7d\xdd\xcb\x4a\xcd\x31\xc1\xc2\xdb\xaf\x9e\x15\x79\x25\x1b\x67\x10\xa8\x41\xc7\xc4\x87\xc8\x3e\x40\x34\x1f\xbd\x2d\x8b\xab\x74\xd1\x93\xc9\x3c\x40\x34\xdf\xd3\x17\xec\x35\x46\xaf\x35\xa9\x47\x84\xbe\xef\x05\x70\x05\xab\x95\x92\xe7\x36\x24\xd4\xa8\x1d\x97\xe1\x85\xad\x5b\x6d\xe2\xbd\x5b\x69\x04\xe0\xca\xdd\x97\xff\xb4\x1b\xbf\xe4\xed\xff\x6c\x34\xc1\xce\x28\x81\xad\xbe\x71\xfa\xc1\x78\x87\xd8\x35\x5d\x74\x76\x46\x9a\x32\x13\x35\x9f\x26\x6c\x3c\x4d\x1e\x17\xd3\x64\x38\x24\x69\x9c\xcc\x3c\x02\x94\xd8\x03\xe9\x9c\x95\xec\x46\x1f\x5e\xc3\x5a\xd7\xca\x2e\x4e\x75\xa0\x6c\x2d\xa9\xa6\x84\xc8\x1d\x00\xf6\x21\xb6\x33\x31\x75\xd4\x61\xb6\xba\xc1\x84\x96\x7c\x59\x85\xbb\x6d\xae\xd9\x4f\x90\xe1\xf7\xf4\x06\x97\x34\xb7\xb4\xea\x67\x30\xec\xa0\x3e\xc5\x71\x65\x74\x8d\xc0\x94\xbf\x48\x59\x6c\x2a\xc3\x3b\x4d\x6d\xf4\x36\xcd\x0f\x72\xbb\x27\x50\xcb\xb4\x38\x16\x6a\xbf\x6f\xd4\x35\x37\x9a\x8d\xe7\xe9\xe2\x99\x64\xb8\xba\x1a\x86\xc1\x4b\xcc\x0d\xc9\xe2\x53\x3c\xa6\xdd\x36\xd8\x1a\x09\x18\x04\xa6\x74\xa7\x77\x44\x08\x02\x7b\xb8\xc6\x5f\x37\x8b\xc4\x47\x7a\x56\x90\xdc\x26\x36\x8f\x6d\xb3\xc6\xc3\xd5\xb2\x47\xfb\xa9\x86\xb3\x68\x36\xa8\x57\x38\xc0\xf7\x34\xe5\xb4\xd8\xf6\x19\xdd\xa9\x29\xe6\x57\x2f\x07\x95\xe6\x7d\x03\x21\x46\x66\xa8\x59\x3e\x52\x17\x8d\x93\x61\xcd\x8d\x1a\x57\x48\x4c\x46\x62\xd5\xca\x52\x2a\x27\x87\xa7\x60\xd3\x93\x16\xf9\xcb\x32\x59\x37\x21\xd5\xf9\x68\x9b\xaf\x65\x5b\xf9\x02\x4c\x93\xb9\x50\x7c\x73\x77\xc3\xb6\xb3\x92\x37\x66\xa5\x3e\x4f\xd2\xff\xeb\xef\x8f\xdf\xd3\x2c\xfb\x55\x55\x73\x60\x0a\xba\xbe\x98\xc2\xbd\x6d\x14\xd8\xe6\xda\x8e\x68\xf7\x78\xc9\xf3\x05\x2f\xef\x2d\x53\xb7\xda\x74\xba\xea\xe2\x2f\xa1\x3d\x86\xa4\x51\x43\xbd\xf7\xd4\x6d\x3b\xde\x79\x84\x22\x40\xc2\x18\xfa\x53\xb1\xc7\xb2\x38\xa7\x5f\x9c\xfe\x69\x34\x2d\x72\xd7\xaf\xd8\xce\x30\xaa\x77\xca\xbd\xe8\x99\x24\x97\xdf\x27\x15\x47\x74\x77\x91\x54\x5c\x2b\xf4\xa8\xbc\x96\x3c\x9b\xbc\xd9\x13\xfa\xb9\x4f\x08\xef\x36\xfc\xd9\x41\xa2\x29\xee\x79\xeb\x7d\x3b\x73\x7e\x4f\xe6\xdf\xe9\x39\x04\xc2\xa2\x39\xe5\x6e\xe4\x7f\x3f\x4c\x62\x75\x49\x96\xc2\x52\x4b\x12\x7b\xc1\x83\xef\x23\x66\xf7\x8e\x38\x0c\x2e\x95\x9b\x8b\xd5\x4a\xe4\xcc\xa3\x5f\x25\xe3\x23\xd3\xab\x00\x7b\xb1\x29\xd3\x75\x52\xde\xd2\xc4\xdb\x8f\x68\xc5\xb0\xca\x26\x29\x8f\x37\x8b\x09\x9d\x3b\xce\xba\x8a\xd0\x22\xbd\x42\x61\x45\x33\x26\x79\xc2\x18\x99\x2a\x11\x45\xa6\x42\x44\x91\xa9\x0e\x51\xa4\x2b\x03\xdc\x06\x55\x95\x7e\xae\xf4\x41\xb6\x1e\x34\x23\x74\xcb\x60\x0e\xe9\x7c\xa0\xf5\x4a\xe8\x4f\xb8\x24\x84\x2e\x98\x18\x19\x56\x9e\xae\xd8\x06\x6f\xe9\x42\x05\x04\x51\x7d\x71\xc1\x56\x2a\x28\x50\x05\x81\xc9\xe4\x47\x9c\xb2\x95\x52\xd2\xd3\x4b\x73\x65\x30\x2f\xd9\xa9\x55\x03\x96\xe1\x29\x14\xec\x34\x5e\x67\x0f\x1f\x9c\x00\xd4\x94\x2c\xf7\x8a\xc1\xa8\x5f\xd0\x9d\x9c\xa0\x6b\xb7\x19\x88\x1e\xdd\x41\x23\xcc\x16\x96\xbc\xc9\x9a\xe8\x28\xdd\xb7\xf0\x69\xe0\x7d\x6a\x26\xd4\x25\xbd\xa2\x97\xad\xa5\x19\x75\xe7\xdd\x67\xba\xd3\x7d\x18\xa6\xfb\xce\x0b\xe6\x50\x9c\xd0\xa7\x2c\x8d\xbe\x0f\xe7\xf4\x9a\xa5\xd1\x39\xee\x36\xd7\xf6\x74\x38\xdf\xd3\x8c\x84\xd9\x61\x32\xf0\xac\x43\x06\xec\x12\x5d\xbb\x05\x5a\xee\xf7\xb4\xfb\xee\x53\x7a\x4d\x6f\xdd\x64\x56\x2a\x77\x4d\x1d\xde\x6e\x4b\xee\x51\x88\xdf\x5b\x14\xc2\x7c\xe6\x60\xac\x48\xc4\x73\x49\x22\x5e\x16\xf3\x6d\x85\x08\xfd\xbe\x97\x9d\x92\xe3\x9c\xfb\x33\xbf\x64\xde\xdc\xa5\xa9\x9e\xa5\x6a\xae\x79\x73\xd5\x9f\x76\x87\xfb\xe1\xf9\x17\xb0\x62\xdd\xb7\x3e\x2a\x42\x91\x4a\x6e\xd8\x74\x79\x49\xf5\xa6\x04\x9f\x13\x72\x75\x2a\xe4\x86\x27\x37\xf4\xe4\xad\x24\xfd\xef\xd8\x98\x7e\xfc\xff\x14\xef\xb6\xa7\xe5\xc8\xff\xc2\x26\xd5\xd6\x9b\x52\xb5\x2a\xb6\xd9\x02\x9e\xcb\x5d\x17\x0c\x2e\xe4\xde\x76\x80\x97\xbb\xe4\xe2\x39\x2f\xd3\x2b\xbe\x80\xcd\xf9\x65\x59\xac\xd5\x44\xe9\x30\x57\x3a\x8a\x9e\x9c\x0d\x36\xb4\x0e\xde\x79\xd5\xc9\x29\x45\x39\xb1\xa7\x3a\xdb\x32\x1d\xe8\x17\x68\xc9\x1c\x17\x64\x49\x0c\xb8\x6b\x74\x52\x83\xa0\x27\x11\x0c\xb4\xb6\xa5\xb5\xb9\x69\xd5\x9c\xd7\x75\xb9\x87\xa0\x8e\x5f\xcc\x34\xbd\x1b\x0e\x15\x7b\x68\x7b\xe8\xef\xf0\x17\x92\x4e\x1f\x1f\xbf\x0b\x02\x2c\xe7\xd2\xdf\xe5\x1b\x79\x87\x5f\x54\xf4\xa6\xc5\x27\x76\x06\x54\xa7\xf7\xb6\x78\xd9\x9c\x11\x3d\x5c\xb8\x3f\x75\xa6\x3c\xe2\x2e\xd2\x33\x09\xdf\x46\x6f\xd9\x60\x12\xda\x14\xe0\x6d\x92\x34\xaf\xb0\xd5\xf8\xa9\xe0\x12\x46\xe3\xa7\xec\x1a\x54\xde\xde\xf6\xdc\xb7\x9b\x36\x38\x26\x9a\x33\x2c\xdc\x16\x29\x94\x99\x11\xa1\xa5\x4c\xf6\xdb\x4c\xc5\xa8\x2c\xe4\x93\xd4\xed\x95\x65\x84\x14\x52\x53\x58\x02\xfa\xaf\xa3\x4a\x95\xcb\x94\xe8\x0d\x35\xa1\x73\x59\xa6\x9c\x8f\xc2\x0b\xc0\x8f\x05\x8d\xfd\x7d\x13\xea\x07\x90\x4e\x57\x37\x00\x70\x42\xaa\x23\x6a\xb4\x4d\xf1\x66\xe4\x1e\x32\x57\x49\x82\x05\x45\x87\xe7\x78\x57\x6c\x45\x96\xe6\x3c\x44\x79\x91\x73\xb4\xa7\x39\xa1\x16\xc4\x15\x1d\x4f\x10\x95\xb5\x85\xa9\x94\xcb\xc2\x3e\x4b\x78\xe8\x78\x26\xf6\x7b\x3a\x27\x3d\xfb\xc3\xf3\xce\xde\xa2\x31\x08\xdd\x17\xed\x69\x0f\xd3\x4a\x7a\x99\x4c\x1d\x12\x23\x1b\x6d\x8a\xec\x76\x99\x66\x19\xc1\x1f\xd5\x32\xff\xa3\x71\x4a\x42\x5f\xc1\xfe\xbb\x2c\xca\xeb\xa4\x5c\xbc\xe3\xcb\x69\xaf\x96\xf9\x55\x10\xe0\x57\xbd\x07\x62\x3a\xf2\xf6\xaf\xec\x55\x7f\x14\x71\xed\x23\xf4\x8e\x2f\x69\xa9\x37\x1d\x93\x70\xef\x16\x73\x98\x71\x05\x67\x57\xb3\xd9\x42\xe5\x29\xb3\x1c\xda\xe1\x02\x3b\x3c\x2d\x37\xca\x53\x6f\x97\xac\x7c\xfe\x70\xce\xca\x91\x28\x68\xc6\x34\x9d\xa6\x1b\x07\x70\x49\x17\xca\xa4\x1a\x08\x2f\x5d\xb9\x89\xbb\x88\xfe\x08\x17\xf4\x82\xbd\xc1\x25\x8d\x91\x28\x60\x72\x2a\xe6\xcf\x9c\x2d\x50\x64\x5e\x94\xbc\xdd\x9a\x2d\xf1\x9c\xa6\x84\x9e\xb2\xc4\xa7\x9d\x6b\x7a\xc9\xb6\xd8\x25\xd1\xf5\x3d\xbd\x85\x12\x24\xe7\xaa\x9c\x7a\x52\xf4\xa0\x28\x29\xd3\xe4\x78\xbe\x2d\x4b\x88\xd2\x73\x1a\x81\x15\x2e\xb2\x66\xe7\x17\x74\x85\x77\x69\xf5\x4c\x65\x08\x4f\x69\x5a\xbd\x4d\x4a\x91\x26\x59\x76\x6b\x12\x2f\xe9\x4a\x96\xe7\xf1\x4a\xc9\x9e\xd0\x9d\x4e\x2c\xf2\x67\x59\xea\x7b\x5a\x72\xb2\xbb\x18\xe9\xd4\x20\xb0\x97\x98\x13\xfa\x8b\x0e\x4c\xd2\xc1\xd3\xa1\x15\x5e\x9b\x93\xc2\xcc\xe8\xb9\xc3\x8d\x32\x44\x76\x72\xa4\xd3\xb7\xfe\x08\xae\xa9\x20\x12\x96\x29\xe3\xa0\xd0\x7a\xd9\x3b\x2f\x7d\x9d\xe8\x8f\x7b\xfa\xdb\xff\x15\x71\xe4\x0b\x45\x7e\x4f\x32\xb1\x93\x4d\xae\x14\x51\x48\x0a\xca\x47\xcb\xb2\x58\x53\x7b\xd4\x4c\x68\xe1\x11\xcf\xba\x2e\x15\x44\x1f\xcc\xc8\x84\x01\xb2\xf3\x87\x55\x59\x5c\x53\xb5\xba\x3c\x69\x03\x66\x9f\x2c\xac\x31\xf9\xcc\x74\xd4\xaf\x01\x09\xfc\x02\xe5\x81\xc0\x0b\x9c\xd3\x84\x38\xed\x4b\x41\xd5\xc8\xa5\xfb\xae\xb0\xff\x45\x82\x19\xf6\xbe\x5f\x7e\x3d\x91\xfb\x4a\xfb\xf3\xa9\xf9\x56\xfb\xa1\xc4\x52\x92\xff\xe2\x5b\x3d\x70\x3d\x7f\x46\x38\x15\xb1\x9c\x62\x7b\xbc\xc0\x82\x96\xda\xa1\xa6\x87\xbe\xd2\x4f\x5f\x26\x7e\x77\x88\xce\x7d\x52\xf7\x6f\x46\x90\xd6\x62\x34\xfd\xe1\xef\x9a\x20\xec\xe9\x4f\xf7\x46\xac\xd0\x2a\x37\xd1\xc0\x9c\x49\x97\x58\xe8\x3d\x45\xd2\x9a\xba\x36\x77\x5a\x08\x31\xc1\x78\x19\x63\x9f\xac\x0d\x13\x55\x69\x03\x48\x33\x2f\xc8\xee\xd7\x7a\xef\x4d\x35\x12\x45\x7f\xee\xbe\x5d\xa2\xa7\xd1\x17\x72\x1c\xa6\x5e\x78\x1f\x73\x72\x9d\x6b\x7b\x0f\xcf\x1c\x86\x31\xc0\x44\xb9\x27\xc7\x1e\xfb\x8d\xa4\xae\x8d\xc4\x6f\x64\xe3\xbb\x8d\x33\xbe\xde\x8c\xa9\x4e\xb6\x52\x58\xce\x5c\xbf\x44\x7e\xe9\xa1\xdf\x9d\xb4\x64\xca\x3e\x29\x8f\x78\xf8\x03\x00\xb2\x9c\xa0\xe1\x0f\x38\x37\x33\xb1\x53\x7e\xab\x19\x14\x64\x4a\xd1\x96\x87\x7f\xc0\xa5\x2c\xea\x21\x92\xe2\xe6\x9e\xfe\xd2\x17\x34\x87\x3b\x39\x52\xe3\x92\x29\xe7\x72\x3e\x52\xf0\x3c\x41\x30\xc0\x7c\xb4\xe6\x22\xf9\x89\xdf\x4a\xc9\x23\xc9\x84\xbe\x9a\x8b\x32\xd3\x97\x10\x48\xef\x27\x7e\x4b\xf6\x5d\x9b\xc7\xd6\xae\x6c\x2c\x35\xbd\x65\xdf\xb1\x8a\x14\x34\x77\xf4\xbc\xf4\xce\x5e\x35\xb9\x85\x05\xe3\xc8\xad\x3b\xef\x29\x0e\x91\x77\x90\xe3\xea\x1a\xc5\xea\x20\x49\xdd\xcf\x64\x9f\x77\x8e\xdb\x44\xa1\x02\xdf\xeb\x83\x36\xaf\xf4\xb4\x15\xa2\x7b\x00\xc0\xc8\xa6\x48\x55\xd0\xdf\x2d\x33\xf1\xca\x74\xbe\x6e\xee\x79\xe5\xd9\x42\x75\xf0\x79\xb9\xf7\x45\x3f\xc3\xc3\xbf\x5b\xfd\xfc\x50\x87\x3d\x4f\x84\x5f\xba\xbc\xfd\xbb\x65\x67\x6d\xa8\x22\x05\x68\xc1\xc6\xd3\xfc\x31\x37\xc7\xb1\xc3\x61\x4e\xf4\x39\xb6\xc0\x80\xea\x93\x3b\x76\xbb\x74\x85\x6d\x1b\x0a\xa2\x2f\x3c\x23\x15\x5e\x6b\x36\x2d\x3b\x57\x85\xab\xb1\x05\x48\x15\x38\xc3\x6d\xe3\x67\xc8\x47\xc8\x7c\x1d\x52\xcc\x89\xb9\x05\x87\x49\x75\x49\x28\x64\x84\x15\xfa\x66\xa9\xf3\xe9\x3b\x26\xcc\x15\xa1\xde\x98\x2e\x3b\xa6\xf4\x7f\x5a\x54\x14\x3a\x18\x93\xd1\x56\xcc\xb1\xd7\xf4\x45\x17\x59\x79\x74\xbe\x59\x42\x4d\xe7\x9b\x25\xdb\xf1\xf5\x46\xdc\x86\x83\x09\xdd\xe6\xdb\x8a\x2f\x3e\x14\x9f\x79\x5e\x85\xf1\x4c\xdf\xbf\xca\x37\x5b\x21\x6f\x8b\x2b\x5e\x2e\xb3\xe2\x3a\x3c\x7e\x44\x21\xfc\xc7\x6b\xbe\x14\x6f\xae\x78\x19\x8e\x61\x13\x52\x19\x07\x13\x9a\x2a\x64\xaf\xd3\x22\x17\x2b\x85\x7e\xa9\x53\x5e\x16\xe5\x3a\x81\x2c\xdb\x8a\x97\x1a\x00\x4c\x81\xed\x4d\x68\x5a\x15\xf2\x07\xac\xb9\x17\x72\xc6\x48\x7e\x11\xda\xb1\xe6\x65\xba\x48\xf9\x5a\x95\x55\x2e\xe7\x8f\xfe\xf9\xe8\x11\x1c\x68\x72\xfe\x79\x91\xdc\x9e\xa6\x15\x04\x62\x0f\x07\x93\x3d\xa1\xf0\x55\xee\xf3\x57\xda\x45\xd4\x7e\x7a\x5a\xfd\x26\xab\x35\x9a\x2c\xd9\x3d\xb4\x64\xb9\x0e\x7c\x36\x6a\xd5\x7f\x10\xa0\x7a\x00\xf6\x37\xb4\x60\xc6\x0e\x7d\x74\xbe\x90\xfc\xfa\x87\x74\xcd\x31\x21\x72\x97\x32\x1d\xf6\x78\x0c\x28\x69\xd0\xcf\x70\xe5\x77\x90\x9f\xf0\xbb\xfa\x1e\x48\x6a\x7d\x1b\xa4\xd9\x5e\xf6\x5f\x52\x9d\x0a\x29\xad\x5e\x0d\x02\x3c\x10\x23\xd3\x7b\x72\x17\x35\xd7\x41\x50\x12\x15\x2a\xe6\x5c\x51\x4e\x15\x3c\x51\x11\x6f\x29\x77\x7b\xa3\x6b\x12\xfd\xd9\x61\x9d\xaa\x2c\xd1\x11\xa3\x8b\xf4\xf2\xc7\x62\x5b\x1a\xff\x5f\xbd\xc8\xd2\xea\x65\x59\xdc\xf1\x3c\x08\x5a\x09\x9e\x0b\x45\x31\x75\xc3\xc2\x0a\x6b\x05\x61\xd3\xdc\x60\x5e\x38\x0d\xe4\x12\xff\x9c\xfc\xdc\xc2\xa6\xe6\xd1\x46\xf2\x55\x84\x72\x12\xca\xdf\x76\x87\xb0\xc1\x98\x8a\x7d\xae\x5d\x1f\xdc\xfa\xaf\x8a\x35\x8f\xfa\x12\xc3\x7e\xd3\x10\x2d\xfb\xba\x98\x7d\xda\x8e\xe9\xc9\x93\x31\x20\xc6\x97\x8f\x73\x03\x44\x0d\x76\x1a\x10\x9d\xc9\x0b\x08\x18\x97\x33\x0a\xf8\x7f\x7a\x1b\xf5\x80\xe0\x61\x07\x5b\xb3\x72\xb4\x2e\xe4\xf6\xa4\x69\x52\xca\x2b\xa0\x80\xa6\x1f\x4e\x7b\x5c\x57\x12\x2c\x64\x8f\x3d\x3d\x85\x17\x55\x13\x95\x7b\x43\x3b\x95\xf5\x64\xa4\xea\x75\xf3\x02\x64\xd1\x89\x4b\x9d\x28\x09\xd2\xf9\x52\x27\x66\x3a\x31\x63\x70\xa3\x12\xd5\x5c\xd2\x4f\xd4\x0d\x73\xc9\x2a\x8f\xb8\x5b\xeb\x0c\xe2\x6e\xcd\x74\x82\xae\xbd\xfa\xf5\xc3\x33\xdb\xe4\x5f\x3f\x3c\x63\x36\x51\x65\x50\x0e\x6a\x3a\x87\x76\xf0\x77\xc9\x2a\xcf\xc6\x34\x77\xb3\x64\x72\x0e\x98\xf6\x16\xf3\x24\xe3\xa6\xd1\x70\xc3\x5c\x32\x5d\x5b\x53\x34\xe2\xb6\x19\x93\x38\xcd\x87\x43\x92\xe0\x82\x89\xb8\x64\xeb\x38\x9f\xcd\xa0\x1c\xf0\xd6\x74\x88\x6c\x20\x2a\x5e\xb2\xc1\xc4\x0d\xd3\x95\x9c\x36\xa7\x5a\xd8\xd3\x18\xfc\xe7\x0b\x30\xed\x93\x04\x06\xeb\x59\x3b\x3a\x5f\x44\x4d\xf2\x11\xca\xb9\xad\xf2\xeb\x35\x80\x2d\x28\xbd\x5f\x80\xcc\xa6\x63\xf7\x5f\x06\x01\xbe\x94\x13\xbc\x1c\x6d\x41\xbd\xe8\x39\xb2\x13\x7a\x09\xc1\xb9\x6c\xc3\x6e\x0f\x6d\xdc\x57\xea\x58\x11\x78\x13\xdb\xba\xd6\x5c\x71\xc5\x3c\xf5\x8b\x79\x3c\x8e\xc0\x93\x62\xce\xd3\x0c\x80\xfc\xc6\x21\xdc\x2f\xb3\xa2\x28\x1b\x5b\xfb\xb5\x5b\xc5\x43\x29\x97\x9a\xe9\xaf\x20\xaa\x82\x20\xad\x5e\xa6\x79\x2a\xb8\x8a\x47\x90\xb3\xa7\x30\x8c\x9e\x6d\xd2\x5d\x2b\x84\x83\x76\xe1\x48\x73\x6c\x38\x03\xe7\xb0\x42\x53\xf5\x34\xb9\xa8\xec\xd3\x63\xf7\x34\x61\x63\x8d\x24\x2f\x97\x6d\x01\xcb\x16\xe7\x41\x20\x47\x17\x00\xb3\xca\x59\x5d\x0f\xf2\x20\xb8\x86\x01\x27\x0a\x88\x51\x5e\x91\x20\x48\x5c\x68\xa7\x64\x98\xba\xf6\x9d\xcb\x0f\x84\x51\x29\x47\xd5\x76\x03\x06\x40\xcf\xf9\xa6\xe4\x4a\xcd\xf1\x7b\x52\xe6\x69\x7e\x59\x05\x81\xa7\x0a\x73\x86\x45\xf3\x22\xaf\x8a\x8c\x07\x81\xbe\x18\x5d\x27\x65\xde\xbc\xc3\xc8\x2b\xee\xe8\x5a\x95\xa7\x50\x34\xf7\xfd\xa6\x63\x96\xc6\x1c\x35\xdd\xbd\xf5\xce\x38\x60\xe5\x68\xe1\x8a\xd4\xa0\xb3\x41\xd0\x97\xaa\x18\x68\x4e\xfc\x58\xf0\x05\x4d\x59\x3c\xd3\xe7\x1c\x1d\xab\xb9\x64\x38\x84\x9a\x0a\x86\x50\x0f\x40\xb7\x7f\x18\xe2\x8a\xac\x24\xe5\x2c\x86\x0c\x9d\xe5\x31\x1a\x26\x43\x34\x3b\x42\xd4\x37\x08\x25\xc5\x90\x55\x43\x24\x3f\xdb\x4f\x8e\xab\xd9\x10\xd1\x23\x34\x2d\x58\x61\x5d\x54\x8e\x1f\x11\xe5\xee\x52\x34\x8f\x5e\x52\x13\xf0\x68\x7f\x8e\xf9\x10\x9d\xe5\x4f\xcd\x53\x59\x6c\x67\x4b\x90\xa5\x29\x42\x9e\x1a\xd1\x0f\x11\xf9\x1a\x1a\x02\xa4\x2a\x58\x7e\x91\x51\x25\x92\xf9\x67\xb9\x33\x0c\x26\xfb\x96\xf0\xd1\xd2\xf5\xec\xe1\x94\x52\x7e\xee\x07\x7a\x03\xf6\x7d\x2d\xe3\xb3\xbf\x3d\x38\xe0\xbb\x7d\x13\xf3\x59\x5d\xe3\x73\xac\xaf\xe1\x38\xc2\x16\xfd\xfa\xd0\xea\x37\xce\x7d\x1e\xeb\x6e\x92\xfe\x2e\xfb\xfe\xa2\xc9\xbe\x03\x92\x15\x27\x3e\x28\x9d\x65\x9e\x53\x60\x9f\x21\xd2\x14\xb0\xd0\x11\x2e\x25\x3b\xbd\xdb\xd3\x0d\x5c\x01\x5c\x27\x31\x37\x90\x45\x81\xaa\x0f\x80\xe5\x8e\x4a\xc3\x7c\x87\x1a\xd3\xa4\x04\x46\xdc\x03\xfd\xdc\x82\x4f\x6e\x10\x0c\x4c\x9d\xb6\x4a\x55\x15\xb4\x0e\xde\xea\x13\x1e\xde\xcb\xee\xb2\x54\x51\x83\x7d\x82\xe3\xcb\xbd\xab\x5b\x01\x41\x74\x47\x48\xc5\xba\xfb\x60\x3a\xf3\x33\xbf\xad\x22\xef\xba\x1b\xc9\x97\xe6\x46\xfa\x11\xee\x73\x24\x69\x74\x3e\x00\xd6\x7c\x53\x81\x54\x36\x26\xd2\xb3\xa6\xb2\xbc\x01\x08\x30\xfd\x53\x7e\xfe\x9f\x71\x3e\x44\x15\x92\x17\x60\x9c\x6b\x5f\xfd\xec\x89\x8f\xdd\x60\x72\xd1\x9f\x30\xcb\xfe\xec\xc0\x56\x19\x25\xb0\x2d\xe7\x77\xef\x5b\x68\xc9\x7c\x70\x42\x37\x38\x58\xb0\xcf\x38\x27\x6a\x50\x64\x3b\x1a\x70\x84\x7b\x75\x2c\xed\x7f\xd8\xf7\xea\xc3\x9e\x03\x40\x96\xab\xec\x6d\x13\xf1\x1b\xa1\xa1\xa3\xff\x92\x5f\x17\xc7\x06\xd0\xd6\xb8\x99\xf2\x27\x6c\x1c\xe5\x11\x1a\xa2\x10\xa1\x10\x1d\x23\xa2\x5e\xd9\x14\xd7\x78\x32\x76\x6e\xf5\x63\x5a\x40\xec\x0f\x0d\x91\x4c\x8c\x7b\xe4\x84\x0c\x55\xfb\xde\xb1\x13\x7c\x16\xc7\xff\x39\x8b\x67\x0f\xcf\x66\xa4\xc6\x67\x67\x24\xc2\xf1\x8f\xab\xd9\x7a\x8d\xab\x8a\x44\xf5\x69\x51\x9f\x9e\x46\xf2\x5f\xfd\xbc\xa8\x9f\x3f\x87\x3f\x91\xfc\x57\x2f\x16\x8b\x68\x11\xd5\x8b\x22\xaa\xaf\xe3\xa2\xbe\x9e\x45\xf5\xef\x71\x51\xff\x3e\x8b\xea\x5f\x8a\xa8\xfe\x04\xff\xd5\xee\x6f\xfd\xe9\x53\x7d\x79\x89\x2f\x2f\x2f\x23\x12\xd5\x3f\xfc\x80\x7f\xf8\xe1\x07\x79\xc5\xeb\x17\x75\x52\x3f\xad\x57\xab\xa8\xfe\xf1\xc7\xa8\xfe\xfc\x39\xaa\xd7\xeb\xa8\xae\xaa\xa8\x7e\xbf\x9b\xd0\xef\xf6\xf5\x4d\xfd\xb1\xbe\xbb\x8b\xea\x7f\xff\x3b\xaa\x47\xe4\xe4\x92\x7e\xec\x6d\xf8\xeb\x0f\xef\xeb\xd7\x1f\xea\xd7\xaf\x23\xf9\xaf\xce\x76\x13\xfa\xf5\x5e\x66\xff\x83\xc1\xb9\x8e\x3f\x18\xbf\xb6\x81\x39\xcb\x69\x77\xca\x94\x20\x66\x74\x4d\xb3\x21\xee\x4c\x39\xc3\x92\x1c\xf2\x20\xc0\xaf\xe4\x90\x16\xca\x22\xf5\x55\x2c\xe2\xf1\xac\x2f\xdc\xde\x5b\x5c\xf4\x13\x55\x2a\xe2\x89\x24\x14\x8f\x66\xb2\xc0\x1c\x0a\xc9\xfb\x4a\x80\xb5\xac\x58\xc0\xe7\x89\x48\x30\x19\x15\xe5\x22\xcd\x93\xec\x60\xc9\x9c\xec\x7d\x4c\xce\x96\x23\x98\xe5\xd5\x22\x2c\xd8\x4b\x40\xbc\xf0\x4b\x27\xf4\x0f\x39\xb1\xe5\x9f\xa6\x6e\xd8\x2e\x0d\x5a\x30\xae\x41\xc5\xde\x29\x0a\xa6\x1c\x1e\x0a\x6b\x7f\xfe\x38\x07\x1b\xf4\x57\x71\x11\x8b\xd9\x2c\x92\x7f\x99\xbe\x09\xe1\x06\x97\x4c\xfe\x1a\x6c\xb2\x93\xb3\x38\x3e\xab\xce\xde\xcf\x4e\x48\x54\x3a\xc5\xee\x7f\xce\xe2\xfa\x6c\xf6\x40\x29\x75\x43\xef\xc1\xd9\x99\x4a\x9b\xf6\x68\x76\x15\xb7\x95\x32\x84\x3c\x96\x49\x4b\x3a\x43\xf6\x1a\x17\x92\x2d\x8a\xe4\x5f\x2d\xec\x48\x39\x4c\xde\x9a\xc2\xd2\xfd\x5e\xee\x48\xb2\x03\xa4\xf8\x17\x36\xbb\xc7\x08\xb4\xc0\xd9\x7a\xbd\xfc\xd2\x27\x60\xdf\xf8\xaa\x3d\x2f\xca\xd8\x28\x2b\xf2\x4b\xf9\xa6\x12\x87\x15\x92\x34\xf8\x68\x7e\x04\xb0\x0a\x38\x45\x95\x5c\xfd\x13\x36\x0e\x82\x8f\xc6\x77\x51\x05\xac\x31\x5f\xff\x91\x96\x84\x36\xf2\xd3\xfc\x98\x4d\x9a\x2c\xfe\x6f\xec\xe4\x6c\x71\x42\x3f\xc9\x1f\x79\xf1\x83\xbc\xd8\x7d\xb5\x3f\xa1\x3f\xc1\xd5\xd7\xfb\x13\xfa\x0b\x3b\x89\x87\xc7\xb3\xe8\x6c\xb1\xfb\x76\x7f\x42\x1f\xa8\xbc\xd1\x09\xfd\x97\xba\xd2\x77\xff\x76\x77\x3a\x85\x73\x28\x63\x42\x65\x79\xc2\xdc\xc8\x22\x73\xee\xca\x9c\x50\x59\x6a\x09\x8f\x87\x27\xb4\x70\x8f\x86\x27\x34\xe5\xec\xe4\xdf\xb5\xbc\x97\x65\x86\x11\xb4\xf2\x32\xa5\x49\x23\x1d\x47\xa1\x7a\x44\x22\xf9\xb0\x92\x45\x8c\x8f\xbf\x9b\xed\xc6\xf4\xd1\x37\xdf\xee\xe3\xff\x95\x1c\xdf\x9d\x6d\xc7\xe3\xa7\xe3\xe3\xb3\xed\xf8\x9b\x97\x2f\xcf\xb6\xe3\xff\x19\xcb\x9b\xe7\xff\x23\x6f\x5e\x7e\x07\x37\x2f\x9f\x3f\x93\x37\xcf\x5f\xc2\xcd\xcb\xf1\xff\xc8\xbf\x13\x75\xf3\xe2\xe5\x6c\x37\x81\xd2\xea\xf8\x6c\x3b\xfe\x16\x5e\x18\x7f\xfb\xf2\xe5\xd9\x89\x79\x80\xcf\xaa\x87\x51\xf3\xa1\x79\x44\xe4\xef\xfe\x24\xa5\x73\xde\x20\x34\x19\x37\xf4\x7d\xce\x25\x99\x78\x0d\x50\xe5\xbe\x25\x98\x53\x8c\x49\x21\x26\xca\x43\xe1\x21\x08\x6f\x79\x63\xcd\x6e\xf1\x9c\x53\x4e\x22\x28\xcb\x89\xb0\xd4\x89\x86\xa1\xf2\x4b\xb8\x7c\x71\xb3\xc1\x10\x28\xdc\x4c\x16\x74\x76\x86\xa8\x8f\x3b\x78\x72\x76\x86\xcf\x62\x52\xcb\x9f\x19\xa9\xcf\x62\x1c\xff\xe7\x6c\x26\x49\x2a\x39\x9b\xc9\x54\x20\xb5\xcd\xb0\xae\x4d\x18\x0b\x51\xd7\xca\x5d\xba\xd8\x13\x42\x7c\xf5\x23\xef\x3f\x9f\x89\x8f\xcf\x4e\xce\xce\xfe\xf3\xe0\xe1\x30\x1a\x61\x52\xc7\x67\xb3\xdd\x7e\x26\x17\xf0\xd9\xd9\x83\x00\x29\xc6\x72\xd9\xec\xbf\x05\x6f\x72\x66\x02\xd6\x72\xcf\xf6\x0e\x61\xb6\x62\x3e\x23\xb4\x52\x82\x58\xd9\x0a\x71\x02\x5e\x3e\xd7\x80\x42\x40\x5b\x7a\x59\x29\x30\x2f\x79\x2c\xb7\xf0\x19\xf3\x58\xa9\x95\xae\x1c\x1a\xd1\x88\x42\xa4\xfb\x61\x74\x7e\xcd\xe4\x1f\xc0\x1d\x15\x72\x30\x47\xe7\xd7\xf0\x6c\xef\xf7\xc7\x85\x9d\x04\x9a\x0f\x0c\x82\x2d\x5e\xca\x91\x0c\x82\xa5\x1a\x4a\x9a\x8f\xce\x13\xb0\x18\x85\x5e\x58\x73\x36\xa6\xa7\x9c\x4d\xe8\x25\x67\x8f\xe8\x15\x67\x5f\xd1\x5b\xce\xbe\xa6\x4f\x39\xfb\x86\x5e\x73\xf6\x2d\xbd\xe3\xec\x7f\xe8\x39\x67\xff\xf4\xbc\x6f\xfc\x7e\xff\x20\x6f\xa2\xaf\xbe\xfd\x36\xfc\xea\xdb\x6f\x3c\x47\x99\xc6\xd8\xfc\xe3\x6b\xc6\x24\x85\xe1\xff\x98\x8c\xa5\x38\x3b\xae\x6b\xfe\x8f\xaf\xc7\x63\x99\xba\xff\x15\xa3\x4f\x88\x8e\xe9\x98\x1e\xc0\x67\xbf\xe5\x49\xe9\xa0\xd0\xf9\x63\xf6\xdd\x77\xdf\x7d\x17\x21\x34\xe4\x21\x1a\xa2\x21\x68\x1c\x7f\xc5\x63\x1a\xa3\x4f\x9f\x10\x7d\x34\x6b\x95\xe4\x6f\x6b\xaa\x28\xd9\x0a\xff\x25\xf9\xda\xd7\xf2\x35\x24\x9f\x23\xff\xc1\x27\x44\xbf\x39\xf0\xe4\x13\xa2\xdf\xd2\xc1\xd8\x7f\xfa\x0c\xab\x2b\x8a\x6e\x11\xa1\xdf\x9b\xbb\x09\xa1\x19\x87\xaf\x2c\xb8\xbe\xfc\x84\xe8\x03\xfa\xc9\xdc\xc8\x5b\xc1\xe9\x4f\xee\xfe\x13\xa2\x39\xa7\xbf\x78\x09\x36\x65\xc1\xb1\x6d\x9b\x79\x34\xa3\x6b\x0e\x4f\x74\x61\x2d\x9b\x10\x11\xaf\xf9\x8c\xa9\x70\xb0\x3a\x40\x4c\xa9\x74\xba\x1f\xae\x8b\xe7\xe9\x65\x2a\x3e\xc9\x8e\xe1\x24\x54\x33\xd7\x14\x75\xa0\xa0\xfe\x77\xed\x6b\x07\xde\x82\x77\x5e\xe5\x72\xfe\x4e\xc6\x90\xbb\xa7\x9c\xbe\x23\x49\xd9\xa6\x21\x96\x7f\x9f\x7c\xfb\xcf\x68\xf2\xdd\x78\x1c\x3e\xe2\x5f\x11\xc5\xd6\xdf\x70\xfa\x33\x67\xaf\x39\x46\x2f\xb7\x59\xf6\x09\xfa\x7b\x30\xf6\x6c\x17\x5e\x37\x69\x5b\x8f\x6d\xb5\x5a\x2d\x79\x84\xdf\x73\x13\xe1\x30\x27\x7d\x1a\x23\x83\xc2\x4a\xc2\x17\x26\xa7\x8f\xc3\xfe\x82\x1f\xe4\x7c\xf8\xe8\x7c\xa1\xa0\x7c\x86\x56\x8f\x17\xa1\x5f\x3f\x3c\x03\x14\xc2\xa1\x98\x29\xed\x96\x27\x5e\xd9\xb5\xec\x15\x63\xc3\xbb\x80\x64\xe0\x3e\x98\x81\x82\x48\x2e\x39\x3d\xc1\x89\x89\xd7\xb7\x2e\x72\xb1\x92\x2f\x3e\xfa\xce\x84\x9c\xe6\xb6\x39\xd5\x3d\xcd\xc9\xa9\x7d\x99\xfe\xc9\xfd\x5b\xe0\x50\xfe\xf2\x75\x9f\x2e\xfd\xc9\xad\x65\xa4\x3e\x15\x20\x75\xad\xae\xac\xb6\xf7\xe8\xe7\xe4\xe7\xa9\xa1\xbe\x58\xfc\x03\xe7\x6c\xf2\x88\x0c\x73\xf2\x0f\xeb\x1e\xc0\xff\xff\xcc\xbd\x0b\x77\xd3\xb8\xd6\x30\xfc\x57\x52\xbd\x43\x46\x6a\x94\x34\x69\xa1\xcc\xb8\x88\xac\x0e\xe5\x36\x43\x28\x43\x0b\x0c\x84\x9c\x2e\x37\x56\x1a\x0f\x89\x9c\x63\x2b\x2d\xa5\xce\xf9\xed\xdf\xd2\xd6\xc5\xb2\xe3\x94\x32\xe7\xf9\x9e\xf7\x5d\x5d\xab\xb1\x6e\x5b\x77\x69\xef\xad\x7d\x69\x31\x2c\xdb\x29\xd9\xe9\xed\x52\xe0\x22\xf5\xf5\xd9\xb3\xfb\x6b\xb0\xfb\x4b\xb0\xd7\x6b\xa7\xf7\x1e\xde\xdb\x5d\x7d\xe5\x6b\x9c\x6c\xa3\x0d\xb8\xc6\xcc\x36\xf1\x35\x4e\x7e\x0c\x92\x79\x20\x1f\x69\x6c\xd8\x3e\xac\x49\x62\xad\x44\xca\x91\x1a\x50\xdb\x7a\x6b\xd1\xaf\xdd\x5b\xd1\x77\x18\x0d\x10\x1d\xa2\xc1\x00\x0e\x23\x34\x48\x6a\x35\x2f\x8d\x85\x2a\x18\xd3\x56\x4f\x1f\x47\x68\xa0\x0a\x95\x8f\x42\x7e\x0b\x62\x0e\xc5\xb3\x93\x29\x38\x0a\x36\xeb\xd1\x01\xfa\x07\x90\x7c\x20\x4f\x30\x82\x48\x44\xd1\x40\x1f\x66\x26\xf8\x8b\x3e\x94\x06\x88\xfe\x64\xbe\x06\xde\x61\x06\xf5\xd6\xdb\x84\x90\x7e\x7b\xdf\xf2\x0b\xfe\xd5\x9c\x1a\xa6\xdc\x77\x0b\xfa\x65\xe0\x14\x1c\xa8\xc6\x0d\xd6\x6d\xfd\xc9\xe1\x80\xeb\x5b\xb8\xdd\x2b\x32\x0f\x74\xf6\xf5\x02\x3e\x85\x26\x2c\x8e\x63\xea\x7c\xa3\x4e\x28\xb0\x87\x28\x1c\xcf\xfe\x40\x9f\x18\x49\x5f\xd7\x93\x04\x11\x16\xa4\xf4\x7e\xa5\xd5\xd0\x41\xaf\x84\xb3\x9d\xa3\x61\x72\x34\xea\x1b\x5a\xf2\xf3\x48\x51\x93\xf9\xe7\x8c\xb4\x54\x5b\xfa\x3b\xf4\x0b\x67\xe8\xf7\x50\x2c\xc3\xf4\xfa\xec\x19\x3f\x4f\xe1\x63\x10\xa6\xe3\xe9\xd9\xe1\x22\x8d\x67\x67\x83\xf0\xfa\xec\xf7\xa5\xe0\x67\xbf\x2f\x67\xd7\x67\x87\xcb\x8b\x65\x26\xcf\x4e\xf8\x42\xf2\xf9\x39\x4f\xcf\x8e\xc7\x32\x51\xbf\xaf\x93\x4b\x1d\x71\xc4\xc7\xf0\xe1\x0c\xb4\x9d\x21\x42\x3f\xe8\x5a\x54\x0d\x0a\xb8\x02\x6d\x01\x2b\xb8\x0a\xac\x82\xa9\xa0\x29\x48\x0a\x88\x5f\xbe\x38\x50\x8f\x78\x9d\xfd\x6a\xcd\xee\x50\x03\xe7\x73\x52\x40\xec\x05\xf8\xf3\xde\x68\xc2\x63\xc2\x5a\x2c\x1b\x8e\xcc\x5b\x80\x22\x5a\x06\x75\x09\x99\x5a\x38\x95\x14\x4d\x6f\xf5\x76\x0f\x5a\xad\x94\xc4\x6c\x82\x87\xbb\x7c\x8f\xa6\x23\xb2\xa1\xcc\x30\x1d\xb1\x62\xeb\x99\xbd\x13\x03\xca\x5a\xd3\x81\xfa\x16\x55\x60\x6c\x2e\x5e\xd8\x93\x81\xd5\xa7\xce\xe9\x7e\xbb\xb7\xc5\x18\x4e\xd8\x57\xef\xf1\x6b\xbd\x99\x34\x24\xa4\x9f\x00\x43\x2f\xa8\x2f\x51\x69\x93\x5f\xe0\x1f\x56\xf6\xc3\xf5\xfc\x48\x81\x1f\xee\x76\x71\x7f\xfc\xe6\x23\xe7\xb0\xa4\xbc\x3b\xb1\x30\x91\x54\x6f\xa8\x4e\x1d\xd8\x3b\xff\xfa\x1c\xb5\x7e\xda\xd1\xe4\xad\x24\x44\xb2\x2b\xe7\x77\x12\xbc\xee\x63\xab\xad\x54\x39\x0f\xf5\xe6\x97\xc4\xab\xc5\xa9\x25\x78\xaf\x2b\xfa\x56\x55\xf7\xa4\xbd\x80\xa9\x24\xf0\xe6\x7e\xdb\x35\x89\xa0\xdf\x08\xb0\xf2\x92\x2c\xc3\x1b\xbe\xfe\xaa\xde\xc7\xbf\x39\x94\xa3\x16\x35\xb1\x2e\xe4\x0a\xdc\xc4\xc0\xd7\x98\xfe\x5b\xce\x32\x4e\xff\x52\xff\x8b\x9d\xfc\x37\xc7\x9e\x50\x26\xaf\x9c\xb9\xe6\x55\xc8\x62\x8c\xab\x82\x55\x39\x1c\xd1\x44\xfd\x8b\x1d\x0b\x16\xae\xca\xde\x2e\x70\x61\x84\xdd\x84\x72\xe4\xec\x29\xac\xed\x38\xa1\xb6\x0c\xa1\xc9\x5a\xb2\x4d\x89\x7f\x20\xc5\x07\xa9\x99\x30\x5a\x10\x8d\xab\x0a\xec\x57\xec\xbe\x4a\xad\x05\xae\xea\x82\x03\x77\x95\xd0\xc4\x84\x80\x59\xe4\x75\x6d\xf7\x3e\x64\x8e\x4d\x72\x0c\xc9\xfe\x11\x06\x57\x13\xf3\xa8\x62\xf4\x2f\x8c\x5a\xb1\x79\x0e\xc9\xd5\x74\x13\x44\x51\x8c\xec\x91\x52\xbd\x0a\xd9\x1a\xb4\x72\x46\xb8\x79\xea\x6b\x49\xee\x54\xcb\x6d\x10\xd2\x1a\x08\xc5\x7a\x7c\xc9\x0b\xaa\x5c\x9d\xf5\x7a\x27\x66\x05\x41\xd6\x03\x2f\xc9\x8f\x59\xb7\x8f\xb3\xe2\x19\x96\xb7\xee\x77\xbb\xa5\x72\xd4\xbd\x61\x82\xff\x29\x8b\xbf\x02\xbe\x0a\xcf\x07\x2e\x86\x13\x12\xf8\xa0\xca\x60\xb2\xa2\x6d\xef\x78\x81\xb4\xc5\x13\xec\xb5\xc5\xf2\xc6\x6e\x79\xae\x2a\x58\x98\x07\x62\xd8\x1d\x31\xd3\xe2\xa2\x5e\xb0\x82\xf3\xee\xf4\x89\x2f\x23\x27\x88\xd7\x0f\xd0\x0a\x7a\x77\xfa\xa4\xd4\x15\xb0\x09\xe0\x47\x72\xf3\xcc\xf6\x1d\xc8\x9e\xb0\xb3\xf3\x8d\xe3\xb1\x55\xcb\xd7\x2e\x7b\xd8\x92\x6d\x8b\x1b\xb7\xf1\xc3\x96\x1a\x09\xda\xa5\x29\x31\x4d\x3a\x0a\xaf\x31\x69\x4b\x72\xef\x61\x2b\x6d\xf7\x3c\xc6\x21\xf7\x79\x2c\x20\xc7\x0f\xce\x73\x7a\xad\x87\xdb\x58\xb6\x7b\xa4\x85\x1f\xb6\x44\x3b\x55\x05\x5f\x70\x63\x09\xda\x39\xa2\x78\xc4\xba\xfd\x90\x1d\x73\x1c\x33\xae\xf2\x66\x41\xf6\x18\xf8\x01\x7d\x15\xd3\xea\xd1\x90\x65\x6d\x88\x20\x81\x8a\x51\x61\x42\x6f\xd4\xa9\x18\xc4\x34\x0a\xaf\x8f\x27\x6a\x48\x82\xd0\xa3\x9b\xde\xaf\x23\x14\xec\x85\x7f\x96\xaa\xf3\x31\x64\xde\xbb\x39\x9c\xb9\x06\x14\x26\xed\xb8\xdd\x23\x3b\x0f\x49\xcb\xf1\x24\xc3\x47\xbd\x7e\xca\xc2\xd6\x47\x8e\x13\x66\xe1\xb4\x7b\x00\x29\x08\x1f\x7f\xac\x00\xef\xe3\x94\x85\xed\x6a\x2c\x2d\x8a\xb6\x7a\x24\xf0\x20\xd1\x94\x85\x84\xde\x5c\x71\xfe\x25\x48\x29\xf4\x2d\xf1\xfa\xf3\xb1\x32\x53\x6e\xe6\x68\x02\xdf\x2d\xdd\x10\xfb\xd0\x02\xa3\xd5\x4e\x5b\x09\xd9\x79\x58\x00\x79\x5e\x25\x26\xf5\xa3\xad\xa4\x0f\x89\x55\x79\x2b\x7c\x7f\x48\x42\x56\xef\x30\xba\x52\x64\xc7\xd5\x95\x26\x3b\xae\x12\x44\x91\x6a\x22\x70\x2d\xd0\x07\x95\xf6\xe1\x83\x4e\xfb\xa0\xd2\xe2\x2c\xf9\xa0\x93\x9f\x60\x9d\x91\xa2\x2b\x1d\xb2\x49\x14\x7d\xd0\xa8\xbf\x4e\x7e\x00\xdf\x2e\xf1\x81\xc6\xdc\xaf\x1c\x21\xa0\xaa\x76\x84\xc0\x07\x17\xad\x6a\x85\xe8\xa9\x42\xc3\xaf\x54\x35\x57\x00\x9a\xaa\xa4\x5a\x5c\x5c\x0e\xd3\xc2\xcc\x66\x8f\x58\x8e\x1a\xf4\x24\x52\x74\x0d\x8a\x54\x17\xa2\xf0\x5a\xf7\x2e\x8a\x7e\x84\xd8\x31\x52\x64\xd9\x20\x16\x15\xb2\x29\xfa\x67\x80\xea\x28\xb0\xe8\x1f\xc2\xaa\x80\xe1\x1a\x06\x32\xc9\xba\xbb\x4f\x4d\xa4\x99\x0a\x1d\xff\x04\xc3\x78\x50\x14\x15\x53\xaa\x23\x78\x69\x56\x75\xdc\x53\x3d\xb1\x10\xe8\xf5\xdc\x24\xfb\x61\x3f\x7f\xcf\xf0\xb0\x22\x37\xab\xdc\x7d\x3d\x75\x5f\xaa\xc7\x9b\x48\x38\x6f\xd0\xab\xb4\x5f\x74\x97\x72\xb5\x54\x63\x74\xa7\xa2\x7e\x29\x58\x83\xaa\x90\xae\x55\x43\xb8\x13\x3d\x68\xa1\xdd\x4e\x11\x76\xa2\x0a\x3d\x68\x86\x50\x0b\x46\xea\xda\x61\x4a\xd4\x14\x6c\x5a\xfb\x6e\xbd\x6b\xcb\xbb\x9c\xa1\x93\xa5\x88\xc2\xeb\xb3\x41\x02\x3f\xa7\x4b\x9e\xa9\xdf\x0f\x3c\x12\xfa\xeb\x74\xba\x4c\xe1\xe3\x59\x1a\xab\x9f\x93\x50\x2e\x53\x35\x73\x3e\x09\xf8\xa7\x06\xa4\xa0\x28\x10\xaa\xb8\x2a\xa8\xca\xa8\x02\xa5\xbc\x3f\x41\xde\xb3\x41\x72\x76\xba\x3c\xfb\xc0\xcf\x4e\xa7\x67\xcf\xd2\xb3\x93\xb0\x9e\x26\xfc\xfd\x1f\xd1\x84\xa5\x11\xf5\xa8\xc2\x52\x7c\x85\xfc\xfb\x50\x9f\x36\x8f\xc5\x5a\x8a\x26\x0d\x1f\x96\x29\xc3\xde\x88\xa8\xbb\x03\xa7\x64\x43\x49\x47\xdc\xf9\xa7\xc4\xf7\x08\xc4\xf5\xa6\xad\x81\xb9\x1b\xa5\x79\x75\x2b\x8c\x3b\x51\x9a\xb0\xa2\x6f\xa1\xfe\x4a\x55\x94\xc8\xc6\xef\x14\x5c\xef\xe4\xf7\x89\xc1\xea\xe8\x56\xeb\xfb\xe1\x96\xfe\x60\xd3\xfe\x59\xab\xfe\xd1\x28\xfc\xb7\x7d\xb8\xad\x51\x3f\x54\xe2\xff\xb7\xc1\x04\xb2\x5c\x6d\xf0\x4f\x40\x4d\x72\xa9\xfe\x4b\x59\xa2\x29\x85\xfc\x47\x34\xa5\x39\x31\x86\x23\x9a\xa9\x7f\x63\xf5\x6f\x56\x26\x2f\x1f\x96\xa9\x4b\xbb\x91\x25\x31\x3e\x7a\x4a\x1b\x16\x88\x41\x9a\xd4\x6d\x41\x9d\x14\x57\x76\x96\x8e\x0d\x35\x6d\x99\x12\x9a\x59\x19\x38\x3a\xd6\x5f\x31\xa1\x33\x97\x3a\x73\xa9\x33\x9b\xaa\x3d\x2d\x3b\x22\x33\x73\x5f\x63\xf7\x35\xab\x90\xa0\xba\x47\x99\x21\x2a\x33\xa0\x40\xc7\x26\x34\x86\xd0\xcc\x84\x66\x1e\xc1\x59\xba\xd5\xd6\x48\xb9\xd9\x66\x62\x70\xfd\x26\x65\x35\x10\x2b\x99\xed\x75\x7d\x87\xac\xb7\x51\x98\xe3\x3b\x36\xeb\x36\x18\xd9\xf7\x61\x0c\x62\x71\x1b\x84\xf0\x56\x3a\x37\x95\x15\xee\xfc\x34\x59\xa6\x19\x26\xf7\x7a\xbb\x79\xde\xdb\xf5\x54\xa2\xa4\x5e\xd6\xef\x80\xe2\xda\xfc\xda\x58\xe6\x28\x19\x2d\x03\xec\x83\xd6\xcd\x9f\xc7\x62\x29\x39\x04\xcb\x2f\xba\xb1\xac\xec\x9f\x33\x0b\x05\xb6\xa5\xc2\xf9\x5f\x28\xbc\xfe\xc5\x0b\xf3\xee\x89\x14\x5c\x8d\x23\x4e\x55\xc2\x74\x6a\x12\x52\x09\x91\x5f\x54\xe4\x97\x2f\xdf\x79\x25\x35\x8d\xcb\xf3\xdd\xfb\x06\x0b\x9d\xce\xe7\xeb\x4f\xb4\x46\x06\x0e\xb5\x52\x5f\x8e\x93\xb4\xde\xe0\x4a\xaf\x76\x49\x01\x26\xcb\xfe\x2b\x40\x36\x2e\xe3\xe3\x44\x44\x25\xe0\x2f\x6e\x6d\xa3\xdf\xb1\x5b\x5a\xf8\xe2\x3b\x2d\xfc\x1e\x98\x4d\xed\x4b\xb4\xb2\x38\x38\xc1\x92\x18\x1d\x22\xba\xd5\x03\xa4\x1c\x26\x8c\xa2\xa9\x46\xc7\x75\xa8\xb7\xa7\xb1\xdb\x10\xd1\x58\xea\xcf\xc3\xe2\xf3\x85\x43\xb7\xa7\xee\xeb\x8b\xfb\x52\x4b\xc1\xd1\x60\x6a\xfa\x5d\x40\x4d\x7b\x91\xa2\x06\xeb\x77\xf7\xad\xfa\xfc\xc9\x00\xf0\x52\x5e\xb8\x14\x78\x41\x79\x81\xa8\x82\x3f\xa2\x97\xdc\xc4\x28\x12\xf1\xcb\x97\x75\x3c\xd6\x92\xbe\x0a\x8d\x3d\x90\xc3\x4b\x3e\x62\xbb\xf7\xe1\xcd\xae\x1b\xa4\xee\x45\x26\x44\x14\x1d\xd6\x15\x16\x9d\xb3\x38\x7b\x33\xf7\x90\xef\x38\x7b\x03\xde\x10\x44\xb1\x05\x34\x46\x0d\x80\xa6\x6a\x04\xa7\x75\x90\x74\xdd\x60\x46\x18\x90\x72\xa3\x8f\xc3\xb6\xba\xf6\xb9\x1a\x46\x62\x43\xf3\x9d\x68\xfc\xee\x81\x03\x54\xd0\xa5\x29\x21\x54\x0e\xaf\xcb\xd1\x60\x1c\x6a\x63\x4d\x6a\x34\xbf\x57\xd7\x7d\x60\x3c\xfc\x78\xc5\x74\x17\xa2\x0f\xcb\xd1\xc9\xe6\xf6\xbc\xf8\x1f\xef\xb9\x07\xf9\xff\x4a\x4f\x2d\xc5\x14\x4a\x9a\x49\x10\x0a\x50\x5d\xce\xf4\xbe\x1b\x4b\x76\xa3\xd6\x92\x88\xc2\x34\xb8\xc9\xc2\x39\x3f\x0a\xaf\x03\x34\x3c\x4d\xa2\xf0\xba\x11\xca\x51\xe3\xd5\x29\xa2\x82\x7f\x95\x36\x7e\x9e\xa4\x69\x72\x55\x4a\x52\x68\x91\x46\x5c\x1b\x43\x1b\x3f\x0b\x33\x53\xe4\x23\xcf\x24\x4f\x7d\x70\x2a\x4d\x97\x19\xbe\x0a\x33\x39\x6a\x94\x8b\xaa\x56\x3c\x9d\x65\x3c\x40\xaf\xd0\x8a\x96\xa5\xf5\x82\x9b\x57\xa7\x27\x01\x9a\x06\xf3\x79\x90\x65\x8d\x43\x44\x5f\x9d\xea\x20\x7c\x07\x68\x30\xd8\x39\x3a\xda\xd1\x02\x1f\xaf\x20\x3c\x18\x34\x8e\x68\xc3\xc6\x54\xa2\x1a\xae\x28\x24\xa9\x86\xd0\x46\x5d\x86\x15\xf5\x64\x0e\x03\x64\x54\xc5\x1a\x91\x36\x67\xae\x65\x41\x03\x74\x2f\x42\x9a\x9f\x07\xcf\x0c\xc7\x3a\x1a\xae\xa5\x40\xcb\xe7\xed\x82\x34\x9e\x76\xfd\x79\x1a\xcf\x79\x70\x33\x59\xca\x65\xca\x03\x14\x8b\xc6\xbd\x0c\xd1\x45\x98\xc9\x00\xdd\xcb\x1a\xe1\x45\x82\x68\x16\xa0\xb0\x31\xe1\x57\x0d\x73\x74\x22\x9a\x65\xaa\x96\x22\x3c\x57\x39\xf4\x61\x8b\xe8\x7c\x0e\x89\xe6\xec\x45\x74\x1a\xa0\x50\x34\xf4\xf9\x39\x9d\x42\xda\x54\xcf\x7d\xa4\x8a\x01\x13\x23\x8a\x20\x5e\x21\x0a\x88\x0e\x00\x9a\x7e\xd2\x1e\x0c\x34\x30\xe0\x96\x23\x7a\xad\x92\xb4\xe8\xce\xf5\x35\xa4\xa8\x40\x86\x56\x54\xe7\x08\xbe\x70\xea\x71\xd6\x83\x0f\x1c\x94\x2e\x83\x9b\x28\xb9\x0a\xba\x34\x4a\xae\x83\xfd\x95\xd5\xc3\xcc\x82\x3f\x38\xf5\xf0\x93\xe0\xa7\x22\xa8\x8b\xff\xc9\x69\xe9\x5a\x0f\x76\x86\xe1\x62\xf4\xb9\xd3\x9f\xf7\x3f\x77\xfa\x3b\xf1\x8a\xce\x24\xbb\x59\xd1\xa5\x2c\xc9\xac\x2d\x64\xc9\x02\x6b\x45\xde\xbc\x90\xc8\x3b\x43\x14\xb5\x11\x09\x7c\x6d\x59\x89\x9d\xec\xa8\x35\x46\xb0\x35\x93\x43\x39\xda\xa0\x7d\xc3\x9b\x4d\xb0\x36\x65\x34\xcd\x89\x4c\xaf\x6f\x04\x0b\x65\xe7\x2c\x3c\x3f\x4f\x3d\x6f\x14\x56\x70\xcb\xe9\x7d\x38\x13\xc8\x93\x58\xa8\x11\x8e\x96\x33\xde\xf8\xd9\xd5\xf1\x33\x52\x68\x2d\x58\x21\xed\x8c\x93\x88\x33\x34\x38\x3e\x7a\xf7\xea\xe9\xd9\xeb\xe3\xd3\xb3\x67\xc7\xef\x5e\x1f\x21\xca\x57\x98\xd0\x48\x62\x61\xcd\xc7\xa7\xe4\xc6\x6a\x90\x40\xa3\x3d\xb5\x5e\xe9\x3f\x15\x16\x02\x8f\x18\x0b\x16\x82\x67\x0c\xb0\x13\x39\xd5\xd9\x48\x3f\x94\x4c\x04\xff\x5c\xdf\x48\x93\xe1\x0d\xd4\xe2\x2d\x04\x56\x8a\x27\xc9\x52\x44\x9d\xc6\x51\x1c\x35\xae\x93\x65\x63\x92\xa4\xe0\xee\x20\x69\x80\xc7\xff\x58\xf6\x11\x21\xd4\x0e\x9b\x27\x01\x28\x4b\xb6\xc3\xc0\x7a\xb2\x93\x45\x1c\x4b\x6d\x2b\x42\x15\x61\xdc\x28\x92\xce\xe4\x90\x8f\xc8\x6b\x8c\x74\xcb\x75\x43\x8e\x2f\x79\x9a\xc6\x11\x47\x14\xd4\xff\xb5\xb2\xa4\x79\x2b\xd4\x39\xb0\xbe\x4e\x5f\x87\x73\x4e\x1b\xda\xda\x31\x51\xcd\x33\x1e\xe0\x42\xd1\xe0\x5f\xe3\x4c\xc6\xe2\xa2\x61\x2e\x5e\x0b\xc5\xaf\xa7\x16\x8a\x36\xbe\xd5\x48\xc4\xec\xba\x71\xce\x1b\xcb\x8c\x47\xaa\xff\x0d\x30\xb6\xa1\x00\x86\x60\xe7\x43\x17\x6d\x9c\x70\xde\x98\x4a\xb9\x08\x76\x76\x74\x05\x7f\x67\x9d\x71\x32\xdf\xb9\x58\xc6\x11\xcf\x76\xfe\xcf\x8e\x51\xdf\xca\x76\x74\xc5\x6d\x5d\x6e\x07\x40\xce\x93\x94\x37\x62\x31\x49\x3a\xe0\x06\x07\xc6\xa2\x73\xa6\x1b\xe2\x5e\x75\xad\xc3\x5d\xed\xcd\x54\x37\x9c\xb8\x78\xb5\x6e\x4a\x49\x23\x92\xd6\x44\x96\xa0\x16\x0a\xd3\x58\x30\xb5\x85\xca\xb0\xdd\x23\xf1\x72\x0d\x4c\x9e\xe3\xf5\x48\x36\x1c\x11\xba\x1e\x6d\xcc\xd3\x1b\x3b\xfe\xba\xfa\x40\xae\xb4\x06\xf1\x41\xaa\x70\x22\x1d\xe9\x6d\x01\x3e\x82\x0d\x77\x82\x9f\x62\xd0\xa0\x55\x60\xf9\xa8\xd9\x84\x9f\x7a\x27\x08\x6a\xc9\x75\xc0\xc0\x11\x58\x30\x53\x53\x08\xb7\xb7\x26\x54\x55\x39\x0b\xdf\xe8\x0f\x41\x1c\x2d\xbf\xcc\xc3\x6e\xf2\x5e\xdf\xd4\x11\x61\x30\x36\xef\x53\xaf\x76\x90\x9c\xad\xc4\x11\xba\xe5\x44\xa8\x42\x00\xb1\x95\x60\x4e\xb4\x2f\x5e\x35\xc4\x85\x3a\xb4\x3c\x00\xb9\xdb\x55\x55\x8c\xcf\x57\x41\xb6\x8c\x04\xd6\x3d\x88\x0b\xb1\x5b\x62\xdc\xec\xe2\x84\xa9\x23\x73\x18\x8f\x9c\xcf\x98\x36\x72\xde\xb1\xa9\x50\xb3\xaa\x33\xb4\x7a\x23\x42\xfa\xc2\xcb\x05\xac\x8f\x03\xf9\xb8\x7b\x00\x6d\x4b\x55\xdb\x12\xef\xf9\xc5\xd0\x95\x0a\x9e\x73\x81\xa7\xba\x23\x9a\x4d\x61\x95\x68\x99\x6c\x36\xbf\xe1\x84\x0a\x85\x8d\x3c\x66\xb2\xdd\x23\xe0\x15\xea\x40\xb6\xdb\xab\xb8\xd5\x5a\xb9\x81\x58\x95\x94\xc6\xe6\xd2\x57\x7a\x52\x23\xe7\x98\x7d\xcd\x66\x7b\x97\x31\xd0\xd6\x77\x7a\xf5\xa0\x33\x24\x86\x03\x3e\x7a\xd4\xcd\x73\xf8\x78\xdc\xeb\xf5\x07\x3c\x10\xc3\x0b\x3e\x7a\xd4\x53\x91\x17\x7c\xf4\xf8\xdf\x1c\x8b\xe1\x5c\xcd\xa9\xca\x43\xfa\x17\x2a\xc7\xa5\x2d\x76\xc9\x47\x8f\x77\xef\x2b\x12\x90\x31\x06\xc1\x66\x13\x77\xb7\xd4\xf7\xb5\x5a\xd0\xfa\xf3\xb0\xf8\xbc\x52\x30\x2e\x15\x8c\x6b\x0b\xe3\x9a\x8f\x1e\x3f\xf8\xb5\x7f\xad\x22\x0f\x6d\xe4\xa1\x8e\x3c\x54\x91\x57\x36\xf2\x8a\x8f\x1e\xff\xfa\xeb\xaf\xfd\x2b\x1e\xb4\x7b\x14\xfa\x73\x66\x3b\x74\x64\x5f\xfa\x54\xcf\x1e\xcd\x79\x9e\xcb\xc7\x17\x5c\xeb\x46\x5d\x00\x5e\xef\xe7\x56\xc8\x56\xd6\x6c\x82\x27\x30\x09\x79\xbe\xd5\xe6\x01\x8b\x02\x5e\xae\x33\x9b\xcb\x66\x62\xb2\x24\x94\x31\x90\x15\xb7\x8b\x56\x30\x83\x5b\xad\xbb\xbe\x0c\x3c\x6d\xdc\x0b\x7f\xd6\xac\x3f\x75\x36\x1c\x19\xf9\x95\xb3\x48\x2f\xcb\xa4\xc6\x8c\xa8\x7b\x24\x4e\xb5\x07\x96\x42\xf4\xb9\x73\xb6\xcc\xf8\xbb\xd3\x27\xfd\xe1\xfa\xc3\x33\xb5\x51\x03\x23\xb6\x29\xdd\x43\xb0\x04\xfd\x33\x5d\xa6\x5a\xa0\x94\xdb\x64\x55\xeb\x8f\xf2\xce\xd9\x95\x56\x77\x06\x03\x11\xa1\x5a\x33\xa5\xf0\x40\x85\x37\x28\xec\x58\xf7\xf1\x07\xee\xc0\x05\x11\x9b\xb3\x2b\xd2\x79\xfe\xdc\x6a\x53\xcb\xce\x87\xe2\xf3\x29\x89\x59\x8f\x86\xec\x3e\x15\x6c\xa0\xce\xd6\xe7\xcf\x29\x54\xa3\x56\xe8\x7b\x8e\x9f\x48\x4c\x68\x8f\xde\x27\xf0\x06\xab\x8e\x7d\xc8\xf5\x81\xf6\x08\xc5\x38\xd1\xa1\xa7\xb4\x47\x88\x5a\xe1\xc9\xe3\x87\x6a\x81\x8c\xd9\x56\xd7\xb8\xda\x8e\xfd\xb3\x47\xe1\x5f\x9d\x28\xb9\x82\x37\x8a\x6a\xec\xf5\x81\x76\x60\x66\x2b\x8d\x69\x48\x0e\x4c\xa3\x2e\x2e\x8a\x46\xcd\xca\x2d\xb9\xa2\x33\xe0\x26\x16\xae\xde\xa3\xbe\x6a\x98\xec\x44\x44\x2d\xf2\xe4\xf1\xbe\x6b\x92\x5d\x32\x1d\xde\x87\x1c\xbc\x15\x53\x2c\x3b\x5c\xe5\x93\x1d\xee\xe5\x24\x41\xc2\xe2\x55\xaa\xfa\x94\x3e\xfe\xc8\xb1\x80\xe6\xf4\x6b\xd6\x3c\xdb\xea\x1a\xb0\xe3\x9a\xe4\x28\xbc\x56\x19\x70\xc6\x9e\x29\x20\x4e\x94\xc2\xf6\x86\x69\xd9\x78\x90\x59\xb2\xfb\x8d\x65\xc5\x2b\x3b\x81\x35\x51\xa8\xe6\x7b\x7b\x32\x54\xfd\x77\xa3\x92\xa8\xff\x84\x62\x3f\xd3\xe3\x63\x8e\x43\x92\xe7\xda\x08\x52\x11\xaf\x7a\xb9\x61\xaf\xab\xbe\x53\xc1\xde\x71\x1c\xd2\x6e\xa9\x55\xa6\xcd\x03\x75\xe7\x55\x56\xbc\x5d\xa6\x2e\x41\xaf\x67\xcb\x6e\xdd\x2b\x2d\x5f\x39\x02\x79\x5e\xf3\xcd\x80\x0b\x9b\x58\xaf\x25\x8e\x39\x5b\x4a\x2e\x95\xee\xef\xc2\x23\x41\x2f\xe8\x06\x16\x1e\x9c\x95\x10\x80\xe3\xb2\x6b\x43\xd7\xa5\xd0\x61\x29\x74\x05\x07\x2b\xef\x9c\x19\xc2\x53\x9b\x5a\xd7\x20\x58\x57\x0b\x91\x31\x5c\xec\xfc\x77\x3c\x78\xc9\x89\x2f\x36\x92\x11\xb0\x4c\x67\x33\x58\x9b\x09\x56\x04\x24\xb0\x11\x10\x2a\xa6\x50\x7e\x9b\xc3\x1d\x1d\x19\x69\x95\x81\xe1\x62\x79\xe5\x6d\x14\x69\x73\x63\x91\xa2\x68\xa7\x6e\x74\x68\x58\x3b\xf6\xb8\xa8\x27\x1e\x3a\x67\x57\x9d\x08\x2a\xbb\xea\x44\x5b\x8c\xc5\x76\xde\x2b\xe6\x5c\x40\x21\x1b\xde\x04\x2e\x25\xdb\xf9\xd7\xe7\x6c\x1b\xe3\x7e\xa0\x95\xb3\x6e\xf6\x57\x39\xe8\x91\x91\x36\xee\x07\x9f\xa3\xcf\x51\x5b\xfd\xcb\x3f\x98\x4f\xfd\x91\x6b\x9d\x31\xf8\x21\x04\xf7\x03\x7c\x9a\x37\x08\xb6\xba\x5d\x95\xdf\x61\x87\x8e\x3e\x47\x2d\xd2\x87\x3f\x3c\xfc\xdc\xfa\xbc\xa6\x07\x96\x7f\xce\xb6\x3f\xa9\xf4\x9f\x76\xe8\xf5\x2d\xad\x32\x8d\x2a\xda\x74\xb7\x26\x95\x7f\x7e\xb4\x41\x87\x72\x93\xf6\x1a\xbd\x92\x6c\x68\x15\x55\xda\x83\x41\xfb\xe8\x08\xd1\x1d\xd7\xe8\xb6\x1b\xc0\x9d\x91\xd1\x67\x71\x99\xa0\x3f\x95\x0c\xcf\x9f\x3f\x7f\xde\x1e\x7e\x18\x7d\xf8\xd0\x7e\xea\xb2\xd8\xa1\xaf\xe4\x28\xa7\xef\xd0\xad\x9e\xab\xe2\xa8\x54\xc1\xcd\xde\xca\xaf\xbd\x54\xb5\x5f\xec\xe3\xc7\xc1\xc0\x6f\x7e\xaf\x5b\x94\x33\x29\x9f\xa3\x9b\x5f\x56\xae\x1d\xd0\x0c\xd7\xce\x0f\x45\x4d\x2e\xd1\x4f\xdb\x5d\xf9\x95\xb9\x26\x3e\x5c\xed\x8c\x46\xf4\x1b\x0c\xe3\x8b\x17\x9a\x09\xd3\x39\x39\x39\x39\x81\xe4\xcf\x51\xe0\xfe\x7d\xee\x7c\x8e\x5a\x00\xdf\xe6\xa3\xb5\xf9\x68\x35\xdb\x5a\x8e\x22\xd5\x4f\x32\xb1\xf3\x79\xb9\x01\xee\xcf\xab\x5e\xe5\xa1\x35\x79\x68\x39\x4b\x25\xd5\xa5\x78\xf1\x26\xce\xc4\xa8\xa1\x38\x83\xd5\xbf\xd3\x57\x87\xea\x67\x8c\x3f\xb7\xfb\x6a\xa9\xee\xc4\x9e\x62\x98\xac\x45\x03\xc0\x5a\x0a\x1d\xb3\x4b\xa9\xfd\x6c\x66\x24\xcf\xaf\xdd\xb7\x42\x11\xc6\x1a\x19\x82\x33\x21\xce\x12\xb0\x48\x04\x2a\xbe\x57\xb2\xaa\xe3\x1b\x4f\xf0\x95\xa2\xf9\x87\xbd\x91\x86\x30\x1e\x2a\x6c\xfd\x26\x61\x3a\xba\x3b\xa2\x29\xdb\xea\x6d\x31\x13\xde\x1d\x15\xfe\x64\xf5\xf9\x9d\x10\xcf\x36\x1c\xf6\x8c\x2c\x6d\xf5\x74\x63\x86\x7b\x23\x4b\x33\xa8\x36\x7c\xab\x6b\xc3\xb7\x4a\x1b\xf6\x54\x1b\x62\x86\xc7\xc3\xdd\x51\x9e\xa3\x06\x22\xad\x6f\xa6\x3d\xd5\xfa\xe3\x5b\xea\x07\x17\xb3\xa9\xb5\x32\x73\x5b\x4e\xdd\xd2\xfb\x23\x6d\x5a\xf2\x50\xda\x86\xdc\x1f\x91\xdb\x4a\x85\x0c\x7d\x42\x2b\xb0\x5b\x94\xb4\x70\x9c\xe7\x08\x91\x16\x0e\xe1\x97\x3e\x95\x4e\x54\xb1\x54\x4c\x9b\xe2\x50\xd3\xaf\x8e\xaf\x41\x22\xf2\xd3\x25\xcf\x3f\xf0\x28\x3f\x9d\x2e\xf3\x67\x69\x9c\x9f\x84\x32\x3f\x59\x0a\x42\xfb\x9f\x33\xd2\xc7\x86\xff\x47\x3e\x67\xf8\xf7\x50\xe4\xcf\xf8\x79\x3e\x08\xd3\xfc\x70\x91\xe6\x83\xf0\x3a\xff\x7d\x29\xf2\xdf\x97\xb3\xfc\x70\x79\x91\x9f\xf0\x45\x7e\x3c\x96\xf9\xeb\xe4\x32\x3f\xe2\x63\x55\x44\xed\x49\x7a\x7f\xa5\x3f\x3f\x47\x24\xd0\x3f\xea\x78\xd3\x5f\xa4\xff\x39\x53\x2d\x79\x77\x9a\x3f\x1f\x9c\xe6\xc3\xa7\x4f\x06\x6f\x46\xc3\x93\xa3\xd1\x29\xc9\xf1\xf0\xd3\xb7\x91\xfa\xd1\x67\xc5\xfd\x15\x21\x3f\xed\x14\x4b\xf4\x6b\xb1\x44\x2b\x0a\x69\x4e\xe4\xf2\x11\xbb\xff\x6b\x7f\x97\xef\xb5\x64\x20\x41\xd7\x10\x54\xce\x54\x08\xc6\xe1\xb5\x64\x37\xef\x4e\x83\x2e\x7d\x3e\x50\xff\x9f\x1e\x9d\x06\xed\xdd\xfb\x5d\xfa\xf4\xe4\x34\x68\xef\x75\xbb\xf4\xc9\x91\xfd\x80\x98\xfd\x2e\x1d\x1c\xd9\x0f\x15\x73\x7f\xb7\x4b\xdf\x1c\xd9\x0f\x88\xf9\xa5\xeb\xf1\xf5\x5e\x79\x4d\x3c\x35\xf3\xaa\xa6\xc3\x53\xa9\xc5\xc3\x7f\x91\xd1\xf6\x67\x92\x0f\x3f\x8b\xcf\x12\x74\x5b\x1b\xbe\xce\x2d\xfe\x9c\x7d\xce\x5a\x64\x2d\xfe\x5f\x2a\x7e\x7b\xa7\xa2\xa0\xab\xe2\xb4\x8b\x09\x58\x55\x35\xd6\x41\x0b\xf1\x5b\x6b\xbc\x79\x08\x03\x49\x3f\x38\x25\x2a\x2c\x09\x75\x03\x2a\xd4\x80\x16\xc1\xb4\x1c\x4c\x54\xb0\x50\x7f\x6f\x36\xcd\xab\xbb\xcb\x10\xab\x0c\x84\x86\x2b\x2c\x87\xf7\x47\x54\x0e\xf7\xb4\xe1\x02\x2a\x87\x0f\xd4\xbf\x7d\xf5\xef\xe1\x48\x8b\x12\x55\xdf\x18\xac\x11\xce\x3c\xff\xb3\x68\x1c\x27\x8a\x8a\xb5\x74\x95\x54\xa7\x44\x61\x0e\xc1\x21\x47\x79\x8e\xe1\xa9\x64\x1d\x2d\xa1\xc2\xdf\x0f\x54\xed\x54\x0c\x00\xc0\xf9\x8a\xae\xf2\x40\xe1\x43\x4c\x50\x63\xc4\xab\xda\xae\x58\xb5\xc2\x2a\xbb\xc9\x21\x1f\xe9\xb1\xb6\x46\x9e\x8c\xeb\xf2\xca\x10\x26\x2c\xbd\xd7\xeb\x5a\x2b\x45\x38\x6d\x27\x64\xa7\xd7\xed\x6e\xef\x77\x5b\x89\x6a\xc1\x2f\xaa\x0b\xbf\x42\x67\xba\x23\x83\x2c\xbe\xe3\x3e\x76\xa8\x1a\xa5\x13\x7e\x04\xcf\x83\x93\xd8\xd8\x14\x64\x5b\xdd\xba\x33\xa1\x50\x7b\x94\xc6\x98\xa0\x3a\x55\xb6\x18\x4b\x3b\x2f\x4f\x8e\xcf\x7e\xd9\xef\xf6\x88\x1f\xf9\xf6\xd9\x93\x33\x05\x8e\xdc\xc0\x38\x0d\x47\xba\x12\xb0\xff\x67\x1d\x7c\xfa\xa4\x32\x42\x2d\x73\x6f\x38\xdf\x11\x33\x63\x96\x2a\x61\xcf\x00\x2e\x75\xc4\x1b\x71\xf6\x21\xf2\x7c\x38\x32\xf8\x7e\xe2\xfb\x27\x8c\x01\xb9\xa7\x58\x30\x9c\x99\xcc\x4b\x8e\x63\x35\x7d\xaa\x08\x19\x76\xc1\xf2\x0d\x0e\x59\x56\x3c\x3f\x65\x6e\x01\x09\xe2\x38\x45\x8f\xbb\xcd\x26\x34\xdd\xb3\x04\xa9\x17\x70\x48\x68\xa6\x8a\x03\x5b\xc8\x2f\xdb\x12\xce\xb4\xd6\xac\xc5\x8a\xc0\xcb\x61\x3c\xea\x63\xd1\xf7\x47\xa2\x17\x78\xc0\x8d\x61\x41\x2b\x80\x72\xae\x5a\x0c\x4b\x2e\xf0\x8c\x14\x6e\x89\x52\x83\xca\x65\x0e\x20\xa5\x64\xbb\x90\x8d\xdb\x33\x9a\x7d\xb7\x37\x19\x71\x84\xc8\x23\xd6\xdb\x6d\x36\xb7\xba\x96\xd7\x64\xde\x12\x01\xa5\x87\x0c\x0a\x0a\xf6\x93\x98\x75\x03\x03\x91\x15\xf3\x91\x40\xf9\x58\xee\x99\xc9\x52\xbc\xea\x16\x2f\xbc\x05\x21\x54\xfb\x90\x78\x50\xb2\xdf\x29\xfa\x32\xb0\xc4\x8d\x05\xa0\x5a\xd2\x2f\x07\x41\xdb\xc6\x65\x8c\xb3\x37\x83\x3e\xc6\xa9\xf9\xd4\x96\x76\xe4\x23\xd5\x5b\x2c\x5b\xac\xb7\x4b\x68\x9a\xe7\xbd\x5d\x45\xcc\xe4\xb9\x42\x08\x08\x95\x24\x90\xab\xc2\x60\x9e\x6b\x24\xf5\x5a\x4e\x28\xf0\x7f\xe8\xbc\xb8\x51\xe1\x58\xd7\xdc\x69\xc0\x93\x3c\x5d\x5f\xe9\xbb\x90\x39\xd3\x1e\x64\xce\x26\x1e\xd7\xc7\x98\xe6\x73\x5f\x79\x7e\x0e\x24\xf7\x4c\xd3\x73\x0c\x5a\xe7\xac\x4e\x8a\x66\x13\x69\x09\xb6\x73\x7c\xe3\xd9\x20\xed\xae\x48\x50\xa7\x22\xa5\x49\xb9\x98\x49\x8f\x19\xb2\x48\xf9\xc2\x2a\x3f\xd1\x6b\x2c\x49\x5f\x9d\x9e\x97\x78\x0e\x0a\x54\x01\x1e\x83\xf7\x70\x75\xdc\xc8\x20\xc1\x82\xf4\x37\x32\x82\xd4\x31\x67\xa8\xdd\x89\x5d\xf8\x96\xb3\x0c\xf8\x9e\x6f\xb0\x53\x1d\xb5\x16\x6d\xa9\x5a\xf4\x33\x5b\xbf\x7b\x90\x3c\xf2\x60\x1d\x24\xb0\xb9\x15\xc2\x38\xd0\xe6\xb4\x0a\x12\x57\x53\xc4\x6a\x2a\xed\x77\x11\x4b\xa8\x54\x48\x90\x82\x34\x4c\x46\x0a\xf5\x91\x84\x4e\xb5\x4d\x87\xb8\x05\x46\x12\xcb\xbb\x86\xc6\x2d\xd6\xeb\x6e\x6b\x0b\x9a\xeb\x56\x3f\x29\x24\x80\x6b\x73\x16\x53\x83\xea\xa5\x79\x1e\x3f\x4a\xb5\x99\x08\x35\xad\x92\x90\x83\x05\xe6\x54\xe4\xb9\x04\x8e\x4a\x20\xfa\x70\x7c\xae\xab\x20\xc3\x4a\x38\x08\xdd\x30\xaf\x31\x05\x83\xf1\x7a\x9a\xb3\x8d\xab\xd2\x6b\x66\x7a\x7d\x96\xd8\x99\x87\x61\x68\x31\x66\x58\x39\x18\xd6\xa8\x36\xa2\x58\x9c\xfb\x6a\x93\xeb\xd7\x80\x22\x8e\xbe\xba\x73\xce\xd4\x58\x5e\x7f\x96\x26\x73\x58\x93\xcf\xc2\xd9\xec\x3c\x04\x6f\x05\x56\xaf\xbc\xe8\x4c\x4b\x5d\xb0\x7a\x94\x12\xd5\x55\xe0\x37\xb0\x19\x96\xc5\xc9\x51\x27\x59\xbf\x6e\x66\x00\xb6\x22\x09\x62\x05\xc4\x2f\x50\x70\x62\xf5\x50\x7c\x30\x83\x60\xea\x19\x4a\xcd\x12\x33\xda\xc7\x54\x76\xa2\xf0\x3a\xcf\x25\xa8\xfb\x51\x09\x52\x40\x2a\x11\x2e\x4f\x2a\x8d\xc8\x0f\xc4\xcc\x66\xb1\x0e\x8d\xea\xdd\x65\x36\x9b\x1b\x5a\xb9\x82\xee\x66\x35\x33\x4b\x82\xdb\x46\x0f\xb8\x73\x53\x6c\x4d\x79\x46\xc0\xaa\x22\x60\xd1\xbe\x50\xc3\x2f\x0c\x22\x5b\x15\x2e\xe6\xfc\xb5\x6f\x01\x13\xbf\xd9\x04\xca\x49\xe4\x39\x4e\x99\xa0\xc2\x9d\xe2\x38\x06\x5f\x12\x95\xd1\x33\x06\xda\x2e\xb8\xf4\x0c\x45\xbf\x0e\xe7\x3c\x73\x68\x4d\x61\x1f\xaf\x26\x97\xda\xfe\x66\x17\x7b\x6a\xf7\xda\x00\x1a\xa0\x0e\x65\x13\xd4\x85\xb5\x80\xad\x9e\x6b\xf6\x0a\x3a\x9d\x40\xf3\xba\x9e\x81\x0b\x30\x1a\xed\xda\x9f\xad\x9b\x7b\xdd\x52\xd7\xbb\x3d\x16\x32\x6b\x5b\x35\x54\x91\x33\x26\xa0\x04\xe3\xea\x67\xc2\xa4\xfa\x31\x96\x5b\x53\x5a\xcf\xb0\x87\xa3\x11\x4e\x72\x4f\x7b\xcb\xe7\x96\xc9\x4e\x18\x45\xb8\xa7\xd5\x33\x8a\x14\xd7\x44\xb9\xc2\xbe\xd9\xf5\x27\xf2\x56\x8b\xd6\x3d\xb2\xda\xb8\x1e\xd8\x31\xd6\xb6\xb3\x1b\x0b\xed\xda\x26\x6a\xc4\x19\x3c\x4f\xc7\xa2\x11\x36\x52\x3e\x4e\x2e\x44\xfc\x8d\x47\x8d\xb7\xcf\x9e\x28\x94\xac\x91\xa4\x8d\x97\x27\xc7\x8d\x09\x9c\xc1\xf6\xc9\xb7\xe1\x9c\xe7\x82\xc8\x40\x38\x9b\x65\x0d\x05\xbe\x21\x93\xc6\xdf\x99\x5e\x96\x84\x36\xae\xa6\xf1\x78\x6a\x2b\x48\xf9\x2c\x0e\xcf\x67\xbc\x11\x8e\xd3\x24\xcb\x1a\xe1\x6c\xd6\x38\x4f\x93\xab\x8c\xa7\x59\x23\x14\x51\xe3\x92\xa7\x59\x9c\x88\xac\xd3\x78\x9d\x08\x5b\xff\x8e\xaa\x5c\xed\x2a\xd3\x82\xac\x11\xa6\xbc\x11\xc5\xd9\x38\x59\xa6\xe1\x05\x8f\xa0\xe8\x55\xac\x80\xf1\x86\xf6\x42\x1e\x41\x67\x44\x63\xb9\x18\x27\xf3\x58\x5c\x34\xe6\xe1\xdf\x49\xaa\x1a\xc0\xc3\x8c\x77\x1a\x6f\xe0\xb7\x91\xf2\x09\x4f\x55\x8b\xef\xf6\xd8\xfc\x77\xd6\x56\xed\x58\x7b\x66\xae\xfa\xc1\xf1\xb7\xa6\x3a\x34\x5a\x1e\x87\x16\x35\xac\x8a\xaf\x31\x72\x62\xd1\xe1\xb2\x07\xa0\x02\x23\x2e\xc5\xc3\x4e\xf8\x22\xd5\x1c\xea\xb6\x62\xa2\x8e\x18\x35\xc0\xd6\x6a\x22\x8f\x68\xc3\x7b\xdf\x9f\x87\x5f\xc1\x5c\x25\x0f\xa3\xce\x1d\xbb\x39\x8f\x45\x7b\x1e\x7e\xdd\x41\x35\x26\x77\x9e\x6c\xf0\x08\x70\xe0\x4b\x88\x7a\x26\x49\x4a\x66\x4e\xc0\x5c\x46\x5f\xfd\x0b\x78\x70\x8e\x61\x00\x3e\x54\x3a\xa3\x9a\xbb\xb9\x33\xaa\xab\xff\x8f\x74\xe6\xf1\x7a\x67\x3c\x2b\x08\xb2\x64\x31\x4a\x61\x39\xf0\x98\xe8\x8c\x80\x27\x40\x66\xea\x67\x4a\xf8\xa2\x5b\xb2\x82\xff\x3c\x91\xd8\x58\xe4\x84\x1c\x34\x65\xbd\x83\xf4\x91\x2c\xcc\x8d\xa4\x44\x0e\xd3\x51\xc9\x00\x8c\x8a\x18\xf2\x11\x16\xea\xa8\x17\x60\x8a\xd7\xb3\x74\xa9\x5a\xf3\x9b\x64\x43\x6b\x86\xe8\xdf\xcb\x30\x95\x5c\x7d\x59\x5b\x1e\x46\xd1\x4f\x2b\x81\x19\xe1\x53\x2b\x53\x85\xf4\xa5\x05\x31\xee\x0a\x43\x9e\x85\xed\x37\x1e\xa6\xfa\x01\x1e\x84\x98\xbe\x24\xf3\xbc\x0b\x8e\xeb\x4c\x7d\x2a\x98\x30\x73\x71\xaa\x40\xcc\xb4\x36\x96\xba\x3e\x8d\x5a\x99\x8a\x0e\x99\xb9\x54\xbb\x34\x63\xfa\x46\x55\xdf\x63\x66\xaf\x55\x15\x9a\x31\x7b\xb7\xaa\xd0\x92\x95\x2e\xd8\x3c\xef\x1a\xb1\x78\x4b\x9a\xd6\x4a\x06\xb8\x3b\x05\x5e\x7c\xad\xba\xc3\x6f\x92\x4a\xe2\x6c\x3b\x83\xf4\x93\x31\x50\x33\x94\x23\xef\xae\x71\x0e\x0e\xc0\x7a\x29\x68\x15\xfd\x56\x9a\x25\x75\x59\x0d\x7f\x53\x73\xa1\xf9\x71\xa2\x28\x0b\x17\xfd\xb3\x59\x12\xca\x22\x0b\x98\x4b\x76\x21\xb0\xe6\xbc\xd5\xb5\x0e\x8e\xd4\x95\x26\x0b\xe5\x24\xd7\xd3\x8c\xb5\x96\xad\x1e\xdf\xdb\x9e\xb5\xf6\xf9\xfd\xed\x31\x7c\x67\xdb\xfb\xdd\xed\xfd\xae\x35\xa2\x1d\x5e\x67\xac\x15\xb6\x1e\x6e\xc7\x25\xfd\x6f\xd6\x4a\x5a\x7b\xdb\x69\xab\xb7\xbb\x2d\x5c\x56\x19\xb2\x9b\x95\xb3\x6f\x01\xf4\xc5\xb9\x74\x7a\x48\xe7\xcb\xf3\xf3\x59\xc9\xe0\xe0\x5b\xb9\xc9\x40\xee\x1b\x4f\x4b\xf9\x2f\x59\xb1\x7e\xdd\xee\x6d\x83\xe2\x6e\x9a\x2c\x45\x84\xdb\xbd\x6d\x4e\x02\x2f\xc2\xa7\x83\xfe\xbe\x45\xac\xde\x33\x07\xb6\x94\x63\x63\xf8\x40\xad\x3f\xd4\x42\x85\x22\x7a\x17\x2e\xfd\x36\x57\xf1\x6d\x44\xa8\x68\xbd\xc1\xff\xf9\x0f\xe6\x3b\xfb\x5d\x10\xce\x96\x10\xe6\xf7\xf6\xbb\x5a\x2c\x7b\xf5\xb7\xc4\xe8\x13\xa2\x28\x40\x84\xc2\xf7\x27\xb0\x5e\x07\xc2\xcf\x9f\x10\x0d\x8d\xb9\xae\x4f\xe6\x1b\x84\x8d\x55\x96\x4f\x9f\x36\x88\x2d\x1b\x7c\x42\x73\x8c\xe4\xb7\x39\x7b\x27\x71\xc8\x69\xa1\xcc\xf7\x52\xb2\x1d\xf3\xb0\xa3\x9f\x84\x76\x2e\x3c\x0e\xfa\x3b\xff\x54\x61\x58\x02\x5f\xd6\xb0\x2b\x38\x39\x70\x3c\x64\x26\x4a\xbe\x84\x34\xef\x08\x63\x31\xb4\xbc\x85\x76\x6f\x04\x6c\x8d\x56\x51\xfe\xa5\x5a\xeb\x43\xd4\x06\xe9\xf6\x11\x4d\xd8\x7e\x77\x3b\x1d\xf6\x46\xad\x2b\x9c\x0e\x77\x8b\x53\x44\x61\x51\x49\xbf\x1b\xa0\x96\x22\x1d\xd2\x61\x77\xd4\x4f\x82\x76\xe2\x69\xa2\x97\x8e\xbe\xc4\xc3\x76\xb4\x89\x0b\x75\x2c\x69\xd7\xb2\x98\xd0\x84\xe1\x6b\x40\xd1\xc6\x98\x2b\xa4\xd6\x11\x28\x81\xc2\x70\x88\x47\xb0\xb4\x45\x11\x50\xa3\x07\x0c\x2b\xb0\xfc\x0e\x01\x97\xd6\x4a\xd6\x2c\x60\x08\x90\xa6\x17\x16\x26\x2c\xe7\x92\xb1\x4c\x7f\x55\xf6\x1e\x6c\xb7\xfd\x15\xe8\xd9\x98\xff\x96\x08\x0b\x92\xec\xf4\x1e\x78\x10\xde\x17\xba\x21\x5b\x5b\xd5\x5b\xc3\x1e\x40\x40\x6c\x82\xdf\x07\x88\xd0\x16\xf8\x57\xe5\xb6\xae\x5f\xf6\x1f\x81\xb1\xfe\xb9\x9d\x7f\x6e\x91\x3e\xee\x07\xf8\x73\xb4\x4d\x86\x9d\xc6\x08\x18\xe9\x2d\xf2\x39\x80\x1f\xdc\x0f\xec\xd7\xe7\x8e\xca\xa2\x9f\x00\x9f\x43\x69\x5d\xf8\x8d\x2a\x3d\x6c\xb7\x46\xfd\x61\xb7\xfd\x2b\xed\x8c\xb6\xc9\x47\x0d\xb2\x1c\x39\xa8\x8b\xfc\x50\x17\x79\x04\x91\xa7\xeb\x09\x2f\xee\x0c\xf7\x44\x37\xb4\x58\xe3\x7f\xc8\x8a\x9f\x06\xaa\xed\x04\x68\xf9\x36\x3d\x47\x70\xd8\xf4\x63\x76\x33\xcf\x14\x55\xe8\x1f\x83\x34\x0a\xb4\x38\x40\x46\x07\x90\x06\x47\xdc\x2a\xc8\x8c\x11\x02\x75\xa8\xf5\xc1\x50\x07\x0f\xe2\x4e\xe9\x00\xe5\x24\xc0\x21\xfb\x68\x29\x5e\x42\xd4\x52\x45\x6d\xb5\xcc\xc3\x61\x6f\xd4\x6f\xf7\x82\x1e\x8d\xd9\xcd\x75\xd0\xa5\x51\x70\x85\x41\x98\x80\x6c\x0b\x3a\x85\xc0\xa5\x0e\xcc\x21\x70\xad\x03\x19\x04\x0e\x4d\x8a\x0a\xfd\x25\xb1\x3a\x99\xe1\x65\x9f\x90\x6d\xb1\x82\x4a\x9f\xdf\xa1\xd2\x3f\x25\x0e\x87\xbb\x23\x2a\x08\x1d\xe8\xc0\x1e\x04\xae\x74\xe0\x3e\x04\x22\x1d\x78\x00\x81\xa9\x0e\xec\x43\x60\xae\x03\x0f\x21\x90\xe9\xc0\x2f\x2a\xb0\xd2\xfc\x2e\xc6\x62\x35\xa2\xab\x60\xdd\xd6\x7c\xdc\x6c\x62\xed\xc5\x4d\xa1\x5f\x79\x8e\x64\x02\x5f\xa4\x6c\x9a\xb8\x46\xb4\xb6\xb4\x0d\xca\xa6\x7e\x5f\x48\xed\xa9\x4f\xe5\xf9\x8d\x4f\x92\x94\x03\x1b\x89\xfd\xa4\xe7\x3f\xc0\x18\xbe\xc1\xef\x5a\x79\x9e\xda\xa2\x14\xa6\xc2\xd8\x79\x81\x04\xf8\x82\xcd\x7e\xe3\x67\x0a\xba\x56\x38\xbb\xbb\x5a\xe1\x27\x12\xc7\xe0\x14\x8c\x50\xf8\x94\x09\x51\x44\x2c\xbb\x59\x91\xce\x3c\x63\x49\x19\x7e\xdc\x19\xa8\x28\x03\x39\x05\xd4\xfe\x8d\xc4\x31\xa1\xb0\x0e\x9b\xcd\x25\xe6\x14\x99\x5b\x12\xdc\x11\xa5\xeb\x3c\x39\x42\x3d\x81\xde\x3f\x4b\xe7\xb8\xa5\xf7\x0d\x1a\x50\x88\x66\x53\x44\x51\x07\x39\x82\x11\x5b\xeb\x7e\xfd\x6e\x20\xc8\xb6\x77\xad\xfe\x54\x82\xe7\xa8\xf6\x86\x1b\x19\x69\x4d\xc9\xb5\x79\x61\x54\x6e\x77\x1b\x4b\x6b\xfc\xc2\x99\x06\xa4\xdc\x9e\xcd\x40\x90\x5a\x08\x60\xe5\xad\x13\x67\x87\x13\xc9\x53\x60\x83\xb5\xdd\x68\xd3\xf2\x7c\xb0\x96\x6c\xb7\x6e\x81\xe2\x3b\xa5\xf8\x5d\x6e\xb0\xbe\xe8\x34\xec\xcb\x5c\x5c\x60\x99\xc1\x28\xb4\x52\x85\xe1\xbe\xc6\x92\x16\xb4\x03\x6a\xc9\x16\xc2\x0b\x9e\xc6\x49\x44\x1b\xda\x77\x17\x29\x53\x13\x8e\xf2\x2b\x88\x0a\x57\x50\x17\xa0\x0d\x0d\x80\x74\x7e\x40\x0a\x39\x8c\xa2\x76\x2c\x2e\x79\x2a\x79\xd4\x06\xc7\xee\x35\xa2\xc8\x09\xf0\x4c\x52\x9a\xb2\x84\xd0\x4f\xc6\x20\xc4\x1f\x52\xed\xf7\x35\x5e\x9c\xe8\xb7\x44\xa0\x46\xc1\xfa\x40\xf1\x0c\x88\x7c\xb2\x84\xbe\x35\xd0\xc2\x64\xe5\x0c\x0c\xd9\x5f\x12\x4b\x7d\x0c\x12\x9a\x99\x90\x59\xc1\x07\xa5\x5d\x89\x13\x23\xb7\x94\xe4\x79\x42\xb3\x66\x13\xcc\x69\x81\xad\x4a\x6b\x21\xaa\x95\x6d\x0b\x42\xc3\x66\x13\xac\x4e\xa2\x23\x50\xf4\x78\x5a\x7c\x93\x56\xa8\x32\xc4\x85\xbc\x10\x5c\xcb\xbc\x7c\x2d\xc7\x2a\x4f\xd2\x6c\x56\xee\x66\x4e\xc3\x3c\xcf\x08\x59\xfd\x21\x3b\x13\xc1\xde\x78\x9e\x12\xe8\x1f\xce\x5f\x53\x8d\x1d\xf2\x3f\x24\xf0\x7d\xf5\x25\xc9\x05\xfb\x5d\xe2\x1e\x45\x61\x04\xfc\x13\x08\xb6\x7b\x14\x65\xcb\x73\x99\x86\x63\xe9\x5b\x23\x10\x25\x27\x87\xf5\xdb\xa0\x85\x6b\xb6\x0c\xd1\xfe\xda\xfd\x85\x6d\x28\xa7\xcc\x19\xff\x6e\x63\xd1\xc2\xb2\x9d\x3e\xea\xf6\xb5\x39\x4a\x9c\xb6\x2b\x65\x54\xbb\x6c\x29\x12\x98\x5c\x95\x3c\x2d\x2f\x4f\x3b\x25\x84\xe4\xb9\xe7\x1b\x20\xf5\x6c\x51\x7a\xaf\xf9\xda\x93\x5d\xdf\x47\xda\xb5\x20\x75\x50\x48\x59\x82\x4c\x36\x90\x9d\x3e\x6a\x6f\x2d\x97\xae\x52\xeb\x9c\xd0\x30\xdc\x3d\xd9\x9f\x53\x2b\x97\xf2\x09\xd1\x4a\xb6\x77\x72\x5c\x9b\x73\xf8\x69\xa4\xdd\x0b\x26\xa2\x44\xe4\xcf\x42\x71\x81\xd7\x76\xe6\x4b\x4d\xd8\xd3\xf2\xde\xf4\xb5\x64\x1b\x32\x69\x80\xc6\xc4\x94\x37\x14\x8c\x65\x78\xc1\x8d\x86\xc1\x32\xd5\x7e\xce\x1b\xef\xd6\x0b\x63\x5f\x89\xc1\x96\xcb\xaa\x6c\x9b\x0d\x03\xe9\xd7\x1f\x78\x31\xc6\x02\x87\x9b\x93\xb0\xaa\x26\x6b\xc6\x16\x88\xee\x4c\xb0\x1e\xdf\xa3\x63\xa1\xb0\xea\x4c\xd0\x19\x7c\x8c\x05\x5d\x0a\xb6\xf7\xa0\xbb\xbf\xb7\xfb\xcb\xf6\xcc\xf3\xc0\xb8\x28\xd9\x2a\xc1\xfc\x9e\x6c\x49\x72\xcf\x3b\xf1\x27\x95\x07\xed\x92\x99\xad\x75\x1b\x5b\xa4\xbd\x14\x41\xd9\x5e\x96\x87\x5b\x7b\x0a\x32\xb7\x81\xb5\x46\xa9\x2a\x60\x8b\x68\x88\xf2\xd4\x56\x84\x25\xd8\xba\x74\xc8\xa9\x65\xbd\x8e\x68\xb7\xe4\x26\xf0\x5c\xac\x59\x9c\x2a\x1f\xfa\xbc\xff\xde\xd8\xac\x53\x39\x60\x87\x06\x58\x3e\xc6\x31\xfb\x68\x0d\x50\x69\x3e\x4a\x4c\xe8\x5c\x78\x3e\xc3\x0a\xb0\xbe\xbc\xfc\x7a\x75\xac\x64\xf4\x8a\x86\xec\x1d\xc7\xb1\xe6\xee\x77\x69\xec\x49\xb9\x1e\xac\x19\x8b\x0e\xd7\x2d\x7c\x51\xcf\x74\x6b\x58\x16\x41\x35\x69\x60\x10\x30\xac\x0a\xa1\xaa\x43\x5e\xdb\x8f\xbe\xb8\xf8\x8e\x06\xf6\x15\xe7\x5f\x3e\xd6\xd8\xaa\x7e\xfe\xfc\x3b\x05\x0d\x73\xa5\x5c\x76\x2a\x30\xba\xb8\x50\x95\x22\x0b\x18\x15\xb1\x35\xd1\xcf\x9f\xab\x8a\x90\x07\xcc\x4b\x58\x4f\x31\xc6\x86\xb4\xf1\x65\xd5\x39\xdf\xdc\x90\x89\x7d\xfe\xbc\xb0\x24\xf5\xd1\x5a\xc5\xfe\xad\x92\xcb\x18\x19\x7a\x5e\x18\xca\xbe\x28\x3e\x55\xc5\x4e\x7f\x59\xb5\xda\x05\x74\xa3\x0a\x03\xda\xba\x53\x45\xd8\xb4\xba\x30\xa8\x6d\xba\xad\x23\xc0\x26\x8f\x19\x07\x3b\x1e\xa6\x9b\xba\xe0\xf7\x2d\x54\xed\x7a\x16\xaa\x0c\x38\xdd\xe5\xf5\xa2\x89\x2a\x9a\xdc\x66\x43\xfb\x1d\x46\x7f\x82\x89\xab\x3f\x13\x8f\x83\x07\x43\x5a\xb0\xf3\xfe\xd4\xa3\xe9\x22\x1e\xea\x8e\xfd\x89\xe8\x7b\xad\x82\xfb\x67\x8d\x15\xee\x01\x1f\xb1\xbd\x6d\xac\xed\xe2\xda\xba\x8e\x10\x1d\xa2\xa3\x23\x6d\x18\xec\x48\x5b\xd5\x92\xdc\xda\x93\x02\xb6\xe0\x91\xb5\x15\xa5\x42\xbf\xea\x9a\x8e\x9c\xc6\xb9\x2a\xeb\xa6\xe2\x28\xd9\x64\x8e\x89\xf7\xa5\x91\xe2\x5e\x53\x18\xcd\x73\xd9\x39\x4b\x7c\x0d\xd2\x8d\x59\x5f\x71\x11\x73\x21\x9d\xe6\xf7\x91\x6a\xde\x11\x1a\xd1\x0b\x63\xff\xbc\xa6\x01\x12\x64\xc2\xaf\xb0\x75\x22\xf2\x13\x08\x7b\x58\x86\xcc\x40\x80\xa2\xb0\x46\x7a\xb6\xba\xe4\x40\x8d\xc9\x91\x19\x15\xf5\xbb\xa7\xc6\xe5\xc8\x8c\x8c\x39\x28\x9c\xb9\x2d\x13\x84\x1c\xce\xa2\x96\x8d\xbc\x6f\x07\xe8\x08\x51\xce\x5d\xe0\x08\xd1\xe7\xb6\xf9\x47\xba\x03\xd0\x85\x3a\x7e\x52\x21\x8c\xef\x59\x40\x9b\xab\xc6\xcd\xe7\xd6\xe6\x83\x61\xdf\x6a\x93\xcd\x96\x95\x3b\x37\x36\x9b\x4d\xb8\x67\xda\x32\x77\xd3\xa6\xca\xc3\xb4\x41\x43\xe6\xaa\xc8\x1c\x8d\xe8\x35\xd7\xc3\x72\xa1\x87\x65\x60\xf5\x6b\xb7\x7a\x30\x32\x99\xaa\x3a\xcb\x6c\xd5\x86\x45\x0c\x55\x3b\xe6\x71\xa6\xab\xb6\xe1\x9e\xb1\x13\x97\xb9\xaa\x55\xf9\xa2\xea\x4c\x15\xc9\xd0\x88\x1e\x9a\xaa\x2f\x05\xbd\xd6\xb5\x9f\x58\xd5\x5f\x55\xfb\x24\x49\xf1\x3b\x8c\x4e\x36\x59\x67\xf8\xcf\x7f\xac\x39\x06\x87\x28\x63\x90\x96\x22\xc5\xf9\x79\x72\xb2\xf1\xfc\xdc\x54\xbc\x54\xfa\x04\x96\x43\xb7\xcc\x20\xf7\x92\x4f\x8c\x23\x81\x9a\xe3\xb9\xd7\xdd\x5e\x87\x5f\x82\xad\x4a\x3f\xd8\x58\xfa\x0e\xc5\x4f\x10\xdd\xdf\x54\x9e\xef\xdd\xa1\xfc\x09\xa2\x0f\x37\x02\xb8\x7f\x17\x00\x27\x88\xfe\xb2\x11\xc2\x83\x3b\x41\x38\x41\xf4\xd7\x8d\x20\xf6\x37\x80\x80\xa5\x5f\x4c\x09\x45\xf3\xcc\x6e\x00\x2f\xb6\xb7\xaf\x17\xe0\x89\xda\x8f\xea\xa4\x84\x80\x0e\x7d\xb4\x21\x1d\x7c\x4e\xe8\xa5\x60\x7a\x4e\x0f\x2e\x2d\x5b\xf5\x11\xfb\xf5\xe0\x52\xb4\x18\x3a\x41\x64\xc6\xf1\xa5\xa0\x29\xf7\x50\xc4\x43\x77\xe2\x5c\xc1\x89\xa3\x46\x1d\xa3\x6e\x07\xb5\xe0\x25\x3e\x49\x31\xc0\xdc\x00\x30\x02\x80\x87\x42\xef\x82\x2b\xbb\x01\x0b\xb2\xcf\xed\xc2\x6f\xc6\xfe\xdf\xb7\x44\xf0\xc3\xf3\x73\x63\xf1\xe5\x9b\x1f\xfd\x3a\x9c\x73\xa4\x21\x7d\x13\xec\xb2\x20\xba\x8a\xd6\x9e\x95\x64\x12\x56\xdf\x84\xa2\x4c\x18\x17\xf4\x1b\xe0\x58\x60\x28\xa1\x8e\xf9\xc3\x78\x9e\x83\x66\x54\xc2\x5e\x48\xac\x5f\x14\xc0\xbd\x5f\x2a\x8f\x27\xd8\x18\x65\x8c\x59\xea\x80\x18\xef\x43\x80\xb2\x25\x24\xcf\x91\x35\x7b\x80\x68\x08\xea\x77\xaf\xb0\x1c\xc6\x23\xd2\x57\xff\x3d\xf4\x4e\x90\x00\xe2\x4b\x58\x99\x7e\x22\xc6\x61\x9e\xaf\xdb\xd8\xb1\x15\x62\xfd\xfe\x41\x9f\x48\x10\xdc\x5b\x41\x8f\x14\xf5\x55\x43\x66\xea\xc7\x7b\x4d\x1c\xa9\x7c\x51\x3c\x99\xd4\xcb\x9b\x59\x69\xa6\x0a\xff\xd7\xf7\x60\xa0\x52\x71\xca\x34\x87\x5c\x81\x24\xf5\xf9\xb2\xab\x58\xdd\x44\x09\xdb\xe7\xf7\xb7\x71\xea\xbf\x69\xb4\xab\x8f\x1c\x84\x4a\xf6\x05\x4b\x42\x6e\xc6\x61\xc6\xf5\xcb\x5e\x10\x33\x61\x6c\x57\x82\x43\x04\x2d\x63\x7e\x00\x19\xf4\x4b\x5f\x29\x87\x9f\x6c\x51\x86\x32\x88\x3d\x3f\x8b\xd9\x2e\x41\xcc\x20\x1d\x7c\x2e\xf0\x52\x0e\x73\xad\xf8\x39\xf6\xf9\x7d\x3f\x07\x3c\x2d\xfa\xe9\x7b\xfb\xfc\x81\x9f\x41\x2d\x93\x22\xbd\x9d\x90\x9d\x5f\xf6\xef\x97\xb3\xc0\x5b\x65\x39\xcf\x7e\xf7\xfe\x2f\x2e\x93\x75\xdd\xaf\x6d\x79\xb5\xd3\x95\x33\x82\x17\x07\x87\x38\xd6\xf3\xc9\x45\x74\x3c\x59\xd7\xb2\x54\x53\xe5\x28\x41\xcc\x19\xc8\x20\xe5\x79\xe9\xbc\x50\x34\x62\x9e\x6f\x98\x6e\x15\xab\x3d\x56\x30\x8f\xff\xdf\x8f\x44\x30\x11\x76\x7e\x79\x69\xce\x24\xd3\xe3\xed\x8c\xca\xd2\x2e\xed\x91\x76\xaf\x76\x76\x2a\x99\x7d\x9a\xc3\x2c\x11\x13\xb8\xb7\xd7\xda\x5b\x03\x63\xd6\xc0\x6d\x40\x5a\xbd\xb5\x52\x7a\xbc\x6f\x2b\xe4\x91\x37\xa6\x15\x46\x56\x1a\x93\xd6\xc3\x0a\x34\x6b\x27\xf6\xee\x00\xb1\x4f\xc2\x00\xd0\x76\x6f\x1d\x2e\x2c\x1c\xf3\xa5\xd6\xe0\x5d\xc1\xb7\xaa\xdd\xd5\x4b\x54\x9a\xe9\xf3\x58\x59\x54\xb6\xd8\x4c\xb4\x17\x02\xcb\x16\xf6\x27\xb7\x1b\x54\x37\xe7\xf6\x58\x10\x3a\x13\xd5\xe1\x37\xdb\x63\x03\xec\xb1\x86\x4d\xc7\xd5\x72\x76\xe3\x6d\x28\x97\x99\x72\x99\x2a\xb7\x2a\xb1\x22\x0a\xae\x9c\xbc\xdd\x3e\x3c\xec\x09\x7d\x86\x96\x36\x05\xcf\x73\x6c\x1e\x58\xe3\xec\x9d\x1c\x63\xd2\x5f\xe7\x01\x05\x95\x28\x7d\xbf\x48\xf6\xc2\x1a\xad\x3d\xd8\x68\xfe\x6c\x91\x64\xd2\x1c\xdd\x52\x6f\xcc\x49\x9a\xcc\x59\xbd\xe5\xd6\xca\xfb\x1a\xbc\x20\x96\x84\x33\xe0\x02\xe2\xfe\xe1\xda\xff\x43\xe2\x1b\x99\xc0\x04\x51\x05\x3a\xe0\x2b\xc7\x1e\xf2\xb9\x3a\x84\x74\xa6\xcb\x79\x28\xe2\x6f\x1c\x6f\xc9\x12\xc7\xa7\xd6\xe3\x9e\x6d\xea\xeb\xe4\xaa\xce\x39\x91\xbe\x93\xd2\x64\xae\x95\x85\xb9\x2e\x20\xab\xaf\x26\xff\x6d\xcf\xa0\x47\xd0\x37\x99\xfc\x4f\xf6\x4c\x26\xb7\xf5\x4b\x26\xa5\x5e\x5d\x70\x59\x97\xf5\x95\xf6\x88\xa3\xcf\x50\x75\x8b\x43\x68\x64\xb8\x69\x50\xd2\x54\x7c\x28\x6b\x2e\xe0\x48\x5f\xbe\x4e\xf1\x5e\x17\xd0\x0f\x11\xb5\xe8\xc7\x35\xbc\x24\xeb\xb7\x5e\x2b\x07\x58\xbd\x94\xf3\x7c\x4b\x78\x63\xd8\x6c\xe2\xea\xc9\x8e\xf5\xad\x5a\x39\xf2\x75\xeb\x8b\x6d\xf7\xd8\x7b\x94\x0e\xbc\x6f\xed\x17\xc8\x72\x74\x2d\xee\x23\xfd\xf7\x6c\xd3\x0f\xfd\xf4\xf5\x7f\xbd\x23\x8f\xfc\x8e\x94\x1a\x0f\x17\x64\xa9\xe9\x7e\xde\xa2\x1b\xf2\x8a\xf3\x75\xa5\x20\x6b\x27\xd9\xef\x0b\x8d\xd9\xb5\x76\x40\xf8\x44\x16\x8e\x78\xb7\xb6\x70\x75\xf9\x27\x7e\x20\xae\x74\x13\x43\xe7\x52\x96\xe6\x39\xc2\x04\x29\xa2\xbd\x6f\x00\xe8\x47\xaa\x44\x21\x88\x76\xb8\xcc\x0b\xa3\x8a\x83\xd2\x44\x0b\x2f\xf4\x5c\x19\x93\x21\xf6\x0b\x69\x38\x2a\xca\x76\xf3\x24\x9c\xd7\xce\x15\x4d\xef\x3a\x5b\xe9\xff\xc4\x6c\x81\x93\xf4\x62\xbe\xb0\xf0\x83\xf4\xbb\x6b\xef\x11\x13\xcd\xa6\x78\xc4\xbe\x33\xcf\xa5\x5e\x1f\xa7\x75\x3b\xae\x7c\x6e\xa9\x7c\x10\x6f\x90\x6f\x3b\x82\x2a\xaa\x04\xaa\x76\xd1\x7f\x0f\x96\x99\x21\x0f\xd8\xfb\x0d\x4f\x43\x53\x0f\x5f\x9f\x85\xe2\x82\x25\x40\xb4\x98\xb7\x8e\xd4\x0b\xa8\x83\x8f\x85\x10\x31\x0f\xbf\xb2\x0f\x12\xbe\x62\xc1\xbe\xc0\xd7\x22\x4c\xb3\x58\x5c\x3c\x9b\x85\x17\x59\x4d\x3d\xe0\x02\xdb\x9c\x4f\xba\xb6\x92\x04\x87\xb5\xd9\xb4\xfe\xa0\xae\xad\x59\x57\xd5\xe8\xac\xe8\x9c\x31\x6b\x0b\xc9\x5a\x32\xcd\xa8\xdc\xdc\x2c\x45\x2c\x03\x41\x17\x69\x9c\xa4\xb1\xbc\x0e\x8e\x86\x62\xb4\xf2\xe4\x89\xc1\x7e\xec\x06\xfe\x5a\xc7\x96\x6a\x4b\xf7\xa9\x48\x63\xb9\xc2\x1c\xa4\xf5\x88\x91\x5d\x13\xce\xd3\x73\xab\x45\xe0\xb0\x16\xc3\x74\xd4\x51\x75\x8f\x30\xf7\x02\x85\x8b\x9c\xca\x11\xef\xe3\xc0\xe0\x57\xb2\x74\xf1\xeb\x81\xd2\xcb\xf2\xff\x45\xc4\x1b\xd0\xee\xff\x16\xe9\xae\x80\xb8\x03\xc2\x5d\x29\xf1\x5f\x21\xdb\xe4\xff\x07\x44\x9b\xfc\x4f\x20\xd9\xe4\x8e\x08\x76\x9b\xfd\x08\x76\x7d\x67\xdc\x5a\x83\x55\x88\xf5\x9d\xd1\x6a\x53\x24\x13\xe4\xbf\xc1\xa8\xed\x33\x34\x93\x42\xa3\x55\xe0\x76\x86\xd5\x4a\x30\x9a\xbd\x32\x74\xee\x44\x0a\x57\x8b\xce\x97\x14\x07\x61\x58\x9d\x06\x1d\x86\x4f\xcb\xf1\x82\x58\x8f\x03\x36\x32\xb8\x9c\x51\x6d\xb8\xad\x56\x70\xc5\x92\x05\xae\x6e\x23\x34\x53\x34\x41\x35\x20\x70\xed\x00\x1b\x8a\x01\x77\xf6\x8a\x8d\xbd\xc5\x80\x7b\x56\x6f\xad\x04\x0e\xf7\xac\xde\x96\x44\x73\x4a\xad\xcd\x30\x59\x99\xe6\x2a\x3c\x74\x03\x47\x46\x2b\xbd\x94\xee\x44\x8b\xb0\xbe\x3c\x39\xd6\xbe\xe6\x59\x55\x99\xa7\xfe\xbc\x70\x12\x92\x92\x81\x96\x0b\xa7\x82\xc9\x7e\xe9\x6a\x5c\x2a\x7a\x27\xf0\x46\xa9\x21\xcc\xf8\x80\x79\x2a\xf3\xfd\x18\xfc\xce\xbe\xc0\x82\xca\x7e\xc9\xb2\xc6\xf0\x74\xe4\x5b\x88\x18\x7e\x1a\xa1\xe0\xb6\x0c\x9f\x10\x09\x5e\x69\x17\x40\x85\x5f\x22\xaf\x63\xa4\x6f\xda\xa7\x87\x08\x13\x3f\x11\x93\x60\xc3\x00\xb5\xf6\x0d\x8f\xd8\xdf\x41\x3d\xbe\x57\x29\x5e\x88\x1f\x7d\x42\x54\xf5\x06\x7d\x42\x84\x04\x5e\xbf\xbe\xd3\xab\x4d\x7d\x32\x98\x7e\xb6\xa8\xac\xc1\x8d\x53\x63\xe4\x05\x2c\x75\x80\x77\xb6\x1b\xc6\xc2\xf2\x59\xdc\x42\x8d\xed\x1d\xa2\x85\x0b\x38\x33\x39\x11\x95\x0c\xa1\x03\x03\xec\x95\x16\xf3\x04\xc2\xd5\x49\x5d\x7a\x7d\xef\x5b\xf8\x4b\x39\x46\x81\x0d\xc0\xb3\xdb\xa7\x44\x70\x00\xf6\xc9\xf0\x48\x05\x43\x43\xd4\xe2\xad\x9f\x31\x1a\xfd\xac\xee\xc9\x47\xbe\xef\x61\x23\xe2\x69\x96\x84\xf1\x3f\x0c\x66\x56\x03\xe7\x9c\x37\x61\xb2\xf5\xf3\x10\x91\xd1\xcf\x75\xec\x4a\xd1\x4a\x5b\xa8\x76\xe0\x50\x2b\xb1\x2b\xfb\xf7\x93\xe3\xd7\x9b\x1c\xf2\x17\xa2\x75\x66\x65\x94\x16\xc4\x72\x36\x33\x30\xaa\x5b\xa3\x0c\xc5\x2e\x78\x43\x31\x22\x2e\x10\xb1\x4d\x44\x51\x14\x35\xc0\x1c\xec\x91\x36\x07\x6b\x5b\xd9\x18\x3e\x1f\x9c\x8e\x3e\xd9\x19\x5e\x8a\xf8\x6b\x0d\x7c\xcf\x3d\x53\x79\x59\xee\xa8\x25\x08\x25\x4d\xd4\xa6\xc6\xf9\xe7\x72\x1b\x18\xa3\xd2\x93\xa3\xcd\xf3\xae\x61\xe4\x82\x41\xc9\x44\x00\x6a\xb7\x06\xea\x26\x06\x65\x57\xb3\x8a\xa8\xee\x9b\x09\x4e\xa8\xee\xb7\x09\x1a\xfd\x5d\xb8\x7c\x02\xef\x22\xa2\x5a\xd5\xcb\x44\xe9\x80\x3e\xb2\xd4\x02\x60\xaf\xb9\x46\x4e\x5f\xf1\x70\x51\x76\x59\xec\x3b\xc5\xf6\x16\x8c\x6e\xb6\x7d\xf8\xae\xa3\xa0\xcf\x2b\x42\x0d\xf6\xae\xb7\x77\xab\xbb\xf7\xe9\x3a\x4d\x5f\x18\x33\xdb\x9c\x76\x6d\x11\x6a\xf7\xd6\x7e\xd7\x56\x98\x22\xb6\x66\x1f\x65\x00\x6b\x6c\x00\xd7\xe0\x4f\xac\xf8\xcc\xea\xe0\x5b\x61\x0f\x58\x29\x63\x1e\xcf\x30\x2e\x33\x24\xc9\xce\x9e\xa1\x4d\x75\xd4\xde\x36\x06\x27\x63\x65\xcc\x4b\xd7\x09\x41\xf6\x06\xe6\x22\x0a\xaf\xb3\x97\x42\x3b\x5e\x5d\x9f\x8c\x7f\xf3\x8d\x98\x4b\x31\x33\xcc\xfc\x66\x35\xe8\xfa\xfa\xb8\xc2\xdc\x00\x55\x50\x15\x64\x31\xab\x26\x8c\x22\xfc\x50\xb5\x5e\x12\x50\xf8\xf3\x87\x9f\x15\x9f\x75\xb5\x59\x51\x18\xb0\x75\xa7\x2a\xfa\x91\x2a\xa0\x0b\x2f\x45\x75\x59\x7a\xda\x13\xeb\xeb\xc3\xc2\xff\x58\x1e\x27\x0e\x6b\x8a\xaf\xad\x9e\x1a\xf0\xf5\x00\xdc\xf2\x50\xa8\x04\x1b\x08\x33\x53\xcc\x4c\xd8\x0f\xdc\xde\x5b\x46\x54\x2b\xb0\x4e\xa2\x65\x09\xf3\xb7\x87\x87\x6f\xf4\xcc\x8b\x83\x88\x83\x0a\x38\x5c\x4f\x9c\x5a\x39\x4d\xcf\x78\x59\x9f\x07\xd6\x6b\x75\x1f\x69\x09\xd2\x82\xd0\xc3\x9c\xc9\xaa\x63\x28\x42\x8c\x4d\xc8\xa0\xa2\xe4\x6b\xde\x84\x4a\x53\x60\xd6\xa3\x9a\x4c\xde\x96\x30\x91\x24\x90\x6e\x2e\x23\x1f\x87\xfc\x27\xe3\x84\x0d\x6e\x0e\x0c\xfa\xf6\x2d\xa7\x07\xb9\xf7\xf0\x96\x85\x66\xdb\xe6\x2f\x84\xff\xa2\x6d\xce\x2a\xa4\x5b\xf5\xb7\x4d\x86\x47\x56\xf7\xd7\x47\xfb\xde\xc3\x3c\x7f\x58\x4c\x11\x0c\x3c\xaf\x1f\xeb\xd2\xc5\x0c\xbe\x63\xdc\xe0\xdc\x7b\xa8\xba\xdb\x7e\x58\x26\x02\x22\x6d\x15\xe6\xa1\x59\xc6\x56\x14\x63\x7d\xd3\x7a\xfa\x24\xb8\x96\x3b\xa3\x5f\x45\xdb\xf5\x69\x40\xa5\x12\xf3\x00\xe6\xb9\x31\xfc\xde\x44\x28\xa4\x9c\x99\xdf\x8c\x65\x96\xb7\xb1\x94\x9c\xb9\xaf\x8c\x5d\x08\xcd\xb8\x50\xc8\x37\x73\x5f\x19\xbb\xd6\x5c\x91\x02\x33\x67\xdf\x2a\x72\xde\x57\x90\xc3\x61\x54\xb5\xaf\xa2\x89\xf5\xa4\x53\x5c\xd3\xb7\xbc\x91\xde\xba\x12\x6a\x1d\xf8\x72\x52\x98\x5d\x66\x98\x3b\x7d\xaa\x12\x3b\x40\x5b\xd8\x80\x49\x08\xcf\x33\xcc\xc9\xa3\xde\xbe\xb6\x8b\x82\xf9\x36\xdb\x77\xc6\x9d\xb6\xbc\x63\xa3\xd9\x94\x20\x1c\xfd\x4c\x1a\xfe\x0e\xf5\xbb\xc1\xcc\xfa\x31\x6a\xe1\x5b\x5d\x63\x55\x22\x31\xa8\xa0\x9a\x8b\x44\x4b\xd9\xc4\x8a\xa6\x68\x36\xf1\x96\x34\x9c\xac\x33\x2d\x88\xfa\x52\xbc\x49\x93\x8b\x94\x67\x59\xdf\x93\x05\xe7\xed\x58\x17\x03\x2b\x42\x41\x7d\x81\x3c\xc7\xf5\x09\xaa\x21\xb7\xd1\xa2\x35\x25\xc0\x12\x80\xa1\x54\x4b\xd8\x96\x3e\x3c\xe3\xc0\x0e\xc0\xca\x4c\xf6\xc6\xd7\x80\x02\xb5\xee\xda\x17\x01\xd8\x5e\x1b\x0b\xd8\x81\xc6\x35\xc5\xcb\xc3\xdb\xa3\xdc\x0c\xac\x25\xa4\xb1\x6d\x16\x8c\x96\x47\x69\x3b\xfc\xbd\x42\x62\x18\x93\xaa\x00\x55\x7e\x9b\x93\x4a\x9d\x2e\x81\x6e\xf5\xa8\xb5\x0a\xdb\xa8\xf7\x19\xad\x5b\x66\xaf\xcd\x77\x12\xc7\x6e\x35\x58\x4f\x7f\x46\x76\xb8\x80\xcf\x49\x95\x7b\xd1\xa5\x85\x52\x67\xc1\x17\x9b\x86\xd9\xe1\x2c\xbe\x10\x3c\x7a\x91\x2c\xd3\xb5\x8d\xb5\x59\xc9\x0c\x73\xc6\xfb\xfa\x6d\xc8\xa3\x71\x82\x2e\xad\x8e\x2e\x69\x73\x72\x6f\x5f\x11\x44\x5d\x7b\x5e\x1f\x9d\x9c\x6e\x42\xba\xbd\x72\x8f\x4b\xa7\x93\x46\x91\xba\xa5\xda\xcc\x02\xff\x4e\x99\x07\xa5\x32\xa6\x09\xaf\xca\x2b\x65\x73\x3f\xfd\x3d\x6a\xca\xbe\x5b\x3f\x81\xee\xa4\x8c\x57\x14\x67\xef\xa5\xf9\x3e\x7d\x62\xbe\xad\xec\xcc\x46\x6a\xa4\xec\xaf\x7b\x65\xcb\xbc\x2e\xbd\x10\xd4\x97\x79\x92\x68\x69\x46\xc9\xa3\xc6\x3b\x11\x5f\xf2\x34\x0b\x67\x8d\xd3\x78\xce\x1d\x28\xb5\x83\x33\x76\xac\xa5\x2a\xb3\x46\x38\x1e\xf3\x2c\x4b\xd2\xaa\xc8\xfc\xbb\x8c\x6b\xcb\x08\x56\x29\x1e\xd1\x81\x20\x0e\x01\xce\xb4\xd4\xbd\xfa\xba\x15\x04\x64\xb1\x30\x10\x7d\xc3\x89\x25\x67\x00\x02\x7c\xdc\x0a\x40\xe5\x28\xca\xbf\xd6\xe5\xd5\x70\x94\xc4\xfe\x55\xc4\x66\xe5\x7e\xec\xad\x8b\x1f\x55\xf2\x57\x90\x77\x36\x89\x96\x3a\xa4\xae\x06\x7d\x33\x1a\xc1\xe6\xbc\xf1\xf6\x2b\xb5\x2a\x11\xc1\x9a\xc4\xcd\x8a\x10\xb7\x6f\x4e\xa6\xf1\x44\xf2\x48\x75\xd3\x0f\x57\xc7\xe8\x07\xfc\x19\x64\xb2\x9d\x69\x20\x15\x15\x22\x45\xa9\xc6\x89\x28\xdb\x31\x50\x77\x69\xe8\xd8\xa4\x45\x03\x4a\xf7\x5f\x39\xc9\xf0\x4c\x6e\x56\xea\x76\x1d\x58\x49\x24\x8a\x39\xd3\xf6\x49\x3a\x67\xa1\x6f\x64\x08\x96\x2c\x18\x6a\x0b\xb5\x02\xad\xfa\x38\x58\x07\xcb\xaa\x3b\xed\x1b\x64\xa5\xd2\x72\x3b\x31\x21\x8f\x8d\xa9\xb8\x9a\xd2\xce\x66\x4b\x4d\xa2\x95\xc5\x3d\x16\xec\xa4\x4e\x52\xed\x74\xed\xb9\x11\x54\xd5\x63\x36\x51\x68\x14\x97\xe0\xf5\xc0\x82\x4f\x86\x62\x04\x86\xdd\x0a\x95\x80\xaf\xbe\x15\xbe\x0c\x1b\xe3\xf1\x9c\x16\x06\x62\x38\xe3\x79\x8e\x90\xb5\xdd\x6d\x07\xd7\x55\x6c\x18\xfc\xba\x99\x29\xb8\xbf\xd7\x9e\xe6\xe1\x45\xa5\xb7\x0b\x6f\x29\xc9\x30\x1d\x31\x28\x92\xfa\x45\x6c\xbb\x8a\xf6\xbc\xf6\xfa\x83\xce\x93\x64\xc6\x43\x51\x42\x73\x71\xa6\x2d\x51\x09\x26\xa9\x2c\x4c\xc4\x30\xad\x10\x1e\xa8\x78\x68\xfe\x56\x8f\xde\x9a\xf3\xc0\xa2\x68\x30\x5e\x21\xe3\xfd\xb8\x40\xf9\x83\x6e\x81\x7e\x09\xaf\xc7\x92\x62\xd1\x0a\xc9\xbd\x87\x34\x35\x2e\x96\x01\xcc\xd8\xf6\x59\xdb\xe0\x7a\x08\x96\xb7\xc6\xc3\x04\xba\x2c\x29\x4e\x2a\x65\x0c\xc0\xf1\xea\x78\x83\x38\x61\xe1\x11\xca\xa0\x2e\x26\xd3\x90\x8f\x1c\x26\x65\xa2\x3a\x56\x62\xf0\xc0\xc9\x1c\xa4\xa4\x9f\x1a\x7e\x05\x15\x24\x48\x57\xf4\x58\xe1\x23\xbe\x07\xa5\x4d\xb4\xfc\x59\x39\x1b\xf8\xb5\xd8\x90\xd2\x91\xc9\xbb\xc5\xc2\x3a\xd5\x71\x46\x2b\x65\x9e\x6f\x89\xbe\x0c\xf0\x06\x78\x4c\x14\xf6\x35\x07\x83\xc1\x20\x1f\x0c\xf2\xa3\xa3\x3c\x8a\xa2\x68\xe7\xa2\xde\x26\x94\xb1\x6a\xa5\xe5\xf2\x37\x80\x25\xd0\x49\x4f\x8a\x63\xf3\x45\x54\xe4\x81\x32\x46\xba\x7e\x33\xaa\x66\x32\x14\xcc\xe1\x7b\x11\x02\x2c\xef\x58\x38\x63\x70\xec\x4c\x40\xd0\x89\xf2\x98\x08\xdf\xcb\xd3\x46\x01\x01\x5d\x8d\x9f\x75\x28\x46\xc5\x74\x26\xa4\x9f\xb8\x22\x41\x52\x0c\xdf\xbd\x68\x27\x76\x0d\x09\x33\xf9\x0c\x9c\x48\xd5\xca\x53\xd4\x54\xc1\x1f\x77\xfb\x48\xfb\x9d\x42\x01\x52\xe5\x91\x57\xa9\x20\x7d\x81\x25\x09\xbc\xd9\xba\x97\xed\xc4\xf0\x00\x7d\x5c\x7d\xec\x75\x76\xed\xb4\xc9\x16\xfd\x70\xfb\x4a\x9d\x23\x43\x61\xa5\x5e\xc4\x88\x69\x62\x6d\x88\xce\x50\x4b\x85\xcc\x41\xaa\x75\xd8\x1c\x55\x71\xab\x72\x83\xef\xb6\x12\xdf\x96\xbf\x93\x25\xcb\x74\xcc\xed\x66\x49\xd6\x93\x48\x0b\xe5\xa8\xe5\xfc\x71\xd9\x58\xe8\x9d\x41\x20\x36\x28\x6b\x24\xd6\xc7\xac\xd6\x29\xed\xfb\xa1\xa1\x7b\x2d\x1a\x05\xa5\xf8\x52\x99\x4e\x9c\xe9\x85\x9b\xe7\x4f\x38\xe9\x48\x9e\x49\x2c\x49\x1f\xe9\xa5\x83\x02\x94\xc9\x50\x44\xa1\x42\x1d\xd1\xc8\x07\x79\x5b\xd5\xa5\xfa\x3a\x05\x04\xaf\x47\xe0\x54\xeb\x6e\xdd\x82\xac\xe5\x0a\x20\x6a\x53\x07\x75\xe2\x13\xfe\x8f\x3b\xb3\xa9\xc2\xf5\x5a\xea\xfb\xa6\x7d\x5b\xdf\x2a\x9d\xec\x43\x82\xec\x4f\xbf\x86\x63\x77\xa1\x1d\xf1\xaa\xfa\x9c\x56\xac\x58\x2b\xe5\x48\x50\xbf\x62\xe7\x6e\x5b\x9d\x4c\x83\xba\x04\xf0\x1d\x5c\x4e\xb1\x62\x07\xe6\x92\x54\x57\x70\x62\x9d\xf8\xa6\x23\x42\x85\xc3\xf9\x2b\x50\x87\xe9\xc8\x53\x63\xad\x26\x95\x9d\xbb\x22\x8f\x49\x9c\x29\xca\xdc\xb3\x70\x8c\x3a\x60\xd4\xa5\x85\x7e\x2a\xf9\x8c\xad\x36\xf5\x76\x98\xda\x77\xf0\xed\x80\x09\x18\x76\xac\x8e\xda\x30\x1d\xe5\x39\x8e\x59\x6d\x23\x5b\x28\xdf\x58\x0f\xad\x03\xe5\x37\x31\xae\xb6\xc4\xb6\xa2\xd9\x04\xcf\x7f\x48\x7b\xb7\xd9\x34\x82\x7a\x15\xf3\x35\x8f\x45\xa8\x5a\xb4\x66\xa4\x6a\xcb\x6e\x09\x5b\x62\x7e\x7b\xe6\x95\xb7\xa4\xb5\xa7\xde\x8d\xf7\x52\x75\x21\xf7\xf1\x52\x2f\x5e\x74\xe6\x95\x47\x24\xcf\xff\xf6\x96\x36\xa1\xbc\xbc\xc9\x0a\xa7\xc0\xa5\xad\x06\x31\x24\xd8\x08\x13\xaf\x65\x66\x7f\xf1\xf2\xc4\x78\xa0\x9b\xcd\x1f\xa9\xb5\x7a\x64\xfd\xef\x0c\x44\xc5\xc9\xf2\xfa\xc1\xb3\x61\x48\x8a\xb4\xb5\x71\xf1\x5a\xff\xb6\x3a\x38\x95\xea\xd6\x46\xe8\x8e\xcd\x81\xb1\x82\x77\x9a\x9a\xf1\x79\xcf\x2d\xb7\xb7\xf2\x16\x56\x3c\x7f\x41\x59\x00\x32\x89\x53\xf0\xd6\x59\x65\xe5\x56\x46\xdb\x96\xac\x94\xf9\x50\x6a\x42\x7d\x99\x2b\xd7\xd8\xca\x33\x47\x81\xa8\x24\x15\x9f\xec\xf6\x46\x70\x2e\x23\xcb\xc1\x21\x6f\x36\xb5\xe8\x82\xdd\x5f\x36\xc5\xdd\xb1\xdf\xb9\x91\x9c\xb9\x4c\x50\x7b\x7f\xce\xb1\xa8\x0c\x18\x09\x78\x5f\x0c\xb9\xe6\x78\x8f\x02\x51\xea\xc3\x20\x16\x75\x2c\x2a\x07\xac\xdc\xa6\x41\x5c\x07\x7c\x2d\x4f\x51\xd9\x5a\x52\xa9\xf2\xea\x75\xfe\xbd\xea\x21\xff\x77\x1b\x60\xaf\xf9\xda\x26\x40\x62\xa9\x11\x77\xbe\x77\x4b\x05\x4a\x37\xef\xef\xb7\xde\xbc\xa5\x72\x6e\x7f\x95\xab\x77\x97\x6c\xd5\xef\x7f\xe5\xfa\xdd\x90\x36\x59\xce\x66\xd5\x24\x7b\x37\x3f\x5c\xbf\x9a\xad\x7f\xfd\xd4\xbf\xa1\xd7\x60\xf8\x77\x74\x5d\x62\xed\x8d\xea\x9c\xee\xd7\x5c\xa7\x9f\x3f\x77\xfa\x1b\xee\xea\x1f\x82\xbd\xf1\xbe\xae\xaf\xa0\x3a\xa4\xdf\x03\x3f\x88\xc5\x1d\x80\x57\xdd\xd3\xd7\xe3\x03\xe5\xe1\xf0\x30\x82\x9a\xbe\xd4\xa4\xba\xa6\x6c\xa8\xec\xae\x18\x83\x22\x4e\x4b\xd7\x7e\xdd\x7c\x6e\xc4\x19\xaa\x85\x6b\x67\xec\x96\xd2\xa5\xc2\x35\xb3\xf1\x1d\x84\xa3\xda\xe9\x0d\x28\x87\xcd\xf6\x9d\xbb\x76\x7d\x17\x7b\xb7\x6d\x09\x86\xba\x0c\x85\xac\xbb\x6f\xdd\xe4\xad\xdd\x6e\x25\x00\xfe\x4d\xbb\x06\x19\xd7\x14\x60\x9f\x78\x75\xa6\x6b\x2f\xd8\xbb\xd6\xbf\x7e\xd8\xfe\x6f\x0e\x4e\xfd\xfd\xbf\xde\x9c\xba\x61\xaa\x45\x49\x6a\x7a\xc2\xe5\xda\x80\x6d\x44\x4b\x7e\xbc\x61\xd5\x9b\xf2\x7f\x71\xf4\x06\xb1\xd8\xdc\x44\xdb\x94\xba\x91\xb3\x69\x35\xe3\xe6\x7a\x20\xd7\x46\xad\x5c\xdd\xfa\x98\xdd\xad\x39\x9a\x85\x95\xbd\x19\xd4\x8c\x11\x5a\x80\x8a\x04\x07\xab\x95\x65\x77\xd6\xe3\x69\x98\x1e\x4a\xdc\x35\x68\xb3\xf5\x16\x51\xbd\x92\x2d\xa1\xff\xb8\xd7\xeb\x8b\x3e\x5a\xcc\x51\x80\xde\x0c\x50\x20\xfa\x28\x54\xdf\x87\x03\xb4\xa2\x91\x04\xc9\x37\x7a\xf3\x1d\xff\xe5\x58\x4e\xf3\x4c\xe6\x22\xca\xd3\x88\xec\x38\xd7\xe7\xeb\x5c\x45\x7e\xaf\xd7\x75\x26\xf1\x5a\x60\x08\xf8\x0a\xab\xc8\xee\x4e\xaf\x4b\xfa\x48\x4e\x51\x00\xd6\x81\xfb\x28\x93\x28\xd0\x9e\x03\x91\x88\x50\xb0\xa7\x3f\xd3\x08\x05\x2a\x17\x59\xad\x08\x4d\xb5\x4e\x83\x7b\x58\x81\x60\xfd\xab\x8e\x4e\xd6\x2e\x95\x8b\x17\xa2\x48\x5a\x20\x20\x23\x57\x06\xa4\xa2\xbe\x0b\x4c\x67\x72\x00\xcf\x8d\xa6\xdf\x2b\xc1\xec\x23\x7b\xc1\x9c\x7f\xba\xc6\xea\xfb\x43\x02\x4f\xd6\x73\x60\xe1\x8b\x15\xb4\x58\xba\x9d\x54\xec\x99\x19\x8b\x8e\x26\x09\x8c\x3b\x3a\xd3\x8e\x36\xbf\x36\x30\xc7\xeb\x6c\xd3\x9e\x88\x8a\xd5\x59\x4f\x18\xd1\xda\x9b\x05\x81\x33\xff\x51\xe0\xdf\x7e\xa1\xfb\xbf\x74\xbb\xdb\x7c\xa7\x77\x7f\xbf\xfb\xeb\x43\xcf\x0a\xbb\x9f\x47\x27\x6e\xf3\x1d\x95\xb9\xc8\xf3\xc5\xcf\xb3\x81\x36\x08\x33\x30\xee\xaf\x86\xe7\x83\x60\x5f\x04\xd6\xf6\x09\x8e\xf4\x37\x98\x2a\x30\xd1\x88\xd0\x37\xfa\x73\x8a\x08\x7d\xab\x3f\x23\x44\xe8\x5f\xfa\xf3\x0a\x11\xfa\xb7\xfe\x1c\x20\x42\x5f\xea\xcf\x3f\x11\xa1\xef\xf4\xe7\xb5\x6f\x09\xed\xc5\x1d\xda\x56\x91\x2c\x05\xd3\xc0\x43\x3e\x0a\x5e\x87\xaf\x75\x8b\x9f\x09\xf6\x42\x94\x14\x99\x54\x83\xdf\xeb\xd8\x22\xe2\xa3\xcd\xa6\x2d\x86\x10\xfa\x5c\x47\x68\x37\xfc\x84\xfe\xa1\x83\xe0\x7d\x9f\xd0\x3f\x4d\x6e\x63\x02\x8d\xfe\xa4\xc3\xda\xd1\x3e\xa1\xbf\x0b\x4f\xa6\x86\x7e\x12\xec\x26\xcb\x82\xfb\xf7\x69\x16\xdc\x7f\x40\xe7\xea\xdf\x34\xd8\xdd\xa5\x51\xb0\xbb\x4f\x07\x41\xaf\xe7\xf9\xcf\xd2\xfa\x48\xd6\xfe\x93\x7d\x7c\x29\x31\xa9\xb1\xcc\xf3\x1e\xdd\xda\x12\x94\xd3\x94\x40\x27\x65\x5a\xb3\xb4\x45\x5a\x0c\x1f\xe6\x8f\xbb\xa4\x8d\xf9\xa3\x2e\xc9\xf3\x96\xe7\x19\x38\x4d\x6f\x93\x71\xae\x51\x85\x2d\x69\x61\xea\xc7\x3a\xd5\x5e\x26\x1d\x1b\xce\x1b\x69\x10\x9f\xa5\x69\x91\xa8\x4d\xfe\x25\x5e\x6e\x6b\xf5\x8f\x1d\x62\x01\x96\x8e\x25\x3b\x34\x36\x8f\xc5\x3d\xb6\xdf\xa5\x5c\xfd\x3f\xd0\x96\xb0\x0e\x71\xb2\xd3\xdb\x25\x34\x64\xc9\x3d\xd6\xdb\xa5\x19\x4b\xe9\x98\x49\x3a\x63\x9c\x2e\x99\xe8\x8b\x8e\x4c\x9e\xc5\x5f\x79\x84\xf7\x7c\x1f\x61\x9d\x7e\xb7\xa5\x7d\x84\x05\x08\xd1\x05\x33\xab\xfa\xc4\x8a\xf4\x03\x36\xb6\xb0\x72\xdd\x6f\xba\x47\x5a\x72\x7b\xc2\x16\x8f\xba\x7d\xd4\x46\xaa\x54\xc4\x44\xa5\xcd\x5b\x4c\x45\x2d\x88\xcd\x31\x2d\x72\x40\x37\xab\xe9\xe7\x1e\x04\x7f\x8c\x2a\xf9\xec\xc1\x33\x69\xa1\x37\xa8\x85\xe3\x7e\xd4\x8a\x5b\xe8\x23\xd8\xe4\x6f\xe1\xb0\x1f\xb5\xc2\x16\x1a\x98\x60\xd6\x9f\xb6\xb2\x16\x3a\x32\xc1\x71\x9e\xcf\xf2\x7c\xd9\x47\xa7\x36\xa2\x7f\xde\x1a\xb7\xd0\x0b\x13\x9c\xf5\xcf\x5b\xb3\xa2\xf4\xb2\x7f\xde\x5a\xb6\xd0\x09\x04\x61\x21\x25\x69\xc9\xc6\xa1\x7b\xfd\x4b\x6f\xd1\x67\xd3\x5d\x32\xe9\x2b\x9a\xa4\x6a\x19\x6e\x10\xe0\x84\xfd\x59\x7e\x4a\x2d\x09\x6d\xbd\x12\x75\x23\xe4\x5b\x08\x77\x39\xf4\x52\xf2\x67\xc4\x2b\x6d\xac\xa1\x96\x75\x37\x54\x7a\x39\xa6\x50\x4b\x31\x89\x5e\xbc\x95\x40\x33\x85\x20\x60\x55\x5b\x4c\x2c\x7c\x3a\x0d\x18\x9b\xd5\xd5\xad\x25\x14\x20\x12\x3e\xad\x1c\x90\x1a\xa1\x28\xaa\x67\xf2\x3f\x15\x05\x8d\xdd\x23\x90\xd7\x69\xe7\x7c\xb7\x40\xdb\x94\x08\xef\x2a\x9f\xea\x44\x2d\xd5\x81\xc3\xd6\x47\x5e\x6d\x0c\xf3\x12\x5c\xd6\x77\xb3\x4a\x67\x5a\xd7\x4d\xcb\x00\xaa\x6f\x62\x54\xd8\x9c\xb2\x92\xba\x17\x53\x2d\x1b\xe8\x9e\x29\xcd\xcd\xf8\x6f\x81\x25\xa1\x56\xd9\xcd\xe8\xa0\x59\xa1\x88\x8a\x6e\x9b\x8d\xde\xd9\x3b\xf0\x54\xe3\x5c\x6c\x6f\x57\xbf\xdc\xd7\xd5\xee\x49\x37\x3e\xa9\xac\x8f\xa2\x76\xad\xcf\x66\xd7\xe5\xce\xc3\x56\x6a\x8d\x75\x14\x0a\x65\x36\xd5\xf6\xc7\x57\x13\x33\x69\xbb\xf7\xb7\x55\x32\x58\x0b\x29\xe9\x7b\xb9\x4b\xf8\x7e\x17\x72\xec\xf3\xfb\x65\xed\x2e\x93\xe1\x97\xfd\xfb\x5d\x9d\xa3\xc7\xf7\x2c\x88\x42\xb5\x30\x58\x57\x57\x80\xa6\x6c\x4b\xd2\x4a\x9d\x45\x11\x39\x4d\x93\x2b\x50\x44\x7a\x9a\xa6\x49\x8a\xd1\x3b\xf1\x45\x24\x57\xa2\xb1\x14\xb1\x6c\xa0\x96\xba\xcc\xf5\x32\xf1\xed\xf3\xb0\x0f\x42\x47\x9a\x63\x91\x1d\x09\x9b\x49\x6f\x84\xdf\x4c\xf8\x05\x6c\x80\x37\x26\x74\xa4\x36\xe5\x5b\x13\xd0\x62\xe1\x7f\xd9\x82\x7a\x57\xfc\x6d\x82\x7f\x5a\xe9\xfa\x97\x26\xe2\x23\xec\x8f\x77\x10\xfa\x8e\x76\x45\xf5\x9a\x2f\xa1\x64\x66\x08\x8a\x29\xf7\x27\xf9\x5e\x6f\x77\x7b\xf7\xc1\xaf\xbb\x7c\xbf\xb5\xd7\x7b\xb0\xb7\xcf\xf7\xb7\xaf\x4a\xab\x40\x5d\x28\x80\x2e\xa8\x66\x18\xf4\x6c\xed\xf4\x2a\x7c\x48\xd6\xec\x12\x1a\x7a\xeb\x8d\x66\xa5\x55\xae\xae\xa7\xb5\x83\x2f\x7e\xcc\xba\xcd\x66\x08\xff\xb3\xc7\xac\x9b\xe7\xf1\x23\x88\x81\xff\xd9\x23\x15\x83\xe3\x16\xd3\x1d\x3b\x11\x6a\xe1\x66\xa4\x15\xaa\x8b\xaf\x4b\x33\xd6\x25\x74\x5c\x3e\xd9\xe2\x7b\xea\xa2\x55\x97\x68\x0c\x1a\x2b\x74\xec\xce\x35\x70\x18\x50\x5c\xaa\x63\x77\xb0\x49\x95\x20\xd8\x21\x96\x26\x41\x9f\x6c\xe2\xde\xee\x7d\x1a\xb6\xe0\x3e\xde\xbd\xaf\x2e\xeb\x43\xfc\x6f\x81\x43\x42\x68\xd6\x62\x09\x0d\xdb\x4c\xb7\x28\x01\x9d\xdc\x43\x0c\x23\x48\x33\xb8\x90\xc7\x5a\x3a\x3e\x54\xd5\xe8\xd9\xcf\xe8\xd8\x1c\x84\x69\x71\xfc\x6d\x32\x67\xf4\x87\x93\xe6\x4c\xd2\x4d\x06\x1b\xf4\x21\x44\x6b\x96\xc5\x90\xb7\x50\x86\x46\xb8\x98\xce\xd2\x18\x3d\x83\x85\x66\x43\xef\x85\xce\xa0\xc7\xe2\x23\x84\xf4\x00\x3c\x87\x6f\xe8\xc7\x1f\xf0\x59\x51\xad\x70\x2d\x39\x74\x22\xd8\x19\x26\x3b\x0f\x75\xab\x4d\xb7\xff\x84\x92\xba\xe3\x3f\x69\xe0\xc6\xba\xc5\x1d\x8f\xe6\xbb\x60\x5e\x35\xda\x1d\xb4\x6a\xe4\xc0\x4a\xa9\xfc\x01\xc2\x97\xe1\x79\x06\xa6\xaf\x7e\x17\x58\xed\x40\xc0\xde\x09\x8d\x8b\x30\x88\xab\x86\x45\x78\xaa\xc2\x59\x11\x8e\x54\x78\x5c\x84\x07\x2a\x3c\x2b\xc2\xd7\x2a\xbc\x64\xc9\x23\xf6\x49\x74\xb2\xac\xd9\x04\x13\x79\xc9\x28\xcf\x93\x47\x2a\x06\x22\x4c\x4c\xfc\x88\xf5\x54\x78\x8e\x20\xf0\x49\x74\xe6\x10\x9c\x23\x1a\x8f\xf2\x3c\x34\xc9\x53\x04\x81\x4f\xa2\x33\x85\xe0\x14\xd1\x70\x94\xe7\x99\x49\x8e\x10\x04\x3e\x89\x4e\x04\xc1\x08\xd1\x6c\x94\xe7\x63\x93\x3c\x40\x10\xf8\x24\x3a\x03\x08\x0e\x10\x1d\x8f\xf2\x7c\x66\x92\xaf\x55\xf2\x10\x5d\x5f\x23\x3a\x73\xb2\x15\xcb\xe1\xee\x88\x49\xba\x1c\xee\x8d\x58\x8b\x3f\xee\xd2\xe5\xf0\xfe\x88\x09\xca\x53\xdf\x21\xcf\x92\xac\x8c\xfc\x32\xf7\x04\xb8\xb8\x16\x67\xf2\xa4\x3d\x30\x9c\x47\x54\x10\x42\xa5\x6f\x49\x46\xe8\x05\xe3\xeb\x84\xa6\xa9\x8e\xa9\x04\x41\xb5\x4e\x07\x0a\x2b\x01\x2e\x60\xad\x04\x68\x58\x99\x2d\x7c\x8c\x91\x17\x5c\xb7\x67\xec\x59\x1a\x2f\xe9\xe3\x59\xca\xb9\x81\x45\x22\xe3\x31\x07\x73\xc6\xe3\x70\x11\xcb\x70\x96\x11\x44\xd3\x94\x40\xdd\xc6\x72\xc1\x3b\x8c\xfe\x32\x96\xdb\x96\x22\xfe\xaa\x8d\xb9\x7d\x35\x31\xe6\x54\x37\x3e\x49\xbe\x16\xe6\x50\xff\x32\x0e\xd1\xfb\x9f\xa3\x16\x78\x84\xb8\xe9\xd1\xbd\x15\xe9\xef\x68\x3b\x98\x7f\xa1\x7a\x7b\x92\x85\xdf\xaa\x1e\xdf\xdb\xf6\xcd\xd2\x83\xd3\x5d\x63\x58\x53\x55\xf4\x9d\xe2\x57\x0a\x8f\xd1\x0e\xae\x8c\x53\x2f\x86\x76\x3b\xbb\xf7\x3b\x5d\x44\x25\x7b\x22\x69\xda\x99\x08\xf6\x4d\x50\x38\x22\x6a\xf6\xfe\x91\xc4\xc8\x1a\x7d\x40\x74\x38\xd2\x02\x50\x9a\xdf\xe5\x3c\x35\x51\xd5\x26\x05\x22\xac\xd3\x39\xd4\x20\xc0\x06\xc5\x77\x21\x08\xdf\xce\x4d\x01\x21\x94\x5c\x25\xf5\xed\x07\x26\x41\xcb\xf6\x51\x15\x03\x81\x78\xf5\x5b\xd2\x7a\x2c\xce\xd2\x27\xda\xdd\x03\xd7\xad\xbc\x45\xa4\xc6\xc8\x20\x3a\x8a\x57\xe5\x8f\x33\x10\xe2\x1a\x53\xb7\x2a\x23\x35\x6e\xd6\x26\xfa\x39\x4d\x3b\x91\xb1\x7b\xcd\xfe\x80\x94\x4c\xfb\xb0\x63\xd7\x34\xad\x7f\x62\xf4\x98\x60\x4e\xca\x10\xd9\x9c\xba\xd6\x5a\x09\x7a\xd7\x9d\x7a\x87\x59\x45\x21\x0c\x30\xbc\x7d\x73\xae\x1b\x76\x64\x1b\xfa\x56\xba\x91\xb8\x45\x14\xa7\x3c\x1c\x90\x51\xb7\xae\xfe\xd1\xf1\x3b\x1d\x1b\xc4\x42\x97\x8e\xf8\x24\x16\xfc\x95\x1e\xcc\xa9\x74\xca\x12\x26\x66\xcd\x74\x87\x95\xf7\x2c\xbc\x91\xb0\xb1\x34\x32\xfe\x38\x65\x13\x6b\x4c\x3d\x61\xa9\x15\xe2\x52\xf4\xf5\x53\x9c\x50\x49\x28\x16\xb0\x1f\x4e\xb0\x24\x30\x42\x5c\x48\x53\xd1\x0c\xa4\x0a\x67\x5a\x16\x90\x46\x85\x1b\x58\x0d\x1a\x12\xd4\x31\x57\x84\x4a\xe5\xfb\xba\xe4\x7a\x42\x50\x2a\x6f\x5c\x6c\x42\xc8\x1d\x9f\x10\x2a\xe6\xa8\xee\xda\x3d\xc5\x33\x59\x1a\xec\xf5\x89\xba\x75\xb8\xbd\xe9\x12\xea\x24\x9e\xc5\xdf\xf8\x3b\x11\xcb\x8c\x7d\xa1\x69\x89\xd3\xf2\x56\x51\x0d\x55\x5d\x7d\x03\xd7\x33\xc4\xfe\xbb\x08\x90\xcd\xe1\x0b\xc2\x36\x9b\xf8\x77\xc1\x38\x68\x52\x54\x20\x9f\x4e\x53\x9e\x4d\x93\xd9\x06\x2a\x50\x03\xdf\x62\xec\x93\xd0\x43\xed\x6a\x93\x7d\x88\x0a\x30\xfc\x30\x49\x51\x06\x84\x57\xb3\x89\xe1\xc2\x65\xb2\xdd\x23\xaa\x46\xa8\xb2\x6c\xc3\xb2\xde\x1c\x26\xd8\x8c\xc4\x92\x6a\xde\x16\x68\x97\x58\xba\xea\x51\x7b\xbf\x5f\x98\xbb\x0c\xc4\xa3\x76\xaf\x8f\x66\x61\x26\xb5\xc5\x0e\xf1\xa8\xab\x83\x47\x8a\x3c\x12\x8f\x7a\x3a\xb3\x09\xed\xf6\x91\xf1\x12\xa9\x42\x0f\x75\x48\x17\x2c\x60\xc2\x8e\xb6\xdc\x06\x7d\xde\xbe\x38\x1d\xbc\x7a\x70\xf6\x6c\x70\xca\x6e\x8e\x0e\x4f\x9f\x9e\xbe\x1c\x3c\x3d\x7b\x75\xfc\xe4\xf0\x55\xb0\x66\xc3\x1f\xd1\x72\x8e\xb3\x93\xa7\x4f\x8e\x5f\x1f\x9d\xac\xe7\x0c\x14\xce\x51\xc9\x3c\xa8\xcf\x07\x6a\xed\x90\xd7\x4f\x46\x54\x95\x0c\x90\xa9\x17\xc0\xb8\xda\x8a\x2a\x20\x7e\xe0\x45\x69\x68\x1f\x9e\x3e\xfd\x23\x00\x83\xdc\xed\xe1\x87\xd1\x87\x0f\x88\x0e\x8e\x5f\x9f\xbe\x70\x15\xa8\x71\x58\x61\xb2\x22\xbe\xfd\x50\xbc\xf7\x2b\x81\x6b\x8a\x56\x97\x36\x52\x97\xb6\x56\xed\x46\xc6\x7d\x96\xc0\x7b\xe0\xc2\x03\x3f\x50\xe8\x9c\xc0\xbd\x5f\x14\x1a\x27\x70\x57\x61\x6f\xa2\xa3\xf0\x77\x3a\x56\xf1\x0a\x5b\x53\xe1\xb1\x42\xd3\x04\xbe\x4f\xe8\x02\xc2\x4b\x42\x27\x0a\x4a\x8f\xd0\x88\x09\xbc\x4b\xe8\xd4\x38\x3f\xc5\x71\x27\x24\xf8\x66\x45\x27\x9d\xd3\x34\x14\x59\xac\x9a\xa2\x66\x6d\x71\x7a\xbd\xe0\x19\xbd\x19\x4f\xe3\x59\x94\x72\x11\xcc\x3a\x61\x07\x9c\x50\xa9\x04\x3c\x54\xc1\x30\x4d\xc3\xeb\xe3\x09\x56\xdf\x22\x89\xd4\xf5\x6f\xbe\x46\x84\xca\xf0\x22\x88\x3a\x7f\xd3\xf3\x30\xe3\x4f\x66\x61\x96\x01\x04\xad\x06\x51\x44\x1e\x8e\xd5\xae\xf1\x93\xc6\x2a\xfa\x75\x38\x2f\x47\x66\xd9\x20\x89\x96\x33\x1d\xa9\x8d\x1a\xd1\x58\x08\x9e\xbe\xe5\x93\xba\xa6\x99\x2c\x1e\x08\xf5\xa9\xc6\x7a\x44\x56\x84\x9e\xdf\xda\x7d\x43\x6b\xbf\x49\x93\x45\x46\x6f\x54\x47\x50\x14\x5f\x22\xaf\x2b\x68\x12\x46\x1c\xad\x75\x03\x65\xd3\xe4\x0a\x51\x19\xcf\x79\xb2\x94\x41\xd4\xe1\x9d\x67\x61\xc4\x69\xb8\x58\xf0\x30\x0d\xb6\xba\x94\x0b\xc9\xf5\xc7\xd7\x58\xaa\xdf\x58\x80\xfb\xeb\x82\xb3\x3b\xf7\x1d\x2d\xcb\xf0\x02\x7c\x6e\xbb\x8a\x68\xec\x87\x74\xb5\x34\x04\xd7\x20\x66\xd8\xe8\x58\x85\xec\x78\xd1\x99\x0a\x99\x39\xa4\x4b\xc6\x3b\x76\xd4\x8a\x25\x90\xa8\x31\xe0\x74\x88\x64\x78\x81\x28\x72\xd0\xfd\x6f\x5d\x13\xa2\xc8\xd5\xa3\xbe\x6d\x2d\xea\xdb\xd4\x81\x28\xb2\x35\xa0\x91\x37\xd0\x51\x27\x26\x78\x4a\xa3\xce\x98\xd0\x79\x11\x39\xb5\x91\xf6\x5c\xca\x3a\xa1\xf1\x1e\xfb\x74\xc6\x41\x37\xc7\x9f\x1a\x7a\x5e\x16\x51\xd7\xaf\x3a\x08\x46\x95\x6b\xeb\x4c\x74\x52\x40\xbf\x20\x78\x81\x09\x0e\xa9\xa0\x49\xb3\x19\x13\x7a\x5b\x3d\x92\x9a\x72\x29\xac\x89\x62\x1d\x4e\x56\x74\x4e\x6f\x52\x3e\x09\x96\x2b\x42\x67\xe0\x9e\x6f\x5e\xec\x11\x36\xa5\xf3\xd2\x92\x61\xe7\x54\x76\x42\x36\x5f\x51\x5a\x3e\x94\x0b\xee\x3d\xf6\xa4\xeb\xf9\xd7\x45\x92\xca\x8c\x09\xeb\x8f\x38\xcc\xb2\xf8\x42\xe4\xb9\xdf\x51\xe7\x2f\x92\xf5\x0e\xe4\x23\x87\xfd\x58\x7b\x59\xb2\xd5\xb2\x67\xbe\x4b\x1b\xca\xc2\x98\x57\xda\x88\x45\x43\x10\x53\x41\x61\xda\xa5\xec\xc6\x58\x1f\x50\x82\x82\x5f\x70\x2d\xa0\x31\x4c\x47\x4e\x53\x90\xaf\xa8\x30\x38\x18\x1c\x62\x05\x0e\xb6\xf2\x7a\xf1\x9d\x13\x6d\xab\x78\x0d\xd1\x8f\x13\x68\x29\x34\x6a\x14\x79\xca\x51\x67\x67\x6f\x9f\x1e\x3e\x39\x3d\x3b\x7a\xfa\xfe\xf4\xf8\xf8\xd5\xc9\xd9\xf3\x57\xc7\xbf\x1d\xbe\x3a\x7b\x71\x7c\xfc\xc7\xd9\x59\xb3\x59\x77\x25\xdf\x5e\xa6\x33\x9e\xf2\xf1\x97\xa3\x27\x4f\xc9\x4d\xf7\x40\xa6\xd7\x37\x77\xcc\xae\xd0\xa3\x31\x18\xe7\x97\xe4\x66\x9c\x88\x2c\x99\xf1\x0e\x07\xd6\x9b\x24\xab\xd5\x0a\xec\x11\xb8\xce\xe3\x5e\x77\xf7\x6e\x67\x7a\x86\x05\xee\xf5\x7a\x44\x1d\xec\xfa\x7b\x1f\x88\x75\xf5\xbd\xbf\x07\x74\x3a\x7c\xf6\x7c\x47\x2f\x59\xd9\x55\x37\xef\x9c\x9d\x71\xb3\x05\xfb\x3c\xb8\xb1\x3c\x42\xbe\xf2\x26\xe4\xa6\xd8\x3d\x41\x68\xd7\x29\x2d\x22\x9f\xa7\xc9\x72\x11\xc4\x2e\xe5\xad\x7e\x59\xf1\x4a\x25\x2e\xed\xc9\xc9\x89\x17\xef\x4c\xae\xae\xbe\xd3\xe3\xe2\x41\xaa\xfc\x60\xe0\xdc\x38\x6b\x86\xd0\x11\x4f\xe3\x4b\x1e\x9d\x48\xe3\x3a\x1a\x36\x93\x66\xc3\x2c\xe0\x28\x86\xcf\x4c\x25\x5b\x65\x57\x85\x1b\x39\x7c\xca\x29\xea\x72\x09\x30\x4a\x6f\xaa\x89\x1a\xba\x72\xb2\x6b\x73\x59\x4d\xe3\x4e\xad\xf2\xb9\x02\xa6\x29\xc2\x6b\x8a\xe8\x0b\x6d\xfa\xa6\x73\x1e\x0b\x67\xa6\xcf\x35\x26\x36\xc6\xd8\xd3\x6b\xbf\x62\xdd\x49\xc3\xaa\x87\x6e\x1e\x14\xf1\x56\x41\x03\xe2\x99\x15\x23\x3c\x4b\x79\x38\x96\x2f\xd5\xf1\x27\xc2\xd9\x89\x08\x17\xd9\x34\x91\xcf\x66\xe1\x05\xdb\xea\xde\x9a\x47\xd7\x72\xc1\xa5\x8d\xd0\xe4\xee\x3b\xa0\x49\xe0\x0c\x58\x4d\x62\x11\xce\x66\xd7\x37\x5e\x23\x84\xdf\x88\xd4\x73\x0c\x16\xfa\xb7\x56\xf1\xc4\x04\x2c\xb0\x3c\xdf\x92\x9d\x38\x7b\xab\x9a\xf1\x24\x99\x2f\x12\xc1\x85\x24\x6b\x8c\xec\x27\xa1\x68\x24\x62\x76\xdd\x58\x24\xb3\xeb\x49\x3c\x9b\x35\xe0\x08\x6e\x8c\x6d\x91\x0c\xc1\x63\x5e\xb1\xf7\x3d\x65\xca\x8d\x33\xe5\x9f\x15\x45\x7e\xb9\xa9\xe7\x96\x43\xc7\x8d\xed\x25\x4d\x6c\xea\x1f\xad\xb1\x5e\x6e\x82\xa7\x9b\xdd\x71\x0d\xfd\x10\xcf\x66\x83\x64\x29\x64\x5f\x30\xb4\x1e\x8b\x6a\x29\x0a\xd9\x79\xf7\xfa\xe4\xf0\xd9\xd3\xb3\xf5\x02\xc0\x75\x42\x1b\x93\x11\xa1\x77\x68\xd0\x5b\x3e\xe6\xf1\x25\x87\x41\xe9\x87\x95\x76\xf9\x89\x3f\xd2\x3c\xbf\x5c\xb3\x89\xc3\xfa\x56\x96\xa0\xdf\xa9\xb1\x7a\x32\xfa\x59\xa5\x99\x3a\xfa\x47\x1a\xa8\x4b\x34\x9b\x38\xab\x6f\x9a\x81\x48\xa8\xdd\xc4\xd6\xe9\x32\x0b\xdd\x57\xa6\x57\xf6\x18\xc8\xa9\x6c\x31\x0b\xaf\x15\x5a\x90\xe7\xbc\x23\x14\xbe\x35\x63\xb5\x04\xe2\xc6\x15\xd9\x47\x1b\x4f\x15\x82\x02\xb4\x69\x4b\x12\x74\xa0\xb7\x8c\x7b\xf7\xc9\xc2\x09\x6f\xcc\xf8\x45\x38\xbe\x6e\xcc\xe2\x09\x1f\x5f\x8f\x67\x3c\xd3\xde\xe8\x45\x22\x1b\xe7\xbc\xa1\x2e\x74\x1e\x81\x32\x6f\xb1\x8d\x1a\xcb\x2c\x16\x17\xb0\xf5\x5c\x64\xe3\xf0\xcd\xcb\xac\xf3\x59\x7c\x16\xa8\x35\x6e\xa1\xc6\x32\xe3\x59\x03\xb5\x66\x2d\xd4\x38\x5f\xca\x46\x38\xcb\x92\xc6\x38\x11\x32\x8c\x45\x06\x4c\xc3\x49\x32\x9b\x25\x57\x0a\xce\x5a\x0b\x02\xd4\xc2\x76\x38\xfb\xe8\xb3\x68\x34\x50\x4b\xe8\x47\x69\x3b\xb6\x36\x3a\x2c\x45\x67\x36\x3a\x83\x68\xa4\x9a\x73\x3a\xe5\x8d\xf0\x3c\xb9\xe4\x7e\x17\xb3\x69\xb2\x9c\x45\x9e\xcb\xfd\x4e\xe3\x15\x0f\x53\xa1\x35\x96\xc3\xf3\x64\x29\x81\xc7\xde\x30\xba\xcd\x8d\x29\x4f\x79\xf0\x59\x4c\xa5\x5c\x64\xc1\xce\xce\xe4\xbc\x33\xe7\x3b\x70\x2e\xb6\xc3\xec\x5a\x8c\xdb\x6e\x20\xda\xae\x9a\xf6\x34\x49\xbe\x64\x88\xac\x36\x6c\xf8\xdb\xce\x1c\x5c\x77\x1a\xb0\x94\xde\xb2\x27\x59\xb2\x69\x67\x6c\x3a\xaa\x6e\x36\x1c\x86\x5e\x25\x47\x71\x64\x32\xd7\x1d\xb7\x6a\x91\xb8\xc3\x76\xe3\xba\xab\xae\x1e\x39\x0d\x65\x23\x4a\x60\x89\x69\xcc\xad\xb1\x5e\x1f\x26\x8d\x44\xc0\x42\x71\x97\x01\x22\x07\xb5\xbb\x9c\xc5\x70\xd6\x2e\x59\x5d\xbb\x0f\xea\x22\x6f\xd5\xd5\xdd\x7c\x25\xf6\x6f\xcb\x10\x88\x83\x65\x45\x0c\x3e\x25\xab\x02\xf5\x15\x1d\x85\xf0\x51\xd1\x89\xb0\xa4\xc8\x8e\x1a\xaa\xf3\x05\x13\x6a\xde\xf3\xd9\x59\xb6\x5c\x2c\x52\x9e\x65\x47\x86\x33\x1f\x27\xe2\x83\x5e\x90\xea\x76\x4e\xbe\x9b\x23\xfe\x5e\x8e\x55\x85\xc0\x28\xb0\xbe\x6a\x7c\xc1\x87\x31\x34\x80\xa6\x7d\xb0\x47\x0c\x28\x44\xb6\xa0\x0c\x3c\x2c\x88\x71\xaa\x30\x4d\x48\x3b\x3b\x63\x3f\x82\xee\xf9\xcc\x4c\xc6\xec\xed\x6a\xdc\x4b\x6b\xa6\x66\x2d\xe3\x73\x43\xde\x9b\x15\x8d\x6d\x07\xbe\xf0\x6b\x85\x0e\x7b\xba\xee\xb1\x6f\x3d\x58\xb0\x78\x98\x8e\xa8\xec\xc4\x22\xe2\x5f\x8f\x27\x58\x10\x78\x8c\xc5\xc9\x50\x8c\xb4\x62\x6c\xa1\xfe\xae\xd1\xb9\x78\x82\x0d\xec\x0b\x2e\x3d\xb2\xe8\xe4\x7a\x7e\x9e\xcc\x32\xeb\xb1\xef\xb6\x3c\xff\xa0\x41\x6b\x34\xd9\xc2\x80\x7c\x99\x3d\x15\xcb\x39\x4f\xc3\xf3\x99\x79\x39\xe0\x54\x00\xc7\xd7\xf5\x60\xe5\x7a\x60\xd6\x65\x58\xbb\x20\xd3\xd5\x77\x19\x4d\xf5\x2b\xc7\xbe\x8b\xd3\x90\x66\xfa\x3d\xd3\x60\x79\xe3\x92\xad\x64\x49\xc6\xcc\x3b\x59\x06\xb1\x88\x27\x31\x8f\x1a\xfc\xeb\x98\x2f\x34\xf6\x3d\x1e\x2f\xd3\x94\x47\x07\xfa\x49\x6a\xca\x1b\x22\x11\xed\xb9\xcd\x18\xf1\xcb\x06\x17\x97\x71\x9a\x08\x45\x50\xc2\x89\x03\x97\xcc\x72\x36\x6b\x00\xb1\xd5\x98\xf3\x2c\x0b\x2f\x78\x23\x14\x51\x23\x8c\x22\xa0\x40\xc2\x59\x63\xca\x67\x8b\xc9\x72\x66\x0f\xfa\xac\x83\xb4\xfd\x1c\x68\xe5\x8c\x0d\xbd\x0e\x8c\xe8\x92\x75\x0f\xb0\xdf\x54\x59\xd2\xae\xbe\xa8\x1b\xbb\xd9\x70\xd9\x6a\x8d\x56\x84\x10\x02\xd7\x3d\x43\x2f\xc5\x65\x98\xc6\xa1\x90\x8d\xf7\x71\x32\xd3\x86\x31\x56\xfa\x78\x1d\x77\x26\x69\x38\xe7\xd9\x69\xf2\x26\x59\xb0\x1e\x1d\xaf\xbe\xb7\x57\xfc\xa7\xac\xd4\xe3\x10\x24\x9e\x78\x5f\x52\x8b\x60\xe8\x15\xd7\x6c\xa2\x0c\x3e\xd6\x52\x3a\xb1\xe4\x69\x28\x93\xb4\x5f\x27\xf1\x6d\xae\xb0\x55\x50\xf7\x08\x5f\x4f\x5f\xdb\x0a\xcb\x67\x03\x63\x2e\x7e\xcb\x7e\x17\x8b\xb9\x6f\x5b\x17\xb8\x1a\x49\x89\x2c\x33\x94\x50\x61\x93\xbc\x7b\x20\x1e\x49\xbb\x6f\x84\x65\x6b\xa4\x4c\x82\x4e\x7e\x87\xbb\x2d\xc1\xfc\x40\x9e\x6f\xf5\x68\xda\x71\xfe\x58\x55\xfa\x96\x7d\xa3\x44\xb1\x68\xa4\xe0\x1a\xfb\x2a\x8d\xa5\x49\x23\x86\xdb\x63\xde\x65\xec\x3e\x56\xd3\xa0\x8e\x16\x38\xfc\x7d\xea\xa6\xf4\xee\x20\x41\xc5\xbe\xbf\x09\x82\xa4\x37\x50\x71\x20\x68\xd1\xc4\x60\xab\x4b\xfd\xf6\xa9\xb0\x6d\x0f\xb0\x00\x03\x3e\x94\xf0\x10\xbd\x2a\xd3\xfb\x77\x67\xfd\x68\x34\xca\x67\x00\xf5\xfd\x40\x70\xb3\xa2\x69\xe9\xf8\x14\xe4\xa0\x6e\xa6\x6f\x3b\xe1\xd4\x38\x32\x18\xe9\x71\x28\x6f\x3d\x2f\xb1\x20\x9d\x49\x3c\x93\x3c\xc5\x75\x66\x25\x6a\x8b\x1e\xf1\x6c\x9c\xc6\x0b\x99\xa4\x58\x50\x4e\xbc\x19\x86\x1d\x48\xd3\xce\x24\x49\x9f\x86\xe3\x29\x2e\x51\xef\x66\x7e\x86\x12\x9c\x27\x16\x97\xb6\x1b\xc8\x71\xbd\xaf\x6f\x8d\x43\x81\x89\x98\x4e\x9c\x69\x53\x31\x85\x66\x0e\x5f\x61\x4e\x7c\x36\x5c\xf1\xb0\x32\x1c\xd1\x14\xee\x70\xb6\xd5\xa3\xb1\x31\x6e\x02\x6c\x25\x3b\x5b\x21\xcd\x18\x1f\x56\xb6\xe2\x08\x93\x83\x2d\x9c\x32\x1c\xb2\xac\x23\xf8\x57\x89\x09\xe9\x44\x89\x00\xb3\x2f\x42\x5b\xda\x0f\xb5\xb8\x14\xa1\x8a\x70\xb6\x06\xf1\x15\x72\x47\x0e\x54\x95\xe4\xc0\xb0\xa3\xc6\xe4\x26\x01\x24\x81\x8d\x0b\x4a\x3d\xbd\xbe\x49\x35\xdd\xc2\x58\xd6\xd1\xfd\xc8\x73\xfb\x85\x0b\x9a\x3e\x9e\xe0\xc4\xe0\x84\xb1\xc3\x72\xc4\xca\xb8\x3d\xf0\x8e\xc1\x02\x6f\x3c\xbd\x5e\x70\x73\xc2\xbf\xd4\xcf\xc0\x8d\x50\x4a\x3e\x5f\xc8\x86\x4c\x1a\x11\xd7\x47\xc2\x32\xd5\x67\x3b\x74\xf9\xdc\x08\xff\x87\x62\xcc\x11\x59\xf9\x82\xf1\xb3\x3a\xf1\xef\x0d\xf3\xe1\x6d\x81\x2e\xd5\x0f\x9b\x26\xcd\x0c\x0f\x39\x90\x8f\xb8\xbf\x21\xd4\x52\x60\x6a\x3f\x39\x1e\xcd\xaa\x3a\x99\x50\x55\x65\x7e\xd4\xb6\x36\x4c\x60\x95\x19\x0d\xf5\x33\x42\xe3\xd0\xee\xa2\x91\xda\x25\x6b\x37\xb6\x95\xe9\x30\xb7\xb4\x5b\x40\xba\x23\xe0\x82\x87\x93\x4a\xfd\x77\x1f\xd9\x6c\x91\xf2\x30\xba\x6d\x50\xcd\xe5\x7f\x5e\x7b\xf9\xbf\x03\x97\xa4\x26\xcb\xb8\x36\xcb\x5b\x3f\x4b\x3d\x0a\xf1\xb7\x9f\x25\xaa\xcd\xf2\x52\x5a\x63\x49\x4b\xff\x61\x77\x45\x17\x0a\x6f\x9b\xa8\x7f\x91\x66\xa4\x4c\xd9\xcd\x3c\x4c\xbf\x04\x4b\x3a\xe7\x61\xb6\x4c\x79\xb0\x5c\xc1\xe6\xa9\xe5\x05\x5f\xc5\x22\x4a\xae\x9a\x4d\xbc\x60\xfa\x93\xd0\xda\x7c\x51\x32\x86\x49\x6a\x36\xf1\x84\xd9\xc0\x86\xbc\x83\xa5\x84\x8b\xfb\xf8\x3c\xe3\xe9\x25\x57\xb7\x43\xc4\xaa\x91\x1b\xca\x2e\x78\x0a\x42\x3e\x62\xcc\x9b\x4d\x3c\x65\x5e\xd8\xb2\x8a\xdf\x4b\x72\x03\x22\xd7\xe7\x0c\x2f\x3a\x22\xbc\x8c\x2f\xd4\xf2\xca\xf3\x9b\x15\xe9\x2c\x33\x9e\x1e\x5e\x70\x21\xe9\x9c\x39\x14\xea\xbc\x8f\x50\x70\x4e\x07\x6c\x41\x2f\xd8\x84\x5e\xb2\x88\x5e\xb3\x29\x3d\x64\x78\xd0\xb1\x7d\xa1\x5b\x5b\x17\x2e\x60\x5e\x2d\x9a\x4d\x15\x39\xe5\x61\x54\x7f\x69\x5f\x74\xc2\x28\x7a\x7a\xc9\x85\x7c\x15\x67\x92\x0b\xd5\xd5\xfa\x7c\xa5\xc7\x10\x42\xaf\xd8\x7f\xe6\x0e\x55\x45\x83\x93\x97\x4f\x11\xc9\x73\x3f\xee\x34\x8d\x23\x2e\xe4\x0e\x22\xf4\x1b\xeb\xed\xd3\x33\x86\x26\x21\xa2\xc7\x0c\x65\x97\x17\xed\x58\xcc\x62\xc1\xdb\x6d\x15\x75\xca\x50\x14\xca\xb0\x3d\x09\xdb\xf1\x6e\x76\x79\x81\xe8\xd7\x22\x66\x91\xf1\x65\x94\xb4\xb9\xae\x18\xd1\xd7\x9b\x92\xda\x0b\x0e\x0f\xf6\x88\xbe\x32\x59\x16\x29\x9f\xc4\x5f\x11\x7d\x6a\xc2\xf1\x38\x11\x88\x9e\x30\x34\x49\x84\x0c\xaf\x78\x96\xcc\xb9\xad\xf1\xdf\x0c\x01\xa5\x8f\xe8\x13\x36\x44\x2f\x4e\x07\xaf\x10\x45\x2f\x9e\x1e\x1e\x21\x8a\x4e\x4e\x3f\xbe\x7a\xaa\x7e\x9f\xbc\x7d\xf9\xe6\x14\x8d\x68\x49\x93\x1e\x0e\x55\xa3\xd8\xed\xcd\xaf\x89\xea\xc1\x13\xc0\x07\x76\x33\x09\xb3\x00\x65\xc9\x2c\x8e\x10\x9d\x84\x69\x80\x52\x7e\xb1\x9c\x85\xa9\x0a\xcd\x02\x34\x8b\x2f\xa6\x52\x7d\x47\x01\x8a\x96\x89\x04\x33\xef\x93\xf0\x3c\x40\xe7\x69\x08\x1e\x34\x27\xa1\x2d\xbf\xa2\x47\xec\x06\x3e\x03\x34\x09\x33\x44\x0d\x28\x15\x4a\x11\x05\x50\xea\x7b\x86\xa8\x01\x05\x0f\x92\x88\x6a\x50\x2a\x70\x8e\x56\xf4\x37\x35\x21\xed\x59\x78\xcd\xd3\xac\x2d\xf9\x57\x89\xe8\x1b\xb6\xf3\x2c\x11\xb2\x71\xa8\x07\xa7\xf1\xa0\x81\x4f\x54\x3d\xf9\x5b\x5d\x43\xfe\x4a\xc1\xce\x8f\x34\xd4\xfc\x37\x80\x97\x3f\x4b\x39\xcf\xdf\xa4\x09\xd9\xa1\x6f\xd9\xcd\xaf\xdd\xae\x69\xd6\x7d\xfd\x95\x22\xaa\x65\x2d\x4c\x60\x4f\x47\xcf\xd0\x8a\xfe\xc5\x86\x3d\xba\x4b\xf7\xe8\x7d\xfa\x80\xee\xd3\x87\xf4\x17\xfa\x2b\xed\x75\x47\xf4\x6f\xf6\x97\xc5\x21\x86\xbd\x1e\xed\xed\xd2\xde\x1e\xed\xdd\xa7\xbd\x07\xb4\xb7\x4f\x7b\x0f\x69\xef\x17\xda\xfb\x95\xee\x76\x47\x84\xbe\x64\x43\xfd\xec\xa8\x3d\x40\x17\xf3\xee\xcf\xba\x5b\x34\x32\x0d\x45\xa6\x36\xa4\x17\x37\x0f\xb3\x2f\x68\x44\xdf\xb1\x9b\xe7\x6f\x8f\xdf\xbd\x09\xd0\x45\x9a\x2c\x17\x88\x9e\x7c\x38\x7c\x73\x76\xfc\xe6\xf0\xc9\xcb\xd3\x8f\x01\xca\xae\xc2\x45\x3b\x59\x84\xe3\x58\x5e\x23\xfa\xe6\xed\xcb\xc1\xe1\xdb\x8f\x01\x5a\xa4\xf1\x3c\x4c\xaf\x11\xd5\x22\x01\x10\xa7\x05\x4d\x55\xec\x8a\xbe\x60\x43\xf4\x15\x5c\x05\xab\x2a\x67\x17\x88\xa2\xc9\x15\xa2\x68\x39\x53\xc1\x18\x51\x74\x9e\xa4\x11\xf8\xc6\x5e\x2c\x67\xb3\xf6\x8c\x4f\xa4\xfd\x4e\xf5\xaa\x40\xd9\x22\x16\x3a\x2e\xe3\x88\xa2\x34\x91\xa1\xe4\xed\x5f\xbb\xc5\x77\xef\x17\x2f\xb0\xfb\x50\x05\x26\xb3\x78\xd1\x9e\x26\x69\xfc\x4d\x2d\xf7\x99\x8d\xb9\xe4\xa9\x8c\xc7\x45\xf8\x3c\x91\x53\x55\x85\x0c\xc7\x5f\xec\x6f\xbb\xf7\xd5\x7d\xee\x7e\x85\x37\xdb\x4b\x9e\x42\xdd\x7a\xbd\xb8\x0f\xb3\x70\x6c\x68\x9c\x2c\x05\xc8\xb4\xbd\xeb\xc0\x50\xd2\x77\x1d\x7f\x10\xe9\xbb\x8e\x19\x37\x95\x60\xc7\x6b\x64\xa7\xfa\xaf\xce\x3c\x5c\xd4\x61\x83\x08\xd9\x2c\x9c\xa2\xaf\x48\x61\x71\xc4\xc6\xfc\xbd\xb1\xd0\x55\xbb\x28\x06\x45\xe8\x33\x36\xe8\xa8\x05\x6e\xd6\xf7\x13\xc0\xb7\xd5\xb1\xab\xe8\xd5\x8b\x4d\x47\xdf\xbf\x97\x3c\xbd\x3e\xe1\x33\xae\x28\x1a\x72\x33\x1c\xda\x85\x33\x8f\x67\xd7\xc5\x6a\xd3\xe1\x37\x3a\x38\xa2\x26\x97\xa1\x20\xe1\x84\xb2\xab\xd4\x8b\xd3\x2f\xe9\x2e\x77\xb8\x94\x89\x2d\xd2\x86\x83\x09\xa9\x28\xf3\xe8\x76\x72\x79\x51\xc9\x1a\x46\x51\x7b\x0c\x30\x55\xf0\x30\x8a\x9e\xac\x41\x0b\x7b\xbd\x6b\x9b\xae\x3e\x5d\x6a\xc6\xc3\x74\x3c\xad\x9c\xa2\xb0\x50\x21\xe1\x0d\xc4\x3f\xb5\xd1\xae\x58\xa2\xaf\xbf\xf6\xdc\x5c\x87\xaa\x84\x89\x1b\xb8\x28\x97\x1b\x72\xf1\x76\xb8\x58\xa4\x49\x38\x56\x0b\x4d\xc7\x1c\xda\x08\x97\xf3\x0b\xe7\x8b\x76\x92\xc6\x17\x0a\x05\x6d\x6b\x7b\x5f\x88\x22\x15\x7d\x6c\x62\x4f\x74\x64\x01\x5c\xa3\x07\x6d\xef\x8a\x55\x15\xe8\xd8\x37\x5e\x64\xd1\xe7\x69\x72\xd5\x9e\xc7\x59\x16\x8b\x0b\x38\x19\xa0\xbf\xd3\xe4\x6a\xa0\xe3\x5e\x42\xd4\x68\x54\x43\x47\xb8\x07\x2c\x45\x2c\xec\x12\x2a\x98\x1c\x76\x15\x9e\x2f\x87\xbd\x51\x89\x51\x55\xac\x5a\xa3\x22\x33\x09\xd5\xbe\x35\xd6\x96\x91\x4c\x97\xdc\xa4\x28\xb4\x6f\xbd\x82\xca\x8a\xc3\x48\x13\x3d\xe0\xe6\x03\x8d\xf4\x2b\x97\xb3\xce\x01\x24\xd2\xa1\x94\x69\x7c\xbe\xd4\x6f\x9a\x58\x28\x3c\xcb\x3e\x35\x26\xcd\xa6\x61\x9f\x27\xcd\x26\x7e\x36\x4c\x47\x2c\x01\x2a\x48\xd5\xf5\x9e\x65\xf8\x66\x45\x6f\xfc\xa5\x1b\x9c\xd1\xea\xfa\x0c\x8e\x69\x79\x15\x2a\xe2\xb4\x58\x70\x2e\xd4\xeb\x5d\xab\xef\xba\xf5\x13\x6c\xf5\x68\x75\x95\xa8\xbc\xe5\xd5\x10\xd8\x4b\x78\x7d\xd6\x21\xf3\xda\xcc\x2a\xb0\xd5\xe9\x53\xd4\x32\x7d\x46\x0e\xde\x77\xca\x8d\xce\x73\xfc\xbe\x53\x6d\x03\xdb\xea\x69\xa4\xf4\xa3\x1e\x8a\xf7\xe4\xa0\xe6\x88\x60\x1f\x21\xcf\x73\x36\x80\xc3\xe2\x79\xe7\xec\xec\xec\xd9\xf1\xeb\xd3\xb3\xc3\x0f\x4f\x4f\x8e\x07\x4f\xcf\xce\xce\xf2\x1c\xd7\x45\xb3\x9b\x15\xa1\x75\x09\x9d\x4c\x5e\xcf\x78\xb6\xa1\x98\x49\xdd\x5c\x1a\x1e\x1f\x36\x15\x86\xc4\x5b\x6a\x9e\xc6\xf3\xcd\x15\xab\x44\x36\x1c\xe9\x51\xf9\x83\xd5\x65\xa2\x7f\x2a\x0a\xf7\x27\xb6\xd5\x2b\x98\xb9\xbf\xab\xf5\x7b\xd8\x6c\xe2\x9f\xfa\xc6\xfd\x54\xb2\x54\xc7\x75\x97\x04\x7f\x6a\xca\x95\x13\xb2\x52\x19\xf0\x4f\x0c\xaf\x21\xaa\x9d\x28\x39\x19\xa7\xc9\x6c\xd6\xdf\xf9\xd7\x2c\x09\x23\x1e\xe5\xff\x1a\xef\x04\x45\x20\x56\x61\x63\x8c\xef\xa2\xa3\x48\x9e\x6b\x78\x55\x21\x24\xcf\xd7\xb1\x58\x8c\x8e\x8e\x07\x4f\x12\x21\x41\xfe\x54\x41\xf0\x68\x12\x10\x2d\x51\x30\xe6\xc9\x25\xff\x6e\x31\x4e\xe8\x4f\xac\x47\xff\xdc\x74\xcd\x28\x68\x2b\x10\x28\xd7\x43\xf6\x89\x72\xce\x90\x43\x46\x25\x67\x28\xe3\x52\xce\x14\x2c\xc1\x19\x9a\x2c\x67\x93\x78\x06\xc1\x94\x33\x94\x72\x45\x2d\xaa\x50\xc2\xcb\x74\x51\xcc\x59\x2d\x81\xc1\x9b\xcd\xfa\x78\x45\x72\x8e\x79\x96\xd5\xdf\x63\x2e\xb9\xc3\xe7\xb1\xa4\x61\x09\x7a\x91\x2d\xf5\xa6\x2f\x48\x29\x18\xdb\x29\x66\x79\xac\x86\xce\x92\xdb\x9c\x75\x0f\xf8\xa3\xcc\x51\xd6\xbc\xd5\x22\x19\x1f\xf2\xd1\xb0\x3b\xc2\xfa\xa3\x37\x22\x07\xda\x94\xcf\x27\xb6\xd5\xf3\xc8\x7b\xed\x2d\xf1\x26\xe3\x7a\x6d\x0c\x39\x95\x23\x42\x3f\xe5\x39\xfe\xc4\xd4\x71\xc2\xf1\x98\x83\x00\xbc\x2b\xb2\xe4\xbe\x0c\x41\x72\x25\x78\xaa\xce\xe0\xce\x19\x48\x1b\xa8\x73\x58\x2b\x5a\xd1\x04\x98\xdf\x20\x09\x27\xa7\x5c\x6c\x7a\x90\x4f\xc8\x8d\x60\x82\x03\x61\x99\xb2\x04\xa7\x3e\x75\x36\xe5\x38\xa6\xef\x25\x59\xad\x16\xea\x2b\x25\x79\x8e\x05\x63\x4c\xf0\x66\x73\xa2\x63\xa8\x0a\xa7\xbc\xd9\x9c\xea\xb0\xd7\xd4\x05\xf7\x98\x41\x50\x41\x3c\xc1\x1c\x38\xe1\xb5\x54\xfd\x61\x63\x91\x26\xf3\x38\xe3\x19\xbc\xc8\x9e\x87\xe3\x2f\x8d\xb1\x7e\x7f\x73\x1a\x41\xa1\x6c\x64\xe1\x9c\xdb\x9c\x1d\x73\x0d\xa8\x0b\xa5\xee\x55\x30\xcf\x3d\xdf\x8e\x09\x96\x84\x38\x4e\xe9\xad\xa3\x92\x3a\xbb\x33\xd6\x44\x6d\xb1\xe4\x53\x72\x23\x60\x1c\xb6\xba\x54\xaa\xce\xf7\x23\x0e\x7c\xe9\x60\xa2\x7f\xc9\x8a\xd0\x12\xe3\xcd\x65\x9f\xea\x11\x01\xb5\x8b\xad\xee\x6a\x8d\x4e\x6a\x88\x3c\x87\x3c\xef\x25\x64\x70\xd4\x93\x1b\xd3\x89\x19\x53\xbe\x05\xe6\x76\x16\xd6\x05\x67\x64\xfc\x6e\xba\x8c\x91\xcd\x68\x56\x86\xba\x69\xc1\x98\xb6\x0d\x4b\xae\xad\x36\xc8\x90\x49\x3a\xe3\x78\x0e\x5e\x19\x0a\x00\xd3\x1f\x05\x30\xa8\x00\x38\x87\x95\xca\x3b\x67\x6a\xa0\x99\xf9\x75\x18\xc5\xd2\xe7\x6f\xcf\x6d\x56\x0d\x59\x70\x7a\x5e\x96\x4b\x1a\x70\x35\x8e\x76\x95\xb3\x14\x32\xa8\x31\x92\x9d\xb3\x69\x28\xa2\x19\x8f\x9a\xcd\x18\x84\xbd\xfc\xed\x8d\xd1\x52\x98\xe4\xb7\x70\xc0\x80\x79\x6e\xbb\x43\xfc\xe1\xba\x80\x0a\xaa\xa5\x53\x5b\xe8\x85\x06\x82\x4a\x65\x2e\x39\xde\xfc\xbc\xcc\xeb\xd7\xf8\x1b\xbd\x6e\x1b\x29\xcf\x92\xd9\x25\x4f\x1b\x80\xcd\x34\xe2\x0c\x1e\x8a\x43\xc7\xe4\x33\xeb\x7a\x1a\x67\x8e\x8b\x95\x4c\x1a\x97\x6a\x16\xb6\x7a\xf5\xa0\x9f\x85\xf1\x8c\x47\x0d\x09\x22\x08\x9a\xcd\xd8\xf8\xd9\xd4\xf7\x73\x50\x52\x76\x9a\xf2\xc6\xcf\x82\x5f\xfd\xdc\x48\x16\x9a\xa5\x47\xb5\x20\x80\x61\xe4\x79\x2f\x17\x76\x03\x16\x52\x12\x61\xe6\x35\x53\xed\x3f\xfd\x5e\x0c\x93\x3c\x1c\x6d\x96\xe5\xe4\x70\x9c\x48\xca\xc9\x4a\x1d\x05\xbc\x7c\x89\x4c\x4c\x12\xa1\xc2\x3f\x80\x04\x86\xd3\xc7\xda\x40\x5f\x5d\xfa\x6f\xb4\x37\x5e\x3b\x83\x4b\x4e\xf5\xe2\x08\x38\xa7\xd0\x1a\x10\x2d\xa3\x30\xd5\x81\xc6\x03\xa9\x5d\x2b\x0a\x5f\x82\x2c\x75\x5c\xeb\x1b\x38\x54\x8d\xb3\x6e\x80\xc3\xaf\x1a\x55\x99\x37\x9c\x70\x42\xdd\x1d\x16\x70\x6a\x2f\xb0\x40\xae\x9c\xb3\x92\x66\x73\xcb\x19\xf7\x35\x35\x3b\x7b\x3d\x26\x5c\x08\xa0\xd9\x4d\xa6\xce\x52\xb5\x92\x67\x1c\x5f\x98\x6e\x93\x4a\x16\xe1\xa0\x16\x85\xfa\x33\x8e\x97\x9c\x0a\xeb\x92\x04\x36\x1b\x5c\x2a\x82\x50\x01\x87\xdd\x8a\xc2\xc0\xd6\x3d\x66\x41\x19\x95\x47\xeb\x0d\x81\x7a\xf4\x25\xef\x84\xb3\xd9\x9a\xae\xe6\x1a\xdf\xb9\x76\x31\x7e\x4c\x96\x8d\xf9\x32\x93\x8d\x45\x98\x65\x8d\x50\x34\x40\x0a\x5e\x2d\x4e\xb3\x22\x15\x6c\x4c\x3a\x85\x9d\x71\x05\xe0\xd2\x5f\x15\x9e\xcc\xc2\x50\x51\x16\xdd\x03\xff\x3d\xac\xb0\x0c\xd2\x6a\x15\x8b\x4e\x90\x9b\x54\xab\xec\xb4\xdb\x49\x9e\x4b\x0c\x0f\x54\xde\x63\x43\xf7\x20\x2b\x78\xe0\x59\xab\x45\x70\xc8\xf8\x30\x1b\x91\x7a\x6c\x21\x84\x41\xe9\xeb\x1f\x1c\xe3\x8c\x80\xad\xf2\x61\x36\x62\xe1\x81\xad\x80\x10\x18\xac\x34\x1c\xaf\x6b\xb6\xfe\x4f\x8d\x96\x02\x7e\x87\xe1\x72\x92\xcc\x54\x1b\x79\x77\x5d\x4d\x54\x57\x53\xc6\x87\xc9\xa6\xae\xa6\xba\xab\xfa\x47\xdb\x64\x2f\xf5\x4e\x1f\x58\xb5\xea\xc8\xcd\x66\xe9\x96\xd5\x1e\xf1\xcb\xcf\x9f\x97\xbc\xcf\x83\xf5\x36\x93\x1b\xc3\x94\x30\x75\x94\xdd\x9f\xf2\x92\x4b\xd1\xf5\xde\x0a\x53\x16\x10\xce\x6b\x5e\xfb\x00\x6c\x06\xb0\x6f\x7e\xd5\x39\x71\xc8\xd9\x37\x7a\xc5\xd9\x4d\x16\x7f\xe3\x41\x6f\x9f\x7e\x0d\xba\xf4\x3a\xe8\x52\xcd\x37\x0a\xba\x74\x32\x8b\x17\x7f\xa9\x43\x42\x7d\x7c\x0c\xb6\x7c\xf3\x34\xdf\xec\xa9\xcf\x9b\xcd\xc3\x82\x56\x2d\x4b\xc9\x23\x20\x5c\x40\x96\x27\xf3\xe9\x52\x04\x22\x3e\x14\x49\xfe\x55\xee\x8c\xb3\x0c\x11\x10\x75\x10\x3c\x7d\x71\x3a\x78\xc5\x78\xe1\x57\x9a\x69\x7e\xb5\xd6\x4a\x78\x9d\x44\x3c\xa3\xa9\x7e\x17\x48\x98\x7d\xef\x6a\xf7\x0e\x92\xc7\xea\x5f\xbb\x6d\xc5\x2e\xc4\x30\x19\xd1\x90\xe1\xb8\x23\xc3\x0b\x2d\x80\xa7\x6d\x71\x79\x56\xf0\x0f\x86\x8e\x97\xfb\xea\xe5\xeb\x3f\xd0\xc8\x71\xab\x43\xf2\xb8\xdd\x83\xb7\xcb\xd8\xbd\x0f\x9a\x76\xc4\x22\xe3\xa9\x91\x79\xc2\x52\x21\x7e\x5c\x5b\x17\x3a\xe3\x0c\x75\x7b\xbb\x7b\xf7\x1f\xec\x3f\xfc\xe5\xd7\xf0\x7c\x1c\xf1\xc9\xc5\x34\xfe\xfb\xcb\x6c\x2e\x92\xc5\xbf\xd3\x4c\x2e\x2f\xaf\xbe\x5e\x7f\x3b\xfc\xed\xc9\xd1\xd3\x67\xcf\x5f\xbc\xfc\xfd\x8f\x57\x83\xd7\xc7\x6f\xfe\x7c\x7b\x72\xfa\xee\xfd\x87\xbf\x3e\x7e\xf2\x64\x61\x8e\xcb\x88\x75\x6f\x57\x3b\x0c\xe5\xed\x76\xe3\x71\xf7\x80\xc8\x16\x3b\xe3\xc3\xfd\xdd\x6d\x6d\xd1\x22\x14\x51\x32\xc7\x24\xef\x16\x76\xfd\x8b\xdb\xf9\x94\x97\x9f\x85\x87\x23\x2a\x18\xe6\x79\x3e\x1c\x11\x33\x7e\x8f\x1f\x3f\xee\x1e\x88\x76\xfb\x80\x48\x2b\x2c\x52\x03\xe8\x2b\x2f\x99\xf9\x07\xee\x95\xa2\x94\xfa\xaa\x86\x22\x48\x02\xcc\xcb\x4c\x08\xc3\x8e\x25\x7a\x0a\xb2\xc5\x4c\xa1\x14\x0d\x74\xeb\x7b\x2f\x5f\xf9\x28\xd4\x6b\x5e\x76\x61\x2f\x2d\x94\x36\x22\x34\x61\xe9\xb0\xab\x10\xfc\xd4\xb9\x1e\xe8\xfc\x9d\xc4\x02\x52\x9d\xd4\xce\x96\xe6\xbd\xa8\x1d\x11\x03\x1a\x1a\xd3\xff\xbc\xf0\xa4\x6b\x8c\xc7\xb5\xb8\xa8\xf4\x15\xaf\xe5\x38\x7a\xd6\x84\x9a\x3b\x17\x14\x35\xc3\xf9\xe2\xc0\xb3\x9f\xb9\x83\x20\xf6\xdf\xcb\x44\x96\xa2\x7f\x86\xe8\xff\xb3\xf7\x6b\x29\xf6\x11\xc4\xce\xca\x59\x1f\x43\xe4\x85\x8a\x2c\x9a\xf3\x94\xaf\x3f\x87\x6b\xa9\x26\xfd\x50\x94\xf2\x68\x39\x5e\x3b\x1a\x9c\xa5\x92\xa2\x07\x82\xa2\x40\x8d\xbe\xed\x90\xa2\x8e\x90\xaa\x8a\x50\xe4\x57\x78\x52\x9e\x6f\x75\x48\x6c\x31\x76\xa5\xbf\xf2\x9c\x77\xbe\xea\xe0\x57\xf5\x7d\xad\xbf\xaf\xd5\xb7\x3e\x3e\x74\x84\xfe\x56\xb1\x70\x96\xd8\x8f\x8f\x9e\xf9\xb2\x12\x21\xe7\xf8\xf1\xa0\xc8\x64\x64\x48\x79\xfa\x21\x8e\xe4\x94\xa6\x8c\x77\xe2\x71\x22\x74\x28\x61\x37\x2e\x77\x80\xe0\x73\x16\xaa\xe5\xe6\x3a\xba\xb3\x4b\x51\x63\xf7\xc1\x3e\x41\x64\x45\x63\x56\x97\x67\x6f\x77\x5b\x76\xbe\x52\x44\xbd\x11\x81\xb8\x6b\x8a\x48\x03\x11\x1a\x32\x94\x69\x1f\xb3\x36\x59\xc2\x00\xec\xf4\xf6\xb7\xb1\xd4\xbd\xea\xb7\x7b\x41\x8f\x94\x81\xac\xe5\xfa\x68\x73\x01\xd8\x8c\x19\xee\xbc\x0f\x57\xc7\x50\xd4\xe8\x36\xba\xc4\xad\xdd\x9b\x64\x29\x79\x1a\x24\x5a\x83\x2d\xf0\x3b\xed\xca\xc6\x14\x79\x75\x87\xa5\x50\x46\x56\x74\x11\xca\x69\xf0\x9d\xe1\x4a\x77\x76\xb7\xdb\x3d\x8a\x1a\x6d\x33\x64\xfa\x5c\x7b\xc2\xd9\x8d\xbd\x18\xae\xd4\xc0\x07\xa8\xd7\xed\xde\x43\x74\xca\xf5\xcb\x12\x84\xbc\x8b\xe1\x8b\x37\xa1\x5b\xb8\x2a\x81\xf2\xb8\xe7\x29\x3e\x14\xf2\x26\xbd\x11\xc9\x73\x3f\x58\x18\xdd\x0b\xed\x41\x92\x01\xd5\x55\x04\xd5\xf9\x31\xcb\x73\x70\x1b\xb3\x16\xcf\xd0\xf9\x2c\x1c\x7f\x41\xc4\x97\x90\xf9\x50\x5a\x6b\xc0\xf0\x05\xa6\xc1\x3c\x8c\xf5\xb1\x32\x0f\xb3\x2f\x34\x01\xa5\x04\x3e\x89\xbf\x02\xd7\x40\x65\x03\x55\xb9\xb0\xb4\x3e\xc7\x8c\x77\xb4\xb8\x12\x68\xcd\xc9\x58\xce\x38\xa8\xcc\xf1\xaf\x32\x0d\xe9\x82\xf1\xce\x95\x42\x33\xc3\xf3\x19\xa7\x13\xe6\xfa\xbc\x68\x36\x17\x34\x62\x69\x67\x92\x2c\x45\xd4\x4f\x03\x41\xa7\x2c\xea\xc0\xd0\xd2\x73\x16\x75\xf4\xb8\xd2\x39\xbc\xc7\x79\x8f\x16\x85\xf5\xbf\xe9\xce\xf9\x36\x28\x00\x0d\xd8\xf0\x63\xa7\xca\x9e\xa5\x71\xbf\x58\x18\x1f\x3b\x3e\x33\x97\xaa\x23\xd1\xad\x19\x30\x81\x36\x1f\xdd\x72\x0c\xb7\x7b\x8c\xb1\xa5\x3e\xdb\x79\xe6\x4e\x4b\xc0\x36\x2c\x18\x97\x6c\x4f\x5d\xb5\xbc\x2f\x58\xa1\x0a\x3a\x1c\xd1\x62\x6e\x02\x60\xab\x2e\xbd\xd9\xa2\x37\xa5\x67\xba\x20\xf1\x1f\xea\x82\x58\x6b\x78\x06\x03\x9a\x26\x33\x1e\xf8\x05\x3b\x2a\x26\xcf\x51\x3c\xbf\x40\xf4\xeb\x7c\x26\xb2\x00\x19\xd7\x55\x57\x57\x57\x9d\xab\xbd\x4e\x92\x5e\xec\xec\x76\xbb\xdd\x1d\x78\x3a\xb9\x8c\xf9\xd5\x6f\xc9\xd7\x00\x75\x1b\xdd\x86\x1b\xa0\x69\x69\xaf\x9c\x93\x15\x59\x1d\x4c\x9a\x4d\x7c\xe1\xd5\x34\x3c\x1d\x31\x84\x08\x9d\x35\x9b\x17\x4e\x3d\x52\x13\x15\x5a\xdf\x13\x26\x1f\xf9\xdd\xbc\x89\xa3\xa0\x04\x02\x85\x69\x1c\xb6\x67\xe1\x39\x57\x84\xd2\x39\x18\x1b\xd1\xe5\x8a\x19\x56\xb7\x3e\x59\xd1\x62\xe4\x66\xa3\x95\xe6\x22\x5e\x6a\x76\xf4\x05\xbd\xd1\xc3\xa4\x4e\x03\xb3\x2c\x83\x98\xaa\xe5\x1b\x08\xaa\x16\x6f\x90\xd2\x62\x97\x87\x54\x2f\xd0\x60\x4c\x35\x03\x39\x58\x1a\x4e\xf2\x8a\xd0\x6b\xbb\x04\x9b\x4d\x61\xd6\xe2\xda\xdb\x83\x3e\x84\xad\x3e\xa8\x3a\x7e\xbd\x79\x53\xdb\x04\x36\x4e\x0c\x1f\xd9\x97\xb5\x0d\x92\x98\x55\x3d\x63\x09\xec\x22\xba\x64\xb1\x89\x5a\xb0\x58\x47\x4d\xd8\xbf\x39\xbe\xf1\xdb\x5c\x3e\xf4\x83\x25\x75\x47\x7e\x30\x5e\x11\x1a\x31\x3d\xe6\xa9\xc2\xb3\xd7\x56\xd6\x13\x4e\x6f\xd4\xf6\x0f\xd0\xd5\x34\x96\x1c\xad\xc8\x8a\x4e\xd9\xcc\x75\xa2\xef\xab\x28\xbb\xa9\x9c\x87\x0b\xfc\x85\x93\x55\x70\xb3\xa2\xe7\x06\xfe\xc5\x3a\xf0\x89\x46\x51\x89\x37\x43\x5f\x38\xce\xf4\x22\x98\x81\xfa\x6d\xb5\xc8\xcc\x1f\xb1\x49\x47\x9d\xc3\xaa\x45\x84\x8c\x56\x74\x7e\x5b\x4d\x70\xe8\xfb\x35\x9d\x8f\x56\x74\xc0\x90\x1a\xe8\xca\x8a\xa1\x17\x0c\x8d\x67\xf1\xa2\x1a\x7d\x69\xe0\xc3\x7b\x76\xed\x48\xc5\x51\x30\x80\x65\x03\x46\x0f\x02\xb4\xcc\x78\x7a\xb2\x08\xc7\xfc\x58\xbc\xcb\x38\x82\x24\xc3\xff\xae\xcf\xb1\xf2\x5b\x18\xd1\xf9\x68\x45\xaf\x4d\xad\x11\x9f\x64\xc8\x4b\xd5\xb1\xaa\x9d\x6f\x42\x39\x5d\xdf\x2c\xde\xba\xc7\x92\x2d\x28\xd2\xae\x2c\xd5\xa8\xf6\x65\xa7\x80\x23\x47\x8a\x48\x1a\xad\x1c\x01\xa8\x37\xe2\x35\xdd\xbc\x2c\xf4\x82\x00\x99\x62\x21\x9f\x24\xb3\x24\x05\xd5\xe4\x78\xd1\x56\xf3\x81\x02\xb4\x4c\x67\xf8\xff\xb8\xd1\xbb\xa0\x88\x20\xa2\xb7\x53\x25\x69\x00\x49\x6a\xf0\x14\xba\x54\xac\x25\xe1\xd7\x98\xae\x56\xf8\x92\xd4\x99\xd7\x2d\xf6\x92\x28\xef\xa5\xd4\xee\xa5\xa4\xb4\x85\x62\xa6\xb0\x3e\xb3\x67\x81\x13\x66\x85\xc4\x1f\x77\x41\x06\x10\x52\x58\x4c\xe8\x09\xc7\x89\xe1\xe9\x86\x95\x1d\x95\x54\x77\x54\x6a\xf6\x60\xb1\xaf\x4c\xcc\x4a\xd1\x69\xde\xb1\x56\xb3\x30\xc3\xf5\x85\x79\x4b\xde\xb5\xed\x02\x79\x53\xd8\xf9\xb0\x5d\x5c\x8a\x89\x73\xe3\x53\x85\x65\xd2\xbd\x21\x0b\xcd\x66\x1a\xad\x46\x2b\x63\x93\xc4\x34\x5e\xe7\x75\xe8\x93\xab\x43\xfa\x50\x05\x4c\x12\x3d\x64\xd7\x45\xa5\x57\xec\xda\xab\xc1\x2e\xb0\x4b\x97\x81\x1d\xd2\x4b\x2f\x03\xbb\xa2\xe3\xf5\x33\xb3\x40\x1e\x84\x8f\x3c\xa4\xfe\xec\x27\xe5\xd9\x8f\x1d\x2a\x61\xea\x34\x63\x0a\xd7\x96\xbf\x4f\x60\xba\x03\x64\xf4\xca\x82\x86\x48\x04\x3f\x40\xab\xb5\xc9\x30\x62\xd4\x6b\xa3\x98\xc0\x96\x07\x8f\x13\x3e\x92\x20\x4b\x78\xc1\x2d\x28\x83\x20\x41\xec\x6f\xf9\x14\x46\xff\x4e\x8b\xdd\xa0\x58\xbc\x40\xb1\xaa\x03\x00\x8b\xbc\x7c\x87\xa8\x15\x7f\xc2\x71\x48\xdc\x1d\xd5\x6c\x6e\x99\x6b\xcb\xaa\xd9\xdd\x7c\x0d\x84\x5e\xbe\x3b\xc2\xe0\x4e\x3b\xbb\xf4\x3a\xe8\x3c\x58\x1d\x24\x66\x83\x3c\x85\x53\x7a\x45\x63\x7a\x83\x1c\x70\x23\x5d\x80\x3c\x34\x7a\xdc\xf9\xda\x0a\x3b\x5f\x77\x7a\xfb\x14\xf1\xb9\x87\x17\x8c\x3b\xd7\xad\xb0\x73\x6d\x12\x90\x27\x37\xbc\x61\xaa\x92\x62\x90\xa4\x1e\xa2\x02\x0b\x3d\x2a\x61\xa1\x63\x7d\xbe\xc2\x20\x5d\x39\x32\xc7\x20\x81\xd5\xe3\xc0\xe2\x99\xa1\xc3\x33\xc7\x25\x3c\x73\x56\xe0\x99\xe3\x66\x73\x4c\x97\xcc\xec\x44\x7f\xb0\xfb\x37\x00\x24\x88\xe1\xbe\xd3\xa6\x0b\x82\xd0\x61\x79\x0e\x8b\x5b\x91\x83\x59\xb3\x89\x97\x06\xfd\x01\x44\x64\x61\x01\xda\x33\x09\x0e\x9e\x66\x13\x2f\x8a\x76\xd6\xb8\x2b\xac\x12\x76\xb6\xa3\x4e\xa2\x51\xf4\xbf\x05\x7a\x5f\x98\x9e\xc7\x45\x5a\xd2\xff\x16\x24\xd0\x65\xf0\x34\xfe\xc4\xd8\x6f\xa0\x59\xd1\xd9\xb0\xd9\x54\x43\x51\x98\xcc\x1d\xb7\x58\xd6\x6c\x5e\xf5\xeb\x08\x1d\xd9\xf9\xba\x73\xc8\xdb\xa9\x22\x0f\xf9\xbc\x4c\xb4\x5d\xab\x94\x58\xa7\x28\x42\x2d\xc8\x7c\x10\xe3\x70\x36\xc6\xed\x07\xdd\x7b\x8d\x56\xa3\x02\x0e\x0a\xd0\x46\x29\x47\x05\x2e\x64\x01\xa0\x9b\x5b\x55\xdf\x22\xdb\x1a\x3a\x6e\x6d\x22\x47\x0f\xf9\x5d\xc8\xd1\x22\x57\x99\x1c\x55\x70\x37\xd3\xa3\x11\xbf\x50\xb9\x56\xe5\x5b\xa5\x34\x19\xa0\x9f\x00\x77\x89\xb0\x84\x61\xba\x22\x74\x31\x44\xed\x2b\x7e\xfe\x25\x96\x9e\xa4\xdd\x88\x79\x8b\x85\x18\xfb\xca\x4f\x39\x5e\x90\x83\x89\x7f\xbd\x19\x64\x95\x4d\x74\x9e\x88\x0d\x1d\x55\x18\xf9\xd7\x54\xb6\x08\x45\x69\xf3\x2d\xa9\x8f\x2e\xac\x08\x8d\x9b\xcd\xdb\x4b\x98\x4d\x80\xb2\xb4\x9d\x88\xd9\x75\xe9\x48\x8d\x15\x84\xa8\xd8\xbe\xbf\x6d\xdc\xbe\x7a\x6f\xa6\x6e\x6f\x26\xcc\xdc\x5d\xde\xee\x13\x76\xf7\x09\x7f\xf7\xa5\x75\xbb\x4f\x5f\xff\x69\x71\xfd\xfb\x83\x93\xb8\xbb\xff\x40\x5f\xfa\xc5\xe0\x84\xb7\x76\x35\xa9\x0e\x8e\x68\x36\x6f\x2f\x71\xdb\xe0\x08\x05\x21\x04\x46\xc1\x9b\x8a\xc0\xc2\x5b\xce\x3e\x76\xd6\x65\x74\x9a\xcd\xeb\x66\xf3\xba\x33\x0f\xd3\x2f\xf0\xab\x33\xf4\xaf\x03\x2d\xe5\xfd\x86\x3b\x31\xef\x37\x7c\x45\xff\xe2\xec\xe7\x67\x87\x0d\xf4\xa0\xd3\xeb\x75\x76\xd1\xcf\xf4\xef\x32\xeb\xfd\x2d\x07\x48\xb8\x38\xc3\xff\xe2\x25\x8a\x4e\x85\x38\x18\x76\x27\x54\x65\xd6\xb0\x6f\xc9\x4f\xe8\xad\xb0\xce\xf9\x45\x2c\x40\x2f\xfd\x0e\x35\xae\xe8\x4b\xce\x6e\xa0\x48\xdd\x6b\xd3\x9d\x1a\x6f\x2b\x24\xb4\x46\xce\x1e\x5e\x87\x57\x94\x8b\x28\xf8\x9b\xaf\xe8\xbb\x8d\x6e\x4b\xb5\x52\x5b\x45\x1b\x92\x8e\x99\x65\xcb\xf8\x37\x87\xaf\x03\x56\xa7\x07\x63\xb4\xe4\x7c\x5e\xb0\x71\x5f\x6b\x12\x56\x2b\xe0\x8c\x07\x52\xb3\xf1\x8b\x33\x1e\x27\xac\x47\xe1\xa1\x69\xd8\x1d\x8d\x48\x80\x13\xd6\xa5\x21\x13\xe4\x20\x79\x34\x86\xb7\x99\x90\xcd\x70\x48\xf9\x30\x66\xd9\x30\x19\x8d\x68\x4c\xb9\xe3\xe1\x86\x1e\x93\xe9\x45\x85\xab\x8d\x10\xd5\xda\x60\xbc\xa4\x0d\x26\x5b\x0c\xa3\x6e\xb7\x8b\x5a\x1c\x3c\x6f\x3c\x49\x22\x7e\xa8\xf0\x18\xa7\x85\x81\x7b\xfb\x84\x18\xc6\x71\xfb\x7e\xe1\xe7\xbe\xd8\xef\xcf\x7c\xe6\x33\x5b\x67\x68\xed\xd6\x32\xb4\x76\x7d\x6d\xaa\xdd\x51\x70\xb3\x22\x9d\xec\x4b\xbc\x78\x91\x24\x5f\x32\x77\xf3\x69\x43\x20\xea\xe2\xf3\x67\x46\xd6\x70\x73\xb9\xa7\xb9\x5c\xf0\xe7\xb7\xb6\x34\xb2\xdb\xe7\xc3\xd4\xe1\x9a\x23\xa6\xbf\x03\x3e\x14\x23\x96\x52\xae\x48\x95\x95\xaf\xbc\x55\x3c\xcf\xff\xa1\xa5\xc3\x3a\x61\x14\xbd\x09\xc7\x5f\xf2\x3c\xed\xff\x61\x0e\x9c\x21\x1f\xe9\xf3\xcb\x8b\xc8\x73\x85\x45\x92\xa0\x52\x0c\x73\x0a\xfa\xe8\xa1\xb5\x40\xf7\x8c\x63\x10\xef\x97\x46\xb0\x90\x33\x0b\x84\x7e\x84\xef\x69\x3c\xcf\xe8\x73\xce\x14\x78\xf8\xff\x27\xfc\xff\x69\xdd\xde\x72\xdd\x33\xd8\x3b\x8e\xdf\x73\x5a\x62\x75\xab\x95\x6e\xe7\x6e\x98\x8e\xd8\x3b\x8e\x05\xe5\xaa\xdf\x54\xea\xfe\xaf\x0e\x9e\x73\x56\x1e\xd2\x12\x8b\x7c\xb8\x37\x02\x43\x46\xea\x63\xc4\x04\x51\xe3\x46\x54\xeb\x6a\xca\xd8\x89\xd8\x2d\xf8\x94\x6a\xac\xc5\x26\x95\x33\xad\xac\xa7\xe0\x71\xab\xf6\x22\x19\xc8\xbf\xc7\xa2\xf1\x9e\x1f\xfc\xc9\x55\x83\x3f\x72\x5a\x3b\xe1\x62\xd8\x1d\xd1\x84\x89\x61\x6f\x44\x63\x26\x8a\x5a\x01\xc2\x16\x63\x49\x9e\xcb\x3c\x07\xd5\xcf\x50\x9d\x4d\x60\x8d\xa9\x8e\x55\xb4\xb2\x8b\xc1\xdb\x4a\xbf\x73\x7f\x9b\xe3\xe7\xdc\xcc\x33\x51\xd7\xc3\x4f\xd6\xc0\xf0\x27\x6f\x0a\x7d\x6b\xcc\xb6\x9c\xad\x0d\x9e\xe6\x5c\x85\x10\x4a\x79\x26\x83\xe1\x68\xe5\xd5\x29\x65\xe9\x6d\xa1\x66\xb5\xbb\x0d\xf7\x9a\x57\x29\x12\xad\x7c\xfd\x49\x8d\x29\xb1\xc4\x16\x93\xa0\xc8\xdb\x88\x27\xf8\x23\x08\x7a\x3e\xe3\x72\x3c\x3d\xb9\xbc\x68\x36\x87\x5a\xfd\xe0\xff\x23\xef\x4d\xd8\xdb\xc6\x91\x45\xd1\xbf\x22\xf3\xce\xb0\x89\x08\xa4\x49\x2d\x5e\x28\xc3\xba\xd9\xfa\x74\xce\xc9\xd2\x37\x49\xcf\x4c\x3f\x45\x93\x43\x53\x90\xcd\x89\x0c\x6a\x48\x28\x4e\x62\x69\x7e\xfb\xfb\x50\x58\x08\x2e\xb2\x9d\x9e\x9e\x73\xce\xbb\xaf\x67\xbe\x58\x04\x41\xa0\x50\x28\x14\x0a\x85\x5a\xa4\xb7\x81\xf4\x83\x90\xfe\x0f\xe0\xf8\x20\xfe\xb5\x6e\xfe\x38\x3a\xf7\xa3\xae\x56\xcd\x64\x88\xfa\x82\xc8\x55\x95\xe9\xff\x11\x33\xbf\xdd\xee\x1f\xbf\xd8\xe7\x27\xd5\x49\x90\x54\x0b\x75\xbb\x65\xd8\x74\x55\xa8\x1f\xdb\xad\x2e\x52\x87\xda\x03\x42\xda\x4a\x5e\xd7\x15\xbc\xa3\x72\x0f\x57\xba\x62\xb8\x71\x16\xf8\x96\x1b\xba\x15\x8b\x78\x87\x30\xe5\x9e\x7d\xa9\xc6\xb8\x95\x4c\x9e\xba\xae\xc0\xa7\xfc\x77\xc6\xe6\xa8\x3e\xab\xdc\x1a\x12\x56\xbc\x05\xea\x59\x6e\xaf\x05\xef\x8a\x45\x57\x53\x72\x58\x5b\xc1\xed\x4e\xc9\xfb\xe6\x94\x58\x93\xf8\x67\xf3\x38\xd7\x44\x2e\x43\xf2\xd5\xf2\xca\xc3\xdd\x5c\xec\x9c\xd9\x47\x58\x6b\xdf\xdc\xef\x40\xfa\x1b\x6f\xcc\x7e\x20\xce\x0f\xa6\x75\xd1\xb9\x40\x11\xfe\xc1\xe9\xfd\xa0\xae\xcd\x02\x5e\x64\xd7\x1e\xda\x79\x05\xc2\xce\xb9\xa5\x64\x07\xdd\x62\xc1\xb5\x72\x5c\x08\x0e\x67\x87\x96\x5c\x0e\xb5\x65\xc2\x8d\xda\xaa\xb2\x16\x4b\x66\x2d\x96\x16\x32\x1a\x97\xad\xd3\xc6\xdd\xeb\x7b\x04\x34\x28\x7b\x48\x38\xb9\x55\x84\xd4\x75\x60\x17\x5c\x86\x11\x3a\x8b\xe6\x7b\x8d\x5b\x0b\x65\xa6\xa0\x46\xf3\x41\xdb\x67\xa9\xd8\xae\xaf\xf3\x05\x75\x5d\x2e\x75\x44\x3f\xbd\x7f\xf5\x12\x59\xbf\x09\xeb\x7b\xbf\x06\x6d\x53\x6e\xd7\x85\xd3\xf3\x81\x52\xf6\x09\x22\xab\xe7\xcc\x9a\x3a\x1f\xbe\x0c\xd3\x03\xdf\xb7\xcf\x5c\xa6\x59\xec\xf4\x7c\xff\xc3\x97\x21\x85\x94\x2e\xc8\x2c\x58\x1b\x26\xbd\x76\xb5\x95\x71\xcb\x4a\x41\x88\xbc\xa0\xfc\x32\x9f\xe8\x15\xf7\x54\x90\xa7\x57\x60\x48\x45\x65\x8d\x65\xb7\xc3\x4c\xf0\xb5\x3b\xf1\x28\x70\xf3\x8f\x2f\x54\x6c\xe8\x7a\xa1\xb6\x97\xb2\x71\x00\x4d\xaa\x00\x03\x14\xe9\x60\x9e\x56\xee\xc6\xfd\x97\x3a\xc1\x23\x07\xa1\x89\x8a\xa2\x2b\x76\x0b\xfb\x9a\x04\x98\x36\xde\xf3\x32\x5b\x4c\x64\x54\xc4\xe6\x0b\x90\xf9\xed\xcb\xfa\x6e\x1e\xad\x57\x0b\xe9\x62\x52\xdb\x2d\x0f\xae\xc1\x86\xad\x40\x53\x70\x7c\xfd\x7c\xa9\x19\x53\x2c\x9e\x01\xd1\xaa\x40\xee\x4c\xb2\x2c\x9e\xcd\x31\xd4\x16\xdb\x06\x9a\x74\xc2\x46\x72\xd5\xa0\x39\x31\xa9\xcc\x40\xec\xbb\xa8\xb7\x69\x98\xa2\x9c\x72\x72\x0d\x9d\x69\x1d\xe1\x46\xd5\xf7\x32\x57\xa5\x65\xb6\x92\xd9\x5b\x1c\xa4\x6d\xbc\xad\xa5\xf7\x4a\xb9\xbd\xb1\x75\x1a\xea\x4e\x79\x9c\x73\x41\x36\x10\x4f\x58\x3b\x2c\x33\xcf\x8a\x53\x51\x90\x92\x4f\x7e\x0d\xea\xae\x12\x84\x90\xbf\x83\xc1\xca\xab\xa0\xa0\x7f\xdf\xd0\x92\x3f\x66\xd9\x35\x38\x35\xfc\x58\xc0\x56\x53\x0a\x0a\xf6\xbc\x86\x78\xc5\x09\x68\x03\x7f\x6d\x38\x47\x4c\x2b\x5a\x8c\x13\x3e\x6b\xbe\x9e\x6f\xb7\x55\x05\x5c\x90\x17\x34\x80\x63\x8a\xa7\xdc\x79\xc4\x32\x84\x59\x80\x3e\x11\x66\xd2\x26\x1e\x98\xd0\x8a\xd7\x1c\x05\x36\xdc\x43\xb7\x50\x06\x6f\xd7\x5c\x86\x4d\xab\x0c\x7d\xb9\x32\x33\xfa\xec\xba\xbf\xb6\xfc\x35\x6c\xfd\x12\xa5\x4f\x95\xb5\x34\x6c\x3c\x2c\x5f\x54\x05\xe2\x4c\xbe\xae\x79\xa0\x98\x57\x62\x0f\x6a\x36\xfb\x36\xcf\x1b\x1a\xa8\xcb\x38\x9f\x08\xd8\xe8\x4d\xef\x73\x9d\xb6\x56\x7c\xbb\x05\x1b\x9b\x6e\x27\xa1\x6c\xe9\xc9\x68\xa7\x2f\xb3\x92\x4b\xc1\x41\xcc\xb5\xd8\xa7\x93\xc5\x82\x4a\x93\x26\xeb\x60\x7f\x20\xb8\xbd\xf5\x6a\x16\xce\x91\xeb\x7a\xbf\x06\x5d\x6e\x34\xae\x5b\x78\x62\xab\x2d\x2e\x21\x37\x64\xf5\x1b\x61\xa7\x5a\x2f\xf5\x5e\x65\x8d\x1a\xc3\xbe\xbf\x71\x9b\x97\xee\x6b\x3a\xb3\xfa\x77\xdd\x7f\xbc\xa8\xae\x8b\xab\xb5\x2b\x98\x3b\x42\x80\x13\x58\x67\xf0\x79\xfd\xad\x8a\xd2\xca\xb9\xf7\x85\xda\x03\xca\x48\xae\x15\xeb\x89\xba\x4f\x14\xf5\x27\x99\x35\xa8\xfa\x52\xae\x79\x7f\x66\x08\x27\x77\xd7\x94\x9e\xa1\x89\x8e\x6f\x5e\xf5\x2d\xdd\x39\xf0\x63\xd7\x5d\x73\x4d\x2a\x5e\xa6\x6e\x7f\xc4\xb4\x82\xc7\x53\xa5\x2f\x39\x08\xb1\x38\x6b\x26\x29\xa7\xc5\xb3\x84\x27\xe0\x04\xb5\xb9\x10\x14\x0a\xa1\x3b\x2c\x99\x69\xc1\xad\xbb\x56\xa0\xd2\xcb\xbd\x43\x40\x40\xaa\x1d\xef\x01\x70\x64\xe8\xf5\x80\xe8\xb8\xbd\xef\xe9\x17\x3e\xb5\x7e\x2b\x21\x25\x76\x1c\x9c\x68\x04\x23\x23\x22\x16\xae\x9b\xbb\xae\x97\x18\x81\x14\x27\x95\xd0\x9a\x23\xac\x5f\xb8\xae\x51\x44\x45\x53\xab\x8a\xc7\x49\x52\xbb\xfa\xd0\xdd\x62\xef\x3f\x84\xb4\x28\xcf\x14\x6c\x8e\xe2\xaa\xa5\x88\x10\xa2\x5b\x83\xbe\x4d\x6b\xff\x4e\x0d\x24\x58\x1c\xf6\xab\xe6\x10\xd2\x1a\xa7\x2b\xde\xa1\x6a\x6e\x59\x33\xb6\x8c\x18\x8d\x7d\xa3\xb9\x43\xa4\xd3\x86\xc8\x71\xff\xc6\xa7\x22\x71\x76\x7f\xe6\x3b\x08\x57\xc7\xb6\x2e\xb3\xb4\x6c\xe9\x15\xae\xeb\x40\x32\xad\xdc\x84\x10\x91\xfa\x5b\x72\x10\x62\xaa\x6b\x7c\xee\xa8\xf1\xab\xa9\x91\x13\x2b\xf3\x45\x8e\x70\x56\xbe\x4e\x5e\x7b\x79\x15\x94\x64\xa2\xf2\x60\x15\x2a\xbb\xd5\x65\x91\xdf\x38\xb1\xb4\xe1\x22\xf2\x4f\x3f\x9f\x5c\x14\x34\xf9\xa4\xb2\x50\x5d\x15\x19\xfb\xd4\xa8\xe2\xd7\xaa\x80\x4b\x72\x4c\x83\x2f\x84\x06\x5f\xea\xaf\xa4\x87\xb2\x7e\x57\x6f\x79\xb3\x16\x2f\xbe\x12\x1a\x7c\xad\x7f\xb4\xc8\x6f\x98\x79\x55\xff\x46\xce\x94\x78\x29\x7f\x11\xfd\xa3\x9f\xef\xac\x93\x0d\x47\x31\xb7\xb6\xde\x0b\xeb\x24\x02\x2b\x0c\x8c\x7c\xac\xab\x38\xae\x29\x2b\x27\x1c\x8e\x4b\x38\xeb\xbc\xb4\xa8\x2f\x36\x65\xcb\x8a\x99\xa5\x6b\xe5\x2a\xc7\x8b\x9a\xf8\xc9\xbd\xf4\xa2\x2a\xc6\xdd\x14\x62\xaf\x45\x5b\xdb\x0b\x07\xfa\x5c\xd1\x4f\x6c\x8e\x1b\x48\x1f\xe7\x11\x66\x3b\x31\xce\xa4\x4b\x5b\x72\xc5\x5b\x16\x99\x6d\xf7\x77\x04\x21\x47\x70\xf9\x00\x3c\xe8\x8f\xd5\x2d\x63\x33\xb2\x2d\x38\x21\x81\x4c\xb3\xdd\x72\xd9\x6a\xda\xd1\x2a\x58\x8d\x56\x5c\xf3\x6e\x01\x53\x6d\x17\xc0\xda\x58\x72\x0d\x67\x06\x98\x0d\xab\xc4\xa3\x33\x0e\x3f\xe7\x84\xeb\xa8\x38\x0a\x3d\xc0\x8f\xea\x83\x90\x26\x3b\x06\x76\x29\xe1\x3c\x8e\xa2\xaf\x62\x42\xa7\xbc\xc3\x5e\x87\xd8\x02\x78\xcb\xe8\xca\xf1\x95\x31\x0f\xaa\x19\x61\xc4\x9e\x6e\xea\x2a\x5b\x2c\x28\x13\xcd\x80\xc7\x2f\xe6\xc1\x32\x4f\x37\x25\x04\x98\x52\x2e\xc1\x42\xc6\x04\x7c\xad\xbe\x63\x16\xc0\xba\xc3\x8c\x83\x4f\x39\x5c\xf6\x54\xec\x6b\xaf\x9f\xa2\x3e\xb2\x22\x84\x62\xca\x3d\x98\x29\x7d\x67\x6e\x9d\xf6\xe5\x6d\xc5\x1e\xf4\x61\xa5\x1f\xe8\xb4\x3a\x2a\xa5\x09\xc5\x0a\xc3\x6d\x88\xba\x46\x80\x1b\x08\x65\x8d\x94\xd9\xbb\x66\xba\xb3\xf6\xc5\x6b\x6e\x02\x30\xcb\x30\x6a\x96\x47\xaf\x23\xbd\x40\x54\x88\x37\xb0\xea\x15\xc5\xbd\x0d\x4b\x3e\x27\xd9\x4a\x20\xd4\x31\x81\x87\xd3\x4f\xc4\x33\x11\xdc\x90\x2c\xd9\x5d\xf3\xbd\x11\x0e\xa1\x9e\x1d\xe5\xd0\xae\x5b\xb3\xe5\xbf\xe6\x70\xde\x78\xc5\x49\x97\x7d\xc9\x0e\x5f\x72\x72\x6b\x86\xf7\xfe\xeb\x9a\xc6\xce\x5f\x5e\xbd\x74\x70\x41\xd7\x34\xe1\x4f\xf3\x0d\xe3\xb1\x93\x49\x97\xcb\x8c\x53\x07\x2f\x36\x45\xec\x0c\x4a\x67\x87\x3f\x73\x65\x43\xb3\x6e\x5a\xca\x80\x3e\xf6\x15\xc7\xb7\x8b\xd8\x79\x15\x8d\x8f\x82\x31\x1e\x8d\x8e\x83\xe3\x95\x1f\x0d\x82\x23\x3c\x38\x0d\xc6\xa9\x1f\x9d\x04\xc7\xfe\x69\x30\xf6\x87\xe3\xe0\xd4\x1f\x44\xc1\xc0\x1f\x47\xe2\x71\x14\x9c\xae\x06\x83\xe0\xd8\x17\xff\x3c\x8d\x06\xc7\xc1\x11\x1e\x0d\xc3\x60\x8c\xa3\x51\x04\x4d\x85\xd8\x6a\xf4\x5b\xef\xd5\x28\x14\xad\x1e\x0f\x7e\x3a\x09\xc6\xbd\x34\x0a\x46\x58\x34\x87\xc7\xc1\x08\x8f\xa2\xe0\x18\x47\xe2\x9f\xa3\x28\x88\x5e\x8e\x43\x3c\x14\xef\x9e\x8e\xc6\x41\x84\x87\xe1\x58\xb4\x12\x05\x27\x78\x70\x72\x8a\x75\x33\xa6\xc5\x51\x28\x1a\x13\x90\x9e\xe0\x71\x30\xf0\x87\xd0\x54\xe4\x8f\x47\x41\xb4\xf2\xc5\x30\x60\x40\xbd\xa7\xd1\x48\xf4\x72\x3a\x0a\x86\x38\x0a\xf1\x20\x3a\x0a\x8e\xf1\x49\x30\x16\x2d\xfc\x24\x9a\xfa\xd6\x7b\x75\x04\x2f\x05\xd8\xe9\x71\x70\xe2\x47\xa3\xe0\x14\x47\xc7\xc1\xc0\x1f\x9c\x40\xf7\x41\xe4\x8b\xd1\xbd\x3c\x3a\x0d\x8e\xf1\xe9\x20\x18\xa6\x7e\x34\x14\xad\x8e\x83\x23\x7f\x20\xe0\x1c\x0e\x82\x13\xc0\x0e\x16\x78\xea\xbd\xac\x5a\xfc\xd6\x7b\x35\x3c\x3d\xc6\xa3\xe8\x34\x38\x82\xcf\x4e\x71\x34\x10\xf0\x8d\xf0\x60\x10\x0c\xfd\xd1\x11\x0c\x36\x18\xad\xa2\x28\x38\x15\xf8\x3f\x49\x07\x21\xa0\xff\x14\x0f\x4f\x83\x13\x81\xea\x23\x3c\x3e\x0a\x4e\xfd\xe1\x71\x70\xf4\xd2\xb4\xf6\xad\xf7\x2a\x8a\xc6\x02\x9e\x51\x2f\x15\x0d\xfb\xd1\x40\x7c\x3f\x12\x5f\x0c\xb1\x68\xd8\x87\x86\x7d\xd1\xb2\x0f\x2d\xfb\xa2\x69\x7c\x2a\xda\x3a\x15\x43\x1b\x04\x47\xfe\xf8\x28\x38\xc1\xd0\xb4\x6e\x4e\x20\x59\x4c\x1f\x1e\x8e\xc7\x82\x1c\x8e\x83\x13\x2c\x90\xe2\x0b\xa4\x08\x7c\x9c\x08\xcc\x44\x62\x76\xc6\x3d\xa0\x07\xd1\xd2\xb1\x00\xe2\xd8\x17\x48\xc1\x02\x29\xfe\x70\x20\x86\x20\xbe\x13\x48\x79\x69\x35\x29\x3a\x38\x06\x5a\x38\x1e\xa4\xbe\xf8\x21\xe6\xd1\x1f\x07\x03\x3c\x3c\x16\xe0\x46\x18\xe6\x51\x4c\x23\x86\x69\x4c\x8f\x83\xb1\x20\xc4\x48\x3c\x0e\xfc\xd1\x50\xbc\x18\x06\x47\xfe\xd1\x51\x70\xf2\x13\x34\x26\x30\x0d\xb4\x35\x3a\x12\x8d\x8e\x83\x63\x0c\x30\x0c\xf0\x89\xf8\xe2\x34\x18\xe0\xd3\x60\xf4\x79\x38\x08\xa2\x14\x48\x3a\x52\x34\xe8\x0b\x62\x14\x24\x28\x7a\x3e\x7e\x69\x1a\xf9\xd6\x7b\x35\x18\x85\x18\x1a\x87\x35\x71\x22\x3e\xf1\x87\xe2\x83\x01\x10\x1a\x80\x6a\xaf\x1c\x80\xf0\x58\x10\xee\x50\x42\x3e\xc0\x02\x40\x00\xf5\x4f\x1a\xca\xd1\xd1\x00\x47\xa7\x61\x70\x92\x8e\x31\x80\x79\x22\xc6\x3d\x90\xf0\x61\x01\xe8\x95\x00\xb2\x07\x98\x51\xab\x2f\x18\xf9\x00\xaa\x80\xd0\x87\xe5\x62\x5a\xf9\xd6\x7b\x25\x26\x0d\x0f\x4f\x8f\x53\x3f\x1a\x00\x8d\x01\x09\x00\x95\x01\x09\x00\x95\xc1\xaa\x38\x11\xab\xe4\x34\x15\xc4\x05\xa4\x00\xc4\x05\xb4\x20\x28\x00\xc8\xac\xf7\x52\x37\x27\x10\x70\x3c\x80\xb5\x97\xc2\x42\x13\x18\x1b\x1e\x09\x2a\x17\x4b\x78\x24\x66\x43\x20\x40\x8c\x1f\x96\xdc\xd3\x61\x24\xe6\x18\x96\xdc\xe0\x74\xac\x96\xdc\xb1\x98\x81\xf1\x9f\xd4\x62\x03\x98\xf1\x38\xec\xa5\x62\xec\x3e\xac\x9d\x81\x2f\x50\x20\x46\xee\x9f\x06\xa3\x3f\x9d\x08\xa2\x83\x59\x88\xd4\xb8\x05\xbf\x80\x61\x03\xbf\x78\xa9\xdb\x00\x42\x15\xc4\x2e\x16\xe5\x4b\x58\x15\x38\x8a\xc6\x29\x84\xf7\x11\x43\x14\xef\x60\xad\x01\x8f\x12\x58\xe8\x09\xa2\x3a\x81\x25\xf1\x74\x74\x1c\xe2\x68\x20\x98\xc1\x68\x7c\x0c\xc0\xc2\x04\x98\x16\xd5\xda\x15\xe8\xa8\xb8\x1e\x90\xd6\x11\x30\x00\x1f\x96\x3d\xd0\x7a\xc5\x1e\x2b\x6a\xe8\x3d\x1d\x1e\x87\xc1\x08\x1f\x0f\xc4\x12\x3f\x19\x05\x23\x7c\x22\x98\xa4\x6e\xf3\x1b\xd8\x96\x7e\xe5\xca\x32\x97\xe3\xdb\xda\x39\x36\x76\x74\x6c\xa0\x1d\xc2\x8f\x79\x65\xea\x59\xdd\x9d\x7f\xe6\xca\x66\x31\xcd\x8a\xb4\x61\x3f\x6c\x18\x7d\xfa\x25\x76\x06\xe3\x23\x07\xa7\x5f\x63\x67\x78\x34\x72\xb0\xd8\x25\x4e\xea\x96\x97\xb2\x99\x04\x34\x3e\x1d\xed\x74\x00\x57\x38\x18\x44\xa4\x52\x34\x36\x89\x46\x93\xc1\xc9\xc4\xfc\x80\x91\xdd\xd3\xe6\x57\x1d\xb6\xb2\x8c\x9d\x68\x12\x4e\xa2\x89\xfc\x57\x7c\x3b\xd7\x5f\xef\xdf\xbf\x14\x72\x62\x27\x72\xb0\xd8\xcb\x06\x47\x82\x25\x0f\xa3\xc1\x95\x1f\x1d\xa5\xfe\x51\x70\x84\x43\xb1\x1c\x04\xe5\x88\x55\x31\x48\x43\xff\x38\xc2\xc7\xc7\x82\x92\x04\x71\xc0\xaf\x28\x3c\x0e\x4e\xd2\xd0\x1f\x84\x82\xb9\x9d\xf8\xa3\x50\xac\x36\xf1\x46\xfc\x4a\x05\x55\x47\x38\xf4\x47\x82\x9f\x9f\x0a\x66\x79\x2a\x39\xe0\x71\x2f\xf5\x45\x23\x63\xc9\xad\x8e\xfc\xe8\x48\xbc\x00\x6e\x3b\x0c\x22\xff\x54\x7c\x2c\xe8\x44\x2c\x46\xc1\xbb\xa3\x48\x90\x8a\x20\x9c\xe3\x60\x20\xf9\xcf\xe0\x18\xf8\x8c\xe8\x4b\x2c\x98\x53\x51\x26\x7e\xa5\x63\x41\x80\x21\x3e\x3d\x16\x1c\x52\xac\x4d\xf8\x75\x12\x06\x83\x5e\x1a\xe2\xa3\xe3\xe0\xc8\x17\xc0\xe3\xa3\x61\x30\x96\xbf\x60\x18\x4f\x07\xc7\x82\x9b\x0c\xc3\x23\xd8\x2b\xc3\x60\x28\xd0\x81\x0d\x62\xbe\x7d\xd7\x94\x37\xa7\x47\xfe\xef\xfb\xa7\x27\x54\xd3\x33\x1c\x00\xcb\x1e\x05\xe3\xd5\x31\x8e\x8e\x4e\x52\x01\xdf\x51\x30\xc2\x63\x58\xb4\xc0\x2e\xe1\xef\xd5\x69\x2a\x8a\x43\x58\xea\xfe\x18\x58\xbe\x40\xdf\x78\x75\xec\xab\xef\xfc\x23\xb9\x5b\x88\xb5\x36\x96\xb3\x1b\x8c\xaf\xfc\xc1\xb0\xf7\x74\x30\x04\x0e\x34\x18\xe0\x01\xb0\x54\x21\xa3\x1c\x63\xab\xf7\xdf\x8e\x85\xd0\x10\x69\xa8\xb0\x30\xdf\xe1\x1b\x6e\x6e\x35\x2d\xcf\x46\xde\xa9\xcc\xc7\x05\x49\x3d\xaa\x8e\x6a\x23\x84\x23\x34\x33\x0e\x77\xb7\x60\x92\x58\x19\x41\x71\x6d\x04\xa5\x6e\xcb\xea\xee\xaf\x05\x9a\x76\x19\xcd\x6a\x3b\x9b\x87\x38\x6f\xa8\x80\x5a\xa8\x6d\xfb\xd9\x9a\xd4\xef\x6b\xd6\x84\xe1\x42\xb8\xcb\x6c\x7a\x11\x17\xb3\x70\xbe\xdb\x4b\x41\xdf\xd7\x99\x8a\xfe\xb5\xbf\xab\x68\xbe\xdb\xcd\x77\xf1\xbe\xce\xf6\x7c\xb6\xb3\x8f\x12\x1f\x79\xed\xa6\x42\x1c\x06\xbe\xda\xa7\x4c\x63\x23\x93\x11\x3d\x8b\x91\x9a\xc5\x71\x34\xd0\xf3\x28\x7e\xca\x99\xe4\x10\x1d\x8c\xba\x2e\x77\xdd\x1b\x0e\x77\xa6\xf0\x67\x46\xf5\xa5\x69\x8f\x79\xdf\xb8\x67\x0a\xd1\xa4\xe6\x15\x5c\x8b\x27\xf4\x1f\x19\x97\x21\x85\x10\x9c\x68\x1b\xf7\x9c\x32\x80\x65\x67\xfd\x80\xe7\x9f\x28\x73\xdd\xee\xd6\xe4\x5b\x2c\x81\x3c\xf8\x35\x68\xc6\x44\x9a\x16\x70\x28\xba\xe6\x9e\x3c\x3a\x65\x65\x4f\x45\xc1\x82\x60\xda\xf2\x50\xd7\xab\x5d\xae\xde\x64\xfc\xaa\x27\x30\xd0\x13\x07\xb2\x9a\xc1\x14\x42\x31\xf3\x32\x13\x45\xea\x4d\xd7\x9a\x7a\x6f\xad\x29\x50\xcf\xa8\x85\xf3\x0f\x2e\x6d\xe5\x5a\x3e\x46\x4f\xd0\x74\x8f\xc2\x4d\x19\xd9\x71\xcb\xa4\x34\x27\xaa\x19\x9c\xd9\x39\x58\xc4\x44\xdd\xc8\x2f\x4b\xa9\x28\x7b\xc1\xb8\x77\x49\x21\xaf\xcc\x86\xd3\xc5\x3b\x01\xa5\x54\xdd\x33\xfe\x2e\xfb\x06\xb9\x63\xc1\xa4\xf6\x92\xf2\x27\x2a\xe5\xe3\xd3\x55\x46\x19\x7f\x4b\x53\xee\xa1\x49\x46\x52\x65\x6c\x5c\xe2\x84\xa4\xda\xe0\xb8\xdc\x75\xe8\x11\x0e\x18\xd8\xe9\xb5\x9c\x80\x1a\x9a\x00\x84\xbf\x1a\xb7\x72\x6f\x46\xf1\x33\xea\xdd\x2a\xab\xc2\x98\x56\xb7\x4b\x8a\x26\x33\x4d\x91\x89\x75\xe4\x2e\xd4\x29\x9d\xa9\xa3\x76\x8e\x8d\x49\x30\x68\x9c\xe7\x48\xc6\xea\xed\x8c\xf3\xd0\xd0\x8c\x49\xfc\xe6\x95\x8e\x2c\xab\xa1\x3a\x21\x5c\xbb\xbd\x95\xda\x61\x6e\xa5\xd1\x3f\xd9\xb7\xc8\x38\xde\xa0\xdb\xaf\x32\xd8\xc1\xec\x23\xf7\x18\xce\x11\xfe\xc8\xbd\xb2\xea\xbb\x54\xfd\xa1\x39\x92\xae\xf7\xd5\xd7\xea\x9a\x67\x43\x52\xaf\xc4\x03\x84\xd7\x64\x23\xd8\xf2\x92\x6c\x66\xd1\x7c\xc2\x05\xd2\xfe\x4c\x3d\x50\x5a\x94\xf1\x2d\x78\x43\xad\xa5\xee\x61\xb9\xc3\x6d\x2b\x18\x66\x61\x2e\xd3\xca\x8a\x44\x7d\xa0\x30\x59\x28\x4c\xae\xda\x98\x84\xdb\x80\x5d\x23\xcc\xcc\x17\x8b\xbe\x1f\xec\xf2\x38\xb5\x1f\x62\x4d\xb1\x8f\xf5\xc4\xb4\xa3\x62\x19\x27\x6b\x5c\x74\x46\x07\x08\x92\xc5\xc2\xba\x27\x7e\x57\x63\xb7\x90\x3f\xb2\x2b\x30\x5d\x8f\xa9\xe0\x57\x77\x7f\x9a\x91\xba\x65\xcd\xd4\x36\xa9\xf8\x33\x8a\xed\xc7\x37\x1c\xe1\x84\xcc\x9c\xc0\x34\xf8\x04\x3b\x31\xcb\xb9\x37\xab\x5a\x7d\x8f\x9d\x39\x72\xd0\xbc\x6e\x2b\xd1\x15\xba\x31\xb0\x03\x3e\xee\x69\x06\x82\x40\x4a\x05\x29\xee\x49\x0d\x3b\xe0\x5b\xdf\xa1\x2a\x36\x30\x9b\x43\x04\xa6\x52\xea\x1f\x6b\x91\xf5\x1e\xaf\x56\x5e\x82\x6a\x51\x79\xb3\xa5\x57\x5d\xce\xa1\xdb\xc2\x33\x91\xbc\x10\xce\x3d\x48\x37\xb4\xa2\x70\xdf\x29\x9d\x11\xaa\x8b\xd0\x9c\xbd\x2f\xa8\x58\xdc\x2b\x08\xad\xdd\xa5\xda\xac\x12\x7a\xbd\xe7\x1e\x47\x13\x06\x61\x7b\x64\xa8\x12\x0b\x88\x4f\xdb\xed\x9f\xb8\x1d\xfd\xe6\x9a\xbb\x6e\x3d\xb7\xdc\x9f\x38\xb2\xd5\xe1\xb3\x39\xda\xbb\x12\xc1\xac\x4c\xad\xc4\x55\x6b\xa5\x31\x74\x9b\x8a\xd5\x59\x0b\xd8\xec\x39\x89\xcc\xe7\x88\x70\x61\x8f\x59\x60\xa0\x42\x47\xe7\x75\xb6\xeb\x72\x0f\xe1\xd4\x43\xd8\x84\x45\x0b\xe4\xc8\xec\x1e\xd2\xea\x8a\x18\xa1\xda\xe6\xfd\xfa\x77\x5a\x56\xb0\xfd\x34\x07\x4b\xd1\x2d\x75\xdd\x54\xf0\x8f\x39\x96\xd7\x7c\x95\xf3\x7f\xfd\xaa\xde\xd0\xdf\x6b\xcb\xa2\x5e\x1b\x6b\x38\xb1\x03\xab\x65\x3f\xd2\x0b\x9c\x5b\x59\x9a\x9b\xaa\x5c\x66\xae\x6b\x0a\x4f\x1b\x31\xc8\x98\x0a\x4a\xb4\xbb\x3b\x52\x42\xbd\xb1\x2f\x48\xa0\x7f\x87\x84\x70\x8a\x13\xf2\x2a\x68\x6f\x77\x98\x8b\x3d\x2e\x11\x6f\x74\x24\xfd\x3f\x09\x21\xd9\x83\x48\xc8\x2a\x90\x29\x68\x8e\xc5\x44\xfd\x2c\x48\x78\x6f\xe5\x1b\xd8\x8c\xe4\x72\xcb\x5c\xf7\x20\x45\x96\x51\x9f\xe0\x29\xd2\x7e\x26\x03\x3b\x00\x51\x29\xd5\xbc\xbc\xab\x49\xb5\xed\x39\x82\xc5\xff\x63\xe6\xbc\x93\xf1\x91\x9d\xb7\x3a\x36\xb2\xf3\x52\x45\xc0\x7d\xa6\x63\x22\x3b\x32\xe8\xb0\x65\xc1\x97\xce\xa2\x39\x9a\x3e\x9b\x89\xbf\xf5\xdb\xb9\x79\xfc\x76\xb6\x12\xdb\xc6\x4f\xd4\x1b\x82\x63\xb3\x24\xa4\xe9\x26\x28\x37\x17\x25\x2f\xbc\x08\x47\x28\xde\x20\xbc\x20\xff\x4e\xbd\x35\x5e\x22\x7c\x45\x16\x90\x96\x6e\xb1\xdd\x66\xae\x9b\xd5\x71\xfd\x52\xe0\x7a\xdd\x2a\x7e\x2e\x8a\xaf\x50\xa1\x8d\x36\x68\xfd\xb6\x99\xe1\x2b\xf0\x48\x68\x62\x68\x22\x43\x80\xdf\xd6\x8d\x27\xd5\xc6\x2e\x7e\xda\x16\x86\xd5\x0e\x76\x43\xf5\x16\x76\x10\xc9\x3d\x4c\x86\x2e\xaa\xeb\xdc\x67\x73\xad\x74\xbf\xdd\xd5\x44\xe8\xdd\x6e\x87\xaf\xc9\x85\xda\xbf\xaf\x6d\x69\xe5\xcb\x9c\x70\xb1\x49\x2f\xf0\xba\xb5\x76\x72\x2d\x33\xff\x59\xb9\x56\x5d\xe0\xda\xfe\x9b\x4b\x50\xe0\x5e\x41\x03\xbe\xae\xb6\xe0\x2b\x05\xdf\x75\x63\x7b\x15\xbb\x46\x3b\x86\xcc\xe7\x4b\x07\x4d\x9c\xf8\x42\xa6\xd8\x87\xd4\xd7\xb4\x1e\x88\x25\xc1\x34\x58\x66\x45\xc9\x01\x99\x28\xa6\x41\xb2\x16\xac\x49\xe2\x36\x41\xda\x6f\x51\x9a\xe9\x7c\x8f\x81\x10\xd6\xd3\x64\xaf\x57\x41\xcc\x15\x2b\xcb\xd1\x4e\xda\x0c\xc8\x52\x2b\x64\x87\x6d\xe5\xaa\xa5\x9f\x97\x72\x13\x53\x83\x41\x58\x3d\x27\x90\xfc\x5f\xc8\x17\x55\x00\x8e\xba\x91\x6c\x65\x82\x71\x40\x2a\x4b\x36\x19\xcc\xfd\xe0\x1f\x4f\x2d\x73\x8b\xca\x8a\xce\x8a\x76\x83\x5c\xf7\xa0\xc5\x2b\x5c\xd7\x3b\xb0\x5b\xde\x6e\xb5\x2d\x9e\x5d\xaa\x1b\xb4\x60\xfb\xbb\x36\xcb\x79\x8c\xf6\xcb\x7c\xc6\x66\xb6\x7b\xaf\x75\x1e\x39\xc8\xb0\xb6\x77\x5c\x5e\x55\x3d\xe7\x08\xe7\xd6\x3e\xda\x19\x7d\x18\x4d\x56\x9c\x1c\x84\x58\xe1\xb4\x68\x91\x27\xba\xcd\x3d\x84\x37\x62\xf3\xe1\xde\x9e\x5d\xc7\xd4\xa8\xb6\x1e\x88\x77\xc1\xc9\x0f\xe5\xe7\x4b\x90\x32\xe2\x22\xcf\x39\x0a\xea\x11\xea\x7b\xb7\x1f\x58\xaf\x97\x7f\xa6\xc5\x72\x95\xdf\xc4\xbd\xcf\x59\x99\x5d\xac\xe8\xe4\x03\xdb\x7d\x60\x1f\x58\x67\x6d\xe3\xb1\xa9\x5e\x5c\xac\xf2\xf4\xd3\x44\xbc\x01\x2e\x0a\x26\x0b\xbd\x8c\x5d\xd1\x22\xe3\x50\xac\x84\xfc\x5e\x44\xaf\x27\xfb\xba\xeb\xf5\x74\xf0\x6e\x3f\x59\x65\x97\x2c\xee\xf9\x61\x10\x0d\xc6\xf0\xc9\xae\x05\x49\xb0\x4c\xfc\xd5\xa5\x84\xa7\xe3\xc3\xc1\x9d\x1f\xde\xf8\x91\xfc\x52\x9e\x42\x7a\x61\x10\x1e\xdd\xf3\xc1\xa0\xf1\xc1\xdd\x90\xdd\xf8\xc3\x66\xfd\x93\xe3\xbb\x3f\x18\x35\x3e\xb8\xa7\xfd\x71\xa3\xfa\xf0\x3e\x80\x8e\x9a\x1f\xdc\x03\xcf\x71\xa3\xfe\xe8\xbe\x0f\x4e\x1a\x1f\xdc\x5d\xfb\xb4\x59\xfb\xbe\x09\x88\xc2\xc6\x17\xf7\x7e\xd0\x9c\xe3\xa3\xfb\xa6\x20\x6a\x4e\xf2\x7d\xf5\x9b\x93\x7c\x72\xdf\x24\x44\xcd\x59\xbe\x17\xa4\xe6\x3c\x9f\xde\x37\x0d\x51\x7d\xa2\xa3\xbb\x2b\xd7\x67\x39\xba\x7f\x1d\x44\x27\x8d\x2f\xee\x1d\xf2\x69\xf3\x83\xfb\xc6\x3c\x08\x1b\x5f\xdc\xd9\x83\xc9\x2b\x20\x3f\xba\x4e\x8a\xcb\x8c\xc9\xe4\x02\x40\xe6\x8a\xe5\xa8\xc6\xc4\x91\xef\xee\xa6\xe0\xcb\x5a\x5b\xa2\xf1\xef\x6d\x4a\xa6\x3d\x90\xcd\x18\xee\x77\xe7\x92\x58\x65\xb5\x51\x0f\xee\xa8\xba\xbc\xd9\x8b\xa0\x0f\x2c\x30\x79\x2f\x7a\xe5\xe7\xcb\x4e\xfe\x7d\x91\x73\x9e\x5f\xc7\xbd\x10\x86\xa3\x86\x37\xa9\x46\x6c\xc6\xd6\xeb\xad\x73\x95\xf0\xba\x97\x5c\x94\xf9\x6a\xc3\x25\xab\xd6\xe8\x85\x07\x9e\xaf\xe5\xcf\x66\xff\xf7\x6c\x16\xcd\x5d\xa1\xea\xab\xa0\xab\x44\x9c\xd1\x64\xf3\xf4\x0b\xd7\x9c\x3d\x05\x07\xdd\xfb\x76\x8b\x0e\xe2\xbf\x1f\x29\x2d\xcf\x5e\xe5\x51\xaf\x3b\xb5\xfb\xd6\xff\xdd\x5f\xb7\x81\x12\x9d\x43\x02\xf7\x82\x7a\x7a\x92\xfb\x70\xb5\x67\x1e\x3a\x71\xd3\xec\xb3\x6a\x5f\x4e\xf5\x38\xfc\x63\x35\x6f\xfa\xa1\x35\xfc\xb8\x57\xb9\x75\xfb\xe3\xf0\x8f\xb8\x27\xfe\x45\xdd\xe3\xbf\xab\xf2\x7f\x29\x62\x15\x81\x27\xe9\xa7\xcb\x22\xdf\xb0\x85\x9f\xe6\xab\xbc\x88\x7b\xff\x6b\xb9\x1c\x8c\x87\xc9\x44\x92\xbf\x58\x9b\x7e\x91\x2c\xb2\x4d\x59\x91\x9f\x86\xf3\x22\xff\x22\x44\x98\x8c\x5d\xc6\xba\xea\x45\xfe\xa5\x06\xde\x1d\x55\xaa\xfe\x96\x93\xae\xc5\xdf\xeb\xc1\xcc\x9a\x62\xb5\xec\xbe\xf8\x8a\x64\x75\xad\xeb\x8c\xf9\x66\x7d\x8f\x5b\x72\x93\xd4\xba\x4a\xd2\x48\x16\x0b\x80\xc4\xc8\x0c\xcd\xf5\x29\x88\xa4\xfa\x94\xae\x56\xd9\xba\xcc\xca\xfa\xda\xed\xa4\x00\xe9\x9c\x2f\xda\xdd\x3b\xef\xcd\x2a\xfb\x67\x9b\xe7\x6b\x09\xd7\x3d\x33\x6d\xd7\x6b\xce\xb2\xe4\x5c\x36\x8f\xae\xf3\xb2\x36\x5f\x32\x9c\xec\x5f\x3d\x3c\x09\xc8\x83\x46\xd8\xa8\xba\x67\x90\xd5\x9e\xb6\x9f\x5f\xab\xf1\x9a\x41\xfe\xb7\x0c\x59\x00\xf4\xb0\x11\xab\x9a\x2d\x06\x95\xaf\xed\x29\xed\xde\x5c\xfe\xbf\x41\xa0\x62\x28\xd5\xc4\xdd\x3b\x55\xff\x75\x03\x7b\xc0\x24\x59\xd5\xaa\x61\xa9\x23\x96\x75\xb0\x8b\x82\xa1\xf9\xaf\x8b\xa5\x19\xb1\xb9\x73\x8f\x0e\x8f\x8e\x8e\xeb\xc2\xca\x97\xb2\xd5\x85\x2d\x79\xcb\x4a\xe5\x75\x47\xa5\x93\x66\xad\xe8\x4b\x1b\xda\x7a\x8d\x41\xbb\xc6\xa0\x5e\x63\xd8\xae\x31\xac\xd7\x18\xb5\x6b\x8c\xea\x35\xc6\xed\x1a\x0d\x48\x8f\xda\x35\x8e\xea\x35\x8e\xdb\x35\x1a\x88\x3b\x69\xd7\x38\xa9\xd7\x38\x6d\xd7\x38\x6d\x60\x2c\xec\x40\x59\x58\xaf\xa3\xc5\xcd\x3d\x82\xd8\x5e\x29\x74\xb3\x52\xab\x20\x2b\xb9\x0f\xfa\x3a\x9f\x7f\x5d\x53\x15\xe8\xa9\x25\x60\x0f\xcc\x36\xa7\x76\x34\xbf\x5a\x3e\x3b\xd3\xe2\x79\x4f\x0b\xca\x9d\xe2\x62\x45\xb8\x99\xbd\x04\xfd\x41\x4b\xc6\xbc\x5f\x8e\x6a\xc8\xe2\x0d\x32\xaf\xf4\x1b\xa6\x4f\x5b\xe8\x97\xbf\xe3\x1e\xa4\xb2\xeb\x85\x41\x78\x42\xaf\x7b\xff\x8b\x52\xda\x25\x82\x84\x41\x54\x1f\x3a\x6c\xe6\xf4\x5a\x6d\xe9\xe2\x7d\x03\xb7\x8d\x53\xcf\x72\x95\x27\x3c\x6e\xad\xde\xe6\x81\x46\x55\x6b\x32\xaf\x5a\x83\x18\x8a\xca\x8e\xb2\xa2\xa3\x6c\xd5\x51\x76\xf1\xe0\x63\xd9\xae\xde\x3d\xbc\x6d\xf6\x6f\x15\x16\x5d\x85\xab\xae\xc2\x8b\x07\x1f\xe7\x2a\x0e\xb3\xce\x58\xfd\x24\x90\x68\x9f\xc3\xb8\xa7\xdf\x0f\xca\x5e\xc6\xa4\x89\x33\x50\x43\x52\x17\x5b\x1f\xfa\x85\x3d\x41\x25\xbd\xb7\xd7\xc8\x6a\xa3\xe4\x74\x5d\x7a\x27\xe8\xbe\x7e\xf7\x7c\x03\x3d\xff\x6f\xdd\xd7\x27\xfa\x55\x26\xed\xee\xd5\x10\x10\xfe\x51\xfe\xed\xdc\x99\x54\x60\xa5\x70\x41\x2f\xeb\x40\xd4\x36\xa7\x56\xad\x9d\xf8\x27\x0a\x1f\xd2\xf4\xf0\xe8\x61\x8d\xdb\xf5\x76\x7a\x68\xff\xb7\x0d\x49\x50\x89\x49\x89\xa8\x28\xe5\xba\xf4\xa5\x9e\x39\xee\x39\xeb\x22\xbf\xcc\x16\xf1\xb3\xbf\xbc\xb8\x4e\x2e\xe9\x7b\xdd\x62\xf0\x2a\x4b\x8b\xbc\xcc\x97\x3c\x78\x92\x94\x59\x0a\x6f\x3d\x68\x28\xcb\x19\x89\x90\xb3\x4f\xf2\x50\x90\x9c\xb6\x01\xbe\xa3\x92\x21\xe8\x2a\x63\xe3\xef\x06\xeb\xe0\x5e\x58\xa3\x93\x87\x00\x5b\xd5\x6a\x42\x3b\x38\xfe\xfd\xa0\x1d\xde\x0b\xed\xe0\xf8\x21\xd0\x56\xb5\xaa\x7d\xb8\x9e\xf3\xf2\x77\x03\x39\xc4\xbd\xeb\xac\x28\xf2\xe2\x2e\xb2\x90\xd2\xa6\x1f\xe1\x5e\x74\x8f\x44\x6a\xea\xd4\x01\xd7\xb2\xe0\xef\x47\x17\x0f\x07\x3b\xc2\x3d\xff\x3e\xb0\x4d\x9d\x3a\xd8\x17\x39\xbf\x92\xda\x9a\x06\xfa\xff\x47\x0c\xcc\x7f\xc8\xc8\xfc\xfa\xd0\xe0\x1a\xa8\x57\xe3\x2b\xb8\xa3\x34\x3a\xe9\x2c\x1e\x1c\xd7\x8b\x1b\x58\x69\xbf\xd3\xe8\x69\xbf\x11\xa8\xad\xef\x7d\x1a\x71\x46\x40\xd4\xff\x35\x5e\x54\x9b\x36\x4f\xd2\x4f\x0f\xd5\x33\xb6\x65\xc0\x9a\x9e\x51\x0b\x7b\x41\xf3\xe8\xa1\x92\xc6\x62\xfb\x51\x9f\x23\xfe\xb5\xaa\xd4\xb6\xea\x57\x03\xd3\xd0\x2c\x37\xd4\x9e\x77\x6b\xcc\xeb\x23\x68\x62\x67\x1f\x1a\x54\x96\x5c\xf9\x51\x5d\xcb\xa5\x80\x95\x01\xf5\xea\xe2\xaf\x1c\x56\xba\xca\xd6\x02\xdb\x29\xf7\x42\xdc\x53\xff\x47\x75\xfd\xd8\xfa\x4b\x0d\x6d\xbe\x2e\xb8\x47\xe7\x75\x17\x6a\x35\x3a\xa0\xa5\x1a\x90\xbe\xf1\x56\x8c\xa5\x35\x10\xee\x75\xbc\x82\x5f\x6a\xc0\x30\x02\x33\x97\x1a\x6a\x53\xa0\xc1\x0e\xef\xb8\xdf\xac\xa0\x2c\xc5\x4a\x4f\xbb\x2f\x13\xda\x77\xae\x20\x28\xca\x44\xcc\x4a\x8c\xcf\x56\xab\xb8\xf7\x39\x29\x3c\xdf\xaf\xde\x49\x55\x27\xee\xd9\x06\xc4\x12\xc7\xda\xfe\x5d\x69\x1b\xcd\x63\xab\x05\xf5\xa6\xc6\xbf\x3b\x80\x31\x19\xa0\x3b\xc1\x31\x6f\x1f\x00\x50\x18\x8c\xf6\x80\x54\xb5\x62\x80\x0a\x83\xd1\x3e\xb0\x00\x2a\x2b\x85\x75\x1b\x67\xff\x35\x5d\x36\x30\xf3\x7b\x22\xfe\x3a\x29\x3f\xd9\xc3\xc2\x77\x54\xe9\x9c\x20\xc8\x20\x61\xad\xe8\xc5\x7d\xab\xfa\x07\x2b\x0b\x06\x37\x01\xec\x3e\x62\x4e\xde\x60\x46\x1a\xa6\xf0\x45\x47\xc4\x1c\x9c\x93\xa7\x10\xfe\x85\xc9\x7c\x35\xc5\x01\x21\xdc\xe4\x34\xb2\x62\x01\x7d\xf8\x50\xb3\x89\xfc\xf0\xc1\x77\x10\x76\x2e\x21\x61\x49\xbd\x9e\xef\xef\xa9\x58\xee\x6d\x90\xcb\x1a\x93\x9c\xe4\xc6\xc8\x2d\xc3\x96\x15\x26\x93\xf6\x6e\xe6\x65\x82\x1d\xab\x9b\xe6\xdb\xd2\xfe\xb4\x30\x91\x93\x7b\xb9\x95\x98\x43\x60\x4b\xd9\x4e\x43\x12\x61\xd7\x3d\xf8\x0b\x77\x5d\xef\x1b\xf5\x04\x26\x11\xfe\x0b\x27\x07\xa1\x1d\x44\xb9\x6e\xd6\xaf\x8c\x4f\x65\x02\x53\x6d\x55\x26\x06\x9c\x5c\x94\xbc\x48\x52\xee\xe0\xdb\x4b\xca\x63\xbe\x43\x78\x6f\xdd\x2b\x7e\xbd\x52\xf5\xda\xb1\x36\x69\xa0\x9b\xba\xd7\x7c\x68\x77\x57\x27\x2c\x5f\xd0\x76\x27\x95\xdd\x6f\x47\x12\xad\x45\xf6\xd9\xf2\xf0\xb6\xf3\x64\x05\x02\x64\x5c\x85\xc7\xdf\x89\xae\xad\x84\x27\x4f\x78\x67\x5c\x72\x13\xd8\x86\x4f\x9d\x65\xe2\xc4\xdc\xa4\xd6\x91\x21\x55\x96\x9e\x49\xfc\xc9\xb8\xf7\x56\x0d\x03\x58\x71\x09\xa1\x16\xb7\x5b\xc6\x3d\x13\x0f\x50\x94\xc8\x10\xb0\x1c\xbf\x85\x20\x39\xb6\x9d\x8d\x01\x86\x7a\xe8\xf6\xa0\x6e\x02\x9b\x2d\xbd\x03\x8f\xda\xc6\xad\x7c\x4f\x6a\xb8\xa7\x32\xff\x62\x9a\xac\x56\xbd\xa4\x07\x66\x6d\xf5\x14\x8c\x0e\xda\x41\x4a\x41\x4c\x55\x9a\x40\x0b\x66\x72\x2b\x63\x0f\x41\x90\x15\x83\x48\x42\xb1\xc7\xc8\xec\xf6\x13\xfd\x1a\x3b\xc9\x62\xa1\x5c\xe2\xec\x69\xa9\x52\x70\xc9\x34\x88\x2d\x23\x54\xcc\x60\x15\x49\xbf\x1e\x8e\x70\x41\xc2\x49\x71\xc6\x27\x45\xbf\x8f\xd8\xac\x98\x5b\x86\xa9\xc5\x5c\x87\xda\xd2\xf6\xc0\x32\x43\xe1\x7a\xb3\x5a\x3d\xb3\xf0\x7b\xbb\x43\x13\xdb\x96\x3a\xef\x8a\x2c\x04\x49\x3a\xad\x11\xce\xb8\x0a\xd6\xd9\x2c\x95\x11\x3b\x67\x7c\x8e\xf0\x8f\xd4\xe3\xea\xe7\x1f\x94\x39\xee\x0e\xcb\xd1\x17\xb4\xa4\xbc\x63\xfc\x5d\x88\xd4\xdf\x34\x01\x6f\x7d\x5e\xf3\x31\xd0\x11\x5f\x2a\x6f\x03\xfd\x7b\x7a\x1b\xc6\x7c\x17\xf3\x49\x47\xa4\x3e\xd6\x8c\x5f\xc0\xab\x98\x98\x7c\x8e\x73\x13\x35\x11\xd2\x7f\x59\x99\x7a\xe4\xc3\x84\xce\xf2\xf9\x76\xeb\x89\x3f\x90\x00\x5b\xfc\x98\x65\x73\x92\xc8\x50\x9c\xbb\x39\x72\xdd\xcc\xb3\x5c\xfc\x31\x43\xb8\x80\x32\x99\xda\x4d\xb3\x9e\x08\xff\x8d\x93\xdb\x6c\x50\x7e\xbe\x8c\x5b\x11\x4a\x5b\x96\xc9\x61\xa7\x65\x72\x68\x5b\x26\x87\xf3\xf8\x76\xa7\xcc\xfd\x05\xf7\x9b\xe8\x45\x2a\xf8\x43\x7d\x89\x5e\xaa\xf5\x99\x56\x21\xab\xcc\x5b\x2b\x56\x2f\xba\xdd\xc5\x45\x15\xcf\xa2\x3b\xa4\xd3\xdf\xb9\xc7\x10\xfe\x22\x3d\x30\x76\x95\x69\xa2\x4c\x39\xe8\x39\x6f\x20\x11\x2a\x84\x73\xa4\x7f\xdf\x64\x05\x15\x4b\xec\xd9\x9b\x57\xbd\x7c\xd9\x2b\xf3\x6b\xda\xfb\x94\xb1\x45\xe0\xa0\x1d\x4e\xcb\x32\xfe\xc4\xb1\x34\xc3\x7c\x5a\x96\x36\x5a\xfe\xc2\xb7\xdb\x16\xeb\x96\xa6\x9e\xbf\x23\xf6\xb0\x40\x57\x3d\x30\x19\x04\xee\x62\x7b\x22\x7a\x4d\x0e\xa2\x8e\x50\x67\x10\x5c\xab\x5e\x24\xc0\xc5\xed\x60\x63\xe4\x20\xc4\xff\x5e\x33\x21\xfc\x91\x7b\xb7\x6d\x00\x60\x93\x59\x72\xef\xd6\x8e\x49\x16\x7f\xe1\xd8\x0e\x49\x16\xbf\xe6\xb8\x3b\x22\x59\xfc\x77\xde\xca\x8d\x0f\xcd\xb2\x9d\x5a\xb3\x2f\xb8\x9d\xfa\x6c\x4f\xc4\x17\x51\xf1\x17\x4e\xbc\x9f\xbb\x82\x24\xfd\x46\x5b\xfa\xdb\x1d\x44\xd2\xa9\xbc\x81\x6a\x21\x3d\x6f\x28\x84\xf4\x34\xfe\x41\x56\x40\xaa\xdc\x75\x73\x70\x1d\x02\x7f\xa1\xb4\xfa\x2a\x91\x69\xf7\x12\xf0\x21\xd2\x39\xb4\xcc\xdb\x95\x7c\xbb\xc2\x6b\xc2\xb5\x87\x98\xc9\xa5\x45\x08\x59\x4f\x67\xf3\x78\x8d\x17\x84\xdb\x71\x46\xaf\xaa\x0a\x8b\xe9\xed\x2e\x5e\xe0\x0b\x01\x94\xdc\xab\xae\xab\x97\x17\xe2\xe5\x05\x78\xf3\x49\xbc\xbc\xaa\xf6\xc8\x4b\x3b\x77\xc7\x67\xf5\xa0\x17\xd7\x33\x0e\x49\x7f\x20\xa6\x07\x04\xdf\xda\x89\x4d\xc7\x6b\xcb\x0c\x62\x61\xe3\x5a\x68\x99\xcd\xf4\xea\xf7\x0b\x2d\x73\xb5\x27\xb4\xcc\x55\x67\x68\x99\xa6\x8b\xd4\x37\xee\x7d\x56\x59\x6e\xd2\xe9\x37\xee\xa5\x32\x6d\x4a\xdc\xf4\x82\x04\x73\x72\xed\xce\xaa\xa3\xdb\x4a\xc3\x71\x65\xd8\xfd\xaa\x32\xec\xbe\xb4\x2c\xd3\x61\x3f\xba\xa1\x82\x91\x2a\x0b\xf5\x4c\x99\xb3\x6f\xb4\x79\xba\x65\x89\x7e\xa5\x0d\xd4\xaf\xb1\x36\x5a\x5f\xee\x34\xc5\xff\xbe\x14\xac\x03\xc0\xca\xc8\xd9\xb1\x10\x92\xa0\xc0\xa4\x80\xb3\xc2\x30\x79\x05\xf1\x0a\xab\x7a\x21\xaa\xcb\x02\x84\x7f\x16\x7c\x14\x86\xc9\xf1\xad\x4c\xbf\x05\x96\xc4\xf8\x27\x4e\x6e\x59\xfe\x78\xc3\x73\x9b\xdf\xb5\xf9\x4c\xd4\xc9\x66\x22\xbc\xe6\x10\x6c\x6e\x91\x95\x69\xce\x18\xb8\x1e\xee\x70\x0a\xbe\x9d\xf1\xaf\x78\x91\x5f\xc7\x7f\xe3\x78\x95\x5d\x14\x49\xf1\x35\x7e\xcb\x31\x38\x37\xc6\x2f\x38\x5e\x66\x6c\xf1\x22\xcd\x59\xb5\x2f\xc7\x4f\x64\xf0\xde\xf8\x17\x8e\x39\xfd\xd2\x15\xb1\xf4\x5f\xcb\x0d\xe4\xaa\xae\x45\x53\x84\x55\x2d\x19\x82\x5e\xd5\x35\x9e\x30\x9b\xc7\x09\xde\xd4\x57\xf5\xba\xaa\xb0\x11\x0b\x77\x83\x97\xd5\xaa\x5e\x54\x2f\x97\xe2\xe5\xd2\x5a\xaa\x6a\xa1\x8a\xb1\x3b\xd8\x38\x56\xee\xf6\xae\xd7\x9a\xff\x65\x37\x39\xab\xfc\x29\x1d\x54\xbc\xd6\x54\xbc\x30\x54\x3c\xbb\xc3\x19\xda\xb2\x37\xb3\x1c\xe1\x56\x5e\x0a\x87\x08\xc8\x07\xac\xcc\xb4\x7e\xff\x69\x53\x7e\xb4\xd6\x94\xc1\xb4\xc8\x49\xd3\xd3\xd2\x0a\xca\x0c\x93\x66\x4d\x4b\x69\xcf\xdb\xed\x2e\x4e\x70\x5a\x4d\x8b\xc5\xca\x53\xf1\x32\x6d\x4f\x8b\x1a\xde\x83\x66\xe6\x49\xcd\x33\xd6\x44\xf0\x47\x0d\x9f\x4d\x7b\x3e\x4a\x93\xf9\xee\x7b\xe6\x43\x03\x65\x4f\x49\x56\x4d\x09\xd4\xfa\xdd\x27\x44\xa3\xbc\x36\x25\xb3\x79\xcc\xda\x48\x03\x00\x9c\x3a\xa2\x2c\x21\xb2\x0a\x4f\xd7\xc8\x2e\xdf\xcc\xc2\x3d\xa5\xed\xb3\x2c\x17\xa0\x28\x7d\x81\x39\xf2\x8a\x71\xc7\x7b\xdf\xe0\xd9\xdd\x99\x43\xee\xc7\x78\x0d\xd3\x05\xb2\x52\x49\xee\xea\x89\x94\x04\xfa\x79\xfe\x13\xbf\x5e\xc5\x05\xdf\xe1\x1f\x79\x3b\x5f\xc0\xbf\x40\x9e\xac\x0b\xe3\x13\xcf\x3e\xa2\xe8\x53\xb0\x49\xa6\x1c\x6e\xb7\x75\x47\x59\xe4\xba\x8f\x5d\xb7\x2d\x77\xfe\xc4\x83\x45\x7e\x1d\xc0\xa1\xc2\xbb\x15\xc2\x21\x88\x78\x3b\xa4\xf2\x69\x88\x13\x27\xf3\xa2\x31\x12\xff\x0e\x42\x14\x94\x94\xbf\xb8\xbe\xa6\x8b\x2c\xe1\x14\xd9\x9b\x22\x86\xe3\x20\xfd\xb2\xce\x0b\x5e\x92\xdb\xf7\x82\xcd\x2b\x86\xf7\x2c\x2b\x28\xe8\x6b\x63\x67\xa1\x7f\x3a\xf8\x69\x7e\x2d\x06\x2e\x96\x1f\xfc\x70\xf0\xbb\xb4\xc8\xd6\x3c\x76\x4a\xf8\xeb\xe0\x77\x32\xd5\x98\x8c\xb2\x87\xdf\x43\x96\xcb\xe4\xd2\xc1\x4f\x9f\x3d\x7e\xff\x38\x76\xd2\x45\xc2\x13\x07\x3f\xcb\x53\x49\x91\x0b\xf9\xc3\xc1\x59\x29\xea\x76\xf8\xf0\x8a\xaf\x4d\xb4\xd8\xed\x56\x77\x54\x2b\x82\xce\x4c\xc9\x6e\xd7\x1c\x23\x07\xff\xa5\xe2\x92\x34\xf3\x31\x64\x4b\x8f\xf7\x32\xd6\xa3\xc6\xfd\x70\xc6\x21\xfa\xf6\x90\x90\x16\x41\x18\xd5\xc6\xa4\xd2\x34\x48\x2d\xc3\x0f\xce\x0f\x7d\xde\xff\xc1\xe9\x65\xe2\xd8\xa3\x4e\x40\x8b\x9e\x6e\x20\xf8\x41\xe5\x58\x67\xe4\xf0\xaf\xde\x34\xf6\x66\x1f\x6e\xfa\x1f\xfc\x60\xde\x47\x31\x9a\x7e\x38\xfc\x70\x28\x0a\x3f\xdc\xf4\xe3\x0f\x37\x7d\xf4\xbf\xd1\x54\x54\x08\xfc\xf9\x23\xe4\x4d\xe3\xd8\xfb\xb0\xe8\x23\x34\xf5\x82\x47\xe8\x0f\x87\xb8\x20\x87\x7f\x15\x38\x8c\x83\xfe\x07\x1c\xf4\xff\x70\x58\xa9\x0e\x73\x5b\x67\x23\x9d\x30\x99\x15\xe0\xef\xb6\x4c\xaf\xe8\x35\x8d\xf9\x2c\x9a\xe3\x64\xc3\xaf\x62\x3e\x1b\xcc\xf1\x55\x5e\xf2\x98\xcf\x86\x73\x2c\xa8\x20\xe6\xb3\xd1\x5c\xa6\xfd\xe5\xb3\xf1\x7c\x27\x33\x11\x54\x21\xe5\xab\x2e\xaa\x9c\x59\x34\x90\x2d\xbb\xae\xc7\xfb\x44\x3f\xf5\x21\x56\x25\xef\x13\xe7\xf0\xd0\xc1\xb0\x40\xae\x74\x0d\xf1\xbb\xef\xfc\x6f\xf0\x92\x13\xfd\xeb\x72\xf1\x5b\x94\x09\x48\x64\x99\x13\x3b\x7d\xf9\x0c\xe5\x49\xd5\x06\x64\xf1\xc3\x56\xbe\x95\x44\xc3\xc6\x88\xd8\x9f\x04\x36\xa4\x46\x0a\xb4\x45\x85\xfc\xc0\xc4\x37\x65\x44\x96\xec\xb4\xaa\x26\x81\xb8\x04\x59\xf9\x58\xdd\x6b\x88\xf3\x6e\x4a\x98\x0a\x89\x78\xf8\xe1\xb0\x7f\x88\xf0\x8a\x84\x78\x43\xd2\x2a\x7f\xfc\xe6\x9c\x84\x93\x8d\xef\x23\x27\x10\x04\xe8\x25\x24\x9d\x6d\xe6\x68\x9a\xc2\x77\x29\xf5\x36\x38\x42\xb1\x13\xc0\xdb\x64\xba\xea\xf7\xe3\x15\x44\xe6\x74\x64\x81\x57\x55\xec\x47\x78\x05\x3d\xa0\xd8\x2a\xc5\x03\x84\x57\xbe\x6f\x9c\x84\xe1\x3b\x8f\x91\x54\xb1\xba\x43\x07\x21\x88\x25\x5a\x4e\x9d\x43\x27\x76\x02\x07\xe1\x62\xea\xc9\xc1\x11\x86\x33\xc1\x16\x63\x56\xa1\xa9\x94\x4b\xc2\x51\x19\x57\x3c\x4a\xe0\x1b\x19\x79\x53\x20\x17\x9e\x15\xb9\xe6\x1e\x47\xb8\x34\xb8\x84\x4c\xca\xa4\x84\xb6\xb7\x5b\xd1\x37\x66\xae\x7b\xc0\xd4\x94\x6b\xec\x96\x32\xc7\x24\x94\x91\x52\xbf\xc4\x99\x20\xc7\x6c\xe9\x31\x3b\xbe\xbb\xfe\x86\xab\xf6\x0f\x4a\x45\x11\x07\x65\x6d\xc6\x64\x31\xe1\x38\xf3\x4a\xed\x35\xef\x1c\xca\x54\x9f\xe9\x55\x52\x3c\xe6\x5e\x88\xa6\x3c\x4e\x3c\x5a\x25\x44\xff\x70\xd8\xff\xc3\x21\x76\x1c\xd4\x77\x0e\x9d\x7e\x95\xd5\xa2\x9c\x7a\xb2\x75\x92\x42\x7b\x28\x4e\x77\x3c\xd8\x14\xab\x9f\x85\x3c\x4c\x72\x0c\x0f\xff\x46\x19\x2d\x12\x4e\x49\x86\x79\xc0\xf2\xe2\x3a\x59\x65\xdf\x28\x49\x30\x07\xdc\x93\x12\xdb\xf4\xd2\x11\x20\x41\xc2\x47\x2b\xf8\xb6\x5b\x16\x70\x0a\x11\xde\x77\x98\x07\xfa\x52\x94\xd4\xb9\x55\x73\x6a\x20\x7a\x6d\x35\x24\x39\xa2\x89\xa6\x5b\x46\xc2\x49\x3d\xa7\x07\x15\xa3\x45\x13\xad\xf1\xa2\xc1\x2a\x29\xf9\x0b\x9d\xf0\xe3\x50\x45\x11\x3e\x0b\x6b\xa8\xf7\x20\x66\x2f\xd0\x5c\x88\xc5\x4e\x2a\x27\xe8\xf0\xaf\xde\xec\xaf\x1f\x0e\xe7\xfd\xf8\xc3\xa1\x60\x55\x8f\xfe\x70\x68\x4d\x59\xbf\xcf\xb4\x2e\x48\x8a\x06\xac\x6f\xa2\x15\x07\xc1\xa1\x83\xfa\x5c\xbb\x48\xeb\x98\xf4\xfd\x48\xf1\xc2\x94\x1c\x78\xce\xc7\x8f\xa0\x41\xfb\xf8\xd1\xc9\x8c\x02\x4f\x45\xd4\x84\xf4\x13\xa8\xe2\x6e\xab\x5a\x96\xff\x2a\x0e\xbc\xf2\x27\x3d\xd0\xd4\x77\x10\x19\x95\x98\xca\xe8\x24\x98\xfc\xd9\x69\xf5\x3a\x5b\x7a\xa7\xe3\x03\x3d\x31\x2a\xb5\x13\xf7\x23\xb4\xdd\x76\x95\x0f\xd0\x76\x1b\x45\x51\xfb\xc5\x10\x5e\x1c\xb5\x5f\x8c\xf6\x7d\x31\x86\x17\xa3\xf6\x8b\x23\x78\x31\x68\xbf\x38\xde\x03\xd4\xc9\x9e\xf2\x53\x54\x8d\xb3\xa2\x10\xee\x47\xe1\x84\x09\x56\xc5\x7c\x1f\x89\xed\xad\x05\x35\xb3\x3e\x54\x3f\xc2\x0a\xcb\xeb\xda\xa5\x09\x05\x89\x26\x84\xbd\x41\x90\xea\x34\xd2\x3f\xf9\xd4\x8f\x62\x7a\xce\xa7\x51\xec\x47\x3b\x2e\x64\x6d\xca\xa5\xb8\x4d\xd2\xe9\xaa\x4b\xe7\x24\x26\x70\xea\xfc\xc1\xe9\x53\x21\xc2\xf3\x60\x59\xe4\xd7\x0f\xfb\x88\x9a\xf0\xc7\xf2\xcb\x34\xbf\x5e\x27\x05\x7d\xf2\x55\xe7\x09\xf9\x59\x5d\x03\x97\xad\x7d\x5f\xae\x8c\xb5\x47\x83\x12\x72\x89\x60\xae\x7e\x18\x16\x21\x13\x9a\x15\xb1\xf8\xeb\x89\x45\x94\xab\x46\x5f\x66\x8c\xfa\xbc\xf6\x88\xba\xea\x3d\xcd\x57\x9b\x6b\x66\xd5\x94\x05\x82\x07\xd8\xd5\x2f\x15\x93\x59\x98\xfa\x8d\x12\xd4\x59\x5b\x41\x51\x7b\x16\x35\xc5\x90\x58\x72\x2d\x06\xc4\xc0\xf3\xda\xc6\x8b\x66\x68\x0b\x83\x98\x67\x74\xb9\x12\x05\x7b\x10\x74\x4f\x87\x7b\x71\x75\xff\xa0\x6a\x58\xe8\x9a\x87\x4e\x9c\xfe\xb3\xb8\xff\x7e\x04\xbd\x60\x1d\x08\x32\x62\xc6\xc3\xd1\xc3\xa6\x4c\x82\xc9\x1e\x36\xe7\xa6\x76\x37\x6e\xac\xc6\xee\xc4\x4d\x47\xbd\xbd\xb8\x61\x9d\xb8\x01\x0d\x91\x4c\xb8\xf3\x2a\x59\xbf\x60\xeb\x0d\xef\x0a\x05\xf4\xef\xef\xde\xbc\x96\x75\xed\xfd\xf7\xaf\x1f\xd0\x7c\xf7\xc3\xec\xaf\x1f\xd8\xfc\xd1\x07\x06\xfb\x96\x41\xf8\x86\xab\x66\x7f\x79\xfb\xb2\x53\x2e\x27\x7c\xbb\x75\x1c\x2c\x36\x42\xe7\x10\x42\x0b\xcc\xa8\x11\xbc\xe6\xae\x2b\x0b\xf9\x2c\x84\xf4\x6b\x42\xce\x14\xf2\x26\xa1\x7d\x8e\x2a\x0a\xce\x95\xcc\x71\x50\xa0\xa6\xd0\xee\x94\x7a\x54\xbf\xbc\x7d\xd9\x4b\xf3\xcd\x6a\xd1\x63\x39\xef\x5d\xd0\x1e\x0c\x64\xa1\x36\x4a\x29\x86\xa8\xac\xc1\xf2\xa9\xbd\xa3\xa6\xe7\x44\x48\x75\x4a\xec\x52\xb5\xe4\xd6\x97\xb1\x4b\x2f\xc4\x69\x3f\x42\x68\xc7\x49\xe9\x09\x89\x0c\x57\x81\x77\x12\x8f\xa3\xd6\x81\xa5\x3a\x94\x75\x46\x6e\xb9\xa1\x17\xeb\x24\xfd\xf4\x73\xbe\xfa\xba\xcc\x56\xab\xed\xd6\xa3\xc1\x82\xae\x0b\x9a\x26\xbc\x91\x4d\x53\x0a\xca\x25\x99\xcd\x71\x15\x18\x06\x3e\x30\xd9\xa9\x67\xf3\x3b\xae\x9d\x57\x79\xb2\xa0\x0b\x07\xdf\x52\xb6\xb9\xa6\x85\x8a\xb8\x81\xf7\xdd\x75\xaf\xee\xbc\xc3\xce\x1e\xde\x50\x06\x37\xd2\xcd\x91\x92\x08\xae\xdf\x70\x37\xbb\x62\xde\xd1\x18\xe1\x5c\xfc\x3d\xb6\x24\x87\xac\x96\xa0\x4b\x25\x34\x32\x18\x9e\x71\x81\x99\xea\x81\x30\xcc\x76\xd6\xa1\x18\x44\xc2\x22\x2e\xf0\xfb\xfc\x13\x65\xd9\x37\x5a\xc4\xcc\x3b\x3a\x42\x58\xdd\xbf\x40\x88\x6e\xe6\x0d\x8f\x11\x7e\x96\x5f\xff\x94\xb0\xc5\x8a\x16\x71\x2e\x06\xd6\xfb\x91\xd2\x85\x2a\xa9\xc6\x96\x79\x8e\x55\xee\x88\x43\xfa\x70\x20\xd6\x85\xf8\xe2\x1d\x2f\x68\x72\x5d\xab\x2c\x8b\xa0\xde\xe8\x48\xd7\xfb\x73\x91\x71\x81\xc2\x8e\xfa\xf5\x57\xe2\xbb\xe3\x91\xfe\xec\xe7\x22\xff\xf2\xb5\x0b\x22\xfb\x05\x74\x35\x1e\xea\x6f\x9e\xe5\xd7\xbf\xf0\x6c\x55\xd6\xea\xeb\x42\x51\xf7\xe8\x54\x57\x7d\x9a\xaf\x56\x34\xe5\x19\xbb\xec\xea\xa3\xf5\x56\x76\x04\xc0\x3d\xa3\xcb\x64\xb3\xe2\x75\xf4\xbd\x2d\xcb\xae\x76\xaa\x62\x15\xaf\xdd\x42\x27\xda\x49\x9d\xf6\xb3\x37\xaf\x3a\x2f\x94\xc5\xf2\xcf\xad\xfc\x76\xe2\xb9\xf0\x18\xe6\x28\xa0\x6c\x01\x29\x1f\x82\x45\x7e\xad\x5a\x11\x0d\xc7\xed\xc0\x24\x39\x34\x63\x68\xc4\xee\xdf\x3a\x71\xcb\xa6\x73\xcc\x64\xd3\x1c\xe1\x5c\x36\x2d\x05\xdc\x67\xf9\xb5\x9c\xa1\xb8\x8b\x98\x33\x05\xa9\x2c\xaa\x37\x99\x09\xee\x81\x9f\xff\xe9\xf9\xeb\xf7\xef\x2c\xa5\x65\x3c\xc0\xa0\x5d\x81\xfc\xca\x71\x28\x1f\x28\x5b\xc4\xa1\xd4\xdf\x47\x78\x5d\xe4\x29\x85\x70\x8d\x99\x8a\x47\x9f\xe5\x4c\x7c\xa6\xb4\x3a\x91\xfe\x25\xbf\x4a\x57\x79\x49\x79\x72\x19\x47\x38\x5f\x53\x26\x7e\x0d\xf4\x2f\xb1\x3f\xc4\x11\x86\x30\x62\xe2\xaf\xf8\xa0\xad\x77\xe9\x8a\xed\x55\x93\xf2\xa7\x5d\x8c\x0e\x34\x36\x82\xa7\x07\xe5\x66\x4d\x8b\x8f\x84\x43\xb6\xc3\xee\xc0\xfb\xf6\x1d\xfc\xad\x15\x67\x3f\x96\x01\x5c\x63\x8a\x6d\x7e\x13\xe1\x1b\xb5\x3a\x20\xdb\x0e\x5c\x8c\x6c\x34\x2f\xda\xed\x10\xda\xc5\xfb\x20\x12\x5b\x92\x60\xcc\x1a\x26\x75\x42\xae\xa5\xde\x63\x16\x98\x36\x60\x36\xf8\x62\x0e\x99\x5d\x52\xcb\x0e\xd0\x52\x5e\x09\x82\x70\x36\x25\xed\x89\x9d\x24\xe5\xce\xc4\x6b\xea\x8f\x05\xdf\x8b\xc6\xa1\x64\x7c\xd1\x38\x42\x38\x83\x1f\x03\x8b\x05\x26\xd5\x02\x4a\x83\xf7\xbf\xfe\xfc\xfc\xd9\xc7\xc7\x6f\xdf\x3e\xfe\xf5\xe3\xbb\x5f\x7e\xfe\xf9\xcd\xdb\xf7\xd3\x41\x34\x3a\x1e\x9d\x0c\x8f\x46\xc7\x71\x14\x1e\x0f\x8f\x47\xd1\xc9\x60\xd8\x52\x1a\x64\x4b\x2f\xf1\xd0\x19\xb7\xf6\xd2\xb7\x09\xbb\xd4\xb6\x36\x2f\xd8\xe7\x64\x95\x2d\x7a\x62\x54\x8b\x5e\x22\x4e\x84\x3d\xb9\x61\x57\x66\x48\xdd\xdd\x7b\x12\x2f\xbf\x64\x8c\x9f\x68\x9b\x18\x14\x98\xd3\x21\x49\x2b\x74\xc5\x9e\x3e\x76\xc0\x09\x59\x7c\x96\x8a\xda\x58\x0b\x07\x84\xd7\x4c\x99\x52\x4b\xa6\x38\xe8\xec\xdd\x75\x0f\x40\x69\x6a\x9b\x13\xa5\xc8\x8e\x4f\xa4\xdb\x10\xf2\x80\xc3\x36\xd7\x17\xb4\xb0\xd3\x4a\xca\x6c\x5d\xad\x30\xac\xbc\x2d\x72\xbc\x58\xf6\x28\x4b\xf3\x45\xc6\x2e\x7b\x59\xd9\x2b\xd7\x34\xcd\x96\x19\x5d\xf4\xf8\x15\x65\xe2\x9f\x1e\x44\xa3\x32\x9a\xc3\xde\xf5\xa6\x04\x89\x24\xe9\xa9\xe6\x0d\x22\xd7\xda\x6a\x49\x0b\x12\x4a\xf3\x2b\x21\xdd\xd9\xe7\x66\x9d\xd1\xb9\x13\x7a\xde\x69\x37\xf5\x83\x03\xcb\xc7\x69\x40\xa2\xe4\xa3\xa4\x27\x9b\xf9\xc1\x68\xa5\x36\x32\x21\x05\x5d\x58\x39\x82\x61\x22\x9f\x6c\x96\x4b\x5a\xb8\x6e\x2d\x12\xa1\xf5\x66\x5a\x27\x76\x05\x26\x0f\x2e\xbe\x72\xfa\x52\x99\x4a\x9d\x85\xdb\xad\x5d\x72\xc6\xf6\x10\xe0\x0f\xf9\x72\x59\x52\xfe\x83\xc0\x6d\xbe\xe1\xbd\x7c\xd9\xbb\xc8\x37\x90\x53\x7b\xd2\x68\xf5\x8c\xf5\xbd\x62\xbb\x0d\xd1\xbe\xa6\x24\x31\x75\x36\xc5\xad\x9b\x16\x7d\x47\x00\x36\x35\x2d\x1a\x8e\xef\x78\x89\x19\x8a\xdb\x65\xb8\x40\x93\xbd\x6b\x84\xef\x5b\x13\x94\x2c\x61\x85\x56\x69\x5b\x0d\x3a\xe3\x0e\xc2\x9c\xb6\x38\x4c\xab\x0e\x73\x5d\x47\xcc\xa5\x90\x15\x19\x71\x36\x7c\x79\x22\x91\x78\x90\x06\x59\xf9\x5c\x11\xb1\xc7\xba\xcd\xee\x7e\x70\x34\x99\x3b\x16\x09\x4b\xee\x20\xbb\x32\xeb\xe0\x07\x9d\xb2\x32\xdc\x5e\x01\x52\x70\x4e\x3c\x4a\x04\xc7\x29\x10\x0a\x04\xbf\xa6\x50\x3e\xc9\xc5\x31\x13\x16\x7d\xa5\xa9\xca\x51\x6b\xcc\xcd\x68\xb5\xd9\xd2\x13\x20\x4b\x72\x13\x9c\x42\x89\x02\xe1\x76\xe1\x71\xad\xda\x37\x67\x35\x42\x74\xef\x0c\xe9\xab\x99\x29\x8d\x3d\x71\x68\x59\x0b\x21\x36\xc4\xa1\x00\x92\xa2\x9d\xdc\x11\xc4\xa2\xba\x9f\xfa\x83\x0b\xf8\xb5\x67\x11\x6c\xb7\x8e\xe2\x93\x19\xeb\x71\xc5\x79\xf4\x52\xad\x9a\xd4\xd0\x6e\xb7\x5e\x41\x0c\xe8\x70\xf8\x16\x00\x87\x28\x56\x54\x20\x60\x92\x2d\x4b\x05\xa9\x4a\xb4\xe7\xf1\x40\xc8\x04\x86\xb5\x41\x6d\x59\x04\x66\x8e\xc5\xa4\xd3\x84\xf2\xc7\xbb\x59\x12\xee\xc9\xae\xb0\x3d\x22\xf5\x80\x7b\x79\x21\x37\x02\x7f\x95\x7d\xa2\x3d\x19\xd0\x3a\x70\x5a\x71\x70\xb5\x1a\xaf\x3d\x68\xba\x87\xc0\xca\xec\x5b\x8b\x3d\xd5\x59\x53\xb6\xf4\xe8\x59\xd8\xbd\xbe\xbb\xbf\x57\xec\x8d\xd1\x4b\xd0\xcb\xfe\x80\x5a\x1a\xb0\x6c\xe9\x6d\x20\xe9\x28\x90\x08\x3f\x0b\xa7\x61\x0c\x84\x84\x10\xee\xde\x5d\x90\xad\xa8\x65\x67\xa0\x34\x45\x90\xf5\x3b\x9c\xb4\xd5\x99\xcb\xba\xf5\xa3\x9c\xe2\xaa\x17\x43\xae\x9a\x44\x8d\x92\x4f\x1a\x90\xb2\x49\xd1\x27\x11\x82\xb4\x5f\x83\xf1\xd8\xe5\xb3\x62\xde\xd1\xcb\x42\x61\x9b\x9e\x93\xc4\xdb\xc7\x01\x1f\x73\x4e\xaf\xd7\xbc\xc7\xf3\x5e\xb2\x5a\xe5\xe2\x68\xa9\x66\xba\xb7\x4a\x8a\x4b\x5a\xf4\xf8\x55\xc2\x7a\xd7\xc9\x97\xec\x7a\x73\xdd\x53\xa1\x02\xbe\x38\xfd\xc4\xab\xa7\xc9\xef\x3b\x3d\xc1\x77\xcb\x6a\xef\x0a\xb7\x16\x30\x57\x5d\xcb\x94\x56\xa9\xe8\x2c\x35\xee\xfd\x0b\xad\x4b\xe2\xb4\x2a\x04\x59\xf9\xa7\x8c\xde\xb8\xae\xd7\x2e\xf4\x28\xda\x6e\xe9\x9e\x15\x6a\x81\x53\xed\x21\x13\xcd\x36\x2d\x6a\x95\x6a\x7b\xa7\x4f\xf5\x15\x8a\x0d\x3f\xec\x18\xba\xa5\xd0\x9a\xbb\x83\x68\x32\x41\x2a\xe5\x1e\x57\x29\xf7\x92\x32\xcd\x32\x27\x96\xa9\xf3\x12\x9e\xb1\x48\x3d\x5c\x64\x2c\x29\xbe\x3a\xb1\xb9\x8e\x94\x69\xf2\x04\x87\x8e\xf5\x4f\x5f\xfd\xee\xc9\x0d\x48\xd7\xfd\x9b\x47\x35\x53\x53\x5f\xa5\xe5\x40\x7f\x95\x96\xfe\xa0\x6a\x21\x3a\x5a\x51\xab\x3d\xf9\xa8\x9a\x19\x3c\x52\x9d\x5e\xd1\x2f\x15\x1c\xe7\xe7\xe7\x91\x2c\xbe\x48\x4a\x7a\x34\x32\x6f\x5e\x58\xbd\x2e\xe4\x41\x2f\xb6\x6d\xc5\x6d\xa8\x38\xf1\x1c\xa7\xcf\x51\x3d\x04\x2b\x2e\x88\x90\xcf\xab\x4c\x7d\xf5\x83\xbf\x54\xea\x7b\xd5\x75\xfb\x76\xcb\xcf\x42\x04\xb7\x59\x21\xc2\xfc\x1c\x8e\x89\xb5\x5b\x5c\xc7\xa9\x7f\xc2\xb6\x5b\x56\xab\x26\x13\xf4\x59\x05\x98\x9d\x91\xb0\xfe\xb5\x18\x32\x09\xd1\x19\xf1\xb8\xfc\x55\xbd\x16\x73\x4b\xb7\x5b\x41\x0c\x6a\xef\x34\x13\x4c\xd5\x04\xdb\xc8\x7b\x2e\x85\x37\xd8\xe7\xf6\x4c\xa7\xaa\xf9\xbe\x59\x53\xd1\x89\x7a\xfd\xba\xf9\xfa\x2e\xd2\x79\xd9\xac\xdc\x98\xb8\x37\x2d\xa8\x7e\x13\xb9\xbc\xb3\x9a\xa9\xcd\x7f\xe7\x76\xf3\x0b\xfb\xc4\xf2\x1b\x66\x04\x84\xb8\x07\xab\x89\x12\x8f\xf6\x21\x63\xfa\x5d\x84\x71\xdd\x50\x60\xcf\xf8\x7c\x22\xfe\x21\x82\xe3\x62\x60\xbb\x45\x55\xfb\x95\x96\x92\x54\x9c\xe5\x5a\xf2\x64\x09\xbc\x0f\xa4\xd5\x21\x1f\x4d\xbd\x82\x30\xcc\x48\x88\x62\x76\x5e\x1d\x9f\xa6\x8c\x58\x67\x29\x76\xe6\x9b\xa7\x13\xa0\x28\xeb\x19\x61\x46\xfa\x4c\xe5\xde\x64\x92\xe0\xf2\x69\x18\x57\x5a\x4e\x41\x73\x21\x94\x9b\xeb\x33\x86\x30\x3b\xaf\x80\x14\x50\xe7\x15\xa8\x55\x45\x3f\xda\xe9\x8c\xe6\xec\x2c\x94\xa7\x9f\x5a\xc5\x70\xd7\x7d\x68\x81\x45\x93\xc2\x35\x0c\x18\xb3\x23\x5c\x97\x9e\x2c\x41\x49\x6f\x47\x53\x3f\x8a\x2f\x2d\x54\x76\x1f\x93\xb8\xb9\x37\x74\xc5\xde\x84\xf7\x9c\xc5\xba\x38\x78\x25\x22\x5b\xc7\x66\x75\xdd\x39\xcd\xa7\x77\xbd\x96\x36\x31\x4a\x30\xec\xac\x68\xe9\x72\x6b\x95\xc5\x88\x66\x7c\xae\xc7\xd4\x49\xab\x9f\x93\x95\x91\x3c\xb4\x34\x24\x07\x2e\x04\x1f\x25\x82\x59\x52\x84\x8d\x25\xa9\xe7\xc1\x09\x89\x70\x69\xa6\x0d\xac\xe0\xaa\x0d\xc3\xd8\x1f\x09\xb9\x57\xae\x3e\x02\x77\x1d\x6a\x77\x2d\x1a\xcb\x01\x6d\xb7\x6a\x61\x8a\x23\x87\x78\x50\x2b\xb3\x7a\xf4\xcd\x33\x92\x32\x80\x16\x32\x06\xe2\x90\xa5\x7f\x57\x94\x92\x90\x01\x2e\x0f\xc9\x00\xa7\xe2\x1f\x76\x48\x06\x8d\xb3\xa5\xd1\x2c\x44\x60\xd1\x20\x56\x5b\x4c\x83\x82\x26\x8b\x5f\x5e\x30\x1e\x1d\x3d\x79\xee\xf1\x47\x09\x88\xcb\xb9\x0e\xe2\xed\xcb\xdb\xc9\x8c\xb0\x49\x76\x56\x4e\xb2\x7e\x1f\x65\x4b\x4f\x34\x97\x21\x42\xc8\xca\xe3\xd8\x8f\xc0\x62\x33\x8c\x33\x7f\x23\x21\x95\x25\xae\xeb\x6d\x48\x86\x70\xe6\x6f\xfa\xa2\xc0\x44\x0e\xdf\x3c\x4a\x80\xe4\xfd\xe8\x40\x56\xcb\x7c\x22\xbe\xc5\xa2\x3b\xb9\x18\x44\x9f\xac\x9f\x9e\x97\xd2\x62\xc2\x4f\x41\x57\x32\xc9\xce\x49\x38\xc9\x7c\xbf\xf2\xdb\x59\x93\x83\x10\x2f\x49\x38\x59\x9e\xa5\x93\xa5\x05\x5d\x7f\x29\xe4\x6d\x01\xdf\x12\xa1\xdb\xb5\xd8\x79\x20\xed\xac\x18\xdd\x5a\x43\x92\xed\x34\xf6\x2a\x54\x7d\xae\xce\xb7\x8c\xbc\x06\x12\xf1\x18\xda\x6e\x43\xe5\xdc\x63\xd6\x2d\x9b\x14\x82\xb5\xa8\x2a\x05\x42\xe7\x39\x58\x13\xe7\x28\x2e\x48\xae\xc2\xbc\xdb\x34\x92\xfd\x71\x70\x40\x48\xd8\xcd\x4c\xb5\x4a\xe6\x8a\x7e\xb1\x34\x08\xe7\xd9\xe1\x00\x1a\xcd\x0e\x07\x95\x08\x99\x90\x70\x92\x9c\x15\x93\x7e\x3f\x69\x25\x3f\x31\xf7\xf8\x83\x47\x09\x1e\x20\x1c\x1d\xc9\xd0\xed\xc0\xbb\x4a\xc3\x15\x92\x09\x9d\xb1\x7e\x32\x27\x26\xb1\x49\x52\xa1\xe0\x6b\x85\x02\xf5\xf2\x17\xef\x6f\x1e\xc7\xd5\xd0\x11\xa6\xd2\x29\xcc\x7c\xf3\xb8\xe3\x1b\x5b\x01\xa6\x61\xe7\x64\x36\xc7\x52\xc2\x36\x02\x97\x10\xb4\xb9\x4c\x8c\x20\x64\xe1\xe6\x75\xb7\xb1\x8c\xda\x81\x40\xdf\xe8\xf8\xa6\xd5\x71\x05\x4a\x55\xeb\x5b\x07\x78\x2f\xba\x9a\xfb\x78\xe7\x38\xc4\x22\x32\xc7\x04\xc1\x1c\x70\x26\xc6\x23\x27\x84\x9a\x3c\xd7\x07\x9e\xc7\x7d\x32\x40\x67\x21\x82\x49\x62\xf5\x2b\xfc\x04\x52\x03\x9f\x9f\x9f\xe0\x9c\xb0\x3f\x0e\xc6\x47\x38\x93\xa3\xcf\x91\xfe\x55\x98\x51\x67\xbb\x7b\x30\xff\x46\xef\xa4\x36\xc3\x77\x5d\x66\x6d\x91\xd3\x02\xb6\x89\x27\x5f\x39\xd5\x96\xa1\x71\xab\x48\x1d\xd5\x45\x53\x56\xeb\xef\x75\xeb\x8c\xbc\x4a\xf8\x55\x70\x9d\x31\xc3\x89\xea\xc7\x9a\xd9\x1c\xe7\x84\x4f\xf2\x33\x36\x31\x2c\x13\x97\x38\xc5\x2b\x42\x67\xf9\x1c\x6f\x64\xe6\x9e\x35\x59\x9d\x0f\x86\xa7\xd3\x51\xbc\x3a\x1f\x0c\x86\xd3\x61\xbc\x3a\x8f\x4e\xa3\xe9\x20\x86\x0d\x3c\xef\xaf\xcf\x08\xd3\x12\xd8\x5a\x4a\x60\xbd\x28\x5e\x9d\x45\x83\x13\x60\x29\x2b\x64\x25\x90\xee\x0d\xe2\x68\x70\x22\x58\x6d\x74\x3a\x70\xbd\x4c\x74\xd5\x8f\xe6\x60\x6a\x95\x12\x6f\x18\xb9\x2b\x74\x76\x76\xb4\x3d\x1a\xba\x19\x3a\x8f\x06\xc7\xd0\x44\x5a\x6b\x62\x18\xeb\xcf\x70\x02\x3f\x06\x73\x6c\x35\x9a\x21\xd7\xb5\x1e\x13\xd5\x74\x34\x86\xa6\xa3\xc1\xd6\x83\xc6\x55\x2f\x09\x3a\x1f\x84\x23\xd1\x4d\x7a\x36\x1e\x0f\x4e\x8f\xb6\xdb\xf4\x7c\x7c\x3c\x1c\x0d\x51\x47\xd7\xa3\x8e\xae\x4b\xf8\x31\xbc\x0f\x06\xeb\xb1\x6c\x80\x74\x62\x40\x52\xd0\x25\x1a\xba\x12\x9d\x1f\x8d\xc7\xc3\xb1\xeb\xa6\x67\x51\x14\x8d\xa2\x68\xa0\xa0\xda\x29\x65\xed\x66\xea\x6d\x88\xa8\x33\xc4\x6b\x12\xa1\x78\xa3\x3f\xf0\x36\x3e\x94\x1f\xe1\x42\x92\xe8\x46\x1c\x23\x42\x37\x0a\x07\xc3\x2d\x8c\x54\x30\xf0\xf1\xd1\x70\x10\x6e\x45\x99\xbb\x41\xa6\x26\xc2\x79\x9f\xac\x35\xa7\x69\xdb\x55\xd7\x2d\x80\xc8\x17\xcd\xa5\xe4\xe6\x09\x84\xfa\x54\x2d\x9f\x20\x59\xaf\x57\x5f\x3d\xf9\x06\x9b\xc3\x9b\xe3\x80\x67\xa6\xa0\x46\x70\xcf\x44\xac\x4f\xee\xff\x5a\x91\x7c\x81\x8b\x3e\xf9\x62\xa5\xf7\xd8\x79\x05\xda\xf1\x40\x8a\x05\x24\xc5\x3c\x78\xb7\xca\x6f\xd4\xa3\x0d\x7e\x9f\x1e\x28\xf5\x76\x68\x29\xce\xe1\x14\xee\xf5\xe5\xbd\xfc\x8b\xd7\xef\x7e\x7e\xfe\xf4\xfd\xc7\x57\x8f\xff\xf2\xf1\xc9\xaf\xef\x9f\xbf\x23\xe3\xb0\x5b\xa4\xb2\xd3\xfb\x77\xe9\x15\x3b\x4b\x6b\xce\x9c\x2a\xdf\x4c\x4b\x47\x5f\xe5\x1d\xa7\x96\x5e\xf2\xd6\xfc\xec\x94\xb7\xf0\x32\xcf\x3b\x6e\x7c\x47\x83\xdd\x0e\x8f\x06\xc0\x5d\x96\x79\xee\xa1\x6e\x49\x90\x8a\x7d\x08\x14\x4a\xae\x2b\xa5\x75\xfd\x0c\x49\x38\xac\xc3\xb9\xca\x84\x63\xc4\x93\x83\x68\xb7\xf3\x10\xe6\xc1\xa7\x57\xc9\x17\x59\x85\x24\x9e\x90\x6e\xd7\x79\xbe\x7a\x97\x7d\xa3\xe4\x24\x3a\x1d\xe0\x34\xf8\x98\x6c\x2e\xaf\x29\xeb\xb4\x73\xa0\xdd\x0a\x58\x4c\x77\x58\xca\xcc\x2d\x53\x06\xa3\x9d\x97\xe9\x35\xa4\x76\x7e\x9f\xf0\xeb\x59\x6d\x5a\x3d\x75\xe2\x31\xed\xac\x80\x3b\x75\x24\xef\xc0\x8f\xca\x75\xe5\xdf\x00\xee\x1d\x68\xe9\xba\xe9\xac\x5e\x32\x17\x02\x95\xeb\x76\x5f\xe0\xa7\xb8\x5e\x59\xe5\x48\x94\xce\x5d\xcd\xbb\x34\x38\x37\x00\xc5\xee\xc3\x48\x5b\xf1\x6f\x8c\xbb\x38\xc2\xfc\x8c\x84\x53\x79\xed\x14\x1b\x02\x66\xd3\xf6\x81\xa5\x50\xb5\x82\x65\xb6\x5a\x41\x56\xbe\xb8\x56\xa0\x1f\x77\xcd\x09\x00\xe0\x7e\x61\x65\xb2\xec\xb2\xdd\xec\xad\x55\xfd\x66\x5d\xb1\x64\xef\xad\xaf\x0f\x4c\x1d\x15\x0f\xd4\xfd\x15\xdd\x6e\x0f\x68\xf0\x51\xd7\x84\xcf\x94\x21\x52\xfb\xe6\xf1\xa0\xa6\x1a\xdb\x6e\x0f\xea\x67\xb2\x4e\xd1\xef\xb1\x36\x5f\x37\x27\x14\xf9\x81\xba\x0c\x01\x23\xbe\xb6\x2e\xaa\x3a\x41\xe2\x4a\xc7\x8c\x73\x12\xe2\xac\xda\xa9\xe1\x96\x22\x3f\xcb\x26\xfd\x7e\x2e\x44\x63\xb1\x11\x83\x2d\x4e\x3e\x17\x3b\x3a\xec\xcb\x05\x3c\x2a\xe9\x58\x73\xc0\xb3\x42\x9c\x15\x8b\x33\x36\x8d\xe2\x50\x22\x4a\x5f\x25\xd4\x50\xa5\xf6\x69\x75\xca\xa1\xcd\x53\x8e\xa5\x3f\xb9\x43\xf7\x75\xbf\x06\xad\xa6\xf3\xf8\xed\x0a\x8e\x83\xd0\xa8\x35\x2a\x5e\x03\xd3\xc9\xd2\x84\x77\xcc\x66\xe6\xd1\x7d\xf7\x26\xab\xac\xe4\x5d\x6a\x6d\x65\x61\xdb\xcb\x97\x7a\x1a\xa5\x86\xbb\x43\x65\x61\xb6\x8a\x50\x6d\x63\xd5\x49\x12\xe6\x5c\x4c\x35\x27\x61\xa7\xb8\xdc\x07\x45\x89\x2e\x92\x12\x58\x8d\xfc\xc1\x8e\x41\x6d\x89\x1d\x0d\xdc\xca\x83\x84\x68\x64\xd2\xa0\xdb\xe4\x77\x19\x72\x22\xef\x61\xc4\x01\x5a\xec\xfe\x3a\x4d\x9b\xa6\xb0\x42\xe0\xbd\xda\x04\xc8\x15\xae\x71\x54\xb3\x2e\x0f\xc2\xda\x8b\xf2\x26\x59\x47\x47\x6d\x9f\x20\x4b\xff\x07\x6b\xa6\x75\xd4\xb2\x15\xe6\x4a\x39\x5e\x66\xdf\xa8\x75\x1d\x71\xbd\x59\xf1\x6c\xbd\xa2\x62\x18\xd1\x91\x7f\x91\x41\x1e\x9a\xea\xdc\x12\x4e\xf8\x19\x9d\xf0\x3e\x19\xa0\x6b\xad\x27\xe3\xfd\x6a\x6b\x15\x45\xbb\x16\xb0\xc3\xc1\x03\x80\x1d\xfd\x53\xc0\x0e\x07\x77\x00\x3b\xb2\x81\x1d\x22\xac\x9f\xfa\x11\xe6\xfd\xc1\x3d\xc0\x1f\x8d\x1e\x00\xfc\xc9\x3f\x05\xfc\xd1\xe8\x0e\xe0\x4f\x6c\xe0\x8f\x1b\xc0\x1f\x59\xcf\x03\xcc\xfb\x63\xeb\x79\x88\x79\x7f\x74\xc7\xe0\xf4\xad\x47\x7b\x78\xe1\xd6\x1e\xa0\x75\xa4\xa2\x53\xc7\x89\xc3\x0e\x6f\xa3\xa9\x52\xf4\x86\x98\xa2\xf8\x42\x49\x98\x50\x62\x6a\xa2\x7a\xef\xf4\xef\x9b\x64\x55\xb7\x18\x6c\x6d\x1d\x77\x6f\x15\x16\x32\xb5\xee\xca\x1e\x2c\x81\x5d\x0b\xbc\x32\xf5\x56\x65\x8c\x10\x6a\x90\x64\x4c\x88\x08\x1d\x3e\x76\x8e\x03\x2e\x8b\x2d\xe1\xd5\xee\xc5\x72\xbf\xf3\x14\x5d\x98\xdb\x24\xe0\xf9\x70\x01\xab\xfd\x13\x82\xdb\xc1\xee\xf0\xd2\x72\xfc\xc3\x76\x1b\x4c\x99\x86\xf6\x82\x20\xe8\x39\x08\x61\xe7\x4c\xd1\x8e\xd3\xa7\x7d\xe7\xdc\xa9\xc3\xdd\xb5\xff\x5a\xea\xe1\x7f\x16\x95\x35\x36\xac\x2f\x27\x6c\x53\x02\x8f\x11\x3a\xd5\xfc\x34\xb6\x5f\x4a\x8f\x72\xbb\x24\x77\x5d\x2f\xaf\x5f\x50\xf0\xb3\x70\xbb\x65\xe7\xd4\x5c\x13\x17\xa2\x20\xaf\x5d\x6b\x74\x2f\x28\x65\xe1\x50\x88\xa2\x1e\x68\x4e\x95\xf1\xeb\xb9\xe8\x87\x9f\xdb\xb7\x56\xaa\xb8\xa6\x1f\xb7\x6b\xc8\x02\x45\x2e\x6d\x01\x23\x23\x5e\x2e\x2f\x4b\x7c\xaf\x90\x3f\x70\x42\xf4\x55\x8a\xaf\x6f\x52\x70\x59\x89\x1b\x19\x4e\x10\x5e\xc9\xb1\xea\xa3\x55\x2e\x8e\x85\xb6\x72\x01\xaf\x49\x38\x59\x9f\x95\x93\x7e\x7f\x0d\xea\xba\xd9\x5a\xc8\x24\x9b\xd9\x7a\x8e\x6e\x33\x22\x1e\x71\x02\x8f\x75\x99\x24\x3b\x4b\x84\x4c\x92\x9c\x65\x5a\x26\xb1\xe9\x38\x5d\x6d\x16\xb4\xed\x3f\xa0\xc7\x2e\x84\x1e\x01\x95\x71\xbd\x31\xd2\x65\x4b\x11\xbd\x4f\x0c\x7e\x65\x99\xed\x60\x88\x77\x92\x76\x2b\xa7\x1f\xd6\x40\xd4\x68\x00\xec\x27\x5a\x04\x0d\xe4\x6c\x89\x04\x85\xba\xa5\xc2\xb5\x2b\x2f\x2c\x78\xa6\xbe\x45\xb0\xe9\xb4\xcb\xd6\xa9\x20\x7c\xcf\xd7\x52\xe4\x29\x7f\x84\x10\xc9\x75\x71\xb5\xc6\xcf\x95\xad\x87\xd6\xa3\xeb\xfb\x1f\xdc\x93\x56\x3d\x33\xac\x8c\xc9\xe6\xa8\x97\x95\x3d\x96\xf7\x56\x39\xbb\x14\xdb\xc0\x66\xbd\xce\x0b\x0e\x06\xdb\x7c\x2b\x24\x55\xdd\x17\x43\x53\x8f\x89\x92\xc6\x3a\x52\x57\x72\x28\x56\x77\x38\xf2\xb5\x34\x82\xa8\xad\x29\x9f\x77\xdc\x12\xe6\xea\xaa\xa6\x32\x39\x03\x5e\x25\xcd\x94\xce\x42\xb4\xdd\xf2\x07\x2c\x39\xeb\x7a\x1d\xc6\xdd\xcb\x37\xbc\xcc\x16\xb4\xa7\x2c\x45\x8c\xb5\x51\x01\xe6\x1e\xfa\x16\xb1\x5a\x46\xf6\x9d\x71\xd1\x71\xa5\xf8\xd9\xb6\x07\xbb\xe7\x52\xf1\x6b\xbb\x6e\xfd\x5a\xf1\x71\xbb\xc2\x5d\x17\x8b\x37\xed\xea\x8d\xab\xc5\x6f\x1d\xd0\xfd\xa6\xcb\xc5\x8f\xb5\x86\xac\xeb\xc5\xec\xe1\xd7\x8b\x05\x9a\x14\x70\xef\xdc\xbc\x4f\xc1\x19\x5c\x2f\x36\x36\xf9\x7f\x7f\xf7\xe6\x35\x69\xa9\x30\x94\x8f\xbd\xe2\xf6\x18\x9c\x74\x9b\x77\x4d\xc0\xae\x2a\x37\xed\xe0\x63\x52\x14\xdb\xad\xdc\xe7\xd1\x4e\x3a\xc6\x7d\x21\xa3\xf0\xf4\xa8\xb2\xdd\x7c\x5d\xbf\xd2\x74\x9c\xc9\x3d\x3a\x53\xad\x2e\x15\x87\xb3\xa2\x53\x5f\xe5\x45\x83\x63\x57\x9c\xd2\xcc\xf6\x6e\x5d\x8a\xbe\xfc\x17\xf4\xb7\xaf\xaf\xe7\x4d\x7f\x23\x25\x20\x79\x07\x8d\x2b\x7c\xef\x40\x2c\x3d\xb9\xbf\x15\x72\xfd\x15\x36\x04\x8e\x83\x33\xc2\x27\x19\x80\x91\xa1\xbc\x4f\xfe\xe2\xd1\x59\x56\x75\x6a\x05\x0d\x7c\xa7\x3b\xad\x94\xcc\xb5\x8d\x44\xb5\x16\x4e\xb2\xb3\xc2\x88\xa4\x42\x3e\xcf\xbb\x07\x57\xcc\xb2\x79\x7f\x30\x3e\x7a\x54\xcc\xb2\x7e\xd4\xd9\xe5\xdf\x2d\x23\x54\xfa\x47\xb1\x6d\x84\xdb\xed\x5e\xe3\x24\x47\x32\x3c\xc9\xe5\x78\x6f\x93\x31\x95\x29\x97\xf6\xf9\xf9\x3e\xdb\xc7\xf7\xc5\xd7\x8c\x5d\x82\xb5\x4e\x9a\xd2\xb2\xec\x5d\xd0\xaf\x39\x5b\x68\x76\xa2\xed\x70\x2b\x98\x9e\x56\xd2\x0d\xce\x1e\x2a\xdf\xfc\xe0\xc8\xf6\x3a\x2d\xaf\x9e\xd4\x6d\xdc\xe4\x01\x95\x9f\xe7\x62\x2a\xb3\x7d\x76\x58\x4d\x3b\xd3\xa6\xbd\xa5\x6c\x85\xf5\x0b\x23\xd7\xec\xb5\x3e\x5e\xd0\x2f\x3d\x5b\x92\xb1\x47\xfb\xa9\xda\xfa\x38\xdc\xa9\x73\x50\x3b\x8f\xfb\x70\xd6\xaa\x08\xa9\xa6\xe7\xa8\xee\x47\xf0\xa0\x52\x78\xd0\x19\xeb\xe7\x73\xe2\x71\x77\x30\x1e\x9f\x9d\x9d\x3c\xf2\x8a\x69\x1e\x47\x7e\x8e\xd0\xf9\xf9\xb9\xf5\x68\xc5\xa9\x6c\xf7\x3e\x1a\x9c\x8e\x4e\x8f\x8e\x07\xa7\x0f\x06\x61\xd4\x02\x81\x57\xfd\x0d\xfd\x1c\x09\x78\xac\x48\x97\xad\xf9\xfd\x8d\x48\x9c\x28\x1b\x82\xdf\x82\xf6\x27\x06\x88\xac\x72\xe1\xd8\x6e\x9f\x81\x21\xa5\x18\x12\xce\xd5\xb6\xaf\xeb\x0d\x86\xa2\x94\xf5\x47\x55\x23\x3f\xdf\xdd\xc8\x49\xbb\x91\xf1\x40\x94\xb2\xfe\xc9\x2e\x6d\x72\xdf\x2e\x4f\x3e\x5c\x34\xcf\x9f\x1e\x25\xff\xf8\x07\x45\x67\xe1\x54\x9c\x1f\x0a\x74\x16\x2a\x75\x7c\x4c\xcf\xa5\x0d\x6a\x81\xb0\xc7\xed\x08\x1f\x45\xfc\x8f\x7f\x70\xf8\x82\x9b\x2f\x04\xef\x8a\x39\x7c\xc1\xc5\x17\xfc\x0c\xa2\x24\x10\x8a\xba\x35\xc0\x48\xdb\x1c\x19\xad\xb6\x00\x72\x8f\xd5\xaf\x14\xae\x14\x07\xf6\xe9\x84\x29\x63\xf8\x5c\x89\x3b\xb6\xb0\x20\x98\x59\x0e\xac\x91\xcd\xb2\x39\xf4\x31\xcb\xfa\x74\x6e\x34\x73\xf5\x3d\x4e\xdf\xde\xbf\x7c\xde\x92\x3a\xa9\x90\xa7\x40\xcc\x62\xdb\xad\xe4\x6b\xb6\xb0\x63\xdd\xdc\x41\x27\x74\x8e\x73\x12\x01\x3b\xed\xf7\xb3\x33\x71\xec\xc9\x1f\x91\xc1\xf8\x08\x4d\xc4\x66\x21\xeb\xf4\xb3\xf9\xa3\x7c\x62\xab\x70\xda\xa0\x3c\xf9\xe7\x41\xe9\xfb\x3e\x04\x7f\x8c\x26\x1c\x24\xb6\x0e\x40\x44\x8d\x7b\x41\x39\x69\xd0\x90\x3e\xbc\x4a\x20\x22\x5c\x3f\x94\x49\x2c\x74\xb7\x14\x1d\x35\x30\xdc\x6c\x6c\xd0\xd9\xd8\x56\x41\x1b\xcd\xcf\xce\x4e\xf6\xb5\xfc\xe4\xb7\xb4\x7c\x76\x76\x52\x35\xde\xdd\xf2\x70\x70\x0f\xcc\xa3\x7a\xcb\x5e\x17\xd0\xfa\x61\x30\x3f\x3b\x8b\x8e\x50\x3f\x3a\x3a\x3e\x3e\x1e\x44\x47\x8f\x54\xf9\x70\x6f\xe7\xf7\x0c\xab\xd1\x79\xa3\xdd\x79\xdf\xb3\xa0\x88\x8e\x6c\x30\x0c\x4c\xc3\x39\x6a\x77\xfe\xdf\xb5\x18\xce\x89\xa8\x12\x0d\x4e\x84\xd0\x53\xf8\x72\x63\x58\xe7\x37\xde\x00\x9f\x3c\xe2\x08\xe1\x0e\x1a\xfd\xa7\x57\x8b\x82\xd2\xac\x89\x62\x3e\x29\xea\x2b\x26\xeb\xdb\x6f\x2b\x78\xb3\x1a\xbc\x59\x07\xbc\x59\x27\xbc\xdf\xb5\xa4\xa2\xc1\x89\xab\xf0\x39\xf5\xa3\x47\xde\x60\x3c\xf6\xf5\xfc\x46\x28\xde\xbb\xe2\xba\x17\x5c\xe7\x7a\x50\xf7\xbf\x5d\xa4\xab\x87\x3a\x1c\x1c\x1f\x9d\xb8\x6c\x0a\x1b\x79\x18\x1d\x1f\x85\x5b\x16\x77\xf0\xd1\xee\xc5\x78\x7f\xaf\xfd\x48\xf7\xfb\x1b\x7b\xfd\xde\x85\x7a\xff\x3a\xad\x56\xc8\xd9\xd9\x60\xb4\xa7\xd3\xef\x5b\xa0\x66\x84\x83\xd1\xf6\x21\x4b\xb3\xdd\xe9\x8f\xab\x3c\x69\xae\xcd\x7b\x3a\xcd\xe1\x43\x7d\x70\x3c\x08\xa5\xd0\xb1\xa7\xe9\xef\x1b\x4f\xa3\xe9\x68\x5f\xd3\xcf\xf2\xcd\xc5\x8a\xde\x03\xf6\xc9\x3d\x60\x83\x98\xb3\xaf\xed\x7b\xe0\xbe\xbb\xed\xa8\xab\x6d\x90\xb1\x3a\xc5\x02\x21\xd8\x7a\x94\xf4\xa9\x66\x30\x24\x84\x68\xdf\x4f\x6d\xdd\x54\x8d\x15\x30\xe4\x47\x58\x5d\x50\x69\x9e\x08\x17\x53\x62\xa2\xb9\xf4\x5e\xa0\xc0\x25\x99\xcd\x77\xe4\xeb\x7e\x36\x27\xf4\x30\x17\xf2\xae\xd1\x1c\xf7\xd9\x1e\x60\x5b\xac\xf0\x9f\x05\x96\xf9\x02\xdc\xc8\x02\x57\xc8\xe2\x12\x60\xdf\xcf\x65\x24\x80\xac\x01\x71\x2e\x20\xce\x1e\x06\xf1\xc9\x3e\x55\x9f\x0d\xb4\x0d\x6e\x84\x07\xe3\x31\x0e\xf7\x08\x95\x60\x85\x0e\xe3\x59\xae\xf2\x1c\x8e\x76\xb8\x86\x66\xcc\xfb\xd1\x1e\x50\x5a\xfc\xf2\x01\xd0\x0c\x30\x9c\xac\xf6\xc2\x33\xf5\x1a\xbd\x4b\x0c\x45\x73\x42\xc5\x79\x06\xc5\x9f\xaa\xb6\x0e\x42\x84\x79\x7f\xb0\x17\xba\x8e\x7d\xee\x77\x83\x0e\xa0\xb1\xa0\x03\x68\xeb\xd0\x45\x77\x41\xd7\xe2\xbf\x0f\x80\x6e\x84\xab\x73\xe1\xbd\x20\xf6\x87\x12\xc8\xc1\x48\x43\x39\x90\x05\xd1\x51\x13\xa9\xf5\x09\x47\xf1\x9f\x9b\x28\x1e\xed\x1d\xc4\xf7\xa3\xf8\xbb\x06\xd1\x1c\x42\xd4\x1c\xc2\xa0\x31\x13\xc3\xce\x41\x44\xfb\x06\xb1\x8f\x5d\x81\x09\x84\x86\xff\xa0\xd0\x9e\xfd\xf5\x75\xef\x47\x68\x52\x63\x0b\xb9\x1f\x61\x71\xb2\x57\xa7\x2a\x65\xbd\x7d\x17\xeb\x4a\x34\x23\xa0\xe2\x44\x28\x8e\x8a\xa5\xeb\x86\xea\xe2\x40\xb0\x32\x08\x66\xe2\x95\x24\xd2\xab\x52\x70\x37\x8f\x1e\x26\xe7\xe7\x21\xf2\xcb\xfb\x59\xc6\x3e\x1e\xf7\x7b\x8c\x50\xf0\xba\xf6\x18\x05\x84\x9a\xdf\x65\x92\xdf\xdd\x3b\xcc\xfe\xef\x30\xcc\xdf\xc0\x18\xa3\xc1\x31\xf6\x85\x38\xfa\x70\xde\x48\xd5\x61\x7f\x30\x1e\xf7\x69\x3f\x7a\x18\xb3\xfc\xcd\xbc\x52\x08\x74\xc7\xd8\x07\xb9\xee\x5f\xca\x30\x7f\x33\xbf\xfc\x2e\x08\xff\x19\xa6\xf9\x9b\x79\x66\xe5\x71\x83\x6b\xfe\x35\xbf\x05\x9b\x7b\x59\xa9\x61\xb6\x0f\xe4\x9e\xbf\x99\x79\xee\x1b\x8d\xa6\x4b\x4b\x73\x08\xe4\xf9\xdf\xca\x5e\xbb\xa4\x6f\x6b\x94\x4f\x6c\x4c\xb5\xae\x46\xab\x16\xf6\xe3\xc9\x6e\x21\xea\x6e\xa1\x53\x96\xb6\x9a\xf8\xf9\x7e\x20\x3a\x45\xe6\x3d\x4d\xb4\xa1\x48\xf3\xf5\xd7\x6e\x06\x2c\xdd\xe7\x43\x84\x0b\x69\x38\x21\x2f\xf3\xea\x27\xa0\xca\x9d\x4b\xea\x06\xab\x37\xdb\xad\xbc\xfd\x80\xc3\x77\x01\xdb\x49\x41\x18\xc2\x45\xdd\x8f\xb4\x61\x06\x26\x7b\xe2\x2d\x97\x47\x59\x93\xef\xd5\xe4\xf2\xa4\xb8\xa4\xfc\x1d\x4f\x0a\xde\x15\x3d\x41\xdd\xbe\xd4\x1a\xee\x6e\x48\x06\xd6\xda\xdb\x50\xb1\x17\x02\xf9\xe1\x73\xb6\x68\x7d\x56\xd8\x37\xaa\x80\x86\x1a\x0e\x8d\x96\x9c\x9f\x15\xbe\x44\x53\x55\xd4\x67\x4a\x72\xc7\x19\x29\x7c\x66\x9b\x27\xb8\x2e\x3b\xe3\xae\xcb\xcf\x0a\xb0\x8a\xcb\x49\xe6\x47\x13\x21\xc1\x0b\x41\x1e\xd1\x59\xde\xe7\x4a\x59\x9a\xf7\xd9\xdc\xdc\x85\x67\x67\x11\x1d\x82\x15\xe6\x3e\x87\xef\x9c\x84\x96\xb2\xbe\xab\x99\x4e\x5f\xb4\x92\x72\xe3\x83\x56\x53\x03\x33\xcc\xfa\x19\xb2\x22\x3c\x34\xd4\x28\x10\x1c\xab\x93\x02\xdb\x77\xf5\x7b\xe3\x95\x4c\x05\x5a\xb1\x34\x0d\xb4\xd1\xdb\x11\x42\x42\x91\x62\xa3\x22\x8e\x6c\x6b\xc4\x5b\xed\xd9\x64\xf9\xa8\x84\x68\x92\x9f\x0d\xc6\x47\xc0\xc8\x72\x70\x0a\xb3\x7d\xdc\xda\x0e\xd5\x7b\x9c\x44\x4d\x14\x95\x8e\x00\x29\x9d\x83\x2b\x5c\xb7\x1e\xb9\xa2\xd8\x63\xc0\xd3\x7d\x3f\x0c\xfe\x63\x1d\xa1\x5f\xc4\x38\xc0\x9d\x11\xa9\xb5\xb5\xb5\x0d\xbd\xce\x78\xfd\x71\xdf\xdd\xdd\x9b\x3d\xe6\x37\xec\xac\x32\xd1\x15\xed\x48\xef\x2f\x79\xab\x76\x7e\x0e\xf3\x64\xc5\x7c\xb7\x7a\x8a\xd9\xf9\xf9\x79\x88\xa5\x03\x72\x88\x70\x57\xd0\x1a\xe9\x80\x57\xdd\x99\x02\x7d\x8a\x83\x75\x75\xaf\x90\x90\xda\x8d\xe0\x94\xc6\x7f\xf3\x74\x3c\x9c\xc2\x72\xf2\x47\x08\x97\xc6\x14\x53\x79\xf6\x85\xa2\x61\x9f\x5b\x4d\x8b\x45\x90\xcc\xb2\x3f\x96\xe6\xd6\x41\x94\xcb\x4b\xef\xb7\xe4\x70\xf6\xd7\xfe\x87\xc3\xd0\x3f\x7d\xec\xff\x3f\x89\xff\xcd\xff\x38\x3f\xbc\xac\x2e\xc1\xff\x62\xdb\xe0\x9f\x45\x47\x53\x27\x74\xfa\xb4\x16\x66\x20\xae\x3f\x56\xd7\x47\x7f\xb3\x6e\x7a\x26\x10\x56\x30\x3a\xb4\x9d\xef\x69\x65\xe5\x2c\xf3\x94\x54\xbe\x57\xca\x19\x0e\x7c\xbd\x9b\xce\x56\xe8\x7c\x3c\x1e\x9c\x8e\x05\x0b\x19\x1f\x0f\x47\x23\xed\x63\x0b\x6c\xff\x7c\x7c\x34\x8c\x4e\xd1\xad\xc7\x7d\x32\x44\xe7\x7e\xe4\xba\xca\x05\x6b\x30\x3c\xc5\xd1\x69\x84\xa3\x93\x53\x34\x49\x73\xc6\x33\xb6\xa1\x62\x1d\x24\xe0\xce\x58\x3c\xfc\x9b\x9c\xb0\x5a\x03\xec\x0c\xdc\x64\xee\x6b\x00\xd7\xbe\x63\xd2\xfb\xa6\xef\xe5\x3e\x78\xdb\x9c\x9d\x45\xe1\x96\xf9\xb2\x25\xe9\x35\x99\x8b\x6d\xe9\x4e\x90\xb2\xa5\xa7\x70\xc7\xce\x84\xac\x0d\x08\xe3\x3e\x89\xd0\x59\x88\xa4\x5f\x92\xfa\x8c\x21\xcb\x2d\x79\x10\x8e\xaa\xba\x83\x76\xdd\xf3\xf3\xa3\x6d\x74\x3a\xc0\x47\x43\x97\x6d\x45\xbb\xd6\xb7\x00\xb5\xf9\x78\xd8\xf5\x71\x34\xd8\x0e\x06\x23\x2c\x9a\x71\x8f\x86\xa2\x81\x46\x4b\x32\x8d\x1c\xd3\x2e\x4b\x1d\x86\x49\xda\x7d\x32\xcd\x17\xb4\xb7\xce\xcd\x45\xbc\xe8\x73\xd4\xd9\xe7\xc9\x76\x30\x0a\x31\xf4\xae\x3b\xed\x06\xc0\xd8\x9f\x55\x84\xfa\xc2\xce\x09\x18\xf0\xbc\xf2\xa2\x6b\xd8\x74\x7a\x9d\x1e\x0b\x34\xe0\x45\x76\x3d\x95\x7f\x3c\x14\xd7\x02\x71\x96\xfd\xed\x87\xb2\xff\x87\xc3\x4b\xec\x40\xf4\x95\x2a\xcd\xe2\x5b\x08\xcb\xd9\xf4\xfc\x55\x21\x0c\x26\x7a\x71\x48\x63\xe2\x09\xa2\x7d\xe2\x10\xc7\x8e\xb9\x63\xbb\xf5\xfd\x52\x6d\x3d\xd6\x7d\xf6\x24\x3f\x13\xec\xd7\xcb\xfb\x42\x7c\x30\x52\x4a\x6e\xf9\xb1\xc3\x46\xc9\x61\x7b\x04\xf7\x81\xca\x86\xa2\x9d\xd6\xe0\x8e\x14\x06\x6d\x1f\x30\xcd\xee\x74\x50\xe3\x03\x88\x27\x2a\xe3\xd0\x38\x10\x29\xc2\x76\x33\x6a\x85\xe2\x6c\x85\x5f\x63\xc1\xc2\xe3\xd8\x49\x9c\xae\x6c\x23\xf9\x0e\xe9\x68\x46\xcc\x93\x11\xd9\x02\xe6\x15\x28\x48\x54\xb8\xba\xa7\x39\xe3\xf4\x0b\xf7\x6e\x77\xe8\x9e\x7e\x54\x3c\x9e\xe0\xe3\x47\x5a\xbe\xca\x17\x9b\x15\x25\x07\x21\x06\x9f\x9c\x64\xb3\xd2\x17\xcf\x4a\x23\xd9\x1a\x36\x66\x15\xeb\x2c\x3c\xc3\xfc\x24\x98\x92\x95\x19\x9c\x72\x24\x37\x29\x04\x61\x82\x88\xb3\xa0\xe9\xca\xc1\x26\xb0\x37\x23\x14\xc3\xe5\xf5\xde\x10\x7c\x56\xd4\x3b\x84\xf9\x9e\xc0\x76\x1c\x73\xeb\x16\x9b\xe1\x62\xe7\x79\x42\x82\xf0\x46\x47\x08\xb9\x6e\x61\x0d\x74\x5a\xc4\xb7\xc6\x9f\x62\x87\xf4\x90\xd1\xa4\x1a\x7d\x5e\x85\xec\x24\xa6\xf4\x1e\x8c\x3e\x08\x97\x05\x49\x3c\xe6\x1d\x8f\x91\x98\x3c\xf8\x79\x84\x10\xce\xe0\xe7\xe8\x18\xd5\x42\xea\x59\x2b\xcf\x75\xa9\x3d\x00\x5a\x0d\x80\xca\x0c\x92\xa5\x6d\x2f\x66\xda\xa0\x35\x17\xe6\x5e\xc6\x7a\x66\x3b\x97\xee\x7f\xb7\x3b\x65\xcf\x5c\x24\x37\x25\xb9\xdd\x61\x8a\xcc\xb1\x6e\xc6\xe7\xbb\x2a\x43\xa7\xb6\x09\xd0\x3b\x6b\x00\xa1\x19\xdb\xbe\x27\x0d\x03\x64\xd3\x81\x0a\x2d\x7c\x5b\xdd\x40\x05\x3a\x8b\xf2\x93\xaf\x56\xc0\x4c\xab\x72\x90\xb1\xf5\x46\x75\xe4\x51\xcc\x82\x55\xc6\xc4\x9f\x14\x02\x0a\x5b\x21\x6e\x21\x6c\xa5\xc6\xb6\x8a\x7d\x7f\x93\x14\x6c\x4f\xd4\x69\x99\xd2\x44\xca\x06\x86\x8b\x08\xe4\x30\x54\xcc\xf2\x39\x61\x16\x7f\xa0\xd0\x10\x04\xaa\x90\x11\xf5\xaf\xf3\xcf\xb4\x6d\x9b\x27\xc1\x5e\x27\x05\x65\x42\xdc\xaf\x1e\xd4\x17\x4f\xaf\xb2\x95\xbc\xfc\x50\xe8\x90\x6f\x15\x65\x40\x91\x68\xbe\x6d\xdf\x2f\x30\x56\x9f\xb2\xcc\xd0\x2b\xa6\x81\x14\x43\xb3\xe5\x57\x1d\xb6\x4c\x3f\xeb\x94\x3b\x56\x16\x0d\xb9\x1a\xeb\x39\x75\xfa\x84\xee\x10\xc2\x1c\x82\x26\xaf\x72\x46\xef\xea\xf9\x76\xa7\x5b\xb5\x08\xcc\x0e\x8f\x4b\x6f\x7a\xdc\x5e\x94\x75\xec\x72\x04\x21\xf2\xae\x92\xf2\xcd\x0d\x33\x4e\x7f\x39\xd2\x01\x49\xf9\x2c\x17\x62\x91\x62\xa8\xd9\xc4\x91\x38\x72\xa4\x2d\x7a\xc5\x52\x49\x32\x85\xd3\x01\x4c\x95\x38\x3b\x00\xb1\x40\xb5\x29\x14\x66\x71\xd6\x8a\xb2\xa4\xde\xb4\xb3\x76\x56\xd8\x11\x53\x8c\x50\xec\xd9\x3d\xb9\xae\x90\x3a\x0e\x08\xc9\x5c\xf0\xd2\xf6\x32\x84\xb0\x6c\x0a\x55\x2e\x41\x72\x62\x2b\x17\x37\x99\xf1\x85\xcf\x98\x0c\x0b\x53\x05\x02\xd0\x58\x7e\x42\x97\x79\xf1\x40\x5c\x03\xb9\xc0\x57\x1e\xad\xaf\x12\x45\x61\x32\xd3\xa5\x6c\x52\x73\x5c\x6b\x46\x1f\x2f\x79\xc3\x4f\xf0\x9f\xed\x0a\x5a\xac\xf7\xa4\xf6\xfa\x3f\x67\xfc\xca\x5e\x1c\xea\x24\xac\x3e\xb7\xd3\xd6\xb6\xf2\xd5\x72\x2b\x5f\x2d\x45\xda\x77\x6c\xc2\xfa\x7d\x89\xc8\x2a\x27\x12\x9b\xdb\x41\xc9\xc0\x79\xbf\x38\xcb\x8d\xeb\x4b\xbf\xaf\x09\x2a\x9f\x15\xf3\xc9\xdd\x98\xca\xd0\x4e\xb2\x3f\x58\xa5\x1e\xaa\x1d\x1c\x30\x0f\x18\xfd\xc2\xef\x1a\x90\xe5\x5b\x64\xfa\x58\xd0\x2f\x8a\x20\x3a\x30\x28\x58\x8f\x32\x7e\x81\xe8\xe7\x05\xfd\xfc\xaf\x68\xdf\x57\xed\x5f\xb4\x09\xed\x41\x14\xa4\x72\x15\x8b\x26\x92\x16\xfd\x3c\x84\x30\xac\x06\xda\xf6\xcc\x72\x54\xb7\x15\xf7\x85\xad\x09\xc6\xa4\x11\xd0\xe0\x12\x1c\xb9\xae\xe6\x07\x55\xea\x71\x65\xc9\xc0\xe7\x13\xd6\x5e\xf0\x10\x95\x89\xed\xcb\x89\x6d\x2d\xf2\xea\xa8\xad\x6d\xaf\xa7\xfa\x87\x10\x72\x05\x4f\x68\xd7\x66\xae\xcb\x4c\x6d\xd9\x53\xf5\x09\x3c\xef\x8c\x08\x2b\xd6\x47\x72\xd3\x79\x59\x0e\xa7\xdd\xdc\x70\x74\x51\xcf\x28\x02\xe5\x86\x93\xe7\x35\x02\xac\x27\x7e\x9e\x50\x35\x01\x13\x44\x89\xf9\x6d\x77\x9c\xae\x68\xc2\xde\x8a\xcd\xdd\xc6\x81\x8a\x51\x6e\x76\x7e\x45\x27\xb8\x55\x0e\x93\x2f\x8e\xf9\x1d\x5f\xf0\x1b\x4a\x19\x10\xb1\xda\xc7\x5f\xb0\x32\x5b\xd4\x89\xad\x72\x8e\xe3\x35\x3f\x2b\xa4\x15\x3b\x6a\xa7\x87\x98\xd2\x7a\x63\x2f\x3a\x5e\xc1\xd6\x2f\x45\x7d\x3a\xc9\xfb\x7d\xe4\x7c\x90\x6e\xfb\xb3\x7c\x3e\xf5\x18\x89\x30\x04\x26\x8c\x59\x9f\xe8\xfc\x22\xb7\xe2\x9b\xb8\xc0\xb2\xd5\x98\xed\x6c\x58\x9f\x7c\xed\x92\xe5\x9b\xdd\x82\x4d\xb4\x5c\x72\x88\xd7\x85\x16\x39\x58\xf3\xd6\xa8\xee\x68\x70\x93\x17\x8b\x9a\x9c\x53\x8d\xba\xf2\xe3\x91\xb5\x26\xe0\xe1\xc3\x40\x52\xea\x6a\x9d\x55\x49\xe9\xf9\x0e\xb2\x3e\x5b\x32\x6a\xf9\x2f\x93\x51\x71\x4e\x40\x74\x3e\xbe\x47\x74\x56\xc1\x82\xea\x84\x5d\xa3\x68\x8f\xa3\x4a\x26\x11\x92\x99\x05\x7f\xf6\x30\xf8\xeb\xe1\x78\xb4\xe0\xd1\x0c\x6a\x43\x42\x6c\xa9\x64\xa3\x49\x71\x4e\xc2\x49\xe1\xfb\x46\x49\x28\xf6\x02\x99\x43\x2b\x9f\x52\x9d\xfd\xaa\xb0\x92\x67\xe5\x53\xaf\x56\x8e\xc5\xd6\x13\x33\x19\x27\xdc\x2e\xf6\x7d\x15\x9a\x15\xce\xaf\xcc\xf7\x27\x0c\xd1\x60\xc3\xca\xab\x6c\xc9\x3d\xd1\x1a\xea\x08\x89\x59\x18\x09\x19\x94\xa9\x9c\x16\x55\xc4\x47\xf9\x2c\x84\xe0\x6a\x3c\xb3\xb9\xca\xd9\x4e\xed\x9d\x8d\x7b\x62\x20\xb8\xc0\x14\x09\x06\x04\x5a\x01\x51\x62\xc5\x00\x11\x9b\x71\x99\xaf\xea\x52\x6a\xb5\x0e\x1d\x07\xe7\xe4\x20\x12\x47\x8e\xc6\x16\xec\x47\x93\xec\x9c\xf8\x91\xeb\x1e\xe4\x32\x5a\x95\x54\xd1\x65\xe7\x24\xb4\x52\x12\x66\xf3\x98\x06\xe9\xcd\xc2\xab\x29\x42\x2b\x85\x6a\x72\x5f\xb4\x00\x9e\xf7\x20\x7b\x85\x02\xb3\x11\xdf\xac\x74\xd0\x24\x81\x05\x91\xc8\xa4\x5a\x38\x57\x79\xb8\x92\x2a\xcf\x95\x5e\x15\x5e\x2e\x93\x92\x39\xa8\xef\x71\xc2\xbc\xc2\xe3\x2a\x9f\x1a\x24\xeb\xe8\xe0\xfb\x07\x07\x20\xf0\x1e\xe4\xc8\xca\x6f\xb6\xdd\x3a\x81\xb3\xab\x25\xe1\x6a\x32\x87\xac\x9e\xbb\x8d\x22\x9c\x28\xb0\x72\x8f\x62\xdf\xb8\x53\x7b\x14\xc0\xa0\x0f\x04\x23\xab\x83\x91\xc9\x80\x8e\x90\x94\xcb\x75\x13\x2b\xef\x88\x97\x99\x91\x02\x5f\xff\xbe\xbc\x60\x3b\x9d\x52\xac\xb5\x09\xdf\xe1\x40\x64\xa6\x1c\x57\x41\x62\x2c\x14\x89\x51\x62\xaf\x75\xfe\xeb\x08\x59\xfa\x50\x82\x10\x10\x76\x50\x83\x59\x4b\xc8\x46\xd6\xbe\xfc\x66\xcc\x62\x12\x45\x7d\x0b\x02\xff\x6c\x73\xc5\x23\xb3\xa0\x09\xe1\x81\xf7\xfb\xa8\x23\x3e\x85\x1f\x41\x4a\x2b\x53\x93\xcd\x21\xbb\x95\x41\xc5\x39\x64\x41\xb5\x3c\x7b\x7c\xde\x8f\xd0\x8e\x12\xb3\x02\x3d\x8a\x74\x58\xb3\x08\x76\x3c\xf3\x82\x59\x2f\x2c\xcf\x8c\x3a\xe1\x20\x9c\x91\xc2\x63\xb5\x92\xa4\xf2\xdc\xd0\x22\x2f\xce\xcc\xf5\x48\x49\x12\x9c\x92\x70\x92\x9e\x25\x93\x54\x46\x95\xcb\x67\xe9\x5c\x9c\x5f\x66\xe9\x1c\xdd\x96\x24\x55\xce\xa9\xa2\xbf\x15\x99\x49\x51\x3a\x25\xe5\x24\xad\x44\x68\xf1\xe5\x4a\xf2\x16\x9b\x9b\x79\x2b\xb2\xd2\xc9\x50\x33\x35\xea\x12\xd9\x93\x22\xe6\xa4\xa4\x6b\x41\xb1\xb0\xb3\xac\xb2\xeb\x4c\x08\x8f\x4e\x0c\xcf\x59\xc1\x92\x6b\xda\xf4\x1f\xdf\x13\xe3\xb6\x4f\x1c\x07\xe1\x8e\xe8\x13\x4e\xe0\x58\x3e\xf7\x8d\xcb\x1f\xcc\xc8\xe8\x58\x88\x05\xb8\x20\x7e\x24\x38\x5d\x88\x33\x7b\x46\xb3\x73\x12\x4d\x7c\x3f\x13\xa8\x81\x9a\x5e\xa3\x8d\x0c\x21\xa3\x68\x2f\x48\xa6\xd0\xa5\x14\xd5\xc4\x24\x2f\x83\x58\x81\xc5\x94\xe9\xa4\x88\x62\xa3\x90\x45\xa2\xc0\xce\x74\x07\x62\x78\x52\xd2\xc6\xd8\xab\x28\xcc\x36\x3e\xee\x42\xc6\x44\x69\xde\x60\xab\x53\x83\x93\x36\x33\xf6\x00\xb9\xbc\x5c\xe4\x66\x80\xf5\x04\x6e\xd5\xe0\x18\xe1\xfd\xc8\x1e\x9e\x1c\x12\x78\x7d\x1f\x44\x42\x08\xab\x82\x44\xa8\xd1\x3a\xd5\xc8\x20\x96\x9b\x7d\x4a\x14\xdb\x91\x22\x69\x3f\x7a\x64\x02\x49\x2b\x45\x10\x23\xe6\x6d\x88\x99\xb9\x39\xd5\xb5\x10\x06\x41\x92\x7e\xe1\x2d\x0a\xb9\x13\x23\x15\x1d\xf8\x51\x1d\x31\x58\x1a\x4f\x59\x88\x49\x24\x62\x4c\xe8\xc1\xc6\x6d\xcb\x04\xf0\x75\x40\x48\x89\x9a\x88\x48\xfa\x11\xc2\xa3\x23\x42\x48\x39\x85\x77\x7c\xca\x49\x12\x47\x46\x2d\x10\xa1\x58\xba\x6a\xc3\x93\xd8\x0c\xb4\x34\x28\x11\x9d\x54\x88\xb6\xf0\xc9\xb7\x5b\xd9\x93\xbc\x4f\xcf\xb6\x5b\xf1\x94\xb9\x2e\x17\x85\x62\x1f\x16\x3f\x58\x3f\xb2\xf1\x0e\x5a\x0a\xa5\x95\x75\x2e\x04\x63\x72\x92\x0b\xa7\xc2\x3c\x6a\x85\xde\x37\x52\x86\xaa\x03\x0e\xe4\xad\x9c\x30\x7a\x1a\x95\x57\x91\x09\x07\x2b\xb5\x4c\xd6\x97\x0d\x75\xf9\xd1\xa8\xa9\x2e\xff\xad\x7a\xd1\xcc\x63\x5e\x74\x7c\x02\x8a\x51\xf8\x7d\x12\xa2\x5a\x92\xa5\xef\x51\x87\x26\x9d\x2b\xad\x2e\x9a\x8a\x17\x58\xe6\xc1\xa9\x94\x87\x0c\x4d\x78\xf1\xf5\x36\x53\xb9\xc6\x90\x8a\xf2\x95\xa0\x5b\xb9\x89\x25\xe6\x5a\x05\x8e\x66\xb6\x3c\x9b\xfc\x06\x79\xfc\xbf\x4f\x0b\x6f\x12\x2c\xff\xdf\xa7\x88\xff\xef\x43\x6a\xc2\x8b\xcd\x8a\x0a\x9c\xfe\x6b\x90\xa9\x60\x2e\xda\xfa\xf8\x3c\x48\xd6\x6b\xca\x16\x4d\x09\x8f\x4b\x05\x18\xa8\x85\xb6\x5b\xaf\x7a\x20\xb3\xb9\x2d\xf4\xb4\xf4\x71\x85\xa5\x8f\x63\x48\x1d\xbd\x19\x1c\xbd\x41\xff\x59\x1d\x08\x8c\xb2\xdc\xab\xdd\x14\x28\x80\x24\xbb\xd0\xe1\x65\xf0\x4c\x40\x60\x72\xaa\x17\x82\x79\xe4\xc1\xba\xa0\xff\xc3\x60\x57\x10\xdd\x0f\xbc\xa1\xee\xf1\xe0\x7f\xd6\x35\x93\x60\xa1\xa3\xb1\xe1\xa6\xe3\xdf\xc8\x4c\xed\xeb\xa8\xc6\x81\x7b\xc2\xce\x4c\x98\x60\xa6\xb5\xae\x05\xe1\xa0\xf1\x0e\xaa\xac\x58\xc4\x7e\xd8\x6e\xc5\x96\x1a\xd8\xd1\xfc\xc4\x20\x94\x97\x76\xc6\x7a\x10\x40\x23\xd0\x59\xb4\xc8\x41\xb8\x3f\xdd\x5f\x11\x7c\xa2\x5f\xc5\x7e\xd8\xbc\x01\x33\x4b\x39\xab\x86\x5c\xda\xc9\xff\x3a\x83\x1d\xc9\xa5\xbc\xcb\xe4\xca\x2d\xf7\xaf\xdc\xec\xfb\x57\x6e\x26\x53\x12\xe3\x15\xde\xe0\x35\x29\xdb\xeb\x77\x0d\xf2\x76\xf7\xad\xbb\xba\x2b\x92\x1c\xc7\x2c\x02\x75\xf8\xd7\x7a\xd6\x75\x40\x93\xb4\xde\x80\xb4\xd7\x49\x4a\xfe\x3c\x49\xaf\xf4\x02\xd2\xcf\x90\xb7\xc0\x84\x96\xa9\x16\x98\x7a\xac\x2e\xee\xf4\x07\x7d\x12\xd9\xd7\x04\xba\x58\x5b\xbb\xe9\x0f\x67\x7c\x4e\x42\x0b\xcc\x5a\xe0\xe1\x49\xa3\xe6\x99\x35\x1c\x63\x7a\xc7\x48\xa3\x16\x3e\x88\x54\x02\x56\x8b\x07\xcc\xd8\x1c\x33\x84\x94\x03\x8c\x55\xbb\x52\x00\xf6\x6c\xa5\xa5\xd5\x5c\xb1\x13\xe8\xba\x49\x56\x9f\xf6\xaa\xb5\x05\x2e\xed\x7b\x22\x73\xc9\x05\xd2\x01\x40\x22\x84\x21\x29\x1c\x48\xe7\xf7\x2c\x58\xe7\x25\x4f\xcb\xf2\x75\xbe\xa0\x84\xe3\x2c\x28\x79\x92\x7e\x72\x5d\x9d\x56\xd5\x75\x0f\x3f\xb0\x0f\xe5\xed\x68\x97\xf0\xde\xa1\xcc\xd3\xad\x2a\x21\xad\xa6\xd2\x75\x27\xea\x05\x51\x7f\xad\xfc\xdc\x55\x13\xd8\xf9\x83\xeb\xf4\x73\x75\x4d\xba\x2c\xf2\xeb\xbe\x13\x8b\x82\x4a\x65\x5a\x2b\x90\x8a\xd0\xbe\xf8\x0a\xed\xa4\x38\xa3\x23\x89\x03\x86\x21\x8f\x90\x40\x8b\xb4\x7f\x84\x9f\x60\xb0\x5e\xec\x04\xab\x93\x28\x7b\x46\xd3\x55\x33\x75\x9d\xc6\xdc\xb4\x96\xdd\xe4\x2d\xbd\x7c\xfe\x65\x2d\xad\xc6\xa0\xa9\x0a\x9f\xc6\x76\x10\x6c\x01\x84\x94\xab\x52\x08\x51\x89\x16\xd8\x1b\xd7\x55\x22\x70\x79\xdc\x40\xd2\xf5\xf2\xc1\x8d\xc9\x56\xec\x28\x51\x55\x43\x82\xdf\xe3\xae\xd6\xa8\x8a\xa2\x61\x5a\xa3\xd0\x5a\xd5\x82\xa8\xb0\x43\x15\x42\xde\x6e\x56\xf4\xf7\x43\x08\xc8\x0f\x5d\x08\x29\xe9\x8a\x0a\xc6\xf2\xbd\x48\x69\x36\x58\xb5\xf4\x5b\x11\xa3\x5b\xbc\x0f\x31\x8f\xf9\xef\x8b\x1a\x25\x5c\x75\x21\x07\xb2\x09\x7f\x27\x62\xda\xcd\xc9\x76\x7e\x2b\x5a\xaa\xf6\xee\x43\xcc\x53\x29\x7a\x77\xe6\xde\xed\xea\x42\x07\x76\x31\x32\xbb\xc9\xb9\x85\xac\xdb\x6b\xe8\x43\x74\xd1\x16\x04\xff\xeb\xaf\x5d\x71\x42\x14\xab\xd6\xda\xc2\xac\xda\x4d\xb4\x9e\x4a\xea\x1e\xb3\x52\xf6\x5e\x22\xbc\x52\x4e\x40\x25\x49\xa7\x65\x5c\xea\xd8\xc1\x19\xa7\x45\xc2\xf3\x62\xee\xa1\x89\x8a\xd1\xbe\x11\xdb\x4e\x0a\x58\x59\x9d\x13\x63\x1f\x2c\xad\xe5\x36\xa4\x9c\xad\xfa\xfd\xb9\xb1\xc1\xf3\x56\xa4\x84\xab\x5c\x0f\xa1\x60\x91\x33\x6a\x2a\xae\x02\x10\x3c\x40\x80\x58\x93\xcd\xa4\xb9\xbd\xae\x2b\x3b\x3a\xbd\xcd\x76\x08\xab\xbf\x17\x7e\x95\x00\x05\x7a\xc2\xcf\x14\xce\x9f\x38\x6f\xa0\xa9\x40\xc6\x95\xb5\x20\xf9\xb4\x88\x8b\x3b\xd0\x94\x4c\x64\x52\x0c\xb1\x3d\x9d\x93\xa2\x8e\xa6\x84\x14\xb3\xac\x86\xa6\x8c\x14\x5d\x68\x4a\x48\x66\xa1\x49\xce\x5d\x63\x76\x95\x60\x02\xc9\x25\xb1\xa3\x50\xe4\x20\x6b\x1c\x2b\x92\xe2\x4d\x63\x2c\x2b\x19\x54\x4f\x8c\x65\x45\x36\xd3\x55\xbc\xba\x63\x2c\x4b\x31\x96\x0d\x8c\x65\x7d\x4e\x56\xf5\xb1\x2c\xc9\x6a\xb6\xae\x8d\x65\x4d\x56\x5d\x63\x59\x92\xb5\x35\x96\x05\x59\xda\x53\xae\xef\x70\x16\x68\xa7\xa7\xf4\x4a\xdf\x4c\x6b\x01\xa2\x2e\x6e\x5c\xcd\x49\xe3\xb9\x9f\x36\x22\xc6\x6a\xba\xe9\xb8\x89\xd5\xf7\x41\x96\x04\xa9\x2b\xd5\x0e\x99\x35\x71\xca\xba\x58\x84\x12\x5c\x34\xb0\xca\xec\x00\xba\xc5\x94\xc5\xec\x0e\xac\x82\xb1\xb7\xe4\x88\xf9\x39\x61\x75\xac\x66\x84\xcd\xf2\x1a\x56\xc1\xe0\xb0\x8d\xd5\x8c\xe4\x0a\xab\x59\x35\x04\xc8\x3b\x2e\x46\x6e\x9b\x17\xec\x89\x8e\xa3\xd2\x22\x56\xb8\x14\x72\x87\xeb\x1a\x4a\xc2\x79\x93\xe2\xb8\x85\x94\x19\x9d\xe3\xc2\x26\xb6\x8c\xe4\x38\x69\xa0\x25\x43\xc6\xc9\x30\x23\xc9\x34\x8b\xb3\x3b\xd0\x92\x0a\xb4\x48\xc3\xec\xf2\x9c\x64\x75\xb4\xa4\x24\x9b\x95\x35\xb4\x94\x24\xeb\x42\x4b\x4a\x4a\x8b\xd8\x56\x24\xb5\x89\x4d\xdd\x29\x52\x1c\xe2\x55\x45\x6f\x9b\x16\xbd\xd1\x33\xd2\x14\x89\x37\x73\x88\x5b\x56\x2f\x22\xac\x9f\x1b\x6b\xd7\x06\xed\x59\xe6\x19\x8d\x09\x68\xe0\x7c\x52\x0b\x57\xb4\x17\xdb\xa8\xc6\xa0\x0a\x9c\x35\x70\x9d\x23\xb0\x6f\x57\x2e\x2f\xd3\x3c\xce\xef\xc0\x75\x09\x89\x5e\x64\xf2\xdf\x73\x92\xd7\x71\x5d\x92\x7c\x96\xd4\x70\x9d\x90\xbc\x0b\xd7\x25\x49\x2c\x5c\xa7\xa4\xec\xc2\x75\x3f\xc2\x21\x4e\x2b\x6c\xaf\x3a\xb0\xdd\x44\xf6\xaa\x8d\xec\x95\x40\x76\xb1\x0f\xd9\x96\xc5\x5f\xfb\x48\xda\x30\x12\xab\x63\xbf\x8e\xe4\x0e\x1b\xc1\x26\xe9\x44\xf5\x33\x1c\xd2\x66\x04\x1a\x50\x36\x47\xe7\x60\xe5\xd5\x28\x25\xdc\x6f\x06\x80\xd6\x70\x3f\xb6\xfd\x7c\x6a\x06\x48\x92\xdb\xf0\xc6\x54\xab\x4d\x0d\xd2\xd1\x11\x3e\xa5\x31\xbd\x63\xaa\x8b\x89\xc9\x69\x6a\x27\x19\x93\x33\x58\x10\x3a\x63\xb5\xa9\x66\x84\x76\x4d\x75\x41\x98\x9a\xea\xa2\x8e\x23\x9b\xe5\x1a\x4d\x11\xae\xc6\x07\x47\xa8\x3f\x89\x2f\xf7\x45\x5c\xed\x49\x7f\x3a\x8e\x2d\xcb\x55\x73\xea\xb1\x44\xb2\x02\xdd\xc2\xc1\x7f\x5d\xba\xae\x54\xe6\xcb\x27\x63\xe0\x51\xc8\x13\xcc\x76\xcb\x83\x65\x52\x72\x55\xab\x90\x70\x9b\x5a\xf2\x25\xda\x6e\x3d\xf5\xc6\xd4\xd0\xe7\x3d\x48\x13\xbb\x43\xd6\x29\xff\x33\x2d\xbe\xee\x95\x1c\x25\x7d\x40\x1d\xb0\x83\x5d\x07\x65\x7e\xbd\xdf\xfe\x4b\x91\x53\x7e\x4d\x55\x6d\x00\xac\xeb\x46\xb9\xed\xdf\x33\x95\x26\xb4\xaa\x0d\x63\xd8\x02\xcd\x74\xdd\xa3\x6b\x76\x2f\xc3\xfe\x74\x3b\x51\x51\x44\x6b\xb6\xa5\x15\xb4\x7b\x0d\x37\x95\xc9\x9b\xa0\x71\x35\xe5\x54\xff\x42\xc8\x18\x34\xa9\x63\x35\xe6\x42\x46\xf6\x98\x37\x3a\x45\x1e\x45\xaa\x9a\xb9\xad\x69\x52\xb6\x89\x36\x5f\x25\x04\x16\x9b\x48\xbd\x5a\x82\xe0\xca\x55\x2c\x80\x84\x94\xd3\x24\x4e\xee\x58\x00\x2b\x31\xee\x52\x26\x23\x3d\x37\x1e\x4d\x8a\xae\x57\x24\x99\xa5\xb5\x05\x90\x92\xa4\x6b\x01\xac\x48\x6a\xf1\xba\x0d\x59\x4d\x36\xc6\xf6\x78\xd3\x65\x78\xbc\xc1\x4e\x76\xc9\xf2\x82\x3a\x68\x67\x7c\x5c\x9c\x22\xcf\xb9\x75\x5e\xb9\x95\x42\xb0\x18\xac\xa2\x0b\x3d\xe4\x65\x63\xc8\x6b\x84\x17\x6a\xc8\x6b\xb2\x9c\xae\xe3\xf5\x1d\x43\x06\x0d\xd1\x12\x86\xbc\x38\x27\xeb\xfa\x90\xaf\xc8\x7a\xb6\xa8\x0d\x79\x41\xd6\x5d\x43\xbe\x22\x0b\x6b\xc8\x17\xe4\x6a\x72\x61\x86\x7c\xd1\x35\xe4\x8b\xae\x21\xab\x91\x52\x32\xa3\x73\xcb\x62\x0b\x96\x6a\x23\xd1\xb2\x9d\x12\x06\x3a\x6e\x3b\xef\x00\x27\xe9\x2d\x33\xba\x5a\xf4\xb2\xb2\x77\x9d\x95\x25\x5d\x80\x1d\x79\xbe\xa0\x3d\x50\x16\x66\x39\x73\x50\x57\x1a\x57\xd9\x26\x18\x17\xc9\x85\xaf\x53\x51\xa8\xce\x10\xa6\x64\xd6\xb4\x6b\x9f\x5b\x03\x31\xfa\x80\x5b\x59\xd1\x63\xde\x78\x88\x50\xa3\x16\x1c\x8c\xad\x1a\x91\x55\x03\x2e\x82\xc5\x11\xfa\x4b\x47\x22\x79\xed\xa5\x08\x43\x11\x40\x77\x8d\x4b\x81\x98\xd7\x40\x34\x6a\xcb\x3d\x96\x97\x46\xa1\x29\xce\xef\x1d\x13\x47\x11\xde\x33\x0d\x96\xa5\xa2\xeb\x72\xd7\xed\xcc\x44\xc3\xeb\xd5\xbc\xda\x67\xa4\xf6\xb6\x52\xaa\xcd\xfe\xfa\xa1\x9c\x4b\xd7\x25\x84\x8d\xc2\x35\xc3\x14\x8e\xd4\x29\x29\xb1\xb7\x22\xb3\xdb\x4f\xf4\x6b\xec\xc0\x19\xc7\xc1\x97\x94\xc7\x1d\x86\xbb\x92\xa3\xb4\x78\xec\x2c\x9c\xef\x76\x58\x36\x20\x8e\xc0\xdf\xfd\x7d\x4b\x51\x0a\x16\xbe\x42\x34\x49\xec\x9c\x3e\x78\x85\xf0\x06\xca\xf0\x06\xe1\x72\xe7\xc1\x35\xc0\x11\xea\xbc\x7d\xf8\xd7\x19\x10\xca\x2b\x87\x81\xb9\x7d\x38\x19\xfe\xff\xf1\xf6\x01\x02\x8a\xe2\xb2\x1a\x78\xfa\x9d\xd7\x89\xea\x32\xd1\xdc\x80\xb1\xea\xfa\xab\x75\x6d\x9b\xfe\xde\xd7\xb6\x24\xc5\x5e\xa6\x89\x5e\x73\x9b\xb2\x45\xb8\xe6\xfe\x51\x4d\x5b\x90\xe6\xd7\xd7\x89\x24\x66\xc3\xa3\x76\xb8\xb4\xbf\x6a\x18\xdc\xaa\x5a\xd3\xda\x93\xce\xbf\x80\x3f\x94\x8f\x0e\x91\xcc\x01\xc5\x08\x9f\xf2\x59\x38\x8f\x1d\xec\xf4\xb5\x29\xb2\xe7\x28\x53\x64\x07\x3b\x72\x5d\xbf\x59\x53\xc1\x9d\x6a\xcd\x11\x2a\xcd\x94\x18\xd2\xab\xc6\xba\x44\xc5\xe2\x6c\x08\x65\xb8\x44\x38\xdd\x79\xc5\xef\xb5\x5c\x24\x51\x5a\xe8\xda\x4d\xaa\x46\x8a\xf6\xc7\xd5\x4b\xe6\x45\xd1\xe9\x7d\xa6\x15\xb5\xea\x83\x11\xda\xe1\xbb\xeb\x7b\xcd\x29\x60\xa4\x93\x89\xde\x64\x6c\x91\xdf\xec\xe1\xb0\x8b\x3c\x05\x95\xd5\x9e\xd7\x2c\xf9\x9c\x5d\x0a\x19\x00\x17\xdd\x3a\xb2\x99\xf3\x7c\x71\x49\x1d\xec\xbc\x2f\xb2\x05\x98\x20\x38\x3f\x66\x05\x5d\xe6\x5f\x9c\x39\xae\x5b\xe9\x4d\x78\x9f\x44\x48\x9c\x16\x5c\xd7\xb4\x1b\x6c\x4a\x5a\x3c\xbe\x34\xce\x10\x42\xea\x9c\x71\x71\xd2\x09\xab\x14\x11\x3a\x22\xc5\xce\x33\x51\xd5\x5c\x57\x0e\x2b\xf8\xb9\xc8\xaf\xb3\x92\x4e\xdb\xf4\x68\xcc\xbb\x7a\x16\xe4\x32\x4a\xc6\x41\x88\xeb\x9f\x1b\x5b\x3e\x14\xf0\x2b\xca\x3c\xdb\x5d\x53\xb4\x84\xa9\x27\xb5\xbe\xbb\x0e\xc2\xbf\xbb\xa3\x92\xf2\xf7\xd9\x35\xcd\x37\x7c\x4f\xab\xb8\x10\xed\xee\xe5\xa8\xce\x4c\xfa\x2b\xf4\x7e\x54\x15\xe6\x62\x1f\xbd\xdd\x19\x4b\x74\x15\x03\x02\xb5\x18\x6c\xb6\xf4\x22\x48\xe4\x27\x18\xcd\xfb\x4a\xc3\x3c\x9b\x9b\x6c\xf3\xf9\x0d\xa3\xc5\x33\x45\x03\x7a\x19\xfc\x29\xa3\x37\xc1\x25\xe5\x4f\xf3\xeb\xf5\x86\xd3\xc5\x3b\xfe\x75\x05\x87\x97\xcd\x6a\x55\x1d\x34\xa7\x6c\xc6\xe7\x31\xdb\x59\x97\xb2\xd5\x09\xe3\xa7\xf7\xaf\x5e\x4a\x69\x54\xf4\xfd\x3a\xb9\x16\x9b\x81\xde\x8b\x5f\xe7\x0b\xba\xdd\xd2\xe0\x2a\x2f\xf9\xce\xe2\xa7\x2a\x05\x8d\x51\x84\x6b\xda\x0c\x2e\xf2\xc5\xd7\x89\xce\x87\x6e\x5a\x54\x59\x0c\xa0\x2b\x19\xee\xff\xc9\x9b\x67\xbf\x9a\x50\xff\xcd\xc1\x41\x23\x50\xed\x7f\xe9\x86\xad\xba\xe2\xad\x72\x90\x4c\xe4\x31\x98\x07\xf9\x67\x5a\x2c\x57\xf9\x0d\xe4\x36\xd3\x0f\x7f\xc1\xb9\xf5\xf4\xab\x42\xc7\xa1\x97\x6c\x78\xbe\x2d\xd3\x22\x5f\xad\xb6\xe2\xed\x2a\xf9\x8a\xd4\xbd\x20\xeb\xe7\xfd\x02\x4d\x69\x9c\x7a\x65\xdd\x03\x7a\xd5\xdc\x3c\x0b\xba\xa4\x05\x65\x29\x15\x38\x9a\x36\x9e\x63\x7d\x44\x60\xae\x7b\xe0\x1d\x28\x0a\x7e\xf5\xee\x05\x5b\x6f\xf8\x2b\xca\xaf\xf2\x85\x72\x19\xde\x6e\x0f\x0c\xf2\xf4\x8f\x57\xf9\x82\x22\xbc\x16\x1f\x1f\xbe\x7a\xf7\xe2\x79\x2f\x0a\x35\x7c\xed\xc5\x68\x6d\xf0\x4b\x0b\xc6\x08\x42\x76\x4c\x37\x71\x24\xb3\x11\xad\xe3\xcd\x76\xbb\xae\xc6\xb3\xd8\x3f\x87\xfa\xc7\xf3\x15\x15\x7f\x2c\x6b\xbf\xa5\x17\x85\x68\x5a\x9b\x6c\xbd\x43\xd0\x40\x06\xb7\xff\x19\xe8\x66\xbb\x15\xc5\x13\x26\xcd\x10\xa5\x36\x41\x35\xf7\x2e\xbb\x58\x65\xec\x72\x82\x18\x01\xd7\xc9\xf6\x2b\x54\x6b\x4a\xfb\x5d\xc3\x3d\x91\xa2\x27\x13\x45\xd7\x75\x25\x25\xa9\x28\x23\x40\x60\xe2\xf7\x14\xec\x02\x67\xce\xfb\x9f\x04\xbf\x7b\x26\xfe\x79\xfc\xe4\xe5\x73\x67\x6e\x58\x57\xd5\x18\x82\xf0\x24\x09\xcf\x52\xb0\x76\xf7\x18\x76\xb4\x3b\x88\x83\xa6\x0b\x8f\xa1\x98\xc5\x62\x86\x1b\x2b\xb0\x8e\xa5\x78\x1f\xfa\x2a\x94\x5f\x59\xd3\xa3\xdc\x1b\xed\x75\x36\x15\x2b\xa6\x7a\x44\xb1\xe5\xc5\x70\x51\xe5\x98\x93\xf9\x05\x35\x9f\xd8\x6e\x0f\x04\x09\xf1\x26\xe3\xd8\x3f\x9b\x9a\x9f\xa8\x9c\x48\x7a\x3c\x3f\xab\x21\x7b\x1c\xb9\xa2\xfb\xe0\xd9\x9b\xa7\xbf\xbc\x7a\xfe\xfa\xfd\xc7\x9f\xdf\xbc\x7b\xf1\xfe\xc5\x9b\xd7\x1f\x7f\x7c\xf3\xf2\xe5\x9b\x3f\xbf\x78\xfd\x6f\xb8\x20\x6c\x4a\x63\x8e\x73\xc2\xa6\x3c\xa6\x38\x23\xa6\x3b\x29\xfb\x40\x10\x14\x0f\x4d\xb2\xa0\x54\x91\x87\xbc\x02\x87\x08\xc3\xf3\x73\xb6\xf0\x72\x1d\x76\x33\x21\x19\x88\x2e\x39\x7b\xcc\x52\x5a\xf2\xbc\x10\x0b\x23\xc9\x18\x05\xa5\x15\x3d\x00\x6f\x50\x2e\xfe\x6c\xb7\x20\x42\x8a\x97\xa5\x97\x9b\x7b\xc7\x36\x97\xa7\x4d\x42\x31\x44\xc2\x5d\xd7\x33\x1c\x8f\x6f\xb7\x0b\xf0\x0a\x29\x4a\x8d\x1d\x38\x0a\x21\xb8\x8a\xdc\x79\x09\x9a\x26\xf1\xc2\x4b\x24\xa0\x25\xb9\xb2\xec\x6e\x4b\x60\x89\xd3\x0b\x4f\xfe\xc0\x1c\xc5\x62\x8e\xae\x3c\x8e\xa0\xc0\xe2\x1c\xd7\x15\x60\x0e\xcf\xd7\x90\xe8\xbd\x79\x5f\x75\x1e\xb9\xae\x89\x97\x53\xdd\x4d\x45\xf3\xa9\xfd\x10\xc3\xf7\x68\xea\x48\xe6\xf5\x3e\x5f\x3b\xb1\xfa\xfd\x92\x2e\xb9\x03\xcb\xd0\x0c\x5d\x9c\xab\x61\xdc\x32\xbf\x8d\x19\xb6\x95\x95\xe3\x4e\x8a\x36\x9e\x15\x8d\x6a\xb2\xc3\x8c\x5d\xaa\x7a\xdb\x6d\x81\x66\xbc\x3a\x80\x8a\xdf\x66\xf0\xaf\x6c\x3b\x50\xe7\x0b\xa0\x7d\xea\x00\xb4\xb1\x23\x06\x80\x0b\x22\x1f\x21\xd4\x8d\xf3\x36\xbb\xbc\x12\xaf\x9e\xe4\x9c\xe7\xd7\xc6\x89\x1a\xac\x42\x21\xa0\x98\x47\x67\xce\x45\x5e\x2c\x68\xe1\xf4\x59\xdf\xf9\x73\xb6\xe0\x57\xce\x1c\x47\x21\xea\x77\x57\x2a\x6a\x95\x3a\x52\xf6\x57\x09\x97\xc0\xc2\x3f\xf9\xe2\xf1\x99\xca\xd4\xe1\xf4\xe9\x1c\xf3\x99\xc2\x31\x3c\xb1\x99\x93\xae\x32\xb1\x23\xa9\x27\xab\x26\xab\xd5\x94\xcc\xd2\x64\x5a\xaf\x55\x55\xc0\x8a\xf2\x62\xe6\x5c\x27\xc5\x65\xc6\x9c\xbe\xe7\xfc\x44\x61\xfc\x32\x7f\x9c\x9c\x5f\x40\x0e\x7a\xd8\x17\x0a\x6b\xb1\x42\x23\x9a\xa3\xd8\x1e\xf2\x67\x7b\x89\x08\xe6\x0d\x04\xd3\x98\x76\x21\x3e\x0a\xc8\x5d\xb7\x25\x57\x30\x4d\xfe\xb7\x57\xd0\x6b\x7c\x69\xfa\x57\xa8\xc4\x37\x02\xd5\xa2\x5c\xe2\x5c\x27\x56\x87\xdd\xf0\x6b\x47\xc6\x4c\xaf\x66\x8e\xb0\x2f\xe5\xe9\xd3\x84\xb1\x9c\xf7\x84\xf4\xd4\x4b\x7a\xe9\x2a\x29\xcb\x5e\x52\xf6\x12\xb3\xf6\x1d\xb4\xc3\x8f\xf7\x85\x62\xf8\x9f\x7b\x82\x6d\x72\xb0\x3a\x3d\x32\xd7\xa5\x9e\x75\x6e\xc4\x0c\xe1\x02\xca\x04\xa6\x39\xa4\x3d\xbe\xd9\xa7\x50\x07\xd7\x5e\x3a\xdd\x07\x03\x37\x49\x7e\x71\x35\xc8\xf8\x20\x6c\xe6\xfb\xc5\x7a\x44\x90\xfb\x57\xb9\xd8\x62\xba\xc3\xdf\xf4\x61\x37\x29\xcb\xec\x92\x6d\xb7\xdd\xee\xa7\xd1\x84\x9f\x35\x99\x1d\x38\xfe\xdc\x36\x6c\x48\x67\xdc\xb2\x73\x90\x41\x21\x54\x07\xd5\xb9\xb9\xee\x9c\x2c\x85\x69\x81\x30\xd7\x05\x67\x3c\xc2\x66\xc5\x1c\x55\xfe\xbf\x95\x60\xf4\xd1\xda\x79\xbf\x79\xb7\x3b\x4c\xf1\x6d\x01\x14\x2c\x4e\x3c\x4b\xde\xa7\x01\x10\x2e\xbe\x80\x05\x04\x11\xa7\xd6\x7d\x1a\x48\x32\xdf\xd5\xb3\xe7\xeb\x25\x74\xbb\x93\x26\xeb\x4b\x0f\xd6\x8b\x38\x27\x50\x21\x8b\x3f\xc9\x37\x6c\x91\xb1\xcb\xa7\xc0\x26\xde\xd2\x94\x7b\x3a\x00\xfc\xb5\x47\xb1\xe4\xe1\xb8\x90\x0f\x2b\x58\xdd\x13\x0e\x1d\x12\x86\xb9\x84\x87\x14\x58\x88\x57\x02\x18\x59\x0a\xd0\xf6\x49\x21\x75\x8c\x77\xf4\xa4\x6c\xe3\x16\xe8\x56\x65\x3d\xbb\x15\x0d\xc6\xb2\x5d\xcc\xf3\x75\x0c\x7d\xa9\x85\xaa\x1a\xf6\xd5\x6b\xb5\xac\x75\xd7\x3e\x54\xdd\xe1\x8c\x74\x9d\x12\x3e\x37\x77\x06\x14\xdf\xee\x70\x49\x32\x89\x4b\x71\x6c\x90\x9c\xf2\xcf\xf2\x31\x57\x38\x4e\x49\xa6\x10\x5b\x55\xf9\x49\x3d\xe7\xea\x0d\x5e\x19\x81\x12\xbe\xf6\x4b\xc8\x0a\x28\x4b\x64\x65\x1f\xee\x8a\x57\xdb\xed\x46\x6b\xd0\xc5\x69\x60\xb2\xf2\xc9\x2b\x6f\x8d\x9d\x2f\x0e\xc2\x1b\xf5\xfb\xab\x03\x99\x64\xa0\x21\xb2\xc2\xba\x13\x9f\x6c\x34\xb1\x7c\xf4\xec\xac\x3e\xef\xed\x4d\xab\xb5\x55\x0f\x3a\xb7\xea\xc1\xdc\x75\xed\x27\xcd\x46\x71\x5e\x21\x8f\x1b\xe4\xe1\x8c\x08\x4a\xc2\x25\x79\xe3\x71\x30\xd2\x10\x4f\x1b\x92\x88\xa7\x35\xb1\x76\xb2\x4d\x20\x37\xb2\xf7\xf9\x1a\x30\x21\x36\x31\xbc\xe8\xaa\x21\x36\x0a\x53\x65\xc2\x5c\x37\x77\x5d\xaf\x14\x33\x48\xcc\xce\x06\x8f\x42\x10\x2b\x61\xc2\xed\x17\x40\x00\xa1\x8a\x73\x74\x45\x3e\x7a\xb7\x82\x58\x32\xf1\x81\x0f\x9f\xf9\x6b\x0c\xa4\x94\x41\x55\x5f\x7e\xe1\x2f\x14\x25\xa9\x59\xd7\x24\x94\x99\xb5\x23\x66\x49\xf4\x21\x36\xac\xf7\xf9\x9a\x84\x58\x3f\x09\x80\x21\x82\xb1\xeb\xe6\x12\xdb\x17\xf5\x71\x99\x8f\x60\xd0\xaf\xba\x5e\x8a\x36\x60\xbc\x57\x00\x22\x59\xfb\x17\xf8\x4a\x93\xaf\x7a\x02\x38\xc9\xc2\x7f\x85\xaf\x14\xb9\xab\x87\x0a\xa8\x8b\x3a\x50\xaf\xb4\x9f\x6b\xe1\xba\x07\x6c\xca\x2b\xb1\x73\x85\x62\x4e\x08\x59\x59\x07\x8f\x95\x7d\x92\xf0\xae\x3a\x3d\x60\x7e\x3b\x11\x5d\x7b\x5c\xb3\x8c\x5c\x3e\x48\x96\x81\x33\xc2\xa6\x7e\x14\x47\x55\xc4\x1c\x60\x21\xc5\xa3\x0c\x53\xc3\x3a\xe4\x93\x64\x29\x39\xfc\x56\x8c\x04\x1e\x76\xde\x15\xe6\x08\xe1\xab\x8a\xf4\xbf\x98\x63\x21\x1c\x33\xe4\x71\xc4\x08\x7a\x4b\x0f\x7d\xc7\x69\xb1\xf1\xf9\x84\xbb\xae\xc3\x72\x46\xe5\x31\x4b\x0c\xab\x48\x58\xb9\xcc\x8b\x6b\x07\x4d\x10\x27\xbc\x51\x5f\xef\x64\xdb\xed\xfd\x67\xab\xd7\x95\x34\x27\xd9\x5e\x0b\xe3\xa3\x4e\x8c\x8f\x6a\x18\x1f\xcd\x71\x46\x80\xee\x43\x49\xeb\xe1\x0e\x6f\x48\x3e\x15\x58\x01\xf9\x7e\xe5\x71\x24\xfd\xaf\x3f\x67\xf4\x66\x9d\x17\x20\x79\x15\x28\xeb\x88\x6a\xf0\x60\x19\xdf\x86\x20\x9a\xe3\x0e\x65\x4f\x4b\x42\x7b\x0f\x17\xd4\x38\xaf\x16\x30\xb3\x99\xad\x56\x99\x65\x8c\xd1\x42\xb1\x5f\x71\xfa\x6a\x57\x97\xbc\xb4\x56\x5f\xf3\x62\xc8\xdf\xca\xa7\x61\x7c\xed\x31\xc1\xa9\xd4\x4f\xb3\x67\x19\xd6\x09\x08\x4b\xfc\x02\x08\xb0\xb0\x56\x2d\xa0\xb0\xf4\x0b\x49\x80\x85\xbd\x64\x25\xd3\xc8\x0d\xbb\xd8\xa1\x9d\xb7\xc1\x39\xaa\x62\x54\xae\xf5\xcd\x86\x92\xa9\x7f\x36\x51\x89\x8a\xa9\x39\xd7\x78\x6b\x92\x7a\xa5\x98\x14\x64\x56\xa1\xeb\x7a\xeb\xfb\x50\x88\xe2\x35\x71\xe4\xa0\x65\x8b\xf7\x9d\xee\x0b\x60\x8b\x4b\xf2\xde\x5b\x63\x80\x53\xd0\x80\x56\x37\xac\x4d\xdf\x95\x18\x24\xaf\xd1\x95\xd1\xd8\x43\x0e\x65\xda\x20\x1c\xaa\x2c\xb3\x2f\xf2\x12\x0e\xd6\x49\xa5\x8e\xd0\xb5\xf4\x7d\x4f\x59\x45\xf0\x3a\x38\x00\xd9\xb0\x10\x88\x44\x82\x20\x2b\x54\x2e\x48\x7b\xaf\xc6\x57\x64\xa1\x37\xdb\x57\x64\x21\xb9\xf7\x24\x93\x4c\x64\x09\xcc\x74\x69\x4d\x65\xa6\x58\x0a\xb9\xea\xc3\x4b\x9c\x29\xae\xb2\x94\xec\x75\x69\x4f\x6e\x26\xb9\x0c\x79\xd5\x97\x6f\xa5\xf8\x7f\x49\x5a\xd6\x0c\x1e\x13\x48\xa8\xdc\xdc\x75\xa3\x97\x53\x16\x33\xf8\xbd\xdd\x86\x58\x01\x25\x0b\x79\xbe\x96\x65\x8a\x93\xcb\xd2\x42\x91\xac\x81\x53\xbf\x90\x4f\xf0\xa6\x95\x09\x53\xe6\x7f\x96\xb6\x11\xad\xc5\x3a\xee\x5c\xac\x63\xfb\x40\x3e\x9e\xc7\x10\x79\xd9\x97\xd1\x71\xb5\x66\xc9\x49\x36\x3c\x37\x53\xd5\xa3\x4a\xcd\xf1\xda\x93\xf7\x52\xb9\x58\x4b\xb0\x64\x6e\xe5\x22\x48\xea\x3b\x27\xc8\x5c\x7e\x22\x25\x2f\x29\xa4\x9a\x8a\x5a\x58\x83\xbf\xfa\x83\x44\x6f\xb5\x5a\x7a\xed\x6e\x37\xa9\x84\x3a\xf9\x63\x27\xd7\xe7\xad\x96\x04\x61\x1e\x93\x9a\x20\x68\x9a\xde\xe1\x54\xcb\xfb\x9f\xe8\xd7\xd2\x2b\xd1\xde\x6b\xe6\x6f\x1e\x5c\x5d\xd1\x1d\x06\xfb\xc0\xdb\xa4\xa0\x49\xec\x71\x02\x4f\x5c\xc2\xf4\x88\xab\x86\x91\x8e\x81\xb5\x43\x28\x28\xf3\x82\x7b\x5e\xb7\xd9\x7a\x20\x9a\xf1\x29\xfc\xd9\x21\x90\x98\x74\xf8\x8e\xd6\xe5\x8a\xd8\x79\xe4\xd0\x0b\xa2\x65\xf8\x2a\x7a\x00\xa9\x71\x4a\xd7\x2d\xaa\x92\x9f\x94\xc8\x22\x24\xb1\x95\x49\x01\x3c\x5d\xcd\xc2\xb9\x18\x76\x9c\xaa\x1f\x58\xf0\x17\x15\x1d\xc0\x77\xd0\x2c\x32\xa1\xc6\x36\x7d\x6f\x3d\x75\x7c\xa7\xbf\x8e\x1d\x3b\x5d\x62\x23\x1f\x6a\x8b\xda\x86\x9d\xd4\x36\xb4\xa9\x6d\x38\x07\x55\xab\xee\xe9\xbd\x20\xa7\xe9\x17\x0f\x14\x4f\x1c\xaf\x3c\x86\x90\x38\x53\x9a\x2e\xdf\xd9\xe8\xf8\x9e\xcb\x03\x84\x99\x2d\x69\xf1\x8a\x0b\x88\xa5\xda\xef\x78\xf5\x44\x2f\x32\x71\xac\xe9\x78\xff\x52\x2e\xe4\xce\x6f\xdf\xea\xcd\x46\xab\x16\x24\x39\xd6\xa4\xff\x7e\xa1\x09\xb2\x7e\x04\xe8\xb3\x5d\x2d\x15\xab\x39\x99\x01\x61\x3b\x85\xd4\x4c\xc8\x35\x24\x77\x2d\xbd\x44\x40\xa2\x82\xd3\x90\x23\x4b\x9c\x5d\x25\x47\x19\xf3\x04\x60\x40\x92\xb5\x28\x3e\xc2\xf3\xf5\xe1\x65\x57\x60\x91\x1e\x9f\xd1\xf9\x0e\xb5\xd3\xb0\xa2\x5b\xf0\xc1\xaf\x88\x25\xd4\xf6\xe6\x62\x82\x70\x4e\xd4\x80\x8b\xfa\x6a\x2d\xcc\xa2\xce\x88\xd2\x65\xab\xe1\xc8\x81\x58\x8a\x6c\xb1\x4d\x67\x53\x18\x91\x1e\x65\x29\x0a\x56\x52\xc9\x06\x23\x4d\x45\x81\x6c\xd1\x89\x9d\x1b\xa9\x9b\x59\x89\x42\xf9\x3b\xd6\x2f\x8d\x5f\xeb\x2c\x99\x13\x3e\x4b\xe6\x7d\x3e\x4b\xe7\x87\x03\xbf\x80\x3f\x38\x9f\x95\x73\xc2\xc0\x25\x9f\xcf\xca\xb9\x5f\xcc\x56\xf3\x98\xcf\xfe\xee\x95\x68\x8e\xf3\x46\x5a\x56\x83\x9c\x66\xb4\x93\x65\xc6\x16\x53\xf9\x47\x10\xb0\x15\x89\x67\x16\xce\x5b\xd9\x55\x4d\xd0\x2e\x2b\x26\x36\xb5\x62\x3d\x34\x35\x20\xc6\xa2\xac\xde\x21\x24\x34\xb5\x83\xff\xa8\xa2\x6e\x63\x99\x19\x9f\x8b\x8e\xaa\xc0\xaf\x9f\xea\x61\x57\x3a\x6b\x9a\xc6\x8d\x39\x22\xda\x89\x53\x3e\x4b\xae\xa9\x03\x6e\x73\xc1\x32\x2f\x9e\xd7\x9d\xdc\x28\xba\xa5\x81\x7e\x72\xdd\x34\x67\x65\xbe\x52\xf1\x2f\x9d\xff\xbc\xce\x17\xd9\x32\xa3\x85\xa9\xf1\x9f\xbd\xac\xec\x2d\xe8\xba\xa0\x69\xc2\xe9\x02\xf7\x36\x25\xed\x59\xd5\xd8\x7f\x1e\x38\xc8\x68\xf9\xf5\x57\xe2\xa8\xbd\x64\x13\x1a\x50\x96\x5c\xac\xe8\xc2\x75\x33\x8f\x81\x81\xad\x5a\x51\x65\xb0\xce\xd7\x6b\x5a\x90\x8f\xad\x22\x84\xab\x12\x73\xcb\x55\xab\x67\x4a\x11\xe6\x84\x79\x1c\x53\x65\x3c\x69\x67\xad\x95\xe7\x0a\x69\x1d\xc0\x13\x4e\x83\xac\x7c\x46\x4b\x5e\xe4\x5f\xe9\xc2\xc4\xa6\xd3\xca\x40\xb0\x71\xc4\xa5\xe0\x48\x65\x7c\xbb\xc3\x49\x51\xe4\x37\xef\xaa\x47\xce\x8b\xec\x62\xc3\xe5\xd3\x72\x95\xad\xd7\x74\x11\x1f\x44\x58\x41\x14\xdf\xee\x76\x13\xda\x01\xf5\x73\xaf\x02\x40\x45\x04\x85\x31\xaa\x68\xac\xba\x9e\x7c\xcc\xd7\x02\xf4\x2a\x3a\xd8\x8f\x42\x2a\x03\x43\x25\xc1\x1f\x04\x2b\x25\x2f\xbd\x7a\x4d\xfd\x02\x77\x74\xfe\xe0\xfe\xf4\x64\x96\x81\x18\x59\x00\xc9\x12\x92\x22\xa3\xa5\x3e\x00\xdc\x55\x7b\x9d\x2c\x16\x19\xbb\x14\x60\xe6\x45\x76\x99\xb1\x64\xf5\xb3\x01\x97\xd6\x20\xac\x8d\x8b\xec\x1f\xb2\x35\x18\x45\x24\x4f\x3d\x7b\x2c\x5d\x63\xb5\x7a\x42\xad\xef\x4d\xf3\x77\x74\x3a\x55\x42\x70\xec\x24\x2a\xe2\x92\x83\x29\x91\xb9\x4b\xaa\x31\xeb\x80\x87\x86\xa4\x9e\xc2\xfd\xd3\x62\x5a\x6b\x38\x67\xbf\xac\x17\x09\xc4\x8f\x8a\xbd\xae\xea\x60\x52\x55\xff\x42\xbe\x81\x4b\xe0\x46\xda\x63\x3b\xb6\x47\x7e\x4d\xdb\x02\x08\x5c\xc3\x58\xd7\x94\xd6\xaa\x83\x1b\xd1\xda\x3e\xf1\x73\x5d\x61\x3a\x3b\x88\xb0\x73\x5d\x3a\xd8\xf9\x33\xbd\xf8\x94\x09\x86\xff\x2a\xff\xe6\x60\xe7\x8d\x23\x8f\x86\x26\xb8\x54\xc0\xf3\x5f\x04\x32\x65\x46\xfb\xbe\xe6\x87\x11\x52\x01\xcc\x78\xcb\x47\x2c\x27\x7c\x56\x88\x23\x6e\x3e\x75\x9c\x7e\xde\x67\xb1\x3c\x90\xdc\x65\x6d\x02\xf7\x04\x01\x2c\xc4\x59\x36\xd7\xec\x33\xdb\x59\xf7\x98\xd5\x58\xde\x36\x02\xf3\xb6\xd6\xb9\xc0\xf3\x93\xe6\x14\x3a\xe0\x16\x0e\x8b\xdb\x31\x36\xff\x8a\x50\x94\x71\xbc\x5e\xee\x9e\xf3\xc5\x37\x74\xe5\x20\x7b\x45\x49\x18\x2b\xca\x72\x9c\x8e\xb7\x3c\x5f\x77\xbf\x00\x6d\x58\xe7\x1b\x79\x94\xe9\x7c\xa5\x8e\x44\x9d\xef\x6e\xb2\xd5\xea\xe9\x55\xc2\x2e\x69\xe7\xfb\xd9\xcf\x9e\xad\xfe\x98\x43\xd4\x25\xa8\xb5\xc8\x4a\x41\x2b\xcf\x3f\x53\xc6\x5f\x66\x25\xa7\x8c\x16\xa5\x87\xea\xe4\x29\xd1\xf2\x86\x29\xc4\xea\xd0\xc7\x6a\x71\x99\x3b\xe4\x56\x14\xe4\x8a\xa3\x5f\x65\x65\x35\x6f\x7f\xd9\x2b\x2b\x56\x36\x24\x35\xb1\x31\x96\x67\xe7\x46\x2e\x06\xa9\x7f\x61\xc1\x06\x16\x1b\x68\xa7\x49\x81\x45\xe3\x41\xb2\x58\xd4\x46\xe4\x39\x05\x2d\xb3\x6f\x60\x66\x67\x55\xc7\xb7\xeb\xa4\x2c\xb3\xcf\xf2\xba\x41\x59\x10\xa5\xd6\xbd\xab\x7d\xbc\xae\x9f\xe0\xcc\xb1\xda\xd2\xb2\x0a\xc1\x88\xef\x17\x7e\x63\x3e\x49\xda\x90\x89\x56\x6b\x60\xe0\x6c\xbb\xa5\x5e\xea\x25\xf6\xed\xbc\xea\x1c\xe7\xd2\x61\x31\x41\x3b\x2f\xc7\xfa\xfa\xaf\x31\x28\x16\xd8\x2a\x8c\x12\x99\x02\xc5\xcf\x49\x8e\x59\x40\x05\x10\xe5\x73\xc9\x28\xc4\x3a\x61\x76\x02\x01\x15\x55\x40\x2e\xa8\x5a\x55\x1d\x40\x00\x5e\x91\xbf\x79\x77\x6c\x2c\xb8\xb9\xf7\x95\xe9\x15\x5d\x6c\x56\x54\x72\xc7\x7a\xc0\x7f\xb5\x25\x63\x15\x0d\xa4\xa3\x67\xd7\xf5\x52\xb1\x57\xaf\x1e\xb3\xec\x1a\x6c\x93\x7f\x2c\x92\x6b\x15\x2c\xa0\xd1\xb4\xd5\xb5\x71\x38\xb3\x80\x24\x16\x64\x7f\x91\x49\x0c\x04\xe1\xee\x21\x19\x6e\x63\x57\x48\x27\x35\xf4\xee\x13\xb1\x3a\x9b\xd4\x13\x56\x6f\x12\x64\x97\x1a\x19\x83\x95\x4b\xa3\x23\x70\x72\x69\xcc\xa4\xaa\xd7\x98\xcc\x08\x73\x1b\xb9\x3f\x59\xe6\x57\x82\xe5\x52\xd7\x3d\xc8\xca\xd7\xc9\x6b\xcf\xbe\xc2\x46\xc8\x75\xb3\xf2\xc7\x8c\x41\x02\x7c\xeb\xf3\x1f\xe5\x26\x64\x9f\xc7\x79\x97\x60\x69\x8e\x9b\x8e\x33\x51\x67\x08\x25\xf9\x6b\x69\x5f\x6a\x96\xb1\x39\x5a\xa8\xb3\x50\xc7\x19\xc3\x75\x7f\xf2\xf8\x8c\x81\x4f\x56\x41\x9c\xf5\x17\x47\x86\x41\x17\xac\x8c\xcd\xe1\xf2\xb4\x0f\xe1\x0a\x44\x8f\x7f\x02\xcb\x25\x65\x5c\x78\x98\x3d\xc4\x74\xe9\xd7\xfa\x01\x79\xaf\xb0\xad\x5d\xc5\xe1\x94\x9e\x13\xa9\xf4\xea\xd8\x86\x9b\xf5\x99\xa8\x66\x76\x61\x21\x1a\x2d\x68\x71\x56\xc8\xbf\x3b\xa9\xd3\x3d\xa8\x78\xc9\x7f\x3a\x7d\xde\x77\xfe\xd3\xc1\x09\xfc\x66\xe2\xf7\xa4\x26\x99\x27\x7d\xa7\xa7\xb7\x30\x21\x91\x17\xf4\xef\x9b\xac\xa0\x8b\xde\xc5\xd7\x9e\xd3\xcf\x6a\x6f\x59\x0f\xba\xe9\xf1\xbc\x77\x93\x17\x9f\x30\xc4\x59\xdc\x14\x54\x14\x64\x2c\x5d\x6d\x16\xb4\x97\xf1\x9e\xb4\xa2\x95\x5f\x1f\x38\xe6\x22\x33\x07\x9c\xfe\x1b\x99\x81\x62\xc9\x87\x98\x12\x0e\x96\x5a\x26\xf9\xc7\x07\x57\x4d\x07\x6e\x6a\xd4\x5b\x39\xaf\xa2\x44\xbe\x93\x9a\x23\xfd\x56\xcf\xb7\x2c\x95\x35\x94\x76\xc8\x7e\xa8\x4a\xf5\x87\xa0\x23\x92\x55\xe4\x49\x53\x96\xc8\xd7\x73\xfc\x1f\xe4\xdf\x94\x14\x32\xb4\xe6\xf6\xff\xfc\x1e\x3a\xf1\xff\xb0\x5c\x9d\x70\x41\xfe\x43\xc7\xc3\xeb\x47\x48\x07\x06\xfa\x0f\x73\x22\x64\xc8\x32\x7e\x2c\x2a\xa7\xc9\xb8\x00\x5c\xfe\x81\xdc\xfe\xf8\xf2\xc5\xcf\xb1\x23\x04\x66\x07\x3f\x7d\xf9\xe6\xe9\x7f\xfc\xf9\xc5\xbb\xe7\xb1\x93\xae\xf2\xf4\xd3\x4d\x56\x52\x07\x3f\x7d\xf3\xcb\xeb\xf7\xcf\xdf\xda\x2f\xf3\x0d\xe3\xb4\xa8\xea\x58\x37\xcc\xff\xde\xbc\x7f\x98\x85\x38\x9c\xdf\x7b\x78\x2f\x10\x04\xcb\x93\xea\x81\x43\xef\x43\x7f\xfb\xc1\x47\x87\xfb\x95\x6b\x3a\x07\xcc\x4e\x65\x66\xd2\xed\x7c\xf2\x92\xae\xf5\xe2\x4b\xa3\xd2\x92\x26\x05\xd8\x74\x6f\x3f\x94\x87\x60\x1c\x3b\x49\x66\xe5\x5c\x39\xc7\x89\x9f\x95\xf2\x12\x0b\x11\xac\x7e\x06\x7d\x23\x65\xf7\x5e\x49\xd7\x49\x21\xa4\x65\x41\xe3\x37\x57\x19\xa7\xbd\x72\x9d\x40\x34\xca\x5e\x52\xd0\xd6\xa1\x34\xe9\x81\x4d\x7a\xcf\xc3\x08\x8c\x3c\x68\xb2\x08\xd4\xd1\x34\x25\x87\x1f\xca\x47\xf8\x43\xf9\x68\xfb\xa1\xec\x1f\xe2\x95\xc4\x53\x39\x9d\x25\x66\x12\x4b\x33\xb1\x33\x00\x51\x22\x29\x45\xb3\x70\x3e\x47\xb8\x51\x16\xcd\x4d\x7c\x28\xdd\x42\xd9\x8f\x10\x9a\xc7\xb3\x64\x6e\x07\xd2\x6c\x60\xb6\x9a\x30\x4f\xc6\x5a\x3c\xc8\xe2\x0c\xb5\x75\x25\x89\x65\x3a\x2c\xb6\x92\xc5\x26\xa5\xdd\xba\x4a\x15\xb5\xb4\x8a\x80\x08\x78\x06\x22\xe8\x3b\xd8\xf1\xad\xd9\xe7\x68\xea\xd5\x6a\x12\x2e\x3a\x0a\x31\x45\x71\xd2\x78\xd5\x97\xef\x22\xf1\x8e\xea\xa1\x72\xb4\x43\x78\x36\xdf\x4f\x2f\x75\xd5\x48\x35\x58\xaa\xcd\xfc\x3d\x6f\x1a\x7f\xf0\xb7\x1f\xfa\x68\xfa\x61\xf1\xe8\x43\x20\xfe\x45\x5e\xf0\x08\x1d\x22\x9c\x91\x7e\x2e\x16\x5f\x42\xf2\xd9\x60\x0e\x1c\x32\xab\xb4\xda\x2a\x39\x61\x45\x83\xce\x1f\x1d\xa4\x83\x3c\xaa\xab\x1b\x65\x08\x9c\x28\xfb\xdf\x3f\xae\x9d\xb8\x24\x6c\xa2\xbc\xb4\xa1\x48\xd9\x03\xff\xb1\x70\x62\xed\x80\x52\x92\xff\x97\xbc\x3f\x6f\x8f\x1b\xd7\x11\x47\xe1\xaf\x62\x6b\xe6\xe7\x23\x8d\x65\x77\x2d\x5e\xcb\xad\xf6\x9b\x8e\x9d\x4e\xfa\x64\x3b\x89\x93\x5e\xdc\xfe\x65\x54\x12\xab\x4a\x1d\x95\x54\xa6\x24\x2f\xb1\xeb\xbb\xbf\x0f\x01\x2e\x20\xa5\xb2\xdd\x3d\x33\xf7\xce\xf3\xdc\x3f\xe2\x14\x41\x88\x0b\x08\x82\x20\x08\x82\xdc\x9c\xcb\x57\xc1\x79\x7d\xf1\x5d\xbf\xd7\xfb\x8f\x6c\x09\xe7\x6e\x33\x38\x16\xb9\xbf\xf7\xae\xe0\xe8\x26\xd6\xd6\x21\x95\x75\xac\x0f\xb9\x56\x1d\x1b\x3e\xe5\xec\x6b\xf4\xd4\x52\x1e\x38\x70\x0b\x64\xbb\xf5\xa6\xc9\x67\x61\x19\xaa\x90\x21\x2b\xac\x41\xf8\xf0\x51\xc7\x6a\x2e\x46\xef\x25\x1a\x6d\x4a\x88\xb7\x54\xfc\x87\xef\x6d\x21\xb7\xf1\xad\xfe\x05\x9c\x06\x07\xb2\xe8\x10\x57\x8d\xdf\xa3\x3b\xbd\x5d\xd2\xa6\xce\xd0\xda\x67\x8f\x04\x4f\x51\x75\x65\xb4\xde\x0b\x9d\xfd\x05\x58\x56\xe4\x8e\x98\x5e\x42\x59\x86\x6a\x67\x6d\x43\xf5\xde\x6e\x74\x07\x91\x1d\x46\x77\xb0\x00\x8e\xfa\xbd\x5e\xc8\x4c\x2d\x93\xa2\xc3\x45\x9f\x9a\x28\x8a\xa8\xb6\x4d\xa7\xe0\xdf\x6d\x5b\xde\x31\x8e\x82\x62\x6b\x69\x67\x10\x7b\x5c\xa2\x5f\xc6\x51\xa9\x6c\x15\x95\x92\xc8\x7a\x89\x13\x4b\xa5\x65\x4e\x4d\xa2\xca\xb6\x9e\xe6\x02\xe0\x18\x4a\xc3\x26\xba\x83\x65\x6f\x74\xed\xdf\x2d\xc3\x24\x84\x48\xbf\x21\x2b\x52\x0a\xd8\xcc\xce\xf3\x8b\xad\xf8\x3c\xbf\x08\xa8\x3d\x4a\x5a\x51\xc0\x15\x29\x0e\x1b\xdb\x6d\x69\x29\x8d\x58\x8a\x68\x83\x07\x88\x16\x92\x33\x46\xfc\x0a\xce\x3c\x0c\x05\x5d\x9a\x48\x2a\xc4\x16\x79\xaa\x88\x3b\x64\x4e\xd4\x0c\x96\xad\x4a\xa2\x97\xfe\x66\x11\x1c\x9f\x6f\x16\x61\xef\x62\xf4\xb3\x5f\x84\x59\x18\x87\x55\x20\x57\x34\x30\x08\xfb\xf2\xa0\x2e\x11\x25\x48\x2f\x91\x28\x39\xef\x5f\x04\xca\x16\xbf\x0a\x6d\x53\xa1\x49\xff\x58\x40\x52\x19\x80\x05\xce\x1d\x12\x49\x8e\x1c\x3e\x45\xdd\x81\x28\x4b\x03\x03\x17\xd0\x39\x0b\x99\x26\x6a\x6f\x19\x2e\x38\xf0\xfb\x3b\x79\x31\x40\xd1\x79\xf8\x44\x3a\xb7\xcc\x71\xe8\x46\xac\x2c\x97\x6a\x8b\x7d\x44\x40\xc6\xfe\x88\xaf\x0e\x14\x51\xea\x17\xda\xb2\x6c\x9b\x02\x60\xc8\x9c\xc2\x50\xd1\x86\x01\xac\xcb\x05\x8c\x1e\x1c\xd3\x55\xf8\xd6\x4a\xa9\xec\x1a\xa5\xb6\x63\x08\xb8\xd0\xfb\x71\xb1\x7d\xdb\x6e\x5f\xd8\xd5\xbc\xb0\x56\xe6\xc3\xb0\x70\xed\x83\x81\xac\x26\x53\xb5\xc4\x58\x49\x15\x52\x92\x44\xc9\x11\xc6\xdc\xa8\xb7\x17\x3c\x2b\x79\x56\xdf\x12\xcf\x2d\x6d\x31\x5c\x44\x77\x0b\x9e\xcd\x63\x7e\xdb\x92\x00\x45\xd4\x9c\x33\x73\xa0\x76\xce\x2e\xbe\x4f\xce\xd9\xc5\xc6\xc6\x7a\xbd\xcd\xaa\x24\x5e\xc0\x6b\x37\x1f\x54\x93\x81\x9a\x5a\x56\x0b\xf4\x50\xa0\x07\x41\x78\x8d\x8e\x7e\x05\xdc\x82\x4b\x4a\xd1\xc0\xae\xda\x0c\x6b\x32\x7b\xd6\xf3\xa8\x21\x8f\x08\x89\x92\x7f\x78\xa4\x21\xdc\x04\x09\x17\x9f\x42\x43\xb6\x7c\x5a\x41\x83\xa7\x3c\xa3\x46\x9d\x7f\xaa\x76\xa2\x97\xac\xaa\x2c\xef\xde\xc3\x5e\xc9\x90\xcb\x20\xbf\xa4\xfe\x6d\x4b\x2f\x16\x1c\x7b\x92\xb0\xde\xc8\xd3\xdd\xf6\x8e\x1a\x14\x36\x4d\xb8\x38\xaf\x2f\x7c\x69\x9e\x6f\x09\xa4\x46\x4c\x14\x35\x6e\x23\x5d\x07\xb7\x36\x8b\x72\xfa\x5d\x84\x92\x55\x46\xbb\x61\x6b\x4a\x8c\x6c\xa7\x8d\x65\xf8\x95\xb1\xc5\x59\x39\x65\xf5\x8c\x71\x35\xe1\x76\x9e\xb4\x1a\x28\xe9\x25\xa6\x9e\xe4\x1e\x0e\x91\x9a\x14\xcf\x96\x54\xe0\x39\x72\x2c\x23\x6f\xc0\x87\xb1\x22\x9d\xdd\x0f\x4d\x3c\x38\x99\x8f\x8f\x65\x77\xcd\x72\x99\x08\xa0\xbd\x1e\xc4\x2b\x0f\xce\x8a\xf3\xea\xe2\xfb\xcc\xe7\x62\x35\x80\x6b\xd0\x36\x89\xcf\x93\x8b\x48\xe6\x6e\x15\x62\x59\x08\x8b\xf3\xe4\xe2\x07\x01\xaa\x1e\xfc\xa0\x12\x2c\x2d\x16\x07\x38\x09\x51\x24\xdc\x7d\x8a\xcc\x02\xcd\xed\x37\x2a\x02\xa8\xed\x55\x14\xe7\x85\x1e\x1d\x20\xd7\x79\x41\xd0\x9b\x49\xa7\xac\xee\x47\x78\xa5\x33\x37\xef\x10\x5d\x97\x0d\xe3\xb7\x1f\xe5\x75\x50\x9f\x07\xa6\x6c\x7d\x5f\x7e\xbd\xfd\x95\x76\xb8\x33\x81\xf7\xec\x4d\xc9\x2f\xcf\x3e\xbc\x7d\xf5\xf6\xa7\xd1\xda\x7f\x42\x0f\x54\xfb\xfe\x53\x3f\x64\x90\xcc\xb2\x3c\x5d\x2b\x27\x6b\x59\x5d\xad\x61\xa9\x6b\x12\x69\xdd\x0b\x42\x76\xa4\x54\x86\xd5\xbc\x63\x98\xaf\x8a\x32\xc5\x7c\x49\x94\x11\xe6\xcb\x9d\xe9\x88\xbc\x63\xf1\x54\x13\xe5\xed\xfd\xc4\x42\x00\x89\x83\x7f\x38\x89\x16\xdb\x75\xf9\xba\xbc\x56\x06\xfd\x30\x15\x28\x94\xed\x66\x02\x30\x56\x2e\xfe\x72\x52\x8e\xa3\x8f\x3e\x0f\xce\x9b\x8b\xa3\xe4\x7c\x76\xb1\x35\xfe\xbe\x3a\x9f\x5c\x74\xf1\xd1\xe4\x62\x2b\x12\x79\x5b\x3e\x22\x06\x41\x98\x9c\x4f\x2e\x36\xc7\x3f\x54\xe7\xb3\x15\x5f\x88\x95\x54\xa0\x6c\x09\x94\x0e\x79\xf1\xa5\xf5\x11\xae\x69\x73\xfc\x2e\x39\x6f\x2e\xbe\x1b\x6c\x8d\xbf\x1b\x84\x6f\xa2\xb8\x63\x8d\x0c\xa7\xd4\x5d\xe0\x8d\xb9\xd7\xb0\x80\xcb\x1a\xe1\x95\x93\xad\xee\x74\x2c\xac\x3b\x1d\xe1\x6d\x34\xdf\xea\xea\xef\x74\xeb\x4a\x4d\xcb\x5b\xb3\x46\x68\x19\x5d\x9d\x37\x17\x5b\xe3\xf0\x36\x08\x7b\xa2\x6f\xc0\x47\xca\x8e\x47\x0f\xb5\x20\x23\xf2\xaf\xfd\x22\xba\x5b\x86\x93\x10\x0a\xe0\x42\xe4\xf9\xb7\x20\xbf\x8b\x30\x0d\x3d\x2f\x08\x0b\x31\x43\x43\xa6\x44\xe0\xf9\xcd\x16\x7c\x7a\xe1\xe1\x11\xa5\x9a\xb4\x7b\x8f\x4c\xda\x6c\xe2\xff\xb8\x62\xb6\xc2\xfe\x82\x4e\x4f\x7c\xd7\x06\xcf\x3f\x21\xb0\x83\x3e\xea\x13\x1b\xff\xd6\x01\xa0\x3d\xaf\x8b\xbf\xa3\x18\x74\x28\x40\x2d\x55\xc1\x56\x42\x9d\x79\x55\x46\x97\x18\x4d\x6f\x05\x4a\xff\xe2\xfe\xde\x13\x3b\xee\xf3\x0b\xb5\x81\xac\xb7\xc7\x6c\x16\x5f\x65\x25\xc7\x9d\xe4\xda\xbf\x6f\x83\x01\x27\x8e\xce\x79\x58\x5e\x90\x0d\xe5\xda\xbf\x6f\x1b\x8b\x4d\x1c\xfd\xcb\xe7\x81\x93\xeb\x9a\x75\x00\x29\x5c\xef\x29\x3c\xb5\x0b\x8d\x23\x53\xab\x52\xce\xe3\x8e\x75\xb9\x0a\x31\x1e\x22\x5f\x8f\xa2\xea\xfe\x5e\xc5\x96\x89\xa2\x28\xd9\xec\x1b\x7a\x3f\x4e\x11\xa9\x38\xb5\x74\x25\xaa\x3e\x99\x01\x59\xd0\x95\x6d\x12\x69\x35\x9c\x6f\x6c\x2c\xfc\x1c\x4f\xad\x82\x1f\x16\x7e\x03\xca\x5a\x70\x7f\x6f\xd4\x10\x89\x02\xf0\xef\x05\x06\x22\xdf\xdf\x2b\xf5\x5b\x22\xa0\xa8\xc1\x42\x6a\x08\xaa\x44\x54\x6f\x89\x23\xe0\x50\x86\x44\x0e\xd3\x88\x96\x8d\x4e\x7c\x41\x38\x8b\xac\x46\x49\x87\xbd\x20\x1c\x47\xa4\x10\x70\xee\x0b\xc2\x79\x64\x57\x5e\xe8\xb2\xdf\x58\xdd\x4c\x9d\x3e\xcd\xac\x0e\x8c\xdd\xd6\xce\xc3\xe9\x23\xeb\x3f\x17\x02\x67\x7d\xbd\x86\xf9\xf4\x39\xe6\x19\x9c\x69\x88\x3d\xc6\x14\xaf\x88\xa2\xb7\x6f\x06\x55\x0b\x10\x2b\x52\x09\x98\xdd\xdf\xaf\xbb\x48\x63\x09\x33\x58\x73\x21\xaa\xda\x15\xfc\x78\x0b\x77\x81\x8b\xba\xa3\xa6\x99\x5b\x53\xda\x51\xd3\xbc\x55\xd3\x38\x08\x9f\x45\x57\xf7\xf7\xb7\x47\xfe\xe4\xfe\xfe\xcd\xfd\xfd\x33\xd4\x2d\xa4\xa4\x88\xd6\x7b\x21\x64\xa0\x39\x3f\x3e\x4f\x36\xc5\x86\xe9\x19\xbc\xa3\xd1\x11\x85\x4a\x16\xcc\x8e\x65\xb5\x23\x53\x3d\x3b\x86\xdc\x11\x5b\xc2\x1b\x9d\x54\x02\xf1\x4d\x3f\x03\x67\xb8\x6c\xe4\x79\x1d\xab\x07\xde\xc4\x71\xd9\xfd\x79\xa7\x48\x7a\xd8\xc1\x20\x00\xcf\x80\x4e\x91\xc9\x42\xb4\xf2\x4a\x8d\x77\x19\xaa\x39\xad\xac\xbf\x0f\x6a\xb1\xda\xcb\x3b\xb4\x87\x6c\xb4\xde\x0f\x57\x0c\xe2\x68\xbd\xbf\x0c\x41\x4e\x2b\x79\xbf\x4f\xe5\x7d\xff\xef\x59\x3d\x8c\x2a\x02\xcf\x10\x20\x59\xb2\x88\x5b\x46\x8e\x87\x55\x11\x70\xe2\x06\x8b\xaf\x9a\x01\xad\x53\x1e\xe2\xfd\x65\xa9\x1e\x17\x51\x76\x5e\x5c\x6c\xf9\xd5\x31\xe4\x38\xaa\xef\xc5\xa8\x67\x0f\xfc\xa5\xdf\xe1\xf3\x11\x7d\x11\xca\x90\xd0\x60\x67\x59\xca\x14\x6d\x0e\x1e\xdc\x03\x3c\xa4\xb8\x8a\x52\x3c\x88\x79\x4a\x37\xf3\xae\xea\x5a\x77\x0a\xcf\x22\xfa\xda\x5d\x6a\xd7\x8b\x95\x6e\x0d\x78\x0b\x2a\x9e\xc3\xc3\x58\x86\x67\x20\xc4\x9e\x14\x55\xdf\x4b\x3f\x65\x74\xaa\xfd\x41\xfb\x27\x83\x6f\xef\x0f\xc6\x2b\x59\x7a\xf2\x7e\x2f\xc5\x24\xf4\x17\x9f\x5e\x12\xbd\x33\x3d\xc1\x34\x58\x86\xb7\x8d\xeb\xd3\xb9\x77\xb3\x55\x36\xf5\x56\x39\xd9\x32\xcd\xf0\xc4\xb6\xdf\xc4\x99\xea\x3f\x50\x5a\xff\x49\xa5\xad\xf7\xa9\x69\x2a\x41\x5f\x51\x70\xd6\xd0\x63\xb8\xfb\x34\xc3\xc9\x0d\x6c\xdc\x6e\xa9\x4d\xca\x70\xf2\x5f\x18\x10\xe2\x2e\x62\x8d\xc5\x74\xd1\x3c\x4b\x12\x96\x33\x0e\x53\xf2\x48\x1f\x2c\x65\xee\x89\x86\xd9\x3c\x38\xdf\xfc\xe7\x1a\x1e\x95\xaf\xcd\xcb\x2b\x96\xae\xd5\xe5\xda\x7f\xd2\x1e\xff\xa7\x39\xd4\x8b\x8b\x74\xed\x3a\xcb\xf3\xb5\xa2\xc4\x77\xd3\x9a\x85\x10\x14\x18\x88\x6c\xd2\xd4\x0d\x67\x6b\x57\x8c\x57\x42\x36\x88\x5d\xc8\x7b\xdc\xd7\xfc\x59\x29\xef\xbc\x38\x32\xed\x3b\xce\x46\xb5\xdb\xfc\xb0\x8a\xba\xcc\x4a\x61\x12\xbd\xc3\x98\xcd\x77\x4a\xe7\x1a\x95\x5a\xfd\x5a\x86\x4d\xe7\xfd\x23\x23\x3e\x78\x54\x28\xa2\x97\x51\x41\xe6\x84\xdc\x2a\x83\x5e\xab\x9e\x3b\x43\xed\xa2\x33\x60\x36\x5b\x8a\x9d\x90\x2f\xaf\xd5\x89\xf6\x64\x3e\x57\x89\xe6\x11\x51\x64\x39\x87\x2d\x22\x79\x4c\x65\xd4\x23\x7d\xa4\xb0\xe5\x05\xe1\x24\xaa\x8f\x9b\xfb\xfb\xc5\xfd\x7d\xf2\x7f\x06\x51\x14\xe5\xff\x67\x70\x9c\x8d\xe2\x51\x15\xa6\x51\x7d\x9c\x8d\x2a\xfd\xee\x28\x9b\xd4\xa3\x89\x8f\x58\xfd\x8d\x8d\x5c\xfd\x58\x5f\x6c\x6c\xd4\xc7\x78\x0d\x65\xab\x3f\xe2\x52\x29\xa9\xcb\xc5\x28\xf5\x39\x6a\x1d\xd2\x31\x58\xa4\x95\xba\x81\x8e\xc3\x13\x9f\x4b\x6d\x65\xb9\xf4\x99\x32\xf4\xa7\xec\x2a\x4b\xd8\xfb\xec\x86\xe5\x1f\xc4\x70\x7d\x3f\xb8\xbf\x5f\xff\x2c\x3a\x43\xb4\x8e\x42\x79\xe5\x2a\x4b\xc2\x84\x58\x9b\xb8\x96\xb0\x72\x27\x37\x73\x0d\x81\x63\x15\x82\x74\xae\xac\xb1\xd9\xc4\x9f\xd3\x0a\x16\xc7\xfa\x02\x49\x65\x2e\x66\x6e\x55\xd6\x01\xc7\xa6\x52\xce\x46\x5b\x89\x34\x3b\x19\x10\x68\x76\xe1\x98\xb4\x6b\xf2\x70\x99\xe8\x90\x2d\x75\x46\x51\xe2\xb5\x05\x40\x75\x33\x8c\x37\x36\x66\x41\x7e\x3e\xbb\x88\xb0\x47\x79\x5c\xb3\x61\xea\x7b\x9b\xe3\x4d\x6f\x71\x13\xae\x79\x9b\x73\xfc\xd1\x0b\xbc\x30\x3f\x5f\x5c\x44\xbd\x30\x3f\x9f\xc0\x7f\x96\xeb\x94\xa1\x87\xb9\xce\xf2\xc6\x26\xc1\x56\x7f\xd4\x0f\xa7\x56\x0f\xe0\x5e\x1c\x14\x3b\xff\x8f\x37\x58\xf0\xf8\x3f\xa6\x76\xd1\x8b\x4d\x4f\xb4\x63\x02\xe7\x24\x57\xd1\x9d\xe5\x59\x36\x22\xdc\x48\x3c\xc3\x8d\xb4\x44\xe5\xe5\xca\x92\xa0\xda\x23\x42\xe6\xe6\x3a\xad\xb7\x97\x1f\x49\xb6\xb3\xc1\xb4\x51\x40\x55\x71\x24\x82\x10\xae\x37\x86\x99\x6e\x15\xe7\x2c\x43\x23\x11\x95\x4c\x3e\x7c\xdc\xb6\x16\xaa\x68\x68\x6b\x2f\x3a\x55\x2e\xd5\xf4\xba\x6d\xd4\x01\x47\x44\xd3\xf1\x90\xba\xa2\x14\x2b\x7c\x9c\xe1\xa9\x8b\xe2\x9c\x5d\x1c\xd7\xdb\x15\xab\x8d\x4b\x1f\x0b\x05\x34\x18\xd5\x2d\x67\x3f\x26\xad\x94\x74\x67\xbe\xb1\x41\x2b\xb3\x69\xa6\xdf\x32\x79\xe1\xdb\x1f\x75\xd0\xb6\x2c\x5e\x97\x71\x3a\x72\x0f\x48\x8d\x3f\xd9\xa9\x5f\x86\x75\xc8\xc2\xc2\xdd\xdb\xc6\xd1\x6b\xbf\x20\xea\x5a\x26\xd1\x1e\xf5\xda\x6d\xa1\x28\x57\x5d\xf3\xca\xa7\x45\x18\x8b\x23\xc3\x38\x08\x5f\xf8\x75\x68\xa4\x7e\xf1\xa8\xbf\xec\x12\xde\xf7\x73\xb9\x48\xc6\xec\x5d\x2e\x43\xc6\x56\x84\x4c\x20\x9e\x38\xe0\x87\x1d\x3f\xfd\x02\xeb\x31\x4d\x8c\xee\x96\x47\xb7\xd6\xc3\xe4\x8e\x5f\x58\xd4\x8e\x68\xc7\xd9\x65\xc3\xaa\xda\xf1\x29\xe3\xd2\x1b\x2b\x58\x62\x31\x98\x8a\x4a\x9f\xa4\xb6\xc7\x70\x9f\x60\x96\x55\x81\xed\x2e\xa9\xe6\xdb\x09\x6e\xed\x2b\x41\x4b\xe2\x8f\x76\x47\x1c\x54\x85\x82\xae\xbd\x82\x45\xc2\xf2\xf8\x1a\x9d\x5f\x2c\x1d\xcf\xed\xa8\xde\xd8\xa8\xb7\xff\x04\x2b\x27\x06\xc9\xab\xa9\xb7\x27\xc6\x2d\x92\xd9\x85\xc8\x2e\x56\x78\x6f\x47\x77\x4b\x6b\x1e\x39\x6d\x26\x3a\x51\x6c\x7e\x77\x1e\x21\xd7\xc1\x1d\x6f\x97\x7f\x5e\x5f\xb8\x74\xb0\x32\xef\xef\xef\x96\xb4\xe8\xe3\xd8\xca\x1e\xdd\x2d\x75\x3c\x64\xd2\x68\xcb\x09\xad\xb3\x5f\x0f\xde\x14\x13\xaa\xdb\x88\x2d\xc3\xae\xf6\xb2\x8b\xe0\x91\x5b\x61\xd2\x8d\x6b\xab\xd6\x6e\x5c\x4e\xf3\x56\xb9\x02\x92\x4b\x10\x6c\x1b\x25\x41\x00\x5e\x61\xf0\xd3\xa7\xbb\x2a\xbd\xd9\xd2\x4d\x0c\x05\x10\x38\xc7\x10\x04\x19\xd0\x57\x91\x82\x2c\x4a\x58\x87\xeb\x47\x95\xf4\xd5\xc5\x26\x74\x7b\xf9\x76\xf8\x5a\x46\x95\xd2\xc2\x9f\xf9\x2c\x94\xd1\x21\xb1\x56\x2f\xc4\x48\x1e\xed\xa9\x74\x62\x62\x5c\x06\x3a\x0c\x6a\x8a\xac\xbe\xfa\xab\x0f\x5d\x5f\x75\x35\x77\x75\x11\xaf\x3a\x2b\xee\x72\x6c\x5e\x5d\xc6\x27\xab\x8c\x8b\x00\x9f\x61\x67\x6c\xfb\x53\x9d\xe5\x55\xd4\xed\xb5\x8e\xda\xd9\x31\xfe\x37\x62\xc1\x36\xaa\xdd\xf0\x49\xc8\xc8\xa2\x5e\x45\x3f\x89\xb4\x9a\x09\xd1\xef\x61\xbd\x1d\x47\x8c\x39\xcf\x6c\xf6\x77\x1f\x7d\x66\x13\xc5\xa4\x9c\x07\x53\x56\x93\x08\x25\x18\x9c\x59\x6c\xd9\x1f\x09\x65\x12\x66\x6d\x8c\x85\xcc\x7b\x55\x9d\xea\x00\x2d\x47\x34\x6e\x20\x86\x73\x6f\xf2\x5c\x6c\x82\xee\xef\xf5\xe5\xa8\x15\xef\x3e\x5b\xe1\x5a\xd6\x12\x8c\xa8\x33\x66\x10\x54\x87\x89\xbd\x4c\x3d\x03\x6f\xfe\xb5\x92\xaf\x19\xd2\xea\xb5\x09\x3f\x17\x4b\xb2\x09\x7e\x49\x63\x24\x62\x24\x94\x75\xab\x16\x73\xa7\x19\x6f\xf7\x88\x16\xc9\x78\xcb\x5e\x3c\x4e\x3c\xf0\xba\x64\xe7\xbb\x17\x91\x07\x7b\xf9\x5d\xa1\xbd\x75\x52\x52\xe8\xa0\x95\xcf\x82\xf3\xde\x85\x29\xd4\x5c\x9a\xb8\x5b\xca\x17\x5e\xfa\x3d\xf9\xc4\x8b\xf7\xc5\xdb\x94\x31\x17\x27\xbc\x9c\x3f\x97\x4f\xce\xfa\x45\x70\x11\xc1\x81\x98\xd7\xeb\x0f\x86\x3b\xbb\x7b\xfb\x07\x87\x82\x7f\x1e\xa8\xb5\x5e\x2d\xc1\xe4\xa5\x3f\xf9\x12\xb3\xb9\x9e\xdd\x97\x5c\x71\xa7\x74\x47\xd1\xdd\x94\x4d\xa6\xb3\xec\xcf\xaf\xf9\xbc\x28\x17\x97\xbc\xaa\x3d\x65\xe5\xf1\x56\xa8\x4c\xfc\x9c\x5d\x44\xf0\x60\x79\xf7\xf7\x86\x5a\x20\x7f\x2d\xda\x0b\x49\xcf\x49\xd3\x64\x5c\x98\x52\xbf\x84\xde\x5f\x2e\xfd\xe0\xd8\xfa\xc6\xd9\xb7\x9b\x07\xe4\xaa\x30\xc1\x58\x8b\x79\xd4\x3f\xca\xdb\x01\x7d\xf2\xcd\x4d\x83\x0e\x4f\x69\x14\xb2\x65\x26\xd2\xd9\x79\x7e\x11\x04\xa5\x0a\xda\xd3\x04\x1b\x1b\x7e\x02\xcf\x67\x9c\x37\x17\x81\xf4\xe2\xa9\x22\xee\x17\xe6\x89\xc9\x45\xd4\x3b\x5a\x7c\xaf\x6b\x59\x6c\x6e\x06\x99\x2a\xa0\x3a\x5f\x5c\x60\x19\xe2\x97\x28\x06\xfe\x37\x41\x95\x92\xe5\x23\x13\xd7\x5a\x30\xa5\x2f\xc0\x97\x2f\xd3\xbc\x1c\xc7\xf9\x97\xa6\xc8\x2e\x1b\xf6\x25\x4b\xbf\x7c\xa1\xe1\x5e\xdb\x62\x0a\x5e\x13\x02\xd7\x68\xb8\xe1\xda\x77\x1f\xea\x7d\x82\x04\x59\x1d\xdb\xb9\xde\x3e\xfd\xf5\xd5\xd9\xab\xb7\x3f\x89\x5f\x6f\xcf\x4e\x3f\x9c\x9e\xa8\x5f\x12\xf8\xeb\xab\x33\x80\x7d\x7a\xfb\x06\x0e\x36\x4e\xec\x78\xd0\x8e\x31\xcd\x89\xfa\xec\x9a\xca\xee\x96\x47\x52\xa4\xac\x47\x2c\xb0\x5f\xcc\x08\xb2\x89\xff\xa4\x80\x4c\xf0\x72\xc2\x9d\x25\x15\xed\xe8\x53\x5a\x83\xb7\x27\xdb\x09\xab\x12\x9e\x2d\xea\x92\x1f\x3f\x92\x0f\x55\x08\xd5\x92\x0b\x94\xfb\x7b\x2e\xd4\xe6\x15\x91\xae\xd0\xeb\x71\x04\xa3\xc4\xce\x0b\x1d\xa5\xce\xd0\x98\x85\xf5\xd2\x2f\xfc\x3e\xf8\x93\x57\x7e\xe1\xf7\xe0\x01\x78\xf1\x6b\xd8\x83\x97\xdf\x0b\x7f\x38\x08\x8e\x0a\x7f\x6f\x10\x1c\x75\x85\x50\x7d\xc2\xbb\xc8\x49\xe4\x35\xc5\x1c\xfc\x87\x53\x31\xe0\x66\xb8\x94\xbf\x8c\xc7\x6e\x32\x99\x29\x07\x35\x3f\xc2\x10\xa2\x1e\x2b\x6a\x06\x07\xee\x47\x64\xec\x9b\x23\x9c\x21\x98\x2b\x3f\x94\x2c\xb2\x38\x32\x8c\x03\xe5\xc2\xc7\x18\xc0\xa2\x6b\x1b\xa8\x3b\xc5\xe9\x8b\x8b\xdc\x8e\x91\x1d\x16\x32\x4a\x36\x1e\x9c\x87\x59\x54\x6c\xc3\xee\x1c\xb6\x20\x3f\xf1\xb2\x59\x84\x71\x94\x6d\x6c\xac\x67\xdb\x59\xf5\x46\xf4\x35\x2b\xa6\xc7\xf5\x36\x34\x70\x54\xc3\xfb\x68\x31\xd7\xa1\x3b\x65\xfa\x63\x1d\xd7\x4d\xa5\xee\x4d\x64\xc5\x71\x7c\xec\x97\x51\x1e\x3a\xf9\x4d\x30\x2a\xa3\xc5\xa8\x8c\xea\x6d\x49\xc8\x77\xc5\xe9\x4d\x06\x36\x55\x95\x14\xf5\x1c\x27\xa3\x5c\xa9\x67\xe0\xa0\x57\x37\xd5\xa8\x14\x0a\x66\xc1\x6e\xea\xe7\x71\x9e\x8f\xe3\xe4\x2b\x56\xc7\xff\x27\x5f\x0b\x8e\xbb\x5e\x0b\x8e\xe1\xba\xfd\x2c\xcb\x55\xf4\xd7\xb6\x40\xb9\x73\x68\x0a\x97\xfe\x97\xa2\x03\x53\x56\x9f\x30\x9e\x5d\xb1\x54\xd0\x84\xbd\xe0\xe5\x5c\xb0\xf9\x8a\x87\xfe\xc4\x9e\x1d\xde\xc0\x44\xfa\x45\x51\x72\xac\xc8\x91\x2f\xb1\xd0\x30\x86\x20\xa0\x65\xc1\x8a\xfa\x24\x4b\x61\xc8\xac\x35\xdd\x68\xb6\x38\x0a\xbe\xba\x25\x49\x87\x26\x70\xcb\x71\x77\x76\xfa\x8c\x03\xc2\x17\xc8\x98\x9e\xb8\x45\x12\xcd\xb7\x5e\xd6\x42\xcd\x17\xdb\x79\x64\x70\x04\x5f\x14\xeb\x51\xd4\x6c\x6c\x88\xff\x16\xf0\x56\x7a\x13\x8c\x28\x0c\x82\x38\x6b\x6e\x0f\x96\x1d\xad\xef\x87\xb5\xdd\xda\x5f\xb2\x3c\xff\x84\xec\xd4\xea\x38\x5e\x6d\x7a\x4b\xb8\xc6\x87\x8f\xa7\x3a\x48\x74\xd5\x7a\xb0\x07\x6d\x08\xa4\x73\xdb\x35\xa2\x6a\x13\x52\x54\x47\x45\xc4\x43\x94\xb1\x7c\x63\x43\x85\x44\x31\x2a\x2c\xdf\xd8\xf0\x21\xf6\xe0\x4d\x56\x87\x35\x04\x21\xac\xc1\xe2\xa2\xb7\xdb\x6a\x6a\x1c\xab\x1f\xa3\x3a\x08\xef\x04\xfe\x88\x85\x72\xb6\x85\x32\xa7\x58\x8a\x36\x53\x32\xb4\x83\x30\x1a\xcd\x11\xaa\x5e\xef\x07\xb2\x7d\x51\xfd\x00\x2d\xa4\x07\x41\xa6\x03\xd0\x4f\xb2\x22\x3d\x79\xf7\xe6\xad\x50\xb3\x40\x6b\x3f\xaa\xa3\x28\x6a\xf0\x26\xee\x82\xf1\x49\xc9\xe7\x30\x47\xfd\x22\x64\xf2\x91\x48\x05\xbe\xc9\x6a\xbf\x08\x64\x70\x3b\x43\x3d\x6b\xaa\xcb\x8d\x13\x65\x11\x8c\xc4\x25\x03\xce\xd7\x30\x2d\x7c\xc5\xe5\xc9\x12\x86\x8b\x56\xdc\x69\x1a\x07\xe9\x66\x8d\x19\x12\x5c\xbe\x7c\x96\xe0\x44\x75\x45\xdd\xf1\x43\x99\x44\xfe\x8d\xea\x10\x1f\xde\xa1\x7c\xe3\x8b\x55\xa5\x3c\xce\xd4\xf0\x65\x58\xe5\x91\x58\xcb\x8e\x7d\xd2\x92\x12\x85\x9a\xcf\xc2\x52\x6d\x0d\xe3\x09\xfb\xe8\x76\xb5\x59\x86\x34\x5e\x79\x61\x7f\x0d\xcf\x9b\x88\x02\x8a\xed\xb2\x38\xd3\x2d\x3d\x2d\x52\x9f\x85\xb1\xf3\x65\x67\xf9\x8b\x07\xcb\x67\x29\x14\xbf\x54\xae\xe7\x72\x68\xff\x66\x49\xf8\x9a\x66\x4c\x39\xa3\x43\x94\xa0\x72\x65\x0d\x9a\x98\x2e\xbc\x83\xd4\x47\x85\x4b\x52\xc1\x6c\xec\x21\x7a\x6a\x29\x62\xb7\xb6\xb6\x8a\x00\xb2\x42\x68\x84\x16\x51\xe5\xe4\xb5\xbf\xed\xac\x29\x7f\xa8\x06\x4d\x8e\x47\xc9\xfa\xb4\x62\x84\xe4\x6b\x4d\x64\x2a\xc3\xd4\xac\x87\x37\x4f\x08\x8e\xba\x93\x4d\x61\xb2\x28\x65\xb2\x68\xad\xae\x50\x1d\x6d\xac\x33\xf9\xf4\x23\x14\xb5\x25\x56\xd4\xa3\x8b\x7a\x3a\x33\x29\xb3\x1d\xc4\xd5\x3c\xb1\xde\xa3\x0f\xac\xd9\x0d\xd3\x1f\xf1\xe0\x0e\xfd\xb0\xc5\x9a\xd0\xa1\x1a\x30\x7c\x65\x7e\x55\xaf\x2d\xa2\x45\xeb\xfd\x0e\x4c\xd1\x66\x87\x33\x5a\xa1\x5a\x3b\x29\x50\x28\xb7\x70\xdc\xda\xd7\x1b\x1b\xeb\x84\x7d\xe3\x34\x3d\x2d\x52\x65\x3e\x39\x62\x1b\x1b\xeb\xb6\xc8\xb0\x11\xd4\xc5\xf0\x8e\x2c\x9f\xb5\x1b\xad\x04\x7f\xbd\xb1\x41\xde\x42\x68\xa1\x85\x75\x10\x8c\x1e\x44\xe8\xc1\x98\x71\x56\xa4\x8c\xaf\x78\xd6\xce\x5a\xea\x85\x56\x20\x74\x94\x80\x84\x15\xa0\xaf\x9e\x43\x07\xc0\x31\x02\xdc\x3a\x39\x2b\x42\x57\x9a\x6b\x63\x88\xda\xd6\xdc\x2d\xd5\xab\x8a\x61\x19\xdd\x2d\x8d\x8d\x05\x4f\x0e\x02\xf9\x96\x6b\xef\x88\x7f\x9f\xd1\x50\x09\x45\x94\x9d\xf3\x8b\xb0\x26\x7e\x11\x3f\x44\xbd\xfb\x7b\xbf\x54\x9b\x08\xe3\x27\xb1\xf4\xeb\xf0\xdc\x53\x6d\xf2\x70\x23\x2b\x1f\x3f\xe3\xdb\x59\x11\xea\xdf\x54\x49\x35\x50\x6b\x81\x33\x60\x5c\x17\x4c\x9a\xd9\x5f\x31\x0b\x59\xaa\x18\xe4\x6b\x6b\x9c\x0d\xbc\x74\x6b\x37\x0b\x44\x0b\xc6\x52\x0b\x64\x55\xa8\xe5\x9f\x0b\x62\x69\xe8\xa9\x41\x21\xde\xc1\x85\x1e\x55\xb8\x6f\x77\x84\xe7\x2b\xe6\xe5\x9a\xe7\x92\x7c\xdb\x65\x91\xdf\x52\x2f\x14\xf3\xb6\x4d\x5e\x16\x4c\x1e\xa3\xf8\x59\xc8\x83\x65\xc8\x97\x3e\x29\x41\x29\x74\x64\x83\x96\xfa\xc1\xdd\x72\xa2\x96\xe8\xb3\xdb\x05\xab\xa2\x96\x72\xcd\xb7\xf1\xc5\x8e\x65\x38\x41\xce\x7a\xfe\x20\x3a\xbd\xe4\x24\x3e\x11\x6c\x29\x51\x45\x52\x36\x07\xb5\xf2\xbb\xac\x18\xad\xf7\x43\x3a\xee\x22\x6d\x8d\xb8\x00\x48\x1d\x60\xbd\x2f\x55\xb7\xf5\x5e\x08\xaa\xdc\x7a\x2f\x94\x63\x31\x4a\x43\x33\x52\x26\xc1\x52\xfc\x2d\x90\xd5\x0f\x8d\x00\xa3\x31\x4a\x45\xab\xcc\x5e\xb3\x17\x4e\xd4\xe6\xb2\x2f\x7e\xaa\xbd\xe4\x40\x25\x4e\x4f\xa2\xa1\xc4\x11\xf0\x1d\x19\x0b\xd6\xef\x89\x05\xb9\xcc\x6f\x27\x59\x9e\x07\xfe\x84\xbe\xce\x33\xfb\xcb\xc6\x0d\x08\xdf\x0d\xa6\xb5\x8f\xb3\x78\xc1\xa2\x5a\x71\xb0\x4c\x53\x03\xc6\x91\xcf\x23\xd8\x9b\x6f\x6c\x70\x52\xd0\x91\xfb\x0d\xc8\x8b\x76\xd1\xb8\xcd\xf9\x9b\xc6\x17\xcb\x90\x52\x75\x98\x08\xc0\x2e\x00\xf6\x81\x7e\x7f\xff\x6f\x99\x06\xf4\x27\x89\xde\xff\xf9\xc9\xff\xfe\xc0\xda\xc1\x36\x1c\x38\xa3\x61\x40\x57\xe4\x3e\x96\x62\xed\x2c\x88\x4d\x5a\xdf\x98\x91\x86\x69\x51\xca\xda\x2c\xae\x8a\x7f\xd4\x6b\x63\xc6\x8a\xb5\xac\xc8\xea\x2c\xce\xb3\x8a\xa5\x6b\x5b\x6b\x55\xb3\x60\xdc\x0f\x2c\x0c\xb4\x59\x1b\xe3\xb4\x7a\x6d\x45\x76\x0c\x8e\x14\x2a\x9b\x72\x96\x19\x5b\x2d\x01\x2b\x5f\xb7\x84\x47\x0c\xe0\x59\xf7\xa7\x1b\x4c\xc2\x32\xf2\x57\xd9\x4c\x82\xed\x59\x5c\xa4\x39\xc3\x79\x89\x07\x95\xb9\x9f\xc3\x75\x08\x63\x11\x91\x56\x0b\x8a\x3a\x2a\x43\x78\x9f\xe2\x03\x2c\xa5\xa3\xf5\xde\xf2\x7f\xd6\x6c\x91\x75\x99\x2d\xb2\xbf\x61\xb6\xb8\x23\x7b\xa0\x75\x62\x34\x60\xe9\x72\xb9\x0c\xb3\x27\x58\x1e\x14\xbe\x8e\xcd\x24\xed\x67\x91\x20\x42\xf6\xb4\x4d\xbc\xfe\xa4\xff\x17\x2c\x28\xca\x5f\x8d\xa8\x1a\xb5\x35\x7e\xca\xe1\x48\x21\x8c\xea\x6d\x32\x48\xc7\x20\x2e\xa7\xac\x7e\x85\x7c\x0c\x84\x7b\x13\x2f\x16\x59\x31\x0d\x60\x05\x1c\x29\x0c\x50\xfc\x9c\x6c\x78\x46\xc1\x1a\xf3\x3e\x10\x8c\x36\xa0\xb3\xc1\xaa\x50\xbb\x40\xa2\xff\xa9\xe6\x06\x47\x4c\x4c\x00\x90\x05\xf7\xf7\xf2\x1d\x4e\xb3\x5b\x80\x6b\x04\xf6\xfe\xa1\x0e\xac\x11\x70\xb7\xdc\x1d\x96\xf4\xc4\xbf\x5b\x86\x35\xa9\x52\x85\x8d\x46\x8d\xa1\x38\x87\x26\x5c\x84\x86\x86\xc5\x12\x5e\xed\x0a\xb3\x87\xd5\x46\xd4\x04\x6b\xf9\x80\x0d\x30\x80\x0c\x8b\x95\xe5\xe9\x8b\x58\x30\xf6\xed\xff\x16\xdd\x90\x09\xdd\x50\xb5\xd2\x0b\x3d\xda\x46\xef\x42\x2c\x21\x0d\x8d\x46\xa6\x89\x05\x62\xa9\x45\xb3\xa7\xa9\x85\xf2\x40\xb0\x3e\xce\x46\x44\x7f\x02\xa9\xa0\x14\xa8\x3a\xe4\x61\xf6\x80\x0a\xb5\x78\x8a\x2a\xa4\x9f\xea\x93\x1a\xd4\x76\x56\x7d\x90\x21\x50\x96\xe1\xc2\xd6\x8c\x16\x8e\x66\xa4\x69\x32\xf2\xd2\xec\xca\x0b\x29\x5d\x46\x9d\xbe\x86\x4b\x69\xbd\xf6\x7b\x61\x46\x34\x91\x05\xd5\x44\x26\x8f\xbf\x13\xa8\x1f\xbe\x07\x1f\x54\x85\x7c\x67\xbd\xe8\x26\x24\x87\xf3\x28\xab\xd9\xea\x88\x55\x48\x7a\x7c\x32\x31\x30\xf2\x90\x94\xbe\xe7\xd6\xf1\x7d\x92\xb3\x98\x3f\xb5\x84\x4a\x9d\xec\x46\x51\x64\x2a\x56\x2a\x34\xd9\x75\xb1\xb0\x07\xdb\x0d\xc0\xcc\xee\xef\xd7\x8b\x80\x6e\xdb\xb4\xd2\x4d\x4a\x09\xdd\xcf\x6b\x7e\x7b\x47\x94\xf3\x9e\x3a\x26\xac\xf1\x44\x57\x65\x49\x8d\x00\x76\xc6\x16\x92\x8d\x80\x8e\x3e\x02\x61\xb9\x5c\x77\x0e\x87\x8b\xa8\x6b\x6b\x60\xda\x73\x6c\x7e\x8e\x32\x59\x01\x13\xbb\xeb\x6c\x09\x2d\xe9\xfc\x9c\x12\xf6\x98\x26\x46\xb1\x29\x82\x47\xf1\x52\x3d\x47\x98\x84\x79\x74\x7e\x11\x36\x62\xdf\xbf\x88\xb6\xfa\xf4\xed\xb4\xe0\xae\xd9\xd8\x48\x36\x36\x7c\xc8\x4d\xe4\xb4\x3f\xce\xa3\x44\x85\xdb\xc8\x83\x91\xf8\x28\xcc\xb5\xa3\x59\xea\xd3\xb8\x4e\xa9\x8c\x71\xd9\x28\x89\x55\x09\x5d\xb9\x89\xd6\x7b\xe4\xac\x3a\xd7\xca\xda\x11\xea\x73\x49\x94\x43\xab\x8e\x36\x37\x17\xdf\xd7\x47\x41\xb2\xb1\x91\x9c\x2f\x2e\xb6\x79\x53\xf8\xc1\x11\x54\x68\xbe\x5a\x26\x68\xa0\x80\x36\x3a\xa7\x7b\x5c\xec\xa0\x09\x11\xf4\xc5\x49\x02\x13\xb2\x4d\xf0\x0c\xc7\x20\x1a\xeb\x42\xc7\xeb\xfa\x86\x5b\x25\x85\x6e\x11\x30\x24\x3e\xeb\x66\x17\x4e\xd9\xa5\xcd\x2c\x9c\x32\x8b\x60\x15\x51\x8e\xf5\x4a\x5a\xa8\xec\xce\x93\x46\xa8\x3a\xa8\x0d\x70\x1e\xdf\x46\x35\x7d\x12\x2d\xb8\x5b\x96\x60\x76\x38\xcb\x3a\x0d\x42\x62\x06\xca\xb7\xc2\x1d\x45\x79\xab\x0f\x54\x68\x47\x23\x32\x87\x9e\x51\xff\xa8\x68\x2b\xd8\xe8\x5c\x50\x6c\xf5\x2f\x88\x82\x5d\x5c\x1c\xe5\x18\x05\x4e\xd4\x88\xed\x0f\xc2\x3e\x3c\x0d\x81\xdf\xdd\xdf\x37\xf7\xf7\x95\x9f\x06\xcb\x70\x46\x94\x31\xde\x14\x2d\x8d\x65\xd2\x14\x52\xbb\xc6\x23\x31\xdd\xf7\x60\x19\x96\xdb\x75\x56\xe7\x2c\xf2\xc6\xbc\xbc\xae\x18\xf7\xc2\x72\x5b\xfe\x14\x4a\x52\xb9\xcd\x8a\x2b\x21\x6f\xcb\xed\x98\x4f\xaf\x04\xa3\x97\xdb\xd2\x07\x1d\xa3\x03\x28\x87\x74\x44\x2a\x8b\x68\x2c\x70\x53\x6d\x2b\x80\x74\x59\x24\x0c\x7f\x4c\x26\xf0\x3f\xba\x65\x5a\x38\xd2\x53\x33\xcf\xb5\x23\x0f\x80\xd9\x3c\xab\xe1\xc7\x82\xb3\x05\x2b\xec\x72\x25\xec\x5d\x91\xd8\x65\xe5\xba\x88\xb6\xe8\x3f\xbf\x10\x0d\x15\xea\x72\x56\x4c\xad\xfc\x96\x90\x5d\xf0\x32\x61\x55\xa5\x90\xd7\x32\x14\xb3\xda\x2f\xdf\x03\x02\x26\xd7\x69\x5b\x79\xf5\xbe\xf3\x20\x6f\x96\x66\xfc\x69\x95\x00\xea\x8a\x2a\x9a\x79\x5c\x7d\xed\xf0\x14\xe8\x75\x38\x24\x48\x4b\x9f\xbf\xb7\x07\xa1\xa0\xb3\x62\xd1\xe0\xce\x7f\xa1\x1c\x7e\xcb\x45\x3d\x85\x05\x17\xde\x27\xcd\x59\x02\xf9\xe3\xa6\xae\x31\x3f\x8d\x6b\xb1\x55\x02\xa8\x58\xae\x21\xdc\x3a\x68\xc8\x62\xcd\x1e\x89\x7f\xa0\x3f\xc3\xdf\x14\x72\xea\xd9\xe8\x0e\x00\x4b\x01\xb9\xab\x67\x2c\x4e\x5b\x48\xf0\xb6\xe3\x9d\xca\xca\xb3\xe2\x2b\xb4\x00\x8e\xe0\x01\x21\xcf\x46\x77\x79\x06\x3f\x17\xa3\xbb\x05\xfc\x98\xf5\xf5\xaf\x81\xfe\x35\xd4\xbf\x76\xf4\xaf\x5d\xfd\x6b\x4f\xfd\x92\x9d\x2b\x43\x24\x42\x19\x96\x4d\x8d\x3f\x64\x67\x4b\xd3\xd7\xd2\x74\xb5\x54\xb4\xba\xd3\x34\x5b\x1a\xa2\xdd\x11\xf2\x2d\x97\x61\x1c\xdd\xe9\x0d\x0f\x3e\x5c\x29\xc9\x15\x8e\xe3\x8a\xa9\xff\x27\x65\x81\x44\xe6\xf8\x20\x56\x8e\xff\xcd\xe7\x71\x01\xc4\x60\xf3\xb1\xf4\xaa\xe6\xf1\x1c\xbe\x9a\x01\x66\x36\x9f\xc2\x7f\x6a\x10\xb3\x0a\xb4\x44\xf1\xf3\x2b\xbb\x9d\xb2\x82\x52\x72\xce\x6a\xa8\x78\x11\xf3\x78\x0e\xa4\x2d\x1b\x9e\x40\x69\x35\x8f\x13\xc0\xb9\x1e\xe3\x8e\xaf\x6a\x35\x7b\x1e\xe3\x60\x55\x57\x53\xc0\x48\xda\x18\x19\xd4\x52\xc2\x5f\xa8\x79\x5e\xc1\x5f\x41\x39\xf1\xc3\x03\x0f\x30\x70\xb1\xdd\xba\x99\xe7\x1e\x74\xa8\xe4\x2c\x9b\x16\xa8\x0b\x03\x77\xb1\x2a\x81\x26\x09\xb9\x83\xc3\x1e\x7d\xf7\x47\x75\xff\xc7\x77\xdf\x99\xa5\xb3\x21\x12\xfb\x8b\x72\xb9\xad\xc1\x9f\x14\x61\xc9\xb8\x8a\x18\x49\xd7\xf1\x14\xc2\xf2\xa9\xc0\xa8\x5f\xd0\x95\xbc\x0b\x86\x8f\xf4\x3b\x40\xe5\x2e\x00\xa0\xaa\x8e\x93\xaf\x10\x8a\x11\x92\xb2\x0b\x6a\xa3\xaa\xe0\x70\x5f\x11\xc2\x7d\x47\x72\x37\xc9\x64\xf8\x6f\x5a\x56\xae\xae\xdf\x9f\xc5\x53\x30\x23\x45\x1e\x05\x55\x5e\x26\x4f\x15\x54\x37\x8f\xd7\xd7\xad\xf4\xb6\x85\x3e\x72\x32\x6f\xe6\xf9\x9b\x32\x65\x6e\x65\xda\xe3\xdb\xad\xd2\xce\xf8\x0b\x95\xdb\x1f\x3e\xdc\x0c\x05\x3d\x2b\xbf\xb2\x22\xfb\xc6\xe0\x21\xbb\x68\x45\x5e\xa0\x46\x50\x01\x60\x91\xe5\xbe\x85\x0e\x38\x81\x19\xfb\xed\xb2\x80\x6b\xfc\x3c\x2b\xf4\x29\x6e\x0b\x2e\x1d\x3d\x0b\x7f\xa7\x1f\xf8\x4d\x58\xf8\xfd\x61\x2f\xd8\x06\x67\xd1\xd3\x79\x56\xd7\xa2\xee\x86\xac\x9d\x5f\xf0\x4c\x5b\x3d\x5b\x6a\x89\x6d\xb5\x07\xa2\xc3\x7c\xec\x34\x7c\xfb\x4b\xc5\xe0\x03\x78\x9d\xf4\xfb\x88\x1d\xb7\xf8\x64\xe4\x42\x1e\x2c\x62\x8b\x75\xe3\xab\x06\x6c\xf6\x1d\xbe\x73\x4b\x9b\xb2\xfa\x99\xf4\xdc\xc7\xb8\xf4\xc1\xd2\xea\xb1\x6b\x7a\x61\x6a\xca\xd9\x94\xf0\xfb\x81\x5d\xd1\xd6\x96\x35\x14\xa2\x10\x7b\x10\x04\x44\xe8\x60\x4e\x6d\xe5\x82\x15\x6a\xa6\x3a\x9a\xe6\x8a\xd9\x02\xee\x03\xcc\x0e\x63\x11\x38\x73\x9e\x85\xdd\xdc\xb8\xb1\xc1\xd6\xb2\x62\x2d\xd3\x1a\x58\x7d\xe4\xcb\xc3\x1f\x9c\xe2\xe7\xe4\xb7\x09\x8b\x17\x88\x6f\xce\xd9\x05\x3a\x8b\x94\x45\x92\x97\x15\xab\xe3\x29\xbc\xd3\xf4\x60\x4d\xb1\x0a\x9c\x2b\x8b\x04\x05\x8e\x05\x21\x64\x56\xc7\x5d\xd2\x04\x71\xd6\x7b\xc1\x08\x90\x12\x45\xc6\x4e\xac\x7e\x60\x4f\x01\x42\x4e\x9b\xfc\x24\x43\x1f\x4b\xdb\x59\xea\xfc\x55\x8b\xbf\xbb\xe5\xaa\xd1\x62\x45\xda\x52\x29\x57\x31\x88\x2a\x4e\x17\xef\x54\xda\x01\xf4\xad\xc1\xb4\x8b\x09\x3a\x64\x74\xb0\x72\xb4\x69\xe1\x6a\xd0\x14\x54\x16\x0f\xa3\xd4\x8d\x69\xb7\xc3\xe5\x31\xcf\x73\xa9\xa3\xbe\xeb\x66\xe4\x55\xf4\x79\x22\x83\xfb\xc8\x32\xf7\xf7\xc8\x15\xc1\x2a\xb6\x28\x17\xbe\xa6\x07\x65\x63\xf9\x61\xac\x4e\x7a\x5d\x62\x05\x9d\xd0\xfb\x7b\x6f\xcc\x65\xf4\x60\x6f\x01\x3f\x14\x47\xaf\xe2\x29\x41\x84\xe7\x0d\xe7\xac\xa8\xcf\xe2\xa9\x1f\x90\xd7\xb6\xac\xa9\xb6\x9d\xc7\x15\x8a\x30\x08\x29\x85\x6f\x1c\x81\x3b\x90\x26\x99\x3d\x1c\x30\x69\x9d\x22\x70\x86\xd6\x47\xf5\xd6\xd6\x51\xf0\xc0\x18\xca\xd9\x27\x88\x83\xed\x59\x6b\x17\x13\xd5\x90\xa3\xbb\xb9\x82\x20\x7f\xb1\xf7\x4b\x97\x4b\x2a\x96\x4f\x04\x5a\x56\x4c\x2d\x5e\x71\x74\x1b\x53\xa1\x0d\xe6\x2c\x29\xa7\x42\x96\x7f\x64\xf9\xe4\x39\x96\xa3\x70\x6c\x5e\x38\xef\x64\x10\x2d\xd4\x8e\x57\xb4\x78\x64\xf7\x8f\x15\xa9\xbb\x46\xb8\xdf\xac\x30\xa2\xaa\x99\x72\xd4\x51\x60\xf8\xa8\xcc\x95\x9e\x62\x0f\xcd\x60\x67\xa4\x99\x55\xaa\x1c\x6c\x97\xfa\x44\x09\x6c\xaf\x71\x2b\x54\x9b\x87\x56\x1c\x52\x1e\xeb\xae\x4b\xec\x27\x3a\xea\x22\x9a\xe7\xe6\xaa\x4f\x3b\xe5\x2c\xf6\x5a\xdf\x8b\xb4\x89\xa1\xc1\xbe\xdb\xbc\xb6\xc2\xdb\x12\xd0\xeb\x4f\x3a\xb2\xb3\x3e\x6a\x51\x21\x70\x97\x91\x73\x17\xe3\x22\x7a\xa4\x25\x0f\x69\xe8\x0e\x23\xc2\xf9\x07\x1e\x35\x65\x65\xf1\xd6\x1d\x55\x15\x9b\x41\x86\x26\xce\x83\xb0\x88\xea\xef\x7b\xf8\xae\x4f\x33\xae\x6a\xee\xf7\xc2\x3a\xb0\x5c\x79\x3a\xe5\x71\x11\x15\xee\xf0\x17\xee\x90\xa5\x2c\xc9\x63\xbc\xfd\xd8\xbd\x00\x48\x65\x14\x37\xf7\x59\x31\xcd\x4c\xcb\x03\x4b\x3c\xb6\x7b\x05\xd6\xb0\xc7\x0a\xf1\xbd\x75\x6f\xb3\x0e\xc5\x5f\xd6\x16\x3b\x9d\x9f\xfc\xbf\xd5\xd0\x63\x68\xe8\x71\x67\x43\xc5\x1e\x98\x15\x4f\x50\x41\x77\x6c\x35\x46\x7e\xe7\x08\x07\x04\xba\x2a\x8f\x04\xb3\x22\xed\x44\xef\x90\x79\x65\x91\xac\x98\xc8\xab\xd6\xf5\xa7\xca\xf1\xe7\x27\xcf\xce\x9e\x1d\xdb\x82\x4e\x54\x05\x2a\xbe\xd3\x3c\x0d\xf7\x83\xa7\xa9\xdb\x61\xeb\xf3\x76\x9f\x25\xd4\x0f\xb4\xe8\x57\x54\xf3\xce\xa1\x71\xe7\xde\x26\xdb\xf4\x2e\x2e\xbc\x16\x4d\x18\xe7\xa5\x6b\xcc\x32\x25\x43\xae\x5d\x19\x80\x3a\xb6\x01\x8e\xa4\x7b\x48\x03\xa0\x2b\x0c\x5d\x33\x8e\xd8\x0f\xbd\xa3\xc7\x54\x80\xf3\xad\x2d\x76\x11\xd8\x3c\xda\xa2\x48\xc7\xf0\x73\x56\xb1\xf6\xc1\xaf\xc4\x87\x4c\xbb\x08\x00\xf9\xad\x8d\xec\xb6\x03\x7f\xba\x89\xe2\x21\x6b\xc4\x5f\xdc\xfd\x5a\x1d\x83\xdc\xe7\xe5\x7c\x91\xb3\xba\x63\x49\xb4\xda\x2b\xe8\xe2\x0e\xdd\x35\xcf\xba\xbe\x23\x5d\x06\x8c\xd6\x77\xd6\x80\x77\x7c\xd5\x55\xd7\x22\x6e\x2a\xd6\x1e\x04\xf3\x11\x20\x74\x0c\x5d\x33\x7f\xf0\x33\xc4\x70\xbf\x43\xca\xcc\x9a\xe2\x6b\xd4\xea\xb0\x85\x98\x96\x05\x8b\x9c\xbe\x91\x53\xc2\xa6\x6d\x90\x35\x99\x73\x15\xfb\xb2\xf0\xfb\x83\xdd\x20\x2c\xe1\xc7\x3e\x3a\xfe\xf4\x07\x07\xd2\xf3\x67\x70\x18\x84\x55\xd4\x0b\x93\xa8\xda\xdc\x0c\x73\xf8\xdb\xc0\xdf\x05\xfc\x9d\xc0\xdf\x14\xfe\xce\xe0\xef\x18\xfe\xce\xe1\xef\x1b\xf8\x3b\x85\xbf\x57\xf0\xf7\x16\xfe\x3e\x83\xbf\xd7\xf0\xf7\x1b\xfc\xfd\x02\x7f\xdf\xc1\xdf\x33\xf8\x7b\x03\x7f\xdf\xc2\xdf\xd7\xf0\xf7\x14\xfe\x7e\x84\xbf\x97\xf0\xf7\x39\xfc\xfd\x0a\x7f\x7f\x81\xbf\x27\xf0\xf7\x47\xf8\xfb\x1e\xfe\x7e\x80\xbf\xbf\xc2\xdf\x3f\xe1\xef\x2b\xf8\xfb\x09\xfe\xbe\x84\xbf\x2f\xe0\xef\x67\xf8\xfb\x1b\xfc\xfd\x09\xfe\xfe\x13\xfe\xfe\x0b\xfe\xfe\x3b\xfc\xfd\x19\xfe\xfe\x0e\x7f\x19\x83\xff\x6a\xfc\xaf\xc0\xff\x38\xfe\x57\xe2\x7f\x19\xfe\x17\xe3\x7f\x15\xfe\x97\xe0\x7f\x39\x8b\x7a\x61\xc3\xa2\x9c\x09\x6a\xca\xff\x27\xf8\x3f\xf1\xf3\x63\x24\x34\xd0\x9a\x87\x97\x61\xbd\x3f\x0a\xfd\xab\xd6\xbf\x26\xfa\x17\xbc\x41\xcb\xc8\xa1\x13\xb3\x2d\xf2\x8e\x4a\x69\xae\x6f\x44\x11\x3f\xb6\xee\x92\x03\x44\xcf\xfd\x9a\x45\xf5\xc8\xa7\x49\x79\xdd\xff\x4b\x86\xa6\x98\x60\x69\x0e\xb8\xcb\xe0\xae\x14\x9f\xdf\xdf\x97\x10\x48\xed\xaf\x94\x42\xce\xc1\x98\x1d\xe8\xa7\xb3\xe1\xd4\xf1\x99\xe3\xd3\xc3\xfc\xb1\x3a\x9b\xd5\x75\xce\x19\x35\xf9\x22\x7a\x22\xd1\xc7\xcd\x64\xc2\xb8\x11\x92\xd4\x46\xa6\x6c\xaf\x58\xa6\x4e\xe1\x27\xf8\xcc\x84\x01\xc6\x15\xfb\x68\x95\x5c\x2d\x58\x92\xc5\x79\xd4\x30\x62\x57\x96\xd1\x16\xbe\xf0\xa6\x28\xb2\x62\xaa\x9d\x85\xbe\xb0\x22\x95\x4f\xef\x40\x52\xae\xf5\xd1\xba\x7a\xda\x5c\x6d\xae\x65\x7e\xca\x92\x32\x65\xa7\x45\x9d\xd5\x19\xab\x0c\x9a\x0d\x0f\x96\x73\x46\xb5\x5c\xe8\xfa\x99\x6b\x96\xf3\xbe\xc7\xc8\x78\x3e\xe9\xec\x0f\x6d\x6a\x74\xa8\x05\x5a\x79\xfb\xc8\xa4\x48\x24\x3b\xa7\x9a\x45\x79\x17\x51\x49\x2d\x52\x4f\x70\x7a\xa3\x2a\x52\x04\x8c\xa2\x86\x6d\x6c\x78\x1b\x9e\xb5\x93\xfb\x6f\x69\x66\xc7\xa8\x41\xaa\x64\x8f\xb5\x7c\x19\x76\x90\xf6\x47\x78\x12\x47\xaa\xfb\x36\x8d\xbf\xf3\x5a\x0c\x3c\x19\x39\x94\x7f\x1a\x65\x57\xd2\xd2\xfb\x41\x0a\x0c\x8b\x7c\xeb\x82\x7c\xf7\xf7\x20\x77\xac\xea\x93\x91\xb7\x6e\x55\x8f\xe0\xeb\x47\xea\xd9\xec\x07\x23\xef\xb8\xe3\xc3\x2f\x4f\xf8\xd0\xfa\xc0\xe2\xf4\xfb\x7b\xaf\x52\xe6\xa1\x8f\xf0\xe3\xb8\x19\xbd\xff\x5b\xa3\xf0\xaa\xe8\x1a\x01\x5f\x0e\xc1\xfd\xbd\xa6\x13\xd0\xc4\xec\x33\xd9\x3c\xab\xe1\xe8\xc0\xf7\x2c\xa3\x8c\x67\x33\xf5\xd8\x15\x34\xab\x39\xe1\xb9\x50\x1c\xb3\x62\xda\xd5\x1e\xa8\xfc\xfe\xde\x97\xad\x71\x86\xa6\x3d\x84\xc7\x5e\xa5\xda\xff\xb1\xfd\xc5\x07\x9b\xb4\x89\xd3\x46\x3b\x37\x7d\x8c\xac\xab\xe8\xfa\x50\x7f\xfc\x27\x91\x55\xa9\xd2\x0e\x4d\x67\x4f\xa1\xe9\xb3\x49\xcd\xf8\x43\x4d\x90\x2d\xd0\x35\xdb\xb4\x78\x80\x2f\x1f\x18\x42\xcb\x80\xd3\x55\xdb\x71\x97\x35\xda\x31\x4d\x3d\xad\x15\xa3\x2e\x21\xb1\x18\x29\x46\xa1\xd0\xf9\xdf\x9c\x18\xc4\xd4\x77\xe6\x98\x97\x3b\xbb\x63\x9b\x18\xff\x46\x97\xba\x1a\xff\xa4\x09\xf4\xaa\x58\x4d\x79\xdf\x8b\xd4\x54\x78\x6c\x4e\x53\x63\x56\xa1\x5f\xfb\x7b\x5c\xb0\x6e\xf5\xad\xae\xbe\x79\x32\x7f\x3e\xc0\x2f\x51\x7b\x74\xa7\x23\xb7\x07\xc7\x1d\x0d\x6f\x73\x93\x4b\x42\x87\xce\x0f\x7f\xfc\xf7\x98\xc7\x99\x0e\x9f\xc1\x8e\x46\xfb\xf7\x0f\xef\x1f\xed\x45\xe1\xea\x29\x6c\xff\x8f\x8e\xd5\xe4\xf6\x6f\x32\xd7\xb3\x47\xbe\xfb\x8b\xbc\x07\xdd\x3c\x29\x9b\x71\xce\xfe\xd5\x94\x35\xab\x1e\xea\xb2\x25\xe9\x8c\xcd\xd6\xb3\x8d\x27\x2b\xc7\x74\x95\x36\xe4\x6a\x3e\x8f\x55\x63\x94\x1a\x52\xfc\x7f\x87\x7a\xe3\xd2\xe5\x63\x56\x4c\x3b\xe9\xe2\x8c\xe8\xff\xd7\xe8\xf2\xb6\xec\xa0\x89\x64\x56\x67\x9a\xff\x17\x49\xe3\x8a\x81\xff\xe5\x84\x42\x19\x72\xb2\xc2\xbe\x4d\x2b\xf0\xce\x91\x4c\xaf\x47\xf2\xcd\xb0\xe3\x77\xa3\x6f\x2b\x88\xbf\xaa\x3c\x57\x1d\x40\x5a\x12\xeb\xfa\xa3\xfb\x97\xbf\xab\x3a\xbc\x2a\xde\x6b\x73\xf5\xab\x15\x46\xf2\xee\xd6\x75\x9b\xb9\xff\xa7\xda\x29\xb5\xd4\x0e\x3b\xb9\xa2\xba\x25\x5b\xcf\x9e\x20\x93\x29\xfe\xaa\x01\x7b\xa0\x42\x47\x77\x5b\xc1\x47\xa8\x09\x62\x29\xfd\xd5\x3c\x24\xfb\xf0\x76\x74\xf6\x68\x29\x83\xc7\x75\x21\x65\xcb\x96\x73\x04\x8c\x00\xf2\xf0\x27\x2b\xb4\x6d\x98\x90\xc6\x9a\x9c\x83\xbf\x3e\x64\x82\xf5\xd7\xdb\x34\x39\x7b\x70\x2c\xc5\x44\xee\x47\x33\xe6\x7b\xcf\xbd\xf0\x34\xfc\x16\x3c\x82\x3b\x00\xdc\x13\x2f\xfc\xf8\x38\xee\x10\x70\x9f\x79\xe1\xe5\xe3\xb8\x3b\x80\x7b\xe6\x85\xcf\x1f\xc7\xdd\x55\xe5\x7e\x7d\x1c\x77\xcf\x1e\xa8\xf3\x0e\x36\xfd\xe5\xaf\x6e\x44\xbf\x3d\x4d\x29\x78\xde\x3a\xb7\xf1\x2e\xba\x98\xf6\xe4\x21\xa6\xc5\xf1\x59\xc9\xb2\x58\xe0\xf1\x8f\xa3\x5f\x1e\x29\xe3\x29\x0c\x2b\xf0\xfe\x9f\x64\xd7\x8b\x2e\x76\xfd\xe5\x21\x76\xfd\x28\x4d\x3c\x56\x5f\x12\xa5\x11\x3f\x6f\x2b\xcc\xbf\x8e\x3c\x6d\x20\x3d\x6b\x67\xff\xeb\x11\x9b\xe0\xa3\x2d\x39\xed\x3c\x4d\x30\xfb\xf0\x85\xa8\x38\x51\x86\x8a\xe7\x68\xa8\x70\x91\x26\x02\xa9\x56\x48\x67\x16\x92\xbd\xbf\x87\x14\x63\x56\xf2\xc5\x43\xad\x04\x87\xe6\x7e\x34\x66\xbe\xf7\xc1\x0b\xff\x7c\x60\xb6\x20\xea\x00\x50\x5f\x79\xe1\xab\x47\x51\x87\x80\xfa\xde\x0b\x3f\x3d\x8a\xba\x03\xa8\x67\x5e\xf8\xf2\x51\xd4\xdd\xbf\x68\x84\x51\x46\xbf\x05\xb3\x19\xd0\x19\xca\xd5\xb3\x43\x91\x68\x86\x24\xfa\x1c\x26\x9d\x6d\x24\xb8\x28\x02\x5f\x79\xe1\x6f\x8f\xe3\xa2\x08\x7c\xef\x85\x3f\x3d\x8e\xab\x45\xe0\x3f\x1f\xc7\xdd\xed\x9a\xce\xca\x6a\xe7\x90\xa6\xb1\x75\xb1\xc7\xac\x39\x5b\x7b\xdd\x5a\xa2\x64\xc5\x87\xb8\xad\xbe\xcd\x19\x32\xdb\x6f\x5e\xf8\xef\x0f\x8d\xb5\xc0\x44\x5e\x7b\xed\x85\x3f\x3f\x86\x89\xac\x76\xea\x85\xbf\x3f\x86\xb9\xf3\x37\xd9\x67\xf2\xb7\xd9\x07\xfb\x3c\xc3\x3e\xd7\xec\xc1\xa1\xc3\x5e\xcf\xb0\xd7\xc5\xe3\xb8\xc8\x3d\xa7\x5e\xc8\x1f\xc7\xdd\xf9\x1f\xe4\x88\xdd\xbf\xcb\x11\xb0\xa7\xb8\x85\x5e\xfc\x9b\x17\x66\x2c\x8c\xd9\x03\x23\xf8\xb6\x99\x33\x9e\x25\xe4\xa3\x5f\xbd\x30\x61\x61\xd5\xfa\x08\x8e\x48\xdf\xc6\x73\x96\x22\xf2\x47\x08\x77\xd0\x79\x90\x4f\x3b\xb5\xd9\xff\x9e\xee\x39\x2c\x9f\xb1\x27\xac\x78\xca\xc7\x59\x7e\x1e\xd6\xb6\x49\xfa\x38\x1e\x95\x47\xb5\xe3\xba\xe4\x33\xdb\xb2\xf9\x3e\xe6\x75\x16\xe7\x7e\x7d\xce\x2e\x1e\x33\xd1\x0b\x35\xdc\x25\x2e\xf4\xfc\x35\x9b\xc6\xc9\xad\xa4\xd3\x0a\x1f\x38\xb7\xe1\xd6\x80\x32\xb8\xb1\x57\xff\xb0\x07\xa1\xe6\xf6\x82\xa3\xfa\x87\x68\x70\x64\xc5\xaa\xb3\x09\x02\x07\x62\x47\xd9\xc4\xcf\xdc\xfe\x15\xfa\x49\x9a\x76\x27\xb3\xf3\xe2\x22\x08\xaf\xca\x2c\xed\xa2\x66\x54\x6f\xf6\x83\xa3\x7a\x6b\xab\xd5\x49\xa9\x40\x91\x01\xb6\x99\xfb\xc8\xd2\x5e\xba\x99\xc1\xef\xa2\xae\xcd\x00\xda\x23\xd5\x71\xdb\x6d\xd1\xd8\xd9\x46\x3b\xbb\xde\x60\xe4\xb3\xef\xbd\xd8\xbb\xbf\x67\x3f\x78\xdf\x3c\x08\x2b\xf1\xbd\xf7\x0c\xd3\xbf\xab\x74\x0f\xd3\x87\x9e\xe1\x07\xc7\x41\xc7\x6e\xa8\xf2\xf0\xc7\xa6\x6a\xab\x95\xae\x75\x3d\x8a\x92\x63\x2f\x92\x5a\xc3\xc3\x94\x18\xad\xec\xd7\x83\x1d\x7b\x44\x1b\x42\xb3\x81\x3d\x69\x57\x85\xa0\x73\x7a\x07\x2f\xfb\x15\xeb\x56\x17\xd5\x2b\xd7\x2b\xa6\x63\x61\xcf\xbd\x0c\xdf\x4e\x7c\x55\xd4\x7e\x29\x58\xb3\xcd\x7c\x1c\x5e\xec\x7a\x78\x86\x2d\xa9\x47\x2e\xbd\xed\xb0\x75\xf4\x00\x5d\x56\xb1\xeb\x0a\x4a\xb4\x18\xb6\x83\x70\xfe\x00\x9e\x7a\xec\x20\xd5\x26\xb2\xd7\x6a\xf6\x39\x7e\xa0\xa5\xa3\xa7\x55\xf8\xc8\x46\xe6\x25\xbb\xf9\x7b\x9d\x1a\x86\xfd\xbd\x87\x3a\x25\xe7\xcc\xc4\x99\x33\x2f\x1e\x9f\x33\x7f\xb3\xd3\xb4\x41\xab\x3a\x9d\xe4\x2c\x2e\x9a\x45\xdb\x6f\xc7\xba\x51\xd3\x3b\xb6\x76\x4a\xc6\x21\x80\x9e\xf6\x6f\xae\xb2\x24\x47\x3d\x35\x27\xe5\xc1\xbe\xb3\x09\x12\x73\xbb\x43\x64\xda\x13\x66\xe5\xc9\xb5\x2d\xb9\xdb\xc5\x98\xe3\xec\xff\x5a\xdb\xad\x59\x65\x35\xed\xbf\x4c\x1c\xfb\xfb\x27\x76\xcb\x1a\xd8\x0e\xb1\xf3\x40\x23\xba\xca\xb1\x5d\x3b\x5c\x3e\x59\xe5\x7f\x06\x8e\x19\x5d\xbe\x87\xf2\x8e\xad\x74\x4b\x0b\xd6\x62\xa1\xba\xad\xa5\x65\xc1\xd6\x3d\x67\x44\x36\xd5\xb5\x70\x14\xd9\x7e\x8b\x47\x01\x6c\xbd\x6e\x52\x72\xff\x88\x74\xff\x7b\x8b\x64\xea\x3e\xbf\xc5\x72\x47\x9d\xfa\x4f\x32\x8b\xf9\xb3\x9a\xfa\x4c\x04\x47\x2e\x67\x92\xf4\x19\x7a\x7b\x8e\x6c\x94\x9c\xa2\x58\x4e\x0e\x6d\xdc\x86\xe2\xea\xa3\xf8\x36\xde\xa4\x5d\xa6\x73\xb6\xdb\xfe\x26\xb5\xcb\x7e\x14\x7f\x46\xf1\xbb\x8e\x8f\xdb\x9f\x2c\xec\x2a\xec\x03\xd3\x36\xfa\xb8\xdd\x0b\xeb\x04\xb0\xfd\xc5\xdc\xae\xe0\x11\xec\x37\xad\x1e\x3c\xf2\xc1\xf4\x81\x06\xc1\xe1\x44\xfb\x93\xab\x15\x2d\x6a\x9d\x7d\xb5\x3f\xbd\x7d\xe8\x53\x7a\x3c\xd4\xfe\xf4\xd9\x43\x9f\xaa\x13\x94\xf6\x67\xd7\xed\xfe\x11\xfb\x7f\x1b\xff\x9b\x5d\xcd\x83\xb8\x5f\x6c\xdc\x4e\x1b\x7e\xfb\xab\x77\x1d\x8c\xac\x9d\xc5\x1d\xdc\x33\x87\x81\x57\xe1\xdd\xb4\x19\x57\x5a\xbb\xdb\xb8\x6f\x57\xe1\x0e\xda\xb8\xaf\x3b\xda\x0a\x16\xc9\x36\xea\xe9\x0a\xd4\x8e\x52\x3f\xae\x40\x1d\xb6\x51\x2f\x57\xa0\xee\xb4\x51\x9f\xaf\x40\xdd\x6d\xa3\x7e\x5d\x81\xba\xd7\x46\xfd\xc5\x19\x01\xb0\x91\xb6\xb0\x4e\xda\x34\x5d\x41\xa6\x1f\xbb\x31\x3b\xa8\xf4\xbe\xdd\x48\x69\x74\x6c\xe3\x7e\x58\x89\x0b\x21\x7b\x5d\xf4\x5f\x3b\xd0\xd1\x0c\xd6\xc6\xfd\x73\x15\x6e\x47\x93\x5f\xad\xc2\xed\x18\xd9\x4f\xab\x70\x3b\x86\xf6\xe5\x2a\xdc\x8e\xb1\x7d\xd1\x22\xf0\xca\xae\x7d\x5e\x81\xda\xd1\xb3\xdf\x56\xa0\x76\x74\xec\xa7\x15\xa8\x1d\xfd\xfa\xe7\x0a\xd4\x8e\x6e\xfd\xab\x83\x04\x60\x7a\x6a\xa3\xfe\xfb\x0a\xd4\x8e\x6e\xfd\xbc\x02\xb5\xa3\x5b\xbf\xaf\x40\xed\xe8\x16\x63\xed\x7e\xad\x68\x6b\xbd\x02\xb5\xa3\xad\xc5\x0a\xd4\x8e\xb6\xf2\x15\xa8\x1d\x6d\x2d\x59\xbb\x5f\x72\xb3\xd0\xc2\xcd\x3a\x70\xed\xfd\x45\xeb\x93\x98\xd9\xf2\x83\x6c\xce\xdb\xc8\x95\x8b\xfc\x70\xd9\x89\x83\xae\xb7\x69\x06\xb5\x43\xff\x6c\x8a\xaf\x45\x79\x5d\xac\xe1\x57\xb6\x5f\x9d\xa5\x41\x6f\x6e\x2e\x65\x21\xb8\x21\x6a\x69\xa1\x2b\x6e\x45\x68\x57\xe5\xbe\x83\xbf\xea\x3e\x44\xcb\xb7\xf9\x51\x0d\x56\x6a\xc5\x61\x87\xc6\x3d\xc9\x8a\xac\x9a\xb5\xda\xda\x7d\xeb\xe3\x51\x5d\x1d\x5c\x28\x5c\x4d\x5d\x99\x5b\xd4\xfd\x12\xdb\x23\xbb\x67\x7b\x6c\x3f\xd2\x2e\x09\x7f\x64\xb3\x49\xc8\xa2\xca\xc3\x78\x89\x67\x3c\xce\xf2\xac\x98\x9e\x88\x55\xc9\xf6\x01\x91\x77\x89\xec\xda\xda\x5f\xad\x32\x1f\x3e\xba\xd9\x72\x76\x05\xbf\x68\x2b\x96\x5a\x12\x5d\x80\x5a\xf9\xe8\x61\x63\x5b\xe1\x71\xbf\xba\x71\x01\x6f\xed\x62\x3a\x35\xa2\x75\x31\xf1\xd4\x87\x1d\x16\x83\x75\x31\xd7\x1e\xce\x4f\x1e\xc9\x6f\xb4\xd7\xb9\x04\x8c\x5d\xc0\xd4\x05\xbc\x71\x01\x73\x17\x70\xeb\x02\xae\x5c\xc0\x33\x17\x90\x76\xde\xbe\x1b\xfd\x0d\xa3\x8c\xcd\x65\x1d\x9e\xd7\xae\x5d\xb0\x8b\x05\x83\x07\xab\x5e\x65\xe4\xfa\x6f\xae\xfa\x01\xfb\xed\x7f\x7f\xa5\x6d\x21\x67\xdf\xd7\x9b\xd3\x90\xb9\x77\x92\x99\x46\x16\x6b\x85\xb6\x03\x56\xa7\x57\x16\x09\x36\xe4\x56\xe9\x46\x56\xe9\x7a\xc6\x8b\xcc\x69\x69\xf8\x20\xbd\x77\xa5\x84\x71\x1c\x7a\xa4\xa8\x27\xfb\x07\xb4\x04\x91\x76\x29\xeb\xbe\xc3\x79\xce\x2e\x9e\xee\x79\xdb\x55\xb6\x34\x02\x77\x94\x6e\x1b\xd0\xe9\xdc\x31\x9e\x6d\xee\x02\xaa\x42\xc8\xac\x8e\x70\x36\xdc\x0f\xc2\x32\xfa\xee\x8f\x6a\xf3\xbb\x29\x5c\xa1\xdb\x53\x37\xe8\x86\x7d\x3b\x76\xb6\x0c\xd2\x8d\x61\x45\x49\xb0\x47\x76\xec\x17\x51\x1d\xd6\x11\x0b\x31\xb2\x77\x30\xea\x8a\x09\x59\xc3\xa5\x70\x81\x97\x68\x79\xaf\xde\x76\x70\x62\x1e\x45\xf5\xfd\xbd\xf2\xc3\x60\x18\x1c\xf5\xf9\x8f\xea\xae\x55\x5a\xce\xcd\x3d\x4e\xb8\x48\xa8\xef\x12\xd5\xf1\xf4\xa3\x7d\xcf\x13\x6f\x72\x46\x34\x71\x7f\x0f\xd1\xc7\xf1\xf5\xaf\xbb\xa2\xe4\xf3\x38\xcf\xbe\xb1\x5f\x66\x59\xcd\xaa\x45\x9c\xb0\xd1\x7a\x3f\xbc\xce\xea\xd9\x47\x19\x30\x28\x4b\x58\xa5\x60\xa7\x10\xbb\x47\x42\x96\x47\x95\x7d\x5f\x5c\x5f\x1b\xed\x18\x3d\xd9\x12\xb6\x0c\xed\x8f\x5a\xd3\xae\xa2\x81\xaa\x2d\x32\xd9\x44\x72\xe9\x13\xb8\x25\x77\x86\x42\x10\x04\xd3\x47\x32\x48\xbd\x9e\x4d\x2b\x72\x69\x16\xe5\x86\x79\x01\x43\x8c\xad\x53\x8d\x83\x13\x55\x8f\x5c\x76\xce\x26\x7e\x27\x73\x58\x1d\x0d\xec\xa4\x7a\x11\x23\x2d\xe7\x32\x12\x49\x36\xf1\x55\xe4\xf2\x16\x41\xdb\x21\x65\x5a\x21\x36\x3e\x9a\x68\x17\x47\x16\x4d\xb7\xed\x31\xde\xd8\x80\x97\x97\xdc\xd0\x50\x48\x28\x0d\x0d\xdc\x91\x50\x0b\x9b\x06\xc0\xb5\x5c\x8b\x6a\x18\xf8\xf7\xa4\x9c\xcb\xd8\xbf\x2e\x8d\xd6\xdb\xcd\x3a\x29\xe7\xaf\xaf\xf2\xbe\xf3\x36\xe0\x91\xf5\x1a\x60\x1d\x79\x75\x3c\x85\xd3\x8d\x6d\x51\xd1\xb1\x1d\x7d\x3c\x0e\x46\x36\x20\x0b\x42\x16\xb8\x31\x2b\xfc\x02\x0e\x2d\x5a\x81\x93\x6b\xa7\x0f\x71\x9a\xae\xe8\x00\x0d\x78\xa0\xc8\x7d\xee\x50\x5f\x47\x2d\x09\x8b\xa8\x3e\x36\x11\xa9\x47\x6a\xa8\x43\x1e\x15\xe7\x85\xc1\x3b\x62\x10\x53\x94\xf2\x27\x25\x0f\x9d\xad\x30\x68\xad\xf8\x60\x72\xd8\x0c\xdc\x0d\x3b\xe0\x0e\xfe\x13\x46\x9e\x1f\x43\x98\x6e\x76\x15\x71\xf9\x94\x5d\xc4\x82\x91\x04\x41\x4b\x0b\x13\xc0\x6a\x7b\x01\xaf\x55\x0b\xe9\x86\x0f\x20\x54\x5d\x91\xa2\x3a\x4f\x22\xef\x04\xce\xc8\xc3\x30\x8f\x78\x7a\xc5\xb7\x71\xcb\x3d\xf2\xe0\x41\x78\x0d\x84\xd7\xe6\xf9\xf6\x59\x3c\x0d\xf1\x15\xe7\x50\x5e\x87\x1f\xd5\xa1\x26\x32\xc4\xef\x94\x9d\x72\x79\xd1\x2f\xd4\xac\xb0\x46\xd8\x2f\x83\xd0\x9d\x41\xa2\x67\x65\x4b\xf0\xb4\xc2\xa1\xc9\xf0\xfc\x4e\xf0\xba\x0e\xd1\xeb\x46\x7c\xc8\xa6\x45\xc9\x49\xfe\x91\x99\x1a\x0e\x23\xc9\x39\x97\x96\x73\x0d\x50\x81\x8f\xd2\x72\x7e\xee\x64\x6e\xf5\x2f\x02\x98\x20\x62\xcb\xbd\x7d\xc6\x6e\xea\xa0\x38\xae\xb7\xc1\xed\xd1\xc7\xff\x37\x59\xb0\xcd\x19\xbc\x4b\xec\x97\xa1\xb7\xe6\x05\x23\x99\x11\x31\x2d\x84\x56\x34\xc5\x7f\x32\xf3\x07\x88\xac\xb9\xff\xdc\xfc\xb4\x90\xea\xff\x6a\x6b\xe1\x59\x25\x16\x31\x07\x4b\x3d\xfa\xb2\x82\x13\xee\x44\x11\x23\x16\x02\xf7\x61\xd5\xcb\x6e\xe6\xc8\x84\x8e\x51\x3d\x1a\x95\xe4\x2f\x49\x06\x31\xda\xb5\xd5\x77\x69\xef\x0d\x9c\xbe\xc9\x39\x62\x37\x56\xe2\xfe\x77\xf2\x79\xab\x87\x3a\xb8\x48\x7b\xb1\x31\x01\xf4\xcf\xb1\x61\x9e\x67\x91\xf1\x42\xb7\xf3\xe4\xd9\xd9\xb3\xa5\x76\x73\x69\xb5\x92\x75\xb7\xb2\xee\x6e\x65\xdd\x9a\x8d\x26\x40\x4b\xd4\xd1\xfa\x4e\x25\xc1\x5e\x22\xdd\x02\x1f\x0b\x8b\xe3\xfa\x4f\xb4\xb9\x4a\xca\x25\x20\x4b\xad\xe8\x70\x92\x71\xa1\x1d\x5f\xb1\x15\x1c\x56\x04\x4b\x12\x22\xa2\xea\x0c\x20\x4f\x83\xc7\x4f\x59\xbd\x06\xcf\x35\xc0\xbb\x0b\xb6\x12\xa0\xc6\xe6\x88\xbc\x06\x73\xde\xbb\x50\x72\x59\x7c\x9a\xc7\x4f\xff\x92\x19\x9e\xa5\x45\x14\x65\xca\xce\x6e\x17\xcc\x6c\x41\x4a\xe4\x75\xd1\xe3\x8b\xfb\xfb\x72\x5b\x6a\x08\xcb\x65\xc8\xa3\xbb\x1a\x4f\xea\x46\x1e\x5c\xc5\x45\x59\xfd\xb6\x4c\x59\x35\x32\x0f\x59\x85\xb8\x84\x08\xf0\xc8\xc3\xdf\x5e\x28\x16\x9b\xac\x6c\xaa\x8f\xd9\x58\xec\xef\x46\x9e\x00\x78\xa1\x58\x8d\x34\x48\x24\xbc\x50\xb4\x08\x8e\x9d\x46\x1e\xdc\x83\x11\x93\xe3\x4e\x36\x62\xd4\x87\xe0\xbd\xa3\x61\x08\x8c\x31\xda\x09\x25\xe7\x8c\x0e\x96\x47\xf4\x15\x06\xbe\xe2\x55\x6c\x9c\xdb\xfc\x9c\x5d\x1c\x75\xbf\xf9\x5b\x84\x2c\x14\xc3\xd2\xf1\xa8\xbc\x20\xcb\x79\xad\xa9\x57\x51\x24\xe6\x62\x89\x8d\xc6\x72\x89\x4f\xe7\x75\x6f\x6b\x34\x1b\x1c\x9d\x8b\x8d\xcc\x30\x08\x0b\xbf\xbf\xd3\xc7\xff\x06\xf8\x9f\x04\xee\xe0\x7f\xbb\xc1\x45\x77\xaf\x9c\x87\x69\xda\x38\x75\x70\xc7\xa1\x51\xe7\xf5\x05\x3e\x20\xc3\xd5\xe3\x80\x4f\x79\xa0\x5e\xf4\x49\x29\x8c\x5f\xb2\xb9\x68\xb5\x7c\xfc\xbe\xf3\x9d\x9c\x87\xdf\x2d\x5a\x41\xf8\x3a\xf4\xcc\x27\x5e\x78\x87\x4f\xfb\xaf\xf7\x96\x28\xfe\xcb\x88\xfb\x85\xbf\xdf\x87\xc7\x93\xc4\xcf\xfe\x70\x1f\x1e\x58\x06\xf0\x20\x08\xc2\x4a\x82\x0f\x02\xb2\x25\x4c\xcc\xa0\x3b\x44\xc2\xb7\xcd\xef\xbd\x20\x2c\xa2\x46\xa8\x3e\x18\x8e\xf6\x03\x9b\x9e\xde\x2c\x7c\x6f\xc3\x3f\x1e\x79\x9b\x7e\xbd\x19\x79\xf7\xff\x76\x7e\xf3\xeb\xc5\xf9\x1f\x7f\xa4\xf1\xd6\xe4\xd9\xd6\x8b\x8b\xcd\xfb\x7f\xfb\xe3\x8f\x74\xd3\x0b\x36\xbd\xe0\xc8\x0b\xbd\xa9\xd7\x8e\x95\x61\xa8\x21\x1f\xad\x27\x8b\x1f\x0f\x8b\x60\xb9\xac\x65\x78\x88\x5f\xdf\xbc\x8e\x12\x3f\x56\x8f\x4e\x04\xa1\xca\x78\x79\xf6\xe6\xb5\x74\xbd\x4c\xcc\x63\x1b\x81\x7c\xf3\xd9\x96\x2c\x8a\xf2\xdf\xd7\xc7\xfd\xd1\x56\x7f\x69\x05\x58\xd6\xd9\x16\x3f\x60\xd0\x93\x7f\x83\x0d\x8e\x72\x4c\xe8\x07\xc7\xde\xaf\x16\x64\x10\xdc\xdf\x7b\x37\x0e\xe8\xb8\x52\xad\xf1\xb5\x9f\x58\xad\xac\x99\xc3\x20\xec\xef\x05\xc1\xe8\x21\x9c\x41\x10\xf6\x7b\x41\x30\x62\xe7\xf5\x76\x95\x67\x09\xf3\xfb\xe1\x56\x3f\xb8\x30\x54\x11\x9d\x77\x5d\x30\x50\xc4\xd1\x71\xd4\x0f\xc8\x06\xdb\x55\xc9\x6b\x3f\x0f\x42\x7b\xa0\xcb\x36\x42\x11\xf5\x42\x0e\x0f\xfe\xd7\x34\x32\x3f\xbc\x55\x15\x45\x62\x4b\x71\x0c\x1b\x8b\xcd\xc8\x3b\x3a\xf6\x42\xbe\xb9\x89\x4f\x80\x8b\xb4\x27\x9f\x67\x6e\x73\x4a\x6d\x18\x6a\xb3\x83\x63\x8e\x8e\x91\x67\x8e\x8e\x03\x64\x98\xb0\x8a\x1a\x3a\xa8\x36\xc7\xca\xc1\x39\x02\xff\x43\x45\xb4\xad\x3e\x38\x6e\x41\x3b\x82\x50\x30\xf1\xf2\xaf\x70\x5d\x1c\x26\xc1\x72\xe9\x5b\x33\x9e\xc6\x2c\xfa\xf9\xe3\xbb\xb7\x18\x1d\xc9\xff\xc7\x9d\xf7\x2c\x4e\x9a\x9a\x79\x23\xef\x8f\x9b\xa4\xef\x85\x5e\x6c\xd2\x4c\xa4\x9f\x8d\x39\xbb\x82\x74\xd3\xeb\xf7\x06\x02\xc3\x82\x0c\x05\x24\x81\xd4\x60\x30\x64\x90\x4a\x55\x72\x02\xc9\x53\x9d\xfb\x47\xd3\x1b\x0e\xc5\x17\xcf\x92\x8c\x27\x58\x29\x14\xa9\x93\x0c\x93\xaa\x09\xe3\x1d\x40\xbe\xc5\xda\x76\xfa\x3d\xc8\x55\xc9\xa1\x48\x3e\x3b\xcd\xb3\x29\x16\xb5\x27\x72\x99\x4a\x32\x48\x4e\xb0\xf2\xde\x1e\x74\x66\xc2\x21\x99\x1e\x0c\x77\xff\x68\xd2\xb4\xb7\x03\x28\x36\xb0\x2f\x3a\xf1\x6c\xca\xe3\x2b\x49\x16\xa8\xd4\xa4\x19\xa4\x73\x36\xa9\x6e\xe7\x58\x78\x7f\xb8\x8b\xa0\xc5\x8c\x02\x9e\xe5\x8b\x59\x8c\x4d\x1d\x1e\x02\x6d\x09\x60\x0c\xed\x99\xc7\x09\x57\x94\x84\x62\x29\xa0\x8f\x80\x7c\x8a\x85\xc6\x48\xce\xf9\xc2\x1b\x79\x1b\xe2\xe3\x37\xef\xe5\xaf\xb8\x48\xe3\x42\x12\x3d\xde\x85\xaa\x4d\x72\x88\x08\x72\x0c\x06\xfb\x98\xd4\xd9\x09\xa6\xab\xbc\x5c\x30\x05\x3b\x40\xd8\x95\x4a\xc7\x90\x9e\xaa\x22\x7a\x98\x94\xe8\x87\xf1\x0e\xa6\x73\xe6\x20\xcc\xab\x34\x8e\x15\xd2\x81\x81\x8d\x15\xec\xd0\xc0\x12\x05\x8b\x0d\x2c\x55\xb0\xb1\x81\xe9\x4a\x13\x03\x9b\x28\x58\x6a\x60\x53\x05\x63\x06\x36\x53\xb0\x89\x86\xa9\x16\xf7\x11\xc2\x6b\x09\xe8\x4f\x14\xe0\x4a\xb6\x76\x30\x66\x06\xa4\x5a\x76\x28\x6b\xac\xd4\xc0\x0f\x06\x03\x09\xa9\x91\x77\x76\x31\xf9\x2d\xe6\x38\xac\x83\xe1\xbe\x68\xf9\xb3\x72\x5a\x16\x6a\x9c\x81\x7e\x14\x00\x23\x58\x2e\x26\x16\x5b\x0e\x81\x82\x2e\x74\x17\xea\x5b\x88\x09\x24\x47\x6b\x0f\x9a\xbe\x90\xed\xd9\x81\xaf\x16\x72\x0a\xc6\xfb\x30\x34\x6a\xa4\x07\x3b\x40\xed\x45\xa6\xe8\xb0\x03\x94\x5e\x94\x95\x48\xff\x43\xb4\x62\xb1\xc8\x6f\x5f\x28\x13\x19\x99\x49\xf1\x62\xc1\xcb\x1b\xbb\x12\x01\x61\x97\xb4\xe8\x67\x42\x36\x11\x42\xe8\x24\x83\x2e\x56\x89\x35\xf3\x92\x43\x18\x54\x17\x3a\xde\x03\xdc\x2a\x9b\xca\x16\x0c\x76\x81\x62\x40\xe2\xff\x80\x5f\xb7\x73\xbb\xbf\x02\x60\x5a\x22\x06\xe9\x59\x9d\xe5\xa9\x9c\xcf\x30\x23\x4c\x9a\x81\x40\x6a\xe6\x39\xe6\x42\xd9\x2a\xc5\x20\x75\x9d\x94\x45\x56\x28\xde\x00\x01\x16\x5f\x6b\x40\xdc\x17\x04\x19\xc7\xc9\xd7\xa4\xd4\x93\x64\x27\x91\x30\xb6\xa8\xb2\x5c\x0d\xed\x70\xb2\x27\xc1\x0b\x9e\xcd\xe5\x28\xf4\x40\x58\x08\x60\x95\xcd\x55\x1d\xa9\x01\xe9\x8e\x24\x02\xf8\xa3\x00\xe6\x71\xa5\x18\xae\xbf\x07\x40\xae\x26\x2b\xdb\x87\x2f\xf9\x15\x53\x83\x3c\xc6\xb2\xf8\x35\x93\xc3\x3c\x04\x06\xfb\xd1\x82\xec\x69\x1c\x35\xaf\x11\x6b\x3c\xe6\x5f\x65\x7a\xac\xd2\x35\x81\xc1\x77\x6e\xbf\x7f\x34\x02\x1b\x48\x63\x04\x36\x24\xd3\xcb\xa6\x94\x5d\x07\x59\x3b\x66\x49\xdc\x54\xaa\xe7\xbb\x1a\xc2\x28\xe8\xc7\x36\x68\xcc\xe6\x8b\xfa\x56\x76\xfc\x70\xdc\x03\xd0\xa2\xca\x2c\x5a\x33\x5e\x94\x8d\x94\xca\x03\x68\x1c\x40\xf2\x3c\xab\x6c\x68\xad\x45\xf5\x00\xbe\xd3\xe9\xb1\x4c\x6b\xd9\x8e\xe5\xd6\xd7\x8c\x29\x86\xdc\x83\x22\xdc\xc5\x05\xda\xe8\x2e\x2e\x62\x76\x8e\xb3\x69\xa2\x67\x28\x2c\x80\x02\x22\x97\xc0\x66\xb0\xcb\x14\x52\xa3\x91\x86\x08\x29\xd3\x52\x71\x1d\xac\x17\x02\xb4\xc8\x15\xf1\x62\x58\x32\x04\xac\xce\xe6\x4c\x03\x65\x05\xd5\xa5\x2e\x2f\xc6\xf1\xce\xa6\x55\x1d\x4b\xb9\xb1\x87\xcd\xcd\xa6\x35\xcf\x40\x98\xa7\xe5\xb5\xec\xde\x2e\x72\x90\xc9\x52\xc5\xec\x8e\x65\xb3\x1a\xda\x86\x1d\x84\x19\x06\x4c\x64\xab\x08\x73\x0d\x60\x51\x1d\x7f\x8d\x79\x79\x2d\xc7\xaf\x07\x95\xe4\x71\xf2\x35\x2f\xbf\x31\xb3\xbc\xb0\xb1\x82\x57\x97\x4d\xcc\x25\x78\x17\x16\x0a\x00\xab\x56\xa9\x36\xed\xb8\x19\xb4\x27\xcc\xcd\xcc\xd9\x44\x52\x74\x17\x47\x82\x66\xf2\x6c\x3a\x53\xb9\xe3\x03\xcc\x2d\x24\xef\xef\x0c\xa0\xf3\xf9\xd7\xfe\x40\x62\x20\xe3\xe4\x5f\xfb\x3b\x0a\xd0\x47\xc0\x50\x03\xf0\x93\x32\x91\x65\xec\x1e\x40\xa1\x85\x68\x7b\x24\xe6\x03\xc8\xc5\x71\xc1\x2e\x9b\xec\x4a\xf1\x56\xdf\x64\xbc\xd5\xa3\xcf\x80\x5a\x85\x4a\x0f\x41\x33\xfa\xb1\xb5\x66\x88\x15\x76\xdc\x5a\x33\xa0\x15\xea\xd3\x41\xbc\x8b\xc9\xba\x9c\xdb\x90\xeb\x3a\xd3\xc3\x05\xed\x2c\x6f\xc6\x4a\xe6\x1f\x26\x58\xf4\x4d\x9a\xcb\xae\x40\x0b\x04\xe0\xb5\x04\xec\x62\x29\x37\x27\x0a\x63\x77\x4f\x02\x34\xc6\xbe\xfc\x44\xf2\xe0\x6e\x2f\x91\x80\x0f\x0a\x63\x20\x3f\x51\x18\xb2\xed\x37\x27\x1a\x63\x07\x01\x33\x55\x84\x6c\xc6\x4b\x95\x2f\xd3\x33\x29\xea\x76\x07\xb2\x8e\x97\x0a\xb0\xa7\x4a\x38\x51\x00\xd9\xf0\x97\x1a\x20\x1b\x3e\x93\x82\x64\x77\x28\x3f\x79\xa9\x00\x7b\xb2\x27\xb3\x4f\x0a\x20\x09\xf6\x52\x03\x24\xbd\xe6\x59\xa1\x65\xdd\xe1\x04\x61\x66\xf6\x0c\x0e\x19\x82\xc8\x04\x1e\xc4\xb2\x0b\x8d\x26\xb5\x2c\xbc\xd1\x84\x1c\x23\xe0\x93\x26\xb5\xec\xe4\x27\x8d\x91\xca\x4f\x14\x21\xfb\xb2\x0b\x8d\x26\xa4\x2c\xf4\x93\x26\xb5\x6c\xf1\x27\x8d\x11\x23\xe0\x4a\x91\x5a\x0e\xce\x67\x95\xdf\x97\xf9\x6a\x2c\x86\xb2\x15\x57\x6a\x30\xf6\x64\x09\x9f\x15\xc6\x9e\x6c\xf8\x67\x8d\xa1\x3e\x51\x3d\x19\xc8\x76\x5e\xa9\x9e\xec\xc9\x5a\x3e\x2b\x8c\x3d\xd5\x0c\x8d\x21\x79\xe4\x4a\xf7\x55\x15\xaa\x7b\x22\xa9\xfc\x59\xf7\x55\x8e\xc4\x67\x85\xb1\x07\x34\x6f\xaf\xd2\x66\xeb\x33\x48\x05\xc1\x7e\x74\x01\x63\x7e\x35\x46\x99\x7a\x13\x03\xdb\xb4\xd4\x19\xc1\x2a\x3f\x2a\xa8\x5c\x7e\xc6\x15\x9b\x67\xb2\xa2\x1d\x68\x8b\xab\x0b\x54\xba\x25\xa8\x07\x8c\xab\x32\x57\x8a\x34\x28\x57\x02\x20\xd2\x7f\xfc\xf1\x87\x4c\xcd\xaa\x46\x62\xec\xe3\xfc\x6d\x72\x49\xb3\x1e\xa8\xa9\x22\xcd\x6a\x1b\x62\x14\x29\x26\xd3\x4a\x75\x8c\x15\x40\x2b\x8f\xa2\x9d\x3f\x36\x54\xd3\xd2\x28\x97\x14\xe7\xb9\xde\xcf\x09\xe5\x56\x10\x25\xb1\x20\xfb\x00\x59\x98\x2d\xcc\xce\x0e\x42\xc6\xdc\xac\x58\x3b\x87\x08\xd3\x0b\x67\x0c\xca\xaa\x59\x47\x07\x87\x50\x95\x4a\xa6\x03\x89\x6f\x4a\x90\xf5\x98\x25\x74\xa7\x87\x9f\x64\x75\x9c\x9f\x64\x13\x78\x71\xba\xce\xe2\x5c\xce\xfb\xfe\xce\x2e\x7e\x51\xe9\x2a\xfe\x68\x26\x0c\x24\x4c\x12\x73\x4d\xba\x9d\x3e\x02\x94\x96\x37\x48\xf6\xa1\xdc\xdb\x9c\xdd\x6a\x25\x43\x8c\x59\x62\xca\x8a\x41\x2b\x7d\x4e\xbe\xea\x83\xf0\x4b\x2c\x08\xe2\xb0\x34\x93\xba\x29\xf4\xc0\xa4\x41\xd7\x7b\xae\x15\x87\x5e\xbf\x77\x00\x08\x04\x00\x44\xb1\xd5\x57\x68\x7e\xd2\x98\x96\x24\x0a\x50\x49\x96\x8b\x41\x68\x3e\x57\x84\xea\xf5\x7b\x62\xde\x26\x24\x0d\xa4\xd7\xed\x80\xa5\xf1\xb9\x48\xe6\xb1\x01\x24\xb6\x7a\x06\xe3\xc1\xb0\x19\x37\xb1\x4a\x31\x2e\x4b\xbd\x81\x79\xf1\x1c\x40\x27\x14\x94\x38\x1a\x14\xec\x2e\x9f\x4f\x38\x25\xec\xf3\x97\x5a\xc5\x84\x0d\x6e\x32\xd3\x69\x1c\xf5\x19\x53\x4b\xee\x7e\x7f\xa8\x00\xf3\x98\x5b\xc0\xe7\x33\xa5\x3a\xc6\xf8\x91\x4a\x22\xdd\x35\x55\x07\x60\x68\x10\x69\xcd\xe7\xbb\x0a\x23\x67\x31\xe7\xe5\xb5\xd1\x2a\xfa\xe3\xd8\xce\x22\x3a\x45\x7f\x3c\xd6\x79\x29\xee\x67\x60\x0d\x20\x50\xa3\x15\x0e\x0e\x4d\x41\x69\x6a\x36\x00\xb0\x07\x7d\x0e\xe0\x13\xbd\xa6\x1f\x1e\x1a\xdc\x0f\x48\x71\x66\x20\x1f\xa5\x06\x03\x52\x01\x3f\x7d\x43\x97\xa5\x3d\x0d\x7e\x4f\x56\xa6\x5d\x0d\x3d\x23\x8b\xd3\xa1\xec\xb9\x94\x9b\x89\x6c\xfb\xa9\x12\x4d\x43\x4c\x33\x87\x50\x93\x82\xec\x9f\x7a\x08\x9b\xab\x7d\x68\x0c\x0a\x70\x92\xf1\x4a\x17\x7c\x08\xca\xd9\x73\xa1\x3a\x5d\x67\x15\x7b\x5e\x16\x75\xd9\xf0\x57\x45\xcd\xa6\x3c\xce\x15\x6b\x4b\x1c\x78\xdc\x24\xbf\x25\x97\x68\xe4\x4c\xed\xa7\x16\x82\x95\x05\x14\xcb\x9b\xb1\xec\xd8\x1e\xac\x22\x00\x68\xb2\xda\x82\x95\xb8\x9f\x1b\x89\xb2\x4a\xb5\xb7\x1b\x0c\x86\xfb\x0a\xa0\x0c\x29\xfb\x3b\x0a\x5d\x77\xdf\x40\x2e\x6d\xd0\x7c\x1e\x43\x89\xf2\xb7\xa8\xf1\xff\x87\x09\x25\xd1\x40\xb9\x17\xe9\x89\xaa\x11\xf4\x80\x04\x82\xbf\xcf\x99\x9e\xe0\x1a\x2f\x67\x37\x6a\x98\xd0\x72\x47\xf7\x69\xbb\x32\x6d\xa4\xe1\x1e\x10\xa7\x2c\xa6\xbc\x31\x85\xed\x61\x61\x44\x7e\x0c\x18\xa2\x11\xc8\x04\x21\x1d\x23\x02\xc8\x49\x4b\x01\xdd\x81\x0f\x24\x54\x37\x6e\xc1\x4b\x65\x88\x00\x96\x78\x0e\x90\x26\xa9\x29\x30\x29\x17\xb7\xc8\xd0\x20\xda\xde\xbd\xff\xcd\xa4\x44\x5e\xa5\x04\x43\x1f\x87\xa3\x29\xf0\xfe\xd9\x83\x7c\x03\xc3\xca\xb5\x8d\xa6\x0f\x5b\xdd\x84\x97\x55\xa5\xe4\x03\x14\x66\x00\x31\xf6\xb9\x65\xc0\x80\xee\xb6\x56\x7c\x18\x26\xbd\x18\xc7\xc9\x44\xa6\x15\x9f\xa4\x7d\x04\xa8\x95\x2a\xed\xc9\xb4\x46\x00\x02\xd5\x7a\xac\x06\x38\x41\x9a\x34\xe6\x5c\x76\xe2\x10\xec\x43\x08\x52\x73\x06\x54\x96\xa4\x61\x0b\xae\x16\x45\x86\x80\x4a\xc9\x94\x14\xcb\xc9\x49\xd7\xf7\x34\x64\xa1\x8a\x81\xb5\xab\x11\xcb\xb1\x59\x7c\xb1\x36\xba\x1c\x83\xd4\x68\x16\x66\x09\xde\x91\xdf\x29\x5e\x88\x11\x41\x55\x3d\x94\x25\x98\x05\x3a\x46\x88\xe9\xe6\x81\x2c\xa1\x54\xc6\x2d\x64\xdb\xc6\xac\xc8\xb1\x59\x91\x1b\x3a\x80\xfb\x1a\x32\x57\xbd\x48\x10\x94\xdf\xb2\xcb\x05\x67\x89\x4d\x12\x00\x57\x4d\xe2\x10\x86\xe7\xb7\x64\x1f\xab\x51\xad\x9d\xac\xc4\xe4\x68\x0d\xb8\x01\x73\x68\xd2\xf0\xab\xf6\x4a\xb0\x67\xe5\x58\x0b\x01\xb6\xb7\x55\x97\xb6\xd0\xc8\x6a\x1c\x4b\x14\xb0\xc5\x35\x01\x00\x23\xdd\xe6\x49\x8d\xcb\xdf\x60\x08\xcb\x63\x1a\x4f\xa7\x4c\x92\xa6\x07\xeb\xe7\x89\x05\xe9\x03\x4e\x4e\x4c\x1c\x07\x00\xd1\xe4\x84\x7d\xeb\x89\x49\xc7\xf0\xc5\x33\x9d\x86\xb1\x34\x6b\x52\xaf\x8f\x75\x54\x33\x6d\x95\xda\x91\x08\x6a\x57\x1b\xc3\x17\xb6\x01\x60\x02\xa0\x3c\x56\xcb\x6c\x2a\xda\x7e\x62\x29\x44\x82\x2a\xa9\x05\x99\x00\x8e\xb6\x37\x41\x3d\xc6\xde\x04\xc9\xb4\xdd\x59\xd2\xb7\x44\x70\xdd\x89\xa5\xf2\x29\xeb\x78\x1f\x78\xfa\xe4\xa4\xac\x79\xac\xf6\x8f\x87\x7d\x2c\xa0\xac\x2b\x25\xc2\xe3\x7d\x31\x7a\x29\x43\xd3\x26\xd8\xa1\x4e\x98\x92\x2d\xa0\xdd\x9e\xb0\xdc\x98\x97\xa0\x4d\x04\x30\x46\x80\xa5\x2c\x41\x1d\x93\xac\x52\x0c\x72\xb8\x0f\xfd\x74\x2d\x4c\x50\xaf\xab\x1f\xc1\xb7\x2f\x95\x5d\xe7\x10\x76\xb3\xe9\x2c\x56\x82\xa2\x0f\x4b\xb2\x00\x68\x0a\x08\x36\x3a\xc9\xe2\x84\x67\x75\x96\xc4\xf9\x33\xfb\xf8\x85\xe4\x28\x05\xa3\x37\x48\x0f\xdd\x1c\xb1\xd6\x3e\x33\x6a\xbd\x1c\x3d\x83\xf1\x93\x3c\x40\xf9\x4f\x1b\x7c\xa6\xec\xb0\xe2\x13\x31\x45\xd3\x2c\x56\x3b\x1f\xb0\xc5\x8a\x74\xa9\xcf\x2f\x12\xd9\x22\x17\x24\xb1\xe8\x5a\xbd\x27\xc1\x95\x0d\xc0\x9e\xc1\x79\x44\xa7\xce\x8f\x58\xd3\x18\x17\x64\x31\x40\xd0\x93\x34\xab\x32\xb5\xee\x4e\x06\x00\x80\xd1\xba\x99\xec\x63\x22\x93\xe6\x64\x92\x2e\x0b\xba\x8d\x4f\x64\x46\x59\xdc\x50\xc8\xc9\xcf\x9a\x5d\x61\x1d\x4c\xff\xd4\x69\xb0\x7e\xa4\x79\x52\x72\x59\xf3\x10\xec\xa5\x69\x9e\xf0\x52\x0a\xcd\x21\xec\x11\xd2\x32\xcf\x61\xc0\xff\x5d\x14\xd8\xb2\x02\x8d\x01\xc5\x5d\x84\x77\x01\xb7\x36\xe4\x48\x9d\xd1\x2d\x6b\xad\x50\xf6\x70\x68\xca\xda\xa8\x2d\x3d\x05\x30\xe2\x1a\x0c\x00\x27\x65\x7d\x7a\xd9\xe8\xb5\x55\xe1\x51\xbb\xc7\x50\xd6\x46\xec\x1e\x38\x71\xcb\x9a\xda\xf8\x06\x28\x66\x80\xb3\x5c\xdb\x34\x4c\x4c\xc8\x59\xa1\x78\x4c\x34\x82\xd5\x47\x05\xba\x2e\x9e\x71\x2d\x7a\x50\x7e\x61\xd6\x6b\x36\xa9\xad\xac\x9e\x95\xf5\x41\x08\x6d\x2b\x7f\xc7\xca\x3f\x53\x12\x1c\x45\x9e\xcc\x28\x8b\xa9\x53\xee\xfe\xe4\xa0\x95\xed\x96\xbd\x3f\x89\x2d\x9c\x76\xfe\xa1\xce\x6f\xb7\x6b\x60\xe7\xe9\x86\x0d\x08\x1d\x3e\x2d\xac\x4f\xfa\x24\xa3\x45\xa2\x5d\x9d\xf9\x99\x71\x98\xba\x3f\x2a\x19\x33\x18\x60\xa6\xfc\x42\xc3\x0f\x61\x5b\x95\x96\xd7\x45\x4c\x4a\xc2\xc5\xc4\x29\x5e\x03\xe3\xf6\xb0\x48\x4c\xbb\xb1\x13\x55\x25\xb1\xc0\x0c\x51\x36\x97\xd7\x85\xae\xb3\xa2\x52\x5e\x40\x67\x31\x5f\x94\x65\x41\x96\xe5\x64\x68\x67\xd1\x75\x19\x45\x63\x79\x5d\xe8\xf1\xf9\xcc\x92\x5a\xa9\x23\x87\xbb\x3d\x92\x7d\xc6\x98\x9d\xc9\x48\x26\xe6\x18\xca\xec\xee\xb5\x32\x95\x2a\x90\xca\x1c\x35\x6c\x76\xa1\x13\x9a\xdb\x2a\x75\xbf\x9d\xab\x7a\xd2\x97\x59\x67\x8c\x51\x3a\xc6\xfb\x06\xae\x18\x04\xe6\x22\xb7\x16\x67\x58\xd1\x53\x4e\x45\xd1\x04\x21\x44\x14\x09\x19\x71\xd2\xd2\x89\x01\xaf\xa5\x13\x03\xeb\x7e\x34\xa2\x6f\x17\xb1\xb4\xe8\xc3\x74\xa9\xb4\x5b\x38\xcc\x39\xa9\x6a\x5e\x7e\x95\x2b\x3f\xb6\xc8\x82\xc0\xe8\x13\x2d\x79\x82\x00\x2e\x2d\x6b\xbb\xe3\x89\x4c\x4f\x14\x00\xc4\x69\x63\x96\x42\xe0\xaa\xb4\x99\x99\xd5\x13\x3e\xb9\x26\x07\x0c\x87\x60\xd6\x3b\xf9\xdd\x34\x1d\x50\xbe\x99\xa6\x63\x3a\x9b\x1a\x7d\x74\x7f\x22\x60\xa7\xc4\xd5\x42\x74\x9f\x11\x57\x0b\x4c\x57\x35\xd3\xc7\xb8\xa2\x69\xa7\x54\xd5\xe9\x0b\x16\x66\x16\x64\x0c\x38\xda\x95\x02\x11\xb4\x2b\x85\x4a\x2a\x49\xbc\x07\x69\xb2\x63\x05\x22\x9f\x1a\xd3\x49\x0a\x08\xda\x72\x02\xc9\x13\xbd\x06\xa0\x9a\x73\x6a\xac\x40\x70\xf4\xc8\x48\x7a\x1f\x3e\xb0\x97\x03\xc5\x55\x7d\x30\xc4\xb0\x09\xc9\x16\x73\xeb\xd4\x55\x69\x0e\x00\xcb\x51\x69\x04\x26\x53\x6e\x10\x60\x07\x39\x25\xfe\x19\xf0\x09\xf1\xcf\xc0\xb4\xda\xa9\x81\x35\x83\x4d\x2b\xb3\xd1\x3d\x04\x84\x5c\xa5\x04\xe9\x4f\xed\x1d\x34\x22\x64\x62\xeb\x28\x8b\x19\x82\xad\x8d\x29\x03\x6a\x1f\x24\x1b\xcb\x75\x25\xbb\x98\x24\x95\x00\xb1\x88\x3b\x47\x1f\x3a\x41\x01\x50\x84\x50\xfb\x54\xb5\xbb\x0a\x50\xb1\x9a\xc2\x4e\x05\xec\xe3\x3c\xce\xf3\x8f\xf4\x08\x6c\x32\x56\xf8\x57\x2d\xec\xcf\x8c\x77\x7c\x11\xe3\x17\xd5\xa2\x3f\x94\xeb\x3a\x9c\xd6\x01\x64\x47\x41\x76\x25\x44\xa5\x45\x33\x4f\xdf\xfe\x24\x5b\x0d\x9b\x34\x26\xed\x08\xbd\x3e\x18\x61\x59\x61\xb0\x61\x50\x89\x33\x03\xd8\x28\x18\x05\x00\xbd\x5b\x3a\x4a\x02\x68\xae\x8e\x02\x63\xb7\xd0\xeb\x0c\x2c\x42\x22\x5d\x29\xb9\x00\x87\xf7\x8c\x1c\x3f\xee\x03\xd3\x99\x53\x60\xd8\xca\x9f\x5a\x87\xf0\x38\x58\x16\x68\xac\x40\x57\x12\x00\x82\x80\x5d\x12\xf3\x1b\xb6\xe5\xb2\x35\x7f\xd8\xa5\x31\xd5\xef\x0c\x10\x90\xc7\x45\x3d\xad\xb9\xc5\x81\x08\xcd\x59\x65\xf1\x0c\x51\x95\xe2\x7d\x2c\xae\x89\x81\xad\x22\x95\x6b\x34\x64\x5d\x41\xc3\xb4\xb1\x10\xa4\xcd\xe9\x65\x93\xe5\xd9\x98\x67\x8d\xf2\x48\x4a\x12\x44\x24\xc7\x88\x0a\xa0\xf6\x3a\xf1\x3e\x0c\xcd\xe5\x95\x45\x4f\x68\x83\x91\x5c\x87\x48\x4f\x4e\xa6\x2d\x50\x9c\x9c\x5f\x40\x03\x4c\x1a\xec\xcb\xac\x22\x5a\x61\x0f\x10\x14\x91\xe2\x7d\x2c\xc0\x26\xda\xa9\xd9\x1f\xc1\x44\x33\xbb\x23\x98\x47\x67\x70\x3e\x74\x03\xca\x98\xdc\xa6\xde\x4c\xa0\x5c\xed\xb7\x01\x8c\xa8\xfd\x36\x30\xc5\x95\x9f\x01\xb8\x0b\xb1\x9b\x44\xe4\xae\xc3\xcf\x4c\x53\x10\x19\x5c\x00\x2a\x0a\x61\x37\x0b\x96\xd4\xb1\x71\x7c\x91\x3d\xbb\x59\x94\x05\x6e\x19\x2c\xc9\x76\x6a\xe0\xa7\x14\x3e\x89\xf3\x3c\x03\x33\x5b\x65\x74\x67\xd1\xe3\x17\x46\xee\x8a\x39\x38\x31\x72\x17\x92\x6c\xae\x2b\xd8\x83\x73\x8a\xc9\x24\x93\x9e\x6d\xcd\x64\x0c\x2d\x9c\x4c\x08\x00\x51\x72\x02\x11\xc5\xbc\x70\xc5\xeb\x21\xa0\x39\xe2\x15\x0a\xa3\xa5\x8b\x31\x7f\x91\xe5\x39\x4b\x3b\xa4\x4e\xa2\x33\x57\x08\x19\x21\x21\x26\x7f\x62\x71\x93\x3f\x45\x22\x8f\xf5\xae\x2c\x85\x34\xa9\x6b\x00\x80\xba\xa8\xd4\x9a\x2c\x2a\x9f\x14\xe5\x44\xca\x0b\x38\x55\x7f\xd1\x92\x17\x50\x4e\x4b\x5e\x00\xc5\x4b\x1e\xe7\x7a\xfb\xdd\x83\xaf\xf9\x33\x1b\x32\x29\x95\xe9\x7f\x00\x0a\xbc\x48\x2b\x5b\x05\x6c\x7e\x5e\x94\x0d\xcf\x18\xaf\xb9\xb2\x51\x82\x69\x65\xb2\x88\x79\x6d\x0c\xd7\xb0\xf7\x9a\xf0\x38\x41\x17\x80\x9b\xb1\x4e\x4b\xf1\xda\x87\xc9\x02\x90\x1d\xc4\x48\x54\x7a\x57\x61\xec\x2a\xc8\x9e\x82\x1c\x2a\xc8\x81\x82\x8c\x25\x64\xa0\xcb\xdd\x51\x10\x5d\xce\x9e\x84\x0c\x65\x4d\x4c\xa5\x35\xc6\xbe\x82\xe8\x72\x55\x6b\x76\x34\xce\x81\x84\xec\xea\xd6\xc4\x0a\xa2\xbf\x52\xbd\xdc\xd7\x10\x59\x97\x92\x22\x3d\x64\x61\xae\xfd\x2e\x86\xb0\x82\x4f\x5a\x4a\xa0\xe8\xd7\x0b\x22\x3a\x04\x8d\xa7\xf4\x6c\x10\xc4\xf0\x4f\x64\x2f\x0e\xfb\x04\xba\x39\x07\x17\x14\xc0\x48\x25\x04\xb6\xaa\x53\x0b\x92\x02\x44\xd9\x19\x0f\x04\xa9\x7e\xa2\x5e\xac\xb0\xad\x9e\x5a\x10\x21\xd5\x7e\xd2\x47\x5c\x4d\xaf\x0f\x5d\xf8\x89\x9c\xad\xc1\xa9\xf2\x94\x02\x52\xc0\xd0\xb6\x28\x68\xaa\xb1\x45\x41\x43\x8d\xb6\x04\x76\xb8\x29\x49\x43\xe7\x95\xa0\x07\xab\xcd\x54\x79\xce\x82\x7b\xc1\xf4\x54\x2d\x14\x07\x50\xb3\x36\x31\xa5\x63\x48\x5e\x5a\x9f\xb2\xcb\x4b\xeb\x63\xb9\xfe\x28\x19\x0c\x1d\x66\x95\xb2\x77\xc6\x60\x3f\x9f\x6a\x9f\x21\x95\x6f\xf4\x99\x83\x9e\x86\x94\x0a\x34\x30\x20\xdd\xb4\x1d\x84\x99\xb6\x69\x03\xad\x80\xea\x0a\xc0\x0a\xf6\x93\x2b\x9d\x04\xaf\x4d\x5d\xe9\x04\x25\xaa\x73\x0b\x70\x18\xf8\x49\xa5\x60\xaa\x4e\xa7\x76\x32\x9b\x2b\xca\xf4\xe1\x48\xe6\x27\x62\x60\x81\x21\x21\x06\x16\x48\xe7\xb1\x22\x02\x50\x4e\x35\x1d\xd4\xdd\xa9\x92\xe6\x31\xc8\xa1\x69\xfe\xa7\xc2\x85\x66\x15\x86\xa9\x62\x99\x36\x7e\x91\x0a\xa6\x2c\x02\xe0\xec\x33\x2d\xf4\xa0\x1e\x62\xee\xa5\x9d\x4d\x06\x0e\x11\xcc\x4a\x09\x3a\xe8\x4f\x2d\x51\x08\x63\xd5\x12\x85\x50\x1a\xb1\xb9\xfd\x04\x37\x9f\x38\xb5\xcd\x00\xa7\x50\xf8\x6b\xad\x9d\x20\x53\xc9\xbc\x17\x4d\x9e\x5b\xdf\xed\x9b\x3c\xf9\x9f\xa2\xca\xc0\xe4\x90\xc2\xf6\xc9\x07\x1f\x05\x1b\x5a\x6a\x0f\x33\x99\x54\xd7\x01\x3d\xe1\x27\x57\x66\x40\x0d\x53\x23\x33\x90\x67\x0c\x8d\xe0\xab\xa9\xf1\x96\x88\x0f\x98\x04\x68\x85\x1f\x98\xb1\x36\xac\xbf\x8f\x69\xed\x41\xbb\x0f\x45\x0a\xc6\xff\x41\xb4\xe0\x4c\xfd\xa8\x29\x0f\x4e\xc9\x3e\x33\xc5\x12\xf2\xf7\x7a\xdb\x08\xba\xdd\xb4\x26\x8a\x5a\x0c\x7e\xbf\xd3\x9a\xdb\x1c\xb2\x27\x81\x46\xdf\x3a\x40\x48\xab\x74\xce\x2e\x73\x67\x78\x00\x48\xa0\x52\x30\xd4\x3c\x77\x48\x3f\xad\xb9\x4b\xa1\x2b\xc6\x6b\x8b\xd7\xcc\x3c\xbd\x22\x2c\xaa\xa1\x2f\xe3\x84\xc9\x8d\x36\xda\x2d\x67\x71\xc6\x8d\xda\x1f\x03\x24\x9f\x98\x75\x70\x16\xcf\xb3\x5c\xd9\x51\xc0\x61\xe0\xe5\xb3\x0f\xc6\x52\x3f\xc0\x2f\xb8\x31\xd6\xef\x48\x08\x37\x87\xbe\x70\xca\x44\x2c\xd5\x20\x35\x66\xe4\xdc\x61\x47\xe6\x6b\x6b\x46\x0a\x4d\x15\xd5\xfe\x5f\x91\x35\x8e\x35\x9f\x08\x81\xfe\x92\x48\x6b\x90\x2b\x33\x0a\x10\x63\x36\x63\x31\xaf\xb5\xc5\xd8\x40\x88\x5d\x19\x81\x79\x9e\xa9\xce\x0f\xf6\x00\xc2\x13\xbd\x31\x00\xeb\xc6\xcc\x15\x64\xe2\xc3\x97\xda\x71\x01\xac\x25\x2f\xb3\x7c\xcc\x78\xfd\x71\x11\x27\x8c\x92\x6a\xf6\xb5\x62\xc4\xfa\x82\x4d\xfb\x5a\x5d\x53\x18\xd4\x5a\x12\xdb\xc5\x04\x00\xf3\x7a\xa6\x8f\x83\xa0\xa8\xb2\xfc\x9a\xb3\x49\x4d\x0d\x6b\x20\xed\x45\x06\xd8\xba\xac\x1c\x18\x84\x96\x30\x11\xf8\x2f\xc9\x81\x2d\x0c\x70\xc9\x35\x79\x7b\x7d\xe8\x5c\xc9\xb3\x6f\x65\x51\xc7\xf9\xeb\x4c\x49\x3d\x74\xc8\x9b\xb5\x96\x7e\x18\x28\x32\x8d\xa1\xa9\xc4\xb1\x59\x0e\x18\xb5\xef\x60\x8f\x2d\x88\x60\xc4\x97\xcd\x1c\xac\x95\x2f\x1d\xe7\x25\x91\xa6\x52\x0b\x7c\x91\x66\xb7\xc4\x0b\x6a\x67\x08\x90\xc5\x4c\x39\xf2\xe2\xc1\xd5\x2b\x62\xa7\x11\xcd\xcc\x88\x9d\x06\xd2\x52\x72\xf4\xc0\x1d\xe0\x95\xb1\xbf\x30\xc8\xd4\xf6\x17\x06\xb9\x5a\x1d\x38\x80\x5c\xad\x0e\x88\xe4\x2b\xb3\xfc\xc3\xe6\xe2\x95\x31\xc6\x00\x41\x33\x63\x8d\x19\x62\x1a\xb7\x30\x7f\xdc\x80\x69\x3c\x9b\x4c\xe8\x44\xc8\x5c\x86\x13\xf4\x7a\xa5\x19\x0e\xcc\x63\xaf\x88\xdd\x44\x30\x60\x46\xec\x26\x90\x96\xb6\xb2\x3e\x4c\xbd\x2c\xcb\x88\xb6\x8b\xf9\xe4\xdc\x1f\x88\x91\x15\x13\x75\x30\x72\x98\x22\x4a\x29\x77\x6f\x83\x3e\x38\x65\xbd\xfa\x59\xa9\xfb\xbd\x3e\x1c\x59\x66\x7f\x12\x00\xd0\x90\x98\x45\x40\x30\x64\x14\x30\x46\x80\xd2\x8d\x64\x47\xe6\xf1\x34\x2b\x62\x7e\xfb\xca\x6a\xf0\x3c\x9e\xe6\x9a\xf7\xd0\x46\x28\x60\x42\x6f\xa7\x5f\x67\xf3\x58\x1e\x76\xf6\x50\xeb\x7c\x35\xb7\xb3\xe5\xf6\x63\x30\x80\xfd\x67\x36\x5f\xc8\x83\xd8\x1e\xfa\x06\xbc\x9a\x2f\xf2\x4c\x3b\x57\x80\xad\x3d\x2b\x12\xbd\x07\xc2\x2b\x1c\xfa\xbc\x08\xec\x49\x84\x4e\x03\xd0\x37\x01\xa0\x5d\x6c\x0f\x41\x49\xcd\x8a\x92\xb0\x04\x34\xa5\xa8\x13\xcd\xc2\xe0\x4b\x44\x06\x40\x50\xe6\x95\x49\x26\x98\xcb\xa6\xda\x6c\x85\x52\xce\x3d\x1b\x19\x4b\x3c\xee\x94\xfc\x0a\x0c\x5e\x8c\x5c\xf6\x40\xef\xf4\xac\xa8\xf3\x98\xcf\xe4\x8e\x29\x06\x3b\x5f\x56\xd4\xc6\x5f\x23\x06\xf3\xcd\xab\xe2\x2a\xab\x32\x38\x92\x51\xfa\xb9\x9a\x23\x2a\x87\x78\x0e\xf5\xc0\x6f\xf3\xd5\x3b\xa3\x9c\x41\x77\x4b\xa3\x9c\xc1\xb8\x10\xcb\x11\x38\x93\x64\x14\x30\x01\x0c\x47\x58\xc1\x6e\x39\x6b\x89\x30\xe8\x60\x69\xcc\x0c\x87\x80\x65\xec\x0c\x90\x76\xbb\x94\xe9\x15\xfc\x06\x8c\xc7\x59\x4b\x8e\xc1\x24\x37\x72\x0c\x39\xae\x72\x86\xbe\xca\x0a\x62\x95\xde\x95\x20\xb5\xca\xc2\x31\x8e\x00\xa8\x35\x7b\xb2\xa3\x00\xca\x7a\x33\x19\x4a\xc8\x95\x55\x6e\x6d\x91\xb2\x36\x47\xa9\xfd\x01\xe6\x53\x08\x4c\xc5\xe6\xab\xa1\xb7\x10\x0f\x19\x01\xc0\x16\xf2\x95\x36\xa8\x40\x7f\xb5\x41\x45\xa4\x7e\x26\xab\x25\x1c\xad\xff\x49\x01\xbb\x80\xa1\xe5\xd7\x21\xe4\x6b\xf1\x25\x92\x3f\xbb\xfa\xbe\x60\xf9\x3f\x5d\xa9\x25\xb8\xeb\x4f\x33\x3f\xd1\xaf\xea\xe7\xd6\x28\x0b\xee\xf8\xb3\x35\xca\x82\xb5\x7f\x6e\xe9\x8c\xa2\x69\x7f\xb6\x86\x0e\xba\x54\x31\x6e\x28\x72\x00\x78\x04\x02\x5a\xf4\xcf\x94\x68\xd0\x6d\x4a\x34\x01\xf8\x67\xbc\x58\x68\xc6\x12\x8c\xf6\x95\x00\xc6\x1a\xa0\x8d\x8b\x82\x49\xfe\x49\x37\x97\x70\xa7\xe4\xab\x05\xd9\x07\x1c\x4d\x4e\x28\xc4\x90\x53\x24\xff\xe9\x92\x53\xf0\xe2\x57\x97\x9c\xa2\x07\x5f\xa7\x5c\x5d\x56\xe9\xa1\x73\xc7\x3f\x89\xc7\xa4\xa0\xce\x57\xe2\x31\x29\xd2\xff\x24\x9b\x26\x31\x11\xbe\x92\x4d\x93\x48\xff\xb3\x35\x1e\x82\x05\xbf\xb6\xc6\x03\x70\x5b\xe3\x01\xbd\x75\xa1\x70\x25\x24\x7f\x66\x14\x9a\x54\x74\xf2\x35\x35\x07\x00\x17\xe5\x16\x24\x06\x88\xed\x3d\xb1\x03\xb0\x29\x8f\x95\xe5\x0e\x6c\xef\xaf\xe3\xf9\x38\xd5\xa3\x34\x06\x1c\x02\x19\x23\x44\x79\xc8\xed\xc3\x31\xc2\x6b\x92\x8e\x65\xbe\xbe\xfc\xd7\x97\x00\x65\xa7\xc3\x4f\x72\xb3\x25\xdc\x85\x12\xe0\x56\xae\x31\x24\x41\x5b\xf2\x58\xde\x81\xba\x89\xb1\x5a\xce\xa5\x77\x58\x9f\xed\x28\xc0\x44\xca\x83\x43\x30\x46\x10\x1f\x2d\xd8\xc1\xbc\x26\x69\x06\x94\x33\x84\xeb\x49\x7c\x53\x42\x2a\x21\x4a\x88\xa3\x0a\x28\x20\xf9\x42\x41\x54\x4b\x16\xda\xa5\x4c\xe1\xe8\xcd\xc3\x21\x6c\x1e\x04\xa8\x56\x7b\xec\x18\xfb\x53\xc7\x99\xfa\x0c\xa6\x7e\xfe\x8c\x42\xb0\x68\xa5\x49\xc8\x9a\x94\xef\x65\x1c\xa7\x32\x5d\x69\x80\xde\x77\xe4\x63\xb3\x37\x02\x4e\xcc\x7f\x24\x00\xe8\xb8\xb9\xa3\xb6\xbf\x0f\x8d\x19\x73\x54\xa7\xef\x54\x42\x64\x9f\x63\xe2\xab\x5a\x6f\x0f\xc6\x12\x50\xe5\x6a\x44\x0f\x26\x1a\xd4\x28\x90\x68\xda\x6b\x7a\xe8\x06\x96\xc7\xdc\x82\x30\xc0\xa1\x93\x17\xca\xb6\x20\x09\x42\x14\x49\x86\x20\x6b\xf2\x04\x9c\x02\xef\xe0\x7b\x3d\xd5\xf1\x63\x3d\xd5\x21\x99\x26\xea\x26\x2d\x88\x8a\x9c\xde\xa1\x4b\x14\x40\x2b\xe3\x40\x96\x94\xa7\xe4\x1c\x73\x1f\x41\x4d\x65\x60\x3b\x58\xb2\xd6\xb8\xc1\x45\x5b\xdf\xe2\x85\x6b\x31\xb9\xde\x09\x8a\x5a\xc1\x87\x41\xf0\xfb\x8f\x82\xa6\xea\x8c\x4a\xce\x14\xe5\xdf\xa0\x4f\xa3\x25\x27\x3b\x5b\x0f\xe4\x5d\xc7\xc9\x42\x03\x63\xd7\xf3\x42\x63\xb6\x1c\x1c\xc0\x09\x5b\x97\x6e\x98\x0d\x19\x52\x7c\xf7\x9c\x41\x88\x49\x4a\x70\x01\x46\x27\x06\xa7\x0b\x7b\x3a\x13\x4e\xc2\xad\x33\x77\x38\x3a\x51\x99\xad\x23\xf7\xc3\x56\xa6\x6a\xe0\x50\xe6\xbc\xc8\x4b\x05\x1c\xc2\x46\x59\xb4\x5a\x3a\x1b\x98\xbb\x69\x78\xf0\x4f\xb2\x94\x5f\x64\x1f\x8c\xc6\x22\x43\xf7\x56\x7b\x35\xec\xcb\x9c\xd6\x3e\x0e\x76\xca\x9d\x0e\x2b\x3a\xa7\xf5\x4d\xba\xd3\x2a\xad\x72\x89\x0d\x59\xb2\x81\x3a\x73\x4c\x33\xab\xcb\x26\x9b\x5a\x5b\xca\x94\x36\xc5\xa2\x2c\xec\xd3\xa4\xef\x84\xe5\x94\xb0\x63\xe0\x92\x01\xe3\xa1\x01\xd9\x1e\x11\x8a\xa2\xf5\x8c\x33\x66\x39\x5c\x8d\xd5\x27\xf2\x3a\x9f\x19\x35\x50\x6e\x68\x96\xfc\x64\x3c\x70\xe0\x74\x03\x39\x56\xad\x42\xef\x18\xbb\x15\x7d\x9d\xd7\x62\x9f\x9e\xce\x6a\x31\xcf\x81\x93\xa5\x46\x5c\x35\xaf\xf5\xc1\xc0\xca\xb0\x18\xe4\x54\x1d\x90\xa3\x64\x63\xda\x2a\x8a\x04\xba\xb4\xe6\x35\xb1\xfc\xe0\xd0\xda\xe6\x61\x64\x45\x62\x1e\x3e\x40\x80\x93\x6f\xcc\xc3\xe0\x9f\x98\xdb\xe6\xe1\xbe\x01\x29\xd3\xda\xc1\x10\x61\xa6\x6d\x46\xd0\xb3\xca\xd8\x9f\x0f\x25\x5e\x65\x5b\xcb\x76\x25\x94\x18\xc7\xf6\x24\x88\x5d\xea\x03\x57\xd5\x63\x01\x34\x50\x24\xcb\x6b\x56\x55\x30\xa6\x96\xdd\x12\xbf\x10\x79\x2d\x53\xe7\x9e\xcc\xb0\xf1\xf7\x55\xb5\xa6\xd2\x7d\x85\x69\xec\x9e\x71\x2c\x49\x50\x11\xeb\xdb\x40\xa2\xb5\xed\xa0\xa9\xcc\xb1\x8c\xa0\x20\x93\x2d\x4f\x50\x18\xec\x89\x2b\x53\x5e\xbb\xca\x20\x0c\x88\xab\x0c\xc2\xca\x3c\xb5\x3a\x31\xd5\x06\x6e\x68\x2c\x71\x1c\x85\xaa\x67\x31\x4f\x2d\x01\x35\x8b\x79\x63\xf1\x9d\x00\xa8\x85\x1e\x2e\xf8\xe5\xb3\x71\xae\x2f\xb8\xc2\x9c\x21\xca\x24\xb4\x80\x28\x93\x90\x26\xba\x0d\x8a\x34\x4d\x7e\xe8\x9a\x3e\x4c\x00\x2e\x04\x7f\x48\x35\x12\xe8\x11\xf9\xda\x5d\x65\x90\x03\x48\xe3\x0f\xc1\x68\x9b\xe7\xc6\x19\x08\x9c\xeb\x5e\xcf\x33\xb2\xdf\x06\x92\x51\x08\x6c\x25\xf3\x79\xd9\x54\x75\x9c\xcc\x94\xf3\xe1\xd8\x40\x2d\x08\x39\x0c\x38\x94\x69\xca\xbc\x08\xd3\x66\x69\xe8\xa7\xb1\xb4\x1e\x60\xee\xa5\x9d\x4d\xa6\x29\x22\x90\xc3\x00\x18\xbd\x92\x28\xa8\x09\x02\x8c\x41\x10\xc6\xab\x34\xda\x91\xfc\x44\xc8\x35\x8b\x5c\xfb\xb0\x25\xed\xf4\x52\x54\x19\xad\x2f\x0e\x48\x51\xee\x4a\xb2\x0f\x3e\xb0\xab\xdd\x1a\xf7\x49\xa1\xed\x6f\x63\x59\xf2\x3c\x5e\x54\x4a\x98\xec\x4f\x12\x09\x6d\xe3\xef\xc9\xd2\xda\xf5\xa8\x9c\xf6\x37\x30\x16\x65\xb9\x70\x5d\xf4\x51\x33\x55\x19\xd4\x13\x30\xc6\x06\x68\x5f\x94\x43\xd4\xee\x5b\xdb\xa0\x21\xa2\x39\xdb\x20\x1c\x09\xe2\xa6\x32\x40\x08\xbd\xa7\x0f\x3b\xea\xbc\xbc\x36\x17\xc1\xc0\xd0\x92\x97\xd7\x68\x66\xfd\x02\xf5\x5d\x33\xde\xd2\x9e\x0e\x55\x4e\x7b\xb1\xc7\x61\xfa\x26\x79\x3e\x41\xda\x92\xeb\xf5\x1a\xa4\x82\xa8\x80\xe7\x44\x8e\xdd\xf4\xe5\x4f\x65\xc6\x3f\x44\xb1\x4c\xee\x59\xa0\x5e\xc0\xed\x19\x09\xd3\x88\x6b\x3d\x53\xea\x07\x9c\x4e\x46\xe8\xbd\xba\x9a\xd1\x43\x35\x9e\xeb\xb9\x39\x80\xf5\x2f\xaf\x62\xa3\xe4\xe2\x56\xa4\xb5\x65\x84\x55\x97\x58\x5f\x40\x64\x19\x85\x16\x56\x5e\x3b\x99\x3b\xa2\x38\xa7\x47\x45\xa9\x04\xe8\x95\x14\xdb\x71\x39\x56\xfb\x87\x8a\xa8\xdd\x07\x0a\xa0\xd5\x6e\x90\x28\xd4\x3e\x0d\x46\x8a\xdc\x82\x40\x9d\xe4\xf0\x69\x0f\xd3\xe6\xf0\x09\x3a\x2a\x08\xfe\xbd\x28\xed\x4c\xfd\xa8\xa9\x44\xcc\x6b\x77\x05\x04\xe5\x87\xea\x3d\xb9\xa5\x09\x61\xa1\x39\x39\x66\xc2\xaf\xac\x03\x2a\xfc\x4c\x0b\x48\xd0\x5f\x45\x9a\x51\xfd\x27\x27\xee\x93\x09\x76\x86\x93\x73\x2f\x28\xb6\xe1\x29\xdd\x66\xc4\x08\xa3\x5e\x95\x80\xe6\x1e\x41\x1d\x18\x5d\x80\x1c\x41\x19\xa8\xb2\x09\xdf\x40\x00\x1f\xea\x1f\x33\xc0\xb4\xd2\xe6\x07\x3d\x99\x66\x2a\x60\x08\x82\xde\x28\x01\x7d\x08\xf6\xd9\x79\xac\xb7\xbe\x7b\x98\xd4\xf2\x86\x42\x88\x8a\x0e\x47\x85\x08\xa5\x42\x63\x47\x43\xb5\xce\x1e\x63\x05\xfc\xab\x9a\x16\xbb\x70\x01\x73\x9e\x18\xd3\x68\x0c\xab\xf1\x1b\xb3\xef\x4b\x00\x41\xef\xfb\x20\x49\x2f\xd5\x40\x35\xc6\x1f\x73\x00\xb6\x8f\x39\x8b\xab\x86\xb3\xd4\x0a\xc0\x24\xd8\xee\x0d\x4b\xb3\x66\x4e\x4e\x96\x7a\xe0\x2a\xf6\x86\xe5\x79\x56\x10\xbf\x16\x31\xca\x6f\xdc\x28\x25\x40\x40\x57\x79\x80\xea\x66\x8a\x42\x60\xa7\x9b\x67\x09\xfa\x58\xdd\x80\x59\x7c\x9e\xa5\x26\x2c\xcf\x3c\x4b\x0d\x5b\x83\xc9\x4b\x5f\xf0\x1c\x80\xcb\xd1\x3c\x4b\xad\xcb\xbf\x70\x45\x40\x85\x5b\x02\xb7\x61\x7a\x69\x00\xe6\x36\x00\x74\x78\xb1\x03\x0d\x69\x14\x49\x45\x1b\xe1\x2e\x2b\xb9\xb9\x0a\x8e\x18\xf3\x3c\xd1\xd7\xeb\xc6\x90\x4e\xf5\x95\x20\x18\xeb\x62\xe1\x7e\x51\xa6\xda\xc1\x73\x00\x23\xff\xa6\x25\xed\x61\x48\x5a\xd2\x1e\x46\x7a\x61\x95\xd5\x92\x5c\xa2\x37\x6f\x88\xeb\x0b\x62\xd5\x32\xf6\x92\x8a\xa5\xf6\x06\x3b\xd6\x1b\x42\x68\xa4\xb9\x4a\x8d\x31\x25\xe6\xb8\xbe\x6d\x07\xb7\x0c\xe7\x8d\x03\x28\xe2\xb1\x72\x6f\xc0\xab\x48\x6f\xa9\xf5\x0c\x56\xab\xc2\x82\xec\x00\x84\x04\xfb\x82\xdb\x1f\x03\x80\xea\xe3\xb5\x43\x4c\x9a\xa8\x52\x10\xd8\x0d\xeb\xa3\xd1\xa4\x28\x58\x76\xac\xd7\x57\x5f\xd3\x00\x52\x08\xaa\x1b\x7d\x48\xb1\x07\xfe\xcf\x12\xa4\x36\x9a\x70\x26\x06\x30\x0b\x69\x8c\xc7\xd0\x37\x10\x27\xa3\xb0\x62\x18\x98\x06\xd8\x91\x0b\x0c\x9c\x5c\x60\x14\xc4\x78\x4b\x0d\x3b\xe0\xc0\x57\x58\x90\x03\xc0\x21\x86\x1d\xb0\x96\x16\x16\x64\x0f\x20\xe4\xae\xed\xbe\x02\xd0\xcb\xb6\xa4\x09\xe6\x06\xe4\x00\x8a\xd7\x12\x21\x85\x6c\x2d\x11\x20\x49\x25\x02\x0c\x1f\x33\x47\x33\x87\x70\xdc\x23\x20\xda\x34\x08\x75\x33\x62\x1b\xdc\x57\x18\x46\x49\x40\x90\x12\xb8\x40\x45\x46\xfd\x37\x75\x53\xdf\xb2\x69\x5c\x67\x57\xac\x2d\x5b\xe0\xfc\x56\x65\x9f\xcd\xb2\xe4\xeb\x43\xb9\xc5\xca\xcc\xcf\x8c\xdf\x76\x22\xd8\x31\x71\x80\x1f\x59\xc5\xf4\x8a\x02\x66\xee\xc2\xf2\x2a\x25\xad\xae\x6a\x96\x76\xf9\xab\xa0\x2b\x07\xe6\xdb\x5b\x37\x5c\x67\xdf\xb2\x6b\x75\x92\xfd\x47\x01\x15\x50\xbf\xd1\x1d\x0d\xa9\x28\xe8\xad\x2b\x4c\x85\x34\x2e\x5c\x61\x0a\x7d\x22\x0e\x5e\x86\x1d\xb4\x0f\x18\xb8\xde\x16\xc6\xb1\x4b\xa7\x2f\x3b\xbf\x72\x1c\xbc\x68\x56\xd5\x01\x25\x4e\x54\x04\x95\x68\x47\xc0\xd8\xc4\xe9\xc5\x08\x82\xa9\x06\x4e\x30\xc9\xad\xf4\x4f\xf5\x15\xf9\x48\x15\x4d\xdc\x38\x60\x29\x2c\x88\x1f\x47\x82\x00\xad\x5c\xc7\x70\xc3\xae\x50\xea\x20\x32\x40\xa6\x8f\xc7\x12\x4c\x2a\x39\x03\x3b\x86\x42\x33\x07\xf2\x13\xd9\x72\x42\x36\xd9\x72\x42\x9a\x9a\xd3\x11\x40\x9a\x03\x13\x8d\x2c\x10\x40\x0a\x62\x0b\x35\xbd\xd2\x6b\x2e\x44\xd6\x2b\x5a\xd6\x4e\x28\xda\xb5\x6c\xca\xf2\xbb\x6c\x70\x48\x9a\x4e\xf3\x1c\x12\xc9\x18\x72\x54\x8d\xc4\x92\x43\xdb\xe5\x18\x74\x68\x56\xd5\x0d\xd5\xac\x8f\x6d\x30\xbb\x6e\x82\x45\xf8\x03\xd8\x9f\xe8\xa5\x86\x3f\xf2\xda\x2a\xc9\xe8\x94\x03\x16\x2b\x80\xa2\x1b\xec\x5a\x8b\xd7\x86\x65\x62\x53\x1b\xd1\x17\x60\x62\x95\x3f\x72\x16\x4b\x51\xd7\x03\x39\xf5\xb6\x2c\x00\x96\x15\x53\x2d\x31\xe4\x3a\xd0\x5a\x95\x27\x80\xaf\x7d\x58\x60\x31\x21\x01\xb5\xa0\x1d\xea\xaa\x60\x82\x79\xad\x68\x08\x03\x09\xa7\xd7\xdc\x61\x33\xf3\xb6\xac\x57\x5e\x8e\xdb\xc3\x7c\xe7\x8e\xc9\xa1\x84\x52\x63\x53\x8f\xc0\x6c\xb7\x7f\x23\xcc\xca\xfa\xb4\x2d\x72\xca\xda\x91\x6b\x13\x0b\x4a\x2b\x01\x29\x62\xb2\xda\xbe\x7d\xb4\xaa\x15\x42\xb3\x03\x85\x7a\xfb\x1d\x5a\x39\x1d\x0e\x7f\x1d\xdf\x5b\x46\x2f\x39\x34\x9d\x9e\x3d\xf4\xdb\xb6\x8b\x8f\x61\x9e\xb2\x36\x87\xf0\x87\x0a\x40\x4f\xe1\x6d\x54\x73\x18\x6f\xc3\xaf\xe2\x56\x21\x3a\x24\x28\x18\x32\x10\xa4\x6e\x89\x4c\xe4\x60\xaf\x32\x3b\xd3\xd6\x77\xd8\x9f\x61\x7e\x38\x59\xb4\x83\x2c\x51\xf9\xf6\x6c\x95\x20\x6b\x9c\x7b\x06\xee\x18\x2f\x0f\x4c\x8e\xb5\xe2\xd9\x8d\xeb\x34\x51\xba\x28\xd6\xb0\x49\x56\x5c\xbd\xde\xc6\xb1\xc5\xc8\x5d\x0b\x6f\x1c\xf7\xe9\x00\x98\x35\x20\x51\x00\x33\x22\x06\xa4\x47\x84\x69\x90\x1e\x11\x39\x3d\xdf\x73\x96\xb0\x54\x6f\x89\x0f\x7a\x36\x98\x76\x33\xb6\x86\x49\x61\xb8\xd4\x18\x30\x59\xc4\x07\x76\xc5\x78\xc5\x9c\xf9\x2d\x47\x0a\x6f\x71\xb6\x38\x21\xed\xd1\x2a\x2c\x24\x55\xfa\xb8\x23\xcf\xaa\x5e\x76\x0c\x2f\x5f\x7c\x6c\xc6\xe6\xd6\xd8\x81\xd5\x01\x8a\x60\x15\x30\xb0\xf3\x17\xa2\x17\x3a\x82\x50\xaf\xab\x08\x44\xb1\x0a\x19\x4a\x0c\xab\xfe\x81\x5e\x0c\x74\x16\xfd\xe8\x40\x15\xdb\x24\x09\x63\xa9\x1e\x93\xbe\x0d\xa6\x63\x32\xb6\xdb\x23\x31\xda\x63\xe2\x14\x61\xf1\xa7\x4d\x15\xbb\xbf\x07\x43\xbb\xc9\xed\x9e\x1e\x48\xb1\x66\x09\xe6\x3e\x81\x59\x92\x68\x87\x64\xb8\x32\x16\x36\x04\x2a\xd3\x2a\x4e\x56\xd1\xb1\x88\xc0\x6a\xbb\x88\x79\x9c\xe7\xda\xf1\x1f\x56\x96\x62\x61\xaf\x34\x05\xb9\xce\x15\x4f\x52\x1d\x3c\xb2\x30\x3e\x70\x83\x9e\x99\x86\xc5\xa2\xcc\x49\x28\x26\xac\x86\xd3\x49\x52\x2c\x78\xd2\x30\xca\xf3\x05\x89\x9f\x72\xa0\x01\xda\x76\x4d\xa6\x8f\xc8\xe8\x80\xf2\x98\xab\x7b\x75\x87\xc3\xa1\x0d\x57\x9a\x13\xe8\x7c\x9c\x28\x65\x13\x85\xa1\x95\x2b\xa2\xbe\xb4\x0f\x40\xe1\xfb\x0f\x2d\x25\x0a\x4b\x21\x1a\xc9\x58\x01\x18\x9d\x57\x85\x0e\x91\x03\x4c\x59\x54\x09\xa1\x81\x84\xb0\x0e\xd6\x6c\xb9\xba\x1c\x22\xae\xb3\xfb\x87\x8d\x5b\x35\x2b\x79\xed\xe8\x38\x08\xec\x1c\x67\xb2\xb7\xe9\xcb\x34\xa3\xdc\x56\xd0\x58\xc1\x12\xd2\x2a\xdd\x65\x96\xea\xd2\xc4\x21\x42\x81\x00\x20\xbd\x55\x66\xd8\x52\x15\xbb\x68\x70\xb0\x23\xd3\x6a\xef\x9f\x90\x75\x94\x14\x75\xa0\x00\x9d\x42\x41\x66\xe8\xd6\x52\x6c\xad\xcf\x3a\x45\x27\xce\x80\x88\x09\x7e\xd9\x1e\x81\x42\x87\x51\x1a\x80\x85\x5e\xa4\x75\x5b\xf7\x2c\x34\x46\x27\xb6\x00\x74\x4a\x03\x99\x61\xda\x7a\x48\x81\x97\x1d\x45\xd7\xe6\x0a\x09\xcc\x67\x13\x6a\x1a\x22\x2c\x14\x26\x3d\xc1\xb4\x39\x91\xc3\xef\x5b\xa1\x69\xa5\xde\x4c\x33\x74\x7b\x50\x71\xed\x88\x58\x2b\x59\xdb\xca\x31\x5f\xc1\xe2\xa1\xad\x4b\xc0\xf2\xda\xba\x84\x29\xc1\x6d\xff\x86\xbf\x98\xba\x48\x89\x77\xbe\x8b\x86\x5c\x0f\x06\x1d\xe8\x8a\x04\x7d\x32\x94\xbb\x22\x61\xea\x40\xa5\x2e\xae\x4e\x08\x04\xaa\xf9\x4c\x71\x60\xf5\xfe\x4c\x71\x60\xba\x5e\x91\x6b\x51\xa4\x74\xbc\xa2\x41\x00\x2f\x89\x67\x10\xf0\xe9\x95\xe5\x9c\x0c\xa5\x5f\x99\x7d\xde\x61\x0f\x3f\x23\x2e\x2f\xa4\x30\xb4\xc1\x5b\x00\x6a\x0a\x27\x19\x9c\x94\x38\x44\x08\x45\xa5\x4d\x26\x51\x3d\x13\x03\xbe\xa6\x16\x9c\xa1\x84\x68\x41\x08\x14\xbf\x26\x16\x9c\x3d\x85\x61\x84\x1d\x82\x0a\x62\x0f\x11\xc3\xf2\xce\x38\xae\x43\x28\x8d\xd2\xa4\x27\x98\xb6\x63\x0e\xbe\xd3\xbe\xeb\xe0\x0a\x52\xea\xe4\x44\x25\x15\x76\x0c\xd8\xda\x4e\xc5\x20\x5b\xdb\xa9\x20\xe9\x86\x28\x7c\x47\x42\x3b\xf5\xe1\x4e\x70\x69\x41\xfa\x00\x51\xbb\xf8\x18\xa6\x92\x09\x77\x8d\x11\x0d\xcb\xb4\x2a\xb5\xb7\x16\x18\x41\xdf\x9d\x1a\x57\x72\x70\x8e\x28\x19\x01\x40\x27\x27\xe6\x3e\x09\x9c\x2b\xbd\x73\xed\x33\xf0\x99\x6b\x9f\x11\x85\x1b\x57\x63\xbc\x6f\xf3\xce\x38\xcb\xc3\xc0\x95\x26\x3d\xc1\xb4\x3a\x28\x83\x83\xa9\xd2\x5c\x3f\x39\x04\xf3\x78\x39\x9b\xcb\x29\x06\xcb\x42\xe9\x04\xd5\x2b\x69\x18\xb6\x18\x00\xa4\xe9\x88\x41\x82\xd2\x1d\x82\xc7\x62\x69\xdc\xdd\x7b\x48\x78\x7d\x5a\x07\x0e\x95\xef\x88\x27\x3d\x44\xfa\x2c\x29\x00\x06\x66\xce\xa6\xb1\xd5\x2e\x02\x80\x93\xa3\x77\x60\xe6\xd7\xd7\xe7\x27\x80\x43\x41\x63\x09\xd2\x43\xb3\x87\x69\x27\xa6\xe4\xbb\x96\xfd\x1c\xf0\x5c\x28\x6c\x83\xc9\x49\x2b\x1c\x0e\xbc\x5b\xb0\x62\x55\x54\xc7\x84\xe6\x5b\x39\xc0\x44\x0b\xa6\x43\xd9\x81\x97\x77\xb9\x70\xa2\x5a\x96\x34\x72\x1c\x0c\xb4\xda\xaf\x80\x77\x6f\xa9\x97\x4c\x28\x8e\xeb\xb7\x33\x52\x4c\x32\x6d\xc4\xdf\x51\x80\x72\xe2\x80\xf0\x62\x14\xdc\xae\x29\x79\x0a\x6c\x70\x83\x63\xcc\xb3\xa9\xb9\x6c\x00\xf4\xe0\xda\x5d\x66\x17\xd3\xd6\xe3\x1c\xfb\x00\xd2\x6f\x73\x00\x0f\x58\x01\x3d\xdf\xb5\x74\x10\xa8\x87\x9c\x35\xec\x00\x96\xba\x6b\x73\x03\x6e\x15\xa5\x49\x4f\x30\xad\xee\x74\x0e\xe0\x10\xf9\x1d\x59\xc5\x80\x66\x64\x15\x93\xe9\x39\xab\x62\x7d\x98\xbd\x87\xdf\x90\xe3\xed\x7d\x8d\xa5\xca\x85\x71\x55\x1e\xe6\x20\xd6\x4a\x95\x82\x7d\x74\x79\xa5\x27\xd0\x10\x8c\xdf\xef\xae\x98\x71\x86\x42\x76\x07\x10\xd7\xc6\xe2\x61\x4a\x81\xda\xc1\x0f\x83\xac\x09\xf0\x7b\x78\xa7\x6c\xc6\x2a\x65\x4e\xc4\xfb\xc2\x42\xe3\xc2\x41\xd9\x93\x29\xaa\x7f\xed\x22\xcc\x49\x9a\x90\x06\x20\x4d\x6d\xbd\x1b\x01\x46\xe1\xf6\x42\x4f\xbe\xa6\x7c\x62\xc1\x8c\x10\x15\x73\x68\x61\x84\x28\x24\x19\x4f\x40\x46\xfc\x1f\x4c\x64\x70\x3b\x61\x1b\x13\x73\xe5\xf1\xd8\x83\xbb\x43\x86\xcb\x31\x7e\xfb\x82\xf1\x9a\xa9\x60\xf5\x3d\xb8\x4b\xf2\xde\x95\x7c\xd0\x6c\x57\xf2\x89\xa6\xbf\x37\xa1\x70\x81\x1e\x26\x14\xae\x4c\x2a\x57\x76\xe0\x85\xc5\x4c\x46\x2c\xd5\x27\x59\x8b\x99\x8e\x79\xba\x07\xa7\xfb\xef\x75\x79\xd0\x56\x5d\x1c\xa6\xea\x64\xe6\xde\xc8\x5f\x98\x2a\xa0\xca\x3c\x2e\x54\x08\x5f\xbc\x1a\x86\x10\x7d\x5b\x8c\x49\x90\xba\xc6\xaf\x90\x9a\x8a\xbc\x8d\x02\x8b\xab\x80\xe9\x53\x46\x26\x01\x04\x67\x20\x41\xde\xc8\xdb\x94\x3f\x53\xa9\xfe\x60\x98\x32\x80\xe8\x13\xc7\x5d\x09\xd1\x41\x5f\x61\x58\xf3\xa6\xd2\x21\x75\x6f\x20\xa4\x81\xc0\x99\x17\x76\xda\x70\xd0\x60\x4f\x82\xea\x6b\xe5\x3f\x07\x4b\xf8\x62\x6e\xbe\x78\x5f\xe2\x1d\x23\xd1\x4d\x7d\xd1\x08\x98\x57\xac\x24\x64\x13\x07\x4d\x6a\x49\x55\x2c\xc2\xd8\x3f\x0f\x01\xab\xc1\x38\x7a\x37\xe0\x5f\xb9\xe0\xfa\x34\x0c\x84\xee\x7b\x45\x14\x90\x8a\x7a\x5b\x08\x17\x64\xe9\xae\x10\x7c\xd2\xc4\x1e\xd0\xf2\x78\x82\x22\xc8\x56\x51\x7e\xc6\x12\x19\x6e\x93\x7e\xec\x58\x67\x00\xb5\xdb\x34\x43\x32\x5a\xbb\x7f\xab\x28\x6b\xeb\xcf\x64\xd5\x64\x93\x2a\x21\xb6\x97\x16\x2c\x10\x00\x36\xba\x3d\xac\xdd\x00\x23\xde\x57\x07\x08\xb3\x4b\x53\x1b\x8d\xf1\x50\x7e\x41\xcc\xe5\xd8\x02\x12\x4f\x1e\xf8\x84\x02\x86\x0a\xa3\xb2\x86\x88\x1b\xbf\x32\xd9\xba\xe2\xd4\x6e\x59\xbb\x5d\x3a\x90\x6e\x0f\xe9\x45\xc3\xe8\xe2\xc4\xe0\xe5\x24\xce\xb5\x74\x1d\x30\x09\x33\xda\xc4\x10\xf4\x22\x01\xab\x1a\xe5\x2d\x30\x44\x89\xa1\x43\x7e\x0d\xe0\x84\xf2\x3d\x2f\x17\x25\xaf\xb3\xb2\xd0\x03\xe1\xc0\x25\x74\xb8\x2f\xbf\xae\x4b\x8a\xb7\xe0\x2d\x32\x35\x5c\x0b\x5f\xf0\xda\x79\xdf\x5a\xd3\x80\x21\x5b\xfb\xea\x5d\xc0\xd5\xb2\x06\x88\xa1\x93\xb0\x3a\x2e\x9a\x22\x31\x9b\x17\x01\xf9\x97\x2b\x15\xc5\x1c\xbf\x74\xa5\xa2\x68\xd7\xa5\x73\x19\xf2\xb2\x35\xc7\x04\xc9\xfe\x45\xe6\x98\x60\xe3\x4b\x3a\xea\xb0\x7c\xff\xab\xd5\x1b\x28\xad\xd5\x1b\x21\x13\x2e\x9b\xb8\x66\xbc\xc8\x8c\xbb\x35\xdc\x9a\x12\x60\x32\xe3\x11\x13\x7d\x79\x8e\xd5\x6f\x13\x6f\x66\x02\x20\xd4\xa5\xff\xf0\x44\x0b\x3e\xbd\x3b\xd3\x09\x4e\xef\xdc\x08\xba\x9a\xe5\x74\x30\x44\x1b\x8b\x90\x1d\x1f\xa8\x9f\x00\x28\x46\xdc\x82\xec\x02\x24\x55\xb7\x63\x07\xd0\x79\xee\x5c\xcd\x19\x02\xcc\xf8\x2c\x1e\x42\xc1\x26\x3d\x96\xf9\xfa\x92\xcd\x40\x02\x74\xf4\xb5\x5d\x09\x30\xb7\x6e\x0e\x01\xa2\x2e\xd4\x8c\xb1\x08\xae\x45\xd9\xe1\xfe\xae\x84\xe8\x2b\x36\x1a\xa0\x2f\xc8\x80\x7f\x90\x6d\x96\x92\x00\xf9\x0d\x34\xe4\x03\x39\xc3\x84\x0f\xc8\xae\x6c\x20\xf1\xcd\x9d\x1b\x26\x21\xe6\xce\x4d\x2c\x21\xe6\xce\x4d\x22\x21\xfa\xce\xcd\x8e\x6a\x1b\xb9\x73\xb3\x23\xab\xae\xf5\x7d\x9a\x3d\x89\x64\x6e\xe1\xa8\xe6\x1a\xe3\x18\x00\xe8\x25\x1c\xa8\xdd\xba\x96\x83\xb5\xd7\x99\x9a\x8e\xc3\x3d\x05\x28\x88\xd7\x05\x7c\x47\xaf\xe1\x40\xd1\xf4\x1a\x8e\xe0\xaf\x0f\x04\x00\xfe\x43\x9c\xde\xcb\x81\xe6\xa9\x7b\x39\x4b\x95\x10\xd9\x17\x98\x30\xf7\x72\x12\x09\x20\xf7\x72\x98\x06\xa9\x7b\x39\x70\x63\xe4\x03\x75\xcd\x00\x5f\x7a\x6e\x41\x80\xb9\xa8\x6b\x06\xe8\xd3\xdc\x82\xec\x23\xc4\xdc\xcb\x01\x6e\xc2\x7b\x39\x4b\xf8\x5e\xdf\x93\x83\x4e\x99\x6b\x72\x90\x24\xf7\x72\xa0\xa4\x34\xa7\x97\x6e\xa0\x2c\x7a\x55\x27\x55\x00\x6e\x43\x8c\x8f\x22\x10\x8a\xc5\x3a\xce\x5c\x22\xd3\xe4\x52\xf3\x58\x82\xe8\xa5\x66\x85\xa6\x07\x4d\x94\xfb\x81\xd9\xd9\x6a\x09\xd8\x05\xd3\x0b\x97\x01\x8b\xc1\xea\xf2\xe1\xf4\x27\x92\xe8\x3c\xd0\x18\x93\x9c\x76\xbc\x31\x92\xfb\x69\xd1\xca\xc7\x38\x8a\xdc\xf2\x63\x87\x36\x58\x7e\xec\xd0\x31\x57\xf0\x02\x6f\x99\x4b\xec\xd0\x13\xe2\xa4\x0e\x72\x88\x38\xa9\xc3\xce\x9b\x13\x27\x75\x50\x31\xb9\xe5\xa4\x2e\xca\xf8\x20\x1d\xd9\x7a\xc3\x18\xbf\x50\x49\x59\x40\xa9\x2f\x6b\x82\xec\x03\xc7\xda\x8e\xab\x4f\x87\x3a\xd3\xb9\xfb\x04\xd3\xb8\x65\x94\x1e\x58\xe8\x2d\x68\xec\x06\x70\x35\xb8\xae\xd3\x2f\x44\x3d\x36\x15\xd0\xfb\x4f\x43\xf5\xa1\x73\x01\x4a\xb7\xb5\xf3\x06\xd4\xbe\xc9\x6d\x5f\x81\x82\xad\xae\xce\x6d\xdd\x4a\xd9\x6d\xe7\xaa\x66\xea\x5e\xbc\x68\x8d\x34\xb9\x4a\x44\x7c\x2c\x91\xfe\x24\x4f\xfb\x54\xe2\x48\x8a\x9c\xf6\x45\xa8\x1d\x9a\xe5\xde\x4f\x4a\x54\x66\xc7\xc5\xa6\x43\x95\xd7\xba\xb7\x74\xa8\xfb\xec\xde\x4e\xda\x23\x19\x72\x76\xc4\x03\x02\xb3\x49\xa7\xfb\xda\xbe\xa0\x94\xe8\x8f\x3a\x0e\x08\xdd\x3c\xa5\x0f\x0d\xdd\x0c\xeb\x8e\x92\x1e\x8a\x8e\x4b\x4a\x10\x01\x43\x66\xb6\x9a\x99\x98\xbc\xd6\xf8\xee\xb8\x79\x4a\x5a\x31\x95\xd1\xfa\x64\x68\xe7\xd8\x43\xa8\xc2\x47\xe2\xbd\x1b\x9e\x55\xad\x08\x79\x20\x06\xe9\xb5\x10\x18\xe0\x9c\x38\x95\xc3\xa0\xe6\xda\x85\x1c\xe4\x4b\xeb\xa6\x46\x5f\x43\x2d\x48\x41\x9e\x1a\x81\xb5\x85\x5e\xa3\x48\x11\x60\xae\x51\x20\x06\xb9\x46\x01\x92\x9e\x5e\x05\xd8\x43\x80\xa3\x0c\x02\x09\x88\x32\x88\x05\xd3\x4b\x00\x58\xb2\x65\x25\x81\xf1\x13\xbb\x32\x2b\xc4\xc4\x21\x9c\xe6\x73\xac\x32\x90\x3f\xb5\xb5\x11\xae\xf4\xf1\x85\x7d\x92\x07\xfa\x08\x75\xd5\x87\xe9\xdf\xbe\xf4\x07\xec\x69\xb9\xda\xc3\x98\xb4\x94\x51\x90\x0f\xc4\xd5\x1e\xbf\xd3\xeb\x16\x48\x49\x3b\xc9\xd1\x71\xfe\x02\x7f\x9a\x45\xf0\x50\x01\xb8\x05\xb1\x5c\xd8\x61\x74\xad\xb9\x02\xad\x22\xb1\x7c\x0f\x65\x9a\x51\xce\xe7\x34\xb8\xef\x81\x04\x18\xff\xa3\x43\xf0\xa1\xfa\xd0\xe4\xec\x84\xe5\xf1\xad\x7a\x5c\xe1\x10\xec\xdb\xbc\xc9\xa9\x8b\x3a\x7c\x7d\xa3\x7a\x2b\xbe\xfb\x68\xa9\xbb\xa2\x3d\x95\x05\x11\x14\xa9\xc6\xa4\xa3\x80\x62\x1c\x4c\xa1\x41\x1f\xa9\x86\x02\x96\xce\xca\x82\xf4\x01\x47\x7d\x91\x40\xbe\xec\x21\x38\xe8\xd3\x83\x48\x58\x42\xe9\x39\x24\x24\xf5\xe6\x70\x07\x8a\xa2\xca\x0e\x43\x7c\x02\x99\x00\x8e\x89\xe2\xb0\x8b\x35\x12\x00\xd6\x41\xf6\xa0\xd8\x2b\xb3\x07\xdd\xc3\x34\xd9\x83\x1e\x02\xc4\x66\xc7\x21\xc0\xc8\x46\x0f\x6b\xd6\xca\x55\x1f\xf2\xb5\x72\x05\xc9\xb4\xac\x95\xa1\x26\x56\x00\xc5\x0e\xbb\x32\xad\x3a\x0f\x57\x0a\x2a\xcb\x17\x76\x57\x42\xb4\x0a\x7f\x00\x00\xa2\xb3\x1f\x28\x0c\xfb\xc2\x4c\x25\x35\xa5\x1b\xf0\xfa\x96\x4f\xb3\x1d\xc1\xcf\xea\xda\x1c\xb1\x40\x37\x99\x15\xd9\xbe\xbf\x27\x61\x85\x0d\xb8\x51\xcb\x2c\x68\xd8\x1f\xdd\x1d\x27\x20\x39\x40\x30\xea\x55\xad\x20\x8a\x95\x58\xdc\x10\xb0\x07\x4a\xd5\xc7\x97\xf4\xf5\x2b\x68\xd3\x8c\xbe\x7f\x75\x08\x38\x06\xe3\x00\x31\x74\x3e\x30\xe5\xac\xe4\x75\x67\x48\x76\xc8\xe9\xbc\xae\xed\x9e\x5e\x0f\x15\xac\xcb\x78\x0a\xc5\x74\x2b\x3e\x90\x65\xc7\x76\x87\x9b\x88\xd5\x4c\xbe\xf3\x23\x18\xf0\x63\x36\xd5\x11\x1f\x41\xbf\xa9\x08\x20\xd1\x80\x89\x82\x0c\x14\xe4\xca\x86\x98\xd3\x37\x4c\x12\x87\xec\x18\x21\xfa\x48\x7d\x28\xd3\x97\x0e\x40\x87\xa1\x66\x32\xad\x1f\xc8\xeb\x21\x40\xc7\x99\x4b\x65\x5a\x5f\xb0\x9c\x20\x40\xbb\x5a\xc3\xf1\x47\x95\xcd\xe9\x92\xb0\x83\x20\x1a\x11\x0e\x9a\xee\x86\x7f\x80\xb8\xab\xf8\x1c\x97\x62\x35\x18\x59\x01\xee\x64\xca\x79\x5c\xcd\xd4\x1c\x86\xcd\x6d\x35\xb7\x23\x29\x43\xcd\xee\x80\xce\x33\x55\xfe\x50\x02\x74\x10\x87\x18\x93\xda\x04\x96\xc8\xb4\x76\xe4\x4a\xf4\xcd\x9d\x8f\xef\x5e\x9c\x19\x0e\x04\xc4\x72\x52\x1b\x1e\x44\x48\x4e\xac\xfd\x13\x09\x51\x72\x7b\x07\xd3\xde\xc8\xfb\x4e\x94\xd7\x3a\x48\x82\xc6\xb4\x56\x60\xf8\x6a\x11\x6b\xbb\xe2\x1e\x0a\x5c\x80\x90\x88\x6e\x12\x68\xd9\xf7\xab\x4b\xf3\xb4\x20\xcc\x04\x00\xe8\xa3\x8b\xa1\xee\x1b\x79\x56\x77\x00\x0b\x31\x00\x34\xe2\x8e\x21\xc2\xa5\x79\x5e\x1c\x9a\x7b\x49\xdc\x2a\x26\x0a\xa0\x46\x13\xe7\xc0\xa5\xed\x41\x31\x21\x30\xcd\x98\x1a\x53\xb7\xa2\xa7\x00\xba\xb0\x81\x82\x50\x07\x2f\x02\x33\x85\x21\x26\x0d\xe7\x0b\x2b\xd2\x0a\x48\x47\xc4\x28\x14\x1b\x5d\x3e\x69\x0e\x9c\xaa\xad\x87\x7d\x92\xe9\xf8\xa1\xb5\x72\xac\x0f\x07\x3a\xfb\x53\x41\x1a\xb1\xa3\xba\xa1\xb4\x01\x64\xd7\xcb\x86\xf6\xa1\xba\x6c\xec\x6c\xd7\xde\xf3\xb1\x65\xa8\x83\x49\xdf\xd2\x8d\x60\xe6\xb5\xc5\x7e\x7b\xf6\x54\xb5\x6e\x11\xbe\x22\xf8\x51\x3f\xc0\x8c\x69\xfa\x20\xb3\x4a\x4f\x14\x00\xf8\xb2\xe6\x31\x78\x72\xd8\xef\x8a\xd3\x2c\x73\x5a\x93\x4a\x30\x6e\x85\xf0\xde\x1c\x61\x3a\xe8\xa2\x4e\xc2\x8e\xa3\x6a\xc6\x46\x26\x82\x23\x88\xe5\xeb\x83\x69\xed\x38\xb3\x27\xd3\xe6\x13\x94\xc5\xcd\x78\xde\xe4\x1a\xd4\x47\x90\xd6\x18\xc0\x56\x20\x00\xba\x9c\x18\x01\x44\x0e\x8e\x65\x53\xa9\x1c\x3c\x44\x10\xf5\x28\xc2\x0e\x18\x88\xea\x83\xe5\xb0\xb3\x47\x60\x97\xb4\x2b\x1d\x8e\x89\x06\xd7\xbc\xd0\xa7\x9a\x87\xc0\x4b\xa7\x17\xe6\x0c\x07\x54\x64\x01\xd1\x2f\xbd\xa5\xbb\x0a\xa2\xef\x9e\x21\x7d\x12\xe7\xa4\xe4\x40\x42\x95\x72\x34\x96\x69\xe7\xa4\x04\x96\x42\xdb\x67\x12\x50\xbb\x1d\x26\x49\x46\xfb\xa4\x84\x16\x65\x3b\x49\xca\xaa\x89\x73\x95\x84\x38\x27\x25\xb1\x02\x93\x93\x92\x3d\x05\x73\xb5\xc1\x26\x69\xe9\x7e\x4d\x32\x3b\x9b\xc5\x96\x79\xa9\x52\xf6\xa2\x01\x5c\x9a\xf9\x68\x27\xab\x46\x6d\xd2\xf6\x70\xb5\x6e\x16\x7d\xe0\xeb\x31\x56\xb1\x90\x51\xb8\x07\x98\x1a\x62\x0a\x09\xae\x7d\xc2\x40\x3a\x99\x47\xe8\xb0\x5c\xf2\x26\x2c\x6c\x69\x05\x84\x8c\x22\x8e\x0e\x71\x23\xc3\xb4\x66\xdf\x7d\x99\x26\xd3\x60\x07\xab\xb1\x3d\x4c\x09\xcc\x62\x3a\xf9\xfd\x4c\x1f\xb9\xef\x27\x87\x0a\x64\x5a\x21\xb1\xe8\x25\x5e\xa4\xd9\x82\x4e\x36\xd9\x79\x33\xd9\x12\x09\xd0\xad\x95\x1f\x91\xc9\x96\xe0\x08\x2f\xda\x6d\x25\x33\xab\xaf\x71\xcc\xc4\xd8\x27\xb0\x4b\x87\x3a\xf6\x14\x1a\x53\xe0\xa5\xd3\x36\x32\x85\x24\xa9\x49\xb7\x77\x14\x44\x4f\x21\xa8\xc0\xf2\x99\x52\x10\x2d\xbc\x81\x7c\xd4\x67\xea\x50\x61\xd8\xb7\xe6\xab\xeb\x82\x28\xf4\xc0\x54\xdf\xa4\xff\xd0\x0d\x3c\x01\x78\x16\x43\x43\xfe\xa8\xbd\xd0\xab\x63\x3e\xd5\x0e\x05\x20\xe1\xcf\x62\xe5\x33\x07\x77\x80\x6b\x9d\x84\xf1\xaf\xb5\xc9\x00\xdd\x0f\xce\xac\x8d\x1e\x60\x58\x90\x5d\xc0\x21\xbb\x33\x38\x4e\xaa\x2d\xc8\x10\x70\xb4\x2a\x85\x08\x5a\x8f\x82\x64\x6a\x1e\xed\x12\x54\xaf\x59\xae\x8f\x60\x87\x70\x34\x7c\xe6\x6e\x3f\xc4\x30\xd6\xee\xf6\x43\x8c\x77\x3d\x63\x9c\xc9\x87\x41\x06\xe0\x36\x02\x90\x49\xa9\x9f\xe8\x02\xe0\xd9\x0a\xa0\x09\xb6\x78\x80\x9f\x9a\x68\x8b\x1a\x50\xdd\x2a\x9f\xa8\xb4\xaf\x60\x57\x36\x24\x4b\xbe\xda\xb7\x45\x0f\x14\xd8\x51\xe8\x5b\xf7\x0e\x77\x27\x3a\x38\x71\xeb\x52\xe1\x21\x16\x42\x9e\x2e\x41\xc8\x57\xe3\xca\x88\xf5\xb4\x6a\x79\xf9\xee\xc3\x5b\xe4\x10\x06\x08\xf2\x4d\xa4\x1b\x30\x14\xd5\xee\x7b\x76\x54\xb8\x0e\x35\xc0\x72\x07\x1f\x2a\x68\xcb\x51\x7c\x57\xe5\x58\x5e\xe2\xd0\xae\x6c\xce\x2a\xad\x30\xc7\x38\x5c\x00\x93\x58\xb0\x1d\xd1\x16\x94\x1b\x10\x1f\x90\xd4\x01\x2e\x11\xc1\x0e\xe7\x5a\x97\x4c\x1d\x68\xc0\x4e\xb1\x2e\x17\x63\xc5\x4f\x43\xd8\xbc\xd6\xe5\x82\x5c\xeb\xee\x23\x44\xd5\x09\x03\xdf\x52\xce\xc7\x88\xe4\x28\xe7\xbb\x12\xaa\x1d\x3f\x62\xb0\x06\xd6\x65\xa5\x5b\x00\x23\x62\x1d\x9a\x03\x0f\xf2\x58\xd1\x02\xa3\xf2\x9f\x7d\x78\x76\x72\x4a\x01\xb5\x65\x32\xdd\x05\xd3\x90\x82\x19\x53\x33\xbe\x07\xd5\xf6\xb6\xc5\xc8\x07\x9d\xce\xb6\xe3\x1d\x92\xa3\x8d\x95\x09\x01\x12\x07\x5c\xb4\x51\x75\xfb\xdf\xaa\x26\xe9\xc9\xba\xcb\x64\x29\xcc\x29\x95\xec\xe4\x62\x30\xcd\x9d\xf1\x6c\x41\xde\x7a\x96\xb3\x5c\x00\x0d\x9e\xac\xb8\xd2\xfb\xa7\x14\x01\xb5\x09\x76\x31\xc4\xcf\x16\xec\x9b\x3e\xa5\x19\x82\x03\xf8\x59\x4b\xe9\x05\x32\xb5\x94\x5e\x51\xc7\x19\xb1\xe0\xec\x21\x96\x16\x46\x20\x20\x89\xe5\x01\x56\xf8\x9a\x98\x1e\xc0\x60\x76\x46\xa3\x63\xec\x61\x19\x14\x02\x6c\x7b\x9d\xdd\xe8\x2b\x78\x40\x96\xeb\x72\xc6\xe2\xb4\x75\xdb\x92\x99\xbc\xf6\xcd\x4a\xc1\xee\x9f\x88\x47\xac\xa0\x65\x43\x3c\x62\x31\x6d\xd6\x90\x3e\xe0\x9b\xb4\xa0\x42\x43\x96\x14\x95\x5f\x92\x78\xe5\x82\x26\x9f\xc6\x24\xa2\xa8\x68\x51\x43\x00\x60\x82\xfb\x44\x5f\x9a\x80\x0e\x35\x16\x44\x0c\xd6\x27\xe3\x8b\x2b\xc8\xd4\x18\x5f\xdc\x31\xe4\x6a\xb2\x0f\x21\x57\x53\x1d\x92\xf4\x79\x53\xc1\x68\x9f\xa8\xa7\x2d\x98\x92\x1b\x0b\xd2\x07\x08\x31\x7e\x42\xb3\xad\xd3\x3a\x68\xb7\xbb\x70\x1c\x00\x9a\xb3\x70\x08\x1e\xfa\x44\x3c\x65\x05\x4d\x1a\xe2\x29\x0b\x69\x72\x82\x07\x2d\x26\xef\x93\xc2\xac\x6c\xc8\x75\x61\x50\xc9\x1a\x1a\x54\x0a\x7a\x60\xbd\x8b\x99\x68\x88\x89\x43\x23\x61\xe4\x81\x3a\x28\x99\xc6\x80\x12\x1d\xf8\x44\x1c\x62\x41\xaf\x6c\x28\x00\x88\x2f\x9d\x12\xc1\x9f\xe4\x53\x91\x2a\x27\xc4\x2f\x3a\x49\x1d\x10\x27\x14\x4a\x3c\x10\x77\x15\xbc\xc3\x05\x11\x46\x9c\xec\x5f\x41\x02\x01\x80\xc4\xb1\x80\x63\xf0\x4f\x24\xfe\x31\x58\x86\x1a\x0a\x80\xcf\x5a\xf2\x17\x08\xd1\x92\xbf\x62\xae\x49\xbb\x1b\x79\xb1\x11\x8a\x5c\xc4\xae\x35\xae\xc3\x40\xf7\xc9\xc2\x4a\x09\x96\x6b\x49\x04\x1e\x14\x4a\xb6\xf3\x10\x24\x50\xa4\xf5\xd2\xa4\x04\xbb\xd8\x29\x82\x3b\x8e\x96\x81\x3d\x16\xed\x87\x1d\x91\x91\x16\x1d\xcf\x3a\x22\x47\x2d\x5c\xd2\x2e\x16\x1d\xc1\x95\xf6\x54\x4e\xdb\x7c\xb9\x0f\xa5\x18\xff\x22\x6c\xa1\x4e\xa7\x03\x99\x3f\xa3\x80\x4f\xd6\xc6\x3d\xde\x95\x38\x06\x24\x8b\x71\x0f\x1d\x35\x54\xad\xb5\xf8\xa5\x1c\x2b\x7d\x9e\x09\x53\xd2\x7a\xa7\x31\xd5\x10\x33\x35\x24\x8c\x4c\x0d\x20\x80\x39\x99\xeb\x23\x55\x29\x00\xa8\x49\x4e\x60\x60\x22\x7f\x6a\x45\x55\x86\xb9\xd9\x5a\x2c\x60\x5e\xd1\xa7\x19\x41\x1a\xd3\xf8\xd4\x70\xe0\xd2\x58\x10\x90\x14\xe4\xc8\x67\x57\xa6\xf5\x09\x8f\x58\x8d\x1b\x22\xb3\xa1\xf7\x9f\xb4\x47\x31\xf0\xbd\xf6\x28\x86\x94\xfd\x92\xa3\x18\xc0\xab\xb8\x98\x72\x7d\x92\x96\x00\x84\x77\x58\x57\xae\x62\x4e\xa3\x3a\x43\x07\xae\x62\x5e\x94\x42\x89\x54\x17\x78\x7a\x12\xd3\x31\xc1\x08\x88\x06\xec\x49\x40\xcb\x0f\xee\x8a\x2c\x36\xf0\x15\x59\x6c\x64\x29\xc6\x4d\x01\x34\xaf\xab\x98\x5b\x86\xf0\x81\x84\xb5\x0c\x18\xda\x08\x49\x73\x8d\x25\xc3\xce\x76\xb7\x6e\x9d\xb9\x66\x0f\x47\xb3\xa9\x8e\x9f\xca\x16\x76\x5c\x67\x1a\x0f\xec\x2c\x7a\x6b\x09\x36\xec\x57\x5a\x22\xc5\xe0\xd1\xf8\xd9\x68\xba\xe0\x22\x26\xf2\xf5\xdb\xe2\x82\x4d\x3e\x1b\x3f\x6a\x28\xdb\xf8\x51\x43\x92\x5e\x32\x02\x00\xbd\x63\x04\x15\x50\x0c\x28\x90\x62\x8c\x15\x86\x32\xae\x40\x24\xbd\x2b\xc6\x74\xb3\x06\xe0\x76\x66\xde\x6f\x07\xe5\xf9\xb3\x39\xcf\xec\x63\xae\xd1\x19\x63\x00\x98\x57\x44\x06\x70\x10\x7d\xc5\xe4\x9b\x1a\xf7\xf0\x39\x7d\x60\x03\x6b\x04\x4e\x95\x99\x35\xcd\xea\xb8\x32\x3a\x24\x60\x19\xc6\xe4\x9e\x80\x3e\xb2\x45\xcc\x63\x7d\x36\xbf\xbf\x7b\x40\x32\xad\xfd\x46\x0f\x33\xda\x81\x59\x44\x27\x3e\xbb\x4a\x81\xa0\xde\x95\xab\x14\xc0\xa0\x92\x40\x10\xc8\x01\xf4\x62\xa1\xb9\x1d\x78\x45\xef\xf0\x99\x8b\x78\x9f\x5b\xeb\x1a\x4c\x9a\xd6\xba\x06\x93\xda\xf5\x51\xbd\xa2\xd1\xe5\x80\x30\x2d\xc1\x05\x43\xd4\x12\x5c\x30\xac\xb6\xf5\xd2\x30\xbc\x6d\xc4\xa4\x70\x6a\x80\xb1\xe1\xac\x3d\xaf\x3e\x5b\xfc\x09\x9c\xf1\x2d\x9b\x7e\x8b\xa7\x4a\x2a\x09\xd0\x2f\xe4\x50\x16\x3c\x02\xaf\x29\x40\xc8\x87\x6b\x96\x9a\x69\x02\x27\xbb\xe4\xc9\xec\x01\xb8\x93\xff\x42\x00\x60\xf5\x01\x0c\xcd\x94\x87\x00\xc9\xf4\x4d\x02\x7c\xbd\xf3\x17\x77\x84\x45\x73\xae\xdd\x11\x16\x4d\xfa\xa5\x35\x44\x82\xa9\xaf\x5b\x43\x24\x4a\xbd\xb6\xea\xb8\xe6\x94\xd9\xae\x39\x53\xf1\xff\x25\xe4\x97\xd6\x70\x09\x96\xb8\x6e\x0d\x97\x90\xdf\x37\xe6\xe4\x06\x24\xe2\x8d\x79\xc5\x73\x17\xde\x31\xb8\x31\x27\x36\xa0\x68\xdd\xd0\x37\x82\x05\xb7\xfc\xea\xf6\x58\x70\xc1\x8d\xdb\x63\x41\xf3\x9b\x19\x79\xe4\x77\x1f\x00\xcf\x0c\x40\x10\xea\x57\x25\xf8\x61\x77\x72\xa3\xdf\x25\x85\x54\x4e\xbe\x86\xe2\x72\xf2\xb5\xa0\xcb\x8d\x8e\xe7\x85\x21\x30\x6f\x48\x18\x1c\x68\x94\xb9\x22\x17\x03\x2f\xfd\xda\x1a\x02\xe8\x71\x6b\x08\x0e\x11\x6a\xf6\x8c\xf0\xfc\xc6\x4d\x49\x76\x88\x70\x41\xe5\x86\xbe\x62\xbc\x07\x00\xd2\x44\x51\xca\xaf\xad\xa1\x01\x9a\xb6\x86\x26\x05\xa8\x39\x2d\x8b\xe1\x80\xe3\xa6\xa1\x6d\xd8\x01\x08\x19\x0d\x28\xea\xca\x96\xa3\x37\xd7\x2e\x17\xff\x46\xb6\x75\xa2\x9a\x5b\xb2\xad\x13\xe9\xdf\x9e\x99\xfd\xd2\x04\xf3\xf5\x86\x49\xa4\x7f\xa3\x53\x49\xb4\xea\x96\x02\xf6\x01\x43\x17\x30\x86\x7c\xfd\x3d\x24\xf1\x71\x85\x1b\xd0\xc9\x7e\x73\x99\x47\x8c\xdb\xad\xcb\x3c\xa2\x96\xdf\xcc\xeb\x40\x70\x8d\xf6\xd6\x3c\x0f\x04\x7e\xa9\xbf\xb5\x62\xd8\x88\xce\xde\xb6\xc6\x52\xb0\xd9\x6f\xad\x51\x10\xb4\xbc\x6d\x8d\x82\x60\xbb\xdf\xc8\xf6\x51\xa4\x6f\xc9\xfe\x11\xd3\x4a\x67\x02\xe2\xc8\x94\x20\x85\x60\xc9\xdf\xa9\xd3\x0b\x1c\xca\x7c\xb3\x20\xa2\x35\xbf\x53\xc3\x26\x9c\x35\x7c\xb3\x20\x0c\x70\xf4\x92\xbd\x0f\x08\x7a\xc9\x16\xc9\xdf\x4d\x14\x5e\x30\x73\x7f\x23\x69\x41\xd0\x6f\x8c\xbc\xa9\x00\xab\xed\xef\x8c\x97\xbf\x64\x69\x3d\x6b\xc5\x0e\xfb\x9d\x58\x22\xf7\xe0\x5b\x63\x88\x84\xb4\x3b\x38\xd0\x00\xed\x73\x8a\xa5\x1b\x43\x06\xac\xb7\xdf\x8c\x1d\x03\xc6\xd2\x7a\xef\xbb\x0f\x5c\xf8\xad\x35\x50\xd0\x18\xe3\x11\x06\x87\xfd\xbf\xb7\x06\x4e\x30\xd1\xb7\xd6\xc0\x89\xa1\xf8\x76\xfd\xa7\xea\x17\x54\x70\x5d\xe8\x74\xe2\x2d\xff\x11\x2c\xc3\x49\x53\xc0\x61\xac\xcf\x82\x3b\xb6\xcd\x6e\x16\x25\xaf\xab\xe8\xe7\x8f\xef\xde\x6e\x2f\x62\x5e\x31\xff\x1f\x77\x5e\x0c\xd1\x74\x36\xbc\xd0\x53\x51\xf9\xfe\x41\x1f\xbc\xd3\xc1\x47\xc9\x8d\x01\xa7\xec\xb0\x0e\x8b\xe0\xce\x6b\x2a\xb6\x56\xd5\x3c\x4b\x6a\xef\xe8\x2a\xe6\x6b\x3c\xaa\x67\x59\xb5\xb1\x21\xfe\x6e\x7f\xf9\x92\xcd\x45\xed\x27\x6c\x12\x37\x79\x7d\x7f\x4f\x9b\xc6\x59\xdd\xf0\x62\x8d\x6d\x6c\xb0\xed\x2f\x5f\x58\xf5\xa6\x4c\x9b\x9c\x1d\xb3\xd1\x5d\x8a\xe8\x23\xb6\x5c\x1e\xbd\x1b\xff\xc9\x92\x7a\x3b\x65\x93\xac\x60\xef\x79\xb9\x60\xbc\xbe\xf5\xeb\xd0\x33\x9f\x78\xe1\xdd\x55\x9c\x37\x6c\xb4\xde\x5b\x06\xd0\x88\x32\x4a\x7c\xee\x17\xfe\xfe\x20\x08\xb6\x65\x69\x41\x98\x45\xb9\x5f\x06\x47\xf5\x36\x2b\x92\x32\x65\xbf\xbe\x79\x1d\xcd\xfc\x32\xcc\xf0\x9b\x58\x7d\xd3\xa7\xdf\x54\x51\xee\xc7\xc1\x91\x6a\xf7\x5a\x42\x5a\x2e\x9b\xf6\x95\xdd\x56\x3e\x0b\xb6\xab\x92\xd7\x7e\xb0\xcd\x59\xda\x24\xcc\xf7\x75\x57\x81\x4e\xf2\x93\xfa\x9c\x9d\x17\x17\x17\x91\xb7\xe1\x6d\x16\x9b\xde\x91\x17\xd6\xcb\x20\xbc\x5b\x06\x4b\x5d\x43\x2e\x6a\x10\x0d\xaa\xa3\xf3\x8b\xb0\x88\xce\x2f\x8e\xba\xeb\x9b\x94\xfc\x34\x4e\x66\xa4\x26\xd3\xb4\x7e\x14\x45\x6c\x3b\x67\xc5\xb4\x9e\x1d\xd7\xdb\x8b\xa6\x9a\xf9\x62\x10\x37\x59\x30\x2a\x30\xc9\x82\x65\x10\x84\xc5\x76\x53\x54\xb3\x6c\x52\xfb\xde\xb9\xb7\x59\x6f\xff\x59\x66\x85\xef\x79\xc1\xa6\x77\xe1\x05\x61\xc1\xae\xd7\x3e\xb0\xe9\xe9\xcd\xc2\x2f\x64\xd6\xbd\x17\x84\xde\xd4\x0b\x96\x8a\x8c\x2f\xcf\x80\x8e\x71\x58\x21\x1d\x9b\xe8\xbb\xf3\xff\xfb\x47\x6f\xeb\x8f\x9b\xfd\x17\x17\xdf\x4d\xc3\x45\xf4\xdd\xf9\x1f\xcd\xc9\x41\xaf\xb7\xf5\x47\x73\xf2\xe3\x8b\x17\x17\x22\xf9\x1c\x93\x2f\x5e\x08\x1c\x43\xde\x89\xe9\x83\xb7\xf1\x6f\x37\xde\x26\xdb\x4e\x66\x31\x7f\x5e\xa6\xec\x59\xed\xf7\x82\xed\xba\xfc\x58\x8b\x0d\xa9\xdf\xdf\x13\x09\xd8\x94\x3f\x8f\x2b\xe6\x07\x82\x9a\x86\x8a\xa9\x60\x50\xbb\x28\xbf\xdf\x1b\xec\xfc\x87\xef\x94\xb8\xb5\xbb\x3b\x38\xdc\x0b\xec\x8a\xfa\xc1\xd6\xee\xde\x70\xd0\xdb\xdc\xdb\xdd\x1d\xee\x3d\xbd\xd6\x19\xad\x75\x4d\x8f\x8b\x19\xff\x62\x1b\xae\xee\x25\xcc\xaf\x43\xc2\x21\x66\x32\x9c\xd7\x17\xcb\x20\xd0\x58\x8b\x30\x35\x89\x26\x9c\x04\xcb\xa5\xa0\xf1\x58\x73\x72\x95\xc4\x0b\x16\x75\x4d\x2b\xfd\xd9\x38\x9c\x3c\x58\x60\x6b\x4e\x1b\x99\x51\xc9\x29\x5d\xf8\x7b\xbb\x41\x58\x46\x85\xdf\xdf\xd9\x0f\xb6\x7f\xe1\x59\x1d\x8f\x73\x16\x66\x00\x39\x08\xb6\x91\x3c\x27\x4c\x30\x04\x0f\xe3\xa8\xf0\x77\x06\xc1\xf6\x8f\xcd\x64\xc2\xb8\x19\xdd\x0a\xc9\x23\xca\x2c\x22\x14\x10\x20\x90\x78\x24\x18\x8d\x43\x6e\x18\xcb\x9c\x14\x0b\x83\xac\xec\xa8\xdc\x4e\xe2\x3c\xf7\x45\x56\x78\x87\x59\x58\x67\x35\x5a\xef\x2f\x83\x10\xbe\x29\x8b\x84\xf9\xde\x24\x2b\xb2\x6a\xe6\x11\xfa\x06\x77\xc5\x36\x2b\x52\x3f\x86\xbf\x81\x60\xfc\x65\xe1\xef\xf4\x03\xbf\x0a\xcb\x20\xac\xb6\x17\xbc\xac\xcb\xfa\x76\xc1\xb6\xbf\x5c\xf3\xac\xa6\x04\x95\x24\x59\xcb\x8a\xaa\x8e\x8b\x84\x95\x93\xb5\x78\x63\xc3\x67\x76\x2b\xb7\xe1\x33\x9f\x05\xb2\x25\xb2\x5f\x1a\x1c\x16\x7e\x17\xa5\x2d\xe9\x59\x13\x29\x18\xad\xf7\xc2\x5a\x49\xa1\xe8\xaa\xcc\xd2\xb5\x9e\x1c\x8b\xd8\x2f\xfc\xfe\xde\x6e\x20\xc6\x03\x7f\xef\x05\x42\xb6\xe1\xef\xfd\x80\x08\xab\xf8\xc9\x62\x96\x0e\x91\x92\x3e\x9e\x02\x7a\x51\x14\x09\xe2\x94\x93\xb5\x37\xf1\xe2\x58\x0c\xc8\x9b\x78\x31\x92\xad\xc2\xf2\xfd\xca\x62\xc2\x6c\xe2\x17\x4d\x9e\x0b\x29\x74\x7f\xef\x17\x11\x0b\xb7\x84\x48\x7a\x21\x51\xf4\x84\xc2\x51\x2d\x82\xed\xac\x48\xd9\xcd\xbb\x89\xef\x9d\x17\x10\x03\x74\x4d\x90\xf5\xc2\x0b\x82\x40\xb5\x1f\xba\x5f\x1c\x65\x13\xdf\x34\x6c\x5d\x37\x8c\x05\xf5\x8c\x97\xd7\x6b\xa2\x71\x67\xb7\x0b\x76\xca\x79\xc9\x7d\x3c\x6a\x5f\x63\x37\x0b\xce\xaa\x4a\xf4\x6f\xde\x54\xf5\x1a\xcb\xea\x19\xe3\x6b\x63\xb6\x26\x1a\xb9\x56\xf2\xb5\x58\x4f\x56\x2f\x80\x2a\x9a\x02\x57\x9c\x94\xd4\x51\x43\xbf\xea\xed\x59\x2c\xa8\xa4\x1a\x56\x6f\x4f\x59\xed\x33\x31\x1b\x2b\xf1\x23\xe4\x44\x98\x73\x5f\x0f\x40\xe2\xb3\x30\xe6\xd3\x66\xce\x8a\xba\x0a\x1b\x60\xe5\x60\x3b\x29\x8b\xaa\xe6\x4d\x52\x97\x3c\x58\x4a\x4c\x6e\xf8\x31\x92\x32\x3f\x81\x08\x6a\x3e\x33\x39\xe1\x1d\xf9\x74\x24\x17\x40\x1e\x32\x88\xd4\x22\x26\xe7\x68\xbd\x1f\x5e\xcb\x89\x3a\x5a\xef\x85\x49\x59\x4c\xb2\x69\x23\xf3\x7a\xcb\x65\x10\xe6\x3e\x0f\xc5\x32\x20\xd6\x02\xba\xc2\x85\x64\xc9\xf2\x93\x88\xcc\x23\x9b\x34\x86\x2f\x3e\xb0\x49\xce\x92\xfa\xfe\x7e\x5d\xfe\x32\x1d\x93\x74\x5a\xef\x0b\xba\xb6\x72\xb7\xab\x59\x3c\xb7\x50\xba\xd8\xee\x3d\x2f\x6f\x6e\x15\x56\xef\xa8\xe6\xb7\x8a\xaa\x27\x71\x4d\x88\xe2\xf0\x55\xab\x36\x5f\xa0\x87\xe7\x17\x96\x6c\x58\x06\x41\x10\xae\xf7\x96\x49\x5c\x27\x33\x33\x63\xd6\xfb\xcb\xa5\x1f\x1c\xb7\xca\x18\xb9\x93\x18\xa7\xe5\xb9\x60\xa5\x8b\x23\x0e\x8b\xeb\x76\xbc\x58\xe4\xb7\x3e\x0f\x6b\xa5\x8f\x14\xec\xda\xd7\xdc\x3f\xce\x8a\x54\xa2\x08\x76\x09\xd4\x02\x5f\x6c\x6c\xe4\x7e\x19\x16\xa6\x43\x41\x58\x2e\x03\x89\x2a\x2a\x30\x1c\x64\x6b\x0c\x66\xd5\xf1\x73\xc5\x33\x15\xab\xdf\xab\x72\xde\x4d\xa8\xee\x45\xd6\x28\x21\x13\xa0\xb6\x2f\x5f\xa2\x3a\x64\x82\x17\xc2\x9a\x94\xdd\x18\x82\xf8\x4d\x77\xc9\xc7\x12\x3a\xb5\xa0\xa3\xce\x35\x49\x57\x76\x7f\xdf\xf9\x95\xaf\xd8\x51\x50\x6d\x61\x89\x14\x10\x4a\x61\x41\xa5\x5b\x1d\x16\x21\x0f\xcb\x30\x0b\x2b\xcc\x4f\x8e\x34\xd3\x32\xb2\x60\xd4\xc1\xfd\x3d\x4e\xb7\x22\x9e\xb3\xc8\x7b\x5e\x55\x1f\x6f\x8b\x3a\xbe\x01\x29\xe1\x85\xc9\x36\x67\x71\x55\x16\x51\x1d\x66\x1b\x1b\x7e\xb2\x3d\xc9\x72\x16\x65\x41\x58\x42\xaa\x2a\x1b\x9e\xb0\x48\xac\x14\x90\x5e\xe4\xcd\x34\x2b\xa2\x2a\x08\x3b\xc5\x44\xb1\xb1\xd1\x09\xe7\xf0\x71\x9e\x15\x2c\x2a\xc2\x64\x3b\x29\xf3\x66\x5e\x44\x3c\x08\x13\x41\xd0\x37\xac\xaa\xe2\x29\xf3\x83\x10\x1a\xb5\x9d\xc4\x8b\xba\xe1\xec\x63\x1d\x27\x5f\xcf\x78\x9c\xb0\x8d\x8d\x15\x19\xbe\x23\x78\x51\x2e\x0b\xd1\x4b\x64\xe2\x07\x36\x61\x9c\x15\x89\x12\x8c\x82\x1c\x6b\xb3\xb8\x2a\xfe\x51\xaf\x8d\x19\x2b\xd6\xb2\x22\xab\xb3\x38\xcf\x2a\x96\xae\x6d\xad\x55\x42\x6e\xfa\x81\x85\x21\xe8\xc9\x52\x4f\x73\x2b\x5b\xfa\x49\x10\xc6\x41\x98\x2c\x85\x80\xf7\xeb\x28\x0e\x56\x4a\x2e\x8b\xa7\x6b\x32\x63\x89\x14\x8b\xea\xb0\x26\xec\x58\xc0\xd4\xa9\xa2\xd8\x60\xff\xff\xd9\x7b\x13\x2e\xa7\x71\x6d\x61\xf4\xaf\x24\xfe\x7a\xb9\xa5\x13\x25\x24\x74\xd3\x83\x83\xc8\x83\x82\x3e\xcd\x3d\x14\x70\xa1\xe8\xe1\x84\x1c\x96\xcb\x51\x12\x37\x8e\x1c\x6c\xa5\x06\x2a\xbe\xbf\xfd\x2d\x6d\x0d\x96\x6c\xa7\x80\xbe\x7d\xbe\xef\xdd\xf7\xde\xea\xd5\x54\xac\x59\x5b\xd2\x9e\xb4\xf7\x96\xe9\xba\x74\x20\xe6\xa2\x27\xa0\xbd\x5b\x9d\x0e\x1f\x6a\xad\x66\xce\xef\x41\x10\xf5\x82\x28\x08\x88\x5b\x78\xa0\x4a\xcb\x75\x9f\xd9\x5f\x51\x70\x3f\x29\xcb\x5e\xca\x77\x7b\x21\x85\xa2\x4e\x9a\x20\x0b\xcb\x35\x0d\x43\xe4\x37\x18\x44\xc1\xc0\xe6\x0e\xec\x97\x5a\x76\x4c\x9a\x85\x7b\x3a\x5f\xed\xc4\x8a\x94\xa3\x72\x93\x5f\xbe\x86\xad\x27\xb9\xd2\xf6\x59\x80\x21\x4b\x8c\xd9\x87\x8a\x6a\x97\x6a\x24\x19\x28\x61\x4c\x73\x59\x2a\x6b\x9a\x1a\x86\x22\x0c\xbb\xb1\x38\x03\xc6\xa6\x30\xc5\x46\xa5\x58\xe6\x7b\x81\x89\x4c\xe7\x14\x8d\x89\x6d\x01\x23\x8e\xb1\x91\x9b\xf8\xa8\xdc\x65\xa9\x40\x77\xde\x16\xb3\xb7\xfc\x8e\x14\x9a\x4e\x63\xb1\x19\x6d\xe3\x2b\x64\x21\x30\xfc\x86\x8c\x31\x49\x74\x4e\xca\xeb\x9c\xc1\x5d\x12\x6b\x51\x05\x93\x8c\x6a\x4e\x3b\xc1\x3a\x6d\xea\xe0\x22\xe1\xb2\x33\xb9\x1d\x67\xc1\x96\x33\xef\x6b\x74\x9e\x67\x4b\x24\x70\x24\x6a\x4c\xb6\x3b\x56\x7b\x5d\xc4\xd7\x33\xff\x53\x55\xd5\x85\xe3\x51\x99\xa5\x09\x43\x25\x49\xf0\x68\x1b\xef\x5c\x81\xab\xc6\xff\xe5\x60\x32\xe0\x24\xa7\x41\x2f\x18\x20\xf9\x4f\x81\x75\xbd\x61\x86\x07\x41\xef\xd0\x0b\xe4\x5a\x15\x12\xda\x30\x6d\x55\x31\xa5\x3b\x94\x5b\x86\xfc\xce\xdb\xe5\x9d\x35\x09\x7a\x01\x96\x02\x89\xaa\x2e\x19\x41\xb5\x69\x86\x93\x9a\x75\x97\x32\x96\x58\xe8\xc2\xe6\x58\xec\x51\xf0\x20\xc0\x83\x1d\xca\xf1\x80\x0d\x82\xb7\xbc\x17\x0c\xd2\xc1\x1e\x05\xff\x0a\x0c\x73\x21\x47\xa6\xf2\xa5\x98\xa1\x44\xba\xb7\x3c\xc0\x72\xc3\x19\xe2\xe9\x9e\x28\x39\x46\x7d\x94\xfc\xfd\x88\x6a\x3c\x00\xbb\x26\x78\xcb\xdf\xf2\x40\x75\x1b\xe8\xed\x2d\xb1\xed\xa0\xde\xda\x66\xb7\xb3\x8a\xc4\x15\x2a\x11\xa0\x22\x2c\x19\x27\xc3\xe8\xee\x48\x2d\x7b\xd8\xd4\xbf\x86\x6d\xbe\x49\xf2\x2c\xe7\x91\x1c\x0d\x91\xcc\x26\x17\x51\xd0\xeb\xf5\x7a\x01\x39\x07\xb3\xb5\xc7\x2c\xc9\x22\x39\x76\xfd\xfd\x6a\x2f\x11\x40\xfd\xfd\x62\xc7\x78\x14\xd8\xe2\x27\x59\x5e\x7a\xf9\x27\xf9\x76\x0b\x8d\xca\xa4\x78\x25\x58\xa1\x7e\x42\xe8\x83\x47\xf9\xf2\x5a\xa2\x9c\x44\x15\x7a\xc6\x56\x02\xda\xd2\xdf\x70\xab\x0c\x09\x25\xdb\xa6\x6a\xa0\xfd\x49\xa5\x59\x07\x67\x35\xec\x66\x96\x32\x85\xc2\x76\xe7\xfb\x34\x93\x62\x12\xab\x14\x52\x60\x6d\x6c\x29\x0f\xb2\x5c\xd7\x74\x75\x4d\x7d\x26\x40\xb6\x30\x67\x23\x59\x78\xa1\x08\x3f\x11\xa3\x22\xcf\x85\x87\x6d\x54\x3f\xf9\xf2\x5a\x0a\x32\x6c\x54\xc4\x97\xe5\x08\x66\xa8\xb5\x3c\x7a\x08\xc8\xcd\x82\x96\xf4\xf4\x8e\xa0\x2e\x59\x1a\x31\xf5\x6e\x5f\x40\x02\x07\x36\x01\x26\xdc\x2b\xa2\xee\x06\x6d\x19\x80\x57\x80\xa7\x5e\xef\xc1\x9d\xbf\x05\x03\x31\x60\x23\xc1\xae\xc4\x80\x0f\x82\xbf\xdd\x09\x24\x77\x0b\x1b\x22\xc9\x1a\x33\x77\xb0\xa3\xee\xe3\x9c\x89\x4b\xc6\x38\xf4\x92\x49\x39\x80\x14\x0a\x98\xbb\x01\x1f\x98\x82\xbf\x48\x36\x5b\x96\x06\x7e\x3b\xc0\x53\x36\x52\x1a\xae\x98\x4b\xac\x5a\x0c\xa8\x06\x82\x4d\x3d\x1c\x82\x5e\xdf\x7e\xc9\x93\xa1\xca\x05\x53\x73\x4a\xcc\x04\x0a\x3d\xda\x42\x6e\xe4\x36\xfc\xb3\x3c\x79\x2f\xc7\xde\x1c\x49\xc9\x32\xe5\x5d\x8b\xed\xe2\xe4\x97\xfc\xb5\xd9\x48\xdd\x6b\xe4\x96\x20\x8c\x04\x8c\x2f\x03\xe8\x3c\x16\x8d\xee\x6b\x60\x05\xff\x57\x30\x60\x70\xa6\x15\x64\xe2\x22\xde\x96\xb3\xd6\x78\x54\x7a\x80\xa3\x20\x38\x2a\x49\xb9\x3b\xe5\x79\xbc\x65\x33\x6e\x01\x67\xd3\x22\xc9\x2f\xf1\x81\x44\xa8\x72\x62\x3c\x5f\xb2\x12\x7b\xa0\xe0\x83\x02\x4f\x59\x56\xb2\x1b\x75\x50\xcc\xe4\xf4\x4a\x1e\x0e\x41\x80\x07\x48\xcc\x82\xa9\xa4\xf7\x8d\xed\xc2\x07\xc5\x20\x97\x10\x97\xb3\x96\x9b\xdb\x03\xf9\x2a\x2f\x90\x39\x4f\xd0\xb3\x26\x46\xc3\xc9\x54\x3c\x18\x87\xa1\xd9\x89\x01\xe8\xd9\xa0\xc4\x5c\x2c\xe0\x20\x4d\xb1\x18\xd2\xc9\xd4\xb4\xe0\x6f\x32\x7b\xbe\x61\x7b\x8d\xa7\xc5\x7d\xbf\xfd\x69\x31\x18\x60\x3d\x1d\xd3\x6e\xb1\x20\x69\xdd\x48\x2e\x77\x2a\xd8\xd9\xe2\x69\xda\x58\xdc\x54\xef\x28\x7b\xdc\x51\x4e\x44\x9f\xd2\xe2\x70\xe0\x7a\xa2\x12\x74\x5d\xab\x4b\x8a\x23\x87\xa1\xc6\x7e\x4d\x08\x8a\x41\x31\x08\x6e\x02\xb9\x7d\x4a\x11\x17\xa2\x5e\xa6\x30\xf4\x67\x35\x43\x1e\x0a\xf1\x41\x02\x0b\x1e\x60\x1c\x75\x25\x93\xc0\xe2\x4f\x89\x14\x1a\xf3\xe5\x8d\x13\x14\x54\x81\xb7\x99\x8b\xf8\xb2\xa5\xc9\x01\xd8\xca\x8d\xc9\x41\x31\x21\xe0\x40\x76\x6d\x52\x94\xeb\x2d\x39\x17\x0b\x2b\xec\xe7\x53\x45\xb4\x61\xfb\x33\x2e\x60\x87\xeb\xf5\xa0\x94\xf2\x30\x44\xfd\xf4\x70\x08\x24\x0e\x95\x09\x29\x6c\x89\x30\x4c\x47\xab\xb4\x28\x05\x30\xe5\x35\x8b\x26\x79\xb7\xd4\x34\x5d\xcc\xf9\x42\x33\x54\x0c\x70\x30\x02\x4d\x44\x2c\xc7\x70\x12\x27\x1b\x76\x38\x38\x1f\xf4\xa6\x3a\x22\x7e\xd4\x65\xe6\x7c\x81\x2d\x0f\xe3\x24\x36\x07\x7d\x38\x68\x68\xcb\x0f\xab\xd6\x00\xc0\x42\xa1\x87\x32\x13\x78\x1d\xc5\x91\x93\x84\x06\x45\x7c\x19\x0c\x10\x2a\x29\xc7\xf3\xf1\xa2\xa1\x13\x2d\x35\xeb\x32\xa9\x45\x5b\xa0\x34\xc9\x62\x96\x53\xfd\x0b\xc5\x84\xe1\x28\x1e\x5d\xc6\xd9\x7b\xd4\x14\x61\x3e\x77\x3d\xfa\x93\x0a\x7b\x60\xa8\x79\x59\x29\xba\xe5\x54\x02\x15\x13\x6f\xf6\x34\x27\xb9\xde\x1c\x16\x05\xb6\x29\x94\x65\x6e\xba\x07\x78\x64\xa3\x87\x61\x20\x69\x8d\xc2\x0a\x59\x5c\x0a\xbd\xfc\x9d\xf3\x11\x06\xe5\x59\xa4\xe0\x4f\x4b\xe8\x51\x3e\x31\x27\xe0\xcf\x8f\x72\x5c\xa3\xa9\x7a\xa4\xb7\x8e\x49\x11\xf1\xce\xf1\x3c\x05\xee\xe9\x88\xce\x19\x68\x1f\x14\x98\x79\x5f\x11\x6a\x8d\xd1\xb2\xce\xdc\x39\x4c\x45\x18\x16\x7d\x4a\x59\x18\x16\x3a\xb5\xfe\x45\x21\xbd\x5b\xe6\x36\x98\x5f\xee\x57\x83\x40\xbd\x44\x2d\xa3\x00\x77\x6a\x37\x25\x45\x82\xe6\xf3\xdc\x22\xf7\x85\xcf\x60\x97\xc0\x60\x07\x98\xf4\x27\x15\x40\x40\x1d\x00\x03\x88\x47\x2e\xe3\xd7\x85\x54\xfd\xe5\xd1\x05\xcb\xcf\xda\xed\x3d\xe6\xcd\x48\x35\x34\x9c\xf4\x29\x45\x9c\xfa\x79\xb5\xee\x54\xce\x0d\x44\x35\xee\x4d\x83\x2f\x06\x5f\xdd\x91\xf3\x80\x89\x1c\x3b\x30\x7c\xe6\x20\x60\x41\x40\xdb\x14\xd4\xbc\x71\x80\x23\xde\xd1\xb6\x01\x11\x26\xdc\x83\xca\xe3\x23\x2c\x97\x0f\x12\x59\xea\x7f\x20\x3c\xa4\x6c\xf0\x85\xf0\x78\xd5\x64\xea\x6e\x3f\xbf\x5c\xa9\xd0\xcd\xf9\x45\xe6\x88\xf4\x41\xa1\xce\x14\x35\xe9\x4b\x74\xfd\x59\x07\xc2\x05\x97\xf0\xcf\x45\x1b\x5c\x82\x8a\xdb\xc1\x25\x3a\x0a\xd5\xf3\x6e\x9c\x0e\x29\x27\xfd\x55\xe8\x15\x38\xaf\x4f\xf1\x93\x8d\xc9\x7a\x59\xff\xde\xb9\x4a\x26\xe9\x8b\xa7\xaa\x08\x86\x5c\xd7\xcf\xa2\x15\x9a\x31\xeb\xc6\xcc\x27\x9f\x43\xcb\xfe\xcc\x99\x53\x7d\x5a\xac\xe9\xa7\xfb\xb0\x89\x1c\x9c\x69\x86\xe6\xb0\x11\x9d\x38\x81\x53\x87\x6c\xca\xbe\x67\x0e\x27\xd8\x81\x88\x7c\xee\xfb\xb6\x0a\x1a\xe7\xca\x3a\x35\xc3\x23\x8e\x95\xd6\xe7\xfa\x58\x5b\x72\x2b\x07\xd8\x72\xf6\x85\xe5\x02\x49\x2e\x59\xf9\x30\x54\x6c\x9f\x64\xb8\xb5\x24\x90\x0f\xe8\x84\x14\xb4\x70\x08\x1c\xec\x4b\xee\x6f\x44\xa3\x0a\x6a\x75\xac\x68\xa7\xba\x92\x4a\x8d\x8e\xcc\xf4\x1f\xd3\xf1\x34\xbe\x9f\x4f\xe3\xc1\x00\xf3\x01\x4d\x8d\xbe\xca\x20\x1e\x90\xc8\x3a\x25\x39\x36\x17\x0b\x90\xe1\x34\x3b\x65\x36\x88\x24\xbe\x23\x90\x6c\x25\x27\x38\x2b\x64\x7e\xc4\x2b\xc2\x2a\xe4\x6a\x69\xf2\x7f\x9b\x96\x86\xe4\x14\x15\x94\xa3\xef\x7f\xc0\x58\x8e\xc5\xb9\xaf\x2c\xea\xfb\xca\xa2\xd2\x5c\xf8\x51\xcd\x48\xad\x02\x07\xdd\xd4\x7c\xa1\x05\x85\x0b\x56\x94\x69\xce\x69\xf0\xfd\x68\x3c\x9a\xfc\xa0\x75\xc0\x4a\x2f\x5c\x2a\xf0\xf3\xbc\xd8\xc6\x59\xfa\x91\x99\x5b\x88\x23\x2a\x95\x7d\xd9\x79\xed\xde\x6e\x50\x7f\x8c\x92\x9c\x27\xb1\x40\x8d\x4e\xe6\x6c\xa1\xef\x8c\x2b\xa5\x16\x4f\x58\xe9\x5f\xa5\xda\x99\x09\x57\x81\xa9\xef\x84\xe0\x7a\xc3\xb9\x13\xb2\xc3\xeb\xd2\xe5\xd9\xba\xd6\x9c\x41\x4a\x49\x95\xa7\xcf\xac\xbb\xb0\x30\x54\x28\x50\xca\x1b\xf0\xe5\xce\xc9\xf0\x92\x48\x28\xcb\xa2\x82\xd4\xba\xa6\x94\x15\xca\x80\xc4\xaa\x56\xd5\x68\x41\xcd\x24\xe7\x5c\x43\xa1\x43\x41\x04\xa6\x2f\x8c\x14\xf4\x61\x51\xc4\xd7\xa3\xb4\x84\xbf\x52\xe2\x93\x67\x4d\x1e\x01\x4e\x8b\x19\x8f\xf8\xfc\xf5\xf5\xf6\x3c\xcf\x46\xa9\x60\x60\xc8\xbc\x40\x78\x3a\xd5\x07\x0a\x18\x4a\x40\x6f\xf9\x03\xca\xcd\xf9\x39\x2f\x58\xfc\x7e\x9a\x52\x3e\xcf\x07\x83\x45\x05\x0a\x84\x74\x85\x90\x64\x18\x39\xbb\x12\x08\xe3\xd1\x32\xe7\xcc\x16\xcc\xd5\x99\xa8\xd4\xa1\x4b\x95\x54\xb6\xcb\x4b\x91\x94\x92\x36\xc7\xd4\x7e\x61\x12\xe4\x70\xed\xe1\xf0\x11\x71\x18\xfa\x73\x88\x0d\xf8\x30\x96\x94\x45\xef\x8b\x3a\x15\x54\x1a\xbd\x23\x37\xa1\x31\xd6\xd6\x3c\xb1\x56\x7d\xc8\x72\xba\x4f\x47\x06\x3c\x1c\xfa\xb1\x5a\x92\x30\xec\xc7\xb5\x42\xc0\xb9\x11\x52\x17\x41\xf1\x20\xe8\xa5\x65\x8f\xe7\xa2\x17\xf7\x5e\xe6\xa5\x38\x79\xfd\xba\xa7\x46\x12\xe0\xca\xee\xa7\x16\x0e\x48\xff\x7d\x9a\xda\x12\x0c\x19\x7e\x00\x03\x07\xf9\xfb\xdb\xef\xc1\xbe\x01\x41\xfa\xf7\xf7\x30\x26\xea\xd7\x77\x18\x63\x12\xab\x22\x3f\xba\x66\x0f\xe5\x97\x9b\x3d\x24\x6a\xeb\xd7\x4a\x9b\xf1\x94\xdf\x17\x46\x29\xc3\x8d\x52\xa6\xa0\x42\xca\xcf\xc5\xa8\xbe\x66\xa7\xee\xc7\xe1\xd0\x9f\x90\x62\xe4\x5e\xb5\xcb\x89\x6a\x6d\x61\x0a\x18\x16\x29\xab\x10\x9d\x87\x49\xb7\x81\x1b\x23\xc5\xe8\x3d\xbb\x26\x05\xae\x1a\xa6\x61\x5a\x7b\xd0\xda\x67\x92\x75\xe8\xd8\x30\x6c\x24\x36\x8c\x57\xca\x32\xab\x1b\x61\xc2\x35\xaa\xa3\x19\xf1\x74\x48\x29\x5b\xd2\xfe\x44\x23\x4a\x85\x9e\x54\x4a\x7b\x04\x3c\x0c\x25\xd9\xea\x83\x1e\xc4\xaa\x40\x38\xd0\x42\x9c\x53\x6e\x37\x36\x77\xad\x69\xd8\xe1\xe0\x7d\xd7\x77\x4c\x20\xc1\xe5\xb9\x20\x7c\xb4\x8d\x77\xc7\x2e\xad\x0a\x9d\x09\x7f\x01\x4d\xc1\xaf\x51\xca\xb3\x94\xb3\xc3\x01\xb9\x9f\xb4\x3f\x31\xf9\xbb\x82\x5d\x50\x68\xd9\x51\x22\x96\x34\x36\xdd\x4f\x8b\x51\x09\x97\xc4\x61\x88\x4a\x6a\x3e\xd4\xa1\x92\x6d\x28\x84\xa7\x33\xd5\x07\x98\x12\xa9\x43\x87\x4a\xaa\x7f\x63\x30\x57\x80\xad\x2c\x57\x53\x59\x19\x24\x5a\xab\xcb\xe4\x21\xa4\x49\x55\xe9\xbb\xbf\x52\x9e\x06\xb0\x78\xaa\x91\x26\xc9\x65\x3d\x7d\xfd\x4d\x4a\xb2\xef\x22\x48\xfb\xd1\x65\x5c\xf0\x94\xaf\xcb\x0e\x8c\xaf\x16\xf4\x9a\x27\x08\xdb\x62\x12\xf7\xef\x6f\x23\x13\xea\xb6\xb2\x2c\xa1\xd8\xc6\xe3\x6c\x1d\x2a\x01\xa5\x62\xdd\xb6\x2c\xa6\xaf\x11\xf6\x23\x98\xe8\x51\x12\x69\xaa\x18\xa3\x0b\x59\x63\x95\xf2\x38\xcb\xae\x3f\x59\x47\x77\xa3\x2a\x6d\x62\xbe\xcc\xd4\xad\x76\xf3\x72\xa3\xb8\xbe\x31\xbb\x59\xc1\x99\x91\xe6\xd5\x3f\xf0\xdd\x3c\xde\x82\x50\xa5\xd0\x9e\x36\xf2\xd1\x18\xfd\x17\xc5\x31\xe0\x29\xd0\x89\x9e\x29\x44\x6d\x81\x97\xf0\x4d\x98\x77\x87\xaf\x57\x99\x63\x30\xd2\xc9\x33\x16\x86\xfa\x87\x1a\x49\xe3\x13\x81\x76\x76\xaf\x26\x78\x96\x76\x6b\x68\xed\x75\xaf\x43\x81\x1f\x50\xf7\x5c\xe6\x45\x83\x30\x7b\xba\x3c\xe7\xf0\x8e\x09\x43\x6a\x5b\xd6\x16\xbb\xed\x46\xe6\x4e\x47\x0b\x92\x6b\xee\x74\xcf\x51\xa1\x15\xc1\xfa\x3e\x9d\x4e\x48\x86\x72\x3c\xcb\xd5\xc2\xf8\x66\x77\x76\x4a\x48\xd3\x7d\xbd\xe2\x9e\xfc\xc1\xdd\x55\x04\x93\x18\x65\x03\x53\x8f\x57\x28\x73\xd5\xa8\xde\x07\x75\x9b\xaa\xc1\x54\x9f\xa8\x46\xb5\xd4\x81\x6c\xf7\xbd\xe6\xb4\x13\x48\x60\xe5\xf6\xb2\xc8\xb7\x69\xd9\xb2\xe5\xd5\xab\x36\xe3\x48\xff\xc2\x91\x40\xcc\xd1\xba\xe3\x7a\xac\xba\xc1\x94\xaf\x67\x8d\xef\x08\x35\x12\xe8\x2d\x5d\x82\x4c\xac\xfa\x32\x5c\xbe\x4d\x98\xda\x4d\x39\x26\xcc\x01\x8e\xac\x28\x01\xde\x5a\x15\xcb\x07\xfa\x5b\xc2\x9d\x40\x65\x0c\x19\xeb\xe1\xc1\x69\x6b\x82\xd1\x6e\x47\xd3\x92\xb7\xe5\x14\x3e\x9b\xb6\x0a\xc1\xd2\x34\x5a\x6f\x32\x26\xc1\x9b\x92\xf5\x74\x3e\x92\xac\x95\x9a\x47\x72\x8e\x7b\x22\xef\x5d\xe6\xc5\xfb\xde\x65\x2a\x36\x3d\x98\xaf\xe6\x58\x4a\x25\x29\xd5\x27\x5e\xb7\x5a\x27\x4c\x9d\xfb\x6c\x35\xba\xf6\xbe\x27\xa2\xc1\x74\xc2\x95\x85\x62\x3a\x19\x15\x33\x16\xb1\x5b\x98\xce\x02\x46\xa0\xd4\x37\x0f\xac\x0d\xb6\xe6\x25\x0b\xca\xe6\xdc\x63\x3a\xb9\xc4\x3f\x6d\xa6\xb3\xa0\xdc\x61\x3a\x73\x0a\xad\x2a\x6b\x26\x38\x82\x39\xc6\x7f\x15\xc4\xaa\xf6\x8a\xc9\x95\x2e\xf6\xbc\x7d\x09\xa9\x41\x96\xc5\xa5\x50\x78\x8f\x32\xd7\x18\x8f\x21\xb7\x14\x90\x6e\x27\xc1\x9c\x54\xb8\x77\xb6\xcb\xe2\x9e\x7c\x41\x18\x26\x02\x0e\x6c\xc7\x8d\x75\xbd\xdb\x1c\xde\xa4\x6b\xbf\xb5\xf9\x17\xbd\xdd\x14\xfd\xe8\xd8\x03\xf9\x4e\xc8\x65\xb7\x92\xca\x94\xd5\xb4\x5f\xca\x7f\x9a\xf6\xd7\x6c\xb4\x73\x5a\x52\x60\x02\xa0\x94\x2b\xf9\x38\x97\xee\x5a\x85\x54\xd7\xd6\xb6\x39\x60\xf4\xec\xd0\xf9\xdb\x80\x07\x43\xc4\xa3\x35\xe3\x72\xc7\x39\xd6\x17\x6e\x99\xa4\x2c\x29\x9f\x8f\x17\x5e\x45\xc9\x15\xf1\xf9\xc4\x4b\xac\x88\xa0\x8c\x20\x4e\xe7\x37\xef\xd9\x75\x14\xd8\x33\x10\x90\x35\x73\x2c\x1c\x7d\xfa\xdb\x3c\x30\x55\x45\x54\x75\x39\xb6\xcf\xa9\x29\xcb\xd9\x4a\x49\x79\x7b\x1d\x07\x1b\x01\x1b\x62\xeb\xe5\x5c\x30\x2e\x3e\xbf\xae\x2a\x6f\xeb\x6f\xe3\xdd\x67\xd7\xdd\xc6\x3b\x5b\x0f\xf8\xd9\x5b\x2b\x2a\xee\x44\x96\xab\x3b\x53\x1c\xc1\x27\x66\xaa\x2a\x9a\xb2\x55\xb5\xc0\x61\x98\x20\xc7\x4a\x8e\x70\xb0\x3d\x4c\x90\x20\x25\x6e\x8a\x62\xfb\xcf\x13\xc5\xc4\x48\x19\xef\x9c\xc6\xbb\xbf\xab\x5d\x94\x17\x94\xa3\x1f\xc6\xb8\x23\x83\x38\xa5\x4f\x72\x5e\x4a\x01\x87\x4a\xa1\x6b\x82\xdb\x19\xb6\xf0\xf3\x7c\xc9\xa0\xd4\xb7\xd8\x49\x69\x0f\xc5\x38\x15\xfc\x30\x51\x4e\x05\xdf\xfc\x80\xc1\x95\xe0\x87\xbb\x78\x04\x28\xf7\x35\x13\xe0\x44\x30\xf9\x7e\x8c\x47\xa7\xf1\x6e\x97\xf2\xf5\xb3\xb4\x14\x0d\x19\x4f\x72\xf7\xea\x26\x54\x19\xdd\x83\xd9\x66\x3e\x5a\x33\xf1\xb0\x58\x23\x46\x02\x99\x10\x80\x2e\xcd\x14\x51\xa6\x70\xaf\xf2\x5c\x78\x05\xeb\xe4\x46\xf1\xf7\xe9\xee\x97\x38\x4b\x97\xf0\x1e\x86\x5f\xc5\xcb\x0a\x88\x94\x2c\xdc\x3e\x4a\xc5\xc7\xeb\x34\xc9\x63\xfa\x29\x5b\x35\x2d\x95\x18\xfb\x55\x4f\xd4\x9e\x2d\xa9\x1c\x4b\xe5\xf9\x27\x18\x15\xd6\x37\xa4\x1c\xad\x8a\x7c\x6b\x57\xa3\x43\x89\xc2\x46\xf5\xbc\x88\xc2\x37\x25\xba\x01\xd3\x46\x06\x16\x8e\xa4\xce\x8f\x44\x55\x5b\x74\x8d\x58\x9c\x6c\x34\xdc\x7d\x56\x4d\x1b\x53\x19\x3c\xb4\x8c\x6e\xa4\x58\x15\x31\x8b\x99\x96\xcf\x52\xce\x88\x32\x58\x73\x93\x4f\x20\xa5\xaa\xa6\x4a\x44\x34\x43\x03\xc1\x4d\x1b\xd8\x9a\x34\xa2\x8a\x08\x37\x2f\x1f\x15\x2c\x03\xcf\x00\x24\x88\x49\xc5\x52\x0e\xcb\x8b\x74\x2d\x05\x07\x6a\x46\x62\x12\xfc\x81\x98\x54\x3d\x0e\x62\x86\x21\x17\x06\x3a\x02\xd3\x60\xf5\x0d\x7e\x51\xf1\x72\x69\x20\x50\x00\x3f\x64\x86\x57\x76\x78\x5e\x15\x46\x85\x5b\xe8\xf9\xc1\xe8\xd3\xc6\xb0\xa1\x5d\xb3\xc6\xe0\x46\x90\xe2\xc3\xc1\x49\x8a\x97\x4b\x64\xdd\xd1\x4c\x7f\x7a\x33\xfc\x94\x17\x92\xf3\x56\xcd\xc7\x61\xc8\xa5\xc4\xf1\xda\x2d\x81\x0a\x12\x2b\xa7\xae\xca\xf3\x69\xa9\x67\xd2\xb1\x47\xdc\x2d\x6d\x17\x0b\x0c\xb0\xdc\x1c\x03\x3d\x73\x3a\x8a\x8e\xd3\x63\xf2\x52\x2f\x4f\xc2\x53\xe7\x4c\xbb\xce\x94\xb2\xcc\x1e\xbd\xbb\x50\x29\xcc\xc0\x5c\xd9\x76\xa7\x58\x2f\x14\x28\x4e\x8c\x6d\x68\xd1\x38\x69\x00\xca\x02\x9b\xa6\x5c\x68\x02\xcc\xa1\x85\x14\x16\x44\xb7\x60\x2c\x65\xd4\xb9\xb4\x4b\xe1\xa6\xa9\xb5\xc0\x8d\xd3\x0a\xc9\x37\xde\x66\x8f\x94\x3d\x27\x69\x6c\xf5\xc8\x98\x6d\x12\x77\x43\x46\x6a\x30\x5c\xae\x1f\xd4\xf2\xf7\xa5\x9b\xad\x6b\xab\xd9\x44\x05\x91\xc3\x8a\xd2\x0a\xfb\x8b\xdb\xdc\x04\xdd\x0a\x7f\xbd\x6d\x9a\x38\x10\x2e\x30\xdd\x3d\xda\xc8\x27\xdc\x82\x4f\xcc\x50\x27\x8a\x3a\x1c\xba\xd3\x9b\xf6\xdf\x72\x03\xe0\x6e\x2c\x37\xcf\x47\x22\x7f\xcd\x84\x5e\x1b\x8e\x17\x54\x68\xf1\xa9\x59\x34\x0c\xd1\x92\x65\x4c\xb0\xde\x67\xb6\x04\x3a\x6b\xd7\x71\xb2\xb3\x1e\x76\x34\xd9\x47\xf1\x30\x6e\x40\x1e\x34\xf0\x5d\xe8\xd7\x25\x72\x20\xfd\x28\x57\x28\xe1\xb8\x45\x29\xf4\xdb\x62\xe1\xbf\x6e\x53\xe2\xa3\x1d\xf6\x0a\xf6\x61\x9f\x16\xac\x34\xee\x4c\x31\xef\xb1\xab\x5d\x96\x26\xa9\xe8\xa9\xf1\xf7\x00\xc7\xf7\xf2\xa2\x27\x36\xcc\xa4\x6d\xe3\xdd\xdb\xaf\xcb\x9e\xa2\x8d\x52\x5e\x00\x85\xe3\xa8\xf7\x28\x17\x9b\xde\x25\x2b\x58\x2f\xdf\xa6\x42\xb0\xe5\xe8\x6b\x2c\x05\x16\x18\xa9\xd6\x7d\x37\xf7\x47\x8d\x8d\x50\xe1\xee\xa3\x18\xbc\x5a\x94\x42\x4d\xd1\xbc\x44\xfb\xf1\x35\x4e\xd3\x9e\x97\x79\x21\xd8\xf2\xa7\x16\x46\x35\xce\x56\x1a\xff\x53\x89\x01\xf4\x4e\xf4\x30\xbc\x41\xbc\x35\x86\x7f\x99\x97\xa9\x6c\x42\x22\x4c\x45\x13\x44\x27\x4d\x10\x4d\x9a\x60\x90\x6b\x5a\xd3\x26\xdb\x7f\xea\xd3\x26\xee\xe6\xe5\xca\x8e\x9a\x13\x51\xd3\xa5\x1a\x30\xa2\x83\x84\xc5\x6e\x51\x7f\x74\x34\x55\x78\xa1\x39\x3a\x9a\x1a\x84\x60\x06\xa9\x29\x97\x50\x94\x2b\xd5\x94\x0b\x56\x2a\xa3\xa6\xfd\xa9\xda\x6f\xd9\xe1\xa0\xb0\x5c\x86\xe5\x2f\x89\xc4\x32\xe3\xae\xab\x1a\xd0\x05\xf7\x87\x43\x02\x05\xf7\x58\xfe\x92\x05\xf7\x58\x33\x58\x4d\xfe\xa6\xf4\x78\x9b\xe4\x56\x02\x29\xcc\x81\xe8\xa0\x6a\xc2\x00\x1e\x2c\x3e\x6b\xf8\x3a\x80\xf5\x21\xda\x00\xa5\xc1\x2b\x2d\x7a\x08\x24\xd7\x0c\xde\x3f\xbc\x4d\x7a\xd3\x38\xbe\x44\x5d\x1b\x89\x30\x0c\xf8\x7e\x7b\xce\x0a\xd7\xe5\x43\xfb\x7b\x74\xe5\x68\xef\x8e\x96\x68\x6e\xd6\x12\xaa\xf6\x62\xbe\xec\xd9\x14\x55\xa5\x17\x17\x0c\x6e\x61\x54\xa3\x65\x6f\x38\xec\x5d\xe7\x7b\x79\x3e\xcf\xe3\xf3\xec\xba\xb7\x65\x31\x17\x52\x90\x97\xa7\x13\xce\xb3\x69\xa1\xa7\x4f\x53\x8f\x71\x91\x16\x2c\xbb\x56\xed\x73\x59\x29\xde\x41\x51\x4b\x9a\x7a\x3b\x7d\x38\x46\xbd\xa7\xab\x5e\x99\x93\xde\x2e\x2e\x4b\xe5\x06\xb9\xd2\x78\xa2\xd5\x6e\xca\x4b\xc1\xe2\x65\x2f\x5f\x49\x1c\xa3\xd4\xfe\x4a\x95\x00\xc6\x99\x12\xbf\x40\x03\xa0\xb0\x28\x47\x4a\x09\x83\xfa\x48\xc2\x08\xde\x2c\x4b\xe1\x1e\x26\x50\x33\xd5\x5f\x0c\x40\xf1\x60\x2c\x7f\xa9\x8c\x07\x74\x2c\x49\xf0\xe1\xc0\x0f\x87\x02\x87\xe1\x27\x1a\x10\x4e\xa6\xf0\x32\xc5\x91\xd6\xc3\x50\xd8\x64\xe1\x26\xf3\x0e\x65\xca\x53\x0e\x3b\xc4\x00\x21\xea\x05\x03\x88\xa0\x50\x8b\x87\x0e\x13\x6c\x18\xe9\xa8\x26\xf6\x91\x50\x04\xbb\xa8\x9a\x74\xe3\x5d\xc9\x8a\x14\xee\x3d\x4f\x8d\x08\xe0\xde\xcb\xe8\x2b\x28\xb5\x0d\x53\x12\xd3\x31\x29\xe9\x84\x24\x74\x4c\x32\x3a\x26\x7b\x3a\x26\x3b\x3a\x26\x2b\x1a\x04\x64\x49\x1b\xf8\x54\xe4\x4a\x65\x85\xc9\x86\x8e\xc9\x39\x5d\x9a\x2b\xac\xcd\xfd\xf3\xe9\x66\x30\x50\x9a\x44\x59\x15\x09\xba\x9c\x6f\x16\xd8\x67\xdc\xfb\x94\x96\x60\x60\x10\xd3\xf1\x54\xb4\xf3\xa6\x98\x81\xe9\x3a\x29\x07\x03\x7b\x9d\xb3\x79\x30\x86\x76\xfb\xf9\x28\xc9\xb7\xbb\xb8\x60\x8f\xae\xff\x6e\x6a\x1a\x6c\x5c\x3e\xe5\xab\x4c\x26\x20\x41\x96\x73\xb0\xb5\xc3\x52\x34\x4f\xf9\x9e\x4d\x65\xa3\x24\xa8\xd8\x00\x6e\xd3\x92\x7c\xc9\x90\x68\x8a\x0e\xc3\x18\x7c\xc3\x9b\xc9\x86\x3d\xa9\x71\x76\x4a\x7d\x36\xd0\x98\x5a\x58\x94\x4b\xdc\x7e\xd2\xe1\x0e\x93\x1d\x4d\x89\xdf\xb9\x8b\x92\x87\x93\x61\x86\x49\x46\x9b\xa9\x47\xaa\xe8\xe1\x26\x98\x24\xb4\x99\x6a\x47\xab\x91\xb7\x71\x83\x57\x2c\x67\x3d\x52\xc0\xe5\x5e\xfb\x7c\xb8\xc7\x64\x4f\x25\x43\xb6\x1a\x50\x66\xb4\x76\xab\xc6\xde\x32\xd0\x79\xed\x31\x30\xdd\x77\x37\xac\xe9\xcd\xa4\x56\xb1\x9b\x43\x32\x6a\xe7\x7d\x96\x4d\x6b\xf9\xac\x21\x98\x31\x6c\x74\x5b\x3e\x23\xc6\x70\x23\x86\x45\x3d\xe2\x4d\x5c\xbe\xb8\xe4\xe6\xde\xb3\x76\xda\x6c\x8d\x80\x70\x3c\xeb\x66\xfa\xf8\x02\xd8\xe6\x6e\x44\x2f\x72\x79\x6c\xdb\xaa\xff\x1b\x2d\x48\x6b\x3e\x53\x7f\xe9\x73\x5c\xfa\xdc\xa7\x73\xac\x60\xa1\x22\x77\xd1\xea\x3c\x73\x0a\x4d\xe5\xe6\x31\x47\xb8\x9a\x3a\x60\x34\xec\xb8\xe4\xaf\x24\x28\x95\xd7\x69\x9d\x66\x39\xef\x36\xd3\xee\x0a\xf6\xad\xfc\x23\x5c\xb6\x53\xcd\x6e\x0b\x55\xb0\x7b\xcf\xd4\xa5\x89\xdb\x9d\x14\x84\x9b\x10\x3e\x7a\x87\xd8\xc0\x98\xd0\x9d\x5a\x10\x84\xc1\x42\xbf\x43\x25\x55\x1e\xd7\x17\x4d\xbe\xfb\xb1\x0e\xdf\xd2\xe5\x1c\x2c\x11\x5b\xde\x69\x99\x7c\x7f\x3c\x9b\x0c\xd0\x90\xdd\xbf\x3f\xc1\xd1\x78\x80\xe0\x47\x25\x37\xe6\x32\xbf\x11\xf4\x9b\x49\x98\x13\x94\x3f\x78\xf0\x80\xde\xc3\x92\x3e\x20\x71\xa0\xdf\xdc\xc5\x84\xbb\x47\x1c\x57\x97\x9b\x34\x63\x28\x7f\x30\xae\x7d\xb6\xb5\x83\x91\x3f\x22\xc7\xd7\x00\x70\xb8\xb9\x07\x20\x25\x1d\x4b\x54\x2e\x7b\x95\xfc\xc5\x03\x1a\xb7\x49\xcf\x93\xab\x1d\x4b\x24\xb1\xde\xe6\x05\xeb\x2d\xd3\x75\x2a\xca\x5e\xca\x7b\xe7\x71\xc9\x7a\xdf\x7d\xdb\xfb\xe5\xd9\x7f\x2a\x5a\xab\x49\x2d\x84\x56\x40\x29\x38\x6e\xc2\x40\xbd\x58\x26\x62\x30\xc0\x5d\xb7\x05\x86\xc0\xc9\x56\xbf\xfb\x56\x75\x23\xa9\x9c\xaa\x2c\x2b\x0e\x27\x18\x4f\x73\xda\xef\xa3\x6f\xee\x86\x29\x26\xe5\x80\xa2\x34\xa4\xdf\x4c\xf0\xfd\xfb\x09\x49\x06\xf4\x9e\x81\x07\x9e\xea\xeb\x8a\x2e\x25\xd4\x83\x07\x93\xa9\x13\x96\x06\x4d\x42\x86\x67\x43\x11\x89\x0a\x95\x98\xf0\x51\xc1\x4a\x41\x45\x47\x74\x0c\xb3\xec\xdf\xfc\x80\x49\x4e\x3f\x81\x39\x48\x4a\x3b\x6d\x18\x4f\xe3\x9d\xeb\x32\xae\x2f\x32\xde\xc5\xf2\xcc\xd2\xf9\xc2\x9c\x15\x26\x68\x6a\x23\x5b\x74\x88\xae\x55\x0c\xda\x36\x38\xea\x0d\x6c\x5a\x1b\x8d\x28\x4d\x5e\x41\xc7\x24\xb7\x2b\x3e\x2d\xee\xe7\xe0\xd5\x03\x1a\x25\xc4\xe6\xc5\x82\x08\x77\xf7\xc4\xae\x30\xef\x19\x43\xd9\xdd\x9b\xce\xec\x28\xa1\x48\x54\xfb\xce\x3b\x10\x78\x2e\xd1\x11\xb2\x25\x8d\x4c\xeb\xf7\x10\x2f\x97\x9d\x1a\x82\x74\xc6\xa2\xa2\x81\xb3\x49\x4c\x75\xcf\x2a\xe2\x45\x94\x7b\xe8\x99\x09\x50\x4b\x53\x07\xa0\x66\xce\x71\x18\xf6\x85\x51\xa7\xa8\x1c\x1d\x73\x88\xc4\x87\x03\xf2\xe6\x03\x31\x33\x4a\x2b\xef\x33\x31\xe7\x0b\x2a\xb1\x78\xec\xaf\x75\x33\xbe\x48\xea\x5d\xfd\x40\x5b\x6a\x98\xca\x46\x9f\x36\x67\x63\x40\xde\x9a\x84\x68\xf4\xa5\xa9\x70\xbb\x3f\xd7\x77\x11\xfa\xd3\x81\x3f\xd4\x41\x1e\xdb\xf1\x54\xd6\x9c\x84\xb7\x47\x91\xae\x50\x07\x18\x5b\x73\x99\xf3\x45\xd5\xd2\x0e\x04\x5f\x0f\xd8\xe0\x6b\x6b\xb0\x25\x59\x5d\x29\xd7\x33\x31\xfa\xba\x31\x87\x58\x34\x87\xcf\x80\xd3\x65\xf7\xdb\xab\xe5\xf7\x0d\x39\x73\xb6\x98\xb6\x10\xc6\xf3\xbc\xc7\xd4\x6b\xc0\x3d\x00\x11\x5b\xf6\xce\xaf\x25\xc2\x68\xf4\xad\x09\xe2\x31\x93\x12\xdd\xb7\xf2\x10\x02\x22\x60\x54\xfe\x34\xfe\x8b\x5c\x7d\xc1\xd5\xa3\x15\xa7\xa3\xb6\xdb\x9d\x2f\x48\x2e\x49\x45\x4a\xfb\x13\xcd\x60\xf7\x25\x87\xdd\x9f\x48\x16\x7b\x9a\xdd\xb7\x87\x37\x33\x96\x5f\x7b\xca\xe6\xd9\x62\x5a\xce\x92\x99\x2c\x07\x11\xd1\x28\xa5\x7b\xf9\x35\x8e\xf6\x94\xd2\x12\x8c\x7e\xfa\x13\x1c\x7d\x1d\x7c\x4d\x41\x92\x0e\xbe\x56\x65\x4a\xba\x8f\x02\xa4\x7e\xc7\x03\x3a\x89\x02\xac\x3f\x80\xd4\xc4\x43\x2a\x89\x12\xa5\x52\xba\x05\xfb\x60\x61\x59\xc1\x3d\x06\x8e\xb6\x3f\xc6\x24\x9d\xa1\x40\x22\xb6\x1c\x3c\x62\xe4\x71\xca\x47\xa2\x48\xb7\x08\x2c\xe5\xf4\x74\x70\x94\x0f\xe8\x5e\x73\x87\x08\x7c\x20\x65\x15\xdc\x51\xa7\xa8\x48\xb9\x8b\x13\xd6\x15\xa9\xa3\xd0\xee\x32\x8c\xcc\x83\x5e\x40\xc0\x93\x39\x78\x2b\x82\x05\xae\xc0\x69\x39\xfe\x54\x25\x12\x2c\x48\x7f\x8c\xab\x8a\xe4\xb4\xf8\x6f\xda\x0e\xab\x6b\xf5\xcf\x5a\xfc\xbc\x83\x2b\x70\x02\x50\xe5\xa8\xe1\x87\x02\xf7\xef\x5d\x81\x42\x20\x84\x85\xbe\xf3\xd3\x6e\x18\x87\x83\x71\xc8\x00\x83\x62\x5e\x15\x2a\xea\x45\x7e\x3c\xea\x45\xf1\xe5\x51\x2f\x0a\x6d\xdb\x9c\xb7\x6d\xbc\xd2\x51\xc1\xb6\xf9\x05\x3b\xd9\xa4\x99\x83\xc5\x5d\x6d\xa3\x3c\x60\xb0\x75\x90\xa5\x31\x7d\xae\xfc\xbf\x8c\xb7\xb6\xe7\x50\x31\x31\x1a\x4f\xe5\x6a\x3a\x59\xb8\xae\x21\xd4\xc9\x29\xbc\x1c\x4c\xdc\xa0\x3b\xce\xa8\x3c\x58\x56\x24\xed\xb2\xf1\x75\xcd\x0d\x5d\x53\xb6\xba\xac\xd7\x0a\x28\x50\x71\xba\x42\xc1\xae\x60\x3b\xc6\xc1\xf6\xaf\xc0\x1d\x73\x99\xf1\x63\xa3\xf7\xe7\x15\x69\x15\xb2\x57\xdc\x4a\xb3\x50\xad\xf6\xaf\xd1\xea\xc5\x9c\xc4\x0d\xab\x10\xc9\x10\x69\xab\x90\x94\xc6\xb3\x34\x4a\x6f\xb1\x0a\x49\xc0\x68\x18\x10\x71\xf9\x80\xa6\xbe\x55\x48\x42\xd3\x79\xe9\x59\x85\x94\x34\xed\xb2\x0a\x49\x68\xa9\xad\x42\x12\x6f\xa6\xde\x44\xac\xd1\x6e\x2e\xe1\x2f\xf2\x57\xca\xa8\xb0\xe3\xbc\x36\xac\xe4\x6f\x2a\xb0\xd7\x46\xca\xfc\x1e\xe9\x9f\xdf\x6b\xed\x1a\x61\xd8\x33\x10\x22\x79\x85\x10\x18\xeb\xdf\xbb\x7b\xbb\xb1\x7e\x1d\x4d\xf1\xaf\xf5\x21\xd0\xd8\x3e\x45\x1c\x8d\x01\x05\xca\x5f\x93\xf1\x0f\xae\x29\x70\xfa\xd9\xa6\xc0\xf5\xd0\xea\xf8\x27\xea\x14\x83\x3c\x74\x25\x0e\x07\x6b\x1e\xf2\x79\x63\x6f\x29\x3f\x39\x0d\xe6\x5a\x7b\xf6\xb0\xbc\xe6\x89\x89\x07\xb5\x08\x48\x51\x67\x39\xa9\x79\x9d\x6a\xe5\x23\x27\x3b\xad\xb3\x9f\xef\xb3\x6c\x11\x90\xb8\x4e\x81\x90\x59\x8b\x80\x94\x75\xd2\x1b\xc3\x1e\x2f\x02\x92\xd0\xda\x7e\xd7\x68\x2f\x41\xa7\x26\x46\x0a\x85\xd9\x6b\x93\x30\x14\x24\x6b\x97\x2e\x59\xb6\x0a\xc3\xfa\xdf\x76\x35\x99\x4a\xf6\x34\x39\x1c\xb2\xc3\xc1\x0c\x1b\x05\x0e\x2f\x10\x60\x84\xc9\xae\xc5\xd9\x93\x15\xdd\x35\xb9\xfb\x25\xdd\x59\x41\x93\x6c\xe8\x7e\xa4\xce\x1a\x39\xa7\x9b\xd9\xc6\xe6\x9c\xc5\x6b\x13\x96\xce\x6e\x81\xad\xb3\x05\xf4\xe5\xcb\xac\xde\xf9\xb3\x32\x4a\xa3\xf3\x30\x3c\x97\xdc\x94\x1a\x08\x62\x78\xd6\x16\x63\x56\x0a\x29\x31\x72\x8e\x09\xa7\x6c\x7e\xbe\x00\xcb\x27\xf9\xc3\xe7\x3e\x6c\x24\xb1\x14\xdf\x68\xeb\x2d\x8d\x16\x25\x0f\x2a\xf1\xed\x0c\x2a\x71\x83\x86\xe4\x57\xcd\x9d\x4a\x99\xb4\x8b\xb8\xda\x36\x64\x81\xaa\xde\x80\x4d\xed\x4d\x47\xac\x0d\x6d\x08\xee\xeb\x1e\xe4\x99\x77\x16\xf5\x70\x70\x8d\xc7\x05\xf4\x52\x87\x65\x53\x0d\x6d\x1d\x2e\x5a\x40\x54\x01\x41\x69\x0e\xff\x72\xf8\x37\xae\x2a\xec\xe0\x6e\x8e\x26\xf7\xf0\xa7\x62\xc6\xda\x75\x2a\x8c\xe6\x1d\x02\x7a\xc5\xca\x7e\x57\x5d\x21\xb1\x79\xba\x40\x31\x26\x0e\xfe\x03\x08\x67\x3e\x2a\xe3\x28\xc3\x55\x09\x08\x73\x26\x50\x82\x23\x6d\x4c\x29\x25\xcc\x3c\xbb\x60\x28\xd1\x26\x71\x05\xc9\x9d\x10\x67\xb9\x03\xe5\x86\x9a\x48\x31\xfb\x84\x53\xeb\x62\x63\x81\xd8\x69\xab\x99\x13\x2d\x25\x48\x89\x5f\x7b\xe8\x10\xde\x72\x4d\x40\xb1\x0a\x5a\x46\x12\x12\x48\x34\x0f\x71\x4a\x5c\x5f\x84\x46\x19\x60\xc5\xa1\x50\xa9\xa3\x7b\x41\x08\xcb\x8a\x8f\x96\x48\x90\x20\xf6\x63\x5d\xda\x9d\xd4\x05\xfb\x7e\x6b\x86\x37\xd5\xd4\x41\x67\x44\x4a\x98\xdb\x5d\xc6\x7e\x4a\xb3\x86\xbb\x9e\x1b\xc5\x74\x05\xb9\xbe\xc3\x6a\xed\x7b\xc4\x4a\x01\xe5\x2b\xa5\xe4\x91\xdf\x47\x1a\xd2\xb6\x12\xa3\xad\x32\x03\x97\x75\x88\xfe\x6a\x69\x53\xb8\xdc\x65\x37\x95\xf5\x14\x1b\x93\x54\x72\xf2\x31\x15\x0d\xe5\x0a\xc9\x28\x1f\xed\x0a\x26\x99\x5f\xb2\x97\xbf\xf3\x52\xc0\xc7\x8e\xf2\x51\x12\x97\xec\x35\xe3\x65\x2a\xd2\x0b\x16\x86\x52\x4c\x1d\x89\xfc\x59\x7e\x69\xc2\x17\x4c\x59\xbb\x14\xd8\x87\xfb\xa5\x8c\x38\xb1\x92\x4c\xc0\xfd\x78\xba\x1a\x0c\x70\x41\xc5\x7c\xb5\x20\xbb\xf9\x6a\x21\x91\xcb\x3c\x5f\xcc\x50\x41\xb3\x41\x31\xd8\x13\xf0\x05\x4c\x06\x74\x32\x48\x70\x24\x47\x59\x0e\x68\x42\xd2\xb9\x61\x06\x16\xb4\xb0\x48\xc0\x8d\xde\x8b\x4a\xba\x03\x4c\x35\xb9\x33\x8e\x4a\x72\x53\x30\xbe\x64\x05\x5b\x46\xa9\x0d\xd6\x4b\xca\x44\xb2\x35\x65\x85\x95\x22\x94\x08\xbd\x40\x1e\xd4\x25\xd3\x55\x07\x1a\x1c\x83\x1b\xa2\xee\x23\x50\x94\xdd\x75\xfd\x9c\xf1\x08\x15\xf2\x8c\xdf\x54\xa0\xa3\x69\x04\x35\xe6\xe6\x94\xaa\x13\x9a\x4f\x8b\x11\xbb\x12\x45\x2c\x11\x3f\x78\x44\xe8\x2f\x94\x6b\x95\x70\xe2\xac\x72\x49\x0a\xec\x63\xa3\x24\x0c\x11\x9f\x73\x0b\x8a\x1b\x35\xa0\x28\x19\x99\xe9\xea\x39\x26\x23\xf8\x0b\x21\x9c\xae\xa2\xb4\xbe\x6e\xc9\x25\xf7\x52\x61\x32\x5f\xe8\x48\xcc\xa8\xd3\x86\x5e\x55\x1f\x32\xf5\xd7\x0e\x42\x2e\x2f\x34\x39\xd4\xa2\x57\x85\x31\x8e\xe6\x8b\xaa\x42\x9f\x17\xf4\x9a\xa3\x6f\xc7\x3a\x42\xee\xbd\x7b\xca\x9a\x6d\x72\xef\x3b\xac\xac\xd8\xee\x7d\x2f\x79\x45\xf9\xe3\x07\x89\xc4\xe4\x8f\x1f\xb1\xdc\xa5\x68\xf2\xdd\x18\xb4\xfa\x68\xf2\xdd\x44\x92\x42\xf9\xe3\x5b\x4c\x56\xf2\xc7\x0f\xdf\x3a\x88\x43\xc7\x33\x66\x61\xf8\xc9\x28\xd0\x1c\xdf\x08\xc4\xe6\x7c\xa1\x4f\xa0\x6d\xc3\x8b\x4e\x7c\x53\x75\xaa\xde\xfd\xe8\x8f\xe7\x2e\xec\xea\x40\xd4\x72\x30\xde\xb5\x81\xa4\x99\x61\xe8\x07\x96\x76\x68\xd4\x29\x00\x69\x4b\xef\xfc\x6b\xfe\xaf\xb7\xe3\xb7\xe2\x2d\x7f\xbb\x7a\x5b\xf4\xee\xdc\xa7\x0f\x16\x83\xaf\xee\xd4\xb3\x3c\x75\x55\x7f\x17\x34\x70\xc8\xc3\x75\xcb\x15\x42\x69\x93\xe3\x35\xd5\x41\x91\x62\x21\x8a\xf4\xbc\x94\xb4\xec\xa6\x22\x26\xd7\xdc\x3f\xd1\x0b\x83\x25\x54\x0e\xbb\x12\xd4\x04\x01\xdc\xef\x96\xb1\x60\xea\x49\xae\xe7\xf9\x92\x9d\xc9\x4c\x07\x51\x3e\xaf\xcd\x43\x9e\xcf\x9f\xd7\xd1\x22\x54\xa8\x29\xca\xe1\x2f\xae\x2a\x31\x93\xe2\x20\x3a\x35\x3c\xa1\x14\x5f\xb0\xf6\x0d\x9a\x19\x17\x49\x9a\xa3\x35\x31\x1f\x38\xb2\xc9\xeb\x08\x09\x5a\x57\xc5\x36\x1d\x80\xf7\x90\x5c\x92\x8f\x54\x8c\x78\xce\xe5\xe8\xce\xe2\x75\x79\x38\xcc\x83\x32\x29\xd2\x9d\x80\x07\x9e\xaf\x33\x78\xf9\x8e\x5d\x89\xb8\x60\x71\xb0\x98\x8a\x51\x9c\x65\xf9\x25\x5b\x3e\x04\xc0\xec\x05\x44\x12\x78\x48\x6f\x2a\x72\x29\xff\x59\xa2\x8e\x12\xa4\x71\x6c\x1e\xce\xc5\x42\xae\xbc\xdd\x02\xac\x3b\xee\x78\x02\x3b\x80\xd5\x7e\xcd\x7f\x0b\xf0\x03\x3a\x9e\xe9\x3d\x21\xf9\x70\x27\xca\xdd\xdb\xb7\x7f\xbb\xb3\x26\xc1\xe8\x6f\x01\xc6\x91\xec\xc2\xdd\x39\x97\xb2\x4b\x27\xf2\x78\xf0\x2f\x14\x0c\x9c\xf0\xe3\x83\x00\x7f\x15\xc8\x92\x0a\xb1\xbc\x93\x14\xcc\x99\xcb\x49\x16\x97\x65\xc7\x44\xc2\x10\x6d\xd0\x43\x10\xf1\x91\x9e\x15\x26\x75\xdf\x41\x22\xeb\x05\x18\x93\x77\x32\x93\x55\xba\xf9\x17\xe4\xcc\x74\x20\x8a\x98\x97\xab\xbc\xd8\x4a\xe8\x37\xdb\x57\x5a\x85\x4e\x0f\xbc\x19\xa7\x2c\x32\x28\xd6\x8f\xb6\xc8\xe9\xa9\xa6\xb7\x67\xa6\x71\x08\x22\x1d\xfc\x4d\x39\xaa\xbf\xa0\x3c\x3a\x03\x78\x98\xf1\x5c\xd1\x31\x79\x2e\xe9\xde\x33\xb9\x86\x4f\xe4\x3f\xaf\x69\x7f\x42\x3e\xd0\x31\x39\xd1\x26\xe5\x2f\x61\xe7\xa0\x9b\x9c\xe7\x3b\xc6\x45\xbc\x8e\x7c\xea\x9b\xae\xd0\x6b\xfc\x41\xdf\xe0\x1a\x35\x3b\xbb\x84\x33\xc6\xf1\xf4\xb9\x82\x48\xa1\x63\xd7\x2a\x35\x59\x42\xfb\xfd\x02\x36\xfa\x74\x83\xce\x88\x5c\x6d\x94\xd3\xb3\x39\x04\x8e\xe3\x98\x14\xf6\xfc\x71\x9a\x9b\xdf\x44\x71\x2b\x7d\x4a\x73\xa8\x0a\x86\x96\x29\xe7\xac\x80\x23\xa6\x12\x31\x61\xaa\x40\xbc\x7e\xee\x1b\x63\xd6\x89\xe4\xc9\xfc\x6a\x51\x7f\x62\x4c\x5e\x40\xff\x2f\x6e\xeb\xfc\xcf\x34\x6b\xb7\x91\x5c\xe3\x30\x84\xab\x15\x2f\xcd\xee\x70\x66\x34\x73\x04\x54\x76\x1f\xfd\x8c\xd7\x32\xe3\x03\x9d\x60\xf2\x4c\x76\xd1\x1f\x63\x72\x35\x18\x90\xf4\x70\x40\x17\x03\x1a\xdc\x0f\x06\x8c\xa0\xfe\xc3\xc3\x41\xee\x49\x86\x0f\x87\x87\xf3\xe0\x6f\xc1\x02\x87\xe1\x12\x71\xe2\xd1\x59\x58\xaf\xad\xe2\xaa\x72\x13\x2b\x00\xb4\x95\x10\x40\xca\xb6\xa1\x75\x87\x0f\xe7\x6c\x61\xc7\x92\xdb\x96\x6d\xae\xfc\xf0\xf2\x37\xe8\x12\x6a\x5f\xca\x8a\xba\x97\xc3\xe1\x52\xd7\x52\x7f\x6d\xef\x89\x14\xbc\x8d\xaa\xe4\x61\x18\xca\xde\xd4\x90\x4e\xe5\x8c\xd7\x72\xab\x5c\x1b\x81\x48\x72\xf0\x86\x4d\xfa\x48\x5e\xc0\xd0\xba\x94\x24\x7d\x74\x4a\xd1\x47\xfa\xc2\xd7\x79\x4c\x65\x8b\xaa\xed\x33\xfa\x51\x31\xfe\xca\x0d\xe6\x0c\x87\xe1\x99\xbe\x42\x57\x7f\x29\xa5\x39\xbe\x49\x8c\x56\xe0\x8a\xea\xe8\x5a\x52\xc6\x3b\x1b\x6d\xf7\x99\x48\x77\x99\x96\x88\x9e\xdb\x80\xa5\x10\x5a\xee\x99\x1c\xf7\x13\x39\xee\xd7\x5d\xe3\xfe\x40\x4e\xe8\xf3\xee\x41\x3f\xa3\xe8\x03\x3d\x69\x0c\xfa\x99\x1d\xf4\x63\xfa\x41\x0f\x1a\x20\x7f\x36\xd2\xf6\x31\x06\xf6\x8f\xe5\x3e\x09\xe4\x39\xbf\x9a\x5d\xd1\xc7\xd1\x15\xc4\xba\x1b\x3c\xc6\x95\x16\x6f\x5e\xe2\x9b\x27\x72\x70\xaf\xe9\xcb\x4a\xfb\x46\x82\x50\xd4\x7f\x16\x86\x27\x23\x45\x8b\xeb\x5f\x08\xdb\x42\xe9\x0a\x3d\xd1\x17\x7e\xaf\xab\x4a\x79\x2e\xb6\xba\xe7\x18\x6e\x04\xd0\x15\xe5\x78\xca\xe9\x55\xe5\x74\xbb\x96\xdd\x5e\x37\xbb\x3d\x0d\xc3\x17\xb6\xdb\x17\x9d\xdd\x1a\x3f\xae\xeb\xaa\xaa\xd2\x15\x4a\x60\xef\x6a\x95\xb6\x3e\x44\xaf\x93\x0d\xdb\xb2\xf2\xe1\x6e\x97\xa5\x6c\x79\x96\xd7\xb4\xc7\xd9\x95\x61\xf8\x2b\x9c\x6c\xec\xca\x77\x5a\x5e\xb6\x87\x7d\x9e\xab\x50\x66\xe9\xaa\x88\xb7\x10\xd9\x83\x85\x61\x50\x16\x49\xa0\xb6\x83\x5c\x84\x47\x54\xc7\x0b\x47\x29\x5d\xe9\xe7\x4f\x38\xe9\x4f\x48\x7f\x8c\xb1\xb2\x28\x84\x30\x6d\x9b\xbc\x14\xce\x27\xe8\x22\x92\x3c\x9b\x3d\xa2\x1b\x10\xb1\xe4\xd8\x9f\x42\x3f\xaf\xb4\xb9\xc3\x9b\x22\x2b\x03\x3c\xd3\xf3\x6a\xe7\x45\x7d\x3b\x65\x95\xf9\x73\x5e\x0a\x6d\x3e\x70\x24\x23\x0c\xd1\x23\x7a\x2c\x73\xb4\x4a\xf9\xb2\xf3\xb1\x0f\x66\x67\x20\x0b\x4a\xc2\xa8\x57\xf2\x15\xbe\x79\x44\xfb\x13\xb9\x12\xfd\x47\x9f\x02\xa5\x2c\x25\x81\x57\x32\xa1\xe0\xa7\xfd\x67\x97\x28\xa5\x7b\x03\x39\xec\xf3\x7d\xbf\xda\x1a\x84\x8d\xf6\x45\x86\xc1\xc8\x80\x5d\xa4\x99\x3c\x05\x92\x98\xf7\x51\x4a\xcf\x51\x4a\x3a\xc6\xdd\x57\x25\xe5\x78\x1b\x37\x51\x47\x57\x9b\x53\xc7\x33\x0c\x7d\xba\x5d\xe2\xd6\xa6\xbc\x06\xcb\xe7\xc0\x42\x31\x04\x14\x2e\x5c\xfa\xa8\xe9\xff\x0c\x96\x32\xf5\xe3\x04\xfa\x30\x80\x13\x83\x0e\x86\x5c\x0e\xee\x60\xdc\x96\x94\xed\x38\x1b\x37\x3d\xc0\xfc\x68\x2e\xa7\x17\xe0\x0a\x71\xf2\x0e\xa2\x83\x7c\x2e\x70\x60\xfd\x80\x0d\x74\x97\x4f\x62\x40\xc4\xbb\xa3\xb5\x29\xe5\xf8\x78\xa1\xf5\xe8\x2d\x21\xcf\x37\x16\x02\xa6\x40\xa8\x88\xa8\x10\xce\x5a\x61\x14\x4c\x98\x16\xbb\xd4\xd8\xa7\x72\xec\xb7\xc2\xca\x04\x9c\x8c\x11\xc3\xa4\x8e\x73\x39\x96\xeb\x2b\xe6\xf9\xc8\x44\x34\x5d\x84\xa1\x00\xea\x33\x2b\x51\x8c\xbc\x1c\x4c\x54\x4e\x93\x0b\x93\x44\xa9\xe1\xbb\x69\xfb\xb5\x11\x58\x94\x77\xae\xdb\xdc\xe1\xa0\x9a\x9b\x72\xc5\x26\x78\x70\xa1\xb9\x0f\x9f\x0e\x50\x36\xfd\x83\x7d\xc9\x4a\x05\x3f\xdf\xc1\xe1\x98\xab\xdf\x8b\x51\x99\x6f\x59\xf7\x69\x56\xb4\x56\x1b\x54\xc8\xb1\x86\xa1\x8e\xf9\xc1\x9d\x78\x8a\x55\x25\x4f\xe3\x7c\x51\x27\x15\x15\xda\xe9\x73\xca\x06\x41\xef\x06\x5e\x18\xaa\x02\x87\xa7\x79\x2d\x77\x47\xf9\xf9\xe7\xed\xf3\xcf\xcb\x85\xa2\x5d\x39\xe1\xb5\xa8\x74\x31\xa0\x5f\xd3\xe0\xeb\xc1\x7b\x89\x70\xc7\x78\xf0\x75\xf0\x35\x56\xb4\xa8\xab\x85\xa3\x19\x18\x13\x7d\x52\x4a\x96\xad\x4e\xb2\xbc\x4c\xf9\xda\x39\x35\x33\xe8\xfb\xce\x83\x20\x02\xce\xea\x41\x40\xfa\x0e\x8f\x79\x38\x24\xa0\xe0\x61\x57\x42\x69\xb4\x14\x03\xe6\x94\x90\xe8\xb2\x22\x4a\xc7\x1f\x35\xb5\xa9\xaf\xeb\xf0\xa8\x9e\xe4\xa7\x43\x15\x22\xb8\xe0\x8f\xd7\x84\x51\xcb\xe9\x3a\x4d\xcf\x9c\xdf\x11\xc3\xc4\x88\x6b\x3a\xe8\xa6\x3d\xac\x1c\x5f\x0c\x28\x73\x43\xd9\xbe\x47\x8c\xf4\x27\x78\xea\x8e\x5c\x4e\xd4\xfd\x46\x39\x8e\x2e\x06\x34\x97\xc8\xca\x0c\x0d\x77\xc9\xa7\x0c\xe6\x97\x64\x79\xc9\x7c\x59\x40\x4b\x02\x40\xa3\x87\x1f\xf4\x6e\x98\x4a\x71\xa2\x52\xf2\xde\xf3\xd1\x2e\xdf\x21\x7d\x05\x07\x85\x25\x9f\xf4\x6c\x3e\x1c\x5e\xd9\xd0\xa2\x7a\xcd\x24\x9b\xab\xd8\x7d\xde\x29\x4f\x23\x3c\x95\xcc\x36\xdc\x34\xc9\x1f\x44\xd7\x93\xbf\xe5\x16\x65\x57\x49\xb6\x2f\xd3\x0b\xad\x78\x94\x7b\xbe\x91\x84\x38\x9e\x5d\xd0\x8b\x51\xb9\x3f\x2f\x45\x81\xc6\x84\xbb\xf2\x3d\x8e\xd0\xb1\x8e\x89\xe6\xe2\xbb\xf7\x8f\xda\xa9\xc1\xfd\x3b\x10\xbc\xfc\x41\x20\xb7\x43\x55\x0b\xe8\xe6\x74\x9d\xd4\x6f\xf9\x9c\xa8\x67\x84\xc8\x45\xad\x9d\x78\xef\xaa\x35\x3b\xb4\x69\x72\xda\x03\x1a\xc0\x61\xd4\x4f\x03\x29\x5b\xad\x27\x5c\xa4\x22\x05\xd2\x2f\x69\x87\x15\x91\x43\x29\x1f\x87\xf1\x76\x37\x0d\x1c\xc1\xf9\x3e\xa4\x66\xc2\x4b\x7c\xfb\x00\x52\xd7\x32\x95\xf0\x66\x43\x6f\x03\xc8\xfd\xb0\xcf\x65\x3e\xc6\xc4\xef\x06\xcd\xfa\xf3\x78\xf8\xf1\xe1\xf0\x9f\xe3\xe1\x8f\xff\x6b\x71\x33\x21\x77\xc7\xd5\x14\xff\x9b\x7a\x27\xac\xd6\x2d\xfd\xea\x46\xcf\x47\x9c\x36\x42\x29\xbe\xbd\x1a\x8f\x87\x6f\xaf\xee\x8e\x17\x03\x1d\x6d\xcf\x19\xc8\xdb\xfe\xdb\xe1\xdb\xe1\xe8\x6f\x33\xf9\x47\x8d\x40\x16\x50\xfa\xc5\x3b\xff\x42\x7a\x4a\x8b\x01\x7e\x1b\xdd\x81\xed\xdb\x37\x81\x13\xfa\x7d\x6e\xcb\xcd\xdf\xde\x79\xfb\x76\x71\x73\xb7\xba\x83\xc3\xd0\xb0\x6b\x2f\x35\xeb\x67\x78\x39\x6d\x57\x50\xcc\xe5\x79\xf2\x34\xc0\x7a\x67\x6c\x50\x93\xb7\x7d\x74\x7d\x26\x71\x02\x9e\xf9\xe2\xa3\x9b\xeb\x0b\x69\x0e\xaf\xa8\x0b\x1d\x0e\x9d\x75\x9d\x3a\xea\x25\xb0\x35\xbd\xf1\x37\x52\xd4\x1f\x57\xd3\x5a\x8d\x44\x6f\x1c\xd9\x35\x9a\x07\x9b\x6f\x02\x12\x6c\xbe\x95\xff\xdc\x93\xff\x7c\x17\x90\x00\x82\x42\xcb\x25\x62\x01\x09\x76\x01\x5c\x28\x04\xfb\x2c\x20\x41\x2e\xff\xe1\xf2\x9f\x2c\x95\x05\x03\x12\xa4\xa0\x6c\x2a\x72\xbe\x86\xe0\xcc\xea\x2b\x7d\xcf\x20\x6e\xfa\x52\xfe\xd9\x14\xb2\xa8\xfc\x67\x99\x5e\x04\x24\x80\x50\x47\xf2\xef\x86\xc5\x4b\x59\x2c\xde\x29\x8f\xd9\x40\x9c\xe7\xcb\x6b\xf9\xb7\x80\x6c\xf9\x8f\x2c\xb0\x2b\x64\x71\xcd\xd5\x2f\x48\x4b\x47\x15\xdd\xc4\x72\x26\x05\xbc\xe3\xaa\xfc\x0b\x03\x11\x17\x6b\x26\x82\x05\x49\xb7\xeb\x68\x0e\x42\xc0\xa2\x22\xce\x89\x8f\xe6\x41\xba\x5d\x9b\x91\xc1\x18\x41\x4f\x46\x82\xf3\xb8\x64\xfa\xcf\x2a\xe7\x42\x76\xcd\x77\x7b\x01\x93\xe6\xef\x03\x12\x6c\x99\x88\xeb\x71\xe8\x95\x90\x23\x10\x42\x42\x4b\xfe\x29\x03\x12\xac\xe0\x6b\x1b\xa7\x99\xc8\x5b\xc5\x61\xd1\xa3\x9b\x8a\x7c\x52\x0a\xaa\xa7\x26\x27\x41\x82\x24\x15\x16\x0a\xcd\xbd\x29\x17\x9b\xb4\x34\x48\xad\x9b\x13\xa3\xe5\xa6\xf6\xde\x93\x1f\x0e\x9c\x08\xad\x2a\xad\xbd\x58\x49\xee\x44\x4e\xe3\xe0\x08\x90\x82\x99\x19\xce\xe7\xe9\x82\x8a\x79\xba\x50\xc2\x7f\x4e\x4d\x54\xc9\x1b\xad\x3b\x89\x18\xd1\x44\x3b\xca\xab\xea\x53\x6f\x9d\x59\xd3\x4e\xa5\x33\xd7\x1a\xf3\x31\xe8\xcb\x47\x5c\xd9\x56\x70\x34\x01\x6d\xf9\x88\xa3\x52\x69\xcb\xbf\x05\x5d\xf9\x88\xa3\x4c\xe9\xca\xef\x62\xb2\xa2\x72\x00\xd1\x6e\xf4\x07\x01\x7e\x1d\x86\x92\x8c\x4c\xc8\x33\x92\x94\xfa\xba\x1f\x12\xd5\x7d\x67\x45\x96\x9d\xce\xd2\xb6\x01\x02\x56\x41\xa6\x26\x49\x29\x03\x22\x6f\x7c\x1a\x51\x3e\x8a\x31\x58\x39\xd9\x1a\x72\x9d\x4a\xfb\x1c\x65\x20\xe2\x75\xb0\x90\x83\xd7\x15\x76\xa3\x35\x46\x7b\x84\xa5\x28\x09\x9b\x6b\xb8\x2e\xf2\xfd\x6e\x28\xe9\xb3\x44\x9b\x16\x97\xc4\xa3\x58\x5b\x1d\x3c\x51\xa6\x76\x28\xd5\x01\xc2\x50\x21\x3b\xbd\xa9\x48\x49\x6e\x9c\x99\x56\x18\x57\xd3\x25\xf0\x94\x67\xd7\x3b\x56\xd2\x15\x59\x9a\xc3\x2f\xf9\xcf\x52\xc1\x27\x28\x77\x31\x0f\x20\xc0\x3f\x5d\x7e\x62\x6d\x5a\xfe\xde\xfc\xf8\x0b\x60\x9e\x9d\xad\xe1\x08\x3c\x93\x5b\xe6\xea\xed\x87\x93\xda\xc5\xbc\xc9\x00\x3b\xd7\x53\x6c\x3e\x5e\xe8\xc0\x83\x9c\x16\x44\x8b\x92\xbc\x6a\x5f\xd2\xda\x6e\x84\xb5\xec\x7d\xc7\xb8\x28\x52\x56\xbe\x7b\x47\xe7\x8b\xca\x77\x3b\x68\xbe\x22\xea\xd8\x1c\x04\x65\xfa\x91\x05\xe4\xe6\x96\x38\x0d\x4e\xd3\xd6\xb6\xd6\x7d\x6f\xad\xfd\xc6\x9a\x6f\xf4\xb5\x66\xce\xad\x42\xed\x9b\x8b\x9a\x8d\x13\x81\x4d\x38\x7e\x27\x15\x02\xcf\xd5\x71\x3a\xe7\x93\x45\xe5\xb5\x5e\x7a\xad\xd7\xa4\xb5\xb3\xfd\xe9\x7f\x15\xb3\x56\x07\xc5\x62\x3e\x59\x50\xe3\x11\xe1\x4c\x16\x84\x8f\xb9\x20\x7c\x81\xfd\x3e\x15\x0f\xd7\x31\xa9\x56\x97\x72\x1c\x5c\x75\x0c\xae\xeb\x3b\x30\xff\x2c\xc8\xa4\xd1\xa2\x67\xe8\x6b\xa5\xcf\x7e\xff\xbf\x3a\xa7\xe1\xd7\x4d\x32\x16\x17\xad\xe7\xa0\xdc\x89\xe8\x6e\xc7\x8d\x8a\xfa\x46\xa3\x69\x18\xed\x07\xc0\x54\x2e\xec\x4e\x84\xc0\x8e\x35\x9a\xf2\xfb\x45\x2b\x68\xa0\x8a\x42\x3f\x35\x56\x6d\x24\x9f\x4f\x16\x24\x9f\x8f\x17\xf0\x24\x43\x85\x70\x85\xe4\x7a\x77\x9e\xaa\xcb\x94\x2f\xf3\xcb\x23\x51\x8f\x97\x79\x02\x46\x09\x61\xa8\x8a\x8d\x4c\x02\xa5\xd4\xfc\x24\x79\x77\xc3\x60\x0c\x75\x1a\x8b\x0d\xa5\xf0\x24\xd3\x8c\x45\x9d\xe5\x1c\x03\x1f\xb7\xb4\x4c\xe8\xae\x60\x46\xac\x87\xe4\x56\x52\x49\xd1\x71\x53\xa0\xb4\xf3\xcd\xc9\x82\x7d\xd8\xb3\x52\x3c\xe4\xe9\x16\x22\x06\xfc\x24\xf9\x82\x59\x67\x2a\xbc\xac\x27\xf9\xa9\x0e\xb9\xba\x64\xe2\x2c\xdd\xb2\x7c\x2f\x3a\x83\x61\xc1\xd3\x80\x23\x9e\x5f\x42\xf4\x2e\x32\x61\xdf\xdc\xf9\x4e\xee\x93\x98\xde\xd5\x8e\xcc\x77\xc7\x24\xa1\xf3\x40\xe4\x92\xcc\x9b\x17\x69\xce\x73\x21\x72\xc9\x05\xe9\x57\x6c\x2e\xd3\x25\x30\x32\x1b\xa6\x0b\x28\xb4\x12\x5c\xaa\xef\x05\xc9\x8e\xb8\x29\xec\x05\x4c\xe3\xc5\x79\xc9\x8a\x0b\x56\x90\x63\xc1\x1a\xf5\xae\x4e\x72\xce\xc1\x49\xe4\x9d\x8d\xce\xb8\xd5\x4d\x3c\xb9\x60\x5c\x94\x0f\x97\xcb\xae\xcc\xd2\x74\xf0\x0e\x36\xb4\x7e\x37\x55\xa7\x95\xef\xac\x47\x44\xce\x81\x9d\x00\xd1\xea\x09\x5f\xbe\xa3\x9d\xa9\x0a\xde\x8e\x6f\x70\xc1\x56\x05\x2b\x5b\x27\x09\x0e\x4c\x7f\x42\x0a\xf9\x0f\x04\x70\xad\x0d\x62\xf0\x8d\x8a\xa3\xde\x9f\x10\x06\x66\xc9\x61\x98\x21\xcf\x1c\x06\xdf\xa4\xc8\x7f\xef\xd0\x38\x71\xd5\x6b\x56\x8b\xa8\x6c\x98\xdf\x8f\x8d\x2c\x0b\xe6\x58\xc0\xb1\x70\xda\x1f\xab\xfe\x9d\x8d\x90\x48\x8c\x94\xd7\xde\x74\x59\x85\xdc\x69\xb8\xd3\xab\x83\xeb\x32\xdf\x9d\xc2\x00\xd4\x63\x29\xfe\xab\x01\x57\x47\xde\xd4\x6e\x11\x4e\x9e\x71\x8d\x68\x2c\xac\x2e\xa8\x13\xde\x21\x5c\x75\x58\xdd\x76\xf6\xee\xf8\x29\xd4\xdd\x10\xee\x29\x1b\xa7\xff\xc5\xa5\x8c\xad\x31\x22\x27\x13\x4c\xfa\xc2\x2a\x6f\x1a\x43\xd1\x09\xcb\xb4\x3c\x3e\x9a\xc6\xc2\xeb\x7d\xaa\x24\xf2\x17\x76\x14\x08\xeb\xb6\x74\x85\x66\x3b\xcd\xf2\x47\xde\x22\x73\xa0\x77\x5c\xc1\xda\x63\xa3\x75\x2c\x36\xac\x78\x98\x80\x7f\x22\x26\x40\x5f\xcc\x57\x85\x9d\x80\x37\xb7\x3d\xa6\xcd\x46\xe7\x45\x1e\x2f\x93\xb8\x14\x4e\x5d\xc2\x6c\x54\x7a\x7f\x0a\x06\x44\x9e\x03\x84\x94\x2f\x9b\x30\x45\x06\x49\xcb\x6d\x04\xa7\xf6\x59\x5a\x0a\xc6\x59\x81\x02\x61\xcf\x19\xe3\xcb\xa0\xfb\x4c\x62\xa2\x91\x6c\xbb\x7a\xc1\x14\xde\x71\x41\x8d\x49\xa6\x63\x78\x74\x21\x03\x76\xd9\xc2\x41\xc8\xaf\x7d\xa4\xaa\x59\x0b\x3b\x1b\x72\x13\xd7\xc2\x8c\x64\x8a\x36\x69\xb6\x94\x43\x53\x1f\x71\x11\x27\x82\x15\x8f\x63\x11\xcb\x84\x72\x7f\x2e\x0a\xa6\xb8\x25\x1c\xdd\x06\x92\xc7\x2f\x4e\x5f\xab\xc2\xa7\xf9\x12\x02\xbb\x35\xe7\x77\x0b\x1a\x1c\xb7\x8e\x17\xdc\x50\x78\x0b\xe7\x6c\xef\xc6\xda\xdd\xb2\x74\xea\x18\xfe\x77\x56\xaf\xb3\x85\xee\x05\x3c\xb2\x04\x7a\x80\x1d\x6b\x53\x4f\x09\xdd\x02\x9e\x30\xbc\x7d\x3a\x5f\x08\xf9\x4e\x1a\x73\x2b\x75\xf2\xa8\x59\x63\x55\x5a\x94\xa8\x4b\x74\xdb\x39\x3e\x70\xc4\x91\x73\xc5\x2c\x08\x22\x31\x4d\x8e\xaa\xdb\xfb\xfd\xff\xe2\xfe\x15\x4c\x17\x7e\x5a\x33\xf1\x54\x47\x28\x3e\xe6\xd6\x64\x22\x18\xbf\x33\x01\x71\x6c\x02\x9c\x2d\x83\xde\x6d\xaa\x6c\xd6\x29\x22\xe1\xc4\x2a\x30\x87\x3e\xe6\x5d\x28\xc9\x97\x17\xc9\x06\xdf\xc6\x6e\x1e\x0b\x2b\x9d\x13\xfd\x56\xb4\x98\xe7\x8b\xa3\xcf\x45\x4f\xda\xa2\x8c\x25\x7f\x15\x59\x75\x5e\x27\x49\x8e\x32\xbf\xe4\xac\x78\x6c\xf9\xd2\x46\x82\x11\x4c\x7f\x49\xd9\xe5\xe1\x90\x4b\x39\xfc\x02\x8d\x09\xfc\xe7\xd8\xba\x39\x8f\x30\xf7\x40\x59\xfa\x53\x96\xc7\x02\x48\xe7\xd8\xb3\x4d\x73\xdf\x69\x83\x80\xf1\x93\x29\xbf\x6f\x4d\x75\x5d\xc8\x88\x39\x1f\x4e\x16\xb5\x19\xaf\x23\x4c\x89\xf6\xbd\x97\xab\x34\x11\x83\x0d\x62\xf3\xe0\x3c\x2f\x96\xac\x18\xc2\x9d\xca\x50\x31\x79\x0b\xc9\x27\x8e\x1d\xbe\x64\xeb\x2b\x13\x52\xc6\xc5\xaf\xb2\xa4\x52\x27\xc0\xf7\xcf\xc0\x06\xaa\x47\x5b\xc3\xb0\x6f\xdf\xd4\x58\x6a\x8d\x88\xdc\x83\x72\xb7\x9d\xe4\xdb\xdd\x5e\xe8\x1b\x1b\x75\x4d\xe6\x82\xbc\x9e\xf6\x4d\x45\xd4\xce\xb8\x9d\x31\x5d\xdc\xb2\x55\x48\x4a\xd9\x3c\xd8\xc5\xcb\x65\xca\xd7\xc3\x60\x90\x2f\xa6\x72\x6f\xd0\x0d\x4a\xeb\xe0\xa0\x15\x2a\x54\x64\x2f\xd9\xdc\x20\x1f\x41\x37\x24\x06\x3f\xff\xdd\x20\x1f\xa9\xee\x48\x49\x37\xa8\x18\x01\x7c\x30\x49\xe0\x43\x71\xc2\xea\x55\x75\x0d\xc5\xf3\xfc\x0a\x9c\x78\x46\xe7\xf9\xd5\xeb\xf4\x63\xca\xd7\x61\x88\xe0\x61\xd8\x22\xdf\xf3\x25\x2a\x07\x29\xd6\x21\xd4\xca\x21\x3d\x47\x85\x65\xaf\xd5\xec\xf0\x20\xc5\xc4\x29\x9f\x0c\x62\xac\xa2\x8e\xa3\x44\x97\x57\xc0\xd0\x40\xc0\x83\x18\x63\xd2\x3f\x72\x75\x0e\x30\xb7\x08\xd0\xfc\xd0\xfa\x17\xb0\x83\xbf\x51\x31\x75\x1a\x23\x1c\x0a\xb2\xa7\x8d\x51\x0c\xf9\x74\xd2\x57\xe2\xce\x28\x3e\x2f\x11\xdc\x88\x97\x43\x9a\x61\xe2\xa5\x83\x5b\x5f\x32\xa4\x7b\x0b\xe1\x0b\xa4\x60\x4b\x00\xa2\xa4\x24\x89\x0a\xe5\x73\xda\x2d\x2f\xbc\xfe\xe5\xef\x7f\x2f\xe2\xdd\x26\x4d\x4a\x3d\xd2\x59\xd7\xf4\xdc\xc0\xea\x30\xcf\x76\xbd\xaa\xf3\xa5\xee\xae\x8a\xba\xc2\xb1\x38\xf3\x6b\x26\x1e\x3d\xca\xaf\xaa\xfa\x20\xaf\x5d\xe7\xc0\xd9\x69\xb7\x63\x85\xad\x58\x6b\xd4\x15\x52\x10\x6a\x1f\x11\x61\xb6\x10\xb8\x46\xc8\x43\x16\x2d\xeb\x43\x77\x51\x07\xec\xd1\x0a\xc9\xab\x88\x91\xeb\x48\x10\xa8\x1d\x71\xa2\x6a\x47\x85\x52\x98\x5f\x7f\xea\x3d\x55\xc3\xea\xc1\xd1\xa5\x3a\x72\xac\x4d\x55\x07\xd8\x24\xeb\xd8\xa2\xaf\x80\x65\xa8\x51\x99\x31\x3e\x2d\xd6\x4c\xd4\xc2\x85\x4b\xd4\x52\xcd\x85\xb6\xd9\xdb\x35\x72\x2a\xfb\x51\x5e\xbd\xde\x18\x61\x0a\x3e\x7d\xfd\x26\x87\x3f\xf0\xc3\x81\x69\xb0\xb5\xf2\xd5\x14\x7c\x22\x6b\x33\x65\xe3\x47\x78\x6e\xb7\x7b\x6f\x5c\x0d\x90\x31\xb3\x6e\x5d\x80\x33\xa3\x22\x4c\x3d\x29\x41\x1e\x76\xca\x8a\x5d\xdb\xe4\x0a\xf0\xe8\x35\x3c\x5c\xa3\x7a\xc8\xeb\xe6\x8e\x78\xff\x3f\x7e\x71\x2a\xc7\xfb\x8a\xc5\xcb\x17\x3c\xbb\x9e\x35\xbe\xb5\x23\x3d\x89\x1b\x7e\x9b\xa9\xe3\xb7\x69\xa6\xba\x43\x31\xb9\xb9\x8a\x04\xb9\x8e\xb8\xde\x5b\x85\xd9\x5b\x39\x11\xf9\x2e\xe2\x04\xd0\x53\x24\x06\x05\x51\x98\x27\xca\x07\x9c\xc8\x53\x1d\x89\x0a\x93\xb8\x92\x34\x7b\xa7\x9c\x63\x6e\xd4\x0a\x47\x8c\x38\x70\x8d\x78\x85\x2b\x72\x79\x6c\x8b\x12\x61\xe2\x52\x81\xbd\x33\xec\x20\xc5\x6b\x29\xbe\xcb\x11\xdf\xbd\x54\xc9\x80\x70\x52\x9f\x5a\x47\x0d\xe4\xc4\x85\x38\xbb\xde\x99\xd7\xe1\xcf\x36\x0c\x9e\x7b\x3f\x8f\x93\xf7\xbd\x5d\x91\x5f\xa4\x4b\xb6\xec\xc5\x65\x0f\x1e\x77\x65\x82\x15\xbd\x49\xfd\x6c\x88\x69\x77\x64\x5e\x08\x35\x55\xdf\x19\xd3\x6c\x39\xc5\x22\xcf\x32\xc9\x12\xea\xb0\xc6\xa6\xcc\x89\xb8\x7a\x47\x8b\xae\x33\xa2\xe5\x8a\x96\x87\x53\x93\xc0\x77\x4f\x61\xd2\x33\xe5\x4c\xa0\xbc\x25\xe9\x9d\xef\x85\x0a\x8c\x35\xee\xed\x0a\x56\x4a\x7c\xaf\x42\x68\x74\x6e\x1e\x8b\xef\x9e\x58\xb7\x77\x8b\x13\xd5\x7e\x51\x03\x42\x6d\x6c\xa9\x6b\xe0\xce\xb1\x7d\xdd\x01\xc5\x7c\xd5\x93\xbd\xf6\x02\x5d\x33\x18\x7d\x6d\x02\x19\xb4\x17\x74\x6a\x42\x1d\x48\x5e\x53\x47\x50\xd0\xf6\xbb\x18\xb7\x20\xee\x2a\x29\x5c\x5d\x8d\x5b\xc4\x72\xbb\xb8\x6a\xc8\xe3\xfc\xff\x5f\x86\x4f\x2e\x03\x44\xe1\x53\xba\x70\xd0\xe3\x40\x90\x8e\x5a\x7d\xe3\x40\xd9\x55\xd9\xa8\xb5\x68\x02\xbc\x96\xd8\x5a\xba\x14\xd0\x6f\x5b\x5d\x46\x7b\x3c\xaa\x00\xea\x5c\xde\x76\xc7\x7e\xb7\xae\xa2\xe4\xc8\x3b\x09\x9f\x37\x86\xce\xd0\x7f\xc2\x12\x3c\x04\x5e\x02\x1d\xa8\x4b\x9b\x97\x29\x9f\xb1\x4e\xd2\xd4\x1e\x9c\xc1\x84\x8e\x52\xc7\xa7\x58\x0e\x8e\x21\x7a\x05\xbb\xba\x6e\x85\xc1\x72\x9c\xfc\x1e\x22\xa6\x89\x31\x69\x90\x49\xf5\xcc\x43\x03\xe3\x59\x2f\x1a\x62\x15\x7a\x2e\xc4\x1a\x8b\xed\xe4\xb5\x56\xbb\x6b\xa0\xce\xfd\x05\xf3\x2f\x4d\xda\x8d\xb8\x14\xba\xab\x2d\x47\x79\x25\xe9\xf0\xc7\x6e\x02\xfa\x2b\x8b\xdf\x9f\xc6\x3b\x08\x8d\xa3\x7f\x47\x8a\x9c\xd4\x82\x78\x8f\x21\x73\x04\x65\x6f\xde\xe3\x3e\xdd\x47\x2f\x38\x89\xb9\x3c\x6e\x12\x58\xbd\xb8\x07\xf7\x99\x92\xbc\xf8\xb4\xe4\xdf\x82\x65\x14\x7f\xb1\x77\x45\x7a\xb8\x7e\x91\x2d\xc2\x3b\x9f\x2a\x88\xd8\xf4\x23\xe0\x55\x20\xd5\x05\xae\xa6\xf3\x40\xe3\xc1\x80\x04\x16\x27\x82\x89\x83\x39\xae\xc1\xa2\x5b\x89\xf8\xae\x5e\xa8\x39\x5b\x34\xcf\x96\xb9\x46\x47\x82\x7e\x84\x78\x32\x0a\x29\xcc\xd9\xc2\xfa\x8f\x3a\xcf\xbb\x59\xa7\x94\xee\xc5\xca\x47\xaf\x40\x6d\x64\x0e\xfa\xac\x99\x10\x49\x9c\x15\xd3\x17\x5f\xee\xa6\xdb\x71\x29\xdc\x72\x09\x67\x61\x08\x4a\x80\x96\x27\x38\x83\x5e\xf9\x97\xf7\x6a\x03\x7f\xfd\xf8\x23\x1e\x9d\xe4\xbb\xeb\xb3\xfc\x24\x4b\x77\xe7\x79\x5c\x2c\xa7\x45\x33\x85\x16\x8e\x63\x7e\x51\x11\xe2\x73\x96\x5d\x3e\xd3\xc4\x0b\xca\x8b\x8d\x6b\x9c\x31\x51\x25\xb9\x14\xb0\x53\xea\xfb\xdc\xc1\x25\xa0\x7a\xbd\x3d\x75\xdf\x6d\xe7\x34\x85\xe8\x4e\xbe\x89\xfd\xe1\x80\xf2\x39\x5f\x50\x78\x8e\xbb\x76\xf3\xfe\x0b\x62\x1d\xdc\x1d\x7f\xfb\xff\x94\x58\x07\x9d\xab\xa6\x1c\x22\x47\x5c\xa9\x0e\x38\xfa\x46\xd9\x77\xa0\x1f\x27\x98\x94\xc7\xde\xfc\x03\x4d\x58\xd1\x15\x11\xb3\xa0\x4d\x64\x20\x9b\x97\x28\x1a\x2c\x7d\xa1\x93\xf1\x34\xbd\x5f\x4c\xd3\xc1\x40\x19\xac\xd4\xfa\x9e\x74\x31\x15\x34\x27\xea\xd1\xf7\xce\xbb\x43\xff\xe1\x22\xad\x91\xd3\x87\x50\xe9\x13\xd5\x03\x46\x75\x10\xbf\x62\x94\x48\xf4\x91\xb9\x83\x05\x1d\x04\xa4\x36\x5a\xe7\x58\x4f\x0e\x57\xa4\xa8\x94\x17\xa8\x3a\xcc\x59\xd7\xdd\xcd\x9f\xf2\xd9\x07\x4f\xd2\x1f\xef\x62\xb2\xfb\xd3\xf1\x1a\x56\x74\x3f\x8a\x0f\x87\xdd\x6d\x11\x1b\x96\x1d\x64\x66\x35\xaa\xef\xe2\x2a\xb2\xa1\xab\x3a\x40\x43\x2b\xbc\xc3\x96\x9e\x37\xc3\x3b\x9c\xd2\xf3\x3a\xbc\xc3\xfa\x58\x4c\x07\xe5\x15\xda\x86\xd6\xd6\x50\xdd\xb5\x8a\xcd\xb0\x36\xb1\x19\xd6\x9f\x8e\xcd\x70\x5a\xc7\x66\xb0\xc6\x15\x10\xa2\x61\xed\x85\x68\x58\x2f\x30\xc9\x2b\x72\xdd\x0e\x43\x67\xc6\xa9\xdc\x34\xbb\x34\xa3\xd7\x36\x74\x03\xb9\x6c\x85\xec\xf8\xd8\x1d\x9f\xe3\xdd\x6d\x30\x78\xd1\xd5\x4b\x47\x6c\x8b\x8f\xd1\x65\xf4\x2e\x0c\xdf\xf9\xb1\x2d\x2e\x10\xc3\xd1\x43\x39\x9c\xa9\xf2\xad\x3a\xd2\x18\xec\xb7\x36\x92\xaf\xc8\x55\x3d\x64\xb5\xc8\x0b\x75\xe6\x9f\x77\xb4\x14\x94\x50\xc2\xa9\x7f\x38\x9c\x01\xcb\xfc\x02\x31\x4c\xe9\x55\x45\x9e\xd1\xe7\xf1\x73\xf2\x84\xde\xf9\xd7\xdb\x72\x70\x78\x5b\x0e\xbe\xba\xb3\x26\xaf\xe9\x9d\x7f\xcd\x87\x83\xc5\xf8\x6a\x3e\x1e\xfe\x18\x0f\x57\x8b\xc1\x57\x77\x52\xf2\x81\xde\xf9\xd7\xf8\x7c\x3e\x9e\xa8\xcf\x13\xf9\x99\xcf\xc7\xc3\xef\xd5\xf7\x7b\x0a\xfa\xe2\xa7\x5c\xc0\x80\x7e\x6d\x0a\x2d\x26\x64\xb3\x23\xff\x5a\xaf\x84\x74\x85\x9e\x3b\xee\x02\xcf\x94\xab\x99\xd1\xfe\x09\xcf\x34\xc1\xea\xbc\x40\x95\xfe\x62\x35\xb3\xbf\x10\x8e\xd8\x94\xd1\x0c\x09\x3c\x13\x83\x20\x88\x84\xf2\xab\x31\x16\xc1\xcd\x7e\xd5\x42\xb1\x68\x20\x6b\xd5\x86\xb3\x4f\x48\x60\x79\x95\x0f\x3a\xa0\x02\x76\xbc\xd5\x4f\x4c\xda\xec\x3d\x62\x3a\x96\xda\x5d\x4c\xf8\xec\x6e\xf4\x03\x8e\x5e\xdb\xdc\x67\xd1\x80\x55\xe4\x31\xad\x63\x4a\xd6\x2c\x56\x40\x1e\x29\x85\xe4\x36\xbe\x22\x2f\xf5\xcf\x94\x43\xaf\xaf\xba\xc3\xd9\x2b\xa7\x7f\x08\x4a\xa1\xe2\x10\xf7\x27\x64\x25\xff\xd9\x48\x1a\xe5\x3d\x59\xda\xbf\x5d\xc5\xf0\xd8\x21\x5c\xe7\xb5\xdd\x50\x41\x52\x9a\xdb\x93\x48\x73\x7d\x7c\xc9\x9e\x0a\x52\xc7\xd4\x48\x09\xef\x52\xbb\x73\xca\x86\xc9\xb4\x19\xdc\x28\x39\x1c\xf8\x03\x89\x2c\xf9\xfd\xf1\xe1\xb0\x0a\x43\x36\xdc\x3f\xa0\x69\x5d\xff\xd4\x8a\x39\x4b\x65\x47\xb0\x75\xb6\x01\xc4\xec\x2b\xa9\x63\x33\x70\x4a\xda\xac\x90\x18\x22\x36\x4c\xec\x02\xad\x66\x2f\x11\x27\xa9\x4c\xdc\x63\x1c\x71\x50\x22\x57\x9d\x6a\xd1\xd2\xcc\x70\x13\x86\xc5\xec\x5c\x1e\x4d\xe4\xcc\x3b\xc6\xae\xa6\xd3\x19\x27\xe1\x2a\x1c\x4b\xba\x42\x0e\x5d\xd4\xaf\xf4\x91\x84\x1a\x3f\x5f\x0b\x06\x1b\xc1\xb7\xe3\xb4\xef\x29\x23\x8d\x39\x0a\x4c\x76\x6a\x38\x71\x85\x12\xe8\x67\x65\x5a\x00\xa9\xc5\x14\x2d\x71\x47\xd5\x73\x94\xd4\x8a\x6d\x3b\x02\xf5\x2a\xa6\x5f\x14\x93\xd8\xde\x31\xd0\x5f\x91\xc0\x87\xc3\x98\x64\x88\x4b\x99\x7a\x47\xfb\x7d\x3e\xca\x58\xbc\x94\x54\x21\xa5\x68\x45\x83\x6d\x7c\xf5\x6b\x9c\x8a\x20\xe5\x3d\x8e\x67\x8f\xd0\xaf\x88\x8f\x74\x1a\x54\x15\x38\x4a\xc9\x86\x06\xa2\x88\xd3\x4c\x1e\x39\x59\x70\x26\xdb\x31\x29\xd1\x06\x93\x8b\x0e\xca\x6d\x1d\x38\xca\x30\x6c\xce\x70\x0f\x57\x2c\x09\xcd\xa9\x59\xaf\x8a\x5c\x8c\x56\xd9\xde\xb7\x78\x68\xcd\x78\x16\x47\x6b\xb4\x84\x58\xb7\x17\x15\xf9\xad\xfb\x18\xc2\x81\xfb\xe3\xc8\xfb\x11\xfd\x31\xc9\xbf\xf4\x6c\xfd\x66\x37\xa2\x06\x64\x41\x03\x0d\xc5\x1a\x1c\x3a\x21\x92\x3c\xee\x6d\xd0\xca\x31\x79\x05\x43\xba\xa9\x6b\x68\x80\x47\x82\xd4\xc5\x2a\x5c\x91\xa7\xf4\x66\xc9\xce\xf3\x3d\x4f\x58\xf4\x8a\xc8\xa1\x09\x91\xb1\xe8\x8f\x8a\xbc\xe9\x22\x32\x4f\xe7\x6c\x51\x91\x9f\xbb\xa8\x46\xd7\x05\x43\x45\x7e\x6a\x03\xbb\xf3\x49\x58\x75\xb1\x5e\x91\x5f\x3a\xef\x29\x5d\xf9\x54\xab\x79\x0e\x07\x2f\xf5\xe7\xb3\xd3\x67\xe6\xce\xd2\xb9\xce\xf8\xbd\x6e\x05\xfd\xde\x69\xaa\xa6\xc8\x61\x18\xd6\x54\xcf\xcf\xb1\x0e\xc4\x5d\x97\x35\x76\x9e\x9d\x17\x32\xdd\xb7\x2e\xa6\x43\x3f\xa2\x20\xa5\x36\xbd\x6f\x7e\xd7\x1c\xcb\xcc\x8c\x2e\xb2\x3d\x62\xe4\x06\x20\xfa\xfb\xff\x88\xc7\x90\xff\xe1\xba\x27\xf6\x25\x33\x5c\x3f\x83\xfd\x3b\x12\xd8\x05\x98\xf3\x44\xc3\xac\xc1\x12\xd4\xec\x92\x73\x96\x5e\xb1\x15\x2b\x18\x4f\x8c\x7e\x01\xd4\x1a\x9b\xb8\xe4\x5f\x8b\xde\x39\x63\xbc\x97\xf2\x54\xa4\x71\x96\x96\x6c\xd9\x1b\xf6\xca\xfd\x8e\x15\x08\x7b\x25\x24\xcb\xc7\x96\x41\x6d\x62\x04\xb7\x57\xa2\x1e\xff\x7f\x3a\xbb\xe9\x3f\x0d\x5b\x59\x32\xf1\xd2\xac\xd3\x8b\xd5\xac\x8e\xf3\xeb\xa4\x76\x6e\x8f\x3a\x82\xe4\xe1\xd0\x59\x0b\x8c\x1b\xbc\x65\xfe\xca\x05\x20\xfa\xaa\x7b\x08\x87\x83\x2f\x2c\xb7\xfb\xa3\x82\xc0\x06\x92\xd2\x91\xdc\x16\xff\x71\xec\xf5\xfa\xb6\xb7\xa4\x75\x0e\xf5\x55\xb7\x47\xf4\xb5\x9f\x56\x1a\x05\xb8\x32\x51\x23\xc9\x3f\xd4\xaf\xff\x44\x02\x77\xbf\x95\xaf\x46\x0b\x42\xfe\xf4\xd8\xc0\x3a\x77\x90\x7d\xe5\x5a\x74\x0f\xf3\xb5\xdc\x0d\x3d\x76\xb5\x2b\x58\x59\x02\x83\xb2\x2f\x85\x79\xa4\xe7\x9c\xa9\xb7\x32\xf2\xc2\x1b\xf7\x94\x1d\x8d\x21\x0a\x31\xf9\x6a\xe1\xe9\xc6\x39\xe8\x91\x36\xe5\x60\x8e\xe5\x46\xdb\x08\xbd\xc2\x44\x84\xa1\x5a\xed\x4a\xbd\xb1\xc9\xa9\x20\xa8\x30\xaf\x3f\xaa\x10\x4b\x01\x51\x8d\x1d\x51\x21\xee\x8a\x7c\x57\x8e\xc0\x96\xab\x60\x5c\xbd\x51\xf8\x77\xe5\xd9\xaa\x47\x56\x60\x92\x43\x1a\xc9\x31\x11\x15\x2a\x46\x2f\xf7\x05\x3b\xc9\xb7\xbb\x9c\x33\x2e\x1c\x86\xef\x9f\xce\xd6\xff\xe7\xff\x8b\x11\x29\x63\xff\x23\x30\x29\xdc\x5a\x98\xf5\x10\xec\xff\x04\x2e\xe2\xec\x7f\x3b\x3a\xb6\x7d\x17\xcc\x43\x84\xc5\x11\x00\x7c\x19\x26\xb4\xad\xe7\xac\xe1\x85\x05\x71\xbb\xd9\xec\xd8\xfa\x08\x63\x9f\xc5\x6f\xf7\x2d\x71\x8f\x7c\x85\x23\x06\x41\x82\x88\x7a\xa8\x2b\x65\xc7\x70\xb0\x91\x58\xa6\xfd\xff\x2d\x48\xb8\xfb\xd1\xf8\x06\xb1\xfe\xe7\x2d\xc4\x1a\xf6\x45\x24\x4c\x8b\x4c\x62\xf3\x5a\x87\xcc\x30\x26\x39\x43\x1c\xb4\x6b\x81\x62\xe9\x7f\x86\xf7\x84\x0b\x3f\x24\x22\x3c\x32\x90\x7e\x64\x3a\x33\x0c\x1b\x09\x5a\x1c\x08\x43\xd4\x9d\x81\xf4\x3b\x05\x75\x86\x56\xe5\x79\x03\x28\xe2\xd5\x49\xc6\x62\xde\xea\x3b\x5e\x41\x8f\xf1\xca\xeb\xc7\x7e\xaa\xd6\xe3\x55\x57\x9b\x22\x5f\xaf\x33\xab\xbf\x0f\x48\x4b\x0f\x2f\x28\x97\xa7\xcb\xb8\x8b\xe1\xa9\xa8\x67\x67\xaa\xcd\xd9\xa2\x33\x51\x5d\xb7\x39\xbd\xd5\x0d\xf9\x73\x50\x62\xa7\x0a\x5d\x50\x12\x41\xd9\xe8\xc3\x9e\x15\xd7\xaf\x75\xfc\x04\x30\xc9\x50\x97\x64\x8f\xf3\xed\x93\x0c\x6e\x6e\x7e\x42\x58\xdd\xd0\x59\x1b\x37\x63\x62\xe5\xd5\x45\xca\x34\xac\x08\xc3\x5f\x50\x61\xc5\xee\x42\x7b\xdd\xf2\x11\x33\xb7\xbf\x5a\x81\x95\x42\x1c\x94\xc7\x2f\x4e\x9f\xe7\x4b\x86\x91\x2d\xa0\x22\xeb\x9b\xfa\xf9\x68\x07\x4e\xe0\xc6\xc6\xc9\x9f\xa6\xa2\xac\x6f\xc0\xd4\xbc\xe8\x0c\x9e\x09\xeb\x01\x8b\x69\x17\xa7\x6c\x3f\x84\x2a\xac\x25\x4a\x51\x5b\xa2\xe4\x06\x4e\xa3\x9c\xab\xdb\x97\xe9\xcf\x10\xd1\x26\x87\xf7\xc8\x88\x7a\xb7\x53\x48\xd2\x7e\xa3\xcc\x48\x44\x6d\xa2\xa4\x1c\xdd\x64\x7f\x5d\x23\x7e\xe5\xee\xc0\x23\x7b\xa1\x94\x2d\x93\x82\x0a\x6b\x23\x23\x6a\x1b\x19\xb3\x82\x31\x4d\xf5\xc3\xdb\xca\x40\xb1\xb4\xdf\xb5\x81\x62\x7c\x38\x94\x3a\x78\x35\xe5\x23\x0f\x64\x08\x1f\x0b\x03\xa7\xa1\xa2\xe9\xa8\x31\x6b\x01\x2f\xd3\xd4\x0e\x29\xab\x87\xb4\xa7\x71\x18\x16\x7d\x4a\xd3\xc3\xa1\x0c\xc3\xbc\x4f\x69\x36\xed\xf3\x51\xf9\x3e\xdd\xbd\xe0\xa7\xf9\x5e\xae\xfc\x3e\x0c\xe5\x6e\x0a\xc3\xc4\x40\x2c\x35\x10\xcb\x2a\x00\x68\x5d\x9a\xf6\x27\x10\x1a\xd5\x83\x9e\x5c\x88\x55\x03\x5e\x76\xe3\x40\xa8\x37\xff\x0c\xbc\x02\x86\x48\x22\xbd\x4f\x1d\x03\xc5\x3a\x81\x21\x92\x61\x8d\x0c\x85\xf9\x19\x09\x3c\xd3\xbc\x95\xc4\xef\x41\x24\xb7\xc1\x2c\x80\x72\x46\xb9\x1e\x44\xd6\xbb\x33\x2d\xe1\x51\x54\x63\xb2\x50\x97\x0d\x22\x3f\xa4\x89\xcd\x80\xcf\x20\x0a\xd4\x56\x0f\x5a\xd3\x38\x83\x13\x69\x19\xb0\x3f\x31\x17\x70\x7d\xe5\xf9\x92\x49\x58\x80\x6f\xae\xda\x5e\x25\xd5\x0b\x11\xeb\x25\xd5\xcb\x11\xeb\x75\xad\xa6\xe5\x65\x2a\x92\x0d\x02\xdc\x54\x83\x53\xa2\x84\x24\x2e\x99\x07\x16\xcf\x45\x13\x15\xa3\x24\xcb\x39\xb3\x60\x00\xfd\x8b\xe1\x53\xe5\xf6\x1f\x2e\x99\x00\xcc\x11\x54\x78\x0a\x8d\x35\x20\x7a\x7b\x7b\x39\x2a\xb1\x5b\xef\x93\xe5\x49\xe9\x16\xd7\x30\xb7\x68\xe6\x88\xe9\x40\xbf\x6f\x23\x75\xb6\x5a\x64\xa4\x04\xc3\x01\x1b\x21\xbd\xd9\xbf\xeb\xff\x8b\x51\x5a\x5f\xfb\xca\xa5\x71\xf6\x3a\x49\xa8\x75\xbc\x39\xcd\x97\x8c\x64\xf5\xf7\x2b\xb9\x4c\xfb\xfa\xfb\x05\xf8\xdc\x97\x53\xbd\x82\x66\xfd\x8c\xf2\x51\x2d\x9f\x51\x6d\xf9\x27\x2a\x77\xa8\x13\xa9\x8f\x8d\xfe\xdc\xf3\xad\x2c\xc5\x96\x54\xc7\x89\xde\xd1\x37\xa8\x56\x85\x36\xc9\xe6\x6e\xb6\x43\x06\x9b\x78\xe8\x8c\x64\x64\x8f\xa3\xee\xac\x26\xe9\x52\x0f\xed\x8c\xe2\x26\xb5\xc6\x84\x6b\xa1\x2e\x21\xd9\xff\x17\x84\x3a\xcd\xba\xba\x52\x5d\x62\xa4\xba\xc4\x9c\xfb\xc7\xe9\x12\x16\xb2\x43\xc0\x53\xa6\xa6\x1e\x8b\x81\xac\xa1\x03\x76\x9e\xdc\xd7\x4d\xfd\x9a\x66\xd9\x1b\xb5\xe0\x9f\xdb\x5a\x6d\x2c\x61\x5c\x04\x6b\xc2\xaa\x4d\x67\x1c\xb6\xcd\x24\x3a\xbb\x6a\x5c\xbf\xc0\xff\x09\x39\x35\x6f\x39\xcf\xff\x07\xb9\x29\xd8\x2a\xd2\xfe\x37\xaf\xd8\x4a\xc7\x85\x6d\x23\x47\xb0\x7c\x93\x32\x2d\x63\x9e\x50\x9b\x60\x92\xa9\x44\x92\x75\x4b\xb5\x29\x73\xbc\xef\x6f\x1c\xaa\x1a\x25\xa3\xf3\x3c\xcf\x88\x4b\x58\x4d\x9a\x73\xbe\x4c\x92\x73\x70\xa3\x64\xa4\x2e\xaa\x88\x73\xba\xa3\xc4\xc4\x34\xf0\x8f\xb4\xa1\x20\xc9\xa8\xdc\xc4\x3b\x86\x91\x55\xd4\xea\x86\xad\x8e\x56\x7d\x57\x98\x78\x0c\x58\xdd\xae\xc3\xc1\x45\xc9\x28\xe6\xd7\xc4\x70\x30\x51\x32\x92\xe0\x26\x6a\x05\xcc\x97\xa1\x12\xba\xb0\xa1\x13\x72\xf4\xf0\xec\x7f\xca\x1a\x91\x08\x5c\xe0\xf4\x27\x3e\x60\xfa\x13\x0f\x28\x52\xe0\x75\x00\x32\x61\xdf\x78\xb0\xd0\x78\xab\x01\x09\x9d\xea\x4f\x4f\xb9\x20\x39\x53\x83\x04\x3b\x33\x65\x6f\xa0\xe6\xa5\xeb\xdb\x79\x29\x14\x67\xa6\x05\xe1\x4c\xd4\x9d\x69\xcc\x68\xaa\x8c\x5a\x62\xf6\x99\xc6\x10\xf7\x54\xa4\x8b\x6f\x94\x29\xc4\xf7\x3a\x32\xf4\xdd\xee\x40\x17\xe3\x3a\xd0\xc5\x94\xa3\x7b\xdf\x39\xba\x93\xdd\xed\xb7\xb4\x8e\x2d\xce\x04\xa2\x88\x9b\xe1\xd7\x12\xe9\xca\x13\x77\x41\x18\xdb\xa4\xcb\x25\x03\x7c\x08\xc6\x8c\xc1\x45\x5a\xa6\xe7\x19\x83\x84\x30\x0c\x92\x2c\xdd\xa9\xcc\xba\x95\xa5\xc5\xa7\xbe\x6f\xcb\x7d\x36\x2a\x93\x22\xcf\x32\xf5\x79\x38\x78\xae\x30\x36\x17\xbe\xcc\xf5\x59\xdb\xe1\x45\x3f\x18\x6f\x50\x38\xe2\xa3\xfc\x82\x15\xab\x2c\xbf\xfc\x1d\x22\xf8\xba\x29\xbf\x49\x0c\xa8\xc9\xee\xa4\x11\xed\xba\x7e\x4f\x80\x94\xf5\x73\x6a\xf7\x59\x18\xc6\x0f\xc4\xe1\x90\x3e\x90\xbf\xee\x8b\xd9\x38\x4a\xef\xcb\xa9\x96\xf7\x29\x3f\x1c\xe2\x07\x54\x84\x61\xf9\x80\xf2\x59\x3a\x64\xc3\x22\x8a\x1f\xc8\xef\xfb\xfc\x70\x80\xba\xe5\x03\x3e\x8b\x87\x62\x90\x47\x63\xa0\x37\xe7\x9d\x36\xec\x42\x4f\x15\x48\xb3\x64\xc8\x21\xce\x0e\x30\xe4\x29\x87\x37\x9e\x25\x4b\x7c\x9e\xef\xf9\x32\x2e\xae\x21\x8e\x3d\x9c\x00\x3d\xad\x9f\x61\x4d\x34\x26\x2b\x49\xd9\xa9\x27\x4b\x67\x69\xa7\x0a\x46\x72\xd4\x15\x88\x61\x72\xbf\x74\x93\x34\xf3\x00\xa0\x0e\x9d\x53\xc7\x36\x48\x6c\xf4\x00\x3d\x83\x94\xaf\xed\x45\xc9\x31\x47\x19\x92\xd1\xf9\x42\x72\x1c\xd3\x1d\x78\xb7\x94\x68\x8f\xa7\xb0\x3f\xd0\x5e\xc5\x8f\xd4\x31\xb9\x30\xa5\x34\xc1\x37\x99\x32\xf8\xdc\xe3\x29\xbc\x6d\x53\xed\x9d\xa0\x05\xa3\xf3\x7c\x79\x1d\x86\x4b\x68\xa8\xbf\x44\xc7\xfa\xc4\x87\xc3\x12\xed\x49\x8c\xc3\xd0\x36\x57\xd5\x71\xf9\xb5\x7f\xe5\x45\x5a\xee\xe3\xec\x97\x94\x5d\xee\xf2\x42\xcc\xfc\xcf\x91\x16\x28\x38\x67\x85\x92\x85\xce\x3f\xaf\x9e\x66\x99\xa0\xa2\xda\xea\x64\x6b\x6a\x2a\xa8\xfd\x76\x38\xec\xe2\x35\xfb\xed\xc5\x6a\x55\x32\x41\x4e\xfd\xdc\xdf\x55\xee\xef\x3a\x77\xad\xfd\x60\xe4\x6e\x48\xf9\xfa\x04\x8e\x8c\xb2\x32\x25\x17\x74\x6d\xe4\xa5\x6b\xba\xd6\x1c\xf7\x43\xba\x06\x47\xa1\x4b\xba\xd6\xce\x58\x1f\xe9\xda\xb8\x61\xbd\xa3\x6b\xe5\x4c\xf4\x82\x06\xa5\x88\x0b\xc0\x0c\xc5\xe1\x10\x70\x16\x17\xac\x54\x9f\xb3\x87\x51\x60\x9e\x53\x9a\x7d\x8c\x1e\x0e\x2e\xee\xdc\x25\x67\x34\x48\x18\x17\x60\x23\x41\xf3\xd9\xbb\xc1\xf5\x9d\xbb\xb6\x58\x3e\xbb\x8c\xde\x91\x2b\xb9\xd0\xcf\xe9\x78\xfa\xfc\x7e\x66\x54\x99\xcf\x8d\x2a\xf3\x19\xcd\xe6\xcf\x17\xe4\x09\x7d\x76\x74\x3a\xaf\xe9\x13\x33\x9d\x0f\xf4\x89\x9e\xce\x09\x7d\x02\xd3\x79\x4f\x9f\xe8\xe9\xfc\x4a\x9f\x98\xe9\x3c\xa6\x4f\x60\x3a\x3a\xda\xeb\x90\x33\xb6\x54\x17\x7e\x3c\x0c\x1f\x42\x18\xdb\x77\xf0\xef\xc7\xfb\xf4\x3c\x0c\x2f\xef\xd3\x15\xa4\x9f\x40\xca\xaf\x90\xfb\x18\xd2\xdf\x1b\x05\xc1\xd5\x54\x45\x87\x6d\xa1\x9e\x67\x98\xbc\xb4\x56\x24\xe8\xd1\x48\xb9\xac\x3d\x63\x2b\xed\xcb\x37\x19\x63\xf2\xaa\x5d\xe0\x2c\xdf\xd5\xf9\xbf\xb5\xf3\x5f\xc9\x39\xd5\x25\xfe\x68\x97\x78\x04\x73\xad\x8b\x3c\xa5\x63\xf2\x86\x8e\xc9\xcf\x34\xc8\x61\x8f\x40\x56\x90\xf2\xde\xb3\xd9\xb3\x91\x93\x34\x7c\xe6\x62\xd8\xe1\xcb\xe1\x6f\xd1\x98\xfc\x64\x6a\xa9\xbd\xe9\x57\x53\x69\xb6\x9e\xfe\x7c\x35\xfc\x23\x82\x8b\xe6\x84\x52\xfa\x0c\x3f\x75\xb7\xce\xec\x85\xb3\x57\x5e\x0c\xcf\x23\x7f\x27\x6d\xd0\x29\x39\x1d\x9c\x93\x73\xf2\x8a\xfc\x41\x4e\x07\x2f\xe4\xff\x83\x0b\x72\x81\xa3\x17\xc3\xf3\x3b\x77\xc9\x1b\xa7\xb1\x7c\x76\x16\x79\x9b\xec\x6c\xb8\xf2\x36\xd9\xd9\x70\x15\x6d\xd0\x96\x6c\x07\x2b\xb2\x22\x2f\xc9\x6f\x64\x3b\x38\x93\xff\x0f\xae\xc9\xb5\x04\x8c\xb1\x5a\x41\x63\xf2\x74\x70\x8a\xc9\x1b\x37\xe5\xcd\x60\x8b\x55\x28\xc5\xc6\x0c\x86\x27\xc3\x57\xde\x2c\x7e\x1d\xfc\x31\xf8\xa9\x35\x93\x13\xf2\x2b\x79\x2d\xe7\x31\xf8\x89\xbc\x20\x76\x16\xe8\x64\xf0\xfa\xce\x5d\x3c\xf8\xa9\x3d\x9b\xe1\xe3\xe1\xcb\xe6\x8c\xd0\xe3\xc1\x07\x59\xfc\xe7\xc6\xcc\xde\x0f\x7e\x1b\xfc\x1c\x6d\xd0\x63\xf2\x9e\x7c\x90\x73\x1b\xfc\x4c\xce\x88\x9a\x19\x6c\xc9\x5f\xe8\x33\x8d\x21\xe4\x9e\x23\xbf\xdb\xcf\xb3\x7c\x37\x7d\x31\xa0\xbf\x0f\x91\x07\x00\x63\xb6\x83\x7e\x1f\x3c\x25\xcf\x3c\xda\x3b\x7c\x3d\xf8\x09\x63\x4c\xce\x06\xf4\x97\x21\x7a\xd3\x59\xeb\x97\xc1\x1b\x5b\x4b\xed\x9f\x0f\x83\x9f\x31\xc6\xd5\x95\x42\xa8\x37\x2c\x8b\x9e\x81\x77\xd3\x53\xe5\xc8\xf4\xa6\xf6\x04\xbe\xaa\xc8\x96\x8e\xc9\x69\xdb\x5f\x40\xb3\xa4\xd9\x68\x5f\x32\x50\x75\x61\xf5\x8a\x2a\x11\x94\xcd\xc7\x0b\x30\xd2\x9b\x2c\xfc\x37\xa1\x55\xe9\x27\xab\x15\x4b\x04\xee\x0a\xd1\xc2\xd1\x60\xb0\xc5\x2a\xd6\x2c\x11\x15\x59\xbb\x71\x44\x2e\x3e\x61\x3c\x30\x63\xd1\x75\xcd\x1b\x5c\x23\x7c\x53\x7f\x3d\x54\x54\x5b\x0b\x80\x2c\x0c\xcf\x11\x23\x37\x86\x30\x47\x82\x00\xe1\xae\x37\x0a\xa9\xe9\x7a\xe4\xa0\xa3\xaa\xeb\x31\x0e\x47\x53\xc8\x32\x70\x60\x93\x58\xae\x80\xe7\x5d\x56\x62\x2a\xea\xc5\xa5\x9c\x08\x67\xe5\x69\xe1\xbd\xdd\x71\xe9\x5f\x3a\x50\x30\xff\x54\x4a\xb6\x38\xe5\xa5\x51\xb8\xc9\xdf\xc8\xbd\x7e\xf8\xe8\xbe\x4e\x50\x5f\x79\x28\x4b\x55\xcf\xcc\x85\x7b\x4f\x22\xd5\x97\x56\x79\xdb\xec\x36\x75\xcc\x6e\x73\xc9\xc9\x8e\xa7\xf1\xfd\x7c\x1a\x0f\x06\x38\x9d\xc7\xae\xd9\x6d\xbc\x98\x16\x60\xac\x74\x24\xfa\x4e\xb7\x9d\x6d\x2a\x57\xd9\x32\x75\xf0\x62\x2b\x58\xeb\x14\x24\xaf\xc7\xf8\xce\x7d\x2c\xbf\x3d\x46\xe1\x8c\x11\x64\xe3\xf1\x94\xdf\x67\xc6\x19\xbc\xdb\x15\xdc\xbb\x34\xb1\x77\x76\xad\xa6\x0b\xa7\x69\xfe\x60\x32\xe3\xc3\x49\x04\xb6\xce\x93\x69\x7e\x9f\x4f\xf3\xc1\x00\x17\xf3\xdc\xf7\x37\xcf\x1d\x7f\xf3\x46\x2c\x82\x7a\x59\x41\x2b\xe0\x41\x62\xce\x16\x26\x6c\x71\x81\xd5\xab\x8b\xec\x42\xca\xf4\xf9\x25\x2f\x37\xe9\x4a\x3c\x56\x02\x16\xb8\x7b\xfa\x41\x87\x03\x0e\x21\x02\x21\xde\x42\x00\x5e\x37\x4e\xc2\xb1\x76\x40\x77\x6a\x41\xfc\xe2\xdf\x08\xe2\x5b\x5b\xe6\x7e\xcb\xca\xd6\x9e\x29\x23\xfb\x79\xe1\xb6\x5c\x2c\xa6\xa2\xfb\xd8\x81\x12\xda\x03\xa6\x7a\x0e\xa7\x9e\xde\x99\x77\x29\x85\x18\x6d\x86\x8e\x9e\x49\x64\x15\x49\x91\x48\xcc\x44\xe4\x88\x50\x57\xae\x81\x6b\xeb\x5d\x0f\x78\x3c\xb4\x2e\xfc\xdc\xbb\x1b\x05\x7d\x6b\xa5\x58\xa5\x79\xb0\x49\xd7\x9b\x4c\xe2\x6a\xb6\x7c\xca\x97\xec\xca\x04\x9f\xfc\x05\x6e\x76\x49\x90\x96\x2f\x76\x8c\x07\x24\x50\xa1\xaa\xd9\xf2\xa9\x80\x98\x9b\xb2\x87\x60\x51\x1f\xe8\x27\x80\x68\x5a\xef\x39\x4e\x4d\x90\x00\x03\xfe\x67\xdd\xef\x05\xb5\x23\x56\x83\x4f\x9b\x75\x5b\xa8\xb0\xc4\xb8\xb6\xb7\xd7\x2e\x5a\x7b\xcf\xae\x01\xaf\xbd\x67\xd7\x27\xf9\xb2\xb6\x58\x7f\x40\xbf\xf9\x3e\x0c\xf9\x7d\xfa\xed\x58\xbd\x36\x55\xfb\x45\x04\x0f\x8b\x22\xbf\x0c\xf0\x4c\xff\x18\x08\xd7\x30\xe6\x43\xe3\xfd\xef\xe1\x64\x6a\x0d\x77\x1d\x8d\xdd\xe1\x20\xee\x8f\x0f\x07\xf1\x80\xaa\xc1\x52\xf6\x60\x3c\x1b\x4e\xa2\x62\x30\x31\xda\x52\x31\xb0\xc3\xc9\xef\x8f\x67\x39\x2d\xa2\xfc\x41\x01\x0f\x87\xc8\xf3\x0a\xab\x70\x42\x3f\x7a\x18\xe9\x57\x84\x21\x6c\xb2\x79\x22\x3f\x08\x2a\x4c\xee\x8d\xdd\xf8\x14\xef\x5d\x29\xef\x57\x24\xf0\x14\x9e\x72\xf1\xaa\x31\x72\x82\x5c\xfc\xfd\x6b\xc7\x02\x19\x69\xc6\x2c\x13\x73\x2e\xf2\x1e\x5d\x3f\x5d\xa2\x20\x9e\x4c\xae\x87\xa5\x88\xc5\xbe\x1c\x6e\x59\x59\xc6\x6b\x56\x5f\x61\x8b\xc3\x01\x21\x08\x35\xe1\xe9\xbc\x40\x4d\x81\xf1\xa8\x64\xc2\x06\x15\x45\x41\xba\x0c\x48\x77\x73\x44\x34\x8a\x16\x39\xc4\xb0\x54\xe5\x3a\xf2\xe3\x22\x8d\x87\x59\x0a\xee\x4f\xbb\x3c\x4b\x45\x57\x23\x50\xa8\x60\x19\xbb\x88\x21\xa4\x6a\xbc\x5c\x42\x04\x97\xb2\xa7\x63\x5e\x6a\x7d\x68\x5c\x96\xe9\x9a\x23\x31\x82\x60\xd8\x92\xea\x4a\x5e\x38\x0a\xc6\x01\x49\xb2\x74\x17\x05\x85\x64\x0d\xc6\x3d\xf8\x0f\x07\x46\x53\x1d\x4c\x76\x57\x01\xd9\xc6\xc5\x3a\xe5\x51\x30\x84\x2f\xa3\x0f\x88\x8c\x3a\x83\xe8\x98\x16\xd0\xda\x4e\xc7\x89\x8e\x82\xf8\xbc\xcc\xb3\xbd\x60\x81\xf6\xe2\x86\xb6\x2a\x89\x5c\xa5\xd8\x29\x51\x06\xe3\x4b\x78\xcd\x16\x09\x6c\xac\x9a\x1e\xd3\x31\x79\x44\xef\x92\x97\xf4\x1b\xf2\x8a\x7e\x4b\x7e\xa3\xf7\xc8\x1f\xf4\x3b\xf2\x94\x7e\x4f\xde\xd0\x1f\xc8\xcf\xf4\x47\xf2\x13\x9d\x8c\xc9\x2f\x74\x32\x21\xbf\xd3\xc9\x5d\xf2\x77\x3a\xf9\x86\xfc\x83\x4e\xbe\x25\xd6\xbc\x6b\x55\x30\xf6\x91\xa1\x9b\x3d\x7f\xcf\xf3\x4b\x1e\x3d\x26\xdb\x7c\x5f\xb2\x37\xbb\x68\x42\x52\xc1\xb6\xa7\xf2\xeb\x89\xe4\x23\xa3\x47\xe4\x3d\xbb\x96\xe8\x19\x8e\xc8\x9b\x5d\xf4\xd2\x4b\x90\x3f\xa2\x57\x26\xe9\x49\x99\xc4\x3b\x16\xfd\x66\xbf\xa1\x89\x3f\xcc\xe7\xcf\xf9\x96\x45\x4f\xeb\xcc\x65\xf4\x46\x42\x37\x79\x2f\xb1\x49\xf4\x33\x39\xcf\xf6\xc5\x53\x89\x76\xa2\x9f\x48\xb2\x89\xf9\x9a\xa9\xaf\x5f\x4c\x95\xd7\xbb\x38\x61\x8f\xf6\x42\xe4\x3c\xfa\x5d\x55\xd5\x5f\x7f\x87\xca\xfa\xe3\x1f\xc4\x3a\x9d\x2e\x25\x2a\x51\xd7\x85\xcb\xd7\x0e\xee\x8a\x26\xf7\x88\xc8\xf7\xc9\x46\x8e\x62\xf2\x5d\x85\xc9\x57\xc7\x6c\x15\xea\x08\x99\x1d\x2f\x34\x4f\xf9\x28\x5d\xda\x9b\xd6\x74\x79\x38\x04\x4b\x43\xcb\x86\xc1\x40\xbf\xb7\xbe\x1e\x0c\x30\xe1\xa3\x2d\xe3\xfb\xa7\x75\x69\xf5\x79\x38\xc8\x26\x06\xc1\x50\x7e\x06\x84\x8f\xb2\xf8\x9c\x65\x4e\x31\xfd\x6d\xcb\xc1\xb7\x2c\x08\x18\xda\x29\xa8\xbf\x6d\x41\x1d\x3e\x18\xee\xbe\xe4\x9c\x9d\xa2\x36\xc5\xb5\x26\x71\x6e\x9d\x55\x7d\xc1\xb6\xc3\x60\xc0\x2a\xd3\x97\xb9\x6b\x91\x19\x25\xb8\x49\xc1\xcf\x13\xb8\x9e\xd1\x79\x92\xa0\xa7\xf9\xbe\x54\xcf\xfd\xaa\x2c\x08\x91\xae\xb8\xae\xa7\x4b\x53\x51\x6e\x0d\x1e\x67\xaf\x2d\x43\xd6\xa1\xbc\x2a\x8e\xf2\x6b\x6e\x7b\xee\xc7\xad\x61\xd8\xfa\x14\xb8\x59\x02\x81\xd3\x88\xc0\x53\xaf\xa6\x7e\x6c\xaa\x52\x37\xe3\x4f\xed\xc4\xfc\xdb\xda\x7a\xc2\x00\x97\x3d\xef\x2e\xeb\x17\x55\xaf\x21\x42\xbb\x3f\x37\x28\xed\xb1\x60\x9f\x0a\x35\x9b\xf5\xd2\xfa\xeb\x66\x65\x4c\x1a\xc1\x41\x6f\xe4\xbc\xe8\x13\x89\x30\x3c\x10\xab\x7b\x7e\x37\x6c\xf0\x4d\x93\xe4\x47\xac\x22\x02\xc3\xf4\x81\x1f\x57\xa7\x25\xcd\x79\x13\x00\xcd\x56\x6f\x5c\x9e\x40\xe9\xaa\x6b\xde\x21\x0a\x02\xd2\xea\xe9\x13\xb3\x22\x8a\xdb\x68\x16\x7b\x0a\xa9\x15\x61\x7a\x89\x64\xa7\xb2\x4b\xdf\x62\xbd\xc0\x37\x9f\x09\x80\xdb\x7a\xf9\xf2\x31\x7b\x40\x60\x2e\x04\xec\xf1\x14\x6c\x7b\xa6\x1d\xa9\xc0\x09\x4b\x60\x52\x34\xe6\xf2\x50\xb4\x37\x45\xfd\x48\xb9\x3e\x79\x73\xb6\x98\x2a\x21\x31\x87\x18\xb6\xb6\x36\xca\xa1\x74\xdd\xa4\x3b\xca\x26\xa4\x9c\xd3\xde\xea\x5f\xdd\x97\x2b\x98\xe1\x51\x13\x16\x04\xee\xfa\x3a\xe0\xdb\x75\x82\x49\x4a\x62\x7a\x53\x1d\xd1\x1b\x1b\xbe\xa8\x0f\x92\x63\x53\x72\x70\x58\x50\xf5\xac\xa3\x36\x67\x79\x6a\xd3\x4f\x80\x4a\x20\x36\xaa\x8b\x12\x6f\x91\x2b\x52\x4f\xe5\x21\x5f\xfe\xcc\xb2\x1d\x2b\x4a\x84\xc9\x4d\x05\x66\x5b\x8e\x15\x8c\x1f\x29\x80\x3a\x20\x10\xe6\xe9\xd0\x72\x26\x3f\x22\x36\x4d\xec\xc9\x84\x6b\xec\x57\x10\xb9\xab\x40\x82\x24\x52\x4a\x48\x5a\x33\xf1\xd8\x66\xe3\x6e\x79\x53\x91\xbd\xc3\x13\x17\x61\x98\x8c\xdc\x82\xe6\xb1\x11\x9b\x00\x0f\xbd\xf9\x65\x30\x49\x80\xcd\xa7\xea\xcf\xe1\xf0\x98\xb8\x4e\xc2\xc9\x11\x5d\x80\x98\xb3\x45\x9f\xd2\x04\x2c\xb2\x50\x3c\x67\x0b\xf8\x8d\x35\x47\xaf\xd4\x0f\x68\x6f\xd2\xe5\x5a\x97\x27\x1e\x4d\x55\x51\x3f\x32\x5b\x13\x78\xf3\x52\x4e\xe1\x4f\xaf\x62\xf2\xa7\x56\x31\xc1\x98\x64\x15\xf6\x8d\x4a\x90\xc0\x08\x7b\x90\x88\xb1\x7d\x9f\xdf\x1d\x04\x34\xa9\xfb\x8f\x8f\xf4\x02\xb1\x60\x9d\x2a\x00\x7e\xc4\xbc\x75\x38\x5a\xd5\xba\xf3\xa4\x6e\x1b\xba\xc7\xf4\x68\xb5\xba\xe8\x9b\x52\xc5\xc3\xc8\xf9\xf1\x01\x56\x0a\x6f\x17\x79\x2e\x5e\xb1\xce\xa8\x78\x7c\xf4\x4e\xe6\x3e\xcf\x97\x4c\x11\xae\x35\x13\xaf\xf2\x5c\xdf\x88\xb6\xcf\xad\x3c\xb5\x8e\x07\xe7\x4d\x15\x31\x52\xd2\x78\x54\xb0\xd5\x3f\xd8\x35\x49\xa8\xe3\x5c\x14\x14\x6c\x15\x44\x25\xc9\x54\x3e\xd9\x53\x37\x54\x7c\x4c\xe6\x81\xaa\x15\x10\x28\xb9\xc0\x64\x47\x91\x13\x1a\xf1\xa6\x8a\x04\x1e\x95\xfb\x1d\x18\x35\xbc\x62\x2b\xb8\x18\x22\xab\xfa\x2d\x9b\x5d\x18\xee\xa6\xfe\x98\x47\xca\x92\x96\xf6\xc7\x8d\xc9\xe8\x21\xd2\xa4\x99\xde\xec\x80\xae\xe0\x1c\x2e\xa9\x87\xec\x14\x55\x68\xa8\x04\x61\x17\x22\x94\x4a\xfa\x3a\x4f\x16\xf4\x05\xca\x6a\x70\x63\x92\x8e\xa4\xac\x42\x83\x24\xdf\x9e\xe7\xe7\xf9\x55\x40\xd2\xb9\x92\x3c\xd8\xd5\x2e\xe6\x4b\xb6\x0c\x16\x74\x69\x13\x37\x71\xb9\xcb\x77\xfb\x5d\xb0\xa0\x41\x96\x96\xc2\xab\x21\x99\x47\x59\x7a\x66\xd8\x45\x4d\x51\x75\x36\x30\x7f\x19\x5b\x9e\x5f\x07\x0b\x6a\x79\x45\x92\x62\xb2\x87\x2d\x60\x38\x6d\x65\xc6\x50\xd2\x9b\x9a\x4b\x6f\xeb\x02\x81\x81\x85\x9b\x53\xa3\x86\x51\xc4\xcd\x58\x3f\xb4\xc0\x52\x73\xc2\xc0\xe0\xfe\x83\x5d\xcf\xee\x45\x13\x15\x7a\x64\x9b\x5f\xb0\x26\x55\x44\x9c\xdc\x48\x84\x12\xbd\xaa\xf4\x93\x4b\x3a\xf8\x64\x93\x85\xd0\xb4\xb8\x3f\x26\xba\x78\x87\x8d\x98\x30\x5c\x2b\xf0\x54\x08\x4f\xd9\x83\x31\x84\x0e\x6e\x33\x55\xe8\x03\x9a\x10\x71\x3b\x0d\xc3\xce\xd0\xe4\xf1\x31\xf2\xcd\xbf\x07\x4c\xc3\x7b\xd1\xf0\x73\x00\xf5\xf2\xcb\x00\xf5\xf2\xbf\x0f\xa8\xe1\x17\x43\x4a\x49\x75\xdd\x70\x72\x5a\x52\x81\x9e\x15\x3b\x55\x50\xd1\x6a\x18\x42\x65\x1b\x7b\xa7\x02\xdf\xb4\xc1\x6b\xd4\x27\x00\x0a\xe0\x7c\x8a\x05\x49\x6d\x3f\x72\x8a\x12\xa1\xfd\x54\xe4\x5b\x35\x9b\x42\xc5\xdf\x06\x0f\xf4\xfc\x70\x48\xc3\x30\x85\xa0\x34\xb5\x3e\x60\x99\x96\xf1\x39\x58\xe0\x9b\xd0\xdc\xd0\x5a\x27\xbb\x84\xd4\xb4\xff\xa8\x70\x55\x11\x2d\xda\x7a\x9a\xbd\x23\xfb\xa1\x60\x25\x13\xba\xf2\x6f\xe4\x13\xdc\x31\x34\xce\x47\xe7\x20\xb9\xfe\xa3\x71\x7a\x5b\x44\xb0\x71\xbc\xc9\x4d\xd0\x0b\x3e\x6b\x4c\xca\x1c\xea\x94\xf1\xbd\x1e\xd8\xef\xb2\x63\x6c\x24\xbb\x2f\xef\x18\x64\x79\x8f\xa5\x80\x08\x48\x06\x82\x3f\xa5\x45\x29\x5e\x14\xcf\xe2\x52\x73\x94\x8c\xf4\xc7\x7a\x1f\x3d\xad\x60\x13\x2d\xbf\xb0\xfa\x44\x57\x7f\x63\x46\xbe\x66\xe2\x0c\xa6\xa5\xc4\xfe\x26\x29\x33\xdb\xb2\x49\xc6\x52\x2a\x24\x05\xce\xd2\xe4\x3d\x89\x29\x92\x1f\x2f\x25\x5d\x20\xf2\x97\x06\x04\x26\x25\xd5\x9f\x6f\x76\x24\x81\xdf\x8f\xb2\x7d\x41\x32\x8f\xb6\x09\x32\x0f\x74\x53\x01\x09\x74\x3b\xf0\x4b\xb7\x63\x7e\xbf\xd9\xc1\x2f\xd9\x84\xa4\x7f\xfb\x2e\x9a\x43\x76\xf4\x46\x37\x16\xbd\x03\xd6\x40\x6d\x0a\x05\x73\x48\xc7\xc4\xb6\x1c\xbd\x03\x76\xc0\x2d\x62\xc7\xae\xbb\x8c\xde\xa1\xb2\x5d\xe4\xcd\x4e\x16\x90\x23\x89\xde\xa1\xa4\x91\x2f\x93\x71\x45\x56\x34\x1b\x99\x93\x22\x81\xb6\xeb\xa2\x87\x6a\x35\x02\x55\x3d\x20\x92\x04\xd6\x5f\x0e\xb5\x0a\xa2\xfd\x2c\x80\x57\xdf\x7a\xa0\xe2\x88\x82\x7c\xc7\xb8\xfa\x4d\x1a\x14\x51\x22\xb6\x60\x19\x8b\x78\xa8\x36\x6c\x00\x2f\x0b\xad\x24\x9f\x97\xe1\xaa\x6b\x32\xf4\xf6\xdd\xdf\x51\x47\xc2\xa8\x63\x9b\xbc\x46\x0c\x4f\x8f\x1c\xc4\xb9\x00\xc7\x85\x63\x79\x4a\x2f\x64\x1d\x03\x62\x8c\x38\xd6\x62\x6a\x6b\x09\x3f\x31\x5e\xcb\xf8\x31\x7e\x91\x16\x39\xf7\xcc\x4d\x74\xfc\x2c\xad\x61\xa5\x94\xde\x5a\x58\x19\xaf\x18\x87\x88\xd1\x2a\x4f\xf6\x25\xc2\x9d\xaa\x97\xce\x6b\xce\x36\xce\xf8\x7b\x65\x38\xcd\xe6\x9e\xe9\x0c\x94\xa9\x3a\x9e\x7e\xb2\x43\x29\x5c\x80\xc6\x51\x82\xf5\x70\x50\x04\xe1\xf3\xe1\x50\xf3\xd5\x9f\x2e\x3b\x4a\x97\x00\x36\x47\x55\xf6\x05\xe0\x16\xb2\xbc\x8b\xdd\xff\x61\x01\xb2\x66\xe2\x99\xdc\xec\x6d\x24\xd4\x75\x72\x36\x62\x9b\xfd\x94\x17\x91\x1d\x08\x49\x97\x91\xe5\xe6\x8c\x8a\x03\x42\x83\xed\xf6\x2d\x1e\xfd\x76\xc4\xa6\xb7\x27\xd8\x71\x69\xa4\xa5\x70\x99\x92\x39\x34\x32\x83\x86\x49\xa6\xd0\x9f\xca\x39\x63\x57\x82\xb4\xb1\x9b\x8b\xc9\x00\x7f\xc9\x1f\xaa\x06\xfc\x7c\xaa\x1f\x29\x73\x9b\x09\x16\x18\x2b\xd9\x16\x2c\xb1\xc9\xca\xc3\x77\x64\x49\x57\xae\xa8\xb7\x91\x9f\x0a\x05\x9e\xd3\x55\x9b\x4f\xa8\x71\xd1\xe1\x80\xd0\x4e\x32\xe1\x76\xd0\x54\xe2\xb8\xc4\x90\x31\x7d\xce\x20\x07\x93\x5d\x0d\x0d\xaa\x10\xaa\x53\xc8\x22\xcb\x9d\x86\x12\x55\x08\xd5\x29\x02\xc8\x90\xec\xe9\x0e\x77\xa2\x3f\x85\xba\xe2\xbd\xc8\x93\x7c\xbb\xcb\x98\x60\x41\x04\xfc\xbc\xc1\x6a\x6a\xfb\x2c\x59\x99\x30\xbe\x8c\xb9\x08\xa2\x4d\x18\xd6\xa1\x5f\x8c\x0e\xe4\x3c\x0c\xcf\x1f\xd0\xf1\xcc\xd1\xd3\xa2\x73\xac\x58\x05\xd5\x90\xd6\x66\x97\x41\xb4\x69\x88\x05\x2d\xa1\xa0\xde\x45\x44\x8e\xec\x44\x8f\x2c\x0a\xf2\xd5\xca\x58\x2c\xeb\xdd\xa6\xb7\x5e\x45\xf6\x35\x7a\x6d\x03\xe8\x18\xa6\x84\x63\xd7\xc5\x3b\x68\x5c\x79\x24\xeb\x16\x54\xd9\x5a\xc1\x4f\x2a\x1e\xe1\x0c\xfe\x42\x6a\x9e\xd8\xe1\xac\x2c\xde\xbb\x50\x7b\xec\x0b\xf5\x79\x55\x73\x48\x3e\x96\x6b\x8c\xa7\x0b\xab\x79\x8e\x2d\x9d\xf8\x25\x0c\xfb\xfd\x2f\x41\x73\x5f\x52\x7a\x24\x89\x68\xc9\xbe\x0c\x39\xea\x3a\x1a\xf1\xcb\xaa\x56\x69\xe0\x7d\xd4\x26\x1e\x9f\xdf\xb8\xa4\xad\x1e\x9a\x67\x4d\x64\xfa\x93\x45\xa6\x72\x87\x37\xf5\x18\x7c\xf4\x4e\x26\x7b\x0a\x0c\x49\x9a\xfe\x07\x29\x30\x2c\x61\x75\x87\xde\xd4\x63\xd4\x19\xbe\x1e\xa3\x4e\x6f\xeb\x31\xc8\xad\x6a\x0a\x0d\xcd\x5a\x4d\xd1\xd2\x39\x78\x4a\x85\x7d\x18\xee\xdd\xf4\x60\x31\x93\xa8\xc6\x41\x2c\xa9\xba\xf2\x52\x78\xa8\x56\x3d\x68\xec\x75\x84\x5a\x91\xb4\xb5\x1c\x31\x4d\x47\x39\x87\x2d\x71\x9a\x5f\x30\xf0\xfe\xd3\xdf\x40\xc1\x12\xf8\x56\x8c\x7a\x46\x51\x6a\x19\xf5\x54\xdd\xe0\x4b\xdc\x9c\x82\x60\x48\x76\x75\xe3\x7b\x1d\x79\x2c\xda\x93\x95\xb7\x8e\x29\x90\x33\xdb\x1d\x90\x2c\xdb\x99\x22\x60\x2d\x46\x3e\x35\xc6\x10\x82\x6d\x83\x05\x9e\xda\x5e\xb2\x19\xd2\xda\x78\x75\x6f\xb4\x03\x83\x79\x9d\x62\xec\x0b\x76\x18\x47\x46\x67\x9f\x2d\xe8\x4e\xeb\x9b\x12\xb2\xa1\x08\x09\xc9\xed\xdb\xd1\x00\x3b\xef\xa2\x8f\xac\x4f\xe9\xad\x5a\x78\xb8\xea\xef\x12\xe9\x33\x2d\x27\x3d\x02\x21\x29\x96\x43\x7e\x6d\xcc\xa7\xd5\x36\xfb\x5c\x06\xb0\x59\x77\x52\x61\x72\xf7\xde\x58\xe9\x7a\x1d\xe0\x81\xa0\x81\x3e\xc1\x88\xcb\x5a\x66\x39\xe9\x3b\xb4\x6c\x38\x27\xb7\xef\x20\xcc\x3c\x7e\x56\xde\xa8\x02\x03\x77\x50\x8b\x25\xee\x00\x36\xee\xc6\xa9\xa2\x4d\x27\xc1\x06\xaa\x57\xd3\xd8\x0c\x6b\x99\x25\x37\xef\xc0\xc2\xa6\x37\xf2\x7a\x10\xdd\x0a\x7e\xb9\x07\x2a\x72\x2e\x49\xe7\xaa\xbe\x34\x7b\x0a\x37\xa3\xad\x5b\xc0\x92\xce\x17\x15\xd1\xe8\xee\xf6\x1b\xbf\x9b\x0a\x13\x46\x9f\x80\x21\x53\x9b\xe4\x79\x77\x14\x3a\x64\x83\xa7\x87\xee\x9e\xf8\x5f\x7a\xd3\xf5\xa9\xab\x2d\x29\x40\x32\x6d\x39\x47\x5c\x29\xe2\x2f\x9f\xf8\x71\x5d\xad\xd5\x93\x15\x15\x29\xc2\xb0\x7d\xd9\xf9\x29\xf2\xaf\xee\x87\x9a\xd7\x0a\xca\x10\xc8\x65\x65\x73\x5a\x18\xde\x35\xa5\x45\x9b\x77\x85\x1b\x3a\x5f\x1d\xf7\x60\xdc\xc5\x05\xa6\xea\x2a\xaf\x7d\x9c\x53\xc2\x30\x51\x17\x1a\x9a\x3c\x4a\xf1\xb9\x01\xcf\x6e\xfe\xc8\x32\x46\x46\xa2\x00\x29\xfc\x8b\xaa\x4e\x4c\x55\xf5\x20\xda\x6b\x30\xc6\x69\x98\x2a\x19\x4e\xc7\x01\x8b\xa8\xef\x2a\x5b\x30\x59\x10\x0d\x43\x07\x26\xb5\x4f\xb8\xcc\x78\x38\x99\x5c\xab\x9e\x4e\x95\x75\x50\xe3\xe2\xd6\xd9\x6d\x9d\x5b\x90\x74\x18\x21\x44\x9d\xa6\x09\xa4\x70\x4a\x14\xde\x59\x10\x6c\x1b\x09\xb8\x24\x9c\x76\x5b\x35\x14\xe4\x3d\x08\x15\xc7\x39\x20\xb9\x7f\xee\x8e\xc7\x4a\x8f\x19\x5b\x27\x67\xc9\x86\x1c\x3b\x5c\x09\x8d\x47\x3a\x8a\x48\x2b\x2f\xab\x89\x5c\x32\x2b\xa3\x84\xec\xeb\x86\x9e\x1a\x15\x92\xad\xae\x53\x56\x75\xa5\xdd\x6c\x1f\xed\xc8\xd2\x29\xe2\xca\x60\xb6\xd8\x72\x16\x04\xd1\x92\x9c\xd7\xe5\x5c\xc3\x19\xb2\xad\x4b\x9e\x2b\xce\xe0\x9c\x9c\xba\xab\xdf\x3e\x6c\x99\x61\xd1\x57\x2e\xf2\xd8\xf8\xaa\xd1\x6d\x85\xfd\x28\xb3\xa7\x8d\xbb\xcf\xfa\xd1\x68\x6b\xef\xd2\x98\x45\x18\xa2\x53\x47\xb0\xa4\x9d\xe8\xc9\x6f\x56\x5d\x01\xc3\xe5\xf5\x29\xe1\x95\xde\x67\xb1\x12\x7f\x99\x09\x7d\xe9\xf8\xc8\xd6\x5c\x9c\x39\x34\x27\x8e\xf5\x72\xd9\x0a\x9f\xee\x9a\xa6\x74\xdd\xc4\x7a\xb6\xcf\x4c\x51\x3a\xbf\x9e\xa6\x1d\xeb\xf6\x25\xbb\x77\x41\xd1\x0c\xfa\xa7\xb0\xaa\xd2\x6e\x83\xe9\x3b\xf1\xa3\x47\xb7\x9f\x9b\x72\x1e\xaf\xe9\x81\x79\xab\x68\xdf\xfa\x16\x78\x26\x14\x54\xe7\xc5\x22\x62\xf3\x62\x41\x78\x85\xc9\x8d\x96\x97\x1a\xc5\xbb\x14\x21\x96\x27\xae\xc3\x39\x41\xfc\x3d\x1f\x25\x1c\x79\xfb\x45\xf1\x57\x26\xd6\xb5\xbb\x5b\x6c\x36\x54\x9f\xb1\x46\x42\xd4\xd1\x6d\x9d\x5b\x83\xaa\x91\x81\x09\x73\x46\xe6\x5d\x36\x74\xcd\xcd\x69\xa2\x53\x22\x6a\xd8\x55\xba\x17\x19\x4f\x97\x10\x9c\x53\xee\x46\xe5\x3a\xe1\xa3\xa2\xa7\x5c\xe4\xbf\xa4\xec\xf2\x08\x5c\x3a\x6f\x43\x9a\x97\x53\xcd\x73\xa9\xdf\x0c\xd0\x76\x0c\xd0\xab\xe9\x06\xe9\x07\x53\xac\xcc\xa5\xe4\xb2\x8e\x9b\xab\x6e\x97\x43\x67\x4c\xe6\x12\x2a\x5d\x21\xfe\x60\x6c\x88\xe8\x07\xd3\xc3\x6d\x37\x4f\x1c\x9b\xdb\x99\x36\x59\x2c\x24\x7b\x21\x07\x75\xf4\xce\xe0\x48\x24\xcb\x8e\xb1\x0d\x27\xd3\xe2\xfe\xf8\x70\xe8\x77\x5f\xe7\x1d\x0e\x47\xaf\xfe\xba\x46\x26\x66\xe3\xa8\x20\xdc\xea\x05\x1b\xd7\xf5\xc7\x57\xb0\x26\x9e\x6d\xa2\x09\xa6\xcd\x8e\xce\xac\xa0\x0d\xfb\x83\x5c\xe6\x1b\x46\xa4\xb1\x95\x2d\x5d\x8c\xf5\xa9\x58\x92\xd2\xf6\x6a\x2f\xc8\x49\x62\xd3\x5a\xd7\x2a\x24\xb3\x79\xb5\x9a\x93\xec\x6d\xa2\x95\x4e\xc9\xae\x06\xb0\xd5\x5d\x92\x95\x07\x75\x95\xb6\xd4\x2f\x99\x68\x66\x86\x6c\xf4\x5b\x19\x86\x45\x21\xe7\xb4\x71\x73\x45\xb6\xd4\xb9\xac\x83\x59\x9f\x36\x53\xb4\xf0\x40\xd6\xf4\xf8\xbd\x1e\xb9\xa0\xc7\x16\x8f\x5c\xd3\xfa\xb1\x0c\x6b\x01\x47\x1e\x3a\xa9\xc0\xe2\x6b\xdc\x73\xe3\xc2\x2f\x2a\x49\x17\xe8\xa2\x84\x78\x50\x8b\x32\xe2\x02\x2c\xda\x13\x0f\x56\xd1\x8e\xb8\x60\x8a\x56\x04\x84\x86\xa8\xbe\x59\x24\x06\x64\xd1\x92\x58\x68\x45\x1b\x52\x03\x2a\x3a\x27\x35\x44\xa2\x2d\x69\x81\x27\x3a\x25\x9d\x90\x89\xd6\xa4\x03\x28\xd1\x05\xf1\xe1\x11\x5d\x93\x1a\x14\xd1\x43\xe2\x9a\x40\x46\x06\xb4\x36\x85\xf8\x36\x92\x91\x0e\xac\xe0\x15\x31\x46\x58\x51\xe7\xb5\x37\xf1\x38\xbe\x94\xa4\xcb\x28\x6e\xcb\x2d\xc2\x93\x4c\x0c\xcb\x91\xfb\x5c\x46\x01\x38\xa3\x15\x93\xe2\xc8\x53\x33\x8a\xbc\xd6\xa2\x07\x60\x11\xcb\x86\xa8\xe7\xa2\x35\x7b\x57\xe8\xd7\x3f\xbb\x31\xbf\xde\x2f\x73\x56\x2b\xd1\x08\xab\xb1\xeb\xe2\xe8\xbb\xa0\x3d\x49\xc6\x95\xd3\xd5\xe1\xc0\xc3\xf0\x12\x42\xe7\xf9\x9a\x35\x2d\x17\xb8\x73\x60\xae\xae\x8d\x4a\x01\xc0\x51\x5e\xf2\x56\xfe\x84\xf4\x05\xe2\xe6\xb1\xb7\x30\x64\x6d\x24\x28\x13\x5d\x6d\xdd\xa4\xea\x8a\x57\xc5\xac\xd9\xd2\x8b\xbd\x60\x05\x08\xfb\x88\xdd\x62\xb4\x94\x37\x47\x7d\x96\xef\x93\xcd\x69\x7e\xc1\xa8\x94\x3d\xd2\x5b\xb2\xc7\x15\x89\xbd\x49\x69\xfc\x6e\x27\x42\xfa\x13\x3c\xf5\x2a\x1d\x0e\xc5\xe1\xd0\xef\x98\xdd\xe1\xd0\x98\xdd\x77\x7f\xcd\xf4\x4a\xda\xcd\x12\x4c\xcb\x8e\x87\x85\xc1\x06\x7f\x09\xca\x28\x8e\xc9\xd1\x12\xfb\x5d\x40\x8a\xee\x7c\xb0\x68\x57\x2e\xa1\x24\xbf\xa5\xc8\x16\xf4\x5f\xe9\x2d\x25\xe0\xbd\xe0\xd8\x79\x3a\x88\xef\x77\x8d\xb5\xe8\x62\x7f\xe1\x6d\x6b\x57\x54\xac\x43\xcb\x95\xdd\x6f\xfa\x36\x27\x7d\xbc\x90\x9d\x77\xf7\x53\xc7\xcd\xa9\x1f\x2f\xe5\xcc\xfe\x78\x21\x0d\x00\x40\x17\xe5\x26\xdf\x67\x5a\x11\xd6\xc9\xef\x38\xca\xe0\x7a\xb9\x9b\x08\x6a\xd6\xa0\xf3\x51\x5d\xb6\x83\xf7\x29\xdc\x46\xdb\x6d\xb1\x48\xb4\x2b\x59\x8e\x58\xbf\x1d\xdc\x71\x88\xfb\xcc\xee\x78\x0e\xe6\xf0\x0d\x6c\xa8\x5c\x25\x1a\x93\x54\x48\xb9\x29\x0a\x34\x8c\x5a\x75\x9f\x9a\x9b\x74\xb2\xd4\x65\xce\xb2\x69\x30\x79\xa4\xb4\x69\xe7\xc8\x6d\xcf\xe4\x9e\x8b\xe5\x8f\xf0\x39\xe8\x58\xdb\x15\x26\x8a\xc7\xf3\x35\x9b\xba\x4b\x77\x99\x41\xfa\x33\xe9\xb7\x31\xe4\x36\x52\x90\xb3\xe9\x95\xd9\x41\x57\xb4\xa2\xce\xb7\xd4\xf8\x7e\xa7\x6a\xa8\xf0\x2f\x6d\x5a\x74\x86\x3a\x42\xdf\x92\x6b\x3c\x6d\x70\x25\x8e\x41\x5a\xdb\x4e\x72\xd2\x91\xa7\xaf\x18\xcc\xb3\x32\xad\xfc\xd6\x55\x43\xa3\x64\xfb\x16\x63\xd2\x91\xd7\xdd\xcb\x2d\x17\x1a\x8d\x92\x35\xef\xd4\xd1\x4d\xcd\x39\xd5\x99\x9a\x6e\x9f\x21\xe6\xcb\x40\x1e\x7e\xae\xfd\xd7\x66\xc7\x80\xa6\x9f\xce\xdb\x75\x8e\x72\x26\xa2\x2b\x24\xf0\x6c\x3f\x8a\xbd\xc0\x6a\x48\xb4\x01\x89\x9e\x23\x81\x31\xd6\x42\x68\xa4\xdc\x41\x44\x85\xb2\x51\x57\x58\xe2\xff\xa8\x9f\x92\x4d\x57\x68\x38\x91\x18\xc0\xbe\x0f\xf2\x60\x3c\x1b\x47\x7c\x38\xe9\x76\x2d\x2c\x94\x13\x70\x94\x3f\xa0\x7c\x56\xa8\x92\x91\xe3\xac\xfc\xcf\xba\x69\xa8\x0f\x7a\xb7\x63\xcf\xce\x15\x88\xe1\x91\xc8\x9f\xe5\x97\xac\x38\x89\x4b\xf0\x9a\xc1\x52\x86\x18\x4c\xcc\x6b\x61\x39\x4d\xf5\xab\x1f\x31\x86\x80\x98\x4a\x04\xea\x74\x2a\x1e\x01\x76\x2e\x7f\x4d\xc5\x46\x29\x3a\xf0\x83\xe1\x64\x96\x0f\xe2\xc8\xb4\x31\x26\x7f\xa2\x95\x76\x98\x63\x4f\x1f\xfc\x05\xea\x8e\xa2\x97\xc2\x6e\x68\x69\x36\x6a\x67\x30\x27\x42\xf1\x9d\x7f\xbd\x7d\x7d\x33\xa9\xbe\xba\x63\x1e\x39\x69\x46\x11\xd6\x7e\xb9\xc1\x80\xd9\xe9\x4d\x24\x3c\xdf\xec\x76\x06\x9e\x36\x6b\x82\x9b\x71\x80\x25\xab\xe9\xbf\xb2\xde\xa1\x3f\x2a\xf0\x4d\xdf\x97\x72\x6b\x67\x91\x20\xe7\xc1\x00\x46\x32\x08\xb4\xb9\x06\xbc\xa7\x6d\x14\x69\x12\xfb\x83\xf9\x7f\xa1\x7c\x01\x38\x7c\xc8\x12\xa8\xc0\x15\x2a\x88\x1a\x04\xf8\x4b\xf9\x86\xf2\x4e\x0b\xc0\x16\xfa\x56\xf4\x1c\x57\x5f\x35\xe2\x6d\x1d\x51\x76\x2a\x13\x06\x4f\x81\x19\xf5\x27\xa4\x4b\x01\xdc\x61\x6d\x6a\xc5\x5d\xde\x14\x85\x0b\x08\x37\x58\xeb\x78\x73\xca\x3a\x75\xbf\xa9\x6c\xc3\x21\x1b\x35\x42\x28\x66\x45\x9f\xd2\x7c\x56\x0c\x82\x9e\x6a\x29\x18\xa0\x09\x04\xe6\x08\x7a\x69\x19\x44\x41\xd9\x8b\x0b\x16\xe0\x41\xd0\x8b\x2f\xe2\x34\x8b\xcf\x33\x46\x7a\xfb\x92\xf5\xf6\xbb\x5e\xcc\x97\x3d\xc9\xd1\xf4\xe2\xa2\xc8\x2f\x7b\x72\xf9\x7a\x22\xef\xf1\xf8\x22\x5d\xc7\x82\x8d\x7a\x70\xbb\xd8\x03\x33\x5a\x99\x2b\x33\xd5\x04\x46\x41\x14\x04\x51\xf0\x3c\xd7\xbd\x42\x2f\x75\x0f\xa3\x20\xe2\xb3\x14\x71\x1c\x05\x41\xe5\x0b\x45\x5d\x26\xff\xfa\x21\xa6\x20\x88\x1c\xa7\x23\x6f\xb1\xa2\x6b\xd2\xf6\xc3\x80\xc4\xda\xeb\x00\x3e\x9d\x1c\x25\x05\xc2\xcf\x9a\x09\x8e\xae\x49\x07\xc9\x8f\x3a\xfd\x8d\x58\x9f\x52\x51\x11\x87\x1b\x8e\x6e\x79\x3d\x63\x76\x53\x45\xea\x17\x71\x5d\x6d\xba\x9b\x16\x15\x69\xa2\x69\x08\xe8\xe6\xe9\xb6\xa2\x87\x15\xf9\x4a\xe9\x44\xb5\xc5\x12\x84\xcc\xfb\x4f\x85\x51\x19\x6d\xeb\xaf\x87\x13\x6b\x63\x32\x69\xdb\xf3\x3a\x2f\x73\xa4\xcc\xd7\x35\xa9\xfd\x55\x2a\xe5\xcc\x11\xad\xbe\xdc\x85\xc7\x6e\x03\xe2\xc6\xed\x1e\x58\x72\x1d\xe3\xfa\xec\xa1\xcc\xc3\xb0\x04\xd4\x5a\x2b\x3d\xd3\x59\x1a\xc5\x33\x90\x5a\x67\x85\xbd\x9f\x8e\x71\xf4\x1f\x12\x0d\x3a\x09\xc4\xbc\xce\x2f\x85\xa7\x48\x55\x18\x4e\x22\x2e\x69\x8b\xce\x91\x04\xa6\xc6\x56\x31\x73\x19\xe1\x40\xcf\x04\x30\x4f\xfd\x6c\x38\x57\xb1\xc6\xd9\x9c\x2f\xa2\x9c\xcd\xc5\xa2\xae\x5f\x32\x1b\xc0\x4d\x45\x24\xb7\x94\x6e\x2e\x16\x5a\xfd\x1e\x68\xd8\xdd\xd2\xaa\x1e\x06\xf8\x48\x27\x8c\xc2\x1d\x51\x19\x25\xa3\x78\x14\xeb\x60\x0a\xaf\xcc\x83\x9c\xde\xb9\x91\x25\xe4\x58\xba\xb1\x4e\x2b\xd7\x68\x40\x5a\x05\x92\xb4\x48\xf6\x59\x5c\x3c\x57\x87\x5c\x9e\x1b\x99\xa7\x02\x2f\x36\xf7\x93\xcc\xd1\x81\x15\x8f\xa1\x46\xa7\xc8\x91\x8d\xe3\x15\x51\xbb\xd3\xf6\xe8\xe3\x54\x9b\xec\xdd\x0c\xd5\xc9\xde\x8e\x06\x90\xf1\x6b\xd2\x71\xf5\x63\xf3\x74\xf3\x9d\x79\xe9\x12\x7e\xea\x50\x8e\xda\x64\xc4\x4d\xd2\xe6\x6b\x4e\x8a\xd5\x80\xd7\xe0\x14\x8e\x16\xcd\x2f\xec\x21\x01\x5b\xde\xa0\x25\x17\xfd\xb8\xb9\x4d\xe0\xb5\x4b\xb8\x58\xd1\x49\x56\xb0\x6a\xa6\xbb\xb8\x0b\xc6\xb6\x89\x77\x0c\xdd\x34\x65\xe9\xba\x42\x87\x9c\x59\x67\x1a\x25\x91\xdb\x94\x7f\x53\x50\x97\xf5\x34\x3f\x16\xe8\xe7\xf9\xf2\xda\x7c\x54\xb8\xc2\x15\xc9\x18\x1d\x93\x3d\xa3\x13\xb2\x63\xf4\x2e\x59\x31\xfa\x0d\x59\x32\xfa\x2d\xd9\x30\x7a\x8f\x9c\x33\xfa\x1d\xd9\x32\xfa\x3d\x39\x65\xf4\x07\xb2\x66\xf4\x47\x72\xc1\xe8\x64\x4c\xae\x19\x9d\x4c\xc8\x43\x46\x27\x77\xc9\x25\xa3\x93\x6f\xc8\x47\x46\x27\xdf\x92\x77\x8c\x4e\xee\x91\x17\x8c\x4e\xbe\x23\x67\x8c\x4e\xbe\x27\x57\x8c\x4e\x7e\x20\xcf\x19\x9d\xfc\x48\x9e\x31\x7a\x77\x4c\x9e\xb0\x66\x7c\x01\xc9\xe3\xff\xa3\x19\x2d\x20\x63\xa4\x99\xfe\x66\x17\xed\xbd\x54\xed\x6d\xb1\xf3\x12\x95\xcb\x81\x5f\x8e\x2f\xa3\x65\x23\x45\xb0\x22\xda\x78\x69\x27\x9b\xb8\x88\x13\x99\x7e\xae\xd2\xc1\xfa\x7d\xcb\xc8\x53\x13\xeb\x00\x4c\x70\x4e\x55\x82\x22\x68\x6b\x46\x5c\x55\x6e\xab\xa5\x8b\xce\xfc\x7a\x96\xd7\xc7\xf3\xdf\xec\xa2\x87\x7e\xae\xea\xf2\x92\x11\x13\x3d\xfa\xac\xd6\xe5\x7e\xac\x53\x5f\x18\xc5\xef\xbb\x3a\xed\xc4\x6a\x80\x5f\xd4\x89\xaf\x3b\x94\xb8\x67\x6e\xb6\x55\x0e\x5f\xb9\x2d\xb1\xb8\xf8\x07\xbb\x2e\x5f\xe7\x3f\xc5\x45\xf4\xbc\xce\x79\x05\x1a\xe8\x67\xac\x72\x84\x94\xd7\x2e\xde\x07\xff\x1e\x88\x53\x9b\x52\x61\x63\xbb\x0b\xeb\xfe\x64\xc2\x70\x17\x2a\xec\x76\xef\x94\x45\xbc\x83\xce\xea\xc8\x2c\x95\x0a\xc5\x08\xd1\xae\x7b\x6b\x28\xaa\x11\x5c\xcc\x50\x6a\x83\xd1\xe0\x36\x62\x55\xf9\xad\x60\x36\xd8\x47\x71\xa9\x36\x4d\xd0\xdd\x2d\xbc\xfe\xb6\xb2\xbf\x4e\x53\x92\x49\xbb\xbf\xe1\xa4\x22\xed\xbb\x1a\x08\x01\x78\xd3\xd9\x65\x87\x35\x44\x85\xdd\xee\xb3\x6e\xc8\xfc\x07\x8a\x67\xf7\xa2\x49\x47\x67\x24\xf5\x2e\x45\x49\x3a\x6a\x93\x22\xec\xcd\x70\x7f\xbc\x0b\xf0\x52\xfb\x4b\x3a\x59\x75\x77\x32\xf6\x0a\x2d\xbb\x0b\xf9\x9d\x0d\x27\x5e\x9d\x9d\xbb\x1f\x8e\xac\x89\x5b\x7e\x73\x6c\x3d\xff\xec\x5e\xfa\xab\x57\xfc\x9c\x45\xf2\x0c\x49\xce\xee\x3d\x18\xa6\x82\xc4\xf8\xde\x9c\xc3\x41\x49\x32\xfa\x4f\x94\xdc\xb2\x2a\xfa\xaf\xe1\x69\xf0\xb4\x31\x61\xdb\x56\x94\x54\x24\x53\x63\x6d\xdb\x68\xf8\xa3\xba\x50\xa3\xda\xeb\x51\xed\x9a\xa3\xda\x93\x15\xfd\x27\xda\x11\x5f\xf4\x9a\xa5\x0d\x0b\x48\x3f\x1b\x03\x27\xfd\xa5\x83\xde\x55\x64\x75\x0b\x80\x57\x0d\x78\x5e\x7b\x1b\x64\xdc\x5e\xd8\x54\x2e\x2c\x23\x13\x7f\xc3\x3e\xfc\xcc\x6a\xc3\x46\xbd\x4b\x16\xc1\xdf\x8f\x5e\x7d\x2b\x9c\xb6\xa3\x6c\xe8\x1c\xc9\x55\xeb\x26\xc7\x7e\x8b\xef\x3e\x73\x24\x8d\x6a\x2f\xfc\x83\xe1\xe5\x9d\x1d\xc3\xb7\xcd\x24\xaf\xd6\x15\xd4\xf2\x80\xee\x8b\x23\x5e\xe9\xe7\x50\xba\x5e\xb6\x20\xf0\xb2\x9f\x75\x0f\xe1\x28\xc6\xee\x3e\xa5\xde\x60\x54\x9e\xaf\x85\x36\x7d\x9a\x47\x0d\xea\x88\xc3\x3a\xda\xb0\x66\x1d\xf5\x43\x4c\xbd\xcb\x54\x6c\xf2\xbd\xe8\xed\x20\x5c\x41\x2f\xd6\x7a\x9e\xeb\x1d\x1b\x05\x36\xf0\x5f\xc3\x1b\x92\x91\x9b\x8a\x70\x25\x6b\x7c\x60\xe4\x84\x91\xf7\x8c\xa2\x0f\x8c\x3e\x96\x1f\x34\x61\xfe\xcb\xac\x6d\x33\x47\xcd\x25\x31\x2e\x8a\x94\x95\xe8\x84\x75\xe9\x76\x6a\x63\x8a\xf9\x78\x31\x95\xcc\x5d\xb2\x61\xc9\xfb\x97\x26\xc6\x3b\x3a\x61\x84\x11\x4e\x3e\xb0\x11\x8f\xb7\x4a\x15\x86\xc9\xaf\x5a\xf6\xb9\x4d\x31\xc0\x66\x56\x1f\x00\x8a\x84\xcf\x90\xab\x47\x2a\x1c\x53\x59\xfd\x29\xed\x0c\x1c\x54\x88\x02\xcd\xb1\xd1\x8a\x99\x80\xe4\x0d\x63\x1e\x01\x42\x6a\x31\x3b\xaa\x03\x09\xa2\xff\x23\x4a\x99\xea\xa8\x08\xd8\x35\xf7\x0e\x8b\x5c\x34\x26\xbe\xb6\x09\x23\x21\x47\xba\x89\x4b\xf5\x32\x98\xa9\x33\x92\x2b\xd2\x50\x58\x7c\xb9\xb2\xc4\x51\x4a\x3c\x66\x47\xb6\xe1\x7b\x99\xa1\x75\xe5\x8d\x2d\xfe\x2b\x53\x06\xb0\xca\x87\x5b\xe1\x6b\xfd\xcb\x35\x26\xe9\x34\xd6\x04\x25\xc5\x11\x68\x81\xf7\x99\x6f\xa0\xb8\xab\xdf\xf3\xb7\x26\x8b\xa2\x61\x8e\x44\x96\x54\xb8\xd7\xa7\x64\x73\xc4\xb8\x67\x3f\x8a\x47\xfb\x92\x9d\xc4\x59\x76\x1e\x27\xef\xdd\xe3\x24\x0b\x09\xca\x98\xfc\xa5\x6f\xdd\xec\x1e\x6c\x87\x72\x21\x29\x85\x92\x98\xc4\xb4\x40\xa2\x15\x8e\x84\xdc\xe8\x13\x11\xa5\x55\x7d\x95\x50\x30\x64\x5f\xb2\x21\x31\x26\x71\x85\x09\x84\x55\x49\xcd\xc8\x4c\xa4\x98\x82\x08\xd9\x74\x3a\x1f\x2f\x48\x49\xd3\x3a\x0a\xed\x9c\x41\x20\x12\x4c\xca\x45\x85\x5e\xb3\xd6\x23\xcf\x82\x82\xc6\xa4\x81\xf6\x20\xb2\xa9\x4c\xee\xc0\xa4\x85\xce\x32\x48\xd4\xd8\xae\xb4\x6d\xa2\xef\x8f\xc3\x50\xcc\x58\x83\x86\x0b\x5c\x5b\x53\x14\x3e\x06\x16\xc4\xc3\xf7\x95\x0a\x54\x47\xce\xe9\x46\xce\x6b\x4b\xcf\x0d\x16\x58\xd3\xf3\x36\xfb\x72\x41\xcf\x7d\xed\xd6\x35\x3d\xaf\x59\x0c\xf2\x90\x6e\xe6\x93\x05\xb9\xec\x32\xb4\x7b\xe8\x5b\x04\x03\xc8\xb5\xb5\x6e\x45\xce\x3a\xef\x68\x1b\xfe\x3a\x60\x84\x9c\x2e\xe1\x99\x2c\xeb\xd8\x52\x7b\xb5\xc4\xd4\x71\x15\x20\x10\x63\xcc\x53\x49\xb8\x0e\x44\xc5\xcc\x8b\xf9\xc6\x10\x8e\x0a\x03\x64\xa3\x00\xc9\x0f\x87\xa4\x8e\xdd\xa6\x75\x20\xa9\x4a\x54\x9e\xd0\xb5\x16\x24\xee\x0c\xca\x96\x78\x11\xd9\x1a\x0a\x92\x52\xb5\xa4\x52\x87\xda\x09\xbb\xaa\xd4\x2b\xd8\x57\xf4\xcc\x4e\xf1\x39\x3d\x73\xe6\xf5\x8c\x9e\x99\x09\x3f\xa1\x67\xcd\x29\x7e\xf0\xe2\x27\xbf\x62\x2b\x13\x3d\xf9\xe4\x58\xc6\xaf\xed\x0c\x3c\xfd\x75\x94\xec\x8b\x82\x71\x41\xe7\x4a\xa1\xf7\xb8\x5d\xaa\x3f\xc6\xe4\x51\x77\xf2\xcb\x23\x9d\x4d\x3f\x15\xae\xf9\xb1\xe9\xf7\x70\x78\x8f\x62\xcb\xf7\x6f\x89\xd2\x0d\x72\x7f\x2b\x5f\x34\x8c\x8c\x2a\x4c\x96\x9e\x21\xf7\x7c\xbb\x30\x94\xfb\x33\xfb\x2c\xff\xfb\x7d\x5e\x7c\x49\x9f\x61\x88\x5e\x5a\x58\xfb\x26\xfa\x97\xfa\xfa\xfc\x39\xab\xb0\x8e\x23\x8a\xc9\x75\x18\xda\xf2\x10\x11\x6f\x7e\xfd\x25\xdd\xcd\x50\x72\x38\xec\x0e\x87\x2d\x0e\xc3\x13\x93\x68\xdc\xcc\xa3\xed\xac\x9d\xb6\x3c\xee\x5a\x7d\x52\x4f\xe2\x43\xb3\xde\xe7\x02\x7f\x0d\x36\x9c\xdb\xc3\xa1\x6f\xb7\x9c\xe6\x2e\x0e\x07\xd4\x97\x9c\xc2\x23\x3b\x76\xfb\x8b\xf6\xc7\xd1\x0a\xd9\x0a\xf3\xf5\x82\xd8\xb1\x00\x47\x35\x5f\x7f\x09\x50\x94\x93\xd4\x7c\xa1\x68\xcb\xab\x63\xf1\x77\x3a\xec\x49\xcd\x12\x65\x8c\x18\xb5\x49\x54\x07\x90\xa9\x8e\x44\xa8\xb9\xa5\xa1\xfd\xd1\x86\x5a\xb1\x3b\x6e\x69\x65\xc5\xba\xa2\x75\xdc\x52\x61\xa9\x2a\x34\xc2\xa5\xd4\x5b\x70\xa7\x1b\x6c\xc6\x90\xb9\xa5\xc9\x0d\x54\x39\x8b\xcf\x1b\x15\xcc\x9c\xc2\xd0\x94\xdc\x32\x88\xa7\xf2\xdb\x9f\x80\xfb\x35\xfb\x13\x30\x7e\xa8\xfa\xfb\xe3\x16\x2f\xe9\x57\x73\xb1\x98\xc9\x7f\xe0\x05\x51\x06\x8f\x8c\x9a\xea\xe7\x52\x74\xb8\x8e\x84\x7a\xb4\xde\xef\xb3\x60\x59\x2c\xd8\x52\xbd\x0f\xd5\xa7\xf4\x43\x7d\x42\xbc\xd9\xba\x6f\xda\xd7\x50\xbe\x84\xac\x9f\x6f\x19\xd7\x6f\x72\x5c\xbf\x75\x8f\xeb\xa2\x1e\x97\x63\xe9\xda\x36\x6d\x6d\x7b\x79\xf2\x8e\xa8\x04\xdc\x09\xb7\xc2\x9d\x08\x05\x92\xaa\xde\xee\x8e\xcb\x3b\xdc\x71\x79\x23\xe6\x4a\x1d\x9f\xa0\xe1\xa4\xdb\x1d\xc3\x4b\xb8\xce\xb1\x9e\xd5\x83\x05\xb0\x7a\x89\x11\x62\x45\x3c\x21\xe2\xb6\xa0\x5d\xa2\x1d\xe6\x6b\x6b\x13\x3d\xaf\xda\xab\x41\xd0\x0b\x06\x4f\x88\x70\x5c\x20\x53\xf2\x06\xbb\x41\x67\x20\x02\xc1\xcf\xc0\x41\xed\x71\xd5\xb0\x1a\xfe\x54\x48\x89\x74\x19\x5d\x29\x5f\x2d\xcf\xba\xf8\xf3\x57\xa8\x8e\x1b\xc1\xeb\xb8\x11\x7f\x7e\x81\x3a\xc2\x46\xfc\x37\xd7\xe7\xa4\x63\x7d\x9e\x11\xd1\x74\x6a\xee\x06\x3f\x11\x23\x11\x9f\x2b\xbf\x80\xe1\x44\x82\x78\xfd\x60\x38\x09\xc3\x9b\x63\xa1\x1a\x9e\xa3\x35\xae\xc8\x8d\x1b\x6f\x27\x25\x7f\x38\xa1\x73\x62\xf2\x14\x57\x66\xa1\x1c\x7b\xed\xcf\x74\x7c\x4e\xd5\x75\xae\x76\x65\x06\x5f\x67\x0d\x6a\xcf\xcd\x4b\x81\x3a\x01\x4f\x67\x09\xea\x5d\xc3\x67\x7a\xe5\xf8\x48\x2f\x5b\xee\xce\xa9\x8a\xd2\x6e\xbc\x98\xbd\x05\x20\x2d\x67\x68\x75\xa6\x16\xb8\x43\xba\x6a\x5e\x31\xb3\x19\x53\x97\xc3\x9a\xc0\xc2\x1d\xb1\x23\x31\x54\xa8\x24\x52\x8a\x91\x42\xff\xe6\xfe\x18\xb7\xd4\x30\x2f\xe3\xb2\x34\xcf\x16\xca\x51\xf6\x72\xfd\x17\xda\xe8\xa5\xbc\xe7\x42\xb5\x1f\xdc\xba\x5b\x32\xb9\x5b\xf6\xa4\x19\x76\xbf\xe6\x02\xc0\x45\x5b\x3b\x57\xe9\xfd\x62\x9c\x7e\x85\x9c\x2e\xa5\x6b\xbb\x15\x6a\xff\xdf\xfe\xb8\x22\xf2\x5c\x3d\x47\x1b\xeb\xee\xac\x7d\xb5\x77\x5d\xd6\xc1\x5e\xf7\x7d\x68\x13\x39\x7c\xc6\xc4\x52\x8d\x53\x46\x52\x1d\x72\x17\xe3\x0a\x6d\xb4\x3f\xb5\x09\xfd\xb4\xfa\x54\xe3\xa6\x9d\xb5\xd3\x8e\x6e\xa6\x22\x4b\x5c\xb9\xae\x00\x1d\xb4\xe1\x23\xd0\x06\xeb\x45\xd0\x51\xe2\x1d\x94\xa8\x9d\x0b\x3a\x8a\xbc\x80\x22\x5d\xde\x02\x5d\x23\x3d\xeb\x88\xc0\xa1\x1b\xb0\x57\x51\x5d\xf5\xae\x58\x23\xb0\xae\xac\xa3\x1c\x22\x3a\xc6\xf4\x0c\xb2\x5b\x1d\xad\x89\x65\xc3\x7d\xf6\xbb\xaa\x1e\xb3\xb6\x21\xc8\x13\xf5\xa2\xde\x57\x15\x21\x9f\xf9\xa4\xde\x8f\x98\xe4\x9d\xe1\x6d\xcd\xab\xfd\xfa\xc5\xfe\x55\x5e\x90\x94\xe6\xb3\xfa\x13\x05\x05\x8b\x13\x61\x1e\x33\x0d\x70\xf4\xdd\x78\x32\xfe\x86\xc4\x9d\xa5\x76\x79\x21\xe2\x4c\x17\xfa\x8e\x94\x9d\x85\x56\x45\xbc\x76\xda\xfa\x9e\x24\x9d\xc5\xd4\x24\xde\x6d\xf3\x25\xd3\x25\x7f\x20\x59\x77\xaf\x45\xbe\x4a\x33\x56\xa8\x62\x93\x6f\xc9\xfe\x58\xb1\x8b\x74\x69\x8a\x8d\x7f\x24\xbb\xce\x62\xf0\x1c\xf3\x95\x1e\xdd\x64\x4c\x56\xdd\x93\xc8\x8b\xcb\xb8\x58\xbe\x93\x88\x4a\x95\xbc\x4b\x96\xdd\xf3\xd8\x97\x3b\xc6\x4b\x3d\x89\xc9\x37\x64\x73\x6b\xb1\x77\x10\xa0\x07\xca\xde\x1d\x93\xf3\xce\xb2\x5b\xb6\xcd\x75\x73\xf7\xc8\xb6\xb3\x48\x16\x7f\xbc\xd6\x45\xbe\x9b\xe6\xee\x02\xdb\x19\xec\xf9\x32\x96\xeb\x20\x17\x8c\x74\x16\x29\x58\xb9\xcb\xe1\x29\xd1\x23\x05\xca\x24\xdf\x31\x1d\x2e\xf8\xf4\x73\x36\x58\x2a\x58\x11\x8b\xbc\xa8\x95\x7f\x6b\xf7\x0d\x19\x41\xd9\x48\xbf\xb7\x40\x38\x0d\x36\x42\xec\xca\xe8\xce\x1d\xe8\xec\x8f\x72\x94\x17\xeb\x3b\xcb\x3c\x29\xef\x30\x89\xa3\x87\x4b\x96\xe4\x4b\x56\x8c\x36\x62\x9b\xcd\x52\x7e\x21\xb1\x23\x17\x34\x18\x08\x52\xd0\xc9\xb4\xb8\xdf\x7c\x2e\x45\xbd\x8b\x32\xa0\x41\x18\x17\xeb\x72\xbe\xa0\xc1\x80\x71\xd9\xc6\x9b\x57\x4f\xeb\x07\x4e\xdd\x37\x53\x2c\x56\xb7\xe3\xa2\xc1\x69\xca\xd3\x55\xca\x96\xbd\x57\x72\x58\x3d\x18\x4b\xef\x7f\x05\x03\x31\x08\xa6\xbd\x8b\xb4\x4c\x45\x2f\x18\xf0\x41\xd0\x5b\xe5\x45\x4f\x6c\x58\x6f\xb5\xcf\xb2\x9e\xae\x2e\xc9\xc8\x1e\xa2\x67\xb2\x1e\xcf\xf9\x70\x6b\x1a\x5b\xb2\x8b\x9e\xa3\x40\x84\xca\x50\x11\xda\x2f\x41\x3d\x6c\xde\x86\x88\xb3\xde\x86\x65\xbb\xd5\x3e\xeb\x5d\xc6\x05\x4f\xf9\xba\x1c\xf5\x02\xc2\x40\xe1\x7f\x41\x6f\xc0\x75\x86\x0b\xd7\xbe\xcd\xbe\xde\x32\xa9\x08\xe3\x1f\xf6\x6c\xcf\x7e\xca\x8b\x44\x3f\x54\xee\x96\xb3\xf9\xaf\xd8\x2e\x8b\x13\xf5\x2c\x55\x67\x01\x63\xf9\xee\x65\x56\xe4\x9a\xde\x38\xca\xdd\x87\x06\x33\xd5\x96\xca\x54\x7b\x56\xea\x93\x46\x85\x89\x4a\xb9\x2a\xe9\xb5\x6b\xac\x5e\x50\x7e\x38\x5c\xb8\x6f\x3b\xb9\xaf\x51\x7d\xfc\xef\xb7\xfc\xb0\x76\x9b\x06\x03\xac\x38\xa9\x1f\xba\xa5\x37\x15\x71\xf3\xcb\xee\x18\xe2\xe9\x0a\x99\x47\x45\xfb\xee\xa3\xa2\x5d\x8f\x27\x33\x13\x4c\x94\x69\x7e\x63\x8d\x14\xb7\xf1\xc3\x3d\xac\x6d\xe5\xf5\xf0\x46\x0d\x10\xab\x37\x1d\xe4\x7c\x03\x33\x8e\x00\xfb\xe3\x5b\xd5\xcb\xe9\x09\x55\x5d\xcd\x3a\x4b\x6f\x5a\x0e\x9c\xfa\xb2\xe9\x4b\xe7\x49\x66\xa7\x1b\x38\xea\xef\xe8\x47\x27\x57\x32\x4d\x97\xd3\x77\x23\xe7\x69\x66\xfa\x91\x14\xe8\x9d\x3b\x3c\x4c\xde\x8d\xd2\xf2\xe5\xbe\x60\x0d\x28\xf7\xc7\xd0\xe4\x0b\x7a\xa3\xf9\x10\x6d\x7c\x7e\x46\x6f\x0c\x4a\xd4\x29\x57\xcd\x22\xcf\x8d\x35\x4f\x0d\x04\x3f\xb4\x37\x79\x06\xf7\x7d\x51\x1f\x1e\xc0\x95\x7f\xde\xbd\x2b\x59\x66\x7e\xe5\xfb\x22\x81\x37\xa2\xbd\xe7\x81\x1c\x6d\x3d\xc9\xe5\x26\x88\xd5\xcb\x11\x25\xfc\x31\xe1\x5b\xfb\x54\x60\x89\xb5\xc0\x24\xbb\x76\xdd\x96\x5b\x2d\x0c\x51\xa9\x7e\x39\xc1\xb5\xe1\x96\x3a\x0c\x51\x4c\x83\x60\x00\x1f\x52\x8c\x7a\xae\x1f\xec\x20\x05\x0e\xc3\xfe\xb3\x66\x64\x72\x99\x8a\x72\x70\x74\x07\x5c\xa4\x62\xbc\x37\xb1\xda\xf0\xae\x1c\xd4\x04\x5e\x0b\xcd\xad\xf7\x05\xe5\xff\x37\x7b\xff\xde\xdc\xb6\xcd\x05\x88\xc3\x5f\x45\xe2\x64\x38\xc4\x1a\x56\x25\x3b\xcd\x85\x0a\xaa\xcd\xcd\x6d\xda\x38\x37\x27\x4d\x53\x55\xeb\xa1\x25\x58\x66\x43\x01\x2a\x08\xd9\x71\x2c\xbd\x9f\xfd\x1d\x9c\x03\x80\x20\x45\x39\xe9\xf3\xec\xee\xec\x1f\xbf\x19\x8f\x05\x02\x20\x78\x70\x70\x3b\x38\x57\x88\xed\xd7\x31\x45\x8f\xa6\xd5\x16\x5b\x60\xf0\xa6\x64\x4a\xe8\x8a\xf5\x87\xab\x47\xd3\xe1\x6a\x6f\x8f\x14\xe3\x55\x18\x2d\x6a\xb5\x77\x30\x19\x06\x8d\x15\x9b\xfc\x3c\x81\x40\x51\xa1\xe2\x74\x85\x81\x29\x6b\x94\xf8\x1b\x82\x01\xdf\xf5\x62\x1a\xec\xa8\x37\x77\xee\xe0\xaa\x48\x73\xf4\x14\x8c\x37\xfa\x0c\x46\xaa\xa4\xc8\x30\x97\xf4\x54\x5e\x09\xae\xd2\x2f\x8e\x4a\xdd\x34\x82\x2b\x59\x69\x5d\x5b\x58\xdf\x2a\x4c\x1d\xef\xb9\x8f\x31\xc6\x72\x14\x8b\xb2\x1f\xfe\xfa\x61\xef\x87\x39\x7d\xca\xc6\x93\x46\xc4\x22\x6f\xd9\xf0\xd4\x62\xd8\x69\xac\x3f\xed\x2d\xe5\x32\xf1\x67\x82\xb4\x4a\xdc\x8c\x53\x69\x46\xf4\x8d\xe2\xe7\xf9\x17\xa6\xa9\x04\x55\x38\x26\xa8\xf4\x3b\x91\x82\x34\xc6\x1a\x91\x56\x6c\x7b\x83\xaf\x63\xcf\xf1\xe5\x54\x03\x45\x97\x0a\x6a\x5f\x4c\x15\x85\xd7\xd2\xfe\xa6\x11\x23\xc9\xa9\x90\xbb\xc0\x70\x15\x00\x36\x03\x61\xc0\xb4\x03\xc3\x3f\x22\x24\x83\xfe\x4f\xae\x8f\x71\xfc\xd4\xdf\x42\x2a\xc9\x5c\xe3\x7a\xe5\x34\xb6\xfb\x69\x65\xd3\x90\xd8\xd8\xc1\x88\xa4\xd2\x87\x9d\x1a\x06\x62\xc0\x2e\x63\x65\x1c\x47\x67\x52\x16\x3c\x83\x1d\xb1\x5c\xaf\x13\x04\xc7\x4d\xeb\xee\xa0\x72\x8d\xcc\x34\x99\x9a\x9d\x01\x66\xb0\x55\xcd\x2a\x51\x35\xcb\x85\x11\x03\xa5\x06\xe7\xa5\x26\x85\xda\x95\x30\xdf\xcd\x87\xd4\xbe\xab\xfd\x04\xb0\xfa\x5d\x39\xea\x44\x64\xf0\xe2\xc6\x4c\xee\x29\xf1\x46\x25\xd2\x6c\xb3\x10\x34\x75\x14\xf5\xa2\xbd\x27\x89\xa6\x7d\x92\x0a\x42\x07\x18\xf4\xb3\x6f\x68\x13\x5f\x9e\x8a\xbd\x28\x8d\x68\x3d\x24\x9a\x26\xa4\x5a\x70\xfd\x61\xf1\xc8\x31\x7a\x87\x85\x0b\x00\xbb\x62\x62\xef\x89\xd9\x29\xc6\xc5\x84\x16\x64\x38\xdd\x63\x3c\x29\xe9\x0a\x70\xb9\x71\x6b\xd7\xe1\x63\xbd\xde\x3e\x65\xf4\x68\x05\x18\x4c\x57\x6d\xa4\x57\xb2\x62\xc7\x71\xac\xc7\xc7\x93\xf5\x5a\x8f\xa3\xff\xf9\x3f\x1d\xed\x15\x4d\xc8\x68\x65\xbd\x33\xb6\x50\x6c\x2b\x80\x5c\xb3\x95\xdd\x9b\x08\x35\x3d\xe8\xc2\x9e\x26\xf8\x17\x9d\x10\xd2\x9b\x49\xc1\x87\x04\x21\x66\xa5\xf5\x60\x68\x3b\x44\x4d\x0f\xa1\x13\x7e\x03\x0a\x96\x67\x69\x4f\x3e\x05\xfb\x20\x75\x07\xe0\xe1\x80\xd0\x68\x8c\xd5\xec\x0d\x7a\x82\x71\x46\xed\xbb\xa0\x07\x81\x42\xf1\x9b\x68\xaf\x61\x77\xf2\xb7\xcc\x45\x12\xd1\x4e\x44\xf6\xa2\x4d\x94\x2a\x1a\x55\xd7\xf1\xe9\x26\xe1\x34\x8a\xd0\x54\xc4\xcf\xda\x27\xa1\xf6\xc0\x37\x76\x0f\x7b\x64\x9b\xaf\x8d\xb6\xb9\x95\x37\x11\x8b\xd2\x88\xf5\x23\x1a\xa5\x26\x71\x10\x39\x8e\x64\x74\x27\xda\x4b\xa2\x68\x0f\x4c\x7b\x80\x94\x4a\x7e\x18\xb3\x74\xf2\xc3\x9c\xb6\x19\x33\xe9\x31\x9f\xc0\x6d\x1b\xbe\x44\x52\xdd\xd3\xce\x5a\xf0\xf0\x5e\x00\xfa\x1b\x04\x1d\xd7\x37\x8e\x91\x5f\xdf\x54\xbb\xc5\xbd\xb7\x17\xbc\xf2\xae\xa9\xf4\x8f\x3b\x07\x68\xfd\xfb\x6d\x63\xc8\xd9\xb7\xdb\xa4\x5b\x91\xff\xfe\x48\x38\x55\x54\xb4\x76\x89\x6f\x08\xba\x09\x85\xd8\xeb\x89\xd9\xb0\x41\xb6\xdf\xa6\xc2\xb1\x7d\x1e\xa0\xbe\x26\xb0\x79\xe1\x50\xe0\xc8\x5f\x82\x83\xc1\xda\x39\xbb\xe3\x81\xf7\x30\xb1\x31\x83\x2d\xf7\x92\x2e\xf4\x6b\xbd\x86\x38\x91\x9f\xf9\x35\x04\x78\x37\xe3\x17\x45\x69\xe2\x14\xc5\xaa\x61\xf9\x87\x46\x77\xe2\x1f\xcc\xec\x31\xff\x04\x21\x54\xb9\xbd\x30\xc0\xe2\x1f\x55\x9c\x74\xeb\xc1\x91\x45\x91\x8d\x73\x23\x20\xf2\x89\x69\x5a\xec\x68\x96\x9a\xbd\xf4\x1d\xd5\xec\x73\xa2\x69\x0e\x8d\x10\xfa\xb1\x16\x82\xf4\xef\x2a\x2c\xac\x3b\xee\x82\x2d\xb1\x49\x33\x1e\x1e\x0c\x2a\xb9\x3e\x92\xfe\x2f\xd8\xcd\x53\x17\x92\xff\x66\x91\x2d\xd3\x26\x77\xc0\xb7\x56\x19\x31\x58\x26\xc1\xd8\x07\x9e\xb4\x03\x6a\xb6\x07\x50\x2f\x50\x1b\x6a\x75\x7f\xbe\xab\x39\xd3\xcd\x37\xd0\x4d\x8c\xb7\xe5\xda\xb1\x9d\xb5\xa7\x59\xcb\x64\x31\x2f\xb6\x39\xf9\x33\xa4\x1e\xc1\x30\xf7\x1b\xaa\x25\x4c\xbc\x16\x9d\x96\x7a\x07\x34\x7e\x78\xd7\xa4\xa4\x7a\x43\xa5\x28\xea\xed\xe4\xe7\x49\xf7\xa4\x0a\x02\xef\xf0\x3c\xb8\x7b\x18\xe2\x79\x43\x31\x8a\xe0\x3b\x7e\xbe\x7d\xbb\xaa\x13\xa8\x1b\xea\xc9\xdc\xf4\x31\x35\xb4\x6f\xf5\xfc\xd5\x36\xf3\xd4\x1e\xf3\xad\x5a\x4d\x8d\xd8\x59\x28\xc2\x4e\x38\xab\xd6\xca\x92\x9e\x4e\xb3\x62\xba\x2a\x3c\x8b\x68\xf6\x24\xd7\x65\xaa\xe9\xa9\x05\xc5\x3a\x9b\xad\x3f\x1f\x98\x0c\x7d\xa1\x78\x36\x43\x97\x17\x7d\xfa\xc6\x72\x47\xf0\x60\x78\x2a\x45\xb9\x5a\xd8\xa7\x0d\xe9\xb9\xd2\xe0\xd3\x2b\x7a\xea\x68\x14\xbe\xa1\xbc\xe7\x5e\x61\x1c\x26\xcc\x55\xa6\x66\x35\x1c\xf1\xed\x95\x7e\x4e\xd1\xa0\x38\x35\x68\x2d\xb2\xaf\xd7\xb7\xd6\x5e\xd0\x53\x73\xb7\x30\xa0\x63\xc8\xc5\x74\x7f\x40\x4f\x2d\x0d\x65\x11\xbe\xe0\x0b\xd9\x8a\xcb\xaa\x99\x33\x47\x6e\x4e\xe5\x62\x99\x29\x9e\x06\x7a\x17\x70\x9a\xea\xcd\x86\x06\x2a\x3a\xed\x43\xf3\x77\x42\x6a\x7a\x3c\x18\x71\xca\xe4\xdc\x36\xa0\xee\x2d\xac\x53\xbd\x84\x12\xdb\x5b\xdf\xc1\x2a\xd5\x2b\x2f\x16\x4b\x73\x9c\xe7\x97\x1c\xdd\xff\x6e\x2d\xce\xfa\xeb\xcd\xea\xb6\x16\x34\xf5\x8c\x9f\xad\xe6\x38\x4f\x6a\xd7\xfc\x55\xc9\x5f\x66\xd7\x72\xa5\xbf\x03\xbc\xb0\x62\x05\xe4\xf1\xae\xe1\x70\xaf\x99\x0a\x55\xf5\x36\x15\xbf\xed\xae\x38\x0d\xa5\xa0\x07\xed\x13\xad\x7a\xe1\x1c\x2c\x0b\x5d\x8c\xed\x5b\xaa\xe2\x65\xdb\x54\x3e\xb2\x5c\xca\xb4\x34\x4b\x03\xf8\x8b\x69\x41\x4f\x80\x29\x09\x01\xad\xa7\xf4\xc4\xdd\x4f\x67\x74\x25\x4a\x9d\x9d\x15\xfc\xd4\xe5\xbd\xcc\x4b\x9d\x5e\xd0\x5a\xc4\xd1\xf4\x39\x0d\xed\xb0\x77\x6f\xa7\x8c\xaf\xd7\x95\x48\xa6\xb1\x1f\x1d\xdc\xbb\x4f\x9c\xe3\x37\xc9\x14\xe8\x7b\x5a\x75\x31\x9a\xd9\x30\xb3\x25\xc3\xc3\xd2\x5c\xcb\xf0\x64\x0c\xef\xad\xe6\x43\xbb\xae\xac\x74\xca\xfc\x5d\xeb\x1b\xd7\x57\x3c\xa0\xc1\x81\xbf\xb9\x7a\xd7\xaf\x7f\x40\xf8\xb6\x94\x0c\x0d\x71\xb9\x02\x3b\xe6\xea\xf6\xbb\x6a\xbd\xfd\xae\xf0\xf6\xbb\x9a\x04\x9a\x51\xe3\x55\x68\x1e\x5c\x8c\xcc\xb5\x35\x35\xb9\xa8\xec\xba\xba\xe5\x72\xbc\xda\x75\x39\x5e\x91\x1b\x77\x29\x5e\x91\xa1\x23\xdb\x97\xac\x3f\x5c\x3e\x5a\x0d\x97\x70\x39\x5e\x86\x97\xe3\xe5\xd6\xe5\xf8\xdb\x24\xcc\x8e\x7b\xed\xd4\x9f\x27\x47\x99\xd9\xdc\xda\x4e\xb6\xe7\xbd\xb3\x5c\xcc\xf0\x38\xe5\x95\x53\x00\x8c\xaa\xc6\xcd\x51\x96\x97\xbf\x67\x45\x3e\x73\xf3\xea\x84\x5e\x72\x55\x42\x08\xd7\xc1\xbd\xde\xa0\xdf\x3b\x88\xaa\x09\x6a\xe8\x68\x37\x49\x9f\x4a\x71\x9e\xcf\xd3\x36\x65\xb4\xf7\x9e\x21\x3d\xac\x92\x6c\x6b\xab\x1c\x6a\x75\x7d\xc3\x13\xb2\x39\xcf\x45\x56\x14\xd7\x37\x41\x65\xb1\xd9\xd0\xd3\xd3\x93\xe7\x4f\xdf\x3d\x7f\x7f\xfa\xe2\xd5\xfb\xe7\xef\x5e\x3d\x7e\x79\x72\xfa\xec\xf5\xe9\xab\xd7\xef\x4f\x3f\x9c\x3c\x3f\x7d\xfd\xee\xf4\xd3\xeb\x0f\xa7\x1f\x5f\xbc\x7c\x79\xfa\xe4\xf9\xe9\xd1\x8b\x77\xcf\x9f\xa5\x37\xc8\x20\xc2\x29\xf8\x2c\x2f\x97\x99\x9e\x5e\x70\x95\xbe\xa6\x61\xc1\x13\x93\x6b\xe1\x7f\x5f\x2b\x79\x8d\x0c\x03\xfa\xa2\x3c\x91\x0b\xfe\x0e\x0e\x18\x34\x15\x16\xf3\xd4\x1f\xd0\xdd\xc1\x86\x62\x48\x5d\xf0\xb8\xf4\xc1\xdb\x80\xa7\x2f\x36\xf4\x17\xf6\x21\x8e\x5f\xac\xd7\x1f\x86\xbc\xc7\xbf\x2c\xa5\xd2\x25\xfb\xc5\x4d\xe3\xf5\xfa\x97\xcd\xf7\x89\x5d\x20\xd4\x39\x4a\x5f\x72\x26\x92\x41\xff\x30\x30\x4f\xca\xfe\x3f\xbe\xf7\xff\x3e\xbe\xb7\x21\xdd\x94\xdd\x27\x33\xb7\x4f\x1e\xdc\x27\xb8\x4b\x22\xe7\x8e\x4e\x6b\x7c\xe9\x22\x81\x7d\xb0\xf4\xf7\x74\x0e\x7c\x2c\xb7\xe8\x30\xa8\x20\x0b\x0c\x45\x40\x54\xdc\x4d\xf6\x07\x8f\x04\x69\x7c\xea\xe1\x3d\xd8\x91\x4d\xf9\x72\x2c\x26\x48\x4a\xea\x1e\xff\xa2\x55\x36\xd5\x60\x54\x59\x36\x5f\xc1\x4d\xdc\x7d\x1c\x98\x68\xe6\x5d\xa6\x41\xa3\x19\xb4\x79\x40\xda\xe7\x78\x4f\x2e\xe2\x3f\x13\x63\x35\xa1\x05\xd3\x74\xc6\x60\x57\x3f\x6f\xee\x9b\xb3\x2d\xf0\x1e\x12\x3a\x23\xc3\xf3\xf1\x6c\xc2\x72\xc0\xc8\x05\xcb\x7b\xcb\x8b\xac\xe4\xb3\x77\x7c\x9e\x97\x5a\x81\x81\xd4\xab\x6c\xc1\x41\x0b\xfe\x02\x67\xa6\x34\x40\x5d\x90\x8b\xe6\x07\x24\x89\xe3\x55\x72\x31\x96\x13\x5a\x98\x86\x25\xeb\xf6\x2d\xc3\xa2\xa7\x1a\xed\x8d\x92\x55\xb2\x9d\x0b\xef\x51\xf3\x1e\x49\xa5\xe5\xfc\x74\x65\x13\xec\x07\x84\x2a\xca\xc9\x66\x13\xb0\xbe\x56\xc1\x61\x39\x1b\xf3\x49\xe3\x9d\x41\xbf\x0f\x78\x35\x45\x4c\xd3\x0b\xf8\x09\xb0\x39\x16\x93\xde\x8c\x2f\xcd\xa6\x20\xa6\x39\xc7\xf8\xf2\x4b\x36\x9e\xd0\x73\x76\xb3\xa1\x33\xf3\xef\xa2\x36\x4f\xce\xaa\x5b\x1f\xcd\x69\x46\x4b\x6a\xe7\x88\x3d\x33\x42\x09\x41\x91\x4f\x6d\x08\x66\xbf\x96\xe8\x21\x81\x3d\x52\xdb\x08\xfb\x82\x16\x64\x33\x35\x9b\x57\xb2\xb2\xbc\x79\x29\x10\xf6\x15\xd9\x00\x38\x0b\xd6\x1d\xd0\x63\x9c\xb3\x73\x93\xbe\xc4\xf4\x35\xbb\xb1\x55\x6b\x87\xc4\x82\x75\xfb\xf4\x98\xf1\xcd\xb6\xd0\xa5\x0e\x74\xd8\xee\x99\x05\xe7\x9a\x7a\x48\xf1\x04\xbd\xc2\xf2\xaf\xf8\x73\x8a\x3c\x6f\xdf\xee\xeb\x26\x23\x01\x43\x7a\x46\x36\x4c\xf7\x3e\x20\x3a\x1a\x72\x47\x41\xa0\x6e\x18\x3b\x4d\x04\x69\x6c\x99\x16\xb4\x92\x4e\x69\x01\x83\xf9\xd8\x42\x04\xe2\x88\x0a\x28\xba\xc0\xd5\xb4\x68\x0e\xf4\xc3\x07\x76\x75\xaf\xd8\xf1\xb0\x86\xb2\xf5\x3a\x01\x37\xf2\x97\xcc\x60\x34\x51\x54\x5b\x3a\x86\x72\x43\xb4\xd4\x41\x83\x7b\x83\xef\xdf\x7b\x2f\xd3\x41\x42\x4c\x37\xbe\x7a\xd8\x27\x35\x1f\xc0\x8c\xf1\x91\x4e\xb7\x78\x22\x4d\x5e\xe0\x28\xe1\xc0\x4f\xb0\x5d\x34\xdf\xa0\x9c\xa4\x36\x37\xc1\xa7\xad\x97\xc6\x7c\xd2\x9b\x4a\x31\xcd\x74\xa2\x49\x3a\xe6\x34\xf4\x4a\xf0\xc5\x8d\xc4\xd6\xc7\xb9\x37\xd5\x31\xe5\x29\x8f\x63\x8d\x73\x52\x98\xb5\x64\x30\xf6\xaa\x31\xaa\x2f\xed\xed\x37\xb0\x0f\x39\x9d\xd9\x83\xd7\x19\x83\x97\x60\x27\xe3\xb3\x5f\x18\x72\x42\x4c\x71\xbb\xd8\xc9\xfa\x54\xac\x3f\x54\x9e\xf5\x69\x7d\x7b\x99\x6d\x24\x43\x8b\xcc\x13\x2d\x97\x4b\x3e\x4b\x08\x1c\x50\x30\xb9\xc0\xab\x0d\x1c\x40\x18\x64\x30\x8e\xdd\x9c\x1b\xb6\x41\xe5\x18\xda\xdb\x80\xb9\x92\xbc\x7c\x63\x88\x21\x53\x5f\x27\x64\xbd\xe6\xa1\x9c\xaa\xa7\x78\xc1\xb3\x12\x28\xfe\x4d\x28\x04\xf2\x73\xc0\x06\x9a\x7d\xc5\xde\x27\xaf\x20\x1e\x2f\x67\xaf\xe8\x2b\xdb\x38\xd4\x32\x23\xf1\x92\xd0\x57\xcd\xdd\xeb\x47\x02\x27\xc2\xdc\xe6\x73\x76\x59\x5b\xcd\x1c\x17\xfb\x09\xbb\xc9\xc5\xdf\xdc\x9e\x12\x6f\x8a\xd5\x3c\x17\xaf\x21\xb2\x7f\x83\x35\xd1\x3c\x40\x06\xfd\x01\x21\xc3\xf2\xb6\x4d\x88\x13\x5a\x24\x64\x43\xb7\x3e\x50\x3e\xb9\x36\xbb\x70\xab\xee\x5d\x77\x00\x87\x92\x75\x75\x01\x41\x25\x1b\xdb\xbf\x26\x7e\xfd\x8f\xf5\x04\xb6\xee\xad\x98\xba\x9a\xac\xd7\xd3\xb1\x9e\x74\x19\x43\x51\x8a\x79\xd8\xea\xc1\x01\xc4\x38\x37\x45\x4c\x51\xf0\x02\xb9\x11\x71\x6c\x60\x0e\xf6\xb2\x7f\x42\xb2\xd4\x6a\xc3\xbc\x92\x33\x5e\x33\xd7\x82\xd5\x68\x09\xaf\xab\x04\xd5\xba\xba\xaa\x56\x28\x98\x32\xe0\x72\x2f\x13\xb0\xf2\x04\xa7\x56\x96\x86\x4f\x4f\xb3\xa5\x5e\x29\xee\x33\x9f\xc9\xd5\x99\x8d\x8f\xd6\x96\xd7\xac\x5e\x45\xed\xd8\xca\x69\xad\x0a\x1a\x6e\x5b\x39\xad\x55\x3f\x2c\x9b\xcf\xbe\x5a\xa2\x58\x57\xf9\xf8\x13\x64\xbd\x36\x19\x89\x8b\x78\xc7\x18\x4b\xb8\xdd\xb2\xc9\x7a\x8d\x51\x8f\x23\xbc\x6c\x5a\x63\x1d\xf7\xa4\xf9\x17\x9d\x29\x9e\xc1\x33\xcc\xf9\xae\x42\xe9\x4a\x87\x7b\xc3\x45\xf0\x7f\x09\xbb\x46\x88\x65\x0c\x99\xd9\x26\xfc\x16\x4d\xfa\xec\x70\x40\xa8\xa6\xbe\xd4\xef\xab\xb0\x2e\x9e\x32\xd5\xfb\xf7\x97\x87\xe1\xd3\xad\xe0\xce\xed\xb7\x89\xc8\x60\xe7\x69\xaf\xbd\xb0\x21\x67\x26\xf4\xf6\x56\x83\xab\x48\x4b\xb3\x41\x69\x53\xa2\x8d\xe7\xd7\x67\xf6\xc3\xff\x4a\x7a\xff\x83\x8c\xff\xfa\xeb\xaf\x1f\x26\x3f\xd0\x8f\xdf\xab\xa8\xf5\x8c\x7d\xfc\x0e\x45\xad\x27\xad\xb5\x1a\x8a\x5a\x6f\x5a\x2b\x6d\x29\x6a\xbd\x6b\xad\xd6\xa6\xa8\xf5\x47\xfb\x57\x9b\x8a\x5a\x7f\xef\xaa\x56\x57\xd4\x7a\xd1\x5a\xad\xa9\xa8\xf5\x61\x57\x2d\x3b\x9a\x01\x84\x83\x01\xfd\xa5\xbd\xcb\x2d\x6a\x5d\x47\xed\xbd\x6e\xaa\x75\xfd\x7e\x6b\xb5\xba\x5a\xd7\xa7\xd6\xba\x35\xb5\xae\x9f\x5b\xab\xd4\xd4\xba\x3e\x7e\x5b\xad\xab\xb5\x4a\xa8\xd6\xd5\x5a\x21\x54\xeb\xfa\xed\x3f\x53\xeb\x7a\xbb\xe5\xe7\x0b\x76\x96\x6d\x4d\x19\x64\x24\xb4\xc9\x2f\x39\xfb\x2d\x8e\xf9\xf8\xb7\xc9\x7a\xcd\x9b\xf2\x4b\xbb\x82\xfc\xe7\xee\x04\x47\x76\x20\x8e\x70\x5b\x52\x6b\x64\x7f\x2f\xb3\x30\x5b\xe6\xb2\xc8\xe0\x4c\x34\x04\x82\x80\x5f\xff\xae\x15\x38\xb7\xbd\xe9\xdc\x86\x70\x2b\x56\x7e\x93\x5a\xd1\x9f\xe3\x1e\x46\x68\x5b\xfe\xc4\xe5\xbf\xc1\x75\x87\xb9\x7f\xf8\x5c\xb7\x2e\x30\xff\x9d\xcb\xaf\xb8\x8d\xb6\xe4\xc8\x97\xb8\xd9\x87\xf9\xbf\x37\xf3\x0d\x81\x14\x6d\xea\xa2\x57\x0f\xbd\x03\xba\x29\x14\x7f\xe1\x5a\xb1\xfc\x69\xcf\xd2\xb7\x5f\xf9\xbb\x59\xee\xa4\x02\xb6\xfc\x97\xd4\x91\x8f\xc8\xd6\xf7\xac\x2a\xa6\xeb\x28\xd6\x16\xc5\x51\x44\x1b\xc8\x4f\x22\x98\x1b\xa3\xe8\xc8\x4b\x10\x12\xe0\x30\x90\x28\x0d\xf2\x22\x82\x5f\xfc\x64\x21\x32\xe3\x8f\x07\x1b\xe6\xff\x9c\x9a\x83\x89\x0d\x40\xee\x67\xa5\x05\x23\xde\x0b\x85\x05\xa4\x7a\xd3\x9b\xd1\xd7\xe7\xd4\xaf\x15\x41\x1c\x45\xc3\x99\xbc\xf1\xa4\x03\xef\xe9\x6c\x6e\x91\x76\x88\x9a\x04\x77\xf1\xe7\x1e\xfe\xdc\xc7\x9f\x41\x1f\x7f\x1f\xa6\xd6\x4d\x58\xb4\x75\x8a\xba\x8b\xd4\xe9\x8c\x9f\xad\xe6\xc0\xbb\x02\xb1\x2c\x3e\x9f\x80\x8a\x12\xcd\x59\xd5\x3f\x81\xe4\xa3\x02\xdf\xde\x77\x12\x85\xd9\x84\x2a\x96\xd3\x9c\x45\x11\x95\xa3\x9c\x45\x9d\x24\xd3\x9d\x68\x4f\xf6\xcc\xbc\x32\xa8\xf5\x42\xc9\xcf\x34\x8a\xc8\x5e\x94\x9a\xc2\x22\x17\xfc\x15\x68\x50\x00\x82\x51\x88\x19\x75\x12\xe4\x48\xce\x3a\x67\xd7\xc8\xd1\x21\x60\xbf\x1b\xfd\x25\x3a\x9d\x8e\xa1\x0b\xa3\xbd\x44\xad\xd7\xd1\x07\xbc\xf5\x45\x64\x2f\xdf\xe8\x3d\x26\x28\x87\xa1\x37\xa8\xdc\x5c\x5d\xe4\x05\x58\x6f\x7b\xc7\x77\xa6\xa7\x7f\x1a\x7a\x64\xb7\x75\x38\xdc\x24\x77\x15\x7a\xd3\xbc\xef\xab\xd5\xab\xb1\xde\x09\xe5\x1c\x11\xa7\xed\xaf\xe0\x8d\x5b\x90\xe2\xee\x1a\xc4\xbe\x26\x9c\xa0\x66\x5f\x9b\x12\x1f\x6f\x12\x32\x0f\xfa\xc4\x59\xa9\x5f\x25\x01\x85\x4a\x86\x9c\x87\xcf\x96\x63\x0e\x71\x21\xfc\x67\x25\x7c\x56\xf3\x91\x30\x7f\x4e\xec\x9c\x0a\xce\xc6\x7c\x92\x6a\xce\x78\x55\x37\xe7\xc8\xb4\xd2\xdc\x3b\x81\xe7\x54\x33\x01\xb4\xb0\x30\x4f\x76\x72\x98\x36\x29\x2a\xa8\x71\xd6\x1f\xf2\x4a\xfd\x84\xef\xed\x11\xc5\x13\x3d\xe6\x93\x10\x8a\xac\xee\x99\x94\xd7\xe4\xd2\x25\xaf\xb4\xa2\xaa\x0a\xf0\x5c\x55\x9a\x1a\xd8\x60\x90\x0b\xce\x32\x4e\x57\x86\x3e\xa4\x4b\x0e\x17\x0a\x57\xe9\xdc\x54\x72\x2a\x2d\x56\xb5\x82\x31\x26\xcc\xca\x37\x0d\x50\xd3\x43\xb2\x11\xfc\xaa\x73\x9c\x2d\x69\xe3\x17\xa3\xd3\x71\xf6\xc3\xff\x1a\xa7\x8f\xf7\xff\x3c\xcd\xf6\xbf\xfe\xb5\xea\xf7\x9f\xf6\xf7\xcd\xcf\xb3\x7b\xf0\xff\x01\x3c\x1c\xc1\xc3\x11\x3c\x1c\x1c\x1d\xfd\xb5\xea\x1f\xde\x87\x6a\x87\xf7\x9f\xc1\xff\xa3\xfd\xbf\x56\x83\x23\x53\x72\xd0\xef\x3f\xdd\x87\x9f\x67\xe6\x3f\x54\x3b\x18\x3c\x30\x25\x4f\xfb\xf0\x70\xf4\xfc\xe8\xaf\xd5\x61\xbf\x3f\xd8\xff\x6b\xf5\xec\xbe\x79\xe7\xe8\x21\x94\x1c\x3d\x7b\x6a\x1e\x9e\x1d\xc1\xc3\xd1\xd1\xb3\xc9\xff\xab\x80\xfd\xb5\xdf\xeb\xef\x3f\x34\x9f\x7e\x72\xdf\x7c\xa6\x8f\xdf\xbc\x07\x9f\x39\x3c\x82\xcf\xdc\xed\x4f\xfe\xc7\x9d\x1f\xe8\x05\xff\xa6\x5a\xe5\x19\x67\x37\x1b\xba\xe0\x35\x46\xd9\x31\x0f\x39\x3b\x96\xb7\x95\x4d\xa7\x7c\xa9\xcb\x27\xa8\xf8\x55\xb2\x03\xd4\x65\x3a\xc4\x9f\xbb\xe6\x07\xd5\x72\x33\x17\x01\xdf\x6c\x56\x4c\xb5\x64\x96\xcb\x6c\xca\x99\xc4\x92\xc5\xaa\xd4\x1f\x4a\xee\x20\x62\xa2\xf2\xd6\x6d\x9e\xa1\x11\xab\x0b\x0c\x62\x12\xfb\x95\x32\x13\xb9\xce\xbf\xf2\x0f\xef\x5e\x5a\x3d\xc0\x39\x74\x22\x72\xb2\x9c\xce\x2c\x13\x73\xae\xe4\xaa\x2c\xae\x4f\xb8\x7e\x21\x04\x57\xbf\xbc\x3f\x7e\xd9\xb1\xfb\x35\x48\x49\xdd\xc3\xd3\x0b\x3e\xfd\xcc\x67\x9d\xdc\xd7\x72\xbe\x3d\xe1\x80\x14\xfa\xf9\x2c\x07\xa1\xcb\x47\x64\x56\xfb\xe2\x5f\xae\x67\xc8\x0b\xf5\x05\xfa\xba\xe0\x51\xaf\x5c\x16\xb9\x4e\xa2\x4e\xd4\xe6\x6e\x85\x93\x9b\x39\x1f\xf3\x09\xe8\xdb\x02\xb2\xfb\xb4\x3b\xa0\x1c\x35\x1d\xba\x03\xb0\xd1\x19\x8f\x23\x44\xf9\xd3\x8b\x4c\x95\x1c\x22\xfd\xc2\xf3\xfe\xd4\x66\x4c\xe8\x38\x9a\x16\x59\x59\x1a\x1c\x45\x14\xd3\x90\x6b\x63\x3e\x47\xa0\x0a\x6c\x73\xf4\xf2\xf9\x3f\xab\xfc\x32\xa2\x90\xde\xe7\xf0\x30\x99\xb4\x83\x67\x4f\xff\x71\x7f\x32\x9c\x73\x73\xa9\xb7\x90\x6a\x3a\x00\x48\xc7\x83\x49\x1d\xd8\x68\x5a\xc7\x53\x44\xa3\x99\xca\xe6\x73\x9b\x2e\x97\xbc\x28\x00\xc9\x11\x8d\x40\xc7\x2c\xda\xf1\xe5\x06\x62\x0e\xe0\x73\x75\xcf\xd0\x8d\x2f\x67\x2b\x2d\xdf\xf1\x4b\xae\x4a\xf3\x25\xfe\x05\x7d\xb9\xbf\xe3\xa8\x14\xec\x7d\x71\x02\x32\xa6\xab\xd2\x42\x64\x46\x8f\xab\x4b\xfe\xb8\x58\x5e\x64\xff\x0a\x98\xda\xe7\xa3\xac\x28\xe4\xd5\xd1\xaa\x28\x4e\xa6\x8a\x73\xd1\xc9\xca\x6b\x31\xed\x18\x98\x8e\xcc\xd7\x20\xf5\xa6\xc8\xae\x3b\x2e\xb0\xb2\x9b\x72\xe6\x97\xab\x8e\xbb\xe3\xbb\xc4\x9b\x7c\xaa\x57\x8a\xbf\x10\x36\xd1\x39\x97\x6a\xf1\x4a\x82\x54\x30\xd3\xbc\x73\x91\xcf\x66\x5c\x74\x0a\x29\x97\x1d\x21\x8f\xe5\x6c\x55\xf0\x8e\xa8\xca\x21\xde\xbd\xa1\xc2\xca\x17\xc2\x10\x05\x1d\xc5\xb3\xd9\x6b\x51\x5c\x77\x94\x45\x44\x47\x21\xb2\x66\x1d\xb8\x1c\xcc\x3a\x25\xcf\x16\x05\x2f\x4b\x30\x8a\x3b\x81\x0b\xc3\xbf\x9d\xbf\x87\xdf\x1e\xa6\x29\x2e\xb1\x88\x46\x8b\x55\xa1\xf3\x25\x8c\xc2\x62\xa5\x21\xcb\x1b\xc2\x7d\xdf\x40\x1c\xd2\x6e\xbf\xb9\x5c\xa2\xa9\x65\x9e\x50\xf0\x90\x51\xc8\xec\x7b\x5b\xbb\xdb\xb2\xf8\xa2\xa9\x2c\xca\x88\x46\x4a\x5e\x99\x9f\x32\xff\x8a\xd3\x38\x13\xdf\xd9\xe8\xbd\xb6\x46\x95\xbc\x3a\x31\x4d\xd0\x08\xa3\x47\x7c\x5f\x53\x3f\x7e\x03\xb9\x70\x98\x5e\x72\xf6\xc3\xf8\xaf\xfd\x74\x92\x8c\xb3\xfd\xaf\x13\xf2\xc3\xbc\xda\xcf\xaf\x79\xa8\x34\x35\x1e\x4c\xea\x9e\xc1\xab\x93\xff\x31\x54\x74\x5c\x35\x77\xc9\x40\xe6\x9a\xd3\xf8\x6d\x68\xeb\x86\x2a\xba\xdb\x4a\xbd\x15\x75\x97\xfa\x8b\x96\xa3\x97\x9d\x77\xa6\x80\x76\xb9\xe2\x4d\xcf\xe2\xf3\x16\x9e\xe5\x08\xb6\x24\x20\xfd\x87\x8e\xb3\x2b\xc1\x97\x93\x84\x23\x22\xed\x1a\x92\xfa\x20\xe0\x56\x27\x91\x04\xf2\x72\xdc\x9f\xac\xd7\xd1\x6b\x97\x26\xa6\x04\x2f\x92\xe3\x81\x29\x79\xe5\xd2\x84\x90\xf5\x3a\x69\xca\x39\x42\xbd\x8e\x5d\xb4\xab\x0e\x1d\xaa\x34\x5e\x43\x27\xe6\x68\xcb\x0a\xb4\xbe\x33\xe4\x19\xd6\x51\xee\xf8\x99\x9e\x64\xb5\x98\x85\x1b\xba\xc3\x64\xb7\x3f\xac\x8f\x8b\xcd\x86\xeb\x84\xfd\xd8\xa8\x2b\x9a\xe7\x76\x1a\xcd\x32\x9d\xed\x1b\x2a\x18\x79\x88\xe1\xac\xf2\xce\xe3\x7f\x24\x24\x8e\xd1\x46\xd5\xd4\xe4\xa4\x31\x6a\xdd\x01\xe8\x67\x62\xf7\x88\x07\x28\x3f\x4f\x54\xd5\xa9\xa0\xd7\xee\xa2\x6a\xfb\xed\xee\x5b\xb6\xaa\x1e\xda\x8b\x97\x7b\xd5\xa0\x13\xf3\x7e\x74\xf3\x26\x2f\x5f\x65\xaf\x12\x6d\x6f\x85\xf7\x9a\xd9\xeb\xf5\xe0\x27\xbd\xf1\xc0\x01\x4d\x2b\xc1\x16\x23\x11\x56\xdb\x4e\x21\x23\xc0\x4c\x93\xd1\xb6\xda\x50\xb7\x7b\x61\x79\xed\x0b\x4e\x39\x59\xaf\xfd\xf3\x19\x87\xf0\x1c\xc9\x8c\x3b\xef\xfb\xa3\x05\x2c\xd0\x6e\x3f\x4d\xce\x6c\xca\x2c\x45\xb2\x01\xc7\x06\x6e\x86\x88\x11\xb7\x31\x5f\x1e\x3b\xe2\x27\xd1\x24\x05\xf3\xa3\x20\x87\x82\xa6\x29\x49\x65\x93\x12\x1a\xf1\xb1\xac\x91\x41\x13\xe6\x5b\x3e\xec\xba\xc9\x1e\xc7\x51\x94\x8a\x34\xd1\x4c\xd6\x89\x2c\xaa\x9a\x39\x40\x76\xd1\xdb\xa1\x4b\x04\x33\x14\x5d\x22\x6d\xf3\x04\x49\x3b\x19\xc7\x5d\x74\xd0\x1d\x45\xa9\x01\x98\xaa\x51\xbd\x23\xaf\x4e\x40\x3c\x27\x5a\x3a\x28\x08\x09\x95\x6f\xbf\xf2\x50\x3c\x15\xc4\xb9\x84\xf9\x28\xe4\x0c\x80\x35\xf3\xaf\xe2\x6b\xd7\xa7\xa9\x59\xb6\x70\x9c\x9c\xc9\x2f\x91\x5d\x8b\x2a\x9b\xe5\xb8\xc8\x83\x4f\x9d\x72\x34\xaf\x38\x05\x92\xe3\xbd\xca\xa6\x9f\xb9\x82\x10\x7b\xb5\x9c\x16\xcf\x15\x00\xe4\xc8\x1f\x5a\xa9\x25\x5a\xa8\xf3\x1c\xd9\x9b\x73\x1d\xec\x4a\xcf\x78\x39\x55\xf9\x52\x9b\x5b\x5a\x4d\x2a\xe5\x09\x6f\xaa\xcd\xc5\x3e\x8a\xf6\xbc\xa4\xa5\x65\x67\x8b\xe3\xba\xa5\x85\xe3\xa8\x87\x6c\xf8\x6a\xab\x01\xaf\x51\xbb\x8a\x4a\xae\xdd\x1e\x0a\xf5\xc0\xf3\x42\xc9\x75\xdd\xb6\xbd\x87\x1f\xf3\x20\x98\x25\x7d\x33\x05\x16\xf7\x4a\x19\x72\x24\xed\xf6\xe9\xbc\x6e\x01\xed\x4d\x66\x50\xe5\xeb\x22\x2f\xd1\x38\xbb\xae\x8b\x07\x5d\xa5\x79\x55\x09\xc4\xff\xde\x1f\x61\xdb\x77\xb9\x58\x2d\x38\x7e\x55\xf4\xaa\x87\x0d\xa1\x37\x73\xae\xb7\xb4\x1a\x9d\x91\x07\x7c\xbc\x51\xea\x21\xd8\xd0\x52\xcb\x25\x8c\x73\xcd\x43\xe1\xd6\xac\x60\x36\x40\x44\xc1\x35\x07\x7f\xf0\x9b\x8d\xd9\xe2\xc2\x89\xfb\xda\xb1\x15\xba\xc1\xce\xed\xc5\xac\x61\x63\x30\xbe\xba\xda\x17\x5d\x64\x57\xd7\x8d\x04\xe7\x82\xd7\xcc\x89\xe3\x44\xd9\x29\xc7\x7b\x76\xce\x8d\x22\xad\x56\x3c\x4a\xa3\xf3\xac\x28\x79\x94\x72\xb4\xcd\x00\xad\x61\x45\xf0\x28\x49\x74\xcf\xf5\x3d\xe1\x84\x76\xfb\x01\xb4\xef\x6b\xce\xf2\xb5\x6b\xd6\x5b\x3c\x25\x37\x1b\x83\xf4\xfa\x05\xc8\x6a\xd0\xd2\xf0\x8e\xe4\xf2\x2e\xc3\x07\xdb\x9a\x35\x09\x10\x23\x91\xf2\xde\xe9\x95\xca\x0c\x55\x01\x9a\x97\xce\xf3\x9e\x6d\x38\x8c\x6c\xf2\xa5\x06\x99\x15\xcf\xf7\xc2\x4f\x9a\x5d\xa6\x9e\x43\x71\x80\xba\x55\x47\x46\x3e\x55\x55\xb5\x1f\x1b\x0a\xf6\x98\x3b\x1d\x49\x44\xdb\xc8\xfe\xa6\x82\xd0\x06\xa4\xec\xa6\x0e\x6a\xea\xdd\xe0\xbb\xf0\x7e\x53\x1f\x8c\x2a\xad\xef\x3b\x4e\x69\xa2\xda\x7c\x20\x67\xd4\x00\x35\xad\x81\x12\xd0\x3b\xaf\x2c\x26\xb0\x3c\xd1\xd5\x2b\x24\x8e\x81\x18\xaa\xc8\x66\x08\x31\x57\xbd\xfa\xd2\xbe\x6a\x9b\xb0\x53\xec\x31\x4f\xb4\x9b\x27\xce\x4f\x76\x75\x0e\x0b\x12\xc4\x02\x57\xa3\xc4\x46\x16\x8c\x70\x8b\x85\xd7\xd6\x6b\x9b\x30\xb5\xe3\x38\xb1\x4f\x0c\x0e\xa9\xd4\x97\xc1\x73\xb3\xb8\x32\x12\x2a\x57\x67\x8b\x1c\x76\x6e\x65\xb0\xc3\xcd\x6d\xd5\x3c\x90\x50\x1b\x7e\xfb\xfc\xb1\x9b\x2c\x19\xea\x2d\x29\x9d\x2d\x19\xa1\x2b\x70\x64\xbe\x09\x92\x6e\x57\x0c\x27\x4d\x44\xe2\x38\x7c\x01\xb0\x13\x56\x20\x84\xba\xe9\x67\xf1\xec\x6c\x84\x9a\x53\x0a\xfa\x5a\xcf\x62\xdd\x6e\xb3\x56\x30\x3e\xcf\x79\xa0\xde\xb4\xb3\x3f\xeb\xf5\xb7\x7a\x50\x45\xa0\x77\x63\xd9\xf5\xf8\xed\x32\xa6\xe2\xd8\xe2\xb7\x0b\xc8\x0e\xd4\x7c\x2f\x31\x4c\xb5\x25\xc1\xdc\xb4\xb0\x43\x30\xd4\xe8\x65\xb9\x75\xcd\xe2\x8a\x13\xeb\xb5\x0e\x27\x86\x1f\x6c\x6d\x96\x50\x08\x25\xd3\x1b\x60\xf6\x27\x82\x59\x07\xb1\x80\x2e\x93\x62\x51\x14\xd4\xf6\x98\x6b\xe6\xb4\x54\xe9\xde\xbe\xa1\x50\xf8\xa2\xa8\x3e\x14\xda\x84\x9d\x78\xe4\x87\xc1\xef\x21\x7e\xd0\x95\xe0\xea\xd9\x2e\xcf\x70\xa6\x97\x38\x21\x0c\x79\x54\xeb\xe2\x37\xb0\x95\xd6\xab\x87\x2b\xa4\xd9\x8c\x08\xcf\x94\x7f\x1a\xdc\x5a\x26\x93\x1b\xc7\xc1\xb2\x7b\xed\xc6\x90\x0e\x89\x6e\x21\x52\xaa\x13\x44\xf5\x9c\xb5\x90\xbf\x51\xf2\xba\xc9\x4c\x65\xbb\xa5\xf7\x98\x75\x4f\xb3\x49\xb4\x57\x7d\x26\x38\x66\x5e\x13\x1a\xc2\x51\x7b\x30\x9f\xf2\xda\x65\xc6\x10\x6a\xe8\xd4\xa6\x84\x98\x7d\xc0\x3d\xb4\x9a\x42\x92\xf5\x87\xf2\x91\xf7\xb5\x2b\xf7\xf6\x88\x1e\x47\x77\xa2\x3d\x31\x96\x13\x43\x2a\x43\x4d\xc1\xfa\x43\xf1\x88\xbb\x5a\x62\x6f\x8f\x48\xb6\xbd\x16\xee\x18\x7a\x49\x4c\xdc\x96\x06\x69\xc7\x2b\xc0\xe8\x33\x49\x2d\x8f\x49\x70\x6f\xa1\x5c\x7e\x23\x7a\x08\x33\x27\xa4\xd9\xa5\x6e\x10\x86\x28\xda\x33\x07\x05\xa1\xd6\x9c\x16\x61\xe7\x21\xec\xd0\xdd\xb1\xb4\x20\x98\x0d\xb3\x0a\x1a\x23\x83\x0f\x77\xfb\xa0\x9a\x96\xe0\xa7\x65\xeb\xa7\xc9\xd0\x2d\xc6\xf5\x1a\xeb\x58\xe6\x0f\x58\xd0\x9a\x1c\xb2\x71\x35\xec\xe1\x1e\xc0\x5d\x8d\xc6\x67\x5e\x53\x6e\x83\xdd\xaa\x9d\xd9\xd9\xd4\x64\x0a\xec\xcc\x1c\x01\x50\x3b\xd6\xdb\xce\x7d\x3f\x1d\xbf\xb1\x04\xc2\x23\xfe\x63\x83\xf8\x80\x8f\x54\x16\x70\xd6\x42\xa2\x71\xea\xd3\xda\x31\xe8\xa6\xe5\x4d\x70\x7c\x35\x7a\x73\x80\x7a\x59\x5b\x4a\x6b\x40\xa3\x25\x83\x9f\x98\xe3\x00\x6c\xa9\xd1\x1e\x12\x32\xd4\xc0\x03\xd8\x08\xa6\x37\x16\x2a\xb8\x2c\x46\x11\xd9\xec\xa2\x10\x10\x2f\x30\x65\x82\xe1\x78\x56\xeb\x6c\xfd\x08\xde\x3e\x72\x02\x33\x43\x9c\x81\xc2\x10\x73\xdc\x6d\xd7\x7e\x97\x15\xd5\xd9\x14\xbe\x1f\x18\xee\xbb\x9d\xa6\x65\x9b\x11\xf6\x64\xeb\x32\xd5\xba\x07\x85\xe2\x9e\x27\xf5\xfb\x18\xff\xa2\x2d\xcf\x7b\x88\xdb\xff\xee\x11\x37\xa4\x03\xce\xd5\x60\xd6\x56\xa7\xc4\x06\x18\xd6\x42\xef\x5f\xf0\x7c\x7e\xa1\x3b\x59\x91\xcf\x41\x33\x7c\xff\x2c\x2b\x39\x30\x27\x33\x95\x9d\xe5\xd3\xfd\x73\xa9\x16\x1d\x97\xb9\x0f\xae\x16\x3b\xd3\x6c\xe9\x5e\x9c\x16\xf9\x72\x7f\x99\xe9\x0b\x4c\xa9\x55\xc1\x3b\x53\x59\x48\xb5\x0f\x91\x3b\x97\xb2\xc8\x50\x70\xb5\x9d\xb7\x7f\x9e\x17\x9a\xab\xd2\x96\x59\xb5\x15\xfb\x84\xb2\xed\x5c\xcc\x3b\x33\xb9\xc8\x45\x16\x42\xc6\x85\x59\x99\xfb\x67\xd9\xf4\xf3\x5c\xc9\x95\x98\x75\xce\xf3\xa2\xd8\x97\xcb\x6c\x9a\xeb\x6b\x7c\x00\x40\xce\x0b\x29\x67\xfb\xd0\xa0\x4d\xfb\x3a\x52\xe8\xfd\xf3\x6c\x91\x17\x36\x5d\xe6\x5f\x79\x95\xda\xcf\x66\x7f\xaf\x4a\x6d\x33\xb4\xe2\x7a\x7a\xe1\x1e\xae\x0b\x5b\xd1\x5a\x04\xe0\xc3\x15\xa2\x63\x5e\x5c\x2f\x2f\xf6\xcd\xa1\x67\x93\x52\xe5\x5c\x68\xec\xef\x85\x54\xf9\x57\x29\x74\x56\xb4\x14\x5e\x72\xa5\xf3\x69\x56\x74\xa0\xd6\x7e\x36\xbb\xdc\xff\x62\xd3\x52\xe5\xf3\x5c\xec\x7f\xe9\xe4\x8b\x6c\xce\x03\xd4\x14\x5c\x6b\xae\xf6\x4b\xd3\x29\xf3\x68\x40\xc8\xc5\xdc\xf6\x78\x91\xa9\xcf\x5c\xed\x73\x31\x73\xc9\x45\xee\x93\xc0\xe4\xec\xc8\x4b\xae\x60\x5c\x97\xb2\xcc\x51\x50\xea\x72\xf4\x45\x3e\xfd\x2c\x78\x59\x76\x96\x59\x2e\xf4\xbe\x54\x33\xae\x3a\xcb\x4c\xc8\x92\xef\x0f\x3a\x4b\x09\x63\x89\xba\xc8\x65\xc7\xc3\x04\x43\x2c\x74\x07\xe2\x17\x05\xa0\x9a\xab\x9e\x85\x0b\x92\x6e\x20\x4a\xad\xf2\xcf\xdc\x6c\x01\xab\xf9\x45\x05\x46\x3d\xbb\x82\xa5\xd4\x4a\x7e\xe6\xfb\xb3\xac\xbc\x80\x80\x5e\x61\x86\x3c\x3f\x2f\xb9\x76\x39\xa6\x13\xd3\x6c\x19\x3e\xfe\x2d\x73\xe1\x9e\x17\xb9\x36\x1d\x5d\xe4\xfe\x85\x00\x22\xf3\x78\x95\xcf\xf4\x45\xc7\x2c\xb9\xfd\x4c\x4c\x2f\xa4\xc2\xf4\x8c\x4f\x25\x4a\x95\xf0\xb9\xea\xe1\xca\x24\xea\xc8\xac\xb2\xaa\x1e\xac\x44\x3e\x95\x33\xbe\x7f\x96\xcf\x72\xff\xa0\xcc\x11\x61\x9e\x74\xb9\xbf\x34\x58\x5d\x74\x2e\xf7\xb3\x62\x79\x91\x9d\x71\x9d\x4f\x3b\x97\xfb\x17\x99\x98\x9b\xaf\x5c\xee\xe7\x33\x2e\xe7\x2a\x5b\x5e\x40\xfe\x22\xd3\x17\x7c\x91\xe1\xd4\xb9\xe4\x53\x2d\xd5\x3e\x07\xfb\xc0\x8e\x99\x51\x30\x8f\xae\x31\xe9\xa7\x51\xf8\x74\xdd\xb9\x92\x6a\xe6\xa7\xd0\x95\xca\x61\x06\x2d\xe4\x8c\x77\xbe\x2c\x0a\x51\xa6\x5f\x8a\x5c\x7c\xee\x7c\xb1\x0b\xfe\xdb\xe2\x87\x4a\x3b\x05\x55\x21\x2e\x39\xbd\xe6\xa4\x5d\x56\x55\x97\xd7\xc0\x97\xd2\x6c\xaa\x57\x99\xe6\x1d\xfb\xa4\xa6\x4a\x16\xee\x29\x48\x96\x17\xf2\xca\x26\x75\xae\x7d\xb6\xa1\xc4\xff\x37\xc3\x08\x42\xb9\xf4\x87\x1f\xae\xae\xae\x7a\x57\x87\x60\x26\x34\x78\xf8\xf0\xe1\x0f\xf0\xc1\xa8\x92\x20\x7c\x59\x14\xa9\xd9\xa3\x22\x0a\xc9\x22\x13\x73\x9b\x04\xee\xde\x2e\x89\xc2\x7f\x0b\xcb\x1f\xc7\x2f\x0d\x3c\x0f\x7e\x10\x8e\x8f\x18\xc0\xe4\x9c\x5d\x46\x34\x9a\x2a\x59\x96\xaf\x61\xd4\xbf\x53\xb8\x31\xf8\x96\xe4\x68\xce\x7b\x80\x84\x5f\x14\x3f\x77\xaf\x45\x3e\x27\xc2\x06\xec\xb0\x5e\xa0\xb3\xc9\x6f\xe0\xb2\x6f\x80\x2e\xd5\xd4\xd4\xc4\x17\x30\x14\x07\x8a\x4b\x17\x18\x8a\xf2\xbf\x07\xbf\xef\x65\x33\x6f\x38\xbb\xb9\xd0\x8b\x22\xdd\x09\x99\x29\x8d\xa8\x59\x67\x3b\x6b\x3d\xf8\xe1\x38\xd3\x17\xf0\xef\xf8\x65\x44\xcb\xcb\x79\x5b\xc5\x83\x7e\xbf\xff\x43\x79\x39\x8f\x02\x71\xfe\xbb\x50\xaa\xe3\xc4\x39\xa6\x8e\x13\xc1\xdc\xd2\x0c\xca\x18\x0c\x60\xb7\xd4\xde\x82\xae\x29\xe3\xb9\xb5\xdb\x01\x25\xf5\x47\xfd\x36\x64\x55\x00\xd7\xeb\xdb\x1b\x00\x67\xa7\xef\x80\x7d\x7d\x5b\x57\x30\x1e\x85\x19\x62\x9e\xcf\xc5\xeb\x4a\x99\x6e\x74\x7b\xf3\x29\x7a\x64\xf8\x9b\xd3\x17\xbc\x25\x3e\x40\x2b\xc7\xf6\xf8\xe4\xf1\x72\x19\xc7\xf0\xd3\xe3\x5f\xf8\xf4\x83\x28\xb3\x73\xfe\x52\x4e\xb3\xc2\x45\x3a\xab\x84\x10\xde\x15\xc5\xad\xf5\x93\x16\x97\x0a\xc8\x5e\xdf\x10\xb2\x49\xf9\x26\x49\xea\xe6\x9f\xa0\xf1\xef\x17\xec\x87\x77\x2f\xba\x8c\xbd\xe1\xbd\xf2\x72\x0e\x3a\xe3\xf6\x8a\x10\x81\x75\x80\x21\xec\x6c\x06\xd3\x43\x7f\x45\x4a\xfe\xe6\xec\x6f\xbe\x5e\xb7\xab\x62\x25\xd1\x2c\xbf\x8c\x08\x09\xde\x8d\x1e\x95\x97\xf3\x9f\xa2\x3d\x4b\x02\xbf\x3e\x4f\x48\xe5\xfc\x84\xec\x45\x8f\x7e\x80\x72\xaa\xd9\xdf\xbc\x77\x9e\xab\x52\xc3\xc5\x75\x58\x7b\x20\x8e\x35\x04\x8f\x49\x58\x86\x76\x76\x43\xdd\xa8\x6e\x08\x54\x31\xc3\xea\x61\x19\xd9\x98\x35\xe8\xe7\xd7\x87\x20\x00\x68\x65\x87\x10\x34\x85\x3a\xef\x02\xe8\xde\x22\xb3\xb9\x71\x7c\x08\x22\x3b\x21\x67\xe0\xb6\x33\xe4\x62\x25\x98\xfd\xbb\x23\x79\x6b\x04\x34\xd3\xd5\xd4\xfe\xa5\x76\x49\xb8\xd9\x78\x1d\xf9\x71\x63\xf7\x98\x30\xdd\xdc\x4e\xc6\xd1\x47\x7e\xf6\x39\xd7\xd1\x1e\x9f\xb0\xe8\xca\xa6\xb5\x29\x38\x96\x5f\x31\x77\x61\x12\x9a\xa2\xca\xfd\x11\x67\x37\x99\xc8\x17\x40\x43\x70\x31\x4b\x7f\xe1\x49\xf4\xd8\x65\x44\xb4\x4a\x3f\x17\xb3\x88\x50\x5f\x17\x15\x73\x73\x29\x76\xbf\xf1\xc2\x55\x09\xdf\x03\x4a\x6f\xf7\x3b\x27\x20\xed\x26\x54\xab\x4c\x20\xd9\xe2\x80\x7a\xef\x73\x22\x1a\x3c\x00\x58\x1b\xfa\x3b\x68\x27\x7d\xaa\x6b\x27\xfd\xec\xd8\xf0\xbf\x9b\xad\xd8\x0d\x06\x3c\x00\x7b\xec\x28\xcc\x46\xa7\x28\x9a\x0a\x06\xd9\x95\x41\x8c\x20\x66\xac\xdb\x44\x30\x50\xfc\x89\xd7\x1a\x66\x62\xac\x27\x95\xe7\x90\x3f\xe3\x38\xf9\xc4\xd9\xad\xab\xa2\x07\x54\x7c\x88\x6a\xb0\xa8\xcb\x85\xd7\x90\x4c\xac\xb4\xe1\x88\xf7\xc2\xc1\xaa\x1e\x68\x4b\x05\x3f\x42\xb7\x57\x83\x01\xa9\x1e\x49\x0d\xb9\x4d\x40\xaa\xf7\x6b\x03\x14\x3c\x59\x05\x72\xce\x7e\xe6\x49\x14\x02\x1b\x11\xfa\xb6\x91\x9b\x07\x13\xe4\x4e\xa3\xac\xb4\x13\xe1\x57\xcc\xaf\x7d\x2e\x22\xf4\x4f\xce\xa2\xec\x4c\x2a\x73\xfb\x13\x4b\xd0\x9a\xc1\x5f\x4b\xa4\x77\x66\x2b\x6c\x1a\x03\xe2\x74\xf8\x62\xa9\x73\x3e\xeb\x70\x31\x55\xd7\x4b\x0d\xa9\x99\xf9\x0f\x06\xcd\x85\xcc\x66\x7c\x36\xcb\x74\x66\x93\x0b\xae\x33\xff\x88\x97\x93\x65\xb6\x2a\x39\xe8\xcb\xc0\x3f\x43\x9e\x2e\x95\x9c\x43\x7c\x26\x95\x69\x6e\x3f\x54\x72\xfe\x19\x34\x65\xf8\x67\xbc\x68\x60\x44\x2f\x34\x09\x98\x75\x74\xbe\xe0\xe8\x97\xb1\x73\x29\x8b\xd5\xc2\xbd\x76\x95\x01\xa5\x1b\xd2\x8a\x94\x83\x7b\x66\xad\xd9\x78\x42\x85\xe5\x3b\x29\xc7\x7f\xb2\xbf\xb9\x66\x4e\x61\x32\xab\x92\xa5\x36\xcb\x7c\x55\x72\x88\x2d\x05\xa9\xd5\xb2\xa3\xe5\x6a\x7a\x31\xcd\xc4\x94\x17\x98\x06\x80\x4c\x02\x7b\x98\xad\xbe\x4c\x8b\x7c\xfa\xb9\x33\x3b\x2b\x30\x61\xaf\x55\xf6\x1d\xfb\x04\x6d\xda\xf4\x6a\xd9\x99\xa9\x6c\x6e\x1a\x32\xbf\xd8\xce\x4c\xc9\x65\x67\x2a\x17\xee\xe2\x61\x4a\x83\x47\xac\xf4\x99\x5f\x43\x43\x9f\xf9\x35\xa8\xc7\x99\xc4\x6a\xd9\x01\x41\x2e\xdc\x65\x20\x00\x78\x07\xbc\x3d\x77\x2c\x00\x53\xb9\xbc\xee\x4c\x57\x66\x2c\x4a\xcd\x3b\x08\xa3\x45\xa0\x35\x0c\x59\x70\xb1\xea\x00\x9b\xbb\x63\x59\xdf\x21\x46\xa7\x9a\xa1\x6a\x57\xe7\xac\x58\x29\x0b\xba\xe6\x98\x2a\x78\x76\xc9\x11\x59\xe6\xda\x69\x53\xe6\x6b\xd8\x57\xc8\x74\xe9\x95\xee\xcc\xa5\xf6\xf8\x01\x7d\xa2\x4e\x21\xcb\x46\x56\xf8\xf5\xc0\x0c\x5d\x37\x75\x6b\x6f\xce\x0a\x39\xfd\xcc\x67\xaf\x45\xca\xa9\x96\xcb\x97\xfc\x92\x17\xe6\x04\x49\x35\x85\x3b\xed\xc9\x75\xa9\xf9\xe2\xa8\xc8\xe6\x65\x7a\x78\xb0\x16\x54\x80\x5f\x17\x58\xa0\xa9\x0a\x6d\xa5\xd1\x13\x4b\x93\x88\x83\x5e\x5b\xed\x10\xd3\xf7\x28\xb5\x33\x2a\x74\xa0\xe7\xf1\x61\x2b\x7a\xac\x44\xa9\xda\xae\xed\x31\x65\x6b\x3b\x7c\x45\xa9\xdc\xae\x1c\xe0\xd0\x56\xaf\x30\x19\xa5\xb9\xee\xe1\xce\x92\xe8\x9e\xcd\x7f\x31\x0b\xe3\x27\x46\x5b\xc8\xb6\xad\xb4\xa0\x3c\xcd\x5a\x5b\x0b\x70\xb4\xd4\xa1\x57\xaf\x2d\x83\x15\x43\x0a\x79\xe4\x82\xc6\x50\xa1\x3d\xe5\x95\x26\xbc\xd7\x1c\x91\x35\x03\x93\xf5\x4a\xe3\x59\x37\x8c\x49\x7b\x7e\x78\x9b\xe2\xe0\xf7\x22\x31\xa7\x7a\x35\xe0\x74\xbb\x79\x5a\x03\xa8\x61\x8b\xcc\x34\xc8\x5b\xfc\x07\x58\x43\xfa\x37\xd3\x4e\xc0\x01\x50\xc5\xb1\xf0\xc8\x09\x6a\x5d\xe8\x04\xcd\xff\x61\xcf\x19\xf6\x1f\x69\xaf\x3c\xee\xb5\xce\x21\xe2\x5f\x7b\xa7\x70\xa0\xfe\xf3\x1e\x39\xa6\xe0\xa8\xd6\x91\x54\xdb\x58\xbd\x89\x67\x76\x0b\x1d\xc7\xe7\x3a\x11\xa8\x3d\xe3\xbc\x63\xd9\x42\x85\x85\x0a\x0a\x55\xa3\x50\x62\xa1\x84\x42\xe9\x0a\x73\xed\xef\x6e\x33\x4d\x68\x56\x7b\xac\xd0\x73\xa6\x9d\xff\xbd\x0a\x3c\xc7\xc3\xac\x72\xd0\xc4\x17\xc6\x43\xb3\x6e\x9f\xe6\x3d\xef\x80\xa5\x9c\x5e\xf0\xd9\xaa\xa8\x5c\x47\x05\x65\xaf\xa4\x5a\x64\xc5\x1b\x95\x4b\x95\xeb\x6b\x7a\xa1\x6b\x3a\x30\x0b\x98\x4b\xfe\x51\x27\xd5\xa5\xe7\xcc\xcc\x4a\x4e\x36\xf9\x79\x12\x0c\x18\xb9\x31\xf9\x66\xb0\x42\x5f\x13\x82\x0d\x86\x22\x18\x55\xe1\x3c\x52\x2a\x33\xb0\x62\x32\x54\xb5\xae\x81\x9e\x41\xa3\x6b\x64\x13\x8e\xc2\x99\x19\x05\x88\xc5\x57\x21\xff\xcc\x20\x3f\xc8\x93\x98\x27\x21\x2f\x40\x75\x1d\xd3\x36\x3e\xfe\xb1\x66\x7d\x3a\xd7\xec\x80\x5e\x6a\x36\xe8\x1f\xdc\x0d\xb4\x12\x75\xc0\x99\xa0\x82\x81\x7c\x80\xf7\xb2\x02\x14\x78\x35\x27\x96\xd2\xb7\x02\x4b\xa2\x99\x4f\xc3\xfd\x84\x33\x3d\x9c\xc9\x9b\x24\xd1\x8c\x93\x1e\xf2\xa3\xde\x67\xf3\x38\x99\xeb\xf5\xa5\x26\xa4\xcb\xd8\xb1\x06\x96\xbe\x7b\x8f\x50\xee\xd3\xde\xac\xc5\x59\x0c\x1d\xa2\xf8\x3e\x9b\x8f\x44\xc3\x22\xed\xb1\x5b\xf8\x00\x71\xb7\xf2\xe3\xe4\xcd\x9f\x1f\x3c\x08\x07\xf7\xca\xd5\xef\x26\xbc\x45\x6a\x17\x74\xd1\xea\x89\x04\x6a\x85\x89\x66\xf0\x95\xa6\xc4\x02\x3e\xe1\x2d\x70\x20\x2a\x06\x58\xdb\xf1\x4d\x35\x17\x38\x55\x4c\x0f\x87\x95\xda\x8f\xc5\x56\xd5\xba\x0c\xd6\x74\xce\x64\x1d\x10\x5b\x27\x0f\xf7\xb8\x44\x31\xe9\x90\x47\x6e\x04\x53\x43\x73\x22\xe7\x62\xc5\x37\xd0\x92\x99\xa5\xd6\x7d\x92\x79\x15\x53\xb8\xe7\x98\xf6\xa7\x78\xa9\x1a\x42\x93\x79\x28\x3c\x7b\xac\x13\x49\x28\x7c\x37\x0f\x35\x03\x30\x5f\x0f\x73\x96\xf7\xca\xfc\xac\xc8\xc5\x7c\xd3\x86\x6c\x20\xde\xed\xae\xcb\x98\x72\x30\x0a\x26\xa9\x62\x79\x75\x81\x45\xa7\x31\xdd\x01\x9d\x7a\x70\xa6\x08\xce\x14\xc0\xb9\x29\xcd\x9a\x76\xaf\xf9\x3e\x4d\x01\x26\x2c\x54\x4c\x52\xe1\x0b\xa7\x6c\xea\x01\x33\xa3\x57\x62\x6f\xa7\xae\xf3\xed\xcd\xe7\xa6\x95\x5d\xcd\xe7\xe6\xfb\x3b\x9b\x6f\xf6\xfe\x21\x21\x1b\xec\xbe\x1f\x3d\x30\xcd\x6f\x3a\xd5\xe8\x23\x96\x0e\xbb\xa0\x6d\x9a\xcd\x6f\x9b\x50\xa2\xb2\x6c\xf2\x31\x44\x40\x06\x9e\x6a\xd0\x81\xaa\x19\x61\x06\x9e\x8e\x86\xd8\xd7\x1f\xdd\xd2\x59\xaf\xef\xb9\xa4\x7b\x05\xfc\x5e\x5a\x79\x1e\xb1\xbf\x76\xb4\x98\xa6\x5e\xd4\x87\x23\x66\xaa\x82\xa1\x3a\x4e\x53\xd8\x00\xba\xda\x21\x64\xe8\xbc\xf1\xe0\xeb\xeb\xb5\x4b\xb1\xa6\x9d\x68\xb5\x55\x6c\xfc\xdb\xfe\xa3\x36\x01\xdf\x76\xa8\x6e\x37\x1b\xfc\xaa\x2b\x36\x0f\x2a\xcb\x82\xa7\x11\x43\x4b\x94\x6a\x6a\xaf\x7b\xeb\x35\x5e\xa3\x48\x6f\x2a\x95\xb5\xc7\xcd\xc5\xfc\x43\xe9\xee\x83\xe0\x27\x95\xef\x2a\x25\xf4\x10\xb8\x0d\x8e\xb9\x30\xe2\xbd\x65\x66\x06\xc0\x0c\x46\x1a\x88\xe0\x4f\x01\x98\x99\xbc\xd9\x36\xcd\x8b\xe3\x1f\xe1\xe8\x36\x68\xf7\x97\x54\xd4\x76\x0d\xb4\xd7\x3c\xc9\x90\x68\xf6\x4f\xc2\xa9\xe8\x39\x4f\x1b\x68\xd3\xbe\xcb\x8d\xd0\x58\x4f\x40\x39\x40\xb4\x39\xed\x78\xdf\x9a\x4d\x35\xa1\xa2\xcd\x93\x47\xad\xba\xcf\xa6\x35\x35\xbb\xf7\x6e\xfb\x44\x59\xe7\x77\xc1\x58\xf7\xbf\x75\x8a\xe3\x64\xda\xa7\x82\x8d\x27\x43\x3d\x24\xc2\x3b\x68\xd1\xec\xd4\x9c\xb7\xc8\x0a\xa8\x82\x02\xf7\x1f\xe9\xfd\xfd\x21\x79\xad\x13\x73\xd7\xa7\xce\x9c\x60\x16\xb9\x03\x57\xb3\xfe\x50\x57\x8a\x0d\x7a\x6f\xaf\xaa\x7c\xb6\x3a\x3b\x2b\xb0\x6e\x40\x91\x7e\xf1\x28\xe7\x71\x2c\x80\x48\xab\xf7\xa6\xe9\x4c\x09\x7c\x83\xb6\x8e\x4d\xb3\xe6\xff\xd5\x11\x79\xa5\x6d\x94\xa3\xad\xe1\xd8\xee\x80\xe9\x73\x7d\x00\xd0\xbf\x4a\xa0\xb9\x06\xad\x7d\x49\x38\x7d\x1f\x52\x63\xcf\x75\x15\xd9\xa2\x1f\xa8\xf2\xe8\x30\xe0\x45\xa5\x37\x13\x5c\xb6\xbc\xe6\x09\xf8\x22\xbc\xc8\xcb\x06\x94\xce\x7c\x2c\x80\xca\x59\x91\x05\xf4\x2a\x18\xbd\xba\x90\x13\x5e\x7f\xf7\x85\xb9\x67\x9c\x67\x53\x4e\xb6\xd4\x75\xa5\x19\x02\xa7\xb7\x31\x32\x6f\x8e\xe5\x84\xe9\x44\x90\x34\xc2\x2f\x45\xa0\x6b\x8e\xa6\x6b\xe8\xa3\x48\xa5\xae\x9e\x30\x6f\xf9\x03\xdd\x54\xc9\xcb\x67\xce\xbb\x22\x50\xd6\x7c\xc6\x9c\xe2\x43\xe5\x77\xd1\x96\x8c\xb6\xb3\x52\x50\x9b\x77\x87\x22\xea\x1a\x8c\x9e\xeb\xf4\xc4\x76\xb5\xcd\x5d\x0f\xb3\x85\x81\xa2\x8f\xae\x29\xfa\xc0\x9b\xf0\x81\x37\x52\x16\x0d\x1f\xfa\x8d\xc2\x9a\x43\x7d\x44\x64\x56\x14\x89\xa4\xae\x41\xef\x2d\x1f\x82\x73\x99\x1a\xfe\x5b\x81\x6e\x4b\x40\x3c\x75\x72\x3b\x1f\xe5\x39\x54\x6f\x12\x45\x07\xf7\x1f\x12\x32\xe4\xbd\x19\x77\xe3\x95\x10\x3a\xe8\xff\xd4\x0a\x75\x1c\x37\xe1\x6d\xba\xc8\xff\x88\xd3\xbc\xaa\xc2\xc6\x13\xca\x7b\x73\x0e\x0f\x7c\xc6\x9e\x6a\xca\x9d\x9f\x21\xf6\x59\x6f\x64\xf2\x4f\x60\x5a\x49\x6f\xea\xa1\x1b\x43\x65\x63\x9c\x95\xcd\xe1\xb5\x9a\xc1\x76\xda\x05\x73\x71\x88\x8a\x20\xf5\xf6\x46\xdb\xb1\x21\x53\xe7\xae\x2b\x34\x6a\x0e\x67\x00\x34\x13\x3c\xb3\xee\x80\xd0\x5d\xb3\xed\xb9\x26\xa8\x2e\x1d\x4c\x94\xb0\x13\xb7\xc2\xda\x78\x6f\xb4\x95\xb3\x0b\x5a\xe4\x02\x3d\x81\x0d\x14\x55\xd0\x82\x0c\xd6\xed\x93\x5b\xa6\x2f\x40\xbc\x44\xa7\x50\x5b\xe8\x0e\xdd\x45\xb1\xe7\xe0\x5b\xb3\xca\x30\xcb\xa2\x9a\x36\x5b\xbd\x34\xc4\xc1\xce\xad\x00\x4e\x03\x8e\x8e\x4f\x61\x39\x5b\xcb\x8c\xe1\xd6\x96\xb2\xbd\xed\xb4\xec\x4e\x68\xcb\xbe\xb3\x8f\xbb\x46\xcb\xad\xeb\x96\x3d\xbd\x9e\x5f\xf7\xb0\xb5\xd9\x10\xfa\x8f\xae\x3a\xc3\x30\x9c\x19\x02\x01\x80\x62\xba\xe6\x5b\xad\x45\xed\x1e\xda\x42\x2e\xd6\x1b\x73\x26\xe3\x5b\x78\x0e\x96\xb6\x09\x18\x48\xd4\xe7\x87\xe6\xf3\x05\x3f\xd1\xd9\x62\xd9\xe6\xb5\x97\xf7\x7c\xf1\x7a\xfd\x2c\xd3\x86\x22\xba\x4a\xc8\x86\x6e\xed\x73\xc8\x21\x2d\xdf\xab\x55\xe9\x1e\x37\xa6\x4b\xfc\x8b\xe6\x62\x56\xbb\x70\x05\x17\xec\x30\xdc\x50\x68\x3d\xd0\xee\xab\x6e\x63\x2f\xd1\x17\x79\x39\x0c\x96\x38\x53\x8d\xf0\x39\x39\x30\x67\x75\xa5\x53\x97\x63\xc0\x77\x17\x29\x27\x78\x60\xb5\xa2\x5a\x88\x1d\x41\x45\x30\x20\xa0\x98\x17\x4c\x37\xb8\x7a\xbb\xde\x29\x9b\xa0\x1f\xcd\x41\x43\xc5\xc6\x24\xfe\xb1\xfa\xdf\xcf\x34\xf3\x78\x48\x2a\x01\x10\x38\x08\xc3\x63\xb8\xc8\x96\x25\x9f\xbd\xcf\x5d\xc6\xb2\xe4\xab\x99\x74\xde\x66\xad\x8f\xa4\x27\xb5\x66\xa6\x45\xbe\x3c\x93\x99\x9a\x3d\xcb\x74\xd6\x32\x72\x51\xad\x02\x48\x13\x47\xbc\x57\x7f\xcb\x3a\x74\xa8\x65\x9a\x89\xf8\xa6\xf6\xa5\xcb\x9c\x5f\xa5\xd6\x0c\x43\x67\x79\xe1\xe0\x79\xa7\xd9\x9b\xaa\x56\x2d\x56\xad\xf3\xbe\x54\x49\x90\x43\xa6\x42\xef\x33\xbf\x7e\x2a\x67\xce\xbe\x28\x9a\x5e\x64\xca\x3c\x23\x90\x7d\xe7\x46\xcb\x65\x93\x38\x1e\x1c\x3a\x0e\x10\x1b\x1c\x92\x94\x33\x4d\x07\x7d\xcb\x39\x81\x2c\x7a\x78\xf0\x88\xf1\xf5\x1a\x2a\x42\x64\x4a\x14\x0e\x6b\x76\xf3\xbc\x9c\xa6\x11\xc6\x22\x8e\xe8\xc9\x32\x9b\xf2\xb3\x4c\xa5\x51\x27\xa2\x2f\xf9\xb9\x4e\x23\x08\xf7\x6b\x92\x11\xfd\xb0\xb4\x8f\x1f\x96\x11\x7d\x97\xcf\x2f\x5c\x31\xa4\x23\x0a\x41\x40\x23\x1f\x56\x38\xa2\xcf\x78\x91\x46\xcf\x80\xc3\x17\xd1\x8f\xb9\x48\xa3\xd7\x27\x11\x85\x78\x89\xce\x85\xcb\x31\x44\x76\x7f\xbc\x5c\x96\x8d\xac\x93\xa9\x92\x45\x91\x46\xf8\xfb\x52\x4e\x3f\x47\xf4\x58\x7e\x7d\xa3\x72\x01\xac\xaa\xdf\xf8\x75\x1a\x7d\x10\xf9\x8c\x0b\x0d\x8e\x5c\xa3\x0d\x7d\xa1\xd9\xcd\x83\x34\x7a\x92\x4d\x3f\x5b\x6d\x8f\x87\x69\xf4\x3e\x3b\x8b\xe8\xe0\x20\x8d\x9e\x16\x3c\x53\x11\x1d\x1c\xa6\x11\xc4\x56\x8e\xe8\xe0\x5e\x1a\x9d\x5c\xe4\xa6\x6f\x83\xfb\xf8\x7d\x25\x8b\x88\x0e\x1e\xa4\xd1\xe3\xc2\xe4\x3e\x4c\xa3\x37\xd9\xaa\xe4\x11\x3d\xe8\xa7\xd1\xd3\x6c\x59\x22\x24\x07\xf7\x2b\xa4\x1d\x1e\x00\xba\x0e\x0f\x4d\xdd\x39\x37\xc8\x39\xbc\x8b\x69\x44\xc3\xe1\x8f\xe6\x8b\xb3\x88\x1e\xde\x4b\xa3\x5f\xe4\xc2\xbc\x73\xbf\x86\xd9\xc3\x07\x01\x66\x0f\x1f\xd6\xd1\x7a\xb7\x5f\x43\xea\xdd\x1f\xd3\xe8\x85\x28\xb9\x32\x45\xf7\x2a\xfc\x0e\x4c\x1f\x8f\x06\x26\x71\x98\x46\x47\x07\x26\x71\x37\x8d\x8e\x0e\x4d\xe2\xc7\x34\x3a\xba\x6b\x12\xf7\xd2\xe8\xe8\x47\x93\xb8\x9f\x46\x47\xf7\x4c\xe2\x41\x1a\x1d\xdd\x37\x89\x87\x69\x74\xf4\xc0\xa0\xaa\x9f\x46\x47\x0f\x4d\x62\x60\x1a\xec\x9b\x14\x34\x6d\xda\x3e\x30\x6d\x0f\x4c\xe3\x77\xef\xa6\xd1\xab\xd5\x02\xf1\x31\x30\x50\x85\x43\x75\x70\x70\x37\x8d\x8e\xb9\xce\xa2\x0d\xfd\xa0\xd9\xcd\xe3\x42\xa7\x51\x56\x68\x88\xae\x6a\x11\x9d\x46\x53\xad\x0a\xc8\x31\x35\xd3\x68\xc1\x75\x06\x8f\x30\x28\x69\xe4\xa2\x57\x87\x6a\x21\xbf\x04\x4b\x65\xeb\x50\xf7\xae\xa9\xe7\x5c\x1f\xcb\x99\x99\x17\xa8\x00\x3a\xda\xce\x4a\x38\x49\xbb\xdd\x84\xb3\x0f\xe0\x8b\x24\x8e\xbb\x5d\x88\x80\xe2\xbf\x74\x54\xd1\xf0\x9d\x5f\xb4\xe7\x58\xfd\x5e\x5b\xd7\x9f\xf9\x56\x0c\x07\x8c\xed\x61\x41\xfc\x5b\x8f\xe1\x79\x62\xae\xdf\x9f\xf9\x35\x38\x74\xaa\x4d\x5b\x43\x55\x78\xb6\x83\x25\x35\x23\x27\x89\xb2\x66\x84\xe6\x86\x0d\x6b\x37\xe1\x0c\xf6\x0a\x32\xb2\x73\x38\x45\x25\x85\xde\xb9\x92\x8b\xa7\x76\x47\x30\x3d\x8b\xac\x4c\xab\x6a\x60\xbd\x8e\x40\xac\x15\x34\xf9\xc2\x02\x67\x5e\x9a\x80\x3f\x9d\x00\xae\x34\x8a\x36\xb4\x90\x53\x24\xa8\xf0\x68\xc4\xe1\xc2\x07\x1f\x39\x1d\x9e\x70\x68\x31\x6d\x87\x31\xb5\xae\x60\x96\x3c\xb3\xa7\xb3\x69\xcd\x1d\xab\xcd\xe1\x48\x8f\x34\x75\x5b\x5a\xdb\x7e\xdd\x82\x11\xc0\x44\xda\xdf\x50\xdb\x85\x1d\xaf\x7d\x13\x0d\x1e\x07\xa6\xad\xab\x8b\xbc\x16\x68\xe4\xdb\x00\xfc\xeb\x6f\x6c\x08\xfd\xa4\x59\x9f\xfe\x6c\xfe\xfd\x06\x82\xd5\xb7\xf0\xff\x4e\x6d\x6a\x95\xe0\x9a\xe1\x0f\x8b\x6d\x78\xf8\x64\xc7\xa1\xc8\xb9\xd0\x7f\x84\x0f\xb6\x64\x99\xcd\xf9\x1f\x55\xf2\xd3\x7f\x3e\x6e\x6d\xe3\x83\x8e\x1c\x1d\xcd\x64\xd2\xa5\x1b\xe4\xf0\x74\x6b\xa5\x93\x6a\x55\x40\x4c\x64\xa6\x6c\x60\xc4\x12\x30\xa7\x46\xbc\xa7\xfd\xf1\x5e\xab\x48\x36\x74\x21\x2f\x21\xf9\x47\x73\xdd\x45\xbe\x04\x95\x83\x2a\x07\xe2\x2e\xdf\x4a\x85\x3e\xf9\x8d\xe2\x93\x39\x6e\x2d\x9e\xe9\x6f\x7a\x84\x72\x43\x53\xbf\x36\x74\xb6\xc6\xbe\x4e\xfb\x69\xf2\x1b\xc8\x53\xfa\x01\x24\x9f\x76\x42\xf2\x69\x07\x24\x9f\x2c\x24\x3f\x7b\x48\x7e\xae\x20\xf9\x44\xdf\x7e\x03\x92\x4f\x08\xc9\x5b\x07\xc9\x86\xd0\x5f\x35\xbb\x53\x4d\x1d\x2f\x69\xc4\xe1\x01\x85\x5d\x4c\xa2\xaa\xaa\x9d\x21\x66\x3a\xaf\x94\x27\xa3\xc5\xdc\x2c\xfe\xac\x78\x53\xcf\xcf\x0b\x37\xd5\x4c\xd2\x4e\x29\x7d\x65\x2e\x2f\xd8\x0c\x7e\xec\xbd\x27\xc8\xcd\x85\x20\x5f\x64\xea\xda\x91\x42\x7f\xd6\x80\x9b\x65\x3a\x03\xb5\x8e\x73\x1f\xde\x85\x72\x11\xce\x7c\x54\x08\x28\x43\xf2\xfe\x7d\x98\x85\x62\xf6\x59\x2d\x6f\xe7\x44\xbe\x65\xf2\xb7\xcc\xf1\x0d\xa1\x5a\x84\xe4\x5d\x68\xca\xfe\x6f\xc8\x51\x21\x6a\x7d\xe6\x85\xce\xfe\x68\xdb\x56\xb0\xc4\x11\xa0\xb6\x5e\x74\x75\xc1\x79\xf1\x2c\x28\xda\xe7\xbd\x20\xcf\x6c\x54\x50\xf5\xd3\xce\x26\x3f\xd5\x9a\xfc\x14\x36\xf9\xa9\xa5\xc9\x5a\x85\x96\x72\xff\xc5\x3f\x1d\xad\x5b\xe8\x0c\xc2\x90\xd8\xfe\x2a\xc1\xc6\x63\x14\xe7\x53\xfb\xd3\x07\x57\x3f\x70\x9d\x8a\xa8\x4f\x60\x2e\x38\xb2\xa5\xee\xd7\xe6\xc9\x12\x1d\x02\xc1\x2f\xe6\x55\x9a\x14\xa6\x24\x24\x10\x6d\xf9\xf2\x1a\x0a\xcc\x0f\xe6\xac\xb4\xc9\x30\xff\xe1\xd9\x29\x92\x44\xd4\x24\x9f\x06\xdf\x73\x9a\x25\xe0\x7a\xa5\xf2\xae\x6b\x0b\x51\x93\xc4\x3a\x04\x02\xea\xcd\xe7\xa3\x3a\x10\x96\xa0\x8e\x98\x2b\x93\x4b\xc8\x36\x3f\x90\x83\x9a\x0e\xd4\xfd\x42\x1e\xba\x07\xa0\xee\xd7\xe6\x5d\x66\x45\x3e\x83\x5c\x9b\x82\x7c\x77\xb2\x50\x93\x42\xf2\xcf\xe5\xe3\x59\x04\x05\x6f\x30\xe9\x4a\x56\x4b\xcc\xfe\xe0\xa0\xf0\xda\x37\x11\xc5\x74\xd0\x92\xd5\xc7\x71\x25\xfe\x1d\xd0\x6a\x89\xa8\xfb\xb5\x79\x40\x09\xbb\x5f\xcc\x2b\x32\x33\x00\xf8\x83\x39\xa1\x9e\x8e\x29\xc2\xe7\xa7\xe1\xf0\x07\xda\x3b\x55\x8d\x00\x2a\xaf\xd1\x53\x95\x7a\xc8\x2a\xfd\xa6\x88\xc2\xc3\x53\xfb\x80\xa5\x1c\x9d\x4e\xd9\x5f\xc8\x43\x35\x28\xf0\xd7\x83\x09\xcc\x45\x95\x1c\xea\x13\x90\x1b\xe8\x25\x45\x14\x9f\x6a\x90\x3b\x5d\x25\x57\x58\xcd\x8c\x4a\x79\xc9\x95\x85\x73\x23\x54\xb0\x8a\xa8\x7d\xac\x41\x6e\x66\x93\x9d\x54\x11\x1d\x54\x73\x10\x6e\x2a\x76\x16\xe2\xad\xc5\x97\x7d\xc9\xdd\x34\x7c\x0e\x49\x5f\x82\x8a\x32\x58\xf4\x12\xd3\xbe\x0c\xd4\x5e\xb0\xe8\xf5\xa5\x6f\xaf\x3a\x6e\xec\x4c\x00\x8f\xd0\x41\x99\x84\x49\x0b\xc9\xd7\x2b\x5d\x2b\xc1\x06\xb1\xa8\x6a\xd1\x8e\x9b\x6d\xd3\x3e\x05\xad\x06\x3a\x37\xbe\xb8\x6a\x39\xd4\xd1\xa9\x8a\xab\xd6\x4b\xb8\x6b\x98\xd1\xb3\x89\x01\x8e\xc1\x7c\x0e\x1e\x9a\x5c\x62\xe0\x47\xc6\xc2\x01\xe9\x00\x0a\xd8\xe1\x22\xea\x7e\x21\x0f\x74\xf9\xcc\x7e\x81\xbf\x07\x13\x3a\xfe\x8d\xd3\x4a\x1d\x10\xc6\xdc\xe4\xbe\x0d\x73\x2b\x0d\x53\x28\xbb\x13\x96\xd9\x99\x70\x60\x37\x44\xbb\x68\xa6\x99\x78\x03\xa9\x30\xdf\xea\x0c\x56\xc5\xef\x5d\x06\xd4\xaa\xab\x12\x9a\x71\xb4\x19\x6e\x2e\x41\x2d\xab\x61\x18\xd1\x2a\x85\xf9\x4e\xe3\xd0\x94\x54\x69\x5b\x36\xb3\xf9\xb3\x2a\x4f\x29\xf0\xc7\x66\x7f\x21\x6f\x5b\xfb\x89\x9a\xbc\x37\x6e\x99\xdb\x3c\xa8\x0b\xee\xac\xa8\xfd\xf1\x39\xa8\xdd\x68\xf3\x39\x32\x60\xc2\x52\xa7\xf0\xe8\x6b\x1c\xfb\x0c\x5f\xcb\x2d\x34\x93\x0e\xb1\xdb\xa2\x83\x45\x21\xb3\x15\x3e\xab\x3c\x69\x37\x30\x48\x61\xbe\x55\xa6\x04\x8f\x6b\x2e\x79\xe0\xf6\x12\x7c\xc3\xa7\x30\x1f\x75\x2b\xd1\x47\x16\xa6\x30\x1f\x75\x2d\x61\x9b\xb1\x29\xc8\xaf\x74\x2f\xcd\xa4\xcc\x17\x2e\xf0\x35\x94\xfe\xca\x69\xa0\x64\xea\xa7\x5b\xe4\x14\x33\x69\x95\x3a\x98\x4c\xa8\x14\x10\x25\x1a\xfe\x97\x82\xf5\x87\xa5\x78\xa4\xbc\xc4\xaf\xf4\xea\x35\x53\xc1\x94\x18\x97\x62\x42\x0b\xc1\xa6\x62\xdc\x9f\xd0\x15\x24\x06\x13\xba\x84\xc4\xc1\x84\x9e\x0b\x16\x49\x11\xed\x25\x2b\x53\xa1\xee\x72\x6b\x6f\x25\xac\xaf\xa5\x01\x21\x74\x26\xd8\xcd\x0e\xc1\x66\x7a\x63\x45\x8b\xe9\xb9\xa0\x4e\x24\x99\x9e\x8b\xbd\xc8\xe1\xdf\x50\x13\x55\x14\x94\x74\x5c\x88\x89\x65\xcb\x5a\xdd\xa3\x74\x29\x36\x43\x29\xc6\x2b\x31\x61\x33\x41\x33\x61\xaa\xb0\x19\x6a\x8a\x5f\x08\x76\x53\xc5\x54\x49\xa5\x30\xa4\xdc\xf3\xda\xeb\x2d\x97\x10\xef\x65\x20\xe1\x2c\x13\xe6\xd2\x3f\x72\x62\x13\xf7\xd6\xc1\x86\xd6\x82\xe6\xa4\xdb\x5e\xb1\x50\x8a\x04\xef\xdb\xa8\x31\xa1\x0c\xbf\xa1\xea\xe8\x0f\xea\x34\x3f\x07\xc7\x15\x7f\xe8\x44\xd4\x15\x13\x5c\xbd\x59\xe5\xad\x1f\x0f\xf1\x94\xb3\xdf\x75\xa8\x77\x88\xba\x92\xa1\x0a\x25\x67\xef\x6a\x35\x90\x9e\x31\xdf\x3a\x00\xa9\x1a\x5e\xd2\xb6\x3f\xe7\x89\x22\xab\x5b\xe9\x28\xa1\x40\x79\x32\x00\xa7\x3a\x1b\x82\xe7\xd5\x72\x4b\xd5\xb2\x55\x13\x33\xa4\xe0\x52\xce\xee\xe8\xa6\x92\x67\xa0\xdf\x69\x96\x47\xba\x53\xfb\x13\x8e\xbb\x2d\x65\x50\xff\x1c\x7c\xb3\x22\xd2\xdc\xb3\x04\x74\xfe\x59\xfb\x78\x78\xd4\xa7\x55\x4e\x05\x44\x75\x6e\x04\xcf\xb6\x5d\xce\xb8\x08\x1a\xeb\xfc\xc6\xd1\xd3\xf2\x5b\xfb\x7b\x87\xa7\x9c\x3d\x0b\xbf\xd7\xf9\xd5\x64\xe9\xf0\x2d\x77\x78\xa5\x9c\xbd\xa9\x81\x86\xa7\x51\xca\x99\xa8\x55\x07\x32\xd7\xa2\xd5\x23\x1c\x29\xb4\x94\xb3\x27\xfa\x3f\x55\x52\x0d\x75\x60\x6b\x08\x09\xe9\xb4\x5a\x4e\x80\x95\x50\x77\xf6\x76\xf5\x5a\x9c\xd3\xbf\x3a\x30\xab\x38\x0e\xff\x38\xbe\x57\xe7\xa5\x4e\xcc\x45\xd8\x0b\x2f\x21\x14\x36\x78\x6b\xa3\x7a\xb3\xa1\x67\x82\x5d\x80\x5f\xa8\xda\x5a\xa7\x0b\xc1\x06\x7d\x7a\x2c\x6a\x91\xd4\xe7\x35\xe5\xb5\x9a\x6e\x05\x68\xe0\x61\xf4\x8e\x1b\xde\x03\xe9\x93\x96\xaa\x44\xd9\xaa\xb0\xba\xbe\x56\x98\x02\x8a\x68\x87\x8c\x31\x85\xfa\x41\x4c\x85\x5a\x47\x52\xe8\x2c\x17\x5c\xbd\x10\xe7\xb2\x52\xdf\x1a\x2a\xaf\xfe\xa7\xbc\x96\xd7\x50\xb1\xc3\xae\x6d\x06\xb5\xe0\x76\xb6\x64\xc3\x89\x21\x9a\x7e\xec\x82\x7e\x1d\x6a\x43\xc5\xf1\x3d\xeb\x88\x61\x1b\x6c\x2a\x58\xa9\x12\x45\xac\x7e\x8d\x20\x35\x97\x15\x55\xf5\x50\xeb\x12\xf4\xfa\x5c\xc9\x58\x4c\x6c\x50\xc7\xaf\x3a\x69\xea\xf9\xb2\xba\x22\xad\xd7\xa7\xca\x59\xad\x26\x44\x80\xdc\x52\xb1\xf5\x01\xd0\xfa\xc3\xe9\xa3\xa5\x83\x60\xea\x0e\xa6\x82\x2d\xc7\xd3\xc9\xb0\x88\xe3\xa4\x60\x45\x3d\x6c\x19\xf8\x67\xcb\xa9\xa4\x19\x28\x8f\x94\xec\x7d\x52\xd2\x82\x90\xcd\xf3\xa4\xb4\xf1\xaa\x2e\x05\xf8\xe7\xf0\x1a\x9a\xd6\x90\xec\xb1\x48\x34\xe5\x75\x0d\xe4\xc7\x3e\x60\x9e\xdd\xa8\xcf\x04\xb8\x5e\x80\x05\xda\xb7\xce\xd0\xaf\x44\x10\xf0\x50\xd3\x41\xa8\xfc\xdd\x19\xa4\x8a\x7d\xdd\x51\xc1\xdb\x0f\xb2\xd7\xcd\x1a\x1b\x31\xe2\xbd\x6c\x36\x83\x4e\x39\xd9\x66\xa2\xa9\xa2\xdd\x3e\x49\x77\x15\x85\xa0\x5f\x79\xd0\x57\x7c\xbd\x9e\xf2\x84\xd8\x70\x33\xaf\x05\x95\x6c\xc5\x87\x2b\x6e\xd0\xa0\xd5\xf5\x4d\xc9\x13\x45\x6d\x74\x52\x17\x17\x31\x59\x71\x26\xc9\x7a\x7d\xce\x93\x50\xd9\xe7\xab\x6f\xf5\xb5\x4b\x05\xca\x5b\x75\x67\x90\xc7\xa2\xa1\x4a\x71\x2c\xac\xfa\x84\xac\xcd\x0d\xc6\xa9\xdc\x9a\x03\x4c\x53\xd9\x50\x5c\x91\xc1\xaa\x64\x8a\x72\x26\x31\x88\x1b\x67\x37\x35\xb3\x03\xbe\x6d\x76\xa0\x6b\x36\x07\x82\x56\x0d\xa5\x8a\xfa\x09\x9d\x8e\x27\x1b\x40\x08\x68\xe8\xcd\x05\x15\x8c\xd3\x25\x27\x3a\x11\x36\x22\x17\x7a\x7f\xba\x59\x7a\xd4\x15\xe8\x58\xdc\x96\x7a\xec\x81\x1b\x71\x8a\xb8\xf3\x99\xf5\x15\xe1\xe2\x3d\xd5\xfa\x88\x59\x41\x37\x6d\x4e\x73\x35\x32\xb3\x7d\xd9\xf4\xa3\x85\x88\xe3\x63\xe1\x35\x3d\x02\x65\xb8\x30\x52\xeb\x25\xd8\x82\x05\xca\xd6\x71\xbc\x3f\x78\x54\xea\x20\x60\x20\xe1\xac\xd0\x36\x6e\x27\xc6\xd2\xd6\xda\x35\x8b\x1d\xc7\x19\xf4\xde\xb5\x3b\xb4\xda\xb4\x6a\x04\xa6\x1b\x82\xa4\xcd\x26\x47\x09\xb4\xa9\xb6\x1b\x24\x2d\xb4\x52\x23\xd2\x91\xa5\x5a\x1c\x39\xa2\xd9\x12\x15\xb7\x9d\xa6\x8d\x73\x0e\x1a\x9c\xfe\x4e\xe0\x0d\x75\x55\x4b\xdd\x80\xde\x70\xe2\x6c\xa8\x2b\x5b\xea\xd6\x4e\x26\x1b\xbe\xb6\xb2\xca\x70\xac\xd8\x1c\xdc\xd3\x25\x92\x2e\x75\x92\x83\xdc\x28\x31\x0b\xa7\x42\x23\x1c\x47\xae\xcd\x96\x73\xd6\xc1\x11\x36\x4e\xb3\xa0\xd5\xec\x96\x56\x03\x6f\xa0\x0e\xc9\xeb\x75\x62\x87\x83\xfa\x15\x09\x4a\xf0\xe1\xdc\xf0\x63\x68\xc7\xf4\x2b\x48\xda\x25\x1e\x09\x81\xa9\x84\x24\x81\xda\xb6\x62\xd7\x06\x0c\x42\x24\xaa\x82\xf8\x39\x91\xe3\x39\x05\xa1\x6b\x0f\x5b\xd4\xab\x07\xfe\x28\xf3\xbe\xa7\x58\x62\x3a\xbc\xe0\x0b\x99\x7f\xe5\x33\xe0\xa7\x92\xca\xa9\x6b\x62\x0e\xc2\x4a\x49\x3e\x8e\x5b\x6a\x3b\xd7\x31\x4c\x12\x3c\x20\x65\x6f\xc6\x2f\xc0\x55\x39\x9f\x79\xa2\x59\x0d\x11\xd8\x8d\xf3\xdb\x56\xc1\x17\x1e\xa8\xf6\x3d\x12\xe8\xc9\xe3\xd1\xbb\xf3\xd4\x45\xd7\xbc\x61\xe3\xca\x3a\x6b\x92\xd6\xe6\xc0\xb6\xe5\x07\x41\x22\xc4\x81\xea\xa4\x8f\xe3\xfe\x67\xd3\xb8\x26\xe1\x78\xaf\xe2\x24\x17\x1d\x67\x82\xe9\x05\x96\xeb\x75\x92\xe8\xdb\x2d\x33\x49\xdd\x41\x29\xa7\x91\xa5\x2b\x22\x42\x75\x6b\x8c\x1c\x90\x6b\x52\x0c\x7c\xf1\x4a\x30\xc1\xaf\x5a\xe3\xd0\x7c\xe4\xd9\xe7\xe3\x6c\x39\xb2\xbf\xe9\x71\xb6\x0c\x54\x13\x5e\x06\x64\xd4\x2b\xa0\xbd\x82\xa0\x1a\xcd\xf8\xf0\xfc\xaa\x73\xc2\x35\x7d\x05\x3e\x3b\xe1\x14\x36\xdf\xaf\x94\x25\xc3\xfd\xab\x0b\x66\xac\x10\xe8\xa2\x69\xe4\x6f\xa9\x62\x38\xc0\x3d\x83\xa7\xdb\xaf\x19\x61\x6d\x1b\x91\x61\x75\xcb\x6a\xed\xf6\x09\xc5\x0c\xe4\x45\x9b\x67\x61\x4e\xd9\x04\x33\xfc\x13\xd6\xaf\x35\x5d\x23\x81\x91\x1b\x9d\xc2\xc8\xc6\xb1\xa3\x29\xea\xb0\x38\xa6\xad\x75\x78\x8c\xfc\x44\x7c\x40\x3e\x64\x5a\xa7\x0f\xf6\x07\x8c\xb1\x3f\x79\xb0\xad\xc6\xb1\xa5\x5a\x36\x08\x16\xb7\xa4\xcd\x89\x08\x4c\xa2\x3d\x87\x09\x43\xe6\x77\xfb\xf4\x0c\x5c\xcf\xbc\x58\x64\x73\xfe\x7a\xa5\x4b\xde\xcc\x3c\x31\x97\xf5\x46\xde\x47\x10\x06\x41\xde\x97\xa3\x82\x7f\x09\x92\x3f\x2b\xb9\x5a\xda\xe7\xd7\x6a\x66\x8e\x39\x9f\x35\x95\xc5\x6a\x51\x7d\x19\x1f\x4b\x93\x3c\xb7\x8d\x9c\x63\x0b\x57\x2e\xfd\x06\x6c\x2c\x2f\xb9\x7b\x3e\xb9\x50\xb9\xf8\xec\x9e\x5e\xf1\x79\x16\x96\x62\xcc\xc1\x6e\x9f\xce\x55\x3e\x7b\xac\x78\xe6\xd2\xef\xb0\x45\x9b\x7c\x2e\x66\xc1\xd3\xc9\x32\x13\xe1\x23\xd8\x73\xdb\xe7\xa7\x00\x61\xfd\x29\x78\x1b\x33\xc2\x06\x6c\x8e\x6b\xe3\x5c\x0a\xfd\x11\xa5\x65\xdd\x3e\x2d\x72\xc1\x9f\x16\xd9\x62\xe9\x1e\x7e\xf1\x45\xd6\x3b\x0e\x24\x5d\x27\xa4\x5a\x5e\x64\x88\x1e\x9d\x9d\x9d\xe4\x5f\xa1\x9f\x57\xf9\x4c\x5e\x41\xe6\x57\x70\x3d\x02\x29\x29\x17\xf0\xb9\xbc\x28\x5e\x57\x2d\x81\x4f\xa6\xe0\xb9\xd4\x72\x59\x7b\x54\xf2\x33\x7f\xe6\x7c\xfd\xd4\xb3\xd0\xdb\x4f\x95\x77\xec\x1d\xfa\x54\x79\x5b\x6d\xb9\x69\xb1\xa1\xff\x08\xe6\x4d\xf7\x69\xb4\x28\x23\x0a\xf6\xfa\x34\x7a\x1d\x05\xd7\xab\xa7\xcd\xe0\xf8\xb8\x77\xeb\xf5\xda\xfb\xf6\xae\xb9\x17\x8f\xac\xd3\x8a\x28\x15\xeb\xb5\xf3\x6f\xd8\x0d\x6b\xf4\xd1\x80\xf0\x64\xcb\xbc\xdd\x2c\x8f\x13\x31\xe6\x93\x51\x12\x45\x7b\x9a\xf4\xb4\xca\x17\x09\x49\xf5\x5e\xb4\xfc\x12\x05\x4a\xb8\x96\xf0\xf7\xb6\x45\x10\x42\x12\x42\x36\x5e\x17\xa6\xa4\xcd\xa7\xa5\xf0\xbe\x2a\xd1\xc3\xb9\x5b\x93\xd1\xfe\x7e\x64\xce\xcf\xa7\x22\x11\x54\x8f\xc5\x84\x2a\x32\x8c\xce\x0b\x99\x81\x82\xb4\xf5\xba\x36\x2d\xcb\x23\xc8\x22\xce\xb5\x74\xd5\x30\x95\x24\xe5\x63\x31\x61\x72\xb3\xb1\xfe\x83\x3f\xf3\xeb\x32\x39\x11\x3b\x5c\xef\xfc\x23\x5a\xf2\xc1\x51\xa1\xde\x43\x7d\xaf\xc7\x3a\xe9\x93\x06\x4f\x8e\xf7\xca\xd5\x19\xba\xaf\x4f\x06\x84\x9e\x88\xb1\x9e\x30\x40\xd7\x86\x78\x5f\x2e\x1f\x05\x93\xc9\xcd\x82\x8b\x55\xae\xf9\x02\x86\xf9\x26\xb3\x8b\xec\x2c\x2b\x71\x8f\x50\x76\x61\x9b\x1f\xbe\x38\xe3\xb0\x56\x2e\x20\x37\x5f\xcc\xe1\x47\x2c\x57\x30\x89\x3e\xf3\xeb\x39\x17\x76\x2d\xc0\x9a\x5e\x70\x0d\xad\x2d\x33\x95\xc1\x84\xc6\x40\x16\xb0\x02\x54\x36\x85\x3a\x57\xf0\x89\x50\xf1\xed\x99\x08\x5d\x5b\xe4\xe7\xc9\x47\x03\xb8\x27\x1b\x2a\x8f\x7a\x48\x29\xdd\xe6\x33\xb0\x69\x29\x74\x78\x9f\x50\x4e\xa3\x28\x20\x7e\x76\xbf\x1c\x3a\x25\xf4\x4e\xfc\xea\x0d\xde\xeb\x13\x1b\x81\x7b\x3b\xa4\xd9\xce\x86\xe3\x38\x3a\x3d\x05\x7f\x2c\xb9\xd8\x5d\xab\x09\xfb\xbd\x81\xb5\x15\xb3\x10\xc1\xfc\x8d\xe3\xed\xe0\x75\xb6\xa8\xf9\xfa\x01\x31\xfd\x0e\x88\xc3\x27\x15\x9a\xf7\x31\x26\x59\x35\xcd\x23\x47\x59\x6d\xc7\x99\xd3\xbd\xbc\x6c\x72\x34\x33\x21\xa4\xf5\xcb\xf6\x65\xe1\x0f\xc9\xd0\x4d\x9d\x67\x51\x82\x1f\xb9\xe9\xd6\xf3\x7e\xa9\xa6\x5b\x79\x2b\x95\x6f\xe5\x9d\x4b\xb5\xc8\xf4\x56\xb6\xc8\x16\x9e\x13\x99\x97\x65\x2e\xe6\xfb\xe0\x33\xce\xc7\x12\x18\x34\xdd\xfe\xf7\x03\x54\xbc\x11\xa1\x47\x13\x43\xdd\xb0\x87\x35\x53\xa6\xf5\x7a\x30\x68\xd8\x36\xa5\x0d\x0f\xac\x64\xa8\xd9\xc5\x58\x4f\x86\xed\x71\x86\x21\x98\xf0\x73\x91\x40\x2c\x61\x5e\xbb\x51\xbf\x13\x35\x95\xde\x3f\xbc\xc6\x48\x4b\x50\x86\x84\x83\x67\xd7\x56\x4f\x3d\x8e\x52\x1c\xb9\x84\x75\x7b\xd9\x30\x7a\x33\x37\x5a\xaf\x7c\x52\x73\x1b\xbb\x5e\xf3\xde\x99\x9c\x5d\xdb\x50\xe0\x81\x2f\x57\xcc\xae\x60\xfc\x1b\x75\x92\xa5\x4a\x86\x60\x4b\x53\x73\x61\x53\xf7\x43\xe3\x3d\x8d\xf8\x97\x5f\x84\xd8\xa6\x8a\x41\x63\x43\x17\x16\x4c\xa1\x6d\x1c\xd2\xe6\xde\x4f\x0d\x3a\xd9\xe4\x7b\x2a\x74\x4a\x63\x51\x4b\xf9\x23\x70\xdc\xf8\x93\xd7\x99\xbb\x31\xef\xa5\x8a\xda\x43\x4f\xef\xf3\xcd\x90\x33\xb1\xe1\xa9\x65\xc5\x0d\xed\xd5\x40\xf0\x2f\xfa\x04\x0d\xe7\xc8\x8d\xb9\x8d\x04\x19\x2e\x2a\xde\xc6\xe4\x57\x86\x6c\x1b\x65\xa3\xde\x6f\x00\x72\x15\x2e\xa9\x0f\x22\xa9\x4e\x1a\xce\x50\x57\x98\x6a\xf6\x87\x48\xc8\x50\x87\x36\x20\xbc\x67\xd6\xf8\x8b\x23\x95\x2d\x1c\xf6\x87\xe4\xc6\x0c\x8d\x0d\xca\xd7\xb2\xee\x6c\x5c\xa2\x8f\xa8\x81\xec\xb4\xf0\x7a\x17\x8a\x9f\xdb\x11\x53\xe4\x46\xd8\x00\xb8\x5d\x67\xf4\x0e\x5f\x4f\x38\x6b\xbc\x4f\x7c\x4c\x3a\x7f\x85\x09\x5d\xfc\x84\x7c\x52\x33\xc0\x2e\x96\x41\x98\xae\xfb\xf6\xf1\xd7\x96\x38\x4e\xaa\x70\x07\xf0\x04\x01\x51\x43\x45\xb8\x92\x67\x6a\x7a\x51\xcb\xd2\xbc\xa8\x3d\xaf\x54\xfd\x79\x99\x95\xe5\x95\x54\xb3\x2a\x93\x34\x62\x02\x1b\x7a\x02\xfc\xcc\x43\x8d\x46\x10\x27\x54\x83\x3f\x12\x2c\xba\x13\xd1\xdf\x05\x8b\x7e\xb8\x13\xd1\x4f\xe6\x71\x14\xd1\x9f\xcd\x6f\x37\xa2\xbf\x59\x13\xf9\xb7\xa2\x11\x85\xef\x8e\x68\xf5\x59\x61\x63\x18\xa7\x96\xde\x5f\x7a\x6e\xb7\x0d\x5c\x6c\x25\x04\x0e\x46\xb7\xf3\x74\x75\xcf\x07\x55\xda\x6c\xdb\x83\xfd\x2a\x42\xcf\x61\xf5\xb0\xc7\xeb\x75\x84\xce\x8a\xdd\x93\x90\x18\xad\xc1\x87\x4c\x6e\x99\x36\xfe\xb4\x0c\x3d\x48\xb7\x94\xfe\x9b\x13\xcc\x39\x44\xf8\x56\x8d\x9d\x15\x7a\x78\x04\x62\x00\x46\xd1\x7a\x55\x2d\xb9\x7e\x9f\x2f\xb8\x5c\xe9\x51\x95\x74\xae\x7c\xb9\x6a\x7d\x67\x5a\xf0\x4c\xb9\xb7\xc2\x07\xfb\x5e\x35\xa6\x5a\xf9\x2d\x0c\x41\xe5\x43\x08\xda\x11\xee\x08\x4e\x50\xe0\xb6\x21\x60\x7d\x04\xc1\xe2\x70\x89\x6d\xb6\xb7\x38\x01\x8d\x9b\xf6\x96\x8a\x5f\xe6\x72\x55\xba\x4d\xa5\x32\xee\xec\x0f\x39\x6e\x43\x0f\x6a\x27\x4b\xe5\xcc\x6b\x96\xe9\x0c\xe8\x14\xc6\xd8\x91\x21\x76\x18\x63\x3f\xdb\xdf\x4f\x78\x5f\x06\xf2\xb8\x72\x10\xa5\xf7\xf7\x91\x49\x61\xaa\xfc\x2e\xe2\x58\xef\xed\x6d\x5a\xa0\xa8\xd9\x08\xc3\x59\xa5\xd8\x71\xa6\x2f\x7a\x2a\x13\x33\xb9\x08\x1d\x9d\x1d\xde\x73\xa1\x74\x0e\x08\x95\x8a\x45\xa7\xa7\x10\x8e\x17\x6c\x3a\x44\x56\x38\x53\x9d\x3b\xd1\x9e\x52\x34\xaf\x2a\x00\xb3\xf3\x97\x4c\xcc\x0a\xae\x4a\x2c\xcd\xaa\xd2\xa7\x8e\xc9\x82\x2f\x56\xc3\x52\xaa\x30\x68\x9b\x54\x20\x4f\xad\x74\xa1\x03\x7f\x11\xa1\x75\xf1\x50\x20\x2a\x35\x13\xe3\x4c\x4d\xd6\x6b\x61\x5e\xf5\xae\x99\x3d\x8f\x89\xfa\x79\x0b\xf3\xde\x11\x90\x86\x72\x77\x29\x6b\xdf\x8d\xc7\x11\x8c\xa3\xf3\xfe\x61\x87\x4b\x20\x5c\xfe\x4c\x1d\xda\x6a\xd5\x36\x2a\x98\x79\x95\xd4\x0e\x8d\x36\xa3\xec\xa9\x0a\x82\xf6\x98\x93\xdd\xb4\xbb\x5e\x73\xd3\x05\xb2\x5e\x7b\x4b\x68\x14\xf0\xd8\x24\x70\xd9\x6c\xda\x27\xbd\x07\x05\xef\xc1\x47\x59\x22\xe2\x47\x66\xab\xa0\x41\x3b\x0f\x0d\xda\xc3\xb8\xf5\x75\x6a\xf1\xf0\x30\x34\x9a\x5d\xa9\x5a\xd0\xad\x1c\x10\xec\xa6\xce\xd2\xc6\x1b\x39\x77\x71\x47\x54\x63\xf3\xbc\x50\x18\x1f\x74\xe6\x3d\x23\xcc\xd4\xd0\x9a\xa6\x51\xc1\xce\x15\x55\xde\x74\x99\x4a\x66\xe3\x09\xe4\xa2\xb3\x54\xa3\xa5\xb2\xb1\x2e\x96\xb5\x83\x9f\xe6\x4c\x3a\xba\xaa\x0a\x27\xaa\xe2\xd8\x5c\x14\x18\x63\x72\xcc\x27\x10\x54\x14\xbe\x93\x31\xb5\xcf\xad\xdd\xf3\x60\xa8\x1f\xb1\xcc\x54\x54\xfb\x1a\xab\xe6\xfb\x7a\x02\x26\xd0\x43\x0f\x1e\x93\x76\xce\x73\x3a\x78\xa4\x47\x83\x7d\x4f\x4a\x41\x97\xcf\x54\xa8\x0c\x6a\x96\xa9\x53\x78\x5c\xec\x2c\x39\x56\x6c\xfc\x90\x0e\x0e\xe9\xc1\x7d\x7a\x78\x30\xa1\x73\xc5\xfe\x8c\xe3\xe8\x69\xe5\x76\xaa\xe1\xcb\x8c\x5e\x5a\x44\x9a\x6a\xee\xac\x3e\xb6\x26\x3f\xee\x39\x8e\x93\x4b\x55\xb1\x08\xc3\x6a\xd8\xf7\x6b\xfc\xcc\x7b\xfe\x45\x37\xda\x8f\xe3\xee\xa5\xa2\x8f\xa1\x3c\xe9\xce\xd5\x7a\x7d\xa9\xe2\xf8\xc1\x23\xf3\x7f\x30\xf8\x89\x5d\x2a\x42\xaf\x14\x6b\x33\x25\x38\x3c\x20\xf4\xab\x62\x37\x67\xfc\x5c\x2a\x0e\x7e\xb0\xd2\x6f\x6b\x7d\x44\x52\x3c\xa9\x5e\x88\x2a\x15\x90\x7a\xc1\x2e\x65\x90\xa8\xee\xb0\x0b\xd5\x19\x9d\xc2\xa3\xf7\xc7\xe5\xb5\x13\x27\x1b\x1a\xbc\xf0\x5c\xcc\xbe\x0f\xc2\xa7\xb5\x77\xea\x40\xd6\xcb\x76\xc0\x09\x9c\xc4\xa6\x73\xb1\x1d\xbe\xc4\x2a\x9d\x8a\xc0\x0b\x57\x0d\x6e\x64\x3c\xfd\x5b\xc8\xad\xee\xd3\x0e\xd8\xa1\xf4\x7b\xa1\xbf\xd5\x17\xda\xb7\xe1\x47\x05\xa6\x7f\xdd\x01\xa7\xf7\xb4\xa3\x07\x58\xfc\xbd\x5d\xb0\xde\xec\xfe\x55\x1f\x36\xf4\x54\xd5\x62\x04\xbf\x56\xad\x14\xa0\x55\xca\xc1\x8d\x63\x7f\xd0\x65\xec\x58\xf9\x6b\xb4\x76\xe6\x1d\xa4\xa1\xcf\x63\xf7\x99\x83\x83\x87\x70\x14\x39\xd3\xbe\x86\x72\x50\xab\xda\x0d\x72\xb5\x7d\x34\xa6\xed\x50\x76\x95\xec\x27\xd8\xb4\xb7\x48\x3b\x30\x16\x44\xd3\x44\x62\xb6\x97\xc0\xdc\xb1\xda\xb4\xcc\xfe\xf1\x05\xd0\x00\xc2\x02\x55\x53\xaf\xfa\xaa\xbe\x4f\x29\xca\x1c\xdf\x73\x45\x78\xda\x44\x5d\x73\x92\xa1\xf0\x2d\x67\x5f\x55\xaf\xb9\x00\x7c\x7c\xf2\xe6\x8b\xa0\x96\xd3\x7c\xe5\xb9\x98\xed\x7c\xc1\x6a\xd7\x6d\xbd\x83\x33\xca\xdf\xf8\x72\x77\xc5\x03\x62\xea\x8b\x1a\xc1\xf0\x43\x14\xa1\x96\xaf\x35\xac\x7d\xe2\xf8\xe0\xe0\x21\xb0\x0d\xed\xc0\xb6\xbc\x05\xdd\xf2\x07\x4e\x3e\x4a\x1e\xab\x38\x8e\x3e\x4b\x08\x04\xd3\x43\x93\xa8\x38\x4e\xbe\xa8\xf5\x3a\xef\xb2\xb6\x97\x47\x39\x6b\xe6\x3f\x17\xb3\x38\xfe\xa2\x40\x36\x65\x0e\x5d\x92\x26\xe7\xaa\x3a\x4f\x93\xa5\x62\x8a\xec\x3c\x52\xcd\x48\xf7\x09\xa1\x39\x3b\x53\x81\xae\x4d\xee\x3d\x1e\x8c\x72\x98\x1b\x4c\xa6\x4e\x7c\x27\xd9\x7b\x95\x60\xb8\x15\x57\x46\xe8\x4b\x9d\xe4\x84\x4a\x96\x93\x14\x45\x64\x34\xe1\xec\x5a\x8d\xea\x0e\x7d\x77\x4f\x06\x18\x53\x8b\x98\xf7\xca\x85\x49\x0c\xd6\x85\x13\xde\x1d\xc0\xe2\x01\xd3\x2c\x24\x7f\x12\xb3\x66\xfb\xf4\x4a\xd9\x57\xaa\x43\x21\xf5\x8e\x6f\x34\xc0\x49\x18\x63\x57\x2a\x8e\x4f\x95\x25\x9c\x1a\x0b\x09\xe9\xb4\x0d\x4a\xbb\xb7\x3c\x11\x7f\x71\x84\x4c\x13\x6c\xbc\x83\x75\xe7\x2a\x8e\xed\x7e\x31\x4a\x38\x0c\x85\xa1\x8a\xce\x15\x73\xb4\x12\xac\x2a\xca\x49\xda\xa6\x1e\x68\x75\xb7\xda\xd4\x01\x2b\xb5\xc1\x6e\xa2\x7b\xd6\x88\x65\xbd\x06\x02\xd7\xa6\xac\x99\x0b\x84\x63\xb2\x15\xe2\xd8\x55\xb0\x11\x9c\xa6\x17\x99\x39\xe4\x1f\x61\xca\xe9\x6f\x78\x3b\x49\x93\x89\xae\x8e\x00\xb9\xae\xa0\x8d\x12\x70\x55\x36\x5b\xd0\xee\x18\xd1\x60\x9e\x6b\x3b\xcf\x71\x08\x70\x60\x6e\x19\x07\x32\x4a\x12\xcd\x16\xe1\xdc\xfc\xaa\x7a\x01\x09\xe2\xe4\xe5\x38\x13\xb9\x99\x88\x9a\x90\xd4\xaa\x57\x38\x29\xf2\x08\x8d\x71\x40\xee\x20\xd3\xb1\xa4\x7a\xb2\xd9\xd0\x97\x8a\xdd\x00\xbf\x32\xed\xf6\x29\x1c\x59\xf6\x57\xe7\x0b\x48\x47\xee\x61\x1f\x80\x8e\x90\x1d\x9e\xe5\xc0\x17\x5f\x48\x81\xd2\x33\xbc\x5f\x23\xc7\x1b\xd9\x15\x26\x0d\xd1\x0a\x80\xfb\x0d\x6c\x0f\xe0\x7e\xf3\x02\x7f\xbe\x00\xe7\xdc\x7d\x65\xa5\x20\xfb\x8a\xf3\xcf\x69\xb7\x1f\x18\xb8\x3e\x57\xff\x29\x3f\x26\x60\xc5\x8c\xba\xdd\x97\x6a\x8c\xcc\x93\x49\x5a\xe7\x9d\xa0\x60\xd1\x60\x01\x54\xc6\xbf\xf3\xc4\xb6\xea\xe5\xb5\x63\x1a\xf2\x6e\x3f\x9b\xad\x43\x54\xf0\x8e\x8a\xde\x4e\xd1\xab\x6a\x70\x44\xaf\x96\x1d\x64\xa2\x54\x6a\xed\xb5\xf3\xb9\x42\xcd\x3f\xaa\x2e\x73\x4a\xb8\x21\xc1\xab\x49\x72\xa2\x7a\xd8\x80\x55\x9c\x20\x18\x7b\x3d\x72\xca\xf2\x12\xa2\x26\x81\x27\x1f\x8a\xee\xd1\x9f\xda\x55\xfa\xb9\x79\x93\xf9\x08\xa3\xf0\xbc\xe6\x69\xe5\x99\xbb\x68\xbd\xe6\x09\x5c\xba\x3c\xb3\x35\xb8\x8d\x3d\x51\x7e\xf3\x70\xdf\x0d\x1d\x7d\x21\xf6\xdf\xd4\x29\x8e\x77\xe6\xda\xf4\xd4\xec\xe6\x4f\x15\x1c\xd5\xd3\x0b\x38\x69\x93\x48\x0a\x67\x7f\xe6\xfa\xf0\x87\x22\x06\x5a\x0b\x78\x00\xdd\x1f\x0e\x3a\x7b\x0a\xc0\x0d\x30\xb4\x5e\x8b\xe3\x67\x2a\xf9\xac\x08\x81\x50\x58\xff\x98\x34\xe5\x14\xbc\x85\x11\xba\xe2\xe4\xb9\xd7\x0a\xaa\x34\xc9\x32\x9e\x7c\x44\x7f\xa2\x56\xe7\x69\x55\x53\x84\xf2\x3c\x62\x3f\x30\x56\x9e\x0e\x6e\x06\x12\xd3\x2f\x40\x2d\x4d\x9e\x2a\xa6\x49\x2f\xd3\xdf\xea\x1b\xc1\x89\x63\x4f\x57\xd3\x40\xc0\x4c\xf6\x3d\x6c\xce\x17\xcb\x11\xab\x8c\x6e\xf1\xc1\x9f\xd3\x0e\xfb\x88\x80\x80\x89\x1b\x0e\x16\x68\x40\x37\x6a\x87\xae\x9e\x7e\x09\x2a\x57\x31\x5e\xd7\xeb\xb6\x61\xc6\x57\xcd\x75\xeb\x8d\x62\x5f\x84\x7b\xc1\x1c\x9f\xdd\xd6\x2b\xdc\x7a\xfd\xf0\x51\xfb\xdd\x0e\x2f\x77\x47\x75\x92\xec\x44\xd1\xd3\xbc\x84\xbd\x10\xb0\x79\xb2\x5a\x2e\xa5\xd2\x7c\x96\xbe\xf9\x4e\x62\x8d\xe9\x51\x61\x80\xb4\x5e\x2e\xe0\x9a\x5d\xed\x34\x72\xd7\x4e\x53\x61\xdf\xf4\x37\x07\x97\xfc\x16\x15\x79\x1c\x47\x20\xff\xf1\x21\xad\x09\x5e\xc9\x9f\x28\x1f\x63\xf1\xb9\x4a\x24\x4c\xc0\x37\x8a\x64\xec\x17\x2c\xb8\xc9\xd8\x0b\x64\x13\x94\xec\x6f\x05\x84\x58\x12\x82\x53\x0b\xaa\x9b\xdf\x1e\x54\x57\x6e\x05\xb7\xb4\xa0\xc4\x71\x92\xb1\x0f\xa8\x0a\x95\xc1\x43\x86\x0a\x2a\x6e\xc8\xfe\x51\x49\x06\xf8\x19\x96\x71\x5c\x26\x9c\x4a\xaa\x09\x0d\x67\x63\xc2\x99\xac\xc7\x95\x22\x66\x4f\xae\xe2\x6c\xc6\x71\xc0\x76\x75\x81\x8e\x4f\x78\x22\xa9\xcb\xa7\xd2\x06\xd9\xda\x6c\xe8\xef\x8a\xdd\x00\xcd\x0f\x76\x5d\xe9\x4d\xd3\x2b\x99\xd9\x62\x8f\x7d\x79\xd4\xbc\x23\x37\xad\xb2\x40\xab\x6d\xb2\xa1\xf0\x00\x46\x5f\xb7\x34\x69\x8d\xc2\xbe\xb3\x49\xab\xc5\x76\x0b\x9c\x6f\x82\x1a\x5b\xcd\xb6\x59\x7a\x35\x9a\xbe\x05\xde\x37\x41\x8d\x7f\xd3\xf4\x86\x7e\xaa\xaf\x99\xdf\xbf\xb5\x32\xa8\x24\x56\xf9\x2d\xe8\xbe\x5d\xe3\x61\xdb\x26\x8b\x66\xac\x42\x57\xa3\x8e\xcd\x01\x2f\xa1\x18\x38\x3d\x39\x3c\x88\x25\xfa\xbe\x6b\xd8\xc1\x8b\x9a\x75\xfb\x7a\xdd\xcd\xe2\xb8\x9b\xd7\x84\x78\xf9\x39\xe8\xca\xe1\x3a\x05\xe5\x4c\x95\x42\x4e\x5d\x26\x39\x92\x3e\x5e\x5a\xce\xaf\xd6\x6b\x69\x79\x92\x28\x03\x72\xcb\x3c\x1b\x25\x19\xd3\x8e\x37\x9a\x68\x54\x2d\xdf\x02\xca\x9b\xdf\x93\x51\x09\xbb\x04\x1c\x36\x71\x9c\x68\xf3\x56\xce\xae\x81\xe0\x42\xbe\xa5\xae\xf8\x96\xda\x2a\xa9\x27\xd6\xa7\x31\x49\x33\x3c\x5f\xb3\x90\x79\xed\x7a\xb5\x85\xc0\x3a\xd6\x09\xee\x08\x77\x34\x9d\xb2\xdf\x55\xaf\x9a\xd7\xb4\xf0\xcf\x30\xe1\xe8\xca\x8e\x45\x04\xdb\x49\x38\x0e\x5d\x8c\x9e\x12\x8e\x5e\x17\x03\x66\x96\xec\x57\xdb\x70\x38\x05\xb1\xe9\x70\xbe\x9b\xc6\xed\x33\xaa\x12\x70\x1b\xfb\x37\x1b\xc9\xb4\x50\x49\x66\x2e\x40\x56\xf7\x05\x73\x34\xa1\xc9\x94\x95\x01\x5d\x32\xa5\x99\xa5\x57\x81\x1e\x59\xed\x45\xd6\x40\x73\xea\x3c\xec\x71\x3a\xad\x0f\x02\x93\x34\x11\xb5\x46\x0a\x4f\xf4\xba\x46\xac\x6d\xa8\x70\x8d\x48\xda\x18\x49\xc6\xe9\x8a\x69\x9a\x28\x96\x91\x38\x5e\x11\x2b\x13\x2d\xd8\x8a\x72\xd6\xa7\x19\x2b\x99\x1a\x66\xc3\x8c\x9d\xea\x24\x23\x84\xef\xed\x01\xeb\x34\x63\x7d\xaa\x59\x31\xd4\x43\xeb\x74\x92\x64\xb6\x64\xd8\x7f\xc4\xf7\xb3\x21\x29\x4d\x7e\x49\x28\xdf\xdf\x77\xf9\xd9\x3e\x1f\x92\xc2\xe4\x17\x84\x66\x2e\xdf\x54\x80\x13\xb3\x64\x8c\x15\xeb\x35\xfc\x04\x7a\xa0\xee\xf2\xee\x1a\xb4\x0d\x6c\xca\x40\x0b\xb3\xb4\xa4\x19\x40\x5e\xd2\x92\x8d\x27\x43\x15\xc7\xaa\xcb\x58\x51\xc5\xad\x4f\x78\x4d\xc1\x74\xbd\xe6\xa6\x9c\x0c\x89\xb5\x8f\x50\x84\x2a\xd3\xb8\x42\xf1\xb3\x32\xad\xac\xe2\x78\xb5\xd5\xca\xaa\xb5\x15\x85\xad\xac\x08\x5d\x99\x56\x56\xd8\xca\x8a\xf5\x87\xab\x47\xde\xa4\x62\xb5\xb7\x47\xbe\xe8\xa4\x1c\xaf\x42\xe7\x9a\x53\x57\x57\x55\x4e\x3b\x57\x06\x2f\x5f\x74\xa2\xa0\x6a\xe5\xb4\x53\x38\x5a\x7e\x3c\xa5\x62\xb2\xd9\xc0\xa9\xf8\x73\xbb\xfc\xcb\xea\x14\xe5\xe5\xc8\xa7\x1a\x17\x58\x47\x9d\x5a\xe1\x6c\x1f\xa7\xfe\xe0\x07\x93\x31\xf8\x41\xdb\xee\xf1\x38\x36\xab\x5a\x6f\xe8\x6f\xca\xc5\x89\xaf\x3c\x7e\xd5\xd5\xa5\x2a\x9a\xf5\x6d\x45\x0d\xfd\x8c\xc9\x2a\x70\xb8\x59\xdb\x5b\xba\x2a\xd6\xb5\xab\x13\x6d\x6e\xa9\xb2\xf8\x62\x5d\x57\x9d\xf5\xb1\xeb\x41\x79\x0a\xc2\x53\x86\x19\x1a\xf5\x7b\x2c\x6a\x41\x2b\xb9\x76\xc9\x35\x74\x36\x8c\x77\x7f\xa8\x2a\x37\xa8\x6a\x6f\xcf\x50\x21\xdd\xdf\x94\x0d\xf5\x4e\xc5\x18\x04\x31\x5d\xd3\x99\xb1\x79\x98\x50\x8d\xbf\xa4\x6a\xc9\xeb\x93\x18\xc0\xee\x20\xbf\x7d\x37\xbf\x7e\x30\xf8\xa9\x9d\x5f\x4f\x7f\x55\xec\x06\xa9\xa8\xef\xbb\x7d\x61\x38\xd6\xfa\xed\x0b\xf3\xbe\xc1\x19\xad\xe2\x50\xb8\xd0\x18\x78\x09\xab\x5f\xbf\xb6\xc3\x73\xdc\x7a\x21\xa3\x7f\xda\x5b\x13\xb7\x5c\x1f\x6d\x7f\x85\xac\x5d\x6b\x94\xac\x87\x53\xf5\x27\x98\x1e\x55\xf8\x48\x1f\x82\xef\x65\xaf\x6c\xa3\x53\x5d\x3f\xd8\xbc\xb7\x67\xe9\x66\xc8\x9f\x6a\xbd\xfe\xd3\x2c\xff\x3f\x44\x22\xac\xaa\x78\x70\x27\x40\x96\x78\x2e\x12\xc1\xfe\x54\x24\x8e\x7f\xc1\x5a\xec\x06\xc3\xfd\x88\x5e\xbd\x26\xe5\x62\x16\x66\x3e\x17\xb3\x4d\x0a\x6a\xb7\xd3\x0b\xa9\xc0\x9f\x71\x22\x58\x22\xea\x50\xc5\x71\x23\xa3\x7e\xf8\x3a\xe7\xca\x73\x6e\x43\xe9\x82\x17\x42\xd2\xab\x1a\xa5\x98\x7c\x8d\x6a\x2b\xa2\x17\x3e\x52\x18\x24\xf8\xb4\xe8\xf9\x34\xe6\xfa\x17\x82\xa7\x0d\xd5\x32\x8e\xdf\xaa\x44\x4b\xea\x11\x62\x06\x85\x36\x6f\xc8\xbf\x2a\xdb\x51\xca\xc1\xc3\xa9\xbf\x22\x5b\x9a\xde\x1b\xab\xb0\x3f\x95\xbb\x28\x13\x94\x84\x49\x59\xa3\xa6\x7e\xfd\xce\x7b\x06\xcd\x1b\xb4\x4b\x7d\xe4\x2b\xbd\x9f\x91\x4a\x1b\x24\x0d\x6a\xdb\x49\xd6\xcd\x09\xb9\xe1\xe9\x4d\xce\x5e\x0a\x64\x38\x5e\xf4\xdc\xfc\xf7\x42\xe2\x8c\xf5\x87\xd9\x23\x2f\x2a\xcc\xec\x02\xcf\x41\xc9\x5c\x8e\xb3\x09\x21\x37\xb9\x99\x9e\x15\xe3\xb7\xdb\xdf\x98\xc6\xc1\x1b\x7c\x9b\x11\x6f\xde\xbc\x23\x35\x02\x98\x98\xdb\x4c\x4e\x02\x55\x94\x7c\x4b\x15\x25\x8e\x93\x3f\x15\xcb\xcd\x4a\xd1\x6e\x99\x90\x6d\x9b\x5e\x2d\x19\x97\xcc\x2e\xab\xad\xb8\x26\x28\x13\x30\x8b\xab\x5f\xb7\x06\x0d\x2c\x6b\x5b\x0c\x73\xbd\x45\xad\x5f\x40\xe6\xea\xae\x64\x02\x97\x9c\x40\x79\xa5\x5a\xe6\x69\x7e\x9e\xdc\x71\x86\x87\xbb\x0d\x93\x9d\x25\x06\x36\x55\x13\x78\x6f\x86\x27\xbd\x5c\x98\xed\x19\x4d\x34\x8b\xd5\x3c\x17\xa0\xdb\x9d\x44\xef\xd0\x91\x38\x57\x41\x51\xe7\x24\x5f\x2c\x0b\x1e\xe6\x3c\xf7\xd4\x58\x98\x8b\xcc\xa6\xda\x9b\x00\x7c\x98\x13\x88\x16\x83\xec\x70\xf3\x22\xf4\x8a\xad\x14\xfd\xca\xa6\x8a\x9e\xb2\x42\xd1\x16\x68\xcb\x27\xc0\x2e\x49\x6e\xb6\x40\x4b\x2f\x04\x6d\x85\x2e\xfd\xa4\xe8\x16\x80\xe9\x91\xa2\x5b\x30\xa6\x52\xd2\x76\x30\xd3\x57\x6a\x43\xa8\x35\xa1\x40\x37\x9d\x92\x8d\x27\x34\x93\x6c\x3f\xd8\x54\x4b\x99\x70\x72\xd3\xff\x29\x93\xe0\x44\xcb\xf9\xbd\xcf\xe5\x38\x93\x13\x8a\x3f\x96\xe6\x96\xfb\xfb\x01\xfb\x62\x6a\x77\xe3\x5c\x8e\xf7\xf6\x4c\x25\xff\x32\xad\x9a\x41\xf6\x54\x21\xd9\xcd\x86\xae\x24\xbb\xb1\xf9\x69\x21\xcd\x55\xad\x7a\xee\x0e\x36\xf4\x5c\xb2\x42\x06\xb2\xff\xda\x6e\x8f\xac\xc7\x9e\x9d\xa3\xb0\x65\x0c\x51\x55\xcd\xce\x96\x42\x5a\xf3\xc5\x50\x33\x21\x3f\x4f\x0c\x65\xd7\x6b\x28\x9e\x1c\x5b\x33\xa1\x0f\x62\x91\x95\x9f\x39\x46\xcc\xb3\xde\x22\xc3\x8b\xc5\xce\x17\x8f\xb7\x5e\x1b\xba\xcd\xc9\xc6\x80\x97\x36\xba\x1a\x38\xc3\x1e\x4b\x1f\x35\x4d\xc5\x71\x92\xf0\x10\x48\xf2\xaf\xa0\x33\xc8\xfd\x6e\xa0\x58\x4e\x68\x1e\x44\x7a\x91\x81\x2e\x86\xbb\xb1\xa1\xeb\xcf\xea\x1d\x40\x2d\x89\x63\xef\xdc\x20\xe0\x45\x2e\xa0\x81\x52\x26\x4b\x49\x68\x29\x93\x95\x0c\xe6\xc3\xf1\x6d\x85\x73\x19\x58\xea\xac\xa4\x9b\x1f\x86\x18\x96\x4d\x45\xeb\x7b\x0f\x08\x19\x4e\x4d\x03\x54\x13\x3a\x35\x0d\xd6\x74\x5e\x2f\x65\xdd\x32\xad\x31\xe0\xdc\x69\xe8\x84\x1d\xa2\x15\xc1\x5b\x91\x88\x20\x0f\x08\xf1\x55\xe9\xe5\x78\x6b\x64\x33\x8c\x8a\x6d\xd5\x4c\x80\xe9\xd4\x4d\xa0\x9c\x6f\xe9\x8a\xf7\x1f\x10\x7a\x27\x31\x04\x71\xf4\xc1\x3a\x7b\xa6\x79\x3d\xe6\xbc\xa0\x37\x9b\x9a\xcb\xef\x6b\x19\xda\x97\x57\x5d\x72\x8c\x5e\x43\x72\xeb\x9d\x63\xcf\xd5\xbc\x3e\xf6\xeb\x75\x21\xcd\x92\xaa\x90\x4d\x1b\x38\x5d\xfa\x12\xb0\x13\xac\x6c\x9a\x6f\xc7\x6f\x77\x2b\xc8\xc6\xbd\x87\x84\x0c\xc5\x28\xd1\xcc\x0e\xcd\xb9\x24\x74\xf7\xda\xd9\x02\x95\x69\x5a\x9b\x36\x1e\x50\x92\xda\x7c\x3f\x09\x0c\x44\x57\x92\x05\x11\x86\xd4\x4a\x7c\xcc\xf5\x85\xb7\xdd\xff\x5a\x2b\x6d\xc6\x26\xa2\xa7\xb5\x62\xb4\xcc\xf2\x85\xaf\xeb\xef\x5e\xc8\x55\x31\xfb\x94\xf3\x62\x46\xdf\xd7\xbf\xc9\xff\x59\xf1\x52\xbf\xc9\x72\xa1\xe9\x97\x5a\x91\x90\x57\xf4\x55\x2d\xc7\xcc\x1c\x44\xb3\x83\x11\x4c\x7c\xe9\xcb\x5a\xad\x17\x8b\x05\x9f\xe5\x99\xe6\xbe\x23\xcf\x6b\xe5\x1f\x4a\xae\x9e\x14\x72\xfa\x39\x17\x73\x5f\xe5\xa4\x56\xa5\x11\x6b\xe9\x9f\x5a\xe1\x4b\x79\xe5\x4b\x9e\xd6\xbf\x3c\x2b\xaa\x8f\x7e\x86\x9d\xfa\xa3\x64\x7e\xf9\xbf\x97\xa3\xf7\x32\xf4\x7c\xbd\xa1\xcf\x2c\x79\xfe\xc4\xfe\xbe\x01\x42\xe0\x9d\x64\x5f\x64\x42\xe8\x1f\x92\x0d\xf8\xdd\x9f\xde\xc9\xd1\x17\xd9\xe2\x31\xdb\xd4\xd9\x7f\x27\x03\x29\xcc\xdf\x32\xf1\x42\xdd\x57\x32\x71\xd6\xf3\x2f\xa5\xa3\x0b\x1e\x3e\x44\x53\xf9\xe7\x55\xce\x03\xcc\x39\xa9\x72\xee\x63\xce\x3f\x55\xce\x3d\xcc\x79\x5a\xe5\xfc\xe8\x65\x84\x4d\x95\xb5\x83\x9a\xed\xeb\x0b\xb9\x1d\x2a\xb8\xf3\xf0\xa1\x6b\xe7\xa5\xc4\x96\x1f\x3e\x70\x39\xcf\x5d\xce\x7d\x97\x73\xe2\x72\xee\xb9\x9c\x7f\x5c\xce\x8f\x2e\xe7\xa9\xfc\x4e\x78\x3e\xc8\xc6\xfd\x1b\x00\xa4\x57\x98\x1d\x48\x14\x64\xc3\x86\xca\xd5\xfc\x2a\xb7\x6c\xf1\x8f\x9a\x87\x01\x63\xec\x99\x1c\x25\xcf\x24\x1b\xf3\x89\x19\xdb\xaf\x32\x79\x29\xe9\x27\x49\x48\xfa\x4c\x3a\xab\x6c\xfa\x59\x56\x6d\xfc\x2e\x93\xd0\x8e\xf7\x89\x74\xde\xf1\x9f\xc8\xa1\x9b\x1c\xa7\xe6\x3b\x9b\x4f\x32\x14\xbc\x7c\xb2\xef\x75\xdf\x48\xaf\x3c\xf9\x4c\x92\x9b\x37\xb2\x0a\x06\x80\xf2\x22\xdc\x0e\x9f\xc9\xe1\x07\x99\x3c\x7c\x48\xc3\xd8\xbf\xc8\x0f\xaa\x8c\x24\xb8\xf3\xfe\x20\x98\x1e\xf3\xc9\x70\x26\x6f\x04\x13\x49\xb7\xef\x1d\x58\x58\x2d\x4d\x88\x86\xeb\x26\xb1\xd5\x7e\x17\xe4\x06\x87\xc0\x43\x13\xc7\x06\x15\xcf\xbc\x36\xdf\xde\x80\x00\x1e\x5f\x4a\xfa\xbb\x24\x54\x78\x09\x16\xcc\xfe\x50\x78\xf5\xb3\xac\x02\x0f\x43\xb0\x10\xe7\xba\x5d\x2e\x4b\x52\xb3\x25\xd3\xe8\xe5\x5c\x13\x8a\x3a\x35\x41\xbd\xca\x12\x76\x2c\x26\x71\x9c\x98\x1f\xc6\xc7\x22\x88\x96\x01\x9b\xe1\x6f\x01\x11\x05\xfd\xa1\x6f\x2d\xe2\xef\xd8\xdf\x5f\x65\x43\x14\xf9\xa7\xc1\xfe\xaf\x92\xdd\x91\xcc\xd6\xad\x60\xe7\x79\x0b\xd1\x75\x6a\xa9\x2e\x73\x28\xff\x26\xa9\xe8\x9d\xda\x2f\x62\x78\x8d\x66\x46\x18\xef\x57\xe7\xd5\xa1\xf6\x9b\x3f\x6f\x86\xa5\x69\x88\xd0\x46\xfb\xbb\x9b\x11\x79\x65\x89\x17\xaa\xd4\x3a\x30\x6b\x11\xbc\x2c\x3d\xf3\xfc\xcb\x32\x47\xfe\xc7\xfb\x7c\xc1\x1f\x69\xd2\x9a\x5f\xf1\xae\x21\x32\x4d\xeb\x9b\xc0\x67\x6f\x7d\x97\xf8\x80\x4d\xdd\xe4\x9b\xcd\x10\x7b\x0f\xda\xd1\xd6\x26\x88\x68\x54\xf5\x5c\xd9\x9e\xbf\x95\x8c\x53\x1c\x34\xaf\x93\xe0\xc8\xb7\x90\x53\x43\xfc\x82\x72\x96\x34\x88\x5b\x88\x29\xc1\x6b\x9f\xfc\x09\x98\x78\xcf\x33\x88\x2e\x51\xaf\xdd\x94\x05\xcb\xdc\x4f\xe9\x5f\x25\xb2\xf8\xba\x83\x2e\x70\x01\xfb\xe0\x6f\x3a\x3f\x4f\x5a\x2c\x04\xe2\x78\xd0\xbf\x7f\x78\xff\xee\xe0\xc1\xc1\x21\xba\x99\x49\x7e\x35\xfd\xd0\xac\xca\x27\x54\xb3\x1b\x3b\x01\x52\x4e\xe5\x59\xc9\xd5\x25\x9f\x3d\xc9\x35\x78\xe5\x30\xb9\x38\xaf\xed\x1e\x75\x47\x86\x81\xe2\xde\x36\xa9\xc7\xc3\xbe\xa1\x1e\xef\x98\xeb\xf1\x5b\x59\xc3\x0c\xbb\xa9\x77\x3f\xed\xd3\xb0\xcb\xa9\xa6\xca\xdd\x27\xd1\x05\xec\x06\xd9\xc5\x77\x0c\xd2\x41\xb7\x9f\x79\xde\x11\xaf\x4f\x55\x58\x89\x79\x5e\x63\x56\x65\x79\xb5\xbf\xde\x9c\x65\x25\x47\x8f\xb0\x1c\x3f\x6a\x95\x1b\x61\x28\x8b\xac\xfe\x8c\x50\x59\xce\x5c\xb3\x62\x5b\x3e\xbc\xf0\x1c\x22\xff\x55\x15\xc3\xe7\x5a\x8b\xcd\x8a\x2d\xf9\xc1\xfc\x2b\x77\x74\xa3\xe7\xd3\xb5\x0e\xd9\x69\x84\x4f\x61\xcf\x30\x90\xb8\xcd\xff\x7f\xaa\x87\xd3\x3c\x3c\x5c\x9b\x93\x84\x53\xf4\xb3\x57\x72\x8c\x53\x92\x6a\xaa\xb3\x79\xda\xa7\xcb\xec\xba\x90\xd9\xcc\xc5\xf8\x40\x0a\x12\x9f\xfc\xa4\x85\x54\xfb\x57\x0b\xfb\x55\xc7\xc2\x0e\xd0\x33\xaa\x21\xb1\x56\xc4\x74\x9a\x84\xcf\x76\x5a\xd2\x7a\x9d\x50\xfd\xbe\xb1\x9f\xb7\x85\x3a\x0c\x08\x7d\xd4\x71\x7c\xbb\xe2\x2b\x6e\xa5\x50\xde\x83\x4b\x1c\x27\x8d\x1a\xcc\x4c\xf1\xa6\xcb\x0d\xeb\xe8\x62\xbb\xad\xda\xb3\x6b\x74\xe4\x55\xab\xbe\xa7\xf1\x66\x33\xa6\x8e\x68\x02\x90\x36\x1b\x2a\xf3\x44\x12\xa7\xb8\x65\xbd\x6f\x34\x2b\x28\xe2\x5d\xd5\xc8\xf5\x5a\x01\x44\x45\x9e\x28\xaa\xfd\x9b\x2a\x40\xb1\x17\x2d\xc8\x70\xd8\x12\xfb\x06\x2d\xf2\x04\x6f\x2f\x3e\x47\xee\x1a\x9f\x65\x63\x7c\x02\xb8\x1c\x40\x89\x60\x6e\xa0\x46\xdf\x44\x51\x7a\x9e\xa3\xc6\x5b\x6f\x7b\x29\x8d\x44\xaf\x65\xe1\x31\xd1\x52\xd5\xcc\xb3\xb6\x7c\x37\xdf\xda\xdf\x09\xa3\x04\xef\x9c\x77\x75\xf6\x83\x88\x63\x88\xb1\x18\xf6\x0b\xc4\xbd\x5b\x63\xd8\x70\xfd\x31\xcb\xbd\x94\x3d\xa7\x99\x27\xd6\xd1\xab\xd9\x8d\xf3\xac\x85\x6a\x6c\xdb\xb2\xae\xc4\x74\xdb\xae\x60\x32\xe2\x28\xb3\xc9\x4c\x5b\x24\x45\xcd\xdf\xce\x61\xca\xab\x68\xaa\x6c\xff\x6e\xff\xe1\xfd\x38\xc8\x59\xdf\xbb\x3b\xb4\x4e\xbe\x02\xff\x37\x79\x9b\x60\xed\xd6\x8f\x91\xf5\xda\x93\x7a\xb9\x25\x10\x42\x36\x81\xa9\x85\x1f\x3a\x48\x73\x60\x31\x3b\x46\x52\x10\xe0\x38\x0f\x35\x0e\xec\x39\xe4\xdd\xa9\x25\x9a\xd9\xd1\x20\xc1\xa6\x6d\xe5\xe8\x25\xeb\xd3\x29\xd3\xf5\x5d\x9b\xe5\x8e\xc6\x9a\x5a\x1a\x6b\xc5\xa6\x0d\xe2\x61\xb8\x7a\x24\x47\xae\xdf\xa8\xff\x32\xa5\x39\x2b\x08\x2d\x1f\xad\xc0\xaf\xda\xca\x2c\x80\xc5\x34\x59\xd1\x69\xaf\xbe\x87\x12\x5a\x30\x18\xbf\x3e\x9d\xd2\x02\x55\x84\xdd\x07\x7b\x6e\x2b\x45\x82\xc5\xa3\x9b\x1d\x1e\xd0\x69\xaf\xda\x4f\x6b\x9a\x99\xba\x57\x9d\x07\x23\xdb\x19\x5b\x2d\x2c\x62\xd3\x34\x09\x9f\xc3\xe6\xa6\xb4\x5e\x93\x10\x42\xa7\x0c\xbf\xb8\x41\x71\x2b\xee\xf4\x0e\x59\xf5\xc9\xdf\x44\xd8\x72\x1b\x61\xcb\x00\x61\x06\x43\x2b\x36\xa5\x01\xfe\x0c\xee\x0c\xf2\x96\x80\xbc\x25\xec\x1e\xff\x27\xb0\x54\x3f\x0c\x47\x8d\xde\xd4\xb0\xd6\xc8\xf4\xd8\xab\xe7\xb7\x61\xb1\xf9\x66\x0d\x9b\x41\xa7\x75\xb8\x2f\x0a\x1f\xd2\xda\x60\x68\xa4\xdb\xf6\x18\x54\xb9\x6e\xf4\xb8\x6a\x30\x40\x2f\xcc\x45\x5d\xcd\x78\x96\xd3\xda\x34\x67\x19\x6d\x1d\x49\xb6\xa2\xc7\x53\xd0\x45\x68\x0c\x20\x2b\x69\x63\xb7\x65\xc1\xc5\xe9\x2c\x77\x57\x6f\xe1\xcc\x04\x5b\x1a\xaf\xfc\x57\x85\x3d\x6f\x20\xc2\x6e\xb2\x6d\xef\xd3\x1a\xc2\xda\x30\x44\x76\xf4\x6a\x27\x36\x09\x5d\xe4\x49\x6d\xcd\x80\x1b\xb6\xdd\x8b\x08\xa6\x54\xf5\x4e\x7d\xa8\x83\x77\xbf\x67\x4a\xd5\x2f\x9f\x8b\x6f\xdc\xf2\xdc\xa4\x0f\xbc\x8f\x81\xc3\x4d\x97\x8f\x04\x8b\x8d\x59\x06\x4a\x03\x2d\x4c\xdf\xa6\x1b\x8e\xc1\xc3\x01\x01\x4f\x75\xb8\x2f\x2b\xb2\x71\xa6\xbc\x08\x23\xfa\x4d\x3a\xce\xd9\xd3\xde\x3b\xb0\x3e\x45\xba\xff\x49\x15\xba\x8e\xce\x73\x96\x08\x7e\xd5\x51\x3d\x30\x34\x12\x5c\x68\xd2\x53\xfc\xbc\xac\x6e\x03\x97\x79\x25\xc6\xf4\xe7\xb9\x39\xd9\x0d\x7d\xc0\xb6\xa8\xa8\xe0\x50\x10\x23\x9d\x22\x97\xc0\xe0\xb6\x39\x03\x85\xbf\x08\x36\xc8\x1e\x82\x8a\x62\xcd\x49\x8c\xa1\xcf\xfd\x9a\xb0\x1c\xd5\xeb\x9c\xdd\xe4\xe5\xb1\x5c\x41\x64\xb9\x6d\x4f\xc7\x10\xd6\x88\xf7\xea\xfc\xdc\xa3\xfc\x8c\x2b\x12\xc7\x10\xa8\xdb\x7c\x6a\x43\xb9\xf8\xc7\x7c\xfb\x84\x6b\xbc\x25\xd4\x45\xb8\x68\xd4\xdc\xd2\x88\x1d\xb2\x5f\xcb\xc4\x90\x78\xc7\xb9\x3f\x2e\x86\x89\x64\xd3\x3c\x51\xec\xcf\x12\x9c\xd7\x49\x42\x25\x21\xee\x2c\x65\x9a\x7a\x2e\x65\x60\x84\x6b\x28\xbc\x60\x4a\x10\x0a\x34\xb0\x24\x54\x4c\x13\x4e\x15\xf1\x60\xbe\xe3\xcb\x22\x9b\xf2\xff\xa3\xa0\xea\x6c\xce\x06\x54\xfe\xef\x02\xf9\x48\xaa\xa9\xf5\xec\xdd\x50\xcd\xb9\x0d\x5e\x81\xf0\xaa\x3a\xbc\xca\xc0\x2b\x0c\xbc\x82\x9a\x8f\xa0\x2a\x58\x36\x67\x07\x15\x8c\xba\xb2\xd6\x87\x99\xe3\x61\xd4\x16\x46\x65\x61\x14\x35\xbd\xfa\xc7\x01\x41\x82\xe4\xd9\x6d\x94\x58\x4d\x16\x86\x4c\x77\xbf\x8e\xfc\x8d\xa8\x35\x3f\x41\xe2\x2f\xed\x06\x0a\x46\xeb\x75\xf8\xd4\xcb\xcb\x37\x2b\xc5\x71\xe5\xba\x97\xd7\xeb\xa4\xfb\x56\x81\xac\x79\xbd\x36\x29\x49\xf3\x5a\xe4\xfa\xbc\x2e\x00\xe9\x0e\xa8\x64\x85\xa4\xb9\x73\x84\x81\x42\xa5\xe1\x0e\x03\xb9\x4e\xee\xb1\x96\x8f\x72\x26\xf3\x24\x27\x69\x22\xd9\x99\x4c\x34\x19\x9d\xcb\x34\x10\xc9\xe4\x66\xe1\x56\x4b\xb8\xd6\x7e\x4d\x0a\xa7\xc8\x08\x04\xa2\x92\xa4\x85\x24\x14\x7d\xe3\xe9\x44\xd0\xbc\x65\x53\x70\x47\x0c\xe0\x35\x68\xc4\xe6\x8c\xec\xaf\x8d\x87\x63\xb7\x0d\xc5\xae\x73\x1a\x8c\x05\xd3\x54\xb7\x4d\x29\xc6\xe9\x7f\x2b\xc4\x94\xff\x56\x88\x19\x10\xfe\x5f\x83\x9d\x94\xbb\x1e\xd1\x56\x77\x85\x68\xe0\x26\x40\x67\xb5\x28\xde\xf1\x29\xcf\x2f\x39\xb0\x57\xe3\xf8\x96\x42\x98\x18\x3b\x5a\xfc\xf0\xea\xe4\xf1\xd1\xf3\xd3\x5b\x1b\xfe\x56\x1d\x6c\xdf\x42\x8e\xcc\xb4\xeb\xbc\xd7\xb2\x29\x25\xda\xd5\xa2\x0d\x7e\xdc\x69\xde\xd4\xbe\x0f\x85\x74\x12\xcc\x34\x4a\xf0\x88\x0b\xb9\xcd\x03\x86\x4a\x38\x9e\xd8\x3c\xb7\xe1\x3b\xeb\xf3\xfa\xf6\x19\x2d\x5d\x5d\x37\xb3\xf3\xd6\x99\x5d\x55\x83\x79\x9b\x13\x4f\xbd\x26\xf9\xd6\x51\x95\xc0\x15\x26\xa7\x82\x4a\xb0\x17\x6c\x07\xbb\x75\x50\x12\x03\xfd\x9c\xeb\x67\x5c\xe5\x97\xb6\xe2\x91\x92\x0b\x64\xa3\xc7\x71\x62\x8f\xde\xdc\x1c\x9f\xff\xa6\xe1\xce\xee\x66\xd7\xeb\xb6\xfa\x12\xb4\xb3\x44\xb6\x2c\x2f\xa4\x46\x9d\x0c\xc7\x2e\x68\x23\x44\x64\xeb\x44\x81\x43\x38\x8e\xdb\x5f\xd8\xae\xb9\x5e\x27\x9a\xc9\x5b\x16\x41\xdb\x4b\x71\xdc\x96\x9b\xb4\x63\xe1\x56\x30\x6f\x29\x4c\x08\xd5\x5d\xe6\x60\xdb\x39\xc5\xa5\x1b\x13\x5a\x91\xff\xff\xd5\x1c\xd9\xd5\x0b\x0f\xe1\xb3\x7c\x66\xa1\xaf\x5f\x9d\xee\x22\x2d\xf4\x3a\x67\x8f\x95\xca\xae\x7b\x79\x09\xbf\xd5\xa9\xf6\x3e\x0f\x74\x18\x2a\xfe\xbb\x30\x6b\x89\xb4\x0f\x59\xab\x93\x35\xeb\x91\xaa\x77\x0a\xca\x69\xd6\x2f\x48\xed\x71\x00\xa6\xbc\x3a\x9b\x6f\x31\xb7\x1f\x12\xe7\xa5\x5b\x54\x0b\x7e\xd3\x2a\x95\xbf\x7b\x9f\x50\xeb\xc9\x41\xb2\x28\xda\x6b\xb2\x5e\x82\xb3\xdd\xf4\x20\xec\x40\xb8\x06\xa0\x08\x7e\x7a\xa7\xe8\x21\xe8\x1d\x3f\x47\x6b\x48\x93\x99\x26\x89\xae\x05\x1b\x46\x59\x8f\x42\xfa\x57\x33\xc6\xe6\x39\x30\x74\x30\x87\xdd\x6c\xfc\x15\x8f\x8f\x66\x10\x6a\xb4\xa3\xc7\x72\x92\x9a\x7f\x8c\x6f\x48\xf8\x15\x49\x35\xf8\xad\x73\xae\x89\x42\x1c\x36\x62\xa0\x3f\xb8\x6b\xbd\xe9\x79\x44\x36\x2a\x3c\xec\x1b\x74\xb4\xf8\xdb\xf9\x52\xc9\x36\x2a\xbb\xc6\xae\xf7\x14\xd5\x18\x81\x01\xa1\xd1\x18\x87\xd4\x2a\x4c\x4f\x0c\xba\xb6\xd4\x9c\x9d\x13\x1c\xab\x0e\x4c\x46\x76\x1e\x74\xae\x72\x7d\xd1\xf9\xcc\xaf\xcb\xce\x4d\xb4\x57\x57\x3c\xee\xfd\x2d\x73\x91\x44\xb4\x13\x91\xbd\x68\x13\xa5\x1a\xbc\xee\x79\x40\x5f\xe5\x8d\x60\xce\x6e\x2e\x72\x47\xa8\x84\xf7\x34\x77\x81\x52\x23\xeb\xab\xcc\x5d\xb9\xea\x8c\x0e\x41\xd2\xdb\xee\x7a\x54\x6c\x73\x13\x02\xb6\xd8\x83\x4d\x18\x4e\xda\xf9\x75\xef\xf2\x9a\xf6\x63\x78\x9d\x53\x43\x70\x96\x0e\xca\xf3\xaa\x57\x5a\xc7\x46\xad\x1e\x6e\x54\x75\x19\xe4\x40\xed\x1c\x67\x4b\xd7\x8c\x1e\x12\x3f\x77\x3f\xf3\x6b\xf4\x94\x89\x4e\x13\xa8\x26\xa9\x7b\x04\x6f\x0a\x54\x1b\x72\x49\x37\x3f\x16\xcc\x00\xb9\x65\x05\xfa\x64\x6a\x19\x66\xd0\x02\xeb\x1b\xba\x08\x5f\xb7\x8a\xca\xd5\xcb\x79\x62\xcf\x61\x6f\x03\x8d\xef\x28\x8a\xd6\xc9\x8e\xb0\xab\x8c\x00\x46\xe0\xbb\x1a\x6a\x91\x47\x62\x94\xe8\x00\xa1\x73\x03\x47\xaa\xd2\x96\x4c\x11\x08\x65\x42\xff\x7a\x9e\xeb\x11\x7c\x03\x38\x0a\x61\x03\x35\x12\x6a\x5a\x11\x0f\x75\xf9\xbf\x5e\xaf\xbd\xd5\x0d\x98\x4c\xff\x31\x35\x97\x83\xde\x42\xce\x38\x5c\x0f\xb0\x3a\x33\xb8\x81\x85\x2f\x13\x34\x8b\x0d\xf2\x03\x11\x47\xeb\x67\x70\xe7\xd1\x3d\x8e\xf6\x40\xe0\xe9\x1e\x76\xbb\xeb\x25\x1f\x25\x89\xc2\x36\x91\x82\x81\x96\xcf\x99\xdf\x78\xa9\xaa\xbe\xa4\x0c\x04\x8a\xbd\x99\x26\xf8\x2e\x05\x9f\x09\xee\x4d\x8a\xc3\x14\x42\xbe\xb3\x9d\x40\x5a\x72\x0b\x62\xee\x3a\xc4\xac\xd7\x7a\x97\xc7\x6f\xf4\x01\x15\xe6\xd4\x2b\x83\xfe\xa7\xe9\x35\xdc\xc7\xa1\x76\x3d\x0b\x90\xfe\xf7\xf7\x20\x3d\x70\xbe\x36\x9e\xec\x1a\x81\x65\xc5\x23\x6f\xe9\xd1\xfd\xda\x50\xbf\x0b\xbf\x6a\xc8\xb5\x7f\x37\xd8\xe7\xc1\xd9\xd8\xe2\x49\xae\xd5\x81\x9c\xdd\x25\x70\x9e\x45\xd1\x9e\x76\xdf\xaf\x7f\x25\x34\xff\xa8\x09\x97\xdd\x74\xaa\xe2\x02\xf4\xee\xdc\xc1\x62\x2b\x02\x78\xe6\xbc\x37\x08\x33\x51\x34\x4e\x14\xbb\x4d\xb4\x4c\x14\x11\x4e\x14\xbc\x1c\x11\xb0\x81\xb2\xa0\x08\xe4\xc4\x3f\x49\x3d\xe0\x7f\x4f\x93\x1d\x50\x9b\x73\xeb\x75\x0e\x3a\x80\x6f\x13\x6f\xcc\x82\x88\xae\x5e\xb1\x7e\xf7\xc3\xde\xda\xf3\xa8\xdd\xed\xd7\xac\x49\xf7\x3b\x1c\x8c\xa0\x57\xe8\x14\xa2\x75\x08\x5a\x7d\xf8\xd5\x42\x39\x19\x6a\x0d\x75\xfd\x71\x83\x88\xa2\x3d\xd0\xec\x6e\x45\x7f\xc0\xbd\x08\x84\x2f\x3b\xd0\xdf\x81\xb5\x09\x44\x03\x2e\x56\xc6\xd8\x9b\x91\x9d\x9d\x38\x0e\x7e\x3e\x83\x10\x23\xad\xf6\x0e\xec\x52\x0d\xef\x41\x73\xab\x7a\x3d\x8b\x74\x01\x48\xaf\xc7\xc5\xaa\x7a\x57\xad\x0a\x40\x3e\x22\x5c\xec\x40\xf8\x45\x4d\xb4\xd2\x86\x58\xd5\x86\x58\xef\xaf\x0c\x06\x1b\x23\x10\x01\x58\x30\xab\xa2\x68\xcf\xb4\xd7\x8e\x59\xe5\x31\x5b\x05\xbc\x50\x3b\x31\xeb\xdb\x76\x52\x4a\x73\x1c\x8a\x14\x7e\xdd\xe7\x54\x88\x73\x4d\x39\x55\x4d\x9c\x4b\x8a\x2f\xa4\x05\x96\x1b\xe0\xea\x28\x5f\x85\xfd\xb8\xed\x5b\x54\x12\x3b\x0a\x0a\x46\x41\xf9\x51\x58\xb6\xa1\x42\x51\x59\x0d\x83\x6e\x6a\xff\x57\xec\xf5\x44\xd2\x8c\x96\x74\x5a\xf9\x48\x2d\xf0\x28\xb6\x72\x99\x25\xcb\xe8\x19\xcb\x58\x9f\x2e\x2a\xb9\x75\x97\xb1\x65\x1c\x9f\x55\x06\x75\x67\x7b\x7b\xe4\x66\x89\x67\xef\x4f\x67\xa3\x64\xc1\x96\x74\x89\x6c\xf0\x74\xc1\x96\x9e\x46\x00\x96\x2f\x9b\x25\x92\x2e\x69\x39\x3e\x9b\xd0\x29\x09\x04\xe6\xc7\x5e\x6c\xbf\x8c\xe3\x64\xc9\x16\x2e\xc2\x13\x8f\xe3\xa5\x3f\x8e\x8f\xc3\xe3\x18\x02\x75\x10\x9a\xb1\x3c\x39\xa6\x19\x3d\x0b\xe4\x1c\x05\x3b\x4e\x57\x9e\xbc\x38\xa6\x2b\x76\x4c\x97\x6c\x61\x90\x78\xc6\x18\x2b\x1b\x3e\x56\x04\xb6\x54\x04\xf0\x2c\x2d\xcb\xbc\xd1\x51\x47\x7d\x2c\xd9\x79\x22\x5d\x37\xd0\x6e\x3d\x4f\x96\x5b\x50\x2c\x03\x28\x96\x74\xc5\x96\x5e\xd3\xac\x00\x01\xd8\x92\x29\xf8\xf4\xae\xcf\x2c\xd8\x45\xb2\xa4\x92\x9e\x85\x9f\xe2\x7e\x32\x2f\x42\x74\x2c\x7b\x48\xfa\xbb\x1e\x2c\x60\x2a\x9d\xa5\xf0\x8b\x68\x5a\x6c\x01\xb8\x08\x00\x5c\xd0\x95\x41\x7b\x45\x03\x2d\xdb\x5d\xa0\x3b\xa2\x2c\x91\x86\xf8\x27\x84\x86\xe2\x06\x83\x15\x3a\xa5\x85\x93\x71\xbe\x4d\x70\x98\xdb\x6e\x72\xab\xe6\xf5\xea\x47\xeb\xbe\x1b\x01\x4c\xa6\x6c\x85\xa4\xfe\x94\x6c\x69\x83\xff\x38\x20\xc4\x0b\x64\x97\xcc\xce\xd8\x33\x56\xd2\x05\x2b\x59\x9f\x1e\x63\xc6\xdc\x0a\xc8\x12\xef\x35\xf2\x2c\x8e\xbb\xf3\xde\x4c\x0a\x3e\x5c\xec\xed\x05\x15\xc8\xcd\x99\x9d\xc4\x8b\x51\x72\xcc\xce\xe8\x99\x9d\xc4\xc7\xec\xac\x36\x89\x2f\x61\x12\x9f\xd1\x39\xba\x09\xa0\x45\x38\x8f\x2f\xfd\x3c\x3e\x8b\xe3\xe4\x8c\x1d\x07\xf3\xf8\xcc\xcf\xe3\xcb\xe6\x3c\x3e\x23\xb4\x64\x79\x72\x49\x4b\xba\xf0\x03\xb4\x1c\xad\xd8\x65\xea\x57\x10\xbb\xa4\x4b\x76\x49\xcf\xd8\xb1\x99\xc7\xd8\x87\x70\x06\x9f\x11\xba\x0a\x20\x39\xb3\x33\x78\x47\x6f\xdd\x14\x9b\xc3\x4c\xae\xfa\x82\x01\xbc\xf2\x64\xbe\x05\xca\x3c\x00\x65\x4e\x97\x6c\xee\xe7\xca\x0a\x26\xf3\x19\x4c\xe6\x33\xf2\xed\x2f\x5e\x24\x67\x54\xd2\x45\xe3\xab\xd5\xbc\x9e\x87\xe8\x39\x6b\xcc\xeb\x39\xcc\xeb\x45\x3a\xc7\x79\xfd\x6f\x61\x85\x16\xbf\x6f\x5e\xaf\xdc\xbe\x19\x88\x05\x14\xcd\xcd\x86\x89\x9b\xe5\xad\x4c\xbd\x38\xce\xfd\x19\xe1\x07\x3e\x37\x40\x43\x10\xb5\x9c\xe5\x8d\x13\x03\xf9\x0a\xab\xdb\x5b\x35\x03\xbc\x22\xce\xf8\x6d\xfb\x08\xb3\xe6\xe3\x2b\xfc\x12\x2d\x98\x72\x13\xbf\x40\x23\xef\xc2\x9e\xf3\x2b\x78\xba\x0f\xb6\xde\x86\x5e\xad\x80\x4d\x8b\xc6\x45\x02\x8b\xc8\x8d\xe9\x7f\xe1\xd0\x4a\x28\xdc\x2b\x0a\x5a\xbd\x38\x6a\xf6\x28\xcd\xb7\xef\x1c\x05\xcd\x6b\x77\x05\xce\x94\x37\xf7\x83\x0f\xb8\x05\xa3\xe1\x81\x16\xcc\x7f\x72\x13\x7c\xca\xdc\x53\xde\x4d\x93\xe6\x17\x1d\x11\x38\xa5\xd0\xff\x90\x0a\xe4\x0c\xae\x37\x53\x43\xb5\x62\x43\x58\x87\xe6\x2d\x54\xeb\x34\x04\xd9\x90\xee\x60\xfb\xef\x5b\x9a\xfa\x23\xb5\x4c\xb8\x3f\xd6\xbd\xe9\x3e\x8e\x72\x75\x3d\x47\xe7\xe6\x88\xf7\x02\x9e\xee\xba\x50\x47\x71\xbc\x33\xd6\x91\x37\x56\xf4\x39\xf5\xca\xf5\x6b\x0e\xd4\xae\x67\xe1\x88\xa9\xc6\x88\x29\x9a\xef\xbc\xe8\x34\x07\x43\x85\x83\x51\x67\x30\x6c\x12\x65\x28\xf5\xbc\x8e\xb1\xaa\x9d\x10\x41\x9b\x56\x22\x2f\x6f\x23\xf2\xbc\x5b\x8d\x9c\x45\xd1\x5e\xee\x78\x97\x2a\x8e\xef\xf9\xe8\x50\xc9\x8e\x6e\x6d\x8f\x36\xf6\xc1\x54\xf8\xe3\x16\x50\x09\x85\x51\x44\x0a\x2b\xf7\xb4\xd5\x99\x5f\xee\xa6\xe8\x6d\x50\xb2\xa8\x95\xac\xe2\x18\xc8\xdd\x9c\xd0\xb6\x10\x01\x66\xf5\x76\x0b\xb7\x64\x79\x4d\x99\xca\x6a\x3b\xe1\xd9\xc6\x2d\x7b\x8c\x56\x87\xdc\x01\xa1\xbc\x37\xcb\xcb\x65\x91\x81\xbd\xe3\x7a\xcd\x7b\x02\x7e\x23\x2f\x79\x8b\x2a\xf2\x0e\x05\x9b\xc0\x72\x7d\x99\xb3\x57\x79\xd2\xed\x13\xfa\x1c\x53\x03\x42\x4f\x72\x76\xb3\xa1\xff\xe4\x95\x76\xfb\x49\xbe\xa1\x4f\x1b\xcf\x9f\xeb\xcf\x81\xbb\xad\xdc\xba\x76\x32\x2b\xf0\x24\x6f\x9e\xc8\xf7\xef\x12\xd2\xc2\x08\x7a\x66\x59\x81\x53\x99\x7c\xce\xad\xa1\xd4\xd3\x9c\x72\x48\xfc\x93\xd3\x93\x9c\x0c\x9d\xf1\xb9\xf7\xeb\xed\x2e\x3f\xce\x4c\x04\x11\x35\x18\xa4\xe0\x0b\xa5\x32\x4c\xf7\x0e\x50\x34\xa0\xa5\x5c\x66\x53\xfe\xe1\xdd\x8b\xf4\x0f\x3c\x2d\x20\xb2\x48\x3d\xac\x93\x66\x7f\xf0\x44\xb3\x44\xb0\x07\xa8\x08\x10\x78\x85\x4e\x35\xa9\x35\x63\xc9\x69\x81\x7c\x63\xf0\x72\xb4\x29\x0d\xd0\x0e\xf6\xf0\xb2\xfe\x24\xb7\xa6\x7a\xa6\xb8\x34\x7d\x84\x9f\xcf\x79\x50\xe7\x0d\xd4\xf9\x98\x27\x9f\x73\x6f\x26\x66\x43\x8f\x7d\xcc\x93\x7f\xaa\x4c\x2a\x00\x4c\xab\xcc\x4f\x86\xda\x4a\xb4\x1b\xb8\x13\xa1\x84\xf5\x1d\x34\xfe\xd4\x37\x62\xfd\x21\xd5\x20\x42\x76\xfc\x1f\xc1\x08\x87\x5e\xed\xfe\xce\x9d\x0b\x76\x6b\x31\x17\xb0\x06\x6f\x5c\x94\x39\x74\x1f\xe3\xfd\x05\xd4\x04\x05\xa1\x12\x49\xe0\xaf\xc3\x20\x30\x08\x12\xb7\x5e\x0b\xf4\x09\xc8\xd8\x27\x11\x3c\xfc\x5c\x5d\x2e\xb5\x0f\x1c\x37\x78\xc8\xbc\xf7\x9a\x40\xe6\xea\x3e\x0b\xa2\xa3\x9e\xe2\x97\x3c\x2b\xc0\x82\x19\x00\x4d\xee\xdd\x8d\x03\x5e\x1d\xe9\x32\x76\xac\xb7\xdb\x16\x35\xe7\xe3\xe4\xc6\x26\xdc\xde\xa0\x81\xc5\x09\x59\x43\xb3\x0d\xe7\x62\x05\x62\x01\xc0\xac\x55\x2b\xf4\x7c\x58\x80\xd2\x51\x89\xa1\x36\xbd\xb6\xcd\xad\xd7\x2e\x15\xfa\x20\x83\x6b\x95\xf6\x95\x36\xbe\x0d\x0f\x84\x4d\x84\xec\xd6\xf6\xeb\xdc\x8b\xba\xce\xb5\x57\xbc\x4f\x39\x85\xf3\x2d\xb5\x6a\x37\x1f\x9a\x6a\x37\xcf\xf2\x72\x99\xe9\xe9\x05\x57\xf4\x97\x9c\xf5\xe9\x51\x8e\xb4\xf3\xef\xf6\xf7\x93\xfd\xfd\xd9\xfe\xfe\x66\x7f\xdf\xda\xdf\x3b\xe6\xa5\x5f\xed\xc3\x9f\xe6\x81\x67\xac\x3b\xa0\xda\xea\x43\x8a\x8c\x05\x7e\xfe\x55\x96\x38\xbb\x20\x2f\x00\x38\x18\x84\x13\x59\x66\x5e\x78\x20\xb6\xbc\x8d\x54\xfe\xe6\xfb\x43\xf1\xa8\x0a\xab\x29\x1e\xf1\x30\x68\x6e\x7e\x9e\x58\x2f\x21\xe0\x22\xa4\xd5\x3f\x48\xc5\x6e\xce\x42\xd5\x0a\xf8\xf0\x2f\x39\xcb\x0d\x22\xb4\xeb\x7d\x97\x31\x3e\x6a\xc8\xc5\x50\xd6\xff\xa1\x5a\x71\x16\xdc\x4f\xf9\x68\x9e\xa5\x97\x19\xd5\xa0\x8b\x24\x09\xe5\x19\xb9\x99\xc9\x1b\xc4\x8b\xc8\xf6\xd8\xe0\xdb\xed\xbe\xcd\xd9\xcf\xb9\xc1\xeb\x6f\x39\x73\x43\x11\x7c\x2b\x68\xde\xda\x62\xf1\x8c\x0c\x43\x9c\x9b\xb9\x1a\xbc\x70\x9c\xd1\x84\xb3\xa3\x9c\x34\x34\x1b\x7e\xce\xb7\xd5\xf2\xee\x98\xbc\x50\x59\xf8\x57\xa8\x54\x09\xf6\xfe\xcc\xa9\xd7\x89\xf8\xbd\x22\x4f\x7f\xcf\x81\xd8\xc7\x79\xf4\x16\x40\xff\x39\x67\x9f\xa0\x03\x47\xbb\xa7\xcb\x96\x48\xae\x4f\x02\x93\xac\xca\xfc\xc3\x4c\x9d\x7a\x8f\xfe\xe5\x87\xb6\xe6\x65\xc0\xff\x37\x8d\xa3\x99\xdc\x4d\xcb\x68\x54\x66\x1a\xf0\x08\x42\xd7\xaa\x24\xb4\xab\xa8\xcc\x6b\x86\x75\xf6\xf0\x6f\xf9\xe8\x67\x80\x94\xa7\xbf\x99\x5f\xd4\x49\xe4\xf4\xb7\xc0\x9c\x7c\x9a\xd5\xac\xff\xde\xe6\xe4\x6d\xce\x92\xdf\x72\x93\x42\xd4\x56\xf3\x26\xf9\xdd\xf4\x98\x8c\x2c\xd2\x91\xa9\xe7\x6c\xa7\xfc\x54\xdc\x12\xb6\xf5\xad\xb8\x73\xab\x9f\xb6\xbd\x86\x5a\x43\xd5\xf1\xdf\xf3\x40\xd7\x19\x11\xf0\x7b\xde\x83\x44\x88\x04\x5b\xcd\x2a\x57\x06\xd8\xb0\xfb\x86\xc7\x84\x41\x83\xc3\x01\x8c\x1c\xaa\xb2\x5a\xa4\x85\x58\x29\xb2\x5a\x08\x96\x36\x99\xea\x48\x27\x9c\xa4\xc1\x64\x59\x65\x95\xe4\xd4\x60\x95\x9a\xbd\x14\x80\xad\x99\x69\x34\xb1\x33\x20\xce\x57\x51\x56\xea\x77\xdc\x6c\xa0\x7c\xf6\x8e\xcf\x56\x53\xd0\xd2\xe9\x3f\x12\x99\x93\x0c\x0a\xa0\xcc\xcc\xce\x19\x9c\x7b\x3a\xf3\xbe\x1b\x33\xcb\x95\x33\xa5\xfe\xe8\x92\xe4\x46\x67\xfe\x46\x4b\xbc\xae\x48\xfd\x1c\x9d\xc9\x9b\x9c\xf1\x24\xa7\x12\x22\x42\x49\x88\x12\x8b\x06\x53\x75\xc3\x4b\xe9\xd7\xc9\xcf\x2a\xc9\x69\xa3\x1d\xb2\x5e\x3b\x5b\xb4\x46\x09\x68\xee\x56\xc3\x04\xd2\x22\xd3\x63\x10\x72\x05\xfa\xbd\x84\xd6\x31\xe1\x5e\x1e\xe7\x54\x4d\x36\x76\xac\xc6\x8d\xc6\x4d\x91\xb2\x0d\x5a\x97\x91\xe1\xc7\xc0\xe7\x1e\x0b\x3e\xe3\x88\xfc\x72\x94\x54\xe4\xbe\x95\xb0\x5a\x7d\x5a\xc5\x4a\x78\x24\xa9\x57\xed\x52\x23\xd5\x0b\xac\x82\x3c\x7b\xd7\x7c\x70\xca\xac\x49\x5f\xc1\x14\x5d\xb1\xee\xc0\x60\x14\x39\x45\xc5\xb6\x0e\xf9\x2f\xf9\x28\x59\xad\xd7\xc9\x8a\x75\xfb\x74\xca\x4a\xf0\x96\x4d\x97\x3f\xdd\xc9\xe3\xf8\x78\x9a\xdc\xc9\x51\x75\x7c\x31\x4d\x96\xe6\xfe\xdb\xd0\xbb\xcf\x4d\x93\xd9\x9c\x2b\x37\x4b\xcc\x8e\x6e\xb3\xac\x61\x57\x92\xd3\xc2\x0d\x24\xa1\x25\x2b\xe0\x56\xbb\x3d\x9a\x45\x1c\x63\x27\x86\x06\x1c\x0f\xc9\x7f\x37\xb4\xd3\x9a\xc6\xb6\x6c\x1f\xd0\x5d\x23\x59\xcd\xf1\x49\x20\x02\xcb\xb6\x64\x7a\x9c\xdd\xe8\x6c\x9e\x72\x8a\x51\x71\x53\x4d\x67\xbc\xd4\x4a\x5e\xa7\x82\xce\xf8\xb2\x4c\x55\x8b\xd9\xe1\xaf\xf9\x28\xf9\x35\x67\x37\x0d\xc3\xb3\x0d\x09\xc5\xe5\x56\x75\x9b\x3b\x9b\xa1\x44\xb3\x5f\xf3\xa0\x02\x19\xd5\x1e\xab\xfa\x10\x69\x06\xb6\x4c\xed\x76\x19\x5b\x26\x68\xe3\x15\x12\x0a\x9f\xcf\xb3\xa6\x3c\xc8\x1c\x0d\xc3\x3f\xf3\x35\xc4\x4c\xaf\xe3\x7a\x99\x05\xa1\xc8\xa9\x57\x30\xb6\x7e\xcc\x43\x39\xe8\x6c\xab\x59\xb3\x2b\x0d\x5d\xf4\xb2\xe0\x25\xbb\x27\xd8\x00\x49\xd5\xd6\xf2\x7b\x8e\x6f\x66\x66\xab\xdc\xa2\xbb\x73\x66\xb6\x15\xc0\x79\x70\x69\x96\x59\xa2\xa8\x29\x58\x96\x9e\xb8\x86\x86\x97\x59\xd2\xa7\x82\xe6\xe6\xc2\x78\x6b\xd7\xf2\x9a\x34\xf7\xe2\x3b\x76\xe2\x84\x33\x9e\x10\x0a\x8e\xa9\x02\xdb\x72\x94\x71\x90\x0d\x71\xfe\xea\x75\x48\xd1\xfb\xb7\xfc\xe9\xce\x6b\x2f\xd7\x68\xac\x0d\xb1\xf1\x5f\x02\x61\x46\x56\x0b\xda\xb7\xc8\xc2\x28\xc6\xc9\xc1\x8f\x3f\x89\xac\xc9\x43\x3e\xec\x0f\xbc\xe6\x4f\xd3\xdc\x99\x31\x76\x94\xfb\x70\x44\x2a\x8e\x15\xe4\x80\x5b\x66\xb3\xea\x28\xdf\x32\x7d\xfd\x25\x6f\x9a\x35\xc2\x0e\x84\xcb\x3e\x15\x34\xdc\x23\xb0\x28\xd8\x22\x1a\x94\x83\x37\x2f\x01\x83\x8e\xcc\xa9\x6a\x90\x6a\x86\x99\xd9\x8d\x07\x8c\x26\x84\xe8\x0c\xb5\x33\xa8\xf3\x0e\x8d\xd1\x75\x84\xbf\xc0\xc1\xc4\x1f\x12\xed\x52\x6e\x49\x6c\x7c\x34\x71\x89\x0a\xcd\x79\x4d\xa1\x39\xdf\xea\xa5\x64\x7f\x96\x89\xa4\xc0\xed\x68\x74\x37\xff\xcf\xfa\xea\x4f\x08\x38\x2e\xaa\xb3\xb9\x24\x96\x3a\xc8\xab\x90\xe7\x53\x7b\x0c\x78\xd3\x20\x08\x75\x00\xb5\xa6\x84\x96\xb6\x3e\x5c\xd2\xa0\x39\x96\xd3\x1d\x1a\xfb\x4e\xde\x86\x21\x6d\x55\xa3\x42\x65\xf1\x9d\x38\x0d\xa0\x06\x2d\x40\x88\x73\xa5\x50\x34\x2a\xe0\xc6\xb9\x62\x2a\x29\x28\x1e\xfe\x79\xfd\x7c\x50\x34\x0f\x4e\x07\xb6\x32\xfb\xfb\x8a\x16\x6e\x7d\x5a\xef\x09\x4b\x72\xb3\x01\x35\x70\x69\x39\x3a\xc7\x19\xbb\x51\x3c\x73\x2a\xbc\xa9\xcc\xe9\xaa\xf4\x4e\x58\x52\x95\xc1\xa3\x2d\xc4\x27\xbb\xa9\xe2\xc3\x8b\xc5\x12\x42\x53\x5f\x72\x8c\x02\x66\xb3\x5f\x66\xd7\x72\xa5\x6b\x35\x8f\xf9\x42\xda\xa4\x1b\x43\xf7\x74\x6e\x53\x38\x92\x98\x7e\xc6\xcf\x56\x73\xb0\xd9\xf6\xd5\xdc\xd5\x53\x65\x1b\x3a\xbf\x1d\xee\x56\x6f\x98\x66\xc7\x6d\x6c\x47\x63\x5e\x4d\x7e\x6d\x63\x14\x4c\x28\xdf\x84\xbd\xc6\xa6\x6d\x5f\x5a\x1b\x3e\xcf\x92\x1f\x07\xf7\xe8\xe0\xe1\x01\x78\xd6\xdb\xb4\x22\xa6\x69\xb7\xe0\xc8\x78\x56\xf1\x36\x2a\x8b\x83\x11\x68\xa7\x4c\x33\x9d\x8c\xf9\x84\x58\xcb\xe9\x2c\xb9\x4b\x0f\xef\xd1\x8b\xac\x77\x96\x8b\x19\xf2\xa2\xcc\xe2\xa4\x02\x3f\x59\x43\xfa\x2e\x40\xa1\x09\x0f\x25\x0c\x4a\xbd\x2a\xde\x83\xe1\x74\xf2\x0e\x8d\xb6\x70\x44\x71\x5f\x15\xdb\xe8\xf4\xe8\x73\x83\xdc\xec\x37\x6e\x8d\x6d\xed\x63\xc7\x13\x4d\x52\x4d\x55\xa3\xe5\xd0\x16\xc6\x7c\x1d\x9c\xbe\x02\xe1\x8d\x27\x3d\xa2\xc8\x91\x15\x95\x45\x79\x63\x81\xa5\x9c\x6e\xad\xaa\x54\x6f\x88\x27\x48\xd8\x22\xc4\xee\x11\xb0\xc5\xc6\x0d\x60\x28\x9f\x6c\xdc\xc4\x6d\x11\xf5\xf0\x8a\x0f\xc6\x37\xb4\x65\xd2\x21\x7e\x9a\xd6\x2c\xee\x5a\x11\x60\xa6\xed\x24\x44\x6f\xe4\x3c\x21\xdb\x24\x5a\x48\x91\x71\xc4\x91\xfe\x4f\x70\x54\x64\x2d\x48\xe2\xdf\x42\x52\x93\xc8\xb3\x48\x0a\xd6\xf1\x59\x63\x1d\xbf\xc8\x37\xf4\xf2\xdf\xac\x63\x9c\x9a\x40\xe1\xb4\xcc\x49\xaf\x6e\x5b\xa7\x62\xea\x9a\x25\x2a\xb4\x93\x91\x86\x18\x51\xe3\xc1\x84\x8c\xd4\xb8\x3f\x49\x9b\x36\xea\x6e\x3e\x93\x7f\xb9\x1f\xcc\xfe\xaf\xec\x07\xb3\xff\x7e\x3f\x98\x7d\xf7\x7e\xf0\x7f\x10\xe9\xb7\x6e\x25\xa4\xb6\x97\xac\xb2\xad\x75\xe7\xfb\x32\xdd\x5a\x68\x3b\x96\x99\x13\x2f\x67\x49\x91\x91\xef\x99\xa3\xd7\x96\xb5\xf3\xd8\xfe\x5e\x65\x35\xff\x21\x5f\xb3\x10\x51\x1f\xa7\xc9\x8f\xd4\x5f\x1e\x69\x9f\x0c\x45\x4d\xf0\x19\x3d\x7b\xfe\xf2\xf9\xfb\xe7\xcf\xc0\x7b\x77\x33\x23\x34\xe9\x09\xb5\xd9\x42\x45\x5e\x47\x87\xf3\xd0\x94\x3a\xe1\x3b\xac\xa5\x05\xe5\x0d\x25\x62\x5e\x53\x22\xae\x97\x06\x76\x2b\x59\x3d\x84\x53\x20\x60\xfa\x31\x0d\x7d\x0e\x35\x86\x3a\xd1\x6c\xd0\x0d\xdd\xfa\xa2\x4f\xf9\x20\x6e\x83\x2f\xdd\x8e\x31\x61\xe7\x14\x88\xed\x6b\xb8\xe8\xf6\xad\x38\xf4\x5e\xba\xf5\xb9\xc8\xc6\x3b\xe1\x62\x06\x1e\xd7\xc0\xea\xe3\xb0\x06\xc3\xb7\xdb\x1d\x1c\xa6\xb7\x44\x59\x7b\x9d\x59\x19\xd5\x55\xe6\x76\xe9\xc7\x19\x86\x2c\x75\x22\x0b\xd0\x68\xb7\x48\xb3\xd7\x03\xcd\xb4\x4a\x44\x2d\xd6\x2c\x59\xaf\x7d\x25\xef\xa0\xa6\x1a\xdb\x20\x1d\xff\xff\x2e\xf5\x7a\xae\x71\xae\x01\x8d\x92\x5c\x67\x8c\x93\xe1\xd7\x2c\xb9\xce\xcc\x0a\x37\x8f\x66\x4a\x6a\xe5\x0d\x7c\x41\xe0\x80\x82\x88\xef\x6a\xd6\x34\x11\x06\x93\xcb\x9c\xa4\xa6\x72\x70\xe4\xad\x7b\xe3\xf8\xc7\x96\x90\xa4\x61\xa4\x52\x0c\x0a\x6e\x5f\x83\xa6\x2b\xcd\x7d\x87\x40\xde\x65\xec\x3a\xab\xd8\xe6\x06\x51\x57\xee\x19\x01\x00\xd8\xfa\xd4\xfa\x00\xd7\x6e\x9a\xe5\xe7\x89\x07\x60\xbd\x8e\x2e\x78\x86\x51\xd1\xe3\x38\x3a\x93\xb3\x6b\x9b\xee\xfe\x2a\x50\x67\x33\x94\xe4\x10\x82\x17\x97\xc7\xd9\x50\x0f\x89\x5d\xae\x54\x23\xe6\xc2\xe1\x31\x1f\x41\x18\x40\x28\x85\x93\x3e\x70\x1a\xe1\x99\xd3\xc9\xb6\x35\xcb\x88\x07\xd2\x28\x0c\x9a\x40\xb8\xf9\x24\x0e\x47\xea\xf1\x1a\x7c\x90\xfe\xcb\xf8\xc0\xbf\x87\xf1\x80\x6f\xb8\xe9\x40\x3d\x96\xb1\x17\xb3\x57\x31\x82\xbb\x8c\x1d\x89\x38\x36\xbf\x3f\xdb\xdf\x4f\x62\xbd\x76\x31\x83\x83\xb7\x37\x3c\x70\xbd\xcf\xd9\x75\x36\x82\xf6\x2b\xd5\x80\xf0\x4b\xc8\x17\xb6\xe3\xf6\xd8\x4c\xc5\x50\xf6\xf1\xca\xdc\x9b\x1f\x67\xec\x3a\xdc\x31\x51\x82\x9c\x35\xe4\x44\xaf\xaf\x04\x57\xf4\x79\x7d\x4b\x3d\x09\xd8\x1a\x56\x58\xe6\xb8\xbc\x7c\xf4\x1c\x14\xf9\x61\x87\xa5\x8a\xa4\x2f\x73\x18\x71\xa8\x04\x39\x15\x18\xff\x64\xa1\x4e\xa8\x00\x03\x20\xb3\xab\x7b\xfe\xa8\xe2\xe7\xde\xdd\xab\x69\x46\xfe\xff\xb9\x7b\x17\xe6\xb6\x71\x64\x5f\xfc\xab\x48\xaa\x29\x1e\xe0\x18\xd6\x48\x76\x92\x49\xa8\x20\xba\x4e\xe2\x99\xc9\x6e\x5e\x9b\x64\x1e\xbb\x5e\x5f\x5f\x9a\x82\x6d\x8e\x65\x50\x03\x40\x71\x3c\x16\xef\x67\xff\x17\x1a\x6f\x92\x72\x92\xd9\x3d\xe7\xdc\xfa\x57\xa5\x62\x0a\x04\xf1\x46\xa3\xbb\xd1\xfd\x6b\x4c\x04\x8d\x2e\x6e\x2a\x70\xed\xf5\xd8\xf5\x87\x45\xe2\x03\xb0\xa1\x53\x62\x5b\x0a\xf7\x31\xee\xca\x2f\x47\x2a\xb9\xe6\x48\x11\x76\xa2\x02\x32\xba\x7b\x7f\xfa\x5d\xe7\xa2\xe4\x31\x80\xdf\x74\xae\x4f\x26\x98\xfc\x60\x6a\xab\xe3\x8b\xad\x67\xdd\x7b\x26\xd7\x62\xa7\xd9\xe1\x31\xa5\xee\xb3\x99\x2b\x36\x9b\xe7\x25\x2a\xbc\x37\xfb\x90\x82\xde\x27\xa0\xdc\x85\x18\xca\xe0\x9e\x55\x08\x16\x65\xe5\x49\xd6\x39\x42\x2c\x36\xf6\x37\xb6\xa3\x86\x39\x31\x96\x12\x95\x35\x83\x81\xf1\x27\x2c\xba\x19\xb5\x53\xcd\x60\x08\xc1\x23\xfb\x3e\x31\xb6\xe0\xb4\x20\x97\xa6\xa3\x85\xed\xa8\x37\x50\x28\x1c\x2e\x2e\xa9\x1f\x57\x80\x1a\x54\xa4\xfb\x9f\x20\xcf\x54\xc1\xad\xb1\xed\x01\x9e\xf3\xfc\x6f\x02\xa3\x9a\x08\x88\xe6\x23\xc0\x5b\x0a\x1a\x85\xe7\x76\xa4\x2b\x9c\xb7\x67\xdc\x38\x9d\x14\xde\x57\xe1\x8e\x5e\x84\x49\xba\x6c\x4d\x52\x7a\x8a\x31\x80\x70\x6f\x51\xad\x6e\xab\x2c\x06\xdc\x54\xf7\x33\x6e\xe1\xf3\x68\xc1\x46\x75\xfe\x52\xa4\x20\xfc\x7a\xb1\xfb\xa5\x11\x8c\xc2\xfd\xd4\x32\x5b\x1d\x58\x8a\xa7\x7e\x29\x1b\x3a\xdd\x7b\x18\xc7\x43\x2b\xba\x91\x73\x4e\x6b\xc4\x5b\xae\xa5\x3e\xf4\x25\xbd\xa8\x91\x02\x13\x2d\xbb\xcb\xf8\x9f\xda\x65\xfc\x7f\x6e\x97\x3d\x2d\x5a\xe6\xe5\xd0\x5d\xd7\xf7\xe1\x64\x76\x53\x23\x65\xcf\x5e\x80\xf5\xa9\xce\x90\xef\xac\xbf\xc9\xf7\x4e\xd8\x61\xc8\x51\xa4\x24\xb4\x31\x15\xba\x09\xd1\x60\x9c\x2b\x4c\xae\x9d\x2b\x13\x39\xb1\x4f\x86\x72\x0d\x27\xb3\xd8\x0a\x21\x26\x01\x51\xe5\x44\xb6\x4d\x1d\x66\x85\xf5\x43\x96\x33\xa3\x0f\x2b\x9c\x4b\x30\x59\x5a\x3f\x99\xed\x1e\xc7\x4b\xbf\x94\x96\xf3\x25\xad\x2b\xb4\xc4\xf9\xd2\x4c\xf8\xb2\x6f\x51\x38\x83\x44\xbe\xd5\x69\x97\xac\x7a\xa3\x9e\xac\xfb\x9d\x79\x8b\x6d\xce\xbc\xb3\x55\xbf\x3b\x6f\xf1\x05\xbe\xe1\xfd\xdf\x6d\xfd\x60\xb3\x41\x72\x08\x7a\xbf\x12\xa2\xc6\x64\xd9\x1f\x7a\x62\x34\xa9\x5a\x62\x62\x70\x9e\x74\xaf\xcf\x3a\x77\x72\x7a\xac\x8d\x7b\xec\x19\xe4\x58\x50\xd5\x81\x16\x1b\x52\xba\x30\x5e\xb5\x8a\x2c\x88\x20\x85\x9e\xed\xb2\x5d\x14\x26\xb6\x09\x7a\x03\x97\x9b\x4d\x00\x8d\xde\x6c\xaa\x6a\x8e\x7a\x87\xd4\x78\x5d\xeb\x25\xb4\xd6\xcb\xa9\xa7\x50\x24\x69\x55\x6d\x36\x07\x26\x97\x24\x82\x9c\x81\x25\x36\x9e\xa3\xaf\x1a\xdf\x3b\xdc\xa5\x8b\x7e\x77\xe9\xfe\xc9\xee\x2b\xb4\x2f\x75\x8b\x93\xf4\x9d\x8d\xbb\xe3\x25\xda\xe2\xae\x5c\xf4\xba\x2b\xab\xd4\x5d\x19\xe7\x9f\xeb\xcc\xf6\x6f\x49\x6b\xaf\x52\xd1\xd1\xfb\x94\x98\xb8\x0d\x2c\x88\x5b\x4e\x25\xf1\x9b\x98\x2e\x89\xa0\xf2\x5f\x6a\x84\xa0\xc3\xa9\xa5\x6e\x9f\xa1\x25\xbe\x29\xca\x99\xd5\x26\x1e\x84\x73\x99\xff\x50\x3b\xff\x2e\xa9\x57\x5c\xa0\x35\xdd\x00\xd6\x2d\xea\x83\xbf\x96\xd4\x10\xd4\x4b\x4a\xd0\x5d\xd4\x07\x7f\x25\x99\xc1\xff\x2f\x51\x99\xee\x0e\x26\x67\x34\x2c\x09\xc7\x05\xb5\xa8\x0c\xee\x50\x97\x0e\xa1\xf2\xd4\x45\x57\x7d\xf6\xe7\xa8\x4b\x4f\xa1\x68\xdd\xa6\x2e\x25\x39\xfb\x13\xd4\xc5\xc1\x73\x7d\xc1\x88\x3a\xa4\x87\x2f\xa1\x2f\xae\xd8\xde\x64\x24\xa0\xa9\x5f\x41\x66\x42\x71\xdb\xdf\xda\x52\xbf\x84\xda\x44\x98\x64\xe9\x6e\xfd\xaa\xf5\xdb\xfe\x7e\xef\xfe\x83\x94\x60\xf5\x8e\xa4\xaf\xde\x44\x76\x6b\xf1\xae\x59\x56\x26\x89\x30\xdb\x9b\xcd\x1d\x0d\x1d\x7e\xbe\xa1\x7f\xbe\x26\xdd\xa5\x2f\xa0\xa3\x67\x7d\x74\xf4\xac\x45\x47\xd7\xff\x7f\x1c\x1b\x20\xef\x8e\x5b\x7f\x9b\x72\xe6\x91\xa1\x71\x4b\x88\xb1\x02\xc6\xcc\x70\x98\xbd\xe6\xb1\x26\x0c\x45\x96\x0d\xbd\x8e\xa7\xce\xb2\x03\xf0\x4f\x26\xc3\xa9\x67\xb5\x2b\x3c\x13\xc9\xb1\xf2\xb2\x08\x81\x69\xec\x55\x6e\xd1\xbf\xbb\x7b\x09\x39\x5c\xc5\x5b\xc3\x07\x2b\xf3\x47\xd7\x4d\xa9\x6c\x11\x58\x71\x90\x3b\x8c\xec\x96\x2a\x15\x34\x13\x5e\x79\xc9\xc3\xbc\x84\x44\xa9\xe5\xd0\xdc\x4a\x27\xd2\xe4\x69\xdf\x5b\x19\xcc\x94\xa8\xdb\x13\x5f\x52\x64\x66\x5d\xf4\x87\x14\x51\x4e\xaf\x69\x2f\x1f\xe6\xe7\x35\x9a\x90\x76\x6a\x27\xc1\xd8\x1f\xdb\x50\x29\xb9\x7f\xcc\x32\xfb\xb9\x3b\x71\xf5\x14\x18\x53\xfa\xd4\x25\xc4\x5a\x74\x17\xe4\xb7\x82\xbc\x28\xc8\x4f\x05\xf9\xb1\xa0\xb7\x2d\xfd\x16\x11\x4c\x89\x1b\xb8\xbf\x9f\x46\xf6\xde\xdf\x17\xc9\x4d\x1f\xa9\xa9\x13\xfb\xa9\x4a\xb4\xb4\xa4\xa0\xbf\x7a\xb3\x4b\x22\xad\xd0\x84\x44\xff\x4a\xc2\x9b\x0d\x12\x74\xa2\x4f\xaf\xbd\xac\xc0\xe1\xb2\x9d\x05\x01\xb6\x03\x30\x23\xe6\x48\xd2\xe1\xa4\x25\x0d\x3e\xb8\xef\xad\x45\x02\x26\x43\x67\x9b\x04\xb0\xd7\xf1\x99\xbd\x8e\xda\x6c\x86\x26\xc1\x87\xe4\x28\x74\xae\x0f\x17\x95\xfc\xde\x67\x41\xc5\x86\x4e\xc1\x96\xfe\xd7\x8a\x4c\xb3\x22\x88\xb6\x26\x1c\xa6\x0d\x8a\x19\x4a\x25\xa8\x02\x9f\x7e\x3d\xa4\x35\x99\xb4\x1c\xcd\x15\xd8\x1a\xa0\xbd\xcc\x8c\xa2\xd1\x65\x46\xc8\x61\x49\xab\xe7\xce\xd8\x1c\xfe\xcf\xed\x2f\xe7\x9a\x13\x4c\xef\xd9\x0c\x7b\x85\x45\x05\xae\xbe\x29\xe6\x06\xe2\xba\x45\x92\xd4\x1d\xbf\x77\x45\xaa\x00\xb0\xd1\x59\xed\x3f\x16\x7e\x93\x54\x84\x3b\x05\x4d\x4d\x83\x6f\x50\xe7\x13\x2b\xe1\x9a\x8f\x82\x6a\x0f\x62\xc8\x04\x2b\xa5\xf6\xd4\xde\x42\x68\xdc\x10\x12\x09\xbb\x46\x11\x33\xbe\x55\x32\xbe\xdc\xc0\x84\xa4\x97\x04\xdb\x87\x18\x7c\x15\xbf\x66\x80\x31\xb4\xd0\x3c\xea\xe9\xb1\x98\x0f\x54\xba\xf1\x96\x33\x2c\x5d\x6d\x9c\x48\x2a\xdb\xe3\x5d\xeb\x16\xd6\x9a\xde\xb6\x6d\x46\xa2\x56\x72\x3f\xf2\x35\xe9\x0f\x4d\x30\xb9\x6b\x46\x38\xa9\xbd\x8d\x7f\x4a\xe0\xa2\xe9\xe1\x5d\x12\x96\xcc\x10\x6f\xaa\xb3\x30\xec\xe4\xeb\x57\xb3\x5f\x8b\x24\xd1\x81\xb8\xc5\x88\xff\x5f\x5e\xee\x3c\x55\xc4\xb8\x8a\xbe\x66\x12\xa2\x6d\x71\xe7\x38\x9b\xf9\x49\x67\x26\x0a\xe7\xd2\xa3\x7f\x6b\x6d\x11\xe7\x3f\x52\xb5\xfd\x00\xe8\x6d\x25\x9f\x16\xe5\xe5\x75\x21\x16\x12\x62\x29\xe8\xe3\xb1\xe2\xe7\xc1\x20\x20\x17\x44\x15\xd5\x32\xe7\xf0\x27\x74\x2f\x9f\x40\xc2\xab\x7a\xc1\xf2\xba\xc9\x51\x35\x8e\x8a\x82\xb1\xf2\x85\x99\xde\x18\x83\x48\xb0\x4d\xd2\x1f\x52\x6e\x1f\x42\x91\x74\x62\x93\x74\xa1\x34\xe6\x36\xfe\x9e\x9e\x23\xed\xc3\xa3\x06\x9c\x2a\xef\xa1\x03\xc1\x26\x75\x39\xfa\x0c\x71\x4a\xf9\x64\x59\xdb\xa3\x03\x89\xe8\xd4\xc1\x18\x0b\x3a\xcd\xc4\x66\x2f\x55\xb2\x3d\xb8\x97\x98\xbc\xdb\x55\xfa\xe0\x5e\x8c\x2b\x6e\x8f\x25\x96\x9b\x15\xea\x7c\x7a\xc2\x92\xf3\xce\x4d\xf6\xf2\xf4\x0e\x6a\xd6\xd1\x4d\xf2\x3e\xd5\x24\x77\xac\x56\x6c\x57\x68\x8b\x2c\xb4\x54\xd1\x53\x48\x3b\x91\x72\x4c\x78\xe5\x37\x1c\xc0\x81\xb6\x3c\x97\x1c\x25\xbb\x65\xa9\xe7\x12\x23\x7e\xdf\x27\x9e\x4b\x20\xe3\xfb\x78\xce\xb1\xef\x12\xeb\xf5\x5d\x62\xde\x77\x89\x05\xdf\xa5\x50\x40\x14\x5c\x85\xb5\xfd\x96\x7c\xb3\xa3\x3d\xdc\x88\x8c\x4e\x75\x3b\xcc\x89\x2b\x3a\x14\xa4\x6f\x9f\x19\x3d\xa9\xbd\xdc\xae\x7d\x70\x4f\x01\x2b\x79\x04\x53\xca\xdd\x94\xc6\xf1\x15\x86\x94\x72\x8f\x68\x85\x04\xe5\x11\x5a\x94\x67\x25\x7e\xab\x90\xc0\x26\x7c\x01\x06\x3f\x3f\x37\x0a\xdc\xbb\xae\xd5\x78\x8e\x6a\x5f\x41\x7c\xc5\x05\x00\xa4\xfe\x93\x88\xe6\xc3\x4b\xf2\x73\x81\x34\xdb\x06\xa4\xaa\x4a\xe3\x89\xba\x8d\xe8\x9a\x6f\x48\x70\x6f\x25\xae\x2f\xf5\x2c\x81\xc8\x13\xb4\xde\xda\x9f\x70\x11\x57\x5b\xef\x5d\x9d\xdb\x35\xb3\x8e\xa9\x24\xad\xf5\xee\x6c\x4c\x53\x27\x96\xa6\xb6\x5a\xab\xea\x73\xa6\x2e\x98\x18\xe5\xae\x47\xc1\x66\xc2\x70\x5e\x1d\x1f\xcb\x9e\x69\x0c\xa4\xb4\xc5\x4f\xff\x50\xb4\x40\xbe\x8d\x98\x9b\x44\x99\x69\x85\xe3\x71\x70\xd4\x6d\x4b\xfe\xea\x0c\xc2\x67\x0b\xb0\xda\x17\x9e\x77\x6f\xc5\x0c\xe2\xed\x10\xf7\xa1\x5e\xfb\x41\xb4\xb3\xda\xa8\x13\xfb\x01\xa0\x22\xf6\x1c\x34\xd3\xa8\x59\x17\x3f\x89\x29\x0b\xd3\xb9\xd3\xc0\xd1\x61\xef\xed\x47\xbc\x5d\x6b\xb4\x1d\xa3\xfd\x03\xb7\x63\x7e\xfa\x7a\x18\xa5\x6e\x2d\x38\x2a\x3a\x59\x9f\x5b\xe7\xe3\xaf\x20\xdf\xa4\x28\x8e\xe1\xed\xdf\xba\xc6\x26\xe6\x40\xb0\x1b\xf3\xa2\x5a\x2c\x18\x1f\xe5\x60\x0c\xa0\x69\x7c\xf0\xd7\x8b\x57\x73\x8c\x35\x17\x03\xac\x71\xda\x02\x96\xe3\x21\x4a\x87\x39\x96\xb4\xa0\x98\xf6\x24\x0d\xb7\xbb\x5c\x16\x2b\xc9\x16\xa3\x9c\xb7\x5b\x20\xb6\xd0\x06\x9e\xb4\x40\x6c\xa1\x04\x62\x1e\x82\x9f\x9b\x82\x93\x26\x99\xe7\xa4\x5d\xb9\x48\x07\x3c\x0c\xe2\x37\x45\x1c\x0a\x2f\x71\x08\x3f\xad\x91\xf5\xf9\xcd\xb2\xab\x1a\x61\x6f\x59\xe1\xa7\xc3\xc9\xc6\xf7\x26\x8f\x1e\x64\x60\x4e\xd4\x8e\xa8\xa1\x36\x0f\xee\x11\x16\x83\x3c\xed\xe7\xd5\x19\x7a\x5a\x21\x4c\x5e\xd5\x08\x13\x7d\x3c\xa2\xa4\x50\x6c\x8f\xc8\x36\x00\xe4\xfd\xc8\xa5\x7b\x4b\x3d\x33\x6b\x69\x64\xb3\x81\x17\x32\x09\x55\x4f\xf7\xdd\x1b\xa9\x89\x3e\x26\xd0\xee\x56\xed\x5f\xd6\x8b\xe9\xa3\x56\x51\xe1\xd5\x3d\xf7\x06\x3a\x19\x7d\x32\x71\x2f\x54\x68\x57\x6a\x3e\x34\x68\x4d\xce\x5f\x12\x0f\x87\x5b\x00\x28\xc9\x19\x91\xf5\x5a\x94\x2c\x57\x44\xaa\xa2\xbc\xcc\xff\x82\x14\x6e\x9a\x5f\x0b\x9a\x5a\xe0\x85\xd5\xde\x62\x32\xb8\x21\xdf\xf7\xa9\x05\x21\xdd\x6c\x1e\xb8\x47\xcc\xc6\xc5\x4a\xef\x62\x30\x0a\x42\x91\x69\x19\xf6\x77\x84\xf7\x1c\x78\x69\xb8\x0c\x76\xa4\x87\xa7\x47\x3f\x87\xc5\xdb\x3d\xfa\xa3\x93\x3b\x39\xf8\x79\xef\xc1\xcf\xfd\xc1\xcf\xe3\x83\xdf\x19\x1a\xf9\xf7\x0d\x6f\x9f\xfb\xdc\xb3\x2b\xa1\xe8\xa6\x21\xbf\x45\x23\x85\x6f\x1b\xf2\x22\x1d\x39\x87\xa7\xe7\x98\xa6\xf4\xce\xb3\x3a\x43\x45\xf0\xed\x02\x78\xa1\x58\x05\xe5\xd0\x02\x5a\x2e\xf4\x96\x4d\xb7\x18\x02\xa3\x8a\xaf\xd6\x6a\x94\x17\xf4\x03\x43\x4b\x52\x60\x22\xcc\x93\xd0\x39\x8f\x8e\x63\x2a\x52\xaf\x40\x73\x95\x17\xf4\x77\x9f\xf7\xf7\x2d\x79\x6d\x4c\xf6\xbc\x30\x61\x07\x0b\x62\x57\x8c\xf5\x4f\xd1\x9f\xda\x98\x33\xed\x17\xed\x92\x3c\x4e\x6a\x5e\xd0\x4b\x5f\xef\x65\xb7\x5e\xb7\x7e\xfb\xd5\x8e\x35\x7f\xb6\xac\xca\xcb\x7e\xe8\x59\x11\x5e\xa3\xe5\xb8\xe6\xa5\x7e\xa6\xef\xb4\xc0\x52\x0b\x24\x07\x15\x1f\x3c\x37\x98\xa3\xc4\x72\x25\x05\xb8\x52\x8b\xf1\x45\x21\xdf\x5c\x73\x3d\x1f\x4c\xa8\x1b\x24\xb1\xe6\x62\x7b\x12\xcd\xf2\x2c\x8e\xe4\x31\x36\xa0\x1f\x37\x4b\x08\xbb\x6e\xa2\x34\x96\xba\x86\xa5\x79\xbd\x6c\x7f\x5e\x82\xaa\x68\xb3\x41\xdc\x20\xda\x1e\x95\xc7\x74\x34\x32\x9b\x60\xb4\x28\xf8\x39\x13\xf5\x5a\x2e\x6f\xde\x33\xf5\x82\x73\x26\x7e\xfc\xf0\xea\xa5\xee\xba\xcc\xb2\x91\x13\x1f\xdc\x6f\xb9\x5e\xad\x04\x93\xf2\x59\x1a\xeb\xfd\x97\x42\x70\x0b\x7a\x1b\xe7\xfa\x11\x94\x65\x55\xcd\x5b\xef\x8b\xb5\xaa\xbf\x87\x38\xf2\x26\x01\x2d\xba\x5d\x9e\xb3\xcd\x06\xe9\xd9\xc1\x60\x1f\x0b\x88\x2a\x26\xb0\xa7\xb4\x12\xea\xcc\x8f\xad\x70\xa8\x58\xe2\x48\x1e\xeb\x65\xbd\xb4\xe2\x72\x31\xd7\x43\x62\xd7\x06\xe9\x1d\xed\xb5\xf1\x0f\xb4\xac\xc7\xda\xa9\xd2\x96\xb8\x3d\xce\xba\x58\x43\x89\xcc\x68\xe3\x61\xcf\x48\x6f\x36\xeb\x2c\x5b\xf7\xa5\xf7\xcd\x80\x2f\x6c\x8d\x7b\xbe\xc9\xb2\xe5\x51\x79\x3c\xa4\x74\x7d\x54\x1e\x77\xa7\x50\xa7\xda\x0b\x49\xfd\xc6\x0f\x97\xe6\x5d\xec\x30\x61\xbd\xdc\xd6\x77\x4f\x34\x05\xff\xd0\x35\x5d\xcf\xd7\xe3\x93\x93\x0b\x75\xb5\x74\xc3\xb5\xa4\xcb\xf9\xb2\x95\x66\x47\xc9\xf8\x53\xae\x8d\x21\x7e\x32\x35\xa3\xd1\xce\x1a\xe3\x3c\x2c\x1c\x28\x1f\x60\xd1\x36\x9b\x2e\x36\xf2\x3a\xcb\x1c\x56\xcd\x30\x36\x73\xe8\x2f\x37\xff\xf7\xac\xbf\xde\xe5\x86\x7c\xd7\xde\x72\x54\x11\x89\x09\xdb\x6c\x6c\xbb\xcd\xc0\xf6\x2c\xc4\x35\xc6\x0d\xef\x8c\x82\x5d\x35\x5a\xe4\xae\x28\x23\x2d\x2b\x9d\x0a\x67\xd9\x5f\x0b\x38\xe7\xc8\x4f\x5d\x72\x8d\x6f\xb9\xe1\xb5\x4d\x1e\x60\x54\xfe\x51\xf4\x9a\x83\xfc\xc2\x8a\xcb\xf7\x4c\xcd\xed\xdf\xfc\x3d\x53\x41\x09\xcd\x64\x6a\xfb\x64\x0e\x5a\x62\x2f\x19\xca\xcb\x28\x58\x1e\x0f\xd0\x22\x82\xfe\x05\xf1\x00\x7f\xcf\xb3\xec\x1b\x6b\xc6\x66\xf8\x47\x83\x2b\x16\x38\xfb\x29\xf5\x66\xb0\xdf\x20\x8f\xaa\x22\x6e\x6e\xcb\x9a\xcb\x7a\xc9\xc6\x0c\x38\x1e\x85\xad\xf7\x55\x8d\x6f\x25\x53\x9a\x85\xae\xd7\x0a\xc5\x21\x72\x0d\x8b\x54\x37\x49\x30\x61\x25\xe3\x4b\x01\xc1\xce\x62\x21\x01\x27\xf0\x77\x31\x56\xab\x6e\x80\x73\x8b\xf4\x31\x73\x5f\xda\xd8\x1f\xb0\x63\x5a\x7e\x8f\x01\x18\x5a\x26\x7c\xb8\x8a\x98\xc8\x89\x07\xcb\x31\x7f\xef\xe7\x42\xa2\x3d\x32\x21\x2a\x16\xeb\x06\x53\xcd\x13\xee\xdd\x7f\x10\xeb\xef\x43\x9c\xd3\x60\xd5\xda\xb2\x74\xeb\x28\xaf\x94\x71\x5e\x89\xa2\x56\x6c\xb9\xf8\x42\x6d\x7c\x62\x63\x5a\x30\xe7\x91\x99\x01\xc7\x70\xd6\xb5\x03\x59\xf4\x15\x47\x55\x13\xf5\x66\x3f\xb7\x6c\xa8\xb5\x3d\xb7\x5c\xa1\xe9\xe9\x77\x79\x4b\x3e\x6d\x85\x5a\xdf\x4f\xe6\x52\xc8\x1e\x48\xfa\xd4\x2c\x31\xbe\x90\x9f\xf3\x71\xcb\x7f\x19\x7b\x80\x00\x6a\x6c\xca\xc1\x9d\xdf\xc8\xa6\xc8\x80\x7e\x31\xec\x9c\x80\x85\x73\xda\x9d\xf9\x27\x9a\x78\x13\x0f\x21\xc0\x62\x8d\x70\x13\x7d\xaf\x8c\xd2\x42\x8c\x8d\xbb\x35\x09\xdf\xd6\x08\x1b\x98\xae\xc8\xbb\x5c\xd8\x08\xcd\x01\x61\xc5\x77\xd1\xae\x9f\xbe\xe5\xf9\xac\xcc\xb2\x67\x25\xd2\x02\xd9\x1d\xab\xeb\x9e\x5f\x65\x09\x80\x7f\xdb\x68\x81\x47\xd6\xd8\x91\xef\x76\x88\x92\x09\xe3\xf4\x53\x8d\x1e\x7d\xf7\x98\xcf\x1f\x7d\x97\xf3\x24\x2e\xb5\xc1\xab\x10\xce\x8b\x1f\xac\xad\xed\xb0\xc5\xe0\x0a\xdc\x63\x2f\xc0\xde\xe6\xc8\x6d\xab\x0a\xb6\x55\x4d\x2a\xdc\x78\x5b\x6a\x87\x9a\x02\x9c\xa5\xde\xce\xc9\xe6\x50\x52\xf7\xbc\xcf\x22\x85\xa7\xab\x3d\x35\x0c\xe0\x57\xc6\x2c\x27\x15\x0b\x60\x9f\xdb\xfb\xea\xf6\x8e\x52\x5b\xc2\x89\xa8\xde\x92\x51\x0f\xa1\x68\x00\x43\x3a\xde\xdb\xf7\x4d\xf3\xe3\xa4\x7b\x79\xe9\x26\x3d\x5a\x08\x55\x42\xb7\x82\xaa\xd2\xab\xfb\xb8\xc1\xc4\x0b\xfa\xa8\xde\xc0\x38\x2d\xb0\x18\x9b\x94\xa8\x70\x6c\x5a\xcb\x5e\x32\xf5\x70\xb1\x49\xed\xb8\x68\xa9\x8e\xa3\xdd\x8a\x28\x91\x7b\xcf\xa5\x4a\x77\x3f\x02\x8e\x91\x91\x37\xd1\x7d\xea\x7d\x13\xf6\xc3\xe3\x3d\xf7\x18\x21\xc2\xc0\x57\xd6\x1f\x20\xd0\xf6\xd8\xd7\xc2\x02\x63\x15\xba\xba\xe0\x60\xe2\x4d\xfb\x23\x5c\xa7\x16\xc9\x99\x60\xdc\x38\xda\x1d\x87\x9d\x20\xbc\xe3\xbe\x23\xe8\x70\x3a\xeb\x92\xba\x7b\xb9\xa2\xad\xbb\x60\x63\x57\x7a\x37\xad\x9b\x62\xdc\x4c\x1f\x64\x3c\x26\xfa\xe8\x27\x86\x20\x2e\x42\x7c\x6d\x92\xd1\xdd\xe9\x77\x78\xc6\x72\x65\x95\x94\x6c\x36\x8b\xc2\xc8\x7d\x81\xe8\x58\x48\xe4\x7e\x60\x17\xa1\x2d\xa0\x0b\x06\x19\xd2\xdc\xc3\x7d\x81\x1c\x39\xbb\x1f\xc4\xe0\x07\xe1\x71\xfa\xd0\x3d\xdb\x86\x44\x9d\x38\x57\xd8\x49\xc1\x83\xd8\xb9\xdc\x8a\xc8\x66\xde\xcd\x98\x47\xf9\xb6\xcb\xd4\x8d\x09\x4b\x9e\xd6\x60\x1c\x16\x82\x3c\xea\xfa\xd8\xb8\x85\x53\x9b\xc1\x33\xb7\x3f\xf7\x21\xc6\xad\xd7\x01\xc0\x23\x78\x89\x5b\xf1\x16\xc2\x01\xf9\xc2\xf2\x3a\x46\x7c\xe4\x52\x15\xbc\x34\x08\x36\x9a\xad\xf0\x70\x27\x72\x26\x29\x27\x0f\x4d\xbc\x54\x85\x83\x3f\x55\x15\xe1\xdb\xe9\xef\x99\xb0\xa7\x28\x2a\x89\xc4\x79\xd5\x4d\x73\x8c\x47\xf2\x42\x33\xe9\x46\x1b\x21\xe6\xe0\x00\x83\xca\xa4\x1a\x54\xd1\x32\xaa\x09\xb7\xbf\x2e\x21\xa6\x51\x89\x13\x55\x87\x0c\xa1\x69\x4a\x5a\xda\xb8\x58\xef\xea\x1a\xc2\x87\xc3\xaa\x8e\xa3\x75\x95\xde\x7a\xa0\x72\x92\xeb\x66\x83\xaa\x58\x8a\xc5\xb9\x6a\x55\xd0\xc4\x1a\x94\x3a\xd1\xa0\xd4\x4e\x83\x52\xa7\xb3\x5d\x03\xd4\x4e\x57\x83\x52\x6f\x81\x7d\xab\x7b\xb7\x41\xed\xb7\x41\xdd\x85\x7d\x9b\xd5\xfe\x7d\x53\xb7\x57\xbe\x7b\x03\xcd\xf0\x1a\x94\x80\x10\xe5\xcf\x6e\xaf\xd8\x24\x10\x46\xcd\xd8\x65\x98\x46\x0c\x25\xbe\x95\xb4\x72\xd4\xca\xdc\x7c\xcd\x92\x06\xca\xb6\x6e\x5b\xd3\x24\xa7\x4a\x11\x54\xc6\x96\xa3\x09\x4d\xaa\x3d\x3d\x1a\xb0\x16\x45\xd2\x7c\x47\x4a\x91\x6a\x4f\x91\x06\xac\x91\xd4\x5d\xad\x37\x92\x0e\x01\x9f\xec\xbe\x81\x97\x75\x9b\xa1\x32\x35\x99\xf6\x9a\x95\x0d\xb1\x73\xc9\x9a\x72\xb2\xa2\xcb\xd9\x4c\xaf\xfa\x5a\xa2\x92\xac\xc8\xda\x2f\x9f\x95\x99\xae\x2c\xbb\x07\x3f\x74\x19\xab\x74\x52\x57\x64\xe5\x72\xf9\xfb\xc2\x15\xa0\xb1\x76\x27\x74\xd5\x3b\xa1\x2b\x3f\xa1\xab\x30\xa1\x4b\x7f\x17\xb6\xf2\x19\x9a\x55\x7b\x46\xdd\x1b\x68\x83\x9b\xd1\x7a\x8e\x4a\x2a\x74\xe7\xa2\x91\xd6\x3b\xab\x0c\xbb\x2a\xde\x52\x63\xc1\xae\xea\x8f\xcc\x2c\xec\x25\xce\xcb\x56\x02\x06\xfb\xa9\x90\x12\x15\x1b\xed\x82\x30\xc6\x81\x5d\xab\xdc\x46\x10\x71\x5b\x7a\x26\xd2\xdd\x71\x87\x0b\xfa\xca\x7d\x1c\x76\x8a\xaf\x0b\x98\x4c\x88\x10\xd6\xae\xe7\x4b\x8a\x01\xcb\x90\x7e\x95\x65\xd5\x3b\x3f\x95\x9f\x9f\xaa\x47\x65\x79\xcf\x50\x46\xf7\x0a\x1b\x4a\x80\x24\x18\x4b\x57\xed\x09\x73\xd9\xa0\x61\xdd\x2d\xb8\xfc\x72\xe1\xeb\x5e\x2c\x84\xdd\x23\x0f\x3b\x42\x58\xc2\xb5\x79\x19\xd8\x1f\x25\x7e\x96\xa2\xcb\xf5\x94\x7f\xac\xfb\x60\x04\xe1\x55\x2e\x66\xcc\x0a\x59\xde\x8d\x2e\x76\x58\x00\x94\x94\x0e\xdf\xe6\x26\xcb\x5e\x6a\x1d\x55\xe2\x98\x0a\x62\xd5\xa7\xc6\x1f\x69\x24\x8a\x45\x55\x8f\x0c\x1e\xef\xcd\xca\x7b\x28\x09\x40\x4f\xcd\xb2\xd7\xcc\xa8\x10\x9f\x72\x13\x71\x53\xd1\xa7\x16\x88\xb7\xa6\x93\x59\xfd\xb8\x72\x48\x8d\xf5\x0e\xdd\xf3\xa7\xde\x51\x7d\x4c\x4a\xfd\x67\x67\x7a\x3c\x8b\x14\x5a\xf3\x4b\x8e\xb8\x3e\x40\xee\x56\x0d\xbd\x60\x36\x57\xaa\xd1\xf9\xc9\x26\x5f\xeb\xbf\x92\x94\x44\x79\xc6\x8b\xa5\x9a\xe1\x97\xa6\xd5\xfd\x2a\xd9\xe7\xdd\x97\x4e\xf3\xab\xf9\xb7\x93\x6b\xa1\xcf\x1d\x83\xe8\x32\xbe\x2e\xe4\xab\xf5\x52\x55\xab\xa5\xe6\xe7\xb6\xbe\xa3\xc3\xa1\x18\x5f\xf9\x8c\x30\x84\x00\x96\x01\xca\x0b\x3c\x7f\xa6\xeb\x4c\xf2\x30\x32\x9c\xe2\x5c\x0d\x69\xf2\xa9\x57\x0a\x0a\xe7\xdd\x07\x0e\xf2\x3d\xdf\xa7\x19\xc8\x70\x82\xf3\xbe\x4c\xee\x71\x7e\x74\x9c\x8f\x46\xba\x4e\xdc\x34\xb1\x78\xf4\x20\x8f\xf1\x4d\x03\x9d\x69\x9f\x28\x7b\x18\xcf\xe2\x58\x3d\x9a\xb0\x41\xd5\x1d\xb7\xa6\x84\xbf\x05\x88\xdf\x48\xc4\xb2\xb6\x8c\x70\x2f\x6c\x9f\xe9\x70\x4a\xae\x14\x6a\x1b\x43\xa6\x9b\x6b\x2f\xde\x5d\x53\xb8\x04\x03\xe3\x2c\xd7\xf0\xd4\x42\x49\xf3\xd9\x39\xd2\x2c\x34\x09\x06\x05\xef\x24\xfd\x15\x44\x6a\xa7\x68\xf2\x56\x24\x7c\x16\xae\x74\xac\xfb\x71\x6c\x0f\x4a\xc4\xbc\x3f\xb0\xa2\x26\xb1\x37\x4b\x86\xc7\x92\x29\xa7\xd7\x9b\x57\xf1\x2f\x34\xb2\x88\xcf\x23\x32\xe2\x35\x67\x23\x32\xaa\xae\x56\xb5\x50\x05\x57\x23\xcd\xb2\xd9\xd7\xd4\xbc\xcd\x51\x5a\x71\x1d\x30\x5a\x50\xdd\x16\x37\x6d\xe5\x81\x09\xca\xb2\xba\xad\x64\xf4\xd5\xe3\x79\xed\xea\xca\xad\x91\x10\x7c\xee\x1b\xf0\x8c\x47\x6d\xd5\xa3\xef\x68\xff\x03\x3f\x28\xac\x77\xfa\xc5\x7c\x34\xca\xdb\xd7\x3c\xee\x5c\x0e\x96\x38\x41\x1f\x95\xce\xd5\x36\x53\xd0\x18\x65\xf8\x16\x86\xc5\x1c\x34\x0e\x29\x3c\xb6\x8f\xa9\xd2\xeb\xb1\x3f\x61\x50\xe3\x2c\x6a\xf8\xbf\x6a\x51\xc3\xff\xbc\x45\xcd\xba\x2d\xe7\x4f\x1f\xe5\xdd\xb4\xef\xcc\x29\xb4\x67\x4f\xa7\xbd\xe9\x57\x29\xc4\xd6\x89\x92\xa0\x75\x82\x78\x25\xe7\x6d\x57\x07\x30\x73\xba\x9a\x70\x9e\x39\xf1\x0b\xee\xfa\x63\x84\x07\xce\xae\x07\xff\x28\x20\xd0\x79\x27\x36\x83\x72\x67\xdf\xfb\x32\xc2\x4f\x01\x83\x76\xae\x17\x2f\x04\x84\x42\x7c\x5c\x2c\x16\x56\x5d\x75\xc1\x38\x12\x44\x60\xd0\xeb\x80\x85\xf4\x4a\x6e\x55\x4d\xbf\x2a\x56\x73\xfb\x37\x7f\x55\xac\x82\x6a\xfa\xcc\xb3\xda\x88\x43\x60\x67\x67\x72\xa8\x8a\x73\xba\x4f\xb8\x8f\x40\x7d\x6b\x15\x9b\x11\xa0\x99\x70\x4a\x68\x8f\xba\x11\x02\x3d\x47\x8a\xad\x17\x72\xb3\x41\x2f\xc0\xf2\xf9\x27\x49\x05\x26\x56\x1d\xde\x90\x08\xe1\x63\x71\x67\x3b\x3c\x82\x1d\xc4\x48\xdc\x66\x62\x3f\xdb\xa2\x84\xf6\x68\x84\xae\xb9\xa1\x57\x5d\xe0\x16\xdb\x38\x22\x90\x03\x25\x4b\x48\x4f\x0b\x60\xa4\xea\xbf\x83\xac\x12\xf7\x8b\x67\x85\x2a\x2f\xf4\x6a\xe8\x1d\x9e\xbe\x2b\x4e\x11\x0c\xca\x7f\x94\xf3\x1f\x25\x2c\x9d\xf7\x4c\xa1\x23\x75\x51\xc9\x63\x9c\xff\x28\xcd\x4a\xb8\xa8\xa4\x1f\xcf\x80\x31\x6f\x2e\x15\xf4\xcb\x6e\x3b\x90\xbb\x38\xb8\xf5\xaf\xde\xc3\x75\xbf\xa3\xfe\x73\x9e\x8f\x46\x0d\x6e\x30\xe1\xd0\xfd\x0b\x49\x5f\x15\xea\x62\x5c\xb2\x6a\x49\x4e\xe5\x76\x60\xed\xab\xf6\x3b\x03\xa6\xf0\x4a\xd2\x09\x39\x97\xf4\x21\xf9\x28\xe9\xf4\x01\xb9\x91\x74\x7f\x8f\x1c\xe8\xd4\x6b\x49\xa7\xe4\x0f\x49\xf7\xc8\x89\xa4\xfb\xe4\x8d\xa4\xf7\xc8\x07\x49\xef\x93\x4f\x92\x3e\x20\xaf\x25\x7d\x25\xc9\x4b\xab\xf8\x3a\xb4\x7f\xdf\xeb\x0f\x7f\x97\xf4\x40\x92\x67\x36\xe9\x52\xd2\xe9\xe4\xbb\xfd\xef\xee\x4d\x1f\xee\xed\x93\x5f\x92\x5f\xcf\x6d\x9e\xa7\xfa\xb3\xb7\x9a\x17\xd6\xe7\xdd\x84\xfc\x2a\xe9\xfd\xc9\x84\xfc\x66\x5f\xbf\x80\x37\x3f\xd9\x5f\x3f\xda\xbf\xdf\x43\xea\xcf\xf6\xd7\xdf\x25\x7d\x34\x21\x3f\xd8\x5f\x7f\xd5\xa5\xfc\xcd\xfe\xf8\x46\xc6\xf0\xdf\x7f\x91\x7e\x39\xa1\xd7\x32\x43\x1f\xe5\xe6\x46\x1a\xf3\x13\x39\xf7\x6d\x9b\xee\x22\x7d\xec\x7e\x3b\x9d\x6c\x26\x38\xd7\x47\xd9\x37\x72\xfe\x8d\xcc\xbf\x89\xda\x9f\xe4\x09\x9b\xe5\x1f\xb1\xfa\xde\xda\x17\x02\x43\x61\x4c\x0c\x9d\xf1\x57\x18\x06\xbb\x7f\x7e\xab\x11\x98\x76\xc1\x27\xf7\xb2\x00\xfb\xf2\xe8\x11\x98\xff\x84\x0f\x72\xff\xb8\x07\x6e\x10\xaf\x65\xf6\x51\x9a\x1e\xb8\x6f\xde\xcb\x18\x0a\x1f\xb3\xb8\xd5\x7b\xf7\xff\x13\x4d\x77\x10\x8a\x92\xd8\x0e\x9a\x6c\xf8\x58\x99\xeb\xa6\x57\x72\xb3\xb9\xcf\xf6\x75\xcf\xf0\xb7\x7b\xf7\x37\x13\x77\xb0\x3a\xe1\xdc\x45\x45\x78\x94\x47\x05\xef\xc7\x14\xff\xd1\xc3\x3c\xa9\x73\x3a\xe9\xa9\x73\x7a\xdf\x0e\x5e\x72\x58\x3c\xb2\x87\xc5\xa3\x07\xf9\xe7\x9b\x7d\x7f\x12\x9a\x18\x97\x71\x3f\x67\x74\xef\x4e\x4d\xe4\xfe\xde\x03\x9c\xc4\x25\x1b\x52\xfa\x52\x66\x19\xc4\x96\x90\x59\xb6\xbb\xcb\x08\x83\x3d\xc6\x4a\xa2\xca\x78\x09\xf1\xd2\xe3\xc3\xdf\x9f\x3c\xfe\xab\x53\x64\x24\x8b\xce\x9f\x65\x60\xc2\x94\x5c\x4d\x08\x1b\x87\xd4\xe9\x6b\x61\xe2\xc3\x30\x02\x62\x96\x9e\xd3\x73\x3b\xa7\x59\x16\x2f\x54\x0a\x0b\x55\x96\x88\xe1\x1c\x55\xfa\x8f\xde\x8b\x26\xdf\xcf\x9a\x53\xcc\x4d\x22\xba\x97\xbd\x96\x26\xf7\x66\xf3\xe8\xa1\xb9\xa3\x7c\xf4\xc8\xc0\x38\x38\xfa\xf5\x83\x9c\xff\x20\x1d\xb8\x27\x3a\x02\x20\xad\x63\x9c\xa3\x18\xe5\xf3\x07\x09\x28\x9f\x0c\xe3\xcd\x86\x3f\x51\x38\xcb\x7e\x90\x00\xf6\x09\x9d\x88\xef\xad\xec\xb0\x74\x2c\x94\x55\x9f\x85\xb2\xc2\xfe\x74\xee\x58\x28\xf3\x2c\xe3\x7d\x85\xb4\x13\x5d\x21\x22\xf0\x26\xd6\x00\x37\x30\x3c\x22\xcb\x82\x61\x75\x1a\x52\x1d\xd6\x74\x2b\x90\xad\x09\xdc\x2c\x42\x9b\x9c\x69\xf8\x61\xb7\x39\xbd\x6f\xa8\x8a\x2f\x85\x7b\x7d\x2f\x6c\x5f\xee\xf8\x18\x24\x5b\xd3\x23\xd3\x7c\x61\x44\xfc\x9a\x8a\xb6\x9a\xb7\x11\x3e\x6b\x6b\x35\xd7\x59\x86\x5e\xea\xa5\xa1\x1f\x5e\xc1\x45\xda\xef\xfa\xe7\x1b\x99\x65\x3f\x96\xa8\x26\xef\x25\xc6\xe4\x7b\xfd\xa4\x30\x26\x75\x74\x3d\x57\xc6\x0c\x17\x5c\x87\xe8\x66\xb2\x05\x58\xb9\xda\x5a\x0c\x6a\xae\xca\x7f\x82\x69\xa7\xf6\x26\xe5\xad\xb9\x29\x01\xdb\xcf\x39\x72\x9f\xbf\xad\xf8\xb9\xf9\x1a\x3f\xf1\xc8\x46\x7f\xe5\xf5\x35\xb7\xf9\x5f\xb2\x8f\x6c\x89\xe7\x2a\x67\x31\x84\x3a\xac\x64\x77\x73\xd9\x69\x08\x66\xfe\xc8\x6e\x8d\x62\x74\xc4\x84\x3c\x6f\x45\x55\x8b\x4a\xdd\xd0\x47\x8f\xa2\x54\xe0\xfd\xbe\xaf\x91\x4c\x38\x3b\x4b\xf0\xec\x10\xc0\x70\x10\xbd\x52\xe3\xaf\x66\x1e\x5e\x29\x32\x0b\x68\x15\xec\x6e\xaf\xfa\x9b\x39\xe9\x6d\xdd\x24\xaa\x5b\x00\x26\xae\xae\xa9\x45\x1f\x04\x7d\xf4\x28\x9f\x9a\x90\xaf\x7b\x2e\xe5\x7e\x2e\xe8\xe4\x09\x45\x82\x02\xb9\x0d\x74\x52\xe1\xdd\x56\x8a\xc0\x78\xfe\xe8\x51\xbe\x77\x7f\xf2\x84\x8a\xf9\xa3\x87\xf9\x7d\xf7\xf8\x5d\xfe\xe8\x7e\x10\x36\x2d\x6f\xd6\x6d\x27\x80\x14\x6f\xeb\x98\x01\xef\x7b\x42\x85\x37\xd8\x1b\x52\x7a\x59\x67\xd9\x49\x8d\x38\x6e\xb6\x7e\xa7\xfa\x06\x44\x10\x45\x5b\xbd\xef\x99\xaf\xfc\xc7\x1a\x09\x52\xa4\xa9\xe4\xd6\x9e\x68\x79\x77\x40\xf4\xd1\xdd\xe0\xf6\x4a\x50\x4d\x44\xd0\x8a\x40\xe7\x35\x0f\x41\x7c\x04\x97\x9f\xcd\x92\xd7\x73\x83\x89\x21\xb7\x91\xb8\x01\xcb\xc5\xd9\x82\x1b\x36\x40\xb5\xd6\x0e\xe9\xb0\x1e\x6d\x68\xe8\xbd\xef\xcc\xb1\xf1\xa1\x44\x98\xe8\x11\xd5\x67\x13\x87\xb3\x69\xb3\x59\x98\x8b\x57\x37\x4d\x87\xd2\xc9\x27\xaf\xe5\xec\xb5\xdc\xd0\x8f\x72\x16\x6e\x7e\x4e\x4b\x84\x67\x33\x83\x16\xac\x1f\x0d\xd5\x30\x97\xb8\x25\xbe\xbd\xd0\x65\x95\xe0\x40\xf7\x8f\x1a\xc1\x61\x22\xc8\xa9\xf4\x66\x1f\xb5\x21\x1a\xd7\xae\x85\x8a\x3e\x93\xc4\x35\xe0\x47\xfb\xd7\x8c\x41\x7c\xbf\x75\x28\x5d\xc0\xa9\x1a\x48\x03\xaf\xe4\x05\x5b\xfc\x52\x8b\x4b\x3d\x14\xa6\xec\x88\xc8\x86\x2c\xad\x25\xc1\xc9\xd2\xd6\x21\xe8\xef\x81\xe1\x74\x2c\xc8\x81\x34\xcc\xc2\xb5\x6c\x1f\xef\xf7\xf4\xb9\x0b\xef\xfe\x90\x60\x69\x62\x26\x03\xa6\x6e\xcf\x8d\xc2\x1f\x30\x55\x11\xe3\x70\x02\x79\x5d\xb7\xf4\x78\x23\x61\x29\xcf\x7b\x00\x9b\x5e\x58\xda\x03\x7b\xbd\x97\x8a\xd1\xeb\x12\xd5\x18\x93\x64\xcd\x5e\xca\x2c\x9b\x4e\x1e\xa3\x9a\xbe\x93\x3b\xbf\x4a\x58\x7d\x06\xfc\xef\xad\x0c\x5e\x59\x29\xa9\x74\x04\xa6\xda\x6c\xaa\x27\xba\xed\xed\x0c\x94\xbb\x89\xb0\xdd\x69\x9c\x91\x47\x65\x16\x21\xce\xb2\x6a\xe8\xc5\xfb\xc8\x3d\xc1\x18\x64\x74\x0b\x14\x2e\x56\xa4\x63\x05\x0d\x00\x29\xfd\x07\x47\x7f\xb4\xb6\x56\xbd\x75\x0c\xdf\xfc\xfb\xc6\xf0\xad\x66\x7e\x80\x0f\xa9\xbb\x27\xc9\x66\x53\xeb\x61\xf9\x82\x71\x71\xc3\x52\xfb\x61\xa9\xff\xd4\xb0\x24\x74\x78\x48\xe9\x2f\x72\xde\xa1\xb5\xbf\x48\x43\x5b\xf2\xd6\xfc\xcf\x05\x9d\xe4\x5d\xd2\x7c\x29\xf1\xee\x7d\xb6\x4f\x26\x4f\x90\xd0\x0d\x84\x85\xb1\x0b\x3e\x41\x82\x4e\x30\x41\xbc\xfd\x05\xc7\xbb\x35\x7e\xac\x73\x4f\xf7\x26\x4f\xc4\x7c\xba\x37\xc9\xef\x3d\xd4\x4f\xf7\x1e\x4e\xf2\xe9\x04\x1e\xf5\x9f\x7c\xfa\xc8\x64\x78\xb4\x37\xc9\xf7\xd9\xfe\x13\x31\xdf\x67\xfb\xf9\xbd\x7d\x48\xd5\x7f\xf2\xe9\xa3\x07\x93\xff\xbc\x90\x48\x7c\xab\x9f\x42\xc5\x1c\xd6\xef\x63\xa1\xc7\xe2\xb3\x2b\x41\x6c\x5d\x09\x1f\x60\x25\x24\x43\xa6\x37\x82\x25\x5b\xcf\x25\xbe\xad\xe8\xa5\xb4\x4e\xfb\xcf\x41\x64\x31\xe7\xd7\x64\x23\xc7\xa7\x6b\x79\xf3\xaa\xe2\xcf\xd7\x86\x1a\xbc\x92\xd8\x0c\x61\xed\xdf\x3e\x67\xcb\xe2\xe6\x95\x24\x42\x2f\x78\x3d\x70\xbb\xa8\x35\x56\x15\xde\x45\x3a\x77\x4b\xb0\xc1\xf8\x31\xad\xe7\x93\xbc\xde\x11\xbb\x95\xeb\xa9\x5b\xb0\x5f\xd3\xe3\x6e\x97\x3f\xc9\xfc\xc7\x78\xed\x6d\x95\x3e\x1e\x61\xa0\xb9\x86\x72\xb6\x4e\xa1\x70\x6f\x34\x68\x9d\x68\x4d\x7f\xe8\x2d\x79\x27\xc3\x06\x07\x90\x63\xd7\x12\xde\x68\x0b\xd1\xd5\xf5\x9b\x9e\x39\x95\xe8\x9f\x3b\xaf\x54\x7c\x5e\xa9\xce\x79\xc5\x7b\xce\x2b\x11\x9f\x57\xe7\xed\xf3\xaa\xb6\xe7\x55\x9d\x9c\x57\x3c\x3e\xaf\x44\xeb\xbc\xe2\xfe\xbc\x52\xf6\xbc\x52\xfe\xcc\x8e\xe4\xb2\xc3\x76\x8f\xf6\x1e\x4c\x35\x17\xf8\x2f\x1c\x5d\xca\x1c\x5d\x8e\xed\xfe\x24\xe7\xb6\xfa\x1c\xb9\x63\x0c\x06\xd9\x36\x67\xcb\xd4\x96\x25\xc2\xb7\x30\xfc\xd3\x4d\x2c\x02\x66\x59\x6c\x9f\x16\x3a\xf2\x83\x74\xd6\x6a\x3f\xc8\xd9\x0f\xde\x5a\xa9\x27\xe0\xac\x66\x6d\x7e\x86\x50\xe6\xd0\x02\x05\x21\x67\xb5\x08\xd9\x34\x08\x13\x3d\x91\x91\x56\xc3\x76\xc5\x5b\xbf\x01\xb3\xff\x14\x62\x0f\xc5\xd2\xce\xc9\x82\x9d\x31\x01\x4f\xa9\xa8\xf6\x44\xb3\x84\xe8\xc7\x1a\x3d\xfa\x2e\x31\xac\xf3\xca\xc9\x93\x9a\x3f\xab\xaf\x56\x10\x96\xc8\xac\x14\xdd\x9c\xdf\x25\xfd\x24\xa3\x66\xac\x93\x66\xd8\xe5\x33\x05\x63\x3b\xa7\x22\x04\xc3\xab\x8a\x17\xcb\xe5\x8d\x1e\x37\xca\x71\x24\x1d\x47\xdc\xdd\xaa\x6c\xc7\x43\xb1\xc5\xdd\x8b\x8b\xfb\xa9\x46\x8f\x1e\x12\x96\xc0\x66\x73\x50\xec\xc6\x75\xd4\x5b\xea\x38\xeb\x36\x37\xa3\xbb\x7b\x44\x57\x73\x2e\xff\x54\xb3\x17\x5e\xca\x4e\x56\xa6\xb7\x66\xeb\x5d\x8a\x13\x2f\x6b\x27\xb4\x4d\xaf\xff\xdd\xa9\x17\x5d\x52\xba\xb7\x3b\x25\x4c\xc4\x36\xce\x87\xc6\x85\x82\xd3\x43\xd9\xb2\x42\xe3\x33\x6f\x71\xea\x0d\x38\x12\xaf\x32\x67\x6a\x0a\x1a\x62\x90\x7b\x9f\x05\xa8\x2e\x0f\x7d\x50\x47\xc6\x36\xb5\x75\x3f\x4b\xee\xe5\xbc\x07\x59\x6a\x6b\xf8\xae\x42\xa2\x65\x6b\xa8\x73\xce\xd2\xcb\x37\x77\x3b\x61\x7c\xb7\x92\x97\x93\x5c\xe9\x22\x62\x9b\xb0\x97\x92\x32\x72\x28\xc1\xc9\xd1\x03\x8f\x80\xd6\x9b\xbc\x97\x54\xb5\x94\x9c\xbf\x48\x7a\xf9\x19\xcd\x66\x14\xc2\xa6\x0c\xbe\x5a\xb3\x99\x31\xce\x74\xd4\xac\x28\x90\xd7\x00\x1c\x4a\xef\xf0\xe7\x47\xdc\x1d\x0b\xbf\x4b\x7a\x0d\xd5\x9b\x46\xcd\x58\xee\x76\x26\x11\x21\x37\xa9\xe9\xa1\x24\x95\x81\x9c\x56\xf4\xbd\x24\x75\x82\xe7\x33\xb9\xf7\x90\xd4\x89\x05\x64\xdd\x31\x7e\x8c\x74\xe9\x7d\x61\xa1\xfb\x15\xec\xea\x82\x71\xe7\x4c\x55\x11\x69\xb0\x58\xa6\x59\xe4\x4d\x4f\xca\x60\x4d\xbb\x34\x9e\x28\x70\xed\x56\x86\xe8\x9e\x6b\x5a\x6e\x8d\xee\xb9\xc6\xce\x73\x85\xae\xa3\x4b\xb7\x20\x39\xaf\xa2\x8f\xcd\xed\xde\x32\x5c\x4b\xae\x3c\x04\x45\x96\xa1\xa1\x49\xb9\x0b\xa7\x65\x28\x31\xf0\xd6\x36\xa8\xfc\x19\x2d\xfb\x6e\xa1\x28\xa5\x67\x26\xc3\xc2\x5d\x09\xcc\x16\x70\x13\x50\x60\x92\x7c\x41\x17\xc6\x48\xe5\xcc\xbe\x9d\x05\x4d\x71\x69\xd5\xc4\x7a\x45\x94\x29\xce\x40\x3c\x79\x9a\x8a\x3c\x7a\x38\x25\x53\x67\xc0\x87\x63\xcb\xaf\xe0\x98\x5d\x1b\x68\xdc\xef\xc2\xc0\x5c\xd0\xb2\x8a\x58\x32\xb3\xa6\x67\x17\x90\x6f\x8f\xac\x2b\x54\x93\x0b\xdc\xb4\xb1\x45\x3a\x6a\xde\x01\x6b\x5c\x84\x28\x52\x5b\xe0\xa5\x53\xca\xc7\xab\x8a\x9f\x3f\x2b\xca\x8b\x78\x54\x4e\xe7\x28\x79\x05\xa3\xb3\xd2\x0b\xd3\x0e\x13\x39\x05\x85\x62\x01\x10\x49\x41\xf7\x58\xd1\x53\x50\x3d\x16\x10\x9d\xbd\x37\x37\x19\x56\x70\x01\x57\xeb\x11\x83\xd1\xac\x8d\x4a\xf0\x8a\x1e\xc6\x9c\x13\x07\xac\xba\x59\x61\x6e\xe6\xae\xc8\x15\x6e\x92\xd1\xbd\x37\x79\xf4\x80\x94\x1d\xf5\xa2\xef\x6b\x49\x5d\xf8\xed\x34\x60\x5a\x89\x67\x15\x35\x0c\x03\xfa\x06\xd5\xc6\xaf\x63\xb3\x19\x1d\x0c\xe0\xae\x65\x50\x86\x20\xc9\x3b\xa3\x81\x74\xe2\xcf\x00\x0a\x19\x78\x08\x0c\x32\x38\x5d\xab\x01\xaf\x07\x6e\x5d\x0e\x7e\x7a\x31\xb8\x2e\xe4\x40\xae\x58\x59\x9d\x55\x6c\x31\xfe\x27\xff\x27\x3f\x58\x2c\x06\xc5\xe0\xf1\x7b\x1b\xf6\xc8\xe7\xa6\xe3\xf1\xf8\x49\xa8\x6b\x70\x51\x9d\x5f\x30\x31\xa8\xf8\x40\x5d\xb0\x81\x12\x8c\x0d\x54\x3d\x58\x89\xfa\x63\xb5\x60\x83\x62\xb0\xac\x0b\x2d\x6a\x0d\x2a\xbe\xa8\xca\x42\xd5\x62\x50\x8b\xc1\x6a\x59\x94\xec\xa2\x5e\x2e\x98\xd0\xb9\xed\xb5\xfa\x78\xb4\xf3\x17\x3d\xba\xcd\xef\x72\x48\xe9\x07\xcd\x76\xfc\x2e\xe9\x1f\x12\x93\x8a\xfe\xa5\x40\x95\xc1\x17\x85\xad\x6c\x29\x7f\x19\x51\xfe\xfd\x5c\xef\xff\x2f\x19\x69\xb2\xaa\x50\x49\xce\x24\x2a\x49\x01\xd7\x65\x89\x81\xdf\x54\x97\x03\xf3\xfa\x4a\x53\x88\x9b\x15\x83\xb8\xfe\x89\x99\x12\x7a\x70\x2f\x8b\x6a\x82\xe3\x53\xf3\x1c\x7d\x14\xea\xd5\xd6\x6b\x4a\x6f\xe3\x79\xde\x4f\xdb\xce\xfb\x2f\x0f\xdd\x75\xe0\x66\x33\xfc\x51\xc2\x8a\x3c\xc7\x5a\xc0\xff\xf2\xae\x2f\x3a\x5d\x6f\xee\x58\x75\xcd\xa1\xa4\x07\x25\x3a\x94\xce\x1c\xff\x23\xbe\x55\xf4\x63\xb0\x0d\xb0\xf2\x49\x08\x4f\x56\x7a\x2f\x86\xc0\x2c\x3b\x55\x6e\xc4\x3e\xbf\x2a\x3c\x06\xd5\xfc\x55\x91\x47\xc0\xfc\x57\x8e\xf1\x78\xac\x65\xb8\xbd\xc7\x2c\xcb\xd0\xa5\xa4\x0c\x47\x66\xef\xec\xf1\x2f\xfe\xdd\x2f\xfa\x04\x7d\x2e\x69\x6c\x07\xff\x0a\xe4\x14\xf6\xe4\xa9\x5e\x47\x4f\x65\x82\x7b\xad\x99\xfd\xdb\x58\x1b\x7f\x28\x67\xf8\x50\xd2\x1b\xd3\x4d\x9f\xef\x63\x37\x5f\x96\x0d\xdf\x68\xae\xa0\x2f\xfb\x4d\x2c\x1a\x95\x31\x84\x32\x61\xe4\xbd\x8c\xdc\xcb\x53\x83\xfe\x16\xb0\x81\xb3\xd9\xc9\x32\xa4\xf4\xc8\x6b\xb6\xfd\x4a\x26\xce\x51\x24\xd2\x5c\x43\x8e\xdb\x43\x49\x99\x3b\xe4\x94\x3e\x96\x5b\x31\xde\xc2\x41\x8d\xf4\x59\x9c\x1d\xca\xf6\xfa\x05\xf3\x7f\x7b\x73\x4c\x84\x3e\xc1\x2b\x8a\x74\x51\x38\x69\xde\xac\xc7\x12\x70\xcf\x72\x3c\x0f\x12\x23\xa4\xfb\x2e\xe4\x7b\x6a\x04\xe8\x1c\xa0\xf0\x9d\x6c\x17\x41\x22\x35\x8c\x4a\xa1\xe4\xcc\x95\x88\x05\x40\x14\x6d\xe0\xb9\x76\x82\x45\x29\xf1\x06\xf1\x9e\xd9\x71\x9e\xe5\x59\xf6\xa9\x40\xca\x39\x01\x92\xdf\x8a\x96\x55\x09\x30\x7e\x0a\x13\x41\x7b\x02\x9a\x3b\x50\xd9\x34\x22\xb8\x79\x8a\xbb\xf0\xa2\x40\xdc\x00\xf2\x81\xcf\xb1\x05\x35\x77\x18\xea\x1d\x5c\x73\x6f\x60\x54\x39\xc3\xf7\xd4\xe9\x5b\x57\x07\xad\xc6\xb7\xd2\x1d\x8f\xdc\x9a\xc4\x07\x6a\x65\xa2\xb6\x55\x86\x90\xad\x69\xd5\xe2\x54\x5c\xf0\xf9\xa3\x5a\x1c\xd3\x8a\x18\x13\xc8\x35\x59\x3a\x73\xc1\x33\x51\x5c\xb1\x51\x6e\x5c\xc5\x0d\x4f\x66\x7e\xb0\xab\x53\xb6\x18\xe5\x37\x1c\x8d\x34\x89\x1f\xa5\x5e\x39\x23\x4d\xfd\x6b\x9b\xb5\x58\x2f\xaa\x7a\xe4\xcd\x9c\x57\x74\x32\x5b\x3d\xfe\x87\x0f\x61\xbd\xda\xd9\xc1\x37\x1c\xfd\x83\x1d\xad\x8e\x5b\xa5\x18\xff\x48\x53\x0b\x38\x2d\xb6\xab\xa9\xae\xce\x6d\x25\xd5\x55\x71\xee\x1a\xba\xac\xf8\x65\xeb\x23\xb2\xad\xa1\x67\xb5\xb8\x32\x79\x05\x93\x4c\xf9\xbc\x72\x7d\x7a\x55\xa9\x76\xee\x05\x53\x45\xb5\x94\xe6\x03\x55\x9f\x9f\x1b\x97\xd2\xa4\x49\xc6\xc2\xf2\x13\x43\x9c\xac\x4d\x59\x15\xff\x58\x2c\x2b\xa8\x9a\xbc\xe5\x48\x90\x51\xcd\x9f\x5d\x14\xfc\x9c\x8d\x7a\xad\x2c\x5b\x76\x94\xf4\x36\x32\xa4\xcc\x87\xc3\xb5\x37\x5a\x6c\xbe\xaa\xf8\x60\xe1\xf9\xcb\x17\x36\x2e\xf1\x94\x5f\xea\x2f\x56\x86\xfc\xf4\xf8\x46\x4b\xcd\x38\x95\x74\x7d\x24\x8f\x49\xcb\x2e\xd5\xb9\x18\x87\xa3\xad\x9c\xf3\xb1\x6e\x8e\x75\x19\xb6\xd1\x0d\x57\xf4\x28\x7c\x49\xca\x63\x9c\x3b\x3f\xe4\xe8\x4b\x2d\xf0\xa7\x9f\x8e\x46\x3b\xdd\xaf\x75\xe2\x31\xce\x7b\xbc\x8a\xdd\xd6\x2c\xc1\xab\x58\x10\x19\x5c\x01\x96\xa9\x95\xec\x09\x43\x1c\x93\x43\x18\x2c\x08\xca\xd3\x3b\x98\x26\xd7\x53\x88\x70\xdc\x33\x99\x09\xca\xc2\x36\x50\x83\x08\x9d\x38\x42\x2d\xe0\x09\x6a\x81\xa0\x2b\x52\x25\xac\xbd\x88\x82\x9f\x1a\xcf\x64\x60\xbd\xd7\x54\x12\x4e\x2b\xb2\xd4\xe7\x3d\x05\x8b\x8e\x60\x66\x2f\x72\x31\xae\xaf\x39\x13\xcf\xeb\x72\x7d\xa5\x25\xcd\x92\x52\xfa\x96\x8d\x2f\xd4\xd5\x12\x66\xf0\x1d\x43\x6b\x8c\xe3\xe4\xf9\x48\x96\xa2\x5a\x81\x38\xb6\x9e\x23\xb4\xa6\x2b\xeb\x8c\x79\x68\x6c\xc1\xd0\x68\x51\x7d\x1c\x61\x3c\xae\x9c\x9d\x32\x1d\x3d\x36\xdf\x3c\x79\xfc\xcf\x6f\xed\xd3\x88\xac\xe8\x3a\xb1\xdb\x5f\xc7\x11\x82\x70\xde\x5d\x27\x7c\x5c\xc9\xf9\xaa\x53\xdd\x9a\xdc\x56\x32\xd7\x2f\x1b\x9c\xa3\x9e\xf7\x98\xb8\xf1\xa7\xc6\x25\x7e\x4d\x57\x84\x07\x63\xdf\xb0\x85\xe8\x70\x02\x18\x3b\x7f\x68\x3e\x62\x0d\x0f\xd4\xfc\xc6\x18\xe7\x9d\xa2\x5f\xbf\x47\xa5\xde\x07\xba\x40\x0c\x44\x73\x49\xd6\x40\x34\x39\xf9\xb5\x40\x9c\xae\x09\xc0\x46\x0d\xa7\x98\xa8\xd8\xe4\x0f\x38\x57\x23\xd1\x3d\xe5\x48\x92\xca\x2f\x3a\xf9\x67\x68\x2d\x11\xb4\xfa\x02\x7a\x2b\xe8\x64\x26\x22\x5a\x2b\x3c\xad\x15\x40\x6b\x5b\xa5\xf4\xd2\xdb\x76\x55\x7f\x8e\xe6\xb6\x4b\xf9\x3c\xdd\x6d\x7f\xb1\x85\xf6\x76\x9a\x17\xd1\xdf\xca\x22\x9f\xc0\x53\x0f\xb1\x2b\xb7\x91\x4a\xb7\x5f\x01\x0b\xa5\x0d\x69\xf6\x85\x64\xba\x8a\xc8\xb4\x05\x46\xa9\x3a\xc0\x28\x5f\xd3\xa8\x16\xfd\xae\x2c\x64\xca\xd7\x74\xce\xc3\x01\xd1\xaa\x79\xae\x97\xa1\xc0\xc4\x29\x2b\x88\xa6\x1b\x2b\xca\x67\x46\x74\x17\xa0\x27\x5f\x6a\xe2\x7f\xa1\x25\xfe\x8b\x36\x25\x75\xbe\xdf\xa7\xf4\xe2\x68\x19\x7b\x31\x2c\xe7\x97\x1c\xad\xc8\xe9\xdd\x5e\x0c\xcb\xb9\xf5\x02\x38\xa5\xa7\xf3\xd3\x14\xd2\x02\x67\xd9\x0b\x66\x8b\x88\x8f\x92\x65\xcf\x51\x72\x3a\x47\x61\x64\x86\x06\xd2\x42\xff\x3d\xc5\x59\xf6\x93\x2b\xa4\x73\x8c\x9c\xda\x97\xa3\xd1\xce\xe9\x17\x41\x58\x2c\x3f\x03\x61\xb1\x6c\x43\xa8\x2c\xfb\x30\x2d\x96\xd8\xf6\xfa\x14\x0e\x9f\x92\x2c\x1d\xe6\xef\x69\x96\x5d\xeb\x06\x2d\xc9\x29\x39\x0b\x0e\xb3\x72\xeb\x89\x54\x69\x1a\xf3\x55\x27\x92\x5b\xd4\xa6\xc2\xca\x98\x7f\xea\xe3\x54\x32\x75\xa0\x94\xa8\x4e\xd7\x8a\xa1\x11\x24\xc3\x01\x7a\xc0\x90\xcd\x85\x7b\x37\x80\x00\x6f\xd1\x2a\xf2\xa2\xa0\xc3\x21\xef\xb8\x79\x2c\x29\x8f\xdc\x3c\x04\x49\xf2\x2c\xc1\xcd\xc3\xfa\xfd\x24\x2e\x1b\x59\xd6\xcd\xcd\x3b\x4e\x1d\x5b\x71\x82\xfa\x81\x80\xd2\x23\xf5\x1b\x43\x89\xdd\xe9\xe9\x84\xcb\x6d\x1c\x79\xd3\x0a\x63\x73\x97\x3b\xc8\x83\xd4\x4a\xd0\x78\x91\xf4\x49\x05\x3f\x19\xa9\x80\xb7\x5c\x9d\xaa\x70\x21\xd6\x45\x68\xa9\xbc\x53\xc0\xe7\x9a\x20\x5b\x02\x0b\x69\x01\x47\x81\x00\x31\x4f\x65\x2d\x80\xc4\x6e\x41\x61\xc0\x51\xa7\x05\x2b\xef\xd7\x60\x14\xb5\x30\x70\x38\xd7\x05\x10\x54\x51\xa4\xb9\x0d\x19\xb8\x0d\x99\xcb\x94\xdb\xc0\xf6\x38\xfd\xc0\x3e\x81\xa7\x1f\xaa\x30\xf6\x65\x87\xe3\xb2\x4a\x11\x0a\xa6\x5d\xe7\x16\x0b\x8b\x56\x75\x02\x4b\xf4\xc3\x74\xdf\xb6\x01\x14\xdd\x45\xfb\x80\x35\xc2\xa9\x77\x2b\x02\xc1\x2a\x9c\x6c\x38\x87\xc1\xc9\x51\xe5\xf1\x30\x64\x3b\xa2\x28\x26\xc2\xcb\x92\x21\x1a\x19\xe4\x4b\xbd\x31\xbc\xdf\x92\xde\x0e\x2a\xd6\x83\xe3\x39\x4a\x7e\x53\x69\x63\x7b\xdb\x9f\x4b\x08\x29\x15\x67\x50\xb1\xe2\xbc\x95\xdb\x08\xba\x32\x8e\xcc\x89\x31\x11\x59\x36\xac\xb2\xcc\x62\xcd\x06\x3c\xe9\xe0\xa1\x00\x9a\xe9\xd6\xac\xdf\xa9\xa7\xee\xaa\xd9\xe7\x70\xf5\x78\x60\xd5\x76\x27\x12\xe7\x08\x14\x79\x3a\x05\x1e\x4e\xe4\x66\xa3\x5f\xbd\x91\x06\xf6\xf6\x69\xb8\x9f\x7f\xa9\xbf\xfa\xb1\x44\x2f\x25\x79\x2f\xc1\x50\xf0\xa5\x24\x4f\x25\xc6\x18\x13\x24\x36\x9b\xaa\x13\xf9\xeb\x5e\xb2\xbd\xac\x1d\xef\xc3\xbc\xc7\x19\xca\xdc\xd0\x74\x65\x7a\x73\x15\x93\xa6\x3d\xf2\xae\x8c\xa9\x4b\xc9\x5d\x4a\x8b\xe9\xa3\x68\x3d\xda\x11\x45\x9d\x75\x89\x83\x05\x88\xec\x87\x92\xf7\xdf\x2e\x69\x84\x58\x8c\x2d\x3c\xfb\xdf\x0a\x64\x28\xbe\xa3\x41\x76\x6c\x43\x08\x3c\x03\x05\xcc\x3b\x4b\x3f\x41\x8d\x6d\x61\xf4\x85\x35\xf9\x5b\x85\x38\xc6\x46\xdb\xd5\x02\x1d\x26\xae\x6e\xef\xc1\x5e\xd1\x65\x3b\x50\x4b\x0b\x4f\x89\x74\xe3\x05\x6d\x5d\xc2\xc6\xdd\xaa\xdd\xc2\x6a\x86\x39\x15\x10\xe8\x09\xc7\x97\x11\xe7\xaa\xbb\xe2\x89\xec\x62\x6b\xc8\xde\xeb\x25\x33\xbe\x91\x76\x0c\xcf\x91\xdc\x82\x97\x2d\x3b\x20\xc5\x44\xc6\xe8\x20\xb2\x0f\x97\x43\xf6\x41\x86\xc8\xae\xeb\xa9\xec\x42\x86\xe0\x7c\x4b\x53\x96\x7d\xa9\xdd\xe6\x2d\x5b\x09\xbe\xb5\x4b\x07\x8b\xde\x6a\xf0\xb2\x45\xe5\xdb\x6d\x5f\xb6\x48\x6b\xda\x8d\x64\x09\x10\x4e\x97\x49\x8f\xfa\x3a\x08\x44\x55\x3f\xe4\xb7\x69\x4b\xf3\xb6\xb5\x35\x31\x72\xa1\x0d\x6d\xcd\xc7\xf1\x4f\x22\x5c\x18\x64\x2d\x02\x86\x1f\x0d\x8e\x5d\x98\x67\x2e\xd2\x41\xa0\x50\x9b\x3d\x83\x97\x65\x96\x59\x0c\xce\xe1\xdd\x9e\xdd\x91\x3b\x94\x38\x01\x44\xfa\xad\xd2\xec\xae\xb1\xaf\x6c\x6d\x0e\xf0\x67\x32\x3b\x64\xe2\xf7\xbf\x01\x0f\xcf\x32\x87\x11\xeb\x93\x0c\x7c\x2c\x8f\x90\x9a\xef\xdc\x47\xa2\xb3\x8f\xdc\xa7\xad\x3d\x54\xc5\x48\x43\x50\x4c\xfb\x50\x70\x66\x44\x40\x3f\x7e\xad\x11\x7e\xd2\x06\x3d\xcf\xb2\xe9\x63\xd1\xa6\xb3\x69\x0f\x41\xaa\x6d\x5f\x2a\xf4\xae\x59\xb1\x3b\xc5\xb3\x04\x89\x7d\x8e\x02\x66\x6c\x1b\xfd\x59\xaf\xfd\x30\x28\xa6\x33\x78\x1e\x40\x65\x97\xb9\xcf\xe9\xd0\xdb\x97\x71\x20\x06\xd3\x15\x7c\x3b\xf1\x03\x1d\x77\x0b\x75\xe0\xdd\x75\xff\xc1\xa1\x43\x4b\x8f\xf0\x32\x41\x89\xf7\xc8\xf0\xbe\x05\x24\x1e\xe0\x64\xe8\x49\x0a\x7d\x4b\xaa\x38\x7c\x88\x59\x84\x15\x95\xf3\x69\x56\x6d\xf6\xf2\x69\x56\xe9\x35\x18\x78\x8f\xe8\x1c\xf9\x52\x8f\x45\x13\x35\x48\x15\xe7\xb8\xb1\x48\x69\xd5\x19\x12\xf4\x50\xc2\x0d\xed\x7b\xb9\xd9\x4c\x87\x94\xf6\x3a\x0c\x18\xf2\x5e\x69\xda\xe6\x32\x44\xb1\x20\x10\xa7\x6d\x9a\x82\x9f\x54\xe6\x3a\x14\x13\x20\x9b\x7d\x65\xda\x2c\x9a\xed\x88\x23\x48\xf4\xae\x8a\xaa\x89\xdd\x28\x1d\x5c\x6d\x14\xcd\xd9\x5c\x4e\xb0\x9e\xbb\x35\x77\x55\x14\x53\x7a\x30\x25\x89\x29\xff\x61\x72\x10\x44\xe6\x24\xd1\x84\x05\x56\x8c\xa5\xa9\xdb\x82\x95\xb7\x0b\x4d\x50\x9b\x92\xa2\x31\x99\x3e\x8e\x2f\x56\xfa\xab\x9a\x6f\xaf\x28\x6f\x77\xa7\x5d\x19\xc6\x4d\x2b\x04\x00\x52\xf4\x9b\x02\xe9\x37\xb8\x1b\x49\x28\xa3\x7b\x93\x7b\xdf\x91\x64\x84\xef\x8a\xb4\x6e\x2c\x7b\x5a\x76\x1b\xf1\x46\x83\x0b\x21\xcf\xd5\x86\x19\x3c\x94\x94\xa5\x17\x87\x87\xe1\xbe\x2b\x61\x0c\x3f\x58\x24\x9c\x70\x81\x75\x9d\x58\x14\xb6\x70\xce\x5d\x0d\x4f\x42\x78\x8f\xd6\xfa\x9b\xab\xf8\xea\xf0\x8f\xa8\x30\xf0\x76\x8a\x8c\xab\x1e\x91\x93\xb6\x53\x6d\xbb\x2d\x27\xc1\x0e\x1f\xcc\x0b\xbf\xcc\x18\x31\x58\xaa\x05\x33\x29\x80\x0f\xec\xb7\x91\x8a\xb1\x99\xda\x00\xed\x5f\x67\x6b\x05\x26\xcf\xde\x68\xa8\x2d\x01\x7e\xf7\x1d\x98\x15\xfe\xeb\x6e\x22\x64\x9b\xed\xb4\x31\xf6\xaa\xe9\x75\x89\x38\x76\xcd\x4f\x5d\x73\x68\x4d\xc4\xe3\x3e\x9b\xec\xb9\xcd\x9b\x24\xf6\x65\xdc\xe6\xc3\x43\x27\x39\x94\xdc\x2d\x25\xac\xf2\xb4\x20\x7d\x28\x85\xd6\x04\xab\x6b\xbf\xf9\x23\x43\xec\x49\x94\x33\xb2\x70\x0d\x74\x22\xa4\xe9\xbc\xce\x0e\x15\x1d\x4a\xfa\x32\x72\x51\xd5\x24\x21\xe2\xc9\xe7\x8e\xff\x8e\xe9\x01\xe2\x5b\x08\x02\xf8\x98\x25\xc4\x27\xaf\x29\xcf\x5b\x89\x8e\xca\xf9\x98\x2b\xd6\xb8\xf0\x46\x76\xae\x8d\xff\xca\xe9\x47\x6e\x2f\x2d\x7f\xe2\xc6\xdd\xe7\x47\x8e\xa4\x61\x6d\xac\x62\xa7\xaa\xf9\x7b\x55\x08\x35\xaa\xf8\x40\x62\x73\xf5\x78\x2b\x75\x4a\x2e\xc7\x69\x16\xc2\xf8\x22\x4e\x3c\xe4\x8b\xc6\x87\x96\x37\x57\x8f\xa8\xd4\xff\xda\x6a\x80\x2c\x2b\xbd\x2a\xa7\x62\xd7\x9b\xcd\x75\xc5\x17\xf5\xb5\x01\xd4\x74\xa5\xe9\x4c\xf1\x6f\xd3\xde\xa5\x11\x64\x97\x63\x51\xf0\x73\xf6\xac\x5e\x73\x85\x6f\x4b\xba\x1c\x17\xbc\xbc\xa8\x85\xbf\xf5\x5c\xfb\xa4\x37\x67\x67\x92\x29\xb2\xa2\xcb\xf1\x59\x5d\xae\x25\x64\x59\xba\x5f\xe6\xad\x01\x48\xf5\x9a\x0b\xb2\xf2\x8f\xd6\xea\xe1\xb9\xae\x84\xc7\xb0\x6e\x46\x9b\x3f\x21\x0b\xba\x3b\x25\x17\xfa\xbf\x53\x3a\x21\x57\x74\x42\x5e\x51\x49\x2c\x60\xbf\xf2\x70\x54\xee\xfe\xf3\xe3\xec\x95\x41\xf8\x9a\x18\xb8\xde\x7d\x4d\x57\x7c\x6d\x9b\x0d\x5a\xd0\xb3\x9d\x35\x26\x3a\xd7\xca\xe4\x5a\xf6\xe4\xba\xa0\x67\x3b\x4b\x4c\xf6\x69\x9c\x9e\x65\xe8\x6c\xc7\xfe\x06\x2d\x8d\x55\xfc\x07\xbe\xf1\x23\x7d\x15\x5f\xba\xcc\xf0\x39\x7d\x45\x5e\xd1\x8f\xb3\x08\x35\xeb\x15\x40\x66\x99\x6e\x82\x3d\xdf\x39\x85\x0b\xba\x9d\x9d\x53\x7b\x9d\xb2\xa0\x67\x98\xe8\xd4\x95\x4e\xbd\xa2\x46\xdd\x79\xa1\x53\xe3\x8a\xe2\xd0\xfc\x56\xfe\x3d\xa7\xe8\x15\x3d\xc7\x11\xd8\x53\xf3\x8a\x7e\x6c\x4a\xba\xab\xb9\x97\xc5\x66\x03\x7f\x2f\xac\x98\x60\x56\xdd\x02\x96\xd9\x85\xe5\x5d\xcd\x2c\x34\xa5\x1e\x42\x9b\x61\x02\x19\x26\x49\x86\xd9\xdf\x38\xbd\x85\x09\x66\x8b\xc3\x25\xbb\xca\x25\xf1\xcb\xf4\x9d\x5e\x39\x79\xd9\x90\x8f\x9c\x0e\xa7\xe4\x37\x49\xeb\xd9\xa2\x06\xeb\xc8\x37\xa5\x87\x9d\x7c\x1e\x83\x59\xfc\xd6\xa1\xfc\xfb\x13\x8c\x67\x2f\x4b\xf4\x9b\x24\xcf\xb1\x2e\xe3\xb7\x58\x2e\x6d\xd2\xd3\xf0\x37\x89\x67\x71\x35\x70\xb1\x4a\x19\x29\x43\x1c\x8c\xdf\xa4\x35\x6d\xbd\xd1\x25\x85\x18\x08\xd5\x19\x9a\x3e\xc8\x6e\x40\x61\xfd\x5b\x0c\x55\x36\x1a\x61\x32\xdd\x7b\x98\xdd\x98\xcf\x0e\xf4\x67\x89\xd5\x87\x2d\xf8\xc0\xbc\xbf\xa6\x07\x80\xd6\x6b\x53\xaf\xb7\xd8\x2b\x5d\xcf\xaf\x0d\x4a\x6f\x7e\x9d\xd0\x0e\xdc\x38\x9d\xf4\x4d\x86\xa6\x7b\x9b\x73\xb5\xf9\xa8\xb0\x35\x00\x39\x57\xb9\x94\xe8\x37\xa9\xc7\x21\xe6\x3e\xfe\xef\xb9\x4a\xb5\xa0\xdb\x72\x91\xa5\x7e\x11\x19\xcc\xe8\x01\x8b\xbe\xfc\xa8\xf2\xd6\x37\x1f\x55\xaa\xcc\xd9\x7b\xd8\xcd\xf1\xb9\x52\xef\xe5\x9f\xc9\xf0\x30\x2f\x25\x92\x64\x4d\x7f\x93\xa4\xc4\xa4\x92\x68\x8d\x9b\xee\x54\xff\xd7\xac\x97\xea\x0c\x5d\xd3\xbf\x71\x72\x00\xa4\x9a\xdc\xd0\xeb\x71\xb4\x9e\x49\x49\xaf\xc7\xe9\x8a\x26\x07\x43\x4a\x6f\x32\xbd\x56\x6e\x52\x7a\x1b\x40\x5a\x07\x0c\x10\x54\xad\x2d\xf8\x10\x0d\xd5\x66\x33\x34\x81\xf5\x8d\x65\x0c\xa4\xec\x83\x36\xd0\x51\x15\x50\x15\x1a\xe7\x60\x1e\x74\xbb\x50\x50\x8c\x83\x98\x8f\x2c\x40\x91\xd4\x27\x87\x9a\x7b\xc0\x22\x89\x38\xce\x87\x43\x83\xf2\x5a\x08\xe6\x5a\xf5\xb6\x96\x95\xa1\xf3\xc3\xa1\x5e\xe3\x5b\x33\x80\x6a\x0a\x37\xa8\xd5\xab\xf1\xc2\x3e\xd8\xcb\x59\x72\x83\xbd\x6c\x5d\x66\xd9\x8f\x1c\xdd\xe8\xa6\x1f\x18\xf3\x3d\xa1\x48\xb0\xf7\xbc\xa6\xe5\x98\xf1\x85\x7e\x7d\x4d\x0f\xfc\x75\x71\x7c\xf4\xdd\xcc\xd1\x4d\xeb\xb8\xa3\x07\xe4\x26\x39\xec\x0c\x22\xc6\x55\xc5\xd1\x35\xb9\x31\x97\x1c\x8e\xe2\xe2\x1c\x5d\x53\x74\x40\x5b\x6d\xde\x6c\x16\xe1\x0c\x3c\xf8\x92\x33\x10\x5d\xd3\xeb\xd6\x31\x48\xd6\xf4\x26\x36\x82\xb0\x75\x12\x19\xda\xe3\xba\xbc\xc6\xa4\xa4\xbe\xdf\xd0\xe9\xb9\xcc\xa3\x6c\x8c\x2f\x74\xa6\xe1\xf5\x98\x7d\x52\x8c\x2f\xb2\x4c\x3e\x29\xe1\xc6\xbc\x24\x25\x95\x44\xd2\xb5\xae\xef\x05\x47\x37\x44\x62\xb2\x32\x4f\x25\x26\xeb\x2c\x5b\x65\x19\xd2\xc2\xe6\x75\x74\x16\x6f\x36\xd7\xd1\x49\x0c\x46\xd3\x7a\xc9\x84\x64\x73\xde\xc2\x8b\x1a\x1e\xf5\x2b\x7f\x2e\x83\x81\xb4\xfb\x20\x3a\x9f\x21\xdd\xe4\xd7\x93\x86\x0e\xe8\x81\xbd\x4a\x80\xa5\x8f\x30\x80\x4c\xc1\x2c\x21\x53\x23\x71\xe5\x63\x72\x6d\xad\x0e\x0e\x96\x4b\xc8\x2d\x11\x26\xf2\x49\x39\x47\xd7\xe3\x62\xb1\x30\x05\x1c\xe8\x6c\x66\x08\x90\x69\x01\xf1\x15\xe2\x1c\x1d\xe8\xe2\x0f\x7b\xde\x91\xa4\x0c\xd0\x58\x1f\xd0\xa3\x63\x38\x4f\xaf\xe9\xcd\x4c\xcf\x5e\xd8\x24\x33\xac\x8f\xb7\xeb\xe8\xc0\x3e\x30\xf8\xf4\x1e\x56\xe7\x9a\x2c\xd9\x99\xca\xaf\xc7\xb2\x14\xf5\x72\xf9\x92\x9d\x29\xa2\xea\x95\x4f\xf8\x50\xaf\x1a\x13\xa5\xa0\x8f\x7a\xdf\x98\x31\xd3\x04\x00\x1e\x80\x6e\x4c\x66\x37\x8f\x0f\x9c\x09\xc0\xcd\xce\x0e\xd6\x6b\xfe\xe8\xe6\x18\x3b\x90\xf2\xa8\x2e\x7a\x3d\xd6\xf5\xeb\xb1\x48\xde\x7d\xa8\x57\xf4\x7a\xac\xea\x55\xf3\x37\x8b\x94\xac\xcf\xce\xe1\x5f\xb9\xe6\x29\x9d\x50\xe1\x8e\x0b\xd2\x3e\xea\x6e\xa8\xe8\x1c\x73\x7f\x74\x8e\xb9\xfd\x07\xd9\x1f\xe6\xdd\x49\x7a\x96\xd9\x83\xe7\x9a\xde\x10\xa4\x8f\x39\xfc\x39\x08\xf8\xe9\x03\xb2\xbf\x47\x0e\x5a\xf8\x83\xba\xe4\x37\xf4\x20\xb5\xe5\xbd\x97\x1d\x44\xda\x86\x40\xc0\x4f\xf0\x9b\x6e\x0c\x7a\x14\x39\xcc\x7f\xa0\x07\x2d\x90\xf7\x03\x03\xf2\x7e\xd2\x82\x26\xfc\xa1\x46\xe6\x0d\x69\xbd\xc1\xb3\x37\x3d\xe1\x99\xd1\x87\x28\x9f\x51\xbc\xbe\xf9\x12\x90\x78\x13\x1d\xf7\x13\x3d\x48\x1c\x06\xec\xa8\x7f\xca\xb2\xd3\x0a\x4d\xc8\x27\xf2\xa6\x65\x71\xa9\x3f\x7a\xdd\xfa\x28\xf0\x0e\xaf\x6d\x24\xcd\xd8\x3f\xe3\xc0\x1a\x4d\xda\x59\xb1\x3f\x13\xdc\x54\xe9\x32\xb5\x21\x24\xdc\x54\xf4\x64\x68\xa0\x81\xaf\x89\x4c\xee\xfe\x0c\x50\xe4\xcb\x64\xd6\xdc\x0c\x65\x59\x32\x79\x40\x2a\x5f\x92\x6f\xb8\x1b\xee\x83\xd6\x70\x67\xd9\xb5\xdb\x15\xad\xcb\xd9\x04\x42\xbf\x0f\x4a\xcf\xd4\x78\xd0\x8e\x90\xa8\xdb\x76\x48\x0f\x7a\xd9\xae\x43\xf3\xfa\x3d\x3d\xdc\xea\x5a\xf2\xde\x64\xf9\x9d\xbe\x8f\x1d\x4b\xec\xcb\xdf\xb3\xec\x4a\xa1\xdf\x5b\x70\x84\xd3\x47\xf9\xbf\x80\x73\xa6\x79\xc9\xbd\x87\x6e\x97\x3d\xa3\x76\x37\xa5\x41\x1c\x9e\x99\xb7\x97\xc9\x98\xfb\xc9\x6e\x43\x76\xff\x42\x2f\x5b\x77\xf0\xbf\xd0\xcb\xa6\x17\x64\x7f\xfe\x0c\xfd\x82\xf3\x67\x9e\x4e\xfc\xd2\xfc\xb7\xf1\x52\x0e\xdf\xe9\x17\xeb\xc7\x59\x19\x51\x21\xa2\x59\x7a\x00\xbe\x97\xd8\x43\x3d\x31\xf2\x77\x49\x55\x00\x6e\x01\x92\x16\xd1\x30\x95\xd6\x49\x7e\xeb\xde\x4a\xfd\x26\x8d\x3b\x14\x70\x1c\xbd\xb0\x25\x59\x86\x2c\xc6\x54\xcb\x89\x5f\xcd\x35\x41\xf9\x9b\x9c\xff\x55\xee\xec\xe4\xc8\xe1\xfd\x30\x9c\xc3\x63\xdf\xf0\xfe\x5e\x66\xd9\xef\x65\x1c\x53\x8b\x08\xe7\x7e\xfa\xc2\x8d\xa0\xc1\xb7\x62\xf4\x27\xe9\x41\xae\x9c\x8e\x2d\xc6\x01\x32\xe2\x17\xfa\xb9\xb6\x2e\x62\x91\x91\xfb\x9b\xb6\x4d\xbc\x27\xe8\x2c\x25\xe8\x10\x70\x83\x99\x4b\xc8\x2c\xe3\x5d\x46\x9b\xa0\xfb\xd3\xbd\x8c\x19\x0d\xef\x66\xf3\xbd\xdc\x6c\xd0\xf7\x70\xd9\xb0\xd5\x77\x13\x74\x72\xdc\x38\x6c\xf6\xcd\xbb\x6f\xa5\xce\xa8\x57\xd0\x23\x2d\x3e\xff\xdd\xfb\xa9\x3e\xfa\xee\xf1\xdf\xe5\xfc\xd1\x77\xf9\xdf\xa5\x53\x0c\x1a\x34\xaf\x9f\x6a\xc4\xc8\xa7\x32\xf6\x7e\xfc\x54\xa2\x78\x11\xfe\xec\x00\xaf\x86\xd3\x99\x29\xec\x67\xf0\x22\x77\xa8\x60\x9f\xd5\x14\xee\x4f\xb1\x0b\x71\xf7\xda\x38\x21\x5b\x25\x0d\x8b\x7c\x7d\x23\xb5\x4e\x1c\xb3\x15\x10\x35\x8c\x92\x11\xfc\x4f\xf4\xc0\x75\x6f\x7a\x9d\x31\xf7\x67\x4f\xc7\xbd\x87\x64\x02\xa6\x73\x12\x4d\xc8\x83\x7b\x10\x27\xc1\xec\x3b\x91\x00\x38\x6e\xdb\x76\x7a\x65\x35\xdc\xea\xe5\xec\xfa\x67\x9d\xe5\xcf\xa8\x87\x09\x7a\x2d\xa9\x02\x7f\x5f\x32\x9c\x84\x11\x7e\x5d\x3a\xf8\xb2\x35\x44\x7b\xa7\x06\x84\x90\xfe\x05\x4c\x62\xe2\x1d\x11\x3c\x43\x1d\xa8\x55\xfc\x2e\xcb\x8c\x57\xb3\x2f\xf8\x65\xd0\xe2\x06\x40\x26\xa8\x0d\x80\x14\xfd\x9e\x76\x7a\xdb\xae\x8b\xa9\xfd\xd2\x0e\xe5\xeb\x12\x71\xf3\x69\x00\x67\x08\x6f\xad\x3b\x6a\xca\x56\xf4\xed\x50\x7e\x37\x6c\xe1\x66\xd3\x6f\xbd\xf4\x85\x5e\x40\x02\x63\x18\x48\x4e\x18\x5d\x48\xf8\xf3\x97\xc2\xb8\x5c\xf7\x0e\x24\xd7\x03\xc9\xbb\x03\x19\x20\x3e\x22\x1f\xd5\x30\xb6\x87\x65\x1a\x00\x99\x45\x7e\x78\xc1\x1c\x59\x8c\x17\x0c\xfc\xab\x15\x26\x00\x0c\xc5\xb2\xec\xbd\x84\x0b\x60\x0b\x0c\xb5\xd9\xc0\xc3\x09\xa0\x95\xb4\xe0\x4b\x00\x60\xe1\x9d\x7c\xfc\xab\x9c\x83\x0f\xf2\x7b\x89\xf3\xb7\x9a\x32\x18\x04\x28\x10\x57\x27\x43\x4b\x54\x5b\x50\x1d\x59\xa6\x1e\x43\xec\xad\x2e\x52\xc7\x1d\x20\x04\xdc\xaa\x8c\xb7\xa8\xd9\x7b\xb4\xf2\x96\xb4\xc6\x8e\xeb\xef\x5b\x8e\xeb\x29\xc7\xe2\xfc\xd6\xc3\xc0\x4c\xcd\xb9\x30\x35\xd2\xf7\x3f\x24\x32\x38\x3f\x84\x59\xcc\xcb\xf6\x9a\x57\x61\xa9\xb3\xb2\x15\xa4\x2a\x40\x66\x77\x03\xc5\xf2\x24\xd0\x51\xdd\x8a\x59\x6d\xd4\xf6\x09\xa7\x34\xa4\xb4\xde\x6c\x56\xb5\xbf\x58\x38\x2c\xe8\x70\xe2\x0d\xd2\xc4\xe3\x10\x4d\x47\xbf\x99\x26\x51\x73\xf6\xf3\x77\xe0\x44\xf3\xba\x68\x3b\x4f\x57\x67\xe8\x2d\xb8\xd1\xdc\xb3\x36\x48\x59\x66\x3d\xc2\xeb\xb1\xb9\x28\x8f\xae\xb0\xbe\xe4\x92\xd9\xd8\x6a\xcd\xb6\xfa\x17\xdd\xd4\x9d\xc8\x30\xcf\x2b\xa4\x62\xcb\xec\x16\xa8\x72\xcb\x40\x88\x99\xdc\xa9\x59\x94\xb1\x65\x9c\xf5\x32\x89\xdd\x68\xf0\x38\xc2\x30\x03\x3b\xbb\x28\x36\x7c\xeb\x26\x2b\xcb\xc4\x13\xca\xe7\xdf\xbb\x28\xc1\x39\xea\x1a\x31\xc4\x16\x00\x3e\x9c\x30\x9e\xfb\x28\xb2\x26\x2a\x53\x8f\xf5\x43\x8f\xcd\x92\xe8\x1f\xd6\x27\x94\x93\xfe\xa8\xe2\x30\xf9\xae\x43\x3e\x12\xfa\xac\x65\x30\x10\x5f\x17\xd6\x9d\xe1\xc8\x32\x54\xb7\x03\xb2\xd7\x21\xba\x2c\xb6\x77\xe6\x71\x8f\x87\x22\xbe\x25\x73\x67\x8a\xef\x7d\x03\x6b\xd0\x2a\x7f\xe1\x39\xf8\xa8\xb1\x6e\x10\xfc\xd8\x6d\xcd\x0e\x82\x89\xc7\x15\x5f\x91\xb6\x62\xf7\xa8\x6e\x42\x12\x73\x1f\x13\xd6\x8d\x04\x7f\x51\x23\x45\xd6\x61\x13\x11\x51\x81\xee\x8d\xd4\xb4\x2a\x1c\xc0\x83\x20\x8c\xd4\x3a\x31\xb5\x36\x25\x5d\x0f\xf8\x3a\x06\xb2\xee\x3b\x29\xdc\xb0\x3a\x68\x03\xf0\xcf\xfe\xe6\x1b\xf3\xd6\xda\xae\x80\x8b\xb6\x71\xfd\x3f\xad\x21\x7e\xb6\xb9\x32\x1a\x4e\x66\xb0\x59\xac\x89\xab\x1e\xc3\xbe\xc8\xd6\x10\x4a\x44\x1a\x58\xea\x80\x9f\x60\x52\x5c\x24\x17\x13\xc5\xd6\xdc\x31\x89\xbe\xc3\xce\x50\x9d\xbe\x1e\xc8\x2c\xfb\xa8\xc7\x48\x10\x09\xb8\x4f\x56\x28\x15\xf4\xa6\x4a\xbc\x29\x6a\x52\x8f\x53\x81\xf8\xfb\xea\x94\x09\xaa\xc8\x89\xf9\x1c\xd0\x75\x14\x7d\x1b\x0d\xf3\x70\x02\x01\x1a\x5c\xc4\x17\x3d\x10\x13\xf2\xde\x67\x30\x73\xe0\xad\x83\xfc\xc5\xb6\x73\x6c\x84\xa0\x28\x49\x54\xb7\x7f\xf7\x82\x09\xf4\x1c\xe6\x6a\xd7\x84\xf1\x3b\xd1\xbd\x5e\x4b\x7c\xeb\x1f\xed\xa5\xab\x3e\xfa\x4e\x4a\x55\x8b\x99\xa2\x0a\x41\x20\x39\xc1\xe4\x7a\xa9\xa8\x72\xa8\xd0\x09\xaa\xf4\x24\x2e\x2e\x33\x30\xb1\x56\x62\x23\xa1\xec\x69\x5c\x0e\x6e\x30\xb9\xb3\x8c\xf0\xdd\x5e\xeb\x3b\xdc\x34\xa8\xc6\x64\x0a\xcb\xc3\xf5\xc1\x86\x13\x74\x19\x67\x1e\xb5\xcd\x27\x11\xb3\x17\x29\x04\x79\x81\x39\x6a\x8d\x4a\xdf\xaa\xf1\x24\xf6\xb9\x3e\x1a\xe7\xd3\x7c\x92\x04\x4a\x63\x71\xa4\x3f\xcd\x3c\x6b\x7e\xdb\x6f\x0b\xcd\x44\x79\x9c\xdc\xe9\xcc\xc2\x9c\xff\xdd\x27\xdd\x73\xe4\x66\x0f\x3a\xc4\xe8\x0f\x35\xaa\x01\xc6\xc6\x73\xd8\x8a\x3e\x8f\x96\x11\x6b\xc5\x27\x9b\xe6\x8a\x3e\xbd\xeb\xbd\xce\xf0\xfb\x5d\x19\xee\xe5\x8a\x3e\x8b\x32\xe8\x16\x18\x92\xc5\x30\x11\x9f\x85\x7f\x9a\x3c\xc0\xa4\x26\xa3\x91\x47\xa0\xb5\x8b\xda\x87\x8b\xf6\x14\xb0\xcd\x19\x90\xe7\x86\xc4\x0a\xd2\x5a\xfa\x00\x12\x5c\xe7\x3f\xd4\x48\x90\x1a\xeb\x16\xd8\xae\x7e\xb6\xc4\xa7\x5f\x57\x22\x9c\xab\x86\x9d\x70\xd6\x9b\xa2\x15\x6f\xaf\x13\xc7\x7b\xcf\xa0\x43\xf9\x58\x21\x3d\x67\xd0\xbc\x1e\xc7\x28\xe6\xe4\xc2\x50\x0d\xd5\xf5\xc3\xd6\x54\x01\x89\x76\x01\xee\x6b\xbd\x7a\x6a\xac\x19\x1d\x12\x9d\xc6\x01\xc9\xaa\x8e\xcd\xea\x5d\x38\x07\xb8\x92\x28\xa8\x12\x68\x2b\x1b\x12\xdf\xd0\x92\x9b\x82\x2a\x52\xd3\x6b\xcd\x82\x61\x52\x3b\x60\x1c\x38\x4b\x00\x9f\xd0\x9c\x1e\xd6\x30\x75\xc6\x67\x38\x92\x0c\x69\x1c\xbe\xeb\xff\xc2\x9d\x5d\x12\x65\x0c\xa8\xe1\x7b\x37\x29\xdc\x72\x6d\x9e\x0e\xb6\x96\x8c\x8f\x7c\x6e\xd8\x38\x27\x26\x66\xd9\x9b\xc2\x78\x47\x6f\x9b\xf6\x6a\x7b\xe0\x16\x63\x0d\xeb\xa2\x50\x09\xc6\xc9\x5f\x38\x2c\x82\xb9\xb4\x11\xf0\x3d\x2a\x0c\xbc\xe8\x9a\x82\x4f\x1f\x60\xf2\x8b\x89\x64\xbe\x9d\xb3\x9c\x77\x99\x81\x6d\x3c\xa5\x72\xd6\xb8\x76\x5c\x64\x72\x34\x60\xa2\x9c\xd6\x30\x62\x4a\xe2\x61\xe0\x3d\x01\xe1\x3d\x4f\xd7\x8a\xe1\xfe\x19\x76\x14\x86\xb4\x0f\x1c\x80\xcd\xdd\x8c\xbf\x4c\x16\x42\x1e\xcf\xa5\x3b\xcc\x1c\x9d\xf9\xec\xee\xfc\xfd\xeb\x76\xe7\x77\xae\x44\x5b\x69\xbb\xa9\xad\x16\x04\xeb\xfc\xbb\x3e\x0b\xeb\xa0\xd3\x83\x49\xce\xf2\xdb\x88\x65\x1b\x9f\x58\x04\x80\x6e\x4f\x64\xc7\x85\x05\x58\xf9\x8a\xd6\x96\x7d\x77\xa7\xb7\xf4\x51\xe5\x6c\x4c\x00\xa7\xaf\xab\xe8\x0f\x02\x95\xa4\xc2\xf3\x49\x3e\xd9\xf4\xc7\x13\x18\x9f\x94\xc5\xb2\x5c\x2f\x0b\xc5\x8c\xa3\xdd\xe2\x69\xa5\xe4\x7c\x4b\x3a\x94\x96\xc7\xf2\xb6\x51\xae\xfb\x1e\x53\x1a\x6d\x83\x2c\x1b\x46\x02\xd8\x6d\x4c\x5f\x3c\x68\x87\x57\x64\x70\x1f\x5a\x4e\x79\x44\x03\xe4\x00\x3d\xa8\xc2\x4e\x00\x2d\xad\xaa\x6e\x49\xcb\xc4\x3c\x3b\x92\x12\x97\xf8\x56\xd2\xd2\x8e\xbb\x53\x92\xac\xe9\x32\xb1\xc1\x76\xe5\xad\x8d\xaa\x64\xed\xa1\x18\x40\xf8\x07\x51\x67\x3d\xae\x4f\x25\x13\x1f\x4d\xdf\xb3\x0a\xe3\xdb\xa9\x03\x5d\xca\x32\x84\xd6\x9d\xe8\x0e\x00\x09\x54\x12\x70\x3e\x6e\x43\x72\x73\xe8\x4f\xdb\x1e\x3f\x08\x43\x6b\x5a\x46\x36\xfd\x59\xb6\xee\x2b\xa0\x9d\x08\x05\x54\x7e\x9c\xf4\x82\x6b\xdb\xd0\xc3\x77\xed\x44\xea\x55\x24\x6b\xba\x36\xf1\x55\xcd\x54\x48\x3a\x9d\x84\x3e\x1a\xf4\x98\x28\xf8\xaf\xa6\x66\x6e\x64\xc3\x80\x4b\xec\xa0\x39\x68\x19\x54\x53\x92\x96\x91\x69\xae\xb9\x84\x81\xd0\x23\x32\x32\x42\x8a\x25\xad\x92\x46\x76\x99\xb7\x7e\xee\x3d\xec\x87\x2e\xd0\x7c\x14\x85\xa6\x2b\xa9\x6c\x1a\xbb\x0d\xeb\x74\xe7\x6d\x39\x02\x1e\xb9\xcd\x5b\x3b\x2a\x22\x8c\xb7\x4b\xbc\xfd\x70\x28\xca\xc9\x3c\x82\x0a\xcd\xe8\x55\xa8\x26\x55\x70\x2c\x8a\x97\x08\xee\xc8\x40\xdb\x69\x99\xa7\x9f\x15\xf0\x63\xae\x29\xad\x56\x90\x67\xb6\x67\xc4\x64\x33\x99\x2a\xcb\x34\x79\x85\xa8\x29\xe9\xd2\x11\xa3\x9e\x92\xe2\x0f\xbe\xfb\x3c\x19\xfd\x0c\xf5\xfc\x97\xc4\x06\x27\xc2\x81\xf4\x36\x47\x8c\x0e\x27\x04\x24\x37\x9c\x43\xa0\x28\x37\xde\xd7\x86\xa5\xa9\xb1\x13\x89\x40\xc0\x69\x09\x44\x2c\x74\xcb\xcf\xab\x17\xeb\xdb\x71\x5c\x23\xbb\x73\x10\x40\x7e\x37\x76\x56\xe4\x99\xb5\xb7\xf2\x6a\xb0\xcb\x08\xed\x10\x62\x8f\xe8\x16\x33\x02\x8f\x97\xec\x86\x72\xf3\xe8\x7d\x01\x20\x3c\x09\x9c\x65\xf0\xe8\x88\x16\xe4\xf1\x22\x9f\x29\x48\x8f\x26\x3c\xc5\xc3\x6b\x7a\xa4\x53\x2b\xbe\x60\x9f\xb4\x90\x6f\xca\x39\x8b\x5e\x25\x61\x75\x95\x49\x4b\x1c\x54\x20\x25\x95\x78\x21\x29\x76\xc7\x48\xf2\x44\x4e\x3f\x26\x5d\x37\x53\x98\xe7\xc0\x7f\xbd\xb2\x75\xc5\xde\x03\xfa\x77\xe2\x0d\xa5\x13\xda\xda\xf3\x30\x2c\x6d\xac\x4f\xa8\xa0\xa3\xd7\xd0\xa9\xe9\xe2\x09\x8a\xc9\x5f\xa2\x19\x71\x4c\x0b\xbb\x8e\x27\x2a\xe4\x05\x21\x2a\x98\x07\x81\xb4\xb4\x12\xb5\xaa\x2d\xde\xd8\x90\x8d\x2b\x69\xa2\xbb\x38\xbd\x74\xf4\xf5\xd3\x96\x0a\x34\x5c\x8c\xa6\xcc\x12\x9f\x23\xc4\xa9\x6e\x97\x5e\x1d\x44\x8b\xa0\x97\xec\x86\x30\x0b\x49\x97\xcc\x2f\x4b\xa5\x6e\xb3\x0a\x98\x55\xda\x44\x4b\x84\x25\xa1\x85\xc3\x58\xb0\x34\x16\x33\xce\x11\x6f\x2f\x07\x9e\xce\x18\xef\xcc\x06\xef\x3a\x98\xf1\xb6\xe5\x3c\x26\xfd\x81\x16\x7a\xcd\xd6\x49\x27\xc0\x44\xdb\xf4\xdd\x95\xe6\xbe\x6f\xbb\x08\x77\xa2\x6b\xb7\x7c\x53\x3b\x51\xb6\x13\x5f\xa3\x34\xba\x15\x04\x55\x48\xdc\xb7\x78\xaf\xfb\x96\xea\x77\xdf\x6a\xb3\xd6\xa9\xfb\x96\xda\xea\xbe\xa5\x62\xf7\x2d\xe2\xa5\x92\x10\xf3\x8b\x70\xbb\xa7\x99\xf9\x6b\x50\x93\xe0\xc6\xe6\x2c\x8e\x1a\xf5\xd6\xaf\x64\x4d\xec\x5d\x98\x45\x08\x59\x23\x28\xeb\xbd\x2e\x65\x18\x56\x3a\x04\xc6\x8c\xdc\x2a\xbb\x00\x03\x0c\x4b\x7a\xdf\x19\x35\xa7\xe1\x14\x07\x6f\x1d\xd5\x7c\x57\xba\x28\x1b\xfa\xd0\xab\x49\x45\x94\xa5\xac\x3f\xe5\x92\x3e\x24\xf5\x86\x7e\x17\x0b\xf5\xef\x5c\x6a\x12\xee\xfa\x57\x5b\x1c\x62\x7a\x6b\x4c\xf7\x08\x27\x8a\x3c\xdc\xd4\xad\x0d\xf1\x2b\x31\xab\x1f\x1e\x5a\xab\xa8\x22\x16\xc7\xee\xfb\xb4\xac\x7d\x28\x4b\x97\x04\x5f\x7e\x4f\x92\x5d\x65\x7e\x6f\x29\xe9\xe7\xb4\xa4\x47\xbe\xa4\xb8\x80\x9f\xfb\x0b\x70\x3a\x09\x3d\xb2\x1d\x8d\x66\xac\x99\x71\x03\x1b\x29\x2c\xa1\xf2\xdf\x72\xcd\x54\xa5\x10\x7d\x2f\x72\x49\x1f\xa5\x49\x3f\xea\x6c\xad\x50\xbd\x7f\xd7\x69\xf7\xd2\xb4\x1f\x72\x88\x3d\x25\x52\x4b\xee\xd6\x49\xb7\xef\x1d\xf9\xd8\x9c\xe5\xae\xb1\x91\x0a\x05\x29\x3d\x12\xb2\x77\x20\x98\xd3\x61\x89\xae\xab\x5c\x15\xe3\xb6\xbd\xeb\x10\x65\x33\xc0\xdf\x11\x46\x04\x51\xba\xd8\xb6\xfb\x69\xe4\xe7\xf2\xab\xbf\x86\x8b\xbf\x7d\x60\xef\x8e\x3e\xfb\xf9\x6f\xed\xcf\xa1\x47\xf7\x3c\x73\xe2\xd7\xf2\x3c\x3c\xe6\x47\xc7\x96\x4c\xf7\x96\x1e\x2b\x68\x6f\x13\x31\x36\x6f\x07\xd8\x75\xe8\x6c\xae\x60\x68\x72\x75\xb5\x32\xc3\x08\x85\xe6\x6c\x9c\x26\x34\xf1\xd8\xbd\xf0\xcd\xf7\x0c\x86\x3d\x67\x53\x94\x3c\x13\xf9\x2c\xaa\xda\xf1\x21\x01\x20\x34\xe6\x0e\x5c\x83\xa2\xaf\xb7\x5e\x09\x26\x6f\x83\xaf\x8e\x69\x4f\x1b\xdd\x38\xa9\xc4\x8a\x4a\xbe\x71\x0e\xa0\xce\xe4\x72\x41\x3f\x2d\x97\x94\x86\x0c\xf1\x9c\x03\xc0\x61\xc7\x9d\xec\x71\xda\x09\x7c\x47\xe4\xaa\xe2\x13\xa3\x9b\x51\xcf\x7f\x74\x5d\x6c\x7c\xf6\xd4\x91\x26\x34\x64\x5b\x7a\xec\x01\x14\x5d\xf9\xff\xd4\x87\xed\x9d\x94\xe1\x41\x12\xfb\x5c\x81\x00\x37\x80\x67\x19\x7f\x62\x20\x20\x69\xb4\x26\x7e\xfc\x6c\xd1\xa4\x37\x36\xc4\x8c\x3f\x56\xdb\x1c\x86\x14\x26\x48\x3c\x51\x9b\xcd\x04\x7c\xb5\xbc\xf3\x4f\x27\x97\xfa\x62\xa7\x22\xf5\xe5\x4e\x45\xa1\x6f\xdf\xdb\xbe\xa9\x27\x5d\x23\xa2\xd0\xf6\x78\xcc\x55\xec\x95\xd6\x19\x63\x3b\x8c\x48\x3d\xa1\xfc\xdf\xe1\x87\xa5\x9e\xf4\x7d\xb0\x6d\xb8\x76\xa6\x98\xe8\x9e\xf4\x96\x76\x47\xa4\x0e\x15\x5f\xb6\xff\xdc\x9a\xee\x76\x24\x02\xd0\xe2\x70\x17\x47\xac\x67\x7c\x63\xb6\xf5\xef\xbd\xfc\x83\xf2\xe0\xa5\x0c\xee\x77\xf1\xad\x02\xfd\xd3\x8d\x42\x9c\xf2\xbe\x1b\x28\x6c\x62\x9e\x81\xee\x11\x44\xa5\xb6\x47\xde\xc4\xda\x00\x95\x94\x6f\xc5\xb1\x2d\x63\xb8\x59\x47\x21\x66\xce\x1d\xc7\x6a\xda\xab\x33\x74\x5a\x23\xa3\x62\xd0\xf2\x7e\xf2\x4d\xcb\x5a\xf4\x95\x65\x03\x5f\x31\x71\xce\x16\xcf\x22\x4c\x74\x57\xea\x5d\xf8\xaf\xb3\x76\x1f\xa6\x26\x9c\x44\xcb\x02\x66\x49\xb9\x47\xc1\x3c\xad\x01\x1d\x8a\xd3\x8f\x35\xe2\x64\x49\xca\x48\x67\xc5\x69\x69\x94\x25\x9c\x2e\xeb\x96\x54\xa0\x5c\x6f\xe7\x2a\x50\xc6\x5c\x75\xd0\x3c\x89\xa2\x15\x41\x35\x2d\x2b\x10\xa9\x71\x37\x38\x29\x6b\xa2\x7b\x72\x7f\x1d\x6a\xd9\x57\x65\x2e\xa1\x7d\x10\x4e\x85\xc9\xba\x42\x12\x84\xf3\xd2\x80\x62\x89\xb0\x36\x7e\xe8\x80\xf7\xfb\x75\x41\x2a\x63\xb0\x51\xd0\x57\xd5\x58\x5a\xa8\x64\x6f\x58\xe6\xbe\xab\xe9\x3f\x24\xaa\x48\x4d\x0a\x4c\x8a\x44\xd6\xfa\xab\x0b\x3a\x66\xc4\x2c\xa7\xec\xb3\x2a\xbc\xd8\x33\xd4\xb3\x47\x5d\x5b\x5b\x8f\xe9\xe5\xc0\x65\xdb\x76\xb5\xa1\xbe\xbf\x45\xce\xb1\x77\x87\x3b\xd4\xdd\x4a\x22\x1e\xaa\xc7\x54\x95\x59\xb6\xbb\x6b\xcf\xd9\x93\xb6\x32\xbd\x74\x27\xf0\x89\xa8\x6b\xe5\xce\xd9\x13\x37\xc8\x56\xc0\x3e\xe1\xe9\x69\x77\x72\x51\x48\x7f\xea\x9a\x94\x45\xb5\x70\xd1\x19\xc0\xb4\xc4\x14\xd3\x3d\x99\x4d\xfc\x07\x1a\x1b\x94\x7d\x53\x22\xcb\x11\x44\xf5\xc6\x5f\x40\xd1\x57\x95\x0a\x05\x43\x28\x08\x9d\x92\xfe\x34\x6e\xc2\x10\x56\x35\x14\xff\x97\x96\xe9\x93\x96\xa1\x1d\x27\x62\x2f\x38\x00\x4a\x07\x36\x86\xbb\xed\x21\xb5\xe6\xac\xf6\x89\xb7\xa0\x26\x26\x88\xda\x77\x26\xa6\xda\x7c\x3f\x9f\x78\x27\x65\x11\x85\xc2\xaa\x23\x76\x4a\x10\x76\x54\x88\x63\x2a\x42\x78\x00\xa3\x65\x8d\x1c\x7b\xc2\xcc\xbe\xd4\xcf\x33\xd9\x17\x5d\x98\xe3\xdb\x43\x6e\x6d\xd9\x1a\x8c\x49\xf9\x05\x99\x1a\x00\x75\x62\x91\xe3\x4f\xce\x5a\xde\x9c\xf1\x76\xf9\x47\xca\x9a\x9d\x54\x96\x08\xbd\xd3\xab\xc2\x8f\x60\xc8\xcf\x96\xf6\x68\xdb\x92\x7b\x8f\xc4\x84\x5a\x2d\x13\xed\x04\x33\xb4\x96\x45\xfe\x14\x8f\x5a\xbf\xa7\xed\x0c\xe8\x61\x92\xb0\xd9\x8c\x06\x40\x2d\x77\xaf\xea\x35\x57\xbb\xab\xba\xe2\x6a\xd7\x69\x28\x07\x23\x9f\xf9\x67\x03\x84\x16\xda\xc2\x97\xe1\xd0\x70\x76\x14\xee\x54\xd0\xed\x7f\xe6\x18\xcf\x59\x00\xf1\x2d\x68\x95\x76\x72\x9b\xad\x60\xed\x0e\xa1\x7a\x56\xc7\x51\x82\x8d\xe9\xe9\x5f\x4b\x54\xe0\x99\x61\xfb\x20\x9e\xcb\x0f\x25\x52\xa4\x20\x10\xae\xc6\x5d\x3f\x6e\x69\x0d\x4d\xc3\xb2\x54\x67\x48\x6d\x36\x48\xd1\x21\x1a\x22\x45\xd9\xbc\x3d\xdb\x6d\x2f\x2b\x87\x51\x00\xdb\xd6\x98\x1b\x99\x59\x50\xd1\x98\x0e\xd5\xf8\xa2\x90\x11\xaa\xdc\xa2\x50\xc5\x2e\x34\x46\x93\x87\x11\xc6\x98\x0c\x0d\x36\x11\x1c\xe0\x33\x77\x84\x43\xa9\x33\xcc\x12\x9c\x50\xee\x77\x08\x84\xce\xd6\xcb\x62\x42\xd4\xfc\xd6\xee\xb1\x7c\x38\x69\x1c\x72\x60\x83\x34\xa1\x26\x9d\x71\xee\xd5\x01\xd4\xee\xf2\xe7\x8e\x41\x2e\xc3\x20\x9f\x95\x28\xb6\x49\x8e\xc7\x3c\xc4\x77\x85\xaf\xa2\x48\xa5\xcb\x98\x4d\xd9\x7b\x5c\x88\x73\x18\x4c\x69\xfd\x71\x22\x3b\x1a\xff\xea\x68\xef\x78\x1e\xff\x30\x16\x35\xfa\x98\x50\x4b\xa4\x3a\x37\xde\x13\x4d\x9f\x6d\xed\xfd\x46\x81\xfb\x5f\x56\xed\x7e\x5c\xed\xbe\xad\xd6\x14\x7c\xeb\xc4\xf2\xfc\x29\xb9\x64\x26\x44\x3e\xa5\xc2\x9c\xa7\xa3\xd1\x8e\x20\x5e\x4a\x64\x24\x15\xfe\x54\x5b\xb2\xe3\x4d\x63\x9a\x67\xee\xd7\x1b\xc6\x3a\xb6\x8c\xce\x7e\x2b\x45\x3f\xac\xce\xd0\x4b\x86\xac\x6d\x0f\x1f\xf3\xe2\x8a\x91\x91\x28\x16\x55\x3d\x32\xbc\x08\xec\x6f\x43\x88\x6d\xd0\x13\x4e\x4d\x94\xef\xe0\x7f\xa5\x39\xb7\xe8\xb7\xc9\xc4\xc7\xbf\xaf\x99\xb8\x31\x2e\x76\xb5\x38\x58\x2e\x91\xa9\xf4\x48\x57\x42\x47\x3b\x7f\x79\xff\xe6\xf5\xd8\xa8\x86\xaa\xb3\x1b\x34\x1a\xed\x28\xbc\xf3\x1f\xc7\x47\x20\xe9\xdb\x36\x1c\xff\x87\x6e\xd7\x64\xa6\x1e\x73\xe7\x6c\xa5\x76\x76\xfc\x61\x71\xa4\x8e\x41\x1f\x65\x74\xff\x42\x13\xde\x2b\x03\x68\x52\x8b\x2b\xc7\x5a\xac\x05\x12\x60\xbe\x30\xac\x5b\xd3\xfc\x48\xcf\xf2\x1b\x86\x04\x26\x2f\x19\xb0\x3d\x89\x63\x48\x04\xff\xf8\x9c\x21\xd6\x06\xd2\x76\x90\xa5\x06\x91\x51\x79\x44\x46\x00\x59\x64\x29\xc8\xa2\x22\xc3\x29\x6e\x1a\xf2\xb7\x32\x28\x7e\xad\x69\x59\xdb\x1c\x67\x18\x9d\xc4\xed\x65\x79\x1f\xd8\x86\xce\x21\x3f\x9c\xb4\x8f\x74\x66\xed\x99\x02\xf7\xd0\xda\xba\x8e\x33\x68\x29\x19\xcd\x01\xfc\x4d\xd9\x66\xb8\x4c\x10\x0e\x73\x25\x1e\x4e\x74\x7d\x48\xa5\x5d\x52\x17\x8c\xb7\x3b\xd4\x61\x41\x30\x43\x49\x80\xd6\x16\x77\xe1\x7c\x91\x0c\x58\x7f\x9b\xf5\x38\x3a\xc6\x44\x19\xff\x3e\xd6\x19\xd1\xd2\xf0\x1d\x1d\xb2\xb3\x75\x18\x54\x1a\x0b\xab\x35\xfc\x1e\x87\xb0\x0d\x03\xb2\x77\x7f\x6a\x2c\x62\x3a\x73\xe1\xa8\x52\xdf\xe8\xc2\x07\x9a\xa8\x6b\x16\xe8\xb6\xf3\x69\x96\xa1\xfe\xef\xa8\xea\xcc\x93\xbd\x8d\xd1\xeb\x07\xa5\x53\x8f\x71\x14\x8c\xcd\x58\x82\x52\x35\xab\x6d\xb5\x33\x2c\x34\x1f\x44\x6b\xc3\x35\xc6\x81\x96\x7b\xbb\x28\x2c\x77\x69\xf3\x93\x88\xe1\x54\x24\x1e\x3a\x28\xbd\x09\xb3\x6d\xf8\x48\x30\xfc\xf8\xac\x1b\xc7\xde\xfd\x7d\x8c\x67\x3f\x27\xc1\xdd\xc0\xb1\x41\x45\x0c\x2e\x69\xf3\xba\x41\x16\x49\xdb\x81\xb3\x4c\xb5\xc6\x55\xf9\xa1\x8a\xc6\xc9\x5a\x2d\xf6\x72\xd0\xae\xf9\xad\xe5\x15\x05\x39\xa3\x69\xf4\xb6\x61\x77\x91\xdf\xf6\xb0\xde\x93\x59\xbc\x1e\xc3\x8a\x8f\x0d\xca\xdd\xec\x19\xb2\xc7\x62\xb2\x87\x26\x84\x1d\xa9\x63\x8c\xf4\xc2\xff\xe6\x6b\xf6\x9d\xde\xac\xff\xce\x5d\xf7\x4d\x77\x58\x5a\x1b\xaf\x3d\x28\xba\x05\xb7\x1d\x91\xe1\x5f\x1c\x10\xa7\xa9\xb0\xe7\x40\xe0\x47\x02\xae\x2b\x6f\xeb\x0b\x1e\x4d\xc1\xda\x86\xeb\x41\x6c\x08\x5b\x76\x09\xf2\x3f\xee\x24\xd2\x81\xf3\xe8\xb2\xd7\x1d\xfa\x79\xb7\xc0\x2c\x8c\x4d\xa9\xc2\x04\x04\xe2\x2d\x04\x36\x69\xe2\x9a\x03\x4b\x9d\xb6\xd1\x25\x76\xe5\x96\x9e\x26\xf2\x2d\x4d\x64\xa1\x89\xd6\xae\x42\x1f\x65\xdc\x34\x91\x41\x13\xed\x3d\xb7\xbd\xaa\x8b\x5a\xc9\x5b\xad\x34\x5e\xe4\x66\x43\x76\x88\xb1\xae\xfe\x6f\xa5\x11\x04\x81\x00\xb7\x89\xdb\xb6\x91\x6d\x51\x6a\x4f\xb8\xe2\x17\x70\x33\x19\xf6\xb3\x59\xf0\x96\x21\xd1\xbf\x63\x77\x9a\x6e\x8c\x43\x83\x8f\x29\xa8\x25\x7b\x33\x57\x94\x88\x62\xc2\x23\x6e\x13\x99\xe7\x4f\x59\x43\x0a\x46\xd7\x25\x91\x8c\xae\x4a\x52\x32\x5a\x96\x64\xc9\x7a\x17\x8d\x05\x12\xda\xfb\x9a\xe8\x81\x06\x11\x6a\x49\x6f\xcd\xb8\xbe\xad\x85\x2a\x96\xb9\x58\x92\xb3\x8a\x2f\x9e\xbf\x79\xa5\xb9\xae\xbc\xb5\xfb\xed\x65\x0b\x66\x61\x1c\x06\xd5\x19\x4a\x25\xb7\x00\x11\xd6\xa3\x78\x0b\x16\xbf\xc6\x4a\x66\x9b\xa9\xb0\xdd\x22\xed\x7d\xf6\xf0\x21\x6e\xeb\xb9\xf6\x1e\x3c\xc4\xe4\x0d\x5c\x59\x8d\x2f\xd9\x8d\x44\x5a\xf6\x63\xee\x22\x14\x31\x7a\xad\x34\x2f\x6e\x57\x5f\xa4\x6e\x09\xe3\xec\xc4\x93\x36\x77\xfb\x45\x9c\x3c\x5f\x7a\x94\x32\x32\x9c\x68\x3e\x99\x98\xb6\xff\x1b\x8a\x9b\x42\x71\xde\x0a\xc7\x94\xfb\x7e\x7d\xaa\x04\x63\x2f\xb8\xaa\xbd\xac\xd8\xaa\x8b\x08\x5f\x1b\xef\xaf\x2d\x4c\xe6\x66\x13\xb6\x68\xaf\xaa\xb4\x65\xa6\xfc\x30\x69\xab\xa9\x6e\x38\x25\x02\x1a\x0a\x24\xc3\xdb\x1b\x1c\xa8\xbe\x45\x34\x04\xdd\x40\xab\xd8\x7b\x61\x08\x86\x43\xd6\x27\x0e\x67\x19\x6a\xc9\x75\x6e\xa8\xec\x78\x0d\xa7\x89\x27\x6a\x6f\x21\xc6\xde\x02\x83\x4e\x65\x38\x89\xc7\x36\xd9\x05\x5d\x87\x56\xb1\x1c\x17\xab\xd5\xf2\xc6\x2e\x5e\xe2\xe5\xaf\xb8\x8c\x53\x4d\x2c\x98\x85\x07\x90\xf9\xba\x0c\xaf\x80\xec\x14\xa5\xaa\x3e\x32\xf7\xba\x3b\x65\xb6\xae\xb2\x44\x98\x44\xa1\x48\xa3\x1a\x16\x95\x2c\x05\x53\xbe\x8c\x55\x54\xc5\xd9\x72\x2d\x2f\x9e\xb7\x32\x94\x25\x81\xf4\xf7\x37\xbc\xcc\x3b\x0a\x85\xcf\x31\x51\xd3\x87\x01\x35\xaf\x2f\xb0\xaa\x01\xeb\x4b\x22\xa1\x46\x51\x50\x21\x0c\xaf\x21\x36\xed\x71\xd6\x93\xd2\x6d\x4e\xef\xca\xd8\x7b\xf4\x08\x93\x51\xcf\xf7\xa3\x44\xd9\x60\xd5\x53\x9d\x9a\x74\xc7\xff\xfd\xb5\x81\x6a\x63\x9a\xd6\x07\xe3\xac\x57\x9a\xa8\x97\x4b\xb6\xc8\xbb\x07\x67\x32\x84\x76\xec\x52\x1a\xad\x52\x1a\x4d\x4e\x4e\xde\x1f\x3e\x7b\x77\xf8\xe1\xe4\xc5\xeb\x0f\x87\xef\x5e\x1f\xbc\x7c\x7f\xf2\xfc\xcd\xc9\xeb\x37\x1f\x4e\x7e\x7a\x7f\x78\xf2\xe6\xdd\xc9\xdf\xdf\xfc\x74\xf2\xcb\x8b\x97\x2f\x4f\x9e\x1e\x9e\x7c\xff\xe2\xdd\xe1\xf3\xfc\xf6\xf0\xa3\x5e\x97\xf9\x51\x29\xc8\x52\x90\xb5\x20\xef\xc7\x15\xd7\xe4\x11\x5e\xbc\x5d\xae\xcf\x2b\x2e\x9f\xde\xbc\xd6\x52\xf9\x19\x79\xa9\x12\x87\x96\x4f\x88\x91\xd7\xba\x5b\x35\x23\x15\x23\x6f\x38\x39\x24\x1f\x4a\x72\x6b\xf5\x99\xf9\x70\xda\x1c\x37\xcd\x6c\xd8\xed\x1c\xb8\x5e\x2e\x80\x64\x3c\xbd\xf9\xb1\x96\xea\x85\x1e\x18\x5e\xb2\x19\x6a\xfb\x86\xac\xf9\x82\x9d\x55\x9c\x2d\x22\x8a\x7f\x72\xf2\xee\xf0\xe0\xd9\x87\x93\xe7\x87\x3f\x7f\x78\xf3\xe6\xe5\xfb\x93\x1f\x5e\xbe\x79\x7a\xf0\xf2\xe4\xc7\x37\x6f\xfe\x7a\x72\x92\xba\x74\x2b\x7a\x77\x6e\x90\x89\xc6\x95\x7c\x5e\x49\x3d\x33\x0b\x50\x73\xc9\xf5\x6a\x55\x0b\x25\x0d\x51\xb3\xe5\x4d\x66\xc1\x63\x5b\xd9\x61\x42\x0c\xcf\x7e\x2f\x13\xbe\x47\x67\x52\x63\xc7\x9a\x40\x09\x7a\x4d\x80\xee\xd5\x12\x84\x07\xf7\xf4\x69\x03\xde\x78\xce\x47\x3c\x78\xe5\xe1\xe0\xb5\xdd\x34\xe4\xd9\x67\x0b\xff\xc9\x10\x52\x5d\x7e\xf2\x69\xfc\x8c\x11\x84\x2a\x61\xe4\xb6\xfe\xc8\x84\xa8\x16\xec\xc7\xba\xbe\x7c\xef\x3d\xbb\x88\x4b\x8e\xcd\xf7\x99\x72\x81\x22\xcd\x9d\xb7\xb0\xe9\x9a\x6c\xad\x97\x96\x6a\x98\x34\xdb\x8b\xe7\x95\x5c\x01\x59\x13\xef\xd8\x59\xfe\x6c\x6c\x2c\xca\xda\xef\x80\x69\x88\x27\xfd\xe9\x0d\x74\x24\xd9\x04\xe9\x1d\x92\x39\x99\x59\xdf\xc9\x4c\xb6\xac\xa4\xbe\xd2\xd4\x5c\x17\x02\x4d\x6e\x3a\xad\x90\xdf\xd7\xba\xd9\x82\xc9\x8b\xb4\xa3\xfd\x89\x9a\x4c\xb8\x71\xb2\x39\x92\x61\x3a\x67\xae\xe7\xa6\x73\xee\x30\x41\xb7\xdb\x1a\x2c\x05\x39\x5d\xeb\x12\x34\x63\x94\x4f\xc8\x47\x26\x64\x55\xf3\x7c\x34\x7d\x30\x9e\x4e\xc6\x7b\x23\xcb\x2b\x30\xf1\xb6\x28\x2f\x8b\x73\xa6\x77\x65\x3e\x32\x7a\xee\x45\x7d\x35\x6a\x0c\xf9\xad\x96\xf4\xd6\xdd\x1f\xd5\xcb\x86\x14\x4b\x5a\x2d\xb3\xac\x5e\x6e\x36\xd5\x72\x06\x16\x3d\x7a\x6d\xd3\x62\xe9\x7c\xc5\x36\x9b\x42\x0f\x48\x8b\x05\x19\xad\x25\x1b\x48\x25\xaa\x52\x8d\xa2\xcf\x38\x9a\x4e\xee\xe1\xcf\x64\x07\xe9\x1f\x4c\xa6\x0a\x02\xc2\x94\x65\xba\xcc\x5e\xf6\xa1\x53\x14\x19\x9d\x9c\x30\xf9\xaa\xd6\x43\x3a\x72\x81\x74\x86\x93\x06\xe8\x6a\x77\xe3\x1b\x30\xad\xd8\xa7\x3e\xc8\x59\xaf\x98\x94\xc5\x39\xd8\xe6\x73\xb6\x74\x4a\x60\x98\x8b\xa5\x0d\x70\x46\x23\xc0\xb4\x18\x2a\xbf\xc4\xf1\xce\xf6\x44\x9a\xd7\xd7\x08\xcf\x4a\x04\x9c\x1a\x71\x10\x85\x6e\x57\x99\xb3\x40\x32\xf5\xc1\x18\x86\x20\x46\x26\x5a\x5c\x6a\xc8\x8a\x3e\x2f\x94\xe6\x71\xf5\xe7\x69\x79\xb4\xcb\x2d\x84\xbc\xbb\xab\x86\xa4\xda\x38\xd7\xbe\x79\x54\x8d\x20\x13\xc2\x70\x8e\x4a\xca\x48\x94\xbc\x26\x13\xac\x49\x71\x8b\xe7\x5f\xd2\xa4\x85\x9a\x5a\x57\x71\x23\xca\x25\x2b\x84\x7b\xbf\xc4\x0d\x29\xba\x4d\x1c\x4e\x1b\xf0\xbd\x08\xa7\x57\x2d\x4a\xf6\xbd\x28\xae\xd8\xbb\x22\xd5\x44\x58\xb4\x75\x83\xa2\x69\x66\x6b\xbc\x62\xe2\xac\x16\x57\x7a\x8d\x93\x85\x4b\xd4\xbd\x26\x17\xee\x57\x68\x23\x39\x75\x69\x71\xcb\xc8\x95\x4b\x15\xec\xf7\x35\x93\xea\x80\x57\x57\x20\x37\x41\x2b\xc8\x2b\xff\x91\xae\x65\x99\xbe\x9d\xa5\xc7\x48\x58\x31\x65\xcd\x65\xbd\x64\x09\x66\x62\x78\x7b\x95\x65\x36\xc3\x18\xa2\x5f\xa1\xd1\x87\x8b\x4a\x0e\x4e\x45\x7d\x2d\x99\x18\x2c\x6a\x26\xf9\x7f\xa8\x81\x3d\x2a\x06\xbd\x0d\x1b\x0f\x5e\x15\x97\x6c\x20\xd7\x82\x0d\xd4\x45\xa1\x06\x37\xf5\x1a\xa2\xe7\x0e\x8a\xc1\xaa\x5e\xde\x9c\x55\x4b\x08\xc6\x64\xa2\xe6\xda\xa2\xe5\x78\x70\xa1\xd4\x4a\xe6\xdf\x7e\x7b\x76\x3a\xbe\x62\xdf\x9a\x1d\xee\xf2\xcb\x11\x26\xbd\xeb\xff\xeb\xda\xdb\x37\x52\xff\x45\xcd\xc5\x3d\x8e\xcf\x67\xfd\xee\xce\x67\x7a\x27\xe0\xcf\xee\x99\x33\xb3\x61\x9a\xa0\x4e\x3a\xa7\x8b\x2f\xdd\x70\x36\xe3\xee\x79\x03\xe0\x5a\x1f\xe9\x70\x4a\x6e\x0c\x85\x38\xa0\xbb\x53\x72\x4d\xef\x93\x3f\xe8\x64\xd6\xb3\x13\x06\x6d\xea\xf0\x84\xfe\xa1\xf7\x46\xbc\x03\xc8\x17\x6c\x14\x86\x6f\x27\x4f\xd8\x66\x33\xdd\xbb\xff\x98\xcd\x5b\xd3\x96\x7e\x34\x50\xc5\x25\x93\x30\x01\xb2\xd2\x22\xc1\xa0\xe2\x6a\x70\xca\xd4\x35\x63\x7c\x30\x19\x14\x7c\x31\x98\xee\xdd\x27\x03\xfd\x59\xc5\xcf\x07\x10\x71\x4e\x8b\xa8\xd2\xc5\x71\x56\x17\x05\xd7\x79\x06\x67\x2b\x39\xa8\xe4\x80\xd7\x6a\xb0\xe6\x76\x21\xb0\xc5\x08\xe7\xd7\x74\xf2\x98\xcd\x01\x40\xf0\x6c\x59\x6b\x66\x9e\xed\x7f\xcb\x70\xbe\xbf\x3f\xde\xdf\x37\xd2\xff\x09\xa8\x4d\x52\x22\x4b\xde\xd0\x93\xb1\x2e\x64\x6f\x66\xfe\x4e\xc7\x35\xbf\x32\x59\x5a\xaa\x38\x4b\xc9\x6e\xbc\x42\xbc\x4d\x66\xff\xa0\x6c\xe7\x1a\x38\xac\x1b\x4d\x70\x19\x9e\xbf\x19\xaf\x6a\xa9\x6c\x8d\x16\xbe\x14\x45\xb3\xe5\xb8\x1d\xee\x68\x71\xcf\x07\x84\x5b\x2f\x9e\x8f\xa0\x4c\x4d\xa9\xeb\x0d\x65\xe4\xe3\x66\xa3\xcb\x9c\x90\x9e\x8f\xdb\xe4\x94\xe3\xdb\x03\x7a\x91\x88\x95\x0c\xb5\x3b\x82\x1b\x0c\x82\x78\x42\x65\x4f\xd1\x01\x86\xc5\x15\xa3\x19\xb5\x4c\x9d\x8c\x52\x91\x19\x1d\xa7\xc2\x33\xe6\x41\x86\x8d\x2a\x3d\x9a\x1d\xc4\x77\xa7\xf8\xdb\x3d\x4c\x6a\xca\x8e\x04\x68\x1e\x87\xc1\x37\xba\xce\xb2\xc9\xe3\x97\xa8\xd6\xf2\x15\x76\x86\xb2\x3a\x1f\x55\x84\x1d\xf1\x63\x5a\x13\x4e\x45\x0c\x8a\x14\xb1\x48\x01\x4d\x93\x51\x76\x34\x39\x76\x1c\x57\x04\xf0\x13\xb1\xf1\x47\x93\xe3\xc4\x2d\x3b\xea\xcf\xaa\x5e\x19\x68\x67\x6e\xd2\x75\x5e\xca\x6d\xaf\x4c\x8f\x26\xba\xfd\x3e\x8a\xe1\xe3\x7a\xe6\x2e\xdc\xf7\xfe\x13\x89\x9d\x29\xde\x9d\x92\x82\xb2\xa3\xea\x98\x48\x5a\xed\x4c\x49\x49\xd9\x91\x4c\x2b\x2c\xb2\x6c\xf2\xe4\x25\x2a\x08\xc7\xd8\x27\x96\x26\xb1\x24\x05\x9e\x23\xe8\x78\x49\xf4\x97\x94\x13\x41\x25\xce\x4d\x5a\x41\x74\xd1\x90\x16\xc5\xe5\x8a\xc6\xd1\x17\xc3\xdb\xe3\x18\x17\xd7\x34\xde\x99\xaa\x89\x01\x2d\x02\x6e\x51\x0b\x3f\xa6\x16\xea\x05\x5f\xb0\x4f\xbb\x2a\x3c\xcf\x22\x3c\x11\x3e\x07\x3b\xd9\xc5\xae\x1a\x57\x8b\xc6\x80\xd1\x1d\x1d\x93\xf7\xfa\xbf\xdf\xe9\x94\x3c\x33\xa4\xea\x92\xee\x93\x5f\xf4\x66\x78\xae\xff\x7b\x4a\x87\xd3\xe0\xac\xf3\x16\xb1\x00\x4d\xad\xe8\x27\xf4\xde\x3b\x0b\xaa\x59\x0c\x06\xa5\xbc\xbd\x14\x7e\xad\x33\x85\x51\x50\x06\x6a\x14\xdc\xe5\xa8\x0f\x74\xa4\x33\x91\xa8\xdd\x1d\x64\x1a\xf2\x01\x1d\x6a\x26\xc3\x54\x1a\xad\xb1\x77\x56\x9e\xd3\x0d\x25\xba\x7d\x64\xf8\x3c\x0a\xc7\xf2\x09\x1d\x62\xfc\x5c\xef\x43\x81\x7e\x4d\x6e\x09\x92\xc6\x67\x59\x8d\xde\x91\xa8\x6d\xbb\x2c\xae\xe4\x57\xb3\x49\xcd\x88\x64\x99\xa9\xac\x42\x18\xeb\x91\x32\x9a\x7e\x41\x2f\x67\x0e\xc0\xf2\x2d\xe2\x98\x3c\x83\xba\x5d\x0d\xcf\xb2\x0c\x0d\xd1\xb3\x56\xaf\x9e\x70\xbc\xd9\xb0\x2c\x1b\x16\x08\xe3\x99\x33\xe2\x78\xe6\x07\x2f\x71\xfc\xbb\x0d\xe9\x6e\xa6\x9e\x8d\x57\xd6\x84\x17\x6c\x1e\xad\xb1\xa0\xec\xd4\xf3\x98\x72\x3c\xeb\xb2\xa0\xbd\x66\x0e\xe5\x3c\xaa\xa7\xcc\x9f\x51\x33\x88\x59\xf6\x1a\x1d\x62\xa2\xbb\x66\x08\x9f\xfe\x39\x33\x9d\x6c\x62\x38\x40\x63\xde\xe7\x00\x80\x8c\x3f\x68\x3c\xd6\x6b\x33\xd6\xeb\x68\xac\x39\x26\x4b\x4d\x46\xed\x62\x5d\x7a\x6d\x84\x5f\x92\x02\x96\x64\x34\x23\xbf\xe9\x69\x6f\xf9\x57\x38\x9f\xe5\xdd\xa9\x8d\x91\xe2\xac\xdc\xf6\xee\x4f\x5a\x2e\xe9\xc1\xaf\xb6\xe5\x62\x3d\x65\xf7\x66\x2d\x1b\xb9\xfb\x6c\xdf\x1c\xe8\x2f\xa8\x8c\x99\x80\x17\x57\x57\x6c\x51\x15\x8a\x79\x33\xea\x69\x7c\x44\xff\x24\x99\x78\xba\xac\xcb\x4b\xf0\x1c\xb2\x39\xf6\xe2\x1c\xaf\x35\xf3\xba\xf4\xef\xf6\xe3\x77\x2f\x16\xcb\x50\xee\xfd\xf8\xcd\xcb\xfa\xda\xbf\xb8\x17\xbf\x10\x6b\xfe\x4b\xa5\x2e\xfc\xcb\x94\x5f\xef\x8c\x55\x19\xc5\x62\xdf\x4f\x30\x2d\xef\xb7\xc0\x21\x19\xdd\x6f\x0c\x95\xb9\x9c\x5d\x52\x16\xeb\xde\x14\x0a\xaa\xa3\x4b\xca\x9b\x84\x49\x81\xbb\x84\xf8\x5c\xb4\x6d\xb8\xdc\xd2\x06\xb3\x2f\xf7\xdb\x00\x15\xf4\x32\xaa\x5d\xa5\xb7\x0b\x77\xd4\xee\x04\xea\x67\x6e\x2d\xc7\x07\x2e\x29\x82\xd9\x6e\x8b\x5f\xe8\x75\x3e\x29\xbc\xf3\x49\xe1\x04\xc0\x62\xbc\x60\xcb\xe2\x66\x56\xd2\xde\xb8\xd3\x93\xc7\xe5\x5c\xee\x94\xb9\x24\x45\x4f\x86\xc2\x59\xfd\xcf\xfd\x53\xfe\x1b\x40\x75\xe9\xad\x55\x50\xfd\x4c\x4a\x2a\x83\x7d\xfb\x6d\xb5\xc8\x7f\xdf\xd9\x21\x6e\x6b\xe6\x9c\x24\x7b\x3f\x67\xc4\x6f\xa8\xbc\x24\x2d\x9f\xab\x82\x96\x3b\x05\xf1\xe4\x35\xdf\x9d\x36\xa4\x7c\x22\xe7\x28\x3a\x37\x68\x49\x3e\xa0\xf7\x84\x79\xa8\x06\xb3\xed\x19\x3c\xbd\xc7\x9a\xec\xcd\x2b\x84\xf3\xa7\x9a\x9a\xea\x2d\x5c\xee\x4a\x8c\xf5\xa9\x17\x95\x51\x00\xa1\x66\x98\x3c\xdf\x6c\x7e\xd9\x6c\x90\x27\xbd\x18\x13\x96\xcc\x8f\x91\x13\x7a\x66\x07\xdf\xb2\x94\xd0\x25\x9f\x5d\x8b\x62\xd5\xfb\x91\x59\x3d\x97\x1d\xdb\x26\x77\x42\x76\x57\x8f\x55\xa6\xab\x8b\x4a\xc6\xaa\xf4\x64\x45\x25\x75\x07\xd5\xcb\xdb\x78\xe8\x7b\xd8\xf9\xcb\x74\x29\x5e\xd4\xeb\xe5\xe2\xef\x15\x5b\x2e\x7a\x2c\x38\xda\x0b\x50\x1f\x62\x56\xdd\x0d\x27\x88\x3b\xfc\xcd\x29\x12\xce\x93\x70\x71\xe7\x9e\xfc\xb0\x41\x9c\xd6\xe8\x98\xd5\xbf\x5b\x27\x42\xfb\x88\xd8\x6c\x0a\x84\x93\x56\x5b\xc1\xf3\x6d\x51\x71\x45\x5f\x24\x53\x57\x73\x55\xf1\x35\x3b\xfc\xc4\xca\xb5\x2e\x20\xee\x55\x67\xe2\x93\x42\x57\xc5\x5a\xf6\x7f\xd7\x1e\xe9\xef\xc1\x6c\x30\x76\x68\xe9\x0e\x33\x1c\x3e\xf1\x77\x6f\x45\x7d\x56\xf9\xf0\x5a\x5f\xac\x7a\x4a\x14\x0d\x5f\xa0\x80\x02\x5d\xd5\x77\x38\x30\x46\xb5\xfe\xd2\xff\xaa\xf4\xaf\x6a\x0c\xb1\xaa\x6d\xd4\x5f\xe3\x3e\x54\x93\xde\x3a\x23\xed\x91\x35\x02\x27\x95\xa6\x50\xd5\x19\x2a\x86\x94\x0a\x47\xab\xb4\xa0\x64\x6e\x08\x46\x7a\x60\xb4\x50\xf6\x56\xd4\xab\x0f\x37\x2b\x26\x07\x10\xce\xb9\x50\xb5\x90\x83\x45\x25\x58\xa9\x96\x37\x4e\x26\xf3\x12\xd9\xe0\xf4\x66\xa0\x2e\xd8\xe0\xff\xac\x44\xbd\xda\xd5\xb4\x48\xfe\x9f\xc1\xca\x28\xfd\xc6\x83\x9f\x24\x0b\xe5\x8d\xcb\x0b\x56\x5e\xfa\x9f\x08\x0f\x54\x3d\xd0\xeb\x4b\x17\x70\x35\x1e\xbc\x63\xc5\x62\x70\x55\x0b\x36\x28\x14\xc8\xe9\x5e\x4c\x5f\x4b\xb6\x0b\x1f\xef\x86\x5a\x46\xee\xc2\x54\x8e\x8d\x8d\xdc\x0b\xfe\xb1\x10\x55\xc1\xd5\xe0\xe7\xaa\x5e\xc2\x2a\x1c\x11\x19\x1d\xf0\x2a\xcc\x32\x6b\x8c\x17\xf1\xef\xeb\x4a\xb0\x85\xb5\x00\xe3\xf4\xb6\x10\xa2\xb8\xc9\x19\x39\xad\x6b\x4d\xfe\xf4\xa7\x39\x23\x86\xd6\xe6\x8c\x18\x22\x0e\x74\x51\x54\xfc\x5c\x3f\xdc\x5c\x9d\x42\xd6\x82\xeb\xef\xe0\xfb\x37\x67\xb9\x22\xde\x11\x80\x44\xce\x79\x39\x23\x95\x55\xa1\x42\x26\x5e\x2f\x98\x2f\x16\x52\x6a\xce\xc2\x5f\xf8\x44\x11\x79\x51\xc0\x5f\xf6\xa9\x28\x55\xae\x48\x3a\x8c\x79\x45\x3a\xab\x22\xaf\x1b\xbf\xc7\xc7\x3e\x27\xe5\x5a\xc4\xfc\xd2\x05\x3c\xb2\x37\x34\xf6\x5e\xe6\xed\xc1\xfb\xf7\x27\x1f\x7e\x7c\xf1\xbe\xf7\x76\x66\xf4\x99\x62\xd5\x38\xe8\x4e\x03\x7b\xcb\xd1\x44\xcb\x85\xa8\x40\x02\x93\x02\x71\x34\xd5\x34\xbd\xa2\xfa\xf1\xc1\x04\xe3\x19\xa4\x4d\x1e\xe1\x68\x5b\x14\x91\x00\xc8\xb2\x8c\x45\x05\xcf\x59\xee\x95\xc9\xb1\xd7\x81\x0c\x57\x63\x88\x0d\xdc\x04\xd4\x67\x03\x7f\x63\xad\x77\x81\x1e\x22\xbf\x13\xb8\x5e\xe3\xb0\x34\x8b\x41\xb9\x2c\xa4\x1c\x14\x72\x50\xf8\x13\x60\x14\x19\xd8\x06\xa8\xd7\x21\x8b\x8a\x7b\xc7\xce\x98\x60\xbc\x74\x65\xea\x23\x61\x70\x51\x80\x5e\xeb\x94\x31\x3e\xa8\x78\xa5\xaa\x62\x59\x49\xb6\x18\xec\xea\xfd\xc4\x04\xc2\x49\x0e\x5d\x3f\x5b\xf8\x0b\xba\xa1\xda\x6c\x1c\x1b\x11\x54\x69\x2a\x56\x4e\x45\xc9\x73\x96\x47\xbe\x69\x4b\xdf\xc8\xde\xcc\x9e\xde\xab\xfe\x01\x79\xaf\x5b\x37\x60\x9f\x20\xfa\xb8\x2e\xef\x6a\x2d\xd5\x80\x55\xea\x82\x89\xc1\x29\x03\x29\x72\x50\x8b\x68\x84\x08\x50\x89\xd1\x8e\xab\x01\xcf\x22\x2f\x7e\x6a\x35\xec\xe6\x16\x12\xa9\x2c\x53\xe1\x25\xb9\x2d\x6b\x2e\x95\x58\x97\xaa\x16\xb9\x55\xb3\x33\xc2\xf8\xfa\x8a\x09\x4d\x91\xf3\xe1\x94\x5c\x0b\x13\x20\x3d\x1f\x4e\x48\x59\xf3\xb3\xea\x7c\x6d\xdf\x4d\x9a\x06\x13\x95\x65\x4e\x8b\x2f\x99\x7a\xeb\x8a\x7e\x73\x36\xef\x4d\x85\xc1\xc9\xf5\x52\x82\x56\x9c\x9c\x50\x65\xc0\xec\xd7\x34\xe2\xea\x3d\x5c\x5d\x9f\xa9\x0a\x29\xc8\x8a\x8e\x4e\xec\xc5\xaa\x31\x34\xdf\xb5\x2e\x44\xbb\xa3\x1d\x34\x21\x95\xfb\x1c\x23\xbc\x33\x3a\x39\x19\x91\xb3\x84\xd9\x08\x66\xfd\xf6\x1c\x57\x44\xcc\xa4\x61\x25\x78\xb0\x53\xac\x69\xdb\x94\x9a\x54\xf4\x40\x93\x1d\x54\x63\x52\xd0\xc9\xac\x78\x5c\xcf\x8a\x9d\x1d\x5c\x1d\x15\xc7\x91\x71\x75\x71\xec\x41\x05\xa9\xa0\xc6\xa4\xc8\x46\x5b\xb3\x5c\x0b\x23\x47\x3a\xf1\x78\x5c\xd6\xbc\x2c\x14\xaa\xf4\x6e\x14\x63\x76\x55\x29\xd5\x32\xbd\x35\x9c\xd1\x91\x2b\xf2\xb6\xe6\xc9\x1d\x56\xb0\x7e\x23\xf5\xd9\x59\xfa\x0a\xa2\x4f\x2f\x15\x13\x29\x3c\xa0\x6b\xdb\x90\x52\xd6\xe8\x13\xfe\x9c\xa9\x1e\x7b\x05\xd6\x10\x19\xbf\x00\xfb\x02\xe3\xfd\xdb\x75\x24\x89\x8a\x35\x90\xd1\x18\x37\x4d\x83\x84\x5e\x6c\x1e\x47\x95\x94\x48\x10\xe5\xcd\x93\x96\x70\x39\x49\x78\x64\xa0\xa5\x79\xb4\xc8\x67\xad\xc3\x6f\xcd\xbc\x07\xf4\x6d\x83\x8f\x56\xc7\x16\x21\xc3\x0c\x9b\x66\x51\x79\x6a\x75\x6b\x8c\x48\x7e\xa9\x96\xcb\x77\xac\x64\xd5\x47\x73\x93\xd9\x6b\x91\x18\x35\x14\x6c\x91\x4c\x93\x63\x93\xba\x28\x07\xb8\x97\x9a\xa7\xda\xda\xa7\xcd\x10\x04\xcf\xa4\x94\xa2\x82\x0a\x3c\x9f\x0c\x29\xad\x36\x9b\xe9\xb7\x15\xa5\x74\xfa\x6d\x91\x57\x06\xd9\xac\x00\x31\x64\x5e\xd3\x49\x8e\x6a\xda\x27\xc3\xab\xb9\x82\xc1\xce\xd7\xe0\x03\x8b\xea\x0d\x9d\xe0\x2c\x8b\xbb\xaa\x77\x15\xf2\x2d\xc0\x66\x0b\x55\xa4\x48\x07\xa0\x6d\x23\x18\xe6\x28\x74\xc7\xd9\x9d\x36\x84\xeb\xe9\x0a\x40\x1f\xb3\x33\xf3\xce\x4e\x85\x39\xd6\x10\xe2\x6e\xe4\x6b\xb7\xc9\xc6\x86\x50\x46\x87\xbc\xde\x44\xba\x41\x11\xbf\xac\x7a\x76\x1d\xfb\xaf\xda\x75\x2c\xec\x3a\x15\xef\x3a\xd5\xbf\xeb\xe0\xd6\x98\x5a\xf2\x07\x30\xa6\xe0\xff\xa3\x19\x6a\x31\xae\xb9\xb9\xd1\x6e\x51\x22\x98\x18\x34\xd9\x88\x04\xfa\x0a\x67\xc6\x7c\xd2\x84\xa7\x51\x0c\xf5\x15\x8a\x1b\xd8\x07\x2c\xd9\x07\x0a\xff\x89\xa5\xeb\xac\x26\xe2\x26\x18\x33\xfc\x38\x25\x32\xf1\x0c\x86\xe3\xf3\x75\xae\xb6\xec\x16\x17\x00\x25\x5e\x37\xb1\x03\xfb\xd1\xea\xd8\x2e\xc6\x90\x30\xd6\x53\x0c\x15\xdb\xe1\xc2\xb1\x01\xad\x59\x69\x5f\xda\x4a\xe6\x5b\xc9\xe6\xeb\xfc\xae\x3d\xfd\x53\xdb\xbe\xf4\x4b\x1a\x7a\x76\xd6\x6a\x69\xd3\xa6\x40\x30\x51\xdb\x76\x4d\x28\x6a\xde\x2e\xfa\x9c\x29\x84\xdb\x0d\xde\xb6\x07\x51\x32\x36\x1e\x4e\x04\x16\xfa\xb8\x92\x66\xc1\x33\x3c\x67\x47\x93\xe3\x9c\x61\x14\x30\x92\x1c\x28\x35\x0c\x70\x77\xdb\xfa\xeb\xac\x32\xdd\xb8\xc5\xb6\x8d\x4b\x0a\x4c\x6e\xdf\x8a\xfa\x63\x05\x16\x87\xe4\x59\xcd\xa5\x66\x00\xf2\x45\xd3\x44\x12\x8f\x3f\x93\xbf\x54\xc4\x9a\x4e\x70\xc4\xe3\x8a\xcf\x7c\x16\xbc\xa8\x22\xae\xb3\xef\x50\x6a\x0c\x91\x88\x85\xbe\x59\x3d\x56\x17\x85\x7a\x07\x59\x24\x15\x24\xf9\xfd\x7d\xb1\x94\x8c\x0a\x34\x9c\xe2\xf4\xc5\x07\xb1\x86\xf4\x49\x2b\xfd\xb5\x5e\x7d\xc2\xde\x14\xa5\x5f\x5c\x54\x72\xcb\xc2\x68\xd2\x9c\x07\x96\x2c\xd1\x1e\x7b\x13\x16\x0f\x6b\xfd\x75\xec\x3c\x09\xac\x91\x3d\x76\x86\xad\xc3\xac\xc5\xa9\x3b\xd7\x62\xe7\x79\x73\xdb\x04\xb5\x74\xb0\x61\xd7\x3c\xf2\x80\xe1\x60\x91\x11\x16\xf0\x45\x21\xdf\x5c\x73\x67\x9b\x61\x3d\xe4\x08\xc7\xee\x02\xaa\xd7\x84\x23\xcb\x6c\xf2\x39\x53\xd1\xd7\xcf\x99\x2c\x45\xb5\x52\xb5\x98\x7f\xe6\x3d\x54\x91\xdf\x36\x33\x20\x9d\x9b\x0d\xd0\xd4\xf9\x36\x73\x11\x38\x2d\xd5\x11\x3f\xa6\xec\x88\x1f\x37\x61\x8c\x58\x63\x44\x1d\xbb\x2a\xa5\xfe\x35\xdd\xc3\x5a\x14\x32\xcf\xf7\x41\x0a\xd2\xcf\x13\xac\x4f\x17\xfd\xf4\x40\x7f\xc0\xd1\x83\xbd\x48\x16\x92\x5f\x2f\x0b\x95\x61\xaf\x97\x6e\x94\x0a\x29\xab\x73\xbe\xd9\x24\xdc\xa8\xbf\x91\x99\xce\x54\xc7\x7b\x2f\xf6\x27\x08\x67\x9d\x3a\x0e\xde\x34\x7a\xea\x38\xfe\xa2\x79\xd3\xe3\x94\x65\xe6\xa2\x8b\x1f\x89\xe3\xc8\x52\x1c\x6f\xd1\xa7\x99\x0b\x81\xf4\xf0\x0b\xe3\x00\xf2\x84\x5c\x2d\x2b\x85\x46\x83\x11\xbe\x8b\x31\x44\x13\x22\x02\x5f\xee\x1c\x8e\x23\xeb\x9b\x7f\xad\xec\xba\xa7\xec\x55\xf7\xb4\x24\x3c\xa6\x34\xd1\xe0\x13\xde\xe5\x3b\x8c\xd7\x84\x21\xc5\x80\xe5\x3e\x99\xd5\x8f\xf9\xac\xde\xd9\xc1\xe2\xa8\x8e\x79\x8f\xda\xf1\x1e\xe0\xf6\x73\x07\xa3\x2f\x30\xde\x6c\xc0\xc5\x60\x5c\xf3\x43\x9e\x32\xfb\x71\x68\x07\xcd\x09\x6b\x69\xf8\x75\x71\xc5\x24\xe2\xf3\x51\xb1\x5a\xb1\x42\x8c\xf2\x11\xd3\x5f\x8d\xf0\xb8\x74\xaf\x67\xca\x79\xd0\xea\x14\xa6\x65\xf0\x11\xfb\x54\xa9\x11\x26\x4b\x60\xc6\x89\x72\x47\xb0\xa9\xd2\x0a\x81\x21\x01\xaa\x6e\x88\x72\xbf\x2b\x7e\xfe\xa7\x9b\x65\x2c\x94\x9f\x25\x8d\x3b\x5b\xd6\xd7\x07\x7c\x71\xb0\x58\x40\x7a\x6f\xa3\x2a\x7e\xde\x69\x57\xc5\xcf\xdb\x4d\x63\x8b\x2f\x6a\x99\x6b\x17\x1e\x2f\x6a\x1e\x5a\x03\x78\x8d\xad\x9c\xae\xe1\x69\xc6\x8a\xf2\xb9\xd8\x19\x0d\x46\x3b\x75\x5e\xf7\x8c\x70\x4f\xd7\x61\xb4\xab\x4e\xc7\xd8\xa2\xd3\x2f\xb6\x88\xbb\xf5\xa9\xea\xba\xc8\xf0\x9e\x76\xc2\x94\xde\x3d\xed\xae\xd7\xa4\x6f\x49\x44\xad\xe4\x49\x2b\x3f\x55\x2a\x69\xe2\xa7\x4a\x81\x40\xe9\x5a\x97\x2e\x87\xcf\x35\xf0\xcb\x16\x40\xa7\x05\xed\xf9\x37\x49\x49\x3b\x92\xb9\xff\x5c\x33\x92\xe9\xfc\xcc\x16\xe9\x34\xa6\x35\x67\x90\x62\x9b\x92\xd4\xd6\xdb\x1e\xcb\xd2\xf9\x4c\x44\xd0\x2e\xd4\x1c\x27\x35\x15\x73\x24\xb2\x8c\xcf\xf9\xce\x68\x77\x94\x8f\x46\x78\x87\xe5\xfc\x88\x79\x51\xdf\x17\x91\xd7\xa4\x35\xaa\xb9\x98\xd7\x3b\xa3\x5d\x93\x3a\xd2\x5f\xed\x8c\x0e\xcc\x8f\x63\x92\x74\xdd\xe6\xd4\x69\x36\xdf\x73\xfd\x78\xdc\x34\x44\x35\x9c\x32\x82\x14\x15\x78\xab\xc6\x28\xe2\x65\xed\x20\x79\x4e\xdc\xab\x8e\x20\x0c\x41\xd0\xe8\x70\x1b\x29\x5e\x84\xdc\x8e\x2b\xad\xd3\x69\xd8\xee\xbe\x96\xce\x29\x00\x8e\xf3\x30\xa4\x10\x2b\xbd\x35\x22\x7a\xc7\xb6\x26\x5d\x64\xd9\xda\xd0\x9a\xda\x3c\xd5\x98\x54\xe6\xa9\xc2\x9a\x61\xeb\x2c\xcc\x56\x83\x00\x2c\x4a\x9f\xf6\x3e\x30\x26\x31\xea\x3d\xfb\x75\x9b\xb5\x37\x32\x4f\x89\x6e\x1b\x12\x98\xfb\xc0\x92\x43\x34\xa0\x01\x8b\x97\x86\x57\x55\xd9\xf1\xb6\xc0\x0b\xa8\xf0\x01\x1b\x4a\x67\xa2\x6d\x48\x47\x6e\x85\x17\xf8\x41\x3c\x3d\x49\x92\xd9\x82\x04\x02\x9a\xbc\xa9\xf8\x39\x31\xeb\xd9\x27\x7f\xaa\x14\xf1\xdb\x2d\x4e\x0d\x79\xa3\xe2\xe1\x17\x1c\xae\xa2\x41\xa1\xf1\x91\xfc\xb1\x72\x89\x46\x5e\x0d\x8b\x58\xe6\xa3\x51\x43\x56\x30\x28\x46\x28\xb9\x35\x36\x64\x67\x74\x15\x6b\xfc\xfe\x25\x99\x63\x1f\xdf\xc1\x31\xa7\x93\x6b\xe7\xe1\x65\x25\xd5\x3c\x7a\x1e\x17\x8b\x05\x52\x38\xef\xf2\x14\x9b\x4d\x1f\x64\x64\x98\xcd\x79\xf4\x4c\xa3\x67\x38\x45\x54\xce\x34\x0b\x1b\xc1\x64\xc0\xfb\x11\x41\x51\x4e\xbd\xd4\xfc\x8f\xf1\x69\x21\xd9\xcf\xc5\x72\xb3\xd1\x94\x01\xca\xc0\x16\x8f\xb7\xd6\xe2\x09\x9a\x4e\xef\xe1\x58\xc4\xda\x32\x5a\xba\xa7\x9d\x6b\xab\x2f\xe5\x66\xff\xb4\x74\xd2\xcf\xd5\x45\x43\x3e\x1c\x2a\xdf\x5d\x18\x77\x1f\x41\x5a\xe1\x7c\x77\x3a\xa4\x54\xb3\x7d\x3b\xa8\x77\x44\xa2\x44\x18\x1a\x6c\x30\x43\xdf\x9c\xc1\x37\x0a\x92\xfe\x8c\xf0\x1a\x4b\xa1\x49\xbb\x05\x5b\x2d\x8b\x92\x21\x73\xdf\x70\x7e\xf8\x69\x85\x46\xe8\x7f\x6f\xfe\xf9\x4f\x89\xa1\x3e\x34\xcf\xff\xf9\x4f\xb9\xf9\x06\x8f\xc8\xe8\x7c\x84\xc9\xe8\x9b\xe9\x08\xfb\xaf\xbe\xfd\xa7\xdc\xf9\xf6\x9c\x40\x43\x7d\xda\xff\xfe\xa7\xfc\xcf\xcd\x3f\xe5\x7f\x7e\xa3\xdf\x8c\x70\xd3\x37\x4b\x77\xad\x53\x43\x49\xf5\x68\x7d\xf9\xaa\x14\xf1\x70\x1a\x4d\x7c\xef\xa2\x14\x5f\xb4\x2a\x81\x10\xfe\xab\xf2\x6b\x91\x48\x68\x85\x95\xc4\x6a\xca\xd1\xfe\xc4\xdf\x50\xed\xff\xb9\x7b\x29\x73\xf1\x7a\xa7\x10\x50\xfc\xcf\x0a\x01\x17\xe0\x1c\xd2\x12\x04\x42\x8b\x58\xb7\x3d\x3c\x6a\x0f\xd3\xe7\xe2\x64\x26\x1e\xb3\x99\xd8\xd9\xc1\x1c\x0c\x18\x7d\x7b\x44\xb8\x86\xb0\xf5\xbc\xac\xce\x58\x79\x53\x2e\x19\x1a\xd9\x03\x61\x44\x26\x96\x11\x8d\x5a\x92\xf0\x7b\xff\x8d\x8d\xd1\x6b\xb8\xaf\x3d\x6c\xf1\x3f\xd2\x1c\xb6\xe8\xb4\xe6\x53\x0a\x26\xf0\xdf\xd2\x14\xcd\xa6\x92\x69\xa7\x1d\xff\x13\x93\x64\xaa\xed\x6b\xcd\xff\xc0\x14\x41\xad\xbe\x2d\x8e\x95\x2d\xfe\x0b\x58\x59\x49\x8b\x2e\x2b\x2b\xdb\x8d\xea\x8d\xd2\x58\x91\xa2\x57\xcf\x2b\xa9\x08\xcc\x93\x4d\x1c\xab\xda\x8c\x4b\x81\x8f\xd4\xf1\xcc\x7e\x73\xc4\x8e\xb3\x0c\x55\xd4\x71\x93\x47\xec\xd8\x92\x95\x0a\xe4\x16\x5f\x38\x64\x4c\x7e\x22\xe0\x61\x22\x67\x7c\xa3\x46\xd6\xdc\x9b\xdc\xca\xbd\x86\x12\x00\x04\x21\x04\x8a\x00\x60\xee\x8e\x27\x51\xe4\xd2\x6f\xa5\x16\xc3\xa2\x00\x54\x1a\xbd\x6d\x48\x45\x53\xcf\x7a\x50\x5c\x99\x69\xaf\xbc\x95\xb7\x9e\x7d\x5a\x1d\x89\x63\xa2\xfc\x49\xce\xf1\x13\x3a\xd9\x6c\x50\xed\xf4\x7a\x9e\x91\xae\x1b\x4d\x52\x47\xae\x69\x23\x32\xaa\xf8\xe8\x18\x93\xe2\xae\x41\x55\x98\x48\x5a\x1c\x4d\x8e\x49\x49\x8b\xa3\xe9\x71\x8b\x2b\xaf\x3d\x4f\xdd\x4e\xd0\x7c\x70\x3b\x8d\x2d\x92\x24\xcd\x43\xb7\x7e\xb7\xbf\x82\xd5\x1a\x34\x60\x2d\x76\xdf\x73\xd2\xa4\x26\x7c\x1e\xe5\x5a\xd6\xdc\x67\x92\xe4\xf6\x92\xdd\xe4\x23\x40\x95\x18\x91\x44\x20\x88\xa8\x65\x87\xf7\x4f\x29\x7b\x5b\x66\x48\xe8\x6c\x83\xf3\x2d\x95\x97\xb6\x72\xc9\xca\x9a\x2f\xfa\x6b\xb7\xa2\x44\x5f\xe5\x41\x9e\xe8\xa9\x3b\x08\x15\x45\x83\x44\x9f\x50\x21\xbb\x52\x43\x09\xf6\xbc\x8e\x99\x28\xff\x04\xb3\xd7\x65\x4d\xdc\xf5\xf3\xab\x62\xb5\xd2\xf4\xb5\x86\x80\xa0\xe2\x9c\xc5\xa9\x92\x56\x26\xeb\x0b\x63\x56\x92\x7c\xd1\xcb\xf6\xd6\x28\xda\x47\x09\xf8\x62\xa4\x1a\x8d\x47\x1b\x23\x0e\x02\x9f\x95\xbd\x22\xe7\x78\x8e\x49\xc5\xf3\xe1\x84\x18\x4d\x4f\x5e\x20\xee\xb5\x3e\x84\x61\x02\x4a\x1e\x93\x6a\xf4\x3d\x90\xa8\xe5\x3d\x93\x06\x87\x09\xc3\x8d\x51\x90\x42\x37\x5e\xb3\x4f\x6a\x6b\x1f\x1c\x1d\x93\x34\xee\x04\x26\x25\xad\x90\x22\x41\xb6\x8d\xf7\x78\xd9\xa7\xab\xf5\xb0\x89\xa5\xe6\x93\xaa\x33\x04\x9d\xae\xe4\xcf\xc5\xb2\x5a\xf8\x6e\x57\xd8\x21\xcc\xd6\x83\x8a\x0f\x14\x59\x9b\x07\x49\x56\x54\x1d\xd5\xc7\xe4\x8c\xf6\x7e\xb7\xc2\x59\x36\x5c\x59\x22\x5b\xf1\xd9\x70\xbd\xd9\x2c\xb3\x6c\x78\x36\x5f\x6f\x36\xc3\xe5\x66\x73\x36\x5f\x67\xd9\x32\xcb\xb6\x7e\x8d\x74\xbb\x68\xcf\x4c\x54\xd1\x4c\xf0\x68\x26\x2a\x98\x89\x50\xa7\x1b\xe5\x2a\x8c\xb2\x9f\x8d\x2a\x9a\x8d\x06\xe3\xfc\x8e\xba\xf4\xec\x4e\x9b\x3b\xb3\xdc\xd1\x9c\xe1\xe4\xcb\x9b\xd1\x00\x2a\x68\x13\x19\x88\xc5\x16\x91\x91\x42\xa6\x75\x8a\x42\xd0\xd9\xc0\x7e\x8b\x40\x6a\xaf\x8a\x15\x62\x04\xf5\x5e\x79\xe1\xbe\x45\xc1\xf0\x2d\x3f\x02\x9c\xf9\xe3\x3e\xd1\x54\x6d\x99\x2f\x86\x8d\xc7\x36\x6b\x10\x8c\x67\x1c\x1e\xa2\x32\x2d\x8f\x8c\x0d\x78\x70\x1b\x87\x35\x35\x57\x47\xfc\x38\x87\x8b\x22\x46\xd9\x66\x73\xdb\x10\x45\x95\xfe\xeb\xfc\x93\xfb\x7a\x4c\x2a\x7a\x14\x2e\x5d\x0a\x73\x5f\x56\x98\x02\x2b\x8f\xb4\x88\xea\xa3\xe2\x98\x56\x90\x19\xe7\x95\xb1\xcd\x29\xb0\xe5\x22\x6e\x1b\x5f\x40\x09\x5f\xc2\xf1\x59\x1f\x95\xc7\x38\x1c\x8a\xfa\x67\x7c\x2e\xba\xfd\x70\x54\x1e\x6b\x96\x48\x1e\xd9\xa7\x63\xca\xd1\x12\x37\xf2\xa8\xd4\x4f\x25\x6e\xb6\x9c\xab\xf2\xa8\xb2\xb9\xf5\x5f\x3f\x73\xb2\x89\xe5\xa9\x38\x3e\x80\x45\x5e\xe2\x47\xea\x78\xae\xff\xcb\x99\x65\x28\xd4\x71\xd3\x90\x0e\x49\x35\xcb\x27\x9e\xbd\x8e\x6a\x46\xcb\x55\xed\xfb\x29\x50\xe8\xa5\x77\x54\xa4\xdf\x1c\xe6\x3d\xd8\x7d\xce\xcd\x9f\x1c\x38\x8a\x7a\x5c\x29\x26\x0a\x05\x81\xd4\xff\xd7\xff\x72\x3f\x46\xa4\xa0\xf5\xb8\x90\x37\xbc\x7c\x11\xbf\x4f\x52\x46\x10\x81\x50\xd5\xef\x41\x66\xfe\x50\x9c\x43\x96\xe8\x77\xa4\x05\xe8\xc2\x41\x27\xf6\x73\xb1\x81\xe3\xe9\x5c\xe5\xa7\x81\xd9\xb1\x4b\xa7\x8e\x59\xce\x02\x58\xdf\x4f\x48\x6c\x36\x47\x61\x22\x00\xbc\xf4\x63\x7d\xd9\xcf\x3f\x0a\xba\xee\xd8\xc4\x03\x6c\x39\x84\x3b\xa1\xf4\x2c\xb2\x22\xb4\x16\x84\x3f\x30\x6e\x7a\x3a\xa8\xe4\xa0\x58\x0a\x56\x2c\x6e\x06\x62\xcd\xb9\x66\xdd\xf1\xcc\x7e\xb8\x30\x26\x8a\xf0\xf5\x08\x62\x5b\x9a\x82\x2a\x57\xdd\x4b\x64\x96\x14\x1f\x5f\x31\x75\x51\x2f\x68\x4d\xf8\xb8\x10\xe7\xb4\x72\xce\x87\x05\x35\x11\xce\xcf\x0b\x05\xde\xd4\xde\x2b\xe3\x04\x3c\xef\x74\x92\xf4\xe1\xcc\x2e\xb0\xb3\x3b\x0f\x2b\xb0\xd1\x2d\xe0\xec\x93\x32\x98\x9e\xa6\x1e\xcc\xc7\x12\xa2\x3a\x8c\x4f\xec\xdf\x42\x9c\x87\x98\x2d\xbe\xc1\x3e\xbf\x1b\x8a\xb5\xed\x81\xa0\x0b\xd3\xd2\x19\x1f\x2f\x2c\xbc\xc4\xe1\xa7\x92\xad\xcc\xa1\xab\xdf\x18\x4f\x8d\x91\x69\x48\x5c\x58\x96\xf1\x71\x71\x2a\xd6\x2b\x85\xdc\x5b\x53\x16\x9e\x09\x7a\x66\xf9\x8e\xa5\x0b\xce\x07\xcd\x07\x37\xa0\x91\x09\x05\x07\xd0\x55\xd0\x1c\xa3\x8a\x9e\x2f\xf2\x15\x29\x61\xd4\x7a\x46\xc0\x1a\x07\xc1\x7b\xd0\xd9\xe7\xe6\xab\xa6\x09\xbd\x2c\x2d\xd2\x29\x32\xbd\xb2\x53\x61\xdf\xdb\x09\x29\x4d\x97\x00\x6a\x95\x93\x02\x93\xaa\x65\x8d\x0a\x08\xcd\xde\x75\xe2\x56\x97\x98\xbb\x86\x93\x42\x9c\xe7\x46\x5b\x01\xd1\xc4\x22\x80\x90\x24\xbb\xad\x51\xe7\x16\x4d\xd3\xb0\xf1\xb5\x28\x56\xb4\x9c\x19\xdb\xcd\x91\x74\xb0\xff\xef\x55\x21\xd4\x88\xac\xa2\x24\x70\x9d\x18\x91\x33\x3a\x62\xc6\x75\x40\x8b\x90\x0b\x3a\x2a\x2d\xfe\xe0\x62\x44\x2e\x80\x36\xba\x46\x9f\x26\xf6\xf8\x57\xc9\xaf\x57\xfa\x97\x71\xed\xbe\x6d\x66\xe7\x47\xd5\xf1\x36\x83\x8c\x99\x71\xe3\x0e\x86\x06\x91\x19\x2a\xb9\xa1\x1f\xb3\xec\x23\xfa\x88\x5e\xa3\xa3\x63\x8c\xf1\xec\x26\xcb\x6e\x8c\x3f\x86\x30\x83\x71\x63\xc2\x8f\x9e\xd3\x1b\x43\xbe\x0f\xe8\xab\x48\xb2\x3c\xdd\x2a\x65\x9e\x47\xc7\xe8\xb5\x26\x87\x47\x66\x89\x13\x37\x84\x6e\x61\x1d\xf7\xdf\x68\xb3\x23\xd5\x7f\x18\x5a\xec\x39\x4d\x2a\x90\xd2\x27\x78\x13\x23\x54\xff\xe1\xb5\x5b\xb3\x38\x27\x8d\xcc\x37\xeb\xe8\x58\xac\x50\x12\x1e\xec\xad\xa8\xaf\x2a\xc9\xe2\x96\x68\x22\x33\x8c\x0c\xfa\xbd\x5f\x83\xd9\xe3\x4b\xa4\x4f\x50\x40\x44\x9e\x85\x7d\x39\xa4\x54\xda\x6d\x60\x79\x74\x58\xdc\x6b\x5a\xda\x90\x9b\xb6\xce\x75\x96\x75\xdd\xb4\xd6\x7e\xec\xd7\x64\x74\x72\x52\x5c\x17\x95\x1a\xe1\xb9\x6d\xdb\x58\x30\x59\x2f\x3f\x32\xb4\x1e\xdb\x77\xb8\x1d\xfa\x9a\xe1\x5b\x65\x09\x0a\x61\xd0\xd8\x24\xaa\xb5\x79\x6d\x67\xc1\xbd\xc7\x79\xa7\xfc\xbe\x72\x6d\xfb\x29\x23\x95\x3e\x6b\x71\x2f\x97\xd3\x53\x7a\x53\x20\x69\xb6\x27\x0c\xa0\x1e\xd5\x08\x40\x5a\x51\x35\xb7\x01\xbc\x2b\x52\xe1\xbc\x42\xb1\xdf\xea\x49\x7c\xc1\xcd\xfc\x91\x77\xe4\xc8\xc0\xb1\xa3\xe5\x56\x0c\xf7\xc4\xd8\xf8\x5d\x6e\x21\x95\xa1\x20\x1b\x04\x02\xa0\x03\x1d\x61\x49\x88\x1e\x55\xc4\xb4\xa1\xaf\x2c\x67\x58\x74\x31\xdb\x42\x96\x5a\x86\xed\x1f\x2e\xd8\xc0\xd5\x0c\xb0\x13\x60\xb6\xbe\x32\x76\x67\x83\x62\xf0\x1f\xf0\xf1\x7f\x0c\x4c\x59\x21\x84\xf5\x85\x35\xf8\x5a\x22\x41\x42\xdb\x1d\x55\x4e\xcf\x30\xb3\xf4\xbc\x3b\x46\x6f\xb3\x6a\x58\x91\xed\xc1\xba\x30\x18\x39\xe6\xad\x3f\x9a\xe7\x95\x21\xe3\x48\x73\xa9\x26\x6c\xf9\xeb\xe2\x8a\x1d\xd3\xca\x9a\xde\x9a\xe8\x71\x36\x5a\xca\xcb\xba\xf4\x9b\x7b\x18\x9f\x29\xd1\xf8\x9a\xc5\x69\x47\x17\x77\x9b\x81\xf3\x2a\x47\x5f\x36\xa0\x7e\x30\x4d\xc3\x9c\xbb\x50\xc1\x07\x76\x67\xf5\x15\x1f\x56\xd7\x9b\x60\x41\xaa\x0f\x87\x97\x75\x99\xb3\xa3\xc9\x71\x33\x9b\x02\x6f\x0b\x91\x97\xe1\x28\x78\x59\x97\x94\x1d\x4d\x8f\x31\xd9\x0b\x6f\xac\x9b\x9d\x79\xb7\x77\x4c\xd4\xb8\x38\x53\x4c\x98\xdf\xfb\xc7\x56\x2f\xa5\xc4\xcd\x21\x57\xa2\x62\xd2\xe1\x17\x24\x40\x07\xc1\x82\xd5\x1e\x05\x55\xcd\x81\x0f\xb7\x61\xb5\xfc\x19\x65\x15\x29\x0a\xa6\x2e\xce\x1d\x07\x05\x02\xbc\x82\x56\xb5\xf4\xc8\xf5\x6d\x04\x58\xf4\xcd\x31\x61\x9e\xec\xbe\x21\x16\xeb\xd3\x80\x16\x4b\xa6\xd0\x30\x8e\xc4\xf3\xda\x59\xd4\x05\x3c\xd7\x0a\xf6\x1c\x0f\x4b\xcc\x02\xc6\x6f\x83\xf6\x37\x0b\x23\xd8\xe0\x55\x67\x68\x58\xc9\xd7\xc5\x6b\xe4\x10\x0e\xb0\x63\x2d\x01\xd6\x20\xb1\x91\x06\xa0\x87\x9d\x9d\x3a\x60\xcb\x62\xbd\xe1\x9d\x09\x5e\x8d\x43\x33\x2c\x71\xd2\x12\xb2\xe1\x21\xe8\x70\x4a\xf8\xac\xf5\x5e\xf9\x97\x13\xc2\xbd\xdb\x52\x61\xd6\x70\xe1\x10\x0b\x6e\xf5\xcf\xfc\x65\x13\x63\x15\x78\x66\xc0\xb0\x2c\xca\xb0\x2b\xc3\x89\x47\x39\xb8\x8a\xce\xc3\x83\x44\xa1\xfa\x8a\xbc\x4a\x7e\x5f\x91\x57\x47\xf2\x98\x5e\x01\x6f\xb6\x2c\x00\x44\x8e\x06\xa6\xf5\x7b\x37\x88\x7a\xb3\xcb\x4e\x72\x8f\xfd\x73\xef\xb8\xc3\x9d\x55\xa8\xd5\xe3\x42\x1a\x18\x61\x4a\xaf\x36\x9b\x9e\x3a\x29\xa5\x48\xc5\x0d\xdb\x6c\x14\xb8\xbc\x61\xb8\x4d\xbc\x2a\xc4\x65\xdf\xd1\xfc\x75\xfe\x2f\xaf\xc0\xe9\x36\xe8\x98\x5f\x11\x09\xfb\x6a\xb3\x41\x80\x1f\xd1\xd3\x2e\x8c\xc9\x76\x9f\x9e\x03\xf0\xcd\x65\xe3\x02\x38\xb2\x6e\xf3\x6e\xed\x71\x99\xb3\xa6\x21\xd7\xe8\x8f\x58\x24\x89\x7e\x68\xc1\x75\x9b\x69\x2b\x1b\x1f\xc4\x22\x14\xfd\x43\x57\xa7\x53\x22\x03\xff\x56\x70\x0c\x76\x3d\xf8\x03\x95\x3e\x39\x68\x0c\xfa\x66\x15\x71\x3c\xaf\xf2\x0a\x16\x22\xea\x3b\x7e\xfd\xc7\x40\x8e\xad\x09\xb4\xff\x00\x74\x59\xd7\x00\xa6\x92\x0e\xe0\x88\x1c\xdc\xc1\x20\x92\x03\x2f\x06\x76\xb3\x8c\x8e\x0c\x15\x1d\xf8\xc2\x8e\x47\x8d\x89\x89\xd7\x67\x84\x1f\xe9\x06\xac\x2d\xad\x75\xcc\x09\xf1\x2c\xd4\x58\xb0\x8f\x4c\x48\x86\x30\xe9\xee\x73\xe5\xf7\xb8\xb7\x68\xf3\x58\x29\xc2\x94\xd8\xda\xcd\x22\xde\xea\x1e\x64\x24\xda\xe0\xba\xb9\x90\x55\xd2\xd7\xe4\x53\xb4\x7e\x12\xb7\xaf\x4f\xc6\xa7\xb1\x0d\xb1\x6a\xaf\x01\xd8\x47\x17\xff\x0e\x88\x84\x7d\x06\xc1\xcc\xb0\x99\xe6\xd1\x06\xd9\xb5\xad\x31\x3f\x92\x93\x47\x99\x70\xba\xf1\x21\x08\x49\x86\xcb\x68\x1f\x16\x8e\x42\x7f\xc0\x64\xd8\x32\x52\x06\x92\x3d\xb2\x12\x63\x79\x51\x88\x03\x85\x26\xd8\x73\x8e\xd6\x9b\x24\xcb\x2c\x99\xdd\xe1\x63\xb9\xac\x4a\x86\xa6\x58\x73\xf3\xfa\xf5\x11\x3f\xa6\x0a\x37\x44\xaa\x7a\x95\xb7\x5d\x07\xec\xe8\xc5\xde\x0b\xa1\x5d\x47\x93\xe3\xe8\xec\x49\x79\x0f\x13\xa6\xd3\x8a\xa0\x2c\xe6\x22\xcc\xf1\xf2\xb1\x58\x36\xa4\x23\x8e\xf6\x8e\xba\x6e\x83\x2b\x68\x16\x6c\xa2\x62\xed\x1c\xec\x34\x7f\x11\x65\x0e\x4b\xcb\x2b\x98\x31\xf5\xac\x89\x20\xf5\x5d\x0c\xc8\x70\x58\x37\x6e\x7c\xab\x76\x7f\xed\x92\xdc\x9d\xce\xaa\x27\x74\x32\xdb\xdd\xf5\x91\x6d\xda\x03\x03\x60\x3c\x45\x7b\x70\xe0\xc8\xa5\x94\x16\x63\x73\x08\x63\xaf\x0f\x1f\x31\xbe\x30\xba\x08\xf7\xee\x31\xf5\x2b\xce\xc9\x0e\x76\x4a\x0b\x32\x72\x7c\xc8\x08\x93\x65\x94\x1c\x98\x10\x53\x56\x99\x65\xcb\x74\xf1\x3e\x2e\x3c\x0f\x13\x2a\x0f\x69\x64\x38\x09\xe1\x12\x6c\xfe\x50\x68\xfc\x45\x94\xda\x38\x5d\x44\xf9\xd5\x75\xf9\x78\x3d\xc3\x65\x57\x6f\xa3\xc4\xcd\x00\x1c\x3c\xae\x18\x57\x83\xeb\x4a\x5d\xd4\x6b\x35\x80\xcf\x07\xb5\x18\xd8\x16\x8c\xfe\x44\x83\x9b\xa6\x21\x46\xab\xd1\x82\xb0\xf5\x3b\x6b\xfb\xcc\x73\x33\xf3\xdc\x6b\xc0\x5a\x33\xcf\x81\x23\xaa\xbb\xb3\xe8\xb7\x64\x9d\x4e\x94\xbf\xa3\x64\x1f\x1f\xd7\x71\x33\xed\xc9\x51\xdb\xd0\xf5\x4d\x95\x65\x68\x04\xcf\x23\xe3\x15\x34\x72\xfa\x13\xf8\x8d\xb3\xac\x0a\xb5\x66\x99\x7a\x4c\xab\xa8\x38\xb8\x33\x35\xba\x6a\xb3\x64\x35\x33\x1f\xd6\x27\xb8\x16\x38\xfe\xc7\x44\x99\x26\x85\xa5\x46\xd5\x1c\x6d\x23\x57\xb0\xa5\xe2\x6a\x34\xc7\x6e\xfd\x80\x8c\x32\x03\x15\xb8\x21\xee\x47\x17\x31\xf8\x0b\x08\x46\xd4\x67\xc8\xd2\xee\x38\x24\xce\x43\x73\xe0\xdb\x3c\x52\x66\xd9\x1c\xc8\x13\x1e\xea\x49\x2d\xe4\x4d\x89\xb1\x93\xf8\x42\x81\x66\x73\xe6\x91\x6a\x8b\x59\x2d\x94\xb2\x24\xd4\xe4\x53\x98\x5c\x00\x60\x6a\x25\x2f\xf2\x7e\x8f\x86\xad\xcb\x4a\x99\x65\x95\x1a\x7d\x46\xcb\xca\x04\x4e\xe0\xb1\x9c\x11\xae\x98\x07\xe9\x88\xf3\x68\x5e\x35\x65\xb3\x82\x08\x26\x1f\x10\xd7\x4d\x6c\x08\x6c\xa2\xff\xaa\x26\x9a\x35\x08\xcd\x73\xf1\x7f\xb6\x9e\x12\x22\x52\x8e\xd4\x54\xc0\xac\xeb\x56\x36\xfe\x66\xbb\xe9\xd0\x85\x6a\xa9\x0f\xd2\xa5\xa5\x04\x85\x52\xec\x6a\xa5\x46\xb8\x21\xee\x84\x05\xfd\x5a\xbc\xd4\x62\x24\xf0\xf4\x2c\xbe\x75\x42\x63\xfe\x1a\xac\x2f\xbc\x48\x9b\x73\x62\x45\xd8\x5c\x34\xc4\x2b\x65\xa3\x95\xe2\xa6\xde\x1e\x1c\x7a\x58\x59\x83\xfc\xad\x2b\xb6\xe0\x2c\xe7\x8e\x5d\x7a\xb7\xe6\xaa\xba\x62\x54\x58\x85\x62\x8d\x6f\x3d\xbb\x37\x12\xa0\x06\x6b\xe7\x1d\xd0\x81\x18\x61\x24\xfa\x8c\xca\x50\x9b\xe7\x12\xb4\x17\xbd\x53\x73\xfe\x9b\x4d\xef\x2b\xc9\x96\x67\x59\xa6\xff\xdf\x6c\x0c\x30\x28\xa9\xa9\x6b\x53\x64\x0e\x02\xd6\x15\xb3\xf6\x8d\x92\xd5\xaa\x2d\x42\xb8\xc3\x25\x2b\xc4\xf7\x5a\x04\x55\x11\x52\x69\x0f\xb3\xa9\xe7\xb2\xb2\x41\x28\x51\x84\x69\x2a\x22\x3f\x1b\x12\xe3\x9a\xc2\xcd\xac\x64\x06\x44\x5f\xef\xdf\xcf\x97\xe9\xb2\xf6\x14\xea\x5e\x41\xa9\x71\x35\xd4\xfe\xec\x56\xc3\xf0\xad\xb5\xfa\xab\x25\xf8\xc1\x56\x49\x54\x0f\xc1\xce\x68\x95\xf8\x38\x9e\xa5\x58\x30\xf1\x4b\x28\xa3\xe3\xa2\xe9\x46\xcf\x74\x40\x10\x37\xba\xd0\x48\xc6\x45\xbd\x6c\x3b\x1d\x25\x90\xb4\x4c\xe7\x5d\x32\xfb\xf3\xc5\x42\xcb\x47\x71\x0a\x55\x06\x58\xa6\x53\xd2\xd7\x96\xb3\x3b\xd5\x05\x9d\x40\x9f\x8d\x7d\x3d\x55\xd6\xf2\xfc\x2b\x4a\x9d\x39\x3d\x47\x9c\x0e\x04\x06\xc2\xd5\xa6\xb9\x63\x68\xde\x56\x34\x02\x03\xf6\x53\xaf\xc1\x72\x36\xfc\xd2\x12\x90\x31\x4a\xe7\x68\xba\x37\xc5\x76\xf5\x38\x84\xb3\xfe\x8d\x12\x76\x43\x92\x79\xcb\xde\x31\x56\xf0\x49\x3e\x3d\x65\xf6\x30\x8f\x5f\xb8\x45\xf6\xe5\xd5\xa7\xd9\xef\x6a\x40\x3b\x67\xd4\x84\xf4\x55\x83\x63\x71\x00\x4d\xef\xe3\x1e\x68\x6a\x94\x2e\xb0\x61\xea\x57\x94\xdc\x62\x02\xe4\x48\xd2\x4d\x4b\x84\x48\x4d\xa7\xa4\xa2\xb7\x0d\x29\xb4\xe4\x23\x69\x88\xa1\x48\xca\xfe\xbb\x87\xd8\x37\x32\xd1\x0c\xe0\x59\x49\xcb\x2c\x2b\x23\x6a\x32\x2f\x73\x46\xbc\x28\xba\x12\x75\xc9\xa4\x3c\xd6\x94\xf9\xb6\xf1\xc2\xab\x55\x08\x8d\xed\x6b\x3c\x4f\xaf\x63\x15\x9c\xd6\x1f\xaa\xf2\x32\x59\x4e\x6b\x73\x77\xde\xc4\x22\x10\xa8\x87\x23\xc0\xd3\x2c\x1b\x42\x6c\xf6\x5a\xa8\xf7\xe0\x98\x29\x9d\xbc\xab\x05\x4c\xca\x02\xae\x6b\x10\xef\x7b\xa1\x5e\x15\xe0\xac\x26\x65\xa3\xd1\x88\x8c\xfe\x73\xa4\x77\x5c\xf8\x84\x13\xd5\x34\x08\xcf\x5b\x56\x69\x8a\x8e\xe2\xb1\xff\x66\xb4\x03\xb0\xa7\xa2\xe0\x8b\xfa\x0a\xe1\x9d\xd1\x37\x23\x12\xa9\x86\x38\xbe\xe5\x63\x59\xaf\x45\xc9\x28\x44\xe0\xeb\x71\xbf\x19\x2f\x0a\x55\x64\x99\x09\xe0\xaa\x9f\xbd\xdd\x99\xc2\x59\xb6\xd6\x82\x23\xa4\x1a\xe9\x51\x79\x6d\x5d\x33\x63\xe3\x62\xb1\x80\x40\x08\x2f\x2b\xa9\xf4\x11\x36\xef\x26\xa1\x91\xed\xd2\x08\x62\x9b\xe0\x9c\x8d\x0b\xa5\x8a\xff\x8f\xbd\x3f\xe1\x4a\x5c\x59\x17\xc7\xe1\xaf\x52\xc7\x77\xad\x7d\xf5\x6a\xd2\x55\x49\x98\x7a\x1f\xcf\x5e\x4c\xed\x04\x38\x80\xc2\xbe\xfd\xeb\xd7\x55\x84\x08\x11\x48\x30\x24\x2a\x9c\xda\xdf\xfd\xbf\x9e\xca\xcc\x24\xd8\xa2\xd8\xcd\x4a\x37\x29\x93\xaa\x4c\x55\xcf\x3c\xa9\x1d\xde\x6b\x77\x27\x78\xe5\x9d\x03\x63\x2f\x9a\x80\xd6\x00\x40\x8f\x7e\x26\x7b\xdf\xe0\xdf\x09\xbe\xcb\x57\x4d\x8c\xa7\xda\x9d\xfc\x50\xda\x8c\x74\xbc\x7f\x6a\xf3\x93\xf0\x6a\x7c\x1d\xf0\x37\xdd\x8b\xe5\xc1\xb5\xdd\xc7\xb0\x6c\x29\xfe\x30\xee\x63\x0c\xff\xf8\x63\xc7\x34\xb8\x65\x99\x4b\x2c\x6a\x87\x1a\x6d\x6d\x47\x07\x61\x34\xee\xd8\xb6\xe3\x06\xf4\xee\x4c\x4d\xa9\x76\x38\x9c\xac\x36\xfa\x67\xfc\xfe\x2e\xd7\x35\xf7\x82\x7f\x1a\xe2\xf4\x23\x1c\xc6\x16\x38\x57\xb0\xcf\xe8\xe4\x56\x7b\x99\x28\x3b\xea\xd5\xf5\xe5\x9a\xb4\xc1\x40\x33\x5a\xfe\x09\xfe\xc6\x71\x90\x8a\x27\x58\x3f\xd0\x80\xe5\x8f\xa3\xdc\x98\x3f\x44\xa0\xa0\x8c\xa1\xb3\x5d\x77\xb2\x42\xa6\x68\x67\x5f\x8b\x54\xc9\xb3\x23\x8e\xb2\x93\x5e\xb4\x02\x81\xc7\xc5\x7f\x1a\xff\x0e\xd4\x46\xc6\xfe\xfe\x1e\x8f\x80\x0e\x1d\x68\x8d\x7d\xf2\xc3\x13\x7e\xfe\x1b\x24\x1e\xd4\x80\x3f\x18\x7e\xb5\x03\xf1\x47\xe7\x4e\xec\x07\xd6\xae\xb9\x77\x60\xee\xef\xc3\x9b\x4c\xe0\xef\x5e\xcc\x9c\xbc\xf7\x5f\x4f\x1b\xaf\x7f\xd7\x7e\x84\x67\x1c\x4f\x83\x41\xf7\xa6\x3e\x4e\x34\x6f\x2b\x0c\xe2\x02\xec\xde\x7f\xe9\xa1\x57\x3b\x63\x66\x25\x10\xff\x81\x79\xa6\x15\x78\x64\xbf\x2e\xb6\xe5\x83\xa2\x9b\x86\x12\x7f\xb5\x77\xa3\xf5\x2f\x11\xf9\x6a\xef\x5a\xdf\xf1\x8f\xd8\x41\xc9\x3b\x78\x60\x7d\x27\xf1\x33\x72\xf4\xcc\x81\xf5\x5d\x0a\x4e\x07\x29\x2c\x3d\x77\x5b\x5e\x47\xe7\x9f\x68\x49\x2c\xf8\x1a\x1c\xef\x83\x84\xfd\xcf\xec\xa2\x24\x40\xe1\xfe\x9a\x79\xc6\x95\xe1\xbe\x6a\x5f\xa1\xcb\xde\x34\xc5\x3a\x30\x76\x93\xca\x2c\xba\xf5\xe8\x57\x51\x88\xc4\xfe\xd3\x83\xe1\xbc\xf4\x62\x7f\x85\x9e\x91\xc3\x5d\x63\x57\x4a\xee\xed\x7d\xdd\x35\x0f\xbf\xf3\xe6\x8f\x83\x30\xb5\xb3\x3e\x4b\x95\xbe\x6b\x1d\x02\x45\x09\x32\xa8\x98\x7b\x5f\xad\x3d\xc6\x42\xc6\xff\x50\xdf\xdb\xfb\x67\x17\xc7\x0d\xa2\x33\x5d\x80\xfe\x0b\x18\xe6\xbf\xff\xf8\x6e\xc1\xff\xfd\xe7\xcf\x99\xa8\x59\x13\xbd\x12\x17\x8c\x3d\xef\xee\x94\x4d\xae\x0e\x81\x15\x35\x36\x0d\x8d\x27\xd4\xd7\x2d\x6d\x88\xdc\x13\xe2\xfd\x50\x44\x55\x4d\x0b\x92\xcd\xf7\xf9\xe1\x7b\x2e\x1e\x7e\xb1\xbd\x51\x5f\x5a\xa6\x3a\xfc\xf2\xff\xe3\xc9\xed\x74\xfb\x8b\x97\xa2\xfe\xcb\x8e\xaf\x1b\x08\x6e\xe9\xc7\x9b\x8b\x3b\x7b\x07\xc3\xc3\x7d\xcf\x5d\x78\x9f\xfb\x0b\xc7\x81\xc0\xa7\x77\xff\xc9\x24\xff\xd2\x84\x74\xea\xab\xf6\x9f\xa4\xf2\x97\x26\x48\x99\xaf\x9a\xa0\xa4\x27\x00\xc3\x5d\xd5\x2e\xcd\x8c\xdc\xc2\x3a\x34\xe0\x0e\xe6\xa1\xf1\x9d\xfc\xe0\x11\x35\xfa\x21\x39\xa0\x87\xf8\x60\x78\x48\x38\x26\x50\x12\x5c\xfc\x56\x3b\xd4\xca\x9b\x2d\xcd\x53\x76\xee\xda\x87\xc0\x6b\x08\x64\xef\x4f\xfb\xdf\x56\x34\x53\x00\x3d\x4c\xe2\xff\xa5\xfb\xbd\x5d\x2b\x3a\xc6\xf6\xf0\x8a\x5b\xaa\xd0\x8c\x0e\xd0\xbf\x1c\x26\xf1\x01\xdd\x3f\xec\x81\x34\x11\x1b\xf2\xbf\x81\x2f\x10\xfd\xdf\x88\xbb\xd8\x20\x2e\x3f\x4f\x15\x3f\xe4\x0e\x0c\xce\x2e\xaf\x08\x19\x8e\xba\x8b\x66\xf0\xb2\x7c\x7d\xf9\x0c\x24\x66\xb9\xee\xde\x80\xcb\x02\x1f\xed\x48\xcd\xf1\x56\x14\x49\x78\x9f\x92\xed\x00\x3a\xb4\xbf\x4b\x3f\x22\xf9\x02\x0e\xac\x43\xfb\xbb\x1c\x1c\xd9\xd9\x3b\x30\x0f\xed\xef\x4a\xb4\x8b\x7f\xf9\x01\xa0\xff\xc1\xae\x05\x3f\xe6\xde\xc1\x3c\x1d\x19\x7f\x54\xfe\x8c\x3c\x5f\xba\xcb\x82\x98\x8e\xd1\xda\xdd\xd5\xbe\x1b\x02\xcc\x20\xde\xdb\x4f\x6a\xca\xff\xba\xde\xea\xda\x77\x5b\x20\x3f\x0e\xc9\x17\xfc\xcf\xae\x79\x10\xe0\xad\x83\xff\x1a\x20\x70\xdb\x30\xf3\xb4\xd9\xb4\x86\x5f\xef\x76\xed\xef\x24\xfe\xec\x7b\x07\xe6\xdd\xdd\x50\xb3\xe1\x24\xaf\x72\x0d\x12\x72\x6f\xf8\xd5\x3c\x18\x98\x03\xc7\x4d\xb9\xf8\x15\x33\xfb\x7b\xe2\x47\xc4\x50\xd7\xf1\x24\x37\x5f\x35\x6f\xef\xb6\x76\x63\x75\xcc\x9b\xd1\xaf\x67\x9b\x00\x55\x2e\x0f\xb9\xcb\xbf\xa0\xd8\xe7\xa2\xfa\x97\xff\xb7\xfb\x9d\x0a\x63\xf4\x63\xff\xff\xed\x7d\xd1\xf7\xfe\xdc\x39\x2a\xd7\xb8\x6d\xcc\xe0\xf9\x4a\xbf\xe3\x1f\x7f\x41\xf3\x3b\xfe\xe1\x0f\xf8\x9e\x15\xfe\xef\xc7\x97\xf6\xde\xde\x5f\x86\x78\x6f\xea\x40\xcc\xf6\xbc\x32\xdd\x5f\x77\x23\x17\xe6\xfd\xfe\x2b\x1f\x24\xfe\x71\x3b\x7f\xc7\x3f\xfc\x6a\xde\xbc\xcc\xac\xd7\xf6\x6c\x03\xf6\xe1\xbe\x27\x6c\xc3\x77\x02\xe6\x90\x47\xa1\xf2\x0f\x73\xc8\x53\xf5\xf8\x68\xe1\x9c\x1f\xdb\xdd\x8b\x7a\x0d\xf9\xd6\x60\x38\xef\x0b\xed\xee\xd8\xaa\x6a\x5a\x9a\x6f\xcb\x80\x4b\x7b\x07\xa2\x5e\x46\xf1\xb9\x3f\xb0\xfe\xb4\x0e\x61\x66\x77\x77\x6d\x91\xda\x02\x70\x73\x7b\x5f\x88\xa4\x29\x0c\xef\xfd\xb9\xb7\xeb\x46\xb5\x34\x79\x78\x60\x81\xda\xda\x2e\x74\xd8\xb7\xf6\xf6\xf6\xfc\xc7\x05\x28\x76\x9b\x7f\x69\x87\xc6\x57\xfb\x30\xb0\xce\x46\x92\xe8\xb7\x27\xa2\x0e\x23\x8f\xcb\x8b\xae\x47\xfe\xfe\x2b\x76\x56\x88\x9d\x03\x66\xd3\x7f\x2b\x3e\x2e\xf8\xeb\xaf\xc8\x19\x21\x72\xfc\xab\xc6\x3f\x93\x18\x2e\x2e\x3e\x6e\xe2\xd8\x5f\x53\x47\x84\xa9\x71\x5f\xbd\x3e\xb0\xc6\xc5\x9e\xa9\xd2\x9e\x96\x37\xfb\x03\x6a\xc1\x37\x09\xce\x44\x26\xea\x31\x86\x18\x38\x56\x18\x70\xce\x6d\x06\x6a\x38\x04\xac\x70\xa0\x7f\xb7\x7e\xf0\x60\x11\xee\xbb\x0b\x8d\xef\xda\x8f\xc3\x7f\x45\xa6\x6f\x14\x09\xf5\x3b\xb0\x0e\x68\x50\x4f\xe0\x60\x08\xb4\x47\xf5\xd1\x8f\x8b\xbd\x28\x47\x5b\x1c\x1d\x21\xdd\x40\x16\x30\x29\xdf\xed\x1f\xde\x17\xe5\x77\xd9\xb3\x26\x7c\x55\x77\x0d\x58\xb0\xdc\x96\xf4\x2f\xec\x21\x57\xee\xa8\xbe\x37\x9c\xec\x09\xf2\x84\xea\x1a\x03\x4d\xc0\x89\xfe\xbc\xab\xe1\xf3\x66\x77\x5d\x07\x3d\x97\x31\x3e\x31\xec\x1e\xaf\x84\x03\xab\xfb\x9b\x69\xf5\xa9\xbd\xbb\xe7\xbb\x27\xb5\xce\xb9\xe1\x68\xb8\xbb\xc7\x53\x4f\xff\x9f\x69\x70\xaf\x02\x2e\x1e\xbb\xef\xf8\x1f\xd9\x07\x71\xf3\xfb\xd3\xae\xb6\xe7\xf1\x5b\xbe\x3e\xf0\xcf\x19\x44\xf5\x0e\xb0\x18\xda\xd9\xd7\xf6\x77\xd0\x9d\x65\xf6\x79\x9a\x59\x78\x0c\x44\x07\xfa\x01\x6a\x3a\x36\x6a\xe9\x2d\xee\x5e\xd2\xa1\x8f\x5e\x15\x18\x10\x1a\x78\x19\x18\xad\x25\xee\x04\x7e\x83\x8e\xe7\x9e\x07\xdf\x5d\x8f\x97\x0d\x72\x73\xbe\xf1\x29\x39\x0c\x20\x65\x0f\xc0\xf8\x9b\xd3\xeb\xfd\xad\x51\x6b\x77\x4f\x90\x80\x1a\xc6\x61\xc9\x3a\xc0\x07\x84\xe7\xe9\xf9\x6e\xfa\x64\x83\xfc\x69\xfc\x5b\x49\xf3\x55\xb1\x6b\x4f\x0f\x30\x60\x80\x0f\x7b\xff\x3a\x3c\x34\xbd\x26\xe7\xba\xcb\xbc\x08\xc6\x81\xee\x67\x4e\xf4\x5b\xb3\x40\x38\xa9\x29\x7b\x7b\x3c\x1e\xd5\x8e\x10\x2c\x85\xdf\x78\xf6\x30\x6b\xdf\x70\x9f\x77\xde\x75\xa1\x43\x92\x77\x08\x58\xf0\x7f\x76\x79\x70\x92\xbf\x48\xd5\xc3\xd1\x2e\xdd\x3b\xe8\xf9\xcb\xd4\xf5\xea\x56\x63\x5e\xe1\x5e\xed\x58\xed\x09\xf5\x77\x6f\x77\xd5\xef\xd6\x8f\xbd\x83\x21\x7c\x23\xfc\xa7\xfe\xef\xe1\x9f\xfa\xfe\xfe\x9e\x21\x0e\x01\xb6\x5d\xdc\x98\xb5\x77\xe9\x77\xfd\xc7\xde\x9f\x3d\xdf\x2e\x1d\xa4\x9f\xe3\x09\xc0\x77\xdb\x7b\x07\x3d\x7f\x05\xe1\xbf\x7a\x80\xdc\x03\x70\xf5\x70\xf4\x3f\x71\xc7\x46\x3f\x91\x19\x0f\x50\x17\x6d\xb3\x64\x3e\x69\x56\x9e\x0e\xb5\xdd\x68\xe4\xf3\x97\x2f\xed\x83\x9d\xdb\x9d\x99\xae\x8a\xee\x1a\xe1\xef\x38\x83\x0f\xe4\x93\xf5\x5d\xfb\xe1\x97\xda\xd7\xe2\x8c\xce\xd3\xae\x05\x3c\x2b\x07\xd5\x90\x11\xd8\x03\xd6\xff\xc0\xf8\x4e\x39\x13\xf1\xe3\x80\x3b\xe4\x5b\x07\x8f\xbb\xf4\x40\x8f\x33\x08\x7b\x71\x4f\x3b\x90\x78\x0f\x9f\xfc\xec\xdd\xb0\x74\x23\xa9\x38\xb8\xc3\x7f\xe0\xeb\xdd\xf9\x8b\xce\x88\xb9\xa6\x7f\xed\xba\x1e\xde\x1d\x98\x3c\x18\x7c\x48\x0f\xe8\xde\x57\xcb\x0d\xcc\xfb\xd7\xe1\xe1\x2d\x37\x4a\xdd\xee\xc2\x91\x83\xdb\xbd\xbd\xbf\x76\x77\xdd\xbb\xb8\xc3\xf6\x5c\x92\xad\xef\x1d\x50\x37\xcf\xb2\x09\xfd\xa8\x57\x99\x6e\x86\xe3\xd6\x81\xf1\xea\xcf\xa7\x1f\x3e\xed\xee\x1a\xb3\x3f\x1e\x7c\x5a\x83\x3b\x7c\x59\xdf\x75\x78\x09\x93\x57\x44\x71\x85\x24\x1e\xde\xc0\x3f\x2a\x74\x99\xe9\xce\xb5\xd3\x70\x6d\x46\xb7\x77\x8c\xed\x3c\xfb\x6d\xdf\x05\x67\xf7\x5f\x9a\x78\x4b\xfd\x92\xb1\x3c\xd5\xe6\xad\x3d\xee\x33\x16\x75\x0e\x7b\x76\x85\x88\x45\xd5\xb9\x66\x56\xbf\x88\x96\x4c\x9a\x2c\x7c\xa5\xc5\x5c\xbb\x02\x05\x83\x9b\x71\x2f\xd4\x57\x73\x85\x8f\x67\x62\xf6\x45\xe9\x03\x7c\x00\x22\xb7\x15\xcd\x36\x39\x25\x92\x03\x1f\x7f\x0b\x4c\xa4\x7e\xa8\x89\x8e\xad\xfa\x62\xa3\x1b\xb6\x15\xc4\x2e\xba\x3a\xb5\xa1\x8b\x82\x39\x71\xa8\xed\xea\xdc\x98\x49\x5b\xad\x5d\x53\x1c\x50\x6b\xa8\xc1\x22\xd8\xe9\xeb\x86\x63\x6b\xc3\x1d\x40\x24\xf6\x98\x5f\xf9\x9f\xdd\xe1\xbf\x25\xc6\xa4\xc3\xc3\xc3\xe1\x1f\x7f\xa8\xff\x4e\xee\xfd\xf1\xc7\x52\x42\x12\xfa\xcf\x21\x92\xc4\xa4\x88\x45\xf4\xb7\xe9\x20\x6a\x69\xc8\x19\xea\x46\x3b\xd2\x63\x67\x3f\x10\x83\xf6\x77\x5c\xa1\x2a\x2a\x4c\xed\xec\x1d\x74\xa2\x3e\x24\xb7\x93\x4e\x23\xae\x61\xd0\xcd\x7d\x61\xf0\xf4\x02\x3e\x7b\x35\x3c\x74\xd9\x8e\xa1\x7b\xc8\x65\x65\xe1\x23\xf1\x46\x94\x33\x1b\x06\x5c\x92\x77\x38\x64\x2c\x0e\xa3\x5c\xc6\x3f\x07\xb7\x5c\x5d\x37\x5d\x21\xf5\xc0\x00\xa6\xd1\x3a\x8c\xdc\x29\x42\xea\x63\xb2\x92\x7e\xb7\x6b\xfc\xdb\x02\x92\xec\xd3\xc6\x7f\x0e\xf8\xd7\x9f\x75\xd5\x03\x2e\x71\xc3\xb5\x3d\xef\x07\xff\x31\x87\xd1\x5b\x1d\xa8\x87\x11\x0b\x22\xdc\xd7\xcd\x17\xa0\xf2\x7c\x01\x40\x87\x0f\x29\x77\xd2\x83\xdd\x3e\xf9\x01\x4b\xea\xbb\xf9\x97\x29\x90\xaf\xe6\x8f\x03\xfb\xdf\xc6\x1f\x7f\x54\xc4\xbe\xf9\xa8\x65\xfb\x4d\xbd\xed\x98\xce\xf0\x9b\x69\x3d\x51\xab\xf5\x97\x0d\x4c\xe3\x7f\x2c\xff\xfc\x89\xc1\x33\xc6\x7b\x67\xb9\x44\x08\xeb\xe3\xdf\xc3\xef\xe6\x0f\x01\x18\xd5\x80\xe0\xd3\x30\x2f\x01\xa2\xdf\xd5\x1f\xff\x70\xa1\x63\x66\x1d\xcc\x60\xbe\xbe\xfb\x2e\xe4\x2d\x0d\x20\xf1\xc7\x3f\x9e\x34\x32\x6b\xd4\xf3\xee\x0e\xa7\x13\x6e\x0f\xd4\xa1\x43\x37\xa5\x76\x4b\x1b\x58\x9a\x4a\x6d\xad\x05\x7c\xd1\x1d\x7d\x34\x2d\x64\xde\x21\xde\xd7\xb1\x55\x97\x2a\xed\xec\xc5\x66\x7f\xfa\xbe\x41\xcf\xb9\x0f\x3c\x6f\xe8\x3f\x07\xfd\x28\x54\x47\x29\xe1\xe1\xd4\xb2\x8d\x30\xcf\xfb\xae\x60\x47\x9b\x6e\x6a\x5a\x31\xfe\xc0\x9c\x2b\xd8\x13\xfc\xd7\xf5\x1e\x9f\xf7\x81\x2f\xe7\x9e\x0e\xa9\xdf\xf7\xff\xbf\x2b\x18\x1d\xec\xec\xec\x71\x54\x07\x9d\x3c\xf9\x2c\x60\xbe\xf7\xf7\xff\x39\xa8\xf8\xa0\x77\xb8\x83\xc5\x84\x28\xa5\x76\x0e\x2a\x5c\x2d\x7b\xe3\x1f\x86\x03\xb7\x70\xa3\xe1\xa1\x01\xcd\x9e\x6e\x74\x87\x87\x16\x34\x0d\x9e\x8a\xca\x3c\xa8\x00\x0a\x39\x1c\x1f\x54\x44\x38\x79\x78\x0e\x0d\x93\xc6\x93\x66\x8d\x3d\x36\x7c\xb8\x77\x70\xbe\xab\xf1\x8e\xc3\xbd\x89\x7b\x05\x78\x00\x9e\x8b\x8b\x4f\xb7\x5e\xa3\xf8\xac\x0f\x23\x09\x4a\x78\x85\xf8\x88\x73\x9e\xde\xaa\x76\xcc\x27\x6e\xb7\xe6\x2a\xa2\xe8\x81\xc3\x7f\xe1\x83\xe7\xdd\x1d\x17\xa5\x88\xf6\x38\x72\xbd\xdd\xff\xe1\x39\x54\xfe\x67\xef\xc5\xd5\xf3\xaf\xf8\xf0\x60\xe0\xce\xde\xde\xc1\xbf\xfe\x75\xbb\x6b\xef\xc1\x23\xb7\x1d\x6d\x38\x33\xd7\x8d\x0d\xc8\x97\xb1\x5d\xfb\x30\xbb\xbb\xb7\x77\x60\x43\x67\x23\x9e\xc7\x2b\x60\x53\x7d\xe6\x4b\xe3\xa5\x0d\xf7\xcc\x49\xb6\x5e\xe3\x12\xeb\x77\xed\x07\x63\xc6\x77\xa0\xe8\x3f\xf6\xfe\xf8\xc3\x74\x69\xbd\xcf\xed\x6b\x3f\x22\xde\x7f\x9c\xcb\xe2\xcf\x07\x4c\xfb\x61\xe7\xa0\x22\x3a\xc6\x80\xaa\xdd\xc3\x56\xd0\xcc\xd1\xa1\x96\xc4\x87\x0e\x3c\x97\xa6\xb5\x86\xee\xa2\x3b\xac\x1d\xcc\x82\x7a\xf8\xa2\xb3\xb1\xc5\xa1\x57\xe5\xb8\x74\x50\x3c\xd4\xc4\xbb\x48\xba\x93\xea\xc2\xec\xaa\x2e\x0c\x8d\xff\xf2\xf6\xee\x92\xe6\x1e\x77\x41\x88\x10\xfc\x11\xd1\x38\x3c\x2c\x73\x3d\x5f\xe1\x3e\x3b\xc3\xe4\x3f\x9a\x68\x8f\x0f\x2b\x07\x9a\x1f\xb6\xcd\x3f\x8f\x37\xc4\xe1\x39\x7a\xbd\xcf\x10\x75\x36\x0d\xed\x6f\xb1\x71\x61\x19\x38\x5e\xc7\xec\x76\xfc\xc7\x1f\xbb\x26\x90\x58\x20\xb4\xff\xb2\xc5\x5b\x7d\x78\x5d\xcb\x73\x17\xf6\xdb\x96\x4b\xa7\xa1\x49\xf7\xc4\xdb\xd6\x81\xcd\xff\xdc\x8b\x11\x62\x3b\x4a\x88\xf7\x0e\xe0\x92\x87\xa6\xbb\xe7\xde\xd8\xfc\x26\x11\xfc\x60\xef\x1d\x04\xf8\xc3\xda\xfb\x37\x49\xfe\xf1\xc7\xae\xf5\xe5\x30\x89\xf7\x0e\xc2\x7a\x78\x61\x7f\xdf\xeb\x09\xae\xf2\x67\xe4\xf8\xae\x60\xb9\x59\xe9\x6e\xc7\x87\xba\xeb\x71\xe6\x0a\xd6\x20\xdc\xec\xfd\x73\x50\x84\x6f\x16\xff\x1e\xae\x56\x5d\xbf\x0b\x78\xc1\x48\xd5\x81\x69\x6f\x33\xe0\x15\x38\x32\x46\x00\x00\x6e\x95\x81\xa6\x86\x28\x72\x07\x1f\xa0\xb6\x5b\x54\x60\x7f\x07\x7d\x0f\x6b\x0b\xec\xef\xfc\x08\xd5\x66\xfe\xec\x02\xd8\x1d\xf8\x4b\x27\x3e\x65\xbe\x3f\xe6\xd7\x19\x4c\x0a\xc0\xba\x61\xba\x62\xe4\x9d\x69\xb9\x37\x0b\x95\xb9\x2f\xe9\x72\x61\x9c\x00\xe8\x4d\x37\xda\x5f\x44\x8f\x90\xfc\xe3\xfb\xc6\xdd\x8e\xf7\xe2\x4f\xc9\xe1\x1c\xbe\x1b\x5c\x83\xfb\x9c\x57\x77\xc3\x3f\xf6\xbc\x13\xd9\x66\xd3\x0a\x4e\xc0\x1f\x70\xc2\xb1\xd5\xc3\x87\x5d\xbe\x87\x3f\xb9\x52\x83\x1f\xe0\x2d\xaf\x87\xb7\x44\x77\x4b\x87\x91\x3f\x0f\xa6\x41\x62\x92\x6f\xfc\x0f\xf6\x1d\x6b\x3c\x38\xd9\x3b\x28\xcd\x01\x94\xbd\x03\x80\x14\x71\xa8\xd9\x85\xc9\x24\x5b\x61\x26\xd4\x38\x7f\x98\x99\xcd\x1f\x86\x97\xd8\xdd\x9b\xcb\x2c\x66\x96\x67\x16\xb9\x15\x37\x0a\xbd\xf6\x5f\xb0\x28\xdc\x92\xd7\x9a\x1b\x89\x97\x3f\xd4\x44\x77\x42\x3d\x14\xaa\x6b\x7e\x81\xac\xc0\xc0\xcd\x79\x71\x6e\xde\x9e\x4a\x67\x1b\x37\x76\xe7\xf7\xfe\xda\xcd\xbb\x58\x76\xe7\x76\xbc\xb3\x77\x10\xfc\x41\x77\xf6\xf6\xbe\x02\x80\xe7\xc3\x0f\xea\x56\x39\x88\x79\xb7\x04\xd6\x8b\xd3\xea\x79\xc5\x03\xf5\xff\xf9\xef\x8e\xf7\x4a\x3b\x5f\x77\x24\x4c\x32\xea\xce\x01\xe7\x6d\x86\x3b\x5f\xbf\xef\x64\xef\x2c\x5d\xa5\x5f\xb2\x4d\xbd\x75\x4f\x0d\x56\x2a\xd7\xd0\x51\xb9\xc6\xda\x62\x1a\x61\x86\x09\x13\xa4\x5e\xab\x71\x2c\x5e\x32\x25\xad\x25\x76\x0e\x82\xfe\xaa\x6a\x51\xbf\x37\xda\xc7\x58\xc2\x4c\xbc\x44\x18\x09\x5d\x86\x89\xb4\xd2\xc6\x04\x29\x99\x6b\x36\xc4\x34\x4a\xda\x63\xd8\x95\x8d\x22\x22\xb9\x6c\x77\x5e\x23\x8f\xe7\x9e\xda\xac\x3e\x4c\x21\xd1\x8f\x56\xa1\xba\x65\x36\x75\xfe\xd9\x8a\x59\xf8\x6c\x92\x8c\xe1\x57\x49\x30\x41\xb2\xc4\x36\x12\x64\x8c\x04\xc9\x41\x82\x74\x0a\x9f\x51\x26\x4c\x20\xdf\xe4\x3c\x9c\x92\x0b\x63\xd8\x99\xdd\xb2\x83\xca\xdf\x1a\xa7\x4c\x49\xc5\x26\xa4\xd7\xd6\x35\x6b\xc8\x2e\xca\x35\x54\x2f\xc2\xff\x6a\x0d\xe5\x8b\xf0\xbf\x5a\x63\x42\x46\xec\xc1\xe4\x10\xef\xbf\x84\xa7\x66\x49\x56\x64\x45\x26\x32\xb4\xa1\x21\x11\x99\x09\x92\xa1\x9a\x30\x52\xad\x34\x61\x77\x9c\xc5\x88\x64\xe0\x47\x2f\x63\x44\x88\x8a\x11\x31\x4d\x8c\xea\x26\x46\xc4\x52\x31\xba\x84\xc3\xc5\x32\x46\xd7\x65\x8c\x0a\x59\x8c\x4e\xfa\x26\x46\x56\x0b\xa3\x82\x86\x51\xa6\x31\xc6\x88\xdc\x35\x31\x22\x74\x80\x11\x49\x9e\x61\x24\x8d\x4c\x8c\xfa\xc5\x01\x46\x9d\xa7\x12\x46\xf7\xcf\x70\x75\x92\xc5\xa8\x55\x68\x61\x44\x52\xd0\x99\xe4\x30\x22\x6a\x05\x23\xa9\x30\xf2\x5a\xe4\x8e\x1f\x2b\x61\x26\x25\xa3\x5f\xa1\x44\xdb\xe6\x90\x7f\xdf\x7a\xb6\xc6\x84\x96\x98\x85\xf7\x75\xd7\xb1\x34\xc2\x2d\x31\xcb\x48\x4a\x4b\x86\x03\x72\xfa\x70\x48\x1d\x3e\x42\xc0\x84\x2f\x7d\x22\x89\x5d\x44\x30\x5f\xfe\x92\xbb\xfe\x31\x92\x9e\x4d\x13\x33\x39\xa3\x29\xe1\xd8\x32\x1d\x38\xb6\xc9\xc7\xe6\xe1\x6e\x12\x15\xbb\xde\xa7\x65\x82\x74\x74\xaa\x51\xb1\x3b\xf1\x7c\x79\x58\x01\xac\x58\xac\xa1\x22\x9f\x16\x09\xc3\x94\x33\x4c\x3e\x74\x63\x02\x69\x9e\x9c\x63\xf4\x08\x5f\x5b\x87\xa9\x21\x30\x53\x3a\x7c\x68\x03\x5a\x12\x1c\x1b\x40\x0b\x57\xfc\x56\x12\x8e\xdd\x8f\x31\x1a\xca\x2d\x8c\x6e\xe0\x90\x09\x27\x09\x5c\xc4\x3c\x8f\xf5\x75\x5b\xcd\x85\xad\x79\xfd\x08\xac\x03\xb3\xe4\xb7\x66\x1d\x9b\xd5\x7a\x8f\x7e\xf5\x92\xbb\xb8\xc9\xd5\x18\xa3\xa7\xc1\xab\xae\xf6\x50\xc2\xa8\xf1\xba\x87\x33\x46\xfe\x4c\x99\x64\x51\xeb\xa1\xb2\x5c\xbf\x97\x47\xc0\x0b\xf3\x93\x57\xf0\x60\xf0\xc6\xe7\x06\x46\x64\xdc\xc2\xa8\x04\x7d\x8a\x15\x8c\xbe\x35\x31\x52\x09\x46\x69\x03\xa3\x74\xa5\x85\x51\xbb\x84\x91\x46\x30\xea\x1b\x98\x91\x44\x14\xf8\xf2\x74\x48\x9b\x3d\x6a\xa8\x2e\x25\xd9\xc7\x80\x0c\x09\x73\xc4\xae\x8b\xab\x56\xa6\x24\x2b\x6e\x4c\x90\xda\x65\xc3\x16\x8b\x88\xc8\xb8\x04\x7b\xab\x89\x11\x20\x9e\xd6\x4d\x13\xa3\x26\x2c\xf1\x5a\x03\xa3\xa2\x99\xc3\xa8\x54\xc2\xa8\x6d\xb4\x30\xb2\xc6\x18\x29\xb0\xe6\xb3\xf0\x35\xe0\x0d\x1b\x0d\x8c\x48\x7e\x80\x11\x2c\xe2\x16\x20\x33\xa5\x6f\x60\x54\x1d\x55\x22\x9d\x9e\xe0\x4b\x7d\xcb\x61\x54\x68\x46\x3f\x59\xe5\x0e\xa3\xa7\x32\x46\xaa\x89\x51\x1b\xf0\xa8\x89\x31\x1a\x62\x8c\x5a\x59\x8c\x1e\x55\x0f\x1b\x66\x31\x46\x1a\xc6\x68\x84\xbd\x03\x4e\xd9\x3d\x50\xf0\x7b\x0c\xbd\x1e\x27\x65\x8c\xea\x65\x8c\x00\xf1\xb6\xcb\x18\x95\xb2\xee\xdf\xf7\x59\xf7\xbc\x94\xf6\x46\x4a\x49\x3c\xeb\x08\x8c\x59\xfd\xd4\x4f\x5c\xe7\xe5\xce\x4c\x96\x62\x38\x54\x73\x6c\xca\xa6\x69\xdc\x24\x79\x9b\xb1\x49\xf2\x3b\x6d\x4c\x90\x12\x67\x3e\x10\xb5\x38\x8e\x48\x0f\x30\x92\x8f\x61\xa5\xa4\xe0\xcf\x3b\x98\x7c\x0a\xd0\xa5\xc3\xac\x53\x98\xd8\x51\xca\x5c\x75\x9d\xdd\x70\x3a\x58\x5e\xee\xe7\x2e\xbb\x42\xe7\x89\x61\xa6\xbf\xf2\x66\xb6\x1e\xbc\x55\x17\x6f\xac\xda\xff\xd5\x03\xe7\xf7\x7f\xeb\x47\x7c\xbf\x3b\x2d\x1a\xc8\xd2\x09\x4d\x0e\x21\xa2\xd8\xbb\xcd\x52\xdd\x31\x02\x36\xc6\xc7\xa4\x97\x62\x99\x73\x32\x3e\x32\x7d\xf3\x85\xce\x04\x62\x15\xc6\x29\x51\x45\xe4\xe8\x26\x0b\xfb\x64\x69\xde\x82\x25\x6a\x2e\xb7\xc5\x87\x6f\x81\x0f\x25\x1c\x65\x43\x4f\x4d\xee\x10\x3b\x6c\x3a\x56\x9b\x55\xb3\xd5\x1a\x0a\x7e\x98\x40\x40\x96\xf0\x99\x4c\x4f\xd8\x3a\x3a\x6d\x39\x88\x64\xef\xe1\x57\x2d\xf9\x1c\x35\x30\xd3\x69\x25\x8a\x68\x4f\x9d\x26\xf5\xb9\x5b\x94\x87\x6b\x16\x39\x9b\x9b\x14\x87\xfe\x45\x23\x17\x5e\xb4\xc1\x3a\x19\xd5\xf9\x40\x32\x3e\xc3\x7c\x0f\x0b\xc5\x65\x31\x39\x93\x7f\x1f\xb0\xfb\x9c\x01\x4d\x71\x06\x14\xd0\x63\x0a\xd6\x50\x07\xd0\x1c\x70\x14\xa4\x03\xfd\x32\xd0\xaf\x0d\xfd\x32\xe3\xd8\x55\x26\xc6\x86\x23\xd2\x70\xb7\x76\x65\xde\xd8\xd8\xdd\x46\x47\x2d\x1c\x7e\x85\xb3\x0e\xb5\x6c\xd3\xe9\xcf\xfa\x12\x54\x4c\xaf\xfa\x25\x88\xfb\x29\x60\x24\x7c\x0a\xbe\xdf\xec\x4f\x81\x8e\xef\x4b\x98\x25\x62\x92\x6c\xd9\x34\x2c\xf3\x51\xa7\xac\x5c\xae\xa1\xb2\xa7\x33\x38\x16\xd3\xe8\x44\x74\x02\xc1\x49\x2e\x8d\xdb\xe2\x25\x92\xd2\x47\x98\x88\x7d\x46\xe2\xb2\x70\xeb\x9e\xf6\x35\x83\xfa\xc2\x1a\xaa\xbb\xeb\x15\x8b\x6a\x4c\x44\x05\x01\x4c\xe3\x47\xa5\x53\x59\x85\x7d\x1d\xf8\x48\x39\x7a\xad\x2a\x35\x6f\x6b\x66\x5f\x0b\xf4\x11\x20\xfc\x65\xc5\xd3\x08\x17\xc9\x2f\x83\x31\x52\xf4\x24\x08\x92\x0f\x38\x32\xc3\x35\x4b\x1f\x98\x3d\x57\x2c\xf7\xb9\x09\x54\x2c\xd6\x98\x70\x29\x9e\xf8\x0f\x13\x93\x99\xe5\x19\xf3\x2a\xc1\x3f\x26\x48\xe4\x54\x85\x61\xa4\x63\xe4\x60\xff\xf8\x0c\x37\xbd\xc0\xe8\x19\x1a\x5a\x05\xa3\x5c\x13\xa3\x14\xcc\xce\x35\x36\x30\xca\xc2\xa7\x6e\x35\x7d\x28\xe4\xad\x56\xcb\x6f\x41\x7f\xd2\xe4\x2d\x82\x7d\x68\x25\xd3\xfd\xc2\xb1\x0f\x04\xa3\xbb\x2c\x4c\xb6\x36\xf0\x8e\x65\xcf\x1e\x30\xaa\xf9\xa4\x23\x3e\x0d\x35\xc7\xd0\x5d\xa5\x41\x5c\x57\x30\x4f\x4b\x30\x53\x7b\xe3\x69\x09\x48\x7a\x40\xf9\xfe\xc1\x93\xfe\xe5\x9a\xea\x8b\xef\x63\xcd\x45\xbb\xb0\xbc\x80\xa7\x21\x4a\x80\x78\xee\x32\xc0\xff\x58\x20\x52\x9e\xc2\x7a\x6c\xe4\x3c\xe2\x67\x65\x3d\x25\x83\xf1\x64\x62\x74\x66\xc6\x98\x12\x7e\x12\x97\x31\x1a\x03\xea\x77\xe5\x45\x5a\x99\x4b\x3b\x01\x67\x46\x5e\xbb\xae\x1b\xad\x8e\xa9\x75\xd9\x3e\x26\x32\x0e\x11\x26\x07\x70\xae\x3a\x08\x11\xa7\xbb\xf7\xd6\x11\xd7\x92\xac\xb2\xcd\xc2\xb7\x55\x10\xfa\x32\x27\xf0\x42\xc9\x0b\x10\xe4\x1a\xfe\x67\x82\x13\xf5\x8a\xd7\x70\x0f\x85\x27\x17\xb7\x7e\x72\xe8\x5a\x6f\x06\x1c\x3c\xa7\x58\x7d\xcd\x55\x56\xb5\x68\x97\x55\xaa\x35\x54\xa9\xd7\x50\xe5\xa2\x86\x72\xd5\x1a\xca\x15\x6a\x28\x7b\x5c\xad\x21\xfe\xbf\x50\x63\x4d\x8c\x28\xff\x17\x34\x28\x46\x19\x3e\x0f\x78\xf1\x57\x4f\x24\x53\xef\xb8\x31\x81\xa4\xaa\x0d\x8c\xd2\x4f\x75\x8c\xf4\x1c\x46\x97\xbd\x26\x46\x09\xe9\x1c\x4f\xd0\x57\x7f\xc1\x8f\xa7\x8f\x41\x6b\x08\x80\x7d\x33\xc6\xa8\x04\xdf\x2e\xd7\x88\xf5\xe7\xa2\xc2\xbc\x91\xf3\x5b\xf1\xb1\x6a\x1f\x40\xe5\x61\xd1\x28\x05\xb0\x06\x3c\xbf\xdb\x9a\x3b\xab\x13\xfd\x7e\x66\xc4\x3a\xee\x76\x05\x38\x66\xdc\xc4\xe8\x7c\x30\xd9\x58\x70\x6a\x41\x63\xa5\x51\x9b\x7a\x0b\x26\x4b\xc9\x28\x18\x1a\x6a\xc7\xb4\x68\x5b\x63\x80\xfa\xb2\xf5\x1a\xca\x5e\x78\x30\x98\x3d\x2e\xd4\xd0\xdf\xd0\x38\xe3\x3f\x85\x1a\xe3\xc0\x07\xff\x82\x46\x06\xa3\xf4\x66\x82\x63\x0d\x03\x38\x36\x30\xd2\xb3\x5b\x70\xdc\x82\xe3\x86\xde\x82\xc9\x38\x46\x16\x2f\x4c\xcb\xbe\x35\xef\x6e\xab\x03\xaa\xbb\xc2\x3c\xf0\xc4\x4a\x52\x54\x90\xe2\x59\x15\xba\x95\xc7\x2b\xf1\x9a\x29\xb2\x2b\xff\xfb\x80\x6c\xd1\xb6\x43\x75\x8f\x9b\x16\xb0\x8c\x04\x2c\x31\x59\x15\xcb\x48\xc6\x68\x29\x36\x6e\x26\x63\xd7\xee\x3d\x95\x44\x15\x1d\xb7\xce\x60\x47\x54\xd5\x67\x44\x9b\x0d\x8c\x8a\x20\xb3\x57\x81\x89\x79\xcc\x62\x54\x06\x96\x13\x04\xfc\x72\xc9\x6b\x8c\x1b\x18\x3d\x40\xef\xe7\x26\x46\x12\x70\xa3\xdc\x96\x90\x27\xee\x29\xde\x28\xf9\x0d\x18\x7e\x2c\x11\x4f\xb3\x6c\xe7\x30\x3a\x81\xeb\x7c\x6b\x61\xf4\xad\xe1\x6b\x96\xa1\x71\x9c\x73\x15\x05\xad\x72\xc5\xd3\x18\xc0\x63\xb8\xfa\xe8\x0a\x06\xe1\xc0\x1d\x1e\x5c\x87\xeb\xac\x83\x23\xd0\x99\xeb\xac\xe1\x3a\x70\x41\x63\x44\xf8\x75\x18\x51\xe2\x2c\x8a\xd5\xd6\x0c\x5b\x37\xe8\x97\x9c\xa3\x19\xe6\xf0\x36\xab\x5b\xda\x90\xe5\xf9\xf7\x55\x82\x6f\xac\xb4\xc5\x32\x52\xf0\xea\x9f\x79\x86\xc6\x10\x5f\x1f\x1f\x8b\x2a\x1a\x9c\x19\xb0\xe3\x1f\x14\x44\xb2\x5a\x73\xf2\x63\x4d\x37\x78\xe7\x25\xfa\xc0\x47\x93\xee\xc7\x6e\x43\xe9\x35\x30\x72\x08\x46\x89\x12\xdc\x62\x00\x5f\x04\xa6\x08\x0e\x39\xf0\xd5\x1e\x61\x82\xa7\x1a\xae\x88\x38\x0f\x75\xd2\xa1\xe1\xaa\x74\xc6\xd0\x37\x37\xf6\x3e\x7e\xad\xe1\x19\x0c\x02\xcb\x41\xd0\x80\x53\x59\xc0\x1e\x8e\x6f\x5d\xa8\x97\xf0\xcc\x99\xc8\x53\x9b\xf6\xa9\xa5\xd2\x37\x9f\x06\x02\xbf\xe4\xb7\x9b\x86\x07\x8c\xae\x68\x64\x1a\xac\x5e\x0e\xa3\x54\x0e\xa3\x34\xa0\x29\x67\xde\x34\x98\x56\xcb\x6c\xae\x69\x12\x7e\x3f\x58\x98\x9c\x84\xe5\x60\xe1\xd4\xb9\x77\x46\x6f\x3c\x05\x20\xdf\xfe\x36\x13\x30\xd6\xbc\x46\xaf\x85\x51\xfd\x6c\xc6\x04\xcc\xfc\xee\x25\x7a\x7b\xa5\x9b\xf7\x6b\x58\xfd\xd2\xef\x86\x83\x2e\x0d\x8c\x1e\x80\x2b\x4f\x1a\x13\xe4\x60\x39\x3c\x54\xd6\x8c\x96\x39\x7e\xeb\x99\xe0\xcd\xdf\x67\x22\x1c\x29\x72\x99\x5a\x30\x09\x75\x8c\x2c\x9d\xb8\xac\x6a\x0a\x3a\xce\x9b\x84\x2b\xdd\xbc\x3d\xa2\xbd\x9e\xd6\x36\xd7\xc4\x1d\xfd\x2e\x33\x31\x9f\x3b\x5a\x0e\x1c\xaa\xb4\x67\xaf\x8d\x28\xff\x5e\x13\x30\x8f\x24\xcf\xf9\xee\xc6\xed\xa9\x43\x8d\x2d\x45\x58\x2b\x45\x68\x61\xd4\x27\x18\xa5\x7b\x0b\x41\xc0\xb8\x2d\x39\xfa\x5b\x23\x22\xbf\x49\x5c\x9f\xa1\x5f\x79\x2a\xb8\xc5\xfe\xc1\xa3\x09\xd9\x0a\x46\x8f\xd0\x27\xf8\xf0\xe9\x12\x46\xdc\x3c\xe9\xb1\xa6\xbc\x31\x73\x2a\x6a\x8e\xea\xf4\xd7\x01\x14\x3e\x4c\xfc\x3e\x50\xb1\x40\x56\x53\x2a\x18\xa5\x73\x8d\x25\xe4\x85\xeb\x61\xc7\xa1\xfa\xdb\xd3\x87\xdf\x0e\x47\xcd\x21\xd1\x5d\x98\x89\xc1\x4c\x12\x9d\x77\x2c\xaa\x52\xd3\xd3\xcd\x29\x32\x76\xd5\x7a\x63\xb1\x84\x14\xc7\xd5\xec\xc1\xd7\xeb\xde\xa4\x4c\xb1\x85\xa4\xf4\x59\xa9\x2a\xb6\x18\x49\xc4\xf5\x51\x43\xc7\x50\x75\xd3\x60\xd9\x70\x02\x99\x7c\x2e\x16\xdd\xc9\x5b\xb7\xab\xe4\xcb\x1b\x13\xc8\x73\x22\x9d\x11\xbb\x88\x14\xce\xca\xb0\x97\xf3\x25\x8c\x64\xee\xc7\x8d\x4b\xde\xfc\x10\x6c\x4c\xb7\xf8\xb7\x0f\x8d\xd9\xbc\x15\x1e\x9b\xd5\x7a\x65\x3f\x00\x19\xa2\x18\xb1\x63\x77\x2d\x0f\x93\x71\x2f\x3d\xca\x87\x02\x22\xe4\x7e\xb0\x03\x8c\x1a\x4d\xdf\x21\x96\xbf\x84\xe5\xaf\x85\x40\xb7\xb8\xd8\xbd\xf6\xc1\x5f\x5c\xb3\xcc\xa5\xfa\x20\x72\x8d\x78\xc3\x8e\xde\x27\x68\x90\x4c\x23\x66\x7c\x98\x30\x43\x44\x1c\x3f\x66\xb4\xf8\xd8\xbb\xdc\x74\x6b\xf5\x11\x3f\x33\x76\x0d\x77\x63\x92\x17\x9c\xe2\x03\x8b\xad\x77\xcd\x2e\x50\x9f\x6a\x0d\xe5\x0b\x35\x94\xaf\xd7\x50\xfe\xa2\x86\x8a\xd5\x1a\x4b\x62\x94\x08\xff\x71\x47\x51\x49\x56\x98\x20\x25\x6a\x97\x70\x39\x60\x3d\x8c\x26\x46\xf2\xbd\x86\x51\xfa\x59\xc6\x48\x7f\xe2\x77\x90\x22\x77\xc8\xd1\x8e\x4e\x6f\x73\xd4\x68\x69\x16\x75\x23\x0e\xca\x70\xaf\x6a\x0d\x5d\x54\x6b\xa8\x5c\xe0\xf7\x65\x29\x82\x52\x18\x25\x31\x4a\xf3\xdf\x44\xd4\x85\x44\x59\xb0\x25\xa4\xd7\x6d\x4c\x20\xd7\x97\xdf\x30\x6a\x69\x25\xa0\xd8\x2a\x7c\x23\xd5\x73\x94\xe0\x6b\xde\xb4\x1b\x18\xb5\xfb\x15\x8c\x2e\x24\x58\x31\xf2\x4d\x6b\x55\x33\xd0\x9d\xbf\xf0\xf9\xb4\xac\x64\x37\x5a\xc6\x82\x54\xdf\x04\x7b\xd5\x3b\xdf\x6d\xd1\x58\x96\x56\x62\xb6\x1e\xbe\xf2\x62\x76\x1e\x69\x24\x2a\x3f\x61\xe7\x09\x37\x6e\xf1\x79\x1e\x88\xd7\xe8\xb8\x55\x82\xdd\x46\x59\x7c\xf8\x91\x92\x7f\x41\xde\xf9\xd8\x77\x1f\x85\x46\x10\x8a\x10\x8f\x49\xf8\x39\xf3\x50\x2f\xe1\x9e\x62\x52\x2a\x86\x61\x72\xd4\x6a\xd2\x96\x17\x6b\x94\x73\x2d\x75\x28\x5b\xa8\x31\xb9\x2e\xda\x88\xff\x04\x74\x39\x54\x6b\x93\x4b\x7c\x42\xc4\x47\x74\x3f\x04\x78\x3c\x2f\xe4\xe1\x0f\xfe\x26\xb3\x10\x1b\x88\x3c\x44\x6e\x72\xdc\x13\x65\x05\x72\x5a\x4f\xeb\xc7\x2d\x7d\x2d\xf1\x7a\xa9\x15\xe0\xda\xf4\xce\x44\x05\x1d\xb7\xce\x60\xf7\x71\x33\x1c\x78\x64\x85\x6f\xa5\x8f\x5d\x17\x3e\xc0\xa2\x02\x4e\xc8\x98\xe3\xd0\xc4\xa5\x58\xe6\xc8\xd3\x89\xe2\xcf\x55\x36\x99\xbb\x5d\x4a\xdd\x9c\x93\x12\x55\x74\x77\xc1\x1d\x95\xcf\x0d\x07\x91\xb1\xea\xa0\xab\xa6\x83\xc8\x93\x39\xd9\x80\x53\x41\x9f\x97\x3a\xbf\x6e\xd4\xec\xce\x6f\xf1\x60\x77\xb8\xec\xa0\x07\x03\xa3\xde\x73\xce\x8d\xbc\x49\xa4\xe2\x58\xa4\x47\x0d\x55\xa8\xd2\x66\x0f\x58\x4a\x77\xed\xfa\x1e\x20\xcc\x15\x07\x64\x6f\xfd\x62\x49\xc6\x9c\x3a\x56\x3d\xea\x78\x7d\x04\x7c\xee\x73\x02\x23\xdd\xe1\xfe\x84\x31\xc2\x68\xd2\xdb\x1b\x7d\x68\xfb\x28\xca\x65\x54\x15\x69\x05\x46\x95\x2f\xd2\xc7\x1b\xb1\x0b\x8b\x14\x76\x1f\x88\x86\x86\xfd\x41\x04\x47\x48\x25\xcc\x92\xd2\xc4\xfb\xb6\x4d\x9b\xb2\x1c\x7f\xd9\x04\xbc\x30\x53\xae\xc5\x36\x30\x17\x4a\xe0\x7a\xaa\x35\x53\xb2\x78\x82\xe4\xf4\xc8\x84\xbd\xa4\x19\x98\x65\x26\x96\xbf\xa9\x0f\x35\x06\xbc\xc3\x45\xc1\xe5\x25\xca\xf5\x1a\x2a\x5f\x70\x5e\x82\xa5\x31\xf0\x11\x2e\x2b\xc1\xff\x31\x2f\x9e\x45\x79\x25\xa3\xb0\xae\x8d\x09\x52\x92\x3c\x4c\xd1\xb5\x34\x7c\xea\x53\x90\x07\xd2\xcf\x12\x46\xfa\x33\x46\x97\x4f\x2b\x3b\xce\xcc\x38\xcb\xa5\x8b\x33\x63\x8d\x4e\x3a\x2f\x8c\xf8\x45\x58\x90\xad\x83\xce\x4c\x07\x1d\x89\xc4\x28\x6f\x9e\xf6\x9b\x96\xde\x6a\x6b\xb7\x39\x3a\x62\x02\xc6\x13\x80\x5a\xf0\x38\x7f\x4f\xea\x70\xa3\xd2\x02\xa8\x4d\x44\x1a\x2e\x25\x03\x21\x20\xb1\xdc\x96\x4c\xa5\x93\x4b\x76\x5d\x62\x73\xfd\xd4\x31\xba\x3a\xcf\x44\x40\xb2\x94\x2f\x79\xe1\x5e\xe3\xf6\x42\x6f\xb9\x4f\x04\x1c\x59\xaf\x25\x9d\x61\x54\xbf\xdc\xc2\xc7\xdb\xc2\x07\x49\xc4\x88\x61\x9e\xf6\x07\xe6\xed\x91\x05\x62\x71\x8c\xfe\xcb\x79\x71\xf8\x0e\x8a\x2a\x97\xbd\xed\x89\x4f\x20\xc0\xc0\x6e\x2b\xc0\xb8\xcf\x0c\xd7\x39\x19\x60\xc4\xe3\x4f\x63\x7d\xf8\x63\x04\x91\xdc\x41\x67\x68\x4c\x3f\x4f\x70\x8b\xa0\xcf\x82\xce\xf1\x86\xf7\x3c\x2c\x95\x9a\xc0\xa8\x86\xea\x05\x2e\x02\xd6\xe4\x91\x37\x9e\xee\x24\x51\x12\x15\x0f\x5b\x2a\x01\xc2\x84\x6d\x91\xe2\xc4\xdd\x5c\x3d\xc8\x11\x46\xd2\x83\x64\x62\x34\x2a\xcd\xd1\x54\xc0\xd3\x3f\xe7\x3e\x46\xcf\xb1\xc2\x88\x42\x0b\xb3\xa4\x3c\xf1\xdd\x2c\xaa\xd2\xc0\xd0\x25\x63\x97\xf3\xb4\x80\xcd\xf6\x75\xca\xbe\x56\xf9\x49\xec\x22\x29\x7d\x56\xe6\x79\x2d\x4e\x9e\xce\x1d\xd4\x7d\x30\x31\x93\x32\x31\x06\x34\x4f\x47\x9a\x61\x4c\x80\xad\x2d\x76\x43\xb0\x65\x82\xd4\xb7\x9e\x1c\xb1\x88\xa4\x76\xdd\x74\xc4\x22\x4b\xa4\x63\x42\xc5\x05\x35\x68\xdf\x35\x31\x00\xe9\x4b\xdc\x8b\x59\x77\xde\x98\x20\x39\x2d\xa7\x28\x9a\x80\x30\x62\x37\xed\xe8\x2a\x6d\x9b\x2c\x42\x31\x7d\x5d\xdd\x2c\x3d\xdd\x8b\x9b\x14\x69\xcb\xca\x07\xa7\xd5\xf8\x99\x84\x1c\x52\x92\x0c\xa7\xd7\x86\x6f\x6d\x08\x75\xc9\x6a\x65\x29\x2d\xf4\xdb\xa5\x85\x98\x7b\x33\xfe\x94\xc7\x63\x7f\xdd\xae\x30\xf4\x2a\x17\xea\x59\xdf\xe8\x61\xe6\xb6\x5e\x29\x0d\xac\x4f\x7e\xd8\x98\x60\x84\xcd\x67\xe5\xb6\x72\xce\xda\xf8\xb8\x8c\x34\x89\x96\x3b\x0e\xed\x38\x34\x66\xd8\xc8\xbb\xe2\x0d\x4b\x29\x62\xd7\x93\x6a\x12\x9e\x2e\x82\xb3\x5f\x40\x9c\x5f\xa6\xcd\xab\x6d\x2f\x1a\x34\xa4\xf1\x65\x65\xc6\x1a\x78\xf8\x40\x0b\xc6\x46\x2c\xf4\x8d\xb2\x60\x4c\x48\xd1\xe6\xd0\xa6\xb7\x57\xba\x4a\x59\xf5\xb4\x1c\xac\x2d\x96\xc8\x8a\xad\x09\x2b\x19\xb0\xf4\xa4\xd1\x4a\x1a\x62\x09\x49\x3d\x07\xc3\x9e\xf3\xcb\x67\x03\x97\x71\x1e\x00\xf1\x20\x09\x38\xd4\x1d\x60\xd4\x2f\x61\x46\x26\xd6\xb2\xa5\x0d\x6d\xd3\x60\x65\xd7\x34\xc7\x52\x5e\xd0\x1a\x10\xd9\x4c\xe1\x0a\x23\x45\xce\x61\x96\x90\xe3\x82\x8c\xa3\xd3\x66\x5c\x85\x29\x9f\x44\x79\xa1\xb5\x0a\x30\x77\x62\x11\x04\x18\xd8\x6d\x05\x18\x05\x28\xd4\xc7\xcb\x2d\x89\x78\x78\x50\x81\x1a\x7d\x6a\x75\x87\x1d\xfa\x68\x44\x4d\x31\x6e\x06\x39\x4d\x2c\xba\xe6\x18\xb4\x64\x76\x0c\x89\x26\xea\xa7\xc0\xa6\x8f\x13\x77\xb0\x27\x99\x6b\xbc\xce\x94\x3e\x3f\x31\xb6\x90\xc7\x2c\x1d\xfb\x12\x4f\x43\xd3\xb8\xcd\x5b\x9a\xd6\x0d\xf4\xd7\x17\xf5\x1a\xba\xb8\xe0\xa4\x23\xd4\x5d\xf3\x7f\x9e\x41\xe1\x15\x5c\xb1\x6b\xa2\x3f\x8f\x1b\x21\x08\x46\xfa\x08\x23\xb9\x92\x7b\x7b\x5e\xf1\x4d\xb8\xe4\x77\x60\x15\xcb\x2e\xd2\x93\xa7\x26\x85\xfd\x5d\xad\xa1\xbf\x0b\x35\xf4\x77\xbd\x86\xfe\xbe\x80\x76\xc1\xf5\x4f\xb8\x28\xd4\x18\x8f\xde\xf5\xfe\xa5\xbc\x5f\xdf\xac\x80\x15\x9c\x48\x7e\xc0\xc6\xa7\xb8\xe2\x4d\xb1\xfb\x4d\xe5\x1b\x8c\xaa\x9a\x05\x93\x8d\x31\xd2\xc7\x51\x35\xe5\xbd\x95\xc5\xe8\xae\xd2\xda\x32\xb8\x5b\x06\xf7\x05\x45\x65\x9c\xbe\x17\x34\xe3\x51\xb3\x38\x4f\x50\x2e\x04\x1a\x7c\x36\x65\x60\x23\xaf\xc6\x56\xef\xa1\x21\xb0\xe6\xac\x03\x3f\x3b\x47\xdf\xc0\xe8\xdc\x6a\xc5\x34\xfc\x5b\x01\x75\x0b\xbf\x9f\x10\x7e\xfd\x34\xba\x01\xfc\xda\x96\xa9\xdb\x71\xbd\x71\xbd\x86\x8a\x17\x5c\x7f\xcc\x12\x4f\x62\x33\xd4\x1d\x2b\xbe\x2d\x7e\x83\xcc\xe5\x4c\x90\xf2\x6d\xdd\x12\x2b\x68\xa0\x3d\xc0\x8e\x24\x92\xdc\x3c\xae\x60\xa4\x3f\x62\x94\xbc\x6b\x79\x0c\xc5\xe9\x73\x83\xa0\x6a\xb9\x11\x59\xec\xb4\x4e\x26\xc1\xee\xcd\x39\x8b\x2d\xdc\x6d\x3a\x50\xbc\x4b\x86\x8a\xb8\xdb\x5b\xb1\xd5\x37\x0d\x90\xa6\x7d\xbd\x50\x8c\x7a\x3e\x8b\x97\x13\x3e\x2a\x31\x31\x47\x59\xa3\xe5\x6f\x45\x21\x7b\xd4\x52\x1e\xc4\x34\x1a\x76\x5a\xb0\x73\xb9\xcd\x54\x0b\xa3\xce\x18\x23\xa9\x95\x8b\xc1\xc0\x1c\x09\xe2\xe4\xa8\x12\x21\xac\xa1\x00\xd2\xb8\x1c\xac\x0b\xd4\xb6\x60\xba\x05\xd3\x39\xec\x6d\xdc\x99\xac\xa8\x5b\x8e\xa1\x0d\x7c\x63\x9e\xe7\x96\x56\x10\x87\x11\xb7\xb4\x25\x14\x51\x8f\x5d\xd7\x92\xde\xfd\x58\x4b\x7a\xeb\xc2\xd3\x2d\x8d\x6a\x2d\x8c\x5a\x89\x06\x66\x32\x89\x89\xbb\xc5\xde\x6d\x95\xf6\x1e\x69\xcb\xb4\x02\x96\x80\x6b\x14\xaf\x3d\xd7\xd1\x30\xfb\x29\x69\xe8\x47\xb2\xa8\x22\xe9\xdb\xa3\x0a\xfb\x68\xd4\x45\x90\x1b\xd1\xbb\x6c\x4d\xbf\x77\xa8\x11\x2a\xc1\x27\xb4\x1b\x2c\x55\x16\x95\x40\x74\x0e\xd4\x1b\x5c\x13\xae\x24\xde\x3e\xd9\xee\x4f\x6c\x5c\x8d\x5e\xc4\x48\xb9\x68\x60\x94\xee\x97\x3d\x5d\x7a\xd5\x47\x0f\x83\xe3\x1c\x46\x69\xd9\xc2\x68\x7c\x82\x51\xe2\x9c\x78\x49\xed\xd5\xf3\x73\x3c\x33\x5f\xf1\x32\x79\x90\x83\x56\xee\x7a\xb0\x45\x75\x6f\xab\x53\x47\xd7\x64\x33\x51\xd1\xbb\x08\x03\x71\x6c\xf7\xcd\xb4\xec\xdb\x8a\xd6\x1b\x9a\xc6\x5a\x15\x90\x6b\xd9\xb6\x5a\xcd\x0f\x37\xb7\xff\x66\x78\xe5\x0d\x59\x28\x26\x67\x62\x6a\x35\x0e\x89\x75\x3a\x32\xb4\x59\x91\x77\x5c\x32\x8f\x7b\xf5\xb8\xcc\x08\xdf\x66\xc2\xa4\x82\x95\xc4\x1b\x6c\x73\xfc\x69\x2e\x4f\x88\x6b\xbd\x7a\x47\x0f\x94\x44\xcd\x6f\x3d\xf0\xa0\xe5\x89\x35\xf6\xc0\x53\x74\x6f\x39\xdd\x79\x8d\x89\xc5\x46\x7b\xda\x78\x32\x18\x6e\xc5\x50\x38\x37\xe8\xed\x01\xf8\xdc\x87\xcd\x32\xb7\x1a\xc3\x68\xec\x49\x02\x44\xd3\x7e\x85\x73\xc2\x4c\x56\x62\x14\xf0\xa8\x47\x55\xd7\x27\xbd\x14\x86\xa2\x05\xe1\x3c\x72\x23\x08\xf1\x97\x03\xfb\xf5\x26\x49\xe3\x27\xc3\x13\x2c\xaa\x28\xff\x74\x0e\xbb\xe9\x18\x23\xa4\x3f\xf8\x30\x74\xda\x26\x5b\xd2\xf0\x19\x48\xc3\x2f\x84\x73\x18\xc9\xc4\xa4\xcd\x23\xb3\x65\x77\x68\x33\x1e\x81\xf9\xb0\x64\x04\xe6\x1a\xc1\x88\x26\xae\x9f\x45\x05\x49\xe3\x44\x0b\xf6\x1b\xec\x43\xb0\x2d\x29\xb4\x79\x25\x85\x48\x6a\x62\x91\x9b\x43\x97\xa4\xf0\x3c\xfd\x85\x1a\x0a\xf6\x5e\xce\xfe\x80\xcc\x14\x0a\x35\x26\x3b\xe2\x25\x92\xe0\x47\x76\x90\xe4\xff\x8b\xe4\x95\x89\xd7\xde\x5a\x41\x3d\xb2\x52\xee\xef\xf4\xbb\xe4\x17\x97\x12\xb5\xaa\xed\xeb\x8d\x0b\x0d\xa0\xfd\xc7\xbc\x7e\xe9\x32\xb9\x3c\xa6\xfb\xa4\xae\x8f\x1d\xa4\xdb\xce\xbc\xf3\xd3\x17\xe3\x8d\x5e\x6b\xad\x52\xdf\xeb\x28\x66\x95\x60\xd4\xc6\xce\xaf\x26\xf9\x19\x64\x3a\x47\x45\xfe\x17\x26\xef\x6a\x63\x43\x68\xef\x7b\x90\xf7\x54\x32\x26\xc4\xf2\xf0\xb5\xdb\x9a\x63\x75\xd9\x59\x39\x0c\x49\xca\x56\x6b\x2c\x91\x12\x69\x60\x53\x7e\x4b\x42\x2f\xaf\x40\xe6\x7b\xc4\xb9\x14\xcf\x91\x74\x7c\x9c\x83\xfd\x96\x8d\x5d\x3f\x1b\x9b\x38\xf9\x84\xcb\x5a\x4e\xc5\x97\xb5\x43\x6d\xad\x4f\x7b\x34\x66\x21\x49\x4a\x7e\x90\x5d\xcc\xe7\x5a\x52\xce\x3a\x37\xe2\x35\x92\xb4\xbb\x06\xec\xb3\x06\x46\x7d\xbb\x85\x51\x65\x8c\x91\xce\xdd\xe6\x53\x4d\x8c\xc6\x05\x4f\x41\x19\x14\xe4\x0a\x6f\x36\xa2\x0f\x8e\xde\x63\x97\x11\x0b\x54\x42\x8b\xa5\x45\x20\xa3\x9b\xea\x19\x92\x9c\x93\xd2\x19\xb2\xc6\x53\x29\x56\x8e\x9c\x11\x0d\x2b\x1a\x28\x09\x8f\xd7\x56\x98\x7c\x29\x16\x91\x7c\x0a\xac\x85\xe7\xd6\xc1\x04\xa9\xf5\x78\x9d\x12\xbb\x48\xb2\x92\xa5\x4b\xb1\x8b\x72\xcf\xcd\x3b\x96\x8e\x97\x57\x38\xa6\x3d\xfd\x8e\x3e\xcf\x94\x91\x15\x4d\x34\xa7\x64\xe4\xd5\xb6\x8d\x91\xa8\x97\xdf\xb8\xec\x7d\x7c\x2a\x66\xd1\xf3\x78\x0c\x3b\x9e\x30\x4d\x3e\x91\x3d\x75\x34\xaf\x57\xca\xb5\x14\x45\xe2\xa9\x3d\x46\x15\x8c\x2e\x00\x02\x73\x2d\x5f\x23\xd2\xc2\xe8\x0a\x70\xcb\x13\xf1\xb2\xa5\x3d\xf9\x6a\x8f\xf8\x11\x5f\x35\x72\x3a\xf6\x2e\x78\xee\x5f\xf0\xda\x88\x25\x5b\x83\x15\x4c\x1a\xd1\x61\x5c\x25\xe2\x2b\x52\xbe\xc5\x2e\x1d\x0c\xcb\xf9\x7d\x60\x9d\xc6\x4e\x5d\xdd\x45\x74\x09\xcb\x72\x4b\x32\xb7\xe3\xbf\x5d\xbf\xa4\xfe\xb2\xe6\x62\xab\x38\xff\xad\xc8\xca\xaf\xc1\x3e\xf9\x45\xf1\x03\x2c\xfb\x08\x68\xfb\x38\x6a\x86\xb7\x79\x20\xf0\x1b\xf3\x4c\x6b\xc0\x86\xa4\xac\x39\x8e\x68\xa2\x94\x34\x86\x1d\x20\xbc\x21\x88\x59\xbc\x9e\x62\xa5\xe5\x85\xba\x54\xbc\x23\xc9\xe2\x20\x72\x0a\x1a\xa7\x05\x1f\x29\x66\xfd\xc8\x14\xd7\x8d\xaf\x11\x95\xe0\x78\xa5\xf8\xc5\x20\xcc\x73\x54\xf6\x82\x3a\x89\xdd\x4a\x34\xc8\x69\x3e\x18\xde\x05\xf6\xc2\x59\x0b\x79\x09\xc4\x17\xb9\xaf\xb1\x02\xd8\xb8\x75\xac\x8d\xe0\x59\xb2\x7e\x45\xeb\x25\x5a\xb3\x34\x43\x3c\xc4\x6f\x09\x87\x03\xc5\x84\x27\x50\x63\x2d\x38\x9b\xd4\x31\x46\x57\xf0\xd7\x93\x89\xd1\x35\x74\xb5\xb3\x93\x47\x82\xc6\x58\xf5\x1a\x70\x9f\x73\xd3\x3b\x32\xdd\xe0\xc3\x67\x9f\xfa\xc9\xce\xef\x78\x0b\x26\xc5\x7d\x5c\x8e\x35\xab\x6f\x0e\xf5\x5e\xcf\x9c\x95\xc4\x92\xa5\x8c\xc0\xa7\x2f\x1d\xf3\xe9\x93\x97\x0d\xd0\x5c\x29\xe3\x24\x4b\xc6\xc3\xac\x4e\x8c\x96\x4e\x0d\xfa\xe5\xcc\x30\x9f\x97\x4d\xe6\xf9\xb2\x75\xff\x15\x89\x01\x94\x9f\xb5\xf3\xcf\x31\x41\x56\xdb\x95\x88\xe9\x71\x2d\x06\xff\x59\x04\x7a\x56\xbf\x85\xac\x84\x9c\x37\x30\x4a\xcf\xc5\x5c\xbf\x76\xa4\xc0\x38\xed\x17\x22\xdf\xb2\x00\x2f\x18\x65\x7d\x80\x2d\x53\x4b\x33\x22\x89\x3d\x96\x74\x03\x98\x01\xba\x11\x33\x3e\x59\x9f\x2b\x40\x1c\x0e\x5b\x23\x1f\x48\x42\x37\xfc\x9f\xf6\x9e\xb9\xb7\xc6\xaf\x82\x94\xac\x5b\xb4\xde\x85\x14\x2d\x39\xd8\x72\xa3\xab\x2d\xc5\x0b\xcd\xd6\x2c\xb7\x3a\xfe\xcf\xaf\xc6\x05\xe4\x03\x48\xc4\xfa\x97\xa6\x71\x1f\xe4\x7f\x79\x9d\xd7\xd7\x92\x28\x55\xfe\xd6\x7c\x2b\x09\x74\x49\x84\x9f\x51\xa7\xb1\xac\xf9\x59\xd6\xdd\xc7\x2c\xed\x9a\xd6\xeb\xdd\xe6\x75\x7b\xf4\x26\x2b\x1b\xd6\x35\x47\xb3\xef\xc1\xea\xac\x77\x1d\xa7\x9f\x8c\x19\x67\xcf\xf0\xb4\xab\xd5\x96\xaa\xaf\xb0\xde\x6e\xb4\x47\xfa\x9a\xb5\xf6\x26\x4e\x7c\x4b\xa3\xc8\xee\x45\x0e\xa3\xac\xbb\x02\x5e\x46\x53\x3d\x63\xeb\x71\xb7\xea\x32\xd0\x0d\x55\x33\x0c\x6d\xf8\x46\x04\x35\x60\xf3\xde\x85\x82\x86\x88\xa4\x8d\x07\x33\x90\x4b\xe9\x35\x78\x29\x58\x54\x0b\x7d\xa4\x55\x5e\x5e\x64\xa6\xcb\xe7\x96\xee\xad\xb0\x00\xeb\xba\x41\xfb\x54\x7d\xc3\xe5\x17\x5b\x84\xef\x80\xa3\x3e\x20\xcd\xdd\xcf\x88\x29\x93\x6b\x94\x7e\xa6\x05\xf4\xde\x6b\xd4\x79\xd4\xbb\x3c\x39\xb4\x1b\x8c\x52\x08\x22\x65\x99\x5f\x07\x26\x15\xa8\xd2\x64\xe5\x03\x36\x26\x7c\x33\xb2\x18\xd9\xf5\x6b\x4f\xe1\xfa\x74\xa1\x61\x24\x0d\x16\xca\xa7\x5b\x63\xcf\xa6\x2f\xc2\x77\x31\xf6\xc4\x13\x3e\x9f\x3c\xd0\x9e\xa3\xdb\x7c\xb5\x07\xf9\x17\x38\x12\x2e\x78\x89\x7c\x3d\x13\x90\x9f\x87\x21\x81\x5d\xb3\x7d\xe8\x73\x20\x2b\x72\x62\xb9\x2d\x99\x5a\xb6\xe7\x12\x1b\x13\x48\xf2\x0c\x63\x94\x82\xc9\xd6\x1f\x7f\xcd\xe4\xe7\xa1\x8b\x5a\x76\x0b\x08\x6f\x0b\x08\xc9\xb8\x77\xcd\x29\xed\x53\x5d\xa5\x51\x8f\xb1\x88\xb7\xd8\x1c\xb3\x67\xc4\x99\xcb\x29\x13\xee\xcc\xb5\x4e\xbd\x38\xcb\xc4\x8d\x2b\xa7\x8e\xa1\x51\xc7\x0d\x99\xf4\xc2\x25\x2f\x0a\x5e\xc2\xb0\x6a\x0d\x65\xcf\xf8\x4f\x21\x1e\x40\x99\xc6\x28\xc3\xff\xf1\x24\x8a\x12\x96\x67\x6e\x8a\xbb\x4f\xbc\x83\x3b\x6e\xd4\x31\x97\xa4\x6a\x52\x24\x7e\xf2\xc6\x9c\xe7\x72\xb1\x36\xdb\x44\x68\xcc\x9c\x83\x34\xb8\x92\x0b\x3f\x6c\x38\xe2\xd8\x52\xd0\xf5\x51\x50\x39\xe6\x67\x7f\xa6\x19\xb6\xa3\x76\x47\x5f\x4a\xa6\xa3\x0f\x1f\xf5\x5e\xef\x15\xb1\x93\x8b\x45\x9b\x98\x74\xf2\x16\x36\x94\x35\x48\x47\xf2\xb7\x16\x46\x95\x26\x46\xa5\x0b\xdf\xe0\x12\x0f\xca\x34\x1a\x04\x69\xb8\x81\x32\x8f\xad\x9f\x8b\x7a\x5e\x59\x9b\xfd\x3c\xc6\xa8\x3d\x34\x7f\x52\xfd\x1d\xb3\xe2\x6c\xb8\xbd\x73\x8b\x4f\x3e\xcf\x2d\x66\xa1\x92\xb2\x69\xd8\xba\xaa\xf5\x7a\x6f\x61\x7f\x5d\x79\x5b\x3f\xb2\x88\xab\x52\xaa\xf5\xc1\x4f\xc2\xe6\x67\xf2\x45\x58\x27\x6c\x6e\x85\x84\xb5\xc1\x66\x89\xde\x5e\xd0\x31\x2f\x8d\x92\xe3\xd5\x2d\x15\xa6\x3c\x89\x59\x24\xc3\x8f\x5f\x02\x9c\x3c\xcb\x29\x4b\x34\xdd\xa2\x9f\x24\x5e\x9e\xa5\xa4\xf7\x69\x2c\x9d\x53\x22\x3d\xd7\xa9\x92\x09\x92\x3d\x3a\xba\x80\x2b\x35\x0b\x63\xd8\xf3\x68\x74\x3a\x63\xfd\x5d\x58\x5e\x18\x3b\x39\xf7\x82\xd6\x93\x47\x03\xb7\x91\x49\xbb\x0d\x46\x88\x96\x8c\x3e\x89\x39\xbc\xcd\x1a\x6d\xad\xa7\x0d\x27\xd3\xad\xb0\x78\x26\xa4\xcd\xca\xb4\xb2\xfc\x36\xa7\x88\xa1\x87\x76\x3c\xe1\x22\x51\x1f\x10\x44\x6e\x68\x03\xc9\xad\xec\x8a\xe1\x9c\x3f\x91\x4b\x69\x22\x90\x73\x89\x30\xdb\x88\xab\xe5\x3b\x5a\xf3\x7f\x13\x94\xb9\x65\x67\xde\x58\x3c\x22\x89\x18\xb2\x29\x53\x55\xd3\xcd\x78\x86\x8f\xbe\x78\xb9\x72\xa8\xbd\x9b\xe5\x23\x27\xa6\xd1\x71\xab\x04\xbb\x8d\xca\xf4\xd1\x2a\x7b\x85\x15\xd2\x97\x64\x5e\xca\x8f\x4c\xbc\x00\x58\x99\x1a\xb4\xed\x50\x56\x8e\x64\xc0\xe5\xbe\xf6\xa7\xa2\x1a\xab\x31\xc9\xab\x1f\x4b\x41\x15\x64\xf2\xe0\xe8\x9a\x58\x46\x64\x94\x2d\xc3\x5e\xe9\x1b\x18\x65\xae\x07\x18\x15\xe0\x85\xce\x88\xdb\x18\xca\xdf\xe0\xaf\x63\x8c\x0a\x39\x8c\x32\x27\x06\x46\x5d\xa0\x07\x6e\x19\x7e\x53\x86\x95\x3c\xc2\x4c\x8a\xd7\xda\x80\x87\x72\x86\xf1\xca\xbf\x58\x54\x96\x2c\x9b\xe1\xe6\x1c\x6c\xf0\xf2\xe3\x67\x8d\x8f\x2d\x3f\xee\xe7\x1c\x9c\x24\xc3\x65\x6a\xd9\xba\xa1\x3f\x38\x1a\xfb\xf6\x2d\x52\xf6\x5b\x51\x62\xd5\x41\x98\x20\xf5\x2f\x6a\x35\xb1\x88\xa4\xd2\x45\x13\xf6\xf0\xe1\x26\x43\x25\xca\xd4\xa6\x7d\xd3\xf2\xaa\x88\x07\x21\x79\xc5\xa9\x80\xbc\x37\x8f\x73\x70\x8b\xe3\x7d\xbb\xf7\x15\xc4\x7a\x72\x65\xd4\xb7\xae\x22\x3a\xbf\x73\x62\x3b\x25\x31\xb1\x3e\xc6\xd4\xee\x51\x63\xb6\x67\x7e\x42\x2c\x2e\xf4\xcc\x7f\xe7\x42\x4c\x2b\xf9\xf9\xbf\xef\x92\xda\x24\xb2\xff\xce\x77\x5b\x34\x96\x29\x71\x7b\x40\x59\x33\xcc\xbe\x6e\x68\x33\x15\x90\x8b\x22\x2d\x7e\xda\x63\xf0\x8d\x58\xf6\xe5\x9d\x2e\xc2\x3a\x08\x49\x85\x60\x94\x39\x6d\x7a\x2c\xf3\x96\xbb\xdd\x72\xb7\x6b\x44\xf0\xe9\xb8\xf9\xbc\xac\x59\x7a\x8b\xc6\xaa\x18\x70\x1e\xae\x2e\x0e\xa7\x79\xb8\xb7\xde\xe2\x35\x72\xa5\xce\x18\xa3\x27\x47\xde\xe2\xec\x0f\xbf\xdb\x42\x9c\x3d\x91\xa2\xba\xac\xd9\x3d\xda\x05\x2e\x61\xca\x8e\x3b\xdb\x7e\xfb\x92\xe5\x36\xb0\xe0\x72\x0d\xec\xb2\x9e\xbb\x9b\x60\x7a\x7d\x19\xf3\x76\x80\xb7\x5c\x00\xb8\x4e\x19\xa3\xfb\xdc\xa7\x41\x26\x44\x99\x40\x26\xcf\xba\x6a\xba\xe1\x00\x93\x65\x3b\xf3\xf5\x1a\x4b\x66\xc5\x6c\x58\xb6\x33\x11\x2f\xdb\xb9\xce\xbc\xe3\x8b\xb8\xc6\x76\xd1\x70\x73\x63\xc9\xcf\x2d\x8c\x80\x0c\x27\xc7\x39\x8c\xaa\x25\x8c\xb4\x44\xcb\x4b\x33\x42\x2e\xee\xee\xb6\x78\xe9\xc3\xef\xb6\x10\x2f\x49\x38\xae\xb7\x01\x11\xb9\xe7\x15\x0a\xc9\x56\x23\x89\x12\x4f\xc4\x62\x34\x2f\xdc\xbb\x25\xc0\x97\xfa\x67\xdd\x3b\xb1\x8b\xa4\x52\x2d\x0b\xfb\xf6\x25\xf9\x25\xa6\x65\xcb\x69\xcd\x44\x8e\x49\x12\x47\x8e\xa6\xa1\xda\xa6\xc1\x80\xc5\x9a\xcc\xfd\xe3\x26\xf4\x7a\x21\xf3\xcf\x27\xcc\xee\xe3\x6b\x7b\xa4\x93\xe1\x31\x46\xf9\xa7\x8a\x97\xa4\x61\x9c\x35\x27\xf2\x56\x2c\xd5\x38\xf3\x93\xf1\x00\x82\xae\xc0\x1a\x74\x88\x5b\xcf\xb5\x2a\xbd\x22\xbf\xce\x1b\xa6\xaf\x7f\x9d\x21\xe3\x8d\x04\xb6\x85\x77\x93\xf3\x83\x75\xdd\xe3\x5d\x04\x4a\x83\x6c\x0c\x9a\xd3\x1a\x9f\x0d\x07\xbd\x0b\x9a\x53\x62\xde\x64\x65\xd3\xb0\x35\xcb\xd2\x46\x71\x8d\xf2\x37\xb1\xfd\x5b\xeb\x94\x37\x89\x5e\x6f\x12\xd3\xa6\x4c\x08\x93\xb0\x7a\x1e\xf5\x96\xe6\xe5\x82\x09\xcd\x38\xf0\x5f\xc6\xc0\xc0\xb9\xbf\x48\xc0\x44\xc6\xc0\xcc\x5d\x20\xfe\xe3\x11\x50\x37\xf1\x2f\x90\x06\xcf\xb5\x7f\xd6\x96\x90\x13\x72\x52\x4e\x7a\xbf\x29\x77\xb7\xec\xc6\x04\xc9\xbe\xba\xbe\x13\x33\x68\x78\xa3\x62\x94\xbe\x57\xa1\xcd\xf3\xd6\x91\x96\xea\x00\xd2\x73\x22\x2d\xdd\x82\x16\x19\x3b\x88\x98\x78\x51\xeb\xa1\xec\xa0\x7a\x29\xda\xb8\xcb\xfa\x57\x0b\x7a\x55\xb2\x0e\x92\xef\x1b\x0e\x1a\x37\x1c\x54\x78\x80\xc3\x99\x86\x83\x06\xaa\x83\xee\xc7\x18\xa9\x7d\xe2\x59\xc8\x92\x36\x7c\xf6\xbb\xa6\x83\x64\x18\x7c\xdf\xc0\x48\x79\xcc\xb9\xbe\x84\x9c\x26\xf4\xfb\x8e\x8b\xc2\x4f\xca\x0e\xcf\x2a\xa5\xa8\x04\x23\xa7\x14\x25\xb8\xd5\x8a\x7b\xa4\x3f\xc0\x48\x4a\x97\x30\xd2\x2f\x72\x18\x39\xfe\xa9\x67\x4e\x8b\xa7\x8a\xac\x07\x95\xcb\x9f\x06\xee\x91\x21\xb7\xdb\x71\x88\xd2\x07\x3e\xdd\x0c\x73\x3c\x2d\x9b\x0b\x6a\x89\x11\x3c\x11\x64\x3c\x89\x63\xcd\xb4\x4c\xc3\x36\x99\x9f\x45\xd5\x0b\x12\x61\xf1\xc2\x9c\xab\x6c\x9f\xd2\xa3\x24\x50\x52\x27\x6a\x57\x7e\xaa\x2c\x52\x77\x10\x31\x60\xed\xdd\x15\x30\xaa\x9f\xc2\x94\x59\xae\x13\x6c\x98\x3e\x2c\x36\x9b\x41\x0e\xe9\xe9\xc6\x4a\x8c\xd4\x4f\x70\x5e\x73\x2e\xa2\x74\xcb\x91\xda\xa5\x91\x5e\x2e\x0e\x9a\x71\x8d\x07\x18\x4a\x0a\x31\x34\xf5\x6b\xf2\x80\xef\x72\xb7\xad\x79\x61\xd3\x59\xb5\x77\xe1\x06\x13\x31\xe4\x5b\xa1\xc3\x21\x75\x38\x2d\x0f\x62\x92\x32\xa2\xb3\xd1\xa9\x18\x99\x20\x75\x2b\xce\xb9\xe8\x20\x29\xd9\x68\xc1\x7e\x0b\x94\x5b\xa0\xfc\xcc\x40\x29\xc5\xad\xec\x15\xed\xe9\xf6\x6f\xd3\xea\xbe\x21\x4b\xf4\x59\xfd\x6c\x03\xae\x28\x49\xec\x39\xeb\x8a\xb3\x09\x8b\xca\x30\xbf\x5b\xc9\xc3\x37\x1b\xea\xc6\x35\x4d\xb3\x4a\xef\x95\x07\x62\xe3\xd0\xe4\xd6\xc9\x78\x8b\x92\xdf\x19\x25\xc7\x23\x1a\x2a\xfa\x40\x6f\x7b\xc6\x81\x45\x18\x79\x03\x90\x6c\x4c\x84\xbc\x32\x9a\x18\xc9\xf7\x5a\x14\x9f\x64\x46\x5b\x76\x66\x0b\x3b\x6b\x84\x1d\x12\xaf\x96\x53\x31\xfb\x9a\x5b\x22\xcc\x2b\x0b\x96\xab\xd6\x50\x6e\x2a\x85\x40\x13\x23\xca\xff\xb9\x8d\x78\x0a\x81\x85\xd9\x6a\xde\x3f\x87\x40\xb5\x81\x51\xfa\xa9\x8e\x91\x9e\xc3\xe8\x12\x16\x4a\x42\x5a\x98\x11\xe4\x43\x08\x98\xda\xdb\x26\x12\xd8\x58\x28\x79\x97\x44\x02\xe9\x09\x40\xb4\x4c\xa3\xe3\xc7\x08\x72\x0d\x3d\x93\x32\x62\x91\xab\xe3\x57\x2d\x87\x7b\x2e\x76\xd1\x71\xeb\x0c\x76\x1b\x15\x28\x13\x2f\x89\x2b\x95\x30\x92\x06\x5e\xa0\x86\x8c\x27\x3f\x87\xdd\xb9\x2d\xd0\xae\x69\xd3\x2f\x39\xcd\xe9\xd1\x0e\xf3\xd2\x70\xa1\x72\xbd\x86\xca\x17\xa1\x7d\xcc\x75\x8a\x0a\xfe\x2d\x9d\x47\xfe\xd5\xdb\xcf\x84\x43\x5b\x53\xf0\xe1\x39\x39\x4b\x18\xe9\xcf\x18\x5d\x3e\x6d\x19\xf0\x4f\x86\xbb\xa6\xb2\x3d\xfe\xea\xb8\x6b\x1e\x9c\xe6\x35\xc3\xd6\xac\xf7\x81\xd3\x75\xe7\x38\xd9\xc2\xe9\xcb\x90\x63\x7e\x2e\x38\xdd\x2c\x20\xfa\x40\x38\xad\x68\x4f\xb7\x55\xda\xd3\xfa\x1f\x49\x52\xb7\xa0\xfa\xeb\x92\xd4\x45\x88\x61\x0b\xaa\x2f\x80\xea\xf9\xbd\x6e\xd0\x36\x9d\x0a\x02\x28\x17\x6a\x2c\x79\x13\x44\x8d\x26\xa2\x51\xa3\x3c\x08\xe0\xbd\x43\x46\xa5\xf1\x65\x65\xc6\xe4\x3f\x7c\x84\x8b\xd8\xef\x1c\x76\x2c\xc5\x53\xd2\x5d\x50\xa3\x6d\xe8\x96\xed\x18\x6d\x9e\xd8\x95\xfb\x4b\xbb\xbe\xd2\xbc\xd8\x3b\x77\x9e\xe6\x7a\xd2\xea\x44\x82\x57\xd9\xf3\xeb\xf7\x72\xbc\x26\xa2\x69\x5e\x89\x42\x12\x0b\xb7\x40\x07\x93\xce\xbc\xa1\x46\x87\x09\xa4\xa1\x97\x31\xba\x30\x8e\x22\x4e\xca\x9f\x23\xd9\xab\x5b\xe3\x6e\x59\xdc\xba\x4d\xf6\xba\x36\x00\x99\x88\xb4\xba\xa0\x16\xed\x53\x4b\x6f\xba\x7e\x92\x17\xde\x7f\xdf\x47\x52\x66\x72\x51\x2c\x22\xb9\x28\x5e\xc2\x4f\x16\xc9\x8e\x17\x57\x20\x03\xbf\x61\x14\xae\xef\xc5\x2e\xaa\x3f\x98\x58\x54\xd1\x03\x35\x1a\xe2\x09\x22\xa3\x9b\x46\x45\x34\x27\x8d\xc5\x17\x1d\x53\x33\xf4\xe7\x28\x9b\x15\xb0\x56\x1e\x47\x85\x25\xdf\x86\x3a\x87\x8d\x51\xb2\x3d\x82\xb2\xf0\x2a\xad\x26\x46\xd5\xfa\x43\x83\xaf\x59\xa6\xc4\x73\x77\x5c\x98\x96\x2d\x50\x47\xb8\xb0\x74\x43\xd5\xd8\xc5\x45\xc4\x6b\x44\xa9\xac\xd5\x67\x84\x09\x52\xfa\xea\xb8\x89\xa4\x6f\x46\xb9\xe9\xa5\x18\x59\x96\x0d\xe2\xd4\x62\x6e\xc6\xa4\x59\x05\x22\x15\x73\xc5\x11\x7a\xd2\x98\xfa\xb2\x2d\x45\x7e\x79\xfd\xc8\x7a\xe5\x13\x2f\x7a\x29\x5e\xd2\xfb\x4a\x37\x6f\x73\x16\x35\x54\x33\x96\x86\x4c\x79\x14\xd5\x25\x17\x87\x9b\xdf\x65\x28\x96\xd1\x71\xab\x04\xbb\x0f\x54\x2d\x56\x72\x2d\x8c\x5a\x89\x06\x66\x32\x89\x43\x9c\x69\xd9\xe6\xed\x8d\xd6\xeb\x98\xf1\x3c\x36\x77\x3c\x51\xdb\xcb\x79\x6c\xdc\xb7\x3c\x11\x4d\x74\xdc\x3a\x83\xdd\xc7\xbd\x25\x93\x53\xf1\x77\x73\x34\x78\xb9\x2b\x5d\x35\x59\x84\xa8\x33\x25\x12\xfa\x84\x99\x40\x52\xbd\x6b\x8c\x52\x8d\x1a\xa7\x95\x80\x92\x62\x78\xc2\x31\x6c\x7a\x9b\xb5\x34\x83\x0e\x59\x35\x5c\x09\xee\x57\x3a\x12\xcf\x90\x1f\x4f\xc5\x5c\xf4\x14\xff\x3e\x6b\x0e\xf4\x63\x82\xf4\x20\xdd\x77\x44\x0d\xdd\x9d\x66\x61\x97\xe8\x1a\xf0\x4c\xe4\x66\x0c\x7f\xdd\x5f\x65\xf9\x5f\x83\x26\xfc\x45\x08\x00\x86\x09\x5f\x6c\x6e\x6b\xd0\xf4\x5a\xc6\x71\x03\x23\x73\x80\x51\xb3\x37\xc6\xa8\x6b\x62\x74\xa9\x99\x1e\x2f\x1a\x78\xe9\x86\x0e\xd6\x33\x3c\x37\x42\x0f\xea\x25\x9d\x39\x62\xdd\x5e\xef\xe1\x3b\xab\x24\xcd\xbc\xfe\x9c\xab\xe6\x08\xf8\x75\xce\xc4\x3c\x5c\x37\xfc\x0a\xbc\x35\x51\x9a\x78\xf6\xb3\xad\xfa\x39\x26\xef\x64\xfa\xae\xf7\xee\x9d\x00\x47\x1f\xc1\xa1\x62\x69\x12\x11\x3e\x19\x6e\x43\x01\xb4\x9e\x1d\x44\x25\xa7\x2b\xaa\x1b\xa3\xdb\x2b\xfd\x51\xb3\x26\x73\xa0\x44\xf3\x9f\x6c\x94\x33\xc0\xe5\x0c\x67\x00\x3f\xdf\xc9\xd6\x19\x60\xab\x1f\x5c\x2b\x8f\x90\x56\xa4\x18\xf8\x18\x5d\xdd\xb8\x3d\x31\x7a\x9a\x5b\x12\xc4\x85\xa1\x82\x0b\x48\xc5\x2a\x48\x89\x49\x5f\x32\x5c\x35\xb3\x89\xf2\x96\x99\x4f\x1e\x0b\x2a\x46\x5d\xcd\xf9\x04\x42\xe0\x76\xad\x6f\xc6\x2d\x98\x14\x77\x7c\xb9\xd2\x54\xfd\x4e\x8b\x67\xa6\xbc\x07\x61\x6f\xa5\xcc\x94\xae\xb9\xbd\xc8\xb9\xc5\x52\xf1\x43\xb9\xc5\x15\xcd\xed\x13\xd2\x81\xd6\xd6\x8d\x50\xe5\x38\x61\x12\x60\xc9\x7a\x90\x7b\x24\x19\x8a\xaf\xb3\x3f\xc9\xc2\x48\xfb\x04\x13\xa4\x6c\x21\x41\x44\x13\x39\xc7\x1a\xec\x38\xf1\x1b\x4a\xa5\xd5\x9c\x67\x93\xc9\x38\xfc\x86\x9c\x83\x5a\x8a\xb5\x02\xe8\x2e\xcb\x11\x8b\x80\xcb\x78\xf0\x0e\xb3\x58\xbe\x75\x04\xb9\x43\xcb\xad\x0f\xef\x3f\x17\x23\xf1\x74\x92\x57\xda\xd0\xec\x39\xb6\xb6\x56\xd4\xfb\x93\x68\x98\x09\x55\x23\x8b\xd1\x51\xbd\xba\x45\xbd\x5b\xd4\xbb\x34\xea\x95\x32\x91\x75\x5e\xa5\x86\x4d\x2d\xad\x1f\x93\xcf\xe5\xbc\x58\x5e\x2e\xcf\x2c\x47\xb9\x4f\x3d\x51\x05\x94\x0b\xbb\x0f\x56\x43\x30\x29\xae\x81\x80\xd7\xd3\x69\xdb\x5c\x59\xb8\x96\xd7\x2f\x5e\x6f\x94\x20\x9e\xc9\x8d\x31\xba\x87\xc3\x66\x65\x2b\x91\xff\x42\x12\x39\x22\x95\xe6\x64\x63\xdc\x7c\xd1\xaa\x37\x2b\x74\x68\xe5\x11\x6e\xe9\xdf\xb7\x1c\xca\x92\x71\x45\x3b\xc0\xb7\x79\x5b\x30\xfb\xba\x01\x40\x5e\x08\xf5\xec\x00\xe9\x32\xb7\xb7\x31\xa5\xe8\x41\xba\xe2\xf8\xaa\xd5\x90\x88\x2a\x44\x61\x02\xb1\xed\xfb\x2e\x22\xbd\xd3\x72\x97\x63\x99\x24\xf0\x6a\xa5\xa6\x83\x48\xde\x74\xd0\xa8\xe4\x20\x72\x95\x75\xd0\x13\x34\x2e\xcb\x0e\x7a\x1e\x43\x03\x3b\xe8\xb9\xe1\x20\x72\x91\x75\x10\x91\xef\x73\x18\x69\x18\x33\x29\x33\xf1\x84\xe6\xed\x05\x75\x7a\xf1\xbc\xeb\x72\x52\x1c\xae\x9c\x77\x7d\xf5\xcd\x45\xcf\x57\xe2\x13\x3a\x6e\x9d\xc1\xee\x15\xe8\x79\x50\x6b\x61\x74\xd1\x58\x03\x47\xcc\x8f\x94\xfc\x0b\xf2\xce\x70\xaa\xd0\xf4\x1a\xf1\xa0\xfd\xe9\xec\x0c\x4f\x15\x37\x65\x12\xbf\x57\x70\xd3\x80\xc5\x8e\x67\x70\x80\x0b\x7e\x0b\x9e\x19\xae\x73\x32\xc0\x08\xd0\x5f\xbc\x0f\x7f\x8c\x27\x3f\x65\x40\xd0\x19\x1a\xd3\xcf\x13\xdc\x22\xe8\xb3\xa0\x73\xbc\xe1\x3d\xcf\x64\xae\xb7\xaa\x6a\x5a\xda\xb0\x39\x1a\x3a\x46\x2b\xea\x7e\x8c\xf6\x31\x66\xc4\x12\x2f\x5d\x17\x64\xe4\x2d\xe3\x77\xa7\x45\x4c\x90\x68\xa2\xfe\x24\xa6\x91\x34\x4e\x68\xb0\x77\x6b\x62\xa8\x67\x01\x02\x5e\x58\x40\x63\x71\x8d\x8d\xb7\x1e\x7b\xb7\x62\x09\x90\x25\x0a\x8f\xcc\xee\xff\xea\x81\x2b\x57\x29\xf9\x04\x77\x5a\x34\x90\x29\x89\xa8\xe0\x5f\xd5\xed\xee\x74\xb6\xd5\xf9\x15\x33\x97\x28\x97\xe9\x6d\x4a\x22\xf9\x8e\xdb\xa7\xc8\xd9\xba\x2d\x97\xb9\xc1\x72\xd9\x7b\x88\x7e\x99\x78\x58\x47\xd5\xbe\x3d\x35\x3b\xc6\xd0\x0d\x39\x2b\xd4\x50\xb0\xf7\xc2\xcf\x2a\x85\x42\x8d\xc9\x0e\x10\x1d\xf8\xf1\x32\x52\xf1\x7f\x3c\x29\xd5\x12\xdb\x04\xf9\x50\x12\x6b\xa1\x4a\xc9\xf7\xa1\x7c\x69\x53\xb7\x81\xe2\x29\x00\x2a\x46\xce\x4f\x3e\xd4\xee\x7b\x05\x5f\x4e\xa7\x35\x5d\x11\x91\x63\x89\xd6\x4f\x8f\x9d\x75\x16\x9f\x63\xa4\x9d\x35\xe0\xc1\xf9\xdf\xfa\xc3\x5c\x09\x65\x76\x1a\xa4\xa0\x91\xba\x3e\x76\x90\x6e\x3b\xf3\xce\x4f\x5f\x2c\x94\x0c\xd7\x97\x5f\x60\x33\xa2\xec\xd7\x78\xb7\xa5\xf5\x76\x06\x89\x21\xc7\x3a\x8e\x79\xb2\xfd\x7a\xc8\x5b\x6d\x6c\x08\x66\x7d\x17\xbf\xb9\x09\xcd\xd6\x93\x7e\x67\xdf\xe6\x1d\xcb\xd2\x0c\x7b\xae\xad\x20\xd5\x14\xbb\xb3\x6c\x05\x33\xec\x02\xae\x35\x40\x29\x8b\x45\xe4\x1c\xb7\x60\xc7\xb1\xdb\xf5\xd1\x20\xaa\xab\xe7\x10\x37\x4b\x39\x11\x6f\xe9\x43\x7f\x55\x4e\x66\x6d\x8d\xe9\x3a\x06\xe5\x01\x0f\x82\x8e\x7a\xcc\xd6\xb4\xb6\xa3\xea\x6d\xda\x1b\xd0\x58\xe2\xcd\x44\x59\xbc\x9c\x48\xbc\xc9\x04\x52\x3f\x3a\x6a\x82\x30\x52\xac\xa9\xb0\x8f\x61\xa0\x23\xf8\xd0\xd9\xd2\x54\x9e\xff\x5a\xc7\xe9\x69\x41\x32\x6d\x5e\x71\x6a\x2c\xa6\x97\x2c\xac\xf5\x06\x22\x39\x4d\xd4\x4c\x20\xa7\xa4\x92\x83\xfd\x4c\xac\xff\xd9\x40\x71\x63\xe0\xe4\x7d\x52\x83\x25\xe3\xcb\xc9\x68\x69\xd6\x6d\x8e\x8e\x98\x5f\x79\xc4\xcb\x7a\x11\x29\x0f\x1c\x49\x7e\x21\xad\xa7\xaa\xd4\x6b\x82\x0a\xa4\x87\x44\x15\x60\x99\x56\x22\x79\x2f\x1a\x95\xdc\x02\x92\xf7\xd9\xd3\x30\x7f\x46\x42\xb7\x31\x4b\xff\x03\x08\xdd\x0d\x35\x54\xd3\x79\xd4\xac\x97\x0a\xe4\x6e\x80\x13\xd9\x4f\x39\x9f\x9d\xe3\x18\xc5\xf5\x14\x09\x1f\x90\x02\x7e\xe5\x9b\xfd\x9e\xdc\xf6\x16\x09\xfd\xc2\x48\x68\xc2\x61\xbf\xde\xd1\x6d\xad\x63\x5a\x43\x8d\xfd\x5d\xad\xa1\xbf\x0b\x35\xf4\x77\xbd\x86\xfe\xbe\x80\x76\xc1\x2d\x24\x79\x51\xa8\x31\xae\x9c\xf4\xfe\xa5\xbc\xdf\x20\x5a\x57\xc1\xef\xaa\x93\x0c\x75\x93\x52\xa2\x56\xf1\x95\x15\x1c\x86\xe5\x1b\x8c\xaa\x9a\x05\x68\x06\x63\xa4\x8f\xa3\x41\x5c\x72\x25\x8b\xd1\xa3\xd5\xda\xc2\xc8\x16\x46\x5e\x84\x91\xa8\xe0\x56\xd7\x0d\x43\x1f\x68\xed\x17\xbd\xbd\x3f\x27\xad\x06\xc1\xed\x44\x77\xc9\x9e\x5c\x29\x78\xf0\x74\x4a\xbd\xcc\xf0\x34\x1f\xab\x8e\x69\xe7\x62\x4e\x02\x73\x09\x29\x87\x33\x0c\xb0\x62\x2e\xec\xf7\x4a\xb2\x1d\x97\xbb\x93\xba\x57\x11\x9b\x37\x5e\x61\x54\x7b\xe5\x88\x48\xd5\xfc\xb5\x8d\xfd\x89\x98\xb4\xd7\x8e\x78\xeb\xbb\x6d\x51\xcd\x7c\x89\x3b\x19\x93\x09\xfe\xa6\x5d\xc7\xa6\xb6\x4b\x8b\x03\x3a\x1c\x35\x1a\x46\x09\xf1\x6a\x65\x1a\xdf\x69\xe3\x16\x43\x12\xa1\xc0\x1b\x69\x31\x34\xb6\x16\xc3\x8d\x05\x8a\x77\x81\xbb\x58\x4c\xca\xdf\x5a\xaf\x67\x3e\x75\x0d\xfd\xce\xf5\x8b\xe6\x1a\x67\x4f\xdb\x5c\x2e\x78\x59\x31\x70\xa8\x6f\x0e\xb2\x62\xbc\x9c\xb0\x60\x3d\x1b\x13\xc8\xa0\x95\xc5\xa8\xa3\x3f\x47\x94\xd8\x9f\x23\x61\xc1\x16\x06\x36\xe3\x16\x8c\x64\x5c\x36\xd7\xb0\xa9\xa5\xda\x00\x07\x79\x3a\xd4\x46\x1c\x02\xf6\x71\x1a\xed\x13\xc2\x30\x12\xd2\x18\x09\xcd\xa8\x6d\x42\x7a\x00\xca\x5e\xb8\xaf\x62\x54\xcb\x60\xa4\xe0\x0b\x8c\xce\x4a\x5e\xcc\xab\xdc\x27\x98\x11\x1c\xbf\x6e\x81\x3e\xea\x43\xef\xba\x29\xb4\x8f\x13\x70\xdd\x14\x46\x82\x1f\x26\xc9\xaf\xfb\x38\x32\x31\xd2\x1b\x36\x46\xb4\x77\x0f\x77\x48\x3d\x62\x74\x93\xc3\x48\xae\x1b\x18\x9d\x55\x30\x4b\x4d\x5e\xd7\xe9\x9b\x86\x5d\xb8\xb6\x1e\xf5\x5e\xcf\x05\xdd\x7d\x82\xe1\xe2\xd4\xbd\x30\x13\xae\xb1\x89\x91\x7a\xf7\x80\x51\xf3\x5b\x1f\xb3\xf4\xc4\x15\xca\x54\x7d\x70\xa8\xa5\x6b\x2c\xcb\xab\x3e\xba\x0e\x96\x98\xbf\xbb\x40\xf9\x9b\x23\xff\xfd\x79\x12\x85\x35\x6c\x32\x13\xa4\x4c\x31\xed\x99\xb5\x95\x2a\x40\x1e\x1d\x8d\x30\x2a\x3d\x0e\x7d\x2e\x10\x98\xa9\x2b\x60\xb2\x9e\xcc\x48\xe3\x1a\x7b\x8d\x12\xb0\x59\x79\xec\xa7\x09\x54\x67\x35\xf8\xa8\xd9\xa7\x16\x34\x66\xf8\x43\xcd\xe9\x0d\xcf\xc1\xfb\xd8\xd9\x48\x83\x3f\x62\xac\xe1\x5e\x71\x82\x07\x5e\xdc\x9a\xc5\x35\xcf\x6d\x85\xcc\xa7\x6e\xae\x7a\x0f\xfe\x43\x83\xb1\x73\x98\x72\x46\x26\x17\xd1\xd3\xd0\x34\xbc\xf5\x9d\xf4\xd7\x77\xd2\x5f\xdf\x12\x13\xf2\x45\x13\x23\xe9\x6e\xd4\xc5\x2c\x09\x2b\xf0\x82\xaa\xfa\x9d\xae\x7e\xc9\x3a\x6a\xb7\x47\x8d\x16\xab\xfc\x5f\xb9\x86\x2a\xff\x57\x0d\x7e\x0a\x35\x26\x34\x1d\x24\xa8\xf0\x1f\x23\xa1\xe5\x3b\xf3\xcf\xde\xd6\xef\x26\xb2\x70\x63\x02\x39\xca\xdf\x38\xae\x97\xa8\x27\x22\x2e\xaa\xa6\xa6\x18\x0e\x08\x0d\xb1\x56\xaf\x09\x5d\xb2\x0e\xe0\xec\xe5\x5a\x0f\x25\x07\xd5\xcb\x5e\xc3\x3b\x49\x9a\x0e\x3a\x29\x7b\xd0\xf0\xba\x25\xff\x16\xa3\x1e\x66\x88\x6e\x13\x2d\x9e\xe6\x8a\x2f\xb3\xb9\xad\xd5\xc7\xfe\xcc\xdd\x78\x6b\x7d\x70\xf9\x36\x63\x57\x82\xe9\xb5\x3e\x29\x23\x5e\xce\x8b\x10\x11\x5c\xd0\x5e\x5f\xb3\x38\x22\x70\x1d\xe2\x15\xee\x14\xef\xa7\xba\x9a\x70\x8a\x97\xdf\xc8\xee\xae\x52\x13\x23\xa3\x80\x11\x79\x6c\xb9\x55\xd1\x79\x83\xa4\xc6\x0b\x04\x2d\x3a\x34\x5c\x8f\xf4\x7b\xee\xd1\xa0\x2c\x8a\x2e\xd9\x46\xa3\xbc\x18\x8d\xc2\x94\x09\xc6\xe2\xca\xb4\x3b\x9a\x45\xfd\xb5\xc0\x3c\x1f\x0c\xd6\x3e\x37\x31\x23\xf2\x44\xef\xea\xc8\x7c\xa2\x1e\x01\x81\xbe\x82\xdb\x59\x78\x1c\x62\xcc\xa4\x89\xce\x35\xcb\xec\xf5\xbc\xce\xf0\x1f\x16\x18\x46\xc2\x1b\x85\x5c\x30\x32\x70\x4c\x8c\x3a\xad\x4f\xe8\xa0\xbd\x29\xae\xe0\x13\x13\x76\x63\x0e\x6d\xb3\xeb\xf3\x07\x2e\x6f\xc0\xa7\xd7\xbe\xcf\x62\x26\x01\x12\x29\x3a\x96\x39\xd0\xbe\x9c\x0f\x7b\x26\xcb\x17\x6b\x28\x5f\xac\xd6\x98\x40\xfc\x69\xdd\xa0\x8d\x09\x12\x7d\x2a\x63\x74\xd9\xc7\xa8\x9e\x34\x31\x4a\x0c\xee\xbc\xef\x31\x4f\x9b\xf9\x74\xaa\xbe\x5e\x4f\xea\x7f\xed\xf1\x40\xf5\x31\xf0\xfa\xe2\x2a\xb6\x31\x19\x9f\xed\x4e\x0b\x01\x31\x29\xb9\xda\xd5\xa1\x4e\xbf\x5c\xe9\x23\xda\xea\x70\xef\x38\xc0\xb1\x82\x9c\x14\x2f\x03\x3c\x5b\x7b\x2c\x24\xc5\x4b\x96\xf0\xea\xd2\x42\xff\x6c\xaf\x4f\xed\x91\xd7\x3f\xe1\x31\xf6\x29\x26\x24\x52\x62\x19\x18\x7b\x97\xc1\x4f\xb9\x6a\xa0\x19\xdb\xa2\x30\x5b\x26\x90\x0b\x95\x5f\x48\xbb\x36\x61\x27\xc9\x5c\x75\xc3\x0b\x14\x73\xd2\x3a\xd1\x6a\x71\xab\xe5\xf9\xcf\xad\x69\x9e\x96\x01\x78\x63\xab\xf1\x91\x2b\x9a\x91\x44\xe4\x2b\xf7\xfb\xd4\x70\x8b\x4f\x16\xe1\x3f\x60\x3d\xc9\x10\x4f\x00\xef\x79\xb3\xb3\x5e\xb7\xc5\x79\x4c\x15\x19\xd5\xf9\x73\x90\x63\xbd\x0c\xfb\xb3\x92\x17\x42\x4c\x48\x33\xd6\x1a\xc0\xd4\xb4\x38\x83\x35\x08\xce\xfa\xad\xbb\x73\xe2\x4f\xa1\xb6\x50\x0b\xce\xaf\x82\xe3\x25\x94\x3b\xc0\x83\x24\x02\x0e\x65\x56\xc6\x43\xce\xbf\xb8\x23\x5e\xe6\xf4\xab\x26\x46\x23\xce\xc1\xaa\xbc\x0e\x36\x5c\xc4\x0c\x5a\xf1\xa9\x0f\x67\x2c\xbc\xe6\xac\xb3\x2b\xae\x04\xa5\xd9\xc0\xa8\x30\xc5\x5a\x2c\x83\x2e\xe6\xdc\x69\x1d\x98\xe6\x8d\x6e\xc5\xa4\xe8\x42\x37\x68\x6b\x64\xb9\xe8\x84\x48\x68\x9f\xc8\x68\x9f\x28\xae\x9e\xa9\x59\x11\xaf\x7d\x29\x1f\x09\x5a\xa0\x6f\x93\xa7\x17\xe6\xa2\xb4\x27\xd1\x5e\x1c\xc3\xf0\xeb\x6a\xd7\x06\xec\x22\x18\x46\x7a\x20\xbf\x2c\x72\x59\x95\x5c\x4a\x3c\x79\x0d\x20\x25\xcf\xe6\xcf\xe7\xea\xc1\xf6\x2a\xe2\xee\x63\xc5\xc7\xfe\x4c\x90\x7b\xa2\x82\x04\x05\xfb\xd8\x7f\x36\xe6\xf7\x8e\xcd\x9a\x17\x3e\x29\xfc\x2a\xda\xb5\x01\x3b\x49\xe1\xf1\xc7\x83\xc6\xc7\xcd\x47\x65\x6d\xf3\x01\x78\x5e\x89\x7c\x52\xb3\xa9\xcd\xf8\xa6\x65\xb1\xb8\xf4\x37\x9d\x4f\x4b\xf9\x65\xb4\x6b\x03\x76\xee\x4a\x97\x0b\xbf\x30\x05\x95\x52\x91\x2f\x3b\xec\xb4\x69\x93\xda\x33\xbe\xed\x95\xf8\xf4\xf2\xb7\x95\x83\x85\x09\xdd\xb5\x6b\x03\x76\xef\xca\x8f\x30\x85\x44\x5e\xc7\x1e\x59\x01\xf0\xc9\x11\xd6\x4b\x61\x82\x6c\x01\x63\x20\xe3\x90\xfd\x52\xe6\xbc\x94\x32\xf5\xb7\xbf\xb9\xaf\x0a\x17\xd2\xae\x4d\xd8\x49\xca\x45\xfd\x83\x61\x70\xb9\xe5\xe2\xa3\xaa\x25\x57\x8a\xff\x41\x73\xb4\xdd\x69\xd1\x16\xcb\x05\x5f\x54\x61\x82\x74\x23\x66\xdd\x2f\xf9\xea\x7c\xcd\x4c\x90\x92\x39\x0d\xae\x23\x65\xf3\x06\xec\x5d\xde\x87\x73\x41\x9c\x1f\xe2\xdf\x30\x5c\x38\xfc\xc4\xea\x12\x55\x4b\xf3\x59\x94\xf0\x87\x9f\x9d\xdb\xfa\x98\x7e\x2c\x99\x0c\xa9\xfd\x25\xb5\xa9\x15\x81\x48\x90\x37\x1e\xc4\xb4\x0b\x8d\xb2\x67\x14\x90\xc8\xe9\x1d\x1c\x94\x52\xb9\xc6\x83\x98\x66\x99\x64\x08\x06\x39\xda\x8d\x02\x01\x87\x6a\x26\xc8\xf7\xa2\xe9\x4f\x9b\x6f\x5c\x58\x55\xf6\x98\x85\x3d\xe1\xb2\xe4\xfe\xda\x84\x7d\xfd\xbd\x20\x9f\xff\x99\x39\xd5\x82\x35\x3b\xfe\x84\x52\x33\xa0\xe2\x44\x38\x69\x46\xbb\x6b\x76\x3d\x50\x4b\x31\x21\x79\x04\x1c\x43\xca\x95\x31\x25\x92\xae\x1e\x89\x0a\x90\xc5\x64\x38\xc2\x32\xa8\xd3\xf3\x66\x3a\xe9\x99\x47\xd3\x4c\x48\x8c\x7d\xf9\x12\x09\xe9\x25\xe6\xf9\x65\x80\x85\x07\xa8\x26\xc6\x68\x90\x37\xc6\x1b\x27\x6f\x0e\x32\x18\x95\x8a\x1b\xc3\x15\xc6\x07\xa6\x8f\xc7\x18\xc9\x56\x2b\x44\xa9\x9a\x6e\x39\x36\x8b\x48\xac\x3e\x54\x6f\xd0\x06\xf3\x4d\x79\xde\x7b\x90\x25\x95\x40\x0e\xcd\x04\xe1\xdd\xba\x9f\xb7\xb1\x77\x39\x98\x96\x6b\x27\x24\xdc\xf8\xb1\x87\x64\x05\xa3\xa2\x31\x67\xc0\xc2\xa1\xa1\x70\xdc\xca\x86\x31\x97\x95\x45\xad\xc7\x9c\x67\xd6\xe8\xc3\x50\x79\x3c\xa7\xdb\x3d\xdc\x4c\x32\x7c\xff\x96\xb9\x5e\x2d\xb3\x22\xd2\x27\x5a\xb1\x4c\x4d\x4b\x64\x7b\x9a\xdd\xff\xd5\x03\x57\x4e\x26\xf5\x09\xee\xb4\x68\x20\x93\xa4\x08\x16\xd5\x87\x9d\xae\xd6\x9d\xd6\xbc\x29\x75\xa0\x7e\xcb\x68\xde\x16\x61\x41\x72\xa1\xf2\x0b\x69\xd7\x06\xec\xde\x07\x13\x6a\x80\x54\xec\x46\xcc\xe2\xb4\xb8\xe5\x6a\x7b\x2e\x9c\x37\x9d\x12\x96\x8e\x08\x0e\x39\xcb\x31\x34\xdd\xfb\xcc\x29\x19\xbb\x84\x27\x55\x00\x81\x2c\xe5\xf8\x64\x87\x09\xe4\xec\xa4\x06\x07\xdb\x05\x35\x23\x16\x99\x12\xd1\xa9\x9e\x99\xbd\x2e\xb5\x29\x2b\x97\x6b\xe8\xa4\xca\x49\x98\x8c\x99\x90\xe8\x89\x14\x09\x09\x07\x09\x49\x87\xf9\xde\x3d\xd2\xf8\xdc\x86\xe3\xc4\x92\x4a\x17\xb0\x77\x0c\x8c\x8e\x73\x18\xa5\xc6\x0d\x1c\x23\x8a\xf9\x8e\x6e\x53\xef\xb9\xd2\x68\x1f\x67\xb8\x53\x8f\x90\x7a\x16\x2f\x5d\x6f\xa4\x8c\xef\xe0\xf3\x73\xcc\x8f\x4b\x13\x2f\xf9\x75\x07\x59\x03\x76\x9b\x46\x17\xd7\x29\x45\xbe\x09\x51\xd4\x78\x92\x5f\x25\x9c\x3a\x53\x6f\xd2\xde\xd0\xd3\xe9\x7a\xec\x0c\xcc\x1f\xcc\x23\x13\x52\x79\x9f\xa5\x41\xdc\xbb\x2a\xe3\x55\xbc\x59\x7e\xf3\x84\x38\x29\x7b\x71\x9c\x47\xd2\x75\xd7\xcc\x23\xf5\x0c\x70\x7e\x8b\x06\xf3\xb3\xa4\x4b\xf0\xdb\xc4\xe5\xbd\x4c\x52\x92\x9d\x82\xcf\xde\xae\xfc\x2c\x5c\x8d\xd1\x21\x77\x70\xec\x94\x63\x04\xb7\xc5\xe4\x74\xa8\xaf\xaa\x76\xa8\xd1\xee\x50\xdd\x0f\x50\x61\x1e\x94\x2c\x62\x48\x98\x40\x54\xe9\x09\xa3\x2b\x78\x2c\x9e\x3b\xf3\xa9\x84\x11\x50\xe4\x34\xcf\x1d\x77\x44\x30\xaa\x05\xd6\xf7\xfb\x40\x3a\x0e\x88\x39\x85\xe7\xb4\xaf\x65\x2f\x59\xdc\x8a\xf1\x9a\x4c\x92\x23\x00\x6f\xf6\xcc\x7e\xd3\xe4\x68\x64\x1f\x27\x64\xdf\x8d\xca\x45\x26\xf7\xe2\x93\x87\x4c\xb0\x8f\x50\x64\x22\xfb\x28\x05\xce\x12\xeb\x5b\xb3\x02\xfb\xf1\xd8\x41\xa9\xec\xc0\x41\x92\xcc\x25\x50\x32\x76\x90\x21\xab\x4e\x8c\xbe\x14\x3a\xb4\x4b\xd9\x71\xd9\x43\x57\xb1\x3b\xa6\x98\x90\xb8\x12\xbb\x70\x9f\xf0\x9e\x29\x3f\xb5\x84\xcc\x04\x92\x2e\x7d\x83\x0e\xc4\x31\x0c\xb1\xcb\xf1\x57\x3f\x69\x60\x24\x75\x9f\x9b\x0e\x22\x3a\xe6\x69\x1f\x82\x37\x2b\xd0\x3e\x1d\xaa\xce\x70\xd2\xc2\x31\x10\xd5\x0f\xb6\x70\x2c\x25\xe0\x93\x53\x0d\x9e\xf4\x98\xff\x2e\x43\xb0\x9e\xaf\xb8\x87\x46\xc3\x67\xf8\x78\x00\x10\x17\xf6\x42\x26\x10\x87\x9c\x5c\xe3\x65\x66\x71\x59\xa6\xf2\xc5\x7e\x15\x68\x64\xbd\x46\x53\x0d\x1e\xb9\xed\xb7\x64\x6e\x47\x79\x6e\x60\x74\x03\x8d\xdc\x18\xa3\x2a\x9c\x7b\xe4\xb9\x86\x02\xad\x46\x08\xa4\x2e\x45\x80\x9f\x36\xac\x6a\xca\x39\xcf\x81\x7f\xec\xae\x35\x87\x7c\xb4\xe2\x5a\x12\x95\x73\xe6\x33\xb4\x4f\x73\x89\xd0\x12\xfd\x32\x81\xb7\x4c\xc8\x17\x80\x1c\x50\x1f\xac\xc0\xf7\x6d\x0e\xef\xb8\xee\x3b\x31\x29\xa2\xbb\x29\xe8\x3d\x3d\xca\x7d\x30\x21\xdd\x07\x94\x10\xe0\x54\x57\x98\xee\x69\xfc\x30\x69\x19\x0d\xbe\x37\x80\x4a\x37\x7a\xad\x30\xe3\x3a\xbf\x98\xd3\xa4\xfe\xd5\x14\x26\xc8\xdf\x00\xf0\x15\x5f\x21\x70\x7a\xf7\x4d\x54\x99\x9c\x89\xdc\xdc\x19\x76\xa8\x11\x68\xca\xa3\xdc\xef\x18\x86\x2e\xc1\xfd\xba\x2c\x2e\xf4\xd6\xae\x0d\xd8\xbd\x0f\x53\xd3\xc9\x61\x96\x8a\x68\xb0\xbe\xd1\x3e\x6d\x3b\x43\x8f\x93\xf3\x71\x9f\xab\x0b\x93\xee\xc4\xb2\x8f\xff\xd6\x87\x03\x97\xf7\xaf\x63\x02\xb9\x51\xf9\x43\x49\x54\x56\xef\x78\xd5\x31\x4e\xc1\x06\x18\x35\xc6\xbe\xd0\x1c\x3a\x86\x85\x20\x3c\x91\x9c\x6c\x7d\x1c\xc6\x5a\xb8\x13\x53\xfe\x0c\x3a\x36\xaf\x95\xb8\xc6\x48\x3a\x1b\x7e\x7a\xaf\x14\x1f\x40\x8e\xe8\x98\x06\x3a\x24\x2e\x3e\x9d\x14\x02\x5d\x12\x5a\x56\xa7\xf4\x82\x90\xb3\x26\xd5\x12\x51\xa5\x07\x8c\x12\x9c\xf3\xc3\x16\xd0\xda\x67\x68\xc1\x9a\x1a\xc0\x1a\x4d\x72\xa6\x31\x17\xb4\x9e\x31\x1a\xe4\x5a\x18\xdd\x8c\xe3\xb4\xfa\x3c\x36\xca\x6d\x35\x17\xb6\xe6\xf5\x0b\x12\xc1\xb7\xea\x18\x75\xee\xfc\x74\xcb\x77\x5e\xbe\xe4\x66\xa3\x85\x51\x1b\xe4\x96\x4b\xec\x0a\x5f\xe4\xa9\xec\x33\xa5\x41\x96\x66\x1e\x78\x88\xfd\x6c\x02\xf1\x1c\xf1\x13\xc9\xfe\x14\x23\xd6\x32\x02\xdd\x13\xb4\x38\xce\xe0\x56\x76\x38\x54\x26\x18\xe5\xf1\x22\xcf\x0c\xbe\x3e\x96\xd5\x4d\x45\xbc\x3f\x82\xab\xa4\xe1\xcf\xe6\xd8\xa7\xfc\x9c\xa7\x49\xc2\xfd\xf5\x52\xfc\xa9\xb9\x97\x48\x96\xa0\xea\x59\x03\x91\xe7\x16\x41\x65\x68\x00\x5b\x14\x75\x78\x0e\xee\xc0\xc9\xa5\x04\x23\x79\x7e\x6c\x49\x5a\x40\x68\xf9\x8b\x98\x7e\xcb\x52\x31\xaa\x9b\x93\x8d\xc9\x5e\xb3\x5a\x2b\x0f\xf8\x89\xa1\x96\x8a\x19\x49\x87\xe4\xf7\x58\x6b\x5a\xa6\xf1\x39\xa1\x72\x0b\x97\x9f\x0d\x2e\x79\x3d\xa2\x7e\x25\xea\xbd\x55\x83\x8f\xe3\xc3\x65\x33\xe7\x45\x2a\xab\xbf\x33\x7c\x4a\x11\x37\x92\x63\xf3\x36\xdf\xd1\x6f\xcb\xba\xe1\x7a\x72\x5e\xc4\xb4\x4c\x5c\xc3\x94\xe4\xfa\xcb\xa4\xe8\x84\x9a\x26\x5f\xcb\xe4\x59\x3c\xa5\x51\x9e\xf7\x6a\x9e\x61\x2c\x52\x44\x3a\xa9\x26\x74\x4f\xf4\xe0\x13\xa6\x4d\x8c\xe4\xf3\x07\x8c\xba\x89\x26\x46\xb4\x8e\x31\xca\x65\xcb\x3c\xc5\x70\x88\x25\x4c\xa3\x7d\x7b\x66\x1a\x6d\xfe\x0c\xc7\x67\xf0\xbf\x0a\x3f\xf5\x1a\x3a\x05\xf9\x3e\x95\x15\x8f\x42\x55\x65\xda\x09\x1f\xe1\x2d\xa4\xf2\xfc\xb7\x63\x8c\x88\x4d\xcf\x31\x3a\x56\x31\x7a\xbe\x76\x50\xc6\xce\x39\x1e\x14\xd8\x05\x27\x0c\x10\x74\x99\x0e\xf5\x65\xde\x67\x22\x77\x03\xac\x2b\x5e\xec\xde\x1e\x7b\x0d\x3f\xe0\x81\x37\xe2\xa7\xa6\x1b\xb1\xce\x0b\x46\x91\xd4\xc2\x6c\x3c\x3f\xc1\x1b\x07\x29\x04\x66\x2a\xe4\xee\x3c\x1f\x4b\x96\x92\xa3\xb3\xfa\xd8\x9a\x36\xc4\x26\x93\x62\x76\x19\x53\xec\x62\x23\xbb\x94\xbd\x38\x82\x0b\x49\xd7\x5d\x13\xf6\x9e\xca\xb2\xf9\x2b\xaa\x2c\xbb\x45\x2e\x18\xc5\xb4\x95\x69\x12\x6a\x2b\x4f\xac\xae\x63\x0f\xbb\xec\x64\x12\x74\x93\x37\x62\x62\x0a\x68\x7f\x46\xc1\xcf\xf5\xfb\xe3\x23\xb8\xec\xe0\xbe\x01\xbb\xad\x7e\x7f\x15\xfd\x3e\x4b\x62\x8e\x7a\xbd\xe0\x94\x93\xa1\x4d\x8d\xa6\xd3\xe3\x33\x17\x15\xe8\x5d\xdd\x06\xb9\x16\xaf\xa3\x42\xfd\x6b\x7c\x8b\x64\xe5\xa7\x83\xe2\x64\x26\x48\x66\xbb\x02\x0f\xd3\x1a\x8f\x61\xc7\x79\x9a\xb4\x9d\x5b\x60\x0b\x97\x01\x49\x5d\xc7\xec\xd9\xe3\x6a\x05\x23\x58\x2d\x5c\x55\xc9\x51\x49\xbb\x82\x51\x7a\x04\xbd\x46\x03\xaf\x98\x4c\x77\x86\x3a\x34\x54\x07\x84\x8a\xd1\xe0\xec\x43\x2b\x87\x91\x9c\x2e\x79\xf6\xea\xda\x18\xa3\x5e\xf2\xdc\xfb\xfa\x01\xb5\xae\xe5\x3c\x7b\x61\x88\x2a\x49\x60\xb7\x07\xa4\x39\xce\x00\x6b\xa0\x61\x04\x4c\x96\xc4\x33\x97\xa6\x03\x3c\x3e\xcb\xa1\x7b\xf1\xe2\x5b\xdc\x65\x56\x90\xf4\xfb\xad\xd9\xf3\xa5\x06\x36\xe0\x9d\x1f\xcc\xd9\x37\x92\xe0\xc7\xc8\xfa\xc7\x82\x70\xf4\xc4\x13\x77\xfc\x0d\xd4\xf5\xa7\xb4\x4b\x2d\x9b\xfa\x0e\x3c\x12\x0e\x2c\xa3\x19\x8e\xa6\xea\x27\x39\x26\xa4\x52\xa2\x8a\x84\x54\xd7\xb5\x92\x66\x3c\x74\xe5\x2b\xe4\x14\x29\xc1\x04\x72\x89\x6b\x5d\xd4\x73\xca\x18\xf5\x2f\xc6\xe7\x28\xfd\x58\x77\x50\xb2\x3b\x70\x90\x72\xd1\x70\xd0\x73\x47\x75\x98\x4c\xa2\xf7\x1d\xd1\x81\x63\xf9\x46\x4f\xb8\x59\x46\xc6\xa8\x7e\x52\x63\x42\xa6\x2f\x96\xdd\xdb\x64\x42\x3e\x82\x09\xc4\x71\xf8\x99\x61\xb9\x0c\xbb\x92\x62\x38\x4c\x8a\xa8\xdf\x4e\x35\xcb\x19\xd2\x9e\xd6\x67\xa7\xe5\x40\x8e\x41\x27\x05\x2e\xcc\x74\x81\x47\x92\x66\x43\xe9\x32\xbe\x44\xef\xb0\xb9\xee\x85\xf0\xa0\xd5\x51\x19\x76\x2b\x09\x35\x72\x29\x87\x51\xb1\x8f\x91\x09\xfd\x39\x0f\xdd\xe2\x1d\x0c\xaf\x6e\x00\xb9\xa7\xb0\x10\xf2\x3e\xc8\x84\xeb\x9c\xaf\x90\x0a\xc5\x28\x0b\x7d\xcb\x17\x18\x65\x81\x94\x9d\x0d\x30\x2a\xe5\x3d\xe6\xb4\xde\xc3\xa8\x78\x59\xd9\x20\x59\xc6\x0d\x16\xe1\x66\x04\x0d\x3e\x02\xb7\xce\x69\x5c\x18\x81\x63\xc6\x9d\x7f\x61\x8e\x06\x33\x75\x3f\x20\x85\x23\x2c\x3e\xa2\x5d\xf2\xe5\x15\xce\x50\xb8\x63\xb9\x71\xe3\x01\x7e\xe0\x1e\x99\x56\xcc\x68\xc1\xaf\xcc\xef\x3b\xf7\x6c\x37\x6e\xe6\x08\x9f\x8a\x97\xec\xc3\xf3\x5a\xd6\x18\xa3\x3a\x99\x6c\xbc\x5d\xff\xb7\xbe\xd3\xa2\x81\xc0\xfb\x84\x0e\x13\x14\xe8\xa7\xeb\xcf\xa9\xc8\x98\x71\x3f\x4e\xc5\xe1\xe6\x00\x82\x2f\x87\x98\x29\x11\x4b\xc4\x19\xed\xab\x1d\x6a\x77\x3d\xbc\x40\x88\x1f\x3a\xc2\x04\x3a\x02\xb6\xb4\x89\x23\xc9\x21\x7e\x82\x57\xe2\x6e\x1e\xd5\xd2\x19\x5c\x54\x7f\x6c\xc0\x6e\xcb\x29\x2d\x13\x34\x92\x8e\x4e\xad\x45\xd5\x8e\x6f\xeb\xf1\x4c\xca\xae\x79\x19\x5d\x9c\xd5\xd0\xc5\x19\x48\x86\xca\x90\x5b\x71\x1c\xcf\xc2\x1c\xf3\xcd\x27\x72\x90\x42\x4d\x7a\x36\x87\xd0\x93\x3c\x9c\x9f\xd5\x45\x95\xfb\xc8\x20\xcd\x01\x1c\xf4\x50\x76\x10\xb9\x1b\xf9\x9a\x89\xd6\x19\xf1\xb5\x36\x5c\xb1\x70\xdf\xc0\x4c\x52\x42\xd2\x72\x6d\x39\xfd\x07\xff\xa9\x92\x4c\x48\x9c\x73\xf3\xb6\x6b\x81\x22\x47\x6d\xfb\x5c\xec\x32\x59\x8a\x2e\x3a\xbb\xd3\xa7\x46\xcb\x89\xbd\x49\x42\x49\x30\x21\xf1\x4d\x6c\xbb\x0f\x9f\x38\x0d\x5c\x98\x3b\x70\x50\x2a\x1e\x95\x9b\x62\x9b\x91\xe8\x85\x3a\xd4\x68\x8d\xda\x53\x9e\x3c\x6e\xcc\x53\x46\x12\x5b\x51\x6f\x9e\x30\xe6\x69\xa5\x45\x3c\xe9\x1f\xe2\xba\xf4\xf0\x8b\x0f\xb2\x03\xd8\xfd\x06\x0b\xf9\xe1\x0c\xa3\x51\xe5\x4d\xac\x32\xa9\x1b\x8c\x52\xe3\x02\xf7\x66\x97\x82\x99\xb4\xe8\xd0\x30\x47\xd4\x1a\x76\x67\x08\xc8\x4d\xf1\x61\x35\x5f\xe5\x65\xa4\xb6\x63\x1d\x2e\x3b\xb0\xb2\xb0\xfb\x0d\xa6\xf0\x2d\xa5\x36\x12\x51\x55\x9d\x39\xb4\x47\x6f\x4b\x4e\x7f\xe0\x58\xbc\x56\xb0\x3b\x6f\x53\xac\x2d\x13\x92\x35\x71\xe0\xce\x61\x9c\xb5\xf5\x1c\xb4\x12\x4c\x90\x72\x6d\xde\x89\xa4\xa8\x01\xfb\x5e\xa2\x51\x04\x1e\xe1\x1c\xa5\xbf\x8d\x1c\x44\x86\x26\x71\x58\x8a\x44\x6f\xae\x76\x74\x4f\x4b\x16\xb8\x18\xc2\x7f\xc9\x77\x07\xeb\x89\x5d\xdf\xd9\x10\x09\xe9\xee\x6c\xa9\x5f\xf1\x9c\x10\xa1\x73\xbb\xd0\xbc\x10\xbb\x28\x39\x32\x1c\x94\x35\x8a\x88\x9c\xe3\xae\xdb\xa8\x64\xe7\x36\xa6\xfa\x0c\xb2\x5d\x94\xfe\x36\xe6\xcc\x7f\x80\xc0\xcb\x54\xf5\x02\x8f\xf2\xd5\x5a\x80\xac\xb8\x3b\x55\x6a\x24\xd2\x38\xb2\x0a\x9f\xf3\x2d\x8a\x55\xe4\xbf\x1d\x8f\xb8\x4b\xe4\xc3\x19\xec\x2f\x38\xeb\x04\x3c\x55\xc2\x77\x9d\x51\x2e\xb9\x2b\x77\xd9\x57\x8c\x76\x81\x69\x75\x70\x5c\xc3\xa7\xce\x5b\x90\xd0\x59\xc1\x53\x67\xe3\xb9\xb9\xc2\xcc\x62\x96\xf3\xd6\x1a\xbe\xb3\x00\x40\x83\xd6\x3b\x69\xf8\x12\xa9\xe8\x0c\xb7\x69\xcb\x77\x4d\x74\x09\x11\x70\x54\x4c\xa0\x32\x50\x65\x2f\xdd\x9b\xa0\xbe\x8d\x6b\x29\xb9\x50\xf9\x75\xb5\x6b\x53\x7e\x37\x2f\x8c\x5f\x05\x89\x21\x39\xff\x80\x59\x26\x11\xaa\x0d\xcb\xb4\x4b\x87\x43\x2f\xaa\xaa\x1c\x61\x29\xea\x27\xb5\x2c\x13\x52\x3c\xa2\xcd\xfd\x0d\x14\xef\x1e\xf2\xe2\x7c\xca\x3d\x9c\x7a\xbc\x53\x31\xea\x8f\x4a\xd0\x4e\x97\x4b\xf1\x5c\x04\x65\x6a\xe8\x3d\x1a\x54\xe3\xe0\x9a\x7c\xff\x52\x99\x48\x02\x40\x26\x90\xee\xe9\x09\xaf\xc0\x84\x54\x60\xbf\x92\x89\x06\x46\xfd\x46\x0e\xa3\xc7\x06\x46\x37\x67\x9e\x7e\x29\xc6\x87\x55\x74\xd5\x1c\xea\x74\xd2\x11\xb0\x25\x0e\x37\xc6\x11\xd0\xf5\x82\x81\x27\x92\xa8\xac\xc2\x7e\xeb\x05\xb3\x71\x5e\x30\x9f\xed\x4e\x0b\xf3\xb3\xc8\x91\x58\x82\x8a\xf9\x68\x76\x9d\xb1\xa1\xd9\xb3\xb8\xcc\x44\x59\x2c\xbf\x1d\x97\xe9\xa1\x67\xbb\xcc\x33\xb0\x94\xca\xbf\x59\x06\x96\x57\xcb\xbb\x89\x44\x7c\xbe\x86\x7a\x53\x9f\x29\x14\x24\x1e\xc5\xe2\xf2\xd3\xb5\x1c\x7e\xe2\x92\x9d\x01\x17\x1e\x64\xbf\x3d\x06\x81\xfe\x1f\x33\x65\xfd\x1e\x46\xe7\xc3\x8d\x9e\xb5\x19\x44\x55\xd1\x2a\x71\x92\x77\xde\x1f\xce\x0a\xb4\xba\x12\x9d\x9f\x4d\x71\x34\x25\xd2\x49\xca\x10\x2e\x3b\x28\x97\x60\xb7\x05\xb7\xd5\x44\xba\x88\x5e\xe5\xdc\xa2\xbd\x39\xf9\x11\x06\x7e\x78\xf8\xa2\xfc\x08\xca\xc2\xcd\x0d\x08\x1f\xf0\x00\x39\x73\xe0\x06\xc8\x9d\xbd\x41\x3a\x8d\x30\xe4\x7b\xc2\x92\xc4\xf5\xe4\xc5\x0f\x98\x9b\x58\x16\x8d\x0b\xd3\xb0\x75\x6a\x50\x17\x1a\x2e\x22\x02\xab\x6f\xf9\xa9\x65\x3d\xf3\x4f\x87\xcb\xac\x1d\x71\xc2\x00\x34\x61\x04\x4a\x32\x41\x72\x28\xef\xd6\x28\x62\x8c\xfa\x8e\x51\x12\xbb\x28\x7d\x45\x27\x2d\x41\xa8\xfe\x60\x38\x4c\x8a\x48\xa2\x17\x23\xd3\x68\x8f\xa8\x27\x39\x9f\x55\x39\x2f\x8a\xb8\xfe\x30\x6d\xf8\xfe\x24\x81\x0c\xca\xf3\x47\x3b\xfd\xb4\x81\x32\xa9\xc6\x15\x22\xbd\xda\xd8\x41\xd2\xb9\xa1\x62\x94\xcc\xc1\x6b\x46\xdc\xcb\x2f\xcd\xa1\x4d\x0d\x3a\x9a\x4e\x16\xa2\x68\xc0\x89\xfe\x44\x22\x16\xd7\xed\x1c\xae\xa2\x5d\x9b\xb0\xfb\xa5\xf3\xb0\x04\x1f\x74\x34\x1e\xf5\x4c\xab\x45\x67\x7c\xd1\x9e\x78\xb9\x4c\xfa\x95\xf9\x38\x13\x3e\x28\x5c\x44\xbb\x36\x7b\x41\x70\xe2\x5a\x3e\xa8\x4c\xcd\x0f\x82\x42\x34\xbe\xec\x71\x3f\x9c\x30\x51\x1f\x35\xda\xa6\x69\xb0\xab\x48\x84\x56\x86\x09\x49\x53\x2c\xb9\x5a\x73\x2f\x08\x83\x4b\x75\x3a\x1c\xad\xf6\x8d\xaa\x58\x42\xa9\xfb\x8c\xc3\x94\x88\x37\x67\x95\x76\x3b\xb4\xa7\x1b\xa1\x59\x35\x30\xa1\x60\x26\x64\x1c\xdf\xb0\xea\x9b\x51\xe6\xc7\x94\x2a\x2b\xe0\x4f\x29\x7b\x74\x03\x97\x26\x39\xb3\xcc\xf7\x0f\xdf\xe8\x06\x93\x3a\x17\x31\x6f\x02\x95\xe3\x39\x16\x58\x22\x62\x53\xa9\xd2\x3e\xb5\xba\xd4\x68\xcd\x80\x2e\x4b\xbc\x5a\x06\xba\x5c\x28\x82\xce\x3c\xdf\xcf\xd5\x3a\xa1\x28\xf8\x93\xc9\x11\x4b\x7c\x55\x33\xbd\x0c\x1f\x11\x4c\x8e\xce\x0a\xfc\x3f\x13\xd2\x16\x0f\x6b\x0e\x70\xba\xa7\x5f\x74\x62\x81\xb1\xb1\xe2\x1f\xfc\x88\x8b\xf3\x61\x6c\x26\xd5\xb8\x11\x2f\x11\xe9\x93\xb1\x83\x92\xf9\x32\x46\xdf\x40\x40\xee\x56\x7c\xbb\xb1\xdb\x8a\x1a\x9a\x93\x20\xc9\x4b\x27\xd8\x41\xe7\x70\xf8\x9b\x67\xc0\xe6\x11\x9b\x41\x99\xfc\xd9\x0d\x89\x47\xb8\x49\xdf\xb8\xbf\x61\x9c\x9c\x46\x1c\x29\xaa\x96\xd6\x32\xb4\xae\xd9\x1b\x05\x0c\x66\x4c\xdf\xa6\xc1\x3b\xbf\xa1\xbe\xcd\x53\xb7\x69\x2e\xb2\xd4\xb6\x91\xdc\xab\x32\x98\x72\x22\x34\xf7\xd4\xa8\x3e\xd0\xdc\x60\xe2\xd3\x78\x40\x71\xa8\x07\x5b\x66\x63\x02\xd1\x9f\xd2\x18\xdd\x73\xb5\xf5\xc8\x7c\x21\xa0\x78\x7e\x8b\x9b\xd2\x73\x41\x18\xa6\xeb\x6b\x1e\x6f\xad\x14\x36\x99\xcb\x79\xde\x5b\xb9\x96\xdb\x70\x1e\xc8\x54\xaf\x4c\x2a\xe7\x16\x59\x4f\x29\x21\x45\xa9\xd1\x61\xa7\xeb\xd7\xa5\x8f\xcb\x4c\x39\xb1\xb9\x42\x78\x1e\xf4\xd6\xae\x0d\xd8\xbd\xdb\x4a\x0d\x6a\x7f\xf2\x37\x69\xea\x3d\x7d\xa8\xb3\x5a\x6e\x32\xc9\x94\xd4\x80\x37\x59\x26\xc9\x14\x99\x09\xa0\x9e\x72\x85\x5f\x86\xdc\x5f\x1b\xb0\x7f\xc7\xa4\x52\xdc\xc0\x30\xad\xe5\x93\xf8\x5a\x09\x14\x81\x72\x25\xf0\xa9\x7b\x75\x08\x69\xd6\x70\x75\x00\xdc\x13\x20\x62\xf6\xaa\x69\x1d\xcb\xb3\x32\xd4\xdc\x8f\xcb\x79\x18\x9f\x78\x71\xbf\x0f\x79\xc0\x53\xd9\xb9\xbf\x4e\x48\xc8\x14\x1f\xef\x4b\x89\xb5\x6e\x4c\x90\x9a\x76\x01\x6e\x4f\x5a\xb2\x8a\x11\xe9\x38\xa5\x9a\x78\x82\x6a\x0d\xc7\x05\xab\x61\x05\xa3\xc7\xac\xe3\x87\x3a\xc3\x8b\x6b\x06\x46\x83\x4a\x0e\xa3\xeb\xe0\xf3\x86\x79\x6f\x97\x69\x2d\x3b\x62\xd5\x7e\x49\x65\xfd\xf7\x78\xef\x7e\x6b\xba\x32\x23\x11\x9b\x44\xad\xa3\xf7\x07\x9d\xb8\xa3\x47\x92\x09\x89\xba\x98\xf5\xb3\x1f\xb8\x6e\x1e\x55\x87\x1f\x23\xb9\xa3\xf2\x50\xcc\xb2\x54\x26\x34\xcb\xd4\xcc\xee\xc8\x64\x40\x27\x4e\x81\x4e\x64\xc2\xda\x4b\x9e\xad\xe4\xf2\xf4\xd4\xb3\x2b\x86\x15\x49\x26\x2b\xa8\x30\x39\x1d\x79\x2a\xb3\x3f\x53\xa5\x58\x10\x2f\x7e\x46\x03\x3c\x4f\xa5\x58\xe9\xc0\x85\x07\xcf\x63\xd8\xfd\x8a\x5c\x03\xcf\xf1\xdc\x5c\x9a\xc9\x5f\x99\x69\xbf\x1c\xc4\x5d\x0e\xae\x7b\x94\x1a\x4d\x1a\xc9\x80\x18\x0d\xcf\x49\x89\x4f\xcb\xf8\xf8\x2f\xe6\xf5\xa4\xec\xc5\x31\x5c\x48\xba\xee\x9a\xb0\xff\xdd\xc2\x29\xa2\xea\xc0\xeb\xa1\x2d\x54\x34\x6b\xd2\xcd\x4a\xf2\xb8\x6d\x10\x74\x9f\xc4\x6a\x68\x14\x55\x3d\xae\x9b\xce\x4d\xbd\x93\x58\x3a\x19\x4f\xc2\xf5\xb6\x82\xeb\x0f\xb2\x03\xd8\xf9\x00\x94\xf9\x85\x00\x68\x4d\xa6\xbf\xd0\xd5\x2a\xc2\x7b\xdf\xf4\x68\x4b\x7f\x74\xeb\x85\x84\x5a\x0b\xcf\x67\x2e\x5d\x12\x1f\x7f\xd2\x5f\x6e\x5a\x6c\xaa\x9e\x9e\xc0\x65\x75\xbb\x01\xbb\x5f\x11\x01\xae\x3f\x40\x86\x4f\x1d\xaf\xdd\x1b\x50\xae\x48\xe2\xb2\x74\x5e\xac\xbf\x69\xe2\x32\xd7\x14\xc6\x2f\x3b\xc8\x9a\xb0\xdb\x4e\xdb\x4a\xd3\x26\x45\x74\x4c\x7f\x6b\x5d\x6a\x6b\x96\x6e\x34\x1d\xab\x1d\xd1\xfe\x47\x75\x4d\x92\xf8\x8c\x04\xf9\x54\x4c\x4c\x69\x9c\x66\xa1\xc5\xe5\xf3\x99\x31\x41\xa2\x6d\x7e\xf5\x54\xff\xb2\x23\x0e\xd1\x43\xee\xf1\x74\x1b\xa6\xb6\xb2\x75\x2c\x22\xa1\xff\xad\x59\xda\x63\x90\x7e\x2e\x2a\xd6\xd6\x97\x17\x6a\x5f\x82\x44\x57\xc0\xad\x73\xf1\xb6\xfe\xce\x19\x93\x17\xff\x28\x57\x8d\x4d\x99\x1a\xf2\xe0\x96\x55\xe0\x53\x63\xf7\xa8\x61\xeb\xea\x97\xec\xd8\xb4\xb4\x21\xcf\xbe\x26\x60\x09\x09\x98\xf0\x22\x66\xf5\x62\x8d\x91\x2a\x70\x74\x18\x11\x8c\x30\x5a\xd1\x1b\x4a\x9e\xf8\xbf\xec\xa8\x85\x9b\xb2\x2a\x63\xba\xfc\xc6\x04\xa9\xd7\xaa\x63\x44\x2f\x1a\x6e\x96\xb1\x12\x4c\xdb\xa3\x8a\x51\x0d\x84\x24\xa7\x8c\x51\xb5\x1c\x3d\x02\x8d\xe0\x48\x32\x09\x1f\x1b\xf8\x7a\xb9\x88\xfd\x7c\x03\xb3\x4a\x24\x06\x99\x0c\xe4\x13\x3c\x55\xc5\x45\xfe\x16\xfc\x19\x06\xf8\x85\xb9\x0f\xc2\x75\x35\x71\x16\xe6\xb7\xa0\xfa\xc5\x5c\x79\x0f\x1e\x70\xa8\x60\x8c\xda\x25\x17\xa5\x0c\x89\xeb\x54\xda\x6a\xb8\xb2\xdf\xa0\xe5\xee\xe1\x3c\x08\x7e\xb3\xfe\x8e\x04\x62\xb9\x8c\xee\x9c\x25\x2e\xe7\xcd\xd7\x57\x13\xfb\x09\x10\x5c\xa2\xdf\xc3\x49\x6f\xde\x88\x09\x16\x7f\xd6\x05\xc2\x2e\xeb\x7b\xdc\xd2\x67\x43\xf0\xbf\xb9\x87\x9c\x9f\xfc\xc2\xc7\x9f\x39\xcd\xea\x3b\x9e\xb5\x39\x5b\xad\xa1\x6c\xa1\xc6\x94\x7b\x51\x47\x8a\x57\x60\xf2\x23\x1c\x47\xa3\x1b\x13\x48\xce\xb8\x2a\x8a\x47\x88\x94\x6a\x4d\xbe\x9f\x2b\x65\x2f\x5b\x86\xfe\x67\xc6\x6e\x4b\xd8\xff\xca\x25\xec\x93\x9e\x83\xb8\x0f\x1e\x79\x6a\x50\xcb\xf5\x6e\x01\xd6\xa2\x5e\xac\xa1\x7a\xb1\x5a\x63\x84\x88\x59\x97\xb1\x10\xc8\xab\x74\x4e\x6f\x43\xf4\xc9\xb5\x4d\xeb\xa2\x89\x1a\x17\x59\xd8\x91\x5e\xf6\x2c\xc8\x56\xbf\x11\x04\x6c\x4b\x11\x36\xe1\x4e\x0b\x29\x42\x42\x89\x53\x84\x3c\x1d\x68\xb7\x37\x9a\xd5\xd2\xbc\x65\xcf\xb9\x6a\x46\x46\xa2\xe2\x72\xd3\x61\xc6\xd2\x16\x0f\xfb\x2e\x9a\x6e\xce\x75\x44\x5a\xf7\x77\x98\x25\x70\xfc\x7a\xdf\xa8\x65\xba\x97\x0a\xa0\xc7\x12\x95\x10\x72\x3e\x80\xa2\x48\x4e\xd5\x78\x12\xaf\x91\x54\x6f\x9b\xb0\xdf\xc2\xc9\x26\xaf\xde\x0d\x81\x13\x25\x13\x27\x0d\x65\xda\xd2\x74\x8b\xb2\x6f\x1e\x6d\x70\x6b\x67\x47\x69\x44\x2a\x42\x23\x5e\xb3\xde\x5f\x25\x84\x7a\x21\xdf\x1f\xb1\x71\x94\xd0\xd8\x0a\xa1\x5b\x21\xf4\x9d\x85\xd0\x2d\x2a\xdd\xb8\x3b\x2d\x16\x42\x53\x71\x16\xe1\x4a\x1b\x75\xef\xe9\xa3\xde\x0d\x18\x6d\x40\xa6\x47\xe5\x1a\x23\xc3\x57\xa9\xef\xe6\x6c\xdc\xc9\xb1\xde\x7f\x42\xfd\x3b\xfa\x14\x7a\x6b\x91\x52\x0e\xa3\xbc\xe1\x35\xe4\xbb\x06\x46\x79\x82\xd1\xb1\xab\xc7\x3e\xc7\x08\x0e\x93\x62\x09\xa3\x12\xbc\x41\x1e\x7b\xce\x06\x61\x80\xf3\x54\x23\xe6\x90\x10\xa9\xa5\x3c\xd1\x0a\x3f\xcb\xc4\xb1\xb9\x23\xe6\x5e\x65\xa5\x11\x6f\x71\x37\x46\xa4\xf8\x2c\x56\x4d\xc7\xee\xdc\x1e\x69\xa6\xd5\xd6\x29\x13\xb0\xc4\x24\xcc\x30\x63\x32\x8e\xf5\xb2\xa9\xd1\xd3\x46\x3c\x77\x80\x80\x15\x24\x60\x19\x78\x4c\x26\x5f\x88\xa6\xab\x74\x40\xd2\xd4\x6c\xcb\x2b\x28\x61\xc3\x8d\x09\x52\xf7\xf4\x29\x0d\x54\x58\x6a\x66\xf9\x3e\x0c\x36\x9d\xc8\xa7\x76\x97\x9b\xdd\xe2\xcb\x22\xaf\xfa\x99\x95\x1e\x4a\x91\x58\x74\xa9\x5f\x59\x58\x98\x8a\x37\x62\xd1\xeb\x2f\x75\x8e\x8d\x5a\xba\xf3\x43\xe5\x35\x39\x35\x63\xa1\xf7\x33\x4f\x31\x89\xb8\x86\x64\x67\x68\x5b\xb4\xa7\xd3\x2f\xd5\x51\xcb\xd0\x46\x2c\x5b\xac\xd6\x50\xb6\x58\xa8\xb1\xd0\x70\xbc\x49\x1b\x13\xa4\x8c\xdc\x6b\xa0\x67\xb5\x81\x08\xbe\x6f\x61\x34\x9a\xe1\x5c\xc1\xe7\x38\x05\x53\x1b\x07\xeb\x49\x67\x22\xb7\x31\x0d\xd6\xcb\x34\x42\x90\x59\xd0\x89\x67\x4b\x08\x90\x26\x30\x20\x41\x23\xc8\xa8\xf0\xba\x27\x5b\x09\xdf\x87\xc7\x57\x40\xf8\xe1\xc9\xf0\x50\x84\xe5\xd9\x08\x06\xe6\x63\x87\x2d\x1a\xcb\x14\xcf\xcf\x29\x80\xb0\x6c\x4b\xeb\x51\xbd\xa5\xb1\x6c\x1e\x60\x8c\xfb\x4a\x67\x1c\x24\x50\x67\x23\x61\xcc\xde\x00\x18\x5b\x66\xd4\x32\x20\x36\x0d\x6b\xc1\x92\x0e\x6e\x11\xf4\x79\x3f\x96\x6a\x0b\x61\x3f\x05\x61\xbe\x23\x75\x00\x61\x39\x4b\x1f\x36\xa9\xa1\x2d\x43\xc5\x5e\x43\x48\x8e\xc9\x3c\x74\xcd\xa4\x49\x68\xcf\x59\x66\x57\x33\x6e\x8f\xf5\x5e\x6f\x0b\xf0\xbf\x24\x51\xdd\x42\xfc\xfb\x43\xbc\x57\xc9\x30\x80\xb2\xbc\x63\x59\xfa\x52\xf0\xfe\xe1\x00\x56\x4c\xfb\x30\xf4\xb1\x10\x36\xbd\x28\xe7\xf4\x7e\x32\x97\xa3\xa9\xee\x15\x43\x75\xde\x12\xad\x70\x92\x97\x18\x11\xc2\x53\xa8\x28\x5c\xf6\x1e\xfc\x27\x54\x2d\x7e\xf4\x02\xde\xac\x61\x0b\x41\x2d\xa5\x24\x63\x90\x56\xa0\xd6\x93\x6e\x2c\x22\x65\x4b\x53\x91\x40\xbd\x10\x5c\xbc\xe8\xa8\x3d\xca\xf6\x71\x5a\x49\xa0\x7d\x9c\x51\x12\x4c\x48\x9f\x22\x21\x73\x3a\x0b\x8e\xf9\x7d\xba\x27\xf3\xef\xd3\xae\x0e\xdc\x25\xdc\x4b\x78\x94\x40\x3f\xcd\x62\x74\x84\x31\x1a\x5f\xfb\xe9\x96\xa7\x91\x36\x93\x93\xe9\xd8\x53\x1d\x9b\x4d\x6a\xd9\x1b\x8f\x5c\x5e\x81\x64\x6e\xee\x02\x17\x41\x78\xfb\x69\x4d\x57\x90\xe5\x6f\x8b\x88\xb6\x88\xe8\x63\x11\x91\x44\x26\x90\x45\xc9\xb4\x5a\xb7\xc7\xe6\x93\x47\xf6\xf7\x09\x96\x79\xd0\x83\xec\x85\x3e\x00\x90\x52\x07\x09\x4d\xc7\x0f\x7c\xf0\x75\xc4\xef\xb5\x31\x8b\xe6\x79\x08\xbd\xe3\xc6\xca\x07\x49\xdb\x67\x37\x78\x20\xe5\x43\xd9\x41\xf5\x92\x03\x2b\x39\xd2\xe0\xa7\xa0\x71\x6e\x38\x00\x11\xb3\x1a\x57\xcd\xb9\xa7\x78\x55\x63\x62\xe2\x45\xad\xe0\xc6\x24\xcb\x2b\xc8\x7b\x87\x96\x18\x10\xef\x16\x1e\x52\xe0\xf6\x6a\x99\x07\x84\xbe\xd8\xba\xcb\x2e\xd7\xef\x0d\xc7\xde\x8d\xdf\xf3\x6e\x8b\xc6\x32\x59\x49\xc5\xd7\xb6\x6e\xb4\xb4\x3e\x35\x96\x25\x3a\x6f\x2b\xc5\x4e\xa3\x73\x46\x70\xec\xf9\xca\x5a\xaf\x69\x3a\xd6\x72\x22\xf6\x87\x53\xc3\xcd\x50\x14\xaf\xae\xc4\x0a\x79\x93\x17\xb4\x58\x0b\xee\xf1\x3a\x2d\xd6\x56\x51\xfc\xfe\x04\xce\xaf\xe9\x1c\x00\xd9\x85\x66\xd9\x1d\x96\xad\x03\x80\xd5\x17\x97\xe8\xe7\xab\xfc\x7e\xc1\x2a\x7f\x2d\x2f\xec\x55\xba\xcc\x17\x6b\x2c\x5f\xac\xa1\x3c\x4f\x41\x4b\x78\x55\xcb\xcd\x01\x74\x26\x48\xf4\x9b\x86\xbd\xca\x91\xfa\xf9\xd4\x3a\xbd\xb4\x54\x8c\x92\xba\xbf\x32\x67\xcd\x40\x12\x7e\xda\xe5\xf2\x1c\x96\x6d\x82\x41\xdc\xe0\xc5\xfc\xd1\xa6\xff\x0d\xf1\x4e\xd8\x0c\x3f\x88\x9d\x83\x9d\x0b\xaa\xea\x77\xba\xfa\xa5\x48\x87\xb6\x66\xb1\x22\x37\x8a\xa7\x90\x80\x93\x48\xc0\x09\x96\xea\x88\x43\x94\xc2\x28\x89\x51\xe2\x05\x17\x88\x77\x75\x3d\x66\x02\x71\xaa\xed\x23\xf1\x09\x91\xa1\x72\x02\xfb\x78\xdd\x21\x6e\x57\x0f\xeb\x0e\xf1\xd6\x43\xc5\xb3\xa1\xf7\x5a\x7e\x22\xa9\xe0\xd0\x43\x65\xba\xff\x8c\x91\x73\xfa\x4b\x83\xec\xd2\x83\x42\x6f\xa5\x79\xfd\x43\x92\xbf\xf8\xa9\xe6\xdc\x2a\x52\xbc\x8d\x04\xd9\x89\x78\x5c\x01\xbf\xf0\x82\x67\x5b\xf5\x4b\x4c\xde\x89\x77\x0b\x5d\x18\x8c\x06\x46\x47\xc4\x73\x5c\x89\xbb\xc5\xfb\x7e\x02\x4a\xd2\xc0\x28\x0b\xa7\x2a\xcd\xc9\xc6\x98\x17\xdb\x9d\x93\xa9\x66\x66\x6b\x61\x6e\x9b\xb9\x23\x5e\x4e\x8b\xb3\xea\x50\x26\x63\xee\xb6\x90\xaf\xd6\x92\xf9\x42\x8d\xe7\x9d\xca\x17\x6a\x28\x5f\xaf\xa1\xfc\x45\x8d\x71\x60\x72\xff\xb9\x54\x4a\x92\x3f\x9c\x48\x4d\x91\xac\x24\x19\x4e\xbd\x79\x95\xd7\x0b\x7c\x96\x31\xd2\x9f\x30\xba\x7c\x7a\x8b\x2c\x14\x41\xd5\x03\xee\xe3\x94\x6b\xe0\x6d\x3c\xcd\x36\x9e\xe6\xcd\x6e\xb1\x73\xb0\x53\x2c\xd6\x58\xa4\x3e\xc1\x72\xe5\xce\xd7\x09\x5b\x9d\x42\x6e\xcb\xc6\x6d\xd9\xb8\x37\x65\xe3\xbc\x82\xb6\x05\xa7\xd9\xd3\x0d\x56\xf0\x0a\x64\x1e\x95\x6b\x28\xe7\x16\xfd\x67\x03\xb1\x87\x84\x91\x58\xf0\xa2\x01\xa6\xa2\xc6\x16\x27\x81\xfd\xac\x1b\xc8\x5e\xcf\x19\x78\x6d\xae\x7b\xb8\x1b\x43\x93\x28\x7c\x1d\xc3\x81\x36\x87\x33\xd3\x77\xb6\xe7\xad\xb0\xb8\x10\x3f\x96\xc9\xfa\xea\x70\xdd\xd7\xf0\x87\x3e\xab\xbc\x35\x51\x63\x3f\x04\x60\xee\xb3\x3a\xf7\xec\xac\xfa\xfc\x21\x4c\xae\x34\x22\x3c\xeb\x87\x11\xb4\x93\xc1\x33\x3e\xc5\x47\x85\xeb\x67\x62\xfc\x2c\x53\xc3\xdc\x07\x08\x5f\x6d\xd9\xc7\xa3\x73\x94\x47\x31\x8d\xcc\x9c\x86\x9d\x75\x75\x00\x19\x6c\xce\xd2\x34\x4d\x37\x16\x5c\x67\x96\x45\x66\xbc\x14\x14\x2f\x03\xed\x2f\x2a\x9f\x96\x6e\x4d\xf8\x67\x6f\xf1\xec\x87\x7f\x0c\x3f\x4b\x19\x30\x12\xf0\x1f\xd8\x77\xe6\xfe\x9d\x28\x16\xf8\x31\x54\x2c\xd4\x50\xb1\x5e\x43\xc5\x0b\x38\x8f\x14\xef\xdf\x26\xf3\xf9\xf6\x3c\x3e\x5f\xc1\x48\x7f\xdc\xf2\xf9\x5b\x3e\x7f\xf3\x6f\x01\x50\x68\xab\x5f\x8e\xca\x35\x01\xb3\xa3\x72\x8d\xf9\xa0\xe9\x1d\x24\x6c\xdf\xad\x48\xec\x1e\xf6\xb5\x5e\x17\xa6\x65\xdf\x96\x4d\x4b\x1b\x36\x47\x8c\xa7\x36\xa3\x3c\x62\xc4\x4b\x52\x11\x8c\x26\x8c\xdb\x6c\x9b\x13\xc3\x6b\xd4\xa2\x4f\x94\xf1\x0c\xe0\xaa\x3b\xd0\x8d\xd1\x0c\x06\xca\x8c\x17\x37\x6e\x4d\x3e\x8e\xc2\xf6\x89\xc2\x04\x6d\xe2\xb8\xc4\xf6\x31\xf0\x2c\x13\x87\x65\xb6\x8f\x65\xc6\xe5\x96\xe8\x61\x85\xf1\x22\x29\xca\xc4\xe1\x04\xe3\xe9\xa1\x12\x13\x87\x93\x8c\xa7\xfe\x4a\x7a\x87\x4f\x8c\x96\x4e\x8d\x2f\xf9\x8e\xa5\x0f\xed\x3e\x1d\x32\x9e\xf4\x39\xe5\xbe\x85\x1b\x76\xe1\x8f\x4c\x33\x9e\xaf\x34\x3d\xf9\xf1\x68\x8f\x3a\x8c\x27\xc1\xcc\xf8\xc3\x22\x2f\xbf\x4f\x18\x0f\xdb\x8e\x3f\x06\xff\xc8\x04\x33\x3a\x79\x18\x66\x87\xb0\xe6\xe4\x61\x89\x09\x44\x62\xea\xc4\x61\x99\x09\x58\x66\x13\xdf\x63\x5f\x61\x02\x56\xd8\xc4\xe7\xd8\x4f\x30\x01\x27\xd8\xc4\xd7\xd8\x4f\x32\x01\x27\x59\x72\xe2\x68\x8a\x09\x38\xc5\x52\x13\x47\xd3\x4c\xc0\x69\x96\x9e\x38\x9a\x61\x02\xce\xb0\x4c\xe4\xe8\x75\x2d\xcf\xe0\xbf\x7f\xc8\xe5\xc9\xb3\xfd\xa1\xad\x59\x2d\xda\x67\xd9\x72\x0d\x55\x78\x25\x4e\xc2\xeb\x85\x62\x09\x73\x93\x05\xca\x17\x6b\x4c\xb8\x17\x9f\x90\x40\xdc\xdf\x2e\x12\xba\x6e\x15\x3d\xb2\x9a\xac\xea\x32\xf3\x1f\x18\x82\xeb\x6d\xdc\xe6\xa1\xc2\xcb\xb8\x09\xcf\xf5\x0b\x9f\x8e\x86\x8e\x25\x8b\x9d\x52\x54\x9f\xe3\xe6\x79\xd6\x2f\xd4\x58\x8f\x9c\x8a\x51\x19\xce\xd9\x2a\x46\xd7\x66\x94\xa1\x73\x80\x49\x87\xc6\x10\x63\x74\x03\x9d\x87\x26\x46\x37\x30\x7e\x58\xc6\xe8\xba\x1c\x75\x22\x72\x80\xf7\x84\xe1\x56\x76\x6a\x54\xd0\x19\x63\x74\x77\x83\x51\x2e\xdf\x80\xd7\x09\x6f\xe4\x8f\x1d\xf6\x31\x4a\x62\xd2\xdd\x5a\x6f\xb6\xec\xe8\xfb\xb2\xa3\x6e\x65\x7d\x1f\xcf\x18\x2d\xd3\xb2\x28\xab\x73\x43\xa8\x67\x0c\xf5\x84\xfd\xe9\x80\xc6\xb5\x6e\x4c\xb8\xce\xc1\x43\x3e\x9f\xcc\x8d\xca\xde\x2e\xd1\xdf\x62\x89\x7a\x89\xd5\xfd\x25\x3a\xb4\x2d\xda\xed\xcc\x4a\x66\x29\xab\xa2\xfa\x52\x3a\xcb\xd5\x42\x6f\xc9\x85\x6a\xa9\xbc\x5a\x71\x59\x5d\x47\xb5\xe2\x59\xf5\xdf\xdc\x24\x0a\x9f\x6f\x95\x86\xc5\x8a\xbc\xbc\xe7\xfe\x84\xd9\x1d\xcd\x18\x72\xc6\xc5\x57\xa1\x47\x38\x16\x32\x12\x2f\xfd\x5a\xbf\x11\x6e\x45\x72\xb3\xc8\xbe\x23\xbe\x99\x87\x85\x24\x9a\x24\xcf\xe2\x25\xca\x57\x9a\xb0\xeb\x1b\x18\x75\xaf\x09\x46\x99\x26\x46\x72\x71\x88\x51\x83\xc2\x84\xf8\xd3\xdf\x95\x1b\x18\x55\xc6\x18\x55\xf3\x03\x3f\x39\x48\xb0\x20\x5c\x1d\x96\xe9\x2b\x0e\x5d\xa9\xf3\x08\xce\xb6\x61\x38\xc8\x68\x4d\x2e\xd4\x5e\x6e\xa9\xf7\x66\x23\xac\x0d\x41\x8d\x72\x22\x0a\x69\x25\xd3\x68\x99\x06\xf3\x35\xf6\xb9\xc2\x04\xf1\x5e\x75\x0b\xc1\xc0\xfd\xeb\xc3\x55\x4d\xab\x6d\x5c\x6f\x4f\x3d\x2e\x9d\x2f\xde\xdf\x40\x67\x2f\x5d\x8d\xbd\x1c\x40\xd3\x5e\x93\x11\x25\x7e\x19\xa3\x6f\x59\x8c\x9e\x73\xb1\x2b\xc1\xab\x35\x9b\xae\x87\x28\x9c\x0a\x47\x6d\x15\xfe\x5b\x85\xff\x67\xc3\x9c\x1b\x82\xa3\x09\xe6\x55\x7c\x3c\x1c\x9d\xd3\x7a\x6d\x8b\xb6\xb4\x8d\xf1\x35\x65\x02\xc9\x5c\xe5\x31\x92\x4f\x2e\xf0\x4c\xed\x83\xa5\x62\x74\x09\xcb\xea\xb1\x6f\x6e\x59\x90\xcd\x59\x74\x9b\xb2\xbc\xa5\x28\x0b\x92\xd3\xac\x9e\x6e\x04\x8b\x1b\xe5\x8b\xe5\x60\x85\xcf\x70\x9a\xf9\x70\xce\xe2\x0d\xfc\xaa\xbb\x25\x8c\x2a\x2a\x46\x7d\xe2\xf5\xe1\x0c\xbe\x3a\x70\x53\xec\xdd\x03\x39\x6e\xcd\xa1\x6e\x5a\x27\xbb\x55\xd8\x7d\x16\x28\xd8\x10\x78\x53\x48\x14\xde\x2e\x2c\xda\x76\x42\x62\xc2\xd3\xcd\xf9\xe0\x36\x83\xa4\x48\x1f\x06\x68\x6f\x04\x6c\xee\x8f\xfb\x6d\x00\xe6\x06\x18\x3d\x67\x31\x97\xca\xa7\x98\x48\xd5\x87\xc5\x66\x45\x9d\x66\x52\xb7\x00\xb7\xe9\x60\xb0\x21\x00\xe7\x15\x6b\xf1\x09\x9c\xe5\x0c\x87\x5a\x6f\x18\x53\x91\xbb\xa9\x72\x03\x51\x3b\x96\x24\x17\xcb\xcb\x6f\x1f\xad\xed\xf2\x34\x5e\x5a\x47\xc5\x48\xe6\xc9\xb0\x89\x3a\x1b\x52\xfb\x23\x8c\x4e\x54\xef\xab\x71\x31\xb1\xe8\xdb\xba\x1c\xe8\x83\xcd\xa8\xf0\xec\x02\xe4\x2c\xb3\xd5\x5c\x79\x96\xca\x2f\xca\xc2\xe1\x55\x66\x45\x9b\xbf\x2a\x71\xee\x08\x63\x94\xa8\x1b\x53\xf8\x87\x1b\xdf\xf4\xa0\x95\xc7\x9e\xc5\x50\xd3\xcc\xad\x3d\x6e\x8b\x6d\xde\x10\xdb\x48\x31\xf2\x9e\x73\xd4\x0e\xb5\xb4\xa1\xcd\x72\x11\xf5\x39\x13\xc8\x89\x68\x46\x58\xea\x8f\xc6\x19\x3e\xe6\x20\xcf\xd9\x01\x3c\x99\x84\x4b\xb0\xbb\xca\xbe\xd9\x02\xcf\x3e\xab\x5e\x54\x96\x0b\x53\xbc\x38\xc4\xcb\x86\x96\x9f\x87\xa9\xb3\x97\x3b\xcf\x08\xb6\x76\xdd\xad\x8a\x5b\x98\xda\x08\x98\x22\x99\x38\x4c\xb5\xe8\x00\x40\x6a\x53\x34\x30\xaf\x65\x9b\x79\xd0\x1c\x0f\x9f\x33\xa1\x65\x37\x31\xba\x94\xfa\x18\xc9\x15\x6d\x36\x03\x6d\x9e\xfa\xba\x6d\x2c\x2f\x02\x8e\x08\xb1\xf5\xff\x4c\x1f\x53\xec\x66\xf8\x78\xaa\x78\x8d\x5c\x0e\xa3\xd2\x18\xa8\xa1\xe4\x3a\x64\x56\x2b\x8d\x6d\xdd\x96\xcf\x02\x30\x9b\x02\x9a\xa9\x28\x68\xfe\x9f\x63\xe9\x6a\x67\x63\x00\x93\x09\x24\x53\x9a\x91\x2b\xf1\xf9\xe8\xe5\x35\xbe\x5d\xde\xdb\xe5\xcd\x2b\xf8\x2b\xe1\xf2\xce\x77\xf4\xa1\x6e\x50\x87\xe5\xcb\x35\x94\x9b\xe5\x0f\x81\xca\xd5\x33\x54\xae\x16\x98\x40\x6a\x28\xc6\xe5\xf9\x72\xa5\xef\xdf\x32\xb3\x5c\x17\xf7\x9b\x4c\xa6\xa6\xb7\xf5\x17\xf1\x92\x92\xf7\xad\x1a\x7a\x3a\x2a\x53\x31\xfb\xf6\xfc\x9f\x94\xca\x62\x24\x69\x06\x46\x72\xa6\x3d\x49\xdc\x6e\x32\x40\xfd\x52\xe3\x75\x96\x9b\x6d\x97\x30\xaa\x4f\x0c\x3f\x9b\x66\xfe\xe6\xd6\xc0\x77\x19\xc2\xc2\x16\x2c\x37\x02\x2c\x93\xa9\x18\x58\x9a\x03\xcd\xe8\xd0\xb6\x66\x6c\x0c\xe5\x99\x66\x00\xc7\x79\x8c\x6a\x63\x8c\x6e\x9c\x73\x8c\x92\xf8\x61\xbe\x8a\xb4\x0a\xaf\x7a\x9c\x75\x8d\x12\x5c\x55\xc1\xdd\x01\xe0\xaf\xac\x89\x11\xe9\x24\xb2\x5b\xad\xc4\x67\x59\xc6\x1b\x02\x30\x71\x23\xdf\x91\xde\xb4\x68\xcf\xa6\x56\xcc\xd5\x68\x86\xc3\xf0\x7a\x7d\x8f\x96\x2e\x28\xff\x56\xdb\xd6\xa1\x68\xc3\x1d\x8a\xf0\xe9\x78\x8b\xc6\x36\x11\xb9\x6c\x08\x1a\x93\x71\xd4\x93\xfc\x58\xeb\x0d\x75\xa3\xab\xf3\xba\xfb\x11\xdd\x6a\x41\xac\x7c\xb0\x6e\x95\x09\xa4\xee\x54\xe0\x39\xce\xaf\x4b\xb0\x23\x2d\x57\xee\x7c\x98\xb1\xd6\x2a\xdb\x85\xbe\x39\xcb\x6f\x43\x16\x7a\x9c\x5e\x9f\xd1\x9e\x6e\xe8\x46\xdb\xa2\xad\xd0\x53\x20\x90\x3d\x3d\x91\x13\xf1\xf0\x50\x9f\x6e\xfb\x42\xa7\x1f\x4c\x31\xed\xb9\x23\x4b\x53\x11\x7b\xab\x48\x8c\x49\xe9\x0d\xbc\x01\xe4\x0c\x46\x20\x19\x12\x90\x0c\x89\x04\x90\x30\x68\x36\xd7\x21\x07\x56\x7e\x41\x18\x49\x1f\x8f\x31\x53\x94\xa8\x28\x74\xa6\x6b\x8f\xec\xcc\x43\x87\xb0\x30\x22\x8a\x89\x82\x9f\xfd\x48\x12\x95\x69\xad\x44\xb0\x48\x78\xdc\x86\x94\x98\xde\x92\x64\x9d\x1b\x8f\xd5\xe1\x8f\xa6\x5d\x9b\xb0\xb3\x8c\x31\x46\xd2\x71\x54\x5b\xd0\xa2\x18\x91\x47\xa5\xbf\x4e\x45\x41\xa1\x89\x91\x2c\x49\xf8\x45\xfd\xc0\xe5\x26\x2f\x8d\xdf\x1c\x7d\xca\x4a\x0c\x7d\xea\x96\xf9\x38\x23\xda\x4c\x17\xcb\x6f\x18\x6d\x06\x80\x05\x0f\xf5\x70\x9c\xc1\xdb\x40\xb3\x97\xf1\x56\x4c\xb3\x5a\xd2\x87\x4d\xd3\x88\xd5\x67\x47\xf5\x62\x39\x22\x93\x66\xc5\x53\x34\x4b\x2e\x5d\x61\x8a\x5e\x57\xc9\xfa\xa5\x1e\x1e\xed\x5c\x0f\x1b\x29\xf5\x34\xbc\x2d\x65\xfd\x8b\x95\xb2\x1e\x3c\x8e\x16\x0e\xdb\xd6\xb3\xfe\x5c\xa4\x68\x43\x88\x9e\x14\x33\xc5\x96\x9c\x67\xad\xdf\x34\x1d\xab\xcd\xb1\x6a\xc4\xd3\x31\x40\xaf\xee\x5f\x4c\x30\xc5\x6c\x80\x58\x67\xfb\x40\xae\xa2\x65\x4b\x24\x13\xc9\xc4\x1a\x90\xe1\x8a\x88\xb3\x70\x84\xe1\xbd\xec\x64\x1f\x76\x35\xdf\x86\x73\x3d\x80\xaf\x25\x79\xdf\xcd\xaa\x63\x94\xe7\xdf\xf4\x02\xa3\xab\x0c\x46\xa4\x78\x8e\xd1\x35\x30\x7e\x0e\xf4\xc1\x7d\xdf\x4d\x43\xe7\x0e\xca\x20\xed\x64\xea\xbe\x4d\xc8\xa5\xe9\xe1\xd9\x56\x2c\x1b\x15\x3f\x16\xb6\x52\x77\xef\xe7\x05\xf9\x98\xc5\x28\x89\x4b\x53\x72\x57\xa8\x30\xdc\x7a\x41\x6e\x71\xd1\x3a\x71\x51\x22\x26\x95\x96\x69\xcb\xd2\x5b\x6c\x0e\x67\xb7\x8c\xb5\x41\xfa\x00\x6b\xc1\x0b\x96\x84\x44\x0d\xe0\x3d\x93\xf3\x29\x31\xb0\xf4\x4d\x1e\x53\x9a\x1e\x60\x24\x1f\x37\x66\xa0\x84\x90\xe5\xf2\x11\x86\x7e\x62\x60\x74\xdc\xf2\x2e\xc2\x75\x1f\x12\xc6\x48\x1a\x4a\x5e\x7a\xfa\x04\x2d\x61\x54\xe6\xa9\x08\xc6\xfe\x15\x43\x74\x33\xa3\x95\xec\xf8\xa9\xe2\x1a\xc7\x8d\x58\x6a\x3c\x1a\xa4\x66\x9f\x4c\x9c\x97\xdf\x02\xfd\x16\xe8\x7f\x1a\xe8\x93\x31\xa5\x65\x99\xf6\x6c\xba\xa1\x06\xf9\x65\x8d\xf6\x96\xef\x22\x19\x4a\xee\x0a\x00\x8c\x69\x60\x54\x07\x98\xe4\x79\xff\x53\x3e\xf8\x96\xe5\x1c\x46\x89\xb2\x14\x23\xbc\x31\x13\x1b\x49\x72\xe5\x95\xe6\x9b\xbe\xb8\x2e\x0b\x5a\xdc\x37\x05\x3e\xec\x51\xad\xee\x39\x4a\xe7\xa3\xa5\x9e\x78\xa3\x58\x9e\x3c\x12\x98\xf4\x82\x72\x50\x6a\xc0\x3f\xf4\xb2\x18\x35\x78\x88\xc7\x03\x5e\xaa\x82\x44\xd8\xd2\xe1\x75\x33\x41\xb9\x88\x2d\xf0\x6f\x30\x48\x6e\x08\xf0\x2b\x52\x8c\xe2\xeb\xc6\xb0\xcb\xca\x8b\x14\xd1\x9e\xbd\xe2\x7c\x9e\x2a\x3a\xaa\x8e\x96\x67\xe8\xa3\x97\x55\x2c\xa7\xb8\x66\x99\x9c\x23\xed\xda\x38\x47\x0f\x95\x06\x46\x72\xfb\x72\x92\x37\xce\xf6\x30\x22\xf6\xd0\x58\x93\x6a\xd9\xd3\xa2\xac\x92\x09\x6d\x03\xd7\xf8\x84\x23\x7e\xd9\x34\xa8\x6a\xb2\x8b\xf9\x4a\x3b\x21\x23\xf6\x7e\x56\x6b\xe7\x6e\x71\x17\xc9\x8f\xda\x98\x20\x19\xaa\x09\x2f\xa5\x56\x9a\xb0\x3b\xce\x06\x7e\x21\xfc\x03\xc2\x2c\x9b\xa6\x9f\x4f\x52\xc5\xe8\xb2\xbc\x20\xb4\x2e\x48\x41\xb9\x5a\x64\x1d\x7e\xf7\xc8\xba\x3b\x8c\xa4\xab\x1b\x9f\x3a\xf0\x34\xc4\xe3\xe9\x18\x85\x3b\x0a\xc3\x1f\x7c\xf1\x52\xeb\x1a\x3e\x6f\xcc\x19\xcc\xad\x7c\xb9\xa5\x36\x6f\x66\xe0\x49\x47\x1d\x41\xca\xe6\x50\x35\x9f\x38\xb9\xe1\xff\xab\x35\x54\x2e\x54\x5d\x52\x03\xb4\x67\x1f\x27\x62\xe6\x72\x26\x48\x8e\xd8\x41\x82\xf4\x28\xde\x23\x41\xe6\xbf\x8a\xfb\xeb\x91\x9e\x44\xc4\x84\xee\xfa\x6a\x13\x17\xf7\x24\x95\x44\x6a\x26\x6e\x48\xcf\x3e\x3c\xbd\x65\x78\x5e\xdc\x36\x7f\x02\x69\x30\xaa\x8b\x75\x44\x9a\xf0\x5e\xa4\x81\xd1\x11\x50\x88\xe3\x26\x46\x2a\x7f\x1e\xbd\x8b\x91\x5c\xc8\x62\xd4\x02\xb8\x4b\x64\x31\x52\x09\x46\xd2\x03\xc1\x48\x2f\x93\x35\x98\x99\x16\x40\x4c\xc5\xd5\xd9\x5b\x8d\xcf\x0b\x34\xdc\xf0\x44\x92\xd1\x74\x3e\x17\xd4\xd2\x87\x71\x12\x16\x70\x2a\x75\x9e\xfb\xe4\xed\x48\x18\x30\x32\x09\x29\xf1\xa1\x9a\x0b\x97\x82\xa5\x5d\x0a\x96\xfe\xad\x28\xd8\x49\x17\x84\x33\x79\x92\x6c\xdd\x3c\x63\xd4\xc9\x6d\x29\xd7\x96\x72\xbd\x0b\xe5\x22\x24\x8a\x7e\xae\xf4\x36\x65\x57\xe5\x1a\x2a\x55\x17\xfa\xec\x90\xac\x38\x42\x82\xe4\xfe\xce\xf3\xdc\xe1\xc5\x45\x5c\x22\x23\x27\x27\xb6\x94\xb4\xde\x8d\x2b\x44\xc7\xf0\x7c\xee\xab\x02\x32\xe9\x9a\x18\xb5\xeb\x7d\x8c\x46\x85\x06\x9c\x91\x9a\x20\x7b\xdd\x15\xa7\x18\x47\xf8\xe1\x9a\x90\x61\x69\xb4\xb1\xce\x5f\xe1\xa5\xe6\xad\x04\xd9\x34\xb7\xe0\xb3\x6e\x1d\x63\xcc\xb0\x70\x65\xf6\x37\x27\x11\xdf\xc7\xa9\x18\xcb\xf1\x0c\x27\xeb\x56\x31\xce\x3e\xf5\xd2\xa8\xe0\x48\x48\x52\xb7\x44\x73\xd3\x61\x71\x43\xa0\x5e\x8e\xe9\x9d\xaa\xb4\x4f\x2d\x3a\xc3\xa1\xaf\x2b\x76\x97\x71\xe8\x5b\xc6\xbd\x99\x48\xef\xea\xcf\x27\x8d\x88\x0f\xaa\x9f\x66\x85\x4a\xc3\x81\xa7\x15\x94\xe2\xb3\x63\x51\x7b\xa6\xbf\xa5\x22\xea\x8b\xa7\x67\x35\x79\x6a\x1d\x13\x14\x99\x96\x19\x78\xe4\x33\x3b\x5c\xa2\x44\x9a\x44\x8a\x84\x56\xf5\xfe\x9d\x66\x99\x03\xb3\xc7\xaa\x0b\xb5\xf4\xae\xba\xa4\x3d\x5f\x4b\xaf\x2c\xd4\xd2\xbb\x4a\xf8\x65\x35\xf6\x29\xb7\x64\x83\xd4\x46\xda\xb5\xd9\x46\x56\xd1\xc0\x48\x7a\x18\x4e\x12\x3b\xf9\x86\x4b\xa2\x6b\x53\x7d\x5c\x62\x8c\x14\xad\x84\x67\xba\x7f\xb7\x1a\x5e\xf5\xf3\x89\x08\x71\x53\xf6\x55\xa3\x1b\x31\xe7\xf3\xfb\x03\xb3\x61\xd4\x31\x93\xe5\x28\x2b\x55\x35\xef\x74\xca\x6b\x24\x47\x22\x4c\xfc\x62\xc9\xb1\xfc\xaf\xd2\x8a\x49\xf1\xde\x70\x63\x02\x49\xa6\xa7\xfd\x9a\x42\xd6\xbc\x7f\x76\xec\xcf\x3d\xaf\xe8\x40\x07\x41\x4b\x82\xd6\xc8\xcf\x4c\xf7\xe6\x6c\xc6\x92\xc9\x04\xb6\x79\xa6\x36\x98\xcd\x98\x20\x64\xb6\xa9\x76\x3b\x66\xaf\xbf\x31\x12\x46\x90\x47\x20\x07\x1c\x43\x41\xdb\xf2\xd1\x9f\x65\xd9\x6d\xca\x02\x8f\x95\x1b\xa9\xd1\x5e\x4f\x37\x0c\x56\x2b\xc7\x90\x7e\x18\x51\xe8\xc7\xd3\xa2\xa9\xb0\xc2\x30\x5a\x8c\x60\xd9\x8d\x7d\x98\xb2\x74\x4c\xaa\xa0\xde\x76\x63\x82\x94\x34\x2b\x05\x64\x6b\x05\xef\x05\x6b\x14\x23\xc5\x6a\xf4\xd0\x59\xb5\x54\x40\xd2\xb7\x06\x46\xd2\xe9\x54\xb2\x19\x92\x3e\xc5\x88\x0c\x6b\x8d\x8d\x55\x34\xcd\x5c\x25\x24\x3a\xeb\x09\xae\x93\xdf\x02\xc8\xdb\x03\x88\x42\xa2\x3c\x51\x4d\xb7\xa8\xa1\xc5\xfc\xe7\x99\x40\xee\x41\xca\xfc\x80\x82\x7a\xf3\x37\x60\xd0\x7b\x39\x78\x2e\xa2\x0c\x54\xd8\x27\x4a\x79\xf7\x4d\xdd\x04\x17\x79\xe0\x4e\xb0\x81\xbd\x4c\x83\x9c\x05\xe4\xc1\x34\xbc\xf5\x50\xf1\x38\xda\x87\x01\x46\x8d\xe6\x64\xc3\xed\xd4\xcb\x45\xbb\x47\xdc\xc4\x92\xc6\x1b\x1b\x1a\xb7\x34\x66\xd3\xef\xb4\x18\x84\x62\x8e\x60\xd7\xbd\x11\x35\xcc\xc7\x61\x77\x52\x1f\x80\x78\x91\x63\xb9\x25\x66\xa3\x3a\x01\x1f\xa8\x66\xa8\x6d\x56\xa8\x25\xf7\xbe\xaa\x1b\xf8\xf3\x57\xb0\x8c\x7b\xb5\xff\x62\xd9\xd2\xaf\xc7\x9d\xb6\x69\x99\x91\xb4\x03\x21\x6f\x10\xe4\xdb\x98\xe0\x0b\xe2\x85\x42\x66\xe8\xd6\xf0\x9a\x7d\xb4\x88\xfa\x50\x9a\x9d\x78\xa0\xdf\xc3\x88\xf0\xba\x7e\x96\x5c\x5f\xa7\xf6\x80\x54\xee\x60\x65\x3c\x2d\x14\x05\xb7\x11\xe4\x9b\x8b\xc5\x48\x8c\x11\xb8\xd1\x35\xc3\xd8\x6c\x67\xf6\x17\xb3\x71\xc8\x67\x65\x2f\x7a\xb6\x94\xc5\x2f\xe4\xe5\x50\x30\x46\x12\xff\x34\x34\xee\x53\xfe\xff\xb1\xf7\x2f\xdc\x6d\xe3\xc8\x1e\x20\xfe\x55\x14\xfd\xef\xdf\x2d\xad\x65\x35\xa9\xb7\xec\x56\x67\x1d\xdb\x79\xda\xb1\x3b\xb6\x93\xee\x4e\x67\xbd\x10\x09\x4a\x88\x29\x40\x06\x49\xdb\x4a\xe4\xef\xbe\x07\x85\x37\x29\x27\x99\xb9\x73\xe7\xce\x9e\xed\xd3\x33\xb1\xf0\x43\xe1\x5d\x28\x14\x0a\x05\xd0\xba\x5b\xcc\x5e\x22\x73\x9b\xe4\x5b\xf7\x70\xff\xde\x7e\xfe\x07\xb0\xfa\x7f\xca\xa4\x1a\xb9\x6b\xcb\x7b\x92\x52\x52\x64\xeb\x0f\x27\x17\xb5\x37\x4a\xc5\xf6\xec\xd0\xce\x16\x94\xd5\x76\xc2\x2f\xce\x35\x55\x63\x89\x76\x9e\x2d\xe9\xf4\xc0\xcc\xdc\x1b\x94\xfe\x1b\x76\xcb\xff\xf5\x3b\xfd\x0a\xf6\xcf\xfd\xb7\xde\xe9\x8c\xbb\x31\xab\x0d\x5e\x1d\x9f\xb4\x59\x2d\x3c\x65\xa2\x96\x5f\xbe\x04\xb5\x93\x24\x0e\x6a\x9d\xf1\x87\xa0\xd6\x25\x15\x03\xf6\xf1\xfb\xa0\x16\xe6\xb3\xff\x11\x03\xf6\xff\xc8\x1e\xf4\x59\x65\xe8\x47\x84\xfd\x3d\x37\xfe\x85\x73\xc3\xbf\x31\xf9\x9e\xa5\x33\x06\xef\x3d\x55\x8e\xd1\x3a\xef\xdb\x47\xff\xe2\x63\xb4\xf0\xd5\x8d\xc8\x74\x99\x1d\x8b\x3f\x7f\x1f\xa5\x7d\x4f\x51\x1e\xbf\xae\x7c\x24\xfb\x03\xe2\x19\xba\x03\x59\x56\x79\xa1\x4b\xc9\x2f\xcf\x84\xa6\x2d\x07\xdd\x5e\xf7\x7f\xdd\x7c\xf0\x4d\xc3\x42\x94\xc7\xac\x16\x1e\xff\xce\x1e\xd7\x2c\xc0\x57\x05\x7e\x0d\xbe\xac\x82\xda\xcb\x0f\x67\x41\xad\xff\xea\xa4\xa2\x5e\x80\x13\xf3\xe2\x58\x3f\xf7\xd5\x37\x4e\x97\x74\x5f\xe7\xb4\xc1\x29\x94\x1c\xfe\xae\x7c\x4a\x2c\x67\xd8\xdb\x6e\x06\xf2\x1e\xb7\xf4\x7f\x68\xa7\x94\x22\xfb\xf7\x5e\x73\x7f\xec\xb6\xcf\xdf\x0a\xcd\xff\x8b\x4a\xfa\xb6\x42\xe3\x7f\xfd\x00\x2d\x19\x67\x5f\xe6\x2b\xbc\xde\x0e\x3a\x9d\xe0\x9b\x8f\xb0\x5d\xff\x33\x4f\xb0\xfd\xf0\xa5\xb7\xff\xce\x1b\x6c\xd7\x35\x7c\xc9\xae\x6b\x5c\x08\xfb\xce\x3b\xd7\x5b\x73\xb4\x08\x6a\xe1\xed\x18\xfd\xbb\xae\x1c\xbc\x09\xbe\x7b\x9c\xfa\xf7\x1e\xfa\x3f\x77\x76\x0c\xe5\x2b\xed\x2f\xcf\x2f\xd6\xe2\xff\x28\x58\x07\xeb\x7a\xab\xfe\x8a\xc6\x04\xd1\x9f\x0f\xe6\x68\xc6\x32\xa5\xdf\xf4\x6b\xdb\xc1\x60\xbd\xd3\x7b\x2b\x74\x9b\x7e\x50\xdb\x19\xc0\x3c\x58\xef\x74\xee\x59\x26\xc0\xee\xfe\x8b\xe3\xb7\xed\xa3\x75\x37\xc0\x1d\x27\x0f\x16\xb1\x6c\xbd\x1d\x0c\xba\xc1\x7a\x67\x50\xac\x83\xf5\xba\x3f\x1e\xd8\xf8\x37\x98\xcf\x0a\x9c\x62\xba\xde\x09\x02\x50\x9f\xb4\xca\xb4\xde\x39\x79\x01\xdf\x06\x0c\x2c\xf5\x09\x9a\x63\x55\x9f\xde\x7a\xa7\xfb\xbc\x7d\xa2\xbc\x5b\xd6\x3b\x9d\xd5\xa9\x08\xaf\x87\x63\xb8\x77\x64\x12\xa4\x31\xb9\xc5\x19\xdc\x3c\x02\xe5\xac\x77\x6e\xf2\x67\xe9\xec\x7c\xdd\xed\x43\x17\x18\xfa\x82\x93\x5c\xec\x79\x54\x29\xca\x31\xea\xd4\xd5\xe5\xe4\xb2\x7b\xcf\xf8\x69\xad\xdb\x2b\xe8\x69\x2d\xec\x09\x4e\xef\x5c\xf3\x00\xcc\xee\xeb\xd0\xcb\xf3\x1d\x2e\x28\x51\x4f\xa7\xe9\x7a\xff\x66\xeb\xbd\x38\x3c\x7c\xde\xfe\x6d\x3d\x92\xda\xe5\x19\x8a\x48\x42\xa2\x9f\xdf\xdc\xa1\xcf\x28\xc5\x84\xae\xb7\xc3\xb0\xb6\x1d\x8a\xbe\x19\xd7\x76\xc2\x4e\x6d\x5b\x74\xfa\x34\xa8\xed\xa0\xa0\xb6\x33\x0e\x6a\x51\x50\xdb\x89\xa0\x5e\x41\xb7\xb7\xde\x09\xaf\x53\x1a\xd4\xd0\xf5\x32\xa8\x0d\xe0\x29\x9d\x0e\x5f\x05\xb5\x0f\x88\x06\xeb\xb0\x07\x5d\x73\x72\x74\xb1\x3e\x11\xa2\xee\x3f\xd2\x4e\xf2\xaf\xf8\x82\x29\x78\xda\xce\x4e\x4e\xfe\xbe\x18\xf2\xb7\xb4\xfc\xd7\x75\x86\x98\x3a\xe7\x17\x6b\xf1\xff\xa1\x12\x94\x27\xe7\x17\xc3\x93\x43\xc0\x6a\x27\x87\x17\xb5\x93\x0f\x17\xb5\x93\x33\x11\x5f\x1b\xa8\xff\xe9\x5b\x1f\xff\xeb\x13\xab\x32\xcd\x06\x21\x37\xfe\x4d\xda\xd3\xe9\x7c\xf6\x36\xa8\x8d\xee\x3b\x41\x8d\xdc\x07\xb5\xdf\xee\x7e\xd0\x53\xca\xbe\x56\xb3\x21\x36\x0b\x83\x5a\xf8\xfe\x8b\xfc\x82\x59\xf8\x6c\xd3\xeb\x36\x8f\xa4\xfc\x4e\x59\x3f\x9a\xb6\x27\xc4\x60\x3a\xd5\xbf\xfc\x16\x3b\xbf\x4a\x74\xff\x9d\x14\xff\x13\xa5\xbd\x13\x02\xf1\xcb\x34\xa8\x9d\x2e\xcb\x3f\xbe\x11\xf5\x8d\x1f\xff\x50\xaa\xff\xd4\x22\x9c\x35\xf3\x60\x8e\xf2\x39\x5a\xac\xb7\xc3\x4e\xd8\x17\xeb\x64\x4f\xfc\xdb\xed\xf5\xd7\x3b\x51\x52\xdb\x89\x5e\xd7\x76\xe2\xd7\xff\xfb\x0e\x01\xeb\x9d\x0f\x37\xfb\x49\x2d\x44\x31\x4e\xe0\x58\x12\xb6\xbf\xef\x2a\xdf\x7f\xf8\x91\x1f\xff\x8a\x54\x20\xee\xe0\xcd\x4e\x79\x1b\x65\xc3\xaf\xd2\x77\x2c\x36\xfd\xfa\xc7\xd3\xfe\x77\x4a\x23\x2c\xa8\x7c\xd1\xe2\xdb\xbf\x4a\x8b\xfe\xbf\x23\x2d\x61\xff\xce\xd2\xbe\x95\x76\x3d\x08\xdc\x89\xb2\xbf\x24\xf2\x72\xc6\x4e\x18\x8a\xed\x6d\x18\xc2\xf6\x76\x3b\xec\x89\xf9\xb2\x9e\xde\xb4\x2f\x6b\xd3\xa2\x36\x0d\x6a\x42\xc7\xc4\x41\x6d\x27\xd6\x46\xcc\x7f\xfa\x51\x8e\xc3\x93\xfb\x76\xaf\x16\xae\x3e\x04\xdd\x76\xaf\xd6\xe1\xef\xa6\x45\x2d\x4c\x12\x55\xd3\x83\x57\x41\x6d\xff\xb7\xff\xcf\x0f\x53\x77\x08\x1a\xba\x1e\xa7\x67\xac\x98\x21\x42\x6f\x49\x9a\xe2\xb5\xde\x03\x6c\x87\xe1\x5a\xeb\xfe\x3b\x53\xd0\x2f\x3a\xeb\x9d\x70\xf0\x61\x15\xd4\x86\x07\x6f\x83\x5a\xe7\xe4\xb7\x25\x9c\xe4\xf4\x3c\xd9\x58\x14\xd7\x3a\x0f\x9d\x7e\xad\x55\x01\x7c\xb7\x0a\x6a\x08\x3e\x1f\xf3\xfe\x77\xf1\x2b\x0e\xd6\xbd\xb1\x57\x97\xa3\x04\xe5\x6a\xef\x05\x1b\x12\xb1\x09\x89\xdb\xb3\x1a\x6c\x45\xa2\xc7\xfc\xac\xd6\x3b\x9d\x74\x4c\x05\x5d\xe7\xfc\x4b\x24\xfe\xca\x25\x99\x89\xc5\x39\x30\x4e\xd6\x70\x48\x99\x3c\xfb\x07\x14\x00\xe3\xa0\x0d\x37\xf3\xde\xc6\x41\x6d\x9f\x06\xeb\xc1\xc0\xaf\x33\x8d\x31\x9f\x16\x7c\xb5\x16\x1b\xa7\x1d\xa8\x77\x77\x1d\x05\x82\xb3\x15\x4b\xaf\xe9\xab\x28\xa8\x3d\x1b\xfe\x1e\xac\x43\x27\xe5\x73\x74\x8d\x58\xc2\xd6\x3a\x8d\x49\xb0\x0e\x5f\x24\x34\x58\xf7\x46\x6e\x39\xcf\xc9\x67\xa2\xba\xa6\x03\xe4\x3b\xd3\x8b\xf6\x2b\xd1\x2d\xba\x98\xff\xae\x8d\x77\x7a\xf9\x45\xe4\xd8\x5d\x8c\xde\x8a\xbf\xe6\x22\xa0\x58\x3e\xe8\xeb\x48\x99\x5f\x59\xe0\x7c\xff\x07\xbe\x44\x66\x3e\x49\xf6\x5b\x10\xd4\xee\x45\x57\x9d\xbf\x0d\x6a\x85\x60\xbf\xf3\x13\xf5\xe3\xfd\x7e\x50\xcb\x82\x4d\x3f\x3a\x01\x0b\x6a\xcb\x48\xfd\xa8\x22\xdf\xf8\xf1\x8d\x7c\xbe\x93\xea\x9f\x2a\x62\x3d\xf2\xd9\xfd\x05\x4a\xd1\xd2\x58\x2f\x76\x82\x7e\x6d\x27\x18\xac\xfb\x1f\xda\xac\xd6\x57\x5a\x39\xac\xc4\xe1\xea\xfd\x79\xd8\xde\xaf\x75\xe2\x8b\x2f\xe2\xef\x4c\x70\x12\xff\x12\xac\x3b\x7d\x8f\x93\x5e\xa0\xc5\x94\x60\xae\x72\x1b\xaf\x47\xbf\xb7\x4f\x6a\x63\xb5\x83\xff\xcc\x92\xa0\x1d\xad\xc3\x4e\xdf\x4d\x51\xa0\x18\xa5\x11\xa2\x28\xd5\xb3\x66\xbd\x83\x0e\xdb\x27\x6a\xd2\x42\xba\xd5\x61\xfb\x44\x3b\x32\x38\x09\x17\xeb\x17\xf0\xfa\xd6\xb8\xf6\xe2\xf0\xa2\x76\x30\x17\xfb\x74\x3b\xe3\xc5\xce\x1f\x66\x7d\xe9\xbf\xee\x7a\x27\x1c\x7d\x7e\x13\xd4\x06\xcb\x67\x41\x6d\x7f\xfe\x2c\xa8\x75\x7f\x3b\x0e\x6a\xb3\xce\x32\xa8\x75\x97\xe3\xb0\xf6\xe1\xf4\x77\xe9\x03\xf5\x25\xd6\x9f\x1a\x5e\xca\x1f\xfd\xfb\x58\xba\x47\xf5\xb3\xb7\x41\xed\xcb\x34\x14\x4a\xc9\xef\x70\x05\xf5\xf2\x78\x0a\x66\x54\xb7\x8e\x2f\x19\x65\x69\x91\x16\xeb\x97\xe7\x17\xb5\x97\x87\x17\xb5\x97\x1f\x2e\x6a\x2f\xcf\x2e\x6a\x60\x45\x2a\x6a\x63\xfd\x3f\x55\xd3\x6e\xd0\x5b\xef\x84\xf9\xfc\xb8\xa8\x8d\xee\x83\x5a\x8a\x93\xa0\x36\xba\xfb\x50\xd4\xc8\x7e\x51\xeb\x0d\x96\x20\xf9\x3c\xf3\x07\xe1\x24\x27\x0b\x94\x93\xf5\x4e\x18\xf4\x02\xbd\x3e\xad\xd1\x91\x5a\x93\xd4\xe4\x45\x47\x62\xf2\x5e\xaf\xfb\x21\x58\x9d\x4c\x7a\x96\x71\x84\xa5\xed\x04\x64\x66\x60\xed\x26\x63\x65\x3b\x89\x64\xdd\x42\xb8\xb5\xd2\xc1\x77\x5f\x84\xe0\x3b\x08\x6a\x2f\x9f\xad\x94\x01\x45\xc8\xc1\xda\x87\xd3\x37\x41\x2d\x9c\xc6\x5f\x40\xbc\xb8\x85\x9c\xa0\xcf\x05\x67\x3f\x5a\xc8\x23\x65\x0c\xde\x09\xb1\xd7\x29\x16\xc1\xba\x33\xf2\x78\xee\x04\xf1\x9b\x02\x67\x48\xf3\xf0\xb8\x1b\xac\xc7\xa4\x36\x2e\x34\xf7\xe0\x17\xeb\x91\x5f\xa3\x33\x34\x63\x57\xe2\x1f\x48\x72\x7e\x7e\xb1\x9e\x2e\xda\x27\x35\xcd\x70\xf4\xf0\xe4\x59\x3b\x12\x7d\xed\x26\x7a\x8b\x0a\x5e\x68\x1e\xed\xea\x45\x46\xb4\x63\xd8\x3e\xaa\xed\x4c\x0b\xd9\x1a\x25\xe3\x05\x97\xfd\x1e\x53\x11\xf5\xdb\x01\x7d\xd6\x3e\xaa\x0d\x17\x37\x45\x2d\x4c\xe9\xb4\x58\x87\x81\xd7\x82\xb7\xa4\xc0\x42\x84\x82\xf9\x5c\x69\x1a\xeb\xe9\xb5\xd4\x2d\xa4\xf5\xf0\x4d\x72\x72\x54\x0b\x87\xab\x00\xad\xc3\x8e\x5f\x2d\xc6\x13\x96\x8a\x35\x2b\x04\xa9\x0a\x55\x0b\x3b\xf0\xaf\x5e\x80\x22\x59\xbd\xa8\xf0\x96\xa1\x1f\x7d\x67\xe5\xcd\x6c\x1a\xd5\x3e\x04\xe1\x0b\x75\x08\x25\xfe\x1d\xbf\x8e\x8a\x7f\x8f\x6d\xe7\x5f\x6b\x4e\x12\x02\xab\xe7\xf5\x5e\xb1\xc0\xa8\xb4\x5e\xf7\xa5\xf4\xf1\xd6\x6b\xb9\x42\x8b\x98\xce\xd1\xcd\x89\xf8\x7b\x2f\x24\xc4\xd9\xb3\xa0\xb6\xa2\x41\xed\x25\x3e\x83\x15\x64\x3d\xf6\x99\xf3\x8c\xe4\x11\x22\x9c\xae\x77\x82\x91\x18\xd8\x60\xb4\x1e\x15\xb5\x91\x5c\x22\x47\xef\xaf\x8b\x75\x7f\xe0\x92\xb3\x39\x5d\x62\xe2\xce\x15\x77\x9e\xa8\x39\xf2\x8d\x69\xb8\xee\xf6\xbc\xf2\xdf\x21\xce\x72\x46\x67\x48\xc8\x07\xa8\xc0\xb8\x2b\x5f\x44\x47\x56\xf0\x3c\xbe\x05\x4b\x57\x1f\x8a\xda\xab\x63\xd8\x06\x15\xb5\x53\x5a\x94\x7e\x80\x76\xba\x39\xea\x1b\x3f\xbe\x9d\x6a\x1d\x76\xbd\x26\x5c\xa0\x39\xc9\x89\xd2\xc3\x83\xf5\xf8\x43\x7b\x26\xab\x2d\x27\x77\xd8\x7e\x55\x56\xe2\x2e\x44\x83\x73\xb4\x2c\xc4\x16\xb7\x23\x26\x42\x17\x84\xe2\x4e\x74\x2d\x14\x0d\x2d\x16\xcd\xc8\x86\xe8\x59\x70\x5d\xeb\xd0\x7e\x7c\x2d\xdf\xa6\x02\xc5\x00\xd4\x80\xdf\x42\xf9\xe3\xcb\x87\xb7\x72\x01\x1d\xaa\x05\xef\xfc\x62\x74\x76\x78\xb1\x3e\x3b\xbf\xa8\x9d\x1d\x5e\xd4\xce\x3e\x5c\xd4\xce\xce\x2e\xd6\xa3\xa0\x36\x54\xff\xfb\x4f\xb6\x68\xdd\x3c\x66\xd1\x0a\x83\x1a\x59\xfd\x6d\xd1\xfa\xdb\xa2\xf5\x9f\x5f\x44\xbd\x55\xff\x70\x74\x61\xde\x62\x5f\xeb\x0f\x3d\xfc\xef\xcd\xac\xf9\xe1\xb3\xbf\x8f\x52\xfe\x3e\x4a\xf9\x17\x1e\xa5\x7c\x6a\xd5\x53\x42\xaf\xb3\xfa\xee\xc7\xfa\x7e\xc2\x49\x84\x7e\xde\x9f\x92\xf8\x33\xa2\x6b\x15\x7c\x86\x16\xe8\x9a\xd5\x5b\x8f\x46\xd3\xcf\x45\xfa\x68\xf4\x01\xa3\xe8\x9a\xaf\x1e\x8d\x3f\x44\xd7\x88\x3f\x1a\xfb\x9c\x63\x9c\xb3\x3b\xfa\x28\xc1\x31\x5b\xe0\x47\x23\xdf\xb2\x02\x5d\x47\x73\x96\xe7\x8f\x92\x9c\x16\x68\x86\x62\x56\xcc\x58\xf1\x28\xcd\x05\x59\x4c\x8b\xeb\x7c\x13\x41\x9e\x22\x9a\x93\xe8\xe7\xf3\xfc\xea\x25\x4e\x31\x45\x96\xe6\x00\x11\xce\xd6\x47\xb3\xd5\xd2\x29\xfd\x35\x9b\x23\x4a\x71\x36\x2d\xf8\x4c\x67\x7f\x82\x32\xcc\x8b\xef\xd0\x4c\xd1\x14\x51\xa7\xa5\xc7\xb0\xa5\xb6\x43\x30\x2b\xc8\x63\x91\x1c\x7d\xf9\x82\xc0\x72\xf5\x08\xc5\x21\x2b\x50\x8a\x1e\x89\x7c\x43\x68\x36\x47\xd9\x63\xd1\xc7\x64\xca\xf1\xb7\x32\x3f\x2e\x10\x8d\x1f\x4b\x7d\x82\x52\x34\x65\x8f\x44\xbe\x25\x68\x81\x57\x8f\x44\x9e\x31\x9e\xb3\x9d\xb7\xec\xd6\x49\x7d\x82\x96\x45\xce\x4c\xbb\xc5\xd0\xac\x38\x7e\x34\xbe\xf8\x5c\x2c\xa6\x05\x47\x8f\x11\xbc\x40\x53\xc6\x19\x7d\x34\x83\x97\x88\xa3\xc7\xb3\x7f\x43\x66\x28\x25\x8f\xc5\x1e\x17\xd3\x62\x31\x45\xd9\xfc\x1b\x14\x19\xba\x76\xea\xf6\x56\xb0\xd3\x94\xe8\xe8\xfd\x38\x26\xd9\xd5\xbe\x60\x8b\xc7\x69\xb2\x05\xe2\xdf\x8c\xc6\xdf\x88\x3e\x44\xfc\x0a\x67\x57\xe7\x28\x45\x68\xf1\x38\xd5\x67\x32\x65\x45\x4e\x1e\x25\x78\x83\x16\x4b\x8f\xbb\x4a\xf1\x27\x6c\x86\x62\x92\xcd\x8b\x2a\x85\xf2\xda\xd8\xa7\x39\xa2\x88\x22\x4e\xdc\xc1\x2e\x11\x1d\xb0\x05\xe3\x8f\x47\x9f\xa0\x15\xcb\x73\x67\xb0\x2e\x38\x59\xb2\x94\xac\x8f\xc9\x74\x05\x95\x5b\x60\xd5\xaf\xe8\x7a\x6d\x02\xf9\x75\x25\xee\xf2\xfc\xe7\xfd\x14\x17\x39\x41\xd4\x8d\xa2\xd1\x9c\x71\x34\xc3\x32\x1e\x65\x7e\x42\x3e\xc3\x34\x27\x54\x30\x1d\xa6\x2c\xbb\xda\x27\x1c\x67\xa6\x18\x17\xdc\x98\xea\x00\xe5\x68\x81\x78\x84\xd6\x1b\xe2\xd8\x82\xc5\xef\xc8\x2d\x8a\xd1\x2d\xd9\x5c\x68\x35\xb9\x41\x36\xd3\x33\x1e\xb3\xa9\x43\x2d\xc3\x3f\x44\xfb\x8e\x65\x88\x13\xb6\x91\xf6\x75\xf1\xb9\x58\x19\x4a\x08\x6d\xa4\x3b\xc1\x34\x66\x5f\x6c\x9e\x2a\xec\xd2\xe6\xe4\x9a\x5d\x0b\x01\x6c\xab\x88\xd2\xab\x97\x88\x4f\x59\xc1\x1d\xc2\x83\x39\x89\xd0\x8c\x89\x51\x39\xc0\x34\xe7\x28\x75\x23\x0b\x8e\x22\xc4\x9c\x4e\x2d\xbc\x56\x96\xe3\xdf\x70\x94\x62\x1a\x93\xcf\xd7\xdf\x20\x3a\x66\x77\x98\x5f\x9d\x71\x42\x23\x6f\x34\x0f\x31\xbd\xc5\xdc\x90\x9d\xcf\xc9\x92\xb3\xe8\xba\x4a\xf1\x16\xdd\xa2\xcf\xac\x8a\x5f\x9e\xff\x7c\xc2\x0a\x9a\x23\x42\xbd\xc8\x9c\x33\x92\x43\x2c\x89\xe6\x64\xe6\xb1\xe5\x51\xbc\x60\x34\x67\x74\x7d\x80\x28\x8a\xd1\xa6\x0c\x9e\x33\x9e\x5f\x7d\x40\x2b\x8a\x4d\xdd\xe4\x9c\x31\x7f\xc5\x3c\xc9\x7e\x28\xc5\x37\x28\x2f\xcf\x7f\x3e\x42\x59\xbe\xa3\x28\x1d\xa2\x97\x28\x25\x09\xba\xd7\x55\xd4\x4b\xaa\x47\x71\x8b\x28\x5a\x1f\xf8\xa3\xa3\x6b\xf9\x86\xb2\x7b\x3b\x44\x94\xdd\x5f\xbd\x7a\xfb\x18\xd9\xe5\xb9\x0e\xef\x9c\xe7\x88\x5f\x63\x87\xf0\x35\x5a\x20\x12\xa1\xb5\xfa\xeb\xc4\xbc\xc1\x34\x2f\xa2\xeb\xd5\xcf\xc7\xac\x20\x99\x3c\x03\xb2\xc3\xad\x21\x27\xc1\xb1\x98\xcd\x74\x86\x53\x9c\x89\x22\x95\xd1\xe0\xbb\x04\x3b\x6f\xf1\x9d\x43\x74\x82\x28\x2a\xb2\xb5\x58\xbf\x49\xfa\xf3\x07\x9c\xe5\x5e\xe4\x17\x24\x7a\x6a\x7d\x82\xef\x49\xc4\x7e\x7e\x86\x3e\xa3\x73\x8f\xf5\x65\xc4\xd5\x01\xc9\x57\x9a\xe8\x05\xa6\xd8\x9f\x02\x6f\xf1\xdd\xd5\x1f\x8c\x5f\xeb\xf1\xc1\xdc\xe5\x8d\xb7\x62\xfd\x9b\x23\x5d\x85\x43\xac\x00\x87\xe4\x0c\x51\xb4\x70\x05\xcb\x6a\xe1\x71\xe0\xd9\x9c\x61\x4a\xa0\xe7\xf7\x39\xf9\xc2\xbc\xa1\x17\x8b\xf8\x15\x4b\xae\xce\x97\x88\xd8\xb9\xbc\x2f\x94\x99\x34\xfd\x11\xc2\x9c\xcc\x8a\xef\xd3\x1d\xb2\x05\xa1\xfe\x90\x6e\x26\x7c\xc1\xb1\xe0\xc1\xef\xd3\x15\x28\xc6\x29\x2b\x96\xf8\xbb\xa4\x27\x88\x93\x19\xcb\xbf\x4f\xc7\x68\x9e\x61\xce\xd1\xf7\x49\xcf\xf3\xab\x67\x88\xe7\x73\x9c\xe2\xc5\xea\x47\xa8\xdf\x90\x3c\xcf\x7e\x84\xf0\xb8\x88\xc8\xf7\x5b\x7f\x9e\x5f\x5d\xcc\xd9\x02\xfd\x50\x96\xef\x85\x1c\xa4\xdf\x6f\xd4\x85\xd0\xe7\x7e\x60\xcc\xdf\x13\x3e\xf3\xe4\xd7\x3b\x3c\x23\x42\x38\x48\xe9\x71\x2e\x56\xde\x3c\x9a\xe3\x3b\x8f\x0b\xdf\x11\x76\xf5\x8c\x23\x1a\x59\x39\x0d\x0a\xe4\xd5\x7e\xc4\xf1\x66\x3a\xc5\xf3\x25\x82\x73\x21\x9b\xc4\x82\x72\x30\x27\x29\x16\x9b\x9b\x9c\x50\x4c\x73\x6f\x52\x9d\x23\x76\x75\x86\x8a\xd4\x64\x22\x66\x96\x1b\x9f\x5f\xbd\x66\x73\x9a\xe9\x4a\xbf\xc5\x77\x09\x2b\x68\x9c\x22\x1a\x3b\x64\x17\xe4\x73\x21\xe4\x9e\x11\xe6\x34\x2b\xb3\x67\x99\x44\x54\x0f\x5d\xbd\xca\xd0\x14\xa7\x1b\xc8\x1c\x59\xf1\x96\xf1\xdc\x6d\xd8\x85\x98\xd9\x39\xf3\xf8\x91\x63\xaf\x59\x9a\x44\xd5\xba\x2a\x2e\xde\x8b\x8e\x2b\xc4\x5a\xa5\x48\xaa\x82\xef\xc3\x9c\xe4\x78\xce\x78\x86\x35\xcd\x1f\xc5\x35\x73\x33\xf9\x40\x28\x25\x4b\x3c\xd3\xf1\xce\xb2\x9d\x11\xa1\xb4\xce\x67\x68\x8a\xf2\xb5\x0e\x5d\xcf\xd1\x14\xc5\x3a\x5a\xec\x84\xae\xd9\xb5\x8c\x3d\x9b\x53\xb6\xb8\x3a\xc3\x74\xbe\x31\xfa\x3d\x11\xfa\x86\xda\x55\x09\xe0\x70\x8e\xae\x91\x8c\x3b\x44\x91\x94\x17\x10\x28\xa6\x88\x48\xfc\xa4\xc8\x22\x39\x45\x45\xe8\x25\xbb\x3a\x98\x93\xab\x13\x42\xe7\x32\xfa\x1c\x91\x99\x6c\x8d\x8c\xa6\xb3\xab\x37\x8c\xce\xd6\xe2\xd7\x35\xa3\x33\x1d\xf3\x1a\xf3\x22\x43\x29\x5e\xc8\x64\x17\x38\xbd\xda\xbf\x25\xb7\xd5\xe8\x57\x19\x47\xd8\x34\xfe\x0d\xca\xe7\x0b\x44\xe3\x62\xad\x83\x10\x32\xd1\x2c\xbd\x46\xb9\x6a\xc1\x01\x4a\xa3\x22\xcf\x4d\x23\xde\x88\x3d\xde\xd5\x71\xb1\x58\x16\x5c\x55\x96\xd0\x19\x5a\x32\x8e\x37\x92\x54\x62\x4f\x50\x84\x54\xc1\xe2\x27\xb3\xf8\x35\xca\x32\xa4\x32\xbd\xfc\x5c\xd0\xd9\xd5\x99\xd8\xf3\xd9\xe6\xbe\x25\x11\xcb\x08\x5a\xab\xbb\x1f\x2a\xa8\x63\x7f\x43\xb9\x4e\xfd\x0c\xcd\xb9\x52\x4f\x44\xf0\x1d\xa2\x33\xc6\xa8\x8c\xfb\x43\x04\x6c\x14\x59\xa1\x58\xf5\xfa\x7e\x8c\x37\xe2\x6f\x8a\x3b\x44\xcc\x60\x9d\x63\x56\xa4\xeb\x77\xa7\x6f\x0c\x30\x47\x74\x36\xd7\x23\x7b\x30\x67\x74\x76\x43\x6c\xa5\xcb\xd1\x05\x9d\x5d\x3f\x1a\x2d\x34\x4f\x5b\x6f\x13\x77\xf6\xee\x40\x63\x17\x88\x2c\x31\x59\xbf\x3b\xb5\x08\x9e\x73\x44\xd7\xaf\x38\x32\x09\x2f\xe6\x64\xb1\x9c\xab\x5e\x16\x81\xa9\x19\xdc\x0b\x76\xbd\x62\xeb\xd7\x68\x69\xa9\x2f\x53\x84\xe8\x14\xd9\xee\xbb\x4c\x11\xbd\x7a\x86\x72\xc6\x0d\x09\x2f\x16\x37\x44\xb3\x8b\x98\x3b\x10\xa5\xcd\x16\xcf\x11\x67\x78\xed\x04\x31\x67\xd8\x25\x78\x87\x57\xd7\x9f\xd1\x2d\xb9\x5e\xbf\x8a\xb0\x96\x4f\xc6\xe8\xc1\x8a\x7c\x7e\xf5\x02\x33\x3e\x13\x83\x9b\x47\x3f\xbf\x38\xb9\xd8\xee\x08\x92\x22\x13\x93\x56\x8e\x4d\x8a\x48\x8c\xd7\x16\x82\x64\x1e\xd1\x33\x4e\xb2\x29\xa2\x2e\xd1\x6f\x05\xc6\x34\xd3\x25\x3a\x94\xec\x1a\xd3\xab\x97\x24\x4d\x1d\xe2\x3f\x84\xe0\xb9\x23\x54\x2a\x17\x06\x3e\x44\xfc\x4e\x2c\x1d\x06\x10\x42\xcf\x2f\xf9\x25\x9b\x22\x9e\x3b\x24\x17\x28\x5b\x20\x4a\xfc\x8c\x8e\x19\x8f\xaf\x5e\xb2\x3b\xb7\x82\xc7\x2f\x5f\x79\x34\x27\x38\x15\x7b\x0f\xaf\x11\xef\x49\x94\x33\x5e\xca\xec\x0c\xf3\x7c\xee\x10\x69\xc5\xce\xf6\xcf\x2a\xa6\x78\xe5\x50\xec\x1f\x5c\x7c\x9b\xe0\x00\xd1\xa9\xd0\x1d\xbe\x4d\xf5\xf6\xfc\x43\xbd\x55\x57\xc3\xb4\x13\xe8\x01\xdb\x84\x6d\x07\x9b\xd0\x0d\x20\xc7\x98\xde\x91\x68\xee\xc5\x94\x33\xad\x66\x08\xff\x96\x91\x12\x50\xca\xfa\xf2\xe2\x00\x8a\xbc\x3c\xb8\x28\x23\x94\xdc\x62\x9e\xc1\x1a\xe1\xe2\x7f\x16\x69\xe1\x40\x7e\xc2\xcb\x8b\x03\x37\xb4\x21\x0b\x9d\x5c\xca\xac\x67\x38\x9d\x71\x14\x63\x2d\xc3\x8e\x3f\x17\xd3\xf4\xb3\xdc\xc9\x3c\x42\x72\xc6\xe2\x19\xe3\x52\xef\x7c\x84\xe4\x1c\x71\xf4\x19\x83\x59\xe3\x31\x8a\x6b\xb6\xfc\x8c\x1f\x8f\xff\x13\xcd\x38\x9e\xda\xf8\x83\x39\xc9\x08\x45\xc5\xda\x79\x96\x2b\x5b\xb2\xd4\x52\x1c\x16\xd3\x94\xd0\xf5\x11\xe1\x4e\xb6\x2f\x71\x9a\x11\x7a\x4d\xd6\xe6\x83\x94\x9c\xe0\x39\x5a\x50\x4b\xf2\x2a\xcb\x11\x9d\x16\xa9\x14\x26\x3a\xb4\x21\xfe\xa2\xe0\xd7\x60\xb7\xd3\x5d\x45\xb2\x29\xa3\x6b\xa1\x70\x15\x33\xe4\xa4\x38\x66\x34\x66\x74\x6d\x5b\x96\x48\x3d\x69\x63\xf4\x8b\x02\x73\x9a\x79\xf9\x7a\xf1\xaf\xb2\x14\x0b\x75\xf1\x04\xd1\xc7\x48\x5e\x63\xbe\x29\x83\x17\xcf\x36\x40\x3b\x7e\xff\xa8\xaf\x26\x7d\xd8\x39\xbf\xb4\xe0\x69\x96\xb2\xf5\x3e\x8f\x84\x2c\x3c\x66\x74\xb6\xc2\x88\x4f\x57\x98\x96\x29\xb4\xbc\x7c\x8d\xe8\xd5\x09\xf2\x08\xce\x38\x9a\x15\x66\x30\x9f\x71\x94\x93\x2c\x45\xb7\xa8\xf4\x6c\xbf\x61\x17\x91\x01\x27\x94\x6d\x8e\x7f\x8f\x72\x12\xb9\xed\x57\x37\xad\xcf\x98\x12\xa4\x9a\x69\x0a\x4e\xa2\xb9\x29\xb5\xc8\x08\x9d\xb9\xb5\xf2\xe3\xdf\xa3\xb8\xf8\xe2\xde\x45\xe3\x24\xcb\x17\x28\xd3\x62\x61\x67\xe8\x3a\xb4\x16\xd1\xb5\x28\x6c\xbd\x4f\x73\x04\x5d\x83\x7e\x3e\x89\x4e\x0a\x1e\xb3\xef\x50\xc9\xd5\xe4\x8c\xc1\x4e\xba\x42\xf8\xf6\xcf\x0d\xee\xe5\x6f\xff\xdc\x39\x78\xb9\x7f\x51\x71\xae\x34\xa7\xf4\xbc\xb8\x7e\x34\xf2\x0f\xb4\x74\x1d\x14\x41\x9b\x55\x6a\xbd\x0c\xbc\xd2\xcb\x8f\xe7\x0f\xa6\x03\xe7\x88\xc8\xa5\xb8\xe2\x89\xa5\x01\xd0\xf1\x73\xb6\x91\xe6\xf2\xfc\xe7\x97\xe8\x0e\x11\xb2\xf1\xa2\x99\xf9\xb5\xd1\xa1\xc8\x78\x25\x91\xf8\x0e\xad\xbe\x49\x72\x8e\x16\x0c\x6d\xa4\xb8\x3c\xdf\x10\x99\x0a\xb9\xa1\x06\x75\xbc\xc1\x67\xc4\x86\x29\x5a\x62\x8f\x80\xe7\x57\x27\x8c\xe3\x6c\xba\x32\x39\x84\x81\xe7\x62\xc1\xd1\x1d\xb2\x71\x9d\x6a\x9c\xf1\xe1\x2c\x28\x4a\xa4\x49\xf9\x11\x8a\x0f\xe8\x1a\x7f\x2b\x36\x4d\x49\x56\xff\xf4\xf0\x53\xf3\xa1\x95\x14\x34\xca\x09\xa3\x0d\xdc\xca\x5b\xb4\xf9\xb5\x5e\x64\xb8\x96\xe5\x9c\x44\x79\x7d\xef\x74\xfa\x19\x47\x79\x3b\xc6\x09\xa1\xf8\x4c\x30\x3b\xcf\x57\x8d\xbc\x55\xbf\xba\xc2\xd9\x09\x8b\x0b\xc1\x8b\x5f\x6f\x51\x5a\xe0\xdd\x27\xc1\x43\x73\xef\x16\xf1\x1a\x9f\xd4\x75\xa6\xf5\xc9\x64\x92\xaf\x96\x98\x25\xb5\xf3\xd5\x62\xca\xd2\xad\x2d\xf9\xb7\x9d\x30\xde\x62\x13\xfe\xd4\x06\x1b\x75\x8e\x51\x94\xb7\xc5\xae\x5d\x6c\x88\x9b\xbb\x83\x20\x0c\xba\x2d\xb2\x91\x6a\xc9\xb8\xd8\x53\x4a\xa2\x41\x0b\x6d\x24\x4a\x38\x9a\x39\x79\x0d\x5b\xd9\x46\x32\xd9\xda\xab\x05\x8b\xb1\xa2\x1c\xb5\xa2\xcd\xa5\x72\x96\x90\x14\x73\x49\x16\xf6\x5a\xe9\x63\x64\xb7\x24\xd6\x64\xc1\xb8\x55\x6c\x24\x8b\x18\xcd\xf1\xbd\xaa\x5d\x18\xb4\x96\x1b\xa9\x50\xb6\xa2\x91\x53\xb9\x30\x6c\x25\x8f\x65\x17\x15\x9c\x63\x9a\xfb\xd4\xf1\xe6\xbe\x61\xfc\x0e\xf1\xf8\x8a\xe3\x44\x51\x76\x5a\xf3\xcd\xdd\x53\x64\x4b\x4c\x33\x9d\x61\xb7\x35\xfd\x26\xd9\x55\x4a\x32\xd5\xa6\x4e\xd0\x5a\x6c\xa4\x5d\xe0\x05\x53\xd9\xf5\x5b\x27\x1b\x49\x52\xf4\x65\xa5\x48\x06\xad\xd9\xe6\x26\x14\x34\x46\x0b\x69\x5c\x90\x94\xc3\xd6\xed\x46\x4a\x8e\xb3\x25\xa3\x66\x44\xc2\x51\x6b\xb5\xb9\x0d\x11\x5b\xea\x76\x8e\xf7\x34\x17\xd7\xf6\x1b\xb8\xf9\x95\x24\x8d\x3a\x83\xf9\xe0\x70\x35\xde\xda\xa2\x45\x9a\x3e\x99\x4c\x70\xf3\xab\x60\xfe\x7c\x82\xdb\xff\xf5\x5f\x32\x76\x2f\xbb\x23\x79\x34\x6f\xe4\xcd\xaf\x11\xca\x70\x8d\xed\x2a\x00\x4f\x70\x5b\x90\x28\x7c\xb9\x0b\x7f\x12\xf9\x07\xc9\x3f\x91\xfc\x93\xc9\x3f\xf3\x5d\x8e\xf3\x82\xd3\x1a\xde\x8b\x71\x82\x8a\x34\x77\xf2\xda\xda\xb2\x65\xaa\x2c\x0b\x99\x2c\x96\x7f\xd2\x6a\x6a\x05\xe4\x0f\x0f\x40\x71\x22\x09\x17\xf2\x0f\x71\xa2\x1f\x4c\x2f\xdc\x89\x5e\x50\x11\xa2\x47\x26\x93\x49\xf2\x90\x43\x43\x4e\x93\xc9\x7e\x2b\x6f\xef\x0b\x56\x3d\x61\x31\x9e\x2c\x5b\x79\xfb\xc0\xf0\x23\x40\x89\x84\x04\xc7\x1f\x30\x9a\x15\x0b\xcc\x27\x85\xc5\xce\xd4\x9c\x99\xa4\xad\xbc\x7d\x24\x65\xc0\x84\xb5\xf2\xf6\x73\xc9\xa8\xef\x70\x32\x89\x45\x50\xcd\xe9\x09\x6a\xe5\xed\x63\xf4\x65\x35\x39\x69\xe5\xed\x13\xbc\x60\x93\x45\x2b\x6f\x9f\x81\x5c\x98\x10\xf1\x53\x4d\xd6\x49\xd4\xca\xdb\xe7\x30\xc7\xa1\x22\x99\x08\x2a\x66\x9d\xcc\x5b\x79\x9b\x64\xef\x51\x4a\x62\x55\xe8\xc5\x6a\x89\x27\x56\x2a\xea\x26\xd7\x85\x94\xa0\x33\x77\xec\xd7\xeb\x4d\x82\x0e\xaf\xd7\x78\x32\x99\x20\xf9\x27\x91\x7f\x22\xf9\x27\x93\x7f\xe6\xf2\xcf\x74\xbd\xfe\x26\x47\x6d\x6d\x35\xec\xc0\x4e\x26\x93\x93\xf5\xda\x0b\x2f\x4a\xe1\xb4\x14\x2e\x4a\xe1\xb8\x14\x9e\x95\xc2\xb7\xa5\xf0\xaa\xf9\x00\xbd\x63\x87\xb5\xda\x2d\xc0\x15\xeb\xb5\xe2\x87\xa5\x4c\x50\x1a\xf9\x3b\x0d\x7a\x63\xbf\x21\x2f\x95\x4b\xf1\xe0\x26\x30\x8c\xf1\x78\x82\x54\x26\xd0\x5c\xb3\x61\xf0\xbe\xdd\xcd\x5e\xab\x99\xcc\xcc\x61\xbb\xc7\x0b\x8e\x15\xad\xe6\xc9\xc7\x29\x91\xa4\x04\x86\x7d\x9c\xea\x44\x52\x01\x37\x3f\x4e\xb5\x90\x54\x8a\xd5\x1f\xa7\x23\x8a\x4e\xcf\x83\xc7\x29\x23\x49\xe9\x4c\x92\xc7\x69\x33\x45\xab\x67\xd0\xe3\x94\xf3\x87\xaa\x7a\x21\x15\x04\xda\x08\x3b\x83\xe6\x1e\x6e\xe3\x7b\xb1\x90\x67\x5e\x26\x24\x69\xe0\x5f\x27\xfd\x7e\x67\x3c\xd8\xda\xc2\xbf\x4c\xfa\xc3\x6e\xaf\xbb\x5e\xe3\x5f\xc3\x30\xec\x85\x61\xd8\x54\x63\xfa\x57\x91\x24\x49\x5c\xdf\xc3\x35\x42\x6b\x5c\x4c\x96\x09\xff\x88\x3f\x49\x25\x24\x9f\xd4\xeb\x7b\xf8\xd7\x41\xbf\xdf\xed\x8b\xa8\x9d\x89\xf8\x39\x68\xe5\xdb\x93\x73\x98\xc8\xed\x84\xb3\xc5\xc1\x1c\xf1\x03\x16\xe3\x06\xfe\xf5\xd7\x5f\xc3\x60\x2b\x0c\x3a\xdd\x35\x94\xdc\x6c\xe1\x49\x7f\xd0\xed\x04\x6b\x81\x6d\xe1\xe6\x9e\x16\x89\x8f\x64\xd0\xf4\x1a\xdb\xfc\x6a\xdb\xf6\xfa\xfc\xf4\x6d\x7b\x89\x78\x86\x1b\x3f\x7d\xad\x07\xf5\x5d\x51\x93\x6e\xab\x1e\x76\x46\xf5\xdd\x51\x77\xd0\x6b\xd5\xc3\x6e\x50\xdf\x1d\x75\xc2\x91\xf8\x19\xd6\x77\x7b\x41\x47\xfc\xea\x08\xb0\x03\x3f\xbb\xe2\x67\x37\x10\x3f\x7b\x80\x42\xaa\x3e\xfc\xec\x8b\x9f\x83\xfa\xee\x30\x84\xf8\xa1\x00\x7b\xf0\x73\x54\xdf\xed\xf6\x21\xfd\x18\xc0\x71\xab\x1e\xf6\x82\xfa\x6e\xb7\x2b\x4a\xea\x75\xea\xbb\xdd\x51\x28\x7e\x41\x46\xe1\x40\xfc\x1c\xc0\xcf\xa1\xf8\x09\x39\x75\x44\x4e\xbd\x11\xfc\x04\x5a\xc8\xaa\x23\x68\xfb\xb2\xd6\x02\xed\x87\xf0\x53\x94\xd5\xef\xd4\x77\x87\x5d\xf8\x25\x6a\xdd\x1b\xc1\xcf\x9e\xa8\x8a\x68\x75\x1f\xca\xea\x8b\x5c\xfb\x03\x51\x15\x51\xa9\xbe\xa8\xa9\x24\x1c\xd7\x77\xbb\xc3\x41\x49\x37\x7d\xbc\x3f\xf7\x51\x54\xe4\xb8\xbe\x5b\xff\xeb\x3e\x0a\xeb\xad\x3a\xb2\x61\x2c\xc2\xfb\x53\x8e\x6f\x21\x5c\x04\x61\x20\xb4\x6a\xe4\x21\x5d\x81\x44\x10\xea\x74\xba\x18\x42\xb1\x0e\x26\x10\x3c\x32\xb1\x7f\x15\x41\xb7\x2b\x52\xec\x47\x84\x47\xb2\x50\xc8\xd2\x04\xb1\x0c\xea\x2a\x4c\x7b\x40\xbc\x92\xa5\xf5\x40\xe3\x47\x26\x08\xef\x85\xec\x1f\xa5\x64\x26\xb3\x1a\x88\x58\xac\x83\xf0\x69\x47\x94\xc8\xc2\x83\x41\x28\x7d\x33\x20\x18\x8f\xba\xfd\xbf\x8a\x38\x0e\x7a\x40\xe2\x83\x21\x18\x28\x67\x1c\xdd\xaa\x6e\x81\x42\x6d\x18\x43\x38\xc5\x49\xb6\x5a\xc8\xcc\x05\x23\x01\xb4\x9c\xbb\xc0\x7e\xba\x9c\x23\x59\xd5\xee\x18\xfa\xd6\x01\xa6\x50\x9f\x05\x8a\xb8\xee\x49\xc8\xd6\x05\x42\x09\xa4\x33\x99\x29\x92\xdd\xb9\x58\xd6\x77\xeb\x5b\x22\xf1\xc9\x99\xfa\x05\xc6\x70\xd5\xe9\xa8\x0f\x45\xdb\x60\x57\x12\xa8\x31\xe8\x0c\x65\xd0\x44\x47\x32\x9c\xa5\x42\x73\x53\xd8\x48\x62\xb7\x3a\x8c\x20\x3c\xd3\x59\x04\x32\xa8\xc8\xc7\xa8\x27\xc3\x29\x2e\x11\x2c\xb2\x18\x21\x4d\x34\xb2\xd8\x54\x63\x63\x8b\x45\x1a\x43\x16\x8b\x35\x36\xb5\x98\x29\x34\xb2\x58\xa2\xb1\xd8\x62\x33\x8d\x61\x8b\xcd\x35\x96\x18\x4c\xd7\x38\x94\x08\xcf\x15\x10\x26\x1a\xb8\x55\xb5\xed\x4c\xb1\x85\x74\xcd\xc6\xaa\xc4\x4c\x0f\x7c\xa7\xd3\x51\x48\x2e\x79\xa7\x2f\x83\x5f\x10\x97\xc3\xda\xe9\x0e\xe1\xb8\x8a\xcd\x18\xd5\xe3\x0c\xfd\xe7\x02\x30\x82\x6c\x99\x78\x6c\xd9\x85\x1e\x2c\xa3\x7d\x28\x6f\x29\x26\x90\x1a\xad\x01\x54\x7d\xa9\xea\xd3\x83\x54\x4b\x35\x05\xd1\x10\x86\x46\x8f\x74\xa7\x07\xbd\xbd\x24\xba\x1f\x7a\xd0\xd3\x4b\x96\x89\xf0\x4f\xa2\x16\xcb\x65\xba\x7a\xae\x95\x34\x67\x26\xa1\xe5\x92\xb3\x7b\xbf\x10\x81\xe0\x1b\x37\xeb\x7d\x50\xf9\x6c\x47\x98\x20\xbc\xd4\xb5\x9f\x45\xde\xcc\x8b\xc6\x30\xa8\x65\x74\x3a\x00\xda\x8c\xcc\x54\x0d\x3a\x7d\xe8\x31\xe8\xe2\xff\x03\x7e\xad\x16\x7e\x7b\x05\x60\x6b\x22\xcf\x14\x48\x1a\xab\xf9\x0c\x33\xc2\x86\xe1\x32\xc4\x7e\xb1\x48\x65\x2c\xe4\xad\x43\x70\x27\x03\xdd\x45\x8c\x12\xaa\x79\x03\x04\x18\xba\x33\x00\x0a\x45\x87\x4c\x51\x74\x1d\x31\x33\x49\x7a\x91\xc2\xf0\x32\x23\xa9\x1e\xda\x6e\x32\x50\xf0\x92\x93\x85\x1a\x85\x00\x84\x85\x00\x33\xb2\xd0\x65\xc4\x16\x32\x0d\x89\x04\xf8\x4c\x80\x29\xca\x34\xc3\x85\x03\x00\xb9\x9e\xac\x78\x08\x29\xf9\x2d\xd6\x83\x3c\x95\x79\xf1\x3b\xac\x86\xb9\x0b\x0c\xf6\xcc\x43\x06\x86\x46\xcf\x6b\x49\x35\x9d\xf2\x6b\x15\x9e\xea\x70\xee\x60\x90\xae\xdc\xee\x67\x56\x60\x43\xd7\x58\x81\x0d\xc1\xf8\xa6\x60\xaa\xe9\x20\x6b\xa7\x38\x42\x45\xa6\x5b\xde\x37\x08\x76\xa1\x67\x55\x68\x8a\x17\xcb\x7c\xa5\x1a\x3e\x06\x6f\xfa\xa9\xe8\x6e\xaf\xaf\x31\xa7\xac\x50\x52\xb9\x03\x95\x03\x04\x2c\x38\x1e\x9a\x1b\x51\xdd\x81\x74\x26\x3c\x55\x61\x23\xdb\x65\xbe\xf9\x1d\xc6\x9a\x21\x07\x90\x45\x79\x71\x81\x3a\x96\x17\x17\x31\x3b\xa7\x64\x16\x99\x19\x0a\x0b\xa0\x40\xd4\x12\x58\x74\xfa\x58\x13\x15\x86\xa8\x2b\x11\x16\x33\xcd\x75\xb0\x5e\x08\x68\x99\xea\xce\x43\xb0\x64\x08\x2c\x27\x0b\x6c\x40\x55\x40\x76\x63\xf2\x43\x72\xbc\xc9\x2c\xcb\x91\x92\x1b\x03\x59\x5d\x32\xcb\x39\x01\x61\x1e\xb3\x3b\xd5\xbc\xbe\xe4\x20\x1b\xa5\xb3\xe9\x4f\x55\xb5\x0a\xb7\x0e\x3d\x89\x59\x06\x8c\x54\xad\x1c\xe6\xea\xc0\xa2\x3a\xbd\x46\x9c\xdd\xa9\xf1\x0b\xa0\x90\x14\x45\xd7\x29\xfb\x82\xed\xf2\x02\x87\x0f\x80\x67\x37\x05\xe2\x0a\xee\xc3\x42\x01\xb0\xae\x95\xae\x53\xaf\x1c\xe1\xb6\x04\x97\x23\x53\x9c\xa8\x1e\xed\xcb\x91\x70\x23\x39\x99\xcd\x75\xec\x74\x24\x63\xa9\xe2\xfd\x5e\x07\x1a\x9f\x5e\x87\x1d\x45\x21\x19\x27\xbd\x0e\x7b\x1a\x08\x25\xd0\x35\x80\x4c\xc2\x22\x95\x47\x7f\x04\x99\x52\x51\xf7\x89\x98\x0f\x20\x17\xa7\x14\xdf\x14\xe4\x56\xf3\x56\x68\x23\xde\x9a\xd1\xc7\xd0\x5b\x54\x87\xbb\xa0\x19\x3d\xab\xac\x19\x62\x85\x9d\x56\xd6\x0c\xa8\x85\x4e\xda\x41\x7d\x19\xcc\xd9\xc2\x47\xee\x72\x62\x86\x0b\xea\xc9\xee\xa7\x5a\xe6\x8f\x23\x99\xf5\x7d\x9c\xaa\xa6\x40\x0d\x04\x70\xac\x80\xbe\xcc\xe5\xfe\x50\x53\xc0\x35\x41\x01\x18\x8a\xa1\x4a\xa2\x78\xb0\x1f\x44\x0a\x78\xa7\x29\x3a\x2a\x89\xa6\x50\x75\xbf\x3f\x34\x14\x3d\x09\xcc\x75\x16\xaa\x1a\x2f\x75\xbc\x0a\xcf\x95\xa8\xeb\x77\x54\x19\x2f\x35\x30\xd0\x39\x1c\x6a\x40\x55\xfc\xa5\x01\x54\xc5\xe7\x4a\x90\xf4\xbb\x2a\xc9\x4b\x0d\x0c\x54\x4b\xe6\x97\x1a\x50\x1d\xf6\xd2\x00\xaa\xbf\x16\x84\x1a\x59\x37\x4e\x24\x66\x67\x4f\x67\x8c\x25\xe4\x4c\xe0\x0e\x52\x4d\x28\x4c\x57\xab\xcc\x0b\xd3\x91\x53\x09\x5c\x9a\xae\x56\x8d\xbc\x34\x14\xb1\x4a\xa2\x3b\x32\x54\x4d\x28\x4c\x47\xaa\x4c\x2f\x4d\x57\xab\x1a\x5f\x1a\x0a\x24\x81\x5b\xdd\xd5\x6a\x70\xde\xeb\xf8\x50\xc5\xeb\xb1\xe8\xaa\x5a\xdc\xea\xc1\x18\xa8\x1c\xde\x6b\x8a\x81\xaa\xf8\x7b\x43\xa1\x93\xe8\x96\x74\x54\x3d\x6f\x75\x4b\x06\xaa\x94\xf7\x9a\x62\xa0\xab\x61\x28\x14\x8f\xdc\x9a\xb6\xea\x4c\x4d\x4b\x54\x2f\xbf\x37\x6d\x55\x23\xf1\x5e\x53\x0c\xa0\xcf\xab\xab\xb4\xdd\xfa\x74\x62\xd1\x61\xcf\xca\xc0\x94\xdf\x4e\xa5\x4c\xbd\x47\xc0\x36\x15\x75\x46\xb0\xca\x33\x8d\xaa\xe5\x67\x9a\xe1\x05\x51\x05\xf5\xa0\x2e\x65\x5d\x20\x33\x35\x91\x7a\xc0\x34\x63\xa9\x56\xa4\x41\xb9\x12\x80\x08\xff\xf5\xd7\x5f\x2a\x34\xcf\x0a\x45\x31\x94\xf3\xb7\x48\x55\x9f\x05\xa0\xa6\x8a\x30\xce\x7d\xc4\x2a\x52\x58\x85\xb5\xea\x88\x34\x60\x94\x47\x51\xcf\x67\x85\xab\x69\x19\x92\x1b\x97\xe6\xc0\xec\xe7\x84\x72\x2b\x3a\x25\xf2\x90\x21\x20\x4b\xbb\x85\xe9\xf5\x24\x32\xe5\x76\xc5\xea\x8d\x25\x66\x16\x4e\x04\xca\xaa\x5d\x47\x3b\x63\x28\x4a\x07\xe3\x8e\xa2\xb7\x39\xa8\x72\xec\x12\xda\x0b\x64\x12\x92\xa3\xf4\x90\x24\x09\xe6\xe0\xb0\x95\xaa\x79\x2f\xb6\xf5\x90\x22\x33\x45\xfc\x55\x24\x18\x24\x4c\x84\xb8\xe9\xba\x5e\x28\x01\xad\xe5\x75\xa2\x21\xe4\xbb\x4a\xf1\xca\x28\x19\x62\xcc\x22\x9b\x17\x02\xad\xf4\xc0\x49\x15\x82\xf0\x8b\x3c\x44\xd2\xe0\x98\x28\xdd\x14\x5a\x60\xc3\xa0\xeb\x1d\x18\xc5\x21\x08\x83\x11\x10\x38\x00\x74\x8a\xaf\xbe\x42\xf5\xa3\xc2\xd6\x24\xd2\x40\xa6\x58\x0e\x81\xd0\x3c\xd0\x1d\x15\x84\x81\x98\xb7\x91\x13\x86\xae\x37\xf5\x80\xa5\xf1\x40\x04\x53\x64\x81\xc8\x57\xcf\x60\x3c\xb0\xac\xc6\x3d\xd2\x21\xcc\x55\xae\xf7\x30\x2f\x0e\x00\x3a\x74\xa1\xa8\xa4\x41\xc1\xee\xf2\x20\xe1\x6e\xc7\x1e\xbc\x34\x2a\x26\x6c\x70\xa3\xb9\x09\xcb\x51\x9f\x63\xbd\xe4\x0e\xc3\xae\x06\x16\x88\x7b\xe0\xc1\x5c\xab\x8e\x48\x26\xd2\x41\xd9\xef\xa6\x57\x3b\x60\x68\x10\x61\xc3\xe7\x7d\x4d\x91\x62\xc4\x39\xbb\xb3\x5a\x45\x08\x3e\xe5\x4e\x94\xa3\x53\x84\xd3\xa9\x89\x8b\xe5\x7e\x06\xd6\x00\x07\xb5\x5a\x61\x67\x6c\x33\x8a\x63\xbb\x01\x80\x3d\xe8\x01\xc0\x87\x66\x4d\x1f\x8f\x2d\xed\x3b\xd9\xe3\xd8\x22\xe7\x4a\x83\x01\xa9\x20\x93\x9e\xb8\xcb\xd2\xc0\xc0\x67\xce\xca\xd4\x37\xe8\x85\xb3\x38\x8d\x55\xcb\x95\xdc\x8c\x54\xdd\x8f\xb4\x68\xea\xca\x30\x2e\x75\x54\x42\x9d\xfd\x53\x20\xb1\x85\xde\x87\x22\x50\x80\x23\xc2\x33\x93\xf1\x18\x94\xb3\x03\xa1\x3a\xdd\x91\x0c\x1f\x30\x9a\xb3\x82\xbf\xa2\x39\x9e\x71\x94\x6a\xd6\x56\x34\x19\x3e\x28\x78\xba\x3a\x64\xc5\x34\xc5\xbf\x15\x2c\xd7\x32\x3c\x8c\x3d\x02\x2f\x0a\x7a\x2c\x2d\xa6\xaa\x61\x03\x58\x45\x00\x28\x48\xee\x61\x4c\xee\xe7\x76\x45\x5e\x4c\xef\xed\x3a\x9d\xee\x50\x03\xda\x90\x32\xec\x69\x72\xd3\x7c\x8b\xdc\xf8\xd0\x62\x81\x20\x47\xf5\x5b\x94\xf8\x7f\xca\x80\x96\x68\xa0\xdc\x8b\x70\xa2\x4b\x04\x3d\x40\x20\xea\xc8\xb7\x44\x97\xe2\x7b\x3d\x4c\xd2\x72\xe7\xee\xd3\xfa\x2a\x6c\xa5\xe1\x00\x3a\x87\xd1\x19\x2f\x6c\x66\x03\x99\x99\x23\x3f\x3a\x58\x92\x39\x48\x22\x91\x0d\x23\x02\xc4\x51\x45\x01\xed\x41\x02\x85\x9a\xca\x2d\x39\xd3\x86\x08\x60\x89\x03\x40\x8a\x28\x77\xc1\x88\x2d\x57\x92\xa1\x41\xb4\x9d\x9e\xfd\x61\x43\x22\x2e\xd3\x82\x21\x94\xc3\x51\x08\x81\xf2\x3d\xbe\x81\x61\xe5\xc6\x46\x13\xc2\x56\x37\xe2\x2c\xcb\xb4\x7c\x80\xcc\x2c\x80\x64\x9b\x2b\x06\x0c\x68\x6e\x65\xc5\x87\x61\x32\x8b\x31\x8a\x12\x15\xd6\x7c\x12\x87\x12\xd0\x2b\x55\x1c\xa8\xb0\x21\x80\x0e\xca\xcd\x58\x75\xe4\x04\x29\x62\xc4\xb9\x6a\xc4\x18\xec\x43\x12\xd2\x73\x06\x54\x96\xa8\xc0\x4b\xae\x17\x45\x2c\x81\x4c\xcb\x94\x58\xe6\x93\x3a\x4d\x1f\x18\x64\xa9\xb3\x81\xb5\xab\x10\xcb\xb1\x5d\x7c\x65\x69\xee\x72\x0c\x52\xa3\x58\xda\x25\xb8\xa7\xd2\x69\x5e\x40\x92\x40\x17\xdd\x55\x39\xd8\x05\x1a\x49\xc4\x36\x73\xa4\x72\x60\xda\xb8\x25\xd9\xb6\xb0\x2b\x32\xb2\x2b\x72\xe1\x0e\xe0\xd0\x20\x0b\xdd\x8a\x48\x42\xe9\x0a\xdf\x2c\x39\x8e\xfc\x2e\x01\x38\x2b\xa2\x52\xc7\xf0\x74\xe5\xec\x63\x0d\xa9\xb7\x93\x55\x94\x5c\x5a\x03\xee\xc1\x1c\x1a\x15\xfc\xb6\xba\x12\x0c\xbc\x18\x6f\x21\x90\xf5\xad\x94\x65\x2c\x34\xaa\x98\x92\x25\x0a\xd8\xe2\xce\x01\x80\x91\x56\x69\x94\xcb\xe5\xaf\xd3\x85\xe5\x31\x46\xb3\x19\x56\x5d\x13\xc0\xfa\x79\xe8\x21\x21\xd0\xa4\x8e\x89\x63\x04\x88\xe9\x4e\xd8\xb7\x1e\xda\x30\x82\x14\xfb\x26\x0c\x63\x69\xd7\xa4\x20\x94\x65\x64\x73\x63\x95\xea\x29\x02\xbd\xab\x45\x90\xc2\x37\x00\x24\x00\xa5\x48\x2f\xb3\xb1\xa8\xfb\xa1\xa7\x10\x89\x5e\x89\x3d\x24\x01\x1a\x63\x6f\x82\x72\xac\xbd\x09\x82\x71\xb5\xb1\x4e\xdb\xc0\x7d\xf2\xd0\x53\xf9\xb4\x75\x3c\x04\x9e\x3e\x3c\x64\x39\x47\x7a\xff\x38\x0e\x65\x06\x2c\xcf\xb4\x08\x47\x43\x31\x7a\x31\x96\xa6\x4d\xb0\x43\x1d\x62\x2d\x5b\x40\xbb\x3d\xc4\xa9\x35\x2f\x41\x9d\x1c\x60\x2a\x01\x4f\x59\x82\x32\x12\x92\x69\x06\x19\x0f\xa1\x9d\x65\x0b\x13\x94\x5b\xd6\x8f\x20\xed\x4b\x6d\xd7\x19\xc3\x6e\x36\x9e\x23\x2d\x28\x42\x58\x92\x05\x60\x7a\x40\xb0\xd1\x21\x41\x11\x27\x39\x89\x50\xba\xef\x1f\xbf\x38\x31\x5a\xc1\x08\x3a\xf1\xb8\x1c\x23\xd6\xda\x7d\xab\xd6\xab\xd1\xb3\x14\x2f\xd4\x01\xca\xff\xed\xc3\x17\xda\x0e\x2b\x92\x88\x29\x1a\x13\xa4\x77\x3e\x60\x8b\x15\x61\x66\xce\x2f\x22\x55\xa3\x32\xa4\xa8\xdc\xb5\x7a\xa0\xe0\xcc\x07\x64\xcb\xe0\x3c\x62\xa3\xce\x2f\xa9\x66\x48\x2e\xc8\x62\x80\xa0\x25\x31\xc9\x88\x5e\x77\x93\x0e\x00\x30\x5a\xf7\xc9\x50\x06\x88\x32\x27\x3b\x61\x46\xdd\x6d\x7c\xa4\x22\x18\xbd\x77\x91\xc3\xd7\x86\x5d\x61\x1d\x8c\x3f\x9b\x30\x58\x3f\xe2\x34\x62\x5c\x95\xdc\x05\x7b\x69\x9c\x46\x9c\x29\xa1\xd9\x85\x3d\x42\xcc\xd2\x14\x06\xfc\xbf\x44\x86\x15\x2b\xd0\x14\x48\xca\x8b\x70\x1f\x68\x73\xdb\x1d\x71\x69\x74\x59\x6e\x14\xca\x40\x0e\x0d\xcb\xad\xda\x12\x68\xc0\x8a\x6b\x30\x00\x1c\xb2\xfc\xe8\xa6\x30\x6b\xab\xa6\x73\xed\x1e\x5d\x55\x9a\x63\xf7\x90\x13\x97\xe5\xae\x8d\xaf\x23\xc5\x0c\x70\x56\xd9\x36\x0d\x13\x13\x62\x1e\x51\x3c\x12\x43\xe0\xb5\x51\x43\x77\x74\x9f\x1b\xd1\x23\xe5\x97\x8c\x3a\xc6\x49\xee\x45\x05\x5e\xd4\x3b\x21\xb4\xbd\xf8\x9e\x17\x7f\xa1\x25\xb8\x14\x79\x2a\x82\xd1\x59\x29\xdf\x61\x32\xaa\x44\x97\xf3\x1e\x26\xc8\xa3\xa9\xc6\x8f\x4d\x7c\xb5\x5e\x1d\x3f\xce\x54\xac\xe3\xf4\xc3\xe5\xd2\x4b\x12\x3a\x11\x95\x2e\xea\x9b\xc8\xf7\x98\xc3\xd4\x7d\xa6\x65\x4c\xa7\x23\x23\x55\x0a\x83\x8f\x61\x5b\x15\xb3\x3b\x8a\x9c\x9c\xe4\x62\x52\xca\xde\x80\xa8\x3a\x2c\x8a\xd2\xaf\x6c\xa2\x8b\x74\x2c\x30\x5d\x29\x9b\xd9\x1d\x35\x65\x66\xae\x94\x17\xe8\x1c\xf1\x25\x63\xd4\x59\x96\xa3\xae\x1f\xe5\xae\xcb\x52\x34\xb2\x3b\x6a\xc6\xe7\x3d\x8e\x72\xad\x8e\x8c\xfb\x81\x13\x7d\x81\xb1\x1f\x89\x9d\x48\x19\x63\x7b\xa6\x3f\xa8\x44\x6a\x55\x20\x56\x31\x7a\xd8\xfc\x4c\x13\x37\xb6\x92\xeb\xb0\x1a\xab\x5b\x12\xaa\xa8\x0b\x8c\xdd\x7e\x44\x43\x8b\x6b\x06\x81\xb9\xc8\xbd\xc5\x19\x56\xf4\x98\xbb\xa2\x28\x91\x88\x23\x8a\x84\x8c\x38\xac\xe8\xc4\x40\x57\xd1\x89\x81\x75\xcf\xad\xe8\xeb\x4b\x2a\x23\xfa\x64\x98\x69\xed\x16\x0e\x73\x0e\xb3\x9c\xb3\x6b\xb5\xf2\xcb\x1a\x79\x08\x8c\xbe\xa3\x25\x27\x12\xe0\xca\xb2\xd6\x9f\x26\x2a\x9c\x68\x00\xc4\x69\x61\x97\x42\xe0\xaa\xb8\x98\xdb\xd5\x13\x92\xdc\x39\x07\x0c\x63\x30\xeb\x1d\xfe\x69\xab\x0e\x24\x5f\x6c\xd5\x65\x98\xcc\xac\x3e\x3a\x4c\x04\x76\xe4\xb8\x5a\x88\xe6\x63\xc7\xd5\x42\x86\xb3\x1c\x9b\x63\x5c\xb8\x1c\xe0\xaa\x3a\xa1\x60\x61\xec\x21\x70\x2f\xc3\xba\x52\x48\x02\xe3\x4a\xa1\x83\x5a\x12\x0f\x20\xec\xec\x58\xa1\x93\x8f\xac\xe9\x24\x06\x02\x63\x39\x81\xe0\xa1\x59\x03\xa4\x9a\x73\x64\xad\x40\x70\xf4\x88\x9d\xf0\x10\x12\xf8\xcb\x81\xe6\xaa\x10\x0c\x31\x38\x71\xa2\xc5\xdc\x3a\x2a\xab\x34\x23\xa0\x2a\xa9\x34\x82\x12\x6b\x37\x08\xb0\x83\x1c\x39\xfe\x19\x90\xc4\xf1\xcf\x90\x61\xbd\x53\x03\x6b\x06\x9e\x65\x76\xa3\x3b\x06\x82\x54\x87\x44\xd7\x1f\xf9\x3b\x68\x49\x40\xc4\xd6\x51\x65\xd3\x05\x5b\x1b\xd6\x06\xd4\x10\x24\x1b\x4e\x4d\x21\x7d\x19\x74\x0a\x81\xce\x72\xdc\x39\xc0\x23\x1d\xbb\x00\x64\x21\xd4\x3e\x5d\x6c\x5f\x03\x19\xce\x5d\xec\x48\x60\xe7\x0b\x94\xa6\xe7\xee\x11\x58\x32\xd5\xf4\xb7\x15\xea\xf7\x98\x6f\x48\x81\x64\x8a\x6c\x19\x76\xd5\xba\x0e\xa7\x75\x80\xf4\x34\xd2\x57\x88\x0e\x8b\x6a\x1e\xbd\x7d\xa1\x6a\x0d\x9b\x34\xac\xec\x08\x41\x08\x46\x58\x4c\x2d\x35\x0c\xaa\xe3\xcc\x00\x36\x0a\xec\x02\xd0\xdf\x15\x1d\x25\x02\xb2\xb2\x8e\x02\x63\xb7\x34\xeb\x0c\x2c\x42\x22\x9c\x69\xb9\x00\x87\xf7\xd8\x39\x7e\x1c\x02\xd3\xd9\x53\x60\xd8\xca\x1f\x79\x87\xf0\x72\xb0\x3c\x68\xaa\xa1\x5b\x05\x80\x20\xc0\x37\x8e\xf9\x4d\xd6\xe5\xa6\x32\x7f\xf0\x8d\x35\xd5\xf7\x3a\x12\x48\x11\xcd\x67\x39\xf7\x38\x50\xa2\x29\xce\x3c\x9e\x71\x54\x25\x34\x94\xd9\x15\x08\xd8\x6a\xa2\x63\xad\x86\x6c\x0a\x28\xb0\x31\x16\x82\xb4\x39\xba\x29\x48\x4a\xa6\x9c\x14\xda\x23\x29\x8a\x24\xa1\x73\x8c\xa8\x01\xbd\xd7\x41\x43\x18\x9a\x9b\x5b\xaf\x3f\xa1\x0e\x56\x72\x8d\x65\x7f\x72\x67\xda\x42\x8f\x3b\xe7\x17\x50\x01\x1b\x06\xfb\x32\xce\x1c\xad\x10\xee\xdd\x99\x4e\x42\x43\x99\x81\xdf\x69\x47\x76\x7f\x04\x13\xcd\xee\x8e\x60\x1e\x5d\xc0\xf9\xd0\x3d\x28\x63\x6a\x9b\x7a\x9f\x40\xbe\xc6\x6f\x03\x18\xd1\xf8\x6d\xc8\x10\xd7\x7e\x06\xe0\x2e\x84\xef\x23\x11\xfb\x04\x7e\x12\xd3\x83\x92\xc1\x05\x90\xb9\x08\xbe\x5f\xe2\x28\x47\xd6\xf1\x45\xb5\xec\x7e\xc9\xa8\xdc\x32\x78\x92\xed\xc8\xe2\x47\x2e\x9e\xa0\x34\x25\x60\x66\xcb\xac\xee\x2c\x5a\xfc\xdc\xca\x5d\x31\x07\x13\x2b\x77\x21\x88\x17\xa6\x80\x01\x9c\x53\x24\x09\x51\x9e\x6d\x45\x32\x85\x1a\x26\x89\x03\x48\x92\xd4\x41\x44\x36\xcf\xcb\xe2\x75\x0c\x64\x25\xf1\x0a\x99\xb9\xb9\x8b\x31\x7f\x4e\xd2\x14\xc7\x1b\xa4\x4e\x64\x22\x1f\x11\x32\x42\x42\x24\x9f\x65\x76\xc9\x67\x11\x48\x91\xd9\x95\xc5\x10\x76\xca\xea\x00\x90\xd3\x4c\xaf\xc9\xa2\xf0\x84\xb2\x44\xc9\x0b\x38\x55\x7f\x5e\x91\x17\x90\x4f\x45\x5e\x40\x8f\x33\x8e\x52\xb3\xfd\x0e\x20\x35\xdf\xf7\x91\x84\x69\xd3\x7f\x07\x14\x78\x11\xd6\xb6\x0a\xd8\xfc\x3c\x67\x05\x27\x98\xe7\x5c\xdb\x28\xc1\xb4\x92\x2c\x11\xcf\xad\xe1\x1a\xf6\x5e\x09\x47\x91\x74\x01\xb8\x9f\x9a\xb0\x12\xaf\x21\x4c\x16\x40\x7a\x92\x22\xd2\xe1\xbe\xa6\xe8\x6b\x64\xa0\x91\xb1\x46\x46\x1a\x99\x2a\xa4\x63\xf2\xed\x69\xc4\xe4\x33\x50\x48\x57\x95\x84\x75\xd8\x50\x0c\x35\x62\xf2\xd5\xb5\xe9\x19\x9a\x91\x42\xfa\xa6\x36\x48\x23\x26\x95\x6e\xe5\xd0\x20\xaa\x2c\x2d\x45\x02\xc9\xc2\xdc\xf8\x5d\x74\x61\x05\x4f\x2a\x4a\xa0\x68\xd7\x73\x47\x74\x88\x3e\x9e\xb9\x67\x83\x20\x86\x5f\x38\x7b\x71\xd8\x27\xb8\x9b\x73\x70\x41\x01\x8a\x58\x21\xb0\x55\x9d\x79\x48\x0c\x88\xb6\x33\x8e\x44\x57\xbd\x70\xbd\x58\x61\x5b\x3d\xf3\x10\x21\xd5\x5e\x98\x23\xae\x22\x08\xa1\x09\x2f\x9c\xb3\x35\x38\x55\x9e\xb9\x40\x0c\x14\xc6\x16\x05\x55\xb5\xb6\x28\xa8\xa8\xd5\x96\xc0\x0e\x37\x73\xc2\xd0\x78\x2d\xe8\xc1\x6a\x33\xd3\x9e\xb3\xe0\x5e\x30\x3b\xd2\x0b\xc5\x08\x4a\x36\x26\xa6\x78\x0a\xc1\x1b\x2f\x29\xbe\xb9\xf1\x12\xab\xf5\x47\xcb\x60\x68\x30\xce\xb4\xbd\x13\x81\xfd\x7c\x66\x7c\x86\x74\xbc\xd5\x67\x46\x81\x41\x98\x86\x3a\x16\x32\x55\xeb\x49\xcc\xd6\xcd\x18\x68\x05\x6a\x0a\x00\x2b\xd8\x8b\xb2\x74\x12\xbc\x36\x2b\x4b\x27\xc8\x51\x9f\x5b\x80\xc3\xc0\x0b\x1d\x82\xa9\x3a\x9b\xf9\x41\xb2\xd0\x3d\x13\xc2\x91\xcc\x0b\xc7\xc0\x02\x43\xe2\x18\x58\x20\x9c\x22\xdd\x09\xd0\x73\xba\xea\xa0\xee\xce\xb4\x34\x47\x20\x87\x66\xe9\x67\x4d\x0b\xd5\xa2\x96\xa9\x90\x0a\x5b\xbf\x48\x8d\x69\x8b\x00\x38\xfb\xcc\xa8\x19\xd4\xb1\x8c\xbd\xf1\xa3\x9d\x81\x93\x04\x76\xa5\x04\x1d\xf4\x45\x45\x14\xc2\x58\x55\x44\x21\xe4\xe6\xd8\xdc\x5e\x70\x8c\x72\xcc\x5d\xdb\x0c\x70\x8a\x8b\x1f\x1b\xed\x44\x32\x95\x8a\x7b\x5e\xa4\xa9\x97\x6e\x68\xe3\xd4\x1f\xdd\x2b\x1d\x1b\xe3\x64\x36\x74\x12\x9c\x0b\x36\xf4\xd4\x1e\x6c\x23\x5d\x5d\x07\xf4\x84\x17\x65\x99\x01\x25\xcc\xac\xcc\x90\x3c\x63\xfb\x08\x52\xcd\xac\xb7\x04\x1a\x61\x05\x18\x85\x1f\x98\x31\xb7\xac\x3f\x94\x61\xe3\x41\x3b\x84\x2c\x05\xe3\xff\x2a\x6a\x70\xa1\x7f\xe4\x2e\x0f\xce\x9c\x7d\x66\x2c\x73\x48\xcf\xcc\xb6\x11\x74\xbb\x59\xee\x28\x6a\x08\xfc\x7e\x67\x39\xf7\x39\x64\xa0\x40\xab\x6f\x8d\x24\x52\xc9\x9d\xe3\x9b\xb4\x34\x3c\x00\x3a\xa8\x12\x0c\x39\x4f\x4b\x5d\x3f\xcb\x79\xb9\x87\x6e\x31\xcf\x3d\x5e\xb3\xf3\xf4\xd6\x61\x51\x83\xbe\x44\x11\x56\x1b\x6d\x69\xb7\x9c\x23\xc2\xad\xda\x8f\x00\x49\x13\xbb\x0e\xce\xd1\x82\xa4\xda\x8e\x02\x0e\x03\x2f\xf7\xdf\x59\x4b\x7d\x47\xa6\xe0\xd6\x58\xdf\x53\x08\xb7\x87\xbe\x70\xca\xe4\x58\xaa\x41\x6a\xcc\x9d\x73\x87\x9e\x8a\x37\xd6\x8c\x18\xaa\x2a\x8a\xfd\xbf\x44\xd4\x14\x19\x3e\x11\x02\xfd\xa5\x23\xad\x41\xae\xcc\x5d\x40\x8c\xd9\x1c\x23\x9e\x1b\x8b\xb1\x45\x1c\xbb\xb2\x04\xd3\x94\xe8\xc6\x77\x06\x80\xf0\xc8\x6c\x0c\xc0\xba\x31\x2f\x0b\x32\x91\xf0\xa5\x71\x5c\x00\x6b\xc9\x4b\x92\x4e\x31\xcf\xcf\x97\x28\xc2\x6e\x57\xcd\xaf\x33\xec\x58\x5f\x64\xd5\xae\xb3\x3b\x17\x83\x52\x99\x63\xbb\x48\x00\x58\xe4\x73\x73\x1c\x04\x59\x31\x76\x9d\xe2\x24\x77\x0d\x6b\x20\xed\x45\x04\xd8\xba\xbc\x18\x18\x84\x8a\x30\x11\xf4\x2f\x9d\x03\x5b\x18\x60\xc6\x4d\xf7\x06\x21\x34\x8e\xc1\x0b\x6c\x39\x4a\x8f\x89\x96\x7a\xd2\x21\x6f\x5e\x59\xfa\x61\xa0\x9c\x69\x0c\x55\x75\x1c\x9b\xd5\x80\xb9\xf6\x1d\xd9\x62\x0f\x11\x8c\xf8\xb2\x58\x80\xb5\xf2\x65\xc9\x79\x49\x84\x5d\xa9\x05\xbe\x48\xf3\x95\xe3\x05\xd5\xeb\x02\xb2\x9c\x6b\x47\x5e\x79\x70\xf5\xca\xb1\xd3\x88\x6a\x12\xc7\x4e\x03\x61\x25\x39\x02\x70\x07\x78\x65\xed\x2f\x18\x22\x8d\xfd\x05\x43\xac\x51\x07\x46\x10\x6b\xd4\x01\x11\x7c\x65\x97\x7f\xf9\xed\x5b\x6b\x8c\x81\x0e\x25\xd6\x1a\xd3\x95\x61\xb9\x85\xf9\xeb\x1e\x4c\xe3\x24\x49\xdc\x89\x40\xca\x0c\x07\x1f\xdf\x35\x0c\x07\xe6\xb1\x57\x8e\xdd\x44\x30\x20\x71\xec\x26\x10\x56\xb6\xb2\x10\xa6\x1e\x21\xc4\xd1\x76\x65\xbc\x73\xee\x0f\x9d\x41\x68\xa2\x0f\x46\xc6\xb1\x24\x61\x6a\xf7\xd6\x09\xc1\x29\xeb\xd5\x6b\xad\xee\x07\x21\x1c\x59\x92\xcf\x0e\x00\x7d\xe8\x98\x45\x40\x30\x10\x17\x98\x4a\x40\xeb\x46\xaa\x21\x0b\x34\x23\x14\xf1\xd5\x2b\xaf\xc2\x0b\x34\x4b\x0d\xef\x49\x1b\xa1\xc0\x84\xde\xee\xa6\x26\x0b\xa4\x0e\x3b\x03\xa9\x75\xbe\x5a\xf8\xd1\x6a\xfb\xd1\xe9\xc0\xfe\x93\x2c\x96\xea\x20\x36\x90\xbe\x01\xaf\x16\xcb\x94\x18\xe7\x0a\xb0\xb5\x13\x1a\x99\x3d\x90\xbc\xc2\x61\xce\x8b\xc0\x9e\xe4\xf4\x53\x07\xf4\x4d\x00\x8c\x8b\xed\x18\x94\x54\x42\x99\xc3\x12\x50\x15\x9a\x47\x86\x85\xc1\x97\xc8\x19\x80\x29\xbc\x9a\x61\x82\x91\x8c\xc5\x33\x63\xb6\x92\x52\xae\x7c\x36\x32\x55\x74\xbc\x94\xf3\x2b\x30\x78\x61\xe7\xb2\x87\xf4\x4e\x27\x34\x4f\x11\x9f\xab\x1d\x13\x02\x3b\x1f\xa1\xb9\xf5\xd7\x40\x60\xbe\x79\x45\x6f\x49\x46\xe0\x48\x46\xeb\xe7\x7a\x8e\xe8\x18\xc7\x73\x28\x00\xbf\xcd\x57\xa7\x56\x39\x83\xe6\x32\xab\x9c\xc1\xb8\x38\x96\x23\x70\x26\x21\x2e\x90\x00\x45\x49\x58\xc1\x6e\x99\x54\x44\x18\x34\x90\x59\x33\xc3\x18\xa8\xac\x9d\x01\xc2\xe5\x26\x11\xb3\x82\xdf\x83\xf1\x98\x54\xe4\x18\x4c\x72\x2b\xc7\x24\xc7\x65\xa5\xa1\xcf\x08\x75\xac\xd2\x7d\x05\xe9\x55\x16\x8e\x71\x04\xa0\xd7\xec\xa4\xa7\x01\x6d\xbd\x49\xba\x0a\xb9\xf5\xf2\xcd\xbd\xae\xcc\xed\x51\x6a\xd8\x91\xf1\x2e\x02\x53\xb1\xb8\xb6\xfd\x2d\xc4\x03\x71\x00\xd8\x42\xbe\x32\x06\x15\x68\xaf\x31\xa8\x88\xd0\x6b\x67\xb5\x84\xa3\xf5\xcf\x2e\xd0\x07\x0a\x23\xbf\xc6\x10\x6f\xc4\x97\x08\xbe\x2e\xeb\xfb\x82\xe5\x3f\x97\xa5\x96\xe0\xae\xcf\x76\x7e\x4a\xbf\xaa\xd7\x95\x51\x16\xdc\xf1\xb9\x32\xca\x82\xb5\x5f\x57\x74\x46\x51\xb5\xcf\x95\xa1\x83\x26\x65\x98\xdb\x1e\x19\x01\x9d\x83\x80\x16\xfd\xda\xed\x34\x68\xb6\xdb\x69\x02\x78\x83\x96\x4b\xc3\x58\x82\xd1\xae\x1d\x60\x6a\x00\x63\x5c\x14\x4c\xf2\xc6\xdd\x5c\xc2\x9d\x92\x6b\x0f\x19\x02\x8d\xe9\x4e\xc8\xc4\x76\xa7\x08\xbe\x29\x77\xa7\xe0\xc5\xeb\x72\x77\x8a\x16\x5c\xcf\xb8\xbe\xac\x12\x48\xe7\x8e\x37\x8e\xc7\xa4\xe8\x9d\x6b\xc7\x63\x52\x84\xdf\x38\x9b\x26\x31\x11\xae\x9d\x4d\x93\x08\xbf\xa9\x8c\x87\x60\xc1\xeb\xca\x78\x00\x6d\x65\x3c\xa0\xb5\x65\x14\xae\x84\xa4\xfb\x56\xa1\x81\x97\x28\x8f\x5d\x73\x00\x70\x51\xea\x21\x08\x10\xdf\x7b\xa2\x07\xd8\x8c\x23\x6d\xb9\x03\xdb\xfb\x31\x5a\x4c\x63\x33\x4a\x53\xa0\x71\x90\xa9\x44\xb4\x87\xdc\x10\x8e\x11\x8e\x9d\x30\x52\xf1\xe6\xf2\x5f\xa8\x00\x6d\xa7\x93\x49\x52\xbb\x25\xec\x43\x0e\xcb\x14\x45\xd8\x1a\x92\xa0\x2e\x29\x52\x77\xa0\xee\x91\x2c\x96\x73\xe5\x1d\x26\xbf\x10\x07\x40\xa2\xe4\xc1\x18\x8c\x11\x8e\x8f\x16\xec\x60\x8e\x9d\x30\x86\x9e\xb3\x1d\x17\x28\x7a\x9b\x43\xac\x10\x2d\xc4\xa5\x0a\x28\x90\x74\xa9\x11\x5d\x93\xa5\x71\x29\xd3\x34\x66\xf3\x30\x86\xcd\x83\x80\x72\xbd\xc7\x46\xb2\x3d\x39\x22\x3a\x19\x4c\xfd\x74\xdf\x45\x64\xd6\x5a\x93\x50\x25\x69\xdf\x4b\x84\x62\x15\xce\x0c\x60\xf6\x1d\xe9\xd4\xee\x8d\x80\x13\xd3\x67\x0e\x00\x0d\xb7\x77\xd4\x86\x43\xa8\xcc\x94\x4b\x75\xfa\xab\x0e\x88\xe8\x8f\x32\x70\xad\xd7\xdb\xd1\x54\x01\x59\xaa\x47\x74\x94\x18\xa8\xd0\x90\xa8\xda\xb1\x7b\xe8\x06\x96\xc7\xd4\x43\x30\xd0\xb8\x93\x17\xf2\xf6\x90\x48\x22\xba\x4b\xba\x20\x6b\xd2\x08\x9c\x02\xbf\x42\x7a\x33\xd5\x65\x62\x33\xd5\x21\x18\x47\xfa\x26\x2d\x88\x8a\xd4\xbd\x43\x17\x69\xc0\x28\xe3\xd0\x2d\x31\x8f\x9d\x73\xcc\xa1\x84\x8a\xcc\x62\x3d\x99\xb3\xd1\xb8\xc1\x45\xdb\xdc\xe2\x85\x6b\x31\xa9\xd9\x09\x8a\x52\xc1\x87\x41\xf0\xfb\x33\xd1\xa7\xfa\x8c\x4a\xcd\x14\xed\xdf\x60\x4e\xa3\x15\x27\x97\xb6\x1e\x92\x77\x4b\x4e\x16\x06\x44\x65\xcf\x0b\x43\x59\x71\x70\x00\x27\x6c\x93\xbb\x65\x36\xc9\x90\x22\xdd\x01\x26\x29\xd1\xf3\x57\x76\xb8\x80\xa5\x13\x43\xa9\x09\x03\x13\x09\x27\xe1\xde\x99\x3b\x1c\x9d\xe8\xc8\xca\x91\xfb\xb8\x12\xa9\x2b\xd8\x55\x31\xcf\x53\xa6\xc1\x2e\x6c\x94\x45\xad\x95\xb3\x81\xbd\x9b\x26\x0f\xfe\x9d\x28\xed\x17\x19\x82\xd1\x58\x44\x98\xd6\x1a\xaf\x86\xa1\x8a\xa9\xec\xe3\x60\xa7\xbc\xd1\x61\xc5\xc4\x54\xd2\xc4\xbd\x4a\x6e\x59\xb9\xb3\x21\x4a\x55\xd0\x44\x4e\xdd\xc8\xec\xa6\x20\x33\x6f\x4b\x19\xbb\x55\xf1\x7a\x16\xf6\x69\xca\x77\xc2\x73\x4a\xe8\x59\x5c\x31\x20\xea\x5a\xc8\xf7\x88\xd0\x3d\x9a\xcf\x39\xc6\x9e\xc3\xd5\x54\x27\x51\xd7\xf9\xec\xa8\x81\x72\xe3\x46\xa9\x24\xd3\x4e\x09\x77\x37\x90\x53\x5d\x2b\xe9\x1d\xe3\xd7\x22\x34\x71\x15\xf6\x09\x4c\x54\x85\x79\x46\xa5\x28\x3d\xe2\xba\x7a\x95\x04\x1d\x2f\xc2\x63\x90\x23\x7d\x40\x2e\x25\x1b\x36\x56\x51\xd9\x41\x37\xde\xbc\x76\x2c\x3f\x72\x68\x7d\xf3\xb0\x64\x45\xc7\x3c\x3c\x92\x40\x29\xde\x9a\x87\xc1\x3f\x31\xf5\xcd\xc3\xa1\x85\xb4\x69\x0d\xbe\xa5\x9b\xe2\xcc\xd6\xcd\x0a\x7a\x9c\x59\xfb\xf3\x58\xd1\x65\xbe\xb5\xac\xaf\x50\xc7\x38\x36\x50\x10\xbe\x31\x07\xae\xba\xc5\x02\xb4\xa8\xec\x96\x63\x9c\x65\x30\xa6\x9e\xdd\x52\xa6\x10\x71\x15\x53\xe7\x40\x45\xf8\xf4\x43\x5d\xac\x2d\x74\xa8\x29\xad\xdd\x13\x21\xd5\x05\x99\x63\x7d\xeb\x28\xb2\xaa\x1d\x34\x56\x31\x9e\x11\x14\x64\xb2\xe7\x09\x0a\x83\x9d\x94\x65\xca\x71\x59\x19\x84\x01\x29\x2b\x83\xb0\x32\xcf\xbc\x46\xcc\x8c\x81\x1b\x2a\xeb\x38\x8e\x42\xd1\x73\xc4\x63\x4f\x40\xcd\x11\x2f\x3c\xbe\x13\x80\x5e\xe8\xe1\x82\x5f\x3a\x9f\xa6\xe6\x82\x2b\xcc\x19\x47\x99\x84\x1a\x38\xca\x24\x84\x1d\xdd\x46\x8a\x34\xd3\xfd\xd0\x34\x73\x98\x00\x5c\x08\xfe\x90\x7a\x24\xa4\x47\xe4\x71\x79\x95\x91\x1c\xe0\x54\x7e\x0c\x46\xdb\x34\xb5\xce\x40\xe0\x5c\x77\xbc\x20\xce\x7e\x1b\xba\xcc\x45\x60\x2b\x99\x2e\x58\x91\xe5\x28\x9a\x6b\xe7\xc3\xa9\x45\x3d\xc4\x39\x0c\x18\xab\xb0\xcb\xbc\x12\x33\x66\x69\x68\xa7\xb5\xb4\x8e\x64\xec\x8d\x1f\xed\x4c\x53\x49\xe0\x1c\x06\xc0\xe8\x31\x47\x41\x8d\x24\x60\x0d\x82\x30\x5e\xcc\x6a\x47\x2a\x89\x90\x6b\x5e\x77\x0d\x61\x4b\xba\xd1\x4b\x51\x47\x54\x52\x8c\x9c\xac\xca\x2b\xc9\x10\x7c\x60\x1f\x77\x6b\x1c\x3a\x99\x56\xd3\x22\x95\xf3\x02\x2d\x33\x2d\x4c\x86\x49\xa4\xd0\x2a\xfd\x40\xe5\x56\x2d\x47\xc7\x54\xd3\xc0\x58\x30\xb6\x2c\xbb\xe8\x4b\xcd\x54\x47\xb8\x9e\x80\x48\x56\xc0\xf8\xa2\x8c\xa5\x76\x5f\xd9\x06\x75\x25\x59\x69\x1b\x24\x47\xc2\x71\x53\xe9\x48\xc4\xbd\xa7\x0f\x3b\xea\x94\xdd\xd9\x8b\x60\x60\x68\x49\xd9\x9d\x34\xb3\x5e\x41\x79\x77\x98\x57\xb4\xa7\xb1\x8e\xa9\x2e\xf6\x72\x98\xbe\x28\x9e\x8f\x64\xdf\x3a\xd7\xeb\x0d\xa4\x1f\x51\x01\xcf\x89\x54\x36\xb3\xa1\x7e\x6a\x33\xfe\x58\x8a\x65\xe7\x9e\x85\xd4\x0b\xb8\x3f\x23\x61\x1a\x71\xa3\x67\x2a\xfd\x80\xbb\x93\x11\x5a\xaf\xaf\x66\x04\x52\x8d\xe7\x66\x6e\x76\x60\xfd\x4b\x33\x64\x95\x5c\xb9\x15\xa9\x6c\x19\x61\xd5\x75\xac\x2f\x20\xb2\xac\x42\x0b\x2b\xaf\x1f\x4c\x4b\xa2\x38\x75\x8f\x8a\x62\x05\x98\x95\x54\xd6\xe3\x66\xaa\xf7\x0f\x99\xa3\x76\x8f\x34\x60\xd4\x6e\x90\x28\xae\x7d\x1a\x8c\x14\xa9\x87\x40\x99\xce\xe1\xd3\x40\x86\xed\xe1\x13\x34\x54\x74\xf8\x2f\x22\xb7\x0b\xfd\x23\x77\x25\x62\x9a\x97\x57\x40\x50\x7e\x5c\xbd\x27\xf5\x34\x21\x99\x69\xea\x1c\x33\xc9\x54\xde\x01\x95\x4c\x66\x04\x24\xe8\xaf\x22\x8c\x5d\xfd\x27\x75\xdc\x27\x23\xd9\x18\xee\x9c\x7b\x41\xb6\x05\x8f\xdd\x6d\x06\x92\x98\xeb\x55\x09\x64\xe5\x23\xa8\x91\xd5\x05\x9c\x23\x28\x8b\x6a\x9b\xf0\x3d\x3c\xe0\xe3\xfa\xc7\x74\x64\x58\x6b\xf3\x9d\x40\x85\xb1\x7e\x30\x44\x42\x27\x5a\x40\x8f\xc1\x3e\xbb\x40\x66\xeb\x3b\x90\x41\x23\x6f\x5c\xc4\x51\xd1\xe1\xa8\x50\xa2\xae\xd0\xe8\x19\xd4\xe8\xec\x48\x16\xc0\xaf\xf5\xb4\xe8\xc3\x05\xcc\x45\x64\x4d\xa3\x08\x56\xe3\x13\xbb\xef\x8b\x80\xc0\xec\xfb\x20\xe8\x5e\xaa\x81\x62\xac\x3f\x66\x07\x6c\x1f\x0b\x8c\xb2\x82\xe3\xd8\x7b\x80\x49\xb0\xdd\x09\x8e\x49\xb1\x70\x4e\x96\x02\x70\x15\x3b\xc1\x69\x4a\xa8\xe3\xd7\x22\x46\xf9\xa4\xfc\x4a\x09\x74\x60\x59\x79\x80\xe2\xe6\xba\x87\xc0\x4e\xb7\x20\x91\xf4\xb1\xba\x07\xb3\xf8\x82\xc4\xf6\x59\x9e\x05\x89\x2d\x5b\x83\xc9\xcb\x5c\xf0\xec\x80\xcb\xd1\x82\xc4\xde\xe5\x5f\xb8\x22\xa0\x9f\x5b\x02\xb7\x61\xf7\xd2\x00\xcc\x6d\x00\xcc\xf3\x62\x23\x83\x14\xba\x4b\x45\x1d\xe1\x2e\xab\x73\x73\x15\x1c\x31\x16\x69\x64\xae\xd7\x4d\x21\x1c\x9b\x2b\x41\x30\xd6\x74\x59\x4e\xc1\x62\xe3\xe0\xd9\x81\x91\x3f\xa9\x48\x7b\x18\x92\x8a\xb4\x87\x91\x5e\x7a\x79\x55\x24\x97\x68\xcd\x89\xe3\xfa\x22\xa9\x72\xf5\xf6\x92\x7e\x4b\xed\x44\x36\x2c\xe8\xc2\xd3\x48\x0b\x1d\x9a\xca\x90\x98\xe3\xe6\xb6\x1d\xdc\x32\x5c\x14\x25\x80\xa2\xa9\x76\x6f\x90\x57\x91\xde\xba\xd6\x33\x58\xad\xa8\x87\xf4\x00\x71\x1e\xfb\x82\xdb\x1f\x1d\x40\xcd\xf1\xda\x58\x06\xed\xab\x52\xf0\xb0\x9b\x2c\xcf\x7d\x4d\xca\x85\x55\xc3\x82\x50\xa7\x76\x1f\x90\x92\x50\x5e\x98\x43\x8a\x01\xf8\x3f\x2b\x48\x6f\x34\xe1\x4c\x0c\x30\x8f\x68\x2a\x8f\xa1\xef\xe1\x9d\x0c\xea\xbd\x61\x60\x2b\xe0\xbf\x5c\x60\x71\xe7\x02\xa3\xe8\x8c\xb7\xae\x61\x07\x1c\xf8\xa8\x87\x8c\x80\xc6\x31\xec\x80\xb5\x94\x7a\xc8\x00\x10\xe7\xae\xed\x50\x03\xee\x65\x5b\xa7\x0a\xf6\x06\x64\x07\xb2\x37\x12\x21\x86\x68\x23\x11\x20\xe8\x4a\x04\x18\x3e\x6c\x8f\x66\xc6\x70\xdc\x23\x10\x63\x1a\x84\xb2\xb1\x63\x1b\x1c\x6a\x0a\xab\x24\x48\x48\x0b\x5c\xe8\x45\xec\xfa\x6f\x9a\xaa\xbe\xc5\x33\x94\x93\x5b\x5c\x95\x2d\x70\x7e\xab\xa3\x2f\xe6\x24\xba\xfe\x56\x2c\x7d\x34\xf2\x3d\xe6\xab\x8d\x04\xfe\x9b\x38\xc0\x8f\x38\xc3\x66\x45\x01\x33\x37\xf5\xbc\x4a\x9d\x5a\x67\x39\x8e\x37\xf9\xab\x48\x57\x0e\x19\xef\x6f\xdd\xe4\x3a\xfb\x16\xdf\xe9\x93\xec\xbf\x28\x14\xe0\xfa\x8d\xf6\x0c\x92\xb9\xd0\xdb\xb2\x30\x15\xd2\x98\x96\x85\x29\xb4\xc9\x71\xf0\xb2\xec\x60\x7c\xc0\xc0\xf5\x96\x5a\xc7\x2e\x13\xbe\xd9\x98\xaa\xe4\xe0\xe5\x46\x65\x1b\x50\xc7\x89\xca\x21\x75\xb4\x23\x60\x6c\xc7\xe9\xc5\x0a\x82\x99\x01\x13\x19\xe4\x5e\xf8\x45\x7e\xeb\x24\xd2\x59\x3b\x6e\x1c\xb0\x14\x52\xc7\x8f\x23\x92\x80\x51\xae\x11\xdc\xb0\xa3\x5a\x1d\x94\x0c\x40\xcc\xf1\x58\x24\x83\x5a\xce\xc0\x8e\x81\x1a\xe6\x90\xfc\xe4\x6c\x39\x21\xda\xd9\x72\x42\xd8\x35\xa7\x4b\xc0\xa9\x0e\x4c\x34\x67\x81\x80\xae\x70\x6c\xa1\xb6\x55\x66\xcd\x85\x97\xf5\x68\xc5\xda\x09\x59\x97\x2d\x9b\x2a\xff\x4d\x36\x38\xd9\x35\x1b\xcd\x73\xb2\x93\xac\x21\x47\x97\xe8\x58\x72\xdc\x7a\x95\x0c\x3a\x6e\x54\xb6\x19\x35\xac\x2f\xeb\x60\x77\xdd\x0e\x95\xc3\x1f\xc0\xfe\x8e\x5e\x6a\xf9\x23\xcd\xbd\x9c\xac\x4e\xd9\xc1\x48\x03\xba\xdf\x60\xd7\x4a\x8f\x2d\xcb\x20\x5b\x9a\xa3\x2f\xc0\xc4\x62\xcf\x38\x46\x4a\xd4\x05\x20\xa7\xde\x32\x0a\x18\xa1\x33\x23\x31\xd4\x3a\x50\x59\x95\x13\xa0\x37\x3e\x2c\xb0\x98\x38\x0f\x6a\x41\x3d\xf4\x55\xc1\x48\xc6\x55\x5e\x43\xe8\x28\xdc\xbd\xe6\x0e\x9b\x99\xb7\x2c\x7f\xf4\x72\xdc\x40\xc6\x97\xee\x98\x8c\x15\xea\x1a\x9b\x02\x07\xf3\xdd\xfe\xad\x30\x63\xf9\x51\x55\xe4\xb0\xbc\x24\xd7\x12\x0f\x75\x0b\x01\x29\x62\xa3\xaa\xbe\x7d\x6e\x51\x8f\x08\xcd\x0d\x24\xae\xb7\xdf\xd8\x8b\xd9\xe0\xf0\xb7\x21\xbd\x67\xf4\x52\x43\xb3\xd1\xb3\xc7\x4d\x5b\x75\xf1\xb1\xcc\xc3\x72\x7b\x08\x3f\xd6\x80\x7b\x0a\xef\x93\xda\xc3\x78\x1f\xbf\x45\x95\x4c\xcc\x93\xa0\x60\xc8\x90\x90\xbe\x25\x92\xa8\xc1\x7e\xcc\xec\xec\xd6\x7e\x83\xfd\x19\xe6\x47\x29\xca\x6d\x20\x8e\x74\xbc\x3f\x5b\x15\xe4\x8d\x73\x60\xf1\x92\xf1\x72\x64\x63\xbc\x15\xcf\xaf\xdc\x46\x13\x65\x99\xc4\x1b\x36\xc5\x8a\x8f\xaf\xb7\x08\x79\x8c\xbc\x69\xe1\x45\x28\x74\x07\xc0\xae\x01\x91\x06\xec\x88\x58\xc8\x8c\x08\x36\x90\x19\x11\x35\x3d\xcf\x38\x8e\x70\x6c\xb6\xc4\xa3\xc0\x87\xdd\x66\x22\x6f\x98\x34\x45\xb9\x37\x3a\x58\x65\xf1\x0e\xdf\x62\x9e\xe1\xd2\xfc\x56\x23\x25\x6f\x71\x56\x38\x21\x0e\xdc\x22\x3c\x22\x9d\xfb\x74\x43\x9c\x57\xbc\x6a\x98\xbc\x7c\x71\x5e\x4c\xed\xad\xb1\x91\xd7\x00\x97\xc0\xcb\xa0\xe3\xc7\x2f\x45\x2b\xcc\x0b\x42\xc1\xa6\x2c\x24\x89\x97\x49\x57\x51\x78\xe5\x77\xcc\x62\x60\xa2\xdc\x44\x23\x9d\x6d\x11\x45\x18\xc7\x66\x4c\x42\x1f\x76\xc7\x64\xea\xd7\x47\x51\x54\xc7\xa4\x94\x85\xc7\x9f\x7e\xaf\xf8\xed\x1d\x75\xfd\x2a\x57\x5b\x3a\x52\x62\xcd\x13\xcc\xa1\x83\x79\x92\xa8\xe7\x44\x94\x65\x2c\x6c\x08\x74\xa4\x97\x9d\x2a\x62\xc3\x22\x02\xab\xed\x12\x71\x94\xa6\xc6\xf1\x1f\x56\x16\xba\xf4\x57\x1a\xea\x5c\xe7\x42\x49\x6c\x1e\x8f\xa4\xd6\x07\xae\x13\xd8\x69\x48\x97\x2c\x75\x9e\x62\x92\xc5\x70\x77\x92\xd0\x25\x8f\x0a\xec\xf2\x3c\x75\xde\x4f\x19\x19\xc0\xd8\xae\x9d\xe9\x23\x22\x36\xa0\x1c\x71\x7d\xaf\x6e\xdc\xed\xfa\xb8\xd6\x9c\x40\xe7\xe3\x8e\x52\x96\x68\x0a\xa3\x5c\x39\xea\x4b\xf5\x00\x14\xd2\xbf\xab\x28\x51\x32\x17\x47\x23\x99\x6a\x00\xbb\xf3\x8a\x9a\x27\x72\x80\x29\x69\x16\x39\x7d\xa0\x10\xbc\x81\x35\x2b\xae\x2e\x63\x49\x5b\xda\xfd\xc3\xc6\x2d\x9b\x33\x9e\x97\x74\x1c\x09\x6e\x1c\x67\x67\x6f\x13\xaa\x30\x76\xb9\x8d\xba\x6f\x05\x2b\xa4\x92\x7b\x99\x59\xb2\x1b\xfb\x0e\x91\x14\x08\x00\x99\xad\x32\x96\x35\xd5\x6f\x17\x75\x46\x3d\x15\xd6\x7b\xff\xc8\x59\x47\x9d\xac\x46\x1a\xd8\x28\x14\x54\x84\xa9\xad\x4b\x6d\xf4\xd9\x52\xd6\x51\x69\x40\xc4\x04\xbf\xa9\x8e\x00\x35\xcf\x28\x75\xc0\x42\x2f\xc2\xa6\xae\x03\x8f\x0c\xbb\x13\x5b\x00\x1b\xa5\x81\x8a\xb0\x75\x1d\xbb\xe0\xcd\x86\xac\x73\x7b\x85\x04\xe6\xb3\x7d\x6a\x1a\x5e\x58\xa0\x36\x9c\xc8\xb0\x3d\x91\x93\xe9\x2b\x4f\xd3\x2a\xbd\xd9\x8d\x30\xf5\x91\x8a\xeb\x86\x17\x6b\x15\x6b\x7b\x31\x36\x15\x2c\x1e\xc6\xba\x04\x2c\x6f\xac\x4b\x32\x24\xb8\xed\xff\x27\x7f\x61\x7d\x91\x52\xde\xf9\xa6\x85\x73\x3d\x18\x74\xa0\x5b\xe7\xd1\x27\xdb\x73\xb7\xce\x33\x75\xa0\x52\xd3\xdb\x43\x07\x81\x62\xde\xbb\x34\xb0\x7a\xbf\x77\x69\x60\xba\xde\x3a\xd7\xa2\x9c\xdc\xe5\x15\x0d\x07\x78\xe9\x78\x06\x01\x9f\xde\x7a\xce\xc9\x90\xfb\xad\xdd\xe7\x8d\x03\x99\xcc\x71\x79\x71\x32\x93\x36\x78\x0f\x70\x4d\xe1\x4e\x04\x77\x72\xec\x4a\xc4\x25\x75\xab\xec\xbc\xea\x19\x59\xf8\xce\xb5\xe0\x74\x15\x62\x04\x21\xf4\xf8\x9d\x63\xc1\x19\x68\x0a\x2b\xec\x24\x44\x1d\x7b\x88\x18\x96\x53\xeb\xb8\x0e\x4f\x69\x30\x1b\x4e\x64\xd8\x7f\x73\xf0\xd4\xf8\xae\x83\x2b\x08\x33\xc1\x44\x07\x35\x35\x02\x6a\x63\xa7\xc2\x10\x6d\xec\x54\x10\x2c\x3f\x51\x78\xea\x3c\xed\x14\xc2\x9d\x60\xe6\x21\x21\x20\x7a\x17\x8f\x60\x2a\xd9\xe7\xae\xe5\x8b\x86\x2c\xce\x98\xf1\xd6\x02\x23\xe8\xe9\x91\x75\x25\x07\xe7\x08\x86\x1d\x00\x1a\x99\xd8\xfb\x24\x70\xae\x74\x5a\xb6\xcf\x40\xb2\xb2\x7d\x46\x64\x6e\x5d\x8d\xe5\x7d\x9b\x53\xeb\x2c\x0f\x03\xc7\x6c\x38\x91\x61\x7d\x50\x06\x07\x53\xcc\x5e\x3f\x19\x83\x79\x9c\xcd\x17\x6a\x8a\xc1\xb2\xc0\x4a\x8f\xea\x31\xf7\x19\x36\x04\x80\x53\x75\x49\xe1\x3c\x4a\x37\x06\x8f\x45\x66\xdd\xdd\x03\xd9\xf1\xe6\xb4\x0e\x1c\x2a\x4f\x1d\x4f\x7a\x78\xe9\x93\xb9\x00\x0c\xcc\x02\xcf\x90\x57\x2f\x07\x80\x93\xa3\x53\x30\xf3\x9b\xeb\xf3\x09\xd0\xb8\xd0\x54\x41\x66\x68\x06\x32\x5c\x7a\x53\xf2\xb4\x62\x3f\x07\xba\x32\x0a\xdb\x60\xe7\xa4\x15\x0e\x07\x4e\x97\x98\x3e\xf6\xaa\x63\xe4\xc6\x7b\x31\xc0\x44\x4b\x6c\x9e\xb2\x03\x2f\x6f\xb6\x2c\xbd\x6a\xc9\xdc\x97\xe3\x60\xa0\xf5\x7e\x05\xbc\x7b\x99\x59\x32\x21\x3b\x6e\xbe\x9d\x11\xcb\x20\x36\x46\xfc\x9e\x06\x58\x52\x82\xe4\xc5\x28\xb8\x5d\xc3\x78\x0c\x6c\x70\x2f\xc7\x98\x93\x99\xbd\x6c\x00\xfd\xc1\x8d\xbb\x4c\x5f\x86\xbd\x8f\x73\x0c\x01\x32\xdf\xe6\x00\x1e\xf0\x1e\xf4\x3c\xad\xe8\x20\x50\x8e\x73\xd6\xd0\x03\x2a\x7d\xd7\xe6\x1e\xdc\x2a\x98\x0d\x27\x32\xac\xef\x74\x76\xe0\x10\xf9\xd4\x59\xc5\xa0\xcf\x9c\x55\x4c\x85\x17\x38\x43\xe6\x30\x7b\x20\xd3\x38\xc7\xdb\x43\x43\xa5\xf3\x85\x71\xd5\x1e\xe6\x20\xd6\x98\x0e\xc1\x3e\x9a\xdd\x9a\x09\xd4\x05\xe3\xf7\xe9\x2d\xb6\xce\x50\x92\xdd\x01\xe2\xc6\x58\xdc\x8d\x5d\xd0\x38\xf8\xc9\x47\xd6\x04\x7c\x86\x38\xa6\xf9\x1c\x67\xda\x9c\x28\xef\x0b\x0b\x8d\x4b\x0e\xca\x40\x85\x5c\xfd\xab\x2f\xb1\x52\xd0\x3e\x69\x00\xd2\xd4\xd7\xbb\x25\x60\x15\x6e\xf8\x9c\x24\x77\x5e\x1a\x53\x98\x15\xa2\x62\x0e\x2d\xad\x10\x85\x20\xe6\x11\xc8\x88\xff\xbf\x0c\x10\xb8\x9d\xd0\x96\x81\x85\xf6\x78\x0c\xe0\xee\x90\xe5\x72\xf9\x7e\xfb\x12\xf3\x1c\xeb\xc7\xea\x03\xb8\x4b\x72\x56\x96\x7c\x50\xed\xb2\xe4\x83\x2f\x92\xda\xa7\x70\xa1\x3f\xec\x53\xb8\x2a\xa8\x5d\xd9\x81\x17\x96\x73\xf5\x62\xa9\x39\xc9\x5a\xce\xcd\x9b\xa7\x03\x38\xdd\x3f\x33\xf9\x41\x5d\x4d\x76\x32\x94\x47\xf3\xf2\x8d\xfc\xa5\x2d\x02\x8a\x4c\x11\xd5\x4f\xf8\xca\xab\x61\x12\x31\xb7\xc5\xb0\x82\xf4\x35\x7e\x4d\x54\x64\xce\xb7\x51\x60\x71\x15\x98\x39\x65\xc4\x0a\x70\x68\x3a\x0a\xaa\xef\xd6\xb7\xd5\xcf\x58\xa9\x3f\xf2\x99\x32\x40\xcc\x89\x63\x5f\x21\xe6\xd1\x57\x18\xd6\xb4\xc8\xcc\x93\xba\xf7\xf0\xa4\x81\xa0\x59\x50\x3f\x6c\x39\xa8\x33\x50\x50\x7e\xa7\xfd\xe7\x60\x09\x5f\x2e\x6c\x8a\x33\x26\xef\x18\x89\x66\x9a\x8b\x46\xc0\xbc\x62\x25\x71\x36\x71\x50\xa5\x8a\x54\x95\x59\x58\xfb\xe7\x18\xa8\x0a\xf9\x8e\xde\x3d\xf8\x57\x2e\xb9\x39\x0d\x03\xa1\x7b\xa6\x3b\x05\xa4\xa2\xd9\x16\xc2\x05\x59\x77\x57\x08\x3e\x69\x62\x0f\xe8\x79\x3c\x41\x16\xce\x56\x51\x25\xc3\x91\x7a\x6e\xd3\x4d\x5c\xb2\xce\x00\xe9\x66\xd3\x8c\x13\x51\xd9\xfd\x7b\x59\x79\x5b\x7f\xac\x8a\x76\x36\xa9\x0a\xf1\xbd\xb4\x60\x81\x00\xd8\xea\xf6\xb0\x76\x03\xe6\x78\x5f\x8d\x24\xe6\xe7\xa6\x37\x1a\xd3\xae\x4a\xe1\x98\xcb\x65\x0d\x9c\xf7\xe4\x81\x4f\x5c\xa0\xab\x29\x32\x6f\x88\xb8\xf5\x2b\x53\xb5\xa3\x47\x7e\xcd\xaa\xf5\x32\x0f\xe9\x06\xb2\xbf\xdc\x67\x74\xe5\xc4\xe0\x2c\x41\xa9\x91\xae\x1d\xac\x30\xab\x4d\x74\x41\x2f\x12\x58\x56\x68\x6f\x81\xae\x94\x18\xe6\xc9\xaf\x0e\x9c\x50\x9e\x71\xb6\x64\x3c\x27\x8c\x9a\x81\x28\xe1\x0a\xed\x0e\x55\xea\x9c\xb9\x74\x4b\x5e\xe9\xa6\x82\x1b\xe1\x0b\x5e\x3b\x67\x95\x35\x0d\x18\xb2\xb2\xaf\xee\x03\xad\x91\x35\xd0\x19\x26\x08\xab\xe3\xb2\xa0\x91\xdd\xbc\x08\xe4\xb7\xb2\x54\x14\x73\xfc\xa6\x2c\x15\x45\xbd\x6e\x4a\x97\x21\x6f\x2a\x73\x4c\x74\xd9\x6f\xce\x1c\x13\x6c\x7c\xe3\x8e\x3a\x2c\xdf\xbf\x55\x5a\x03\xb9\x55\x5a\x23\x64\xc2\x4d\x81\x72\xcc\x29\xb1\xee\xd6\x70\x6b\x4a\xc0\xce\x8c\x97\x94\xd2\x97\xe7\xa9\xfe\x6d\xdf\x9b\x49\x00\x92\xba\xf4\x5f\x75\x51\x83\xcb\xd3\x0b\x13\xe0\xee\x9d\x1b\xd1\xaf\x76\x39\xed\x74\xa5\x8d\x45\xc8\x8e\x77\xae\x9f\x00\x28\x46\xdc\x43\xfa\x80\xc4\xfa\x76\x6c\x07\x1a\xcf\x4b\x57\x73\xba\x80\x59\x9f\xc5\x31\x64\x6c\xc3\x53\x15\x6f\x2e\xd9\x74\x14\x60\x5e\x5f\xeb\x2b\xc0\xde\xba\x19\x03\xa2\x2f\xd4\x4c\x65\x16\xdc\x88\xb2\xf1\xb0\xaf\x10\x73\xc5\xc6\x00\xe6\x82\x0c\xf8\x07\xf9\x66\x29\x05\xa8\x34\x50\x91\x77\xce\x19\x26\x24\x70\x76\x65\x1d\x45\x6f\xef\xdc\x60\x85\xd8\x3b\x37\x48\x21\xf6\xce\x4d\xa4\x10\x73\xe7\xa6\xa7\xeb\xe6\xdc\xb9\xe9\xa9\xa2\x73\x73\x9f\x66\xa0\x88\xec\x2d\x1c\x5d\x5d\x6b\x1c\x03\xc0\xbd\x84\x03\xa5\x7b\xd7\x72\x64\xe9\x39\xd1\xd3\xb1\x3b\xd0\x00\x75\xbc\x2e\x20\x9d\x7b\x0d\x07\xb2\x76\xaf\xe1\x08\xfe\x7a\xe7\x00\xe0\x3f\xc4\xdd\x7b\x39\x50\x3d\x7d\x2f\xe7\x41\x07\x44\xf4\x27\x19\xb0\xf7\x72\x22\x05\x38\xf7\x72\xb0\x81\xf4\xbd\x1c\xb8\x31\xf2\xce\x75\xcd\x00\x5f\x7a\xee\x21\xc0\x5c\xae\x6b\x06\xe8\xd3\xdc\x43\x86\x12\xb1\xf7\x72\x80\x9b\xe4\xbd\x9c\x07\x48\x6f\xee\xc9\x41\xa3\xec\x35\x39\x08\x3a\xf7\x72\x20\xa7\x38\x75\x2f\xdd\x40\x5e\xee\x55\x9d\x58\x03\xdc\x47\xac\x8f\x22\x74\x14\x46\xe6\x9d\xb9\x48\x85\x9d\x4b\xcd\x53\x05\xb9\x97\x9a\x35\x99\x19\x34\x91\xef\x3b\xec\x47\xeb\x25\xa0\x0f\xa6\x17\xae\x1e\x2c\x06\xab\xcb\xbb\xa3\x17\x4e\x60\xe3\x81\xc6\xd4\x89\xa9\xbe\x37\xe6\xc4\x5e\x2e\x2b\xf1\xf2\x1d\x45\xee\xf9\xb1\x43\x1d\x3c\x3f\x76\x68\x58\x59\xf0\x02\x6f\xd9\x4b\xec\xd0\x12\xc7\x49\x1d\xe4\x90\xe3\xa4\x0e\x3b\x6f\xee\x38\xa9\x83\x8a\xc9\x3d\x27\x75\x91\xc7\x3b\xe5\xc8\x16\x74\x91\x4c\xa1\x83\x2a\x03\x66\x2e\x6b\x82\xec\x03\xc7\xda\x0d\x57\x9f\xc6\x26\xb2\x74\xf7\x09\xa6\x71\xc5\x28\xdd\xf1\xc8\x2b\x28\x2a\x3f\xe0\x6a\x69\xcb\x4e\xbf\xf0\xea\xb1\x2d\xc0\xbd\xff\xd4\xd5\x09\x4b\x17\xa0\x4c\x5d\x37\xde\x80\x1a\xda\xd8\xea\x15\x28\xd8\xea\x9a\xd8\xca\xad\x94\x7e\x35\x56\x57\xd3\xb4\xe2\x79\x65\xa4\x9d\xab\x44\x8e\x8f\xa5\xec\x7f\x27\xce\xf8\x54\xca\x91\x14\x31\xd5\x8b\x50\x3d\x37\xaa\x7c\x3f\x29\xd2\x91\x1b\x2e\x36\x8d\x75\x5c\xe5\xde\xd2\xd8\xb4\xb9\x7c\x3b\x69\xe0\x44\xa8\xd9\x81\x3a\x0e\xe6\x77\x9d\x69\x6b\xf5\x82\x52\x64\x12\x6d\x38\x20\x2c\xc7\x69\x7d\xa8\x5b\x8e\xf0\xee\x28\x99\xa1\xd8\x70\x49\x09\x5e\xc0\x50\x91\x95\x6a\x46\x36\xae\x32\xbe\xbd\x72\x9c\x96\x56\x58\x47\x54\x92\x74\xfd\x18\x7f\x08\xf5\xf3\x91\xf2\xde\x0d\x27\x59\xe5\x85\x3c\x10\x83\xee\xb5\x10\x18\xe0\xd4\x71\x2a\x87\x41\x4d\x8d\x0b\x39\xc8\x97\xca\x4d\x8d\xd0\xa0\x1e\x42\x9d\x4f\x8d\xc0\xda\xe2\x5e\xa3\x88\x25\x60\xaf\x51\x48\x0a\xe7\x1a\x05\x48\x7a\xf7\x2a\xc0\x40\x02\x25\x65\x10\xba\xc0\x51\x06\x65\xc6\xee\x25\x00\x99\xb3\x67\x25\x81\xf1\x13\xbb\x32\xef\x89\x89\x31\x9c\xe6\x73\x59\x64\x53\xfd\x34\xd6\x46\xb8\xd2\xc7\x97\xfe\x49\x1e\xe8\x23\xae\xab\x3e\x4c\xff\xea\xa5\x3f\x60\x4f\xcf\xd5\x1e\xc6\xa4\xa2\x8c\x82\x7c\x70\x5c\xed\x65\x3a\xb3\x6e\x81\x94\xf4\x83\x5c\x3a\xce\x7f\x92\x3f\xed\x22\x38\xd6\x00\xf7\x10\xcf\x85\x1d\x46\xd7\x9b\x2b\x50\x2b\xe7\x2d\xdf\xb1\x0a\x63\x97\xf3\xb9\xfb\xb8\xef\x48\x01\xd6\xff\x68\x0c\x3e\x54\xef\x8a\x14\x1f\xe2\x14\xad\xf4\xc7\x15\xc6\x60\xdf\xe6\x45\xea\xba\xa8\x43\xea\x7b\xdd\x5a\x91\xee\xdc\x53\x77\x45\x7d\x32\x0f\x11\x3d\x92\x4d\x9d\x86\x02\x89\x75\x30\x85\x0a\x9d\xbb\x1a\x0a\x58\x3a\x33\x0f\x09\x81\x46\xa7\x88\x20\x5e\xb5\x10\x1c\xf4\xdd\x83\x48\x58\x42\xdd\x73\x48\x08\x9a\xcd\x61\x0f\xb2\x72\x95\x1d\x2c\xe9\x1d\x24\x01\x1a\xfb\x8a\x43\x5f\x96\xe8\x00\xb2\x0c\x67\x0f\x2a\x5b\x65\xf7\xa0\x03\x19\x76\xf6\xa0\x63\x40\x7c\x76\xec\x02\xe6\x6c\xf4\x64\xc9\x46\xb9\x0a\x21\xde\x28\x57\x10\x8c\x59\xae\x0d\x35\x48\x03\x9a\x1d\xfa\x2a\xac\x1b\x0f\x57\x0a\x32\xcf\x17\xb6\xaf\x10\xa3\xc2\x8f\x00\x70\x74\xf6\x91\xa6\xf0\x2f\xcc\x64\x4a\x53\xba\x07\xaf\x6f\xf5\x69\xb6\x3d\xf8\x99\xdd\xd9\x23\x16\x68\x26\xf6\x5e\xb6\x0f\x07\x0a\xa3\x3e\x70\xaf\x97\x59\xd0\xb0\xcf\xcb\x3b\x4e\x20\x2a\x81\x60\xd4\xcb\x2a\x8f\x28\x66\x62\x71\x93\xc0\x00\x94\xaa\xf3\x97\xee\xd7\xaf\xa0\x4e\x73\xf7\xfb\x57\x63\xa0\xb1\x14\x23\x49\x61\xe2\x81\x29\xe7\x8c\xe7\x1b\x9f\x64\x87\x98\x8d\xd7\xb5\xcb\xa7\xd7\x5d\x8d\x6d\x32\x9e\x42\x36\x9b\x15\x1f\x88\xf2\xdf\x76\x87\x9b\x88\xd9\x5c\x7d\xe7\x47\x30\xe0\x39\x99\x99\x17\x1f\x41\xbf\xc9\x1c\x20\x32\x40\xa2\x91\x8e\x46\x6e\x7d\xc4\x9e\xbe\xc9\xa0\xe3\x90\x8d\x24\x62\x8e\xd4\xbb\x2a\x7c\x53\x02\xcc\x33\xd4\x58\x85\xcd\x07\xf2\x02\x09\x98\x77\xe6\x62\x15\x36\x17\x2c\x13\x09\x18\x57\x6b\x38\xfe\xc8\xc8\xc2\x5d\x12\x7a\x12\x72\x5f\x84\x83\xaa\x97\x9f\x7f\x80\x77\x57\xe5\xe7\xb8\x34\xab\xc1\xc8\x0a\x78\x23\x53\x2e\x50\x36\xd7\x73\x18\x36\xb7\xd9\xc2\x7f\x49\x19\x4a\x2e\x0f\xe8\x82\xe8\xfc\xbb\x0a\x30\x8f\x38\x20\x19\x34\x26\xb0\x48\x85\x8d\x23\x57\x64\x6e\xee\x9c\x9f\x3e\xbf\xb0\x1c\x08\x84\x2c\xc9\x2d\x0f\x4a\x24\x75\xac\xfd\x89\x42\xb4\xdc\xee\xc9\x70\x7d\xb7\xfe\xb3\xc8\xaf\x72\x90\x04\x95\xa9\xac\xc0\x90\x6a\x89\x8c\x5d\x71\x20\x05\x2e\x20\xce\x8b\x6e\x0a\xf4\xec\xfb\xd9\x8d\xfd\xb4\x20\xcc\x04\x00\xcc\xd1\x45\xd7\xb4\xcd\xf9\xac\x6e\x07\x16\x62\x00\x0c\x61\xcf\x76\xc2\x8d\xfd\xbc\x38\x54\xf7\xc6\x71\xab\x48\x34\xa0\x47\x53\xce\x81\x1b\xdf\x83\x22\x71\x30\xc3\x98\x86\xd2\xd4\x22\xd0\x80\xc9\xac\xa3\x11\xd7\xc1\xcb\xc1\x6c\x66\x92\xd2\x7d\xce\x17\x56\xa4\x47\x90\x0d\x2f\x46\x49\xb1\xb1\xc9\x27\xad\x84\xbb\x6a\xeb\x38\x74\x22\x4b\x7e\x68\x95\x18\x2f\x61\xc7\x44\x5f\x52\xa7\x12\x3d\xdd\x0c\xad\x0d\x48\x76\xbd\x29\xdc\x36\x64\x37\x85\x1f\x5d\xb6\xf7\x9c\x57\x0c\x75\x30\xe9\x2b\xba\x11\xcc\xbc\xaa\xd8\xaf\xce\x9e\x2c\x37\x35\x92\x5f\x11\x3c\x37\x1f\x60\x96\x61\xf7\x83\xcc\x3a\x9c\x68\x00\xf8\x32\xe7\x08\x3c\x39\xfc\xef\x8a\xbb\x51\xf6\xb4\x26\x56\xb0\xdc\x0a\xc9\x7b\x73\x0e\xd3\x41\x13\x4d\x10\x76\x1c\x59\x31\xb5\x32\x11\x1c\x41\x3c\x5f\x1f\x19\x36\x8e\x33\x03\x15\xb6\x49\xa4\x2c\x2e\xa6\x8b\x22\x35\x50\x28\x21\xa3\x31\x80\xad\x40\x00\x26\x1f\x24\x01\x47\x0e\x4e\x55\x55\x5d\x39\x38\x96\x90\xeb\x51\x24\x1b\x60\x11\xdd\x06\xcf\x61\x67\xe0\x60\x37\x6e\x53\x36\x38\x26\x5a\x5a\xfb\x85\x3e\x5d\x3d\x09\xde\x94\x5a\x61\xcf\x70\x40\x45\x16\x88\xf9\xd2\x5b\xdc\xd7\x88\xb9\x7b\x26\xfb\x27\x2a\x9d\x94\x8c\x14\xaa\x95\xa3\xa9\x0a\x97\x4e\x4a\x60\x29\xf4\x7d\x26\x81\x74\xb3\xc3\xa4\x13\x51\x3d\x29\x71\xb3\xf2\x9d\x24\x55\xd1\x8e\x73\x95\x42\x4a\x27\x25\x48\xc3\xce\x49\xc9\x40\x63\x65\x6d\xb0\x88\x2a\xba\x5f\x11\xcd\x2f\xe6\xc8\x33\x2f\x65\xda\x5e\xd4\x81\x4b\x33\xe7\x7e\x30\x2b\xf4\x26\x6d\x20\x57\xeb\x62\x19\x02\x5f\x4f\x65\x11\x4b\xf5\x0a\x77\x47\x86\xba\x32\x24\x3b\xdc\xf8\x84\x81\x74\xb2\x1f\xa1\x93\xf9\x3a\xdf\x84\x85\x2d\xad\x40\x9c\x51\x94\xa3\xe3\xb8\x91\xc9\xb0\x61\xdf\xa1\x0a\x3b\xd3\xa0\x27\x8b\xf1\x3d\x4c\x1d\xcc\x63\x3a\x95\x7e\x6e\x8e\xdc\x87\xd1\x58\x43\xb6\x16\x8a\xca\xbd\xc4\x2b\xfb\x6c\xe9\x4e\x36\xd5\x78\x3b\xd9\x22\x05\x98\xda\xaa\x44\xce\x64\x8b\xe4\x08\x2f\xab\x75\x75\x66\x56\x68\x68\xec\xc4\x18\x3a\xd8\x4d\xa9\x77\xfc\x29\x34\x75\xc1\x9b\x52\xdd\x9c\x29\xa4\xba\xda\x69\x76\x4f\x23\x66\x0a\x41\x01\x9e\xcf\x94\x46\x8c\xf0\x86\xee\x73\x7d\xa6\xc6\x9a\xc2\xbf\x35\x9f\xdd\x51\x47\xa1\x07\xa6\xfa\xa2\xfc\x87\xee\xe1\x13\x80\x17\x08\x2a\xf2\x57\x5e\x6f\xd5\x73\xc4\x67\xc6\xa1\x00\x24\xfc\x05\xd2\x3e\x73\x70\x07\x38\x37\x41\x18\xff\xdc\x98\x0c\xa4\xfb\xc1\x85\xb7\xd1\x03\x0a\x0f\xe9\x03\x8d\xb3\x3b\x83\xe3\xa4\xdc\x43\xba\x40\x63\x54\x29\x49\x60\xf4\x28\x08\xc6\xf6\xa3\x5d\xa2\xd7\x73\x9c\x9a\x23\xd8\x2e\x1c\x0d\x5f\x94\xb7\x1f\x62\x18\xf3\xf2\xf6\x43\x8c\x77\x3e\xc7\x1c\xab\x0f\x83\x74\xc0\x6d\x04\x90\x84\x99\x4f\x74\x01\x78\xf1\x08\x68\x1f\x5b\x1c\xc9\xa4\xf6\xb5\x45\x03\x64\x2b\xed\x13\x15\x87\x1a\xbb\xf5\x11\x12\x5d\xfb\xb7\x45\x47\x1a\x2e\x29\xf4\x95\x7b\x87\xfd\xc4\x3c\x4e\x5c\xb9\x54\x38\x96\x99\x38\x9f\x2e\x91\xc8\xb5\x75\x65\x94\xe5\x54\x4a\x79\x79\xfa\xee\xad\xe4\x10\x0c\x04\xea\x9b\x48\xf7\x60\x28\xca\xcb\xdf\xb3\x73\x85\x6b\xd7\x00\x9e\x3b\x78\x57\xa3\x15\x47\xf1\xbe\x8e\xf1\xbc\xc4\xa1\x5e\x64\x81\x33\xa3\x30\x23\x39\x5c\x80\x29\x2a\xd8\x8e\x18\x0b\xca\x3d\x88\x0f\x08\x9a\x07\x2e\x25\x81\xff\x9c\x6b\xce\xb0\x3e\xd0\x80\x9d\x62\xce\x96\x53\xcd\x4f\x5d\xd8\xbc\xe6\x6c\xe9\x5c\xeb\x0e\x25\xa2\xcb\x84\x81\xaf\x28\xe7\x53\x49\x54\x52\xce\xfb\x0a\x35\x8e\x1f\x08\xac\x81\x39\xcb\x4c\x0d\x60\x44\xbc\x43\x73\xe0\x41\x8e\x74\x5f\xc8\x57\xf9\x2f\xde\xed\x1f\x1e\xb9\x40\xee\x99\x4c\xfb\x60\x1a\xd2\x98\x35\x35\xcb\xef\x41\x55\xbd\x6d\xe5\xcb\x07\x1b\x9d\x6d\xa7\x3d\x27\xc6\x18\x2b\x23\x07\x74\x1c\x70\xa5\x8d\x6a\xb3\xff\xad\xae\x92\x99\xac\x7d\xac\x72\xc1\xa5\x5c\x9d\x9d\x1c\x02\xd3\xdc\x05\x27\x4b\xe7\x5b\xcf\x6a\x96\x0b\xd0\xd2\xa9\x82\x33\xb3\x7f\x8a\x25\x90\xdb\xc7\x2e\xba\x32\xd9\x12\x7f\x31\xa7\x34\x5d\x70\x00\xbf\xa8\x28\xbd\xd0\x4d\x15\xa5\x57\x94\x71\xe1\x58\x70\x06\x92\xca\x08\x23\x10\x90\x8e\xe5\x01\x56\xf8\xdc\x31\x3d\x80\xc1\xec\xc2\x7d\x1d\x63\x20\xf3\x70\x11\x60\xdb\x3b\x72\x6f\xae\xe0\x41\xb7\xdc\xb1\x39\x46\x71\xe5\xb6\x25\xb6\x71\xd5\x9b\x95\x82\xdd\x2f\x1d\x8f\x58\xd1\x97\x85\xe3\x11\x2b\xc3\x76\x0d\x09\x81\xde\x86\x45\x2f\x14\xce\x92\xa2\xe3\x99\xf3\x5e\xb9\xe8\x93\xcb\xa9\xf3\xa2\xa8\xa8\x51\xe1\x00\x60\x82\xbb\x74\xbf\x34\x01\x0d\x2a\x3c\x44\x0c\xd6\xa5\xf5\xc5\x15\xdd\x54\x58\x5f\xdc\x29\xc4\x9a\x6e\xef\x42\xac\xe9\x75\x08\xba\x9f\x37\x15\x8c\x76\xe9\x7a\xda\x82\x29\xb9\xf0\x90\x10\x10\xc7\xf8\x09\xd5\xf6\x4e\xeb\xa0\xde\xe5\x85\x63\x04\x64\xa5\x85\x43\xf0\xd0\xa5\xe3\x29\x2b\xfa\xa4\x70\x3c\x65\x21\xec\x9c\xe0\x41\x8d\x9d\xef\x93\xc2\xac\x2c\x9c\xeb\xc2\xa0\x92\x15\xee\xa3\x52\xd0\x02\xef\xbb\x98\x91\x41\xec\x3b\x34\x0a\x73\x3e\x50\x07\x39\xbb\x6f\x40\x89\x06\x5c\x3a\x0e\xb1\xa0\x57\x16\x2e\x00\x9d\xaf\x9c\x12\xc1\x9f\xe4\x92\xc6\xda\x09\xf1\xca\x04\x5d\x07\xc4\xc4\x45\x1d\x0f\xc4\xbe\xc6\x37\xb8\x20\xc2\x88\x3b\xfb\x57\x90\x40\x00\x38\xef\x58\xc0\x31\xf8\xa5\xf3\xfe\x31\x58\x86\x0a\x17\x80\x64\x15\xf9\x0b\x1d\x51\x91\xbf\x62\xae\x29\xbb\x9b\xf3\xc5\x46\xc8\x72\x89\xca\xd6\xb8\x0d\x06\xba\x4b\x8f\x2a\x76\xa8\xca\x96\x44\xe0\x41\xa1\x64\x97\x3e\x04\x09\x3d\x52\xf9\xd2\xa4\x82\xcb\xd4\xb1\x84\x37\x1c\x2d\x03\x7b\x2c\xab\x1f\x76\x94\x8c\xb4\xdc\xf0\x59\x47\xc9\x51\xcb\x72\xd7\x2e\x97\x1b\x1e\x57\x1a\xe8\x98\xaa\xf9\x72\x08\xb9\x58\xff\x22\x59\x43\x13\x8e\x3b\x2a\x7e\xee\x02\x97\xde\xc6\x1d\xf5\x15\x8d\x85\x54\x36\xe5\x43\x47\x83\xea\xb5\x56\xa6\x54\x63\x65\xce\x33\x61\x4a\x7a\xdf\x69\x8c\x0d\x62\xa7\x86\xc2\x9c\xa9\x01\x1d\x60\x4f\xe6\x42\xd9\xab\x2e\x00\xbd\xe9\x9c\xc0\xc0\x44\xbe\xac\xbc\xaa\x0c\x73\xb3\xb2\x58\xc0\xbc\x72\x3f\xcd\x08\xd2\xd8\x7d\x9f\x1a\x0e\x5c\x0a\x0f\x01\x49\xe1\x1c\xf9\xf4\x55\xd8\x9c\xf0\x88\xd5\xb8\x70\x64\x36\xb4\xfe\xd2\x78\x14\x03\xdf\x1b\x8f\x62\x08\xf9\x5f\x72\x14\x03\x78\x8b\xe8\x8c\x9b\x93\xb4\x08\x10\xbe\xc1\xba\x72\x8b\xb8\xfb\xaa\x33\x34\xe0\x16\x71\xca\x84\x12\xa9\x2f\xf0\x04\x8a\xb2\x64\x82\x11\x88\x01\x06\x0a\xa8\xf8\xc1\xdd\x3a\x8b\x0d\xa4\x72\x16\x1b\x95\x8b\x75\x53\x00\xcd\xeb\x16\x71\xcf\x10\xde\x51\x58\xc5\x80\x61\x8c\x90\x6e\xac\xb5\x64\xf8\xd1\xe5\xad\xdb\xc6\x58\xbb\x87\x73\xa3\x5d\x1d\x3f\x56\x35\xdc\x70\x9d\x69\xda\xf1\xa3\xdc\x5b\x4b\xb0\x61\xbf\x35\x12\x09\x81\x47\xe3\x7b\xab\xe9\x82\x8b\x98\x88\x37\xdf\x16\x17\x6c\xf2\xde\xfa\x51\x43\xde\xd6\x8f\x1a\x82\xee\x25\x23\x00\xdc\x3b\x46\x50\x80\x4b\x01\x19\xba\x14\x53\x4d\xa1\x8d\x2b\xf0\x92\xde\x2d\xc6\xa6\x5a\x1d\x70\x3b\xb3\xdf\x6f\x07\xe5\xf9\xbd\x3d\xcf\x0c\x65\xac\xd5\x19\x11\x00\xf6\x2b\x22\x1d\x38\x88\xbe\xc5\xea\x9b\x1a\x6b\x48\xee\x7e\x60\x43\x96\x08\x9c\xaa\x22\x73\x37\x6a\xc3\x95\xd1\xae\x03\xab\x67\x4c\xd6\x0e\x74\x8e\x97\x88\x23\x73\x36\x3f\xec\x8f\x9c\x48\x6f\xbf\x11\xc8\x88\xea\xc3\x2c\xa2\x11\xef\xcb\x4a\x81\xe8\xbd\xdb\xb2\x52\x00\x83\xea\x3c\x04\x21\x39\xc0\xbd\x58\x68\x6f\x07\xde\xba\x77\xf8\xec\x45\xbc\xf7\x95\x75\x0d\x26\x4d\x65\x5d\x83\x49\x5d\xf6\x51\xbd\x75\x5f\x97\x83\x8e\xa9\x08\x2e\x18\xa2\x8a\xe0\x82\x61\xf5\xad\x97\x96\xe1\x7d\x23\xa6\x8b\xbb\x06\x18\x1f\xc7\xd5\x79\xf5\xde\xe3\x4f\xe0\x8c\x2f\x64\xf6\x05\xcd\xb4\x54\x12\xd0\x07\xe7\x50\x16\x3c\x02\xef\x5c\x40\xc8\x87\x3b\x1c\xdb\x69\x02\x27\xbb\xce\x27\xb3\x3b\xe0\x4e\xfe\xc1\x01\xc0\xea\x03\x14\x86\x29\xc7\x80\x10\x73\x93\x40\x7e\xbd\xf3\x43\x79\x84\x45\x75\xee\xca\x23\x2c\xaa\xf4\xa1\x32\x44\x82\xa9\xef\x2a\x43\x24\x72\xbd\xf3\xca\xb8\xe3\x2e\xb3\xdd\x71\xac\xdf\xff\x57\xc8\x87\xca\x70\x09\x96\xb8\xab\x0c\x97\x90\xdf\xf7\xf6\xe4\x06\x24\xe2\xbd\xfd\x8a\x67\x1f\xbe\x63\x70\x6f\x4f\x6c\x40\xd1\xba\x77\xbf\x11\x2c\xb8\xe5\xf7\x72\x8b\x05\x17\xdc\x97\x5b\x2c\xfa\xfc\x7e\xee\x7c\xe4\x77\x08\xc0\xbe\x05\x44\x47\xfd\xae\x05\x3f\xec\x4e\xee\xcd\x77\x49\x21\x94\x3a\xa9\x21\xbb\xd4\x49\x2d\xfa\xe5\xde\xbc\xe7\x25\x9f\xc0\xbc\x77\x9e\xc1\x81\x4a\xd9\x2b\x72\x08\x78\xe9\xf7\xca\x10\x40\x8b\x2b\x43\x30\x96\xa8\xdd\x33\xc2\xe7\x37\xee\x99\xb3\x43\x84\x0b\x2a\xf7\xee\x57\x8c\x07\x00\x38\x55\x14\xb9\xfc\x5e\x19\x1a\xe8\xd3\xca\xd0\xc4\x80\xda\xd3\x32\x04\x07\x1c\xf7\x85\x5b\x87\x1e\x20\xce\x68\x40\x56\xb7\xbe\x1c\xbd\xbf\x2b\x73\xf1\x1f\xce\xb6\x4e\x14\xb3\x72\xb6\x75\x22\xfc\xc7\xbe\xdd\x2f\x25\x32\xde\x6c\x98\x44\xf8\x0f\x77\x2a\x89\x5a\xad\x5c\x60\x08\x14\x26\x83\x29\xc4\x9b\xf4\x10\x94\x1f\x57\xb8\x07\x9d\xec\x8f\x32\xf3\x88\x71\x5b\x95\x99\x47\x94\xf2\x87\xfd\x3a\x10\x5c\xa3\x5d\xd9\xcf\x03\x81\x5f\xea\x1f\x95\x37\x6c\x44\x63\x57\x95\xb1\x14\x6c\xf6\x47\x65\x14\x44\x5f\xae\x2a\xa3\x20\xd8\xee\x0f\x67\xfb\x28\xc2\x2b\x67\xff\x28\xc3\x5a\x67\x82\xce\x51\x21\xd1\x15\x82\x25\xff\x74\x9d\x5e\xe0\x50\xe6\x8b\x87\x88\xda\xfc\xe9\x1a\x36\xe1\xac\xe1\x8b\x87\x60\xa0\x31\x4b\xf6\x10\x08\xcc\x92\x2d\x82\x7f\xda\x57\x78\xc1\xcc\xfd\xc5\x09\x8b\x0e\xfd\x82\x9d\x6f\x2a\xc0\x6a\xfb\x27\xe6\xec\x03\x89\xf3\x79\xe5\xed\xb0\x3f\x1d\x4b\xe4\x00\xd2\x5a\x43\x24\x84\xcb\x83\x03\x15\x30\x3e\xa7\x32\x77\x6b\xc8\x80\xf5\xf6\x8b\xb5\x63\xc0\x58\x7a\xdf\xfb\x0e\x81\x0b\xbf\x54\x06\x0a\x2a\x63\x3d\xc2\xe0\xb0\xff\xcf\xca\xc0\x09\x26\xfa\x52\x19\x38\x31\x14\x5f\xee\x3e\xeb\x76\x41\x01\x77\xd4\x84\xa3\xfa\xc3\x4f\xcd\x87\x56\x52\x50\x38\x8c\x6d\xe0\xe6\x57\xdc\xc6\xf7\x4b\xc6\xf3\x6c\xf2\xfa\xfc\xf4\x6d\x7b\x89\x78\x86\x1b\x3f\x7d\xad\xef\x3b\xdf\xb7\x12\xf3\x09\x39\xdf\xb7\x12\xe1\x7d\xfb\x45\x2b\x21\x01\x90\xfd\xa2\x95\x0c\x6a\x62\xe0\xb0\x7d\x7d\x01\xf7\x1e\x0c\xff\x48\x5f\xbf\xbd\x07\x15\x69\xdf\xf9\xdc\x94\xe0\x5d\xe4\x7c\x6e\x0a\xc2\xf0\xb0\xcf\x96\xa0\x3c\x39\xd3\xbf\xf4\xa6\xe3\x1e\x76\x42\xc8\x04\xc1\xa7\x76\xdf\xde\x3b\x04\xd9\x8d\x6c\x18\xde\x2a\xd8\x37\xdf\xaf\x11\xb5\x43\xe6\xfb\x35\x22\x34\xe5\xfa\x42\xe1\x3d\xf8\x70\x1e\x18\xd3\xfa\x3d\x9c\xdd\x45\x36\x0c\x3e\x7e\x36\x08\xf6\xea\x48\x39\x43\xdf\x83\x0a\x19\xb1\xa5\x72\x50\x11\x53\xe0\xe0\xf4\xec\x0f\x1b\x8a\x0a\xce\xb5\x48\x80\x8f\xe9\x2b\x57\x6b\xd8\x1c\xc5\xe4\x96\xe8\x9b\x93\xc3\x1f\xf8\x2c\xfc\xb7\x3f\xf0\xfe\xbd\x0f\xa1\xff\x73\x9f\x4e\xde\xf8\x51\xdb\xd2\x27\x6c\xdd\x0f\xcd\x56\xbf\x96\xf8\xbd\x8f\xa8\x7d\xfb\xb3\x69\xa5\x0f\x9d\x7d\xf7\xab\x65\xa5\xcf\x34\x7d\xeb\x23\x46\xe5\x4f\xaf\x54\x9e\xda\x2d\x3d\x33\x5b\x79\xe1\xd4\x7b\xb3\xb4\xf4\xf8\xa4\xf7\x7e\xd8\x77\xde\x7d\xf8\xde\xed\xfc\x6f\xdf\xc6\xff\xee\x5d\xf4\x6f\xdc\x39\xfe\xde\xdd\xdf\xef\xdd\xf5\xfd\xd6\x9d\xdd\xd2\x45\xda\xf2\xa5\x47\xff\xbe\xe1\x37\xee\x24\x95\xee\xf3\x3c\x7a\x57\xa1\xe4\xab\xe7\x3a\x8d\xfd\x03\xe7\xc3\xa5\x43\xbf\xef\x9c\xf0\x78\x67\x2a\xdf\x33\x29\x7f\xc7\x90\xfb\x3d\x43\xa9\x67\x7a\xfc\x86\x65\xe3\x7b\x2a\x90\xa7\xa2\xb8\x0b\xfc\x0f\x2f\x1b\x56\x56\xeb\xc7\x5c\x7f\x72\x67\xbe\x99\x48\xce\xa0\x96\xf2\x6e\xe5\x2d\xda\xfc\x5a\x2f\x32\x5c\xcb\x72\x4e\xa2\xbc\xbe\x77\x8b\x78\x8d\xb7\xd8\xa4\xce\xa6\x9f\xc5\x48\x4e\x26\x93\x7c\xb5\xc4\x2c\xa9\xbd\xc3\x49\x8a\xa3\xfc\xa9\xfa\xbb\x4b\x8b\x34\x6d\x91\x09\xdb\xda\xaa\xeb\x1c\x1d\x6a\xd6\x46\xcb\x65\xba\x7a\xaa\xfe\xee\x96\x0b\xe5\x38\x2f\x38\xad\x3d\x57\x70\x7b\xc9\x59\xce\x44\x5a\x49\xdf\x8e\x50\x9a\x2a\xda\x87\x3d\xfe\x78\x29\xec\x8e\xbe\xc1\xab\xec\xa9\xf9\xb5\x7b\x0a\x15\x6f\xcf\x70\x7e\x7a\x47\xcf\x38\x5b\x62\x9e\xaf\xce\x57\x8b\x29\x4b\xb3\xa7\x6e\xbf\xaa\x2a\x6c\xa4\x7f\x8b\x16\x38\x6b\xe0\x66\x3b\x62\x34\x42\x79\xe3\x5b\x99\x36\x70\xb3\xf9\xb0\xfb\x8f\xe6\xfc\x00\x5d\x8d\x26\x6f\x8b\xc5\x14\xf3\x36\xc9\xde\xa2\xb7\xeb\xf5\x86\x5c\xf0\x93\xc9\x04\x3f\xec\xe9\x98\x5a\xd6\x68\x7e\xcd\xda\x84\x92\x5c\x76\x52\x3e\x27\x59\xf3\xc1\x32\x49\xd6\xca\xda\x47\xb7\x98\xe6\x47\x0b\x92\xe7\x98\x03\x60\xbb\xf7\x0a\x8b\xb8\x6c\x72\xcb\x48\x5c\x0b\x36\x45\x1d\xb0\x82\xe6\x93\x52\xd4\x02\xdd\x1f\x93\x2c\xc7\x14\x73\x9d\x16\x1a\x10\x4d\xc2\xc0\xd6\x2d\x75\xea\x2d\x89\x26\x93\x49\x29\xf5\xd3\xac\x1d\xe3\x04\x15\x69\x7e\xe2\xa0\xbb\x25\xaa\x07\x93\x67\x21\xd9\xa0\xc5\x9b\x5f\x45\x81\xac\x45\x5a\xa8\x95\xed\x91\xa4\x61\x39\xe2\x89\xe1\x08\xda\xcc\xe7\x9c\xdd\xd5\x28\xbe\xab\x5d\xac\x96\xf8\x88\x73\xc6\x1b\x3f\x5d\xcc\x71\xad\x9e\xaa\xcc\xeb\x35\xc4\x67\xc5\x02\xd3\xbc\xb6\x28\xb2\xbc\x36\xc5\x35\x96\xd4\x44\x06\x96\x1f\x6b\xef\x70\x84\xc9\x2d\x8e\x25\xfe\xd3\xb6\xc9\x5f\x94\x6c\xda\xd6\x20\x13\xd3\x6f\xcd\xa7\x6e\x68\xa2\x46\x3f\x82\xf7\xf6\x1a\x62\xb6\x34\x5b\xe5\x3e\x6e\xee\xaa\xac\x9e\x4c\x26\xa4\x4d\xf1\x9d\x6e\xff\xd6\x56\x03\xb7\xf1\x82\xe4\x8d\xba\x83\xd6\x45\x47\xb4\x75\x33\x9e\xda\x9f\xbb\xb4\xd9\x72\x6b\xd2\x42\x13\xf2\x31\xff\xd4\x6c\x99\x8a\xa2\xa6\x84\x26\xb4\xb5\xbd\xed\x57\x63\x0f\xa7\x19\xae\x79\xfd\x69\x67\x18\x7a\xaa\xd2\xf1\xa7\x1f\x69\x0b\x7d\xda\xfd\x88\x5a\xf4\xd3\x2e\x7f\x8a\xda\x05\xcd\xe6\x24\xc9\x1b\xb4\xb9\x8b\xda\xcb\x22\x9b\x37\x68\xb3\xd5\x60\x13\xc1\x04\xcd\x5f\x83\xad\x2d\xd4\x4e\x31\x9d\xe5\xf3\x5f\xd9\xd6\xd6\x13\xd4\xbe\x43\x9c\xe2\xb8\xf9\x55\xff\x9a\x3c\xd1\x2c\x24\x06\x4b\x0e\x54\xfd\x8c\x65\xf0\x61\xca\x9a\xcb\xc2\xb5\x05\x5e\x30\xbe\xaa\xa5\x18\x5d\xd7\x62\x9c\xe3\x28\xc7\x71\xbb\x56\xdf\xd6\x25\x6c\xd7\x6b\xf5\xed\xf3\x5c\x68\xa6\x8d\xbc\xb9\x5d\xaf\xe9\x8e\xc9\x6a\x28\x8e\x05\xed\x65\x86\x6b\x58\xe6\xd6\xce\xb0\xc7\x7a\x8d\x66\x2d\x67\x35\x42\xc5\x48\x65\xb8\x96\x92\x05\xc9\xeb\xcd\xbd\xa8\x4d\xd1\x02\x4f\xea\x2e\xe9\xd1\x7d\x84\x71\x8c\xe3\x0f\x88\x53\xa1\x05\xb7\xa2\xb6\xca\x74\x82\x5b\x51\x5b\xf4\xd9\x24\x6f\x45\xed\x08\x86\x57\xd7\xae\x95\x4d\xa2\x56\xc4\x68\xc6\x52\xbc\xb5\xa5\x7e\x40\x27\xf8\xa1\x46\xd6\x7c\xd0\x93\xde\xf2\xff\xb2\xd1\xfc\x9a\x30\xde\x10\x5d\x85\x27\x1f\x3f\xb5\xf2\x49\xb0\x97\xff\xa2\x59\x38\x53\x85\xec\xe5\xdb\xdb\x4d\x2c\xc7\xc1\xc4\x09\x1e\xd8\x13\x02\xa2\x9d\x10\x8e\xe3\xf5\x1a\xa4\x45\x5b\x3a\xce\xb4\x39\x5e\xb0\x5b\xac\x1b\xa7\xa2\x56\x4b\xdc\x82\x5f\x77\x1c\x2d\x9f\xd3\x66\xcb\x26\x9f\x3c\x09\x5a\x44\x92\xe9\xfe\x6d\x39\xf9\xb5\x84\x1c\x34\xd5\x4e\xb4\xa4\x87\x15\x65\xf2\x15\x72\xd8\x7d\x12\xb6\x64\xbe\xbb\x4a\xfe\xc8\xa4\xbb\xb8\x25\x0a\xde\xcd\x5b\x96\xa3\x1f\x5a\x6c\xb2\x6c\x4f\x09\x8d\x1b\xbc\xb9\xa7\xfa\x85\x99\x92\x27\xb4\xc5\x55\x1d\x27\xac\xc5\x6c\xc1\xb1\x5f\xb0\xe1\x75\x6f\xde\xf2\xa6\xcc\xf0\xe3\x27\x60\x41\x36\xe1\x1f\xf3\x4f\x7b\x65\xc9\xc5\x9e\x7e\xfc\xb4\xbb\x71\xdd\x79\x4a\x9f\x7e\xb4\x75\x59\xaf\xd9\xa7\xdd\x8f\xec\xd3\x2e\xf5\x16\x18\x3d\x6a\x39\x30\xf8\x3e\xe7\x68\xd5\xc0\x6a\xb8\x9a\x2d\x3a\x09\xf6\xe8\x2f\xb9\x1e\xbe\xed\x6d\xda\xcc\x3f\xd2\x4f\x13\xfc\x91\x7e\x72\x72\x16\x41\x5d\xb1\xfc\xa1\xc1\x9a\xbb\xd3\x06\x6b\x31\x9d\x8d\x6d\xf7\x5c\x14\x29\x8b\x83\x41\xa9\x34\x5b\x08\x49\x49\x41\x27\xf9\x47\xfc\x69\xef\x91\x29\x4f\x55\xdf\xd4\x42\x2f\xad\x81\xa9\x2a\x5b\xf3\x6a\x60\xeb\x30\x15\x7d\x6f\x1b\x4e\x9d\x86\xe7\xcd\x16\x9f\x04\x7b\xfc\x97\x7c\x6f\x7b\x9b\x37\xe9\x47\x2e\x9a\xca\x4d\xdb\xe8\x83\x12\x98\x31\x4e\x08\xc5\x7a\xb9\x6c\x64\x62\xb7\x56\x59\x2e\xea\xad\xaf\x18\xde\x41\x43\xd3\x14\xef\x3e\x09\x5a\x82\x89\x4c\xdf\x9b\x35\x28\x7a\x68\x65\x6e\x04\x6e\x7e\x15\x8d\xa6\xb0\xe6\x3a\xab\x06\x5e\xaf\xf1\x2f\xc1\x7a\x8d\x84\xe8\xb2\x0b\xc8\x3b\x44\x67\xee\x0a\x72\x8b\xd2\x02\xd6\x8a\x8d\x55\xaa\x91\xac\xc6\x8a\x5c\xc4\xc3\x05\xf9\x76\xed\x95\x5d\x60\x50\x8d\x32\xba\x43\xd5\xab\xea\x35\x59\x03\x67\x95\xf9\x69\x1b\x6f\xd7\xdb\x42\xec\x4c\xf0\xc3\x43\xb3\x25\x57\xf8\x89\xd3\x24\x3b\x88\xce\xe8\x6e\x6d\xb9\xa1\x27\x93\x89\xd5\x39\xce\xf4\xe2\x7d\x9a\x48\x1d\x41\x53\x69\x29\xf0\xad\x85\xca\x25\xd0\x6b\x95\x02\x3d\x4d\xa0\x0a\xad\xd7\xb2\xa2\x0f\x9e\xfe\x50\x12\xb9\x93\x7f\xfd\x88\xd0\x7f\x51\xff\xeb\xa9\x56\x6d\xab\x94\x8b\x7e\xbb\x66\x8f\xb5\xcb\xb0\xa0\x56\xd0\xbc\x64\x62\xd1\x98\x6c\x16\x15\x1f\x3f\xb5\xe8\x24\xdc\xa3\x55\x01\x4f\xb7\xb7\x9b\x79\x59\xc0\xd3\x4f\x4d\xa9\xb3\x4f\xea\x58\x74\x8b\x98\xc7\xb8\xc5\x1e\x17\x01\xac\xc9\x27\x7c\x6b\xcb\xca\xb8\x36\xa4\x33\x4a\xc0\x13\x2d\x1a\x9f\xc0\xf4\x57\x5a\x17\x12\xbf\xb5\xac\x12\x6b\x7b\x03\x4d\xf2\x8f\xc1\xa7\x66\x0b\xd5\x08\xcd\x72\x44\x23\x31\x6a\x30\x32\x6a\xb8\x10\xd4\x2b\x73\x17\xf7\x4b\x3a\x47\x34\x4e\x71\x5c\x83\x32\xdb\xf5\xed\x06\x7a\x5a\xaf\x35\xc4\x42\xbe\xc0\x59\x86\x66\x78\xbb\xde\xac\xef\xd6\xeb\x4d\xb1\x6c\x89\x5c\x32\xa1\x81\xe7\xf8\x3e\x9f\xa0\x56\xf6\x20\xd5\x05\xa6\x84\x97\x69\x43\xe4\x55\x79\x93\x4c\x8b\x9a\xa4\x11\xc1\xf8\xb5\xf2\x26\xb4\x15\x9a\x95\x4e\x22\xbd\x46\x17\x93\x69\x23\x6a\xa5\xcd\x3d\x31\x14\x52\x36\xa7\x20\x94\x49\xa3\xf8\x48\x3f\xe9\xb4\x4a\xe8\x3d\x29\xf1\x37\x8a\x63\xcd\x04\x13\x77\xab\x63\xd8\xa0\x00\x36\x68\x89\xa5\xe9\x49\x58\xe2\x06\x46\x27\x8f\xe4\xe5\x91\x2d\x39\x5e\x62\xfa\x0f\x94\x13\x54\xca\x89\x70\x29\xd5\x23\x5a\x74\xfe\x3f\xac\x45\xe7\xfe\x3c\x83\xda\x24\xa6\xe6\xcd\xe6\x86\x99\xa6\x5a\x7f\x4a\x23\xfc\x48\x0f\xfc\x67\xb4\xa5\x34\x4a\xdf\x6f\x98\xaf\x85\x95\xda\x04\xab\x68\x8b\xb7\x60\xd7\xf3\xd8\x9e\xe7\xdf\xd0\x42\x6f\xcf\xc3\x3d\xe9\xd2\x6c\x3a\xcd\xf7\x09\xe9\x84\x7f\xc4\x9f\x2a\x04\x54\xcc\xcb\xf5\xda\x6e\x5f\x44\xb8\x29\x52\xec\xec\x54\x16\x9e\xa7\xdf\x5b\xab\x76\x1b\x31\x4e\x71\x8e\x6b\xa2\xac\x16\x2f\xf5\xa7\x5a\x20\xe5\x56\xca\x8f\xaa\xb7\xb0\xb3\x9b\x5a\xaf\xf3\x66\x73\xc3\x56\xc8\xdd\x5a\x82\x98\x66\x93\x9d\xb0\x45\x26\x5a\x0b\xda\x09\xf7\xc8\xaf\x93\x60\x8f\xec\xec\x34\x45\xdb\x3e\x92\x4f\xaa\x79\x1f\xc9\x27\xbf\x85\x5f\xd1\xc4\x03\x5b\x6c\x42\xf6\xa6\x1c\xa3\xeb\x07\x92\x34\xd8\x2f\x81\xd7\x51\x52\x01\xa5\x6d\xb9\xc9\x6a\xee\xfa\x8c\x21\x6a\xb2\x97\x6f\x87\xbf\x60\x4f\xff\x17\x3b\x35\xfc\x31\xdf\x0e\x3f\xed\xe1\xf6\x92\x2d\x1b\xcd\x87\x06\x6d\xb1\x66\x2b\x9c\x4c\x4c\x95\xb7\xb6\x1a\xa2\xaf\x26\x14\x04\xb8\x59\x19\xfe\xc1\xae\x43\xa2\xc7\x1e\x9c\x1a\x97\x84\x4d\x92\x4c\x1e\x67\xf3\x0d\x33\x60\x3f\x4d\x37\xeb\x07\xb0\x2e\xb6\x68\x8b\x97\x99\xeb\xc7\xb8\x90\x96\x8a\xd6\x84\xb0\x2b\x2e\xad\xb1\x4f\xff\x39\xcd\x68\xd7\x2a\xc9\x1f\xf1\xa7\xad\xad\xc6\x3f\xcd\xcb\x8a\x95\x45\x36\xb2\x28\xd1\x94\x4d\x35\x35\xc6\x10\x9d\xcd\x35\x5e\x65\x0d\x2a\x97\x2f\xa9\x68\x13\xbb\xb5\xe0\xcd\xf2\x00\x3e\x99\x4c\x1a\x6c\x42\x3e\xf2\x4f\x4d\x35\xce\xd5\x51\x68\x30\x5f\xb4\x6d\xa0\x28\x67\xeb\xf7\xcf\x8f\x76\xa0\x94\x8a\x9b\x97\xee\x46\x0e\x9d\x2a\x94\x40\x53\x05\x47\xb8\xe6\x76\xce\x3a\xbb\x1c\xd9\x09\xb9\x9d\xa2\x5c\x4c\x51\xbe\xb3\xf3\x58\x2e\xa2\x1f\xf6\x1e\xe5\xe5\x74\x23\x5f\x2a\xf2\x58\x8b\xf7\xca\x7a\xcb\xd1\xdd\x66\x8e\xae\xa4\x94\x1a\x81\x2e\x46\xf6\xca\xa6\xe5\x7d\x93\x6a\x83\xfd\x74\x4f\x4b\xe1\x46\xde\xdc\x9d\x1b\x73\x6a\x73\x73\xc3\x64\x89\x73\x5f\x47\x15\x23\x04\xd6\xca\x0d\x5a\x6d\x65\x10\x7f\x0d\x9e\x72\x6f\xf2\x34\x77\x3f\x7e\x7a\xa8\x1a\x9b\xa5\xae\x4a\x1b\x83\x51\xb3\xc5\x26\xd6\x6a\xe9\x73\x0a\x6f\xb6\xc8\xe4\x6b\x8e\x66\xa2\xfc\xdd\x3a\x45\x0b\x5c\x7f\xd8\x73\x39\x9d\x34\xdb\x09\xe3\x47\x28\x9a\x37\x1a\x15\x61\x31\x21\x42\x43\xdc\xbc\x9f\x64\x2d\xdc\xfa\xba\x79\xb7\x28\xaa\xff\x31\xff\xb4\x5e\x0b\x46\xad\xee\x1c\x7d\xaa\x09\x6e\x89\x8d\xda\x43\x73\x83\x45\xdd\x34\x72\x28\x1a\x49\x1b\x83\x71\xd3\xda\x48\x89\x1c\x50\xe8\x2b\xb1\xc7\x93\xc3\x62\xa2\x91\xa7\xce\x31\xb1\xc3\x50\xef\x3e\x65\xcf\x56\x17\xb2\x47\x1a\x5a\xbd\x73\x8c\xc2\x3f\x9c\xaa\x15\x36\x3f\x06\x9f\x6c\xd2\xa8\x64\x92\x87\xc4\x17\xf8\x3e\x6f\x7c\x23\x1b\xda\x0a\x9b\xcd\x76\xce\xc9\xa2\xe1\xd4\x22\xd5\xa6\xda\x16\x93\x9d\x40\x26\x51\x43\x06\xf7\xc8\xd6\x56\x03\x96\x27\xd2\x7c\xa0\x8d\x5e\xd8\x6c\x90\x96\x18\x66\x87\xe3\x60\xc7\xcb\x61\xdb\x50\x6c\x98\x2f\x75\x9e\x65\xb0\xbd\x59\xaf\xeb\x09\xc6\xb1\xfe\xcd\xe3\x64\xf7\xdd\xe1\x73\x08\x3e\xec\x11\x4f\xe1\xc5\x34\xf6\xf6\xd0\x88\xd7\xa0\x8a\x93\xaf\x0f\x2d\x36\xc9\x1a\x85\x14\x47\x31\x5b\x34\xf7\xd8\xd6\x56\xc3\x64\xcc\xc0\xfa\xf7\xb4\x91\x4f\x58\x3b\x9a\x93\x34\xe6\x98\xb6\xa8\xb4\xf0\xd5\x51\xce\x16\xf5\x56\xda\xa0\xad\x3a\x81\xb3\xd4\xb8\xde\xca\x9b\x12\xc8\x49\x9e\xca\x53\x29\xf8\x9b\x37\x5b\x0d\x3c\xc9\x1a\xf5\x94\xd0\x6b\x11\x6c\x8a\x7e\x98\xe0\x36\xca\x73\x4e\xa6\x99\x0e\xce\x39\x4e\xc4\x6f\xa1\x90\xd0\xeb\x09\x56\xb9\xc5\x38\x8b\x38\x59\xc2\x94\x87\x9b\xab\x5e\xb6\x51\xa3\x5e\x2c\x63\x94\xe3\x58\xe7\x4c\xdb\x0a\x80\x6d\xd7\xa1\x98\x4b\xb8\xa9\xf2\x42\x45\x3e\x67\xbc\xde\xaa\xe3\x05\x22\x69\x5d\xb2\x50\x8b\xb6\x49\x8e\x17\xd9\x04\x35\xea\x98\xe6\x7c\x25\x72\x6a\x2f\xd0\x72\xc3\xb4\x82\x6e\xdb\x33\xfb\x5a\xb7\xf5\xa2\x09\xba\x9b\x36\x77\x04\x6e\xb6\x1a\xb9\xed\x08\x0c\xd5\xcd\x27\xb9\xdb\x11\x22\x58\xea\x88\x1c\x92\x45\x8d\x7a\x56\x2c\x16\x48\x54\x0f\x37\xd7\xeb\xa8\x51\x87\x6d\x21\xcd\x75\x4e\xb4\xed\x74\x95\x4d\x65\xba\x47\x53\x2d\x8b\xa9\xe8\x15\xdb\x3d\x42\x29\xa7\x0f\xcd\x66\x73\x57\x56\x2f\x9a\x23\x4a\x71\x5a\x6f\xd9\x71\x6f\x56\x38\x40\x72\x47\x3b\x2b\xa6\x59\xce\x1b\x41\xab\x0b\xfd\x18\x4f\xea\xf5\xc7\x98\x00\x60\xd9\x74\xc3\x0a\x9b\x86\xd8\x0b\x99\x51\x4e\x51\x96\x3f\x2b\x48\x1a\x8b\x2a\xff\x43\x63\xbd\x40\x14\xcd\x08\x9d\x1d\xc5\x24\x67\x7c\xc3\xa0\x8b\x1f\x7e\x63\xff\xa1\xc1\x9f\x15\x3f\x3c\xfc\xd5\x2e\xd8\xcc\xe5\x5e\x08\xeb\x91\x54\x03\xf7\x23\x23\xd9\x34\x93\x1a\x8c\xc4\xce\x29\x96\x34\x3f\x1c\xa0\x34\x9d\xa2\xe8\xda\x9e\x9f\xb5\xd8\x53\x21\xf3\x77\x95\x9d\x22\x62\x45\x1a\xd3\x9f\xf2\x5a\x42\x68\x5c\xe3\x8c\x81\x51\x09\x44\x83\x10\xf7\x76\xd5\x22\x8f\xcb\xfe\xae\x92\xfd\x61\xb7\x27\x16\x33\xde\x26\xd9\x05\x9a\xed\xd9\xb4\x62\x11\x7a\x45\x29\xe6\x2f\x2f\x4e\x8e\x77\x37\x6e\xe6\x6d\xa7\x3e\xb5\x3f\xab\xe3\xa3\x05\xb7\x5c\x49\x9a\xcd\xf6\x67\x46\x68\xa3\x5e\x6f\xee\xd6\xeb\x0f\xad\x19\xce\x4f\x8b\x5c\x15\xc3\x5a\x4a\xb8\x9b\x02\x6b\xa2\xe3\xc4\xde\x19\xcc\xb4\x6d\x92\x69\x73\xad\x51\xa8\xa1\x40\x6c\x73\x15\x2a\x29\xb1\x04\xf5\x29\x18\x9d\x72\x29\x30\xeb\x7f\xd1\xfa\x2e\x6e\xe4\x96\x1d\xa4\xe5\x08\xa6\x8d\xd8\x63\x1c\x1c\xee\x5f\xec\xeb\xbc\xbf\x45\x28\x6a\x69\xeb\x10\xa3\x1c\x29\xee\xab\xd7\x1f\xbe\xa1\x58\x84\xdd\xbe\xee\xf8\x81\xe8\x78\xda\x08\x7b\x41\x73\x8f\xb4\xb1\x5c\xc8\x40\xa3\x69\x5f\x5d\x01\x57\x5c\x5d\x4d\xe4\x31\xb6\x92\x42\x45\x8e\x37\xc5\xab\xa3\xda\xaf\x06\x95\x87\xdf\x59\xbe\x92\xc6\x67\xc9\xaf\xe2\xd7\xfd\x62\x29\xfe\x90\x84\x0b\xc5\xe5\x49\xd0\xa2\x0c\x2f\xa6\x38\x96\x3f\x01\xcd\xc4\xef\x65\x8a\x08\x98\xb5\x64\x84\xc9\xe0\x41\x19\xcd\xca\x45\x21\x8e\x91\x20\x9d\xa2\x0c\xeb\xbf\x09\xa3\x90\x7c\xca\xc5\xbf\x11\x4b\xe5\x9f\xc5\x02\x51\x28\xcf\x14\x6c\x2a\x33\x07\x4a\xb2\x98\xc1\x1f\xba\x2c\x20\x3d\xc9\x08\x8d\xf1\xbd\xf8\x79\x8d\x57\x33\x4c\xc5\x2f\x31\x41\xc5\xdf\x05\xce\xa1\xe0\x25\xe2\x68\x01\x6d\x65\x05\x8f\x20\xb7\x9c\xa3\x08\x68\xee\xa0\x06\x0f\xad\xc8\xd1\xe7\x7c\x7e\xf6\x79\x4b\x48\x70\xc1\xcf\x18\x73\xc2\xd6\xeb\x06\x9e\xc8\xed\x8e\xd8\x35\x7f\x7d\xd8\xb3\xa7\x07\xf5\x7a\x8b\x4d\x82\x3d\x66\x37\xb9\x6c\x7b\x5b\x6b\x16\xf8\x23\xfb\xb4\x57\x17\x93\x53\xb0\x1f\x01\xc6\x79\x4a\xb7\x27\x51\x83\x58\x79\x9d\x37\x77\xd5\xcc\x6b\x90\xa6\x88\x2d\x1a\x44\x80\xc4\xf2\xd9\x21\xe1\x38\xca\xc9\x2d\x24\x5e\x36\x88\x17\x79\xc0\x16\x82\x69\x44\xd4\xbc\x1c\x25\x18\x59\x44\xc4\x22\x82\x6e\x4f\x12\xc8\xfa\xc1\x9c\x67\xb4\xd2\xc9\xc7\xfa\x82\xc0\x17\x89\xe1\x83\xc6\xf0\x45\x61\xf1\x8f\x18\xf8\x7a\xab\x8e\x28\x65\x39\x3c\xee\xba\x73\xbf\x48\xeb\xad\x7a\xc2\x38\x26\x33\x2a\x15\x57\x25\x09\x8d\x08\xfd\xb4\xe7\x1f\x89\x37\xbf\x6a\x7a\x39\xfd\xee\x17\xe9\x09\x8b\x31\x9c\x1c\xc3\xc9\xa5\xcf\xf2\x1f\x25\xfa\x49\x74\xbd\xf8\xd1\xc2\xed\x25\xdc\x7b\xdb\xda\x4a\xdb\xc0\x00\xa7\x49\x43\x63\x40\xd1\xfc\x75\x12\xc0\xa2\xac\x14\x69\x94\x65\x64\x46\x1b\x5f\x1f\x5a\x79\xeb\xab\x2a\x6d\xf7\x49\x28\x24\x6e\xeb\x89\x53\xfe\xc7\x7a\x76\x3b\x83\xa5\x27\x9f\xd7\x3f\x39\x79\xff\x70\xa6\xa6\x61\x0f\x4d\x69\xdd\xa6\x93\xfa\x2f\xf5\x6d\x55\xf1\x0d\x76\x3f\x6c\x2c\x65\x93\x7a\xdd\x30\x10\xaa\x11\x5a\xc3\x4d\x3a\xc1\x1f\xd1\xa7\x16\xdf\xda\x6a\xf0\xed\x49\xbd\x56\x6f\xb6\x1e\xeb\x39\x34\x29\x4b\x82\x8f\xe8\xd3\x7a\x8d\x9a\x2d\xbe\x3d\x41\x2d\xd8\xc1\x8a\x5d\xfe\xd6\x56\x5d\xec\xa0\xe9\x7a\x6d\x52\x37\x65\xf6\x3f\x4d\xea\x3f\x6d\x37\xc4\xae\x23\x62\x31\x3e\xa2\x39\xc9\x09\xce\x9e\xb2\x36\xa6\x02\xf8\xfd\xe4\xb8\x41\x9b\xbb\xb4\x0d\xaf\xc6\x47\xb8\xf1\xf3\x5f\xf5\x9f\x67\xad\xfa\xd6\x4d\xc1\xf2\xbd\x7a\xb3\xb9\xfd\x53\xfd\x27\xb3\x13\xe5\x0f\x0f\x0d\xa3\x29\xb6\xac\xa1\x51\x34\x85\x42\x53\xb6\xb9\xdb\xf7\x72\x5a\x49\xd6\xdf\xda\x12\x5b\x61\x67\xd9\xd0\x16\x0e\x91\xf0\xd7\x7a\xcb\xa5\x6c\xc0\xb4\xc1\xee\xb4\x69\xb6\x0c\xc7\x6c\x6d\xb9\x25\x40\xfa\x5f\x7e\xd6\xa3\xb1\x5d\xff\xb5\xde\x04\xf6\xaf\xff\xfc\x6b\xbd\x45\xdd\x73\x6b\xab\xb9\xc3\xe0\x09\x11\x2e\xc8\x4b\x67\xc4\xfa\x48\x52\x12\xac\xd7\xf5\xba\x6a\xe6\x93\x72\x2f\x8a\xe6\x69\x9e\xf5\x38\x55\x8c\x33\x12\x55\x9b\xf8\xfd\xdc\x74\xeb\x13\xbb\xf5\x79\xf2\x11\xa6\xef\x47\x51\x2f\xdd\xea\x8f\xc1\x27\x55\xc7\x4f\x9f\xdc\x5a\xce\x9d\x84\x7f\xdd\x77\xa3\x27\x3b\x3b\xb6\x39\x3b\x3b\x7f\xdd\x77\x71\x7d\xc3\x82\xe4\xb9\x55\x6d\xde\x8b\xe6\xad\xfa\xd5\x15\xce\x4e\x58\x5c\x08\x1d\xe9\x2b\x9c\x66\x09\x51\xda\x6c\xe5\x52\x6a\x6d\xda\x06\xe5\x68\x06\x7b\x1d\x10\x45\xeb\x75\x5d\x2e\x1e\x3e\x24\x56\x26\x8b\x3c\xb4\x72\x58\x4e\x27\x75\x29\x79\x72\x2b\xf4\x26\xf5\x58\xff\x14\xb8\x92\x77\x93\x7a\x24\x7f\x08\xec\x1c\xf2\x9f\xe8\x72\x04\x22\xb2\x9f\xa8\x52\x44\xde\x68\x36\x81\x6a\x89\x1c\x44\xbf\x4e\xea\x91\xe8\x1e\x28\x89\x45\x72\xd3\x14\xcb\x1f\xf5\x7f\x71\x4f\xed\xe9\x85\x7f\x18\xc8\x75\x7f\xd8\x6d\xee\x69\xce\xd9\x68\x44\x69\x3c\xc9\xd7\xeb\xfc\x97\x49\xf0\x94\x2b\xb2\xdf\x4f\x8e\x77\xf5\x6f\xa1\x26\x35\x1b\xb8\x29\xfa\x4c\x22\xe7\x50\xb3\x7f\x32\x2b\x99\x58\x67\x28\x99\xf3\x3b\x59\x39\x3c\xbc\xab\x7f\x9b\x5a\xed\xc9\xc5\x4f\x37\xd3\x50\x0a\x69\xaf\x7f\x9b\x82\x44\x2a\x13\x21\x02\x22\x26\x8b\xd0\x12\x16\x07\xf8\xe1\xd1\xf6\x2a\xc4\x26\xd0\xf7\xa2\x94\x42\x04\x9d\x6e\x3a\x5b\xd4\x02\xd9\xdf\xa6\xff\xa0\x16\xc8\x09\x78\x31\xaa\x77\x51\x05\xf2\xa8\x7a\x8f\x67\xd0\x7f\x3c\xaa\xf7\x63\x99\xf7\xbf\x4f\xf6\x7b\xa5\xa2\xbf\x9f\x1c\xff\xed\xdd\xff\xb7\x77\xff\xdf\xde\xfd\x7f\x7b\xf7\xff\xed\xdd\xff\xb7\x77\xff\x3f\xe9\xdd\xff\x98\x07\x3e\x9c\x6d\x6a\xe7\xae\x2b\xb2\x10\x0b\xcb\xa1\xf4\x39\xdb\xec\x24\x2e\x34\x62\xab\x21\x3d\xc5\xbb\x5f\x95\x8b\xda\x2e\x7e\x78\xf8\xe7\x94\x2a\x36\xe1\x0d\xda\x08\xbb\xe3\xa6\x5c\xe3\x21\xbb\xb2\xe7\x16\xfe\x75\xd2\xef\x77\xc6\x83\xad\x2d\xfc\xcb\xa4\x3f\xec\xf6\xba\xeb\x35\xfe\x35\x0c\xc3\x5e\x18\x86\xda\x42\xf4\x57\x91\x24\x49\x5c\xdf\x03\x45\x9d\xe9\xac\xc0\xf2\x6d\x42\x1f\xb1\xf2\x64\xca\x27\x66\x07\x50\xc3\xbf\x0e\xfa\xfd\x6e\x5f\x50\xee\x4c\xc4\xcf\x41\x2b\xdf\x9e\x48\x47\xdf\x76\xc2\xd9\xe2\x60\x8e\xf8\x01\x8b\x71\x03\xff\xfa\xeb\xaf\x61\xb0\x15\x06\x9d\xee\x1a\x2a\xd4\x6c\xe1\x49\x7f\xd0\xed\x04\x6b\x81\x6d\xe1\xe6\xa3\x29\x9b\x0f\x3f\xb6\x90\x07\xf5\x5d\x51\x85\x6e\xab\x1e\x76\x46\xf5\xdd\x51\x77\xd0\x6b\xd5\xc3\x6e\x50\xdf\x1d\x75\xc2\x91\xf8\x19\xd6\x77\x7b\x41\x47\xfc\xea\x08\xb0\x03\x3f\xbb\xe2\x67\x37\x10\x3f\x7b\x80\x42\xaa\x3e\xfc\xec\x8b\x9f\x83\xfa\xee\x30\x84\xf8\xa1\x00\x7b\xf0\x73\x54\xdf\xed\xf6\x21\xfd\x18\xc0\x71\xab\x1e\xf6\x82\xfa\x6e\xb7\x2b\x4a\xea\x75\xea\xbb\xdd\x51\x28\x7e\x41\x46\xe1\x40\xfc\x1c\xc0\xcf\xa1\xf8\x09\x39\x75\x44\x4e\xbd\x11\xfc\x04\x5a\xc8\xaa\x23\x68\xfb\xb2\xd6\x02\xed\x87\xf0\x53\x94\xd5\xef\xd4\x77\x87\x5d\xf8\x25\x6a\xdd\x1b\xc1\xcf\x9e\xa8\x8a\x68\x75\x1f\xca\xea\x8b\x5c\xfb\x03\x51\x15\x51\xa9\xbe\xa8\xa9\x24\x1c\xd7\x77\xbb\xc3\xc1\x0f\xdf\x5f\x71\xad\x13\xf5\xdd\xaf\x75\x94\xe6\xb3\x74\xb5\x14\x92\x11\xa5\xf9\x0b\xf8\xd9\x32\x68\x8c\x13\x27\xe2\x10\x16\x17\x1d\x07\x36\x6c\x1b\xf9\x0a\x4c\xda\x75\x44\xc9\x02\xe5\x38\x62\x29\x3c\xa9\xa0\x82\x07\x10\x34\xb1\x0b\xa6\x9e\xca\x55\xe1\x13\xa6\xac\xd0\x2a\x9c\x73\x44\xb3\x84\xf1\x85\x25\xb9\x30\x50\xab\x1e\xa5\x64\xb9\x94\x57\xe3\xc5\xcf\x33\xf1\xb3\x55\x4f\xf0\x34\xc5\x20\x79\x13\xfc\x0c\x7e\x09\x0c\x2a\xb2\x40\x39\x27\xf7\x10\x03\x35\x39\x91\x61\x19\xbf\x58\x32\x8a\x69\x2e\xcb\x84\xc7\x61\x04\x95\x42\x2f\x34\x6a\x68\x33\x02\x22\x47\xd1\x40\x48\xc6\xd1\x5b\x96\xde\x62\xaf\x28\x09\x39\xa5\xc5\x24\x49\x8a\x4c\xe8\x8f\xf3\x5c\xaa\x7c\x09\x3e\x94\xd8\xb1\xc6\x24\x5d\x06\x96\x0a\x31\x54\xf2\xee\xbb\xa0\xb3\xd8\x09\x5a\x6a\xba\x1c\xd1\x3c\x55\x2f\x87\x00\x91\x00\x20\x33\x49\xc1\xd9\x32\x9b\xa3\x18\x9e\xd0\x49\xf0\x21\x67\xcb\x73\x19\x14\xb1\x49\xca\x98\xec\xb1\xe7\xf0\x0b\xb0\x82\xc2\xe7\x7c\x12\xfc\xbc\xa0\xd1\xbe\xc1\xa6\x06\x7b\x66\xb0\x99\xc1\x5e\x18\x8c\x1b\xec\x1d\x60\x33\x54\x64\x19\x41\x74\x9a\x16\x32\xea\x85\x02\x9e\x09\x40\x50\x90\x05\x9a\xc9\x3e\x7d\x05\xbf\x04\xb6\xc0\x5c\x61\x27\xf0\xcb\x60\x94\xc5\x0e\xfe\x96\xc5\x2a\x8e\xf1\xe5\x9c\xa5\x6c\xb6\x92\x91\x36\x28\x62\x59\x92\xc8\x47\x3c\x13\x7c\x2a\x7f\x0a\x14\xbe\x18\x68\xfb\xee\x4c\x04\x6d\xcf\x65\x4b\x1c\x15\x29\xe2\xde\x60\x9d\x2b\xd0\x1b\xad\x6c\xc9\x9c\x6c\xce\x97\xcc\xc9\x25\x97\x8f\x1f\x27\xf8\x82\xa4\xb2\xa6\x79\xc1\xa7\x45\x8a\x69\xa4\x70\x1b\x34\x16\x32\x75\x0d\x6c\xb7\x62\x9b\x84\x89\xc7\x61\x52\xc2\xcf\x77\x52\xdd\x23\x14\x23\x3e\xe3\x28\x26\x52\x7d\x97\xc0\x0b\x0d\xc8\x2f\x92\xa1\xd4\xa1\x90\x80\x43\x91\xe3\xfb\x5c\xcd\x29\xf1\x13\xe6\xd4\x83\xd8\x7a\xb8\x76\x39\x21\x30\x60\x39\x23\x62\xbe\x16\xf0\x58\x99\x0d\x5f\xbe\x3b\xae\x3b\x29\xc0\x7f\x60\xd7\xcf\xc1\x8d\x07\xbb\x84\x13\x7f\x21\xc2\xad\x3a\x18\xd9\x39\xbe\x29\x30\x85\xbb\xe5\x22\xfc\xdc\x84\x65\xfc\x92\xb3\x44\xf6\xab\x08\x9d\xa9\x50\xab\x1e\xa1\x34\x5a\x48\xfe\x10\x3f\x4f\x24\x73\x68\x71\x51\x50\x92\x67\x8e\xcc\xb8\x84\xb0\xd8\xac\xc0\x04\x8c\x18\xb8\xd4\x8a\xde\x51\xc8\x81\x46\x5a\x75\x1c\xcf\xb0\xca\x59\xfc\x54\x39\x27\x24\xcd\x31\xd7\xf9\xca\x90\xce\x75\xf3\x50\xe9\x21\x70\x25\x9c\xc6\x5c\x11\xa7\x31\x9d\xb7\x0e\xeb\xdc\xaf\x31\xa7\x38\x35\xc2\x46\x06\x8d\xa0\x91\x41\x91\x56\xda\x1f\x0d\x85\x48\x7e\x2c\x21\x41\xb5\x82\x19\x90\x41\xf4\xea\x4c\xfe\x06\x3c\x5b\x0a\x16\x52\x11\xe7\x2a\x00\x31\x5a\x33\xbc\xc6\xab\x0b\xf8\xd9\xaa\xcb\x32\x50\xfc\x59\x7e\x60\x46\x06\xf7\x65\x50\x30\xe7\x82\x88\x99\xf2\xff\x70\xf7\x26\xec\x6d\xdb\xd8\x02\xe8\x5f\x91\x38\x19\x96\x88\x20\x59\x74\xd2\x34\x15\x0d\xeb\x3a\x4e\xda\x66\x26\xdb\xc4\x4e\xd3\x0e\xcd\xe6\xd1\x14\x64\xb3\x96\x49\x85\x84\xbc\xc4\xe2\x7f\x7f\x1f\x0e\x56\x2e\xb2\x9d\xb6\x33\xf7\xbe\xf7\x7d\x89\x45\x82\xd8\x97\x83\xb3\x9f\x24\xcf\xa8\x72\x3b\xa5\xd2\xf6\xf3\x8c\x42\x3c\x29\x20\x49\x8a\x33\x5a\x9c\x52\x79\x8e\xc4\xeb\x4f\x54\x1e\x24\xf1\xaa\x66\x43\xbc\xa9\xb9\x10\x6f\x97\xe9\x0c\x06\x2a\xde\xc0\x05\x02\x7c\x2b\xcf\xa4\xd0\xda\x14\x2e\xcf\xf6\x45\x92\xa9\xa1\x3c\xb3\x3f\xab\xf4\x6c\x75\x9e\x27\x2c\xbe\x80\x11\x67\xab\xf3\xb7\xf2\x85\x93\x00\xec\x54\xcf\x2d\x7f\xd1\xb3\xba\x8c\x19\xa3\x45\xd6\x68\x54\xa6\x36\xda\x95\xa9\xf6\x66\x90\x49\xf6\x5e\x90\x49\x8d\xaa\x74\x1d\xb0\x6c\x31\xe3\xdb\x40\x3c\xef\xb1\x5f\xac\xf4\x6b\x2b\xfd\x57\x2b\xfd\x8b\x95\xfe\x6f\x11\xa8\xb3\xa4\xc5\x05\x8d\x17\xcb\x53\x0e\xfe\xd5\xfb\x1e\xbc\x5b\xdf\x39\x5c\x64\x2a\x5e\x9e\xce\x05\xa9\xef\x21\x55\xc4\xef\x4c\x59\x7a\x41\x75\x9f\x55\x82\xea\x75\x41\xe7\xbc\xc3\x05\x9d\xff\x22\xde\xae\xc5\xdb\xaf\xf0\xb6\xa4\x31\x03\x6b\x2e\x48\xe4\x6f\xa0\xee\xa4\xbf\xcd\xe0\x26\x11\xcf\xcf\xe1\x12\xe1\x00\x22\x2d\xe8\x8c\x5e\x31\x9a\x95\x32\x4e\xa4\x4a\x7c\x61\x12\x4d\xce\x39\x8d\xd9\xaa\xa0\x76\xbe\x1f\x54\x12\x76\x14\xf0\xb7\x80\x82\x4a\xb2\xa0\x82\x4a\xe2\xa8\x56\x46\x6b\xb9\x5e\xa8\x24\x9e\xab\xa0\xf1\xec\x9c\xb2\x53\xb8\x6b\xc5\xeb\x6b\xf1\x2a\x7c\xdb\x33\x7d\x3f\xc1\x9b\xbe\xa2\x4a\x36\x9b\xd1\x8b\x34\x96\xd8\x52\xc9\x66\xcf\xf5\x2b\xff\x9a\xb2\xe4\x94\x5f\x30\x25\x7c\xe4\x6f\x87\xf0\xc6\x69\xbf\x62\x1e\x27\xb4\x4c\x62\x38\x70\xf2\xf5\x00\x5e\xb1\x53\x5e\x97\x8c\x9e\x2f\xe2\xec\x64\x25\x6e\x5e\x91\xf0\x4a\x25\x60\x87\xc5\xc7\x0b\x0a\xa4\x09\xaf\x1b\xde\x7e\x16\x6f\xca\x03\xf4\x15\xa4\xf3\xa7\x5f\x74\xda\xb5\x4e\xfb\x55\x5e\x29\xfa\x8c\xf0\x17\x7d\x46\x2e\x52\x7a\x79\x0c\x9e\x8c\xf9\xd3\xb3\xfc\x4a\xa6\x69\xdf\xd2\xfc\xe5\x50\xbc\x60\xe7\x4a\x6a\x87\x94\x74\xa1\xa2\x68\x5d\xed\x8b\xa4\x03\x95\x84\x9d\xeb\x76\xae\xeb\x76\xae\x2f\x79\x7e\x1e\x67\xb3\x65\xcc\xe7\x93\xbf\xec\x65\xb3\x77\x71\xe6\x54\x2d\x12\x51\x1b\x6d\x8d\x4e\x28\xdb\x97\xd2\x8a\x2e\x85\x42\x23\xcb\xa8\x70\x21\xb2\x0b\xdf\x96\xdd\x99\x85\x04\xa5\x0a\x20\xe3\x41\x7a\xbc\x48\xb3\x93\x0e\xd5\x5b\x52\x78\xd4\x28\x47\x4e\x33\x8f\xa1\x49\x48\xa3\x0a\x43\xb9\x3d\x75\x69\xc2\xa2\x74\x1b\x25\x68\x19\x16\xa7\x52\xe5\x63\xc8\xa0\x86\xd3\xb8\x14\x35\x74\x96\xec\xf7\xad\xa2\xa7\x71\x69\xd9\x51\x4b\x95\x46\x4b\x3a\x26\x3b\xc4\x2f\xf7\xee\xf1\x72\x34\xa0\x6a\x4e\xad\x32\x83\x94\x7a\x6e\x2d\xfa\x76\xb4\x2c\xe8\x05\x08\x55\xf9\xc3\x28\xa3\x57\x8c\x50\xf8\x41\x58\xfc\x0a\x89\x2b\xbd\x62\x90\x83\x88\x8c\x48\xcb\x57\xd5\x2c\x6a\x89\x95\x5a\xa3\x80\x8d\xf8\xe5\x96\x50\x8f\x8d\x16\x71\xc9\x5e\x2a\x41\x29\xc2\x3e\xa7\x49\x99\x12\x12\xb6\xbb\x66\xef\x09\xab\xd1\x00\x64\x79\xa2\x8f\x4c\x49\x46\x98\xdd\xe7\x00\xa4\xa0\xa2\x0c\x53\x64\x3e\x93\x3d\xd3\x5d\x0c\xd2\xb9\xa7\x35\xf8\x8c\x6a\x50\x90\x86\x69\xa3\xa7\x11\x61\xd0\xd3\x78\xb9\xa4\xd9\x0c\xf6\x66\x5b\x3a\x6b\xea\xc7\x7e\x5d\x26\x09\xc6\x4c\x0c\x19\x11\xa0\x96\xc5\xb5\x04\x97\xc3\xed\x28\x50\x43\xc3\x72\xd4\x19\x96\x83\x03\x85\x4d\xd3\x8f\xce\x99\x52\x83\xc3\x85\x9a\x0b\xe8\x1a\x94\x2f\x54\x8d\x54\xae\xa9\x68\x43\xf4\x1a\x4c\xcf\xd3\xb9\x9e\x36\xa5\x6d\x92\x93\xcc\x4c\x4d\xae\xd6\x32\xaf\xcd\x50\x81\xf0\x98\x6f\xcd\x0a\x94\x94\x33\xd7\xcd\x5a\x83\xaf\x44\xdb\x77\xf6\x1b\x2c\x27\xb4\x9e\x8b\x69\xb9\x50\x2d\x17\xcd\x5d\x04\x2d\x77\x6e\x60\x86\xec\xe1\xd5\xf6\x90\x9a\x52\x50\x10\x80\xf1\xde\xa2\x6c\xf3\xe8\x3b\x24\xf5\x9a\xb4\xb4\x34\x37\xe6\xfa\x4a\x0e\x9f\xe2\x98\x84\x11\x2e\xc9\x18\x27\x5a\x29\x3b\x28\x77\x12\xd7\xed\x7b\xd4\x63\x61\x19\x21\xd7\xf5\xa4\x11\x39\xbc\xe2\xe1\xb0\xd8\x21\x63\x50\xf5\x4a\x09\x4f\x32\xc2\xe9\xbe\x97\xb9\x6e\xea\xba\xa9\x6d\x8e\x96\x12\xde\x70\x0a\x0d\xe3\x98\xc4\xca\x71\x43\x8a\xb0\x57\x0c\x89\xca\x8b\xa0\x52\x14\x94\x83\x81\x06\x69\xb1\xe5\x3c\xe1\x46\x60\xce\x0d\x77\x15\x7c\x30\x4d\xf5\xa8\xf5\xda\x63\x04\xec\xab\x95\xf1\xa2\x51\xc9\x2e\x5c\x37\x2d\x7f\xe0\xb4\x08\xf5\x0a\x9e\xb3\x20\xfe\xd6\xd8\x18\x31\x0b\x4d\x5c\x7e\x16\x78\xd5\x15\x9e\xa7\xd9\x6c\x92\xc3\xcf\xdb\x8c\xc2\x29\xea\x30\xf7\x10\xdb\x61\x8c\x8d\x62\x7b\x90\xed\x14\x60\x16\xc8\x01\x95\xc7\xc2\xcc\xb2\xb5\xb1\xcc\x86\x85\x3a\xb3\xac\xbd\xa6\xf8\x65\x6d\xe5\xd5\x62\xa1\x15\x27\x52\x32\xc6\xb1\x36\x17\x09\xd2\x9d\xd8\x75\xfb\x79\x90\x0e\x06\xa8\x00\x0b\x17\x50\xd6\x14\x4f\xd3\x1c\x8c\x5a\x26\x60\xd9\xd2\x38\xb3\xb0\x32\x39\x81\x86\xec\xcf\x7c\x05\xd4\x5c\x54\x98\x5e\xa5\x25\x2b\xbb\xba\xa6\xfa\x93\x93\xb1\x65\x71\x13\xe4\x3b\x29\x28\x02\xf1\x33\xe9\x65\x61\xae\xbb\x93\x47\x68\xbd\xe6\x3f\x5d\x1d\x11\xbd\xc8\x6b\xbd\x50\xc6\x7c\x4a\xe3\xc0\x17\xd3\xb4\xb7\x58\x4c\xba\x8e\x62\x18\x61\x0e\x2d\x4b\x38\x6e\xc2\xd4\x22\x50\x96\xd8\x81\x81\x97\xd2\x62\x27\x28\xbc\x14\xf6\xaf\xa5\x69\x91\x76\xf5\x2c\x57\xae\x14\x84\xef\x13\x2f\xc7\xa9\xa5\x4d\x49\xa1\x16\x09\x2e\x52\x64\x29\x18\xdd\x7e\x30\xa1\xab\x42\x89\x40\x29\x1f\xb2\x11\xa3\x25\xeb\xbe\x4e\xf4\x0e\x13\x4a\x33\x70\xf5\xd5\x6f\x5c\x2f\x43\xc2\xc8\x8e\xc5\x27\x9f\x80\xa4\x26\x84\x64\x90\xd4\xcf\xe1\x44\xf4\xe9\x48\x7d\xf3\xa4\x0e\x91\xb6\xcc\xac\xb4\x69\x15\xcf\x02\x14\xb7\x29\x2e\xca\xf1\x44\xa9\x01\xb8\xa9\x1c\xa7\x65\xe2\x34\x2b\x4d\xd9\x5a\xcb\xea\xb3\x27\x14\x06\x3b\x6a\xe9\x6b\x85\x63\x5e\x28\xcc\x22\x4f\x27\x58\xc7\x47\x16\x08\xb4\xb1\xa7\x14\xbb\xdf\xa8\xe1\x75\x18\x06\x74\xda\x66\x18\x7f\x00\x96\x76\xbe\xc7\x10\x6c\x47\x31\x43\xd5\xc4\x79\x08\xaa\x1a\xd3\x7c\xb2\x31\xb7\xc8\x0b\x1a\xee\x15\x56\x73\xf5\x67\x3a\xa1\x27\xba\xea\x6a\x54\xab\x61\xaa\xe6\xd4\xc4\xfe\x89\x26\xfb\x66\xdc\xb0\x36\x5d\x0d\xf7\xd5\x68\x79\x0e\xd1\xbc\xe5\xf9\x26\xbe\xcb\x14\x86\x99\x66\x8d\x3d\x43\x66\x30\x48\xe6\xe9\x97\x90\x46\x76\x0f\x3a\xb3\xdb\x99\x79\x23\xd5\x26\x7b\x8b\x8e\x6a\xa8\x97\xa1\xf5\x9a\x79\x19\xaa\x2a\x66\xdb\x51\x90\xf6\xd5\x22\x40\x9c\x6d\xdd\x42\x9b\x5a\xd8\x06\x1b\xb0\xfc\x54\x30\x7e\x54\xd3\x69\x1a\xb2\x08\x9c\xb0\x00\xd0\xac\x0c\x6c\x15\xe6\xdd\x52\xef\x2b\x8c\x26\xd2\x93\x07\xbf\xe0\xbc\x7c\x54\xd0\xd9\x2a\xa1\x5e\x89\x64\x37\x24\xfa\x2c\xfb\xf9\xec\xfa\xe5\x8c\x6c\x70\xda\xb4\xf1\x2a\x54\xbe\x42\xe0\xa2\xf1\x62\x4f\x98\x06\x20\x7d\xd9\x35\xda\x30\x36\x25\x1d\x93\x62\x1b\x1a\xc9\x3e\xa7\x06\xba\xd0\xee\x5e\x8b\x1a\x0f\xf9\xde\xfd\x8a\x1a\x01\xee\x98\x1a\x37\x51\x08\x22\x3a\x59\xd9\x6d\xb7\x2f\xac\x5e\x88\x56\x54\x1d\x0e\xf3\xdd\xa1\x1f\x88\x1c\x8c\x64\xa0\xae\x8a\xf9\x1f\xa1\x71\x5c\x90\xfe\x38\xc8\x02\x49\x63\x28\x1d\xc9\x0c\xed\x0e\x7d\x74\x53\x90\xbe\x8f\xa9\xc6\x28\xb1\x8f\xa4\x99\x68\x46\x32\x45\xb5\x81\x8b\x20\x5e\x1d\xb3\x9c\xc6\x48\x65\x49\x1f\x17\x64\x1b\xe7\xe4\x31\x4e\xc9\x53\x1c\x13\xff\x09\x2e\x09\x1b\x25\xf9\x39\x2f\xfc\x3c\x4f\xc0\x94\xf0\x5d\x5e\x02\xb3\xb4\x03\xeb\x2c\x71\x82\x17\x78\x85\x97\x78\x8e\x67\xfc\xda\x3b\x25\x21\x98\xdc\x53\x30\x64\x55\xfb\x0b\x6e\xc0\x92\xd0\xa0\x0c\xd0\x4c\xfb\x03\x2a\x11\x2e\x49\xa9\xb0\x56\x91\x85\xf1\x2c\xa7\xb7\x64\x99\x93\x71\x30\x0b\xe7\xfc\x9c\x9d\x86\xf3\x28\x40\xf3\xc1\xc0\xde\xc7\xf3\x69\x36\xf1\x16\xc4\x4b\xc8\x2c\x9c\x0f\xfd\xc8\xb2\xc9\x58\xf1\xa4\x08\x2f\xa1\x20\x36\xca\xac\x2b\xb4\x6b\x5e\x96\x68\x9a\xf0\xbe\x4f\xf3\x75\x3c\xc9\x27\x09\x00\xdc\x62\x9d\x4e\x0a\xc4\x09\xe0\x55\x96\x7e\x5e\xd1\x83\xbc\x60\x9d\xa6\xa7\xa9\x59\x58\xde\x59\x4a\xa8\x46\x02\x86\xc3\x14\x16\x9a\x11\x1a\xa6\x11\xf6\x38\xc2\xae\x1a\x65\x88\xaf\xa7\xeb\x66\x3b\x29\xa7\x7c\xe5\x7a\xa6\x7c\x3d\x35\x51\x5a\xe6\x05\xb3\xd5\xf9\x0d\xb6\x21\x60\x8c\x46\xe2\xdc\x62\x3a\xf4\x27\x99\x9b\x4f\xfd\xc9\xb8\x42\x08\x37\x69\x59\x7e\x42\x0d\x26\x9b\x1b\xc5\xb8\xc7\xa8\x86\x9e\xa3\x9b\xc2\xb2\x7c\xc8\xe8\x65\x4f\x38\xf5\x41\x98\x5a\xb6\x5c\x29\xcf\x08\x67\xa5\x4c\xf2\x25\x25\x54\x5a\x6d\xe5\x1c\xc1\xce\x6b\xd6\xbb\xf1\x2c\x3e\x5e\x50\xe5\xce\x29\x26\x99\xf7\x78\x8c\x46\x2f\x7e\x7e\xf1\xe6\xf0\xa0\x66\xb4\x17\x6f\x30\xda\x53\x36\xae\x1c\x28\x5b\xf6\x5b\xa1\x93\x67\xce\x80\x46\xb6\x05\x97\xe9\x91\x30\x4c\xa6\xa8\xd2\x06\xa0\xfe\xbd\xea\x60\x1d\x95\x70\x42\x49\x78\x85\x48\xe7\xde\x76\x5f\x56\x23\xac\xea\xa5\x4d\xc8\x65\x91\x67\x27\xd2\x6f\x48\x2f\x9f\x6b\x73\xfa\xb2\xef\xa0\xe0\xf6\x06\xf9\xc2\x74\x34\xc9\x81\x75\x05\xf6\x83\xf7\x51\x08\xc8\x3c\xff\xf1\xf7\x68\xf4\x6c\x35\x9f\x83\xe5\x38\xc7\xe9\x5e\x64\x49\x3e\x4b\xb3\x93\xba\x4a\x40\x79\x99\x32\x3e\xc3\x94\x38\xce\x80\xf2\x2b\x77\xc4\xf2\x57\xf9\x25\x2d\xf6\xe3\x92\x7a\x08\xdd\x24\x71\x49\x9d\x53\x7a\xe5\x4c\xe0\x69\xc5\xe6\x4f\xcd\xe3\x50\x3d\xc7\x65\x92\xa6\xf2\xf9\x38\xcd\xe2\xe2\x5a\xbd\xc4\x25\x7d\xf2\x58\x95\x48\xca\x6d\xf3\x38\xdc\x36\x15\xf9\x4f\x16\xd4\xaa\xd6\x7a\x2d\xe2\x4b\x67\xa2\x71\x6f\xa5\xa8\xa0\x51\xaf\x2a\xa8\xef\x42\x38\x85\x81\x1c\x96\xb0\x49\x97\x03\xef\x60\x56\x35\xf6\x55\x9f\x2a\x25\x04\x18\xa5\x26\x71\x58\x10\x20\x59\x23\x95\x13\xd2\x9e\x86\x5a\xc9\x3f\x32\x5a\x53\x01\xbc\x8b\x3a\x16\x31\x4b\x33\xbf\x31\xb1\x32\xa7\xfc\x16\xb4\xe7\xd9\x5e\x0d\x58\x3a\x05\x41\xf4\xfc\xa5\x1c\xe0\x88\xd4\x80\x12\x0f\x16\xbf\xbe\xf2\x98\x91\xfe\xb8\xaa\x3c\x0a\xb6\x36\x4e\x09\xda\x10\xb6\x23\x09\x60\x0e\x99\x7d\xc5\xf1\x87\xf5\xba\xcf\x61\x86\xed\x84\x47\x7b\x73\x39\xcb\xf2\xcb\xac\xa7\x16\x63\xd2\xe3\x2d\x6a\xe4\x64\xbd\xa6\x15\xdc\xaa\xf6\x82\x99\xa9\x16\x13\x24\xdc\x87\xd1\x2b\x46\x12\x95\x71\x46\x16\x98\x91\xc7\xe2\xc6\x0b\xac\x95\x51\x17\xf7\xe2\x55\x5c\x32\x52\x36\x33\xa9\xd9\x32\x55\xae\x4c\x95\x4b\xcc\xc8\x23\x99\xbb\xbe\xdf\x7a\xd2\xd9\x59\xca\x28\x99\x83\x33\x04\x4f\x97\x9a\xa1\x4a\x78\x3b\x8b\x4b\xf6\x86\xd2\x99\xb4\x54\x87\xf7\xc3\x9c\xc5\x0b\x3b\x61\xff\x34\x2e\x48\x31\x8a\x17\x8b\x3c\xf9\x90\x95\xf1\x9c\x7a\x0d\xbb\x5e\x83\x1c\xee\x10\x7f\xfb\xbb\xe9\x78\x42\x77\x77\xbf\x25\x84\x3c\x99\x6e\xf3\xc7\xc7\x84\x10\xff\xf1\xf4\x11\x7f\x7e\x44\x08\x79\x34\x9e\x3e\xe6\xcf\x4f\x08\x21\xdb\x1c\xf8\x0f\xb7\x6b\x18\x68\xcd\xdd\x97\xee\xd3\xb0\xd6\x65\x9c\xb5\xb0\x38\x0e\x29\xb7\x9f\xf6\x09\xf1\xfc\xef\xb7\x5d\xf0\xe2\xa3\xed\xb1\xec\xa1\x6a\xb5\x1d\x40\x51\xd4\x87\x5d\x9f\xe3\xe7\x92\x78\xf5\xdb\xb5\xf9\x9d\xb5\xf9\x9b\x6a\xdb\xb6\x6a\xdb\x76\xdd\x5a\x55\xdb\x9d\x55\x6d\xeb\xaa\xaa\x4a\x1a\xd0\xa3\xba\xe7\x36\x8e\x6a\x4e\xb3\x49\x6d\x1e\x76\xf4\x0d\x3e\xf5\xe8\x28\xc9\x97\xd7\x5e\x6d\xe5\x30\xc3\xd6\x5a\xf2\x12\xa8\xbe\xb4\x23\x96\x2b\x07\x83\xf6\x86\xc6\xcd\x2d\x81\xd0\x64\x73\x03\xc6\xfb\x9b\xd9\x68\xaa\xbd\xa1\xee\xa1\xed\x46\x2f\xd1\x5c\x54\xed\x3a\x6e\xc8\xd0\xdf\xb7\x09\x21\x63\xc3\x21\xd4\x7d\xd3\x27\x0b\x0b\xa7\x2d\x35\x86\xa1\x50\x78\xda\xe3\x54\x90\x72\x8c\x00\x99\x0a\xad\xc3\x55\xec\x90\x6f\x9f\x3c\xf2\xbf\xb7\x9d\x69\xd8\x33\xdf\xd8\xfd\x8f\xeb\x53\x14\x8e\x23\x42\x43\x6a\x18\xb6\x8d\xcf\x7e\xed\xb3\x1f\xe1\x4c\x62\x51\x63\x3c\xf4\x2d\xbe\x46\x67\xe3\x7e\xb3\xf1\xed\x5b\x1b\xf7\x23\xdc\x3d\x2d\xd8\x64\xa9\x5b\xae\x6b\x3e\x3d\xbf\x30\xe5\x56\x31\xb0\xc1\xa3\x68\xe2\xc0\xe6\xad\x6f\x12\xc5\x86\xbf\xe5\x08\x6a\x88\x38\xd8\xb0\xa1\x4c\xef\xc6\x1c\x27\xd0\xce\xfe\x9a\xf6\x5e\xa2\xa9\xda\x3e\x78\x64\xe3\xc8\xd9\xd4\x1e\xb2\x84\x87\x98\xa1\x49\xbd\xcf\xe4\xd1\x30\x6b\x4e\xe6\x23\xe1\x20\x66\x7a\xfb\x94\x4e\xbc\x3f\xb5\xde\x08\x77\xf6\xcf\xac\x48\x66\xef\xfc\xe5\x3d\x97\xa4\x6b\xb7\x4c\x37\xcf\xb5\x6a\x76\x8c\x1f\xd5\x97\x09\x4d\x58\xcd\x32\xc9\x12\x1c\x75\x1f\x7d\xd4\x69\x5b\xd4\xbb\xad\xb3\x15\x1b\x89\x9a\x9e\x83\x0d\x41\x41\xd2\x9a\x03\x04\x79\x0b\xb5\x31\x63\x0d\x19\x94\x05\x6c\x20\x29\x93\x8e\x0d\x59\x73\x92\x23\x2f\x07\x75\x6b\xc2\x45\xae\xeb\xb0\xb6\x2d\x5c\x15\x8d\xbb\x4e\xca\x2c\xc8\x58\x93\x20\x3b\x66\x60\x6a\x86\xf9\x45\xeb\x51\x9c\xa1\x49\xf3\x75\xbd\x76\x9c\xaa\x36\xbc\xba\x84\xe3\xcf\x2c\xae\xba\x01\x26\xac\xde\x02\x5c\xfb\x5d\xb4\x54\x37\x9f\xd4\x72\x10\xc3\xc1\xe0\x4e\x66\x28\x5b\xc1\x93\x89\x3d\xe1\x19\x26\x9d\x7b\xf9\x2e\xd1\xfe\x99\x72\x60\x6c\x5b\x77\x52\x3e\xf4\x11\xce\x79\xb6\xe1\xb0\xd8\xc9\xd6\xeb\x21\x07\xd0\xb9\xa9\x8e\xc3\x6f\x5d\x1d\xba\xbd\xaa\xed\x3f\x55\x15\xe4\x9e\xe6\x64\x3c\xa9\x55\xfa\x88\x57\xaa\xea\xa8\x8c\x47\xb2\x00\x78\xa2\xb5\x1d\xd4\xde\xf6\x02\x01\xe3\xb9\x1b\x60\x23\x0b\x94\x93\x55\x39\x91\x5e\xd6\x38\x54\x86\xd0\xed\xb8\x12\xc7\x9c\x96\xec\x68\x07\xf8\x3a\xf6\xba\x6a\xac\xaf\x71\x36\x36\x5c\xf1\xe8\xb6\x46\x6f\xc5\x96\xfe\x22\x1c\x20\xf8\x23\x2d\x1b\xe4\x60\x03\x5e\x70\x0b\xbf\xff\x31\xdf\x34\xa4\x90\xe4\x61\xcb\xd9\x4c\x83\xb9\xaf\xfd\xcc\x36\xdc\xce\xd8\x5e\x60\x14\x85\x9a\x83\xb6\xb4\xeb\xe6\x02\xb3\xd5\x0f\x02\xc5\x6d\xbc\x1e\x2c\xf2\xcb\xa9\xe1\x41\x14\x13\x2f\xf5\x0a\x0c\xd2\x46\xd1\x33\x12\x23\x1c\x9b\x85\x6d\xb8\xfd\xb1\xd8\x0a\x08\xa7\x5e\x8e\x21\x37\x6f\xbf\x0b\x89\x6d\xcb\xdd\x68\xa7\x23\x3c\x67\xaf\xe6\xf9\x2e\xcb\x95\x43\x50\x51\xbc\x21\x96\xcb\x50\x85\x63\x31\xa6\xdb\x1a\xed\x7f\x5d\xa3\xf5\x06\xc5\xaa\xe5\x5e\x07\xe2\xca\xa6\x8a\x2c\xb3\x1c\xf2\x4e\x0b\x38\x01\xc0\x49\x98\xa8\x67\xfd\x34\x46\xb8\xd0\x7d\x16\xeb\x70\x0f\xff\xaa\x5f\xdf\x6b\x33\x4d\xa8\xd1\x1c\x5f\xf6\xff\x64\x93\xc5\x88\xb7\x20\x76\x50\x53\x5f\xbf\x83\x61\xc2\x46\xc7\xd7\x8c\x0a\x15\x9f\x8e\x0b\x87\xe3\x7a\x38\x03\xf7\xa5\xb8\x20\x9c\x62\x51\xed\x3c\x7a\xe8\x65\x83\x02\x6d\x3d\x1e\x16\x15\x66\x23\x96\x3f\xbb\x66\x14\xb8\xdc\xdd\x0e\xe9\x44\x55\x31\xe1\x98\x10\x2e\x09\xc7\x78\xb0\xf0\x66\x9e\x7a\x1b\x78\xe7\x8f\x1e\x7a\x6c\x90\xf1\x26\xb2\xca\x1b\xe3\x18\x97\x08\xe1\x15\x19\xe3\x25\x29\x77\xc7\xd3\x78\xf8\x78\x12\x5b\x2e\x48\x97\x41\x36\x20\x8f\x11\x23\x39\x68\x44\x18\x0c\x1e\x45\x3b\x3b\xfe\xd3\x75\x33\x79\xe0\xc3\x87\xed\xf6\x87\x6d\xfe\xe1\x49\x3b\xfd\x11\x8a\x70\x12\xae\x06\x83\x88\xb0\xdd\x5d\xff\x89\xbb\xfd\xed\xb7\x56\xc2\x53\xfb\x7d\xfb\xdb\x6f\x5d\x16\xf0\x1b\xa6\x04\x1b\xfe\xae\x4e\x75\x34\xed\xa3\x68\x77\xf7\x71\xad\x12\x14\xf8\xb7\xd6\xe2\x8f\x37\x0c\xed\x71\xe7\xc8\x76\x77\xb7\x6f\xed\xb3\xde\x49\x09\x5f\x57\x0e\x50\xba\x57\xd6\x62\xe7\x6b\xa8\x8b\x73\x92\xfd\xfd\x11\x4e\x49\x18\xe1\x98\x8c\x71\x49\xb2\x61\x1e\xc4\x3b\x65\x10\x0f\x88\xff\xe4\xd1\xd3\x47\x28\x15\xc2\x59\x8e\xa6\xc7\x38\x1e\x40\xe2\x6e\x39\x2d\x27\xf2\x19\x89\xe1\xe6\x53\x8f\x71\xb0\xcb\x89\x13\x59\xa4\x08\xd9\xee\xee\x76\x34\x28\x42\xb6\xb3\xf3\xd8\x7d\xf2\x28\x1a\x38\x84\x38\x08\x4d\xe0\x1e\x87\xf9\xf1\x78\x91\xed\x68\x67\xe7\x29\x1a\x74\x94\xf6\xc7\x50\x7c\x77\x57\x14\x87\x9a\xb6\x65\x4d\x8e\x11\x06\xa5\xda\x7f\x8b\xf1\xb0\x51\x08\x89\x76\x18\xe1\x94\x38\xab\x4c\x98\x07\xcd\xac\x23\xfb\x21\xcd\xd8\x53\x98\xa6\xa9\x79\x9c\xc0\x5f\x1c\x13\x67\xef\xd9\xfe\xf3\x17\x3f\xfc\xf8\xd3\xcb\x7f\xfc\xf3\xd5\xeb\x37\x6f\xdf\xfd\xeb\xfd\xc1\xe1\x87\x9f\x3f\xfe\xf2\xeb\xbf\xe3\xe3\x64\x46\xe7\x27\xa7\xe9\xef\x67\x8b\xf3\x2c\x5f\x7e\x2e\x4a\xb6\xba\xb8\xbc\xba\xfe\x32\xf6\xb7\x1f\x3d\xfe\xf6\xc9\x77\x4f\xbf\x1f\x6c\x39\x52\x27\x24\xb6\x74\x42\x82\xc1\xa0\x44\x45\x58\x46\x24\x0e\xcb\x08\xe7\x61\x6c\xaf\x76\x89\x22\x52\x06\x9d\x64\x9b\xd6\x56\x98\x7b\xec\xef\x8f\x77\xc7\x6d\x86\xd5\xcb\xec\x22\x5e\xa4\xb3\x9e\x00\xb0\xa3\x9e\x80\x10\x16\xdc\x39\x5f\x2d\x58\xba\x5c\x80\x6b\xd4\xc7\x8e\x72\x3d\x61\xf8\xf9\x7c\x42\xe5\x7c\x0e\x81\x5e\x72\x5d\x0f\x9c\x4d\x85\x19\x06\xa7\xa6\xd3\xf1\xe4\xf1\x30\xfb\xfb\xe3\xa8\x15\xbe\xc2\x52\x66\xc0\x5a\x1f\x86\x05\xe5\x4e\x16\x94\x03\xf2\x08\xe5\x7c\x99\x4b\xbe\xf3\x9f\xb8\xfe\x93\xef\x7c\xff\xc9\xd3\x31\x1a\xf0\xb4\x81\xcf\x97\xde\x7d\xf2\xed\x36\xa4\xf0\xfd\xcc\x53\xb7\x23\xb8\x49\xc5\x36\xf0\x52\x92\xa3\xdd\x5d\xff\xa9\xdc\x02\xe9\xee\xae\xbf\x6d\x9e\x9f\xc8\xc7\x27\x8f\xdc\xd4\xf8\x39\x8c\xcd\x8e\xc8\x43\x67\xe8\xd8\xf3\x3c\x46\x11\x79\xb2\x8d\xf3\xd0\xf9\xd4\x4e\x7f\xd4\x25\x21\x8b\x9b\xe2\x42\xcb\x0b\x1c\x07\x73\xe4\xe9\xc3\x7c\x58\x0c\x7d\x9c\x10\xcf\xdf\xd9\x29\xd1\xd0\xc7\x0b\x92\xec\xee\xfa\x78\x45\x86\xdf\xe1\x25\xc9\xa6\xf9\xd0\x9f\x8c\xf1\x9c\x64\xd3\xa1\x3f\xf1\xf1\x0c\x5c\x99\x2e\x23\xd8\xaf\xcb\x01\x99\xe3\x94\xcc\x5c\x5e\x7a\xb8\xe2\xc5\x67\xbb\xbb\x64\xb8\xc2\xab\x01\x29\x83\xd5\xee\x38\x48\xc9\xf6\xb7\x4f\x1e\xa6\x03\x51\x0a\x43\x89\xd5\x90\x3c\x15\x9a\x1a\x31\x49\xad\xb2\xa9\x2e\x5b\x40\xd9\x18\xca\xc6\x1d\x65\x25\x09\x96\xa2\x94\xf8\xc3\x85\x96\x12\xa4\x96\xdf\xe9\x5e\x3c\x7d\x13\xbf\x99\xf8\x5b\xe3\x87\xde\x0c\xfa\x8e\x38\x70\x78\x1d\xb3\xd3\xd1\x32\xbf\xf4\xb6\xc1\xd3\xdd\x90\x2c\x24\x6d\xaf\x32\x3d\x8c\x1f\x5a\x79\xd2\xa1\x10\x67\x36\xa9\x40\x35\x99\x38\x95\xbe\xb8\x31\x88\xe7\xc8\xd3\x87\xe9\x30\x1f\xf2\xe9\xe3\xc3\x5a\xf0\x51\x2d\xc9\x8a\x4f\xe8\x9c\x6c\x3f\x02\x78\x63\xd5\x3e\xdc\x7e\x8c\x86\xf6\xfb\x77\xdf\xa1\xc9\x18\xcf\x48\x31\x1d\x4f\xd2\xa1\x8f\x4f\x49\x31\xf5\x27\x43\x1f\x1f\x13\xb6\x33\x5e\xaf\xf9\xa0\x99\xeb\xfa\x5b\x6c\x67\x3c\xf5\x27\x42\xd8\xc7\xc4\xa0\xe2\xe3\xd2\x63\x08\x43\xd0\x1a\x10\x00\x33\x42\x88\xbf\x35\x9e\x7a\x25\x51\x89\xbc\x0c\x8e\xc9\x0a\x4d\xbc\x58\x94\x9a\x2f\xf2\xbc\xf0\xe0\x71\x91\x9f\x78\x0c\x6d\xc1\xf3\xab\x37\xdb\x08\xb3\x87\x5e\x62\x4f\xd8\x30\x46\x68\xc7\x77\x5d\x2f\x1e\x0e\x71\xf2\x90\x6c\x23\xec\xb1\x01\x89\x07\xcb\x5d\xe2\x4f\xe7\x5b\xc9\x64\x6e\xcf\x9d\x3f\x5c\x22\xf4\x30\xd9\x25\xdb\xbc\xc8\x60\x80\x93\x2d\x5e\x04\xb2\xaf\x78\xaf\x64\x57\x64\x79\xaf\x24\x1e\x7b\x98\x0c\x7d\x64\x57\x92\xf3\x02\x64\x89\x26\x5e\x49\x98\xfd\x61\xd9\x91\x91\x8c\x11\x0a\xf2\x5d\xf2\x34\xa0\x61\x36\x98\x89\x8b\xa6\xc4\xb3\x01\x39\xc5\xe5\x16\xdf\x4d\x38\xb7\xf6\x5e\xbc\xb3\x93\xaf\x4b\xbc\x18\x90\x3c\x58\xec\x8e\xed\x42\xb1\x28\x14\x8b\x42\x0b\x28\x04\x9f\x87\xa7\xd1\x9a\xf8\xdb\x4f\x1f\x1e\xb7\x64\xd2\x02\x32\xdd\x54\x9a\x22\xb1\x1c\x8b\xd5\xc4\xf3\x5d\xd6\xa2\x4e\x28\xac\x7a\x84\x20\x3f\x72\x08\xc9\xa4\x36\x6d\x17\x6a\xa5\x21\x59\xa1\x25\x82\x9f\x92\xe3\x92\xd0\xf5\xfa\xa6\xb2\x54\xe7\x0a\x49\x33\x6f\x94\xfe\xe5\xb7\x4b\xff\xf2\x90\x46\x88\x12\x21\x3e\xb3\xdd\xb6\x85\x1d\x12\x40\xde\x03\x70\xb5\x6b\xbf\x79\x0d\x59\xe0\xfd\x6a\x64\xb7\x56\xd9\x14\x0c\xe6\xf7\x17\x0c\x3a\x28\xb8\xbb\x71\x2d\x1b\xdc\xd0\xbc\x11\x12\x7e\xd5\xba\x48\xc9\x87\xf0\xc2\x1b\x46\xff\x5b\xcb\x24\x3a\x20\x6e\x29\xed\xd2\xf8\x3f\xb1\x78\xf5\x86\x30\xbb\xbd\xa9\xff\xda\xa2\x36\xbb\x85\xb3\x3b\x3a\xa6\x96\xbb\xe6\xb6\x30\xcf\x0a\x5a\x52\xb6\x61\x76\x21\x24\x90\xaa\x44\xe5\xb5\xea\x55\x49\x1e\xaa\x6a\xb5\x16\x14\x2c\x3c\x3a\x8f\xd6\xad\xd5\x04\x26\x1a\xd1\x18\x4b\x06\xa3\x1c\xa8\x44\xc1\xe8\x0e\x0b\xa8\x50\xd0\x34\xc3\xb3\xf2\x85\x34\x0a\xc7\x51\x54\x63\x9e\xeb\x2f\xaa\x12\x8b\x21\xbd\xa1\xbc\x27\xb0\xe4\x3b\x32\x35\x92\xfc\x48\xb2\x2a\xef\x9d\x1f\x37\x52\xb6\x23\xd4\x54\xbd\xb4\x15\x2f\xac\xf9\x34\x13\xc5\x4f\xe4\xe6\xb0\x4d\x92\x8d\x63\x87\x6d\xd2\x93\x9c\xf7\xd2\xac\x57\x20\x09\xa1\x39\x4e\xa5\x14\x7f\x8a\x30\x8f\xda\xba\x3f\xf2\x28\x9b\x75\xae\x2b\x71\xb6\xe1\x48\x87\x92\x99\xbf\x35\xc6\x05\xd1\xd7\x84\x88\x73\x17\x39\x38\x27\x5b\xe1\xd1\xd1\x6f\x0f\x46\x0f\x07\x53\x0f\x85\x47\xd1\x4d\xb5\x8e\xb6\x4e\x70\x4a\xde\xd3\x93\x17\x57\x4b\x2f\x1f\x09\xf7\x80\xfc\x7e\x34\x11\x04\x8d\x74\x99\xff\x1b\x89\x1e\x12\x15\xab\xc6\x75\x19\x2e\xdb\xb9\x4b\xba\x98\xbb\xae\xf9\xdb\x2e\xc6\x53\x39\xf1\xb0\x5e\x97\xeb\xb5\x0a\x62\xe0\x39\x16\xcb\xd8\x41\x1e\xc2\x8b\xf6\x94\xa8\x4b\x13\xaf\x48\x32\x12\xa3\xe3\xa8\xd3\x74\x65\xf2\xa8\xf8\x54\x73\xb2\x9c\x2e\x75\x01\x99\x1a\xd4\x19\xff\x96\x2c\xdd\x62\x76\x68\xf9\x7c\x3a\xef\xf0\xd6\xe9\x94\xd0\xac\x63\x07\xbc\x69\xe7\xea\xf7\xa9\xeb\xb6\xa6\x06\xe4\xea\xae\xbb\x50\x97\x36\x21\x05\x4f\x51\x2d\xce\xa7\x73\xf5\x65\xa2\x24\x05\x84\x0e\x34\x37\xdd\x19\x3b\x12\xb3\xa3\x84\x0c\xb3\xa9\x33\x1c\x3b\x13\x56\x75\xf9\x6e\x54\xba\x17\x12\x6d\xa5\xa0\xbb\x06\x62\x05\x8a\xa6\x8e\x33\x99\x79\xe0\x8a\x36\x05\xbd\x62\x8f\xa2\x29\xd5\x8e\xed\x72\xec\x1c\x1d\x3d\x70\x1d\x34\xa1\x55\x85\x6c\x85\x23\xcf\xff\xb6\xeb\x3e\xb3\x39\x26\x9a\xb3\xb9\x3d\x1e\xe3\x9c\x38\x9f\x3e\x2d\xf2\x59\x5c\x9e\x7e\x3a\xe5\x7f\x34\xa5\xfa\xe9\x93\x83\x53\xf2\xfd\x78\xfc\x9d\xff\xfd\xf7\xdb\xdf\x3e\xfe\xee\xf1\xf8\xfb\xef\x7d\xbe\xf7\x0c\x86\x23\x8f\x54\xc4\x69\x4d\x9d\xfc\x2c\xcf\x17\x34\xce\x22\x07\x27\x26\xf1\x79\xcc\x68\xe4\xe0\x85\x49\x51\x9b\x2a\x72\xf0\xca\xa4\xfe\x48\x33\x5a\xc4\x2c\x2f\xac\xcf\x4b\xf3\xf9\x75\xbc\x8c\x1c\x3c\x37\x09\x22\xc2\x63\xe4\xe0\x99\x49\x13\x5b\x32\x72\xf0\xa9\x49\x13\x67\x28\x72\xf0\xb1\x75\xf4\x28\xcf\x74\x6e\x25\xc0\x3e\x8b\x1c\xfc\xba\xe3\x7c\x9e\x90\x3a\x6a\x27\x38\x66\x91\x83\x2f\x6a\xa3\x8c\x7f\x4e\xe9\x65\xe4\xe0\x6b\x6b\xa4\x8b\x3c\x66\x8f\xb6\x25\x42\x88\xf7\x1a\x5f\x9e\x3c\x56\x5f\x2e\xcd\x97\x97\x8a\x21\x10\x39\xf8\x4b\x2d\xd9\x7f\xa2\xd2\x3f\xd5\xd2\x4d\x03\x6f\x4d\xba\x61\x2c\x44\x0e\x3e\x6c\xa4\xef\x2f\xe2\xf3\x25\x9d\xa9\xcf\x57\xf5\xcf\xa6\x9d\x37\xf5\x0f\xa6\xa1\x57\x64\xeb\xe8\xf2\xe1\x83\x2d\xfc\x82\x6c\xfd\x76\xa4\xf2\x8c\x06\x53\xb0\x9d\x2c\x56\x09\xcb\x8b\xa3\xe8\xc1\x16\x3e\x20\x5b\xbf\x79\xd3\xc9\x78\x1d\xfa\xc3\xef\xa3\xa3\xd9\x43\xf4\x60\x0b\x7f\x26\x37\x55\xf0\x39\x8c\x23\xf2\x39\x6c\x62\xcd\x3c\xed\x84\xff\xb9\xe0\x7f\x4a\xfe\x27\xe1\x7f\xae\xf9\x9f\x3d\xfe\xe7\x92\xff\xf9\xc2\xff\x7c\xe2\x7f\x96\xfc\xcf\x9c\xff\x99\xf1\x3f\xa7\xfc\xcf\x31\xff\x73\xce\xff\xbc\xe6\x7f\xde\xf2\x3f\x87\xfc\xcf\x15\xff\xf3\x26\x22\xfd\x31\xb6\x9a\x06\xec\x44\x34\xbd\xa8\xf5\xe9\x23\x8d\xcf\x60\xe3\x45\xa4\xef\xc3\x91\xdf\x6f\x83\x54\xea\xba\x20\x6c\x6b\x41\x52\x8a\xcf\xfe\x30\x00\xfe\x48\xf6\xd7\xeb\xb3\xdb\x00\xf0\x73\x0e\x6c\xfa\x6c\x94\xe5\x33\xb0\xac\xe7\x00\xff\x19\x79\xde\x01\xd8\x32\xd7\xcd\x5c\xb7\x9f\x59\x59\x33\xfc\x8e\x3c\x73\xdd\x67\x1a\x38\x11\xf2\xdc\x80\xdf\xf7\x0d\x33\x43\x8e\x9f\x00\x5f\x17\xf4\x50\xb0\x15\x45\xf1\x97\xa6\x41\xe2\x8c\xc3\x2e\x3b\xc7\xef\x4d\x85\x6c\x08\xf3\x42\xa7\x8a\xb1\x24\x29\xe0\x02\x6c\x8f\xbc\x8c\xd0\x70\x30\xc8\x23\x14\x0c\x06\xf9\x4e\x1a\xa0\x8c\x30\x2f\x03\x05\x5f\x9c\x5b\x1a\x29\x96\x03\xca\x97\x86\x59\x25\x02\x55\x09\x6f\xa2\xd4\x0e\x6d\xdb\x37\x51\x1d\xd4\x9d\x83\x58\x71\x7d\xc3\x48\xbf\xef\x71\x18\x8e\xaa\x24\x66\xc9\xa9\x97\xa1\x9b\x0e\x45\x81\x0f\xa6\x89\xa1\x8f\x33\xa2\x62\x0e\x96\xe9\x17\x6a\x89\xe2\x3a\xf0\x7b\x3e\xec\x2c\x1c\x0c\x58\x44\xc2\x02\xd3\xa8\xaa\x3b\xcf\xfc\xe9\x6e\x7d\x77\xe6\x65\x08\x59\x2a\xf2\x3f\xfc\xe1\xbe\xe8\x9e\x50\xd1\x0b\x5e\xc9\xcf\x92\xac\xd5\x17\x34\xfe\x95\xb4\x83\x07\xe3\x1f\x5b\x97\x3d\xfe\x27\xf9\x18\x3a\x9f\x3e\x25\x79\x41\x87\xbf\x97\x9f\xca\xd3\xb8\x80\x9b\x23\xc2\xff\x6a\x85\x06\x20\x5b\xe1\x6f\xa3\x68\xf0\x60\x6b\x44\xaf\x68\xe2\xfd\xd3\x75\xff\x09\x44\x91\xfa\x1d\xbd\x7c\xf1\xe9\xdd\xfb\xb7\x87\x6f\xd7\x6b\xc7\x88\x27\xe8\xd4\x11\x20\xd8\x2b\x8b\x04\x7d\xf2\x47\xce\x80\x4e\x1c\xa7\xf2\x10\x7e\x40\x7e\x35\xd8\xc6\x3f\xc8\x8f\x0d\x6c\x0c\xff\x9b\xfc\x68\xbe\x53\xaa\xf0\x28\xe7\x37\x67\xf0\x40\xdc\x99\xff\x40\xc6\x57\x6c\x27\xf2\x25\xaf\x59\x93\xab\xde\xc4\x5a\x4f\x2c\x1a\x3d\x9c\x7a\x53\x72\x74\x74\xe4\xa1\x75\x6f\x9e\x17\x1c\x0c\x8a\x84\x08\xf1\x8a\x1e\xf8\xa3\x87\x53\x07\x0d\x9c\x07\x0e\xc2\x8c\x92\x77\xd3\x8f\x52\x6c\xa7\xb0\xa1\x8c\x92\x8f\x0a\x61\x2a\xf8\xb3\x01\xde\x38\xa7\xe4\x27\xaf\x33\xfc\x20\x16\xa9\x08\xa7\x0d\x81\x1f\x8e\x29\xf9\x91\x2f\x15\xf4\xf4\x65\xf9\x42\x87\x74\xc4\x25\x25\x3f\x4b\x85\x69\x9c\x50\x72\x5b\xfc\x65\xbc\xa0\x84\xd1\x29\xa3\xa3\xb4\xac\x77\x77\x65\x75\x89\x2f\x9f\xee\xc8\x92\x92\xe7\xd4\xfb\x88\x1d\x75\x1b\x3a\x08\xcf\x55\xda\xeb\x78\xe9\x20\x3c\x53\xaf\xef\x8a\xfc\x3c\x2d\xa9\x83\xf0\xa9\x4a\x3a\xa0\xcc\x41\xf8\x58\xbd\x4a\xe0\xeb\x20\x7c\x0e\x49\xa2\x15\xec\x88\x41\x3a\x08\xbf\xa6\xe4\x77\xea\x2d\x29\xc2\x27\xf0\x34\xa7\x08\x5f\xc0\xd3\x8c\x22\x7c\x0d\x4f\xa7\x14\xe1\x3d\x78\x3a\xa6\x08\x5f\x52\x92\xd1\x69\x46\xdb\x08\xe9\x17\x4a\x2e\xe9\xf4\x92\x8e\xc0\x24\xfe\xed\xbc\x85\x92\x7e\xa2\x8d\x83\xd7\x02\x61\x40\xcf\x24\x0b\x1a\x17\x1e\x07\x5f\x6c\x27\x0b\x74\xb4\x54\x4e\x7a\x08\x5d\x65\xca\x3c\x90\x6b\x15\x1c\x94\x5a\xe7\xfa\xed\x7f\xb8\xfe\xc3\xff\x70\xfd\x57\xd4\xf0\x4b\x3e\xcd\x62\x16\x7f\xfa\x04\x22\x3b\x18\x97\xc9\xf6\x86\xda\x9c\xb6\x0f\x14\xbc\x96\xb7\x31\xf4\xde\xbd\x92\x6e\xc5\xe3\x7f\x82\x86\xe1\xf1\x1f\x2a\x50\x8f\xc3\x7f\x29\x75\x38\xb1\xd7\x8f\x69\x2b\x79\xbd\xfe\xb7\xc1\xfe\x63\x28\x3d\xdd\x64\x31\x3a\xf4\x71\xa1\xa0\x2f\x9f\xaf\x6c\x87\x06\xa8\x08\xb3\x88\xdf\x58\x96\xaf\x69\xad\x58\x86\xe5\xc5\x33\x09\x23\x5c\x68\xb3\x4b\x9c\x93\x7e\xbf\x30\x36\xa2\x42\x95\xa0\xcf\xef\x76\xdd\xed\x14\xad\xd7\x10\x46\x45\x3a\x5b\x20\x24\x5d\xaf\xdf\x53\x08\xf5\x82\xd6\x6b\x6d\xc4\xd8\x71\x3b\xbe\xa2\x8d\xb8\xbd\x7c\x25\xff\x61\x02\x17\xb9\xee\x4b\xea\x15\x38\xe3\x33\x62\xd4\x3c\xd7\x6b\x26\xfa\xb1\x5e\x8b\xe8\x32\x99\xb5\x84\x2f\x68\x73\x2a\xb4\x90\x28\x1b\x0e\x03\x94\xce\xbd\x97\xd4\xa3\x61\x16\x01\xca\xa0\x09\xa8\x4c\xcb\x78\x4c\x5d\x07\xd4\x66\xc4\xe3\x17\xa2\x9b\x07\xa0\x37\xe4\xba\xde\x01\x49\xa7\x85\x47\xe5\xb7\x49\x01\x91\x38\x74\x37\x0f\x54\xcd\x90\xbf\xff\x2b\xb5\xa8\x35\x2a\xb1\x35\xd8\x61\xfc\xf3\x3e\x10\x94\x07\x5d\x9a\x52\x6a\x25\xc0\x52\xde\xe0\xaf\x1e\x43\x01\x73\xdd\x36\x0d\x1a\x8e\x23\x7b\x4f\x81\x18\xcb\x11\xd1\x33\xe0\x59\x89\xb6\x30\x7f\x5f\xae\x18\xbc\x2f\x57\x96\xd1\x09\x68\x70\xf7\xb5\xc5\x4f\x17\x13\x1a\xb6\x97\x89\x42\x07\xc6\x60\x62\xb7\x15\x48\xda\xc8\xf2\x3d\x57\x04\x46\xed\xc4\x8a\x67\x4c\xf1\x01\xaa\x74\x3c\xce\x33\xf2\x0e\x2c\xb1\x3e\x92\x33\x42\x16\xeb\xf5\x19\x21\x2b\x3e\x27\x3f\xd8\x33\x56\xef\x84\xa5\xf5\xde\x33\x56\x39\x17\x3a\xfa\x70\x7d\xa6\xb4\x8e\x4d\x43\x2f\x29\xe3\x78\x86\xa7\x14\xa2\xce\x08\x99\x41\xe3\xf1\x7a\xfd\xd1\x75\xfb\x29\x34\xf3\xd2\xea\x43\x3a\xa5\x93\x9b\x2a\x68\x2d\x54\xd3\x36\xd1\xc2\xe7\xac\x6e\xac\xd7\xbf\xf0\x01\x4d\x6f\xaa\x89\xc7\x48\x0e\x43\xfe\x95\x7a\x0c\x4d\x53\xfe\x77\x72\x23\x3d\x30\xb2\xca\xfb\xc8\x33\xdd\xb2\x06\x32\xf1\x8c\x6f\xcf\x67\xc2\x8a\x8d\x43\x03\xdc\x99\x8b\xba\xee\x19\xf5\x18\xfe\x91\x02\xee\x8b\x2a\xef\x00\x82\x76\x2b\x5e\x68\xff\x73\x78\x16\x35\x86\x78\xb0\xd1\x60\xb1\x36\x24\x6d\x9e\x21\x34\xfc\x7b\x27\x4a\xbd\x7e\x1f\xf6\x35\xa4\x95\x60\xbd\xd0\x4b\xd4\x27\xbe\x3c\xb9\x37\x50\x9f\x2f\x26\xb7\xec\x32\x36\xe5\x15\x8d\x8e\xe1\x7e\x47\x13\xf5\x14\x58\x55\xd5\x57\x3a\xc3\x14\xd4\x40\x84\x07\x1b\xf9\xf2\x4a\x06\xcd\x06\x7c\x57\xb4\x7a\x2d\x3a\xb5\x27\x7e\x2e\xc5\xcf\x17\xf1\xf3\x49\xfc\xbc\x15\x3f\x87\xe2\xe7\x4a\xfc\xbc\xf9\xcf\xf6\x76\xd1\xee\xe9\xb2\xab\x45\x4b\xb5\xe4\x77\x8f\x4d\x33\xef\x03\x9c\xd8\x31\x9a\xc0\xc3\x7b\xdc\x6a\x4b\xd4\x89\x33\x59\xeb\x5c\x0c\xe7\xbc\xbe\x28\x6a\x4d\x4e\xdb\x6d\x2a\x68\xd4\x75\xb8\x04\xf7\x0f\xbf\x12\xe8\x33\x35\xda\x07\x96\x87\x13\x42\xcd\x33\x66\x95\x6e\xea\xf8\x5e\xc3\xfb\x41\x0d\x0f\x1e\x7e\xb9\x73\x78\xaf\x55\xad\x29\xa1\xf8\x0b\x9d\x0a\xdc\xcc\xfb\x22\xaf\xd4\x14\xf1\xd3\x06\x14\x46\xca\x0b\x9e\xe1\x03\x30\x06\xab\x5e\xac\xd7\xde\x0b\x18\xe3\x15\x15\x87\xf1\x39\x79\xc1\xf1\x4f\x09\xa5\x9f\xab\x63\xf2\x9c\xbf\xbd\x00\x74\x83\xc3\x32\xdc\xdf\x47\x3c\xf7\x33\x52\x8f\x05\xbf\x61\x6c\x52\x0f\xd5\xd2\x04\x83\x7b\x60\x5a\x6c\xf4\xff\x00\xe0\x96\x99\x3b\x99\x5a\x01\xe4\x39\x90\xa5\x61\x3e\xe0\x57\xbb\x05\x66\x69\xc5\x2f\x4e\xbe\x1c\x7c\x88\x3f\x72\x40\x01\x18\xc3\xe4\x47\x6a\x35\x7c\x6b\x83\x35\x1c\x0c\x5a\x72\x5d\xb0\xe9\x65\x70\x7f\xe2\x8c\x93\xbc\x28\xa8\xbc\x67\xeb\x35\xc5\x86\x96\x03\xa1\xf5\x33\xe1\x05\x22\x4c\x49\x1e\x21\xfc\x8a\x7a\x07\x38\xc5\x07\xd4\xcb\xe5\x85\x9a\x62\x8a\x5f\x20\xc4\x89\xbd\x03\x73\xe3\x7e\xa6\x16\xfe\x24\x2f\x4d\xb8\x5c\x28\xfe\x97\xeb\xfe\x8b\x5f\xfb\x22\x0e\xd6\xcf\xe2\xcb\x4b\xe0\x3f\xd2\xc9\x0b\x24\xb8\x91\xbf\xc3\x9d\x21\xe1\xa8\xae\x75\x9f\xde\xbe\x83\x2d\x28\x61\x9f\xd6\x82\x43\x4c\x58\x64\xf9\xc6\xef\x77\xab\xda\x33\x6a\xa0\x63\x06\x91\x28\x38\x0c\x37\xfe\x2b\x80\x97\x60\xc5\xfa\x07\x96\x81\x90\xe6\x13\x16\xe6\xa0\x3d\x36\x2d\xbc\x2c\x8c\x23\x0c\xd1\x4a\x62\x98\x52\x85\xdc\xbf\xa2\x5e\x86\x63\xac\xf5\xba\xcb\x29\xcf\x34\x29\x2d\xa3\x09\xdd\x95\x8f\xb4\xee\x3d\x46\x21\xb9\xed\x75\xd6\xf6\x43\xf2\x8a\x52\xfc\x61\x83\x47\xac\xd7\x46\xc9\x92\xbf\x18\xa6\xf5\x7a\xed\x1c\x0b\x26\xaa\x03\x4a\x8b\x3a\x5e\x91\xd3\x27\x84\x4e\x04\x9f\x98\xd0\x8a\x5f\x6a\x59\xd8\x42\x4d\x8c\x9a\xe3\xc4\x39\x8d\xcb\x53\x27\x9a\x40\x60\x2b\x33\x8c\xe7\x74\x93\xfe\xb6\x31\xd5\x87\x46\xe8\x54\x4c\xcb\x84\xe3\x7f\x55\xcd\x66\xf6\x33\xf5\x32\x34\xcd\xe4\x2c\x56\x9f\x2c\x72\x4a\xd0\x0f\x6d\xe1\x97\xa2\x08\xce\xe9\xf4\x5c\x05\x65\xbd\xa9\x2a\x5c\x2b\x2b\xa2\xb4\x76\x39\x99\x82\x4a\x4e\xe3\x12\xb0\x79\x19\xcc\xb5\x56\x31\x38\xce\xaa\x55\x76\x42\x3b\x6c\x8e\x49\xad\x10\x07\x31\xe7\x54\x5f\x2e\x21\x35\xae\x5d\x40\xcd\x43\x4e\x80\xb6\x9c\x91\x28\x1f\xc3\x14\x4d\x79\x6e\x35\x01\xf5\x86\x4f\xe3\x2e\x67\x5f\xf5\x86\x65\x85\xe7\x6a\x92\xf9\x89\xe7\x15\x5a\x2d\x34\x6a\xad\x09\x2a\xed\xd5\x6a\x4e\x03\x39\xa7\x56\x18\x7a\x36\xcd\x27\x4c\x46\xc7\x7e\xfb\x15\xeb\x14\x46\x8d\xfc\x1d\x6b\xd3\x31\x30\x9c\x91\x17\x14\xba\xaf\x7c\x7c\x78\xd9\xce\x18\x50\x63\x62\x99\x05\x4c\x99\x08\xa2\x3c\x29\xa9\x1a\x70\x86\x7d\x24\x42\xbd\xbe\xfd\xca\x55\x6c\xb5\xd9\xcb\x76\xc6\x6a\xed\x38\xbc\x0e\xfd\xe6\x60\x9a\x4b\x24\xcb\xf1\x6a\x6a\x35\x53\xb4\x3b\xf4\x1b\x65\xdb\x0b\x61\x49\x5b\x75\xc9\x82\xf7\x29\xb3\xfa\x54\xec\x8c\xa7\x99\x2d\x48\x9f\x64\x61\xc1\xbb\x46\xd4\xf2\x1c\x7e\xc5\xf2\xdc\xf0\xc3\x3d\xe1\x30\xf3\x13\xc5\xe7\xf1\x92\x3f\x7a\x73\xba\x5e\xbf\xa5\x08\x0b\x08\x20\xbf\x56\x8d\x8a\x37\x9f\xb1\x8f\x54\x99\xfd\xc9\x4c\xa0\x90\x7c\x78\xdb\x6a\xb4\x4b\x8a\x9b\xbc\x51\x6c\xc3\x74\x5b\xc5\xc4\xd1\x6e\x14\xdb\xb8\xe5\xad\x82\x02\x3f\x60\x2a\x00\xfc\xd5\x57\xcc\xa1\x60\x4e\x34\xca\xdc\x01\x82\x54\x61\x7b\x86\xae\xee\x31\x43\xf5\xc2\x6a\x92\xae\xee\x31\x49\xf5\x92\x6a\x9e\xae\xbe\x7a\x47\x02\x63\xbc\x97\x82\x63\xcb\x84\x5f\x15\x6f\xa9\x71\xb7\x66\x67\xea\xf3\x6d\xa4\xdc\x9b\xec\x14\x43\x5f\xdb\xc1\xb4\xd4\x40\x82\x46\x1b\x30\xa5\x87\xd4\xcb\xcd\xfd\xd9\x58\x20\x40\x1b\x9e\x51\x92\xd0\xe9\x4f\x5e\x42\x15\xe3\xb0\x1d\x34\x98\xc3\x9f\x77\x9d\xeb\xa0\x19\x34\x96\x39\xfb\x7b\x5a\xf7\x6e\xe8\x31\x29\x51\x65\xd3\x74\xc2\x38\xf8\xb1\xee\x5b\x2d\x17\x3e\x50\xe2\x55\xe4\xba\x14\x1c\x4a\xd0\xbf\xfb\x84\x8c\x5d\x97\xee\x58\x38\xc8\x2f\xb4\x61\x54\x65\x93\x67\x0a\x15\x24\x84\xd4\xa2\x6c\x5b\xb2\x79\xb3\x52\xeb\xf5\x8f\x16\x1b\x05\x10\xa9\x1b\x23\xaf\x40\x37\xac\xb8\x56\xa3\x7c\xa0\x47\x29\xe4\x12\x0c\xdd\x54\xd6\x67\x3a\x70\x1c\xeb\x4b\xa5\x6c\xcf\x2c\xa9\x08\xad\x93\xa8\x22\x78\x3e\xe5\x58\x84\xeb\x32\x7e\xdf\x54\xde\x92\xba\xee\x3b\x0a\xa8\xd7\x52\xfc\x58\xe2\x4d\xcf\x47\x08\xf5\xc9\xc5\x7a\x3d\x37\xd9\xe6\x14\xf5\xc9\x72\xbd\x9e\x51\xd7\xd5\x42\x32\xc9\xc9\x8d\x9c\x3e\x79\x47\xbd\x19\xa8\xc0\xe4\x8b\x0b\xea\x21\xb4\x5e\x9f\x9a\xc2\xa7\xbc\xf0\xf1\x7a\x7d\x6c\x17\xd6\x12\x36\x28\xcc\xb3\x1d\x8b\x48\xa4\xef\xba\x2e\x1b\xbd\xf8\x38\x23\x8c\x90\xd9\xb4\xb6\x1a\x8a\x97\x5b\x90\x6c\xfa\x3b\xc7\x51\x14\x9e\x97\xce\xbd\x42\xb9\x25\x28\x24\x25\xfd\x9a\x2a\x12\xe6\x42\x90\x34\x27\x3a\x61\x29\x09\x67\x95\xd0\x1e\xa9\xa4\x71\x75\x89\x63\x91\xb0\xd7\x2a\xa1\x87\x67\xa4\x4a\x02\x77\xfe\x40\xeb\x0a\x85\x66\x33\xff\x64\x21\xe8\x3d\x2d\xcb\xea\xe0\x86\xb4\xb6\x74\x7b\x1b\x93\xd4\xb0\x1f\x91\xeb\xf6\x01\xa7\x07\xb2\xec\x07\x4a\x16\xb6\x6e\x84\x3e\x3c\xbe\x75\xae\x7e\xb6\xb6\x3e\x10\x0a\xd3\x7f\xdb\x2a\x10\x6a\x48\xc0\x53\x62\x84\xac\xcc\xf6\xfb\x95\x6e\xc4\x83\x81\x69\xeb\x59\x5c\xdb\xf5\xba\x76\x72\xac\x23\xf2\xa3\x3d\x15\x30\x2f\xd3\x37\x60\xc2\xd8\x50\xa0\xeb\xff\x62\x33\xb2\x56\x40\x7e\x89\xb6\x43\xa3\xf1\x03\x46\x5a\x92\x4e\xa5\x08\x69\xfe\x5d\x86\x5c\xd7\xb1\x76\x91\xd3\x27\x19\x1c\x5b\x0e\xed\x0c\x23\x17\x48\xea\x2a\xeb\xd4\xe6\x50\x6c\x48\x7e\xe6\xfa\x63\x40\x63\xda\xba\x19\x38\xf3\x1e\x7d\x8f\x80\x5c\xfc\xeb\x94\x34\x9e\x8e\xc7\xca\x11\x51\x4b\x5f\x23\xe9\xd6\xd7\xb0\x14\x31\xf6\xca\xeb\x2c\xe9\xd6\xc6\xe8\x56\xc2\xe8\xd2\xd1\xa8\xa9\x64\x2c\x16\x77\x2b\x64\xbc\x2b\xf2\xab\xeb\xba\x3e\xc6\x07\x35\x2a\xd0\xca\xb8\x5d\xa3\xe0\x75\x97\x46\xc1\x09\xb9\xa9\x82\x93\x70\x83\xe2\x45\x44\x9a\x9f\xb4\xe6\x45\xed\x93\xa5\x7a\xd1\x4c\xd7\x3a\x11\xcd\x0f\xdd\x8d\xd8\xda\x17\xed\x0f\x75\xf5\x8b\xd6\xf7\xee\xb6\x6a\x0a\x18\xa0\xc1\x70\x12\x26\xb5\x1c\x5d\xa5\x6a\x0a\x2b\xb5\x2f\x5a\x59\xa7\x96\x6a\xf4\x58\x9a\xc9\xb4\x91\xa4\x95\x26\x4e\xc2\x55\xed\x83\x54\x98\xb0\x52\x94\xaa\x0e\x4f\x9c\xd5\xbe\x28\xe5\x9c\x5a\x22\x68\xe7\xd4\x53\xa4\x7a\x4e\x2d\xb1\xad\x9c\x71\xf1\x55\xca\x19\xd7\x7f\x58\x39\x63\x8f\x5f\x8b\xd7\xb7\x29\x67\x5c\x76\x28\x67\x7c\x21\x97\xf7\x55\xce\xf8\x44\xbe\xb8\xee\x17\x4b\x39\xe3\x12\xbf\x25\x9f\x5c\xf7\x82\x23\x13\x09\x2d\x4b\x7c\x58\x43\x6c\x8b\x6b\x29\x68\x87\x62\xd2\xdb\xb9\xf5\xe8\x39\x2b\x96\x2e\x1c\x04\xfe\x07\x4b\x8d\xb5\xac\xd7\x6f\x5d\xf7\xed\xe8\x38\xcd\x66\x69\x76\x62\x3d\xaa\xfc\x36\x8e\xe1\x21\x7c\x45\x0e\x5d\xf7\x70\x94\x96\xbc\x9f\xb3\xc6\xbd\xf5\x46\x01\x33\x79\xd1\x2a\x01\x97\xbc\x6f\xc7\x13\x23\x1a\x00\xc0\x28\x39\x89\x7e\x33\x1d\x67\xe1\x38\x92\x1f\xb7\x3b\x3f\xe2\x2c\xf4\x55\x8e\x47\x9b\x73\xe0\x0c\x74\x4a\x8d\x6e\x0a\x78\x01\x05\x5d\x60\x3e\x59\xaf\xf0\x0b\x7c\xd0\x52\x7f\xf8\xdc\xa5\xfe\xb0\xdf\x56\x7f\x38\x23\x7b\x1b\xd4\x1f\x3e\x92\xcf\x46\xf7\xe0\x39\xd9\x6f\xea\x26\x3c\xbb\x4b\x3d\xe2\xcc\x75\xcf\xa4\x7a\xc4\xd9\x1f\x53\x8f\x78\x47\xf6\x4d\x17\xde\x93\x8f\x62\x6a\x94\x94\xfe\x17\x5b\x1d\x42\x7e\x7b\xfe\xbf\xa4\x0e\xf1\x3b\xf9\x34\xdd\x6b\x68\x43\xbc\x24\x7b\x4a\x19\xe2\x03\xd9\xb3\x75\x21\x7e\x22\xbf\x4f\x7f\xb7\x2d\x64\x55\x91\x1f\x88\xf7\x8a\x74\x2b\x49\xbc\x90\xe9\xb8\xe3\xc2\x7e\xe5\xbd\x80\xfb\x18\xe1\x9f\x1b\x1a\x14\xbf\x92\xfd\x6e\x05\x8a\x1f\xc9\x81\xd2\x9f\xf8\x27\x79\x39\x7d\xa9\xe7\xf9\x30\x56\x6a\xac\x75\x05\x18\x73\x36\xf7\x8c\x0a\x43\x3d\x62\x98\xb5\xa6\xde\x4d\x85\x1d\x07\xdf\x54\x08\xd3\xc6\xe1\x7b\x00\x83\x6f\xea\x62\xfc\x43\x58\xf7\x9c\xc7\x57\xf8\xdf\x84\x43\xe9\x51\x96\x5f\x62\x0a\xad\xed\x29\xa5\x0b\x56\x6b\x5c\xeb\x4f\x64\xb4\xa6\x55\xad\x0e\x32\xf5\x8c\x12\x94\xad\xc4\xcc\x11\xad\x7d\x6a\x22\xd4\x0b\x41\xdd\xcf\x0a\xed\xfa\x99\x1f\x69\x8b\x2e\x25\xcc\x16\x17\x1a\xc1\xa0\xc9\xa0\xb4\x5f\xf8\xf0\x0c\x1c\x29\x9a\x8a\x0a\x8a\x1f\x09\xae\x17\x8c\xb7\xc0\x3f\xa7\xae\x90\xff\x57\x5a\x49\xff\x2b\xad\xc4\x74\x03\x6b\x0c\xa6\x1e\x46\x2a\x6b\x48\xbf\x50\xc2\xe0\xc7\xf2\x78\x55\xe3\x08\x03\x7e\x8d\x0b\xd2\xcf\x5c\x17\x54\x3a\x70\x0e\xcf\xfd\xc2\x75\x5f\xc0\x7b\xaa\xdf\xfb\xb9\xeb\x7e\xa4\xc2\x56\x3b\x5b\xaf\x8b\xf5\x3a\x5f\xaf\x53\x5c\x92\xf8\x3f\xa3\x34\x91\x90\xd2\x9e\x34\x5e\xe3\xc2\x52\x97\x78\xae\x30\xfa\x05\x5a\xaf\xe3\x9a\xba\xc4\x42\xea\x4f\xc8\x28\x1c\x90\xe0\x08\x37\x99\xfc\x05\xad\xd7\x29\xff\x2c\xc4\x89\xf2\xb3\x11\x59\x58\x09\x6f\x75\x05\x68\xbd\xbe\xa4\xde\x02\x27\x9c\xca\x95\xb6\x28\x0b\x3d\x82\xd2\x72\x35\xa5\x35\x30\x8c\x03\x99\x6c\xbd\x3e\xa4\xa0\x59\x81\x33\xb4\x51\xf5\x62\xa9\x4a\x5a\x0e\x95\xba\xd4\x39\x9e\xdb\xea\x1c\x87\xb7\xab\x73\x74\xd4\xb9\xba\x5b\x9f\xe3\xf0\xbe\xfa\x1c\xba\xfa\x1b\x4b\x74\x01\x6a\xf1\xff\x9a\xfe\x0b\x3e\xdd\x24\x79\x36\x4f\x4f\x56\x00\x4e\x27\xfd\x31\xa6\x1a\xb8\xf2\x37\x11\x2c\x31\xc3\x97\x45\xca\x64\x5a\x85\x26\x42\x07\xa5\x2a\xbe\x82\xbd\x07\xaa\x6b\x5a\xd2\x80\xcd\xfe\x1f\x57\xb8\xb8\x3f\x67\xfb\x0e\xa1\x43\xcd\x93\x0e\xaf\x7e\x48\x18\x58\x68\xb2\x46\x2b\xf7\x14\x47\xb0\xaf\x10\x47\x3c\xdf\x24\x8e\x28\xfe\xa0\x38\x82\x35\xc5\x11\xcf\x6d\x71\x44\xf1\xf5\x3c\xc7\xe6\xe4\x0c\xec\x39\x9d\x8e\x27\x3e\xce\x42\x1a\x11\xb6\x49\x62\x91\x7f\x95\xc4\xa2\xbe\xc6\xf9\x1f\x92\x5e\xac\xbe\x46\x7a\xf1\x63\x4d\x78\x31\x1c\xea\xf6\x85\x20\x23\xff\x7a\x41\xc6\xea\x6e\x41\x46\x7e\x0f\xa6\xf1\x6a\x83\x20\x23\xff\x23\x82\x8c\x55\x5b\x90\xe1\x0d\x06\x66\xac\x35\xa9\x46\x5b\xac\x91\xde\xbd\x86\x62\xc9\xf0\x26\x11\x47\x61\x44\x1c\x94\xae\xd7\x79\x5d\xc4\x51\xd0\xaa\xd1\xc8\xc6\xc5\xbe\xee\x90\x70\xdc\x76\x80\xd3\x7b\x70\xf6\xaf\xdb\xb2\x8f\xf4\x1e\x2b\x74\xdd\x96\x7d\xa4\xf7\x59\x1c\x53\x0e\x54\x08\x79\x87\x83\x6e\x5e\xbb\x3c\x70\x22\x0f\x01\x73\x74\x5f\x2e\x49\xfc\x95\x52\x92\x9c\xd6\x8f\x56\xfc\x87\x8e\x16\xbb\x65\xd2\x25\x52\x82\xb3\x46\xe5\x5f\x25\x4e\x89\xff\xb0\x38\x25\xfe\xf3\xe2\x94\x7c\x93\x38\x85\xde\x5b\x9c\x22\x66\x62\x30\x10\x4b\xb6\x59\xc2\x92\xde\x22\x61\x11\x75\x58\x35\x08\x91\xcb\x9c\xe2\x59\xd3\xf7\x81\xb9\xf0\x0b\x8e\x96\x29\x4f\xf9\x02\xc5\xcb\x04\x56\xa7\xe2\xbb\x04\x31\x47\x04\x84\x0f\x73\x92\x86\x73\x3a\x8d\x27\x83\x41\x01\xbe\xcb\xfb\x3e\x87\xda\x5e\x1e\x96\x11\x2e\x71\x8e\x90\xf0\xa9\xae\x95\x64\x0c\x66\x7f\xda\xe4\x6c\x1b\x2d\x03\xf0\x1b\x7e\x3c\x99\x4f\xfe\xe9\xba\xff\xac\x31\x6a\xa7\xed\x9d\xa5\xf1\x9d\x7f\x22\x9c\x11\x1a\xfe\x33\x0a\x38\x95\xc5\x1f\x24\x4d\x21\x5d\x41\xf5\xc7\x92\x86\x4a\xd1\x4d\x25\x56\xe7\x9d\x62\x60\x43\xc8\x26\x36\x85\x42\xd9\x44\x5e\xef\xfc\xcd\x8a\xa1\xd2\x64\x35\xcb\x0f\xba\x8e\xaa\xa6\xda\x7c\x6c\x0f\xef\x8c\x02\xda\x00\x43\x26\x24\x31\xb9\xce\xeb\xfa\x37\xfb\x9b\x34\xa0\xfb\xfd\x67\xae\xfb\x0c\xd0\xb6\x4a\xc8\xa8\xbc\x03\xe0\x80\xff\x32\x39\x97\xaa\x38\x0d\x2e\x78\x97\x1c\xe9\xe3\x1f\x94\x23\x01\x59\xac\xfb\xfc\x5a\x89\xaa\x44\x77\xdb\x2a\x93\x6a\x65\x84\x37\x7b\xd5\x91\x0d\x9c\xf7\x6e\xd6\xba\x64\xd8\x7f\xa1\x42\xba\x63\x31\xee\x0b\x81\xbb\x7a\x0d\x26\x7d\xb1\x5e\x73\xb4\x5f\x6f\x86\x02\x99\x78\x2e\x45\x97\x2a\xf4\x09\xb5\x3d\xa8\xd0\x3e\xa0\xa5\x33\x7e\xe3\x9a\x99\x4c\x71\x2c\xc2\x9f\xac\xd7\x5e\x0e\xa7\x2d\xa6\x08\xef\x53\x2f\x45\xa8\xdf\xd4\xd8\x04\xb5\xe4\x58\x1d\x8b\x4f\x14\x98\xf7\x38\xe1\x4f\xfc\x7c\xe1\x05\x89\x01\x38\x25\xa0\xda\xb6\x50\xd3\x06\x5b\x14\xa8\x82\x0c\x2f\xc4\xb8\x57\x24\x9d\xa6\x5e\x89\x13\x9c\x0d\x1c\x07\xf3\xfa\x63\x25\xbd\xc2\x4b\xa2\xcf\x08\x68\xed\x2e\x45\x8b\x73\x4e\xab\x25\x08\x9f\x92\xfe\x1c\x68\xb3\x04\xe1\x63\x78\xee\x9f\x02\x5d\x96\xa0\x60\x45\x12\x3c\x5f\xaf\x4f\xd7\xeb\xe3\xe9\x1b\xea\x95\x68\xba\x22\xe5\xe4\x8c\x7a\xe7\xa4\x44\xae\xfb\x8a\x7a\xe7\x3c\xe9\xaf\xd7\x3f\x2e\xd1\xe4\x74\xea\x2d\x49\xdf\xc7\xcd\xea\x6f\xd3\x2c\xd6\x54\x5f\x41\x7e\x9a\xfe\xe4\x65\x68\xd2\xa1\xd3\xd9\x54\x32\x2e\x10\x2e\x2a\x2f\xe1\x48\x17\x9a\x1c\x6f\x68\x55\x29\x90\xde\x4f\xe1\x72\x83\xba\xda\x07\x5b\x5b\xed\x83\x54\x56\xfb\x8b\x14\x52\x65\xff\x57\x24\x8c\x5a\xe2\xad\x33\x01\x24\x00\x98\xf4\xc9\x4c\x47\xd3\x91\x67\xe6\x07\xa9\x3c\x29\xb5\xc3\x98\x89\xbf\x24\x46\xad\xd1\xf8\xda\x09\x82\x80\x30\x6d\x59\x76\x87\x14\x3b\x73\xdd\xda\x5d\x97\xb9\xae\x84\x2b\x19\x22\xe4\x7d\xe5\x25\x68\xbd\xbe\xe2\x1b\x6e\xea\xad\x48\x89\xaf\xe4\x4e\xbb\x53\x51\xd3\x28\x3d\xf7\xb3\xc0\xe8\xf7\x81\xda\x28\xdf\x80\xb1\xd1\xed\x93\x1b\x2e\xdd\x89\xf5\x3d\xc4\xc2\x34\xc2\x89\x54\xf0\x2b\x23\x4c\xc5\x0d\x64\x2b\xf8\xe9\x83\x93\xb8\xae\x97\x10\x0a\x31\xd0\xf2\xe9\x92\xa3\xb4\x25\x4e\xd0\x64\xa1\x9e\x8c\xc6\x9f\x47\xf1\x73\x2a\xb4\x3a\x4b\x34\xd9\xe7\x63\x71\xdd\xfe\x01\xff\x5d\xaf\xbd\xae\x51\xdd\xad\x97\xfe\x45\xe9\xa5\x67\x14\x54\x6d\xf9\x7a\x23\x84\x26\x7c\xab\xc2\xc5\x74\x1e\x2c\x21\x54\x1b\xdf\x5c\x09\x5e\x21\x9c\x7b\x2b\x9c\x80\x12\x27\x38\x6b\x94\xa8\x53\x82\x50\x20\x21\xc7\x0a\xb4\x4e\x19\x68\x34\x9e\x50\x80\x69\x81\x56\xf8\x17\x6a\x8f\x00\x91\x62\xc4\xeb\x50\x50\x25\x6f\x4f\x4d\xe9\xba\x5e\x49\x52\x84\xa1\xe2\x18\x97\xa8\xaa\x10\x7e\x6e\xdf\x6c\x17\x75\x65\x82\xb7\x74\x93\x1b\x3e\x46\xfe\xe1\x59\x94\x9c\x71\x52\x3c\x61\x78\x8c\xb0\xcd\x6d\xd4\xb8\x87\x76\xcf\x80\xa5\x3e\xe7\x3f\xbc\x42\xbb\x62\xe6\xa5\x62\x09\x77\x52\x6d\x14\x1a\x0b\x3f\x0d\x6c\x90\x47\x01\x2f\xa4\xaf\x0a\xe9\xa5\xc7\x63\x03\x5f\x64\x66\x01\x2a\x95\x53\x07\xcd\x9b\x01\x66\x82\x17\x23\x0c\x22\x0b\x8e\x4e\xf3\x31\xc3\x50\xde\x53\x84\x85\x3d\xa8\x1e\xfc\xf5\xff\x3f\x14\x3f\xf7\xfe\x02\xc5\xcf\xf3\xba\xe2\xa7\xae\xfb\xb2\x56\x77\x4b\xde\x6f\xa9\xe3\x94\x4d\x75\x9c\xcc\xcc\x02\xc8\xdd\x5f\xdf\x4f\x29\xe7\xcb\x5f\xa8\x94\xb3\x6f\x2d\xf6\x27\x6a\x1c\xc3\x37\xf0\x8d\xba\xa2\x82\xe5\x7f\x33\x64\x11\x72\xdd\xda\x8a\x99\x0b\x8e\xcf\x21\xef\xe6\xdb\x2e\x12\x69\x8c\x2d\x37\xd0\x0d\xa9\x50\x41\xfe\xed\x21\x9c\x93\x78\xe8\x15\xc3\x4c\xc0\x77\x52\xe0\x7c\x77\x0c\xbd\x1b\x0c\xd8\x2e\x49\xb5\xa3\x34\xed\xe2\x64\x1c\x09\xff\xd2\xcc\x54\xac\x24\x5f\x12\x9d\xd0\x79\xf9\x9e\xff\xd7\xb4\x73\x27\xfc\xcb\xa3\xd8\x51\x92\x0d\xe7\x76\x9e\x9d\x2f\x79\x76\x5e\x46\x18\x6e\xe9\x93\xf4\xb2\x0a\xd5\x99\x79\xe2\x52\xaa\x26\xef\xa9\xc5\xf4\x3f\xbc\x5b\x5d\x89\x17\xbb\xa2\xe4\xd8\x02\x3e\x3a\xbf\x1e\x53\xe5\x21\x34\x3d\xee\x0a\xe1\xa6\x30\xf2\xe7\x1d\xb6\x80\xfd\x5f\x5b\x89\x15\x7e\xb3\x51\x43\xe7\x55\xa7\x86\xce\x67\x5a\x53\xb5\x39\xd0\xaa\x36\x2f\x28\x79\x70\x97\xa6\xcd\x41\x27\x86\xad\x6f\xf8\xd3\x1a\xd5\x4c\xc8\x0a\xf4\x6d\x96\xf0\x57\xe8\xde\x9c\x76\x6b\xf8\xdf\x4b\x49\xa8\xec\xd6\xe3\x6f\x9c\x63\x33\xd2\xfb\x29\xef\x9c\x75\xce\x52\x87\xb5\x26\x6f\xed\x23\x25\x57\xb7\x1a\x76\xd4\x42\xec\xf1\x9d\x7b\xd5\x49\x9a\xc9\x45\x6e\xac\x45\xff\x24\x84\x19\x8c\xac\x19\x7f\x6e\x77\x0f\x56\x74\x5a\x0a\xfd\x1d\x34\x79\xad\xd7\xee\x19\xc5\xef\x28\xf1\x9e\x75\x05\x3e\x33\xf4\x04\xaa\xf0\x05\xed\x8e\x36\xd5\xb4\x2b\x29\x76\xfd\x29\x0b\x8b\xa1\xaf\xd8\xb5\x38\x25\xc5\xee\xf6\x94\x85\xdb\x91\xb6\x39\xce\x0b\x2f\x27\xcf\xd4\x08\x76\x1f\xd9\xae\x0c\xf4\xc4\xe5\x53\xaf\x18\x0e\xcd\x8d\x8e\x53\x5b\x4b\x4c\x7b\x56\xe6\x1b\x2a\x6b\x6c\xa8\x42\x83\x42\x03\xa3\xcd\x4e\x29\xa6\xaf\x78\x11\xd7\xbd\x04\x3a\x46\xcd\xe3\xc4\x5c\x3a\x85\xeb\x82\x40\x21\x13\xf2\x86\x2c\x64\x11\x98\xbd\x69\x1f\x11\x18\x22\x74\xe6\xa4\xd8\x79\xa4\x6e\x93\x1c\x17\xc4\x47\x98\x1a\x36\x83\xa2\x1f\xb4\xbd\x46\x16\x05\xb1\xeb\x3e\x13\x68\x48\x86\x73\xcb\x0b\x13\x42\xa8\xae\xee\x69\xb6\x83\xa5\x93\xf5\x8e\xde\x5f\xed\x4a\x2d\x50\xdb\x05\x4c\x71\x8b\x67\xa3\xbc\x01\x13\xba\xbd\xfb\xb4\xee\x7d\xad\x73\x0a\x41\x7f\xba\xb4\xf9\x6e\x35\x65\x2e\x8c\x51\x72\xb6\xc1\x67\x61\x4b\xe3\x4a\x2c\x34\x27\x51\xbb\x34\x1a\xe2\xb6\x46\x43\x49\x52\x33\xce\x84\xc4\x4d\xbd\x85\x05\x29\xeb\x7a\x04\x2b\x12\x9b\x02\x4b\xe2\x15\x1b\x24\xf0\xf9\x2d\x12\xf8\xc2\xcb\x85\x04\x7e\xc3\x4c\x82\x42\xf2\xd7\x4c\xd6\x7a\xbd\x52\x93\xd5\xe7\xc8\x45\xfb\xd2\xfd\x8b\x9d\x84\x74\x40\xeb\xe5\xad\xf4\x58\x41\x92\x3f\x49\x8f\x15\xae\x5b\xd8\xf4\x58\xe1\xba\x72\x69\x0a\x44\xc8\xe2\x2e\x3f\xde\x17\x2a\xf0\xd9\x13\xf0\x6e\xcf\x1f\x1e\x21\x9c\x92\xad\xdf\x8e\x66\x83\x07\x5b\x01\x84\xb0\x2e\xbb\x94\xaf\x3d\x46\x44\xb8\x3d\xe6\x39\xd8\x69\x06\xd3\xd4\x33\x7c\x53\x19\xd4\x83\x15\xe9\xb9\x87\x64\xa1\xad\xa3\x72\xb0\xd5\xe9\x07\x51\x02\x2b\x90\x8d\xea\x28\x39\xa3\x55\xb1\x20\x34\x50\x66\xb1\xe5\xea\x58\x9c\x28\x6f\x6c\x47\x9b\xc1\x71\x23\x40\x4d\x49\xa0\xff\x2f\x33\xe6\xe5\xd8\x1f\x23\x9c\x88\x04\x50\xfc\xf3\x72\x11\xa4\xeb\xd2\x21\x84\xc4\xda\xc7\x56\x8e\x10\x1b\x5d\xa6\x33\x76\x4a\x4a\xed\x2f\xd1\x39\xed\xc8\x74\x4a\xd3\x93\x53\x26\x73\x81\x8f\xb2\x2b\x8e\x0c\xc6\xeb\x75\xc1\xc9\xb3\xcd\xde\x91\x8b\xa4\xa4\xac\x37\xa3\x65\x52\xa4\x4b\x96\x17\x10\xd7\x6b\xe0\x8c\x1c\x14\xb0\xd1\x8c\x66\x65\xca\xae\x49\x02\x5e\x0a\x19\x87\x77\x22\x84\x21\x52\x31\x35\x1b\x93\x25\xe7\xe8\x1f\x07\x6f\xdf\x8c\xc4\xac\xa4\xf3\x6b\xd8\xf4\xa4\x91\xc6\xc0\xb7\x35\x04\x30\x15\x46\x7b\x98\x99\xaf\x5d\x34\x7a\xee\xd1\xf6\xca\x8a\x70\xc2\xab\x62\xd1\x11\xb0\xec\xfd\xab\x5e\x5a\xf6\xa4\xaa\xd9\x6c\xe4\x68\xe5\x5b\x28\x60\xec\x25\xc5\x04\x6b\xdd\x5a\xf9\x3e\x70\x2e\x1d\x84\xa9\x9c\x58\xeb\xab\x48\x18\x38\xa7\xf0\x59\xce\x90\xf5\x5d\xa6\x0c\x9c\x2b\x07\x61\x26\xbd\x2e\xf7\x1c\x04\x93\x27\xde\x30\x7f\xbd\xe3\x38\x18\xc0\x23\xd4\x14\x47\xe0\x69\xb7\xd3\x29\x05\xe0\xa3\x77\xd5\x57\x73\xfc\x07\x3e\x4d\xd2\x8c\xd3\x67\xd6\x39\x56\x07\xf9\x80\xda\x97\x8c\x3c\x16\xd6\xed\xa0\xf4\xc3\xfa\xbe\xcd\x51\x3a\xa0\xcc\x0b\xfb\xe3\xa8\xeb\x20\x31\x74\x43\x09\xdf\x3e\xb8\x3f\x16\xf4\x22\x9a\xde\xe2\x81\x8e\x84\x51\xb3\x66\xba\xc1\x4f\xa9\x9a\x76\x24\x36\xe8\xe4\xb6\x5a\x65\x5d\x96\x37\xa2\xd6\x1e\xd6\xa0\x9c\x69\x11\xbb\xc7\xc0\x7d\x94\x30\x44\xae\x10\xda\xd4\x86\xf6\x26\x4f\xc2\x08\x0b\x7f\xfe\x46\x61\x61\x30\x40\xe0\x43\x9c\x69\xef\xe2\x34\xcc\x22\x64\xb6\x0d\x7f\x33\x8c\xca\x7b\xb9\xd0\x6b\x44\x41\xf8\xf4\x89\x96\xaf\xf3\xd9\x0a\x62\x73\x62\x7e\x76\x21\xf0\x5d\x5d\xf4\x30\xf3\x32\xef\xf1\xb7\x88\x03\x58\xfe\xf8\xdd\x77\x88\x83\x58\x48\xe5\x8f\x31\x3c\x7e\x3b\x46\x08\x97\xe2\xd1\x47\x1c\x50\xf1\x47\xff\xe9\x23\x84\xf0\x42\x64\xfe\x1e\xe2\x18\xf0\x47\x48\x5d\x8a\xcc\xfc\x71\x2e\x52\x1f\xdb\x98\x51\x2b\x60\x92\xe9\xeb\x94\x4e\x6e\x54\x88\x3e\x6a\x29\x0f\x9d\xd6\x1c\x6a\x36\xfd\x68\x62\xb1\x98\x4a\x63\x47\x4d\x37\xcc\x33\xf0\x7d\x0d\xe5\x69\xf8\xbf\x62\xfe\x45\x05\xae\xdb\x08\x6b\x1c\x8e\x45\x5c\x79\x08\x14\x81\xc0\xd0\x3c\x57\x53\xc8\x31\xfb\xd3\xd1\x72\xb1\x3a\x49\x9b\x2c\x0a\xdd\x5f\x75\x2a\x32\xc2\x36\xd1\xb5\x46\x22\xba\xcc\x4b\x96\x94\xe5\x3b\x51\x23\xc8\xaa\x45\xca\xcf\xb4\x28\xd3\x3c\x23\x5e\xad\x7d\x34\xba\x10\xe9\xd2\x3b\x96\x66\x25\x48\xc4\xa6\xae\xb6\xe7\x65\xd8\x91\xd5\x39\xf8\xe6\x84\xb2\xb6\x19\x53\xaf\x58\xaf\x3d\x7e\xd7\x22\x84\x8b\xaa\x42\x38\x53\x0a\xbc\x75\x7a\xc2\x84\x51\x3e\xf5\xc2\xcc\x2b\x50\x84\x54\x46\x11\x45\x15\x67\x15\x3e\xb5\xc0\x76\xaa\xba\x8c\x4f\xe5\x6d\xbd\xb0\x52\x2e\x68\x36\xcb\x39\x9e\x61\x92\x16\x69\xc9\xc8\xca\x4a\x48\xf2\xf3\x46\xb8\x7a\x43\xac\xd1\xcb\x5e\xac\xd7\x84\x22\xde\x74\xcc\xde\xf3\x0d\xbf\x21\x77\xd9\xc8\x3d\xa3\xc9\x62\x53\xde\xa2\x91\xb7\xb8\xa5\xde\x65\x33\x6f\x9e\x6f\xec\xf1\xdc\xce\x0b\xa7\xf0\x98\x9c\x06\xe6\x78\x1e\x63\x03\x4e\x74\x6a\x85\xf1\x1d\x61\x62\x0d\xcc\x2a\x38\x10\xbc\xc7\xe1\xcf\x49\xcc\x4f\xfc\xf7\x70\xe2\xf9\xe3\xe3\xa7\xf6\x19\x8d\xef\x7d\x46\x05\x47\xd3\x66\x9a\xaa\x3a\xb4\x96\x95\x90\xf9\xea\x6d\x21\x05\xf5\xe7\xf1\xf2\xed\x92\x95\x04\x58\x80\xc6\x6f\x35\xcc\x9e\xd0\xcb\x18\xe5\xf0\xbd\x92\x1c\x34\x73\x0b\x19\xcf\x12\x69\xf9\x3a\x5e\x92\xd6\x96\xee\x0c\x68\xa1\xab\xe4\x0d\x4e\xfb\xfd\xda\xbb\xf0\x0b\xbc\x2c\xe8\x45\x9a\xaf\x4a\x0f\x29\xb2\x76\xcc\x31\x11\x95\xdc\x56\x8a\x06\xf9\xb7\x2d\xb6\x57\x59\x5f\xc7\xcb\x72\xbd\xf6\x5a\x69\x5a\x05\x88\x8f\x73\x74\x19\x2f\xce\xea\x17\x63\x3a\xf7\x98\x74\xa5\xc1\xaf\x03\xf1\x24\x3c\xf3\xf0\x6e\x1a\xb0\xd2\xfc\x12\xc0\x8d\x42\x6b\x8d\x59\xb1\xc5\xf9\x1a\xd6\x3e\x49\xf1\x26\x47\xe5\xa4\x54\xde\xfe\xcc\x47\x9d\x96\x2f\xb3\x45\x5a\xd7\xbf\xe5\xa8\xe4\xc6\xb9\x95\x2b\x3a\x4a\xa1\x58\x2d\x8e\x64\xfd\x53\x60\x26\x4f\x7f\x89\xb3\x2c\x67\x31\x6f\x46\x79\x9c\xb5\x1a\x22\x35\xf2\x14\x90\x06\xf0\x8e\xd5\xbd\x68\xeb\x75\x33\xbd\xcc\xcf\x69\xd7\xc5\xde\xa3\xb2\x47\x7c\x16\xc4\x98\x0f\x60\x5e\xcb\xfd\x3c\x63\x35\xc8\x73\xf7\xd6\x52\x23\x29\x6b\x35\x4c\x6f\xf9\x36\xf9\x2b\x06\x70\x99\xb2\x53\x59\x9f\x07\x18\x09\x66\x42\x5f\x66\x4f\xcf\x68\x63\x05\x85\xf3\x8e\xee\xc9\xd7\xf2\x70\xaa\xdc\x7b\xc3\x46\xcd\xf2\x19\x2d\x4d\xc4\x3c\xb6\x4b\xc6\x01\x1b\x0e\x91\x23\x21\x34\x5f\x21\x8f\x36\x0b\x84\x2c\x12\xd6\x1c\xae\x2b\x22\x19\x32\x7a\x65\x70\x1e\xe7\x6f\x3d\x31\x1d\xaf\xe3\xe5\x32\xcd\x4e\x3e\xbc\x7f\x45\x80\xc0\xd4\x95\x88\xd8\xfb\xfb\xa7\xe9\x62\xc6\x6f\x5d\x4e\x13\x50\xb6\x79\x81\xcc\xae\xc2\x40\xdf\x6d\x3c\x67\x82\x8e\xcb\x94\xc3\x6a\x1d\x26\xb5\x76\xa6\xe6\x45\x7e\x2e\x5d\x7c\xf5\x21\xde\xde\x0d\xff\xab\x22\x9d\x73\x5a\xaf\xa0\x8b\x98\xa5\x17\xd4\x2b\x50\x00\xd4\x88\xe9\x9e\x5a\x90\x1c\x37\x6a\x4d\xca\x52\x39\xf5\x97\xa8\xc1\xbb\x82\x5e\x00\x64\xe8\x1c\x89\xb5\x09\x30\xab\xf3\x75\x14\xaa\x23\xa2\xd2\xb3\x29\x9d\xd0\x50\x98\x24\x8c\x52\x26\x2c\xe0\x22\x0f\x05\x4a\x49\x1b\x34\x37\xc5\xc0\x77\x4d\xb4\x3c\x11\x16\xb9\x20\x34\xcc\x06\x83\x48\x7b\x83\x82\x50\xf6\x19\xbd\x62\x1e\x42\xa3\x59\x9e\x51\x9d\x31\x13\xce\x07\x2b\xc1\x0f\x2b\x70\x29\x17\x5d\xcd\x45\xcc\xf1\x68\x8a\x80\x39\xc3\xe7\x7e\xbd\xd6\x68\xc0\x68\x96\x16\x59\x7c\x6e\xf2\x2c\xd4\x8d\x24\xd4\x73\x6e\x39\x44\xde\x82\xd4\x90\xa0\xd1\x81\xda\x39\xfb\x79\x56\xae\xce\x69\xe1\xc5\xb0\xbb\x80\x24\xb5\x8b\xba\xae\xb7\x68\x24\x91\x66\x42\x83\x92\xac\x31\x84\x39\x64\x98\x2c\x48\x0c\x5c\x0f\x68\x08\xe9\xfb\x4b\x2c\xa0\xee\x8a\xb7\xc0\x25\xae\xcf\x46\x82\x38\x69\xc7\xe1\x4a\xf7\x69\x54\xac\x22\x28\xa5\x00\xae\x87\xd6\xeb\x7b\x80\x59\x73\x68\xa7\x1b\xd2\xff\x12\xf8\x62\xaa\x53\x40\x92\xe5\xcf\x20\x90\x6a\x17\x92\x53\x4c\x0b\x38\x39\x1e\xc4\x1f\x6f\x04\x5e\x45\x93\xcb\x34\x9b\xe5\x97\xa3\x63\x96\xc7\xde\x2a\xa3\x65\x12\x2f\xa9\x07\xb1\x14\xe9\x87\xf7\x2f\xf7\xf3\xf3\x65\x9e\xf1\x73\x43\x65\x53\xf1\x6c\xd6\x3d\x71\x70\x42\x02\x79\x46\xcc\xc4\x4d\x9d\x59\xcc\xe2\x09\x5f\x97\x34\x81\x42\x5b\xbf\x97\x79\x16\x88\x0e\x60\x47\x06\x2e\x95\x03\xf0\xf4\x42\xea\xae\x22\x9b\x85\xfc\x47\xa7\x5d\x60\x16\x2b\xb6\x5c\xb1\x1f\xd2\x05\xf5\xd0\xc0\xe1\xd9\x94\x3f\x76\xe7\x28\x73\x82\xa1\x06\xc2\x49\x69\x2e\x6a\xe7\xa8\x38\xca\x1c\x41\x7b\xc8\x67\xac\x32\x0d\x08\x1b\x38\x5b\x0f\xbb\xa0\xe6\x80\x0e\x9c\xde\xc3\x2d\x87\x4f\x99\x69\xb7\xbd\xd1\x2c\x1c\x88\xe5\xd3\xfa\x56\xb5\x3f\xc9\x30\x09\xf0\xc6\x57\x73\x63\x56\xfe\x11\x4d\x1c\x96\xf3\x0e\x42\xf3\x27\xc2\xfa\x96\x76\xe2\x65\xa2\x7d\x95\x45\x4d\x39\x96\x8b\x58\x87\xec\x9e\xba\x0a\x5a\x30\xdf\x6b\x20\x2c\x16\xb6\x26\x8b\xd4\x00\xab\x69\xc0\x6c\x25\x5d\x79\x6d\x83\x99\x9c\x7a\x3f\x85\x6a\xf6\xa3\x89\x7e\xd4\xe7\x3f\xe2\x03\x56\xb3\xd2\x1d\xbb\x57\x2f\xec\x8e\x83\x6a\x61\x01\xb6\x7e\x3b\xba\x1c\x4c\x8e\xb6\x8e\xb6\xb6\xb4\x34\x59\x7f\xb7\x94\x53\xd5\x62\xb5\xa1\x68\x7d\xc1\x9c\x91\xd3\x12\xe5\xdf\xb1\x7f\x61\x97\xb5\xeb\x35\x29\xca\x47\x02\xc3\x9b\xb0\x05\x84\x30\x25\x76\x01\xb5\x43\x30\x45\xd8\x39\x3a\xe2\x9d\x30\x9f\x4b\xba\xb4\xa2\x04\x6c\x1d\x1d\x6d\x9d\x60\x67\x0b\xc2\x04\x60\x85\xd1\xbe\x8b\x1b\x81\x1b\xbb\xd0\x48\xb3\x27\xed\x94\x49\x7d\x97\xd2\xf6\x7d\x8e\xec\x1d\x2a\xb6\xdf\x06\x9c\x5e\xad\x35\x71\x1c\x3d\xf8\x4d\x57\x90\x36\x38\xf7\x6e\xf8\xbd\xd6\x3e\xfe\xca\xa5\x23\xc4\x8d\xf4\x71\x4a\xfc\xa0\x4e\x13\x79\x1a\x55\xa9\xf9\x4f\x8b\x71\x09\x5b\x89\x8a\xe3\x9f\xe3\xd8\x75\x1d\x9a\xc1\x8d\x50\x0a\x55\x1c\x49\x29\xa8\xa7\x11\xc4\x75\x99\x0a\x6c\x24\x9e\xcd\x24\x90\xf0\x6e\xc4\xe7\x09\xb5\x66\xd9\x8b\x11\x56\x73\x31\x9b\xdc\xf0\x0d\x3f\x29\x70\x92\x2f\x56\xe7\xd9\x24\x05\x55\xfc\x22\x3d\x49\xb3\x78\x21\x3f\xd6\x1b\x19\xf1\x34\x95\xbd\xf1\x49\xa4\x0e\xfd\xaa\x42\x93\x8d\x7d\x71\x76\xb2\x5c\xc2\xb2\x5d\xa7\xd9\x96\xaf\x6a\x1e\x57\xb7\x77\xb2\x42\x08\x7b\x8c\xe4\xa3\x73\x10\x7b\x6c\x1d\x65\x5b\x27\x08\x4d\xbd\x62\x60\x24\x9a\x19\xc9\x8d\xdf\x41\x80\xb2\x1c\xae\xa6\x24\x37\xc1\xc7\x27\xe9\x40\xbf\xc2\x34\xc3\x40\x60\xa2\xc5\xbe\xe0\xf8\x8c\x30\xc6\x5a\xaf\x6f\x8a\xf8\xb2\x9c\xdc\x54\x55\xe0\x39\x33\x9a\x2c\x80\xb7\x3e\x12\x8a\x1a\x71\x9f\x90\x04\x5a\x5b\xaf\x93\x11\xcf\x38\x2a\xe9\x79\x9a\xe4\x8b\x1c\x0c\x9e\x3a\xd6\x8c\x66\xb3\xbf\x64\xc5\xb6\x37\xaf\x18\xcd\x66\xdd\xeb\xc5\x3f\xfc\x77\x57\x4b\x21\xbf\x2a\x5f\x83\x38\x31\x56\x86\x5d\x70\x99\x63\x59\x08\x75\x5d\x26\xf0\x45\x12\x96\x8d\xe0\xe1\xb7\x1f\x33\x86\x6e\xe8\x40\xb0\xa3\xc1\x41\x1b\xad\x3c\x64\x71\x64\xca\x4e\x8e\x4c\x9d\x23\xfb\x78\x1b\x49\xf3\xe0\x4d\xf2\xdb\x3f\x1d\x2d\x53\x49\xb4\x40\x10\x23\x10\xa6\xd6\x85\xb3\x03\x5a\x46\x3b\x59\x23\x12\x76\x16\xd2\x28\xe8\x0c\xbf\xfb\x5a\x46\xbf\x3c\xa6\xec\x92\xd2\xac\x37\xee\xc5\xd9\xac\xf7\xe4\x11\x48\x7d\x60\x91\x66\xb4\xd5\x92\xac\xf5\xc9\xb7\xb2\x39\xf2\xfd\x78\x4a\x87\x4f\xbe\x9d\x7c\xff\x9d\x4a\xf1\xb7\xb7\xa7\x74\xf8\xfd\x77\x83\xed\x27\x93\xc7\x4f\x55\xea\xb7\xdf\x4d\xe9\xf0\xf1\xd3\xc1\xb7\xdb\x93\xc7\x8f\x08\xa1\xd3\x27\xdb\x93\xc7\xdf\xc1\xc3\xa3\x09\xdf\x1b\x1b\x23\x5c\x3f\x7a\x6a\xb1\xa6\x72\x6d\xfe\x11\x43\x0c\x57\x1d\x02\xab\xcc\x0b\x46\x67\xc0\xf1\x82\x77\x7e\x06\xc9\x8d\xde\x8e\xaf\xf8\x66\x1c\xfa\x66\x7f\xee\xab\x2d\x5b\x59\xb1\xa7\x47\xab\x4c\xd4\xf3\x83\x90\x2f\x34\x38\xbc\x56\xc3\x5a\x02\x21\x78\x9f\x76\x1d\xf1\xac\x1e\xec\xbe\xdf\xb5\x27\xe8\xa8\xd6\x35\x9c\x13\xd6\x48\x49\xed\x3c\xa2\xb7\xa0\x6d\xda\x48\xd3\xa6\x00\xbb\xd9\x7a\x9d\x43\x64\xd2\x78\x97\xa4\xeb\x75\x31\x4a\xf2\x73\x0e\xb3\x9e\x5d\xff\xa8\x8a\xbc\xcb\xcb\x94\xf7\xa4\x7c\x99\xcd\x17\x3c\x01\xba\xb4\x43\x64\x5c\x78\x31\x6b\x98\xa2\xa9\x57\x9f\x54\x1f\xdb\x43\x97\x52\x16\x34\xb1\x0a\x29\xbe\x5e\x23\x4b\x7d\x66\x58\xde\x08\xbc\xdb\x30\x7a\x11\xcd\x29\xc6\x99\xac\x0a\x64\x8c\xf7\x1a\x0c\x6a\x6e\x05\x64\xf7\x89\x6f\x68\x09\xd6\x5e\xa5\x25\x23\xf9\xad\x3b\x4e\x48\x9d\xbf\xdb\x16\x96\x26\x4f\xb7\xd1\x08\xba\x7e\x40\x19\x8e\x79\x82\x8f\x70\x09\x39\x1e\xa1\xd1\xe7\x55\x9a\x9c\x1d\xe4\x05\x33\xdb\x34\xa9\xad\xf5\x46\xd4\x8c\x82\xe1\x5e\x21\xf8\xe3\x1a\xa3\x78\xc9\x31\x16\x50\xdd\x16\x2a\x00\xd9\xa8\xa4\x50\x6d\x39\x05\x8e\xb3\x97\x61\x26\xd4\xce\x17\xf0\x68\xd9\xde\xd6\x9b\xfd\xea\x06\x25\x73\xa3\x18\x9d\x50\xb6\x57\x9c\x78\x19\x76\xa4\xb8\xc1\x81\x68\xd7\x56\xba\xa4\xa1\x1d\x3e\x0f\x76\x3a\x47\x22\x4b\x07\x87\x11\xc2\x49\x47\x81\xf7\x79\xce\x1c\x18\x17\xc2\x8b\xae\x0a\x25\x96\xaf\xf2\xac\x6a\x79\xce\xc5\xfa\xf1\x56\x97\xb5\x0f\x1c\xf3\x92\x45\x38\x7a\x9d\xf7\xa5\x51\x92\xec\x7d\x87\x44\x38\x2b\x57\xcb\x25\x6c\x94\x9e\xcc\xc4\xe1\x5e\x8e\x02\xa1\x87\x5d\x8c\xb2\xbc\x38\x8f\x17\xe9\x17\x20\xe3\x71\x4c\x62\xe0\x13\x48\xa5\x0b\x78\xb6\xf2\x74\x28\x1a\xc8\x9d\x9d\xb8\x6e\xc1\x89\x8f\xe3\x32\x5f\xac\x40\x3f\xba\x91\x40\xd1\xb4\xb0\x58\x06\x98\x72\x84\x58\x71\x65\x3f\xc1\x74\x92\x14\xf0\x57\xc1\xf7\x29\xed\x7e\x60\xb3\xc9\xe5\xfc\xd5\xf2\xc6\xd6\xf7\x58\x36\x28\xa9\x29\x52\x2b\xa5\x8e\xa6\xb7\x79\x20\xe2\x08\xea\x0a\x3e\xbc\x7f\xc5\x3b\xcb\xb7\x9f\xea\xac\x59\x61\x92\xd8\x29\x86\xf3\x22\xbb\xa2\x96\x91\xac\x6a\x7d\x7f\x1d\x2f\x39\x3d\x2b\xe9\x0d\xbe\xa4\x64\x69\x87\x53\x96\x00\xb8\x06\x26\x95\x51\x66\x03\x2a\xaa\x64\x51\x31\xe8\xf6\x4a\xa1\x82\x44\x5d\xa0\x6c\x3b\x59\x96\x36\x1f\xf8\xfc\xc3\xab\x65\x40\xfe\x5f\x3c\x64\xf2\xdc\x3b\x7f\x7a\x57\xd7\xf7\x08\xd8\xe8\xd5\x76\x18\xa4\x04\x42\x9c\x23\x30\xb7\xa1\x85\xd6\xa9\xe2\xb2\x3b\xf2\x2c\x34\xb5\x2f\x36\x28\x5f\x1c\x88\x2e\x81\xa3\x95\x55\xb1\xe8\xcd\x53\xba\x98\xf5\xd2\xac\xa7\xaa\xeb\x65\x39\xeb\xa5\xe7\xcb\x05\x3d\xa7\x19\x33\xea\x19\x99\x99\x0b\x8a\x95\x63\x04\x0e\x99\xed\x29\xe2\x7d\x05\x74\xde\x4e\x14\x1d\x97\xb3\xb6\x53\x02\xf2\x0b\xb7\x23\x11\xcf\xae\x9b\xee\x94\x12\xf3\xed\xe8\x30\x95\xb8\x06\xb4\x58\xea\x30\xe1\x79\x31\xa3\x05\x9d\x01\x9a\x94\xe5\xd9\x30\xbf\xa0\xc5\x42\x6c\xe5\x91\x71\x90\x52\x92\x0c\x1b\xbc\x43\x58\xd1\x4c\x1a\x88\x48\x3e\x68\x63\x22\xe9\xc0\xaf\xb0\x62\x33\x02\x74\x4f\x3c\x7b\xfc\xe7\xc2\x4f\x8a\xc0\xa0\x13\x38\xe4\x7a\x6f\x75\x2b\xcb\x2f\xea\x99\x24\xaa\x92\x58\x17\xb2\xda\x49\xe4\x51\x3d\xf9\x93\xee\xdc\x6b\x75\x54\xe1\x48\x74\x0b\x99\xad\xa2\xd8\x69\x17\xbd\x43\x39\x7b\x8c\xbb\xe5\xd2\xd2\xaa\xb4\x55\x9d\x64\x5f\x7e\x82\xd3\xa5\x12\xbd\x3a\x60\x69\xc2\x23\x05\x03\xdb\xb5\x55\x15\x6a\x0c\x5d\x81\x82\xaf\x1f\x79\xb3\xe4\x9f\x1b\x78\xb3\xb6\x3f\x35\xee\x66\x65\xad\x61\x27\xa7\x71\xf1\xb2\x94\x9f\x0f\xe8\x32\x06\x96\x46\xa7\x85\x1a\x85\xb0\xf0\x7b\xcc\xd3\x56\x17\x4e\xe0\x08\x8f\x21\x0e\x86\x87\xc6\x26\xab\xf5\xb8\x85\x52\xb7\xa0\xc5\x71\xb2\x88\xcb\x92\xca\x73\xa7\xe1\x42\xaf\x5e\x8f\x03\x5b\xf9\xc7\x17\x6f\x5e\xbc\xdf\x3b\x7c\xf1\xfc\xd3\xdb\xf7\xcf\x5f\xbc\x27\x3e\x4e\x46\x6f\xdf\xbf\xfc\xf1\xe5\x9b\xbd\x57\x32\x69\x9b\x67\x7b\xff\x62\xef\xf0\xc5\xc1\xe1\xa7\x57\x6f\x3f\xbe\x78\xff\xe9\xd9\xdb\x0f\x6f\x9e\x43\xde\x57\x2f\xf6\x0e\x0e\x3f\x7d\x78\xf7\x4e\xa7\x6e\xd7\xfa\x4e\xe3\xe4\x54\xb6\xd8\xb2\x4d\xbe\x10\x21\xfd\x09\x5b\xaf\xf9\x16\x51\x71\x30\x32\x4e\xf9\x37\xfa\x25\x1d\x8c\xb5\xd2\x27\xb9\x84\xe8\xad\x7d\x19\x08\x89\x8b\x2c\x56\x1f\x92\x2e\xd5\x5c\x55\x59\x48\xc9\xe7\x3b\xae\x87\xb3\x2c\xbf\xcc\x04\x20\xeb\xe5\xf3\x9e\x90\x14\xa5\x79\x36\x72\x90\x94\xe9\x34\x76\x50\x90\x6f\x52\xa1\x54\xf6\x3e\x32\xf3\x94\xbf\x4f\xea\x48\x45\xcc\x34\x1b\x4e\x6d\x15\xc5\x50\x60\xa4\x03\x9f\x88\x31\xeb\x40\x08\x2c\xae\x07\x00\xcf\x26\xe9\xd4\x04\xa4\x6d\xb2\xc9\xbe\xf4\x27\xb4\x86\x03\xe0\xfa\xcd\x6f\x7d\x95\x65\xf9\xf5\xa8\x6d\x9b\x00\x1d\xb0\x47\x0a\x97\xa7\x18\x27\x7f\x04\xbb\x34\xfe\x05\x59\xf4\x61\xda\x00\xba\xf1\x62\xd1\xa6\x61\x7e\xa8\x1d\x36\x35\xc7\x36\xfc\x97\x17\x5d\x46\xd4\x14\xda\x1f\x45\x12\xbf\x1c\xed\xa1\xb2\xe6\xe8\xec\x22\xf2\x8e\xc4\x63\x04\x4e\xb2\x94\xa4\x52\x6e\xad\x79\x9a\xcd\xc4\xc2\x00\xdb\xcc\x88\x4b\xb5\x48\x73\x67\x2c\x59\x0c\x61\x24\xcd\x21\xc3\x08\xc7\x56\x71\xc5\x43\xca\x70\xf7\x6e\xc5\x8e\xdd\x59\xc7\xbc\xee\xcb\x9e\x59\x44\xdf\x5b\xf9\x49\xcf\x17\xce\xdb\x67\x17\xae\xfb\x78\x97\x8c\xb5\xf9\x65\x67\xbb\x61\x0c\x26\xe0\xc6\xaa\x5f\x21\x02\x4a\xf8\x9d\x90\x3a\x9e\x18\x94\xae\xdb\xc0\x1c\x09\x49\x02\x94\x0a\x32\x57\x32\xba\xd4\xd4\x96\xd8\xa9\xed\x4f\x45\xc9\x24\x8d\x25\xb0\xf3\xa9\x11\x4b\xba\x28\x2e\x59\x73\xc1\x4a\xec\xf0\xe4\x1f\x3b\x4b\x54\x08\x6f\x1c\xec\x60\x10\x47\x42\x5d\x58\x3b\xa4\x22\x4d\x7c\xb7\x73\x80\xcc\x4e\x93\x78\x31\x59\xfc\x7f\x68\xd4\x4a\x01\x3e\xe5\x94\x7f\x4b\x62\x4c\x12\xbc\xb0\x1c\xbd\xd5\x7c\xeb\xd9\xf7\x3a\xb2\xb3\x69\x31\x70\xbd\x74\xeb\xb8\xb4\x8f\x32\xe6\xa4\x82\x56\xea\x6f\x00\x59\x49\x2f\xd4\x25\x6c\xe6\x33\xce\x50\x83\xc8\x03\x85\xd4\xac\xce\x0a\xd5\xdf\x8c\xda\x8f\x70\xdc\x06\xd1\xc7\x3b\x69\x40\x13\x95\x84\x99\x88\xed\x8d\x3c\x21\x8b\x08\x31\xea\x3c\xc6\xa1\x16\x5e\xdc\x8a\x83\x5e\xd8\x31\xc9\xe5\xb4\x2e\xec\x69\x05\x37\x24\x6d\xf2\x96\x2a\xa0\xaa\x29\x52\xa0\x61\x63\x9e\xbb\x8b\xc4\xa5\x1d\x34\x2c\x2f\x11\x64\x36\x3d\xaa\x73\x89\xf9\x6c\x12\xa6\xd4\xdc\xc0\x0d\x61\x63\xd6\x55\x7d\x56\x43\xb1\x32\x41\xaa\xc2\x2e\x58\x50\x9c\xb5\xc8\xd9\xac\x4d\x7c\x77\x55\xfb\x35\x94\xb7\xdd\x03\x45\x84\x07\x06\x7e\x51\x83\x12\x5a\xf5\x4b\x47\x06\x78\x09\x0e\x60\xda\x28\x7e\x18\xe1\x39\x7c\x6a\xa1\xc0\x61\x84\x67\x64\x8c\x4f\x49\xa2\xb6\xcc\x6c\xe7\x34\x98\xa9\x00\xf6\xc7\x24\x09\x67\x11\x3e\x07\x2a\x72\x15\x9c\x37\x48\xf4\xe3\xc6\x85\x7d\xde\xa2\xd6\x8f\x5b\x57\xf6\xb1\x16\x94\x78\xe7\xea\x66\x8a\xf5\xd6\x3e\xd6\xb7\xd1\x79\x1d\x6c\x1d\xd7\x2f\xf7\xf3\x26\x00\x3b\x6e\x5e\xef\xc7\x70\x6f\x43\x2b\x40\xea\xe7\x56\x1b\x70\xa3\x23\x3c\x17\x00\xef\x1c\x21\xbc\x54\x8f\x0a\xb6\x94\x5e\xd7\x7c\xdd\x7a\x73\x21\x9c\x55\x75\xe0\x61\x88\xb0\x6e\x2a\x63\x61\x53\x19\x8a\xef\xb6\x49\x9d\xb7\xfb\xa0\xcb\xa5\xe7\xe8\xc9\xe2\xbe\xa8\xb9\xf6\x8d\x02\x4e\x44\x12\xbc\xc0\x4b\xe2\xe3\x39\x19\xcb\xbd\x30\xc6\xc7\x64\x8c\xcf\xc9\x18\xbf\x36\x5e\x31\x4e\xc8\x18\x5f\x90\x9b\x0a\x5f\xf3\x3f\x7b\x7c\xe7\x5c\x92\x30\x0a\x4e\x76\x5e\x83\x9b\x3e\x41\x2a\x68\x12\xe2\x04\xa1\xe5\x60\x80\x4f\x06\x03\x5e\xb1\x31\x6b\xc1\xcd\x5c\x27\x83\x81\x30\x67\xe1\xbd\xf2\x84\xc7\xce\x15\x6a\x6c\xb4\x25\x4e\xc8\x49\x90\xec\xbc\x76\x5d\xa1\xfb\xb2\x81\xac\xf1\x28\x4e\x50\x90\x0c\x06\x80\x31\xa4\xe4\x22\x04\xe3\x1d\x98\xa3\x13\x9c\xa0\x08\x9d\x18\x79\xa0\x69\x36\x15\x03\x49\x02\x14\x4b\xd1\x88\x47\xf1\x09\xbe\x46\x78\x41\xae\x85\x62\x14\x3e\x21\xd7\xa3\x82\x96\x0c\xa7\xda\xdf\x62\x3a\xf7\xb6\x41\x10\x2e\x05\x33\x2d\xb4\xfc\x87\x7c\x95\xcd\x7a\xb1\x94\xaf\xe1\xde\xf1\x8a\xf5\xb2\xbc\xc7\x2f\x58\xe0\x35\xd8\xdc\x8c\x47\x5f\x51\x13\x14\x06\xb9\x9f\xaa\x52\xd7\x74\x11\xe6\x11\x49\xab\xac\x75\x12\xe7\x83\x34\x1c\x0b\x38\xd0\x3c\x92\xaa\xd9\x5d\x1f\xe2\x48\xca\x43\x79\x3c\x48\x43\x3f\xc2\xc7\x03\x02\xbf\x59\xfd\x3c\xce\x06\x69\xb8\xcd\x81\x47\x3d\xbd\x91\x6d\x40\x7c\x2b\x45\xf6\xe4\x74\x90\x86\x8f\x22\x7c\x4a\x9a\x5f\x4c\x47\x1e\x43\x47\xe0\xdc\x9e\x0f\xd2\xf0\x71\x84\xcf\x79\x37\x1e\x47\x08\xe1\x4b\xa5\xe3\x8a\x8d\xd9\xa8\xf6\x16\x52\x6b\xdd\x75\xf7\xb4\x3e\x6c\xe9\x5d\xe2\x5b\x65\x0d\xcf\x69\x5d\xd6\xd0\x01\x46\x2f\x71\xe9\xed\xdd\x01\x02\x36\x90\xe5\x64\xaf\x6a\xe3\x15\xdd\xf4\xa7\x74\xbc\x01\x7c\xb7\x30\x8b\x76\xc8\x18\x75\x4a\xf9\xf8\x08\x35\x07\xeb\x04\xee\xe1\xa2\xc7\x4e\x63\x4e\x05\xf6\xe8\xe7\x55\xbc\xe8\xb1\xbc\xe7\xe3\xde\x49\xce\x7a\xce\x40\x18\x9f\x40\xa5\x45\xb4\xb3\xa1\x4e\xb1\x0e\x77\xd7\x3a\x36\xb5\x16\x96\xd3\xaa\x51\x49\xe3\x42\x88\xce\x60\x0c\x55\x03\xc5\x82\xbb\x4e\xb4\x71\xb0\x8c\xb3\xba\x7e\xb9\xb6\x03\x19\x07\x74\x67\x03\xf1\x6c\xf0\x9a\x86\xab\xb7\x56\xce\x90\x02\x2d\x40\x07\xfe\x1d\x75\xd5\x5d\xac\x75\xd4\x33\xf0\xa1\xa6\x86\x14\x8f\x10\xfb\x20\xf1\x14\x74\x23\x22\x22\x36\x70\xda\xf6\x79\x1b\xfa\x41\x92\x67\x2c\xcd\x56\xb4\xaa\xba\xcb\xf8\x5b\xe3\xaa\x3e\x79\x79\x63\xab\x75\x93\x95\x0d\x6e\x64\x07\x95\xd9\xa4\xa9\x3b\x08\x47\x54\xe1\xac\x83\xda\x53\x14\x7c\x6b\x8a\x5a\x04\x42\x9b\x10\xb8\xd7\xc9\xc3\x76\x5f\x8e\xd3\xb8\x74\x36\x30\x78\x90\xb0\x70\xd5\xf4\xe0\x46\x5e\x4b\x98\xc1\xd2\xe5\xad\xa5\x63\xcd\xa5\x13\x74\xae\xee\x40\xae\x09\x6f\x29\x7a\x12\xd8\x3d\x49\x5d\xd7\x4b\x49\x8b\x17\x92\x0a\x36\x75\x0b\x99\x6b\xa2\xfb\x69\x17\x13\x44\xb0\xc4\xe3\x5a\xe3\x1c\xf2\xa9\xa6\x6b\x5e\x0c\x48\xec\xba\x9e\xa2\xc5\x35\x8f\x22\x46\x08\x2b\xe6\x41\x8a\xeb\xf4\x5b\xde\xa4\xc6\xbb\xc9\xb7\xbc\x4d\xa5\x8b\x8c\xc0\x26\x89\x2b\xe5\x9f\x4d\x35\x03\xbc\x53\x68\x09\x9e\x64\x75\xf0\xac\x19\x2b\x8d\x2d\x7c\x1a\x2b\xe4\xbb\x7c\x3b\xdf\x5b\x2c\x14\xca\xbc\x49\x6f\xb6\xa5\xf0\xdb\x91\xaa\x2e\x8c\xc6\x9a\x94\xe9\x17\xea\x21\x85\x2c\x34\x8a\x6c\x54\x8a\x95\x3e\x68\x84\x3e\xac\xdd\xf3\xd2\x56\xfe\xfe\xa1\xc5\x3d\x4d\xe7\x5e\x57\x43\xc8\xaa\x36\xb0\x81\x4c\x93\x05\x43\xcd\x7e\xae\xe9\xb7\xd4\x6a\xe3\x7b\x59\x31\x26\x6f\x25\x38\xd3\xdb\x08\xce\x54\xcb\x9e\xdb\x05\x73\x52\x8c\x56\xc5\xe2\x1d\xc7\x1c\x9b\x05\x11\x52\xae\x12\x52\xa3\xe8\xf7\x1b\xa8\xc5\x81\xae\x23\x76\x04\x16\x23\xe4\xb5\x84\xe4\xa3\x32\x39\xa5\x1c\xff\x6e\x93\xb7\x31\xba\x6d\x98\xdd\x24\x6f\x8c\xe0\x24\x7b\xfd\x7c\xb4\x8c\xd9\xe9\x7a\xed\x6c\x41\x2b\xfc\x05\x75\x35\xe2\x6c\x39\x83\xf4\x0f\x34\x24\xca\x45\x95\xed\x29\x0e\x16\xb0\x89\x92\x7d\xe3\x7c\x33\x48\x07\xdf\x38\xbd\x54\x8a\xb9\x78\x2b\xb4\xa7\xa9\xe6\xd1\x37\x8d\x4d\x74\xd2\x04\x7c\x77\x73\x06\x15\xf3\x0f\x86\xce\x36\xec\x1e\x86\x90\xe6\xd8\xdd\x74\x9f\x48\x8b\x03\x03\xe7\x52\xee\x46\xcd\xb2\xad\x33\x17\x3b\x6e\x8d\xbb\xb9\x8d\xa8\xc2\xf9\x7f\x8d\x45\xf8\x75\x17\x45\xae\x2f\x8a\x74\x13\x57\x29\x87\xdd\x95\x2a\xd4\x97\x68\xa3\x91\xda\xbc\xea\x66\xd3\x7b\xf2\xc4\xd2\xaf\xe2\x89\xa5\xb7\xf2\xc4\xaa\xaf\x5a\xe1\x0a\xb3\xd1\xb3\xb8\x4c\x93\x36\x7b\x6c\xc1\x89\xdd\xfb\xb0\xc7\x96\x0d\xf6\x98\xf4\x0d\x41\x92\xda\x97\x3b\x89\xdc\xe5\xbd\x88\x5c\x83\xfe\x85\x11\xb6\x39\x5b\x4a\x96\xac\xbd\x41\x0e\x06\xc6\xb9\x27\x58\x04\xd7\xf3\x85\x2c\xd2\xcc\x3c\x75\xe4\x6d\x0b\x6d\x2a\x48\x82\xbb\x0b\xd9\xc6\xda\x94\xd3\xd7\xcb\xff\x45\x74\x4c\xa3\xd6\x5a\x8e\x22\x7b\x8e\x3b\x3d\xff\x34\x24\x29\x43\x0b\xdf\x11\x72\xeb\xfa\x77\x8d\x63\xac\xd7\x2d\x19\xcb\x6d\x65\x45\x8e\x0a\x8c\x4d\x1b\x13\x6a\x2c\xb2\xd3\x69\x6a\xe6\xb6\x63\xde\x24\xc3\xb9\xd1\xa5\xa1\x97\xde\xde\xe7\xa1\xaf\xcf\x5b\xab\x47\x77\x16\x6e\xa3\x80\xd3\x5b\x4a\x28\xb4\x7d\x32\x46\x98\x83\x9b\x09\x1d\xf1\x9f\x0a\x4d\xbe\x12\x1b\x5a\xfe\x11\x6c\xa8\xd7\x38\x07\xf4\x82\x16\xd7\x1b\x8c\x7a\xf4\x3c\x6f\xa8\x5d\x5a\x12\x2e\xef\x8f\xdb\xdc\x76\xd4\xec\x63\xa5\xc2\x9e\x37\x77\x41\xf3\x58\x99\x86\x84\xbf\x2b\x11\x1f\x51\xf1\x43\xef\x77\xed\xd2\xbb\xae\xdd\xe5\xd7\x5c\xbb\xc6\xa5\xc3\xed\x40\xa7\x46\x27\x5a\x80\x83\x8f\x00\xac\x7e\x32\x33\xd6\xd6\x25\xdd\x75\xab\x23\xe3\xb5\x5b\x17\xec\xea\xad\xc4\x0f\xf3\xda\x5d\x94\x83\xba\xcb\xc0\xcb\xee\x7d\x4a\x72\x29\x0d\xbb\xb3\x0c\xe1\x88\x15\xaf\x7d\x7a\x4b\x46\xeb\x4c\x54\xb7\xdf\x4d\x8d\x7d\x7f\x87\xd2\xc0\x06\xd6\x8b\xd6\x06\xee\x62\x61\x07\xf7\xdd\xa4\x26\x78\x7b\x6b\x9f\x82\xd9\x80\x59\xbf\x36\x91\x1b\x93\x71\x10\xef\x18\xa7\xe4\x6a\x47\x24\x24\x0d\xe3\x08\x2f\x6a\xc5\x2d\xda\x30\xd1\x72\xf2\x45\x17\x89\x98\x37\x0f\x08\xa0\xe9\x8b\x4e\x69\x79\x83\xee\x9c\xcd\x3c\xd0\xb5\xec\x46\x64\xb5\x77\x67\x38\x46\x89\xe2\x86\xaf\x6a\xfd\xd4\x14\xa4\xf8\x5e\xd3\x4d\x84\x06\x56\x08\xaf\x6a\xd4\xa6\xaa\x7e\x25\xe9\xd6\xa5\xc6\x22\x17\x0d\x69\x7e\x52\xdf\x55\x03\x9b\x0c\xdf\xb4\x55\x9b\xd7\x61\xd2\xdc\x70\x77\xd6\x42\x08\x69\x34\x3c\xbd\xa5\x84\x0d\xd9\x6b\x38\x70\x72\xab\x2e\x41\xd2\xa9\x4b\xb0\x52\xda\x74\x1d\xbc\x26\xc0\x39\x96\x5d\x2c\xcb\x65\x83\x65\xb9\x61\x9b\xab\x1a\x2a\xa5\x19\xd4\xb1\x45\xef\xc9\xdf\xd4\x35\x7c\x9d\x74\x83\xa3\x94\x00\xcc\xe8\xac\x8d\x54\x2e\x9b\x06\x12\x6c\x93\x6a\x0e\xeb\x54\xcd\x61\x12\xbf\xb1\xe1\x81\x74\x96\xae\x5c\x73\xd5\xcd\x1f\x86\xbe\xd4\x4d\xb0\xfc\x52\x68\xb7\xe8\x58\x1b\xf7\x40\x80\xb2\xf9\x22\xcf\x0b\x0f\x5c\x99\x6e\x6d\xa3\x41\x86\x17\x24\xf6\x72\x9c\x86\x49\x04\x57\x90\xbc\x6f\x78\x2b\x8b\x69\x32\x59\xec\x8e\xa7\xc5\x30\xd9\xf5\xa7\xd4\x4b\xac\x2a\x27\x25\xc7\x1a\x5a\xbd\x9f\x16\x1a\x2a\x4c\x8b\xc9\xd0\x9f\x24\x93\x64\x98\x41\xe9\x0c\x27\x77\x96\x4e\x26\xd9\xce\x78\x3a\xf4\x27\x59\xe5\x0d\x7d\xed\xf2\x10\xcb\xf1\xaf\xd7\xdd\x33\x29\x04\x1c\x9a\xf0\x93\x7e\x88\x83\x74\xe8\xef\x92\xb1\xb0\xcb\x2f\xbc\x2c\x4c\x23\x9c\x85\xe9\xd0\x17\x03\x45\xc3\x61\xaa\xd1\xb2\x96\x33\x3f\xcb\xcd\x4d\x3b\xce\x13\x44\x41\xa2\x1c\x50\xf2\x3f\xa4\x30\x5a\xb3\x05\xe4\xce\x71\x2a\x9c\xd7\xef\xa4\x8a\x53\x90\x0f\xfd\x80\x57\xc5\x61\x0e\x5e\x92\x14\xc3\x62\x14\xf9\x2a\x9b\x79\xab\x81\x78\x89\xb3\x59\x7e\xee\xa1\x87\xde\x72\xb8\x42\x1c\x8f\x44\x96\x3f\x65\x2a\x9c\x6c\xe7\x41\xb2\x93\x82\x50\x87\x79\x94\xaf\x59\x89\x76\xf8\x18\x79\xdd\xf1\x80\xf8\x38\x41\x81\x78\x86\x47\xa1\x09\x11\x0f\xfc\x40\xf5\x6c\xc1\x41\x8b\x78\x59\x0c\x7c\x9c\x0a\x8d\xa8\x15\x5e\x56\xcc\xa8\xf8\x37\x35\x2d\x21\x7b\xcd\xd9\xdb\x2d\x96\x2c\x4f\xc7\xa8\xc3\x6e\x10\x4c\x0d\x1e\x3d\x05\xff\x76\xde\x51\x31\x3d\xca\xd0\x16\x8e\x89\xf3\xe0\xc1\x03\x65\x15\xfb\x26\x9f\xd1\x07\x0f\x1e\x38\xc6\xc0\xa0\xb4\x03\x05\x08\xab\xa9\xd3\x74\x31\x2b\x68\x66\xc2\x0c\xd9\x98\x54\x49\x94\x8b\x95\x85\xd2\x7c\x26\x44\xaa\x32\x49\xd3\x8d\xc4\xe8\x3e\x13\xc2\xa4\x96\x53\x4b\x8d\x9a\x90\x4c\x7c\xca\x1a\x0a\xd2\x84\xe4\xe2\x43\x0e\x1f\xc2\x18\x02\xc0\x0a\x2e\x52\x61\xec\x6d\xbd\x02\x55\xc2\x60\x53\xa8\xb0\x7f\x4c\xd9\x69\xb7\x0e\x81\x35\x73\xf4\xb2\xc7\xaf\x56\xe5\xd9\x2f\x45\x38\x21\x63\xbc\xe8\xc0\x82\xa9\x87\x06\x1e\xd8\xd0\x3b\x8e\x65\x36\x44\x4d\x8e\x64\x27\x56\xe7\x30\x0e\x93\xc1\x40\x07\xa5\xaa\xf0\x8a\xf8\x78\x49\xc6\x78\x2e\x6e\x43\xed\x67\xc6\xd2\x02\x6c\x29\x3d\x4b\x86\xeb\x5c\xf0\xf7\xbc\xd5\x4e\x83\xa8\x42\x8a\xca\xf3\x32\x12\x87\x49\x04\x1d\x93\x8e\x02\xc1\x4b\x60\xf3\x96\x59\x6a\x48\xc3\xb3\x93\x4c\xe5\xed\xca\x89\x97\x1d\x46\x42\x33\x6f\x8e\x19\xc2\x7c\x54\xde\x9c\x50\x54\xf1\x84\x85\x87\x10\x5e\x0d\x06\x7c\x7c\x15\xc0\x80\x56\x4f\x03\x54\x08\x6c\x41\x66\x85\x40\x0e\x3b\xad\xfa\x15\x86\xab\x06\x13\x88\x52\xd9\x2d\x63\x42\x08\xdf\x31\x96\xce\x91\x54\x73\x42\x95\x3e\x1d\x36\xcb\xe6\xba\xde\xdc\x75\xf5\xa0\x44\xf3\xb1\x0c\x79\xe9\x25\xca\xb1\x9e\x03\xae\x6d\x34\x6d\xdf\xe9\x31\x4e\x72\x7b\x3a\x88\x0e\xc5\xcb\x4f\x5d\x57\x2e\x71\xe6\xba\x1e\x25\xb9\xa8\x3d\xc3\x14\x9a\x6e\xb9\xfc\xa0\x38\x45\x60\x11\x51\xd4\x5c\x9e\x49\xfe\xaf\xd2\x23\x5c\xaf\x2d\xed\x33\xc5\x42\x82\x71\x30\xcb\x45\x7e\x4a\xb2\xa9\x69\x4f\xe5\xd3\x36\xa1\x6a\xe2\xf9\xe1\xf0\x1a\x5a\x8d\x2d\x35\xc6\x14\x33\x2c\x75\x14\x39\x26\x8e\xcb\x5b\x0c\xd6\xd2\xb9\xd7\x74\x35\x82\xe8\x06\x97\x7b\xea\x54\x53\xa4\x56\x4a\x7b\x9d\xec\xd3\x30\x8e\xc0\x96\x16\xec\x23\x2c\x77\xe4\xdd\x52\xc5\x17\x57\x4b\x9a\x30\x3a\xeb\xc5\x3d\x03\xf5\x70\x4f\x14\xc7\xbd\xbc\xe8\xc5\x59\x0f\x4c\xb9\x7a\xf9\xdc\xca\x52\x82\x9c\x5b\x64\x2b\x47\xbd\x1f\x85\xc4\x11\x05\x0a\x4b\x52\x80\x51\x7b\x07\xb4\x08\xe6\xfa\x44\x2c\x0b\xba\xa4\xd9\xdd\x93\x61\x68\x41\xda\xe1\x15\x07\x1a\x95\x55\x41\x00\xc5\xff\x3b\x53\x52\x9f\x8f\x55\x56\x9e\xa6\x73\x76\xeb\x94\x5c\xc6\x8b\xb3\x6e\x3a\x18\x67\x64\x8c\x25\x29\xaf\xab\x54\x54\xd4\x4e\x01\x94\x94\xe2\x46\xab\xef\x61\x16\xa1\x30\x8e\xa6\xd2\x27\x0f\xc4\xe8\x17\x41\x6e\xa8\xc7\xb4\x6c\xca\xba\x72\x04\xb7\x44\xdf\x5b\x9a\x95\x63\xee\x2b\x81\x54\xeb\xab\xa8\x42\xf5\xfe\xf3\xd3\xd3\xa5\x8d\xb7\xa9\xe7\xe9\xdc\x2b\x76\xc7\x62\x98\x96\xf7\xc6\x82\x23\x29\x1c\xb5\xb0\xd8\x82\xf6\xa0\xb0\xf6\x3d\x19\x6c\xce\x52\xbb\xa5\xd9\xe6\x39\x97\x92\x93\xf7\xe0\xc5\xb5\x8b\x6f\x57\xaf\xbb\x6b\x1c\x43\xdf\x78\xcd\xe4\x13\x9e\xd5\x2a\x85\xba\x3a\x3c\x9d\x48\x9f\x26\x77\xd5\x4c\x74\x6d\xa2\xa2\x8e\x53\xe6\x38\xb5\x2c\x08\xb7\x47\xd9\x04\x9d\x5d\x34\x7e\x1d\x85\x09\xf3\x11\xcb\x0f\x28\x93\x9e\x43\x28\x8a\x08\x6b\xef\xd6\x83\x3a\xda\xb3\x81\x87\x83\xb3\xee\xf5\x67\x3b\x19\xb0\x71\x1a\x13\x11\xc1\xb9\x6d\x26\x76\xb4\xa7\xc2\x44\x69\x4f\xd3\x67\xf4\xba\xf4\x3a\x06\xa3\x95\x33\x71\x46\x8a\x66\xeb\xd4\xcb\x05\x8a\xa4\x07\x5b\x84\x26\x06\x5b\x7d\x52\xf8\x97\xa8\xb1\xeb\x95\x43\x9b\xb6\x7b\x8b\x86\x71\x7c\xdb\x05\x9d\xb2\x86\xa7\xdd\x35\x6e\x42\xd7\x34\x2f\x3b\xc9\x67\x74\xe2\x38\xb8\xe5\x19\x40\xe8\x6c\x15\x32\x5e\xaf\x8f\x53\x61\x58\x13\x8b\x1f\x69\x66\x93\xd4\x31\xaf\x8e\x2e\x52\x0c\x4e\x0e\x79\x33\x03\x42\x25\x7e\x49\x0a\xad\x2e\xa8\x13\x84\x9d\x97\x7e\x15\x1d\x99\x7a\x29\xb1\x73\xc7\xc4\x64\x2d\x89\xc9\xe7\xba\x09\xbc\x71\x90\xb2\x5e\x67\x5d\x2e\x11\x54\x25\x4d\x6f\x08\x45\x0d\x52\xa9\x0a\xdb\x9e\x11\xea\x2e\x34\x98\xce\x07\xf0\xac\x90\xc0\x0c\x14\x06\x64\x3b\xb1\xec\x29\x18\xdc\x4a\xe0\x97\xc8\x3e\xf2\x29\x1d\xa3\x49\x0e\x0a\x51\x76\x67\xef\xd9\x2a\xb4\x04\x2b\xc0\xd7\xc6\x50\x57\x0b\x32\xc6\x2b\x13\x63\x6b\xb1\xb3\x0a\x16\x83\x01\xf2\xc7\x5a\x3d\x6f\x3f\x9f\xd1\x3d\xe6\x2d\xd0\xd4\x13\x75\x0f\x06\x58\x55\xcb\x71\xf4\x81\x4f\x08\x59\xf1\x79\x37\xd5\xf3\x7e\xfe\xef\xcd\x29\xd2\x1f\x06\x03\x6d\xbb\xda\x71\x92\x1b\x22\x93\xac\x0b\xd9\x13\xd6\xaf\x62\xd3\x8b\x4d\x29\x02\x81\x56\x46\xe7\x9c\xdf\xc7\xa4\xfc\xc3\x2e\x7b\x1b\xb8\x48\x11\xd2\x48\x12\xf3\x01\x7f\xe6\x99\x3b\x9d\x85\x25\x79\x56\xe6\x0b\xea\xba\xf2\x61\x74\x19\x17\x59\xfd\x4d\x7b\x21\x2d\xc8\x4d\x15\x74\xba\x1e\xfd\x0b\xfc\x0c\xe3\x9c\x80\x7f\x59\xff\xbb\xef\x10\xd8\x3e\x5b\xce\x44\x0b\xe3\x4c\xb4\xb0\x02\x5f\xa4\x9d\x42\x85\x2e\x39\x02\x08\x90\x46\xc6\xaa\x8e\xd8\x2f\xeb\x75\xdf\x07\x66\x95\xb1\xc1\x83\xe9\x02\x4d\x4d\x27\xcd\x7a\x85\xeb\x7a\xc5\x48\x85\x7e\x01\x87\x01\xdd\xc2\x49\x8a\x0b\x0e\xc8\x71\x81\x2a\x69\x26\x75\xb7\xcb\x53\xe9\x1c\x37\x2f\xb4\xcb\x53\x5a\x96\xf1\x09\xad\x3b\x01\xad\x3b\x3b\xd5\xde\xbe\x54\xe0\x79\x51\x30\x56\xf1\xf5\x2a\x8d\xbd\x00\x35\xdc\x72\x89\x1a\x77\x42\x7e\x1b\x9a\x26\x65\x59\xe1\x18\x96\xbf\x89\x5a\xe8\xa0\x58\xe0\x19\xea\xa6\x02\xa4\x06\xdc\x12\x4b\xd3\xc3\x45\x5c\x32\xe1\xa7\x58\x5e\x85\x26\xa1\xee\xc6\x18\x1c\x65\x4b\x1f\xc9\xb7\x66\x44\x56\xfc\x7d\xe3\x62\xd9\x8e\xe7\x54\x9b\x39\xad\xd2\x99\xa9\x31\xd4\x85\x03\x0d\x77\x51\xaa\xd4\x66\xd7\xde\x8e\xac\x43\x68\x1b\xf3\x99\x14\xee\x69\x08\xc5\x5e\x46\xc2\x9b\x33\x7a\x3d\x71\x12\xe5\x91\xe0\x16\x85\x6b\x3e\xad\x55\x84\x5c\x37\xf5\xec\x80\x15\x19\xc2\x05\xa4\xe1\x02\x35\x5d\xcb\xc4\xdd\xce\x7e\xff\x0a\xcf\xde\x1b\x37\x27\x80\x90\xae\x85\xe6\x63\x00\x41\xbf\x9e\x11\x99\x46\xaf\xc0\xb5\x07\x78\xf4\x74\x5d\xf1\x5b\xf3\x9c\x99\x11\x99\xb8\x94\x2c\xe0\x67\xd7\x9c\x88\xb5\x58\x4d\x02\x26\xd7\x58\x4c\x0a\x30\xd7\xe2\x67\x32\x40\xba\xc2\x22\x22\x2c\x2c\xb4\xf5\x0e\xbd\x03\xad\xb1\x57\x81\xf7\x63\xaa\x9f\x46\x14\x88\x28\x3d\x0e\x7c\x23\xb6\xa4\x74\xf6\x0b\xcf\x18\x04\x15\x22\x05\x1e\xf1\x65\x5e\xcc\xc4\x3b\x7f\xaa\x90\xda\x46\x76\xa9\xa9\xf5\x3c\x70\x26\x3d\xe5\x58\x90\x5e\xb1\x89\x7e\x6a\xf9\x12\x2a\xfe\x73\x0b\xbe\x30\xae\xdc\xf9\xa3\x2f\x3d\x3b\x2f\x94\x03\xf7\x58\x3c\xfa\xe0\xcb\x7d\x21\x7d\xb2\xe3\x44\xa4\x3e\xb2\x5d\x3f\x2f\xbe\xca\xf5\xf3\x6a\xd3\x56\x93\x30\x10\x7c\xaf\x29\xf8\x07\xe0\xae\xe6\x8a\x5b\x6e\x8a\x55\x51\x70\xfc\x5f\x67\x92\x68\xee\x32\x4e\xa8\xf1\xc0\xa6\xdd\x68\x69\x6f\x34\x42\x19\xe5\x30\x3f\xa3\x59\xfa\xc5\x78\xe6\x04\x97\xaf\x92\x61\x79\x03\x1d\x98\x50\x0c\xfe\xbc\x9a\xee\xaa\xfc\xaa\xba\xcd\xbb\x74\xa3\xfe\x56\x00\x6a\xa6\xbf\x78\x63\x6c\x1c\xb4\x7b\x66\xe4\x20\x0c\x69\x44\x2a\xb1\x74\x58\x82\x7e\xbd\x9e\x11\xcd\x66\x6f\xe7\xc2\x69\x5c\x80\xa4\x39\xb1\xf2\xab\x6b\x72\x65\xf4\x8a\x41\xaf\x3c\x84\xc2\x71\x24\x6c\x8b\x1d\x98\x2e\x67\x62\x4d\xdd\x80\xd0\xd0\x8f\x2c\x43\x62\x27\x90\xdf\xe7\x05\xa5\x07\x6a\x3e\x39\xc5\x62\xe5\xa9\x64\x1e\x60\x5e\xd4\xbe\x28\x67\xbf\x8a\xfa\x86\xb7\x46\x9e\x98\x0d\xf9\xb1\x91\x79\x62\x56\xac\x16\xb4\x91\xe5\x46\x35\x70\xbe\x64\xd7\xef\x6b\xdf\x8d\xe1\x32\xbf\x11\xd9\x29\xe5\xd4\x42\xa5\xba\x23\xbd\xe9\x01\x76\xd9\x76\x0c\x6f\xc2\x3a\x68\x8f\x83\x81\x5c\x89\x94\x79\x0c\xd3\x70\x3b\xc2\x34\x7c\x14\x19\xa6\x20\xaf\x54\x3a\xbb\xa0\xe1\xe3\x48\x6d\x0b\x1a\x7e\x1b\x29\xdd\x37\x3e\x83\xd2\x30\x64\x1b\x0f\xb7\x91\xf4\xdd\x58\x3e\x7c\x20\xfd\x36\x66\x08\x31\x01\x25\xf9\x46\x15\x1e\xdf\x16\x74\xce\xf8\x5d\x2e\xde\x0a\x20\xe3\x1d\xc7\xf0\xf5\x0a\xf0\x7a\x0e\xfe\xea\x7e\xf3\x8e\xca\x87\xc8\x0b\x7f\x8b\x1e\x86\xbf\x1d\x95\x11\x82\xf7\x07\x5b\x1c\x6e\x40\xad\x05\xef\xb6\x5d\x6f\x11\xfa\x51\xbd\xea\x22\x7c\x14\x01\xbe\xa9\x67\x74\xc3\xc4\x24\xf7\x98\x18\xba\xa0\xa0\xbd\x65\x46\x23\xdd\x83\xe9\x83\xa8\x8f\x2b\xb8\x1b\xe5\x8b\xb4\x81\xc6\xee\xfb\x58\x7a\x52\x29\xf8\x73\x2e\x9e\xa5\x99\x70\x18\xe1\x92\xd0\xa0\x0c\x04\x5f\x94\x94\xe1\x38\xc2\xb1\xb8\xe0\x4b\x84\x1d\x4f\x79\x14\x08\xe1\x01\x89\x68\xc7\x25\x52\x76\x35\x32\xc3\xd4\x41\xce\xc4\x89\x1c\xa4\x4d\x87\xc6\xb6\x81\xcc\x8d\xb6\x38\x12\x4e\x9f\x8b\x5a\x80\x63\x18\xce\x8c\x26\x0b\x2f\x96\x3b\xb0\xe2\xf9\x6f\x1c\x3b\xc4\x8f\xc9\x09\x7b\x39\x16\xfa\xab\x95\xac\xb3\x71\x34\x8f\xe3\xe4\xcc\x8b\x47\xcb\x7c\xe9\x71\xc2\x82\xf4\xc7\xb2\x5e\x67\x02\x05\x38\xbe\xc9\xd1\x4c\x11\x00\x31\xe3\x5d\x0d\x53\xc3\x58\x71\x5d\x2f\x15\x85\xb1\x3d\x0c\x50\xba\x05\xf5\x3e\x14\x94\xb7\x40\x83\x4a\xd9\x70\x76\x42\x14\xb8\xec\x39\x8a\x9b\x36\xfd\xa5\xae\xb2\x64\x91\x97\x74\xf6\xac\x88\x93\x33\xca\xbc\x1c\x61\xe6\xba\x85\x58\xcb\xc0\x62\xbb\x4b\x20\x43\x08\xf1\x4a\x12\x87\xb1\xe9\x39\x87\x43\xeb\xb5\xed\x0f\xbc\x44\x01\xba\x6d\x76\x02\x7b\xf6\x65\x40\x48\xd1\x19\xf0\x51\xf0\x31\x2f\x66\xfc\x03\xdf\x85\xcd\x1d\x4d\x45\x15\xc1\xdd\x3b\x7b\x1c\x89\xcd\x3d\x8e\xe4\xfe\xae\xed\x68\x0b\x56\xee\x65\xb3\x7d\xd1\xf7\xf2\x87\x22\x3f\x7f\x01\xc0\x4f\xde\x27\xf1\xa5\xc7\xb0\xa3\x4e\x86\x83\xd5\x87\xda\x41\x68\x85\x93\x30\x9d\x2b\xba\x3a\x27\x31\x5f\x9c\xd7\x23\x43\x01\xe1\x2d\x76\x6c\x1e\x8e\x23\xad\xcd\x6e\x2e\xbf\x31\xa6\x6a\x7f\xe5\xe1\xe3\x68\xda\x01\xcc\x72\x0b\x98\xe5\x1c\x98\x4d\x3a\x33\x6d\x5b\x99\x1e\x45\x55\xe0\x00\xe4\xee\x13\x02\xf3\x35\x8e\x02\x24\x62\x0a\xa8\xe5\x6f\x2d\x0f\xb5\x66\x74\x9e\x17\x74\x40\xe8\x48\x70\x94\x51\x28\x87\xc2\x6a\x9e\x41\x35\xb0\x15\xeb\xa2\xe1\x2d\x2c\x8f\x08\xb5\x90\x2f\x01\x54\x2a\x5a\x4f\x89\x68\x54\x97\xf8\xd9\x83\xa3\x94\xae\xd7\x66\x37\xa6\xf5\xad\x97\x4a\x77\xe5\xa2\xbe\x7a\xaf\x2a\xd1\xab\x06\x64\xb3\x1b\xd4\x4d\x80\x17\x74\x59\x52\x5c\xb4\xf5\x72\x03\x92\xe9\xfb\xb5\x12\x93\xc7\xcf\x38\x2c\xdb\xd6\xd1\xa5\xba\x20\x42\x3f\x42\x1d\x93\x27\xb9\xc6\xed\x0a\x2b\x07\x02\xea\x8a\xce\x43\x65\xce\xc3\x5a\xc2\x7a\xed\x35\xa6\x5d\x7f\x52\x53\x28\x7e\xe4\xc5\xe5\xa3\x76\x43\x9b\xb7\xfe\x01\x5f\x28\xbd\xf9\x97\x05\x4d\x4e\x69\x72\xf6\x3a\x2d\x4b\x3a\xab\xe1\x0c\x0a\xd0\xc7\xb6\x10\x24\xde\x1d\x07\xf1\x70\x28\x66\xb1\x9f\x9e\x73\x6c\x37\x96\x01\x02\xf8\x6d\x1a\x47\x7c\x11\x46\x2c\x7f\x95\x5f\xd2\x62\x3f\x2e\xa9\x87\xf8\xbc\xea\x9c\xca\xc3\xbe\x84\x73\x82\x45\xfd\x03\xb8\x14\xc7\x31\x0a\x9c\x9e\x55\x69\x1f\xe0\x90\x35\x14\x73\x74\x07\xa5\x88\xd6\x04\xa3\x36\x95\x97\x36\x9c\xaf\xf5\x2e\xeb\xe8\x96\x6d\x4f\x2d\xa6\x72\x8c\xf0\x82\x5f\x84\x2b\x12\x07\xab\xdd\x71\xb0\xe2\x43\x15\xfa\x4d\x49\xb8\x52\x3b\x14\x34\x44\x54\x58\x39\x6d\x31\xd0\x77\x90\xeb\xca\x3d\xdb\x27\x64\x29\x37\xe9\x82\x24\xe2\x3c\x87\x7e\x34\x58\x54\xb7\x94\xf5\xea\xd3\x84\x5b\xa3\x5b\x60\x4a\x12\xb8\x05\x4c\x33\x62\x3b\xea\xd3\x21\x53\x44\xdb\x95\x0d\xdf\x04\x53\x84\x03\x37\xe1\x9b\x5c\xd8\xb3\x9a\x2e\x4c\x74\x70\x86\x0d\x1b\x02\x1c\xb6\xb3\x16\xb0\x36\xf2\x96\x5a\xcc\x9e\x40\x70\xe3\x6c\x04\xcb\x47\xd8\x71\x34\xd7\x55\x1f\x19\xfe\x32\xdb\x13\x98\x64\xa1\x81\x2f\x40\xd1\xc2\x42\x5e\x02\xa3\xb5\x07\xcc\xe5\xbe\x8f\x41\xe9\xef\x56\x1c\xdb\xe0\x07\xf7\x40\xb3\x8b\x2e\xb4\xd1\x06\x63\x00\xc3\x9a\xe0\xba\x89\x58\x50\xa8\x2b\xad\x7f\xa9\xac\x2f\x73\xaf\xd4\x17\xb4\x92\x43\x95\x61\x46\x4a\xeb\x96\x60\x7a\x27\x71\x32\x1e\x60\x35\xcf\x34\x1c\x66\xf0\xcd\xeb\xe8\x2a\xb3\x2e\x05\xc6\x2f\x05\x83\x58\x6b\x04\xbc\x82\xc6\xa5\x20\x0b\x6f\x9e\x38\x74\x93\x9b\xfe\x57\xc5\xd7\xdc\xaa\x25\xc2\x6a\x20\x53\x4f\x96\x8c\xe7\x8c\x16\x6f\xf8\x6e\xb8\x0b\x2c\x95\xd6\x9d\x5c\x60\x67\x19\x17\xf1\x79\xe9\xe0\x12\xe1\x1c\xa4\xf3\x65\x68\xcd\x12\xee\x5c\xb0\x06\x9e\x5f\xa3\x35\xeb\x23\xc1\x45\xf3\x9a\x40\x68\xd2\xee\xb3\xe3\x60\x70\xf5\x17\x9f\x73\x62\x15\xe1\x14\xe6\x1f\x22\xa0\x68\x4e\x9f\x42\x15\x0a\x38\x25\x4d\x11\xb3\x9d\x45\x14\x54\x27\xcd\x4e\x33\x68\x58\xed\x5b\xdd\xc7\x34\xa9\xef\x3f\xb4\x91\x76\xb6\x4b\xc3\x58\x48\x47\xb5\xf0\x01\x14\x56\x06\xd6\x34\x75\x92\xe7\xaa\x9c\x70\x92\x3d\xad\x57\x76\xdf\x73\x53\xe3\x04\xd4\x6b\x94\x52\xc6\x55\x46\xa5\x48\x7c\x9f\xa3\xac\x12\xec\x48\xe2\xb0\x45\xa1\xd7\xab\x68\x62\xbb\x8b\x3c\x39\xf3\xea\xb8\xdc\x7f\x64\xf6\xff\xcc\x5c\xf3\xd1\xd5\xa8\xf5\xa6\x3c\xa0\x45\xef\x77\x8c\xa7\x66\x03\x5d\xfb\x12\x6e\x1c\xa8\x82\x32\x1c\xec\x02\x90\x91\x91\x7c\xfa\xb2\xbb\xf9\x65\xa6\xfb\x64\x6e\x5a\x3b\x95\x6c\xde\x32\x32\x2a\x4a\x96\xb2\x96\xc2\x57\x7d\xdd\x24\x24\xa2\x9a\x9f\x63\xf3\x71\x98\x56\x1f\xaf\xb0\xe0\xf3\x18\xce\x4b\x85\xa9\x8d\x22\xdd\xd2\x17\x6c\xdf\x8d\x54\x8e\xb2\x85\x75\xfb\x82\x12\x89\x2f\x5b\x1d\xd6\x2c\x4c\xa5\xc2\xa9\x55\x50\x71\xc2\xab\x5f\xf0\xab\x7a\x45\xb6\x7e\xf3\xc2\xd1\xfa\x6f\x11\x9a\x7a\xe1\xd1\x65\x84\x06\x5b\x29\x5e\x92\x71\xb0\xdc\x29\x83\xe5\x80\xf8\xc8\xee\x86\x27\x44\x26\xe1\x32\x42\x92\xb0\x82\x65\xd0\x1d\x9c\xda\xd8\x6e\x6e\x63\xc2\xb9\xeb\x2e\x39\xf1\x35\xf4\xa7\x0b\xd2\xf7\x27\xc9\x00\x18\x06\x13\x2f\xe6\xd5\x71\xa0\x98\xf2\x87\x81\x1f\x61\x83\x23\xc4\x02\x47\xd0\xef\x29\xbc\xaf\x04\xfe\x1a\x0b\xfc\x55\xbe\xa5\xfc\x6d\xaa\x6a\x5d\x80\xac\x30\x9d\x7b\xfd\x85\xd8\x63\x73\x50\x0d\x98\xad\x92\x56\xa8\x71\xc5\x52\x1c\x30\x8e\xe2\x22\x30\x04\x15\x4b\x14\xb2\x88\xdc\x88\xf8\xfc\x09\x2e\xe2\xcb\xc9\xbc\xaa\x40\x8d\x34\x81\xb0\x10\x1b\x2e\x92\x8d\x3a\x29\x16\x32\x5f\xa7\x58\x59\x9d\xd2\x6a\x53\xac\x0c\x05\x88\xa3\xfc\x1a\x1b\xd3\xbe\xb5\xb3\x8d\x3d\x81\x6b\xe9\x8f\xf5\x65\xbc\xa9\x0b\x0d\x32\xaa\xdd\x87\x5b\xa7\xa0\xde\xa8\x69\xb3\x39\x78\x8e\x31\x58\x63\x65\x26\xe0\xa8\x0e\xbe\xcb\xdb\xd9\x68\xe7\xc3\xaf\x3d\xc2\x82\xc2\x04\x36\x2d\x06\x03\xe8\x7c\x58\x44\x56\xbf\xa9\x52\xcc\x63\x46\x49\x96\x81\x04\x07\xa4\xb0\x0d\x88\x66\xcd\x1e\x2e\x70\x4e\xc6\x38\x25\xe3\x20\x35\x8d\xa4\x83\x81\xc0\xda\x3c\x49\x53\xc0\x5c\xa6\xe2\xa0\xb8\xae\x97\xf3\xb3\x84\x1d\xa4\xd8\x2d\xf9\x90\xbf\x8f\xc5\xd1\x90\x5c\x18\xc9\x0a\x82\x6a\x14\xd9\x56\x88\x33\xb0\x2c\xf2\x93\x54\x26\xf8\x11\x52\x0e\x18\x8c\x36\xb4\xe0\x5a\xe4\xab\xe3\x05\xdd\x07\xc4\x97\xa1\xaa\xd0\xca\x3c\x7d\x9f\x0f\xab\xc1\x4f\x69\xdc\xf5\x45\x7e\xd9\x33\x80\x4a\x0a\x29\x9c\x0f\xb2\x4c\xef\x58\x14\x72\x2c\xd4\x56\xd4\xa9\x49\xc7\x7b\xd6\x27\x5c\x3d\xc2\xf8\x5a\x9c\x10\x51\x63\xed\x2a\xbd\x67\xad\xaa\x4c\xaf\x6a\xf7\xd0\xba\x57\x37\x84\x33\x6b\x20\x04\x00\xcd\x83\xbb\xa7\x84\xd7\xe8\xf0\xed\x23\x54\x1b\xa5\xbb\x3e\x60\xbb\x98\x95\xb8\xd7\x00\x9e\x43\xfe\x1e\x6c\xbc\xf6\x00\x2c\x52\xa3\xd3\x4d\x69\xbb\xbe\x3d\x36\xe4\xb9\x7b\x97\x29\x3b\xcd\x57\xac\x27\x3c\x32\x30\x60\xda\xaa\x7a\x37\xd0\xd0\xf6\x14\xc1\x61\xb8\x35\x4f\xdd\x91\x89\x26\xc2\x75\x3c\x3f\xdb\x5d\x53\x41\xc6\x38\x27\x6c\xe8\x07\x39\x68\xf9\xdb\x90\x87\x13\xe1\x39\x9c\x96\xf5\x7a\x9b\x5f\x35\x05\x3f\x30\x28\xc8\x87\x43\xb4\x71\x25\x44\xaf\x7a\xfa\x3e\x74\x70\xc6\x47\x98\xc1\x08\x5b\x72\xae\xd5\x5f\x2a\xe7\xba\x4b\x48\x2d\xf9\x68\x87\xf8\x0a\xbf\xc1\xaf\xf0\x0b\x7c\x80\x3f\xe3\x7d\x7c\x86\x3f\xe2\xe7\xf8\x19\x7e\x87\xdf\x13\x08\xa0\x23\xe8\xd9\xb7\x73\x0f\xe1\x5f\x08\x1b\xa5\x27\x59\x5e\x08\x35\xcb\x12\xff\x4e\xde\xab\x3b\xfb\x25\x19\xfa\xf8\x03\xf1\xf1\x4f\x64\x8c\x7f\xe0\x08\xfc\xcf\x60\x3a\xa6\x64\x5b\xbf\x7a\x7a\x37\xd0\xd6\x46\x75\x06\x0c\x7f\xc0\x3f\x0d\x5f\x2a\x85\xca\x9b\xe3\x38\x39\x9b\xd8\x8b\xf8\xb3\xd6\x42\xc5\x9a\xc0\x9c\x34\x70\xba\x9f\x1b\x21\x3c\x7e\x96\xfc\x4e\x50\x30\xff\x69\x97\xfc\xae\x75\xca\xfb\x7d\x90\xd1\x89\xc1\xa8\x6e\x28\x47\xb4\x9e\x97\x91\xf7\xb6\x8e\xce\x4f\x08\x71\xdc\x60\xbd\xce\x08\x21\x0b\xf1\xb3\x74\xdd\x7a\x9e\x81\x8f\x20\xec\x8d\xeb\x7a\x2f\xc9\x4f\xf8\x03\xc0\xd3\x4c\x3a\xb0\x2d\x27\xc2\x21\xad\xf8\x59\x89\x9f\xa5\xf8\x59\x4c\x0e\xc9\x4f\xc1\x2c\xbf\x39\x1c\x10\x1f\x37\xdb\x3e\x14\x6d\x43\xad\x87\xa2\xd6\xea\xf2\x94\x53\x93\xbc\x17\x89\xe8\x8c\xec\xda\x4a\x76\x4d\x76\x14\x05\xef\x48\x28\xb7\x30\x7e\x2f\x99\x05\x3f\xe1\x43\x14\xe1\x9f\xc8\xe1\xd0\xb7\x5d\xe5\xce\x45\x5f\x66\xe2\xe7\x5c\xfc\xbc\x16\x3f\xd7\xe2\xe7\x44\xfc\x1c\x4f\xf8\x14\xfe\x48\x84\x44\x19\xb4\xed\xf6\x65\x77\xbd\x0c\x9a\xfc\x11\xff\x28\x56\xd3\x96\xa1\xf5\x4e\x27\xe9\xdc\x7b\x4e\x7e\x50\x44\xec\x0f\xfa\x0e\x9d\x38\x0e\x7e\x46\x5a\xb3\x89\x9d\x55\xb1\xe0\x67\xef\xb9\xeb\x3e\xeb\x13\x52\x88\x9f\x5c\xfc\x24\xe2\xa7\x14\x3f\x2b\xf1\xb3\x10\x3f\x4b\x74\x23\xa7\x34\x9d\x7b\x67\x9c\x76\x83\x28\xaf\xde\x21\x79\x6f\xf8\x32\xc8\xc1\x87\x03\x1f\x21\xd8\x39\xbf\xac\xd7\x4c\x14\x12\xb4\xf9\xaf\x9e\xa3\xee\x13\x04\x9c\xcf\x8f\xe4\x30\xa8\xf5\xf0\xe3\xd0\xe7\x0b\x93\x06\xe8\xe3\x90\xf8\xf8\x8c\xf4\xcf\xe4\xba\x9c\x89\x79\x97\xe5\xcb\xda\xd4\xf3\x61\xc1\xd4\xe0\x0f\xf8\x70\xf8\x12\x16\x42\xf0\xf0\x9b\x7d\x83\x19\x78\x41\x1a\x65\x61\x1c\x87\xeb\xf5\x27\x81\x55\xbe\x40\x53\xde\x94\xe7\x60\xfe\x5f\xcc\xf9\xc4\xab\xb7\xfe\xa2\xd5\xa0\x2d\x55\xec\x15\x62\x55\xf3\xc9\x15\xe1\x9b\xa6\x98\x3a\xdf\x38\x93\x6f\x9c\x6f\xf0\x9d\x33\x78\xd5\x35\x7f\x03\xdf\xcc\xa0\x54\x93\xfd\x23\x13\xd8\x1a\xf8\x1b\xf2\x42\xc5\xf2\x81\x28\x54\xde\x2b\xf2\xc6\x98\x0e\xed\x8e\xa7\xde\x67\xf2\x61\xf0\x0a\xef\x93\xc3\xe1\x9b\xf0\x55\xa4\x20\xc1\x84\xa7\xe3\x7d\xf2\x12\x61\x38\x0c\xa2\x4b\xdd\x4b\xf2\x19\x1f\x0e\xf7\x23\xfc\x92\xec\xe3\x0f\xe4\x33\x9f\x29\x7b\xa2\xf6\x26\x97\x26\x1a\x16\x1f\x28\xbe\x14\x8b\xf0\x1e\xe1\x43\xc2\x41\xab\xf5\x7d\xfa\x5e\x77\xce\x2e\x36\xdc\x86\x5e\x28\x61\xef\x5d\x3b\xc3\x6e\x3e\x9d\xf0\x59\x3c\x24\x3f\xe1\x03\xd2\x1f\xd7\xa7\x92\x17\x16\x53\x09\x20\xe4\x80\xf4\x0f\xc0\x83\x0d\x69\xe5\xc2\x07\xae\x9b\x09\x37\x47\x99\x38\x44\x99\x38\x44\x99\x38\x44\xfc\x67\x29\x7e\x16\xae\xeb\x41\x75\x6f\xe5\x30\x95\x53\xc1\x43\x84\x24\x8f\x37\x68\x7d\xe2\x1b\x42\xf4\xa2\xb3\x87\x89\xac\x13\x55\x7c\x1a\xbe\x66\x0e\x94\x84\x9b\xef\xd1\xb8\x03\xf4\x12\x42\x2e\xa6\xc0\x40\xae\x9f\xf2\x87\x5b\xfc\x28\x6d\xa3\x81\xcf\x01\x33\xdf\xa6\xd3\x43\x7d\x69\x4d\x7e\xf5\x34\x11\x81\x3a\x4e\xdb\x5f\xb4\xe9\x54\x13\xfa\x28\xb6\x37\x1a\x9a\x78\x5f\x1a\xbb\xeb\x4b\x63\x77\x7d\xe9\xde\x5d\x5f\x5a\xbb\xeb\xee\x69\xfd\x41\xdc\xa5\xef\x10\x34\xad\x14\x86\x7e\x1a\x0c\xf0\x3b\x8e\x95\x28\x7e\x65\x87\xce\x16\xef\xc8\xcf\x9a\x48\xe2\x57\x6a\x85\x95\xfe\x52\x47\xf6\x9f\xaa\x4a\x29\x4a\x3a\xdf\x38\xf6\x9a\x8d\x11\xce\xc9\x37\xce\x37\x8d\xb4\x94\x38\x47\x47\xcd\x8c\x31\x71\xb6\x9a\x69\x25\x84\x03\x6d\x24\x26\xc4\xe9\x35\xd3\x16\xc4\x39\x9a\x37\x13\x57\xc4\x39\x62\xcd\xc4\x25\x71\x8e\x8a\x66\xe2\x9c\x38\x61\x33\x6d\x46\x9c\xa8\x99\x76\x4a\x1c\xaf\x99\x76\x4c\x1c\xd4\x4c\x3b\x27\xce\x4d\x33\xed\x35\x71\xaa\x66\xda\x09\x71\x82\x66\xda\x05\x71\x1e\x36\xd3\xae\x89\x33\x69\xa6\xed\x11\xe7\x7f\x9a\x69\x97\x64\x2b\xec\x1d\x65\x47\xec\xa8\x38\x9a\xdf\x54\x1e\xfa\xc6\x39\x3a\x0a\xb6\xc2\xa3\xe8\x6f\xd1\xd6\x09\xfe\x62\x7f\xe6\x78\xf5\x24\xf8\x9f\x3e\xcf\x72\x14\x85\x7f\x8b\xd6\x47\x5b\xde\x94\x1c\x3d\x44\x5b\x27\xf8\x13\xd9\x1a\x85\x47\x47\x5b\x9e\xf3\xcd\x51\x16\x6d\xe1\xb7\x64\x2b\x8c\x87\xf3\xf1\xf0\xfb\x68\x2b\xfd\x8f\xe9\xc2\xea\x58\xfb\x58\x46\xe0\xff\x56\x47\xe0\xf7\x9f\xfa\x7f\x2c\x04\x7f\xdd\x24\xf4\xff\xb2\xd6\x6c\xcb\x66\xf3\x7e\xca\x89\xc6\x68\xce\xc9\xa1\x9d\x7a\xa8\x9d\xbe\xd1\x0b\x6c\x3b\x44\x7d\x97\x97\x6c\xff\xe0\xa0\x57\xd0\x84\xa6\x17\x80\xa2\xd3\x81\xd3\x4b\xb3\x92\xd1\x78\xd6\xcb\xe7\x3d\xfe\x55\xdd\xf0\x26\xee\x27\xb5\x62\x02\x63\xe7\x68\x35\xa7\xf3\xb9\x43\x4c\xc8\x5e\xa0\x9f\x78\xfa\x7c\x4e\x1b\xe9\x92\xf7\x7d\x1a\x97\xcf\xde\xbe\xd6\xf1\xe8\x78\xa5\xea\xc1\xc8\x65\x27\xb5\xac\x3e\x16\x71\x4a\x5d\xb7\x1d\x1f\x56\x46\x30\x15\x9a\x87\xe0\x6f\x9a\x59\x51\x4f\x21\xa1\x68\x47\x6e\x15\x85\x6c\x2d\x5b\xad\x1c\xe5\xa9\xde\x60\x26\xfc\xca\x89\x00\xda\x82\x01\x0b\xe1\x4e\x83\xa6\xdb\x11\x0f\x41\x43\x52\xa4\xc6\x1f\x5d\x37\x57\xcc\x52\xd1\x27\x59\xf8\xbd\xec\x40\x8e\xa4\x94\x89\x7f\x5d\xaf\xbd\x84\x5f\xc4\x82\xbe\x9c\x11\x67\x07\x88\xcc\x5e\x52\x96\x3d\x67\x90\x0c\x9c\x5d\xc7\x04\xd7\x56\xd5\x9e\xc7\x4b\xab\x6a\x11\xc5\x55\x31\x88\x62\xbc\xe8\xd2\xdc\x5b\x08\xba\xac\xe5\x2f\x55\xea\x12\x04\x7a\x8b\xc1\x46\xd6\x34\xa4\x74\x97\x28\x2c\x0f\x3c\x7e\xc2\x65\x85\x5e\x4a\xe2\x69\x53\x43\x39\x16\xcc\x88\x58\x19\x62\xc4\xda\x4a\x03\xba\x8b\x0b\xa9\x1e\x2a\xe2\xb4\xd5\x74\x9b\xb1\x51\xf3\x36\x91\xae\x4c\x01\x24\xb5\x26\x9b\x4c\x6e\x6c\x5b\xc7\x81\x1a\xb7\xb5\x0c\x5e\xaa\xe2\xdc\x9a\xb9\x82\x20\xeb\x69\x85\x17\x72\x4c\x9b\xdc\x11\x9e\xc7\x4b\xa4\xd8\x57\xb6\x03\x42\x3e\xf5\x56\xd8\xf3\xc2\x72\xc4\xdb\xf6\xcb\x64\x8c\x2e\x2a\x41\xa8\x16\x75\xd7\x68\xb2\xea\x9c\x58\x41\x72\xad\x8d\xa2\x73\xe3\x5b\xed\x3d\x52\xed\x71\xcd\xb2\xd5\x2d\x1a\x21\x46\x7a\xa9\xeb\x7a\xb9\x12\x19\xa4\x08\xe7\x7c\x0e\x4c\x63\x1d\xf1\x2c\x3b\xc2\x31\x4f\x79\x2f\x5a\x07\xaa\x3d\x2f\x96\x3f\x96\xf5\xda\x19\x39\x98\xb6\x14\xc8\xf9\xae\xbd\x55\x7b\x5c\x9c\x0e\x79\x2e\x84\x1e\x79\xd9\xd4\x23\x8f\x21\x0d\xc7\x2d\x3d\xf2\xc5\x1f\x60\xb7\x18\xe6\x3c\x18\x53\xdd\xe3\xea\xca\x49\xc9\xef\x2b\xa1\x57\x5c\xaa\x5b\x2c\x86\x47\xff\xe9\xb6\x7d\x75\x95\x5f\xa5\x42\x9c\xdc\x76\x21\xc0\x94\x2c\xf2\xd8\x8e\xd2\x6d\x34\x00\x40\xbd\x5c\xaa\x89\xc4\x05\xfb\x98\x32\x69\x76\x69\x42\x54\x63\x11\x11\x5e\x07\x14\x83\x60\xff\x53\xf8\x0b\x01\xc4\xa5\xed\xbf\xb2\x06\xe5\x4d\xbd\x8e\x97\x12\x70\x02\x08\x50\x80\x48\x68\x63\xa2\x5b\x15\x86\x95\x9b\x93\x4d\x46\x02\xf2\xfb\x7e\x9c\x9c\x52\x15\xe5\xb2\x96\xb8\x29\xc6\xb4\x72\xa0\x62\xba\xa2\xec\x96\x6a\xc5\x2b\xcc\x46\x97\x29\x3b\x6d\x59\x54\x1a\x97\xa9\xf5\x46\xf5\xf6\x35\xee\x53\x6f\xff\x6e\x34\x13\x84\x98\x40\x4e\x7b\x67\xfc\x31\xc9\x9c\xd2\x6e\x01\x54\x61\x4e\xe4\x80\x94\xa1\xbe\xb0\x1d\xbc\x4e\xaa\xc3\x3a\x6f\x1d\x3d\x3c\x2a\xbb\x82\xdf\x7b\xa3\x87\xe8\xa8\x7c\x78\xf4\xf0\x68\x6b\x0b\x05\xda\xfd\xab\xd9\x01\x84\x81\x66\x0f\x28\xd4\x58\x41\x6d\x45\x88\xf7\xce\x38\x1d\x62\xcb\xc4\xcb\xe5\x22\x4d\xa0\x8a\xad\xdf\x4b\xbe\x93\x02\x2d\x6e\xd5\xbb\x8d\x9f\x4c\xc5\xa5\x13\xf5\x7e\x78\xff\x72\x3f\x3f\x5f\xe6\x19\xe8\x46\xab\xc1\x6b\xaf\x34\x52\x81\xb8\xd9\xc2\x11\x34\x11\x70\x5c\xb7\xa4\x8c\xac\xd8\x7c\x38\x7d\x1a\x1c\xc7\x25\x7d\xf2\x18\x6b\x90\xb4\x5e\x6f\x2c\xd9\xcc\xaa\x3d\x9a\x12\xdd\x87\xf7\xf4\xe4\xc5\xd5\x12\xc8\xac\xd7\x7c\x56\x55\x97\x70\x31\x2d\x60\xbb\x7b\x0c\x3b\xa2\x1e\x07\x59\xe8\xcf\xe4\x32\xcd\x66\xf9\xe5\x28\x66\xf9\xb1\xd2\x5b\xcc\xcd\xd2\x6c\xe8\x90\x17\xfe\x86\xa3\x01\xc2\x5b\x20\xc3\xba\x35\x50\xa1\x74\x56\x7f\x1e\x2f\x7b\x10\xda\x38\xcd\x4e\x20\x66\xa1\xda\x22\xed\xd8\x22\xc0\xf5\x06\x71\x99\xbe\x5c\xc0\x23\x1c\x48\x74\xda\xf1\xef\x4d\xf0\x12\x70\x3d\x2b\xab\xaa\xe5\x50\xa6\x2c\xca\xc9\xae\xeb\x6a\x4d\xa5\x11\xbd\x4a\x4b\x56\x1e\x5c\x67\x49\x77\xaa\x15\x88\x25\xb6\x6e\x8c\x18\x74\x12\x44\x06\xec\xf0\x25\x7d\x5a\x9b\x57\xb9\x27\xbb\xe6\x86\xe3\xd5\x3d\x96\xf7\xf8\xe8\x7b\x1c\x4c\xa5\xf9\xaa\xb4\xe6\x69\xd2\x73\x06\x99\x55\x95\xd0\xfc\x05\xac\x36\xce\x12\x3e\xa2\x5b\x60\x08\xd2\x6e\xd8\x37\x87\xb2\x6f\x04\x0e\x64\x76\xbf\x83\x7b\xb4\xa5\x2b\xd2\x53\xdf\xac\xe0\x54\x07\xf4\x66\x7a\xf6\xfe\x71\xf0\xf6\x8d\x1d\xae\xbb\x73\x6e\xcc\xbe\xe9\x98\x98\xde\x3c\x2f\xce\x63\x06\x16\x39\xad\xf9\x31\x97\x46\xcd\xdf\xaf\x0d\x0f\x9a\xc0\xc3\xf4\xd5\x4a\xb3\x7d\x18\x9a\xe4\xc0\xdc\x78\x5e\x41\x34\x9a\x2d\xdc\x77\x98\xd7\x59\x5a\x64\xf1\x39\xe5\xb7\x58\x81\x2c\x8b\x15\xd2\xce\x52\x20\xdc\xf7\xfa\x5d\x3b\x6e\xbd\xee\x4c\xf6\x0a\x84\xec\x2d\x5a\xdb\x83\xc5\x2d\x7b\x50\xa8\x63\x94\x4d\x8b\x6e\x69\x23\xd7\x45\x74\x75\x1c\x33\x88\x1d\x2f\x23\x15\x76\x7d\xd5\x11\x69\x50\x4b\x62\x94\x7c\x6d\x94\xf5\xbf\x84\x16\xbf\x59\x16\x74\x9e\x5e\x4d\x6e\xb9\x77\x7e\xf3\x86\x47\x97\x83\x21\xda\x32\xf6\x88\x53\x16\x8e\xa3\x89\xe3\x54\x78\x95\x89\x0a\xe8\x6c\xd2\xe9\x65\xd3\x38\xc0\x86\x4a\xc0\xf9\x75\x55\xfd\x49\x83\x30\xe5\x4a\xca\x7f\xfa\xad\x8c\x51\xfd\xf4\x09\xb2\x2d\x67\x8d\xf5\x29\xcb\x93\x7c\x61\x85\xb2\x2d\x17\x71\x79\x4a\x4b\x2b\x25\x5e\xb1\x53\xeb\xf5\x34\x2f\x99\xf5\xca\x3b\xd6\xf8\xaa\x9d\x3d\x61\x45\xb8\xda\xe5\xa5\x6f\x36\x93\xf0\x79\x45\x8b\x6b\xbb\xc6\x98\x9d\x36\xaa\xe0\x49\x76\x8d\x05\x15\xce\x97\x2a\x65\x38\x75\x81\x35\xfa\xdd\x1d\xe5\xf4\xc2\xa3\xb8\xef\xe3\xfe\x18\x19\x34\x5d\x68\xeb\x88\x37\xc1\x9b\xe8\x2e\x4b\xa7\xed\xd2\x22\xbf\xc7\xd0\x04\x90\x14\x01\x51\x6a\xe7\x22\x1f\xa5\xa5\xf6\x41\x01\x7a\x87\x17\x10\xd7\x57\x55\x6a\x03\xc7\x74\x4a\x65\x15\x1e\x9a\xa4\x96\x2d\xa3\x48\x14\x5b\x5c\x68\xb1\x7d\x28\x16\x24\x95\xa4\xe8\xd6\x6f\x5e\x18\x0f\xbf\x8c\x87\xdf\x8f\x06\xc3\x68\x30\x41\x5b\x29\x2e\xc9\xd6\x24\x1c\x0f\xbf\x8f\x1e\x3e\xd8\xc2\x09\xcf\xc2\x09\x96\xa9\x37\xed\x1f\x6d\xa1\xf0\xb7\xa3\xe9\x51\x19\x3d\x44\xde\xd1\x14\x2c\x89\x1e\xa2\xe9\x83\x2d\xbc\x20\xa1\x73\xe3\x60\xa7\x72\xb0\xb3\x76\xb0\x73\x74\xe4\x60\xe7\x37\x07\x3b\xff\x8f\x03\x3e\x57\x93\x98\x79\xa1\xb3\xe3\x60\x67\xd7\xc1\xdf\x38\xdf\xf0\x0f\xd8\xe9\xf1\x9c\x05\xff\x93\xf1\x3f\xcc\x89\x10\x5e\x91\xd0\xf9\xc6\x14\x5a\x20\xbc\x24\xa1\xf3\x77\x07\x3b\x5b\x0e\x76\xa6\x0e\x76\x02\x07\x3b\x7f\x33\x39\x56\x08\xcf\x49\xa8\xbf\xfe\xcd\x89\xf0\x8c\x6c\xfd\x16\x0e\xc4\xb8\xf6\x86\xff\xfe\x34\x8c\x6e\xc6\xf8\xc9\xa3\xea\xc1\x16\x3e\x85\x21\x77\x7c\x43\x1c\xc3\x7b\xb0\x85\x8f\xc9\xcd\xef\xf1\x45\x5c\x26\x45\xba\x64\x93\xfe\x18\x3b\xd6\xab\x33\xe9\x8f\x2b\x7c\x7e\x77\x96\xd7\xe4\xe6\x94\xb1\x25\xff\xc8\x7f\x4b\xfe\x30\x17\xef\x27\xf9\xf2\x94\x16\x90\x90\x8a\xf0\xac\x0e\x64\x75\xf4\x63\x29\x9f\xe7\x3a\x55\x96\x91\xc9\xbc\x98\x68\xe6\x04\x0e\xe6\x77\xd6\xc1\xbc\x50\xa7\x39\x9d\x7b\xd4\x75\xf9\x16\x92\x1b\x8d\x6f\xa1\xfa\x96\x51\xd7\x13\x0d\x8c\xfb\x33\xed\x90\x4f\x86\x95\x96\xd5\xe1\xa2\xb2\x37\x55\xc3\xd6\xd0\x34\xd9\xaf\xed\xd9\x6e\x67\x43\xef\xe2\x22\x3e\xa7\x8c\x16\xbd\x6f\x56\xc5\xe2\x1b\x1d\xde\x25\xd6\xfe\x86\x32\xf0\x23\xa4\x5d\x16\x49\xd7\x8a\x96\x92\xf8\x14\xc2\xc1\x83\x02\x79\xea\xba\xe9\x8e\xf5\xe9\x6f\x0e\x9a\x3a\x53\x67\xe2\xfc\xcd\x01\xb6\x8d\x10\x48\x94\x28\x58\x84\xe3\x88\xf0\x3f\x06\x60\x1e\x1d\x6d\x9d\xf0\x7d\x25\x5a\xb8\x20\x94\x2c\xc4\x3d\x5a\xc2\x85\x7c\x41\x2e\xe4\xc5\x85\xfb\x99\xeb\x0a\x2b\x15\x29\xe0\xf8\x9b\x83\x6a\x11\x5b\xae\x49\x32\xa2\x57\x34\xf1\x2e\xa0\xe8\x75\xed\xea\x07\xe0\x73\x61\x41\x9e\x8b\x06\x9c\xba\x0e\xfd\x08\x5f\x87\xdb\x8a\xa9\x27\x21\xdc\x35\xe8\x77\x18\x08\xc7\xa6\x27\x72\x55\xac\x5c\x0a\xef\xd6\x6c\xbe\x8e\x64\xa3\x69\x08\xf5\x2a\x65\x5a\x51\xab\x32\xcc\x06\x92\x73\x8f\xc4\xf6\x38\xf6\xc4\xe8\x2e\x89\xb7\x47\xf6\xc2\x71\x84\xea\xb6\x0b\x41\xfd\x0e\xb8\xc4\x7c\xca\x64\xc3\x7b\x6a\x7e\x38\x52\x94\xad\xd7\x7b\xeb\xf5\x85\xbe\xef\x38\x44\x09\x7f\xfb\x9f\xa3\xad\x68\xf0\x3f\xf2\x77\x4b\x6a\x1b\x7c\x21\xce\xd6\x16\xbf\xd1\x2f\x0c\x49\xb7\x8d\x82\xfe\x97\xf5\x7a\xcf\x75\xcf\xc3\xbd\x68\xbd\xf6\xac\x76\xb6\x51\xfd\xda\xe9\x8f\xa1\xc5\x3e\xcf\xe9\xba\x9e\x28\xd6\x7f\x1d\xee\x45\x96\xa9\xc5\x27\xfc\x16\x1f\x92\xa1\x8f\xaf\xc8\x38\xb8\xda\x99\x2b\xee\xf5\xd5\x60\x80\x6e\x60\x5f\x79\x6f\xc8\x85\xde\x55\xf3\xf0\x2a\xe2\x38\x8f\xa7\x04\xca\x6f\x76\x0e\xf9\xeb\x21\x79\x83\x2a\x91\xfd\x2d\x11\xdf\xa6\x17\x46\xc2\xc4\xf7\xe3\xff\x38\x68\xd2\x4a\xc2\x87\x50\xdb\x27\x3e\x0a\x61\xf0\x81\xdf\x22\x31\x79\xf0\xfa\x76\xe0\x23\xeb\xea\xec\x20\xf9\x3e\x21\x04\x03\x00\x73\x04\x31\x88\x65\x6d\x10\x7c\x94\x6f\x82\xf6\x50\x96\xb7\x0f\x85\xa7\xc1\xdb\x85\xa6\xdb\xcc\x9d\x6d\x7a\x7b\x68\xf7\xf6\x50\x19\xf1\xf0\xad\xf9\x53\x5e\x32\x0f\x35\xae\xf2\xda\x1b\x38\xf3\xe3\xdd\x7b\x45\x84\xd5\x65\xed\xab\xd0\x8f\x8b\xda\xe9\xb5\x37\x4b\x7b\x98\xaf\xf5\x2b\xed\x2a\xed\x45\xbd\x94\x3c\xae\x5b\x47\xa3\x2d\x84\x0f\x08\x9f\x29\xfc\x42\x8d\x2c\xb8\xda\x39\x30\x93\xf5\x99\xbc\x08\xaf\xa0\xba\xcf\xae\xdb\xff\x2c\xb7\xea\xcc\xda\x34\xfb\xfc\xe0\x9c\x91\x31\xfe\x48\x3e\xab\xb9\x3e\xdb\xf9\x18\x9c\x0d\x06\xe8\xb3\x2d\x40\x3a\x43\xbb\xfe\xf6\x77\xd3\xfd\x01\x71\xae\x9c\xc9\xfe\x80\x7c\x0e\xcf\x44\x47\xf7\xad\x6a\x79\x95\xcf\xc9\x0b\x3d\xa7\x57\x08\x3f\xd3\xaf\x57\x7c\x07\xbc\x23\xaa\x1b\xa7\x28\x78\xe7\xba\xde\x73\x29\x89\x0c\xfd\x08\xe1\x67\xda\xb1\xda\xbb\x70\x3b\x42\x3c\x41\xeb\x80\x5e\x10\x67\xcb\x19\x3c\x93\x2e\x0a\x47\x0e\x1a\x5c\x34\xd7\xe4\xb9\xf9\xa8\x2c\x2c\xaa\xae\x39\xde\xdd\xfe\xf6\xdb\x69\xbd\xa8\x23\x4d\xab\xbb\xd7\xb7\x0e\x22\xf0\x2b\xc5\x81\xd2\xb9\x8b\x11\xcb\xf7\x0e\xf6\x5f\xbe\xac\xa7\x4b\xf9\xc1\xff\xcb\xde\xbf\xf0\xb7\x8d\x1b\x8f\xc2\xf0\x57\x91\xd1\x2e\x97\x88\x20\x5a\x72\x6e\xbb\x94\x61\x1d\x37\x49\xbb\xfb\x36\x4e\xf6\x4d\x9c\xb6\xfb\x28\xfa\xe7\xd0\x22\x24\x71\x43\x91\x2a\x09\xd9\x56\x2c\x7d\xf7\xe7\x87\xc1\x85\xe0\x45\xb2\xe4\xec\x6e\xfb\x9c\xb3\xed\xfe\x62\x11\x97\xc1\x00\x18\x0c\x06\x83\xc1\xcc\x3b\x6a\xa4\x42\xc1\xc6\xdb\xe6\xcb\x47\x88\xfc\xab\x81\x94\x0a\xfa\xfc\x57\xfb\x5d\xc1\x64\xdb\x45\x51\xf2\x5a\x33\xc0\x2d\x18\x6b\x5e\x49\x1a\x89\xec\x04\x8b\x4d\xe2\x88\xd2\x6b\xf9\x54\x52\x0e\xee\xb5\x3c\xee\x1d\x5d\x0d\x6f\x46\x58\xad\x42\xf2\x9e\x2e\xcd\x2a\xb4\x89\xeb\x17\xba\x54\xc4\x05\x2b\xb2\x58\x8e\xda\xc6\xea\x47\x0a\x3a\x89\xf2\x22\xff\x05\xf7\x7f\xa4\x94\xfe\x02\xd6\x4c\x2c\x1f\x07\x0b\x26\x2a\xc8\xa5\x07\x84\xfd\x8b\xf2\x42\xf9\xa3\xba\xfa\xfa\x60\x81\x16\x7b\x94\x64\x00\x1f\x4c\xf7\x85\x20\x6d\x38\xe7\x07\x7b\x11\x77\xc9\x07\x35\x01\x3f\xd8\x30\x06\x32\xdc\x0b\x80\xf9\xa1\xbc\x3b\x19\x38\x3f\x60\x7b\x3b\x29\x92\x81\x89\xe9\xa6\x65\x66\x69\xff\x82\x24\x5c\x46\xe2\x87\xbd\xb6\xab\x6b\x5d\xc2\xec\xa0\xd7\x98\x5c\x0c\x6f\xb4\xef\x34\x3d\x83\x3a\xe4\x92\x2e\x56\xab\x26\x36\xff\xf2\x5e\xac\xf4\xe3\xb2\x69\x7c\xa7\xa9\xd1\xe4\x2a\xde\xf5\x57\x6a\x15\x2b\xc8\x10\x76\xfa\x77\xed\xbf\xda\x4e\xf7\xe4\x96\x2f\x15\xf0\x4a\x42\x57\x6e\xea\xea\x72\xfa\x16\x7b\x56\xb1\x0b\x40\x23\x0c\x8e\x01\x2e\x6b\xa2\x16\x86\x71\x21\xda\x7c\xf3\xf8\xfc\x38\x22\xc8\x47\x98\xb0\x36\x15\xbb\x50\xdf\xb2\xeb\xd4\x3b\xb6\x80\xa9\x3d\xd4\xd9\x5d\xd4\x7a\x6a\x41\x2f\xf0\x0d\xef\xdc\x02\x6a\xaf\xb6\x41\x44\x59\xdb\x7c\xf9\x95\x71\x77\x45\xae\xdc\x63\xca\x6b\xca\x7e\xe8\x57\x66\x2b\x3e\x1a\xa2\x76\x29\xa5\x8d\x46\x66\x7a\xd2\x0c\xa2\x49\xb5\x69\x89\x27\x60\x9b\xf4\x4a\xe2\xae\x45\x61\x8e\x53\xf3\x91\x27\x33\x0a\x7e\x19\xd0\xa9\xad\x11\xb2\xa8\xb3\xf4\x4a\x54\xcd\x76\xe0\x38\x68\x80\xda\x81\x74\x4b\xab\x66\x1a\xcc\xbe\xe1\x45\xa3\xa2\xff\x0e\xd8\xd0\x70\xc0\xb8\x2c\xa3\xac\xd7\xee\x11\x5f\xaf\x2f\x86\x7c\x84\x1d\x07\x0c\x6b\xa3\x81\x1b\x81\xe0\xd3\x76\x23\x78\x9d\x43\x12\xc7\x91\x5c\x27\xd1\xe6\x42\x5d\x0c\x01\x9c\x05\xf3\x49\x30\xf6\xa3\xf5\x5a\xd4\x41\xe0\xfb\x07\xfd\x09\x49\xf7\x73\x56\xd1\x8c\xa2\x3f\xa1\x76\x86\x49\x0e\xf8\x1e\x51\x9a\x97\xf2\x73\x2a\x7a\x91\x63\xc2\xdb\x51\xdb\x4d\x2c\x77\x8b\xc7\xc3\x01\xd8\x39\x34\x86\xf5\x68\xa2\xbc\x0d\xc6\xb8\xed\xe6\x34\x37\x20\x84\xfc\x8d\xbe\x39\x79\x8c\x30\x6e\x67\x65\x52\xaf\x1f\xb3\xcb\xf7\x17\xe5\x03\x72\x71\x72\xc6\x66\xfd\x34\xc2\xab\x1d\xc0\xa5\x07\xf0\xd2\x81\xc4\x76\xdf\xd1\xe7\xe6\x88\x23\xe1\x13\x46\xf9\xa6\x30\x6b\x80\x42\xa4\xee\x60\x11\xab\xe0\x0b\x59\x2d\xf8\x42\x4e\xb3\x61\x30\xea\x27\xc3\x7c\x04\x04\x33\xcc\x21\x72\x57\x22\xf9\x2e\x04\x59\x99\xc9\xb7\xa7\x0c\x98\x82\x09\x2d\xa2\xf4\x11\x05\x7f\x48\x20\x5a\xa4\xa6\x17\x30\x3e\xd0\x6b\xd6\x7e\x2f\x6c\xa3\xc6\x30\x89\x69\xb7\x1f\x9f\x9a\xd8\xc9\xb1\xc6\x6b\x49\xc7\xc3\x78\xd4\x47\x1a\x04\x92\xd6\x6b\x6e\x32\x5c\x8e\x28\x1b\x2e\x47\xc6\xa8\xe9\x62\x98\x98\x86\x46\x8e\x93\xd8\x9c\x34\xb1\xd9\x68\xa2\x34\x2a\x15\x56\xda\xd0\x93\x0d\xf4\x44\x03\x75\x9c\xe2\x37\xd0\x76\xd1\x2d\xb1\x99\x5e\x0c\x8b\xec\x51\xd1\xd3\x45\xb5\xa7\x13\xda\xed\x4f\x0a\x89\x77\xa2\x7b\x1a\xd2\xc5\x70\x22\x66\x20\x14\x1d\x0b\x8d\x77\xa7\x2d\x78\x15\xcd\xd3\xa2\x5d\xc2\xa0\xd7\xeb\xf5\xbc\x84\x8c\xd5\x55\x66\x7e\x16\x41\x7b\x45\xeb\x33\xea\xb2\x12\x1f\xc5\xfa\xb8\x28\xce\x98\x33\xc3\x6e\x8e\x5c\xd9\x04\x9d\x99\x77\xff\x7d\xdc\xd7\xcd\xea\x4c\xb1\xb2\x99\x25\xea\xb8\xcc\x96\xc0\x30\x01\x97\xb6\x33\x10\x49\x66\x46\x14\x14\x19\xba\xa1\xd3\x93\x6a\x8e\xd5\x87\x99\x12\xff\x8e\x91\x3c\xa0\xe9\xcd\x96\xa9\x1f\x24\x51\xfb\x2d\x93\x7f\x89\xa4\x05\xaa\xb1\x14\x1b\x87\x3c\x9d\x30\xf8\x43\x0a\x5a\xa1\x36\xd6\xf2\xb7\x68\x39\xcd\xe4\x4b\xa0\x8c\x5b\x78\xac\xd7\x89\xd9\x6b\xaf\x21\xc4\x77\x52\xde\x89\xa6\x34\xb1\x77\x59\x45\x77\x57\xed\x69\x31\xb5\x46\xe1\x58\xf0\x57\xb3\x74\x1a\x29\x52\x9e\xf6\x6d\x7a\x86\xf8\x7d\x56\x4a\xc1\x27\xc9\xca\x74\x99\xd5\x2a\xb0\xa6\x0a\xe7\x74\xb5\x5e\x5f\x8b\x8e\x89\x6a\x40\xf0\xaa\x10\xb9\xa1\xe7\xe4\x4b\xa9\x61\xab\xc9\x82\x54\xd6\xeb\xe1\x88\x7c\xa2\xee\x8c\xda\x4d\xb2\xad\x45\x13\x6b\x79\x1d\x95\x96\x30\x08\x6f\x9f\x60\xbd\x5a\xb4\xa3\x67\x43\x46\x84\x52\x68\xba\xc0\x98\xbe\x0c\xbb\xa3\x81\xf8\x87\xca\x74\xff\x8b\x21\x20\x99\x80\xb1\xa6\x04\x84\x88\xbd\xae\x6d\xf2\x04\xc0\xcc\x6a\x84\x95\x1a\x11\x44\x3b\x10\xff\xa8\xa1\xf5\x0b\x2a\x65\xba\x11\x56\xa8\x89\xc5\x90\x9e\xdb\x75\x05\x25\x28\x5c\x31\x26\x2b\x5c\x23\x4d\xc9\x61\x85\x90\xa2\x1a\x48\x34\x15\x36\xd2\xa8\x55\x41\x24\x0c\x8a\x9f\x7e\x51\x83\xdc\xbf\x44\xbe\xd0\x99\xf1\x0f\x64\xee\x3d\xbf\xac\xd7\xee\x17\x3a\x1c\x61\xf2\x45\xf9\xdc\xf9\x42\xbf\x68\xe5\xe5\x0c\xdf\x0f\xd6\x80\x04\xe5\xda\x9b\x65\x1c\xbf\xcd\x3e\x68\x4f\x9c\xae\xae\x25\x0d\xcb\x3f\x61\xab\x8b\x6a\x58\xbe\x68\x26\x43\xdc\xd7\xf4\xe8\xc8\xd5\x13\x2e\xff\x16\x02\xd9\xff\x42\xf8\x4c\xc8\x05\x2a\x5d\xd1\xd8\xff\x42\xa0\x2d\x50\x6b\xfd\xb5\x81\xa5\x80\x5b\xcd\xbd\x2e\x98\x59\xb1\x34\xef\x19\x31\xdd\x23\xb7\x58\x07\x58\x8a\x71\x2a\x55\x75\x6e\xbd\xd6\x3b\x8e\x55\x72\x50\xfc\xf4\x11\xc2\x6d\x53\x7c\xa0\x7f\x88\xe4\xad\x9b\xd2\xd1\x97\xca\xfb\x97\xa4\x72\x71\x60\x81\x83\xa6\x41\xf0\xd2\x90\x13\xeb\x4a\xa1\x69\xff\xd6\x7b\xc2\x5b\x31\xfe\x70\xb8\xe9\xf4\xf0\xb0\x3b\x22\x97\x54\xcd\x80\xe6\x8d\xeb\xf5\x17\x13\xf1\x5c\x0c\x35\xf2\x04\x39\xbe\x5d\xaf\x91\x27\x7f\x61\x45\xa1\x6f\x89\x38\x62\xbe\xa1\xba\x78\xff\xcd\x19\xed\xf6\xdf\x74\x3a\x58\x56\x71\xdf\xd2\x2f\xc3\x37\x23\x3c\xf8\xa2\xdf\x42\xbe\x21\x3d\xec\x6b\x30\x03\xb7\x94\x4e\xc4\xe1\xd4\xbf\x75\x9c\x6a\x72\xa7\x23\x2d\xab\xce\x1d\xe7\xe8\x06\x4e\xb6\xfd\xdb\x4e\xa7\x7f\x8b\x0b\x56\x20\x40\xe2\xfe\xd1\xb9\xb5\x10\xd7\xeb\x2f\x52\x75\x73\xac\x53\x0a\x96\x28\x7a\x68\x6f\x43\x97\x5a\xb4\xfd\x52\x6c\x42\x25\xa9\xf9\x8b\xf6\xee\x2d\xc5\xef\xd7\xe4\x15\xdd\xab\xa1\x7e\x85\xd5\x29\x22\x7d\x35\x40\xc8\xd7\xa3\x36\x30\xeb\xc1\x47\xe8\x77\x5b\x12\xc6\xc8\xef\x9c\x9e\x17\x5b\x83\xa1\x40\xc7\x39\x7a\x25\x3e\xed\x51\x32\x08\x5b\x74\x69\x0d\x98\xef\xd6\xe9\xd5\x90\x24\xfe\xbd\x56\x96\x25\x01\x80\xff\x6a\x29\x09\x1c\xbc\x23\x93\xda\xed\xc2\x0f\x62\x28\x9b\x4f\xc3\xc0\xca\x39\xcd\xa5\xa2\x9a\x49\x73\x1c\x79\xf8\x72\x39\xb8\x29\xc1\xe6\xa0\x2f\x76\x20\x6e\xe9\xc2\x09\xa3\xcc\x8e\x20\xa2\x5f\x0a\x1b\xc3\x19\xc2\x6a\xba\x22\xd6\x14\x6b\xa7\xe2\x29\x1c\xac\x55\xfa\x47\x26\x31\xc2\x77\x5c\xfb\x31\xbd\x5c\x2d\x18\x81\x0d\x5c\x7f\xa9\xdb\xb7\xe2\xca\x5b\xdd\x75\x64\x8e\x93\xf5\x03\x6f\x1a\xa7\x57\x81\x0a\xaf\x1d\x78\xd2\x2e\x46\x7f\xe5\x2c\x9e\xc8\x33\x29\x19\xd3\x93\xde\x93\xe7\x4f\xbe\x7b\xfc\xec\xc9\x73\x12\xd3\xc7\xcf\x54\x60\x99\x93\x67\x64\x42\x1f\x7f\x47\x42\xfa\xbc\xdb\x25\x33\xfa\xfc\x84\x5c\xd1\xde\xc9\x77\x64\x4e\x51\x07\x91\x0b\x7a\xfc\x3f\xb7\x49\xa7\x73\x4c\xa6\xf4\x78\xf8\x3f\x1f\x6f\x4f\xba\x9d\x8f\xb7\xcf\x5f\x8d\x8e\xc9\x35\x3d\x1e\x7e\xbc\x3d\x79\xf5\x71\xf9\xb8\xdb\x3d\xf9\xb8\xfc\xeb\x5f\xbb\xaf\xc4\xbf\xcf\x7a\xe2\x34\xb8\xa2\x77\xe9\x35\xcb\x26\x71\x7a\xe3\xa3\xb7\xfa\x57\x4b\x5a\xd7\x26\x8c\x85\x79\xeb\x26\x0a\x59\xd6\x8a\x12\xce\xa6\x2c\xcb\x5b\x3c\x6d\x29\xf7\xc4\x88\xa0\x24\xe5\x9d\xab\x20\x8f\xc6\xc8\x47\x3f\xc6\x31\x9b\x06\xb1\xaa\x7b\x46\x5b\xdd\xdb\xef\xba\x2d\x37\x49\x79\x2b\x68\x41\xa1\x96\x38\x65\xb6\x16\x69\x94\x70\x8c\x08\x8a\x92\xeb\x20\x8e\xc2\x0e\x54\x10\x00\xe4\xb7\x04\x80\x36\xe4\x9c\xc6\x9d\x25\xb9\xb1\x22\x6c\x91\x2f\x4d\x6f\xee\x8a\x9b\xb2\x4f\xc5\xfb\x5d\x71\xd2\x7b\x17\x24\x53\x75\x43\xb5\x1a\xb2\x11\x2e\xec\xdd\xdf\x56\xed\xdd\x35\xd5\x90\x8c\x0e\x47\xfd\xa4\xd3\xe9\xe3\x6c\x98\x8c\x28\x77\x99\x1d\xa5\xd5\x0a\x4a\x75\x59\x8e\x86\x5a\xf0\x11\x92\x59\x9e\xf2\x13\xb3\x0d\xc0\xe1\x3d\x19\x76\x47\x6d\xf4\xbf\x10\x61\xe0\x35\x0a\x93\xac\xfd\xd6\x75\x05\xfd\xea\x33\xf6\x35\x41\x1e\xc2\xe6\x90\xe1\x21\x4c\x38\x2e\xd4\xba\x45\xfb\xb7\xb5\x37\xef\x74\x38\x52\xcf\xde\xcd\x93\xf7\xf4\x34\xea\x63\x97\x97\xfd\xad\xa7\xed\x36\xc6\x67\xf4\xe9\xd3\x93\xef\x9f\x39\x0e\x3f\xa5\x4f\x9f\x3d\xee\x7d\xef\x38\xe9\x69\x34\x78\xfa\xec\xf1\x49\x97\x52\xf7\xd9\x93\xa7\xbd\x13\x07\xdc\x98\x55\x6b\xe2\x41\x26\x59\xb9\xeb\xf6\xba\x27\x8f\x1d\x8e\x4f\x4f\x7b\x5d\xdc\x96\x5f\x09\x6e\x3f\x7b\xfa\xf4\xf1\x33\x70\x77\x23\xa3\x59\x60\x92\x76\x3a\xd8\x37\x9f\x0d\x83\xf9\xc6\xd2\x17\x88\xb9\xa9\x45\xda\xe1\xd6\x98\xb2\x33\xd1\xc2\x53\xa9\x88\xf9\xe2\xba\xac\x43\x65\x93\x67\x67\x67\xbd\xae\x23\xd0\x58\x43\xe7\x04\x67\x80\x0e\xad\x01\x35\x86\x09\x54\x00\xd5\x86\x89\xf4\x53\x20\xf1\xba\xe2\x6e\xe2\xe4\xa4\xfd\xfc\xe9\x23\x97\x9d\x9e\x3c\xc3\x1d\xd7\xed\x1e\x51\xd1\xd5\xa7\x56\x8d\x57\xe5\x58\x53\x5d\x90\x10\x18\x4d\x06\x37\x2e\x3b\x0e\xb1\xcf\xce\xce\x7a\x84\xb5\xa9\xf8\xe4\xb8\xcf\xce\xce\x1f\x2d\xce\xce\x7a\xfd\xac\x4d\x63\xcc\x20\xf9\xdc\x0c\xc7\x8d\x9b\xb5\xdd\xf3\x76\x0f\x3f\x62\xc7\x2e\x6b\x4f\xb0\xd5\xd0\xfb\x92\x3b\x2c\xed\x2e\x84\x4c\x48\x48\x2e\xc8\x94\x5c\x8b\xa9\x5f\x15\x44\x7c\x4e\xbb\xe4\x0b\xbd\x22\x6f\xe9\x0c\x50\x82\x79\xb4\xef\xab\xe6\x18\x9f\x76\x41\xf3\xd4\x15\xf4\xda\xed\x67\xa7\x49\xbf\xdd\xce\x70\x69\xba\x33\x7c\x26\x78\x8c\xe3\x7c\x72\xad\x95\x8e\xc9\xb5\x7a\x88\x5c\x2e\x2b\xdd\x68\xa5\x34\x39\xeb\x0e\x92\x76\xcf\xef\xf6\xd3\xd3\x55\x5f\xd2\x68\x44\xcf\x49\x40\x7b\x24\xa7\x71\x3f\x3d\xa3\x2b\x00\x59\x5e\xff\x98\xb8\xee\x84\xba\xd3\x06\x8a\xeb\x3c\xf9\xee\xb4\xd7\x1d\x4c\x3b\x27\x27\xfe\xb4\xf3\xec\xe9\xe9\xc9\xb3\x81\xf8\xeb\x4f\x3b\xdf\x3f\x97\x1f\xdf\x3f\xf7\x63\x7c\x46\xe3\xf5\x7a\x72\x76\xe3\xba\xe3\xce\x39\x3e\x0e\xc4\x96\xfe\xc9\x45\x9a\xc1\x21\x4c\xce\xdb\x74\xf2\x28\x20\x47\xee\xe4\xd4\x0d\x69\x7e\x4a\xdf\x0e\x96\x7e\x7e\x46\xdf\xb6\x17\x83\x85\x9f\x77\xde\x62\xdc\xcf\xc5\xe4\x04\x67\x37\xee\xf8\xd8\xbd\xa0\x71\x27\xac\x83\x09\x1e\xd1\x8b\xfe\x5b\xfa\xca\x3d\xef\x44\x84\x9b\x7b\xb5\x76\x8f\x74\x29\x8d\x30\xb9\x71\xcf\x8f\x39\x3e\x1b\x77\xbe\x54\x6b\x7e\x11\xc4\x20\x32\xc9\xf9\x37\x94\x93\x6b\x2d\xa6\x9d\xb7\xdb\xa4\x4b\xbe\x18\xa5\xcd\x1b\xf7\xda\x9a\xfe\x7f\xdf\x33\xfd\x64\x45\xce\xe1\xf6\x53\x47\x2a\xa5\x2e\xa3\xb7\xa0\x3d\x56\x14\xc1\xe9\x15\x04\xdd\x89\xe8\x4c\xa9\xba\xae\xfb\xed\x76\x80\xc5\x78\x0f\x83\x11\x3e\x85\x79\xbe\x94\x13\xfb\xc5\x9d\xaa\xd9\xcc\x68\x4a\x2f\x35\x8c\xd4\x14\x98\xe3\x7e\x76\x7a\xad\xe6\x36\xa7\xe3\x46\x90\x67\x94\x3b\xce\xf4\x34\x07\xad\xe4\x54\xc2\xcb\x3b\x5c\x4e\x4f\x82\x8f\xdd\x15\xcd\xda\xbd\xfa\xe0\x26\x6d\x2a\xca\xe1\x47\x2b\x21\x10\x94\x40\x47\x13\xd7\x20\xcc\x1d\xa7\xdd\x4e\xce\xc6\xd5\xea\x53\xe3\xd1\x60\x42\x13\x12\xd2\xb8\x0f\xb3\x7d\x41\xc3\x53\x1a\x0d\x96\x7e\x78\x46\x23\x98\xed\xb0\x13\x61\xdc\x0f\xc5\x6c\xbf\xa5\x93\xce\x05\xec\x37\x17\xc4\x8c\xc1\x6b\xf7\xa2\xfd\xf6\x9b\x73\xd2\xc5\x18\x93\x09\xbd\x71\xdf\x8a\xc5\x6a\x65\x4f\x64\x56\x44\x5f\xb9\x09\x59\x91\x8c\xd2\x14\xc3\x20\xb7\xdb\xd9\xa6\xdd\x4e\x48\xbb\x6d\x22\xf5\x5c\x16\xfc\x26\xa7\x77\x2a\xa0\xb9\x8f\x7a\xde\x13\xaf\x87\xc8\x72\x9c\x9f\xf8\x77\xf2\x4a\xd8\xbf\x25\x52\x1d\xeb\xbf\xd9\x10\x95\xf4\x5e\x27\xfd\x9b\xa8\x6b\xb6\x26\xb3\xb1\xcb\x2a\xe3\x54\xe9\x53\xf3\x2e\x01\x09\x19\x01\xb5\x05\x39\xf9\xca\x5d\x7d\xfa\x21\x89\x00\xf4\x01\x00\x2f\x0c\xc0\xf7\xae\x76\x6f\xf8\xa4\x62\x46\xa0\x1a\xd8\x10\xf3\x64\xc6\x4d\x1b\x8c\xdb\xf3\x8d\xb2\xd4\x23\x09\xe1\x84\x61\x0c\x3a\x31\x6d\xd9\x96\xe2\x8d\x8b\x2b\xc6\x7c\x8f\xbf\xc7\x2e\xc3\x24\x71\x7b\x4f\x45\x07\x76\x5a\xbc\x15\x90\xee\xb4\xc6\xb8\xa1\x9f\x0d\x16\x87\x1b\xa2\x2f\x1d\x9a\xca\x37\x59\x35\xaa\x60\x31\x50\x53\x48\xe3\x4d\xe3\xa9\x5f\xa3\xe9\x32\xd6\x99\x7f\x7b\x71\xb6\x69\x90\x54\x2b\x36\x8b\x92\x4c\xa8\xb6\x7b\x4b\xdc\xde\x77\xdf\x61\x70\x6e\xa6\xd2\xcd\x3d\x08\xe4\x7d\x7f\xdf\xb8\x19\xc6\x93\x95\xb6\x44\xa5\xb0\x2d\x45\x18\x7f\x7b\x93\xe8\x47\x7b\xca\x20\x8d\x70\xbc\x29\x06\xbe\xf2\x92\x4a\xc8\xd0\x94\xaf\xd7\xc8\x41\x24\x01\x27\xcd\x14\x29\xc9\xf9\x6e\xd3\xb7\x6c\xb0\xad\xf8\x66\xeb\x75\xd7\x72\x26\x6b\xec\xa5\xd5\x2d\xce\xf1\xc7\xf6\xf1\xb4\xcf\x8c\x08\xa6\xcc\xcc\xc7\xb4\xc7\x1e\xf7\x23\xc7\xa9\xc7\xc3\x8d\xbc\x79\x70\xfb\x77\xb6\x12\x9c\x69\x4c\xcd\x97\x8e\xeb\x69\x84\xa7\xf1\x59\xd7\x71\x62\xc1\x61\xdc\x98\x8e\x0b\x2f\x91\x4b\xda\xed\x2f\x4f\xe3\x7e\xbb\xbd\x54\x1e\x3c\x81\x13\xcf\xc8\x15\x28\xde\x8d\x28\x97\x13\xf4\xcd\x49\x17\x61\x32\xa7\x57\xe6\xfc\x99\xe0\xfe\xfc\x8c\x76\x07\xee\x82\x5e\x15\x87\x96\xb9\xe0\x30\xe6\x7b\x2e\xd8\xa2\x2f\x4a\x90\x09\xa8\x85\xc3\x26\x73\x91\x05\x26\x8d\x66\x24\x13\x4c\x32\x37\x20\x21\x1e\xa4\x6e\x30\x0c\x47\x78\x20\xfe\x95\x6c\x6b\x86\x7d\xf1\x41\x87\xe2\x5f\x32\x1b\xc9\xaf\x99\xe6\x52\xc1\x46\x99\xe8\x97\xc2\xd6\xad\xd7\x0d\x6b\x60\x28\x17\x41\x0b\x4a\x80\x69\x47\x8d\x3a\xb4\xad\xb0\x31\x54\xdc\xcb\x3e\xd5\x6e\x4b\x79\x23\x31\x56\x63\xca\x5d\xbd\xa4\x10\xdf\x98\xba\x41\xea\x55\x9a\xc6\x2c\x48\x8a\xe4\x01\xe2\xd9\x92\x21\x1f\x4d\x82\x38\x67\x48\x96\x52\xc4\xa0\x0b\x45\xf9\x5f\xa3\x24\xe2\x4c\x3e\xda\x42\xc8\x3c\xb2\x57\xbd\x44\x1b\x3b\xb8\x4d\x85\x96\xf3\xe2\x8a\xab\x4a\xd2\xe6\xe1\xa9\x34\xf1\x04\x16\x88\x49\x03\xe3\x18\x44\x6e\x20\xd8\x59\xc1\x66\x03\x7d\xef\xd4\x70\x29\x97\xb9\x01\xc6\x85\x6f\xb1\xd4\x85\xad\x70\x10\xc1\xdf\x46\x56\x9d\xb7\x1b\xc1\x30\x5c\xc8\xc0\x1c\xfb\xdb\x4a\x09\xe8\xe5\x82\x83\xc6\x82\xb9\xc0\x6a\x6b\x4b\x3e\x42\xbf\x2d\x5d\xd5\xa2\xff\xc0\xf5\x54\xf1\x36\x51\xda\x97\x0b\xce\x50\x1c\xf8\x86\x23\x25\xf7\x96\x7d\x90\xa9\x33\x8a\xcb\x86\xd9\x88\x64\x96\xda\x53\xc5\xee\xb1\xee\xac\xca\xe8\xcb\x43\x8a\x1d\x29\xbe\x15\x25\x2d\x86\xf7\xe4\x99\x09\x76\x1c\xae\x63\xd4\x14\xfe\xd4\xf6\xb5\xe8\x7e\xa6\x0c\xba\x9f\x43\x2c\x2e\xf7\xe4\x09\x26\x01\x4d\xbc\xc4\x8d\x30\xc9\x45\xc2\x33\x4c\xc6\x90\x90\x63\x4b\xa3\x61\x9d\x60\x51\x18\x70\xc6\xa3\x39\x5b\x44\xe3\xcf\x2c\x43\x70\x8a\xd5\x2a\xed\x44\x80\x47\x9e\xf9\xce\x44\x33\x77\x2f\xcf\x2f\xcf\x3f\x5d\xbe\xfd\xdb\xdf\x5e\xbf\xf2\xbf\x1d\x86\x01\x0f\x3a\x3c\x9d\x4e\x63\x46\xd1\xb7\xa6\x24\xf9\x16\x8d\xbe\xc5\x1b\x12\xd0\xbb\x1f\xdf\xfc\xf4\xe1\xd2\xb7\xa0\x12\xa4\x65\xff\x0d\xc9\xe9\xdd\x8b\x1f\xce\xdf\xfc\xed\x95\x8f\xc6\x33\x71\x6e\x37\xc5\x52\x4c\xfe\xf2\xfa\xc3\x3b\x1f\x5d\xc5\xcb\xcc\x4e\xfd\xfb\xab\x9f\x3f\xfc\xe4\xa3\xcf\x6c\xb5\x5c\x54\xd2\x5f\xbe\xfd\xe7\x1b\xc8\x09\xd3\x9b\xc4\xce\xfb\xeb\xdb\x17\x1f\xde\xfb\x68\x92\x8e\x97\xb9\x9d\xfe\xe2\xf5\x8f\x2f\xfe\xfe\x09\x7a\x74\xfe\xd3\x8f\x3e\x1a\xc7\xd1\xf8\xb3\x55\x40\xff\x42\x1e\xf4\x33\x58\x44\x08\x93\x0f\x3f\xbd\x3c\xbf\x7c\xe5\xa3\xe5\x42\x0c\x9e\x0d\xee\xd5\xbb\x77\x6f\xdf\xf9\x08\x1e\x13\xdb\xe9\x3f\xfc\xf8\xf2\x95\x8f\x66\x51\x58\x2a\xfd\xfe\x87\xb7\xff\xf4\x51\x3e\x4b\x6f\xac\xd4\x0d\x19\xd3\xe1\xdd\x8b\xd7\xe7\xef\xdf\x7f\x7a\x73\x7e\xf1\xca\x47\x61\xb0\xca\x11\x79\x73\xfe\x8f\x4f\x7f\xfd\xf0\xe6\xc5\xe5\x8f\x6f\xdf\xf8\xe8\x42\x26\xbc\xbf\x7c\xf5\x93\xdf\xdb\x90\x52\xf9\x79\x9a\xf0\x59\xad\xc6\x6a\x47\x8d\x15\x0b\xb2\xdd\x15\xba\x95\x1a\x21\x1b\x07\x21\xbb\xa7\x4e\x77\x33\x22\x31\xbd\x5b\x2e\xfc\xc7\xdf\x91\xc7\xdf\x89\x01\x43\x44\xcc\x8c\xff\xa4\x4b\x9e\x74\x7d\x04\xb3\x44\x62\x36\xe1\xfe\xe3\xe7\xe4\xf1\x73\x1f\x89\xdf\x88\x40\x90\x0a\xff\xf1\xf7\xe4\xf1\xf7\x3e\x82\x0f\x44\x78\x70\xe5\x7f\x4f\xbe\xf7\x11\x0f\xae\x10\x91\x16\x54\xfe\xc9\x73\x72\xf2\xdc\x47\xf2\x0b\x11\x96\x70\x96\xf9\xbd\xc7\xa4\xf7\xd8\x47\xf0\x81\xc8\x22\x98\xb2\x0f\x0b\xff\xf1\x63\xf2\xf8\xb1\x8f\xe4\x97\x4c\x7d\x29\x30\x79\xfc\x84\x3c\x7e\x22\xd3\x5f\x02\x36\xa0\xb4\xf5\x7b\xcf\x48\xef\x99\x98\x9b\x48\xe0\x33\x4e\x13\x9e\xa5\xb1\xdf\x7b\x4e\x7a\xcf\x65\x74\xa7\x2c\x8d\x11\x01\x07\x53\xfe\xe3\x13\xf2\xf8\xc4\xd7\xde\xa6\xb8\xff\xdd\x13\xf2\xdd\x13\x1f\x71\x44\x42\x16\x33\xce\xfc\x27\xcf\xc8\x93\x67\x62\xcc\xc4\x17\xda\x80\x5d\xbc\x58\x72\x39\x22\x6a\x72\xcd\x9c\xe9\xa9\x30\x03\x3c\x22\x0b\x7a\xb7\x21\x13\xf1\x4f\x48\xef\x44\xb5\xff\x27\x4d\x20\x5c\xa2\x7a\xb8\x74\xd4\x23\x61\xb0\xfa\x47\xc4\x6e\x7e\x60\x41\xc8\xb2\xbf\xca\x64\x74\x71\x71\x71\xd1\xfa\xf9\xe7\x9f\x7f\x46\x84\xdd\xf2\x2c\x90\xe9\xb9\x28\x9f\x73\x06\xef\x6a\xfc\x1e\x99\x47\xc9\xcb\x80\x33\x91\x3a\x0f\x6e\xf5\xcf\x65\xce\x5e\x48\xbf\x7b\xfe\x51\x97\x8c\xd3\x38\x0e\x16\x39\x18\xb8\xc7\xe9\x38\x88\x21\x6a\x1e\xfc\x70\x31\x51\x5b\xa7\xae\x1a\x46\x79\x70\x15\xb3\x50\x7c\x43\x63\x2c\x29\x7f\x47\xe3\x34\xc9\x7d\xe8\x89\xd8\xa3\x5b\x93\xa0\x33\x8e\xd3\xf1\xe7\x4e\x8a\x88\x58\x4f\x26\x31\x88\x59\x12\x06\x19\x22\xcb\x85\x4e\x0b\xb2\x2c\xbd\xe9\x18\x32\x2a\xa5\x4a\x62\xd2\x2f\xbc\x0c\x94\x19\xbb\xce\xd2\xa4\x23\x09\x2b\x61\xb7\xbc\x9a\xa3\xe9\x2b\x0d\x83\x55\xb5\xed\x0e\x78\xd8\x13\x98\x8d\x63\x16\x64\x3a\x5b\xcd\x24\x01\xe7\x69\x3a\x51\xce\xa8\x38\x5a\xa5\x31\x8f\x16\xa2\x8b\x12\xe4\xdf\xd2\x16\x17\xff\x85\xc1\xca\xc0\x79\x21\xfe\xb4\x64\x80\x88\x28\x4d\x0c\x28\xf0\xab\xd8\xe2\x33\xd6\xd2\xfc\x58\x96\xb9\x10\xf4\xe1\xa3\xf7\xf0\xd1\x82\x2f\xd9\x57\x95\xf1\x93\x7e\xd8\xa6\xb2\x44\x47\x55\xd6\x1b\x76\x6b\x6a\x48\x60\x3f\x03\x0a\x0a\x96\xf8\x90\xa0\x64\xb2\x81\x24\x33\x04\x20\x99\x01\x70\x64\xa2\x04\xf3\x12\x48\xd4\x00\x92\x9f\x12\x94\xce\x32\xc0\x74\xa6\x00\xa7\x33\x01\xa0\x5d\xeb\x05\x4b\xf8\x32\x5b\x59\xd5\x54\x8a\xac\x67\xb2\xa1\xa2\xc9\x12\x03\xf5\x43\xba\x14\xa8\x47\xe3\xcf\x2d\xf1\x13\x91\x28\x19\x67\x6c\xce\x12\x2e\x73\x7e\xd4\x9f\x2a\x3b\x64\xa5\xec\x97\xac\x9c\x2d\x40\x5e\x44\xc9\x52\x10\x23\x00\x95\x1f\x16\x58\x9d\x5b\x00\xd6\x45\x0c\x68\x5d\xa4\x00\xae\x8b\x08\xf0\xef\xd9\x38\x4d\x42\x05\x5e\x7e\x58\xe0\x75\x6e\x01\x5e\x17\x31\xe0\x75\x91\x02\xbc\x2e\x22\x37\xe3\x9f\x58\x16\xa5\xa1\x8f\x2e\xe1\xab\x25\x3f\xf5\xd4\x5d\xc2\xe2\x53\x13\x27\x3e\xcc\x9c\xc2\x02\xd4\x33\x1a\x48\x76\x95\xb3\xf7\x20\x78\x00\xeb\x88\x42\xf6\x97\xd5\xfb\x28\x64\x8a\xf1\xe4\x6f\x27\xff\x64\xec\xf3\x4b\xb5\xec\x45\xaa\x5e\x3d\x22\x1d\x96\xfc\x75\xc4\x6e\x2e\x20\xc8\xab\x64\x77\x62\x89\x5c\x05\xd9\x4f\xe2\xb8\x24\x50\x17\xbc\x11\x98\x08\x22\x57\x4b\xce\x81\x3f\x88\x6d\xf1\x12\x16\x90\x68\x75\x96\xde\xc0\x92\x29\x3e\xc4\x72\x39\xea\x6d\xc8\x4d\x14\x4e\x19\xd7\xde\x25\x04\x53\xbb\x9b\xa5\x59\xf4\x25\x4d\x78\x10\xfb\x28\x58\xf2\x14\x91\x6b\x96\xf1\x68\x6c\xbe\x4d\x2d\x70\xf2\xed\xcb\x20\x43\xe0\x10\xf1\x1d\x0b\xc2\x34\x89\xa1\xd1\xcf\x8c\x2d\xde\x2e\x58\x22\x7e\x83\xe0\xf0\x36\x79\x3f\x4b\x6f\x04\x17\x94\x6f\x42\x75\x21\x75\x81\x21\x3f\x57\x7f\x89\x92\x30\xf7\xc5\xae\x67\xa9\x3d\x8c\xe7\x0c\xd9\x70\xd9\xc3\x85\xba\x0b\xfb\x24\xb8\x9f\x74\x13\x03\xdf\x53\xc6\x2f\x52\x08\x98\x55\x0e\x6d\x28\x41\x78\x93\x28\x09\xa5\x5c\xa2\x65\x37\xec\x45\xb9\x8b\xfc\xeb\x28\x8f\xae\x62\xa6\x6d\x32\x45\x01\x97\x79\xe3\x38\x4d\x98\x0b\x77\xb3\x3c\x0b\xc6\xdc\x7d\x4e\x50\x88\xf4\x43\x93\x4a\x21\x08\x2b\x2f\xdf\xad\xcb\x9d\xc2\xc5\x04\xcd\x11\xc6\xe4\xa8\xbb\x91\xbc\xf7\xde\xce\x49\x64\xc5\x64\xb9\x98\xfc\x27\x7a\x2a\x3a\xb1\xab\x93\x66\x24\xb6\xf7\x54\x6f\xf5\xad\xe5\x02\xfd\x97\x4f\x67\x8f\xa0\xd5\xae\xe9\xec\x11\x34\xab\x75\x0b\xf6\xcc\xff\xce\x8e\x29\x9c\xb7\xf6\xc9\xee\xb8\xe9\x18\x88\x92\xff\xe9\xee\x28\xc3\xf5\x1d\xf8\x86\x1a\x5f\x29\xe8\xfe\x77\x22\xac\x26\xc0\xe0\xaa\x04\xe9\xff\x4e\x64\xed\xd1\xbd\xb0\x31\x7e\xb9\x17\xaf\xfa\x4f\x0e\xb0\x41\x57\x9e\x5e\x1a\x1c\xb0\x58\x8d\x19\x83\x86\x28\x14\xb2\xf7\x51\x17\x6f\xf4\x59\xe8\xf0\x8a\x86\x0d\xa8\x40\x90\xfb\x41\x28\xf7\xda\x52\x1d\x6c\xe9\xb5\x5d\xfe\x5b\xef\x8a\x27\x52\x65\x10\x40\x53\x14\xd9\xd2\x0a\x1a\x7d\x8b\x3d\x38\x82\x6b\x14\x1b\xfc\x1f\x35\x22\x05\x43\x5b\x9d\x2c\x05\x43\x9d\xc2\xf6\x03\x04\xf2\xb9\x6a\x5d\x54\xbd\x5a\x4e\xc5\xbe\x1e\xc4\x71\x7a\xf3\x63\xb2\x58\x72\x29\x4f\xd9\x27\x1d\x21\x3f\xfd\x28\xe6\xee\x3a\x88\x73\x3b\x43\x08\x93\xf6\x11\xc8\x7c\x0b\x79\x48\x9f\x97\x00\xf2\xc5\x32\xe6\x51\xa8\xcf\x61\xfa\xe3\x3d\x5b\x04\xe0\x12\xc3\x47\x04\x6d\x36\x6e\xe0\x05\x64\xec\x05\x15\x2d\xbe\x74\x61\x52\xc4\xf3\x2e\xb4\x8c\xbf\xfc\xff\xe1\xdd\x43\xcd\x23\xc6\x25\x9b\x2f\x84\x4c\x9e\xce\xa3\x64\x99\xb7\xfe\x92\xa6\x3c\xe7\x59\xb0\x78\xf2\x6d\xde\xca\xd8\xbf\x97\x51\xc6\x72\x55\xd9\x53\x7f\xcd\xcb\xde\x28\x19\xc7\xcb\x90\x85\x2d\x19\x25\xa3\xb5\x0b\xd6\xff\x2f\xb8\x0e\xde\xc3\x53\x6a\x4f\x3e\x3d\xaa\x2b\xce\x54\x2b\x93\xc4\xfb\x05\xac\x08\xb5\xfd\x43\x0b\xe1\x61\x77\x64\x59\x43\x80\x57\x8d\x61\x77\x74\x7a\xe2\x38\x7c\xd8\x1b\x9d\x7e\xbf\x5e\xf7\x54\x24\x23\xc7\xf9\x1e\x7e\xf5\x46\x22\xef\x64\x74\xda\x5b\xaf\x45\xfa\x19\x7d\xf2\xc0\xce\x07\xbc\x15\xb3\x20\xe7\xba\xf7\xd7\x8f\xbd\xae\xd7\x6d\x5d\x2d\x45\x7a\x9e\xb7\xf8\x2c\x48\x5a\xd7\x4f\x44\x22\xc2\x1b\x21\x32\x34\x8d\xff\x1c\xe8\xf0\x81\x28\xc8\xca\xde\x2f\xb9\xd7\xba\xd0\x3f\x7f\x85\x59\x90\x5a\x3f\x05\x5c\xdd\x47\x56\x86\x39\x11\xc3\x4c\x4f\x1c\x27\x11\xe3\xdc\x7b\xbe\x5e\x27\x30\x98\x8f\xbf\x76\x30\x4d\x97\x5a\xd7\x27\x5e\xef\x79\x7d\x40\x1f\xcb\x01\xb5\x34\x95\xda\x58\xac\xc9\x05\xcf\xfb\xd5\xfc\x2a\x8d\x1d\x07\xe5\xf0\xa3\x96\xe3\x45\x5c\x7a\x94\x19\x34\xbd\x4e\xd1\x37\x7e\x8d\x8e\x38\x1c\x67\x57\x83\x0c\x9c\x5d\xf1\x6c\x09\x61\x4f\x29\x35\xe9\x47\xfa\x77\xa1\xf7\x1d\x68\xec\xfc\xe2\x8e\x91\xef\xf2\x5f\xf6\xdf\xe9\x8b\x53\x0d\x8c\xc1\x5b\x79\x47\xd4\x5a\x72\xc7\x61\x0d\x41\xcc\x99\x0c\x62\xce\x37\x1b\xd7\x72\x6b\x60\x39\x64\x72\x4b\x4e\x0c\xf8\x16\x27\x03\x2f\xc0\x63\x4e\x6b\x1c\xc4\x71\x2b\x68\x8d\xe3\x20\xcf\x5b\x41\xde\x0a\x0c\x36\x48\xba\x58\x2b\xb9\x6f\xd4\x76\x7c\x75\x05\x77\x44\xe5\x5e\x6d\xa7\x05\x3b\xb5\xda\x95\xd2\xa3\x6f\x41\x6d\x2d\xd5\xda\x69\x5b\x2b\xb3\x37\x64\x5c\xd3\x65\xb7\x23\x5b\x87\xdd\x8e\xca\xba\x6b\xf9\x5d\xd6\x59\xb7\xa3\xb2\xae\xba\x1d\x6d\xd1\x51\xb7\xa3\xb6\xa5\x94\xae\xea\xa4\xdb\x51\x59\x17\xdd\x8e\x6c\x1d\x74\x3b\xb2\x75\xcf\xed\x68\x43\xe2\xff\x93\x74\xce\xcb\x3f\x74\xce\x35\x9d\xf3\xe2\x20\x9d\xb3\x56\x37\x6f\xc8\xec\xbf\x47\xe7\x9c\xfd\xa1\x73\xfe\x43\xe7\xfc\x87\xce\xf9\x0f\x9d\xf3\x1f\x3a\xe7\x3f\x74\xce\x7f\xe8\x9c\xff\x0b\xa6\xf3\x0f\x9d\xf3\x1f\x3a\xe7\x3f\x74\xce\x7f\xe8\x9c\xff\xd0\x39\xff\x1f\xaa\x73\xee\x57\xf5\x3e\x96\xbe\xea\x4a\xea\x71\x12\x69\xa0\x7f\xa5\xdc\xe2\x7c\x4a\x17\x22\x57\x79\xd9\xf9\x34\x65\xfc\xad\x4c\x70\xb9\x2e\xc1\x62\x10\xc0\x28\x23\x16\xe5\x9b\xb8\xe7\xf2\x53\x1e\x1c\x39\x0b\x8b\x74\xdd\x01\xcb\xf5\xeb\x32\xc9\x19\x2f\xe2\xa5\x68\xf3\x53\x13\xb2\x5c\x0e\xb3\xf9\x5c\xe6\xec\xe4\x09\x0c\x88\xed\xd0\x76\xcc\x97\x41\x2c\xdb\x2b\x39\x99\xcd\x72\xa6\x8e\xaf\x56\xb2\x8a\x46\xfa\x0f\x25\x5c\x5a\x39\x17\x51\xa2\x53\xdf\x80\xb1\x31\x55\x68\x7d\x8a\x04\x5d\x68\x0d\xda\x95\x65\x12\x2a\x72\xaa\xef\x62\x95\x57\x27\x3d\x48\xa0\xe1\x71\x11\x0f\xb2\x29\xe3\xda\x6a\xb2\x5f\x2e\x22\x56\x80\xca\x91\xbb\x9a\x0c\x06\x52\x2a\xa4\x82\x16\x1c\xa9\x20\x39\x45\x29\x94\xb0\x20\x63\xb9\x34\x4e\x1e\x94\x01\xcb\xe5\xa6\x40\xfb\xcc\x35\x2e\x9a\x1a\xa7\x6c\xd8\x95\x9e\x72\xec\xd5\x50\x9d\xba\x6a\xbe\xe6\x4b\xe0\xd5\x98\xb3\x24\x74\xf5\x64\x6a\x3a\x2a\x5a\x08\x2e\x53\x4d\x4a\x1a\x8f\x54\x93\x96\x5d\x03\x9b\x61\x8f\xb8\x22\x23\x29\x62\x15\x43\x60\xba\xaf\xd8\x85\x8c\x83\x62\x8d\xa3\xe3\x94\xcb\x79\xd7\x41\x6c\x5c\x5f\xeb\xb7\xdc\xb2\x99\x9c\xf1\x7f\x04\xf1\x52\x71\x82\x4f\x40\x37\xb0\x68\x5f\x1a\xf6\x50\x07\x81\x49\x57\x49\x18\x1a\x6b\xcf\x52\x69\x38\x4e\x23\xaa\x45\x9c\xa3\x02\x68\xc0\x79\xe6\x22\x78\x77\x30\x4b\xe3\x50\x70\x44\xd5\xa7\x2a\x62\x0d\xed\x90\x6e\x65\xd1\x2a\x5f\xe7\x0a\x82\x14\xa3\x37\xa4\x44\xb2\x52\xbf\x58\x0b\x9b\x5f\x66\x68\x9f\x26\x51\x1c\x43\xff\x75\x03\x22\x41\xf0\x2c\x08\xa8\x50\x02\xa8\xd1\xac\x46\x6d\x2d\x82\xca\xc0\x2a\x1f\x88\x95\xe6\xdb\xe4\xc6\x47\xf2\xc5\xad\xd8\x5d\xcb\xee\xd9\x4d\x77\xca\x7c\xce\x71\x7a\x7a\x44\x25\x08\x3d\x91\x6e\x46\xdd\xac\x71\xdd\x81\x2e\x15\xb7\x11\x41\x85\x3f\x36\xf3\xd8\xbd\xc6\x3e\xa0\x20\x41\x56\x59\x44\x2a\x09\xc7\xe4\x63\xfe\xe8\xcf\xe0\xd7\xdb\x5e\x3b\x45\xc0\xeb\x1e\x6e\x64\x83\x76\x01\xec\xbb\x0d\xdc\xef\x5e\x36\xba\x65\x01\x54\x49\x34\x33\xb1\x52\x44\x0a\xcf\xa2\xe9\x94\x65\x66\x61\x54\x78\xb8\x3d\x4c\x44\xd7\xfc\x94\xa4\x3c\x9a\xac\x5e\x5d\x8b\x25\x7e\x27\x66\xd9\xbf\xf2\xe0\xcb\x93\xea\x71\xa2\x77\x9d\x34\x06\x15\x9d\x9f\x6c\x14\x72\xb2\xbe\xa4\x31\xe9\xf5\x9f\xd1\x42\x78\x51\xea\xbf\xf2\x1c\xcb\x44\xdd\xf4\x2c\xc8\x2f\x95\xba\xd2\xc5\x8e\xc3\x3c\xfe\xa5\x52\x5e\x6b\x33\x31\x29\xa8\x41\xe7\xe9\xf3\x98\xa8\x38\x07\xc5\x49\xee\xc2\x2b\xf4\x2c\x5d\x26\xa1\x5b\x24\xe2\xe3\xe6\x8a\xf8\xd1\x96\x74\x2f\x07\x45\x49\xee\x9a\x25\x17\xe5\xff\x10\x07\x78\xf0\x64\xa6\x23\x06\x18\xca\x2e\xef\x8d\x66\x16\x21\x47\x93\x1f\xfa\xf9\xe7\x9f\x7f\xee\x5c\x5c\x74\x5e\xbe\x44\x35\x46\x6b\x06\x8d\xec\x5e\x11\xf5\xd5\x70\xd6\x2b\xee\xa0\x52\xda\xed\xa7\xa7\xf5\x32\xfd\xb4\xdd\xc6\x59\x9b\x22\xe5\xbe\x4f\xe1\x9d\x8e\x76\x2c\x8d\x32\x1e\x75\x79\xa3\x9f\xd1\xac\x69\x99\xc8\x18\xb1\x19\x2d\x0f\xd0\xf6\x86\xfa\xbf\x13\x95\xab\xd5\xa7\x44\x0b\x43\xb3\x07\x2d\x81\x4a\x9f\xf4\x94\x59\xcb\x42\xf6\xbe\x3c\x76\x96\xfa\x67\x70\x48\x6b\xcc\x06\xec\xef\x35\x4c\x08\xb5\x2d\x5e\x33\xd0\xce\x62\xf7\x98\x06\xbc\xd7\x00\x6f\x47\x1c\x6e\xaf\x1a\xf0\xae\xec\x1e\xf2\x9e\xad\xd8\x3b\x0a\xcf\x0c\x2e\xf7\xa4\xd4\x84\x4b\x3b\x2f\xc9\x68\x32\x68\xdc\xaa\x13\x0c\x4a\xb9\xd2\x69\xab\xd8\x44\xc5\xb4\x7b\x39\x4f\x17\x3f\xce\xe7\x2c\x8c\x02\x0e\xf7\xa4\xc1\x54\x06\x98\xc2\xe4\xa8\x57\xc1\xac\x90\x7c\x4b\xd8\x59\x41\x76\x0a\x89\xe7\x6e\x43\x66\x84\x57\xfb\x66\xf1\xb2\x86\x17\xb4\x66\xfe\x32\x8f\x7f\xa9\x4a\x0c\x35\x6e\x67\x1e\xaa\x6e\xcb\x06\x0f\x74\xcd\x99\x15\xb4\xa2\xfc\x95\x3c\x5a\x54\xdd\x33\x36\x3e\xe1\x64\x05\x5b\x69\xbc\xdc\x35\xd0\x5a\xec\x76\xc1\xc6\x3c\x6f\x05\xad\x3c\x4a\xa6\x31\x6b\x8d\x67\x81\x38\x5e\xb3\x4c\x39\x93\x6f\x2d\xb4\xb7\x79\x84\x75\xc0\x72\xfd\x36\x70\xa5\x9f\xf6\x75\x0c\x57\xb7\xc9\xb1\x70\x03\xf4\x33\xc2\xf2\x45\xe0\xc5\xbe\x35\x2e\x74\x8d\xf0\x9e\x1a\xa5\x77\xd0\x45\xfd\x50\xd7\x9f\x21\x08\x38\x8d\x7e\x78\x18\x9c\x99\x86\x33\xdf\x17\xf3\xb9\xae\x91\xef\x5b\x23\xd7\x35\x02\x85\xeb\xf9\xc3\x70\x0d\x10\xae\x3c\xa9\x3c\xea\x6d\x9a\xc9\x7b\x5b\xe4\xb3\x82\xce\xa0\xeb\x4a\x2d\x62\xa7\xce\x1b\x53\x73\xd4\xb0\x8e\x5e\x56\x64\xd6\x6d\x0d\xad\x1a\x41\x5e\x34\xa6\x86\xb5\x86\x4a\x87\x94\xbd\x0e\x76\x98\x24\xf4\x6e\x53\x84\x83\x13\xfc\x4e\xd5\x77\x9c\xd2\xa7\x6d\x28\x21\xcd\x35\x1c\xe9\xa6\xa5\xe0\x22\x09\x29\xd5\x00\xc7\x7b\x2c\x18\xcf\xca\x02\x50\xdd\xc7\x4a\x26\x2d\x1c\x50\xdb\xf2\x7c\xe8\xf1\xf4\xc3\x62\xa1\x27\xb6\xcd\x4c\xfc\x51\x6b\x7b\x1d\x66\xa3\x41\x32\x64\x23\xf8\xe5\x4b\x8d\x47\x4b\x24\x6c\x30\xf8\x81\x2a\x8d\x8d\xc5\xe9\x4b\x7c\x83\x79\x22\x9f\x52\x5a\xde\xb1\x84\x04\x26\x25\x14\xf9\xd7\x8b\xf2\xf7\x10\x03\xc9\x53\x7b\x01\x5e\xaf\x8f\x74\x91\x23\x93\xaa\xa7\x49\x0f\xb2\xde\x77\x58\x75\xaa\x84\xa0\xf4\xa1\x72\x94\x61\xf8\x0e\xad\x90\x79\xbd\x0b\xf2\x15\xba\x7f\xa7\x92\x96\x17\x44\xee\x44\x3e\x2b\x14\x2d\x65\x91\x4c\xef\xee\xb5\x2d\x4c\x1c\xb3\x40\x97\x60\x23\x52\x3e\x54\x19\x3f\x56\x55\xf5\x03\x08\xa7\xf3\xe0\xd6\x6d\x56\x41\x10\x99\x1f\x25\xee\xe3\x46\xf5\x45\x9b\x99\x7d\x7a\x9b\x5e\xb1\x75\xd6\x0a\xa3\x6b\x84\x95\x12\xcf\x9b\x44\x31\x17\x1b\xb9\x55\xa4\x83\xda\xf1\xb0\x09\xfc\xc8\x2b\xcc\x37\xb0\x3a\x4e\x56\x7b\x1f\xe5\x3f\x26\x2f\xed\xeb\xfb\x06\x57\xc2\x47\xe6\xd0\x5b\x9c\x62\xed\x2a\xc3\x66\x99\x78\xd4\xd0\xd4\xab\xe4\xd0\x96\x6c\x53\x82\x03\x1a\x7a\x69\xeb\xe3\x0e\xeb\x13\x54\xb1\x9a\xfa\x61\x67\x57\x0e\x68\xc0\x56\x09\xde\x07\x1f\x0e\x27\xd4\xb6\xf7\x52\x7a\x6c\x4f\x1f\x5c\x70\x39\x92\xde\xf6\xe9\x71\x1c\x04\x56\x91\x89\x3e\x6e\xd4\xe6\xbc\x08\xe8\xd6\x04\xcc\x9e\x01\x0b\xd6\x51\x01\xcc\x9e\xd5\xdd\xb0\x94\xe9\x89\x60\xae\x51\xfe\x17\x30\x9e\x6c\x2e\x51\x44\x69\x6c\x04\x23\xcd\x56\x24\x98\xf3\x09\xd7\x61\x36\xab\x05\x76\x43\xa9\xdf\x64\x5b\xdd\xeb\xd4\x8f\xa7\xf5\xf2\x66\xc7\x15\x9c\x7f\xe5\xe2\x7d\xe6\x04\xa6\xdf\x71\xc4\xae\x2a\x5a\x5a\xaf\xd1\x5c\xff\xc8\xe1\x07\x6e\x9a\x27\xa8\xb5\xd7\x3c\xed\x03\xbf\x3e\x77\x7b\xc0\x6f\xd4\x7d\xef\x6c\x48\xef\x6f\x12\x5a\xd3\x6e\xd8\x0c\xd4\xda\x23\xe5\xe1\x1c\x88\x85\xdf\x30\x26\xb5\xdd\xc3\xae\xd4\xb2\x0c\x7b\x23\x13\x89\x30\xa3\x47\x5d\x71\x0a\xc0\x98\x64\xa6\x13\x1b\xbd\x16\x2b\xeb\xab\x7c\xf4\x68\xf2\x9e\x5e\x56\xf6\x19\x74\xcb\x15\x07\x99\x17\xe5\x4a\x97\xca\xc0\x85\x4e\x55\xc3\xca\x30\xf6\xd9\x4e\x18\x2e\xc3\xa4\x2a\xe2\x2b\x63\xc4\x86\xf0\xaa\xd2\x39\x25\x35\x21\x70\xd5\x8f\x54\xff\x88\xf4\x8f\x80\x0e\x47\x24\xa7\x77\x1b\x32\xa6\xcc\xbb\x99\x45\x63\xe9\x92\x0c\xdc\x23\x4c\x86\xe3\x11\x45\x0b\x44\x26\x78\x52\x71\x8c\xe0\x0a\xf2\x40\x0b\x31\x7f\x93\x61\x32\x72\x1c\x37\xd0\xee\x11\x88\x42\x9c\xbb\x09\xe9\x75\xf1\x11\xa5\x63\xc7\x71\xf3\x61\x32\xa2\x47\x5d\xe5\xb8\x0a\xc0\x57\x8f\xcb\xd2\x3c\x02\xd7\x08\x4a\xe7\x34\xa2\xd0\x14\xf3\xb3\xb1\xb6\xc4\x32\xa5\x89\x65\xbb\xae\x75\xc4\x94\xd2\xc0\xb8\x0a\x5f\x8a\x5e\x53\x9a\x0e\xd3\x22\xe4\x8d\x76\x93\x76\x24\x06\xd3\xa4\x9f\xf4\xb3\x33\xda\xed\x67\x9d\x0e\x06\x33\xd9\xe5\x30\x1d\x66\xa3\x51\x94\xb4\x72\x8c\xef\x22\x41\xcf\x32\xcc\x4b\x34\x71\xa5\x67\x9d\x6d\x98\xe9\x70\x30\xe0\xc0\xd2\xb8\x53\x82\x08\x74\x70\x9a\x2d\x1f\x62\x19\x04\x38\x66\x09\x7f\xa9\x42\x8f\xd7\xb6\x6b\x30\x5c\x2d\xd1\xc5\x64\xa8\xa6\x77\x44\x51\x86\x48\x68\x3e\x1d\xc7\x2d\x3e\xe8\x51\x8f\x3c\xac\x45\xe0\x70\x7f\x8b\xae\x59\x52\xd9\xb4\xcd\x51\xff\x6e\xa3\x62\x5c\x18\x47\x81\x6a\xa1\x97\x96\xb1\xbc\x6b\xcd\x1a\x35\xf4\xb8\xcf\x8a\x6d\x0d\x9c\xe9\x6f\xd9\xe8\x21\x22\x15\xc6\xe4\xe8\xc8\x76\x62\x9f\x14\xd1\x27\xaa\x62\x6f\x81\x7d\x65\x9f\xb6\xb0\xdf\x89\x76\x02\x92\x95\x68\xf8\xc0\x76\xed\xcb\x8f\x2d\xce\x57\x0d\xc1\xc8\xbe\xae\xd7\xe8\x75\xeb\xf5\x25\x22\x92\x9e\xfa\xb5\xd3\x9e\xe5\xae\xf2\xd8\xfd\x38\x1c\xfe\xcf\xc7\xe1\xe8\xd1\x08\xaf\xdd\x8f\x1f\xf1\xc0\x7d\x7d\xf9\x7e\xfd\xfa\x72\xfd\xfa\xf5\x40\xfc\x7f\x1d\xdf\xf5\xc8\x93\x0d\xde\x12\x79\x82\x17\x97\x46\x4a\x83\xfb\x12\xce\x43\x5e\x9c\x26\x53\x31\x2f\xb2\x45\xe0\x6a\x6c\x83\x71\xc3\xa5\x5c\x65\xf3\xb1\xcc\x4d\x07\xdb\xb3\xd4\x39\x06\xfb\x5a\x4f\x6e\x83\x34\xbb\x29\x03\x2f\x89\xdb\xf3\xeb\xea\xae\xe6\xf2\xd2\xa9\x4c\xad\x70\xed\x36\xf2\x90\x73\xf5\x69\x4f\xb5\x54\x2a\x5f\xc4\xc1\x1b\x7a\x8f\x06\xa3\xe3\x29\xdc\x3a\xd8\xba\x83\xd3\x1e\x69\x3a\xee\xea\x93\x45\xfd\xfa\xf2\x04\xd7\x2b\x5c\xec\xaa\xd0\x6b\xa8\x10\xee\xaa\xa0\x75\xe1\x87\x9e\x6a\x9a\x2a\xd9\x5a\x59\x7d\x0a\xac\xdc\x80\x69\x82\x23\xdd\x2a\x8f\x99\x32\xfe\x3a\xc8\xf9\x4f\xe2\x38\x13\xee\xd4\x15\x28\xc5\xe7\x4c\xdd\x6d\x97\x6b\x81\x97\x4d\xb7\x26\x4c\x37\x97\xdb\xdd\x84\xd9\x21\xca\xb0\xcc\xc6\xde\xb0\x35\xab\x40\xb5\x46\xc1\x68\x24\x08\xb6\x5e\x6b\xb7\x54\x83\xcc\xd5\xf7\x8e\xa5\x9b\x92\x41\xe6\xf1\x2f\x2e\xab\x2f\x09\xd2\x74\xd9\x52\x49\x34\xb6\x9a\x64\xcb\x4d\x8b\x9f\x7d\x35\xe8\x2d\xf7\x3b\x7c\xd7\xfd\x0e\x2f\x8f\x9d\x7a\xcd\xb1\x65\xd8\xe5\xf9\x57\x45\x31\x82\xa3\xae\x8a\xc0\xd8\x70\x09\x5a\x36\xdb\xac\xaa\x41\xc5\x90\x07\xd9\x74\x29\xa6\x29\xaf\x38\xaf\x2b\xa3\x5a\x86\x03\x5e\xf0\xb4\x37\x33\x4b\x87\xba\x45\x6f\x5a\xaa\xdb\x72\xb1\xa5\x3f\x55\x40\x4a\xfa\xd2\x5d\x2d\xd3\x8a\xfc\x97\x36\xe8\xad\xef\xe9\x58\x45\x9b\x5d\x6a\x4d\xba\xa0\x2f\x07\x00\x97\xdb\xd8\x96\x07\x3f\xfa\x5a\x1f\xcb\xf1\x52\x9f\x45\x77\x5a\xf9\x2c\x5d\xc6\x21\x04\x1a\x4d\x5a\xca\xb9\x1a\xee\xef\xb0\x21\xd0\xef\xde\x60\x5f\xbb\x4f\x2b\x06\xd7\xcf\x5a\xcb\x95\x0c\xd9\xc8\x71\xc4\xbf\x2e\xc7\x9b\xaa\x74\x52\x51\x20\xa9\x77\x4d\xe0\x16\xae\x4b\xee\x25\x84\xda\xc5\x76\xf3\x2d\xdd\xc0\xe6\x0b\xd2\x23\xdb\x3d\x77\x69\x78\xcb\xcd\x12\xbc\xee\x53\x0e\x2b\x1d\xa7\x41\x5f\xef\x38\x47\xa5\x23\x05\xc4\xb7\xb1\xe7\x0d\x54\x6f\xcd\xb3\x26\xef\xbf\xac\x59\xd2\x8f\x15\xd3\x84\xb5\xd2\x49\x6b\x08\x67\x07\x13\x18\x56\x3e\x06\x6c\xa5\x19\xc0\x1c\x19\x12\x35\x4c\xdb\xf0\x2c\x6b\x80\xea\x47\x97\xea\xad\x49\x43\xec\xe5\x83\xd6\xa4\xac\xbf\xc5\x23\xa5\x38\x6c\x36\xac\xd0\xf5\x1a\xe2\x7e\x6d\x1b\x18\xed\x1b\xdf\xbe\xe1\x90\x17\x1a\x69\xa6\xd7\xaa\x0f\xce\x0a\xad\xc1\x43\x6d\x56\x5d\xb4\xaa\x6b\xac\x6e\xb7\x64\x0e\xec\x15\x93\x97\x0a\x03\xac\x5d\x26\x1d\x3a\x38\x1a\xc2\x96\xe1\x69\xee\x7e\xc2\x6e\x24\xbb\xae\xf7\x7f\x3b\x83\x32\xb8\xb2\xea\x82\xab\xbd\x3a\x7a\x78\x77\x1a\x80\x1d\xd4\xb3\x86\xfa\x87\xf5\xb2\xa9\x37\x95\x0e\xdb\xc2\xeb\xc3\x7b\x6a\x43\x01\x6e\xdc\x93\x2c\xa0\xb2\xba\xc1\xf9\xe2\x16\x2a\xb6\x41\xd8\xbd\x4c\x5a\x81\xa8\x25\x68\xb9\x42\xc3\xb5\xee\x96\xfa\xd2\x20\x11\xec\x47\xc6\x61\xb3\xb6\xf8\xfe\x3d\x6a\x87\x8a\x72\x60\xf6\x8e\xea\xe6\x55\x2e\x57\x33\xda\xb2\x33\x61\x60\xf9\x1e\xad\x35\x58\x0d\x1c\x75\x1b\x36\xc9\x5d\xd3\x51\x02\xd8\x34\x1f\x3b\xa8\xae\x84\x8b\x1e\xf2\xd2\x29\xbb\x30\xd6\x6c\x52\xc2\xd6\xf1\xaf\xd0\x6c\xa3\x92\xfd\xd0\x09\xb2\xa1\xec\x98\x1f\xbb\x58\x75\x7a\xec\xbc\x5d\xb3\xb3\xbb\x73\x87\x4f\x8e\x0d\xef\xb0\xb9\x29\x61\xb2\xe7\xd4\xdc\x43\x5b\x35\x06\x5a\xd1\x21\x7f\x15\xff\xac\xea\xa3\x95\x99\x5a\x17\x97\xa4\xd9\x92\xc7\xec\x6d\xc6\x7a\x0d\x98\x6d\x9f\x8a\xbd\xd9\x56\x1d\xea\x7d\x13\xb2\x87\x9a\x1e\x14\x21\xe1\x72\xcc\xdc\x8a\xd8\x28\x3b\xe6\x72\x6a\x54\x95\x9c\xf4\xba\x18\x9f\x3d\x5b\xaf\xf9\x69\x77\xbd\x8e\xf2\x37\xc1\x1b\x97\xe3\x01\xf3\x65\x44\xd5\x22\x8a\x2a\x07\x7b\x35\x1d\x3a\x83\xe1\x0d\x26\xc3\x11\xf6\xf2\x34\xe3\x35\x33\xae\xe2\xad\xac\xd1\xa5\x37\x58\x07\x99\x48\xda\x9c\x76\xfb\xbc\xc9\x8e\x8b\xb7\xdb\x65\x8f\x03\x46\x31\x2f\x95\x61\x65\x31\x12\x1e\x66\xf4\x1b\xcc\xd5\xac\x77\x1b\xe4\x71\x0f\x54\xef\x30\x19\xe8\x32\x8b\x58\xd8\x7a\xdc\x6b\xc1\x43\xd5\x16\x4f\x5b\x93\x28\x09\x5b\x41\x4b\x46\x7c\x81\x6b\xe7\x7e\xd2\x6e\x6f\x76\x1c\xd8\xf9\x48\x08\x79\xbb\x68\x5a\x5d\xb6\x3c\x9c\x90\x15\x80\x41\x63\xaa\x16\x9e\xfd\xc6\xdc\x1d\x74\x0e\xd3\xbb\xb3\xc1\x66\x02\x6f\xf0\x4b\x2f\x04\xcf\x24\xbd\x41\x4a\x70\x97\xb2\x33\x7c\x35\x29\xfd\x31\x2e\x45\x08\xae\x4b\xcd\xfd\xea\x4d\x5e\xe3\xd2\x51\x48\xba\xb8\xf5\x02\x8e\x5b\x49\xca\x5b\x00\x0a\xe6\xad\x58\x33\xbe\x14\x56\x1f\x7e\xd7\x76\x6f\xfb\xe5\xf6\x5a\x51\xae\xfd\x9e\xd8\xe7\x43\x0d\x4d\xa0\xc3\x77\x18\xa6\xf5\x9b\xa7\x82\xf7\x2b\x9e\x37\xea\xab\x25\x69\xb7\xf1\x43\xd6\x61\xc9\xcc\x72\x98\x8c\xcc\x9d\x21\xbb\xcf\x58\xbb\xb8\x46\x54\x58\x1b\x6b\x02\x73\xed\x68\xf4\x6b\x96\x95\xfd\x96\xe7\x86\x35\xb3\x54\xf5\xea\x70\xe7\xda\x92\x83\xfa\x15\x6b\x4b\x02\xa8\xae\x2d\x99\xba\x6d\x6d\xc9\xdc\x07\xae\x2d\x85\xf1\x7f\xf7\xda\x92\x48\x3e\x7c\x6d\xed\x79\x01\x7d\x6f\xf3\xf5\xa5\x15\x08\x68\x95\x95\xa5\xbc\x34\x1c\xb8\xb2\xd4\x44\xfc\xbe\x2b\x4b\x31\x9a\xfb\x97\x96\xb9\xe7\xaf\x2f\x2d\xcd\xac\x76\xae\x2d\xf3\x5e\xf9\x21\xcb\xca\x7a\x85\xf1\x15\xf2\x57\x01\x64\xb0\x35\x67\xcb\x12\xb3\x4a\xec\x7a\x41\x61\xe3\x09\x91\xb5\xb7\xac\x20\x46\x61\x0d\x49\x6d\xb3\x5e\x43\xa0\xbd\xa9\xae\x1f\xbf\x92\xc0\x7e\x9d\x05\x65\x21\x7a\xc0\xa2\xaa\x8a\x3b\x7b\x01\x57\xc0\xf2\x9c\x85\x62\xbd\xa8\x70\x56\xad\x60\x3c\x4e\xb3\x50\x1c\xf8\x79\xda\x32\x6f\xd1\x5a\x39\xe3\xcb\x85\x94\x77\xe0\xd2\x33\xaf\x9f\xc7\xac\x31\xe6\x64\xfb\x73\x1d\x4d\xd0\xe5\xc7\x3a\xeb\x75\xa3\x25\x37\xc4\xd8\x2c\x12\xca\xaf\x8f\x0e\x7a\x22\x54\x26\x5c\xa9\xa6\x7f\x38\xcd\xca\xfa\x30\xf6\x99\x7d\xf3\xb7\x8d\x53\x69\x97\x2f\x2d\xf9\x43\xcc\x5c\x1b\x89\x61\x17\x93\x1b\xa7\x41\xc8\xc2\xd6\x24\x4b\xe7\x5a\x9f\x28\x8b\xe5\x47\xb5\x51\x56\x88\xb3\xfe\x5e\x42\x71\x45\xbe\xdd\xf5\xf2\xa4\xca\x3e\xee\x7f\xa5\xb2\x8f\xea\xce\xb6\xca\xab\xbc\xa3\xb5\xee\x25\x2a\x93\xa3\x19\xd0\xc3\xa7\x47\x43\xe8\xb3\xe2\x08\xc3\xc4\x11\x86\xb8\xf2\xe8\x02\x17\xb2\xa7\x10\xdc\x96\x15\x37\x7e\xd5\xea\x55\x2d\x56\xc1\xcd\x1b\x2e\xae\x86\xe0\x80\x48\x3b\x24\x92\xfe\x89\x10\x41\x33\x70\x8b\x82\xe4\x93\x1b\x34\xea\x1f\xd4\x8f\xa2\xc1\x6d\xd7\x2a\x8d\xfa\xef\x66\x1a\x2c\x80\x35\x5e\xb3\xa4\x8d\x06\xea\x96\x22\xb1\xc4\x2a\xe1\xd4\x57\x98\x5c\xb3\x4a\xf8\xac\x83\x30\xa8\x36\xdb\x4a\x27\xb0\x45\xcb\x98\x63\xa4\x85\x6a\x7b\xb2\x35\x11\x95\x29\xd2\x0e\x97\x1e\x4e\x3b\x1a\xc2\x61\x17\x59\xba\xd6\xbd\x37\x58\x35\x19\xc8\x60\x5c\x88\x82\x47\xdd\xfe\x96\x32\xec\x41\x0b\x0a\xfc\x46\x3d\xe8\x1e\xac\xa6\xa7\x02\x50\x07\x5f\x85\x41\x2d\x6b\x68\x8a\xa9\xe6\xa9\xba\xff\x7a\x5b\xbb\xff\x6a\x68\x98\xf0\x87\x71\x14\xed\x58\xea\xd7\x19\x03\x0d\xed\xe0\x61\xd0\x15\xbf\x6e\x24\x34\x94\x87\x0e\x86\xb9\x8d\x7e\xf8\x1a\x31\x20\x0e\x5b\x24\xa6\xda\x81\xf7\xbc\x05\xc6\x95\xd5\x5e\xb8\x54\xfa\x8a\xbd\xc2\xc0\x38\xac\x33\x45\xbd\x03\x7b\x63\x21\xfd\xb0\xe5\xac\x7d\x42\x3d\xbc\xcf\x1a\xc2\x41\xf7\x44\xba\xd2\x7d\x97\x43\xd1\x44\xea\x04\xaf\x3c\x6d\xd5\x62\x9b\x24\xdd\x0b\x7b\xeb\xcd\xab\x8b\xda\x36\xc8\x62\x77\x68\x23\xdc\x92\x7e\x41\xab\x43\x6d\x46\x8a\xdd\x63\xa2\xd3\x8c\x6b\xa7\xb7\xc5\x29\x82\x16\x18\xf4\xa3\x87\xea\xb9\xa8\xe4\xc6\xeb\x2b\xb6\x22\x1b\xcc\x81\xfb\x91\x5d\x75\x17\xbf\x31\x04\xdb\x3c\x82\xe5\x9e\xb0\x9d\xa7\x41\xe5\x80\xec\xd7\x61\xb2\x0a\xd8\xc1\x3c\x56\xd5\xdb\x93\xc5\x4a\x7b\xea\x26\x2e\xab\xe0\x08\x26\xdb\x30\xea\x8d\x65\x3d\xe3\x78\x6d\x27\x6a\x45\xb1\xfb\x45\x85\x83\x9a\x06\x37\x6f\xf7\x37\x2d\x1d\x28\xfe\xda\x4d\xa7\xf9\x16\x4a\xac\x15\xdb\x87\x59\x1e\xc8\x11\xb5\xbf\xb9\x87\x2f\x35\x0d\xe1\xb0\x55\xa6\x6b\x1d\xb8\x03\x18\x74\x59\xd5\xea\xc3\xb8\xca\xfb\x1a\xd3\x0f\x03\xe4\xb0\xce\x58\x15\x0f\xec\x8f\x8d\x77\xa5\x4b\xf2\x74\xff\x15\xc6\x65\x50\xff\x40\xa3\x32\xa8\x73\xa8\x2d\x99\x44\xb4\x7a\x9c\x10\x6b\xa5\xe6\x26\xa4\x6c\xdd\x53\xa3\x45\x69\xb6\xfe\x35\xb4\x28\x21\xd4\xa8\x46\x01\xae\x1a\x93\xb0\xab\x65\xed\xac\xbc\xff\x68\x41\xf5\x03\x07\x4b\x36\x59\xc1\xa3\xea\xe8\xe9\xe1\x03\x50\x85\x74\xd8\xf4\x57\x6b\x1f\xd8\xb7\x5a\x37\x58\x9d\xd7\x28\xbd\xed\xd7\xb1\x1b\x05\xe4\x70\x8e\xa3\x2a\x3e\x80\xe9\x68\xbc\x6b\xe6\x48\xfa\x11\x24\xf4\xfb\x6b\xae\xd2\x4b\x80\x0e\x34\x43\x2a\xd5\x3d\xd4\x04\xa9\xdc\x83\x4a\x07\x77\x3c\x54\x3a\xa8\x7f\x65\x38\xd0\x3d\xf3\xc0\xe6\xde\x0e\x56\x54\xc2\xd8\xb6\xff\xcc\x2d\x2f\xf0\xfd\x5d\x6d\xd6\xa6\xae\xe9\xe1\xd7\xd7\x9b\x13\x95\xc0\xed\x61\x56\x54\x2a\xbf\xcd\xbc\xa8\x54\x68\x1f\x33\xa3\x72\xa7\x7e\x45\x73\xa3\x12\xe0\x87\x99\x1d\x95\x71\xe3\xbb\xaf\x49\x9a\x5f\xd1\x3e\x74\x72\x00\xcc\x1e\x93\x02\xe5\xb6\x4d\x06\x64\xee\x33\x09\x12\xe9\x5f\x71\xf0\xe5\x1b\xc9\x83\xcd\x57\x4a\xe8\x68\x6d\x73\xe9\x59\xd2\x56\x73\xaf\x4a\x17\x1e\x68\x7e\xb2\xf3\xda\xcf\x98\x9f\x64\xbb\xcd\x4f\x92\x11\xf8\x5c\xad\x9b\x9f\x24\x23\xcb\xd7\x2c\x39\x79\x42\x29\xcd\x4a\xe6\x27\x27\x4f\x76\x9a\x9f\x64\xbb\xcd\x4f\x92\x11\x49\x76\x9b\x9f\xb0\xc6\x87\xd8\x0f\x34\x77\xbb\x8f\x44\xed\x62\x5b\xcc\xdd\xee\x25\xd0\xe6\xc9\xfd\x6a\x73\xb7\x87\x91\x67\x09\x99\x3d\xa9\x73\xcb\x0a\xfb\x83\x3c\x9b\xc8\xd3\x5c\x5d\x1f\xbc\x79\x57\x5d\x57\x34\x5d\x14\x1b\xe8\x95\x47\x56\x75\x37\xb6\x85\xb3\x47\x49\x60\xbf\xf2\xf3\x03\x8d\xc8\xce\x27\x08\xf7\x3d\x3e\x28\x3b\xaa\x6c\x7a\x6e\x60\x8a\x7d\x68\x1c\xec\xf2\xcb\x8d\x87\x9f\x2d\xca\x70\x1e\x22\x88\x17\x48\x54\x04\x9f\xfa\x73\x91\xaf\x30\xee\xa9\xbb\x71\x7b\xa8\x23\xa8\x3a\xa8\x03\x3d\x42\xdd\x87\x99\x18\x07\xee\x5e\x11\x78\x86\x32\xbc\xfb\xcc\x56\x3e\x7a\x73\x7e\xf1\x0a\x91\x29\x6b\x70\xf9\xdb\x4a\x37\x1b\x22\x4b\x41\xe8\x9d\xbf\xbf\xfa\x79\x4b\xc9\x6a\x7c\x20\x53\xef\xd5\x3f\x5e\xbd\xb9\xdc\x51\xb1\x15\x95\x9b\x38\xff\xe9\xc7\x5d\xcd\x14\xd1\x7e\x8a\x6a\x01\x67\xf0\xae\x30\x03\x0d\xec\xb6\x76\x62\x53\xc1\x28\x6b\xb7\x15\x5d\x14\xd8\x5f\xb3\x84\x6f\x2b\x36\x36\xc5\x64\xdc\x86\x34\xdb\x56\x32\x28\x90\xd5\xf1\x16\x9a\x0b\xce\x36\x24\xb7\x33\x18\xbe\x9b\x51\x66\x6a\xbf\x88\x83\x3c\x7f\x13\xcc\xd9\xb6\xfa\xf9\x66\x33\xc2\xe4\x6a\xe3\xe2\x8d\x2b\xc3\xb6\x11\x15\x80\xcd\x8a\x27\xc6\x75\x58\x28\xee\x4d\x92\x61\xe6\x09\x02\x18\x91\x88\x0e\x11\x4f\x17\x88\xa0\xab\x94\xf3\x74\x8e\x88\x8c\xd9\x30\x22\x01\x1d\xaa\xf8\x40\x3a\x26\x90\xce\xc9\xe9\xb0\x88\x20\x51\xae\x3d\x22\xe3\xda\x35\x77\x42\x59\xc9\x97\x2f\xc2\xc6\x69\x82\x7e\xb2\x99\xac\xd7\xe0\xd1\x49\xfa\x74\x9d\x65\x6c\x82\xf0\x7a\x8d\x10\x49\xe8\xf1\xff\xfc\x69\x18\x74\xbe\x8c\x8e\x23\x8f\xb3\x9c\xbb\x09\x1e\x24\xe0\xad\x0e\xc3\x2b\x33\x37\xa5\x22\xcd\x78\xa6\x4d\x7d\x37\x95\xad\x65\x9e\x26\x5e\xbc\x5e\x73\x4b\xaa\x48\xb5\x03\x2a\x69\xc9\x85\xd5\x27\x26\x29\xde\x90\xb8\x40\x3f\xb5\x3c\x3e\x8f\x4b\x1e\x9f\xc7\xd2\x6e\x27\xab\xbf\x7f\x3b\xb2\x99\xda\x3b\x36\x61\x19\x4b\xc6\xe6\x2a\x6f\x16\xe5\xad\x59\x90\x27\xdf\x0a\xce\xcc\x92\x56\x94\x44\x3c\x0a\xe2\x28\x67\x61\xab\xd3\xca\x97\x0b\x96\xb9\xb8\x54\x62\x1c\xc4\x31\x0b\x91\x76\x84\x7e\xc4\xd7\x6b\xa4\x5e\xfd\x59\x2a\x56\xdb\x67\x83\x95\x3c\x60\x3e\xdf\x48\x8c\xd3\xc2\x03\x02\x11\xb8\x1a\xcf\xea\x99\xb4\xbf\x70\x31\xc9\x6a\x91\xce\x4c\x84\xc5\x26\xe0\x85\x5b\xbd\x66\xa6\xf6\x5e\xf4\x46\xf0\xb1\x8c\xe5\xb9\x18\x42\xd8\x90\x58\xc4\x67\x2c\x13\xfb\x92\xa8\x2d\x76\xa1\x22\x96\x19\x01\xc3\x16\xd4\xd6\x2d\xe0\x3e\x2b\x78\x37\x55\xaf\xff\xc7\x19\x03\xd7\x05\x8e\x63\x07\x5d\xbb\xb3\xa2\xd2\xf9\x77\x70\x2b\xe1\x33\x52\x44\x86\xf3\x8f\x7a\x44\x87\x7d\x93\x21\x96\x8a\x10\x71\xfe\x51\x77\xb3\xc1\x84\x3b\x8e\xab\xda\xc8\x19\xff\x49\x83\x7e\x3b\x19\x34\xa6\xc2\xe0\xf8\xcc\xfb\xf4\x09\xb0\xf8\xf4\x89\x72\xbc\x71\xc7\x24\xc5\x64\x5c\xf5\x46\x40\x2b\x2e\x55\x80\x5b\x6b\x3f\x5d\xb3\x20\x87\xf5\xad\x1c\x44\x76\xa6\x59\xba\x5c\x20\x5c\xf6\x56\x50\x76\x4b\x6d\x69\x2e\xa4\xa2\x1c\xe1\x3e\xbc\x76\x2e\xb9\x67\x2e\x7c\x82\x37\xc0\xb8\x2f\xcc\x9b\x92\xaf\x0b\x18\x82\x1b\x8d\x2b\x4f\xbb\x0b\x16\x7c\xc9\xe6\x8b\xb8\xf2\x78\x5c\xe1\xef\xa2\x53\x3e\x63\x41\x78\x86\xb0\x17\x2c\x16\x70\x69\x22\xd2\xb2\x6a\xc2\x0c\x12\xc2\x50\x8d\xc6\x22\x63\xd7\x22\x01\x38\x82\xe5\xc2\x1e\x11\xa4\x83\x4e\x95\x01\xe4\x8b\x20\x29\x81\x68\xb0\x05\xf0\x74\x55\x8c\x77\x37\x2e\xbd\x7b\x49\x4f\x8b\xdb\xb0\x80\x32\xef\xcb\x45\xc6\x69\x2c\xf0\x40\x64\xc7\x8d\xd8\x00\x3d\x43\x3e\x7a\x8a\x76\xa3\x90\xb0\x5b\xbe\xa5\x65\x9d\x75\x60\xdf\x45\x35\x8c\x31\x26\x89\x9c\x95\xab\x34\x5c\xdd\x3b\x2b\x72\xde\x0e\xe8\xdb\x77\xc8\x47\xcf\x11\x36\x1c\x66\x28\xc0\x84\xd1\x75\xb9\x77\x96\x0b\x35\x88\x51\x54\x6e\x54\x2c\xcb\x72\x79\x48\x6a\xc1\xbf\x9d\x7c\x5e\x14\x67\xe5\x8a\xaa\x4b\x58\xf0\xf6\xdd\xad\xaa\x08\x70\x7b\xb5\xdb\x19\xa7\x49\xc8\x92\x5c\x30\x62\xd3\xb0\x16\xe9\x4d\x4a\x62\x52\xee\x6f\x5d\x86\x9d\xfb\x0f\x35\xae\x63\xdd\xfd\x36\xcd\x8f\xea\x7c\xe2\x32\x9a\x6b\x51\x2d\x88\x92\x7b\x78\x85\xa0\x40\x4d\xa1\xf0\x3b\x2b\x7e\xf7\x77\x78\xc9\x04\xbf\x3e\x75\xca\x2d\x12\x02\x43\xc9\x77\x42\xc0\xf0\xd1\x9f\x20\xca\x21\x9c\xb8\x7d\xd4\xe9\x21\xc2\x23\x1e\x33\xbf\xd9\x70\xc6\x2b\x85\x38\xdb\xd8\xe3\x74\xc5\x93\x2d\x0b\xb5\x54\xe7\x21\xec\x6a\xb9\x90\x0b\x76\x67\xc7\x6a\x90\x50\xc1\xca\x3b\x60\x4a\xa8\xfb\x2d\xd1\x13\xb9\x1d\xc3\xd9\x91\x0f\xe6\x86\xf9\x3d\xdd\xd7\x61\xdf\x36\xcd\x3d\xcd\x67\xe9\x8d\xea\x24\xc6\x24\xfb\x2d\x27\xa2\x14\x4c\x6e\xcf\x89\x28\xd5\x79\xc8\x44\x84\xe9\x4d\x82\xb1\x71\x19\x59\xf1\xc5\x6a\x6c\xe5\xf7\x22\x49\x83\x6f\xae\xcf\x67\x68\xcb\x1c\x37\x95\xf4\x66\x7c\x1e\xbb\xc8\x47\x5b\xc6\xb9\x11\x3a\x26\xbf\xcf\xda\x90\x21\xf7\x0e\x5d\x1d\xb2\xd6\x7f\x66\x7d\x28\x1b\xdb\x7b\x56\x88\x72\x7e\xbf\xc7\x1a\x29\x46\x60\xcb\x2a\x31\x9d\xfd\xdd\xd6\xc9\x41\x93\x52\xa9\xf5\x2b\xaf\x95\xbc\x79\xad\xcc\xff\x6f\x5c\x2b\x32\x7e\xe4\xa1\x6b\x45\xd6\xfa\xcf\xac\x15\x19\xc8\xe1\xbe\xb5\xa2\xc2\x3d\xec\xb1\x56\x8a\x11\xd8\xb2\x56\x4c\x67\x7f\xb7\xb5\x72\xd0\xa4\x54\x6a\xfd\x0a\x6b\xa5\x70\x8c\xb6\x5e\x7f\xe5\x7a\x28\x12\xe4\x19\xb1\x5c\xfd\x8a\x27\xad\x2b\x9e\x74\x16\x59\x34\x0f\xb2\x55\x65\x4e\x55\x0f\xfd\x72\xb4\xb0\x43\x06\xd4\xae\xb8\xd9\x36\x7d\x5b\x96\x5f\xa3\xfc\x6a\x91\xa1\x89\x7f\xf6\x40\xf1\x75\xc8\x48\x42\xb2\x11\xc6\xbb\x24\xd5\xdd\x52\xea\x2e\xf4\x66\x75\x11\x63\x1f\xec\xb4\xd0\xbb\x0b\xf4\xbc\x89\x27\xef\x07\x3c\xbb\x17\x78\xde\x44\xc4\xfb\x01\x4f\x69\xe1\x17\xae\x59\xd8\x77\xf1\x68\xb7\xf0\x9e\xca\xe7\xff\x6c\x9b\x80\x95\x1a\x57\xa8\xcd\x9b\x8a\xca\xcf\x30\x49\x1b\xa6\x55\x06\xc0\xad\xcf\xe5\x70\x54\xbf\x95\xab\x59\x5c\x16\xbe\x09\x1e\xc6\x79\x6a\x6b\x0a\x1e\xf9\xdc\xb3\x7c\xc2\x60\xb5\x39\x9c\x9d\x40\x3d\x60\x27\x95\xcb\xbf\xc2\x7e\x5c\xbf\xba\x52\xa1\x01\x5c\x6c\x25\xa8\x30\x55\x4a\x6b\x5b\xf1\x74\xdb\x57\x41\xd4\x6b\x8e\x79\xb5\xc1\xf4\xc0\x4d\xaa\x61\x34\x74\x7f\x8a\x68\xc7\x24\xa3\x8d\x7c\x30\xe0\x0c\xfb\xf7\x01\x10\xf8\x6d\x01\x20\x70\x03\x9f\xaa\xbf\xe6\x44\x01\x0f\x53\x81\xc1\xe5\x7c\x25\xf7\x4c\x4a\x26\x06\x7f\xd3\x78\x61\x54\x33\xa7\xfd\x95\xe9\x0a\xcc\x0e\xef\xa1\x2b\x28\xf3\x00\xba\x82\x7a\x96\x48\xb7\xd5\x9c\xf7\x57\xef\x53\x9a\xb3\x7b\xfb\x94\xe6\xec\x41\x7d\x4a\x73\x06\x7d\x2a\xe9\x4e\x11\xf2\x0f\xdd\x50\xf6\xd2\xa6\x89\xa6\x1a\x38\xd3\x61\xdb\xcc\x55\x9a\xf2\x9c\x67\xc1\xa2\x53\xd6\xd8\x76\xa4\xed\x73\x2b\xcc\xd2\x85\x10\x29\x3a\x73\x96\x2c\xd1\xd6\x2d\xa5\x14\x3b\x55\x23\xac\x19\x78\x5d\xab\xeb\xee\xb3\x7f\x34\x40\xaa\xef\xa6\x70\xcb\x02\x90\x96\x71\x19\x50\x1c\xe5\xbc\xb3\x4c\x72\xbe\x82\xfb\x0e\x12\x41\xa9\x38\xda\xa5\x97\x6d\x6f\x79\x15\x37\x40\xfa\x45\x72\x9a\x28\x15\x37\xf2\x91\xad\x6f\x35\x18\xca\x8d\xc1\xc5\x15\xd5\x52\xd9\xc0\x57\x10\x75\xc6\xe6\xe9\x35\xd3\xe3\x57\x19\xe6\x8a\xec\x26\xca\x17\x38\x2f\x73\xc6\x6f\x58\xc2\x57\x13\x50\xc5\x6c\xd9\xbf\x8e\x76\xc2\xb8\x89\x20\xbe\x61\xf5\xc9\xe9\x01\x4c\x7d\xe0\xb2\x2d\xdb\xfe\x55\x8e\xb0\xbc\xc5\xab\x71\xf6\x6a\xe0\x78\x40\x4a\x0e\x61\x54\x39\x26\xd5\x28\x23\x4b\x6f\x90\xa5\x1f\x2c\x32\xc6\x69\xdc\x99\x87\x9d\x67\xd6\x7c\x64\xcd\xd9\xd8\x5c\x2b\xd6\x03\x34\xd5\x30\x33\x37\x92\xf7\x96\x5d\xaf\x4b\xbd\xc0\xbe\xbb\x6f\xef\x53\xab\x5e\x6d\xc0\x53\x7b\x38\x2a\x84\xdb\x4c\xa7\xf5\x49\x32\x4f\x42\x81\x5e\x0f\xae\xef\x38\xf7\xee\xd1\x48\x9c\xd0\x66\xa5\xb9\x11\xe3\xac\x07\xef\xa1\x83\xa0\xdb\xff\xaa\x41\x90\x23\xf9\xf0\x41\xd0\x33\x71\xff\x20\xc0\x08\x48\xe8\x8a\x02\x2d\x62\x3b\x70\x0c\x0c\x31\xa5\x35\x06\x0f\x8e\xa9\x9b\xee\xc3\x55\x6c\x9f\x40\xff\xf5\xe4\x62\x94\x96\x43\x24\xa3\x49\xd1\xb8\xe4\xec\x3f\xa5\x79\x24\xbe\xa3\x64\xea\x5d\xb3\x8c\x47\xe3\x20\x26\xe9\xee\x72\xb3\x34\x8b\xbe\xa4\x09\x0f\x62\x3b\x36\x81\x9b\x14\xb7\x7a\x8e\x63\x7d\xe8\x0d\xd0\x4a\xf2\x13\x73\x6d\x88\xbd\x85\x02\xed\x62\x92\x3f\x1c\x4a\x3a\x99\xe4\x8c\x2b\x7f\xac\x35\xec\x83\x4c\x14\x8a\x1a\xfa\x05\x39\x05\x3b\x51\xe1\xc4\xfb\x10\x23\x50\x82\x6a\x88\x09\x2c\x21\xe9\x0c\xf0\xee\x52\xd4\xf5\x16\x81\x7c\x55\x0e\x40\xee\xca\xf8\x48\xc6\x8f\xad\x88\x14\x6e\x19\x56\x05\x11\xdc\xb7\xb3\x89\x55\x72\x3c\x8b\xe2\x30\x63\x09\x04\x10\xca\x72\xee\xe2\x2a\x22\x9b\x68\xe2\x4a\xd3\x0a\x4a\x69\xe6\x38\x6e\x46\x05\xcd\x2d\xda\x3d\xef\xe9\x23\x5d\xca\x9b\xb1\x68\x3a\xe3\x2e\x3e\xa3\xdc\xbd\x89\x92\x30\xbd\xc1\x26\xad\x5d\x24\xe5\xe3\x2c\x8d\xe3\xcb\x74\x21\x16\x42\xad\x72\xdb\x42\x2c\x5d\x72\x96\xfd\xa0\x32\x4e\xa1\xc5\x01\x30\x42\x5f\x2f\x04\x4c\x0c\x5a\x29\xc4\x79\x88\x04\x3c\x3e\x83\xe2\x31\x9b\xf0\xb6\x69\x00\x80\xfd\x53\x66\x1e\x9f\x38\xce\xae\xfc\xb3\x02\x5b\x05\x6e\xa0\x2c\x4c\x7c\x69\x70\x52\x6c\x47\xd9\xc0\x40\xb0\x36\xaf\x74\x01\x61\x65\xad\x0d\x59\x23\xec\x37\x14\xd7\x79\xe5\x1a\x00\x44\x5b\xb6\x88\x0e\x36\xb5\x34\x89\xd3\x80\x77\x64\x19\x0b\x76\x09\x50\xa9\x0c\x41\x19\x8b\x03\x1e\x5d\x33\xb1\x0d\x45\xde\x18\x84\x16\xb5\x70\x40\xc9\x19\xd1\x48\x11\x5e\x5e\x84\x94\x72\xeb\x16\x4f\x06\x8e\xe0\x46\xca\x4e\xa5\x02\x6d\x83\x0d\x49\x49\x19\x36\xd2\x06\x6b\x85\x41\x86\xf5\x4e\xa2\xd8\xf3\x6d\x17\x2d\xe6\x39\x01\xf0\xaa\xb0\x75\x13\xf1\x59\x94\xb4\x82\x96\x46\xa0\xa5\x1b\x64\x61\x6b\x2c\xb8\x49\x94\x80\xcd\x99\x19\x0d\x81\xd5\x1d\x4f\x17\x7e\x31\x69\x92\x6c\xfc\x00\xa8\x78\x1b\xc9\xb5\xd1\xe2\x16\x11\x39\x3b\x56\xdd\xa8\x5c\xaa\xe3\x46\x94\x5a\x4b\x6b\xd0\x95\x60\x65\x75\x5f\xb6\x44\x04\xd9\x28\xe2\x81\xb9\x6c\xaa\x24\x72\xcb\xb5\x60\xd2\xec\x6a\x0a\xef\xa8\x44\xae\x9d\x6a\x07\x74\xfa\xee\x46\x36\xd5\xcd\x00\x02\x43\xdb\x8f\xf4\x1a\xaf\x3d\x1b\xad\x4f\xbd\x9c\x07\x19\x7f\x3b\x71\x91\xd8\xb7\xcd\x47\x88\x64\xe4\x97\x86\x78\x57\xa5\x4b\x79\x4b\x6c\x6b\xb2\x34\x18\x0b\xa0\x9c\xdd\x72\x17\xfd\x09\x61\x31\xb3\x15\x9f\x75\x35\x74\x58\x12\x2a\x64\x70\x1f\xef\x84\x1d\xa6\x06\xb8\x09\x1e\x8d\xc2\x10\x29\x4d\xb4\xf1\x9d\x68\xbf\xe0\xac\x5b\xb9\x80\x8d\x40\x0b\xcc\x48\xec\x03\x55\xc3\x00\x5f\xc0\xb5\xbe\x3d\xc6\xda\x88\x99\xd1\xe1\x68\x8f\x01\x5e\x55\x07\x38\xd1\xf1\xf7\xca\x35\x89\x28\x29\x3a\x6f\x4e\xbb\xe6\xd0\xd9\xa4\xcc\x06\xf5\x05\x20\x57\x1a\x9e\xb9\x4a\xa9\x0c\xd0\xc5\xc5\x45\x79\x84\x2e\xee\x1d\x21\x69\xcf\xd0\xe2\x62\x80\xd8\x7c\xc1\x57\xee\xf6\x81\x92\xc6\xd2\xf5\xa1\xb2\x2c\x8e\xee\x69\x07\x68\x95\xa9\x6c\xd1\x03\x92\x15\x9f\xe2\x24\x8c\xb0\xfa\x02\x8b\x11\x38\xf4\xcd\xa2\xbc\x9f\x78\xec\xdf\x6e\xb7\x9c\xa7\x06\x0c\xce\xf8\x55\xdb\x92\xe2\xba\x20\x63\xd7\x3f\xb3\x20\x13\x63\xc2\xfe\xed\xf6\xf6\xab\x25\x87\xdd\xaa\x77\xf2\x80\xa6\x13\x76\xab\x40\x30\x33\x1e\xca\x08\xbf\xba\xa9\x14\xe9\xa4\xc9\x5c\xbe\x4e\x75\xda\x47\x61\x0f\xc8\x89\xc8\x20\x9c\x7a\x90\xac\x55\x54\xc0\xd5\xdd\x07\x8a\xa9\x80\x5d\x31\x38\xca\xee\xd7\xb6\xa2\xac\x4a\xb3\x27\x5b\x9a\xcd\xca\x1d\x15\x84\x7d\xcd\x4c\x37\x6b\x61\x3e\x5c\xbc\x63\xd5\x98\xc3\x6e\x92\x33\xee\x38\x99\x68\x77\x3b\x1c\x20\x38\x30\x35\x31\x78\x99\xd6\x33\x19\xce\xa0\x14\x65\x27\x2d\x7a\x9e\x36\x74\x5b\x82\x63\x98\xa8\xd0\xa6\x6a\x6b\x6d\xea\xf4\xa6\x49\x61\xf3\x5e\xf0\x86\x57\x49\xf8\x73\xe9\x8d\xaf\x15\xb7\x9f\x1d\xf7\xba\x24\x93\x5e\x22\x26\x71\x9a\x66\x2e\x3f\x66\xf8\x11\xd3\xe6\x50\x19\xc9\xda\xdf\x3f\x4a\x48\xa9\x40\x82\x1f\x25\x55\xc3\x19\xb9\x4a\x45\x3b\x07\x2f\x52\x65\x5e\x44\x78\x79\x8d\x6a\xee\x57\xe9\x86\xdb\xeb\x92\x2d\x94\x94\x6d\xe3\x97\x50\x20\x19\x76\x47\x7a\x69\x6f\x2f\xd3\x1b\x61\x12\x51\x84\x60\xab\xe2\x5f\xc3\x00\x5e\x82\xe1\x12\x26\xfc\x60\x16\x50\xaa\xf9\x50\x26\xa0\x81\x1c\xce\x06\x8c\x65\xbe\x71\x0b\xdb\x94\x6c\xdc\x59\x66\x6a\x99\xf0\x5d\x8c\x80\xdb\x8c\x20\x53\x33\xd6\x46\x1d\xd4\x4e\x2b\x8c\xc0\x34\x63\x1c\x67\x36\x25\x17\x9b\x7e\x6a\x37\xbf\x8d\x21\x44\x6d\xfa\x2d\x6c\x79\x2d\x6b\xa7\xa3\xa8\xe0\xb8\xa8\x35\x16\x95\x28\x78\x38\x6b\xa5\x71\xf8\x6d\xdb\x2d\x33\x26\xd9\x4d\xd0\x48\xb4\x0a\xc8\xed\x6f\xd1\xd9\xb7\x6d\xd3\xa3\x4e\x0f\xb7\xd1\xe9\xb1\xdc\x5c\xfb\xf0\x46\x46\x0e\x52\xaa\x76\xe0\xc3\x10\x01\xc8\x25\xd6\xd4\xc0\x73\xea\x5c\x0a\x34\x8a\xc0\x74\x7c\x84\xf0\x21\x1d\x29\x66\x46\x77\x82\x64\x16\xef\xed\xff\xc6\xe3\xd8\xd0\xbc\x61\x09\xa1\x36\x90\x88\x9a\x05\x04\x49\xef\x07\x33\x1f\x63\x5e\xb8\x3f\xfb\xf9\x1d\xf8\xcf\x51\x8f\x04\xe2\x9f\x5c\x6b\x42\xc6\xbf\x0a\x4b\x7a\xc1\x12\xbe\xcc\x56\x5f\xc9\x59\x0c\x94\x43\x58\x0b\xbc\x55\xd2\xf3\xab\xe3\x7e\x3d\x88\xd3\xfc\x97\xb3\x9a\x82\x15\x74\x4f\xbb\x83\x71\x9b\x2a\x59\xdb\x49\xae\xf2\x45\x5f\xd3\xb5\x3f\xde\xb5\x92\x24\x2d\x9b\xb5\x24\x69\x54\xac\x26\x24\x4b\xcb\x52\x50\xc1\x62\x3e\xed\x67\x75\x76\xd4\xbd\x87\x1f\xe5\x66\x4e\xda\xbd\x1e\x89\xe8\xd7\xed\x00\x8d\xa5\x24\xf8\x53\x9a\x93\xa0\x0a\xfe\xbe\x71\xdf\x09\x5e\x95\x2a\xc0\x1f\x3e\xa4\x86\x39\x35\x8b\x84\xaa\x79\xd3\x74\x53\x29\xd3\xfc\x3e\x4c\x77\xbd\x8e\xd6\xeb\xa0\x81\xf7\xed\x35\xad\xdb\x99\x73\x57\xce\xe6\x6f\x49\x53\x7b\xb1\xe6\x71\xa3\x16\xa1\xf9\xc2\xf0\xde\x13\x74\xd3\xa9\x6d\x38\x6a\x8c\x60\xab\x7e\x68\x6e\x59\x58\x49\x18\x35\xbb\x3c\x59\x7f\xd5\x81\x0e\x4e\xa0\x0f\x39\xd1\xd9\x15\x1f\xca\x73\x15\x8c\x43\x38\xee\xae\xb3\x97\xed\x1a\xdc\xf2\x30\x52\x0b\x72\xb4\xef\xf1\xcc\x3e\x1a\x5e\x20\x7d\x5c\xd9\x79\x34\x3c\xe4\xd8\x57\x01\xb9\x8d\xf5\x6e\xdd\x5b\x8d\x8a\xe4\x02\xed\xd0\x4e\x91\x9c\x76\xfb\xf9\xe9\x93\x93\x7e\xde\x6e\x9b\xf7\xb5\xa9\x77\xc3\xd8\x67\x08\xda\x0d\x0a\xd1\x42\xff\xb5\x53\x87\x15\x69\x7d\xc6\xb7\xa7\x3c\xd4\x8b\x6e\x7c\x23\x96\x92\x84\x28\x97\x12\x18\x1d\x90\x4c\xea\x65\x22\x8c\x49\x40\x11\x22\xe9\x36\x9d\x16\x51\x81\x3d\x83\x36\x45\xb0\x76\x31\x94\xb5\xfd\xca\x37\x16\x4d\xd8\x4d\x0d\xe1\xf2\xe3\x63\xb9\x2e\xc7\x6a\x04\xe1\x71\xb8\xf2\x72\x6c\x05\x2f\x4f\x1b\x83\xed\xe2\x3e\x84\x40\x1f\x3b\x4e\x5a\x16\x56\xcb\x50\x86\x63\x19\x97\xa4\x72\xa0\x96\x08\xea\x43\xf2\x06\xae\x48\xd2\x3d\x84\xde\xfb\x20\xf5\xcb\x04\x96\x42\x8d\xf5\x5a\x16\xb2\x89\xa6\xd4\x96\xf5\x0c\x5e\x35\x21\x2b\x48\x33\x28\x4c\xba\x47\x82\x22\x14\x35\x3c\x2b\x3e\x34\x60\x31\xb3\x2c\x81\x23\x47\x89\x00\x9a\x18\x72\xb0\x52\xac\x37\x0c\x56\x82\xe9\x16\xa3\xfb\x5a\x6e\x0a\x9a\x55\x07\xab\x6f\xdb\x81\x64\xc3\xf0\x1a\x94\xd9\xb4\x93\x5a\x7a\xc9\x4d\x55\xab\x55\xd1\xad\x65\x65\x5f\xf7\x52\xa7\xe6\x96\x13\xe1\x08\x5f\x49\x53\xb2\xb5\x8b\xab\xcf\xea\x04\x7f\xaf\xb8\xd3\xd8\xc1\xe0\xab\x66\x87\xf2\x85\xd4\x5e\x9a\xe4\xb0\x60\xff\xc5\xfb\x1a\x90\x87\xcb\x15\x05\x5c\x17\x9f\xf5\x7a\x4d\x36\x0a\x89\xcc\xee\x9d\xec\xd0\x93\x5a\x71\x70\x6d\xf3\xd6\xc6\x66\x4e\x7b\x27\x06\xa8\xf8\xd8\x52\xec\xac\xd7\xc3\x7d\xac\xcb\x7d\xf3\x84\x52\xda\x85\x0b\x2a\xeb\xd5\x90\x64\x00\x29\x86\xf9\xdc\x4d\x37\x02\x23\x43\x1b\x02\x66\xed\x88\x95\x80\x0b\x8b\xe6\x23\x56\x52\xe2\xfd\x45\x17\x07\xe8\x87\x1f\x90\x8f\x66\x33\x64\xd1\x56\x62\x79\xc4\xe8\xb3\x3a\x35\x35\xa9\xb4\xa5\xd1\x67\xb3\x4e\x7b\x37\x4d\x28\x7b\xd1\x03\xa8\xc2\x12\x0a\x7a\xb5\x4b\x05\xed\xe2\x7c\xf0\xd4\x6f\xce\x20\x16\x33\xaf\x87\x96\x00\xea\x48\x94\xaf\x90\xc4\x93\xc8\xb9\xf8\x1b\xf7\xc9\xa3\x14\xab\x29\x8c\xea\x53\x28\x78\xf8\xbd\x4b\x5f\x0e\x92\x99\x44\x09\xbb\x69\x1a\xe7\xf7\x4e\x23\x9a\xcf\xeb\x33\x96\x42\xcd\x3d\x67\x4c\x99\x83\x3f\x64\xc6\x94\x11\xee\x01\x33\x36\x6f\x5a\xc7\x5b\xc7\x7e\x2e\xc7\x5e\x36\xe3\xe2\x6f\x4e\xba\x5f\xb9\x76\x64\x5f\xcd\xc0\x4b\xc0\x4d\x03\x9f\xdf\x3f\xf0\x79\x5e\x1f\xf8\xa7\x50\x73\xcf\x81\xbf\x8c\xe6\x0d\x82\xb1\x92\x65\x75\x58\x68\x3d\xa6\xdb\xe6\xa0\x25\x04\xc9\x61\xc3\xdb\x06\xe3\x2b\xa5\x6c\xa5\x7f\x0f\xb4\xa1\x3d\x68\xb6\x59\xfc\x08\x34\x24\xdb\xcf\x41\xf5\x60\x2b\x4d\xa5\x66\xd2\xf3\xd0\x19\xed\x9d\x0c\x3a\xbd\x13\xbf\x77\x22\xbd\xed\x30\x5b\x4a\x6d\xaa\xa8\x07\xfd\x1c\xd5\x45\x52\xc9\xed\xaa\x46\x6f\x66\xde\x7c\xd6\x28\x2d\x8a\x29\x53\x17\xda\xa8\x69\xfc\x28\xe0\x3a\x42\x78\x4f\xd4\xb6\xf3\xd3\x7b\x5b\x52\x8c\x6f\xff\xb6\x60\xd1\xdf\x0b\x56\xad\xce\x03\xc0\x0a\x92\xd6\xc3\x6b\xb6\x76\xd7\x4e\x51\xec\xbd\x94\xa6\x18\x88\x5b\xa5\xf1\x30\x3d\x97\x74\x64\x5d\x3c\x24\xc6\xad\xc7\x36\x64\xe0\xf0\xe6\x32\xed\xc8\xfa\x12\x9c\x70\x60\xb0\x93\xb1\x4e\x3d\x3a\x8c\x40\xaf\x2f\xad\x2b\xdd\x84\x26\xeb\x75\x43\x3d\xe9\xca\x43\x5d\x6d\x62\x7c\x37\x0e\x72\x26\x9f\xa4\xfb\x02\x91\x88\x66\x5e\xc5\x37\x8b\x7c\x1c\x50\xf1\xa3\x3d\xf2\xde\x9c\xff\xe3\xd3\x5f\x3f\xbc\x79\x71\xf9\xe3\xdb\x37\x55\x8e\x25\x88\xfe\x10\x38\xef\x2f\x5f\xfd\x44\x22\x7b\x0c\x95\x54\x5b\xc0\x55\x5e\x8b\x22\xdc\xbf\xca\x58\xf0\xb9\x0f\x78\x1b\x57\x02\x80\x7b\xf0\xab\xe0\x6e\x8e\x6e\x07\x77\x20\xd8\xa7\x03\x41\xb9\x03\xb6\x17\x02\xb5\x2d\x1b\x0f\xe3\xbd\x52\x51\xfb\x12\x1a\xba\x9b\x53\x31\xbd\x5c\xcd\x2b\xd8\x43\xe7\xbc\xf9\x02\x57\x1e\x58\x5c\xab\x7c\x6d\x93\x91\x37\x6b\x39\x6e\xf6\x9a\xae\x64\x89\x9a\x57\xf4\x81\x5a\x44\xc6\xc3\x57\x5a\xd6\xdf\x36\x2b\x86\x55\x63\x8d\x18\xe0\xad\xb7\x92\x3f\x42\x1f\x6a\xca\x4a\x1d\x4c\x08\x52\xa5\xdb\x68\xec\xbb\x95\xa1\xec\xf4\xea\x73\xd3\x30\x39\x70\x53\x5f\x1b\x73\xd0\xe3\xfb\xf2\x38\x58\x84\xc7\xb4\xc6\x1e\xb8\x09\x26\xbd\x2e\x5e\xaf\xbb\xd5\x81\x85\x3e\x8f\x7f\x97\x71\xfd\x4f\x8e\x9c\x38\x00\x37\x0d\x9e\x52\xb3\xc1\xf0\xc5\xcd\xc3\x27\x59\x92\xd1\xb7\xa1\x9d\x23\x19\xff\xdf\x3b\x92\xc1\x4a\x0e\xe3\x72\x8b\x54\xd9\xb7\x07\x15\xf6\x07\xd0\x88\x38\xce\xb2\xa6\x8f\xaa\x95\x04\x85\x88\x28\x69\x99\xac\x88\xb6\x16\x74\x29\x4f\xd8\xf7\x10\x3e\x26\x13\x5a\x0d\x61\x53\x56\xa8\x0c\x40\x29\xe2\x4e\x76\x6b\x54\x16\xcd\x1a\x15\x3c\xa8\xcc\x22\xf8\x42\x9b\x68\x3f\x92\x26\x79\x71\xcf\xc4\xb5\x7b\x07\x57\xa9\x99\x49\x57\x2f\x6b\xb4\x6b\xf7\x6a\x7a\x89\x28\xb6\x0c\x4a\x89\x64\xec\x29\xaf\xf8\x9e\x80\x79\x0f\x69\x5a\x55\x04\xce\x6a\x7a\x9d\x90\xc8\x17\x79\x95\x5e\x86\xf7\xf5\xb2\xb1\x71\xfd\x8a\x1c\x9a\x9f\x55\x9a\xdf\x72\x88\x84\x43\x4a\x19\xa7\x19\x91\xaf\x00\x2b\x38\xcd\x1e\x84\x93\x7e\xad\x0b\x38\x5d\xd5\x87\x24\xaf\x35\x7f\x45\xe4\x23\x8d\x4a\xf3\x57\x87\x34\x5f\x71\x41\x01\x8d\xcf\xad\xc6\xed\x05\x56\x9f\x94\x79\xf3\xa4\xcc\x1f\x84\x41\x69\x52\x2e\x9a\x70\xd8\x7f\x66\x2e\x9a\x67\xe6\xe2\x41\x88\x95\x66\x66\xba\x65\x70\xea\xd3\x33\x6d\x9e\x9e\xe9\x21\x38\x94\x5e\x3a\x57\x57\x78\x99\x44\xd2\xad\x87\xae\xc3\xdb\x93\x4f\xa7\xa0\xbf\xd7\xb6\x34\x46\x56\xf4\xba\x90\xc8\x02\x84\xc9\xb9\x9d\xb0\x8c\x11\x26\x37\xf4\x5c\x9f\x37\xe5\x8b\x0e\xf2\xa5\x48\xd1\xcf\x23\xfc\x24\xe5\x2e\xe4\x63\x84\xc9\x27\x7a\x0d\xdc\x5a\x0a\x75\x83\x6b\xff\xba\x6c\xa6\xf7\xd6\xba\xef\xb9\x71\x9c\x1b\x6d\x50\x7c\x17\x4d\x5c\xf7\x2d\xbd\x51\x3b\xad\x79\xa0\x81\xb1\xe3\xbc\xf5\x78\x16\x24\xe6\xd9\x41\x11\x8e\xec\xa6\x78\x90\xe5\x16\xbf\x5d\x24\x78\x95\x40\xd6\x4a\x92\xf8\x63\xdf\xbd\x29\x9f\x39\x75\xbf\xec\xb7\xe2\xb2\x28\xf9\xa4\xde\x98\xef\x78\x0c\x1b\xcd\x59\x1b\xb5\x50\xbb\x29\x13\x34\xf4\xe4\x53\xe1\x7e\x6d\x6b\xa1\xc1\xea\x10\x43\x23\x78\xc7\x7a\x48\x0d\xb1\x25\xe0\x8d\xbd\x57\xcf\xd2\x1b\x4d\x17\xbb\x55\x0b\x67\xad\x30\xba\x96\x13\x5c\x7b\x1e\x8f\x11\x2e\x85\x40\xd9\x0a\xa4\x5e\x15\x61\x15\x30\xa5\x5f\xc1\x4a\x71\xae\x07\xc0\x3b\x18\x13\xfd\x88\xbe\x19\x11\xc3\xc0\x7e\x0f\x54\x8a\x47\xf7\xcd\xc8\x18\xa6\xf5\x7b\x20\x53\x3c\xd2\x6f\x40\xa6\x50\x66\x03\x43\xb9\xbc\xef\xac\xd1\xa0\xcd\x2a\xf3\xb6\xde\xc9\x11\xa5\x97\x8e\xe3\x5e\xb6\x69\xef\x04\xfb\xbd\x13\xaa\xbe\x69\xd7\x88\x35\x0d\x5c\x52\xc2\xb8\xdc\x57\x08\xb6\xde\x42\x06\xc8\x48\x47\x65\x0f\x00\x87\xc9\x4c\x4a\xd8\xd3\xfa\x12\x97\x11\x7b\x59\x29\x09\xae\x2e\x33\x95\x74\xc9\xdb\x37\x01\x45\x11\xf7\x4b\xb4\xbf\x52\xf7\xf3\xdf\xb5\xfb\x4a\xa3\xbb\xbd\xfb\x8a\x06\x7f\xdb\xee\xff\xa6\x1d\x95\x4f\xe5\x95\x8b\xcb\x18\x0e\x6c\xe5\xec\x34\xd7\xf3\x5f\xaf\x2c\x2f\x2e\x61\x85\xdd\xd6\x42\xa4\x57\x24\x93\x5b\x75\xfd\x55\x19\xcb\xdb\xfb\x86\x66\xa3\x95\x71\x65\x05\xe0\xac\x14\xb4\x50\xeb\xb7\x8f\x7a\x4d\xf1\xaf\xca\xec\xa4\xd8\xb1\xab\x26\xd3\xda\x6e\xb9\xe4\x0c\xd7\xda\xe1\xb5\xe7\xd9\x64\xbd\x3e\x4a\xca\x5b\x3d\x68\xbf\x8f\xba\xe4\xa8\x87\x37\x18\x13\xb6\x5e\xcb\xa6\xad\x97\x81\xe5\x6f\xcb\xd9\x29\x78\xd5\xa9\xe5\xdb\x5b\x7a\xc5\xc8\x5c\xbf\x64\x53\x1c\xd3\x3c\x21\x4b\x27\x13\x17\x65\x2c\x8f\xbe\x98\x9d\x16\x9e\x32\x19\x02\xd3\x2f\xd0\x44\xb9\x71\x1c\x8d\x3f\x23\x82\x6c\xa5\xfc\x08\x35\x14\x9c\xa7\xcb\x9c\x85\xe9\x4d\x82\x44\xef\x4a\xf9\x52\x40\x29\x73\xed\xc2\x11\x7f\x92\xf2\x68\xb2\x02\x07\xd2\xee\x9d\x98\x34\x3f\xf3\xe0\xcb\xfb\xe1\xc7\x97\xaf\x88\x90\x28\xfc\x2d\x93\x5f\xe8\xfc\x37\x98\x34\x46\xb6\x2e\x7e\x7b\x57\xf1\x32\x2b\x69\x07\x2d\xdf\xed\x3b\x20\x57\x4d\xda\xf3\x59\xd3\x8b\x24\x73\x51\x72\xb7\x62\x41\x56\xf2\x4b\x6d\x62\xf0\x49\x65\x5b\x17\xcb\xc3\x7d\x4f\x33\xfd\x6e\xc1\x1f\xba\x05\xa7\xec\xe2\x0d\x81\x0a\xcd\xb0\xf6\x05\x11\x06\xab\x66\x00\xf7\x55\x14\xf9\xcd\x35\xb7\x21\x0b\xbf\xef\xab\xb2\xd9\x08\x41\xb9\x61\xaa\x0a\x3f\xbf\x72\xb6\x16\x59\xba\xb0\xaf\x4a\xd6\xeb\x8a\x7f\x96\x68\x9a\xa4\x19\x7b\xc7\x82\x30\x4d\xe2\x55\x69\xa6\x65\xdd\x4c\x65\x19\x0e\xa9\x1e\x8f\x4a\xac\xfa\x0d\x38\xc8\xb8\xe7\x8e\xd3\x94\xaa\xa2\xa1\x97\xfc\x05\x57\x83\x2c\x54\x22\x00\x6c\x01\x81\x49\x57\xb1\x59\x65\x33\x52\xee\x97\x1d\x8f\x42\x5f\x95\x95\x2c\x42\x6a\x71\xa2\x77\xd6\x4f\x86\xdb\xb2\x47\x2e\xab\x4b\x24\x8c\x74\xb1\x32\x80\xf9\xaf\x46\xd1\xe6\xdf\xc5\x1a\x2e\x9c\x66\xd8\x5a\x3f\x21\xf5\xd9\xd7\x47\x25\x8b\x93\xdd\xd6\x21\x7b\x0a\x9c\x96\xc4\xbb\x57\xf1\x42\x26\xb5\x8b\x17\x41\x55\x78\x59\x8b\x59\x62\xde\x49\xc1\xbb\xef\x24\x38\x20\xa6\x8d\xcd\xc9\x2b\xec\x39\xd9\xc6\xc6\x09\xac\x95\xdb\x95\x5b\x16\x0a\xa0\x76\x75\x33\x48\x9a\x59\xfc\x6f\xb2\x73\xe9\xfd\xa8\x84\x81\x14\xdf\x77\xb0\x79\x43\x40\x56\xa0\x44\x6d\x82\x23\x97\xa1\x38\xc8\xfb\x90\x6b\xf0\x91\x19\x90\x66\x06\x7e\xfb\x8e\xf4\xfe\x87\xb7\xff\xac\x3e\x53\x0d\x59\xce\xb3\x74\x55\x0b\x5f\x58\x9a\x5a\xfd\x1c\x56\x6e\x85\x2f\x2b\xde\xf6\xb7\x17\x82\x77\xc8\xa8\xda\xa2\xe4\x8a\x3b\x5b\x7c\xf8\xbc\x34\x9a\x35\xde\xb7\xb9\x56\xd8\x35\x39\xea\x56\x70\x96\x91\x7b\x6a\x28\x3f\x1c\xcd\x6d\x26\xa7\x07\x63\xda\xab\x60\x5a\xf5\x5d\xf1\xf0\x80\x27\x55\x48\x07\x05\xea\xab\x56\xde\x37\x1e\xf4\xfd\x51\xa0\x1b\x20\xef\x8a\x06\xbd\x5f\x0c\xe8\xda\xa8\xed\x1f\x74\xdb\x1e\xfc\x9a\x4f\x8e\x83\x46\x7f\x6b\x20\xac\x1a\x58\x19\x7b\x77\x28\x03\x43\xa8\x40\xc5\x23\x31\x29\x77\x1b\x8f\xa7\xef\x61\x78\x65\x00\x88\x6d\xa3\x58\x03\x59\x0e\x66\xa5\x20\x5f\x07\x59\x24\x0d\x93\x64\x10\xe4\xc2\xc3\x88\x8c\x13\x51\xa7\x06\xbb\xc8\xde\x0d\x17\x75\x4c\x8b\x66\x26\x35\xb5\xd4\x51\xa0\xf6\x87\xc7\xd3\xd7\xe9\x0d\xcb\x5e\x04\xb9\x98\x22\xa0\xa5\xa0\xa0\x25\x1b\xad\xc3\x07\xc4\xc2\xaf\x1a\x27\xba\x20\xb4\xa0\x4c\x68\x35\x12\xdb\xe5\xaf\xa5\xd4\x95\x0d\xf4\x53\x3b\x7d\xd9\x3a\xd0\xa6\xc0\xde\xdd\xd1\x35\xee\x1f\x64\x5d\x92\x16\x3f\x9b\x06\x38\xb2\x06\xd8\xa0\x73\xf8\xf0\x1a\xbc\xb6\x0f\x6e\x74\xf0\xe0\x36\x74\xa1\x16\x3a\xac\x61\xe9\x82\xa7\x8e\x87\xf3\x4c\x1b\x8a\xcd\x2f\xa9\x1d\xf8\x4b\x08\x9d\x20\x1a\xaa\x80\x2a\xcc\x71\x9a\x03\x84\x95\x03\x82\x6d\x0b\x66\x6e\xb7\xd9\xc4\x66\x21\xe6\x8a\x8c\x12\xa4\xd7\xf5\xf6\x58\x52\xa5\x61\x38\x84\x09\x7e\x92\x2d\xfc\x10\x24\x61\xcc\x2e\x67\x91\x65\x0d\x99\x90\x94\x44\xf2\xa8\x19\x40\xf0\x9e\x5a\xbc\x1e\x18\x2a\x15\xe6\x86\x52\xea\xa2\x65\x12\xb2\x49\x94\xb0\xd0\x1a\xb9\x74\x60\x25\xfb\xcc\x4d\xd5\x3b\x36\xc3\x34\x33\x4f\x85\x5d\x22\x29\x26\xc1\x7a\xed\x06\x54\x0c\xd5\xd8\x15\x6d\x8a\xb4\xa6\xb6\x49\x80\x9b\x44\xfe\x14\x26\x5e\xee\xc6\x62\xf6\x87\xe9\xa8\xe6\x65\xe5\xdb\x37\x69\x6b\xce\xf8\x2c\x0d\x5b\x49\x30\x67\x61\x0b\x7d\xdb\x4e\xdb\xdf\xa2\x6f\x8d\x73\x39\x53\x3f\x1a\x08\x08\x2e\xf6\xe1\x4f\x24\xad\xc0\xd5\x90\x41\x80\xd0\x49\xd9\x71\x14\xe1\xe6\xfc\x69\xcc\x72\xd5\xd9\xad\x61\xa8\x61\x62\x86\xdd\x11\x44\xfa\x91\x87\xb3\x9a\xd2\x67\x5b\x35\xa8\x23\x5f\xbe\x6f\xdc\x0c\xf7\xb9\x1b\xa6\xe3\xa5\xf2\xdd\x94\xb8\x5a\x74\x7c\xf1\xfa\xc7\x17\x7f\xff\xa4\x43\x77\x91\xcc\xd3\xb1\xb0\xe4\x40\x5e\xbe\xfd\xdb\xdf\x5e\xbf\x22\x55\x2d\x13\xa3\x62\xf0\xa5\x3c\xde\x17\x52\x8d\xf6\xba\xe8\x38\x71\xad\xfb\x6a\xc3\x22\xea\xaa\x4c\xfa\xbb\xb1\x51\xf8\xe1\xfc\xcd\xdf\x5e\x11\xe4\xa1\x76\xe6\x99\x10\x59\xde\x8f\x6f\x7e\xfa\x70\x49\xdc\xba\xd3\xad\x4a\xd3\xc9\xbd\x4d\x27\x04\x7d\x1a\xcf\x82\x64\xca\x10\x61\xd5\xd6\xff\xf2\xfa\xc3\xbb\x87\xb4\x0d\x4e\xbb\x6a\xf4\x5e\x46\xc8\x4d\xad\x27\x44\xec\x6a\x39\x5d\xaf\xe5\x81\x49\x7f\xed\xc0\x18\x2e\xd7\x08\xc3\x55\x7c\xff\xfe\xea\xe7\x97\x6f\xff\xf9\xe6\x37\x1e\xae\xcf\x6c\x25\x4f\x54\xb5\xf1\xfa\xfb\xab\x9f\x3f\xfc\xf4\xdb\xb7\xbe\x5c\x34\xb4\xfd\xd7\xb7\x2f\x3e\xbc\xff\xad\x26\x2b\xad\x58\x66\x58\x51\xc0\x77\x62\x0b\xf7\x98\x12\x57\x62\x47\x64\xa3\xf5\x3a\xa5\x7c\xef\x45\x11\xea\x8a\xc6\xe5\xac\x24\x7d\x91\x26\x93\x38\x1a\x97\x42\x4e\x19\x79\xd2\x6a\x24\x25\xf5\x66\x36\x3a\x78\x1c\xde\x88\xdd\xd0\xe6\x3e\x24\xc1\x77\x1b\x22\xfe\x57\xe6\x49\x47\xd5\xd1\xe3\xf4\x4e\xdd\x6f\xfa\x77\xa2\x87\xfe\x51\x8f\x8c\x73\x79\xf6\xf1\xd1\x24\x4e\xf9\x65\xb4\x40\x64\x9c\x26\x9c\x25\xdc\x47\xdf\xe4\xad\x75\xeb\x5f\x7e\xeb\x9b\xdb\xd6\xba\xf5\xb3\xdf\xfa\x66\x85\x08\xbc\x42\x95\x86\x3d\x10\xe8\x8d\xac\xaa\x09\xa0\x4a\x14\x93\x98\xcb\xef\x30\x58\x59\x5f\xf9\x2c\x9a\xf0\xdc\xbf\xbb\xf5\x7b\x5d\xb2\xf2\x4f\xba\x1b\xa2\xdc\x1b\x5e\xce\xd8\x1c\xe2\x7f\xe5\x49\xb0\x10\x7f\xe3\x28\x61\x39\xe0\x18\x47\xe3\xcf\x97\xd1\x02\x3e\xd2\xe4\x87\xf4\x9a\xd9\x0a\x43\xd1\xd7\x0d\xf9\xb3\x38\xaf\x05\xdc\x3f\xea\x6d\x36\x7d\xae\x2f\x72\xdf\x2e\x78\x4e\xcd\x57\x5f\xd2\x90\x3d\x2e\xc0\x80\x79\xb4\xd0\xe2\x08\xbd\xbb\xf5\x05\x62\x5d\x25\xd7\x43\xfc\x35\x86\x37\xfd\xc4\x92\x3f\xca\x71\xc3\x8c\x77\x11\x2e\xfd\x03\x32\x6f\x11\xa7\xdc\x5b\xc4\xcb\x69\x94\x98\xa0\xad\x5a\xe7\x28\xf2\x7e\x92\x59\x74\x38\x22\x99\x09\xf7\x9a\xd2\x6e\x3f\x3d\xcd\xfa\x69\xbb\x8d\xab\x25\x95\xff\xed\x12\xe0\x61\x3a\xf2\xc4\x56\x86\xfb\x26\x10\x5e\x54\xac\x93\x3b\x81\xf1\xad\xc0\x25\x98\xb2\x7f\x91\xc4\x5b\xa9\xdf\x3f\x13\x88\x96\x76\x29\x47\x44\x77\xdb\x4d\xf0\xc6\x80\x09\xdc\x4c\x4a\x01\x89\x07\x43\x3f\x07\xff\xd1\xcc\xe5\x9e\x10\x37\xc4\xb1\x6b\x96\xc6\x21\x03\x5b\xcf\x2b\xd0\x38\x09\xbc\x66\x62\x5a\x10\xc9\xc5\x8a\x11\x8c\x4e\xb5\xe0\x62\x62\x81\xa1\x47\x3d\xec\xbb\xb9\x6a\x80\x24\x02\xe2\xcb\x74\xfe\x2a\x56\xc7\x43\xa9\x37\xb9\x8e\xf2\x08\x4e\x32\x42\xfe\x6a\x6c\x76\x99\x34\x35\x5c\x6a\xa8\x8b\xad\x2e\xe9\x16\x95\x60\x53\x5e\x3e\x24\x33\xeb\x10\x1c\xbf\xe4\xff\xce\xb8\xeb\x26\x1d\x86\x1f\xc1\xbf\x6d\x37\xeb\x70\xfc\x08\xfe\xc5\xa0\x55\x8e\x30\x57\x2e\xc8\x65\x1f\x23\x92\x58\x14\x27\xed\x72\x92\x60\x31\x88\xfc\xd4\x76\x83\x28\xb0\x35\xf9\x2c\x8b\x58\xee\x01\x91\x03\x2c\xc7\x01\x57\x61\x35\x40\x50\x42\x22\x9e\xd3\x32\x8c\x69\x16\x85\x1e\xa8\xca\xce\x41\xa9\xf5\x2e\x08\xa3\x65\x4e\xc6\xf4\x2e\x8c\xa4\x28\xea\xe7\xed\xde\x86\xc4\x34\xed\x33\x29\x66\xc0\x60\xbe\x94\x21\x16\x2d\xf6\x2a\x86\x40\x13\x62\x44\xbb\x24\xa7\x9d\x1e\x59\xd2\x5e\x7f\x79\x9a\x49\x27\x98\x8a\x8c\x97\xed\x36\x96\x29\xc3\x65\xa7\x37\x1a\x76\x47\xa7\x34\xf5\x6e\x1d\x47\x27\x8a\xa4\x33\x99\xe4\x46\x74\xd9\xe9\x91\x9c\x2e\x95\xce\xe0\x88\x52\xd5\x93\x85\x58\x67\xaa\x4a\x24\xaa\x90\x95\xf5\xd9\x1b\x6d\xc8\xc4\x2a\x91\x97\x4b\xe4\xb2\x44\x58\x9b\x46\x31\xc5\x24\x97\xb1\x1e\xf3\xf5\xda\xcd\x1b\x4b\xc8\x53\x5a\x21\x9e\x16\x72\x7c\xa2\x0e\x0a\x77\xb7\x7e\x42\x56\x3e\x87\xb9\x6e\x2c\x99\x15\x25\x99\x40\x6c\x03\xac\x25\x80\x71\x3b\x76\xdd\xa8\x93\xe1\x63\x37\xed\x24\xc6\x77\xf1\xdd\xad\x1f\x50\x37\x7d\xe4\xb2\x47\x79\x87\xb7\x33\xdc\x4e\xc4\xef\x4e\xde\xe6\x9d\x08\xe3\x63\x37\x7f\x04\xe5\xdb\x59\x27\xc2\x64\xe5\xe7\x8f\x82\x4e\xfe\x88\xb5\xf9\x66\x53\xc2\x1d\x7b\xb7\x67\xd2\x7f\xd1\x3c\x02\x69\x1d\x3b\x4e\xee\xdd\x9e\xaa\xb4\xe0\xd6\xa4\xad\xac\x72\x19\x89\x64\x9a\x55\x4e\xa4\xe9\x67\xb0\x59\x27\x12\x44\xd2\x49\xc8\x92\x26\x8f\xa2\x4e\xf6\x28\xed\xdb\x2b\x22\xb8\xca\xdd\xf1\x23\xd6\x8e\x1f\xf1\xf6\x12\x1f\x17\xab\x64\xfc\x68\xdc\x8e\x1f\xc5\x78\x23\x27\x35\x30\x0b\x8a\x4c\xd4\x87\x40\x5a\xc3\x5a\x9c\x4d\x06\x13\x7f\xb1\x71\x33\xef\x36\xb8\x15\x2c\xee\x64\xec\xa6\xde\x2d\xb8\x91\xb0\x12\x56\x22\xa1\x28\xb1\xa8\x96\x58\x54\x4b\x4c\xaa\x25\x26\xa2\xc4\x51\x0f\xe8\x2e\x3c\x1d\x7b\x7a\x3d\xc8\x0e\xcf\x68\x20\x80\x92\x85\xb7\x22\xa9\x77\x4b\x44\x8b\xa7\x81\xab\x7e\x92\x89\x77\x4b\x04\x80\x41\xe4\xe7\xe4\x8a\xba\x92\xec\x16\x69\x24\x4e\x94\xf2\x4f\xf4\x85\x91\x61\x2a\x41\xb4\x45\x6b\x1d\x81\xd3\x23\x57\xc0\xe8\x08\x7c\x8f\x05\x4e\xf0\x0b\x8f\x70\xdf\x5e\x91\x21\x89\x38\x9b\xfb\x77\x06\xa6\x7f\x45\xc4\x6f\xb8\x5e\xf6\x67\x44\x32\x06\x3f\x53\x3f\x64\x32\xdb\x6c\x9a\x59\x8c\xe3\xb8\x31\xbd\x03\x26\xef\xdb\x23\x72\x05\xee\x57\x80\xe1\xfb\xf6\xc0\x5c\x0d\x7b\x23\xbc\xc1\x1b\x75\xf1\x52\xe6\xd4\x42\xdc\x29\xc6\xea\x34\x6f\xf7\x06\x65\x3e\x37\xf6\x04\xee\x24\xc6\x7e\xb5\x66\x23\x38\xee\xcd\xd2\xf4\x73\x0e\x9b\x04\x48\x7b\x6a\x23\x2b\x18\x0f\x17\x8c\xa7\xca\x1b\x29\x30\x29\xf5\xe1\x82\xef\x5f\x19\x9e\xba\x38\xf2\x95\xf9\xa0\x1a\x17\xc7\x71\x1b\xd3\x85\x10\x20\x2f\x53\x1b\xb3\x49\x63\x6a\x73\x59\x01\x8a\x84\x2c\x66\x9c\x35\xe3\x20\x0a\x08\xca\x03\x31\xb4\x21\x5f\xb1\xfa\x66\xf6\xb3\xb5\x82\xd8\x8a\xcb\x93\xbf\xb5\x2b\x15\x1a\x51\x62\xd1\xc0\x4d\xbc\x1b\x31\xea\x14\x81\x5b\x57\x44\x12\x6f\x26\xbf\xa5\xfb\x59\x84\xfd\xa2\x48\x94\x24\xca\x93\xa6\x55\x0e\x12\x7f\x50\x85\xfb\xb5\x9d\xbb\xbf\xbf\x7c\x50\x43\xd2\x08\x78\x8e\x73\x1f\x14\x75\xbb\x14\x54\xa5\x0a\xc2\xdc\x4c\x97\x83\x1d\x71\x9e\x5e\x33\x44\xc4\xe9\x1d\x64\x78\x49\x88\xf9\x6c\xc9\xc5\x19\xa8\x4e\x86\x09\xbe\x3b\x44\xd2\xb8\xbf\x6c\x81\xa8\xbe\x40\x28\x04\x22\xe6\x26\x45\xe1\x32\xb6\x80\x6c\x5d\x3e\xab\x49\x9b\x19\xad\xcd\x00\x49\x69\x56\x72\x82\xda\xae\x73\x0c\x90\xbe\xbd\x5b\x12\xe9\xa2\x3f\x14\xce\x87\x9b\xcb\xae\xfa\xdc\xbb\xed\xb0\x8a\x0f\xe3\xd7\x6c\xc2\x5d\x7c\x66\x92\x87\x8a\x76\x46\x2e\xee\xa4\x8e\xe3\x8a\x3a\x34\x25\xdc\xbb\x2d\x36\x1c\xee\xdd\x12\xb0\x3c\xf2\x56\x35\x78\xe0\x13\xb9\x04\x6e\xa6\xc1\x45\x00\x6e\xd5\xa1\x11\x26\x51\xfe\x26\x78\x23\x00\xe1\x41\x62\x4b\xed\xde\x2d\xad\x7c\xff\x94\xb1\x6b\x41\xd1\xe5\x42\x02\x85\x86\x82\x22\xbd\x00\xbe\xaa\x02\x5f\x55\x80\xaf\x9a\x80\xaf\x28\xf7\x56\xa4\xa1\xa0\x48\xc7\x1b\x52\x62\xa4\xb6\x5c\x92\x91\x54\x4e\x69\xd4\x30\xa5\x01\x4d\x3c\xa9\xef\x92\x47\x2c\xb7\xbe\x76\xe4\x69\x8d\x30\xdc\x47\x82\x97\x04\x42\xee\x92\xfe\x69\x82\x66\x5a\x72\x85\x78\x53\x1e\x04\xb2\xaa\xa4\xac\x36\x98\x48\x0f\xc9\x77\xe0\xbe\xb7\x52\x7e\x07\x65\xf1\x74\x51\x85\xb5\x9d\xb6\x36\xda\x54\x92\x14\x61\xac\x6d\x26\x5f\xa9\xa6\xce\x7e\x8e\xb3\x2d\xc7\x65\x42\xa8\xd9\x94\x4f\x20\xf6\x71\xbb\x7e\xe0\x90\x2a\x52\x15\x8c\x0e\x41\xdd\xd2\x72\xdd\x5d\x5b\xdb\x1b\xc1\xf6\x5c\x1c\x10\x4b\xc5\xaa\x26\x3c\x9c\x32\x13\x93\xa1\x14\xd9\xa2\xdc\x27\x75\x95\x58\x9d\x6e\x75\x5e\x77\x1c\x08\xb0\x0e\xb0\x3c\x65\x45\xbd\xa5\xa8\x89\xbf\xee\x38\xae\x6b\x1a\x6f\x1d\xd7\xfd\xff\x6f\x07\x20\x1f\x76\x5f\xa6\x2e\x52\xef\x0f\xd5\xb0\x01\x85\x68\x27\xd4\x3e\x0a\xae\xf2\x34\x5e\x72\x86\x36\x4a\xe9\x5c\x81\x68\x1f\xf5\x1d\x47\xb9\xa7\xbe\x0a\xc6\x9f\xa7\x59\xba\x4c\x42\x1f\xfd\x69\x32\x99\x20\x82\xbe\x74\xe0\xb2\x02\xf9\xa8\xd7\x7d\xd2\x45\x64\x11\x84\x61\x94\x4c\x7d\xd4\xf5\x9e\xb0\x79\xab\xeb\x3d\x63\x73\x88\x6b\x9f\x85\x2c\xeb\x64\x70\xec\x41\x22\xf7\x29\xa4\x4f\xd2\x84\x77\xc0\x70\x41\xa4\x7d\x27\xd2\x64\x51\x1f\xf5\x16\xb7\xad\x3c\x8d\xa3\xb0\xf5\xa7\x5e\xaf\x87\x48\x18\xe5\x8b\x38\x58\xf9\x28\x49\x13\x86\x08\xba\x99\x45\x9c\x75\xf2\x45\x30\x16\x95\x93\xf4\x26\x0b\x16\x08\xb8\x72\x79\x86\xed\x45\xd9\xe4\x6a\x54\x1d\x46\xc4\x89\xe0\xf8\x9b\xfc\x98\x8c\xe9\xf1\x37\xe3\x63\x12\xd3\xe3\x6f\xe2\xdb\x63\xb2\x14\x7f\x57\xc7\x64\x41\x8f\xbf\xb9\xfd\xe8\xdd\x75\x49\x6f\xe3\x7e\x0c\xef\xba\x64\x83\x8f\xc9\x84\x1e\x7f\xb3\xaa\xa6\x6e\x3d\x8b\x70\x7d\x96\xe4\xb3\x8c\xe5\x62\x37\x82\x60\x4f\x85\xd0\x2a\x0e\x4f\x59\x29\xa1\x07\x1e\x09\xac\x84\x93\x11\xf6\x77\x03\x1f\x2f\xb3\x6b\x16\xbe\x16\x87\xd1\x3d\xc0\xdf\x07\x0d\x0e\xb5\x82\x02\xca\xc7\x60\xce\x16\x0a\xba\x4a\xaf\x09\xde\xc3\x93\x47\xb2\x25\x90\x8b\x65\xc3\xfb\x95\x6d\x43\xa7\x11\x92\x91\xac\xec\x4a\x43\x1b\xa2\xee\xcd\xd6\x7c\x35\x76\x5b\xf3\x4f\x46\xf2\xb2\x48\xf0\x31\xd3\xbd\xe0\x8a\xc5\x56\x77\xd3\x2c\x9a\x46\xc9\x7b\xf8\x80\xed\xcd\x2e\x47\x1b\x8b\xc9\xbc\x66\x46\x29\xef\xa9\x58\x05\x0e\x9c\x19\x39\x6e\x94\x9f\x99\xe3\x1c\xe9\x08\x0a\x08\x09\xd2\x4a\x25\x0c\x2f\x63\xd2\x22\x06\x7d\x33\xe6\x88\xa4\xa2\xfa\xce\x99\x5c\xb0\x6c\xcc\x12\x3e\x88\x68\x35\xe9\x1e\x12\x50\xa5\x72\xe9\x58\xa4\x9a\x5a\x1a\x53\x4c\x50\x02\xcf\x3d\xad\x1e\x44\x85\x41\x58\x10\xfe\xb2\xcc\xf9\x3f\x82\xf8\xa7\x8c\x8d\xa3\x5c\x2c\xc4\xe3\x6f\x16\xb5\x55\x05\x7b\x03\x31\x2d\xcd\x82\xfc\xed\x4d\xf2\x53\x96\x2e\x58\xc6\x57\x2e\x5a\x44\xa0\x70\xda\x8d\x34\x4c\x77\x57\x10\x81\xe3\xb8\x01\x6d\x48\x6f\xc2\x35\xa8\x8d\x6d\x82\xe0\x2e\x8b\xd1\x7b\x96\x89\x98\xc7\x41\x51\x31\x27\xe5\x2c\xec\xdb\x79\x08\xdd\x0f\x71\x9c\xc6\x69\x66\x41\x1c\x93\x72\x96\x0d\x71\xac\x20\xca\xab\xc4\x20\x3f\xbf\x8d\xf2\xd7\xa2\x59\x17\xc1\x41\x13\x11\x8e\x2d\x50\x71\x01\x4a\x9e\x43\x8d\xea\x5d\xd7\xb3\x81\xc7\xdb\x81\xaf\x1a\x80\x2f\x0b\xe0\xab\xfb\x81\x2f\x01\xb8\x54\xe0\xc2\xbb\x4e\x30\x6e\x2b\xb0\xd6\x66\x3a\xf9\xbf\x0a\xed\xb5\xcb\x71\x65\x9a\xd4\xdb\x51\x08\x58\xc3\x83\xf9\xe2\x32\x05\x63\xcb\xa4\x71\x6b\xb3\x14\xe3\x5b\xc6\xc1\x44\x68\xb3\x51\x5a\xd5\x50\xfa\x79\x17\x4a\x93\x66\x94\xb2\x46\x94\x56\x4d\x28\xad\xaa\x28\xd5\xc9\x35\xd9\xb9\xb4\x16\x84\x91\xa4\xb1\x5e\xb6\xb3\xde\x84\x30\x92\xdd\xcb\x4e\xe4\x88\xf1\x68\xfc\x59\x69\x0a\xc3\x7e\x68\x68\xe4\x5d\xca\x03\xce\xc2\x7f\x09\x5a\xb9\x14\x45\x5c\x8e\x07\x28\x93\xa9\x90\x80\x7c\x04\x75\x51\x5f\xea\x79\x6c\xfe\xaf\xdb\x80\xaf\xbe\xd6\x76\x5e\xb5\xa2\xa4\xd2\xfc\x30\x1c\x49\x1b\xe1\x6a\x6a\x95\x67\xcc\x8c\x4f\xb6\x46\x2a\xc3\xca\x2e\x37\x7f\x11\x70\x36\x4d\x05\xa8\x4a\x89\x41\xad\x89\xe1\x6c\x24\x97\xb6\xdf\x98\x75\x8d\x29\xa5\x49\x9d\x4e\xb7\x82\x31\x85\x8e\x3f\xfe\xf9\x78\x4a\xd0\x9f\xff\xfc\xe7\x3f\x23\x8c\xf1\x66\x73\xaf\x38\xb1\xb2\xa6\x42\x8f\xd6\xbc\x34\x5a\x76\x89\xd2\x80\x59\x19\xd5\x31\x9b\x6f\x1f\x96\x55\x7d\x58\x2c\x40\xc3\x79\x6d\x64\x2a\xb9\x30\x38\x59\x7d\xc5\xec\x02\xb6\x75\x7c\xd4\xde\xb8\x27\xb1\xea\xa7\xee\xd5\xd6\xd1\x37\xb7\xa8\xca\x0e\x4a\xe5\x05\x37\x29\x65\xe3\x3a\x46\x32\xda\xda\x9e\x73\xb5\x1d\x93\x15\x6a\x1a\x8a\x02\x93\xac\x92\xbd\x0d\x13\x56\x96\x84\x0b\xd2\x6f\xb4\x89\xd8\x89\xf7\x90\x8d\x0c\x23\x9f\xa7\x21\x53\xe1\xc1\x90\x25\x3b\x55\x8b\x54\x1b\xb7\x38\x38\xad\xbf\x08\x68\x6e\x7d\x37\xfb\x76\x1c\x65\xeb\x73\x4f\xb9\x2a\x26\x3f\xff\x3a\x98\xac\xf6\xc4\x64\xb5\x1d\x93\xf2\xc2\xfa\x55\xa6\x65\x6c\x40\xee\x3f\x39\x95\x5d\x8a\xda\xea\x36\x92\x69\xd7\x48\xea\x56\x33\x0c\x38\xfb\x1b\x4b\x18\x84\x9a\x06\xbd\x70\xdf\x3c\xea\x80\x02\xd2\x73\x04\x6c\x77\x29\x69\xde\x83\x8b\xab\xe7\xe6\xd3\xa7\xba\x89\xc6\x65\x34\xeb\x7b\x15\xad\x5e\xaf\x83\xc6\x4d\xe3\xa3\xe7\xc4\x9b\x07\x7c\x3c\x73\x99\x10\x1a\xc5\x20\xbe\x63\xd3\x57\xb7\x0b\xef\xcf\x3d\x88\x12\x66\xbe\x48\x02\x77\x7a\x7f\x8d\x6e\x99\x74\x49\x49\xb9\x59\x58\x72\x27\xad\xcc\x9f\x2d\x0c\xd1\xb2\x8a\x52\x62\x00\x17\x69\xcc\x8b\x92\xf3\x2c\x0b\x56\x2e\x32\x22\x50\xae\x1e\x59\x59\x37\xc7\xdb\x24\xda\x44\xcf\x20\x1f\xd5\x45\x29\xc7\xd9\x99\xad\xd4\x09\x67\xdd\x1a\xde\xb5\x0d\xba\xa4\xb7\x6c\xc6\x5e\x30\xa1\x77\x29\x4f\xb3\xfd\x91\xaf\x30\x54\x5b\x00\xd8\xf4\x2b\xd7\xef\xa0\xe9\xbd\x8b\x92\x88\x97\x1e\x0c\x25\xec\xa6\x95\x40\xf4\x1d\xd5\x3d\x9f\x93\x24\x98\x33\x1f\x29\xa2\x41\xe4\x9a\x65\x39\x68\x35\xba\xde\x77\xde\x53\xb4\xc1\x85\x09\x06\xa9\x19\x60\xa0\x65\xce\xc0\x88\x6f\xcc\x51\x5f\x1a\xf9\x7a\x12\x71\xb3\xf3\x71\x82\x3e\x7d\x82\x25\xb9\x8c\x19\x22\x77\x60\xdd\xec\x1f\x75\x37\xe2\x50\xf2\x22\x5d\xac\x2e\xd3\x17\x71\xb4\xb8\x4a\x83\x2c\xd4\x4f\xfd\xa5\xaa\x57\xc1\x0b\xf2\x3c\x9a\x26\xeb\xb5\xdd\x0f\xbd\x31\x73\xda\xeb\xf3\xd3\xaa\xe1\x63\x9f\xb7\xdb\xda\x22\xc0\xe4\x0d\xf9\xc8\x48\x3f\x99\xd8\xcf\x13\xac\x1a\x28\xcd\xa5\xb5\x69\x6b\xbb\x98\x0c\xc4\xd1\x61\x36\xa2\xc9\x30\x1b\x99\x50\xca\x6c\x43\xd2\x92\x3f\x45\x7d\xeb\xce\x24\xc7\xd1\x8d\x25\xb4\xdb\x4f\x4e\x75\x14\xc2\x7e\xa2\x71\xcb\x28\x1f\x26\xa3\x7e\xe6\xb1\x64\x39\x67\x19\x58\xef\xdb\x1f\xeb\xf5\x51\x8f\x64\xde\x38\x4d\x26\xd1\x74\x29\xf3\x8f\xba\x04\x49\xf3\xf0\x28\x01\xc1\x33\xf3\x6e\xb2\x88\xab\x3c\x4c\x9a\xa7\x80\x91\xcc\xfb\xcc\x56\x24\xc3\x1b\x8d\x7c\x95\x29\xe9\x45\x2e\xaf\x22\xcc\x88\x90\x04\x93\x0c\xd2\x88\x58\xc3\x9b\x8d\x8b\x49\x44\x73\x37\x71\xbb\xe0\xc6\x58\xfc\x3a\xe9\x76\xb1\x65\x8d\x91\xdb\x0f\xd3\x1c\x87\x79\xc5\xec\x0f\x98\x7f\xa7\x74\x61\x3e\xdb\x14\x66\x0a\x63\x39\x60\xd1\xc4\x3d\xb2\x6d\xf5\xdf\xb1\x09\xcb\x58\x32\x36\x66\xf5\xb3\x28\x6f\xcd\x82\x3c\xf9\x96\xb7\xae\x18\x4b\x5a\x82\xbc\xa3\x20\x8e\x72\x16\xb6\x3a\xad\x7c\xb9\x60\x99\x8b\x4b\x25\xc4\x0c\xb2\xb0\x78\x31\xca\xd7\x6b\x6d\xc4\x69\xad\x2b\xc7\x29\xd4\x0b\x56\xf2\x80\xf9\x7c\xe3\xd6\x89\xb4\x44\x88\xba\x0f\x5c\xdb\x13\x8a\xf1\xec\x1f\x95\x37\x1f\xd1\xb3\xfd\x2c\x65\x5f\x04\x49\x92\x72\xc0\xbb\x15\x48\x0f\x96\xad\x20\x6f\x05\x66\xc2\x10\xde\x48\xa3\x48\x8e\xfb\x85\x0d\x4d\x75\x05\x90\x9c\x4a\x3e\x93\x62\x12\xd3\x6e\x3f\x3e\x4d\xfb\x71\xbb\x8d\xf3\x61\x3c\xb2\x96\x44\x6c\x22\xe0\x27\x34\xa3\x63\x09\x58\x1c\x66\xbc\x4f\x9f\x80\x06\x3e\x7d\x5a\xaf\x15\x4d\x4d\x19\xff\x49\x93\xc5\xdb\x89\xcb\x31\x86\xf5\xe1\x05\x8b\x45\x2c\x48\x0c\xde\x98\x8d\x04\xb9\x8e\x03\xee\xc2\x19\x2b\xf3\xd2\xe4\x45\x1c\x8d\x3f\xd7\xe2\x8d\x72\x9a\xc1\x3b\x91\x9c\x24\x94\xc3\x03\x6d\xd0\x2e\xa5\x89\x18\x6b\x92\xd3\x22\x46\x25\x19\x8b\x74\xc9\xac\x48\x4c\x23\xad\x4c\xf5\x5e\xa8\x02\x5e\x9a\xc4\x2b\x37\xc7\x64\x49\xdd\x2e\x09\x74\x3e\x76\x13\x32\xc6\xfd\xd4\x71\x52\x37\x21\x4b\x4c\x62\xc7\x89\x65\x9b\xf6\x74\x17\xc7\x38\x95\xa9\x51\x36\xa5\x75\x82\x8c\x59\xe6\x66\x24\xc1\xb5\x45\xa4\x27\xb9\x91\x8c\x0a\x71\xa6\x79\xca\xdf\x0b\xba\x6d\xb1\xdb\x45\xc6\x72\xc1\x79\xa5\xc9\x3b\x8b\xf8\x8c\x65\xad\x2b\x06\x1b\xaf\xb4\x90\xd6\xd0\x49\x4b\xd0\x08\x6a\xeb\x16\xb0\xe0\xfe\x7a\x6e\x34\xdb\x1c\x67\x0c\xde\x48\x3a\x8e\xbd\x9e\xef\xc6\x85\xa9\x9e\xaf\x78\x31\x23\x05\xd3\xf1\x8f\x7a\x44\x73\x14\xff\xa8\x4b\x6c\xee\x23\x98\xb6\xe0\xda\x8e\xe3\xaa\x36\xf2\x12\x4d\x0c\x1a\x53\x61\x70\x7c\x56\x50\x14\xe5\x82\x84\x09\xc3\x24\x75\x39\x19\xde\x7d\x66\x2b\x1f\x65\x2c\x09\x59\x86\x88\xc4\xa8\xd9\xcf\xb4\x24\x18\x4e\x5d\xe9\x48\x94\x30\x4d\x2f\xcc\x10\x08\x33\x74\x83\x49\xd2\x18\x0b\xeb\x6e\x53\xde\x05\x18\xe6\xe6\x89\x40\x86\xcf\x68\xd7\x10\xfc\xee\x6d\x81\xc9\x6d\x41\xec\x08\x54\xec\x0d\x46\x6e\x4b\x36\x62\x31\x20\x81\x21\x22\x48\x62\x28\x7e\x48\x0c\x11\x41\x1a\x43\x04\x81\x62\xb6\x11\x34\x37\x00\x8b\x12\xf0\x60\x5a\xdf\xc2\xa4\x24\x73\xef\x36\x24\x21\x77\x8a\x40\xa5\x55\xb5\xfa\xd8\x88\xb3\xee\x48\xb0\x6c\xb7\xa8\xff\xd3\x32\x63\x2f\xf4\xfb\x2e\x8c\x75\xba\xe8\x58\x4e\xef\x24\xaa\xbe\x7a\x68\xad\xe5\x03\xf9\xb9\xa9\xdb\x5e\x96\xb6\x7e\x75\x37\xeb\x9e\x74\x7b\xa2\x53\x48\x40\x6a\xf1\xb4\x35\xd6\x4c\xd3\x6f\xfd\x49\x4c\xf4\x86\xb4\x5e\x25\x9c\x65\xa8\xcf\x3c\x76\xbb\x48\x33\x9e\x37\x5e\x23\xc0\x15\x02\x19\x93\x98\x2c\xc1\x97\xc0\x7a\xed\x72\x7a\xb7\x01\xe7\xc3\xda\xe2\x58\xa4\x67\x2b\xb1\xec\x02\x9a\x41\x04\x60\x6d\x16\xae\x68\xff\x5d\x90\x4c\x99\x8b\xc9\xb8\xc8\x98\x32\xfe\x5e\xbb\xe4\x73\x31\x71\xe3\x6a\x1d\x3d\xba\xca\xfb\x90\x74\x1e\xf1\x42\x5e\x36\x52\x46\x62\x0f\xa2\xc1\x7b\x41\x1c\x53\x04\x4f\x77\x91\x49\xd3\xf7\x41\x14\x4d\x84\xd0\x5b\x64\xf0\x74\x41\xbb\xe6\x4b\x0c\x09\x45\x19\x1b\x73\xb7\x4b\x5a\xea\x3f\x5c\x94\x86\xab\x98\xf7\x8b\x60\xcc\x28\x5a\x64\xcc\xca\x60\x57\x9f\x23\xfe\x21\x67\x99\xec\x02\x55\x34\xa6\xf3\x2f\xd2\x2f\xdb\x33\xe7\xf9\xf6\xbc\x65\x43\x4e\x10\x4a\xd3\x95\xd7\x51\xce\xc5\xf1\xc4\x45\x63\xa0\xe3\xc2\x78\x20\xc1\x77\x89\x97\xf3\x74\x21\xc8\x27\x98\x06\x6a\x48\xf5\x89\x45\x5a\xa5\x64\x4c\x00\x51\x6f\x1e\xb4\x4d\xa4\xa4\x88\x97\x01\x0f\xa4\xa7\x0b\x65\x97\x57\xcd\xcb\x95\xc5\x9e\x86\xa8\x2c\xc8\x89\x99\xb1\xab\x34\x5c\xa9\x2b\x3a\x58\x3b\x6e\x8c\x89\x76\x61\xf4\x26\x0d\x99\x9a\xb6\x5c\xa4\x8f\x45\x8f\x24\x41\xe4\x98\x1c\x19\x18\xec\x96\x8d\x5f\xa4\xf3\x79\x90\x84\xaa\x8b\xb8\x1e\xaa\x56\xa4\xb7\xc6\xb2\x54\xeb\x26\xc8\x5b\xcb\x24\x5f\x8e\xc7\x2c\xcf\x27\xcb\x18\xe1\xfe\x92\x1e\x75\x37\x63\x38\x16\x2d\xf0\x5d\xe2\x38\x82\xc9\xa6\x31\xf3\x98\xac\xbf\x84\xa7\x99\xb0\x1e\x04\xa4\x65\x1e\x25\xd3\x96\xd5\xb2\xdf\x42\x64\x81\x89\x55\xf1\x26\xc8\x12\x17\xf1\x6c\x25\x4a\xfe\xf8\xaa\x95\x2f\xd8\x38\x9a\x44\xe3\x56\xce\x97\x93\x09\xc2\x40\xf9\xca\x00\x7f\xf7\xa8\xad\xd7\x6a\x4e\x99\xd8\x21\x1f\x80\x67\x09\x7c\x1d\x53\x55\x75\x12\xc4\xb1\x28\x7d\x15\x8c\x3f\x0b\x00\x8b\x2c\x9d\x2f\x38\x12\xd2\x62\x7d\xef\x77\x8f\xe7\xc1\xb8\x95\xe6\xad\xdb\xe3\xc8\xe3\x2c\xe7\x6e\x12\x5c\x47\x53\x71\x04\x06\x62\x3c\x9f\x0a\xfe\x34\x40\x1f\x97\x27\x8f\x7b\xdf\x21\x1f\xbd\xe0\x59\x8c\x70\x1b\xb5\x5f\xa0\xe2\x78\x6c\xd4\x34\x7f\xba\xfb\x98\x3f\xfa\xcc\x56\x1f\xf3\x47\x9b\xe3\x29\x11\xdb\x0b\x9a\xb3\x3c\x0f\xa6\x20\x26\xf3\x01\xf7\xd4\xa7\x9f\x62\xa2\x46\x4d\x22\xe8\x46\x84\xe1\xcd\x66\x12\x25\x41\x1c\xaf\xee\xc6\x8e\xe3\xda\xb2\x81\xda\x60\xc7\xea\xc2\x1b\xe8\x67\x50\xfa\x72\x73\xec\xeb\x84\xf3\x38\x86\xb4\xdc\xc5\x20\x6e\x94\x09\x55\x3d\xa7\xd5\x84\x1a\xb8\x46\x8c\x58\x56\xb8\x2b\xbe\x6b\x60\x8e\x7a\x27\xdc\xc2\xca\xfa\x20\x3c\x7b\x99\x68\xff\x45\xba\x4c\xb4\x17\x86\x96\x05\xa0\xd8\xf9\x78\x01\x46\xbe\x0b\x7f\xa5\x83\x84\x83\x71\x36\xed\xf6\xb3\x53\x1b\x58\x3f\x6b\xb7\x71\xa2\xcd\xb1\xa7\x8c\x43\x3f\xcf\xb9\x9b\x61\xac\x7d\x33\x73\x8f\x07\x53\x78\xc5\xc0\xd3\x0f\x8b\x85\x7e\x86\xa7\x9c\x31\xc3\xcb\x06\xe4\xc3\xef\xcb\x57\xff\xba\x3c\x7f\xf7\xea\x1c\xf9\xda\x67\x88\xf2\x65\xa3\xcf\x06\x9c\x0a\x99\x67\x63\xcd\x74\x65\x78\x89\xd5\x2b\xf4\x22\xc8\x18\xbc\xc9\x62\x9e\x98\x2f\x71\xe4\xa8\x57\xb0\x7b\xb3\x5e\x83\x7f\xf7\x57\xe5\xf7\x47\x30\xec\x86\x49\x70\x69\x93\x24\x84\x27\xf5\x74\x7d\xb3\x69\x38\xff\xba\x35\x73\xf8\x7e\x52\xbe\x8a\x32\x87\x09\xee\xcb\xb7\x4c\x0d\xfb\x1e\xc8\x8e\xcc\x7b\xf1\xfe\xbd\x40\xfe\xc5\xfb\xf7\x1e\xcb\xc7\xc1\xc2\xc4\x7a\xb7\xd3\xfa\x72\xfe\xea\xcf\xff\x6a\xaf\xff\x1a\x85\xcd\xff\x5d\x40\xfa\xdf\xad\x8c\xfd\x7b\x19\x65\x0c\x9e\xd3\xea\xea\x1e\x2a\xce\x15\x82\x1e\xe4\x4b\x5d\x97\x61\x92\x99\x17\x26\x24\xa5\x9d\x1e\x04\xd0\x04\x4b\x9d\xf1\x2c\xc8\x5e\xa4\xa1\xa0\x87\x2e\xee\xb7\xdb\xe9\x69\xd6\xc7\xdd\x23\xea\xf2\x72\x66\x8a\xf1\x20\x6a\x53\x7e\x46\x7b\x8e\xc3\x4f\xe9\xe3\xde\x7a\xdd\x3b\x79\x4e\x29\x5f\xaf\xbb\x10\xcf\x9d\x9f\xd1\x27\xdf\x41\xde\xd3\xe7\xeb\x75\xaf\x96\xe6\x38\x4f\x9e\x52\x1a\x0c\xd0\xc7\x8f\xa8\xcd\xcd\x3b\x62\xb7\xf7\x0c\xb7\x51\x0b\xf9\x12\x4a\x0f\xd4\xe1\xa2\x24\x5f\xaf\x8f\x5c\xd1\xde\xc9\x77\xeb\xb5\x4a\xf8\x5e\xfe\x29\x37\xc5\xcf\xe8\xb3\xa7\xf0\xf5\x7d\x17\xbe\xbe\x7f\x0e\x5f\xbd\x93\x13\x2c\x5b\x93\x3d\x81\x5e\xf8\xf6\xef\xa8\x4d\xd1\xc7\xe5\x64\x32\x09\x0d\x6b\x8a\x36\x7d\x7b\xe2\xd6\x6b\x39\xb7\x20\xbf\xd8\x53\x49\xb9\x10\xcf\x12\xbc\x91\x27\x29\x79\xfa\x4a\xdc\xde\x53\xdc\xf0\xd4\xa5\x24\x6e\x71\xeb\x50\x4d\x8f\xba\x46\xfc\xea\x0a\xe1\xcb\x0d\xdc\x4c\xf0\x97\xc4\xed\x89\x43\x58\x44\xc5\xcf\x67\xe2\x8c\x2e\x7e\x3c\x7d\x62\x1f\xd6\x83\xc3\x0f\xeb\xf9\x6f\x71\xa4\xfd\xff\x84\x2a\xc0\x20\x19\xff\x71\xe0\x3b\xf4\xc0\x27\x5d\x3c\xf7\xba\xcf\x1f\x3f\x7f\xd2\xfb\xee\xe4\x71\x9f\xeb\xd3\x47\xa3\xfc\x1f\x90\x05\x45\x9f\x3e\xc9\x2e\x75\x32\x16\x8c\x79\x07\x4c\xfe\x6e\x79\x07\xb5\xdd\x2e\x89\x8a\x73\x3e\x6e\xa3\x4f\x9f\x10\x99\x34\xeb\x65\x8c\xf9\x19\xc9\xfa\xea\x39\x69\xb2\x53\x73\x12\x15\x9a\x93\x80\x76\xfb\xc1\x69\xda\x0f\xda\x6d\x1c\x0d\x03\x5b\x73\x12\x18\xcd\x09\x2f\x34\x27\x6c\x97\x46\x24\x92\x1a\x11\x36\x8f\x38\x67\x59\x83\x54\x34\xd4\x20\xef\xd2\xa4\xa4\xb4\xe5\x6a\xe3\xc5\x1b\x92\x4e\x26\xe5\x2c\xca\x75\x78\x08\xb7\xae\x73\x6e\xf1\x23\x4a\x19\xbc\x9c\x9d\x32\xee\xd7\xdf\xdf\xb1\x0d\xc9\xed\x0c\x50\x05\x32\x9a\x48\x29\xbe\xbe\x41\x6a\xb0\x70\xfa\x85\x23\xe6\xc6\x55\x8a\x1c\x0f\x48\x0b\x83\x86\x84\x1b\xd1\x26\x76\x13\x21\x78\x56\x8c\x04\x41\x08\x7a\x21\xa7\xb3\x26\xe1\xa8\x41\x70\x99\xe0\x97\xc3\xc5\x48\x9e\xfd\xd5\xb0\x55\x6f\xe1\x8c\xb7\x92\x7f\x46\x71\xfc\x8e\x8d\x59\x74\xcd\xe4\x71\xb6\xb2\x41\x16\x0a\x04\x89\x28\x28\xe3\x25\xca\xd6\x33\x36\xbb\x04\x3c\x69\x93\xbf\x74\x34\xc2\xbe\xeb\x46\x34\xc1\x94\x52\x71\xe4\xc4\x83\xee\x11\xa5\xd1\x7a\xdd\x3b\x8e\x28\xa5\xbd\xe3\xc0\x8f\x44\x82\xe3\x04\x47\x94\x06\x78\x90\xd2\xae\xef\xa6\xb4\x49\xd9\xc4\x07\x1c\x06\xdb\x5f\x42\xb0\x31\x37\x5d\xd3\xae\xb6\x85\x50\x5d\x15\xab\xca\x35\x18\x60\xb9\x84\x22\x12\x94\x07\x40\xea\x4d\x9a\x9e\x56\x16\xdd\xd1\x0a\x87\x0d\x49\xc4\x74\x15\x1a\x80\xfe\x44\xe6\xa9\xa9\x10\x2c\x2a\xa7\xae\x9b\xe8\x91\x4f\x8d\xe6\x40\x32\x4a\x2f\xca\xdf\x49\x91\x21\x14\x8b\x48\xba\xef\xb6\xe9\xa3\xb6\xea\xd8\x6f\xb5\xea\x58\xb1\xea\xb8\xbd\xea\x78\xf3\xaa\xcb\x79\xc0\x19\x55\xec\x2f\x13\x34\x28\x5d\x5d\xe1\x0d\x28\x29\xa5\x97\xfa\x0a\x27\x82\x89\x71\xbb\xeb\xcc\x4b\xaf\x72\x96\x5d\xb3\xf0\x2f\x11\xcf\xb1\xc3\xb1\xe3\xc0\xec\xbc\x17\x40\xdd\x26\xa0\x4a\x53\xc8\x4a\xeb\x80\xe3\x07\x90\xae\xb2\x9c\x2d\xa1\x20\xfd\x21\xd8\x29\xd4\xbc\xe2\x17\xc2\xad\xb2\xc2\x1b\x2c\x7d\xbe\x65\xb5\xbc\x8c\xc2\x0b\x21\x09\x37\x78\x0b\x02\x4a\x18\x2e\x46\xc6\x1d\x90\x4e\xf0\xc4\x14\x4b\x0d\x93\x1c\x2e\x49\x00\xb6\x6e\x6e\x6f\x2c\x99\xc1\x92\x0d\x96\xfe\xae\x35\xfd\x21\x99\x1f\x8e\xe8\x64\x52\xc1\xb4\x66\xa6\x0c\x13\xb5\x6d\xd5\x14\xa0\x06\x55\xd0\x53\xc6\x5d\x5c\x45\x78\xdb\x1a\x74\x4b\x63\x63\x14\xda\x40\xe8\x5e\x94\x4b\x82\x67\x78\xc0\x86\xdd\x91\xcf\x94\x7d\x08\x50\xaa\xe2\x4c\x72\x80\xeb\xcb\x56\x21\x1b\x6a\xcc\xf4\xc2\x0d\xb6\x2d\x5c\x12\x60\x72\xf7\x53\x96\x5e\x47\x21\xcb\xfc\x09\x79\x91\x26\xb9\x10\x00\xfc\x70\xb3\xb1\x4e\x24\x66\x4f\x6e\x7c\x69\xbd\x97\x02\xf0\x31\x3c\x50\x77\x9f\x0a\xb9\x13\xe4\x51\x71\x40\x48\xdc\x08\x93\x9c\x0a\x81\x94\x8c\xe1\x3b\xc7\x24\xa6\x89\xfb\x04\x93\x25\x7c\xc7\x98\x2c\x68\xe2\x9e\x60\x32\xa1\x77\x71\x34\x9d\x71\x7f\xec\x05\xde\x55\x9a\xc6\x24\x0c\xb2\xcf\xc5\xd7\x64\x19\xc7\xd6\x57\x74\xcb\x42\xf8\x94\x96\xc9\x24\xe7\xd1\xf8\xf3\xca\x4e\x01\xfb\x3e\x3b\x21\x4b\x63\x66\x7f\xf3\x60\xea\x2f\xbc\x5f\xc8\x58\x3f\xc3\x2f\xd5\xce\x95\x38\x0c\x89\x6a\x34\xd9\xed\x22\x48\x64\xb3\x69\xc2\xde\x4e\xc4\xf8\xbb\x43\x83\x54\x51\x7d\x84\xcb\xef\x35\xb5\x28\x92\x50\x18\xf4\x20\x09\x49\x44\x99\x67\x5a\x26\xb9\xf8\xd2\x4d\x92\x31\x65\x1e\x0c\x06\x89\x29\xf3\xc4\x38\x90\x09\x04\xcb\xbd\x65\x21\x09\x29\xf3\x64\x6f\xc9\x4c\xd4\x12\xdd\x24\x57\xe2\x10\x1c\x4c\xc9\x5c\x09\x85\x6e\xea\x05\x18\xf4\xd1\xb2\x39\x44\x90\x69\x4c\xfc\xce\xcd\xbd\x2c\x82\x86\x10\x41\xa2\x19\x44\xb4\x0e\x13\xc9\x26\x44\x59\xd1\x00\x22\x88\x07\x53\x34\xc2\xe4\x42\xb7\xb0\xf0\xa6\xd8\x5d\xba\xd8\x8d\x08\x4a\x82\xeb\xab\x20\x43\xa4\x6e\x07\x02\x4f\xc3\x98\xe3\xb8\x47\x6a\xfd\xa3\x5b\x30\xa9\x60\x03\x55\xa9\xa3\x10\xf4\xcb\xdf\x1d\xd4\x66\x58\x1c\x92\x88\xeb\x72\x7a\xa7\x33\x25\xb2\xfe\x58\x37\xd9\x01\xac\xfd\x78\x83\x87\xe8\x6a\xda\x41\xed\xd9\x88\xce\x08\x1f\xca\x6e\x74\x50\x7b\x32\xa2\x13\xf1\x2d\xbb\xd3\x41\xed\x70\x44\x43\x30\x13\xce\xcd\x7a\x0a\xbc\xa0\xa2\x05\xbe\x52\x17\xaa\x6e\x26\x86\xf1\x6e\x43\xe6\xe4\xae\x20\x93\x0b\x21\x01\xf5\x43\x58\xdf\x72\x09\x4e\x48\x58\x51\xaa\x0b\xe2\x12\x38\x22\x4d\x34\x47\xbd\x0d\xe1\x5e\x40\xc3\x3d\x35\xea\xbf\xc6\x82\xd2\x14\x0e\x9e\xf6\x6c\xe2\xde\x9b\xe2\x35\xf3\x82\xb4\x04\x4c\x5e\x1a\xe8\xba\x44\xca\x49\x89\x94\x81\xcc\x35\x07\xcc\x15\x95\x8e\x6b\x54\xba\x8d\x38\xcd\x9d\x89\xa1\xbf\xb8\x46\x7f\xdc\x10\x83\xf4\xce\x92\x21\x2c\x84\x8e\xad\x93\x9b\x57\x27\x77\x6c\x4f\x6e\xbc\xc1\x24\x5a\xaf\xeb\xd5\xe4\xcd\x80\x5d\xd4\x46\xa4\x82\x42\x27\x1a\xa7\x09\x22\x09\xde\x97\x54\xae\x96\x9c\x8b\x1a\x30\x55\xfa\xeb\x00\x8a\x01\x62\x79\x2c\x89\xe5\x29\x10\x8b\xfb\x5c\x91\xca\x09\xd0\x8a\xdb\xfb\x4e\x92\x4a\xb7\x42\x2a\x3d\x41\x2a\xe2\x7b\x81\x49\x28\x49\x69\x06\xdf\x21\x26\x57\x02\x68\x0f\x93\xb9\x24\x29\xb3\xf6\xc7\x6a\xe4\xae\xbc\x4b\xe3\x84\xb9\xe8\x23\xb9\x8b\xf2\xb7\x0b\x96\xf8\x13\xc3\x19\x35\x19\x4d\xca\xac\x53\x7c\x06\x62\x3b\x7c\x3b\x71\x27\x8a\xc2\x30\xd1\xbf\x46\x18\x78\xf4\xbc\xc4\xa3\x75\x26\x91\x03\x6e\xb5\x61\xe8\x77\x52\xd0\x2f\xbc\xe2\x7c\xc7\x26\x4d\x0d\x8b\x41\x85\xb6\xd4\x02\x28\xaa\x8d\xf0\x06\x93\xe9\xce\xce\xda\x53\x68\xfa\x7b\xd4\x23\xc1\x62\xc1\x82\x4c\xfc\x62\x09\x67\x99\x38\x59\xb3\xdb\x88\x8b\xbf\x30\xcf\x61\x74\x8d\x08\x8f\xe6\x2c\x5d\x72\x7f\xee\x31\xef\x85\xf2\x6e\xbd\xc1\xe4\x9a\xba\x6e\x06\x5b\xf9\xdc\x0b\xbd\x57\x6f\x2e\x5f\xbd\xfb\xf1\xcd\xdf\x46\x54\x7b\xc0\x8e\x92\x29\x22\x59\x91\xf9\xea\x65\x91\xc7\x5a\xd2\x89\x8b\xca\xfe\xd7\x8f\x97\x5b\xab\xfe\xeb\xc7\xcb\x52\x4d\x44\x32\x4b\x33\xb4\x2a\xfb\x17\x86\xe7\x8a\xf2\xd5\x24\x1c\x44\xce\xb7\x59\x41\x18\x3d\xa8\x92\x81\x80\x0d\x18\xed\x16\x57\xae\x82\xb1\x96\xc8\xe5\x33\x5c\x70\x92\xb2\x21\x43\x94\x26\x70\x3d\x08\x68\xea\x0f\xd8\x86\xd2\xe4\xd5\x6d\xc4\xcd\x0f\x53\xe0\x36\xe2\x2c\x44\xa3\x86\xe3\x2a\xc3\x77\xc9\x90\x8d\xa8\xf8\x47\xbe\x90\x55\xf3\x18\x88\x79\x4c\xe4\x5d\x52\xb2\x51\x89\xb9\x48\x84\xe7\x84\xea\x34\x58\xc8\x77\xe6\x62\xd7\x2b\xb0\xab\x1c\x15\xa4\xe4\x66\x4e\x04\xaa\x53\x62\x08\xf5\x8b\x30\x6d\x4a\xa0\x01\x40\x3d\x21\x46\x9a\x4e\xee\x05\x12\xc6\xa9\x09\x24\x0b\x6d\x88\xb7\x11\xaf\xbb\x7b\xd9\x0f\xbf\x5b\xe9\xf8\xc5\xc0\xa9\x7a\x88\x64\x42\xbc\xce\x19\x97\xb4\xd0\x6f\x86\xdc\x6d\x02\x2b\xd5\xc8\x05\x64\x16\xee\x81\x63\x63\x87\xa1\xb2\x82\x55\x17\xbe\x8b\x53\x89\x8e\x65\x6a\x59\x9a\x04\x53\x78\xe6\x24\x17\x2a\x09\x28\x2f\x09\x5f\xdc\x93\xdc\x84\xc4\x94\x5b\x9b\xd7\xc2\xb6\x47\x99\x50\x97\x7b\x9a\x9f\xe8\x2d\x24\x92\xe4\x33\x84\xdd\x89\x20\x09\xbe\x22\x6c\x69\xe1\x68\xdb\xc6\xa6\x61\xa2\x11\x16\x1c\xd8\x3a\x0d\xc8\xb1\x28\xd8\xee\xdc\x8b\xb0\x3b\x21\x73\x6f\x6c\xb1\xa7\xb9\x37\xd3\x89\x9a\x62\x97\x75\x81\xc6\xe2\x5d\xc4\xde\x7c\xef\x36\xe4\x82\xdc\x45\x89\x9f\x91\x82\x48\xb5\x45\x81\xfe\x26\x86\xd8\x4a\x39\x2c\x24\x72\x52\x4c\xea\x6d\xc4\x89\x99\x74\x3b\x55\x01\x81\x09\xb4\xd3\x59\xb8\xb1\x1d\xb3\x98\xd7\xde\x75\x41\xb2\x75\x3d\x64\xa3\xf5\xba\xe0\x5a\x1b\x97\x8b\xed\xce\x8c\xc2\x14\xbb\x33\x17\xbb\x01\xc9\x48\xee\x38\x7a\x3f\x2e\x82\x07\x90\x18\x36\x3a\x79\xfc\x0c\x07\xe2\x87\xaf\xa9\x2d\xdc\x6c\x1f\xba\xda\x78\x4d\xc9\x1d\xdc\x9f\xfb\x95\xfd\x61\x2a\xaf\xd5\xc9\x04\x5b\xdb\x55\x44\x32\x36\xf1\x99\xa2\x61\x3d\xd5\x1b\x4c\x16\xd2\xb3\x1d\xdf\xb8\xb1\x7d\xc4\x3b\xb7\x44\x85\x0b\x72\x5e\x16\x15\xa6\x20\x0f\x9c\xff\xae\x12\xe4\x55\x5e\x9c\xba\x16\x51\x1c\x5b\x9f\xda\x79\xe5\x5e\x07\x22\x52\x78\x11\xb5\xa5\xce\x5f\x96\x39\x8f\x26\x91\x3a\xcc\xa9\xb3\x9d\x7d\xd2\x53\xdb\x7c\x01\x33\xc8\xac\xb2\x07\x9f\xe1\x1e\x22\xbf\x8a\x41\x00\xd9\x15\xfa\x0f\xa7\x33\xdd\x75\x52\xf6\x8f\x0a\xc7\x34\xd3\x25\x38\xaa\x89\xde\xc0\x41\x4d\x71\x98\x2b\xd8\x17\xb3\x90\xcc\x95\x30\x7c\xb1\xb7\x30\x2c\xf0\x40\x04\x01\x16\x88\x20\x8d\x03\x22\xa8\xc0\x00\x11\x64\xda\x87\xd3\x5c\x1c\x97\x58\x50\x90\x85\x85\x2c\x3d\x6d\x90\xa5\x67\xe6\x60\x26\x4e\x2f\xea\x0c\x73\x74\x14\x3b\x8e\x02\xbc\xea\xa8\x37\xf8\x1d\xd4\x8e\x0f\x3b\xf1\x4d\x62\x76\x2b\x56\xe4\x72\x9e\x20\x5f\x7e\xa1\x36\x6b\x23\x9d\x86\x37\xee\x18\x13\x38\xec\x75\xa0\xb3\x7e\x24\x51\xee\xcc\x58\x10\xb2\x4c\x25\x5e\x39\x8e\x3c\x73\x76\xe4\x50\xf8\x79\xb9\x94\x4a\xbd\x72\x9c\x5c\x16\x2b\x46\xc4\x9f\xc8\x14\x18\x17\x5f\x30\x9f\x5d\x27\x85\x79\xf5\xa4\x70\x61\x8b\xff\xd3\x7d\x65\xfb\x65\x8c\x8a\xb5\xf2\x9f\x3c\x07\xca\x3b\x7f\x6b\x2d\xfd\x96\xab\x46\x36\xf6\x80\x33\x9f\xf2\x58\x7f\xef\x89\xaf\x13\x71\x36\x17\xb4\x19\x39\x4e\xe1\xe6\xfe\xab\x4e\x7e\xfb\xcd\x67\x1c\x1d\x72\x32\xab\xcd\xe1\x73\x79\x3c\x13\xe7\xb2\x5c\x4e\x69\x69\x0a\x7b\x95\x29\x7c\x52\x39\x9f\x9d\x88\xf3\x19\x20\x12\x7a\xbf\x14\x07\x9c\x65\x99\x07\x2f\x8b\x33\xd0\x52\x9f\x75\x96\x36\x3b\xd6\x7e\xda\xa1\x22\x50\x83\xa2\x8e\x65\x9d\x3a\x96\x4d\xd4\x61\xb5\xa0\x0d\x11\x4d\x4b\xb3\x4c\x61\x14\x24\xab\x0d\xb9\xfa\xda\x33\x83\xb6\x26\x4e\xf4\xaf\x92\x5c\x1f\x29\xb9\xbe\x10\xea\x83\xfd\x84\xfa\xba\x89\xb2\x25\x6e\xea\xf1\x19\xb0\x9a\x35\x9b\xef\xa2\x3f\x21\xed\xfa\x56\x96\x16\x1d\x76\x9c\x7a\xd1\xb2\x00\xab\x0c\x8c\xeb\x69\x2e\xc3\xf7\x0a\xb5\xc6\x0c\x76\xaf\x65\x17\xa8\x65\x97\xc3\xdb\x13\x25\xb4\xc6\x0f\x5b\x83\x25\x11\x95\x2c\x35\x90\x50\x2c\xc7\x49\xb1\x1c\xe3\x28\xf9\x8c\xc8\x9d\x21\xac\xd8\x8c\xa1\x26\xad\xa8\xc4\x6f\xc7\xb5\xf5\x19\x54\xd7\x67\x4c\xee\x04\x25\xe5\xa4\xc9\xd4\xd5\x26\x50\x2d\x4b\x09\x98\x96\x34\x75\x65\x2d\xe6\x19\xb9\x6a\x5a\xcc\x81\x5a\xcb\x57\x0f\x5a\xcb\xbd\xef\xe4\x62\xee\xc2\x5a\xf6\x12\x37\x50\xca\x16\x58\xcb\x5e\x22\xf6\xb3\xa5\x5c\xc4\x0b\xf8\x5e\xc2\x6a\x16\x8b\x18\xd6\xf2\x73\x58\xcc\x46\x3d\x12\x6b\xe5\x86\xc5\x95\x6c\xb5\x5d\x9a\xb3\x17\x5b\x73\xce\xb3\x28\x80\x07\x4b\xa5\x1c\xb3\x5e\x63\x4b\xab\x07\xaa\x71\xab\xd4\x24\x08\x65\x01\x58\xf8\x4a\x9b\x61\xbe\xa5\x4e\x0b\xbe\x61\x75\x8b\x71\x9b\x78\xbf\x90\x22\x00\x97\x84\x35\x0b\x16\xcc\x0d\xbd\xa0\x18\x74\x5c\xf0\xa7\xb8\xcc\x9f\x2c\x6c\x2c\x3c\x74\x13\x23\x2c\xb8\xc6\x9d\xc4\x13\x29\x9b\x4b\xa4\x11\x2b\xe9\x52\x2a\x5d\x47\x2f\x20\x60\x9a\xec\x91\x28\x58\xe0\x68\xb3\x8b\xbb\x0d\x11\x88\x96\xb5\x38\x4b\x79\xe7\xf4\x56\x9e\x69\x8e\xba\x1b\xbc\x29\xf4\x22\xf3\x1d\xfb\x5e\x69\x5e\x60\xe9\x95\xb1\x02\x91\xb1\x58\xa6\xb1\x5a\x9b\x4b\xa3\xbe\x17\xf2\xa1\x3a\x9a\x82\x26\x1f\x06\x1c\x24\x44\x73\xfc\xbc\x10\xe9\xc5\x19\x6e\x2a\x44\xcb\x20\x64\xe4\xda\x5e\xe0\xab\xdd\x0b\xbc\x84\xa7\x4e\x30\x58\xd6\xa4\xcd\xa9\xa5\xfd\x37\x27\x5b\xe5\x01\xbb\xac\x9a\x35\x78\x09\x91\x33\x08\x59\x85\x65\x9c\x6b\xb4\x26\x82\x65\x2c\x24\xcb\x08\x62\x96\x71\xa4\xfe\x76\x50\x7b\x49\xee\xd4\xef\x30\xca\xe7\x51\x2e\x7d\xa2\xfa\x57\x1b\x4c\xc6\x98\xdc\xd4\x40\xa8\xd0\x78\x24\x81\xfc\x2f\xf4\xbe\xe9\xbd\x20\x77\x57\x81\xea\xbf\x3f\x1d\x5c\x78\xc5\x17\x2a\x54\x72\x22\x43\xff\xee\x6e\x0c\xaf\xca\x6b\xbc\x2a\xf4\x6a\xdc\x6a\x45\xbe\x10\x60\x2a\xf6\xde\x79\x4e\xa2\xc4\x9f\xc9\xcb\x27\xdd\x67\xb3\x28\xae\x37\x98\x5c\x0d\xea\xc0\x8d\x3a\xf8\xae\xa4\x0f\xb6\xc0\xde\x10\x14\x64\x51\xd0\x81\x57\xdd\xc8\x0f\x0c\x87\xbc\xda\x90\x06\x78\x4a\x77\x2d\xeb\xcc\xa2\x30\x64\x42\x02\xe7\xd9\x92\xa1\x0d\x41\x1f\x6f\xc3\xe7\x08\x63\xe5\xd0\x18\x6f\xe6\x25\xb6\x39\x2f\xb3\xcd\x2b\x60\x97\xf3\xff\x80\xf8\x9a\x47\x5f\x1e\x76\x8d\xf1\xb0\x43\x9f\xdc\x3c\xc1\xf7\xe5\xfe\xc2\xab\x5c\x35\xe0\x8c\x69\x9b\xe8\x0a\xd1\x72\x3a\xd3\x2c\x5d\x2e\x10\xc9\x07\xf6\x77\x07\xb5\xa5\xe3\xe8\xdd\x72\x6c\xf4\xeb\xc8\xb1\x82\x7f\xfe\xee\x87\x91\xc4\xfd\xbe\x2b\x36\xbf\xe2\x50\x12\x86\x69\x72\xa9\x6f\xa8\x60\x8b\x70\x87\x68\x91\xb1\x05\x83\x7b\x4b\x69\xe8\x8f\x46\xd8\xb6\x42\xa9\xdd\x4b\x1d\x42\x0c\xb3\x07\x13\x83\xc1\x55\x72\x74\xcd\x9b\xf7\x97\xab\x24\x79\x18\x30\x95\x57\x41\xe1\x3d\xe4\x22\xc8\xc3\xa2\x8c\x7a\x68\x88\xf1\x60\x0f\x62\x89\x6d\x62\x11\x47\xe0\x7a\x9d\x89\x17\x90\x42\x2a\x19\x6f\x30\xf6\x0f\x06\x4c\x4a\xf5\x37\xfd\x99\x45\x90\x21\x99\xed\x26\xc8\xd9\x7f\xee\x64\x65\xd0\x5e\x6a\xd2\x02\x1e\x6c\x9d\x81\x80\x0f\x59\xdf\x57\xf9\xfb\x4a\xca\x75\x10\x47\xd6\xc9\x2a\x4a\x2a\x09\x5f\x7d\x7a\x5b\xc4\x41\x04\x26\x20\xd6\xf1\x4d\x10\xd5\x03\x4e\x6f\xbf\xc2\xf9\x6c\xca\xf8\x3b\x36\x91\xfe\x1c\xdf\xb1\xc9\x96\xd3\x99\x34\xa8\xa7\xea\xef\xaf\x71\x84\x53\xed\x6e\x39\xc1\xe9\xc1\x2d\x1d\xb8\x74\xa2\xab\x43\xf9\x65\x6c\x42\xc1\xae\x47\x62\x57\xb5\x37\xca\x4c\xfd\x8c\x4d\xcc\x93\x80\x5f\xe7\xa8\x06\x76\xba\x42\x5a\x94\x04\x04\x1c\x06\x08\x05\x24\x44\x45\x34\x20\x25\x0a\xfe\xb3\xd0\xfc\x07\xa4\x45\x43\x00\x20\x30\x1a\x01\xb0\x6e\xff\xb1\x95\x13\x49\xf6\x23\x9b\x46\xf0\xba\x3c\x0a\x41\x6e\xd3\xbf\x2c\x5e\x85\x08\x32\x0d\x56\x64\xbb\x0b\x3a\x44\x59\x10\x46\x29\xf0\x32\x36\xfe\x7c\x95\xde\xa2\x91\x79\x5a\x19\xe1\xb3\x4e\x8f\x4c\xa9\x34\xe6\x9e\xbe\xba\x5d\xb8\xe8\xe3\xc7\x97\x88\xa0\x29\xc2\xe4\x9a\x2e\xd7\x6b\x57\x05\x7b\x16\x7c\x2c\x52\xcf\x96\x82\x8c\x05\xf0\x3d\x88\x7c\xc9\x01\x11\x26\x2b\x8a\x26\x69\x36\x07\xfd\x63\x96\xc6\xa8\x3f\x1b\xb8\xab\x36\x45\x1d\x0b\x37\x80\xa8\x6b\xf8\x68\x12\xc5\x4c\xc2\x81\x82\xf0\xe9\x5f\x38\x8e\xbb\xa2\x0b\x79\x05\xa0\x40\x0a\xcc\x3b\xba\xa1\x39\xec\xfa\x8e\x33\x95\x8f\x94\xe4\x27\x36\xd6\xd0\x6e\xe8\xc5\xd8\xfd\xf6\xa7\x98\x05\x39\x6b\x2d\x21\xa2\x27\x6b\x89\x39\x6f\xe9\xf1\x04\xfb\x78\x16\x84\x2d\xf0\x7a\xc2\x5a\x52\x22\x80\xd8\x51\x69\xca\x73\x9e\x05\x8b\x8f\xdf\xe6\x2d\x68\xb0\x95\x47\x5f\xa2\x64\xea\x7d\x2b\xb8\x97\x6c\x4b\xfb\x5c\x56\x2d\xf7\xe5\xcd\x6b\xfd\xdc\x1d\x3b\x0e\x8a\xf2\x8e\x99\xb3\x5c\x7e\xab\xaf\xa3\xa3\xc0\x71\x4a\x43\xd6\x41\xed\x80\xac\xac\x2d\xc4\x55\x43\x45\x29\xbd\x5e\xaf\x97\xcd\x2f\xa4\x97\xa2\xeb\xff\x2f\x77\xd7\xff\xdb\x36\x8e\xec\x7f\x7f\x7f\x45\xac\x07\xf8\x44\x84\xf1\x3a\x6d\xf7\xdd\xad\x72\x3a\xa3\xed\x76\x77\x8b\x6e\xda\x60\x9b\xbd\xbd\x45\x10\x04\xb2\x4d\xdb\x6a\x64\x49\x27\xc9\x4e\xdc\x58\xff\xfb\x03\x87\xdf\x86\x12\xe5\x38\x49\xaf\xbb\x38\xa0\x68\x2c\x8a\xa4\xf8\x65\x38\xc3\xf9\xcc\x70\xb8\x04\x72\x0d\x63\x3e\x3a\x8a\x45\xf6\xfb\xbd\x45\xbf\xaf\xa6\x4f\xf8\xc0\xb6\x85\xd2\xda\xca\xb2\x6e\x0e\x23\x5c\x52\x72\x70\x13\x57\x8b\x83\xe8\x80\x17\xe1\x63\xe6\xfd\xe5\x30\x3e\xfc\x8b\x77\x30\x11\x67\x08\x16\xd1\x9a\x1d\xa8\xaf\x0e\x0e\xd0\xc8\xcb\xa8\x08\xdf\x78\x52\x9c\x80\x83\x9f\x1e\x7e\x3e\xa6\x7a\x28\xcd\x09\xe1\x36\xf2\xb0\x76\x38\xfc\x14\x6c\x16\x8c\xf1\x4e\xfe\x71\x20\x03\x6c\xe0\x81\x38\x9f\x02\x34\x7c\x11\xd1\xd6\x44\xf8\x2c\x15\x02\x0b\xb4\x24\x93\x68\x9e\x10\x25\xa0\x86\xa3\xf7\x6d\xec\x30\x5b\x55\x49\x9c\xb2\x2f\x28\xe1\x5a\x98\x62\x53\xea\xb6\xe5\xf4\xfe\x80\x25\xa8\x8e\xba\xb1\xff\x85\x08\xe5\xde\xb0\xe3\x03\x44\x99\x44\x16\xd3\x90\x5d\x60\xc2\xb9\x04\x59\x06\x24\x23\xa1\x0f\xcb\xa9\x91\x8f\x34\xc8\x33\x23\xfb\x0c\xee\xc1\x65\x9a\x24\x1d\x90\x6a\xc0\xfb\x8c\x2f\x23\x12\x6c\x6d\x2b\x99\x86\x28\x51\x5b\xa8\x07\xed\x68\x7a\x3b\x0a\xa0\xc0\xb6\xbf\x4b\x5c\x43\x7e\x5d\xe9\x6c\x0e\xc0\xf3\xa4\xb4\xc2\xf2\x18\xbe\x76\x8a\xf8\xa0\x6f\x1e\xc2\x36\x77\x71\xab\xdf\xbd\xa1\x51\xbd\x81\x0c\xe6\x21\xdc\xc8\x7a\xe8\xe7\x23\xef\x48\x35\x2c\xf0\x3c\x72\xe8\x01\x3e\xb2\x6e\x49\x00\xbe\x4b\x07\x52\x2e\x6b\x5a\x6e\xb7\x50\x9c\xff\x98\xd3\x1e\x70\xe6\x71\x95\x1e\x79\x87\x0b\x69\x23\xe1\x4f\x72\x7c\x14\x2b\xa8\xcc\x5a\x76\x50\x56\x4d\x68\x42\x4e\x4e\x25\xba\xad\x50\x88\x30\x0c\xc7\xfd\xbe\x3f\x0e\xbd\xc8\x13\x0d\xdf\x84\xe5\x48\x02\x6f\xa0\xbd\x76\x23\xbc\x0d\xc7\x4a\x0b\xdd\x10\xf5\x9e\x2a\xe2\x1c\xa9\x74\x15\x8a\xc0\xb6\xbe\xad\xc1\xb0\xbe\x74\x23\xc3\x16\x63\x4b\xb7\xdb\xcd\xa3\x58\xb7\x82\x1f\xe1\x4e\xe9\xa8\xd8\x78\x14\xbb\xea\xfd\xe1\xdc\xbc\xcd\x00\xe3\xf4\x0b\x33\xe1\x3f\xa1\x12\x51\xae\xc6\xcb\xb8\x0a\xd5\x8f\x3f\x9d\x1a\x21\xdb\xb7\x5b\x8f\x10\x99\xbe\x98\x22\x21\xe6\xfd\xa9\x36\x1f\x51\xcb\xde\x36\x1f\xc1\x53\x60\x77\x29\x4b\x3e\xd6\xb8\xe3\xb0\xe3\x94\x0f\xb4\xe2\xf0\x66\x3c\x69\x45\x3e\x0d\x99\xb4\xf8\xcd\xa3\x1c\xad\x9b\x87\x13\x9a\x58\xa7\xe5\x6b\x23\x36\x2d\x0f\xc7\x34\x4b\xad\x65\x2a\xf7\x95\x89\x24\x99\xfd\xa9\x44\x8a\x49\xe4\x7c\x22\xcd\xf4\x33\x07\x78\x65\xe4\x8e\xc2\xaf\x62\x5a\x8e\x50\x82\xae\x26\x30\x89\xf7\x18\xf1\x27\x3b\x61\xa7\xd9\x43\xc0\x4f\x89\xca\x8b\xaf\x7e\x7d\xb7\x8c\xfd\xa9\xa3\x49\x0d\x22\xbc\x3f\x76\x9a\x12\x29\x09\x2b\x91\x7f\x16\xcf\x9c\xe3\x4c\xf6\x89\x1a\xb8\xde\xc5\x3c\x16\xac\xcc\xb3\xb4\x54\x0e\x22\xf7\xfa\x73\x29\xda\x37\xe5\xce\x65\x8a\x16\x37\x8e\x7a\x40\xc6\xe0\xee\x62\xa7\xeb\xa7\x90\xb4\x1a\x12\x20\x69\x33\x1a\xb0\xf5\x94\x03\x01\xde\x59\x70\x9a\x66\x0a\x5e\x5b\x6b\x26\x2c\x6f\xa6\x07\xd6\xde\xd3\xea\x18\xd8\xdf\x34\x53\x9d\x3f\x74\xb9\xa8\xd6\xe9\x9f\x09\x18\x34\x3d\xd9\x32\x73\xfc\x46\xde\xb9\xe3\x99\x8f\x6b\x86\x6c\xb5\xa7\xc1\xa0\xd7\x2e\xe4\x18\xce\x76\x2b\x07\x19\x78\x80\x05\xd8\xeb\x95\xfa\xd9\xb4\xab\xd7\x9b\x34\x52\x45\x13\x85\xeb\x97\x48\xd7\xad\xed\xf5\x66\x3a\x51\x34\xbc\xd7\x9b\xea\x14\xd1\x07\xbe\x8a\xe9\x26\xdc\xe3\x70\xcd\x5c\x08\x82\x53\xc4\x2e\xd7\x35\x81\xd0\x26\x0b\x41\x05\x2f\xad\xee\x81\x63\xd9\x62\x24\xbf\x86\x46\x2a\x68\x25\xc1\xee\x77\xb7\x8b\xd7\x1d\xd6\xf0\xe9\x46\x1f\xdd\xdc\xec\xc5\x46\xe4\x18\xdb\x8b\xe0\x8f\xb1\xac\x68\x69\x94\x66\x3f\xae\xaa\x8a\x15\xe5\x23\x3c\xbd\x28\x97\xa4\x4f\x12\x32\xfa\xeb\xc8\xf5\x8b\x41\x50\xa2\x07\x48\x19\x5d\x89\xa6\x7e\x90\xf0\x1d\x62\x26\x1e\x79\x69\x76\x34\x97\x25\x84\x19\x73\x32\x12\x7b\x93\x22\xbb\xf1\x02\x8f\xff\xff\x40\xdf\xb0\xc7\x8b\x95\xa7\xcc\xfc\x8b\xe7\x8d\xa9\x7f\x94\x6e\xe0\xd8\xe7\x8b\xf0\xf5\xf6\xf6\x7e\xec\xca\x08\xf4\xe2\x2c\x21\x7e\x82\x97\xc7\x9d\x46\x63\xf6\x2e\x7d\x49\xa8\xb8\x94\x66\x41\xc5\x49\x82\x60\x51\x93\x4b\x42\x97\xc6\x99\xed\xb6\x0c\xc6\xb4\x5c\x06\x63\xba\x9c\x06\x63\x9a\xcc\x83\x31\xbd\x4d\x2c\x10\xee\x3e\x64\x07\xae\x7b\x2b\x85\xef\x59\x51\x44\x9b\x9a\x9e\x62\x81\x2f\x5f\x5f\x78\xb7\xc0\x7d\x97\x1e\xf5\x96\x9c\xfb\x26\x9c\xc4\x6e\x13\xef\xb2\xa6\xf3\x56\x38\x64\xe9\xd7\x0a\xd7\x95\x6e\xb7\x1e\x57\x54\xd3\x11\x1b\x79\x93\x8c\xef\x5b\x26\x00\xab\x56\x81\x17\xad\xaa\x0c\xbf\x3b\x82\x04\x9d\xe1\xd0\x93\x09\xf2\xad\x77\x98\xe2\x77\xde\x61\x5a\xd3\xf5\x83\x57\x9b\xe8\x90\x5e\x6a\xfb\xaf\x30\x51\xd0\x6c\xdf\x56\xe1\xc5\xe5\x49\xec\x0a\xff\x80\x62\x57\x5f\x54\x97\x70\xc5\xa4\x80\x54\x93\x8b\xea\x92\x66\x72\x44\xf4\xad\x5e\xbd\x82\x67\x89\x7c\xe2\x67\xf2\xc2\xcd\x92\x4e\xc2\x78\xe4\x1d\x79\x81\xa7\x3a\x4b\xf3\x70\xee\xc7\xb4\xa2\x99\x44\xb8\x57\x22\xd6\x45\x53\xcd\xf0\xfd\xd2\x9c\x6d\xe6\x39\xd5\xd7\xa4\xe0\xbf\xf0\x80\xa6\xbc\xc3\xc9\x61\x36\x80\x9f\x3c\x23\xfc\x80\xd8\x42\xea\x01\x72\x02\xd5\xc9\xac\xf0\x1b\xf2\xc2\x2f\x9d\x19\x9e\x68\xc9\x75\x48\x22\xae\x79\x94\x57\x68\xca\xe6\xea\x96\x2e\x48\x0d\x77\xed\xad\x64\x24\x83\xed\x56\xbe\x00\xb2\x10\xfa\x66\xee\x50\x9b\x56\xbb\xb5\xa4\xdd\x6c\x28\x07\x36\xb4\x46\x6c\x68\x49\xd7\x36\x1b\x3a\x05\xe6\xb3\x7e\x18\xf3\x39\x7e\xe6\x96\x3b\xcf\x9f\xed\xe7\xce\xf6\xe2\x85\xcb\x37\x55\x60\x4c\xe7\xd1\x18\x9c\xbf\xa2\x74\xd3\xe1\xd6\xe6\x70\x51\xfb\x02\x78\x82\x3c\x68\x66\x1a\x91\x4a\xdd\x5d\xa7\xd4\x34\x55\xc2\x1e\xaf\x1a\x08\x51\x2a\x2e\x0e\x66\x45\xbc\x66\x53\x38\x99\xf4\x43\x91\x2d\x9b\x61\x1a\x28\x0a\x8d\x62\xaa\x85\x10\x23\xfa\x69\x84\x5a\x80\x92\x6b\x79\xf4\xad\xda\x19\x4f\xe0\x41\x48\x40\x26\x79\x40\x6c\xa8\x6e\x41\x50\x00\x14\x15\x24\xfa\x9a\x6d\x4a\x7f\x41\xf8\x0c\x63\xf2\x04\x9f\xaa\x2a\x1a\x2b\xf7\x7e\x0f\x02\x57\xec\x90\x98\xb3\x41\x34\x50\xb1\x05\x54\x78\x6f\xd3\xd9\xb7\x12\x51\x14\x27\x99\x4c\xbf\x6b\x87\xbb\x41\xd6\x24\xfa\x18\x13\x7d\x59\x13\x89\x0a\xc4\x18\x15\xd0\x07\xf8\xf2\x2c\xd9\xcc\xe2\x24\x21\xfe\x98\x08\x04\x80\xee\x81\x18\x80\xa0\xbe\x67\x95\xa4\x83\x29\x78\xaa\xe1\xf0\x97\x7a\xc6\x17\xb5\x84\x6d\x9f\xbe\x7d\x7b\xf1\x02\x79\x85\xde\x29\xf7\xca\xfd\xf7\x6c\x15\x0c\xf7\x44\xfa\x5b\x1b\x9f\xc5\xc5\x03\x4e\xb8\xbc\x9d\x3e\xc2\x55\x1f\xca\x61\x4f\x7d\xc7\xb9\x2d\xec\xb7\xb7\x52\x34\x96\x47\x29\xf3\x68\xa5\x71\xe8\x38\x84\x80\x45\x34\x25\x75\x37\xc1\xe5\x00\xde\x8a\x08\x16\x70\xe7\x18\xf5\x5d\xe2\x12\x91\xe0\xa3\x8f\x02\x88\x38\x80\xfc\xdf\xbe\x6e\x2b\x5f\x13\x37\x68\x46\xb6\xc8\xad\x13\x53\xd5\x1e\x6a\xb8\xb2\x83\xb5\x35\xf2\x4b\xf2\x34\xe7\xaa\x47\x84\x07\x00\x53\x90\x05\x5a\x4e\xe4\x61\x2b\xed\x2a\x3b\xdb\x3f\x62\x80\x72\x58\x55\xda\xb1\x38\x30\x65\x88\xd4\xe9\x64\x35\x8e\xa6\x73\xd0\xd3\xf9\x5f\xa9\x25\x73\x7d\x58\x3c\x43\x05\x98\x19\xce\x94\x49\x04\x0c\x3b\x61\x18\x26\x70\x31\xb5\x17\x79\x2e\x6f\xaa\xa4\x49\x6b\x33\xdb\x51\x0a\x50\xd0\x3d\x14\x8c\xb6\x3d\x02\x26\xbe\x77\x2c\xec\x12\xd0\x96\x3f\x00\xc5\x6a\x51\x4b\x91\xdd\x20\xcd\x73\xc1\x26\x08\x74\x92\x26\x0a\x03\x49\x29\xf3\xd3\xd7\x3d\xd2\x57\x64\x37\x40\x71\xfa\x84\x82\xf0\xe7\x63\x93\x6b\xe9\x7b\x03\x80\xfa\x4c\x52\xdf\x74\x6f\xea\xe3\x7a\x26\xf5\x54\xad\xca\x25\xa6\x09\xae\x5f\xf2\x6d\x52\x17\x5a\x0a\x55\x28\xed\x55\x14\x97\x4e\x2a\xd2\x65\xb4\xe7\xf7\x26\xdb\x6d\x2f\x21\xda\xb9\x43\x3a\xaf\x88\x2f\xc8\xd7\x70\x9b\x88\x6e\x08\xf6\x1a\x9c\xc5\x2c\x99\x96\x22\x74\xea\xac\xdf\xf7\xa7\x7a\x14\xc2\xd2\xe9\x0c\xd8\x24\xdf\x29\x26\xdf\xc5\x9f\xd5\xdb\x94\x6b\xd2\x6d\xcd\xd8\xc1\x0b\xa5\xa6\x3a\xb1\x35\x63\x47\x46\x04\x59\xe2\x32\x48\x21\x5e\x74\xaa\xb8\xed\x55\x22\xcc\xc0\x9d\x0b\xa5\x09\xf9\xce\x6c\x96\xaf\xf6\xd8\xfb\x6f\x12\x3a\x95\x6b\xa9\x13\x4f\xda\x2a\xb3\x34\xaa\xff\xd7\x29\xcd\x62\xe8\x81\x01\x48\xfd\xd9\xd8\x41\x14\x1b\xc8\x15\xb8\xbc\x10\xe8\x15\x1d\xef\xcd\x04\xa4\x81\xbf\xa1\x63\x1b\x5e\x20\x31\xe1\x59\x56\x78\x40\x1c\x17\x97\x27\xe5\x83\x14\xef\xb1\x4b\xf1\xa6\x91\x54\xbd\x67\x0d\xd5\x3b\xb2\x55\xef\x93\x38\x9c\xfb\x91\x51\xbd\xe9\xb2\xad\x7a\xaf\x90\xea\x1d\x7f\x75\xd5\x1b\xb6\x81\x5c\xf5\x3e\xd0\x4d\xd5\xad\x14\x37\xdc\x03\x8b\x38\x0d\x9b\x4d\x56\x2c\xb4\x2c\x8e\xb2\x34\xd9\x28\xf0\x1a\x31\x49\x49\xd1\xbd\x5e\xde\xef\x03\x1d\xc1\x3b\x48\x3d\xf2\x0e\x73\xba\xa4\xbd\xde\x52\xdf\x1f\xdd\xc8\xf1\x30\xc3\xd4\xa2\x5a\x26\x3f\x64\x45\xb0\xa8\xe9\xb8\x1d\x3d\xea\xcb\xeb\xf0\x5f\x04\x3a\x9e\x25\xab\x78\xfa\x95\x0e\x08\xc3\xb7\x1e\xa1\x74\x40\xb9\xdd\xc7\x83\x63\xce\x2d\xd2\x2a\x8a\x53\x56\x1c\x89\xfc\x81\x49\xf9\x3a\xa7\x84\x1f\x2d\xef\x86\x30\x91\x83\x54\xc4\xc4\x84\x19\xb3\xce\x16\xfe\x55\x02\xc1\xcf\x04\x16\x73\xdc\xc0\x62\xbe\x15\xd2\xee\xf8\x6f\x10\xc7\xc9\x7f\x3e\x84\x30\x4e\x83\xd4\x5f\x88\x38\x4e\xdf\x7d\x4b\xe8\x29\x24\x2c\x09\x9d\x73\x0a\xf8\x8e\xd0\x35\x24\xcc\x09\xdd\xf0\xa2\x43\x42\x5f\x42\xc2\x86\xd0\x1b\x5e\xc7\x73\x42\x3f\x43\xc2\x0d\xa1\x57\x3c\xc7\x31\xa1\x1f\x20\xe1\x8a\xd0\x73\xfe\xd1\xbf\x11\x7a\xcb\x2b\xff\x3f\x42\xdf\xc3\x8b\x5b\xe2\x13\xff\xae\x04\xd7\x0a\x11\xc2\xf9\x7d\x36\x65\xea\x96\x91\xc2\x91\x58\x13\xfa\x73\xe8\x67\x46\xc7\x77\x04\x17\x38\xe8\x08\xa2\x58\x13\xfa\xa6\x19\xfa\xd5\x79\x75\x34\xbe\x42\xac\x15\x8c\x34\x05\x37\x65\x51\x75\xf5\x8f\xe3\x51\x75\x74\x1c\x0c\x09\x2d\xc2\xe3\x93\xe2\xef\x32\x18\xfe\x45\x71\x74\x8c\x43\x93\x16\x26\x34\xa9\x0c\x45\x2a\xbb\x98\x92\xba\xa6\x1f\x43\xd7\x75\xf1\xb4\xca\xf2\x60\x48\x13\x36\xab\x82\x21\xcd\xf2\x68\x12\x57\x9b\x60\x48\xe1\x1e\x6f\x56\xc0\x05\x1c\xa5\xbc\xa3\xbd\xa6\xff\x0e\xef\x6a\xfa\xba\xfb\xf6\x29\x1c\xb5\xbd\xd5\xa5\x02\x75\x29\xe5\xf4\x35\x3c\xc9\xfe\x9e\x9e\x64\x87\x87\xa4\xb8\xc8\x70\x47\x32\x14\xd9\x78\x67\x40\xe3\x82\x48\x8c\x8d\x7e\xf0\x89\xff\x92\x2f\x38\x42\x3d\xc0\x79\x3c\x7a\x37\x8d\xaa\x48\xcd\x32\xdc\xd3\xc0\x6b\x37\x33\x8c\x8b\xe4\x59\x9e\xb3\xe2\xad\x8c\x24\xee\x51\x91\xc9\x95\x87\x53\x89\x47\xc5\xc1\x28\xfc\x36\x2a\x8a\xec\xa6\xeb\x65\xc9\xaa\x33\x54\xda\xc2\x0a\xe0\x3a\x7e\x53\xb7\x8c\x58\xf1\x46\x5c\x81\x86\xfc\x7b\x04\x14\x68\x32\x86\x8c\x56\x83\x15\x04\x17\x3d\xb3\x5a\xef\x8b\xb8\x52\x8d\xef\xbf\x34\xed\xf3\xed\xc8\xce\xba\xe5\x10\xa7\xd9\x2a\x27\xaa\x07\xd0\xf1\x34\x9b\xc6\xb3\x98\x15\x1e\xbd\x63\xa9\xd0\x93\x7a\x43\xb9\xc7\xfc\x6e\x38\xa4\x33\x3b\x60\xb4\xf0\x71\x82\xc3\x01\x62\xdc\xf5\x8c\xa2\x00\x4b\x30\x41\x0c\xcd\x4d\x5a\x13\xca\xea\xc6\xdc\xcc\x59\xf5\x41\xdd\x5c\xd4\x06\xbf\xee\x4c\x69\x35\x62\x3a\x85\x82\x2b\x6a\xf9\x46\xb6\x57\xbd\xb7\x52\xa9\x5a\x14\x70\x4d\xa4\xa9\x03\xa7\xd2\xa5\xec\x7c\x19\xac\x7d\xe0\xc3\x2a\x9b\x7e\x41\xef\x60\x18\x3b\xdf\xcb\x88\xe8\x38\x49\x0c\x3c\x1a\xce\x1e\x9a\x0b\xca\x12\xd5\x29\x9d\x56\x13\x0a\xcb\xe0\x23\x84\xfc\x31\xe5\x8e\x6b\xea\x98\xa8\x40\x51\x87\x95\x5a\xc3\xa6\xa5\x39\xbe\x82\x80\xa0\x5e\x27\xc0\x88\xe9\x0e\x2e\xd3\x07\x24\x95\x4f\xdf\x08\x3a\xac\x19\x0b\x7e\x25\xb7\x51\xa5\x2c\xab\x87\x94\x8f\x0e\xca\x05\x91\x8a\x4a\x12\x7c\xec\x6c\xd7\x99\x9a\xcf\x8e\xb6\xa1\xd6\xa8\x87\xf6\x72\x6f\xd5\x0d\x0b\x62\x57\x97\xf5\xb8\x37\x7a\x6c\xb5\x3e\xd2\xb5\x94\xc1\xbf\x1d\x5f\xf9\xb0\xaa\x3e\xcc\x5e\x65\xab\x74\x1a\x15\x31\x2b\x3f\x0a\xd6\xb4\x6f\x37\xe0\x13\x8b\x18\xc9\x25\xfb\x03\x53\x56\x56\x45\xb6\x39\x6b\x70\x2f\x5c\xbd\x9a\x3a\xf5\xb6\xdf\xf7\x9b\x49\x03\x59\x8d\x6f\x18\x8c\x7a\x05\x41\xaa\x5a\xec\xc4\xc5\x75\x9a\x5f\x75\x36\xcd\x57\x01\x9b\x45\x4d\x88\xaa\xa8\x74\x88\xcc\xc1\x2b\x51\x5e\xb4\x20\x96\xc0\x49\xda\xef\xbb\x9a\x0d\xe2\xe4\x7c\x10\xf9\x29\x65\xc2\x48\x22\xd9\x84\x4f\x1c\x1c\x70\xb2\x60\x7c\xd3\x26\xa2\x31\xdf\x37\x44\xad\x11\xb2\x8b\xfb\xe2\x66\x96\xfa\xb3\x7f\xbf\x47\x27\x0e\x78\xed\x8c\xf1\x8d\x5c\x39\x35\xd5\x82\xdd\x46\x3f\x09\x11\xd7\x31\x3a\x90\xb5\x99\x68\x95\xb0\x58\x99\xa8\x19\xa7\x88\x00\xd3\x6e\x41\x82\x3d\xb1\x2d\xae\x09\xd5\x58\x29\xca\x27\xb5\x45\x6c\x1d\x35\x8c\x1c\xd9\x07\x82\xa5\x59\xb7\x7e\x95\xba\x15\x0d\x9a\x15\x40\x51\x33\x2f\x90\x30\x1a\x46\x64\xf8\xd1\xc9\xb2\xa9\xad\x39\xa5\xe9\xbd\x81\xbf\xdf\xf8\x0e\xcf\x5b\x29\xf0\xe1\x4d\x07\xd9\xbb\xbd\x6b\x25\x91\xfc\xec\x3b\x62\x74\x13\x1f\x3c\x91\x54\x48\x42\xb3\x7d\xa0\x22\xe2\x1b\xbc\xb0\x59\xb7\x4f\x90\x28\xb5\xdf\x6b\x16\xea\x13\x9a\xd9\x2c\x49\xe7\x74\xb1\x2a\x9f\x50\x7b\x98\x02\xc7\xd0\x51\x60\x82\xa0\x70\x04\x56\xa3\xf5\x9e\xa3\xd1\x66\xc3\x7a\x7d\x2e\x8e\xc0\xa0\x96\x59\x06\x35\x9f\xf8\xaf\xa9\x87\x55\x19\x8f\x22\x49\xef\x8d\xb3\xaa\xca\x96\x5e\x43\xc0\xf7\xd0\x6e\x5e\xae\x04\xbd\xff\xb3\xa4\x7c\xef\xb8\x26\x27\xe7\x83\xc8\xd0\x44\x69\x4c\x55\xd7\x58\x6b\x6c\xd6\x47\xd3\xf0\xd4\x17\x4a\x61\xf3\x95\x67\x2e\x60\xcc\x1a\x7a\xdc\xfb\xfb\x8c\x45\x05\xfe\x14\x1f\xb1\xae\x9a\x5e\x53\x10\xb8\x1d\xdd\xe4\x04\x3f\xaa\x82\xa2\xa6\x22\xb8\x28\xc4\x49\xfd\x2d\x84\x2b\x77\xe8\xf7\xa0\x0c\xfd\x46\x4e\xd0\x50\x03\xe7\x7a\x25\x74\xef\x33\x11\x05\x06\x92\x7e\x41\x30\x61\x2e\x61\x42\x7c\xe8\x5d\x2c\x46\x13\x00\x26\x47\x16\x20\x3d\x4b\xae\xc4\xb3\x82\xcd\xe2\x5b\xfc\x0a\x88\xc7\x59\x13\x17\x7c\x40\x2a\x90\xa8\x11\xf9\x57\x83\x4f\x2a\xfc\x8a\x4a\xb7\xce\xe3\x6b\x4c\x20\x47\x61\xa1\x04\x06\x9a\xdb\x48\x2a\x6e\xa0\x46\x52\x2f\x09\x9d\x45\x49\x32\x8e\x26\xd7\x67\x56\x57\xba\x0b\x02\x56\xc9\xcb\x25\x71\x6e\xda\xaa\x95\xfc\xe0\xd5\xe0\x9a\x56\x51\x31\x67\x15\xff\x89\x1b\x6b\x36\x96\xa8\xb1\x63\xbd\x06\xd5\xec\x76\x7f\xfe\xd5\x20\x92\x27\xd4\xb2\x92\x4d\x21\xa3\x08\x26\x1c\x4d\x19\x1a\x36\x13\x7a\x26\xd7\x38\xf1\x99\x15\x1e\xa7\xa6\xff\x0a\xef\xda\x5f\xf6\x44\xd8\xdd\xb3\xa8\x80\xfd\x17\x5a\x82\x00\x86\xa2\x39\xea\x1d\x53\x13\x7b\x58\x8e\xf7\xd0\x31\x94\x1e\x1f\x25\x4f\x8c\x95\xb8\xec\x47\x8e\x92\x37\xce\xa6\x1b\x0f\x0d\xc9\x5d\x6d\x3a\x86\xb8\x66\xbd\x23\xa2\xce\x54\xe2\x24\x67\x8d\x90\x2b\xa4\xa6\x9f\x9e\xea\xc5\xb1\x88\xd2\x69\xc2\x74\x47\x5e\x2f\xa2\x74\xce\xc2\xd4\x9d\x6e\x1d\x06\x99\xa0\x33\x23\xac\x3a\x07\x4a\x00\x85\xab\xf1\xdc\x55\x68\xde\x28\x34\xdf\xb3\x50\xe7\x21\x16\x94\x4d\x8d\x70\x68\x7e\x76\xb6\x5d\xb8\xb1\xc8\x59\x56\x11\x6c\x6b\x73\xc4\x25\x79\xb4\xcf\x8a\x8a\x39\xd4\xef\xf7\x54\xbd\x23\xf5\x21\xf5\x4e\xfa\xa9\x3c\x76\xb3\x25\x77\x5a\x57\x52\xb1\x92\x9b\x00\xf5\x28\xe4\x2e\x1f\xcf\xb2\xfb\xcd\xc5\xf0\x72\xe7\x4b\x71\x28\x7f\x8f\x2c\x62\x43\x60\xd3\x42\xeb\xcc\x4f\x65\xde\xc1\x71\x9e\xb9\x3b\xbb\x7d\x71\x88\x29\x24\x8b\xbc\x56\xeb\xab\xa3\x94\x9c\xba\x57\x83\x19\xb1\xb6\x21\xaa\x18\xa9\x69\xf7\xb1\x24\xd5\x47\xd1\x40\xf7\x02\x71\x20\x67\xae\x4d\x99\xbd\xe5\x55\x5b\x34\x0d\x15\x18\xc6\x83\x72\x01\x5a\x80\x69\xb8\x39\xd9\xe6\x88\x29\x7f\xad\x62\xe0\x99\x5a\x35\xc3\xaa\xd1\x0e\x4d\x5d\x82\x7c\xbf\xf7\x93\xc6\x90\x53\x1c\x82\x25\x33\x11\xb4\x22\xc0\x96\xe3\x9c\x4e\xe0\xc6\x68\x98\x1b\xaa\xc2\x57\x13\x30\xf1\xb4\x18\x24\x9c\x49\x6d\xc8\x4b\x11\x71\xc1\x12\x94\x60\x0c\xd2\xdc\x17\x4e\x0b\x34\x84\x32\x0a\xeb\xea\x33\x33\xa1\x94\x19\x08\x82\x40\xf0\xae\x16\xd7\xa7\x6b\x5e\x42\x0d\x1b\x15\xe1\xbd\x08\xdd\xd8\x71\xbf\x50\x28\x2d\x05\x93\x77\x44\x95\x56\x01\xbb\x04\xe7\xf7\xc4\x38\x78\x54\xd9\x62\xa8\xd7\x1a\x04\x11\xe5\x01\x0f\x81\x27\x21\x36\x1c\x34\x4c\x77\xdf\x53\xe8\x1c\x7e\xab\xa2\x86\x29\xa8\x9d\x7a\xba\xdf\x70\xf6\xa1\xd1\x69\x71\x53\x36\xf4\xd8\x84\x0e\x43\xe1\xc4\x2e\x51\xe4\xaf\x57\x83\x39\xf1\x4b\x9f\xf8\xa2\x4d\x70\x21\x6d\x45\xe8\x67\xa7\xba\xb1\xdd\xbe\x44\x90\xd4\x55\xf8\x79\x50\xe6\x49\x5c\xf9\xde\x91\x47\x2e\x86\x97\xf4\x43\xab\xd6\x31\x5d\x8d\x56\x60\x53\xbc\x0a\xae\xac\xc0\x8d\x7a\x84\x09\x3d\x0f\x2d\x99\x27\x25\xae\xfa\x3b\xa9\x85\x84\xd5\x28\x51\x44\xc7\x6c\x11\xad\xe3\xac\x08\x92\x9a\xca\x53\xda\x1f\xd6\xac\x98\x25\xd9\x4d\xe0\x90\xfc\x73\x85\x2a\x05\x0e\xc0\xef\x5b\x00\xfc\xa0\x61\xce\x55\x5f\xd7\xf4\x94\xd0\xdb\xf0\x1e\xb1\x4c\x37\x38\x12\xda\x7a\xb4\x71\x47\x42\xe3\x2f\x1c\x91\xd0\xe2\x96\xbd\xe4\xac\x1d\x09\xed\x96\xbe\x84\xa0\xe2\x59\x2b\xe8\xb7\xa4\x6e\xb8\xd7\xa1\x26\xb4\x5d\xdb\x35\x6d\xef\xb3\x1b\x4c\x16\xed\x56\xce\xd1\xe6\xe8\x73\xed\xf6\x07\x2b\xd8\x0c\xee\x74\x13\xd1\xb9\x33\xbc\xd0\x81\x57\x18\x45\xaa\xbb\x8f\xc2\x7b\x5c\xe8\x59\x52\xaf\x2a\x90\x75\xec\x03\xf5\x6e\x8f\x74\xad\x5e\x90\xd5\x34\xa5\xbd\x45\xbf\xef\xa8\x49\x9e\x05\xe7\x55\x45\xd0\x36\x1c\xd4\x4d\x54\x2d\xf1\x39\xe1\x81\xb6\x5b\x8d\x55\xbc\xd5\x08\x29\xbf\x43\xb8\x88\xf1\x23\x8a\x1d\xc3\x72\x91\x42\x5f\x79\xa7\xd8\x31\x4d\xf5\x22\x1e\xc9\x73\xab\x98\x4f\xfb\x24\x18\xeb\xbe\x9d\x65\x45\x15\x25\xfe\xee\x61\x93\x6a\xe8\x2f\x6c\x56\x53\x67\x85\xb2\x65\x4d\xf1\xe9\xcb\xc0\x74\xd2\x03\xd4\x3a\xbf\xfd\x09\x99\xe1\x7e\xa1\x9f\x6c\x33\xdc\xbf\x60\xd3\xf2\x36\xfc\x44\x7f\x0d\xef\xf2\xb6\x56\xe1\xbf\x1a\x8c\x49\x87\x8a\x60\xab\x11\x0d\xc5\xc7\x38\x2d\xe9\x14\x87\xd6\xf4\x70\x85\x62\xe2\xd2\xc7\x00\xef\x70\x6a\x6a\xdd\x3a\xdc\x0e\x45\xd1\xa9\xa8\xc9\x00\x9f\x5a\x8f\xe1\x5a\x06\x00\xa0\xba\x33\x3b\x54\xc9\x29\x4b\xa2\x8d\xb3\x6f\xd2\x31\x66\x21\x47\x45\xfa\xcc\xe8\x8a\xc5\x73\x4d\x6c\x35\xd0\xa9\x9c\x3d\x4c\x93\xd4\x8e\x8f\x8e\xfc\xd0\xbf\x46\x41\x75\xfe\x90\x56\x45\x3c\x9f\xb3\x02\xf7\xce\x56\xe9\x2c\x5d\xb3\xa6\x3f\x85\xa2\x77\x43\xd1\xa9\x61\x4d\x7f\x08\xd1\x5d\x30\x96\x9a\xa6\xc7\xb4\x77\x2c\x87\xec\x27\x35\xee\x96\x9a\xa5\xda\xe0\x4d\x92\x78\x72\xad\x03\x99\x22\xaf\xde\x7f\xda\x8e\xe7\xfd\xbe\xcf\xc4\x05\x80\x95\x5a\xb2\x25\xc4\x13\xe6\xd4\xff\xfb\x53\xf5\xaf\x2b\xb1\x3e\x00\x92\xa6\xe9\x20\x9a\x4e\x05\xa7\x11\x36\xca\xb0\x95\xd2\xa5\xc6\x08\x81\xf5\xbd\xbc\x7d\x5c\x05\x4b\x71\xa4\x76\x55\x20\xae\xf6\x6e\x7c\xbc\x9d\xd8\x55\x5c\x0c\x75\xa8\x7e\x74\x6a\x5b\x8b\xec\xe6\xb7\xb8\x5a\x7c\xcf\x67\x28\x6c\x3c\x77\xf6\x2d\x9e\x32\x5c\xc8\x7a\xee\x56\x01\x4f\xb3\x55\xc9\xf8\x66\xe0\x3c\xcb\x92\x2a\xce\x5f\x0b\xbf\xfb\x70\xc7\xbb\x7b\x2a\xfb\x99\x45\x6b\xd6\x55\x9b\xe3\xe5\xae\x51\x90\x9d\xdf\xd5\x67\xd9\xd5\xee\x46\xbd\x29\x27\xef\xd8\xe6\xfb\xec\x26\x0d\xed\xc7\x3f\x81\xfa\x3c\xb8\x8a\x4b\xb8\x0b\x93\x4d\xc3\xde\xb1\x43\x9d\xde\x57\xe5\x75\x5f\xa8\x89\x6b\x1f\x52\x84\xf6\x0b\x62\xdd\x0f\xf8\x6e\xd5\x74\xac\x24\x67\x93\xec\x95\x96\x35\x49\x58\x54\x7c\x5c\x64\x37\xe7\x62\xe7\x66\xa5\xff\x14\x4f\x99\x4e\xaf\xff\x93\x70\xc1\x4e\xfa\x76\xeb\x8b\x92\xef\xe9\xc0\x71\xf2\x24\x34\xf9\xc7\xd1\x31\xff\xa0\xc9\xa8\x18\xa9\x32\x73\x5c\x2d\x4c\xb7\xd4\x9d\xa0\xad\xde\xb6\x37\x3d\x76\xa5\x2a\x4d\xec\x34\x81\x45\xf8\x84\xd4\xbb\x97\x56\x47\xc0\x90\xc7\xf7\xa4\x34\x13\x87\x7b\x62\xcf\x27\x1b\xe4\xac\x28\xe3\x52\xf7\x0a\x0f\x40\xc8\xb7\x82\x32\xab\x50\x14\xf4\x02\x05\xc6\xce\xcc\x26\x0b\xb8\x93\x0f\xea\x9c\x47\x54\x5f\xd1\x8a\xc5\xbd\xf3\xde\xc0\xc5\xf5\x70\x8d\xc7\xe0\x9a\x6d\x64\xeb\x78\x59\x19\x43\xca\x01\x56\x88\xfd\xb7\xc3\x74\x73\xc2\x65\x56\xd7\xed\xc8\x8c\x04\xea\x7a\xf6\x10\x5f\xad\xee\x57\x83\xc9\xaa\x28\x00\xf7\x50\x5b\xc5\xab\x3c\xcb\xf9\xd8\x6a\xa8\x46\x70\xe0\x9d\x8d\x00\xd9\xab\x5c\xa1\xdb\x1f\x1a\xc5\xe5\xfb\xe8\xbd\x5f\x5d\xb0\x4b\x32\xfa\xe9\x82\x5d\x06\x15\xfc\x57\x2b\xb6\xd8\x15\x25\x06\x08\x68\xbb\xf5\x77\x2e\x43\x49\x59\x32\xda\xbf\x2d\x6c\xda\x38\xcf\xfe\x84\x8d\x29\xa7\x45\x02\x86\x8d\x77\x90\x00\xdc\x1c\x27\x9a\x04\x6c\x7d\x67\x17\x15\xb1\x76\x35\xc5\xee\xa2\x2d\x1a\xdb\x5d\xdc\x8b\xe2\xbf\x1c\x95\x03\xd3\x6d\x7c\x00\xf3\x23\x78\x67\xd5\x8c\x5b\xe8\x1a\x6c\x15\x9b\x2a\x6d\x0d\xc8\x3d\xf5\xa2\xee\xb8\x7a\x68\xea\x75\xed\x9c\x76\x52\xb8\xe2\x3f\x12\xf0\x38\xf0\xc8\x49\x65\x98\x51\xc2\xe6\xd1\x64\x23\xb9\x91\xef\xa0\xe0\x7f\x1a\xd0\x4c\x34\x4b\x29\x8e\xa3\x07\xf3\x5b\x9b\x6e\x7a\xad\x9a\xe5\xf2\x25\x23\x3d\x89\x9a\x56\x38\x1f\x70\x34\x4e\x13\x34\xce\x48\x02\xd4\x3f\xb1\x6d\x16\xdd\xeb\xea\xca\x23\x44\x07\x6e\xc6\xae\xe6\xb6\xda\x56\x3b\x76\xcd\x88\x32\xec\x2b\xea\xe5\xd4\xb5\xa1\x4f\xd7\xa4\x1e\x1d\x03\x3b\xd6\x3d\x5f\x46\xe9\x2a\x4a\x3c\xde\x3b\x9f\xb9\x06\x64\xbb\x65\x4e\x3a\x20\xfd\xfe\x54\x92\x17\x6f\xaa\x65\xdd\x57\xe5\x29\x82\x9d\x2c\x5a\xa4\xbd\x21\xb1\x46\x97\xeb\x23\x6e\xd9\xe7\xe3\x6c\x8e\x2f\x2d\xb9\xa0\x15\xf1\x4f\xda\x63\xd9\xfa\x4e\x67\x05\xab\x4a\xb5\x16\xcf\x10\x2f\xcf\x85\xa7\x6e\x19\xd8\x04\xf6\x6c\x19\xe4\x8d\x53\xd4\xae\x7d\x9a\x03\xa5\xec\xe6\x88\x56\xdc\x53\xee\x9a\x6d\xa6\xd9\x8d\xfa\x1a\x16\xca\x50\x9c\xd4\xb5\x5b\x1f\x6a\xed\x1c\xf5\x84\x58\x1f\x14\x25\x9f\x36\xf6\x3b\xea\xe8\x1e\xfe\x3d\xaa\xd8\xdd\xf5\x3d\x2a\xd8\x67\xa6\xba\x0b\xba\x26\x4b\x2f\x0d\x67\xb1\x3d\x56\x07\x9f\x2d\xbc\xf7\x6f\x9b\x38\x76\x23\x76\x27\x4c\xb9\xd4\x34\x26\xb4\x5b\x0d\x50\x5a\x3b\x13\x8f\x0d\xfe\x23\x77\xb6\x52\x25\xee\x32\x15\xd9\xa1\x20\xb7\xdb\x5e\x43\x1b\x19\x31\xd7\x85\x47\x98\x69\xeb\xad\xc0\x4e\x73\xd1\x3d\x86\xa1\x06\xb3\xec\xb5\x36\xf2\x44\x69\x65\xab\x24\x39\x71\x28\x5a\x27\x0f\x3e\x44\x6f\x43\x6e\x32\xac\x1e\x48\x91\xd2\x58\x99\x26\x96\x25\x28\x71\x5a\x74\x2c\xa3\x12\x98\x93\x9a\x26\xa6\x59\xdb\xc4\x34\x75\x18\x95\xc4\x45\xef\xca\x96\x34\x0e\x91\x35\x09\x0c\x4e\xf2\xec\xcc\xa9\xba\x14\x66\xae\x4c\x60\x6b\x43\x5b\xdd\xb1\x00\x7e\x25\xc4\xdc\x1c\x03\xf6\x90\x29\x4d\xd1\xad\x2d\x90\x94\xa1\x33\x13\x6d\xa0\xf7\x2d\x3e\x22\x51\x29\x50\x35\x52\xc8\x69\x89\xb0\xb0\x89\x03\x19\x45\x00\x63\xb0\x6a\x83\x8d\x4d\xa8\x73\xd6\x42\x38\x37\x08\xb1\x5d\x20\x0c\x71\xac\xa0\xc3\x25\x42\x3e\x53\xe3\xe1\x60\x5b\x25\x00\x6b\x3b\x15\x28\xdf\xbc\x76\x18\x27\x04\x9e\xdd\x30\x76\xac\x5b\x00\xb7\x75\xfd\x8b\x88\x31\x57\x09\xd5\x51\x85\xab\x55\x31\x60\x4b\x8a\xf4\x64\xd5\x9a\x0e\xc5\x99\x62\x55\xd4\xca\xeb\x50\x4e\x69\x96\x4a\xc6\x19\xb4\x58\x29\x8a\xa7\x60\xa1\xe9\xbf\x23\x34\xfd\x57\xfa\xbb\x8d\xa6\xff\x00\xeb\xe8\xc7\xf0\x77\xfa\xce\xb1\xfd\x04\xb3\x9c\xe9\xa3\xd0\x28\x68\x6a\xa5\x1f\xc1\xba\xf2\x68\x73\x81\xed\x20\xab\x1f\x9b\x63\xcd\xe8\x5d\x73\xea\xab\x26\x44\x9e\xc2\x09\x9d\x77\x56\x67\xde\x35\x4e\xe8\x20\x97\x9a\x2a\xcb\x3d\x84\xce\x0e\x5b\xe4\xe7\x8d\xcb\x23\xdd\x35\x1b\x9e\x3d\x80\xed\xcd\x81\xd8\x4a\xd4\x27\xd5\x20\x0a\xdf\xd5\x97\x97\xe4\xe4\x7f\xbe\xf9\xe6\x7f\x0f\xca\x6c\x55\x4c\xd8\x69\x94\xe7\x71\x3a\xff\xf5\x97\x9f\xc3\x67\x83\x17\xcf\x66\xdf\xfe\x35\x9a\x3d\x1f\x4c\x16\xab\xf4\x7a\xf0\xa9\x1c\x2c\xa3\xfc\xff\x03\x00\x00\xff\xff\xfa\xca\xff\xb4\x72\x79\x0f\x00") -func pkgUiStaticReactStaticJs2776f6080ChunkJsBytes() ([]byte, error) { +func pkgUiStaticReactStaticJs242f57af3ChunkJsBytes() ([]byte, error) { return bindataRead( - _pkgUiStaticReactStaticJs2776f6080ChunkJs, - "pkg/ui/static/react/static/js/2.776f6080.chunk.js", + _pkgUiStaticReactStaticJs242f57af3ChunkJs, + "pkg/ui/static/react/static/js/2.42f57af3.chunk.js", ) } -func pkgUiStaticReactStaticJs2776f6080ChunkJs() (*asset, error) { - bytes, err := pkgUiStaticReactStaticJs2776f6080ChunkJsBytes() +func pkgUiStaticReactStaticJs242f57af3ChunkJs() (*asset, error) { + bytes, err := pkgUiStaticReactStaticJs242f57af3ChunkJsBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/static/js/2.776f6080.chunk.js", size: 1014130, mode: os.FileMode(420), modTime: time.Unix(1581497509, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/static/js/2.42f57af3.chunk.js", size: 1014130, mode: os.FileMode(420), modTime: time.Unix(1586531010, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiStaticReactStaticJsMainD3f562f0ChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x7d\x0b\x97\xe3\x26\xd2\xe8\x5f\xb1\xf5\x6d\x1c\x18\x63\xb5\xe4\xee\x9e\x87\xdc\xb4\xcf\xec\x64\x92\xcc\x6e\x26\x93\x4d\xcf\x3e\xb2\x5e\x9f\x1c\x5a\xc2\xb6\xd2\xb2\xa4\x95\x70\xb7\x9d\xb6\xfe\xfb\x3d\x14\x20\x21\x59\x3d\x93\x7d\xdc\x7b\xee\xf9\x36\x3b\x6d\x04\x45\x01\x05\x14\x45\x51\x14\x48\x6c\xe2\xd2\x7d\xe0\xb7\x39\x0b\xef\xfe\x50\x66\x69\xbe\x2e\x58\xbe\xa1\xfd\xd1\xc7\xe3\x62\x89\xdd\x7c\x57\x6e\xd0\x62\xe1\x2d\xc9\xa3\xef\x79\xc1\x6a\x97\x86\x22\xce\x52\xc4\x89\x20\x0c\x3f\x72\x97\xef\xf3\xac\x10\x25\x65\x68\xea\x3d\xc7\x15\xf1\xfd\x97\x27\x50\x15\xf1\x2f\x5e\xb4\x62\x21\xee\xf9\x65\x4f\xdc\xf3\x9e\xb8\x9e\xbc\x2f\xa7\xa7\x71\xaf\xce\x3b\x71\xc3\xe6\x53\x56\x35\xcc\x92\xac\xa0\x8f\x15\xd1\x41\x77\xcb\xee\x38\xad\x61\x04\x61\x24\x25\x05\x7e\xbc\x67\xc5\x20\xa3\x8f\xd5\xac\xe0\x62\x57\xa4\x83\xcc\x2d\xa8\x38\x1e\x3d\x92\xb9\x6b\xca\x54\xe0\x96\xa6\x2a\xc0\x68\xba\x4b\x92\x21\x2d\xe6\x45\xe0\xcb\xef\x28\xa2\xed\x5a\xac\xb2\x02\x49\x94\x8c\x7a\x33\x76\xc5\xdd\x84\xa7\x6b\xb1\x99\x8d\xc7\x0c\x67\x0b\xee\x86\x1b\x56\xbc\x16\x88\xe1\xe5\x98\x8a\xa6\xc8\x34\x2b\xb6\x2c\x89\x7f\xe5\x08\x57\x24\x73\xcb\x90\x25\xfc\xdf\x45\xfc\xec\x13\x88\x45\x76\x23\x8a\x38\x5d\x37\xb8\xf1\x63\x0d\xcb\xae\xa9\x3f\x77\x8a\xf5\x2d\x72\xc6\x8b\xcc\x2d\x24\x05\x64\xe3\x97\xee\x2f\x59\x9c\x22\x87\x38\x78\xec\x60\x27\x90\x20\xac\x03\x23\x69\xd1\x81\x93\xe5\xd5\xc5\xdb\x05\x9a\xe0\x80\x9b\x21\xa3\xab\x20\xae\xf8\x9c\x07\xe2\x9a\xcd\x59\x20\x2a\xab\x3f\x38\xf2\x48\xce\x8a\x92\xbf\x4b\x05\xca\xdc\x02\x93\xe9\xe5\x25\x86\x1e\xea\x24\xad\xeb\xa4\xdb\x6e\xd2\x6d\x9d\xc4\x20\x29\x73\x19\xf1\x31\xc9\x64\x3d\xc3\x24\x4b\x79\x0f\x51\xec\xb1\x83\x54\x73\x6f\x75\x93\x19\x6e\x35\x50\xd2\xd7\x40\xf3\xbd\x28\x58\x28\x5a\x83\x4d\x0d\xb4\x74\x16\x65\x8f\xf1\x0a\x39\xce\x90\xa2\x94\x0a\x37\x2c\x4b\xc4\xb0\x2b\xb2\xef\xb2\x07\x5e\xbc\x61\x25\x47\x18\x8f\x46\x8e\x28\x58\x5a\xe6\xac\xe0\xa9\x70\x86\x34\xc5\xb7\x05\x67\x77\x33\x41\x85\xab\x22\x11\xae\x1e\x36\x71\xc2\x91\xd0\x03\x61\x34\x1a\x72\x37\xcd\x22\xfe\x3d\xdb\xca\xd8\x35\x17\xc8\xc3\xc4\xb9\xcd\xa2\x83\x83\xb1\x1e\x11\xaa\xeb\x3c\x32\xd0\xff\xc7\x0e\xa5\xe9\x68\x84\x52\xda\x2a\x11\xd7\x4d\x01\xfa\xa1\xd4\x6a\x1c\xc4\x34\x4d\x33\x0d\x23\x05\xb5\x89\x35\x8b\x57\x28\xa5\x67\xc5\xfa\xf6\x1f\xe8\x1f\xe5\x33\xb4\xf0\x26\xaf\x96\x8f\x3e\x39\xaf\xf0\x3f\xca\x67\xe4\x37\x45\xfd\x03\x9f\xb9\x7c\xcf\x43\xc4\x30\xd6\xfd\x51\xa0\xba\x43\xd3\x85\xbf\x24\xbe\x87\x89\x15\x33\x3d\x89\x39\x87\x18\xdc\x54\x87\xfd\xfb\xf5\x69\xa2\xc6\x68\x1e\xfc\xc3\x55\x41\x3c\xff\xef\xd6\x55\xc5\x7c\x9d\x64\x4c\xc6\x5d\x2c\xed\xca\x5b\x75\xef\x56\xe1\x8b\x4f\x56\xf0\xf3\xa9\xbd\x0d\x98\xba\x97\x97\xcf\x5a\xf5\xf1\x97\x98\x9c\xc6\x4e\x7b\x63\xcf\x97\x4f\x11\xfe\xbf\x5d\xf9\x7f\xb9\x67\xfe\xe3\x86\x3d\xd9\x4b\xff\x83\x16\x6c\xb2\x7a\x3d\xf9\x1a\x86\xce\xb4\xc2\x9f\xfb\xfe\xfc\xb8\x79\x7e\x32\x6e\x9e\x9f\x8c\x9b\xe7\xfd\x15\xc0\x4f\x7f\x7c\xae\xdc\x71\x7f\xe1\xe3\xfe\x1a\x8c\x9b\x6a\xa8\x05\x95\xbb\xa2\x88\xb7\x27\xbc\xcd\xf0\x21\x9b\xdb\x50\x9a\xcd\x0b\x34\xbd\xbc\x24\xe6\x9f\x87\x83\x02\x49\xfe\xb8\xc8\x96\xc7\xe3\xc2\x23\x1e\xf1\x96\x58\xca\x25\x50\x29\xe8\x97\x0a\x0a\x12\xf4\x91\xfd\x73\xc7\x82\x85\x67\x32\x2f\x09\xfb\x75\x57\xf0\x60\x31\xbd\xb0\xe2\x6e\x79\xbc\x86\xb8\x4b\x02\xff\xa6\xde\x92\xdc\x26\x2c\xbc\x0b\x34\x76\x72\x9b\xec\xb8\xfa\x50\x19\x8a\xec\x21\x0d\x16\xfe\xf3\x4b\x72\x31\x25\x17\xd3\x25\x09\x0f\x2c\x6d\x95\x13\xb1\xe2\xae\xc9\xe5\x9f\xbf\x52\x51\x06\xce\x3f\x7f\xd5\x44\xae\x0b\x7e\x90\xd8\x5e\x11\xfd\xaf\x8e\xe6\x0a\xd8\x83\x4a\xc8\xb8\xbb\x0d\xbb\x8b\x83\x85\xff\xf2\x15\xf1\x5f\x9e\x13\xdf\x7b\xa1\xe2\xb7\x6c\xcd\x53\xc1\x82\x85\x44\x6c\x95\x97\x25\xf1\x3d\xd7\x88\x5e\x5e\x4a\x78\x72\xa1\xb3\x64\x05\x4b\xa1\xd9\x97\x97\xc4\xbf\xa8\x4b\xc8\x8a\x70\x13\x47\xc1\xc2\xbf\x3c\x27\x97\x1e\x99\x7a\x17\x2a\xbe\xe0\x91\xc1\xae\x21\x4b\x96\x6c\xb3\x34\x58\x4c\xcf\xcf\x89\x7f\xe9\x11\x7f\x3a\x55\x09\xf7\x71\x96\x70\x11\x2c\xfc\x8b\x97\x92\x62\xbe\xbf\x24\xab\x5d\xb8\x29\x63\xa6\x4a\xd3\x54\x5c\x67\x49\xa4\x22\xa6\xfe\xa5\x44\xda\x34\x78\xfa\x52\x7e\xc7\x69\x14\xaf\xb3\x60\xf1\xe2\x12\x9a\xe4\x2d\x89\x6e\x3e\xf4\xde\xb9\x27\xab\xbd\x24\x49\xbc\xde\x08\x45\x6a\xff\xc5\x39\x99\xfa\xcf\x65\x9a\x8e\x57\xf4\x9e\x4e\x2f\x9a\x9e\x81\x78\x5d\x94\x7f\x71\x41\xa6\xe7\x2f\x89\x7f\x71\xd1\x24\x1c\x82\xc5\xd4\xf7\x89\xfe\xa7\xe3\xf3\x38\xbd\xd3\xb4\x7a\x39\x95\x02\xa6\x8e\x3f\xf0\x24\xc9\x1e\x74\x33\xe4\xbf\x29\x60\xda\x72\x33\x1a\xbc\x25\xa9\x3b\xc7\x6a\xfc\x96\x15\x99\x24\x1e\x34\x55\x02\xa5\xec\xfe\xa0\x07\xcb\xf4\xe5\x92\x40\xc7\xa9\x64\x4d\x8d\x56\x7f\x3d\x07\xc4\x56\xa5\x5e\x4d\xc9\xd4\x3b\x5f\x92\x7c\x57\xe4\x09\x37\x78\x01\x55\xdd\x1d\x4d\x14\x74\xa6\xaa\x8d\xb7\x24\x65\x9c\xdc\xf3\x22\x58\x48\x24\xfa\xdf\x92\x3c\x6c\x62\xc1\xad\x76\xc9\x4a\x77\x1b\xeb\x2d\xab\x0a\x3d\xc4\x69\x94\x3d\xb8\xbf\xfc\x69\xc7\x8b\x03\x26\xb6\xa0\xad\x26\xe1\x87\xdb\x5f\x78\x28\xdc\xbc\xc8\x44\x26\x0e\x39\x77\x37\xac\xfc\xf0\x90\xfe\x50\x64\x39\x2f\xc4\x61\x56\x8b\x7c\xcc\x92\x85\x28\x73\xc3\x4d\x9c\x44\x05\x4f\x91\xe3\x3a\x63\x21\x67\x38\x70\xb1\x5d\x92\x28\xb9\x04\xa5\x34\xca\xc2\xdd\x96\xa7\xc2\x0d\x0b\xce\x04\x7f\x9b\x70\xf9\x85\x9c\x90\xa5\xf7\xac\x74\x30\x76\xc3\x84\x95\xa5\x14\x7b\xa8\x20\x52\x56\x01\xa1\xea\x31\x8a\x0b\x0e\x65\x06\x4e\x22\x0a\x87\xe4\x59\x19\xab\x4f\x76\x5b\x66\xc9\x4e\x70\x87\x24\x7c\x25\x02\x8f\x88\x2c\x0f\xbc\x0a\xbb\x2c\xcf\x79\x1a\x7d\xcc\x10\xc3\x64\x98\x4a\x11\xea\x4d\x96\x0a\xbe\x17\x18\x4b\xa1\x6d\xa8\xc9\xf0\xcd\xcf\xf7\xdb\xe4\x0d\x14\xff\x9e\xa5\x6c\xcd\x0b\x2c\x36\x45\xf6\x30\x48\xf9\xc3\xe0\x6d\x51\x64\x05\x72\x54\xf2\x20\x2e\x07\x69\x26\x06\xec\x9e\xc5\x09\xbb\x4d\xb8\x3b\x78\xb7\x1a\x1c\xb2\xdd\x97\x05\x1f\xec\xca\x38\x5d\x0f\xde\xbd\x1d\x3c\xc4\x62\x33\x60\x83\x15\x4b\x92\xc9\x2d\x0b\xef\x06\xe5\x2e\xdc\x0c\x58\x39\x78\xbb\x57\x8d\x24\x03\xb1\xe1\xa9\xfc\x53\xf0\x2f\xcb\x01\x8f\x65\x68\xc0\x06\xdb\xb8\x14\xec\x8e\x0f\xe2\x54\xe2\x2c\x06\x61\x96\x46\xd0\x46\x96\x0c\xe2\x34\x4c\x76\x11\x27\x83\xac\x90\x19\x07\x39\x5b\xf3\xc1\x86\xc9\xfa\x0c\xbe\xfa\xf0\xe6\xe3\x4f\x3f\xbc\x1d\xb0\x34\x92\x35\x2c\x78\x1a\x71\xb9\x2b\x90\x88\xfe\xb4\x8b\x8b\xbb\x72\xf0\x3e\x8b\xb8\xeb\xe0\x59\x4a\x9f\x6c\xb4\x1b\xa7\xb1\x30\xdd\x91\xe2\x0a\x36\x96\x5c\x7d\xd3\x14\xb8\x73\xa1\x76\x9b\xa1\xa2\x22\xb5\x49\x8a\x9c\x69\xe4\x60\x92\x19\xfc\x11\xbf\x8f\x43\xfe\x43\xbc\xe7\xc9\x8f\x4c\xc4\xd9\xf1\xe8\x93\x98\x16\x72\xa7\x7a\x17\x8b\xdf\xb3\xf0\x2e\x4e\xd7\x37\x22\x2b\x5a\x30\x85\xbb\xcd\x7e\xfd\x44\x62\xf9\x74\x5a\xf6\x74\xd2\xed\x13\x29\xfe\x0c\x9a\x93\xd7\x51\x34\x3b\x8b\x09\xc4\x15\xbc\x94\x9b\x00\xe6\x3e\xc4\x91\xd8\x20\x4c\x98\xbb\xe1\x92\x79\x20\x8c\x15\x84\x6c\xb4\x6c\x3b\x8b\x53\x5e\xc0\x36\xb2\x89\x97\xdb\x54\xf8\xf8\x19\xa0\x58\xb8\xe1\xed\xa8\x9b\xf8\x57\xae\xa2\x35\xb9\x56\x49\x26\x3e\xfe\xa6\x84\xe3\xf1\xb1\xaa\xea\xf9\x27\xf7\x22\x29\x29\x48\xa6\xe6\x60\x4c\x17\x4b\x92\xd0\x47\x10\xdc\xcb\x60\xe1\xfc\x0f\x8f\xc2\xe9\x85\xe7\x10\xe7\x7f\xd8\x2a\x7a\xb9\x7a\x29\x43\xe1\xed\xc5\xed\xc5\xad\x0c\x5d\x44\xec\xc5\x45\x24\x43\xaf\x2e\x2e\x3c\x1e\x39\x4b\x92\xf0\x35\x4f\xa3\xe0\xb1\xdc\x64\x0f\xc1\xd0\x23\x69\xf6\x26\x4b\x76\xdb\xb4\x0c\x7c\x92\xb0\x5b\x9e\x7c\x2d\xb7\x48\x42\xf0\x22\x80\x46\x43\xdc\xef\xb3\xfd\xef\xb3\x22\xe2\xc5\x1b\x59\x70\xe0\xfc\x4f\x18\x86\x0e\x09\x0d\x79\x14\x64\x33\x63\x53\xee\x48\x6e\xba\x8e\xd3\xe0\x92\xc8\xde\x59\x17\xd9\x2e\x8d\x54\x66\x80\x6d\x22\x3f\xe4\x2c\x8c\xc5\x21\x70\x5f\x5e\x92\x32\x2b\x04\x8f\x00\xa2\x22\x7b\xb6\x8f\x4b\x5d\xcf\x0e\xfe\xdb\x4c\x88\x6c\xeb\x90\x6d\x16\x71\x95\xb6\xca\x52\xa1\x42\x61\x53\x88\x88\xc3\x3b\xab\x4c\x90\x61\x56\x59\xb1\x55\x9f\x71\x7a\xcf\x8b\x92\x7f\x6c\xc7\x6e\xe3\x54\x07\xd8\x5e\x05\xd8\x4e\x64\xb0\xc1\x7f\xaf\x5a\x54\xa3\x2e\x9b\x60\x1f\xcd\xfe\x2a\x47\x96\xf5\xfd\x2d\x8c\x2f\x15\x51\xf0\x92\x17\xf7\xfc\x26\x67\x21\x6f\xb0\x7c\x07\x3b\x43\x5d\x6a\x12\xaf\xd3\x8f\xb2\x94\xbf\xc6\x62\xf3\x5a\x92\xa2\x86\xfb\x8a\x87\xf1\x96\x25\x56\x8c\x1c\x3d\x75\xfd\x3f\xda\x11\x15\x39\x28\x3a\x76\x9b\xe1\x7a\x53\x8b\xa2\x92\xb3\x3a\x40\x73\x5e\x06\x8b\xa5\xcc\xa4\x02\x25\x2f\x62\x5e\x06\x8f\x79\x16\xa7\xc2\x74\xc7\xd0\x27\x05\x8b\xe2\x5d\x19\x9c\x93\x24\x4e\xb9\x6a\xea\x94\xac\xe2\x24\x91\x63\x4a\xfe\x9a\x91\xb2\x82\xff\x39\xa4\x3c\x6c\x6f\xb3\x24\x70\xc2\xb8\x08\x13\xee\x54\x90\xb1\x0c\x1e\x4f\xf3\xfb\x56\x7e\x68\x53\x29\x78\x5e\x06\x43\xbf\x22\xb7\xac\xb0\xea\x60\x67\xbd\x65\x85\x0a\xfa\x3d\xb5\x68\x28\xaa\x5b\x4a\x36\x59\x11\xff\x2a\x87\x2f\x94\xf7\x2b\x2f\xb2\x60\xe8\x55\xa4\xdc\xb0\x28\x7b\x00\xe2\x9d\x93\x4d\xbc\xde\x80\x40\xd1\x20\xa9\xc8\xba\x88\xad\xc9\xc3\x6e\xb3\x7b\xfe\x15\x13\x4c\x62\x09\x75\x8b\x2f\x2f\xe4\x7f\xce\x13\x03\xdf\x9a\x46\x7d\x83\x54\x4f\x1b\x4f\x8d\x99\xf7\x66\x12\xf1\x7b\x9e\x8a\x1b\xb5\x40\xea\x81\xe4\x11\xd9\xb1\x1a\xe2\xa5\x46\x6c\xc8\xb1\x8d\x53\x35\x61\xed\x41\xbb\x65\x85\xe4\x93\x65\xfb\xab\xee\xa8\x0b\xf9\x9f\x53\xc7\x7f\x67\x51\x37\x4c\xe2\xf0\x4e\x2e\x88\xb2\x9d\x9b\xec\x9e\x17\xe6\x43\x0e\xab\x6f\x0d\xa1\x24\x49\xb6\xd9\xae\xe4\xaf\x43\x11\xdf\xf3\x1f\xd5\x18\xf1\xbd\x8a\xc4\xa9\xe0\x05\x53\xeb\xfb\x63\xc1\xa3\x82\x3d\x7c\xb8\xe7\x45\xc2\x0e\xef\x64\xca\x3d\x4b\x02\x9f\x9f\x9f\x3d\xf7\x2a\xb2\xc9\xb2\xbb\x32\x78\xac\x2a\x52\x2a\xb6\x1b\xaa\x9f\x9d\xfa\xd9\xaa\x9f\x5c\xfd\x6c\x24\x43\x8c\xe4\x9f\x15\x7d\xd4\xe2\x41\xa1\xc9\x03\x62\x02\x51\xbc\x22\xf0\x2a\xb2\xa6\x1e\xb9\xa7\x1e\xb9\xa5\x8f\x79\x91\x85\xbc\x2c\x3f\xe4\xb2\x42\x30\xce\x75\xcc\x8f\xec\x01\xba\xb3\x89\x91\x9f\x7a\xf0\x37\x91\x1f\x56\xab\x52\xca\x6f\x56\x3e\x10\x04\x97\x44\xb6\xec\xf7\x75\xc7\x9b\x98\x1b\x35\x8b\xf4\x97\xfc\xbd\x8d\xd3\xe8\xad\xec\xd4\x3a\x56\xd3\x03\x26\xdd\x66\x27\x22\xd8\xcf\x2c\x2b\x72\x80\x45\xb9\x11\xc9\xf6\x4a\xbf\x28\xe8\xe2\xb0\x94\x4b\x75\xc8\x04\x12\x78\xf6\x09\x7d\x23\x5f\xb0\xa5\x14\x96\x92\x03\x28\x99\x89\xc0\xcd\x02\xf3\x16\x09\xfc\x18\x5b\xaa\x2f\x5b\x73\xb9\x58\x92\x94\x7a\xb3\xf4\x4a\x34\xe8\x52\xb5\x12\x15\x94\xbb\x7c\x2f\x78\x1a\xa1\xa1\x47\x1e\x2b\x92\xb8\x8a\x55\xe0\x99\x52\xb9\x8a\x45\xba\x74\x23\x26\xd8\x1c\x15\xf0\xdb\xc4\x90\x88\x27\x5c\xf0\x41\x13\x61\xe3\x2a\x88\x8c\xc7\xa4\x4e\xa5\x2a\x3f\x0e\x2c\x3c\x84\x29\xe5\x77\x81\x8d\xde\x91\x55\x48\x58\xa2\xae\x96\x74\x09\xa3\xb1\xae\x3b\x49\xe9\xc4\x07\x32\x09\xea\xcd\xc4\x55\xdc\xb4\x49\x98\x36\xc5\x0b\xb1\x54\x5a\x31\xdd\x8a\x62\x34\x42\x6c\x32\x21\x4e\xba\xdb\xde\xf2\xc2\xa1\x54\x8a\xcb\xd9\x6a\x50\x8c\x46\xc5\xb5\x52\xc5\x15\x18\x57\xec\x0a\xe4\x5f\x46\xd3\xb1\xaf\xb7\xd4\xa4\x94\xf4\x0b\x69\xa2\x10\x96\x64\x47\x43\x53\x95\x2d\xf5\xac\x9a\xb0\x99\x18\x8f\x71\x46\xdb\x4a\xbc\x70\x21\xbe\xd8\x2d\x8f\x47\xe7\x7f\x9e\x3f\x7f\xee\x60\x22\xbe\xd8\x51\xea\x8d\x46\x62\x34\x42\x5b\xba\xbd\xa6\xde\x7c\x7b\xe5\x5e\xce\x27\xdb\x89\x3b\x0d\xbc\x60\xb2\xc5\xa4\x5c\x88\x25\xd5\xfa\x68\xe4\x14\xeb\x5b\x87\xf8\xe3\xad\xaa\x50\x4e\x56\xad\x52\xdb\xed\xaf\xc5\x78\x94\x03\x15\xb0\xaa\xcb\x1c\xe5\x5a\x33\x5f\x2e\x56\xcb\x5a\x1f\x8d\x30\x19\x8f\x57\x38\x38\x21\x8b\x86\x1e\x8d\xac\x7c\x3a\x64\xe7\xc6\x44\x15\x96\xbb\xb0\x0a\xb8\x92\x9f\xaa\x3e\x58\x93\x7b\x3a\x54\xd5\x04\xf9\x36\xc7\xf1\x0a\xe5\x8b\xf5\x72\x34\x92\x7f\x0d\x24\x1d\xfa\x33\xd0\xb1\x56\xf7\x50\x56\x83\x86\x0e\x3d\x5c\xb5\xb1\x4b\xf6\x6e\x41\xc9\x4f\x3a\x1c\x9a\x4f\xb9\x4c\x60\x92\xbb\x20\x6f\xd0\x1b\xb4\x21\x77\x28\x27\xce\xde\xc1\x32\xf6\xa0\x63\x23\x15\x7b\x70\x30\xae\x2a\xd4\x37\xd0\x94\x9c\x46\x12\x52\x92\x90\xec\xc8\x96\xe4\x64\x43\x22\xfa\x3d\x50\xc8\xfd\xe1\xc3\xcd\xbb\x8f\xef\xfe\xf2\xf6\xe7\x77\xdf\x7f\xfd\xee\xfb\x77\x1f\x7f\x22\x2b\x93\xf4\xfd\xdb\x6f\x5e\xb7\x93\xd6\x26\xe9\xfd\xeb\xbf\xfd\xfc\x97\xd7\xdf\xfd\xf9\x6d\x33\xfd\xef\x8d\x12\x5e\x5c\x71\x98\x0f\xdb\x38\x1d\x8d\xc4\x90\x4e\xd6\xa3\x11\xaa\xa3\xa8\xc0\x84\x5d\xeb\x4f\xb6\x1f\x8d\xd8\x90\x5a\x00\x6c\x4f\x19\xae\x24\x95\xb9\xcb\x59\xb8\x41\x0f\x08\x13\xd4\x3e\xc1\x10\x35\xae\x88\x88\x3a\xdb\x8a\x08\x77\x57\xf2\x88\x0e\xfd\x4a\xca\xca\xa7\x63\x09\x65\x7a\x04\x45\x35\xeb\xa4\x8f\x35\x0b\xad\xc8\x1e\xdd\xba\x6d\x76\x4b\x16\x19\xc9\x14\x27\xc8\xac\x5c\x4b\xfc\xa9\xe1\xaa\x4a\x21\x39\xd5\x39\x87\x68\x43\xed\xdc\xee\x0a\x84\x32\xb5\x17\x44\x72\xa1\xd0\x07\x66\x8f\x7b\x90\x7b\x81\xc2\x32\x54\xf0\x7f\xee\x62\xb9\xfd\x1e\x7a\x15\x26\x1b\x0d\x74\xf8\x14\x50\xe6\x96\x82\x85\x77\xc7\x63\xe6\x4a\x91\x04\x06\x9e\xfc\x68\x86\xe1\x68\x94\xd9\xe3\x0b\x06\xc9\x81\x0e\x87\xc8\xca\x21\x61\xe0\x43\x8e\xc8\xa7\xb2\xcb\x34\x3c\xfb\x6c\xad\x7c\x12\xf1\x15\xdb\x25\xe2\x2f\x2c\xd9\x71\x29\x1c\x18\x79\x2f\x38\x40\x85\xa1\xa0\x46\xec\x19\x8d\x90\xe6\xc2\x9b\xc5\x46\x93\x76\xe2\x2f\xdd\x03\x69\x7f\xef\x61\x3e\xf5\xd0\x95\x6e\xaa\x9a\x67\xb4\x92\xd5\x4f\xfc\x2b\xc7\x8f\xfd\xf1\xd4\xe0\x27\xe5\x13\x39\x49\xd2\x97\x00\x5c\xec\x2d\xed\x27\x13\xc8\x88\x30\x5c\x32\x35\x93\xd5\x20\xcd\xd4\x04\xd6\x23\xd6\x23\x8c\xa6\xb0\x3e\xe6\xd6\xfa\x48\xd2\x31\x2d\x55\x0f\xdd\x51\xcd\x04\xb7\x34\x5f\xb0\x25\xe8\x68\x87\x77\x58\xa2\x2d\xa8\x37\x2b\xae\xca\xd9\x78\x5c\xe0\x90\x6e\x17\xc5\x92\xa0\x1d\xdd\x2c\x8a\x25\x1e\x8d\xd0\xce\x55\x9d\x32\x1a\xa9\x75\x23\x1c\x8d\x50\x48\xc7\x21\x89\xcb\xef\xd9\xf7\x28\xc4\x73\x25\xc5\x04\x21\xa5\xfe\x99\x37\x0f\xe9\x5a\x06\x27\xfe\x99\x07\x90\x93\x75\xcd\x13\x43\x40\x67\x7a\x76\x34\x42\x77\xb2\x0b\x88\xc2\xbb\x73\xed\x6e\x86\xac\xed\x28\x8c\x31\x49\x16\xe9\xb8\x58\xd2\x50\xd6\xfe\xb4\xf2\x0a\x11\x0a\xa9\x02\xc3\xa3\xd1\xd0\x1f\x52\x6a\x1a\xe3\xd6\x03\x07\xea\xb1\x1f\x8d\xee\x0d\x49\x49\x48\x42\x4c\x76\xee\x41\xc5\x1d\xea\xb8\xba\x48\x89\x5b\x96\xfa\x76\x34\x4a\xaf\x65\xcb\x86\x77\xc7\xa3\x2a\x30\x59\xa4\x93\x72\x89\x95\x78\x61\xd7\x47\x66\x2d\x65\x66\x85\x63\x26\x7f\xfc\xa5\x82\x1f\xfb\xcb\xe3\xd1\x23\x77\xa3\x11\x4a\x16\xe9\x92\x6e\x17\xde\x12\x43\x7f\x55\x55\x55\x7d\x9e\x39\xf4\x8e\xa3\xa7\x87\x9d\x93\xf2\x35\x93\x92\xeb\xe4\x27\x87\xca\x61\x5d\x6f\x19\x81\x8a\x4a\xb4\x4a\x4c\x59\x4c\x0e\x1b\xd3\x38\xb6\x84\xce\x48\x16\x6c\xec\x2f\x89\xfa\xa1\x93\x10\xcf\x2c\x6e\xd7\x88\x92\x0d\xc3\x33\x9c\xee\xc9\xc6\xfc\x7b\x2d\xe9\x65\x85\x30\x81\x3e\xd0\x88\xdc\xd0\x88\x7c\xa4\x2b\xf2\x0b\x5d\xcd\x9e\x6a\x98\x9e\xdc\xaa\x6d\x3d\x33\x40\x36\xb1\x35\x07\x60\x14\xed\xec\xe1\x13\xc2\x92\x13\xea\xa5\x09\xc6\x12\x0a\xaf\x3e\x8c\x46\xe8\x03\x0d\x31\x09\xaf\x3f\x8e\x46\xe8\x23\x95\xe3\x07\x06\x15\x0a\xaf\x6e\x46\x23\x74\xa3\x12\x7f\x19\x8d\xd0\x2f\x32\x11\x66\xa1\xc5\x36\xd5\x54\x7d\x33\x2b\x1f\x62\x11\x6e\x4c\x0a\x6c\xef\xf0\x63\xc8\x4a\xae\xf6\x78\xc1\x1b\xea\x29\x19\x61\x06\x91\xb0\x2d\x90\xb1\x13\x9d\xc3\x6c\x19\x35\x90\x9e\x45\x3d\x00\x67\xd3\xea\x84\x7f\xce\xd1\xcd\x98\xbe\x21\xbf\x8c\xe9\x9b\x71\x07\x1c\x07\xe8\x83\x4c\xfb\xd8\x97\x56\x35\xb3\xe9\x03\xf9\x88\x49\x33\x91\x6e\xc8\x2f\xb8\xfa\x2d\xab\x31\x95\x4c\xa1\xf9\x94\xbd\x84\xad\x05\x9a\xae\x9a\x64\xb6\x57\xc9\x15\xc6\x15\xb2\xa4\xfe\x3b\x85\x53\x49\xf9\x7c\x21\xc6\x8e\xac\x82\xb3\x34\xc7\x3d\x19\xe8\x87\x1b\xb1\x8e\x81\x6c\xcb\xdc\x14\xd7\x92\xf0\xb0\x9d\xe6\x63\xc2\x1a\xfc\x0f\xf6\x91\xfc\xba\xe0\x39\xda\x98\xad\x4a\xd4\x6a\x59\x03\x26\xab\x58\xe7\xff\x50\xab\xaa\xa5\x5c\x45\x1f\x2b\x4b\x10\xd8\xb4\x64\x0d\x46\x37\x52\xd6\x90\x82\xf8\xc2\xd9\x3b\x63\xe6\xa6\x4b\xca\xdc\x70\x9a\x23\xb9\x07\x5a\x09\x6c\x0b\x11\x51\x27\x6f\xd4\xe4\x3d\x74\xf2\x8a\x2c\xaf\x8f\xe1\x07\xf7\x59\x1c\x0d\xbc\x21\xa5\xa9\xbb\xf7\x25\xbc\xbb\x87\x20\x26\x56\xca\x41\xa5\x1c\x20\x88\x49\xda\x34\xe7\x06\xb5\xcc\x26\x16\x6c\x22\xf9\x1a\x52\x01\xfa\x98\x06\x8c\x34\xea\x6f\x41\xe9\x66\xee\xec\x9d\xc0\x39\x38\x24\xd3\x3b\xd4\xce\x66\x0b\x60\x12\x35\x8e\x82\x44\x0d\x20\x5c\xc9\x3d\x93\xc4\xd8\x14\xfc\x11\xe1\xc7\x6f\x47\xa3\x30\xe1\xac\xf8\x18\x6f\x79\xb6\x13\xe8\x5b\x39\xdb\x76\xa9\xdc\x80\x22\x07\x76\xeb\xdb\xec\x9e\x3b\xe4\x9f\x27\xf1\x09\x67\x32\xe1\xcf\x76\x02\x68\x02\x1c\xf2\x7b\x0c\x62\x9c\xd9\xa8\x92\xc5\x6e\x69\x75\xdf\x2f\xb2\xfb\xcc\x36\x52\x50\xee\xea\x66\x10\x46\xb9\x0b\xaa\xb3\xe3\x11\xf6\x96\xc2\x6d\x54\x65\x92\xd1\x17\x26\x46\xe9\x38\xc0\x88\x87\xa6\xc7\x23\x72\xf6\x0e\xa5\xdc\xad\xa9\x34\x7f\xcf\xc4\xc6\x5d\x25\x59\x56\xa0\x52\x29\x71\xcf\x10\xd3\xbd\x7b\x3c\xfa\x18\x07\x6a\x5e\xc4\x76\xae\xb1\xf3\x7a\x1f\x97\x03\x67\x6c\xc7\x71\x57\xc7\x3b\x24\xa1\xce\x2a\xc9\xc4\xa4\x0d\xe0\x4c\x24\x79\x07\x3d\x29\x90\x55\xa5\x3a\xe3\x98\x84\x54\xb8\xab\x2c\x15\xc7\xa3\x42\x23\x5b\x3a\x81\xe6\x0c\x40\xbd\x27\x43\x0e\xd9\x51\x6f\xb6\xbb\x62\xcd\x48\xdc\xa9\xa1\xbe\xa5\x6c\xb1\x83\xf3\x94\xad\xa2\x81\x8a\xce\x69\xe9\xae\x39\xe8\x88\xdf\xa5\xab\x0c\x25\x44\x27\x93\x10\x64\x02\x92\xe1\x59\x4a\x81\x1c\x5b\xb6\x47\x29\xc9\x15\x39\xc6\x3e\x26\x45\x13\x5f\x90\x5c\x6b\xb8\x71\x55\x71\x8b\xec\x9d\x3e\x48\x09\xb7\x7b\xa0\xdb\x1f\x45\xd3\xc9\x6f\x50\xcd\x41\x6c\x14\x4d\xaf\xaa\x3c\xd0\xa7\xba\xff\x5d\xa3\x70\x24\x19\x85\x1e\xa5\xa2\xa1\x26\x89\x2d\xc0\x46\x1d\x0a\x3b\xe8\x75\x11\x47\x6e\xa3\xee\x22\x3b\x13\x67\x69\xc9\xc8\xd6\x44\x9e\x2a\xcb\x48\x2e\x85\xbf\xb5\xfc\x23\xb7\x97\xe4\x56\xee\x1f\x35\xaf\xcd\xe6\x9b\x20\x6a\x71\x5b\x86\x1f\x81\xa9\x69\xb1\x9e\xb9\xb6\xba\x16\x03\xbb\xa3\x54\xcc\x6f\xe9\xd0\x0b\xd8\x49\xdb\x28\x05\xad\xc1\xed\x7c\x4d\x87\x7e\x90\xd3\xa1\x8f\xc9\xed\xf1\x88\xe4\x9e\x15\x4b\x4e\x4c\xd6\x20\x2a\x78\x46\xe0\x8b\x47\x23\x14\xd3\xfb\xb9\xb3\xda\x25\x89\x13\x5c\x62\x2d\x34\x8e\x63\x7c\x3c\xa2\xdd\x98\x8e\x63\x4c\xb2\x39\x4a\xc7\x74\x27\x65\x9f\x2d\x31\x0a\x70\x4a\x8b\x39\x5a\xb9\xea\x6b\x4c\xd3\x71\x48\x84\x7b\x9b\xed\xe9\xa3\xc8\xf2\xa0\xd4\x1d\x3e\x31\x10\x64\xa3\x55\xd0\x15\x0e\x90\x05\xb8\x92\xcc\x6e\x1c\x36\xc9\x44\xc5\x48\x84\x18\x07\x88\xc9\x82\xd5\xa2\x0a\x25\xea\xac\xa0\x6e\x5b\x01\x93\x1d\x87\x04\x06\x5d\xc0\x64\x5e\x88\xa1\x6c\x1c\xe2\x00\xad\x5c\x58\x77\xe1\x93\xd8\x19\xf5\xac\x9d\x68\x80\x3a\xbf\xdc\x53\x36\xb4\x2c\x88\xb0\xc6\x02\x8d\x15\x0a\x37\x67\x51\x14\xa7\x6b\xba\xd3\xdf\x76\x8f\xff\xa0\xd3\xb6\x44\xb8\x71\x9a\xf2\x62\x9b\x95\x82\xe6\xcd\xc0\xfd\x41\xef\xd9\x61\xc7\x4e\xe5\x52\x9b\x99\x91\x23\x3b\xbc\xd6\xa4\x85\x83\x38\x1d\xac\x14\x6c\x3d\xe0\x94\x7e\xf6\x78\xf4\x66\xab\x45\xb8\xa4\x27\x0a\x90\xdd\x7c\x17\xec\x16\xa1\x14\x5b\xab\x16\x22\x4b\x0e\x54\xda\x43\xb2\x58\x2d\x31\x59\xe1\x93\xc5\x56\x97\x64\x29\x74\xe7\xb2\xac\x31\xcd\xe6\xa7\x49\x8b\x70\x19\x78\xc1\xd3\xe9\x81\x37\x33\x5b\xfc\xa2\x2b\x52\x98\xc9\xab\x47\xf0\x4c\x28\x05\x8a\x1a\x95\x6a\xf4\xcf\xd5\x66\x3f\x50\x5f\x44\xb4\xa6\x42\x0d\x69\x47\xce\x15\x96\xa0\x1d\xdb\x73\x06\x6d\xaf\x0a\x63\x2d\x6b\x0a\x77\x1b\xa7\x73\xf8\x1b\xd4\xaa\x0c\x4c\x52\x1b\x80\xed\xe7\xf0\x37\xa8\x55\x19\x92\xd1\xa5\x13\x26\x59\xa7\x47\x69\x6d\x23\x0a\xbc\x8f\xdd\x96\x32\x32\x9d\xfb\x81\x3b\xbd\x7c\x96\x2a\xf5\x24\x55\x25\x81\x72\x8f\x66\x66\x73\x05\x68\xd5\x0e\x4e\x03\x1c\x8f\x72\xd6\x65\xb8\xe2\x49\xc9\xf5\x09\x9c\x70\x3b\x47\x29\x5a\x55\x28\xa7\xf1\x09\xee\xe2\x59\x8c\xaf\x3c\xb3\x2b\xb4\x14\x36\x75\xf0\x9a\x7a\xc0\x51\x6a\x76\xa0\x6b\x21\x0b\x96\xb9\xaf\xbb\xb9\x65\x62\x1d\xbc\x82\xdc\x29\xf5\xb0\x94\x1d\xa5\x38\xc8\x08\x77\x41\xee\xab\x90\x00\x6e\xd3\x52\xb7\xa4\x6b\x4e\x16\x4b\x4c\x32\x3c\x1a\x59\x2a\x2c\xb9\x2e\x83\x98\x56\xf4\x0b\x67\x9a\x13\xf2\x56\x9f\x56\xda\x78\x48\x48\x66\x2a\xc7\xba\xd2\x15\x4f\x41\xcb\x04\x23\x8e\x75\xd9\xea\x7b\xc4\x30\xf9\x4a\xfe\x11\xf4\x7b\xc4\x08\x53\xd2\x00\x3e\x1e\x05\xf9\x05\x31\xa8\xaf\x18\x8d\xda\x15\xd6\x2b\xe5\xb5\x87\x67\xe9\x78\x8c\x7b\xdb\x63\xd5\x81\xd5\xda\x8b\x99\x24\xee\x6c\x32\x49\xf1\x1b\xc4\x16\xe9\x12\xcf\x86\x3d\xfa\x61\x33\xb1\xdb\x27\x26\x8d\x5d\x03\x33\x7b\xbf\x3e\x5d\x17\x6b\x56\x58\x46\xa6\xcf\x10\x28\x90\xf5\xa6\x4b\x1d\x91\x8d\xed\xa8\xfa\xc4\xea\x6c\xaa\x89\x97\x6a\x76\xc8\xf4\xb1\x05\x83\x63\x0b\x66\x8e\x2d\x58\x35\xfb\xd4\x96\xc0\xee\x8e\xd1\x48\xb1\xca\xb2\x0e\xd4\xa6\xa6\xe8\x64\xb1\x9d\xa3\x14\xd8\xb4\x25\x38\xc0\x37\xb1\x97\xf2\xb3\x29\x26\xa9\x62\xcf\x36\x9c\xe2\xd7\x1d\x40\x1c\xa0\x54\x2f\x33\x36\xac\x5e\x78\x5a\x12\x81\x42\x2b\xb2\xdc\x06\x14\x59\x7e\x02\xa5\x56\xcb\x95\x55\xd1\x90\xc7\x09\xea\x56\x79\xa5\xe5\x7c\xb2\xb2\xeb\xda\x05\x55\xb5\xd6\x20\x00\x5c\xd7\xa0\x0b\x2a\xeb\xb2\x52\x1b\x00\xb2\x6a\x35\xaa\x0b\xa9\x9b\x67\x80\x60\x97\x45\x7a\x07\x7f\xd7\xe0\xfd\x44\xa0\x45\x1c\x56\x32\x68\xab\x6a\xd1\x84\xb7\x48\x4c\x14\x00\xac\x93\xb4\x59\x3d\x01\xd2\xac\xb2\x76\x0e\x1c\x68\x94\xb2\x9d\xd0\x9c\x09\x6f\x13\x58\x63\x54\xcb\x3e\x3d\x11\x17\x26\x4a\x0a\x68\x65\xc2\x9a\xab\x54\x08\xcf\xd6\x4f\xd4\x82\xdc\x3f\x85\x8b\x3c\xb5\x12\xb5\x48\x53\x2f\xd4\xa2\xb5\x3f\x6c\x96\x6c\xde\x88\x89\x46\x3f\x23\x19\x48\x66\x25\x74\x0f\xf7\x67\xa7\xf4\x96\x3c\x4f\x19\xee\xaf\xcf\xea\xa5\xa2\x40\xc0\x3d\xf1\x04\x02\x71\x8a\xe5\xe2\xa3\x3a\x3c\x4e\xeb\x54\x52\xa7\x4a\xe9\x88\x4e\x2c\x5c\xf7\x9f\xc2\xd5\x20\x93\x12\xf9\x29\x32\xc2\xdd\x7c\x1a\xd2\x42\x4a\x97\xa7\x6c\x18\xf1\x49\x8a\x9f\xb1\x2a\xe8\x49\x2a\x10\xc7\x2a\x95\x70\xb9\x81\xa5\x59\x0f\x82\x41\x86\xd2\x31\x3f\x63\xb8\x0f\xc5\x00\x92\x2a\xb3\x6a\x64\x72\x91\x79\x8a\xf1\xd4\x5d\x41\x32\x12\x93\x84\x82\x10\x06\xdb\x9f\xd3\xad\x96\x1d\x27\x9a\xad\xd6\xae\xde\x6a\x89\x27\xb7\x5a\x27\x59\xcd\x56\x2b\x24\x5b\x6b\xaf\xf0\xd9\x2d\x97\xe4\xe5\xa5\x5b\xc0\x3e\x57\xee\xa3\xd0\x4e\xca\x98\x4a\x7f\xec\xc9\x65\xdf\xe6\x96\xd8\x48\x6d\x39\xf5\x66\xf9\x55\x3b\x71\x36\x1e\xe7\x78\x88\x98\xc9\xb3\xc8\x97\x58\x4d\x0f\xb9\x4d\xb8\xbf\xd2\x42\x03\x73\xef\xaf\x61\x19\x37\x3b\xd7\x16\xe7\xcd\xa8\x13\xf2\x54\xf0\xc2\x21\xa9\x9e\xea\x63\x21\x3b\x1e\x31\xf7\x1e\x5b\xc2\x7d\x23\x07\xcf\x0b\x9a\xc0\x64\x4c\x8c\xe8\x3b\x4e\xfa\x84\xde\x00\x35\x80\x7a\x06\xd6\x39\x48\x4c\x0d\x6a\x39\x6c\x63\xea\x6c\xe3\x28\x4a\xb8\x43\x0a\xc5\x1e\x5a\x95\xd0\xd2\xbe\x55\x05\x94\xd2\x44\x55\x36\xd1\xd3\xbe\x41\x9d\x51\xad\x5e\xc3\x81\x05\xa5\x53\x31\x29\x5d\x16\x45\x8a\xf2\x30\x6a\x98\xde\xc1\x6e\xd5\x0e\x56\x6d\x63\x49\xac\xf9\x7d\xb3\x44\x6b\x05\xa4\xab\x6c\x96\xdc\xda\xde\x68\xce\xd1\x69\x24\x76\x37\x62\x9b\x20\xc7\xc1\x81\x70\x57\xa0\xac\xd0\x30\x0e\xd6\x9d\x8f\x94\x42\xbf\xce\x0b\xda\x44\x35\xfc\x9b\xf3\x73\x60\x31\x8b\x25\xc9\xe4\x9f\x92\x0e\x7d\xd8\x81\xea\x1c\x6d\x0b\x29\xbd\x97\x8f\xed\xbd\x3c\x62\x34\x5e\xec\xcc\xb0\x00\xe1\x2c\x9c\x4b\xaa\xaa\x26\x33\x1c\xe8\x20\x1e\x8d\x32\x7d\xaa\x03\xdf\x41\xaa\x2d\x48\x98\x3a\x2f\xad\xa0\xb2\x4d\x5d\xc1\x36\x0a\xc7\x2b\xc4\xdd\xb8\xfc\xda\x10\xa9\x9b\x8e\x33\x08\x9d\xc4\xcf\xa4\x04\x3b\x88\x57\xc8\x29\x38\xb0\x46\x87\xd2\x2e\x4c\xe6\xea\x34\xa4\xc0\xb5\x5a\xc2\x89\x78\x19\xf2\x54\x76\xa5\x33\xec\x66\x9a\xe9\xf2\x3a\x1c\xa2\x16\x1c\xa1\x69\xd4\xa8\x04\xe6\x5e\xa0\xa3\xae\x74\xcc\x90\x6e\xe7\x7e\x30\xf1\x41\xfd\x97\x15\x48\x51\x34\x3b\xd1\x8e\xe4\x34\x5b\xec\x96\xb3\xdd\x17\x75\xf9\xb5\xe1\x1a\x9c\x8a\xa3\x72\x34\x2a\x14\x39\x9d\xab\x33\x51\x5c\x3b\x98\xd4\xdf\xea\xb3\x84\x73\x14\x1d\xf9\xe5\x95\x88\x06\x60\x89\x4a\x1d\x85\x10\xec\x60\x7e\x9f\xed\x9d\xeb\xab\x28\xbe\x1f\x94\xe2\x90\x70\x39\x63\xa4\x4c\x18\xf8\xf9\x7e\x50\x66\x49\x1c\x0d\xbe\x1c\xb7\x07\x43\xdb\x34\x6e\xfc\xe5\x4c\x8f\x7a\x99\xa5\x8d\x4a\xed\x70\x2f\xf2\xfd\x4c\x6f\xb4\xbd\x99\xc6\x7e\x69\x61\xd7\xa7\xe5\xe3\x2f\x67\xd9\x3d\x2f\x56\x49\xf6\x10\x6c\xe2\x28\xe2\xa9\x73\x7d\x75\x16\xc5\xf7\xf5\x5f\x11\x5d\x9f\xb4\x41\xf1\xbb\x6b\x89\x05\x2a\x37\x76\x00\xce\xc1\xd5\x29\x79\xcc\x76\xc9\xf0\x3d\x3d\x0f\x24\xb1\x37\xf4\xcb\x2b\xc1\x6e\x13\x6e\xaa\x2e\x59\xec\xa4\x8c\x7f\xe5\x41\xb9\x65\x49\xc2\x8b\x99\x1a\xaa\x92\x18\x20\x3d\xeb\x3a\xcb\xa2\x0b\x7d\xad\xcc\xc1\x50\xba\x44\x73\xed\xcc\x9a\xe3\x84\xd3\x89\xfb\x89\xd9\xbc\xb1\x46\x62\x44\x1d\x87\xac\x1b\x04\xb5\x32\xe9\xbe\x89\xdb\x36\x3b\x32\x4a\xef\x17\xde\x72\x34\x42\xf7\x74\x71\x4f\xee\x97\x98\x38\xa9\x43\xe9\xda\x5c\xbd\xf3\xf0\x3c\x1a\x53\x47\x8a\xdb\xce\x18\xdd\x2f\xfc\xe5\x58\x09\x7d\x63\x27\xdf\xcf\x9c\xc0\x29\xdb\xd0\xa3\x11\x92\xf0\x5a\x30\x6f\xb2\x68\xd1\x4f\xe5\xc2\xc4\xe1\x76\x36\x5f\x15\xa2\x64\x7b\xc8\xe3\xc9\x3c\x4a\x08\x35\x05\x3d\xb4\x73\xe8\x82\x60\x5b\xd0\x64\x01\x19\x57\x17\x02\x9d\x74\x4b\x39\xfa\x12\xc6\x57\x6b\x08\xc8\x2e\xd8\xb8\x05\xcf\x13\x16\x72\xf4\xa5\xee\xc0\x2f\x89\x09\xd5\x36\x7f\xc6\xac\x7a\xf6\xe5\x38\x1a\x3b\x33\xd5\x5d\x72\x68\x39\x96\x65\xb5\x50\xc3\xc4\xea\xb6\x13\xcb\x4d\x73\xb6\xdd\x03\xf1\xa6\xb6\xa4\xa1\xf4\x30\x1a\x21\x74\xa0\xe8\x60\x36\x5c\x1d\x30\x3c\x1a\x39\x25\x98\x87\x34\x9a\x90\xc3\xbc\x6d\x12\x73\xc0\x41\xe7\xce\x1e\xba\x25\x4e\x83\x68\x02\x69\x0e\xc6\x2e\xa3\x3e\x39\xd0\x83\x6d\x72\x02\x44\xdb\xd3\xdb\xc6\x88\x1d\xcf\x0c\x05\x9f\xa4\x8d\x9a\xb3\x5f\x8e\xf7\xc6\x50\x18\x7a\x40\xcf\x5f\x67\xbc\xaf\xad\x86\x55\xcf\x48\x4a\x76\xab\x13\x38\xe3\xc3\xf8\xcb\x99\x73\x3d\x50\xe4\xfd\x12\xbb\x79\xc1\x35\x7d\x6f\x95\xf5\xbb\x93\x29\x5a\x3a\xe4\x13\x74\xae\xaa\xd6\x19\xce\x7b\xd4\x48\x62\x96\x12\x87\x9d\xea\xa4\x52\xb3\x2f\xd4\x81\x6b\x6f\xae\x43\x81\x7b\xfe\x0c\x04\xd2\xf2\x9f\x85\x38\x15\x55\xb4\x7c\x5f\x6b\x12\xb1\xb6\x12\x47\x20\xdc\x4c\x40\xda\xc1\x67\x8c\x64\x74\x62\xe9\xe3\x21\x98\x64\x6b\x54\x60\x25\x0c\x7f\xf7\xbd\xef\x61\x12\x53\x55\xa8\xb1\x5e\x6d\xd4\x26\xd9\x75\x3c\x1a\xa1\x8c\xc6\x0a\x7f\x42\x42\x25\x25\xe7\xd9\x03\xf2\x3d\x32\xc9\x30\xd9\xd1\xe2\x0c\xce\xb3\x77\x57\xbe\x7b\x39\x4f\xa8\x1f\xec\xae\xce\xe7\x28\xa1\x53\xb2\xbb\x9e\xba\xd3\xcb\x5a\xfb\x12\x1f\x8f\xd9\xd8\xbf\xa2\xb1\x9c\x48\x09\x9d\xba\x97\x64\x3c\xce\x30\x0e\x12\xba\xbb\x7a\xe1\x5e\xce\x2f\x03\xdf\x23\xc9\x33\x1a\x6a\xb5\x4f\xea\x5a\x46\xb3\xa3\x51\x72\xd5\x89\x40\x49\x1b\x04\x0e\xdb\x78\x22\x58\xad\x9d\x34\x4d\x6a\x84\x7b\x4f\xe3\x8e\xe7\x71\x90\x61\x0d\x26\x33\x6b\x22\xc8\xe0\xf1\x98\x68\xa8\x0e\x65\x46\x23\xeb\x54\xc9\x4e\x38\x1e\x91\x50\xfb\x8c\xa8\x2e\xb2\x5d\x83\x71\x86\x89\x23\xe2\xad\x64\x42\xa9\xbb\xcd\x22\x3e\x1a\x0d\x15\xc8\x37\x3c\xe5\x05\x13\x59\xcf\xed\x87\x8f\xf1\x96\x0f\x24\xf0\x40\x9b\x1d\x94\x70\x07\x41\x4a\xd4\xae\x44\x36\xc8\x93\xdd\x3a\x4e\x5d\xb5\x68\x74\xd0\x41\xa5\x5a\x31\xf4\x44\xd9\x47\x2c\xa9\x0a\x36\x4b\xdb\x38\x25\x28\xd5\xa7\x41\x40\xd4\x67\xd6\x08\x62\x67\x72\xe3\x15\x53\x8f\x24\xb5\x91\x14\xfb\x7e\x16\x65\x8f\x82\x26\x24\xa1\xd9\x38\x7e\xd6\x64\x35\x4b\x7a\x82\xc9\x78\x1c\xeb\x7b\xb6\xc9\x15\x57\x7a\xb4\x64\x48\x45\x7d\x8e\x57\x54\xba\x2b\x6a\x11\x8e\xf6\xab\x44\x6d\x9a\xce\xed\xc1\xd8\x4e\xc2\x81\x4f\x52\xea\x38\x63\x00\x81\xd9\x8a\xf8\x33\x86\xcf\x58\xb3\xe0\x75\x72\x68\x4b\xc3\xd4\x8d\xd3\x88\xef\x3f\xac\x90\xe3\xc2\xbd\x8a\x89\x4f\x69\x31\xf7\x82\xd4\xa8\xaf\x8a\x89\x0f\x07\xdf\x57\x1d\x04\x7a\xc7\x97\xcd\xd3\x20\x1d\xcb\xcc\x63\xe4\x38\x63\x86\xdd\x72\x77\x5b\x8a\x02\xf9\x9d\x3a\x4e\xb2\xda\x46\x32\xad\xe4\x16\xd3\x92\x1e\xd3\x36\x31\x30\x9c\x1c\x7f\x8a\x3e\xfa\x7c\xd8\x19\x77\x72\x42\x6a\x85\xeb\x19\x75\x6a\xbe\x6e\x0e\xb9\x4e\xb9\xcc\x26\x88\xf0\xa2\x2f\xcb\xc4\x57\xc7\x61\xa3\xd1\x16\xb4\xd0\xa3\xd1\x56\x76\xa6\x96\x07\x3b\x83\x4e\x2f\x55\x79\xad\x2d\xac\x19\x42\xaa\xd5\xb1\xc0\xae\x9a\xcd\x3c\x7c\x92\x7c\xe1\x2d\x6b\xd3\x9b\x54\x0d\x99\x1a\x87\xaf\x72\xb1\x7d\x33\xb1\xe1\x93\xe4\x8b\xbc\xb1\x91\xc2\xd8\x4c\xf0\xcf\xcc\x00\xba\x58\x5a\xe6\x16\xdb\xee\xce\x92\x61\x41\x91\x8e\x5d\xb0\xa5\x7b\x3f\xd9\x2a\x06\x8b\xb6\xc0\x6e\xd5\x17\x11\x6a\xfa\x8c\xc5\x33\xa5\x40\x98\x28\xed\x01\x49\xd5\x2c\x68\x06\x7b\x5a\x91\xa1\xd0\x3c\xc0\xb4\xef\x74\x28\xae\x6c\xa6\xe5\xf7\xf2\x71\xcd\xee\x6c\x6e\x8e\xc9\xba\xaf\x03\xd6\x16\xe5\xce\xfe\xe1\xba\xcf\xbc\xdf\x9d\xb9\x82\x97\x02\xa1\xf5\xc2\x5f\x4e\xd6\x92\xda\xae\xc8\xbe\x8e\xf7\x3c\x42\x2b\x8c\x6b\xe6\x51\xf3\xb3\x15\x06\xd3\x1e\xb3\xca\x7d\x85\x6c\x7d\x43\xe7\x84\xb0\x84\x4d\x9a\xd2\xfb\x42\x03\x8b\xe3\xb1\xdf\x52\xd7\x9b\x67\x3d\xf5\x0d\x0a\x58\x77\x5a\x53\xa2\xc0\x73\x95\x64\x3a\x15\xcc\x78\x55\x97\x65\x76\x67\xe9\xe3\x00\x75\xc1\x83\x66\x0b\xb6\x9c\x9d\x1e\xe5\xc8\x5d\xf3\x38\x59\x78\x4b\x92\xd8\x83\x2a\xa6\xc9\x42\x0e\x9c\x40\xa6\xb6\x8e\x01\x3b\xd3\x0f\xa5\x44\x60\x73\x20\x98\xe2\xe3\xd1\xe8\x23\xd4\xc6\xf1\x3e\x48\xd5\x45\x81\x20\xae\xb0\x45\xb5\xef\x6d\x6e\x36\xf4\x67\xf5\x76\xcc\x50\xaf\x73\x84\x31\x1a\x89\xd3\x79\xd3\x40\xab\xf9\xc3\xdb\xf3\x47\x31\x71\xb1\xf0\x96\xee\x3d\x26\xac\x36\x52\x6b\x65\x94\xd3\x49\xd8\x2d\xe7\xed\xe9\x04\x9f\x44\x2c\x84\x65\x72\x68\xb0\xb5\x2c\x4a\x7e\x46\xf8\xb1\x74\xc1\x90\x01\xa9\x33\x8d\xb6\xa5\x3d\x59\x6c\x97\x4a\x7c\xe0\x5a\xc0\x9c\x71\xad\xe2\xe1\x5d\x51\x73\x34\x42\x5b\xb7\x64\xf7\x1c\x61\xb2\x55\x3a\xc4\x84\x09\x8e\x56\x46\x9f\x2c\x77\x01\x64\x0b\x96\x9b\x37\x20\x19\xfe\x1d\xf5\x0b\xad\xe4\x9e\x78\x44\x39\x69\x98\x5e\x5e\x92\x41\xf3\xc7\xc3\x8e\x41\xf1\x23\x0f\x05\xf2\x88\x47\xd6\xe4\x5e\xc6\x15\xbc\x14\x59\xc1\x11\xe8\xfb\x54\x15\x87\xdc\xad\xaf\x92\x8c\x46\x5f\xa3\xc6\x9c\xbf\xe7\xcc\xc1\x34\x5e\x5d\x2a\x20\x8b\x2d\x89\x17\x62\xb9\xc4\xe4\x47\x38\x7e\x50\x26\x67\x12\x00\x68\x42\x1a\x32\xb4\x8b\x20\xa5\xab\x6e\x12\x22\x4c\x7e\xb2\x05\xcb\x5f\x3b\x0e\x4c\x8c\xa2\x0f\x8e\x4a\x13\xea\xcd\x12\xbb\x3e\x09\x8e\x57\x08\x94\x1e\xc9\x12\x37\x5c\x9d\x52\x21\x7b\x7b\x91\x51\x31\x66\x6e\x6a\x0c\x8c\x8e\x47\x7f\x48\x99\x9b\x1e\x8f\x48\xa6\xa8\x58\x4c\xf8\x22\x5b\x62\xfc\x98\x52\x19\x70\x57\x45\xb6\x25\x85\x0a\x8b\x4c\xdb\x79\xc7\x2b\x89\x6d\x79\x3c\x22\xa6\x6c\x07\xc4\x7c\xb3\xf0\x96\x41\x04\xd7\xcc\x95\x11\x93\xef\x2c\x21\x9f\x18\x3b\x53\x67\x59\xaf\x46\xe6\x00\xad\x18\x8d\xd2\x6b\x7d\x3c\x58\xd2\x74\x96\xd2\x82\x14\xb4\xd4\xab\xe3\xa3\x2c\x36\x48\x89\xc8\x82\x02\xae\xd6\x04\xcc\x9a\x51\x5f\xb7\x0d\xbd\x67\x9f\x1f\x40\xfa\x62\x7d\x73\x6e\x0c\xb7\x6a\x60\x49\xc7\xca\xf0\xda\xe2\x3a\x99\x5c\x7a\x11\xa3\x07\x77\xcd\xc5\xeb\x3d\x2f\x11\xc6\xee\x1e\xce\xf3\xb4\x39\xab\x9c\x6c\xcc\xdd\x83\xe5\xb6\x89\x62\x7b\xc2\xdc\x83\x82\x3a\x58\x50\x07\x05\x75\xa8\xa1\x32\x9a\x21\x56\x5b\x6b\x67\x27\x37\x1f\x62\x9a\x2d\xc4\x92\x94\xf4\x57\x14\x83\xe9\x3b\x09\x55\xf0\xa0\x44\x3e\x35\xaf\x4b\xe8\x99\xd1\x08\xa9\x00\x2d\x5d\x53\xa6\x99\xf9\xa5\x2b\x32\x48\x17\x59\x9d\xca\xf6\xb5\x65\xab\xc9\xaf\x02\x34\x3c\xc9\x1f\xaa\xfc\xf2\xa7\x4e\x95\xf9\x87\x80\xf2\xaa\x29\xf0\x78\x54\x75\xb8\x6e\x4a\x39\x1e\x65\xb6\xab\xd0\x82\x51\xe5\x5c\x5b\x98\x24\x13\x81\xb2\x6b\x0e\xa4\xbe\x89\xdd\x16\xa8\x7e\xcd\xe7\xe4\x17\xb1\x1b\x13\x76\x30\xa8\x6f\x62\xb7\x26\x6c\x61\x90\x5f\xc4\xaa\xc4\x4c\x59\x14\xe8\x9a\x28\xaa\x91\x5c\x93\x87\x2a\x2a\x80\xa2\x72\x77\x3c\x0e\xe1\x02\x84\x5d\x69\x63\xf4\x04\xe8\xf2\x69\xa8\x13\xb1\x5d\xef\x1e\x18\x91\xe1\x76\xd5\x15\x4c\xd8\xc0\x84\x06\x4f\xd8\xc1\xd3\x82\x01\x3c\xbb\xe3\x31\x57\x23\x67\x43\xe3\xe6\x54\xf3\x78\xec\x8c\xf6\xfa\x0e\x19\x89\xe8\xe6\x8b\xe9\xdc\xbd\x0c\xbc\xd9\xd6\xbd\xe5\xeb\x38\xfd\x81\xc1\xc5\xdb\xad\x5b\x8a\x22\xbb\xe3\x8a\xd1\xc6\x6a\x7b\x7f\x82\x48\x71\xdb\x6d\x53\x14\xdd\x90\xdd\x5c\x0a\x46\xd9\x3d\xff\x98\x41\xfb\xc6\x91\x6e\x1f\xd6\x80\x76\xbc\xac\x76\x60\xc3\xeb\x3e\x93\xc9\x1d\x78\x13\xdb\xd4\x0d\x29\x03\x80\x81\xbd\x24\x7c\xae\xa6\x35\xe7\xb7\x8a\x82\x1e\x9a\xd4\x11\xf2\x67\x02\x55\xab\x2a\x06\xdc\x35\xa5\xa7\x16\x1c\xf5\x52\x70\x4b\xbd\xd9\xad\x6d\x38\x76\xab\xba\x60\x4f\xde\x92\x3b\xf2\x81\xdc\x50\xb6\xb8\x5d\x92\x8f\xf4\x06\x8e\x63\x7e\xa1\x37\x96\xe9\x8c\x1c\x4f\x37\xcd\x99\xc7\x4d\xfb\xcc\x03\x98\xbd\x4d\x5d\x9f\x00\x8f\xbd\xb1\xcf\x2d\xf6\xd4\x23\x6f\xa9\xb2\x52\xa2\xf4\x97\xb9\x23\xb2\x1c\x60\xea\x23\x02\x2f\xb8\x0f\x3e\xc2\x49\xa3\x3a\x50\x40\xa7\x20\x1f\x5d\xa3\xfc\x94\xfd\xf1\x96\x7a\x64\x6f\xa3\xd4\xc7\x0e\x2d\x9c\xeb\xe0\xa3\x39\x5f\x84\x83\x05\xd4\x03\xf5\x51\x6b\x2a\xa4\xd4\x70\xd3\x98\xfd\x1c\x8f\xa8\x3d\xbe\x6e\x6a\xd1\x24\xd4\xfd\x64\x8f\xc5\x3b\xfa\x81\x7a\xa7\x2d\xbf\xa3\xeb\xb1\x1f\x7c\xa0\xf7\x63\x9f\xf8\x94\x5a\x74\x32\x47\xeb\x36\xf4\x5b\x7b\xea\xbc\xc5\x63\xf7\x32\xd8\xdb\x51\x7b\x19\x25\xc7\x96\x1e\x8a\x7b\xf2\xd6\x1a\x80\xfb\xf1\x1d\x79\x3b\xfe\x60\x8f\xbd\xee\x1c\xb9\x69\xc9\xc0\x6f\x7a\xda\xa1\xd8\xfc\x4d\x77\x83\xa1\x99\xfd\x1b\xd3\xfb\x0b\xb1\x74\xef\x67\xaa\xd1\x4a\xc2\x7c\x83\x8f\xc7\x37\x57\x37\x8a\x7b\xbe\xb9\xbe\x51\x7c\xb5\xee\x1f\xd9\xdc\xae\x88\x2b\x57\xd7\x45\xd3\x13\xcb\x6b\xef\x78\x4c\xaf\x41\x5d\xfa\x46\x12\x46\xa1\x82\x10\xdb\x63\x73\x20\xd6\x19\x58\x37\xc0\x5c\xde\x60\xf2\xc1\x1a\x0c\x93\xfb\xe0\x17\x72\x32\x82\xc0\x7a\x7c\xf2\x41\x8d\x9e\x3a\xdf\x9d\x9d\x6f\x2d\xf3\x9d\x8c\x11\xb8\x49\x31\xb9\xc3\xf8\x37\xf4\xe1\x69\x87\x05\xa7\xdd\xfa\xd9\x3e\xc4\x95\xc5\x40\x2a\x59\x81\xa2\x3d\xbf\x55\xdf\x9d\x92\xf4\x78\x3c\x89\x2b\xe6\x35\xe9\x87\x36\xed\x51\xaa\x6c\xf8\x52\x6d\x3f\x92\x1a\xcb\x91\x54\x79\xcb\x90\x5b\xfe\xd3\x8c\x05\xd4\x05\x32\x16\x3a\x63\x61\x32\x16\x2a\x63\x51\x69\x2b\x0d\xd8\x11\xb4\x47\x60\x01\x87\xf9\x36\xbf\x48\x75\x4c\x9b\xb3\x6b\xea\x78\x13\x6d\xa9\x21\x03\x22\xcb\xcf\xa6\x16\xb1\xd6\xed\xd8\x66\xd0\x6b\x93\x8d\xde\xe2\x95\x9d\x41\xbb\x02\x26\xae\xb7\x0a\xeb\xb1\x06\x38\x9b\x9a\xf2\xec\x3a\x58\xa9\xf7\xdd\x5a\x28\xb2\xf4\x56\x43\x9b\x7f\xb4\xeb\x51\x47\x7e\xba\x22\xe4\x7e\x6c\x60\x5b\xf4\xf0\x4e\x12\xec\xca\x48\x32\xf6\x56\x05\xe8\xdb\xae\x88\x8e\xfa\x64\x97\xc8\x06\xd7\xc5\xd9\xb5\x68\xd2\xbd\x56\x1d\x60\x11\xb5\x4a\xe9\xf0\xa6\x9e\xe1\x6d\x00\x60\x31\x9c\xa4\x67\x53\x02\x7f\xd6\xe3\x54\x16\x8d\x71\x6b\x4b\xd4\x08\xdc\x3f\x2a\xb7\x90\xf6\x5d\x2f\xf4\x94\x95\x08\xe9\x78\x87\xe4\xe6\x7e\x4c\x5c\x07\xd5\xad\x32\xe5\x4e\x40\x5d\x53\x6a\x51\xa6\x31\xfa\xa4\xf1\x2c\x6c\x24\xe4\x70\x4c\x63\x63\x01\x9a\x2d\xc2\x49\x0c\x17\x0e\x65\x60\xec\x2f\xc9\x46\x06\x97\x24\x92\x3f\x63\x7f\xd9\xe8\xfc\x76\x66\xcb\xb1\x81\xdb\x48\xf9\x15\x8d\x46\xa3\xfc\xaa\x00\xe9\x50\xc6\x44\x3a\x1c\x66\xa9\x88\xd3\x1d\x9f\xed\x28\x82\x98\x49\x8e\xcf\x50\x34\xc9\xf1\x33\xb4\x99\xec\xf0\x78\x47\x72\x0a\x09\x95\x39\xc0\x8d\xae\x68\x3e\x1a\x45\x16\xb2\xbc\x8b\x6c\xf3\x24\xb2\x48\x23\x93\xb9\xae\xa1\x52\xd7\x05\x30\x66\xa8\x94\x0e\x77\x2a\xc5\xf6\x4f\x54\x8a\xed\x9b\x4a\x5d\x43\xa5\x2c\x64\x79\x17\xd9\xe6\x49\x64\x91\x46\x06\xea\x7d\xba\x19\x8d\x76\x4a\x05\x0f\x78\x36\x3a\x5c\xe3\xc9\x29\x82\x98\xc9\x0e\x9f\x01\x86\x67\x80\x6d\x9c\x93\x9d\x52\xf5\xd5\x95\xda\x5c\xc9\x8e\xd8\x58\xc8\x76\x5d\x64\xd1\x93\xc8\x36\x1a\x99\xcc\x75\x0d\x95\xba\x4e\xeb\xc6\x6d\x74\xb8\x53\x29\xb6\x7f\xa2\x52\x16\xa5\x36\xd7\x50\x29\x0b\xd9\xae\x8b\x2c\x7a\x12\xd9\x46\x23\xdb\x51\x9a\x8c\x46\x39\xa5\xe5\xf1\x58\xcf\xe9\x14\x16\xc3\x1d\x1e\x0b\x52\x40\x30\xc7\x63\x26\x77\xec\x1b\x52\xd2\xa8\x99\xdb\x0a\x6e\xd3\xc0\x45\x12\xae\xb2\x17\xab\xdf\xa4\x1e\x91\xe8\xfe\x90\xc5\x29\x75\x40\x21\xe2\xcc\xf4\x75\x22\x3d\x67\x6b\x26\x21\x77\xe7\x6e\xe3\x59\x43\xce\x12\x06\x56\xad\xd7\x1e\x7e\xfc\x14\x33\x31\xde\x2f\xe1\x3f\xd7\xc7\x8e\x3e\x7e\x82\x85\xf8\x87\x77\x67\xfe\xcb\x99\xd0\x17\x9a\xf5\x7c\x57\x67\x59\x71\x8a\x0a\xfc\x0c\xb1\xb3\xe9\x38\x95\x2c\x54\x99\xee\x65\x65\x3b\x96\xeb\x6b\x58\x5c\x5f\x9f\x69\x73\xcf\xb3\x29\xf9\x3c\xee\x8b\x5e\xdc\x17\xa7\xb8\x2b\x1b\x37\xeb\x34\x53\x1f\x69\x6a\x7d\xc1\x5f\x91\x26\xa0\xf1\xe0\x49\x3c\x72\x8f\x67\x19\xf0\xfc\x66\xfb\x91\x91\xae\x1f\x5f\xc3\xc1\xd2\x86\xfd\x15\x2d\xf6\x67\xed\x48\x2d\x95\x2f\x53\x3b\x56\xa6\xf6\xb6\xea\xcc\x65\xe8\x93\x92\xfa\x24\xa4\x1e\x58\xb8\x0c\x51\x21\xfb\x2b\xbe\x36\x67\x13\xe3\x02\xcf\x8c\x1a\x3e\x5d\xa0\x78\x4c\x0b\x3c\x29\x24\x3f\x4c\x17\xf1\xa4\x18\x97\x92\x27\xa6\x8b\x78\x49\x56\xf2\x67\x5c\x02\x6b\x4c\x60\xb4\x17\x8d\x41\x73\x6e\xf4\xd2\x11\x7e\xdc\xd1\x98\x14\x74\x52\x90\x92\x4e\x67\x66\x26\xc8\xc9\x57\x5c\xc9\xa2\x29\x0d\xc7\x85\x1c\x2d\x92\x02\xa0\x86\xd2\x75\x8c\x69\x48\x77\x63\x24\xb3\xe2\x26\x5f\x55\x73\xe2\xdc\x14\x16\xb5\x38\xb1\xb0\x38\xb1\x38\x61\x9e\xa2\xc3\x3c\x57\x93\x0d\x1e\x6f\x48\xae\x2c\xbb\x4f\x38\xb1\xb0\x38\x71\x07\xd9\xea\x49\x64\x91\x46\x66\x71\x62\x61\x71\x62\x71\xc2\x3c\x45\x87\x79\xda\x95\xea\xe1\xc4\xc2\xe2\xc4\x1d\x64\xab\x27\x91\x45\x1a\x99\xec\x2d\xd8\x3b\xf5\x0a\x0f\x42\x73\x17\xc2\x20\x90\x61\xe8\x0f\x0f\x93\xcd\x35\x65\x4a\xe7\xbb\xd2\x21\x5c\x73\x9d\x4e\x26\x95\x6a\x49\x1c\x42\xb3\xa2\x76\xfa\xcc\xe2\xe5\x4c\xe9\xa1\x57\x3a\xf4\x29\xd4\x60\xb8\xf9\x09\xd4\x32\xbd\x31\x2c\x59\xd3\x9c\xdc\xd3\x68\xb6\xb9\xa2\x2b\xb9\x5e\x98\x82\xae\x55\x41\x73\x94\x53\x95\x69\xb2\xc1\x67\x40\x2a\x8b\x21\x2b\x6c\xc1\x0a\x16\xae\x95\xc9\xbb\xb9\x36\xd5\x45\xd1\x93\x99\x57\x3a\xb3\xa4\x9b\x2c\xf8\xda\x10\xef\x4a\x11\xcf\x14\xcc\xf6\x4f\x14\xcc\xf6\x38\x58\xc1\xe2\xb4\x32\x79\x37\x57\xa6\x0b\x74\xc1\x7d\x99\x57\x3a\x33\xc9\xe1\x86\x6e\x87\x50\x6b\x43\xa8\xcd\x29\x11\xf3\x4f\xa4\xd5\x04\x5e\x61\x4c\xa2\x21\xbd\x07\x96\xf5\x34\x48\x27\xed\xde\x4a\x83\x33\xa0\x36\xfb\xed\xb2\x54\x3c\x83\x45\xa4\xc3\xa4\xe5\x52\xd1\x85\x9c\xd9\xf2\x25\xe2\x60\x65\xab\xcc\xf1\xcd\xad\x06\xcb\x87\x43\x4b\xc4\xac\x75\xf0\x70\x02\xa4\x6c\x15\xd5\x4f\x41\x5b\xc5\x82\xad\x60\x4c\xbd\x59\x7c\x55\x34\x1c\x77\x32\x9d\xc5\xe3\x31\xd6\x56\x7e\x5e\x23\x64\x2a\x25\x7a\x51\xdf\x0a\x50\xb2\x66\x32\xa6\x85\xed\x3d\x41\xa9\xa9\x4d\xd4\x22\x59\x92\xd0\xfa\x92\xf2\x66\x4a\x13\x4a\x69\x07\xcf\xc4\x42\x32\x07\x9f\x03\x56\x26\x2b\x6d\x69\x8c\x0f\x4a\xc3\x22\x69\x68\x18\x32\x65\x75\x48\x9d\x9c\x42\x0b\x4a\xb8\x9a\x25\x43\xa1\x09\x19\xb7\x42\x44\x32\x01\x46\xcb\x4a\x89\xca\xa6\x98\x99\x09\x50\xd1\x50\x5d\xdd\x8b\x38\x95\x13\xce\xa6\xe4\x9d\xec\x9e\x3a\xcf\x4e\xf6\x96\xec\x2e\xcb\x63\xc6\xc9\xc1\xaa\xb9\x06\xfe\x9b\x45\x16\xb5\x08\x6b\xa4\x8d\x90\xd2\xbb\x26\x9b\xb2\x4f\x2f\x97\x8b\xde\xcb\xe5\x82\x4e\xf8\x27\x2f\x97\x9f\x02\x9c\x4d\x2b\x23\x37\x41\xbc\x5c\xe0\xe6\x6d\x4f\xe4\xfa\xf4\x4e\x4a\x06\x12\xa4\x16\x0c\x64\x62\x05\xf7\x5c\x67\xa8\xeb\x28\x1f\xec\x69\x1f\x9b\x01\x27\x1a\x97\x01\xc2\x92\x09\x42\xea\xcd\xc2\xe6\xe6\x7f\x68\xbb\x34\x08\x97\xa3\xd1\x77\x48\xfe\x92\x04\xf6\x37\xf0\x33\x5d\x36\x05\x90\xad\x21\x50\x73\x31\x9e\x74\x29\x8b\x2b\xdc\x9e\xa3\x82\x88\x71\x87\x08\x84\xf5\x89\x63\x9f\x98\xb5\xa3\x91\x1c\x2a\xcd\x6e\xf1\xdd\x53\x5b\x42\x65\xa1\xde\x50\xa2\x6c\xa4\xa3\xb0\x25\x1d\x29\xc3\xd3\x7a\x32\xee\xc6\x34\xac\x2f\xe0\x2e\x76\x52\xb6\x29\x17\x3b\x98\x74\xca\xb7\xd0\xf1\x98\x5f\x65\x4a\xbb\x95\x5f\x67\x4a\x51\xb6\xb9\x8a\x55\xcc\xe6\x3a\xd6\xe6\xdf\xed\x25\x34\xa7\x99\x61\xa3\x1b\x1a\x1b\x39\x3c\x25\xc6\x2b\x1e\xa5\xc9\x7c\xeb\xb2\x22\x44\x39\xd9\x10\x41\x3c\x52\xcc\xb5\xb4\x1b\x4c\x9f\xe9\x10\x19\xfa\x38\x48\x90\x72\x30\x24\x48\x21\x49\x15\x26\x59\xc9\x75\x21\xac\x23\x2a\x32\x62\xc4\xa6\xd6\x4e\xbe\xfa\x0d\x52\x7e\x2d\xd2\x77\xef\x2f\x75\x64\x7a\x4b\xd2\xd4\xd3\x9b\x34\xbb\x70\x57\xb9\xfe\xd3\xf6\xa6\xda\x5d\x00\x9f\x5c\x60\xd2\x6c\x03\xf4\x59\xfa\xd9\x74\x66\x4f\xd2\xf8\x73\x1b\x82\xae\x8c\x5e\x28\x5b\xf2\x78\x1c\x9f\x4d\xc9\xf0\x64\x29\x20\x59\x57\x97\xda\xc6\x38\x7d\x1a\xe3\x53\xf8\x7e\x8b\x64\x7f\x8a\x53\x4e\xe5\x7a\x5d\x03\x18\x4c\x3c\x32\xf4\xfb\x2b\xdc\xa3\x1d\xf9\xae\x3b\xc2\x95\xd7\x29\x6d\x64\xa3\x5c\x4f\x91\x15\x59\x93\x7b\x72\x4b\x0e\xb3\x70\x8e\x6e\xe9\x9a\xc2\xdd\xe7\x95\x14\x9d\x23\x2a\xc6\x29\xd9\x50\x31\x2e\x08\xca\x29\xc7\x57\x68\x4b\x19\x1e\x8d\xd0\x81\xe6\x24\xa7\x5b\xb2\xa5\x07\x09\x0a\xb7\xa6\x7d\x8c\x03\xb4\x32\x08\x6e\x25\x82\x2d\xe5\xe3\x94\xe4\x94\x4b\x04\x11\x15\xf8\x0a\x6d\x0c\x82\x88\x44\x74\x43\x36\xf4\x20\x41\xe1\xc6\xb5\x8f\x31\xc9\xcd\xe4\xd8\x9a\xc9\x11\x5d\x25\x66\xba\x24\x66\xba\x28\x20\x70\x71\x06\x21\xa8\x2e\x26\xb9\xca\x33\x1a\xa1\x9c\x42\x48\x55\x8b\x6c\x14\x8a\xd1\x08\x6d\x28\x84\xa0\x76\x98\x44\x0a\x23\x48\x41\x10\x52\xb5\x20\x5b\x3d\xeb\xb6\x72\x02\x26\x7a\x02\x92\x5c\xc7\xe6\x98\x44\x3a\x36\x82\x2b\x30\xa8\xb4\xb7\x5c\x68\x43\x22\x4c\xca\xe6\x68\x67\x4b\x22\x92\x4f\xb6\x64\x33\x89\x30\x26\x3b\x50\xcc\xad\x8e\xc7\xf5\xf1\x78\x7f\x3c\xde\x62\xc8\x6f\x4f\xff\xd2\x48\xd0\x5b\xb2\xc1\x64\x35\x2f\x8d\x04\xb4\x25\x11\x0e\xac\xd4\x08\x93\xfb\x26\x35\x6f\xa5\xca\x2f\xb2\xb6\x53\x37\xad\xd4\x0d\x26\xb7\x36\xe6\x4d\x0b\xf3\x46\xd6\xa2\xd1\xe6\x35\x23\xea\xaf\xdd\x27\x56\x04\xb4\x13\xce\x21\x33\xe3\x73\xde\xf8\xf7\x51\x69\xca\x6e\x57\x27\xfd\xdd\x8e\x54\xb7\x3c\x14\xfb\x88\x3b\x7e\xed\x58\x6d\xa0\x14\xbb\x3d\xc6\xaa\xd9\x3c\x0b\xdc\x0b\x12\xdb\x4f\x75\x90\xd8\x32\xe4\xad\x0e\x6e\xc9\xc5\x57\x4c\x30\xfa\x96\x40\x78\x97\x7f\x53\xc4\x11\xfd\x81\x1c\xc0\xec\x81\xfe\x4c\xe0\x18\xfd\x87\x84\x85\x7c\x93\x25\x91\x6d\xc5\xd6\x78\xe1\xa8\x14\x94\xf2\x91\xdc\x03\x50\x3b\x47\xae\x0c\xba\x4c\xa8\x9b\xdb\x3d\xc0\x2b\x09\xa4\xae\xe6\x9d\x26\xae\x65\xa2\xbe\x65\x77\x9a\x7a\x2f\x53\xb3\x13\xc4\xca\x94\x65\xa7\x53\x6a\x4f\xfc\x03\xae\xaf\xd7\x6b\x3e\xcd\xd5\x4d\x7d\x7d\xbd\x4e\x57\x15\x88\x73\x5a\x52\xac\x93\x5f\xef\x79\xd9\x2d\x4a\x58\x4f\xea\xe8\x8b\x5f\x4f\xb8\x6c\x31\xee\x11\xc4\x82\x59\xf7\xb3\x90\xb2\xeb\x98\x33\x37\x0d\xc0\xf4\x5f\xd9\x7b\x50\x7d\xa7\x57\x97\xfc\xb7\x6e\xd1\xba\xc4\x8d\x4e\xff\xe9\x89\xf4\x48\xa6\x87\xd3\x9c\x7e\x20\x07\xb8\x22\xf7\x94\x85\xe9\xd3\x9e\x62\x94\x95\x8a\x76\x16\xc3\xb4\x3d\x21\x4a\xa9\x76\x1a\x63\x4c\x97\x16\xe9\x72\x34\xf2\xa9\x6c\x8b\x49\x36\x76\x24\x32\x0d\xe3\x47\xa5\x6b\xa7\x6a\xaf\x02\x71\xda\x42\xe5\x09\x37\x33\xaa\xe0\xe8\xb4\xe0\xc3\xa7\x0b\x3e\x9c\x16\x2c\xb2\xbc\xa7\xdc\xc6\xb6\x15\x68\xa8\x9d\x9a\xf6\x50\x31\x81\x71\x68\x9c\xb5\xd2\x6f\xc8\xc1\xdd\xa5\xcd\xf7\xef\xc8\xc1\x15\x45\xbc\x5e\xf3\xe2\x47\xdb\x43\x2b\xfd\x49\x12\x5d\xae\x56\xdd\xe1\x5f\x5f\x1e\x54\x77\x98\xeb\x17\x26\x36\x8b\x3b\xc4\xc1\x8e\x64\xe2\x2f\xa1\xbe\x63\xee\xee\xb1\xbe\xc5\x00\xaf\xa6\x88\x2c\x6f\xe0\x23\x05\x7f\x68\xc1\x1f\xb0\xba\x8f\x21\xc1\x2b\x59\x73\xe3\x6c\x86\x7e\x94\x13\x9d\x4b\x26\x76\xb0\x5b\xf9\x11\x61\x70\x50\xb0\xd5\x56\x4e\xc8\xc9\x93\x4c\x38\xd8\xe5\xdb\x5c\x1c\x24\x17\x51\xde\xb3\xad\x43\x80\xdf\xe8\x5b\xf6\x56\x45\xbc\x96\xe1\x03\xd5\x6e\x95\xb5\x0f\xf1\xd3\x39\x2b\x1a\xa7\xe2\x54\xd4\x17\x04\x66\xb5\xd3\x71\x39\x83\x48\x68\x7f\x41\xbf\x64\xd9\x5d\x49\x6f\xed\xeb\x6f\xcd\xfe\xf3\x51\x71\xa9\x80\x55\xda\x21\x6b\xd6\xe3\x90\x35\x5b\xa4\xcb\x99\x72\xf3\x8e\x0e\x44\xc8\x8d\x94\x3e\x28\x86\xbb\x9c\xb5\xff\xa0\xa4\x49\xe8\xf8\xb2\xd4\x6f\x86\x35\x80\x0c\xa4\x49\x7d\x21\xad\x1c\x8d\x90\x71\x66\x4a\x4d\x9c\xf1\xa7\xa0\x9d\x11\xd5\xee\x3f\x5b\xdf\x9d\x15\xc0\xbe\x33\x84\x8d\xb3\x52\xe6\x10\x77\x3a\xc5\xad\x1b\x1b\x06\xf5\xa1\x83\xfa\xf0\xdf\x43\xad\x6a\x59\x1f\xa4\x5b\x35\xaf\xe3\xcc\xa1\x56\x1d\x71\x3c\xb6\x5a\xd7\xad\x67\x1b\xd9\xe1\x37\x20\x3b\xf4\x21\xeb\x1e\xa4\x01\xb6\x6e\x24\x6d\x35\xb8\x9d\xb7\x5d\x8f\x76\xd4\xbf\x4b\x36\xfd\x76\x14\x98\x03\xaa\xd7\xb0\x9a\xbb\x61\x70\xc5\x2e\x9e\x8f\xe3\xfa\xf6\x91\x93\xef\x1d\xe2\x38\x38\xf0\xcf\x49\x48\x1f\xe1\x96\x4d\xd0\xca\x26\x63\x64\xbe\xf8\x57\x1e\x58\x36\xf4\xee\xcb\x67\x25\x26\xf7\xac\x88\x59\x2a\x5a\x39\x74\x9c\x83\xc9\x83\xb2\x23\xb1\x13\x55\x94\x83\xc9\x8a\x6d\xe3\xe4\xd0\x4a\x53\x51\x0e\x56\x0b\x44\xa6\xba\x9e\x97\x8d\xcb\x28\x33\xb3\x60\x4a\xc1\x49\x3d\x00\x48\x46\x3b\x1a\x0d\x8b\x16\x39\xad\x2f\x5a\x18\x01\xbe\xc7\x25\xb2\x12\xe6\x0b\x4c\x1a\x64\xb4\x20\x05\x5c\x59\x06\x34\x32\xd0\x64\x7b\xac\x48\xa8\x53\xb1\xfe\x35\x56\x46\xc8\xfe\xb4\xca\x54\xb1\x52\xd8\x33\x2e\x9a\xd0\x49\x1c\xb5\x28\xeb\xbb\xfe\xe5\x33\x0d\x01\x6a\x26\xed\x1f\x2d\x53\xc3\xf7\xd3\x04\x39\xfc\xc7\x04\x39\x34\x04\x39\xfc\xff\x4b\x10\x33\xbd\xd3\xec\xa3\xbe\x38\x75\xc2\x2d\xca\x0e\xa7\x28\x69\x27\x93\xc4\x72\xe8\xc7\x72\xe8\x60\x39\xb4\xb0\x1c\xba\x58\xf6\x53\x19\x63\xca\xe3\xe5\xc2\x5f\x3e\x35\xd2\x0c\x70\x33\xe0\xe4\x7a\x6a\x9c\x29\x81\x2d\x0d\xa9\xdb\x32\x35\xf6\x8a\x2d\xd4\x6e\xe3\x53\xb0\x0b\x09\xfb\x29\x1b\xd2\xb8\x17\x84\xb6\x36\xb5\x3c\x3c\x59\xcb\x83\xae\xe5\xa1\xae\xe5\xe1\xb4\x96\x4a\x97\x56\x97\x7e\x68\xd7\xf3\xf0\x74\x3d\x0f\xed\x7a\x1e\x7a\xeb\xd9\x30\x3a\x1e\xbd\x2e\x38\x2b\x1b\xee\x68\x4c\xf8\x68\x0f\x54\x6f\xd6\x0e\x77\x6d\x99\x00\xf6\x21\x51\x1b\xa6\x59\xa2\x34\x9f\x9d\x55\x59\xfb\x4f\xd7\x87\x7f\x1a\x46\x02\x2b\x45\xc1\x13\xd0\x5a\x8b\x60\xa0\x24\xfc\x2d\x2b\x9e\x82\x06\xf5\xa1\x82\x30\x7e\xda\x13\x4b\x8d\x03\x4d\xd1\xa0\x4d\x6c\x0b\xa4\xc9\xd6\x7e\x1e\xc1\xce\xda\x4e\x39\x01\xc5\x96\xb3\xa0\x36\x17\x06\x4e\x73\x83\x36\x24\x1d\xfb\xd8\xc8\x28\x16\x23\x6e\x65\x3c\x9c\x66\x8c\xba\x19\x0f\x76\x46\x50\x4d\x0f\xe2\x74\x70\x8b\x13\x25\x6e\x2d\x76\xcb\xd1\xa8\x09\x37\xfe\x72\x6e\x17\xbb\x25\x95\x7f\xcc\x16\xa8\x01\xc2\x2d\x97\xae\x5a\xd8\x26\x8b\x64\x89\x2b\x54\xb4\xbc\x17\xd4\x5e\x08\x94\x67\x0a\xbe\xcd\x27\x72\x47\x69\x79\x23\x20\x4e\x29\x98\x88\x43\xb8\x10\x05\x4b\x95\x99\x05\x0e\x1e\x8d\xba\x51\xc4\x29\x78\x02\xee\x69\x1d\x3c\x2b\x69\xca\x1f\x06\x0c\x29\xb7\x17\xb7\xac\xe4\x8e\x14\xf9\xc2\x56\x74\xa6\x04\x78\x48\xd9\xd2\xfa\x61\x1f\xb0\x35\x36\xe1\x1d\xe5\x28\x34\x5b\x5d\x6c\xfc\x3c\x1a\xe7\x44\xca\x8f\xa8\x91\xa4\x67\xb0\x35\xa9\x05\x71\x24\xc5\x58\x7d\x25\x03\xcf\x5a\xa0\xe4\x00\xae\x70\xde\xa2\x14\x93\x1f\x10\x26\x3f\xb7\x5d\xa6\xeb\xb9\x51\xbf\x24\x01\xee\x61\x6b\x5f\x94\x08\x5c\x51\xf6\x39\xa2\x6c\x66\xa1\x79\x90\x62\x34\xda\xa9\x0f\xf4\x7b\xd5\x31\xcd\xc3\x0a\xca\x29\xa5\x6e\x0a\xc8\xee\xdf\x2a\xcb\x9f\x5a\xe7\xf1\x4f\xb9\x83\x39\xad\xcb\x5f\x54\x23\x20\xc6\x21\xbc\xd7\x25\x96\x37\xa4\xbc\xc9\xd3\x72\x5e\xfa\xe7\x7f\x15\xab\x41\x3a\xf4\x5b\x78\x7e\x2f\xf1\x1c\xdc\xb8\xbc\xe1\x89\xdc\x65\xa7\xeb\xe3\x51\x23\xd1\x5e\x38\x3f\x51\xb5\x9a\x40\x2d\x94\x7f\x91\xdb\x0d\x52\xef\x18\x1a\xed\x02\xc9\xe4\xc6\x92\xad\xf9\xdf\x26\x85\x6d\x6c\x4b\x4a\x1d\xff\xd3\xa4\x68\x0c\x7b\x49\x48\x3f\x20\xb5\xe7\xcb\x60\x27\x57\x56\x78\x16\xaa\xfc\x06\x0f\x51\xdf\x3f\x99\xfc\x72\xa8\x88\x22\xf9\x23\x3f\xc8\xbd\x83\x0a\x91\xd0\xdd\x72\xc1\x54\x9c\x0e\xcd\xd4\x35\xc1\xae\x75\x43\x23\x78\xd6\xec\xf9\xe4\xa5\x11\x12\xd2\xf2\x59\x39\xf6\xf5\x76\x4e\x73\x8b\xb8\xc7\x1f\x58\xbc\x42\x0c\xc5\x6a\x5b\xad\xca\x93\x1f\x24\xa7\x5b\xbd\x90\x6e\xe8\x56\x2f\x56\x11\xdd\xf6\x38\x5e\x5e\xd1\x5c\xf9\x89\xc5\x64\x4d\x37\x10\x14\x98\xdc\xd3\xf2\x2c\x57\xe2\x33\xb9\xa5\xe5\xd9\x46\x85\xe1\xce\x47\x1f\x9a\xf8\x57\x4e\xf2\x27\x7d\x16\x81\xeb\x82\xee\x43\x00\x98\x6c\x3e\x95\xe1\xb6\x27\xc3\xd6\x32\xa2\x3b\x1e\xb7\xf6\x31\x8a\xe5\xd7\xb9\xd6\x59\x14\x63\x9a\x99\x3b\xfd\xd1\xa2\x58\x92\xbd\xfc\x69\x99\xb7\x1d\x46\xa3\x21\x3a\x4c\x56\xd7\xf7\xc7\xe3\x61\xb2\xba\x9a\xdc\x1f\x8f\xfb\xc9\xfa\xfa\x16\x7e\xae\x26\xb7\x9a\xac\x6f\x1b\x1f\x7c\x39\x6c\xeb\x0f\x78\xc2\x31\xb9\x6b\xa2\x37\x10\xbd\xc7\x13\x81\xc9\x03\x7d\xfb\xec\xed\xf8\xee\xd9\xdd\xec\xe1\x4a\xf9\x4f\x7f\x20\x3b\xba\x48\x49\x71\x96\x2d\x31\xd8\x74\x6c\xed\xa3\xc0\xa1\x56\x77\x7f\x20\x37\xcd\x21\xe0\x13\xc7\x75\x1f\x7a\x8f\xeb\x3e\xd0\xc9\xf6\x93\xc7\x75\xa7\x00\x67\x53\xd0\xf3\xdc\xd0\x0f\xe3\x4e\x0a\xe9\xa5\x63\x97\x86\xb2\xc2\x1f\xe1\x63\xba\x9c\xd5\xd4\x44\x30\x18\x4f\x7c\x4c\xaf\xae\x9a\x5b\x26\x1f\xc9\x01\x83\x4d\x42\x6d\xc4\xa3\x62\xd6\xd7\x74\x3f\xfe\x30\x1a\xad\xaf\xe8\x7e\x7c\x13\xac\xae\xe9\x41\x7e\xae\xae\xe8\x61\x7c\x03\xc9\x56\x86\x3d\x06\x40\x0b\xe9\x1e\x83\xfb\xfa\x9a\xcc\xb8\xaa\x8c\x42\x69\x37\x47\x29\xdd\x2d\xbc\x25\x29\xe8\x6e\xe1\x2f\x49\x06\xb3\xa4\x7f\x18\x3f\xd6\xb1\x41\x3f\x90\x5b\x26\x71\xc8\x51\xf1\x2c\x23\xa8\x18\xfb\xf8\x59\x86\x89\x04\x7a\x97\x46\x7c\x1f\x14\xe6\xa1\x29\x98\x87\x2a\xac\x52\xd2\x4a\xb9\xf2\xad\x50\x46\x4a\x92\x62\x7d\x23\x18\x6d\x35\xbb\xa9\x95\x48\x5b\x23\x7e\xec\xeb\xdb\x2a\xd6\x94\x5b\x78\x4b\x3c\x56\xac\xcd\x56\x43\x6d\x35\x93\x3a\xc5\x72\xe8\xc5\xe2\x03\x16\x91\xe5\x8d\x6e\x4a\x4a\xb1\xca\x3f\xad\xfd\x14\x52\xa3\xbd\x51\x7e\xa4\x5e\xdb\x1e\xa4\xf4\xcd\x99\xd7\x8b\x7c\x39\xdb\x40\xbe\x21\xe5\xc7\xe3\x76\x34\xda\xe8\xe2\x29\x35\x15\x91\x71\xa6\x05\x94\xb6\x5b\xd4\xa4\xf9\x9d\x34\x7f\x79\x3c\xfe\x0e\x19\x6c\x44\x83\xe1\x6a\x3b\x1a\x7d\x53\xb7\x91\x58\x39\x08\xc7\x95\x30\xea\x3f\xc4\xc9\x22\x24\x5b\xdb\xa5\xf3\x4f\xb5\x7a\x2b\x71\xad\xc7\x9c\xdc\xde\xb7\x9c\x66\x13\x7f\x48\xf9\xfc\xdb\xe3\x11\x7d\x4b\x4b\x2e\x8c\xeb\xe9\x3f\x11\x8e\x71\xf0\x27\xfb\x20\xeb\x4f\x06\x2f\x11\xc0\xaf\xbf\xd5\x2a\x38\x73\x34\x59\x0b\x18\x24\x7f\xf2\x5c\x9f\x53\x6f\xc6\x6d\x0a\x73\x8c\x04\x7d\xbd\xe0\x4b\x6c\x0b\xbe\xca\xa1\xe9\x1f\x91\x30\xcd\xd7\x07\xe1\x38\xf8\xc3\x69\xdc\x2c\x6f\x8e\xdd\xea\xeb\xa6\xba\x99\x64\x91\xdb\xa4\xf9\xc6\xac\x51\xf1\x0a\x9d\x1c\x67\x48\xd1\x86\xd3\x58\xd6\xe5\xf4\x11\x21\x61\x5e\xd6\xe4\xbd\x93\x6a\x26\xfa\x12\xf4\x44\x4a\x9f\x09\x92\x3e\x43\x62\xec\x63\x5c\xa9\xe5\xfc\x6f\x70\x71\x73\xa6\x3c\x09\xa0\xd7\xfa\x8e\xb0\x9e\x58\x9c\xa8\xd9\x29\xe0\x65\x90\x80\x55\x70\xeb\x13\x07\xec\x78\x44\xaf\x17\xc5\x12\x86\x21\x1d\xfa\x56\xc3\x7e\xa7\x2e\x82\xd6\xf7\xff\xea\x7b\xe4\xc2\x1c\xfa\x80\x54\x05\xce\x2a\x7e\x52\xbe\xb5\xfe\xad\xf6\xb3\x7f\xa7\xfd\xec\x99\x20\xcc\x6e\x7f\xda\xb4\x1f\xee\x7c\xa2\xd7\x6e\x99\x2b\x52\x11\x5f\x35\xb6\x69\xda\xdf\xfa\x1e\xe9\x7f\x7d\x72\xbd\x3b\xa5\xaf\x17\x4c\x2d\x7c\xf5\xc4\x94\x54\xb0\x66\xa4\x9a\x87\xa9\x35\x0f\x81\x4b\xd4\xaf\x52\xa9\xc0\xc4\x6f\xca\xfe\x43\xeb\x4d\x55\xc5\x5f\x99\xe2\xaf\x42\x8b\x1f\x31\x15\x66\xaf\x4c\x1b\xaf\x38\x35\xd9\x3a\x1b\xaa\x79\x37\x22\x68\x6b\xf7\x44\x8f\x62\xef\xd2\xd6\xeb\xc1\x21\x1f\x4a\x8d\x3d\x43\x6a\xec\x19\x0a\x73\x64\x5b\xa8\xe3\x57\x6c\x8c\x92\x44\xc7\xc7\xa9\xe8\x71\x70\x3a\xcb\xad\x93\xf1\x52\xce\x68\xfb\x9e\xc0\x4c\x19\xdb\xfb\xee\xe5\xb3\x72\x96\x6a\xb3\x88\x14\x93\x42\x1f\xc5\x16\x72\xc2\xdb\x67\xa7\x8d\x89\x84\x68\xdb\x15\xcc\x73\x30\x98\x90\xc2\x61\x48\x3c\xd2\x36\x93\xe8\xc0\xa2\x9c\x28\x38\x38\x53\x6e\x59\x4d\xe4\xd6\x55\x9d\xba\xab\xfe\x88\x6c\xe1\xf3\xff\x45\x57\x90\x8c\x16\x46\x9a\x11\x4f\x49\x33\x69\xaf\x34\x93\xd2\x89\xf8\xa4\x34\x73\x0a\x70\x36\xad\xec\x5e\x12\x5d\xa3\xa8\x76\xa7\x15\xe4\x3b\x04\xe3\x15\x46\x2b\x5b\x4c\xe1\x71\x96\x94\xa4\xe3\x0e\xda\x9e\xbd\xcd\x20\xab\x30\x31\xc3\xdb\x0c\xee\x9c\x88\x13\xf3\xa1\x6e\x1d\xac\x49\xfb\xf7\xe6\x88\x5a\xb2\x9a\xae\xb7\xa8\x9a\x2b\x89\x7a\xbb\x2f\xa5\x6e\xf5\x0e\xf1\x77\x71\xca\x59\xf1\x8d\x1c\xaf\x3c\x15\x48\x56\xdb\x23\xcc\x18\x3c\xeb\x6e\xa9\xd5\x09\xf1\x55\x32\x1b\x8f\xe3\x66\xb8\xab\xe4\x45\x0c\xbc\xc0\x94\x5c\x3f\x81\xa1\x5d\x69\x84\x1d\xad\x7a\x61\x94\x25\xa5\x7b\x0b\x7d\x94\xf2\xb2\x04\xc1\x36\x6c\x3d\xd1\x66\x27\x63\x73\xe8\x57\xba\xda\x27\x14\xdc\x87\x66\xcf\x9a\x08\x4c\x4a\xb8\x22\x5c\x1f\x88\x67\x2e\x8b\x94\x3f\x82\x1b\x91\xe5\x28\x3e\x43\xc9\xc4\xc7\xa4\xac\xfd\xbe\x64\x55\xc5\xdd\x55\xea\x46\x5c\xb0\x70\x73\x3c\x22\xeb\xab\xef\x68\x1c\x5e\x06\x66\xe1\x06\xd9\xfd\xa8\xde\xd2\x85\x27\xe0\xbf\x07\x9f\x22\x9d\x08\xad\xd5\x78\xb3\x89\x93\x08\xde\x19\x04\x3f\xb1\x60\xd4\x59\x3f\x33\xdd\x3d\x32\x33\xeb\x0b\xbf\xa2\xde\xf1\x28\xae\xa8\x77\xea\x9c\xe8\x5d\x7a\xcf\x92\x38\x1a\x44\xf1\x96\xa7\xa5\xdc\xf8\x0c\x56\x59\x31\x90\xdb\x60\x32\x80\x93\xb6\x01\x1d\x38\x63\x3e\x76\xc8\x40\x1d\xb6\xc1\xb7\x30\xc6\x4b\xf6\x3b\xc7\x24\x6d\xbd\x70\x4c\xf4\x83\xc7\xcd\x0b\xc1\xea\xc5\x60\xc0\x3a\x94\x9c\xde\xbc\x10\x4c\xf9\xb3\x82\x30\x17\xce\x2b\x4c\xcc\x18\x8e\x37\x9a\x0c\x94\xeb\xa7\x83\x55\x2d\x86\xe0\x01\xc1\xbc\x2b\x4c\x85\x85\xc0\x44\x59\x18\x4c\x14\xdc\x7b\xab\x05\x8f\xd4\x88\x41\xa9\x1e\x30\x05\x29\x70\xd5\x22\x29\x88\x47\xb4\xdb\x4f\xba\x81\x2a\xb5\x76\x40\xd1\xd4\xd5\x2e\xb4\x83\x50\x39\x85\xe8\x39\xd6\x6c\x3f\x78\xdc\x38\xcc\x1c\xc4\xe9\x80\x63\xb0\x0a\x09\x59\x92\xc0\x89\xa6\x59\xde\x20\x93\x7e\xbe\xe2\x3b\x76\xe0\x05\x62\x70\x2e\x20\x57\xd5\x7a\x92\x4a\x04\xa9\xbb\x89\x23\xd9\xd2\xc2\xc2\x54\x90\x0c\x1b\xdb\xb0\x62\x91\x35\x59\x12\x99\x25\xb6\x20\x63\x92\x60\xcb\xc8\x8f\x84\xe0\x8f\xa2\x56\x2a\x97\x60\xde\x57\xd2\x10\x7c\x48\x8e\xc7\xb8\x74\x19\x28\x0e\xe6\xc6\x09\x06\x8f\x8e\x47\x94\x6a\xc7\x77\xa8\x1e\x30\x8d\x97\x0c\x78\x3f\x0c\x07\x28\x34\x52\xc5\x6e\x32\x91\x72\x45\x93\x3e\x1a\xd5\xd9\xf4\xdc\x42\x18\xcf\x3c\x5a\x3f\xfb\x38\x1a\xe9\x27\xd7\x64\xdd\xaa\x2a\x05\x81\x54\xae\x37\x2d\xfa\xdb\xd4\x6a\xbd\xcb\x69\x0d\x67\xd9\x0b\x0b\xb1\x9c\x59\x66\x39\xca\xb2\x4e\xcb\x67\x27\x0f\x58\x8f\x46\xa8\xe7\x55\x6b\x8e\x1c\xcb\x81\xe0\x97\x5a\x4f\xb9\x17\x83\xb6\xc6\xf2\xcb\xeb\xda\x31\x20\x3c\xd5\xde\xf7\x34\xbb\x7a\x6c\x55\xbf\xc0\x6a\xde\x5c\xad\x9f\x62\xb5\x0e\x09\x03\x47\xbb\x90\x74\xba\x0f\xe6\x56\xd8\x8d\xd3\x92\x17\xe2\xf5\x4a\xf0\x02\xd9\xf3\x16\x8c\x8b\xed\x96\x9b\xaa\x37\x35\x93\x2c\x50\x36\x03\x89\x7f\xb7\x96\xf6\x8b\xf2\xa7\xc4\x02\x77\x34\x7d\x1d\xf5\x2e\x5d\x65\xf4\xd4\xfc\x56\x8f\x5b\x65\x99\x07\x77\x9e\xa8\xe3\x8c\x19\x89\x69\x73\xb7\xb7\xbe\xc7\x3b\x4f\x15\x67\x18\x3b\x03\x67\x9c\xba\xfa\x90\x53\x7f\xa9\x53\x4d\xfd\x21\x69\x28\xd9\xc6\x99\xfc\x68\x4e\xb4\x64\x14\xa4\xeb\x93\x4f\x63\x56\x82\x92\xee\xbc\xd5\x2f\x1e\xf5\xc5\xd3\xc7\xca\x1c\xa6\xa0\x92\x26\x8b\x18\x20\x55\xc8\x4e\x0b\x69\xb9\x60\x46\x75\xb6\x3b\xed\x0a\xf0\xdc\xc9\x3e\xd1\x0d\xce\x96\xed\x27\xc0\x87\x1c\xad\x40\x9c\xbc\x7a\xf5\xea\xd5\x49\x07\xb4\x18\x87\xc0\x78\xd6\x47\xba\x9d\x2a\x07\x5e\x00\x8f\xcd\xf3\xdf\xc6\x85\x6e\x70\x2a\xb2\xa5\xa3\xd1\xae\x19\x2d\x29\x26\xaa\x39\xf4\x51\x8f\xb5\x60\x57\xbf\x8b\x0d\xef\x55\x6a\x85\x64\xcf\xe3\xee\x92\x89\x6d\xe7\x28\xd4\xec\x7f\xab\x59\x6b\x68\x98\xf9\xd6\x30\xd8\xa0\x86\xd9\xb9\xd9\x4e\x68\xc7\x0e\x68\xe8\xe1\x06\x58\xa7\xa8\xee\x84\xa4\xfe\x12\xe9\xa3\xf2\x74\xa0\x31\x9a\x47\x5b\x0c\x9e\x0a\x93\x5d\xcd\x7d\xcc\xfa\x1f\xb6\x07\xae\x76\xc6\xdc\xd1\xb1\xda\xb6\xa4\x46\x9e\xb1\x7b\x01\x5e\x1f\xe2\xb5\x6d\x39\x3c\x67\x5b\x13\x6a\x66\x5c\x5a\x53\x9a\xcc\xc5\x84\xea\xda\x9d\x4d\x03\x2d\x9d\xc2\x85\x45\xd4\xa4\x60\x62\xdc\x4f\x53\x5a\xce\x99\x8c\xdf\x68\xb7\xf4\x41\xe3\x01\xbb\x54\xaf\x68\x84\xb5\xff\x49\xc3\xe1\xb7\x24\xa7\xde\x6c\x4b\x77\x8b\x7c\x39\xcb\xc7\x63\x0c\xca\xc1\x3d\x78\x1d\xda\xba\x07\x4a\x19\xb6\x9e\xee\x42\x5b\xcd\xee\x25\x0b\x9f\x6d\xe9\xa3\xfa\x52\x2f\x68\x2a\xe6\x1d\x0c\x7d\x52\x0f\x00\xcd\xaf\xe7\xf5\xb9\x88\xdc\x29\xa4\x1c\xe1\xa0\x8e\x21\xfb\x40\x90\x43\xc0\x2a\xb2\x53\xfb\x6c\xb8\x3d\x5d\x83\xcb\x11\x29\xc7\xb5\x75\xd0\xcc\xb0\x62\x3c\x56\x94\xc0\xc4\x91\xfd\x3b\x01\x11\xdf\x09\x92\xea\x64\x2d\x36\x3e\xcb\xed\xce\xb2\x0c\xfc\xeb\xbd\xb9\x36\xdb\x3c\x9d\xd6\xdc\xd2\xdb\x26\xb5\x73\xf3\x52\x2e\xa0\x89\xb5\x80\xca\x4e\x37\xbd\x9e\x2c\xca\xce\x89\x59\x68\x41\x86\x64\x87\x6b\x3c\x5b\x58\x52\xad\x75\x56\x76\xcb\x86\x6e\x4d\xb7\x6c\x6a\xc2\xfb\x55\xf3\x88\x8a\xf2\x69\xb2\xed\x1b\x5e\xaa\x5d\x9f\x42\xb8\x87\x95\x6e\x23\x3b\x19\xec\x7e\x9b\x12\xe4\x4a\xca\x5d\x29\x18\xb6\xf9\x71\xd1\xf8\xb8\xe7\x0f\x83\x14\x71\x49\x78\x46\x0a\x0d\xec\x2a\xef\x96\x25\x36\xb9\xdd\x7b\x5e\x94\x70\x14\xed\xb9\x2f\xdd\x73\xa7\x03\x47\x17\x4b\x02\x02\xf4\x49\x49\x9f\x91\xa0\x15\x1a\xfd\x06\x37\x01\xcb\xc8\xaa\x42\x0f\x71\x1a\x65\x0f\xee\x2f\x7f\xda\xf1\xe2\x80\x2b\xe2\xbf\xba\x08\xda\x02\x72\x0b\xa2\x55\x15\xad\xe2\x89\xd3\x58\xb4\x5c\xfa\x73\x75\x5c\x79\xfa\xf0\xa4\xca\x80\xba\xa7\x2b\x96\xb3\x4a\x78\xd8\x56\xbf\xe6\xa8\xbf\x8c\x30\xd7\xae\x55\xa3\x3b\xd1\x17\xa3\xec\x87\xc2\x47\x23\xae\x9e\x00\x87\x93\x59\x78\xca\x1b\x50\x51\xca\x4d\x09\x48\xbd\xe4\x5d\x1b\xb6\xb2\x0a\x09\xc2\x8d\xf9\x2a\x52\xcf\x3e\xa6\x4d\x39\x2d\x43\x77\x22\x19\x00\x6b\x3d\x78\x69\xbe\x48\x44\xd3\x7e\x1d\xf5\xaa\x2f\x81\xac\x41\x87\x45\x85\x75\x4a\x42\x6e\xe9\xe9\xc6\xf4\x40\xf3\xeb\x29\x3c\xec\xc5\xf4\x7b\x9a\x8b\xe9\xd2\xdd\x07\xf6\xd7\x01\x93\x3d\xbd\x07\x97\x77\xcd\xab\xb4\xe4\x2d\xbd\x9d\xfb\x81\x47\xee\xe8\xed\xdc\x0b\x7c\xf2\x40\x3d\xf2\x01\xee\xd5\x3e\x5c\xd7\x8f\xe1\x8e\x46\x1f\xae\xc1\xa8\x17\x1c\xf2\xcc\xd4\xcd\x70\x6a\x1c\x2a\x92\x87\xab\x06\x50\xcd\xf8\xcd\xe2\x61\xa9\x1d\xf7\x48\x56\x78\x95\xcf\xc6\xe3\x2d\x5e\xab\x1e\xde\x2c\x1e\xc6\xdb\x25\x9e\x3d\x8c\x69\x5e\x5f\x0d\xb5\x4a\x7b\x32\xe3\x6a\xf1\x01\x32\xca\x6d\xe7\x7a\xb1\x1b\x4f\x97\x54\x46\xdd\x2d\x31\xf9\x30\xa6\x51\x8d\xcb\xae\xec\xbf\x54\x89\x0f\x57\xab\x4e\x43\x56\x8b\x0f\x4b\x2c\x91\xab\x1b\x99\xf1\x0a\x15\xb2\x71\xe3\xb7\x4b\x92\x41\xe0\x6e\x49\x12\xa8\xc5\xdb\x25\x29\x75\x75\xe0\x72\x72\x41\x69\xf2\xd9\xd2\x65\x2b\xee\x96\x63\x0a\xc7\x83\x44\xd6\xa5\xdd\x92\xe2\x5a\x5d\x4c\xf6\x28\x7d\xf8\x2c\x59\x42\x5a\x56\x40\xc9\xfa\x12\xf3\x66\xf1\x30\xc9\x75\x47\xc4\x34\x1b\x23\x88\x18\xdf\x2d\x27\x19\x7e\x86\x92\x49\x81\xcf\x74\xd4\xdb\xe5\xa4\xc0\x64\x5d\x3b\xab\xd5\xa1\x78\x5c\x62\xb2\xa5\xd3\xa7\xea\x2f\x8b\xac\x2b\xfc\xb9\xc6\x7e\x68\x2a\xb6\x5a\x7c\x98\x44\xea\x55\xda\x72\x8c\xe0\x4b\xd6\xaa\xc4\xcf\x50\x31\x49\xf0\x99\x8e\x7a\xbb\x9c\x24\x18\x13\x43\xa5\x10\x28\x54\xed\x86\xf5\xd0\x1b\x8d\xac\xb1\x10\x62\xd9\xfc\xfd\x68\xd4\x02\xd8\x35\xa5\xae\xc1\xa6\x42\xfe\x85\xf0\x24\x57\x5f\x63\xdf\x7c\x8f\xfd\xbe\x51\xbb\xd8\x8d\xf3\xf1\x76\x29\x41\xc6\xdb\xe5\x4c\xe5\xa8\x33\x54\x95\x99\xdc\x74\x5d\x55\x92\x6d\xd6\x0f\x63\x1a\xf5\xf6\x23\x70\x15\x75\x52\x54\x91\x94\x6d\xb9\x14\xfd\x58\x78\xe7\x10\xcd\xcd\x03\xc7\x77\xa7\x4e\x05\x1c\xf6\x32\xf8\x8d\xef\xcf\x58\x6f\x19\x08\xdb\x43\x31\x3f\x13\x96\x62\x8a\x19\x09\x4a\x29\xa6\x4c\xbc\xa5\x05\x77\x4b\x51\xac\x44\xbc\xe5\xb8\x79\x52\x4b\xc7\x20\xe3\x56\x9b\x64\xbd\xce\x76\x07\x42\x6e\x1c\xcc\xce\x6e\xee\x78\x4e\x20\xc0\x87\x11\xe2\x32\x81\x63\x23\xad\x88\x31\x0f\x78\x65\xac\x9c\xe1\x7e\x3c\xb0\xd3\x6f\xb3\x5d\x51\x22\x90\x73\xaf\xfc\xe9\xac\xd9\x2c\x32\xba\x70\xfe\xc0\x52\x87\x38\x5f\xf3\x5b\x87\x38\xef\x59\xe1\x10\xe7\x75\x5e\x40\xf8\xe0\x10\xe7\x0f\xbb\x14\xfe\x26\x32\x7e\xb7\x76\x88\x73\xc3\x73\x87\x38\x1f\x42\xe1\x10\xe7\xfb\xec\xde\x21\xce\x57\x3c\x34\xbe\x16\xd5\x8a\x9c\xd2\x85\x73\x03\x19\xdf\x83\xd5\xca\xc7\x9d\x14\xf9\xff\xca\x23\x19\xde\xec\x64\x71\x45\x2c\x51\x31\x21\x33\x16\xb4\xbc\xf6\xa7\xf3\x72\xe2\x4f\x03\x4f\x0a\x83\xfe\x34\x28\x1b\xf1\x03\xae\xe5\x89\x9e\xd7\x32\x85\xf1\x98\xbf\xc3\xda\xbb\x80\x39\x04\xd6\xba\x52\xe6\x04\x5b\x49\xa1\x74\xa1\x57\x95\x03\xc2\x4b\x5b\x6f\x7a\xab\x01\x98\x02\x78\x9f\xa5\x62\xd3\x01\x89\x24\x48\x86\xcc\xb2\x04\x36\x3b\x0e\xb6\x21\x78\x0f\xc4\xa0\x0d\xb2\x71\x02\xf8\xfd\x56\x81\x96\xad\xc4\x77\x2a\xb2\x68\x45\x26\x3a\xf2\x04\xd5\xd6\x2a\x4d\xd7\x77\xec\x77\xab\xf4\xde\x06\x8a\xd3\x9d\x00\x77\x92\x36\xc4\x3f\x75\xcb\x91\x3d\xa4\x2d\x9c\x67\xe7\x78\xec\xb7\x72\xdc\x58\x38\x6f\x78\x98\xa5\x51\x17\xe7\xc1\x82\xf8\x7a\x97\x24\x3f\xc1\xb1\xdd\x17\xbe\xe7\xb5\xc0\x7e\xd2\x45\x77\xe0\x6c\x90\x5c\x82\x84\x73\x87\x6d\x9d\xc0\xc9\xb7\x8e\x9d\xf6\x83\x4e\x7b\xfd\xde\x09\x9c\x1f\xde\xb7\xd2\x1e\x6c\xd4\xd0\xdd\x55\x5c\x0b\xe7\x72\x46\x00\x0b\x75\xbe\x70\x28\xdd\xce\x13\x3a\xf4\x82\x3a\xb9\xaa\xaf\x24\x99\xc7\x2b\x9a\xd9\xfd\x84\xbb\x21\xfc\x08\x7b\xe6\x53\xf5\x29\x93\xd2\x8e\xba\x17\xcd\x08\x2b\xd6\x3b\xb9\x25\x28\x71\xa5\xef\xf9\x3e\x46\x4c\xc8\x89\x3a\x33\x4e\xde\x1b\x56\x30\x1a\x09\xc4\x88\x63\x3e\x1d\xc2\xad\x0f\x4c\x20\x71\xad\x8e\x53\x21\xcd\x84\x75\x52\x69\x25\x99\x70\xb3\x65\x92\xd3\x52\x0e\x50\x39\x65\x61\x72\x1b\xe2\x3b\xc4\x01\x16\x21\x27\x6c\x9c\x24\x71\xa9\xba\x17\x3e\x61\xf0\xa8\x99\x2c\x36\x30\xfd\x55\xda\x52\x5b\x3b\xa4\x8d\xb5\xc3\x18\x9b\xfa\xc9\x29\x57\x2c\x75\x05\xff\xfc\xf1\x8d\xfa\x6e\x2a\xd9\xa4\x97\x76\x7a\x23\x08\xd6\xc4\x2e\x5a\x5e\xc7\x6f\x8b\xec\xa1\x54\xe7\x87\xe0\x96\xfe\xd7\x2c\xe5\x73\x29\xd2\xc3\xbc\xe3\xf0\xa8\xa9\x89\x57\x8f\xe0\xa9\x30\x49\x91\x05\xa5\x8f\x0b\x33\xfa\xa8\x1a\x1a\xf8\xfc\x9c\x6c\xa1\xa5\xc1\x73\x7e\x41\x36\xd9\xae\x08\xce\x9f\xf3\x4b\x12\xb1\x43\xf0\xf2\xf9\x05\xbf\x24\x5b\xd9\xfc\x60\x7a\xf9\x6a\xca\x9f\x93\x7f\xee\x58\x21\x78\x11\xbc\x78\xf1\xe2\x39\x7f\x4e\x0e\x9c\x15\xc1\xe5\xf4\xf2\xd5\xc5\x2b\x77\xfa\xec\xb9\xf7\xcc\xe7\xe7\xc0\x85\x17\xbe\x6c\xa0\x2c\xc2\x59\x92\xc5\xd4\xfe\xb8\xb4\x3f\x7c\xcf\xfe\x3a\x6f\x7d\xf9\x72\x9b\x2c\xab\xa6\x51\x34\x1f\x97\xf6\x87\x44\xd1\x7c\x9d\xb7\xbe\x7c\xe2\xc8\x26\x69\x04\x26\x78\xd1\x04\x5f\x36\x41\xdf\x82\xf0\x89\x13\xb1\x83\xce\xa6\x43\xe7\x75\xc8\x9d\xca\x0a\xc0\xa8\x90\x5f\xf6\x87\x6f\x85\xa7\x75\x58\xae\x49\xb1\x31\xa7\x5c\x48\x4c\x35\xd0\xf3\x76\x66\x49\x50\x67\xb9\x84\xdb\x04\x4d\x06\x9f\x38\x9a\xf0\x1a\xaf\xf5\x65\x65\x9a\xf1\xcf\x6f\x90\x52\xfc\x98\xb6\x37\x48\x1f\xcc\x1b\xbe\xed\xdd\x51\x0a\xf7\x61\xe4\x36\x2e\x6d\xfc\xf2\xb6\xee\xc2\xa5\xf5\xd5\xe5\xfa\x01\x0e\xf3\xfc\x42\xac\x5d\xaf\x6b\x27\xfb\x4f\xfb\x86\x67\x14\xde\xc2\xd6\xcf\xc0\x91\x18\x6b\xc7\x3b\x71\xfd\xc2\xc1\x68\x54\xb7\x96\x52\x2b\x1e\xcc\x3c\xe2\xf6\x6b\x15\x6d\x48\x2b\x69\xe1\x2f\xe7\x65\x90\x98\x67\x37\x3a\x6f\x5c\x84\xa7\x37\x31\x9b\x72\xe6\x4d\x30\x68\xe3\xf4\x96\xcf\xb2\x45\xb7\x98\xa5\xa5\xa7\x01\x21\x6f\x57\x9b\xe0\x8d\x46\x43\xc4\x95\x3b\xf9\x2b\xb4\x5b\x6c\x97\x0a\x03\x84\xfc\xe5\x72\xbc\x5b\x6c\xc7\x7e\x13\x29\xc3\x12\xdf\xd9\x74\x34\x3a\x85\xbe\xa6\x21\x06\xf1\x71\xa6\xec\x6c\x34\x04\xd9\x50\x0d\x01\x87\x75\x30\x32\xa8\xf6\xc4\xd6\xdb\x78\x03\xd2\x6d\x07\xce\x6d\x9f\x8f\xdd\x86\xb7\x5e\x26\xb2\x9f\x88\xe8\x73\xa1\xaf\xdb\x7c\x96\xb9\xb2\xac\xb6\x27\xfd\x15\x6d\xa7\x9e\x45\xb3\x9c\xae\xe0\x9d\x13\x3f\x58\x5d\x9d\xcf\xa7\xc1\xaa\x79\xb8\x24\x7f\x46\xa3\x2a\xbf\xf2\xe1\x2a\xb4\x8f\xab\xe6\x1d\x0c\x6b\x60\x1c\x8f\x8b\x9c\x6c\x94\xb5\xd9\xda\x7a\x65\x63\xe1\x2d\x67\x1b\xfb\x5b\x5b\xa4\xdd\xd3\xf5\xb3\x6c\xb1\x59\xce\x0c\xeb\xa1\x74\x33\x4f\xdd\xb2\x59\xeb\x85\x9a\x02\xf5\xd2\x4f\xd6\x18\x07\x86\xcb\xd4\xd0\x46\xda\xd0\xd0\xb5\xf0\xa1\xa0\x81\xb3\xd4\xb0\x4a\x2c\xd5\x90\x46\x46\x55\x58\x81\x19\x34\x48\x41\x26\x31\x28\x95\x80\xa2\x00\x9b\xa1\xde\x02\x3d\x7f\xd6\x06\x3e\x3b\x57\xe0\x66\x24\x8c\x46\x00\x5c\x0b\x1f\x1a\xba\x11\x46\x24\x38\xd1\x0d\x6a\x16\x44\xe4\x61\x72\x7f\x4d\xc1\x48\x62\x27\xb8\xc6\x72\xd3\x49\x94\x8d\xd4\x49\xa6\xf9\x26\x29\x62\x07\x9d\xa2\x9a\xab\xe2\x2f\x9e\xd9\x29\xb0\x48\xf9\x90\x30\x7d\x96\xb9\x40\x0a\x83\xae\x8f\x0e\xe7\xb8\x86\xd5\xd4\xf8\x14\xf4\x73\xac\xab\x22\x49\xd1\x02\xf4\xf4\xa3\x52\xe4\x00\x2e\x79\xdb\xaf\xae\xc4\x2b\x74\x4b\xf7\x64\x4f\x01\x99\x94\x2b\x10\x9c\xeb\x4a\x6e\xb9\xc7\xa4\xe9\xb0\xe3\xd1\xee\x13\x1c\xaf\xd0\xfa\xca\x97\xdc\xb6\x69\xd9\x4c\x19\x86\x5a\x98\x66\x56\x35\xec\xda\x8e\x51\xab\x83\xcf\x03\x5f\x5f\x40\xbb\x3b\xcd\x0d\xe1\xfd\xf8\xf0\x4c\x75\xc0\x18\xdd\x4d\xde\xe2\x67\x6b\x4c\x0e\xb4\x35\xbe\x5a\xd4\x57\x2a\x80\xa7\x4a\x5f\x3f\xeb\x2b\x1f\x24\x48\x33\x90\xe6\xed\x71\xd4\x19\x45\xe3\x35\x0e\xec\xca\xdd\x63\xfd\x36\xcd\xde\xbc\x4d\xb3\x1f\xd2\x5b\x4b\xec\x21\xe9\x67\xdf\xa6\x81\x65\x82\xd4\xaf\x60\xe0\x99\xc5\xd3\xe4\xba\xa3\x54\x51\xb5\xf5\x11\x4a\x89\x1d\x4f\x62\x35\xa0\xbe\x67\x5b\x5e\x92\x58\x0e\x3b\x08\xea\x77\x97\x3a\xaf\x6b\x9c\xac\x27\xa7\xc9\xb0\x00\x09\xfb\x9d\x88\xde\x85\xa8\x17\x62\xe1\x2f\x89\x79\xbe\xa8\x59\x4b\x84\x8d\x7b\x09\x6f\x8a\xd6\x4f\x4d\xa9\x35\xf1\x81\x27\xf7\x5c\x76\xe1\x9b\x24\x0b\xef\xe6\xce\xe0\x8b\xdc\x09\x1c\x07\x5c\x3b\x9c\x24\x7e\xf1\xce\x09\x9c\x2f\xbe\x75\x66\x16\x45\xca\x2b\x33\x85\xe7\xdb\xb1\x13\x7c\xf1\x3e\xf8\xe2\xc6\x19\xef\x02\x19\x1f\xb1\xc3\x3c\xbc\x9a\xaa\x29\xa9\x93\x65\x9a\xf3\xc5\xed\xe0\x8b\x68\xe0\x8c\x9b\x28\x40\x23\xa9\x39\x57\x89\x4e\x90\x8c\x46\x32\x52\xb7\xfb\x78\x1c\xea\x08\x39\x5c\xe6\xa1\x09\x38\x5f\xdc\x3a\x0a\xdf\x4f\x75\x96\x0e\xc4\x9f\xbe\xf8\xa7\x13\xc8\xbf\x00\xe3\x7c\xf1\x93\xf3\x64\xcf\x55\xca\xca\xc2\xd6\x88\x80\x8d\x4d\xf0\x68\xa4\x5f\xd0\x89\x90\x66\x10\xe8\xef\x36\xa5\x82\xa1\x4f\x9a\x02\xda\x6a\x14\xb5\x15\xb1\xb4\x28\x9e\x03\xef\x08\x81\x9c\xa5\x70\xca\xb9\x4d\x59\x9f\x2e\xfb\xf9\x7f\xac\xcb\xd6\x37\xa0\xf7\xc1\xc4\x27\x07\xf9\x47\xd6\x17\x0e\x6c\xaa\x99\xa5\x81\xc1\x8f\xc2\x55\x29\xc7\xe3\xc4\x1f\x52\xe1\xee\xc1\x73\xd5\x9e\x4e\x7c\xc2\x7b\x2f\xb6\xb7\x2c\x02\xe1\xf6\x73\xbc\x42\x43\x83\x46\x3d\xb5\x09\x6b\x5e\xa2\x9c\x1c\x8c\x46\xed\x6f\x84\xb1\xc2\xdf\x48\x02\x29\xe5\x8d\xc7\x06\x99\x68\x79\x5a\xac\xed\xb0\xcd\x4d\x8b\xd4\xb8\x70\xd0\xf7\xc5\xe1\x1d\xa1\xc3\x27\xb2\xfc\xa4\x3c\x17\x13\x5e\xdf\x2a\x07\xf7\x58\xfd\x6d\xab\x2a\x2e\x99\xcf\x9b\x22\x2b\xcb\x0d\x8b\x2d\x6e\xa2\x1a\xca\x1a\xe3\x53\xf0\x8a\xf7\x74\x7d\xff\x85\x7a\x9e\xd6\x4f\x31\x59\x43\xa7\xa7\xea\x4a\xb4\x21\x4b\x53\xdb\x76\xe5\x09\x87\x5e\xe9\x6f\x0c\x93\x1d\x63\x43\xc3\x03\xf3\xba\x1b\xe9\xd0\x93\xd8\x77\xe9\x13\xf9\x9b\x71\x43\x87\xbe\x84\x54\x1b\x83\xe6\x1a\x51\xcf\x91\x89\xdc\x16\x34\x9e\x16\x10\x76\x43\x83\xd7\xc8\xfc\x42\xdd\x4e\xc9\x76\x42\xd5\xa5\xb9\xdb\x94\xaa\x57\x6e\x4d\x39\x16\x19\x4e\x0b\xb2\xba\xa8\xbf\x38\x65\x99\x2a\xcb\x34\x57\x7a\x78\xdb\x55\x89\xb2\xed\x64\xc6\x8c\x88\x59\x36\xd4\xda\x67\x74\xa1\x6c\xa8\xf5\x94\x69\x3c\x28\x3f\xd1\xbe\xda\x2e\xcf\xbc\xe6\xa0\xd0\x5b\x56\x82\xfa\xec\x9d\xb0\xb6\x33\xea\xda\xa6\x90\x9d\x38\x8e\x25\xac\x65\xe9\x09\xf6\xbb\xd0\xa8\xe6\x8d\xb4\xbd\x53\x1b\x02\x59\xe2\xb5\xac\xf0\x38\x9b\x31\xe3\xde\x26\x26\x1e\xd6\xf8\xe1\xcb\x1a\x87\x55\xbc\x42\x7d\x88\x0f\x06\x71\xd2\x46\x7c\x68\x21\xf6\x48\x62\x21\xae\x27\x02\x49\x70\xc5\x1a\xbb\x51\x66\x79\x6a\xb2\xfb\xd8\xdc\x97\xeb\x1d\x49\xc2\x5c\xb9\x73\xcc\x88\x71\x08\x0c\x99\x56\xb4\xac\x87\x43\xd2\x0e\xa7\xaf\xbb\x25\x78\x94\xad\x52\x9c\x5d\x5b\xd5\x80\x63\x2b\xff\x85\x47\x06\xfa\xff\xee\x4b\x0f\x3b\xa4\xee\x87\xc0\xaf\x19\x7c\x8d\xe6\x84\xcb\x4b\x0e\xfe\x32\xe8\x9e\x16\x56\x64\xea\x4d\x7b\x63\x9f\x9f\xc4\x3a\xbb\x92\x0f\x4a\x51\xc4\xa1\x70\x66\xcc\x2d\x8c\xb6\x3b\xa5\x0c\x4d\x2f\x30\x29\x28\x73\xe5\x46\x7b\xd6\x5a\x18\x68\xe1\x32\xa2\x63\xb6\xd9\x96\xa7\x42\x82\x3f\x37\x6f\xea\x30\x04\xef\x49\xca\x9c\x19\x26\x09\x65\xe8\xdc\xc3\x70\x55\x2d\x45\x89\xdc\x3e\x33\xf4\x1c\x93\x9d\xcc\x73\x89\xc9\x56\xfe\x7a\x2f\x30\xc9\x21\xf0\x12\x93\x0d\x04\x5e\x61\x12\xc9\x80\xef\xc9\x3d\x98\x0c\xf8\x98\xac\x21\x30\xc5\xe4\x9e\x3e\xfe\x53\x56\x25\x58\x3c\x2a\x2a\x7d\x53\xb0\x7c\xe3\x90\x5d\x11\x07\xce\x59\xca\x1f\xce\xd6\x10\x51\x2d\x2b\x72\x7b\xea\x8f\x46\x72\x55\x26\x36\x3f\x14\x7c\x15\xef\x09\x93\x7b\xae\x0d\x4b\xb3\xf2\x4d\xb6\xcd\xb3\x54\x99\x22\x7e\x00\x63\x16\x94\xb9\xbb\x92\xdf\x08\x26\x38\x46\x43\x5f\x92\x44\x27\x84\x2e\xc3\x28\x25\x53\xd9\xc4\x42\x6e\x6c\x4b\x5a\xc8\x1d\x5b\xe3\x3e\x49\x1b\xb7\xbe\x55\x66\x07\x68\xeb\x32\xf2\x08\xc6\x5c\xdf\x43\x95\xb7\xb7\x93\x73\x87\x44\xac\xb8\x0b\x86\x9e\x19\x18\xf2\xd3\x21\x7c\x9f\xb3\x34\x0a\x9c\x6d\xe4\x90\x55\xbc\xe7\x51\x00\xb7\xc3\x2b\x72\x8a\x35\x97\x58\xb3\xf4\x4d\x12\x87\x77\x41\x8f\x9f\x24\x34\x4c\xe4\x78\xef\xc9\xb9\xeb\xd4\x27\x65\xf7\xb7\xac\x98\xdc\x16\x4c\xce\x7a\x91\x05\x8e\x63\x14\x3c\x82\xd8\x44\xc5\x15\x71\x3e\x02\xbd\x06\x93\x81\x43\xd8\xc2\x5b\xba\x22\xfb\x73\x9e\xf3\xe2\x0d\x2b\x15\x27\xab\x9f\x3b\x34\x2f\xa2\xe0\xbe\x2a\x6c\x64\x15\xe2\xf2\x43\xce\xd3\x20\x21\xaa\x02\x92\x18\xca\x17\xc5\xe3\x2f\xbb\x52\xc4\xab\xc3\x9b\x2c\x15\x3c\x15\x81\x53\xe6\x2c\xe4\x93\x5b\x2e\x1e\x38\x4f\x9d\xaa\x8f\x1c\x51\x97\xc8\xc9\xc4\x73\x1a\xcc\x15\xb9\x5f\xb0\xa5\xbb\x65\x39\xea\xbb\x9c\x79\x8a\x6f\x25\xf1\xdd\xf1\x43\xc0\xdd\x5d\x11\xf7\x95\xb8\x96\x10\x82\xad\x03\x49\xcf\x36\xd5\xb0\x09\x41\x66\x58\x47\xe5\x68\x55\x6b\x4c\x7f\x59\xca\x9f\x5d\x7f\x21\x9b\x82\xaf\x02\x67\x23\x44\x5e\x06\x67\x67\x6a\xc4\xba\x71\x76\xb6\xe6\x42\xc4\xe9\x7a\x52\x0a\x29\xda\x46\xee\x36\x3a\x73\x2a\xe2\x7c\xcb\x93\xdc\xf9\x0f\x0a\x6a\xf5\xbe\xee\x79\x13\xa5\x67\x7f\x92\x85\x0c\x2e\x1a\x95\x9c\x15\xe1\x46\x0e\x0c\x30\xdc\x8a\xc3\xc1\x9f\xdf\x39\x58\xfe\xaf\x22\x07\x39\x69\xa7\x2f\x31\xd9\x53\xc4\x90\xef\xbf\xc4\x84\xa1\xcb\x4b\x8c\xc9\x5b\xe0\x09\x7b\x4c\xee\x28\x43\xfe\x39\x26\x0f\x94\xa1\x97\x2f\x70\x23\x39\x7e\xb0\x9f\xca\x53\x13\xcf\xbd\xe3\x87\x12\x71\x58\x3a\x75\x8c\x5c\x0d\x1f\xd2\x1f\x8a\x2c\xe7\x85\x38\xdc\xc0\x65\x82\xd2\xac\xce\x9f\x82\x91\x68\x04\x1c\x8a\xa5\xee\x2a\x4e\x04\x2f\xac\x61\xd1\x9c\xf1\xf5\xa2\xf8\x8a\x97\x61\x11\xe7\x22\x53\x6a\x70\x97\xa7\xbb\x6d\x7d\xdf\xd8\x6c\xc0\xeb\x93\x86\xb4\x3e\xc4\xb0\x14\xe8\x37\x6d\x3f\xb6\xfe\x4c\x5c\xd5\x27\x12\x46\x75\x2f\xc6\x63\xd3\x7e\xb5\x95\xac\x21\x16\x62\x39\xb7\x3f\x82\xc7\x6a\x26\xbe\x98\xce\x3f\x20\x46\x86\x1e\x96\xc2\xff\xdb\xb6\x91\x8b\xc0\x8f\x9a\x79\xdd\x49\xe6\x05\x8b\xc0\x42\x2c\xe5\x70\x0c\x3e\xd3\xc6\x72\xae\x01\x22\xbe\x8a\x53\xae\x01\x62\x5e\x22\x4e\x3e\x97\x15\x31\x89\x1f\xb1\x4f\x56\xa9\x8d\xf8\x00\x95\xfb\x1c\xdd\x19\x11\x6a\x7b\x65\x8e\x6d\x2b\x75\x81\xb3\xef\xd5\xd8\x1e\x76\xfe\x58\x0a\x26\x76\x25\x1c\x45\x17\x62\xb0\xe2\x22\xdc\xc4\xe9\x5a\xee\x9f\xd2\x16\x97\x67\x92\xcb\x17\x34\x95\x5c\x3e\xa6\xa9\xdc\x1b\x27\x7d\x08\xe5\x2a\x67\xe7\x4b\x64\xbe\x1d\x2d\x65\xbe\x2d\x2d\x65\xbe\xbc\x77\x5d\xf1\xe4\xaa\x67\xe7\xcc\x65\xce\x88\x6e\x64\xce\x15\xdd\x58\xeb\x8a\x9d\xfd\xed\x6a\xc5\x43\x81\x5b\x66\x4c\xa8\x63\x1a\x5e\xb7\xfc\x41\xe2\x7d\xeb\x32\x70\x84\xd1\x64\x81\xcd\x99\xbe\x42\x63\xca\x90\x50\x0f\x45\x8b\x47\x6a\x17\xf6\xb3\x19\xd6\xe7\xb8\xcc\xcd\x0b\x7e\x2f\x27\x30\xdf\x0b\x75\xa6\x3b\xf0\x02\xe3\x70\x0f\x9a\xa4\x41\xe4\x1a\x20\x81\xe8\x05\x01\x12\x23\x4e\x6e\xd0\x63\xc8\xc2\x8d\x5c\x74\xb2\x09\x08\x65\x0e\x09\x0b\x1e\xf1\x54\xc4\x2c\x91\x3d\xc2\xb6\x7c\x92\x15\xf1\x3a\x4e\x9d\x4a\xf6\x32\x9c\x21\x0e\x2e\x82\x78\x85\x50\x4a\x99\x5b\x82\x3f\x84\xec\x0e\x3f\x6a\xe4\x2f\xb4\xbf\xb5\xee\x0d\x85\xd4\x55\xbd\xfc\x51\x56\x53\x61\x79\x61\xaa\xa9\xb3\xbe\x22\xa9\xfb\x4b\x29\x29\xa6\xd2\x5f\x05\x85\x2e\x81\xc4\xe0\x35\x02\x16\x7e\x0d\xec\xbf\xb0\x0e\x35\x07\xfe\x45\x60\x5a\x79\x21\xe5\x77\x8f\x32\x37\x64\xb2\x91\x3e\x26\x5b\x24\x63\x34\x52\xff\x85\x3a\x66\xe6\x69\xe4\x34\xe5\x97\x22\xcb\x41\x1e\x25\x9a\x23\x2f\x16\x3e\xf1\x2f\x96\x30\x27\x6b\xe5\x53\xcf\x29\xa6\x71\xed\xbc\x89\xcb\xd6\x29\x26\x46\x18\xe1\x0a\x93\x05\x27\x62\x89\xc9\x63\xc1\xcb\x3c\x4b\x4b\x1e\x14\x84\x4b\x7a\x04\x3b\x12\x97\xdf\x65\x2c\x8a\xd3\x75\x10\x55\x15\xf9\x45\xca\x67\x17\x98\xbc\x01\xd1\xea\x1c\x93\x1f\x24\x2f\xbe\xc0\xe4\x3d\x65\xe8\x15\x26\x5f\xf5\x38\x94\x1b\xf4\x18\xbe\xbb\x80\x1e\x1e\x3b\xaf\x0b\x80\x27\x61\xc3\x5d\x29\xb2\x2d\x74\xc6\xfb\x72\x0d\xd7\xe8\x42\x23\x66\x7d\x8c\x45\xc2\x9b\xb9\xf4\x8b\x1c\xa2\x82\x2c\x1c\xc0\xe5\x10\xa7\xc6\xe4\x10\xa7\x8d\x47\x46\xb4\xb0\x38\xd6\x11\xe5\xfc\x74\x5d\x7b\x03\x72\x81\x91\xb1\xd2\x35\x2f\x9c\x8a\x14\xc7\xe3\x29\xa4\x8c\xf9\xba\x60\x6b\x75\x23\xa5\x7f\x95\x74\xe4\xae\x42\xd6\x0a\xd2\x1d\xa8\x54\xe0\x60\xe2\xa8\x41\x57\xb3\x92\x81\x43\xb2\xe3\x91\xbb\x51\x5c\xe6\x89\x52\x0a\x11\x27\x90\x32\x93\xbb\xe5\x65\xc9\xd6\x1c\xe3\x20\xed\xa9\xee\x0f\xb2\xba\xe0\x77\xcb\x39\xdf\x3b\x24\x0e\xb3\x34\x78\xef\x26\xa4\xcc\xe3\x14\xa4\xc5\x46\xc2\x31\xc6\x98\x93\xc6\x82\x5b\x8b\x4f\xc2\xb8\x1e\x08\x9c\x66\x63\x39\xb9\xf4\xbe\x20\x03\xf9\x17\x2b\x8b\x7b\xe7\xd2\xfb\xc2\x51\xc6\xaf\x10\xac\x2a\x1c\x9c\x56\x88\xcb\xdd\x54\x45\xbe\x87\xb5\xfc\x12\x93\x9f\x21\xe0\x61\xf2\xab\x1c\x2e\xaf\x30\xf9\x1a\xa4\x76\x4c\x7e\x84\x35\xfd\x6b\x4c\xde\xc9\x84\xe7\x98\x7c\x27\x7f\x5f\x60\xf2\x57\xc8\x81\xc9\x6b\x18\x68\x98\x7c\x2b\x7f\xcf\x31\xf9\x27\xc4\xfb\x98\xfc\x19\x02\x53\x4c\x7e\x0f\x81\x73\x4c\xfe\x02\x81\x0b\x4c\x7e\x82\x3c\x2f\x30\xf9\x13\x04\x2e\x30\xf9\x06\x02\x97\x98\xfc\x4e\x0e\x53\x0f\x93\xbf\x41\xc4\x73\x4c\xfe\x20\x23\x5e\x62\xf2\x47\x29\x4b\xbc\xc4\xe4\xef\x50\xa1\x3f\x62\xc2\xb9\x8c\x79\x85\x89\xe0\x10\xc5\x39\x26\x8c\xd3\xa7\x8c\x8b\xf4\xc8\xee\xf0\xdd\x77\x30\x44\xc1\x46\x14\x13\x54\x33\xd7\xbf\xd6\xd1\x3a\xe2\x35\x44\x60\x65\x94\x0b\x09\x1c\x63\xec\xf2\x7d\x5e\xbc\x4b\xf3\x9d\xf8\x91\xaf\x68\x43\xe5\x1f\xf9\x4a\x49\xcd\x5c\x7c\x7b\xe2\x89\x54\x5d\xf0\x61\xad\xbc\x6e\xb8\x2b\x0a\x39\x40\x45\xad\xd2\x52\x19\xc1\xf5\x73\x98\xc4\x3c\x35\x11\xa0\xac\x09\x8b\x2c\x49\x74\x44\x46\xc5\x24\x9d\x41\x61\xb0\xfe\xa0\x47\x6d\xa5\x5e\x8c\x33\x65\xe2\xbc\x61\x69\x94\x70\x28\xcb\xae\x08\x64\xf9\x0b\x4b\x76\x1c\xf5\xd7\xc6\xbd\x97\x89\x80\xc2\x40\xb6\xc8\x0b\x0f\x9a\xe4\x45\x96\x97\x6e\x96\xbe\xdd\xe7\x05\x2f\xe5\x7e\xf6\xcd\x46\x4e\x48\x8c\xb8\x26\x41\xbb\x56\x0e\xdb\x89\xcc\xa9\x6c\xea\x58\x95\xfc\x23\x3f\xfc\x20\xd1\xf4\xec\xf1\x4c\x51\x7c\xcf\xc3\x9d\xe0\xb0\x75\x9d\x39\x6f\xc1\x10\x7e\x48\x29\x97\x82\xa4\x9c\x9c\xe5\x26\x5e\x89\x3f\xca\x30\x12\x08\x54\xa7\x05\xbf\xe7\xa9\xf8\x4a\x5d\xcc\x44\x18\x8a\x03\xd5\xa2\x14\x72\xdf\x4b\xf6\x6e\xfb\x41\xb5\xad\xc1\xfe\xee\x32\x23\x48\xf2\xda\xd1\xde\xd9\xe0\x6c\x4d\x1c\x07\x13\x41\x1e\xf3\x82\x07\xce\x95\x62\x1f\xd7\x0e\xc9\xb3\x52\x04\xce\xd5\x99\x89\x50\xf4\x57\x83\xe2\xf5\x4e\x64\x92\xc7\x25\x5c\xf0\x1b\xfd\x6e\x6f\xdf\x4e\x36\x96\xbd\x00\xc4\x26\x29\x55\x66\x2b\x14\x6c\xd1\x9c\x40\xf5\x3e\x5c\xa4\x7d\xcf\xd3\x1d\xb8\xfd\xae\x6f\xc0\xf2\x08\x7c\x38\xc8\x1d\xba\xa6\x14\x3b\x2d\xb1\x24\x25\x1c\x77\x1b\x53\x12\x23\x06\xf2\x54\x14\x52\xfa\x4b\xb0\x5b\xf0\x68\x17\x72\x5b\xa6\x23\xb5\xbd\xbb\x2d\xd3\x14\x4a\x1a\x4a\x94\x34\x94\x28\x69\xe8\x94\xb0\x28\x25\xdb\x9a\x95\x9b\x87\xdc\xe7\x8b\xda\xd9\x93\x46\xf9\xab\x9a\x60\x64\xd1\xc3\x9d\x77\x89\xd3\xda\x04\xc2\x7b\xda\xbb\xf5\x9a\x97\x62\x12\x15\x59\x1e\x65\x0f\xe9\x24\x89\x4b\xe1\x10\xb9\xb5\xdb\xf5\x6d\xeb\x9c\x24\xfe\x0d\x48\x36\x9c\x45\xb0\x94\xec\xe0\x8e\x32\x5c\x3d\xf3\x88\xef\x79\xb8\xb3\xc7\xb4\x16\x4a\x25\xd6\xb0\x04\xd6\x4a\x75\x01\x86\x68\xd5\xe0\x3b\xc1\xb7\x52\xce\x2d\x11\xec\x39\x19\x01\x4d\x58\x50\x92\x58\xf0\x6d\xc0\x0c\x63\xef\xbc\x73\x1d\x64\x94\xd2\x72\x3c\x9e\x3b\xd0\xaf\xeb\x82\x1d\x9c\xc0\x79\xd8\xc4\x82\x4b\x6e\xfe\xb4\x46\x02\xda\xa8\x3b\x54\xee\xda\xd6\xa9\x2a\x77\x57\x91\x82\x3c\xaa\x65\x32\xdb\x95\xc9\xe1\x86\x8b\x77\x69\xca\x8b\x6f\x3f\xbe\xff\x2e\x78\xfc\xf9\xe7\x8d\xd8\x26\x81\xe0\x08\xa3\x94\x3c\xb2\x24\xc9\x1e\x78\xf4\x91\xad\xcb\x60\x61\x56\xc6\x65\x05\x5a\x36\x29\xc5\x2c\x71\x20\xa4\x44\xb2\xc4\xc1\xa2\x16\x63\xeb\x5b\x1c\x3d\xb5\x8a\xe2\xfb\x93\x6a\x55\xca\xf8\x5c\x8e\x62\x45\x20\xfc\xd9\xce\x91\x72\xfc\x0e\x07\xc8\x72\x71\x51\x28\x4b\x48\xc5\xa1\x24\x97\xa1\x27\x5c\xa6\x6a\xf3\xfb\x6f\x95\x48\xc2\xb1\x61\xec\xdf\x69\x19\x05\x08\xd5\xc8\x20\x5f\xc5\xd1\xfb\x6c\x97\x0a\x87\x00\x0f\x0c\xba\x57\x3e\x6b\xde\x05\x37\x0a\x4f\x33\xff\x39\x8f\xc0\xfa\xab\x93\xbb\x9e\xe6\xea\x26\x2c\xcc\x52\x00\x99\x09\x60\x61\x10\xd6\x97\x7d\x6b\xe6\x2c\x9a\x22\xd4\x05\x9a\x9e\x4a\x35\xb7\x46\x89\x8d\x1c\x9c\xe2\xda\x0c\x13\x06\x29\xe4\x36\xd7\x71\x81\x6e\x5a\x75\xfb\xf4\xd0\xfa\x83\x52\x4b\xa9\xd3\x98\xa0\x55\xbf\x8a\xf4\xed\xb1\x9f\x1a\x07\x4f\x48\x60\x7f\xea\xe8\x79\x78\xbd\x9a\x4c\x80\x1f\xf6\xea\xca\xbe\x91\x99\x58\x14\x65\xe9\xc7\x43\x2e\x45\xa7\x82\xe7\x52\x1e\xef\x83\xfd\x9d\xd1\x91\x70\x4d\xf6\x44\x49\xa2\x4f\x09\x6b\x5d\x11\xad\x57\x8a\xb2\x21\xef\x40\x4d\x70\x0a\xf3\x37\x97\x75\x07\x7f\x96\xc2\x4a\x1b\x70\x7b\x65\x36\xcc\xc0\x2c\xde\x15\xb8\x0e\xf9\x3a\x0b\x77\xa5\x94\x10\x05\xb4\x50\xf0\xbd\x60\x05\x67\x0e\x29\xb2\x87\x32\x70\x7c\x87\x64\xa9\x59\x33\x6b\x7c\x26\x82\xe4\x8d\x53\xf6\xc0\x69\x16\xe8\x01\x82\xd0\xe0\x46\xae\x94\x63\x58\x41\xe1\x96\x77\xca\x1f\x94\x1f\x44\x87\xc0\xa3\xbe\x3f\xf2\x55\xc0\x5b\x92\x41\x45\x60\xfb\x0e\x9f\x9a\xb1\x41\xf9\x5f\x65\x0f\x69\x60\x6f\x2e\xeb\x5d\xe5\x1d\x3f\x68\x0b\xe1\x6f\xb3\x2d\xd7\xb6\xb9\x6f\xe5\xa6\x89\xb9\x29\xf8\xd7\x83\x83\x9f\x7a\x91\xce\x1e\x52\x58\xc0\xf5\x6a\x4d\x87\x2d\xe7\x0b\xaf\x8b\x22\x7b\xf8\x73\xae\xd1\xc0\x97\xcc\xe1\x04\x72\x97\xf2\x21\xe7\xe9\xf1\x88\x7e\x2b\xde\x96\x15\xac\x12\x23\x02\xd1\x2c\xae\x6d\x2b\xd9\xb7\x65\xc8\x72\x6e\x97\xc3\xfb\x45\xa6\xdb\x64\x57\x48\x9e\x50\x61\xf2\xa8\x66\x69\xda\xaf\x1d\xec\x0e\x5e\x75\x19\xb3\x77\xec\xfe\x74\x32\x39\x60\x42\x4f\x6e\x45\x5a\xdf\xeb\xcd\x8b\x78\xcb\x8a\x83\x1c\x0f\x4a\x77\xcc\x2a\xe2\xbc\x55\x80\x8e\x3a\x44\x54\x35\x1f\x8d\xf8\xd3\x02\x09\xd2\x0a\x98\x6a\x89\x89\xa8\x50\xe6\xd6\x1a\x74\x4c\x52\x0e\x22\xf9\x4b\x4c\x0a\x15\x7a\x85\x49\xc6\x41\x07\x28\x05\x76\xf9\xe3\xab\x9f\xa9\xfc\x39\x7f\x8e\xf1\x2c\xe3\x6e\xe8\xb2\x28\x42\xef\xdd\x35\x79\xef\x6e\xc8\x7b\x37\x24\xef\xdd\x5b\xf2\xde\x65\xe4\xbd\xbb\x95\x18\x5c\xe6\x3e\xc0\x16\x5b\xbf\x60\xf0\xa4\x08\x6f\x7c\x17\xb1\x59\x8f\xf0\x6e\x59\xde\x76\x75\x6e\xa4\x00\x3f\x8d\xaf\x8b\x82\x1d\x50\x8a\x49\x46\xbd\x59\x76\x95\xce\xb2\xf1\x18\x17\x8b\x6c\x69\xa9\xe0\x32\xb3\xa0\xf5\x6d\x05\x10\xa7\xed\xdd\x80\xda\x0e\xe8\xad\x3b\x27\x0b\x09\x55\xcb\x35\x05\x96\x1b\x04\x11\x6f\xf9\x27\x36\x08\xbf\x93\xe9\xea\x4a\x17\x48\x4e\xbf\x67\x25\x97\x8b\x5b\x9f\xa1\xb3\xe6\x5b\x32\xc7\xf1\xf8\x23\xc2\x08\x2b\x46\xfe\x61\x85\x94\x94\xc9\x92\x10\x66\xf4\x8f\x72\xa1\xef\xc1\xe0\xf3\xf3\x67\x06\x4b\x21\x61\xce\xa6\x32\x5f\x9c\xca\x3a\x9d\x96\x6b\xf6\x29\x56\xb5\x10\x1e\x77\xcb\x41\x78\xd6\xec\x01\x94\xe4\x0f\x90\x6a\xdb\x10\xf1\x7f\x01\xf7\xe4\x5f\xc3\x0d\x47\xd8\x5d\xc4\xbd\xf0\xb5\x8c\x60\xac\x34\x3e\x41\xde\x5d\xc9\xbf\xcb\x42\x96\xc8\x8c\xf3\x1f\x5d\xe6\x8a\x5f\xdd\xf5\x8e\x97\x25\xc2\x81\xf3\xe7\x8f\x6f\xfe\xef\xc8\x14\xcd\xf2\xad\x7c\x62\xa8\x71\x51\x20\xac\xef\xc6\x5b\xa3\xc8\x70\x1a\x7d\x65\x19\x20\x5d\x29\x6c\xc8\x40\x1e\x87\x77\xbc\x40\xb0\x26\x95\xc1\xa3\xc8\x22\x76\x08\x9c\x15\x2b\x07\x2b\x36\x09\x59\xc2\xd3\x88\x15\x93\x70\xc3\xc3\x3b\xa7\x22\xb7\x3b\x21\xd4\xb5\x9e\x4d\xf6\xf0\x46\x32\x3e\x38\xac\xd9\x64\x0f\x1f\x21\xe3\xd0\xab\x48\x19\x47\xfc\xf7\x87\x9b\x38\x82\x34\x6d\xd4\xe2\xfc\xf4\xd3\x4f\x3f\x4d\xde\xbf\x9f\x7c\xf5\xd5\xe0\xdb\x6f\x83\xed\x36\x28\x4b\x87\x24\x92\x6e\x92\x3d\xa5\x0e\x58\xc0\xfc\x3d\x4b\x79\x50\xd7\xff\x57\xb8\xd3\x4b\xb4\x7b\x9c\xaf\x98\xd0\x69\xcd\xa8\xae\x5a\x4d\xca\x52\xe4\x84\xd0\x87\x9d\xd6\x39\x6d\x79\x03\x3c\xa1\x72\xc9\xd5\x7a\x7a\x5e\x25\x36\xf3\x44\x31\xb7\xae\xbc\xf6\xd7\x38\x49\xfe\x9c\x6e\x3f\x25\xef\xf5\x92\xd9\xd1\xef\x22\x38\xff\xa9\x0c\x08\x62\x9a\x44\x0c\xe2\x99\x3d\x04\x67\x1c\xe2\x87\x70\x87\xe8\x53\x35\x81\x92\xd8\x5c\xf2\x05\xa6\x7c\xf8\xc9\xad\xaf\x8d\x6a\x08\x17\x86\x3e\x81\x43\x9f\x74\x3b\xe4\xf1\x37\xf5\x1e\x98\x2d\xfd\x4b\xa2\xe9\xd3\xe2\x65\x57\xfc\x93\x45\x6a\xc1\x4f\xb9\xab\x77\xca\xed\x7f\x2c\x02\xc2\x32\x2a\x62\x21\xc7\xe8\x57\x9a\x31\x0d\x94\xbd\x95\x59\x34\xa1\xbd\x36\xd3\xea\xc3\x63\x4b\x7d\x6b\x75\x9e\xab\x0e\xf9\xa5\x94\xf8\xa4\x0c\xf8\x68\x0b\x63\xd6\xc8\xb7\xa2\x1b\xa9\xeb\x64\xd6\x93\x2c\x55\xa2\xe0\x29\xe7\xe2\x4f\x74\xa7\x9c\xc7\x0e\xae\x48\x96\xfe\x3e\xd9\x15\xff\x42\xc6\x4d\x1c\x71\x95\xf1\x44\xb2\xab\xe5\xfb\x85\x91\x88\x88\x16\x9d\x96\x72\x1d\x49\x76\x11\x2f\x11\x1c\xe9\x61\x39\x23\x3f\x89\xdf\x4c\xf7\x86\x01\x8c\x46\xff\x55\x31\x09\x16\x88\x09\x0c\x25\x90\x94\x74\xd7\xbf\x91\xd1\x7d\xfd\x5e\x2f\x28\x9f\xeb\xf4\xed\x6f\xea\xf4\x7f\xb5\xe6\xba\x7a\xef\xd2\xa7\x47\xa6\xbd\x54\x7f\xae\x92\x9b\xd3\x4a\xf6\xcb\x75\xc9\xff\x2a\x81\x0b\x04\x9b\x7e\x61\xab\xe0\xa0\x50\x8f\xb3\xf4\x89\x74\x99\xf5\x46\xf0\xbc\xa4\x0b\x9f\xf8\x1e\x79\xee\x91\x73\xcf\x23\xaf\x3c\x8f\xf8\x2f\x3d\x8f\x9c\x3f\xf7\x3c\xf2\x62\xea\x79\x64\xea\xcb\xe0\xc5\xb9\x0c\xbf\x7c\x7e\x21\x01\x5e\x4c\x25\xc8\x73\xef\x42\xfe\xf8\x53\xef\x95\x84\x98\x5e\xf8\xaf\x24\xcc\xc5\xcb\xf3\x97\x12\xea\xdc\xbf\x3c\x7f\xce\xcf\xc9\xf3\x73\xef\xc5\x94\x9f\x2f\x09\xab\xd7\x2b\x90\x78\x3a\x3a\xda\x7a\xa9\xf8\x55\x0a\x3d\xfa\x32\x29\x15\x73\xe6\x86\x9d\x3c\xa8\x25\xd8\xe1\xa0\x2b\x07\x29\x79\x4a\x69\x5a\xbb\x79\x5b\xe5\xb1\x9a\x82\x6d\x2d\x30\xfd\xda\xc8\x5d\x66\x10\x9e\x88\x99\x8a\xd1\xcb\xbd\x2a\x1d\xfa\xb5\xee\x72\x26\x8a\x83\xed\x56\x80\xda\x84\x5e\xa8\x83\x7b\x37\x16\xea\xba\xce\x12\xe1\xd9\x10\x71\x8a\x0a\x9a\xc1\xf9\x1c\xc2\xd8\x8d\xb2\x94\xe3\x19\xb8\x13\x31\xee\xa9\xb4\xd2\x04\xcc\xe1\xac\x76\x5f\xc5\xb5\x31\xf6\x29\x85\x62\xac\x9c\x67\xf6\x93\x26\xc6\x55\xa5\x4e\xfa\x12\xfc\x28\xb7\x87\x24\xa5\x49\xb5\x8a\x53\x96\x24\x87\x47\xd9\x06\x7e\x3c\xaa\x0e\xc8\x5c\x55\xc8\xf1\x68\x42\x08\xd7\x90\xf1\x0a\x09\xe3\x56\xad\xaa\x6c\x19\xf8\xbf\x41\x2f\xad\x92\xc4\xae\xdc\xd5\x16\x25\x47\xf8\xbf\x4c\xc1\xeb\xff\x0f\x29\xf8\xef\x8b\xdb\x4f\x4b\x60\x5c\x35\x77\x48\x6d\x4d\x1c\x44\x69\x11\xe9\xa4\xf1\x5d\x38\x29\x5e\x35\x1c\xa5\x83\xa8\x8e\x37\xae\xc0\x5a\xbc\xa7\x33\xb3\xf4\x7b\xc0\xbd\xf9\xe7\xbd\xb1\x96\x3f\xc2\xc0\x71\xfe\x4b\x32\x58\xca\x61\xf5\x48\x93\x38\xe5\x9d\x33\x49\xb0\x16\x9a\x84\x59\x2a\x8a\x2c\x29\xe5\xa2\x74\xb3\xbb\xdd\x76\x4c\xc7\x6b\xa9\xa2\x7b\xde\xd2\x6b\xd8\xd5\x95\xf8\x80\xa6\xff\x6f\x44\x3e\x28\xea\x09\x99\x0f\x3a\xfc\x73\x4b\x6b\xfc\xdb\x85\x3e\x2d\x30\x83\xa2\x34\xf8\x9a\xf7\x8c\xa2\xb6\xcc\x67\x98\xef\xa7\xa4\xb6\xd3\x15\x03\xf1\x27\xb8\xf6\x13\xa6\x82\xff\xa9\x68\xd2\x47\xc1\xd6\xb2\xf0\x39\x0a\xfe\xd2\x23\x9c\xf4\x64\x89\xb9\xda\x8b\xd8\xf2\x32\x4f\x23\x29\xfe\x10\x7b\x6b\x63\xa7\xdb\xf1\x04\x2a\x1a\x74\x89\xde\xd1\x8b\xa6\x51\x23\x6b\xd5\x5b\x47\x3b\x93\x89\x7f\xab\x8a\xee\x25\xe9\x89\x88\xef\xfc\xc8\x4b\x77\x80\x4a\xec\xd8\x33\xa9\x99\xc3\x66\xac\xb7\x46\xc8\x7f\xca\x0a\xba\xa3\xc9\xe6\x3a\x3d\x43\x4a\x09\x17\xb5\x3b\x76\xfe\x29\x36\x05\x97\x7d\xdb\x6c\xbf\x06\x46\x42\x71\x76\x5c\x91\xdb\xf2\xa6\x9e\xbc\x7d\x74\x2a\x78\x67\xe2\x83\xdf\x10\x1e\xfd\xa6\xa9\x6f\x0f\xc6\x9b\x4d\xf6\x30\xd8\xa5\x3a\xfb\x40\x72\xad\x81\xb2\x6a\x24\x4f\x9b\xcf\x76\x9b\x70\x23\x73\x4b\xe2\x0d\x7d\x29\xdb\x68\x47\x65\x16\xa1\x35\xfa\xcf\x8d\x67\x7e\x32\x9e\x7f\x4b\xed\x4d\xdd\xff\x83\x6a\x7b\x4d\xb5\xff\xf5\x5a\x47\xbf\x75\x8b\x50\x72\xca\xd0\xab\x17\x98\x84\xbc\xf7\xc8\x3a\x61\xb7\x3c\x29\xc1\xf0\x5a\x69\x88\xda\xbe\x32\xa9\xe8\x39\x65\x39\xb5\xcb\x71\xca\x90\x25\xac\x70\x70\xc0\xe6\x27\x6b\xd7\x62\x49\x18\x1d\x7a\xcd\xae\x63\x10\xa7\x03\x81\x9d\x9f\x7f\x4e\xd9\x96\xff\xfc\xb3\xa3\xd4\x1b\x88\x6b\x3f\x3f\x3d\x36\x3e\x39\x4b\x1d\xb5\x50\xa6\x15\x19\xb2\xd1\xc8\x21\x03\xa7\xd7\x1a\x48\x41\x5a\x83\x34\xe1\x6b\x9e\x46\x13\x68\xe7\x44\x16\xe8\x54\x24\xc5\xc4\xa1\xff\x4e\x7e\x98\x4e\x4e\x45\xbe\x74\xbe\x24\x62\x91\x2e\x65\x00\x4c\x4c\xc1\x4b\xcc\xd0\xc7\x9f\x38\xe2\xfd\x6d\xd6\x4c\x4f\x95\xbf\xe5\xa2\x88\x43\xd3\x00\xe1\x1a\xe2\x1d\x8f\x8e\xd3\x37\x62\x3f\xd7\x92\xdb\x82\x85\x12\x93\xf3\xe8\x60\xc2\xff\x13\x04\x95\x83\x71\x85\xfa\xce\xd8\x4e\x5b\xfc\x3d\x87\x63\x0a\xb2\xfb\x5f\xb5\x71\xd5\xe7\xd7\x25\x9c\xb0\x6a\x5b\x0e\x0e\x3e\x31\x6b\xe3\x98\x1b\xf0\xbe\xa4\xce\x60\x7f\x8b\x19\x1f\x18\x56\xc2\xf1\x6e\x07\x2b\x29\xa8\x76\x55\x28\xcc\xeb\x40\xe6\x2e\x92\x91\xed\xc3\x0d\x2b\xc0\x37\xdc\xac\xa0\x69\xa3\xdb\xe1\x78\xfe\x49\xd3\x6a\x38\xc6\xae\x30\x0e\x3c\x4a\x1b\x23\x93\xac\xcf\xa8\x04\xbc\xba\x18\x3e\x41\x29\xe5\x73\x11\x3c\x6d\x16\x92\x2e\x71\x6d\x74\xd0\x07\x93\x62\xb2\xe0\x4b\x7d\x01\xce\xb7\x0a\x1f\x8d\x5a\xd5\x1f\x8d\x50\x41\x17\x4b\xdc\x32\x98\xea\x12\xbd\x30\x9e\xb4\x81\xe7\x2a\xb2\x7f\xcc\xd6\x6b\xf0\x09\xcd\xf1\xff\xad\x4d\x89\xcd\xc1\x37\xd9\x2e\x89\x7e\xe4\x25\x17\x70\xdf\xae\xf9\x6c\x8b\x07\x2d\x38\x73\x2c\xff\x44\xab\x16\xcb\x7f\x4d\x5d\x7b\x6a\x49\x50\x0f\x0a\xd0\x53\x67\xe9\x77\x30\x97\xdf\x67\xbb\x92\x7f\xd8\x81\x83\x6f\x37\x4b\xbf\xcd\xee\xb9\xdc\xb7\x5a\xd6\x05\xdd\xe1\x97\x50\x73\x8d\xe4\xda\x1f\x8d\xe4\x50\xa9\x9f\xd8\xfd\x8c\xf9\xc0\xe3\xc9\xae\x44\xf1\x13\xb9\x7a\x9a\x7a\x04\xc9\x3c\x0d\xd4\x66\x5a\xce\x9d\x5e\xc3\x1d\xb0\x6b\x05\x73\xa9\xda\xe1\x3c\x5c\x7f\x56\x2b\xd9\x67\x6b\xa1\xcf\xea\xb5\x8f\xf8\xc0\x6e\x81\xdc\xd3\xd6\xe3\x2d\xc5\x73\x3f\x70\x2f\xab\xe6\x54\xb6\x6e\xf7\x9c\xf7\xcc\x6a\x94\x62\x5d\xf3\xba\x3d\xf7\xbc\x08\x92\x79\x61\xa5\xc0\x0a\x46\x4e\x59\x6a\x2c\x78\xbf\xd8\xf4\x34\x17\x2e\xe1\xe4\xd5\x79\xca\x10\xa9\xec\xdf\x3e\x84\x9c\x3c\x2a\x42\x05\xa1\x39\x12\x02\xf1\xa1\x82\x8b\x12\x4d\xcf\xfe\x96\x5e\xcc\x93\x89\x3f\xd8\x8a\x89\x3f\x00\xe7\xac\xdb\x9d\xe0\x51\x5d\xa1\x55\x96\x82\x3f\xde\xc0\x3f\xaf\xe0\x32\x8a\xa4\xe1\x40\x0d\xa7\x81\x7e\x44\x66\xf0\xe6\xe3\x8f\xdf\x0d\xc6\x83\x50\x25\x0a\x98\xa7\x83\xed\x2e\x11\x71\x9e\x70\x0d\xe5\xd8\x92\xcd\x0f\xbb\x82\x37\xd2\x4d\x73\x3b\x65\xcb\xff\x37\x5e\x4f\x01\x77\x2d\xed\xa5\xb2\x76\x64\x4b\x8d\x8b\x3c\x47\x7e\x3b\x33\x25\xd0\xd5\x0f\x86\xa9\x66\x8b\x6b\xea\xf3\xe9\x85\x86\x44\xfc\x0c\xbe\x5c\x91\x7d\x2d\xa5\x47\x34\xc5\x63\xe7\x27\xa7\x01\xf4\x5b\x80\x7e\x1b\xf0\xef\x0d\xa0\xff\xd2\x06\xf4\x5f\xb6\x01\xdf\x5a\x80\x97\x2d\xc0\xcb\x36\xe0\x0f\x16\xe0\xb4\x05\x38\x6d\x03\x7e\x6c\x00\x5f\xd9\x70\xaf\xda\x60\xdf\x34\x60\xcf\x6d\xb0\xe7\x6d\xb0\xf7\x0d\xd8\xb9\x0d\x76\xde\x06\xbb\xab\xc1\x1a\x5f\x84\x4d\xfa\x4c\x79\xc2\x6c\x9e\xf8\xe9\x26\x8a\x2b\x9f\x4f\xa6\xad\x02\x26\x5d\xda\x1f\x9c\x06\xd2\x6b\x43\x76\x88\xff\x6b\x03\xe9\xbf\x68\x41\x76\xa9\xcf\x2c\xc8\x8b\x36\x64\x87\xfc\x2b\x0b\xd2\x6f\x43\x76\xe8\x9f\x37\x90\xad\x9e\x9f\x74\x3a\x20\x6d\xe0\x5a\x1d\x3f\xe9\xf4\xc0\x3f\xf6\xb7\x97\x1a\xd4\xf5\xac\xa2\x5d\xcf\xeb\xb4\x7b\xab\xc1\x9e\xe8\x04\xa5\x6b\xd4\x0f\x60\x84\x72\x3d\x4d\xbf\x14\x03\xc5\xd7\x06\x6c\xa0\xac\xe5\xc0\xcb\xf0\x20\x2e\x07\x6c\x70\xbb\x5b\x3b\xb8\x22\x1b\xde\xff\x6e\x22\x2d\x5c\xd6\x7a\x99\x84\x4b\x41\x32\x75\x0b\x12\xd3\xd4\x5d\x93\x84\xa6\xee\x2d\x3c\x02\x64\xdc\x66\xab\xeb\xc3\xf5\xfd\xbc\x8c\xc8\x8d\x49\x7d\x37\x2f\x6e\x7f\xfe\x1f\xee\xde\xb4\xbb\x6d\x1b\x7b\x1c\x7e\xff\x7c\x0a\x1a\xed\xc8\x44\x0d\xc9\x92\x9d\xb4\x13\x3a\x8c\x9e\x24\x4e\xda\xb4\xd9\x6a\x27\xed\xb4\xaa\x7e\x3a\x90\x08\x59\x4c\x28\x52\x25\xa1\xd8\xae\xcc\xef\xfe\x3f\xc0\x05\x48\x90\x84\x16\x67\xe9\xf4\x4c\x7b\x4e\x2c\x92\xd8\x71\x71\x71\xf7\x1b\x55\x1f\x39\x41\x18\x81\xe5\x4c\xe6\x1f\xdd\xbd\xfb\x8d\xdb\x6b\x73\xcd\x40\x88\x86\xcb\x76\x8d\x58\xd8\xd9\x01\xff\x26\xc1\x04\x91\xb2\xa1\xda\xd7\x70\xe3\xd7\x08\xcb\x6e\x73\x12\xd4\xf3\x8b\xd4\x49\x51\x93\xca\xab\x50\xeb\x9f\xdb\x4d\x6e\xce\xfe\x91\x7e\x72\x62\x58\x7f\x83\xa3\x9c\xbb\xca\x49\xe1\x11\x33\x63\xae\x82\x40\x12\x0b\x7a\xbc\xdf\x39\xf6\x7a\x84\x63\x49\xfe\x4d\xed\x3b\xb6\xba\x48\xc3\xc0\x5b\x15\x29\x54\x41\x02\xac\xd2\x9a\x8a\x87\x4a\xc2\x3d\xf1\xa2\x91\x11\xd4\xeb\x75\xbb\x39\x01\xca\x02\x6c\x4a\xbc\xbd\x5e\x4e\x54\x84\x14\xe9\x33\xaf\xc2\x9b\x48\x13\x93\x70\xf2\x3e\xd3\xf6\x26\x2f\xc2\x38\x49\x8b\x37\xa2\xd0\x23\x9a\x31\x0f\xcd\x2b\x21\x12\x8b\x20\x2b\xbc\x5f\x84\x27\x2c\x08\xbd\x6b\x1d\x88\xc5\x88\xe9\xe3\x2d\x58\x4e\xea\x7e\xfb\xe8\xea\xba\xcc\x86\x31\x1e\x8f\x05\x27\x9c\x24\x82\x5a\xd0\x83\xee\x92\x49\x96\x49\xc7\x57\x4d\x64\xaa\x02\xa2\x1e\xf8\x2e\xd7\x03\xc4\x6b\xf6\x29\xd5\xa9\xed\x42\x41\x10\x82\x58\x24\xf2\x13\xb5\x1b\x99\x0f\xf6\x19\x9a\xbe\xe4\x37\x37\x6e\xe6\x67\x9d\x25\x9f\xb8\x18\x93\xfd\x3f\x62\xc7\xf8\xcf\xc8\x16\x02\xf6\x1d\x0f\xf6\xf5\x71\xcc\x94\x9c\xc5\xb5\x59\xe2\x38\xbf\x23\x4c\xf6\x21\x41\x44\xb3\xc5\xda\x2b\xc7\xb9\x2f\xa8\xc3\xa2\x1f\xc6\x69\x18\x69\xba\xd0\x91\x64\x98\x8f\x4a\xba\xb0\x0d\x0b\xe7\xec\x1b\xf8\x68\x1f\x39\x87\xf6\x56\x1f\x94\xc5\x42\x53\xd8\x00\x12\x10\x82\x3c\xa7\x70\x9d\x28\x0a\xc6\x62\xe8\xea\xed\xfd\x43\xd9\xca\xd6\x49\x98\x2b\x05\x8b\x2e\x29\x4a\xd4\x18\x55\x39\x1e\x93\xba\x0b\xeb\xd6\xfd\x05\x4b\x5d\x11\x2f\xb1\xfe\xbe\xd9\xd1\x7c\x2c\x7a\xd0\x13\x28\xb6\x86\x91\xd2\xff\xc3\x33\x10\xf5\x29\x73\x55\x62\x3e\x9d\xba\xc3\x43\x28\xc7\xb8\x88\x81\x4a\x50\x6d\x52\x8d\x0d\x04\x84\x2b\xc5\xc5\x6f\x66\x6c\xce\xbc\xbd\x9e\x0c\x31\x91\x81\xa5\x56\x25\x36\x33\x53\x5f\x56\x65\x0c\x0a\xd6\xef\x79\x47\x44\x46\x49\x17\x35\xa7\x61\x14\x79\x2c\x27\x65\xba\x71\xaf\x9b\xe7\x39\xb9\xb0\xcb\xf8\x64\x7c\x86\xd7\x34\xa5\x73\x10\xf4\x05\xc0\x06\x36\x8b\x0e\xd0\x57\x2c\x98\x1c\xdd\xe9\x22\x82\xbe\xa2\xd3\xe0\xdf\xd3\x7f\x8b\x5f\x93\xf1\x9d\xf1\x9d\xb1\xf8\x75\x27\xa0\xdf\xdd\x09\xc4\xaf\x7b\x77\xee\x74\x59\x80\x86\x92\xb9\x54\x22\x98\xd8\xef\x9e\x14\xb7\x74\xca\xb2\x65\xc4\xeb\xbb\x43\x92\x32\xd1\xd9\xbf\xa8\xef\xfb\xdd\x56\x2b\x01\xba\xfa\x81\xdf\xed\xc7\xf7\x3b\x77\xfb\xed\xb8\xdd\x39\xf2\xba\x5e\x3b\xc6\xa4\x7e\x21\xf3\x41\xf2\x2f\x3a\xbc\xb9\x41\x5f\x7d\xfb\xed\xb7\x08\x57\xd2\x83\xf5\x0e\x20\xee\x87\x4b\xc5\xad\xcd\xe5\x39\x96\xfe\xc4\x52\x9f\x20\x8e\xb2\x56\x40\x64\x52\x8d\xa9\x45\xe0\x85\xb3\xe2\xba\x31\x57\x82\xf8\x2b\x93\xb4\x4c\x3a\x8a\x80\x54\x8e\x24\xfe\x60\xa8\x83\x51\x9e\x2c\xef\xfb\xd1\xc9\xf2\xc0\xcf\x74\x00\x66\x3a\x98\x0c\x4f\x0a\xde\x6a\xd2\x6a\xcd\x07\xdd\xe1\xfd\xe5\x41\x76\xd8\xeb\x76\xfb\x6e\x02\x62\xcf\x41\x8f\x1d\x7f\x23\xbe\x90\x0f\xcc\x9d\x0f\x7a\x43\x3c\xc4\x64\x72\x70\x80\x3d\xb3\xc0\x52\xca\xd1\x86\xfa\xfa\xd0\xbc\x9c\x52\x3e\xa4\xfd\xd4\x5b\xe5\x3a\xb7\xcb\x80\x0f\xcd\x84\x79\x62\xd7\xbd\x44\xf9\xb1\x70\x88\x0e\xfe\xc1\x06\x30\x72\xa5\x9f\x46\x89\x38\x11\xa5\x3c\x33\x7b\x49\x5f\xba\x1c\xf7\x45\x57\x1e\xcf\x4f\xa8\xdb\xbb\x77\x0c\x46\xc3\x77\xe0\xcf\x5d\xf8\xf3\x2d\xfc\xf9\x4e\x05\xca\x63\xe4\xfa\xf3\x0b\xfb\x92\xaa\xb0\x2f\xf2\xbb\x27\xd1\xfd\xf8\x24\x3a\x38\xc0\xc9\x20\x32\x85\x7d\xd1\xe7\x13\xf6\x25\x52\xd8\x27\x05\x29\x6b\x4c\x82\xe5\x37\x65\x0c\x20\xad\x52\xa6\xcf\x4e\xfd\xae\xf4\x97\x03\x29\xca\x79\x99\xb0\x97\xc9\xfc\x18\x85\xf3\x4b\x21\x9f\xf1\x2e\x98\xd6\xeb\x43\x92\x93\x4a\xf2\x8c\xc2\xfe\xb6\xb6\x22\x0f\xba\xad\x96\x8e\x93\x6c\xcc\xbe\x6b\x12\x5c\xdd\xa1\xa7\x85\x8a\xa5\x88\x90\x16\x13\xd2\x3a\x23\x99\x8c\x4d\x99\x47\xbe\x8e\x12\x6e\x4e\x4d\x1c\x47\x99\x9b\x23\x15\x97\x61\xa3\x2a\x26\x8c\x4c\x8b\xe1\x6b\x5d\x06\xb1\x19\xe8\x62\xac\xac\x8c\x8b\x7e\xcc\x49\xbe\x10\x8d\x40\x9f\xb8\xd5\xd2\x3f\x75\x69\x17\x6f\x15\xac\x92\x86\x1c\xd5\x9c\xb2\x9c\x42\xcf\xf7\xfd\x35\x3b\x53\xc8\x1f\xd7\x7d\x2f\x0d\xe6\x70\x3f\x96\xf8\x22\x60\x2e\x27\xb5\x89\x63\xec\xd9\xa4\x05\x46\xfe\x13\x56\xb6\x24\xd3\x9c\xe0\xb5\xb0\xc2\xea\x53\x96\xb2\xba\x8d\xa2\x64\xb0\x08\x9a\x3e\x3b\x6d\xb5\x26\x34\x9e\xb0\xe8\x61\x1c\xce\x65\x90\x90\xa7\x29\x15\xc4\x2d\x7c\xc5\x05\xa4\xa6\xec\xcf\x25\xcb\x78\xad\x98\x5b\xb5\xd1\x8e\x12\x7e\xce\xf8\xc3\x38\x38\x4d\xe9\xa5\xdb\x58\x5d\xbd\x18\xac\xb9\x18\xca\x82\x57\x4f\xa3\x2a\x81\x34\x77\x7f\xdb\x68\x6b\x63\x30\xa0\xe1\xac\x96\x37\xb1\x09\x49\x72\xeb\x0b\x80\x2a\x93\xa8\x7c\x21\xb9\x70\x69\x2e\xac\x13\xb3\x81\x48\x56\xc0\xa5\xbc\x86\x53\x00\x50\x79\x4e\x12\x9f\xd6\x2d\x88\x45\x99\x3d\xdf\x8f\xfb\xae\x92\x10\xaf\xc1\x23\x35\xf9\x71\x05\x9b\x94\xdd\xe2\x5c\xd9\x6d\x46\x09\xc7\xd8\x63\xba\x67\x71\x75\x34\x64\xd0\xeb\xdb\x30\x21\x42\xca\x40\x36\x9e\xa2\x3e\x87\x45\x97\x49\x66\x65\x5e\x9f\x06\xcc\x34\xce\x08\x33\x73\x04\x6d\x3b\x83\x70\x72\x20\x90\x58\xcd\x6a\x3a\xd1\xd9\x37\xe5\x00\xac\xa6\xde\x1b\x7d\x05\xd7\xd5\xdb\xc1\xec\xbc\x82\x41\x8b\x16\xaa\xa0\xbb\x56\x86\xff\x91\xe8\xdd\x90\xdb\x97\xe8\xee\x85\xda\xbd\xe2\x10\x98\x8f\x2a\xe0\x2c\x75\x75\x4e\x4e\x8d\x69\xe5\xc1\xba\x95\xce\xa1\xd1\xf1\x6d\xf5\x01\x56\x01\x78\x26\x8d\x0e\xe0\x74\x6b\x6d\x37\x49\x62\x38\xe8\x30\x61\xf3\xe8\x93\xec\x7d\xb8\x78\x15\xcb\x4d\x95\x82\x6d\x9b\x4c\x7d\x8d\x3a\x42\x8e\x1c\x91\x54\x9b\x60\xe8\xdb\xcd\x1e\xb2\x8b\x91\x95\xa1\xc1\x91\x7a\x84\xf5\x47\x54\xd3\x2d\xe5\x99\x62\x44\xa9\x5b\xcc\x39\x18\x98\x9d\xd4\x55\x34\x66\xb9\x9a\xf2\xa6\xaa\xe7\x6a\x36\x08\xb7\x63\xbe\x5e\x8e\x4e\xae\xec\x8c\x83\xc4\x50\xd4\x2f\xf0\x84\x0c\x69\x50\xb5\xd2\x91\x26\x04\x19\xff\xb9\x64\x31\xf4\xbe\x0b\xb8\xc3\x7d\xc0\x0f\x8a\xb0\x5e\xeb\x68\x6c\xc6\x04\x01\x99\x01\x4d\xaf\x51\x4e\xd0\x93\xf9\x82\x5f\x3b\x92\x81\x71\xa0\x11\xc1\x7c\xcd\x29\x4f\xc3\x2b\xb4\x57\x36\xfd\xe6\x7a\xc1\x76\x8d\x35\x82\x7e\x36\x9a\x73\xc2\xcc\x49\xa6\xce\xa5\x60\xfa\x1c\x7e\xbd\x60\xce\x3e\x22\x66\xab\x04\xed\x13\x07\x76\xda\x19\x33\x67\x1f\xfa\xde\x77\x5c\x69\x8f\xe4\x7c\x60\x13\x9e\xa4\xb8\x83\x6c\x0a\xf0\x6b\x46\x56\x92\xec\xe6\x44\xad\xa0\x47\xab\xd6\x4f\x31\x31\x98\x33\x2f\xb5\xba\xaa\x9a\x93\x90\x22\x1c\x31\x87\x97\x89\x23\x5a\x96\x4b\x13\xb2\xc0\xb9\x66\x5c\xf0\x98\x4f\x98\x8d\x24\x60\x85\x62\x87\xdd\xe9\xb3\xd2\x39\x9e\xdd\xc1\x82\x8d\x7c\xbf\x7e\xf7\x4f\x4a\x7d\x43\x21\xe9\xfe\x94\x11\x9a\xed\xa9\x45\xbe\xb9\xb1\xc0\xc8\x6e\x7d\x6d\x05\x95\x13\x23\x6f\xc0\x5e\xaf\xcc\x17\x5e\x6e\xaf\xf2\x70\x85\x6d\x44\x5e\xec\xbb\xd4\x7f\xc2\x8a\x22\x0d\xf1\x02\xd9\xe8\x27\xcd\x53\x65\xa6\xc2\xad\xca\x3c\x1e\xac\xf5\xa2\x36\x14\x73\x05\x5b\xa9\xf5\x73\x3d\xbb\x51\x52\xd9\x9c\xe2\x49\x05\xd3\x28\xef\x42\xb5\x88\x7b\x8d\x65\xad\xa4\xc8\x81\x43\xb4\xdb\x94\xab\xbc\xef\x3a\x99\xcb\xa0\x37\x3c\x40\xce\xff\x8f\x0e\xd8\xa0\x3b\x2c\x05\x24\x7f\xc4\x68\x53\xe8\x03\xb9\x68\x4a\x6b\x28\x43\x25\x9c\x2f\xe8\x04\xac\x43\x51\x4e\xfe\xfe\xd5\xa4\xb7\x58\x44\x65\xf7\xe4\xd1\xb5\xb6\x4b\x05\x48\xa0\xae\x5d\xc3\x5b\xf4\x5b\x18\x51\x6d\x2c\xa5\x07\x23\x37\xbb\xe2\xe8\xac\x32\xb8\x7e\xa6\xb1\x40\x63\x1f\x31\x16\x9d\x45\x7f\xa7\x13\x5c\x22\xe5\xb7\x71\xb6\x5c\x2c\x92\x94\xb3\x40\xa3\x66\x09\x6c\x12\x29\x23\x23\xf1\xd0\x76\x2b\xa3\xd8\xa6\xbe\xb6\xf6\xba\x35\x9e\xd4\xaf\x34\x8d\xc3\xf8\x02\x22\x4a\x3d\x65\x7c\x32\x63\x81\x53\x5e\x10\xfa\x5e\x47\x0e\x00\x59\x46\x9c\x24\x8e\xae\x1d\x15\x65\x2a\x8c\x2f\x9c\x69\x98\x66\x5c\xc6\x99\xd2\x65\x3b\xd6\x55\x1d\x49\x3a\x47\x52\x04\x7b\xdd\xd2\x96\xd2\x34\x16\x10\xe8\xb4\xcd\xe9\x38\x62\x6b\x76\x6f\x9c\x04\xd7\x25\x10\xe3\x9c\x5c\x2a\x27\xef\x7f\x63\x62\x35\xfe\x4b\x28\x08\xc4\xc4\xd1\x2e\x05\x62\xf2\x9a\x87\x09\x02\x01\x71\x1b\x52\x4e\x22\xe0\xb6\xa0\x05\xb3\x5d\x2d\x1a\xa6\x51\x42\x79\x3b\xd5\x17\xc7\xf3\x84\x82\x59\xaf\x27\x56\x9a\xa0\x79\xe6\xfc\xb1\x3c\xea\x76\x8f\x9c\xd2\x6c\x55\x46\xee\x22\xc8\xfc\x22\x20\x46\x09\x52\x1d\x44\x64\xf8\x68\x23\x7a\xe5\xff\xa4\x7d\xc0\x5e\xd5\x2f\x42\x46\xde\xf5\x15\x31\x4d\x58\xe7\x8d\x68\xc3\x47\x0a\x62\xdc\x31\xbb\xb9\x71\xc7\xcc\x5f\xe5\x2a\x3f\xc4\x39\xf3\x57\x32\x38\xc5\x58\x95\x25\xec\x6a\x91\x7a\x08\x29\xe3\x6b\xe9\x34\xa5\x64\xa6\x10\x33\xb9\x84\x11\x78\xd6\x54\xcd\x5e\x2f\x27\x6f\xfe\xe6\x00\x5e\x74\x9c\xa4\xfc\x59\xfc\x54\x12\x1c\xf2\x68\x6a\x6f\x7c\x33\x6a\x8a\xcd\x75\x1d\x18\x95\x22\x06\x04\x04\x6c\xe2\xfe\xa9\x78\x1b\x27\x97\x3a\x16\x78\x19\x1e\xab\x6c\x0e\x22\x63\xa9\x2f\x2a\x57\x83\x68\x68\xcf\xf7\x19\x88\x8b\x8a\x68\xe0\x2b\xb9\x98\x2c\xc7\x04\x49\x15\x04\x5e\x51\xcb\x98\xa5\xb4\xad\xf9\x5a\x0a\xdd\xd6\xcc\x50\x07\x86\x96\x22\x50\x51\xe4\x31\x78\x77\x44\x2c\x3d\xb1\x56\x6a\x5a\x25\xc7\x50\xcc\xd5\x01\xc2\x14\xcb\xaf\x02\xab\x48\xc6\xe9\xa4\x74\x62\xba\x60\x5c\xd9\xcf\x9b\x81\x0b\x0e\x7b\xec\x98\x84\x7e\xd2\xae\xaf\x07\x18\xea\x97\xb1\xac\x8a\xf7\x05\xf0\xdc\xdc\x14\x31\xf1\x8d\x60\xe2\xd6\x76\x0e\x8f\xee\x76\x31\xe9\x61\x92\xc9\xf9\xbe\x3d\x7b\x0e\x21\xaa\x80\x62\x76\x55\xec\x69\x46\x02\x16\x2c\x17\x9e\x21\x69\x3c\x15\x2f\xa2\x50\x45\xc5\x35\xe4\xe0\x0b\x9a\xf2\x90\x46\xa3\x22\x1e\xe3\x0e\x95\x72\x7c\x62\x04\xdb\x34\x07\xc9\x4b\x1a\x12\xce\x9d\x97\xfa\xe8\x90\x2e\xc2\xc3\x0f\xbd\x43\x39\xb8\x91\x72\xb9\xc8\x54\xd2\x76\x17\x82\x9c\x22\x12\x1a\x1d\x60\xe3\x33\xd8\xc4\xad\xf9\x98\x71\xb6\x40\x24\x32\xbf\x9a\x34\x00\x9c\xf5\xc6\x18\xcc\xde\x95\xc3\x84\xa5\x05\x7d\x73\xd7\x03\x77\xee\x3f\x8b\x3f\xd0\x28\x0c\x9c\x05\x8d\x59\x04\x5c\x12\xda\x3f\xb0\x2d\xc5\xc1\x3e\xda\xc7\x39\x04\x17\x2d\xc3\x16\xeb\x92\x65\xa4\xef\x42\xb7\x96\x12\xd4\x2f\x35\x6d\x19\x26\xb7\x08\x47\x4a\xb2\xf0\x22\xa6\x91\x17\x77\xe0\x47\x8e\x3b\x7c\xc6\x62\x6b\x3c\x69\xa6\xe2\x8a\x0a\xaa\xb4\x59\x28\x9c\xba\x28\x5b\x4e\x26\x2c\xcb\x20\x20\x1d\x44\x2a\xc5\xf5\x95\x60\x10\x5b\xf3\xe6\x06\x85\x6a\x49\x34\x14\x39\x3f\x9e\xbf\x7a\x89\xf4\xd1\x94\xe1\xfe\x81\x83\x2a\x13\x0e\x48\x6e\x3a\xf3\x53\x93\xb9\x9c\x14\x8f\x27\x9a\xfc\xf3\x7d\x3f\xeb\xc7\x7e\xcf\x9b\xb4\x5a\x13\x43\xfe\xe3\xc6\xbe\x7e\x94\xd1\xf4\x8b\x53\x0b\xd1\x44\x25\xee\x93\xcc\xa6\xea\xa9\xc6\x96\x4b\xed\x22\xe8\xc2\xbc\xb0\xc0\xea\x89\x89\xd2\xa3\x9c\xc8\x7b\xdb\x5b\x69\xc2\xc0\x2b\x71\x62\x9b\x57\x8a\x12\x93\x3e\xf0\xe2\x9c\x14\xb8\xa3\x97\x6f\xc0\x5d\xb9\x54\xb1\xf0\x8a\x3d\x05\xc3\x2b\x24\xf1\x98\x5c\x63\x58\xff\x98\xce\x35\x3e\xad\xcc\x12\x02\x7c\x3a\x80\xe1\x05\x79\x05\xe7\xdf\x41\x07\x4c\xc7\xf1\xac\x8c\xa4\x2a\x72\xae\x07\x3a\xac\xb9\xcf\x1a\x9d\x55\xee\x06\x81\xc4\xcb\x46\x0c\x0f\xae\x66\xfd\x02\xf9\xc3\x0d\xaa\x2a\x96\x08\xd4\x86\x8b\x81\x1d\x6e\xdc\x2a\x50\x41\x86\x85\x30\x9c\x82\xab\x5f\xeb\xa3\x6a\xf4\xd2\x18\x97\xde\x78\xdb\x94\x8a\xed\xdd\x34\xaf\x12\x06\x2c\x4d\x08\x98\x5e\xbb\xa8\x12\x38\x01\x08\x48\xb5\x51\x49\x84\x58\x9a\xd3\xce\x32\x1b\xc6\xa3\x29\x10\x55\x5b\x69\xd3\x8a\xae\x1a\xa7\x00\x5e\x16\x10\x42\x8c\xc3\x03\xb0\x0f\x0c\x75\x6d\xff\x2b\x77\xfd\x17\x55\x15\x14\x5d\x55\xf4\x05\xc5\xcb\xd8\xa7\x85\x16\x3b\xd5\xfe\xc5\xe0\x69\x5c\x92\xef\xa1\x4f\x25\x32\x3e\xe1\xba\xac\x0f\x01\x44\xa0\xb8\x0f\xd2\x7e\xa3\x86\x0f\x92\x72\x59\xc9\xf7\xfd\xf0\xe6\x06\x12\xf3\x9b\x84\xcf\x47\x48\xcf\xd7\xd4\x2f\xb7\x6f\xfd\x32\x7c\x51\x7b\xb3\x57\xff\x4c\x7b\xb3\x57\x7f\x9f\xbd\x99\x05\xb2\x56\x39\x11\x3c\x8c\xe9\x3a\xa9\x76\x09\xce\x62\xf0\xc9\xc1\x0c\x17\xea\x28\x86\x2c\x93\x4e\x08\xc0\x32\x43\xa6\xae\xb4\xcc\x7d\x76\x1b\x66\x53\x12\x24\x56\x36\xf3\xcf\xf5\x89\x15\xde\xae\xff\x44\x99\x0e\xfd\x66\x68\x34\x6a\x8c\x42\x33\x5e\xae\x29\x71\xaf\x7f\x23\xe6\x21\xf0\x1a\xc7\xa2\x40\x45\x46\x7f\xea\x15\xb1\xc5\x80\xf5\x56\x4a\x7a\xfd\x43\x28\xa8\xa3\x6b\xe4\x51\x82\x5e\xc8\x85\x74\xe4\x4a\x22\x2f\xce\xd7\x78\x35\xef\xb2\x24\xe6\xb4\x05\x66\xdc\x59\x92\x52\xaf\xf8\xf1\x43\x58\x93\x49\x84\xd3\x31\x18\x4b\xdd\x3e\x89\x86\x19\x9d\x48\xd2\xc7\x02\x03\x4a\x64\xd7\x47\xe0\x81\x29\x13\xe3\x6d\x72\xe2\xac\x5f\x72\xae\x66\x99\xc5\x99\x40\xf2\xd7\xc7\x25\xf8\x68\x28\xc1\x3e\xcf\xd8\xa4\x28\x40\x8e\x0d\xd2\xf1\x60\x4c\xf6\x9a\x20\xd6\x6a\xed\x35\x37\xdc\x74\xfe\x11\x37\xa2\x0d\x04\x2e\x19\xa9\x17\xb3\xce\xfe\x91\xf4\x56\x97\xd3\x78\x43\xc7\x1e\x4c\xcc\xb6\x85\xbf\xa8\x2d\x7e\x16\xe8\x3d\xca\x49\x7d\xb3\x6c\x03\xd9\xc9\xa9\xb2\x81\x36\x64\xc3\x65\x50\x04\xdb\x80\x0a\xff\xf5\xf4\x63\xdc\xd6\x53\xab\xb7\xba\xc0\x2c\x14\x64\x22\x6b\x9c\xd6\x2d\xb4\x9c\x5d\x5a\xfd\xbe\xd0\x2c\x95\xdb\x20\x9e\xd7\x1c\x7d\x73\x79\xb5\xae\xb5\x84\xb7\xe6\x6d\xf0\x49\xeb\x1d\x31\xb2\xaa\x2e\x83\x26\x3a\x6f\xbb\x96\x25\xad\x99\x9a\xf4\x8d\xa6\xf9\xd2\xd2\x72\xc2\x8c\xab\xd0\x5c\xca\x33\xa0\x92\xaa\xb1\x00\xd6\xae\x38\x69\x7a\xc9\x5b\x9a\x2c\x87\x53\x77\xed\x6e\x16\xd6\x5f\xac\x9a\xe4\xab\x35\x5b\x69\x99\xe6\x4e\xab\x56\xa7\x78\xcd\x63\x5f\xfd\x24\xbd\xc6\x3f\x23\x9e\xae\x47\xf1\x32\xe5\xba\xa4\x50\x0f\xc6\xef\x6b\xe1\x27\x74\x5c\x84\x79\xf2\x81\xbd\x16\x17\xba\x19\x49\x00\x9d\xc9\xf7\x8e\xfc\x80\xd6\xb9\xb9\x97\x82\xde\x77\xff\x93\x82\x5e\x31\xae\xc7\x16\xe6\x11\x8d\x6a\x2e\x22\x34\x0e\x92\xb9\x8b\x4b\xe1\xce\xf1\xb7\x58\x67\x00\x3b\x22\xf7\x30\xce\xc9\xeb\xcd\x2a\xe2\x6e\x4e\x5e\x58\x4b\x28\x1b\x53\x66\x58\xa2\xb0\x9c\x9c\xda\x74\xc7\x2b\xd4\x42\x1e\x6a\xd1\xf9\xe2\x04\x11\x74\x5f\xfc\x8e\xb8\xf8\xf9\x40\xfc\xbc\x10\x3f\xf7\xd1\xbe\x87\x5a\x7f\x2e\x13\xf9\x7e\x5f\xbc\xff\xea\xf8\x9e\xf8\x7d\x28\x7f\x5f\x1d\x3d\x3d\x41\xb9\xa6\x05\xd5\x64\x18\x2e\x23\xf9\x0f\x5a\xf7\x1f\xa0\xfd\xc3\xe1\xe1\x05\xb1\xc9\x7b\xf8\x80\x0d\xa5\x89\xeb\xcb\xad\xfe\x73\x4a\xee\xa2\x3c\xe8\x5c\x56\xf5\xad\x3f\x40\x2b\x44\xa8\x3f\x18\x56\xe3\x17\xb0\x46\xfc\x02\xa5\x76\x8b\x0f\xf6\x7d\xb4\x7f\xc0\x06\xf1\x50\x0a\xc3\x0a\x87\x81\x03\x9f\x2a\x7d\x28\x71\x44\xb3\x39\xca\xc9\x88\xf9\xab\x6b\x4f\x87\x16\xbb\xf4\x54\x0c\xb2\xc0\x83\xc8\x64\x33\x10\xc1\xcf\xbd\x6f\xbb\x24\xf3\xcc\x3c\xae\x32\xaa\x98\x5a\xed\x98\x5d\x3a\x67\xec\xe2\xc9\xd5\xc2\x45\xff\xe7\x0e\xba\xed\x7b\xc3\x03\xec\x0e\xae\x2f\x83\xd9\x3c\x1b\x1e\xe0\xaf\x11\x96\x0a\x9e\xb9\x94\xbb\x70\x0c\x0e\x4c\x37\x37\xc7\x7b\x7e\xe1\xcc\x8b\x8d\x4d\x56\x32\xac\x22\xb6\x08\x1d\xf4\x86\x32\x01\xe1\xe0\xa8\x08\x1a\x1f\x7f\x33\x62\x83\x74\x58\x26\xd0\x92\x31\xc6\x0c\x56\xad\x4b\xaa\xa7\x6f\x24\xce\xcd\x7d\xda\x60\xda\x62\x5f\xf0\x57\x52\x5c\xf6\xaf\x91\x58\x34\xdf\xf7\xbb\x85\xaf\xd7\xa1\x7c\x75\x10\x17\xdc\xcb\x01\xca\x50\xd9\xe9\x19\x33\x76\xfc\xac\x43\xa5\x37\x06\x33\x83\xeb\x8a\x2e\x9e\x59\xcd\x1b\xee\x77\xfb\xa8\x2d\x69\x2b\x2a\x1f\xda\xbd\x6f\x98\xc7\x48\xec\x8b\x76\x82\x65\x4a\x95\x0f\x14\x9a\x67\x48\xcc\xde\x10\x54\xc7\x1d\xd3\xb9\xc5\xc5\x98\x24\xd5\xcf\xc6\x97\xb0\x5e\x51\x65\x7a\xc7\x24\xaa\x7e\x99\x41\xe6\x6d\x4c\xb2\xea\x7b\x9a\x9d\xd2\x6b\xf1\x41\x2f\xbd\x38\x78\x59\xdf\x96\xdb\x2e\x23\x28\xa8\xba\x9b\xcd\xaa\xce\x68\x73\xe3\x31\x21\x28\x43\xd8\x13\xad\x45\xd6\xd6\x76\xae\x1e\x5a\xab\xaf\x2f\x9f\x58\xcb\x27\x52\x31\x6a\x88\x85\x45\x71\xfa\xa0\x6b\x2d\x4c\x0b\x27\xc0\x63\x0c\x3b\xe4\xa1\xae\x20\xe4\x9e\xd7\x5d\xa4\xe0\x1e\x90\x80\x52\xd8\xf9\x8b\xad\x7f\xc9\x3e\xb0\x14\x79\xcf\x98\xcb\xdb\x14\xe7\xe4\x57\xe6\x1f\xfe\xdf\xc5\x1f\xc1\xc1\x1f\x9d\xce\x81\xdf\x39\xf8\xfa\x90\x3c\x6c\x60\x0e\x84\x0c\xbc\x31\x18\x9e\x68\x91\x0d\x20\x58\x81\xa1\x7a\xb8\x93\x2d\xa2\x90\xbb\xa8\x55\xda\x3c\xf0\x66\x0c\x05\x06\x31\x14\xb4\x68\xb8\x30\x6b\x47\x17\xc8\x58\x82\x0e\xd2\x69\x69\x39\x4d\x79\xf6\x6b\xc8\x4d\xa9\x7a\x42\x64\xac\x7d\x5f\xdc\x8a\x2a\x36\x5c\xcd\x17\xdf\x1e\x6f\x81\x61\x32\x58\x85\x81\xf7\x98\xb9\x58\x9a\x57\x94\x4d\xa6\xb8\x48\x9a\xca\x95\x99\x50\x6c\x49\x2b\x62\x5a\xc1\x70\x73\x70\x09\x6e\xb5\x7e\x65\x1d\xce\x32\xb1\x5b\xfd\x2f\x2a\xc5\x79\xf7\xcf\x94\xe2\xbc\xfb\xfb\xa4\x38\x8c\xac\x72\xf2\x03\x73\xb9\x01\x80\x21\xc6\x58\x2a\x1d\xcf\x19\xce\x87\x46\x05\x19\x81\x43\x14\xb7\xda\x7a\x29\xa0\xf5\xe5\x55\x61\xa6\x8a\xe1\xe4\x08\x13\x81\xa4\xbb\x43\x79\x05\xf4\x86\x24\xf1\x03\x36\x49\x02\xf6\xf6\xec\x59\x41\x81\xb9\x69\x79\x33\xff\x71\x70\x78\x41\x90\x83\x70\xa1\x34\x8b\x95\x86\x4c\x80\xab\x4e\xb9\x06\xea\xd1\x24\x2f\xf4\x56\xc5\x07\xc8\x97\xd0\x15\x67\x2d\xe9\x6b\x5e\xb6\xd0\x51\xe7\xda\xd8\x45\x92\xc4\x45\x25\x4d\x2c\xa3\x9e\xac\xa7\x4a\x49\xf6\x63\x04\xf1\xa9\x3c\x38\x22\x7f\x31\x37\xc1\x86\x8d\x62\x88\xfb\x8a\x5b\x09\x73\x01\x5a\x3a\x35\x9c\xae\x05\xb6\x52\x32\xb7\xae\x7e\xa5\x27\xa0\xf8\x88\x33\xd1\x62\x31\x2c\xb6\x30\xfb\x8b\xca\x6b\xb4\xec\x35\x7a\xd0\xed\xaf\x2a\x7a\x17\x6f\x95\x6b\x8f\x9e\x3c\x27\x7f\xda\xf7\xe8\x3d\xbb\x96\xf7\x78\x29\x0b\xde\x18\x48\xa6\x34\xa1\x36\x90\x0a\xab\x60\x59\x4e\xc4\x8e\x17\xdf\xe2\xc6\xae\x52\x41\x6e\xbb\x1c\xd2\x0f\x8b\x0d\x93\xa2\x66\xb1\x41\x52\xc8\xac\xf9\x92\xa8\x90\x44\x67\x86\x7c\x7a\x52\x95\x4a\x2f\xfd\xbd\xbd\x17\xcc\xcd\x70\xab\x65\x19\xb7\x71\x7b\x6f\xf0\x8f\x44\x38\x77\x33\xbd\x8e\x83\xd8\x05\x88\x22\x29\x26\xb1\x2b\x61\x88\x24\xbe\xef\x6b\x98\xe9\x77\xbd\x9e\xfc\xa2\x81\x85\x84\xfd\x9e\xd7\x95\xaf\x4c\xc8\x20\x4f\x99\x1b\x61\x4c\x96\xc6\x5d\x13\xbb\x06\x10\x90\x25\x26\x02\xa1\x1b\x1f\x2b\x10\x41\x96\x58\x86\x70\x7b\xc1\xdc\x09\xee\xc7\xae\x09\x06\x64\x22\x3e\x0d\x35\xb3\xf0\x9a\x69\xab\xb8\x16\xc2\x39\x79\x6b\x23\xb5\x51\xa7\x03\x59\x5e\xfb\x17\xdd\x0e\xa0\xf8\x0d\x7b\xc4\xc4\xd8\x2e\xba\x1d\x4e\xc7\x7e\x4f\xfc\x50\xb3\xf5\xbb\xe2\xc1\x98\xa7\xdf\x93\x09\x83\x1f\xad\xf1\xfb\xae\xa5\x93\x62\x60\x07\xc8\x71\x4e\x7e\xa9\x70\x1e\x1a\x91\x37\xad\xd4\x09\x37\xdc\xb2\x98\xc0\x24\xdd\x13\x7a\x9f\x9d\xd0\x83\x03\xcc\x07\xd4\x74\xcb\xa2\x43\x4b\x46\xc5\x0d\x2d\xd3\x6a\xcb\xb1\xdf\x3d\x89\xef\xb3\x93\xf8\xe0\x00\x53\x41\x34\x96\x2d\xc7\xc3\x13\xae\x17\xfb\x51\x92\x44\x8c\xc6\x36\x74\x6c\x72\x3e\xc0\x71\x29\xb3\x29\xd0\x18\xfe\xc6\xfc\xd5\x34\x4c\xa5\xe9\x97\x92\x71\x92\x05\x8b\xa5\xa8\x16\x5d\x82\x51\x18\x22\x61\xac\x02\xb8\x15\xca\xe3\x9c\xfc\x6c\x3f\xbc\x34\x8e\x13\x4e\xb7\x08\xb8\x93\xed\xb2\x2c\x9e\xae\x35\x7a\x94\x76\x79\xab\x49\x12\x9d\x2f\x68\xec\xdd\xb1\x1a\x5f\xcd\xee\xd6\x4c\xaf\x92\x98\xb7\x2f\x65\xde\x9a\xf6\x38\x89\x02\xc1\x71\x3f\x2c\x87\x8a\xec\xe2\x81\x5b\x8d\xa2\x06\x57\x9b\xec\x4b\xcd\x8b\x87\x35\x2e\x9e\xad\x8a\x81\xf5\xa6\xa2\x15\xa3\xbe\x78\xbd\x53\x00\x18\x39\x81\xfd\xa7\x60\x1e\xbf\xb7\x6f\x66\xba\x8c\xc0\x66\x2e\x9b\x25\x97\xc6\x72\x7d\x89\x5c\xe5\xbb\x48\xdc\xa4\x44\x7e\x4a\x03\xe9\x56\xbc\x2d\x03\xb9\x92\xc4\xfc\xc6\x06\xca\x11\x67\xa8\x43\xf6\x4c\x96\x69\x26\x13\xd2\x24\xa1\x0c\x0c\x6f\x8d\xfe\x5a\x46\x21\x8c\xfa\x2f\x3a\x53\x5b\xb8\xf2\xad\x3b\xc0\x21\xf9\x36\x41\x8e\x8b\x88\x41\xdf\x77\x68\xc4\xd2\xf2\xd0\x23\x47\x49\xc0\x21\x64\xc5\xd6\xac\xe5\xd5\x8c\xee\x47\x76\xf3\xc3\x45\xca\x4a\x73\xe3\xd2\x3b\xde\x43\x5f\x4d\xef\x8a\xff\x11\x59\xd0\x40\x9e\xf3\xde\x5d\xeb\x02\x20\x81\x81\xd7\x83\x7f\x09\x47\x48\xe6\xc3\xb7\xc6\x29\x94\x09\xdf\x79\xe2\xbd\x65\xee\xfe\xc3\xe7\x4f\xce\xde\x9c\xaf\xe4\xd4\x45\x0d\x1f\xed\x97\x0b\x22\x5e\x90\x7d\x94\xef\x0b\x68\x54\xcb\xb6\x05\x7c\xe5\x9d\xb8\xb5\x5b\x0e\x5e\xe1\xb2\x55\xf8\xb5\xa5\xd9\xcd\x7d\x2a\x63\x6b\xbb\xbd\x70\x43\xfe\x3e\x8f\xda\x77\x05\xa6\xc9\x04\x13\x16\xf2\x6b\x69\xe8\xa9\x62\x2e\x74\xf4\xcb\x4f\x1b\x90\x81\x6f\x6f\x3d\xaa\xe5\x7c\x4e\x53\x35\x28\xa3\x9d\x8e\xfa\x80\x21\x27\x53\x05\x56\x1f\x74\x6d\xd2\x72\x69\xd3\x3b\x4e\xd2\x80\xa5\x2c\xa8\x98\xf5\xda\xed\x77\x67\x8c\xae\xb7\x69\xdf\x8c\x74\x67\x7a\xe2\xcf\xe5\x2a\xae\x31\xdc\x2e\x4a\x49\xd4\xb4\xad\x10\x44\x08\x71\xce\xc3\x78\xb2\xb5\xac\xd4\x8d\xae\xbd\x2e\x0c\xc3\xe4\x62\xe1\x6e\xe3\x58\x61\x5c\x8c\x9b\xdc\x2b\xb6\xdd\x4a\xea\xd4\x7f\x10\x1c\xdd\x84\x46\x0f\xa3\xf0\x22\xf6\xd0\x3c\x0c\x82\x88\x09\x6c\x57\x27\x81\x14\x48\x7e\x81\x1b\xeb\xa5\x80\x0c\x39\x93\x46\x16\x30\x13\x22\xd3\x76\x0f\xe5\x24\x96\xd1\x4a\x53\xbc\x46\xb9\xb3\xc9\x11\xa2\x71\xe1\xcf\xdb\x76\xd3\xff\x97\xa5\x52\xf7\x37\x36\x60\xea\x66\x38\x40\x10\xda\x6d\xb9\x58\xb0\x54\x32\x38\x95\x7c\xc7\x57\xed\x63\x94\x13\x55\x78\xdb\xe0\x58\x07\xb0\xf9\x43\xbe\x93\x33\x0b\x44\x55\x6d\x16\xfc\x99\x91\x95\x79\xb8\x2b\xa4\x55\xae\xaf\x6e\x9c\x93\xaf\x65\xaa\xb3\xa3\x6f\x31\xf9\x0f\xfc\xfa\x0e\x93\x1f\x59\x79\x41\xcf\xd9\x3c\xc1\x55\x8a\x50\xdf\xef\x93\x59\x18\x05\x29\x8b\xe5\x1d\x7f\x99\x52\x31\xfb\x73\x01\x3b\x99\x34\x8d\x0f\x83\xf2\x3e\x7f\x07\x3b\x3f\x40\xba\x0e\x22\xa8\x52\x03\x11\x14\x06\x46\x4a\xec\xe6\x8c\xbe\xae\xc7\x55\x86\xfc\xda\x5a\x3f\xe9\xe8\xc7\x19\x9b\xbc\x1f\x27\x57\x3a\xc2\x1e\xb5\x6d\xa3\x25\x65\xa1\xcc\x20\x1a\x06\x5e\xac\x12\x11\x96\xed\xac\xed\x52\x27\x6e\xb4\x07\x47\x97\xc3\x55\x47\x69\x99\xb1\x54\x65\x96\x44\x71\x12\x33\x94\x6f\x68\x55\x9e\x26\x44\xa6\x49\xea\xc5\xb9\x92\x68\x94\x22\xed\x9f\xfe\x27\x35\x37\xc5\xf4\x7e\x67\x5f\x44\x0a\xf6\xd3\x3f\x53\x0a\xf6\xd3\xdf\x23\x05\x93\xdc\x22\xf7\x07\x03\xa4\x59\x31\x44\x0a\x5e\x6c\x48\x06\x48\xf1\x6c\xe2\x50\x2a\xa6\x4d\xbc\x05\xce\x0e\x11\xcd\xda\x0d\x87\x84\xdb\x72\xb7\xb0\x8e\x20\x0e\xa5\xf9\x92\x91\xcd\x79\x30\xf4\x20\xb9\xb7\xb4\x7b\x78\x9c\x2c\x63\x5e\xe2\x03\x93\xf0\xd7\x1c\xe4\x5e\xb7\xe0\x1d\xf7\xba\x25\xd3\x28\x49\x65\x4b\x62\xe6\x0c\x12\x33\x2f\x21\x31\xf3\x7c\x1d\x4b\xb1\xa8\xd4\x9c\x8b\x9a\x33\x7f\x21\x6a\x06\xfe\xe2\x93\x59\x8a\x26\x79\x14\xb4\xa7\x11\xbb\x52\x41\x3a\xd3\xac\xad\xb0\x9c\xb8\x00\x1a\x21\x73\xd4\x02\x12\xcb\x05\x99\xc2\x05\x99\x6c\xb9\x20\x7f\x64\x70\x3f\xa6\xa4\x82\x4d\xbd\xd5\x9c\xa6\x17\x61\x7c\x26\x43\x99\xf5\xba\x45\x54\xa5\xc7\x02\xab\x01\x91\x15\x06\xa6\x44\x9b\xa0\xb6\x1a\x32\xc2\x05\x6f\xe4\x72\x3f\x25\x06\x83\xb4\x74\x7f\x67\x02\x53\x16\x3e\x27\xf2\xc4\xac\x72\xc2\xc9\x9e\x38\x6d\x32\xbe\xc0\x96\x6b\x33\x31\x31\x9f\xbc\x35\x27\x74\x11\x72\x1a\x85\x7f\x09\xb4\x98\x02\xb7\x13\x0f\xd2\xa1\xe4\x66\xb0\x1d\xbb\x8a\x79\x5b\x67\xfc\x9c\x4d\xcb\xdc\xc8\x62\x8a\x82\xf7\x6c\x1b\x77\x5f\x31\xcd\x0d\x1c\x60\xe0\xee\xcd\xec\x49\x3d\xb4\x5b\x56\x3d\x7a\x2b\xea\x76\xee\xa5\x6c\x8e\x64\x4c\x2a\xc8\x9b\xec\xf5\x3a\xf7\xf2\x9c\x40\x20\x7c\x5a\x13\x16\xd4\x83\xf6\x9a\x74\x1d\x30\xce\x59\x27\x4b\x2a\x61\x45\x4a\x51\x4c\x56\x10\x1e\x39\xc6\x16\x77\xee\x9d\xc8\x40\xca\xc9\x4a\xf6\xe3\xa9\xfe\x04\x85\x32\x0d\x23\x46\x90\xf3\xc0\x41\x84\x29\xe6\x53\x8f\x66\xfd\x78\xcb\xe1\x58\xd3\x9b\x29\x08\x85\xf6\x0e\x38\xa9\x09\x03\xbc\x19\x11\x1d\x48\xcb\x64\x8c\xb1\xb2\x7c\x96\x91\x46\xec\xb8\x46\x0e\x47\x92\x1c\x05\xfd\x11\xfb\x56\xdd\x51\x39\x44\x00\x5b\xd6\x00\x5b\x18\x37\x29\x79\xfc\x83\x1a\xc3\x22\xe0\x8f\x68\x04\x55\xe2\xa7\xee\xc6\x24\xe5\x96\xc0\x09\xc9\x72\xd1\x0e\xe3\x69\xe2\x00\x9b\xe3\x48\x66\x9a\x05\xed\x6c\x5e\x44\x02\xae\x40\x4e\x2f\xcf\x09\xdd\x09\xdf\x8c\x69\x70\xc1\x4c\x34\xf3\x82\xb9\x71\x47\x63\x4f\x6c\xdb\x92\x97\xa6\x6f\x78\x21\x91\x2b\xef\x06\x4c\xe2\x8e\x9a\xa9\x9d\x61\x33\x1b\xd0\x17\x46\x4e\xf4\x2d\x22\xcf\xaf\x6e\x00\x44\x12\x82\x94\x48\x77\x6a\xae\xf4\x74\x85\x1a\xd0\x18\xfc\x06\x84\x80\xf3\x13\xce\x3b\xca\x75\xf4\xa5\x94\x04\x3c\x94\x5b\x06\xa6\x09\x31\xf7\x4f\x5d\xce\x31\x49\xed\xe0\x53\x3a\xd7\x10\xea\xbf\x31\xf4\x84\xc6\xd5\x85\x90\xc7\x49\xe1\x1a\x24\x01\xae\x2f\x8d\xbe\x25\x6c\x20\x2c\xf9\x97\x8e\xf6\x69\x01\xa9\x7f\x9a\x26\x20\xf6\x0f\xb3\xe7\xca\x32\x35\xf2\x57\xc5\x2d\x66\xc0\x0e\xd1\xe0\x54\xd8\x6d\xc4\xd2\x92\xa9\xd5\x82\xbf\xea\x36\xad\x3d\x6e\x11\xce\xc2\x21\xdd\x54\x26\x2a\xd9\x95\x83\x7c\x1d\x5e\x8d\x79\x9d\x2e\x2e\x6f\x6f\x2f\xca\x09\x0c\x89\x28\x37\x93\x94\x14\x93\xf5\x12\x69\x46\x92\x70\x9f\xba\xf7\x8e\x31\x09\xb9\x4f\x3b\xb1\x9b\x70\x4c\x22\xee\xbb\xd4\x3d\xea\x1e\xd9\xbd\x6b\xaf\xe9\x3c\xda\x70\x98\x40\x10\x65\x52\xcb\x49\x3c\x0d\x2f\xda\xa2\x1a\xca\x65\xcc\xcf\x93\xa8\x06\x0f\x8f\x65\x11\x80\x87\x4c\xc0\x43\xc4\x31\x99\xd8\xe1\x01\x36\xce\x88\xf7\xf7\x91\xa2\x49\xb2\xf4\x69\xab\x45\xb7\x4c\x67\x27\x9a\x62\x76\xa4\xc5\x05\x30\x11\x65\x65\xf1\xc7\x15\xed\xda\xc4\x55\x21\x97\xf2\x2a\x76\xc5\xbd\xa5\xb8\xd4\x92\xc5\xb5\x57\xc5\x82\x99\x2b\x53\x9c\x48\xaf\xa6\x64\xc9\xdd\x8c\xf4\xee\x76\xbb\xf6\x1b\xee\xb7\x46\x90\x0a\x12\x84\x99\xa0\xe1\x03\x6f\x6f\x99\x93\xa8\x8f\x1e\x27\x8b\x90\x05\xc8\x13\x3f\xae\x1d\x9e\x38\x93\x28\x5c\x8c\x13\x9a\x06\x6b\x24\x1b\x19\xd7\x10\xc3\x0d\x88\xd9\x5b\x12\xb1\x58\xde\x52\x42\x8e\x35\x2b\xe0\x86\xe3\x6a\x1c\x50\xf0\x42\x3b\x04\xc0\x58\x7f\x3a\xd7\xef\xca\x84\x97\x10\x0d\x3e\x31\xca\x4a\x34\x27\x73\xfb\xb0\x54\xc8\x17\x03\x67\xac\x72\x8f\x7f\xc6\x7d\x9f\xcf\x69\x1c\xb4\x9f\x87\x31\x73\x9e\x46\xf4\xc2\x2e\xa9\x5a\x2f\x38\x23\x19\x4f\xc3\x85\x7c\xb9\xd5\x07\xde\xe4\x21\xe9\xda\x40\xa1\x1b\xe3\x78\x58\x8d\x95\x4b\xb1\x17\xdb\x12\x49\x62\xc0\x86\xa5\x32\x61\x21\x0e\xec\x9c\xe3\x93\x79\xed\x54\xc3\x3a\xc8\x43\x3d\xfb\x5c\xb8\x5d\x81\xce\x14\x96\x78\x37\xbc\xbe\x7e\x97\x17\x5c\xd9\xa8\x2a\x34\x69\xc5\x92\x39\x09\x04\x92\x3c\xfa\x16\x93\xa9\x35\xc9\xc9\x47\x42\x4f\x45\x75\xc0\x3a\x32\x0d\x13\x41\x76\xa9\xee\xb2\x26\x4a\x99\x47\xed\x3b\x88\x80\xc8\x1b\x3c\x39\xb0\x20\x07\xe5\x0f\x5b\x5f\x63\x25\x42\x14\xfb\x75\x21\xf6\xcb\x2a\x1f\x2a\x16\x92\x56\xa6\xa9\xac\x1d\xb4\x3f\x70\xf2\x5e\x9b\x0a\x14\xc4\x88\xb2\x2e\x48\x0b\x2b\x08\x4d\x16\xc0\x87\x65\xfc\x3e\x4e\x2e\xe3\xe2\x63\x41\x82\xe4\x90\xf0\xa5\xf4\x27\x15\x84\xa1\x71\x87\x7e\xb6\xf3\x79\x26\x6e\x5b\x49\xd7\xdc\x46\x3c\xdb\x38\xae\x1b\x64\xb4\x9f\x20\xe3\x36\x15\x8b\xc7\xd6\xd6\x29\x22\xab\x59\xca\xa6\x1e\xfa\x0a\x1d\x00\x61\x6e\x57\x83\x1e\x21\x29\x13\xd3\x45\x14\x4f\xf0\x11\xe2\x55\xbd\x72\xcf\x99\x0b\xf6\xd5\xa5\x95\xbf\x26\xca\x03\xde\x89\x93\x4b\xec\x62\x4c\x90\x43\x2f\x12\xbb\xa3\xc8\x6e\xdd\x3c\x63\x6e\x8f\x1d\x7f\x63\x86\x68\xed\xb0\xa2\x47\x15\x58\x73\x07\x29\xfc\x3a\x9c\xb7\x59\x35\xbc\x69\xd4\x12\x74\xb6\xc4\x8b\xd9\xa8\x76\x28\x0a\x81\x1b\xf0\x96\x42\xcf\x69\xc6\x9d\x72\xad\xb7\xb6\x59\xfa\x5e\x88\x45\x42\x78\x17\xfe\x6f\xd3\xc5\xc0\x05\xd0\x00\x47\x65\x61\x54\x2b\xea\x86\x7a\x6a\x16\xf4\xd5\xd3\xbb\xe2\xff\xaa\xac\x54\x0c\x66\x34\x61\x91\xdd\x9d\x6d\xca\x8b\xfc\x73\x40\xaa\x43\xa8\x0e\x05\xbf\x56\xc7\xa3\xb2\x06\x18\xc9\xa8\x0a\x52\xd9\xb7\x21\x2e\xde\x4e\x58\xd8\xd0\xf7\xed\xaa\x33\xd1\xd8\xb3\x21\x10\xa2\x3e\x17\xc4\x66\xec\xf3\x5d\x74\xfc\x0d\xdc\x2e\x36\x83\x0a\x9e\x12\x41\xd8\x97\x75\x4a\x92\x5b\x4c\xae\xa6\x3b\x6c\xcc\xd0\xf8\xfe\x5f\x9d\xa6\x2d\x58\xdc\x8e\x90\xb7\x05\xc6\x52\x36\x49\xd2\xe0\x93\x81\xec\xb6\x78\xce\xe0\x97\xa9\xcb\x3a\x33\x46\x23\x3e\x93\x17\x36\xfc\xec\xf0\xe4\xed\x62\xc1\xd2\xc7\x34\x63\xee\x76\x7d\x93\x44\xc7\x02\x99\xec\x1a\x19\xd0\xa8\x02\xf2\x9a\xcd\x3d\xdc\x0a\xe7\x6f\x6c\x69\x37\xb4\x9e\xeb\x7f\x72\xc3\x5a\x5f\xac\xf2\x87\x8f\x67\x31\x52\xb8\xf0\x3f\x95\x40\xbc\xe0\x64\x55\x04\x54\x89\xd7\xd1\x87\x63\xfb\x38\x2b\xea\x36\x99\x80\x18\xc4\xeb\xb3\xe4\xf2\x45\x92\xb2\x0d\x87\x65\x76\xac\xb5\xca\xeb\x18\x3e\x60\x1c\xae\xb2\x52\x2a\x4a\xb5\x5c\x4a\xdb\x79\xa0\x6e\xe7\x98\xcd\x1d\xfd\xef\xd1\x5d\xfd\x80\x88\x29\x06\x3d\xfe\xee\xae\x78\x65\x4a\x63\x7b\xe2\x45\x4d\x9b\x3c\xa6\x19\x8b\x42\xd0\x84\x55\x35\xbb\x39\x91\x32\x5b\x71\x7c\xfb\x28\x12\xe4\xa0\x87\xe6\x49\x2a\x2e\xa3\x9c\x5c\x5b\x29\x66\xbb\x4d\xde\xe7\x47\x37\x0a\xbb\x6c\x96\x60\x6d\xd0\x50\x1b\xa1\x5e\xc8\xbe\x8f\xf6\xcd\x94\x10\x32\x43\xa6\xe4\x84\xaf\xec\xdb\x0f\x59\x7a\xa8\x8a\xfa\xf1\xdf\xb2\xa1\xda\x78\x41\x8c\x05\x1f\xfd\xa1\x92\x3d\x04\xaf\x94\x39\x95\x06\x53\x2f\xda\x31\xdc\x19\xa7\xe9\x05\xe3\x6d\x49\x08\xe7\x32\x50\x1b\x89\x2c\x18\x6a\x54\x82\xaf\xe0\x7b\x4d\xf2\xba\x0c\x13\xb7\x85\x19\xfe\x1c\x06\x25\xa7\x61\x36\x11\xfd\xb1\xc0\xd9\xcd\xb6\xe4\x8d\x9c\x5f\x51\x78\x17\x93\x90\x3a\x0d\x46\x77\xa2\xc1\xac\x10\x5b\x22\xd5\x6b\xee\xf2\x01\x1d\x0a\x5e\x5b\x4d\x00\x86\x84\x31\x91\xef\xc3\xec\x34\x4d\x16\x0b\x16\x6c\x23\xe0\x04\x16\xf8\x15\x04\xd8\x08\x28\xe1\x9c\x20\x55\xd7\x1a\xf7\xb5\x39\x06\x45\x14\x29\x1c\xee\xa9\x8c\xcb\x4f\xec\x07\x42\x3b\x4c\x8b\x65\x54\x19\x3b\xa0\x33\xfd\x2a\xb6\x3a\xb9\xac\x72\x12\xfb\x7b\x5d\x92\xfa\x7b\x3d\x92\x28\x11\xce\x09\x4f\xaf\x0b\xad\x73\x48\x22\x9f\x0d\x40\x1f\xde\x09\x39\x4b\x29\x4f\xd2\xa1\x8b\x4f\xf6\xdc\xd8\x77\x43\x3f\xea\xc4\xec\x8a\xbb\x18\x77\x82\x24\x66\xf8\x44\x34\x07\xad\x67\x7e\x08\xe7\xb4\x93\x4d\x52\xba\x60\xaf\x93\x24\x3a\xa1\x83\x6c\x78\x73\xe3\x8a\x3f\xfe\x8a\x27\x9c\x46\x5e\x57\xa7\x34\xee\xe6\x98\x88\x0f\x1d\xf9\xfe\xe0\x00\x1e\xe0\xe3\xc1\x41\x9e\x43\x10\xa0\x29\x5e\xa5\x62\xc8\x89\x3f\xcd\xa7\x61\x4c\xa3\xe8\x7a\x25\x06\x1c\x43\x52\x6a\xdf\x8f\x3a\x00\x07\x37\x37\xfa\x97\x8b\x8b\x92\xe1\xd4\x4d\x55\x88\xa6\x24\x97\xba\xe0\x89\x68\x6c\x29\xe6\x3f\xb7\xcd\x7f\x41\x66\x3e\xb7\xcf\x7f\xe2\xbb\x0b\x7f\x56\x9b\xff\xa4\x98\x7f\xe0\x2f\xd4\xfc\xeb\xd0\xd4\x79\x97\x8c\x4f\xe8\x20\x80\x95\x08\xd6\xad\x44\x50\xac\x84\x31\xf7\xa5\x18\xee\xbc\x36\xf7\x89\x9e\xfb\xac\x98\xfb\xcc\x3a\xf7\xa5\x9a\xfb\x3c\x2f\xcd\x0d\xa4\xd9\x3f\x49\xff\x7b\xf0\x41\x26\x7e\x56\x85\x91\x09\xac\xcc\x64\xe8\x0f\x86\x62\x25\x26\x43\x70\x94\x5c\xd5\x57\xd2\xcb\x1a\x8b\x4b\x22\xfd\x45\x25\x64\x2a\xce\x2c\x44\x77\x52\x4b\xf9\xa1\x00\xa3\x0f\x9f\x05\x8c\xd4\xbe\xec\xf5\xc8\xc2\xb6\x4c\x33\x12\xac\x03\xa3\xa5\xef\xce\xfc\xa0\xb6\x4c\xcb\x62\x99\xa6\xfe\x4c\x2d\xd3\x85\x3f\x5d\x07\x4a\x17\xb0\x60\x17\x7a\xc1\x2e\xd6\x2e\x58\xb3\x09\x73\x81\xba\x7a\xf5\x56\x79\x65\xa9\xe6\x62\x76\x8b\xda\x52\x2d\xf5\x52\x05\xc5\x52\x05\xd6\xa5\x9a\xab\xa5\x5a\xd4\xa1\xee\xb3\xc9\xa0\xce\x59\xfa\x21\x9c\x30\x47\x5f\x3c\xd7\xf6\x0b\x67\x19\xa9\x0a\x8f\x98\x1b\x93\xcf\x49\x13\x45\xe1\xc6\x0b\xa6\x22\x64\x02\x9e\x0c\x94\x79\x70\xe0\x09\x72\x0e\x05\x8d\x07\xe7\xbd\x30\x62\x76\xe0\xda\xcf\x94\xea\xdf\x3a\xa5\x99\x96\x3e\x8a\x39\xa5\x9f\x73\x4e\x57\x5c\x07\xb6\x89\x89\x34\x4b\xa6\x8a\xa3\x04\x7e\xe2\xe4\x49\x4d\x24\xad\xf6\xa0\xd8\x82\xc7\x90\x3c\x0d\x84\xd4\xef\xb9\x7f\xea\x3e\xe1\x98\x5c\x7e\x3c\xdf\xa1\x56\xe3\xd3\x39\x8f\xf7\x0d\xc5\xde\x46\x65\x1e\x29\xa2\x57\xbd\x51\xe9\xfc\xeb\xd0\xe6\x84\x31\x78\x20\x85\x49\x8c\x24\xdd\xfa\x8a\xfb\x46\xf0\x3c\xcd\xf0\x9e\x8b\x37\x2a\x92\x07\x18\xba\x85\x7f\xb1\x5f\x1a\xf1\xac\x34\xab\xc6\x2e\x9d\x53\xca\x99\xa0\xe1\x79\xf2\xf6\xcd\xe3\x22\xb4\x64\x4e\x1e\xff\x7a\x5a\xb4\xfa\x6b\x92\xbe\x0f\xe3\x0b\x27\x08\x53\x19\x92\x5c\xb0\x0d\x29\x8b\x12\x1a\x80\xca\xec\x1c\x24\xc9\x45\xf9\x8a\x22\xcd\x81\x92\xbb\x8c\x87\xf5\x91\x6a\x6a\xba\x8c\x90\x27\xc3\x2f\x17\x8f\x79\x2e\xa3\x48\x40\xdb\x95\x49\x4b\xb1\x5b\x59\xd2\x99\xd8\xba\xcf\xc9\x64\xb6\x8c\xdf\x83\x6e\x55\xd7\xfc\x81\xd1\xc0\x91\xef\x33\x94\xcb\x7c\x80\x10\x3b\xd0\x52\x4a\x7c\xd4\xc9\x7f\x05\x17\x95\xa6\x4b\xe9\xf2\x56\x2d\xfa\xeb\xc3\xe7\x4e\xf9\x4d\x94\xbc\x48\xd2\x64\xc9\xc3\x98\x55\x0b\x7e\xaf\x5f\x8b\x32\x19\x4f\x52\x7a\xc1\xce\x98\x00\xe7\x30\x89\x8d\xed\x94\x1f\x9c\x54\x7f\x11\xb4\x39\x18\xac\x46\x2c\xe5\x73\x1a\xd3\x0b\x96\x66\xde\x0a\xd6\xf6\x4c\x65\x1b\x5c\xb7\xd0\x5f\xda\x9c\xb9\xa0\xb6\x9f\xc4\x81\xf4\xd7\x00\x91\xe6\x1a\xf6\x90\x75\x96\x69\xa4\x9c\xa8\xde\x9e\x3d\x77\x39\x9c\x3a\x88\xa3\x29\xcf\x9c\x38\xb3\x02\x31\x6c\x8b\xd3\xfe\x51\xe1\xd8\x4b\x94\xc9\x73\x12\x63\xed\x61\x93\xe7\x44\x11\xb6\xb5\x25\xce\xde\x87\x0b\xc1\xd3\xe4\xe4\x7c\xa3\x96\x52\x29\x83\x3e\xd7\xcd\x43\xd7\xaa\x22\x0d\xee\x6d\xd6\x96\x36\x58\xc4\xce\x99\xdd\x5e\x3b\xb9\xde\x2f\x6a\x37\x9c\x2f\xd8\x62\xc1\x62\xdc\xdc\xac\x72\x92\xf8\xa9\xd2\x8f\x45\xa5\x0a\x37\xe9\x53\x2f\x91\x81\x47\xab\xd0\x4a\x96\x65\x99\xac\x6f\xc3\x11\xb9\x97\x91\x79\x51\xef\x2c\xb9\xd4\x2b\x9d\x76\xc4\x16\x41\x2e\xb8\x79\x7f\xe9\xc6\x84\xda\xf9\xa0\x2d\xac\xda\xac\x66\x01\x51\x18\xcc\xb5\xe5\x2c\x0a\x13\xa2\x4b\xe9\x5b\x84\x8e\xef\xfe\x4b\xe2\xa6\xb5\xc2\xb4\x55\xdd\x04\x4f\x06\xb6\x45\x39\x11\x43\x8c\x70\xa9\x8b\x7d\x23\xae\xb0\x73\x8e\x4f\xce\xeb\x17\x9f\xd4\x9b\xc2\x3d\xf7\x6e\x87\xeb\x6d\xbb\x2a\x76\x53\xee\x83\x26\x7c\x0e\x56\x32\x78\x2e\xc4\x33\xf7\xcc\xcb\x93\x12\xa4\xb5\xba\xe9\x32\x16\x38\x52\x5c\x54\xe2\xd8\x2b\x0c\x76\x06\x6f\x9d\x67\xe6\xfd\x45\x76\x69\x6f\xbc\x0c\xa3\xa0\xd6\xda\x23\xf1\xee\x36\x6d\x51\xf3\x0c\x1b\x0d\x55\xce\x36\xca\x87\xeb\x71\x94\xd1\x7a\x79\xb8\x95\x0d\x5c\x41\x1e\x70\xc3\x0e\x29\xf1\xf9\x36\x0b\x88\x37\x35\xcd\x35\x0c\x8a\x1a\x24\x41\xaa\xa4\x95\x0d\xd2\x40\x13\x47\xe4\x31\xf7\xa9\x7b\xf7\x3b\x4c\x5e\x83\xed\xcf\x63\x33\xe0\xd0\x0b\xfe\x3f\x6d\xb6\x7e\xca\xbf\x88\xd9\xfa\x0b\xfe\x8f\x34\x5b\x17\xc3\xfa\x9b\xcc\xd6\x5f\xda\x91\x0b\x6c\x31\x38\x97\x32\xfe\x14\x9e\xc4\x11\xc8\x66\xc9\xe5\x0f\x52\x0b\x72\x4d\x52\x7f\x45\xa3\xc8\x53\x91\xf5\xbc\xd8\x94\xc8\xd2\x28\x72\x8a\x73\xf9\x9a\x77\x68\x67\xcc\x63\xdc\xf0\x32\x5a\x6f\x23\x4c\xdd\x53\x0e\xa6\xcf\x2b\xa3\x4f\x69\xad\x2e\x6e\xec\x65\x3c\x53\x6f\x74\xf7\x7b\x95\xfe\x8b\xef\x5f\x66\x14\x3d\x39\x8a\x7c\xfd\x81\x4f\xd9\xe6\x00\x65\x69\x87\x4a\xdf\xb6\x28\xb2\xb2\x95\x50\xa4\x98\x04\x41\x6f\xf5\x4f\x29\xa6\x1f\x49\x0b\x97\x7f\x63\xf2\x17\xa0\x82\x11\xc7\xe4\xa9\x65\x27\x41\x95\xa1\x48\x33\x29\x3c\xe0\x05\xf1\x45\xb1\xe2\xc5\xe7\x1b\x48\xc4\x8f\x4b\x57\xf2\x04\x82\x64\x63\x82\x1c\x44\xe6\x3a\x22\x36\x84\x41\x8a\x7d\x4e\x52\x3f\xee\xcc\x92\x8c\xcb\xac\xf6\x9a\xe4\x93\x69\xed\x17\x69\xc2\x93\x49\x12\x91\xcc\x8f\x3b\x99\x11\x62\x9f\x2c\x7d\xe9\x76\xdf\x99\xa6\xc9\xdc\xcd\x0a\x7a\x05\x7f\x2a\xc3\x5f\xd0\x84\xd4\xd4\x1f\x44\x04\x1d\x1e\x1a\x71\x80\xb0\x91\x7d\x95\x2c\x0b\x6f\x4b\x9b\xc8\xb6\xb0\xdd\x81\x18\xce\xcb\xcf\xad\x2b\xd9\x45\x17\x52\x02\x3d\xc5\x5a\x67\xbb\x4d\x39\x02\x97\xcc\x99\x84\xac\xa3\x7b\x98\x3c\x53\x66\xa5\x32\xbb\xee\xbd\x3b\x18\x93\xe7\x00\x6c\xcf\x38\x26\xbf\xae\x21\x88\xeb\x72\x20\xea\x6b\x4d\xbc\x72\x59\xbb\x92\xb9\xda\x4a\xc9\x5c\xe9\x79\x52\xd7\xb3\x64\x95\x15\x8a\xc4\x0a\x2d\xfd\x4c\xac\xd0\xdc\xcf\x04\xc5\xb9\xf0\x11\x70\x67\xe0\xd1\x95\xb5\x8b\x09\x3e\x3e\x3f\xef\xb0\x6c\x42\x17\xcc\x4d\x31\x41\x6d\x23\x64\xc6\xa7\x82\x0b\x28\xaa\xc2\xc0\x5b\x98\x6b\x5e\x1d\xc7\x24\x89\x39\x0d\x63\x79\x56\x3e\xda\xf8\xef\x76\xdb\xcc\x60\x9b\x99\xb9\xcd\xac\xba\xcd\x74\xc0\x86\xe5\x4e\x5b\xe6\x76\xc6\x0d\x37\xf6\x25\x01\xd1\x88\xb7\x20\xe0\xd0\x61\x41\x8e\x73\x77\x6f\x89\x73\x4d\x1c\xcf\xe9\x15\xf8\xde\x83\x07\x1e\x11\x84\xaf\x52\x46\x46\x6c\xca\xed\xca\x7e\x34\xd6\x38\xe3\x11\x9b\x26\xa9\xe0\x7b\xe5\x22\xaa\x64\x47\xeb\x75\x91\x8a\xb4\xa9\x2d\x68\x41\x88\x98\xc2\x9e\xca\x2a\xb0\x01\x87\x55\x90\x29\xba\x6f\x99\x58\x6d\x37\x86\xb9\x40\x00\x3b\xe9\xe1\x9e\x8b\x5b\xa9\x3c\x37\x39\x61\x5a\xc3\x5e\x12\x77\x0f\x2b\xc4\xdd\x8f\xe7\xaf\x5e\xaa\x3c\xe4\x51\x32\xa1\x91\x12\x19\x88\x9b\xff\x19\x67\x73\x97\xe1\x9b\x1b\x59\x06\x62\x31\x85\xd3\x6b\x97\x4b\xf9\x96\xe5\xa0\x51\xab\x3e\x33\x04\x7d\x66\x54\xd1\x67\x9a\xb5\x9f\x4c\xa7\x6c\xc2\x71\x25\x29\x2f\xe0\x80\x5a\xc7\x21\x3e\xa9\x8c\x31\xd3\x63\x94\x86\xe5\x64\xc0\x48\x38\xc4\x64\x10\x92\x68\x28\x6f\x87\x1f\xb8\x3f\x28\x65\x09\xda\x52\xab\x70\x27\x57\x06\x57\xe7\x12\x7d\x88\xcf\xf2\x87\x73\xaa\x24\x3f\x48\x5b\x6d\x0d\xc9\x9f\x76\x04\x65\x20\x1e\x49\xda\x4b\x18\xff\x3e\x4d\x96\x0b\x12\xfb\x0f\x05\xfb\x06\x02\xc1\xb6\x29\x2c\x6c\xb3\xab\x05\x8d\x03\x16\x20\x4c\x56\xfa\x37\xf8\xcd\x59\x16\x2f\x91\x8b\xd7\xd1\xe5\xd4\x2a\xca\x90\x44\xcb\x85\x14\x09\xdd\xa7\xaa\xe3\x22\x37\xad\xbe\x5b\xc5\xd9\x49\xe7\x34\x42\x64\xe9\xa3\x45\x92\x44\xc6\x38\x30\x99\xfb\x85\xc0\x57\xbf\x5d\x62\x12\x06\xde\x72\x03\x21\xd2\xb0\xe4\xf9\x4b\x00\x5c\x81\xa2\x6c\x10\x6c\x55\x33\x6b\x2f\x07\xd7\x58\x01\x69\x4d\x51\x28\x9e\x93\x75\x62\xea\x9a\x60\xb4\x3a\x94\x41\x36\xcc\xc9\x1c\x93\x8a\x78\xd6\x71\x91\x11\x64\x4f\x2d\x1b\x41\x87\xe6\xdb\xea\x12\x12\xe4\x2c\x17\x78\x8d\x9a\xd7\x8c\xcf\x61\x1d\x65\x4d\xba\x22\x97\x48\x46\x67\x5e\x23\x5f\xf9\x8c\x9a\x6f\x88\x64\x2f\xca\xc9\xfb\xe2\x07\x8b\x13\xe3\x06\x59\xd8\xac\x34\x10\x67\x80\x36\xb6\xc9\x7b\xca\x85\xdb\x90\x5f\xb1\x71\x8f\xc7\xe5\x3d\x5e\xbb\xbf\x93\xe2\xf1\x6d\x2a\x6e\x73\xc3\x78\x89\x64\xea\x09\x8e\x29\x99\x54\x1e\xf5\xa1\x25\x4b\x5f\x1b\x56\x91\xb9\xd5\x90\xb9\xc3\x93\xe7\xc9\x65\x61\x6f\x05\x66\xcd\xcb\xc5\x1a\xb3\xe6\xc0\x34\x5d\xd6\x76\xcd\xd5\x6c\x80\x86\x45\xb3\xbb\xdc\x9a\x13\x52\xac\xaf\x1d\xb6\x6b\xb2\x1e\x09\x36\x9a\xda\xb6\x55\x78\x2a\x0e\x96\xfa\x2e\x1d\x7a\x76\x6d\x54\xfa\x15\x6d\x31\x8c\x99\xe7\x64\xb9\xab\x65\x5a\xbd\x7d\xd8\x5a\x5b\x07\xbf\x72\xd2\x54\xf8\x51\xad\xd2\x8b\x49\x09\x09\x5e\x4a\xc2\xe0\xca\xe3\xbb\x4f\x6b\x80\x04\x34\xb4\xa1\x09\x34\xcc\xc9\x73\xe6\x66\x4d\xd3\xb5\xdd\x9b\x83\x96\xda\x3a\x6c\xaa\x68\x52\x99\xb4\x4d\x76\x5f\x0b\x29\x86\xc9\x72\xab\x31\x4c\x75\xb9\x15\x89\x6f\x04\x7b\x78\xbb\x95\x9b\xae\x1a\x55\x80\xce\xc9\xe6\x58\x09\x27\x91\xeb\x83\x21\x59\xef\xf2\xd0\xa5\xbe\x80\x7f\x99\xae\xa7\x72\x36\xfa\x3d\xaf\xab\xc1\x99\x0d\xe2\xe1\xcd\x8d\x2b\x83\xd9\xae\x14\x0a\xf5\xba\x8a\xac\xcb\xbc\xc1\x30\xc7\x44\x7c\x2c\xf0\x81\xd4\xee\x72\xf5\x52\x55\x38\xf0\x53\xc2\x72\x4c\x56\xf2\xae\xab\xb2\xff\x89\x7a\x2e\x58\xd3\xdb\x90\xd6\x26\x19\xb7\x36\xb6\xa7\x92\xe5\x08\x92\x2d\x2a\xaf\x4f\x98\x76\x05\xfb\x17\x21\x0d\x5b\xad\xf4\xe6\x66\x2f\x6a\xb5\x92\xfe\xfa\xa8\xa3\xcd\xf1\xfd\xa9\x09\x3a\x13\x9e\x39\x31\xc8\x03\x8f\xe6\x78\x08\x21\x2d\x07\x43\x41\x9c\xbd\xad\x4b\x6c\x8b\x8a\x15\x25\xe5\x23\xee\x9f\xba\x6f\x39\x26\xbf\xec\x20\xc5\x2d\x20\x25\xde\xa2\xaf\xec\x43\x82\x21\xed\x4f\x8a\x25\x47\x5d\x48\x27\x05\x57\x0d\xca\x4b\xc1\x52\x97\x72\xca\xcc\x4f\x55\x46\x31\x32\xf1\xcd\x44\x63\x59\xab\x05\xd9\xe0\x1c\x29\xfb\x14\x98\x51\xbc\x5d\xbf\x9f\x8f\x2c\xda\xce\x54\x69\x3b\x61\x0a\x9e\xf6\xce\x99\xf4\xcb\xbc\x65\x19\xf6\x12\x43\xe4\x19\x35\xb4\xa0\xea\x5c\x34\x75\x9f\xbf\xed\xb0\x7a\x26\xf9\xb6\xa0\x17\xac\x0d\x23\x41\x75\x01\x12\xa9\x00\x2d\xd0\x71\x71\x85\x8e\xa3\x10\x21\x20\x86\x08\x01\x7a\x46\x29\x29\x44\x61\x5e\x3c\xe8\x0d\x73\x12\x19\xdf\xca\xa1\x78\x7c\x03\x39\x76\x4b\x23\x84\x37\x5a\x3f\x6d\xc3\xfd\x9c\x24\xd6\x2c\x0b\x9c\x44\x15\xf6\xe1\xe7\xff\x6d\xd9\xf0\xf7\x5f\x46\x36\xfc\xf3\x3f\x53\x36\xfc\xf3\xdf\x27\x1b\xfe\xda\x76\xe8\x50\xbf\x14\x30\x48\x12\xf2\x4f\x33\x94\x28\x3e\xb9\x0c\xe3\x20\xb9\xec\xcc\x20\x31\x90\xdc\x3e\x95\x78\x2d\x27\x08\x09\xb6\x8f\xfc\xc7\x7e\x98\x75\xee\x62\x7b\x94\x93\x46\xbe\xff\x7a\x9e\x4c\x49\x7b\x2e\x33\xf6\x1a\x12\x6b\x9e\x69\x6c\x98\x55\xf1\x84\xa0\x36\xa5\x5f\x80\x4a\x5d\xf4\x24\x96\xbe\xb7\x65\x80\x93\x22\x94\x92\x1a\x0f\x22\xc8\xec\x1b\x1e\x2b\x3d\xc3\xab\x5a\xbf\x88\xa0\xb2\x57\x44\x90\xa5\x4f\x34\x34\xc2\xa7\x98\x5c\xf9\xbc\x23\x33\x4a\x65\x98\xcc\x2a\x78\x69\x21\xf0\x52\xe0\xcf\x04\x5e\x9a\xfa\x33\xc1\x56\x5e\x48\xb4\xa7\x56\x1b\x89\xbb\x89\x7c\xa8\xd4\xb9\x10\x75\xc6\xfe\x07\x51\xe7\xda\xff\x20\x18\xfa\x6d\x9c\xfc\x5e\xa0\x4e\x4d\xab\xf5\xc4\xc5\x44\xed\x68\x12\x2f\x92\x05\xdc\x3b\x8d\x4c\x5b\x0f\x99\xab\x4a\x09\x6e\x5f\x7c\x52\xc2\x5b\x7c\xc2\x8c\xd0\x74\x53\x97\xe1\x1c\x6e\x50\x79\x39\x5e\xd5\x23\x9b\xef\xb9\xed\x9e\x4c\x07\x10\xc6\x01\xbb\x7a\x25\xca\xe3\x56\x4b\x37\xa1\x41\x65\xdc\x24\x17\x8c\x30\xc3\x0e\xf5\x7d\x9f\xf5\xb9\x67\x27\x00\x38\x26\x03\x3a\x04\xe1\xc3\x10\x9f\x5c\xbb\x3a\xc2\x78\x97\xdc\xed\x4a\xd5\xc2\x13\x73\x7e\xbf\x30\x77\x4a\xbe\xe6\xd8\xb5\xb7\x16\xac\x0f\x62\xae\x17\xb1\x8c\x65\x7e\xce\x72\x49\x3a\xdc\xe2\x72\x08\xd6\xab\x29\xc3\x40\xf2\x5e\x5b\xd3\x95\xbd\x61\x64\x55\xcd\x1e\xec\x5d\x81\x67\x64\x31\xb0\x84\xd4\xb3\xac\xd9\x6c\x75\x8a\xa5\xa8\x0f\xaa\x5c\x7a\xa0\xcd\xc2\xa0\xff\xbd\xd4\x9a\x50\xb2\xd2\x5d\xb0\x1c\x7b\x14\x44\xcc\x46\x8a\x15\x8b\x80\xc1\xe8\xc5\x16\xae\xbe\xdc\xe5\x4e\x18\xec\x01\x86\x58\x47\xe7\x15\x83\xa8\x6e\x4c\x01\x4e\x55\x8a\xae\x9a\xd6\x26\x26\xf5\x53\xee\xa5\xa4\x79\xca\xbd\x88\x18\xf9\xe3\x3c\x4a\x8c\xec\x72\xde\xb2\x3f\xf6\x06\x43\x93\x32\xc8\xf2\x35\x71\x21\xea\x39\x6b\xe6\xe3\xf6\x31\x5a\xab\xa7\x7a\x92\x13\xf4\x30\x08\x8a\x6c\x34\x39\xf9\x71\x07\xfa\xa8\x6e\x19\x60\x15\x08\x76\x77\x8a\xc4\x20\x70\xce\x32\x63\x6d\x29\xdb\x6b\x83\xf1\xd9\x5e\x0f\x97\x48\x54\x56\x5d\x8a\xaa\x0b\x7f\x2e\xaa\xce\xfc\xb9\xa8\x1a\xc8\xaa\x4c\xe2\xbf\x36\xe4\x68\x2f\x70\x97\x68\x60\x5a\x69\x20\x10\x0d\x5c\xf8\x53\xd1\xc0\x07\x7f\x2a\x1a\x18\x17\x7d\x07\x55\x14\xbc\xd7\xc5\xe4\xba\x52\x7b\x2c\x6a\x5f\xf9\xd7\xa2\xf6\x13\xff\x5a\xd4\x7e\x5f\xd4\x56\xe9\x97\xdb\x69\x81\xae\x45\xf7\x97\x95\x06\xde\x8b\x06\x5e\xf9\x97\xa2\x81\x73\xff\x52\x34\xf0\xce\x6f\xd8\x1b\x00\x61\x2e\x19\xe2\x43\x9d\x8b\xe5\x50\x1a\x39\x4a\xf3\x83\xd7\xfe\xbb\x92\x32\x7f\xe1\xbf\x53\x94\xf9\xa9\xef\x6a\x5b\x3c\x2c\xee\x65\x48\x6b\x2d\x93\x59\xbf\x5c\xd7\x87\x5c\xaf\xbe\xfc\xd7\xe7\xb2\xbc\xe8\x60\xe4\xbf\x2c\x3b\xf8\xcb\x7f\x59\x35\x45\xd8\x86\xeb\xc3\xa9\x3b\x32\x1c\xba\x99\x0f\x4f\x2a\x1b\xf0\xa0\x3b\x3c\xc9\x20\xa7\x0f\x1d\x67\xee\x69\x9b\x61\x40\xe0\x50\x6a\x68\x03\xe5\x5d\x28\xdc\xcd\xe1\xa5\x8e\x89\xe2\xac\x3c\x14\xc6\x51\x18\xb3\xf6\x38\x4a\x26\xef\x55\xc0\xa9\x0a\xd4\x18\xe1\x08\x8b\x34\x88\xb6\x83\x00\x7c\x81\x5e\x94\x0f\x2e\xef\x4c\x20\x52\x17\x6e\x84\xee\xba\xc8\x09\x82\x0b\x1a\xb2\xfa\x3a\x1a\x40\x6f\x1f\x27\xeb\xa8\xbb\x71\x26\xd5\x13\xf4\x71\x53\x99\x6d\x9a\xca\x22\x27\xe8\x6d\xc6\x1c\xd9\x09\xd8\x88\x7e\x91\x49\x54\x8e\xe2\xc7\xcd\xe3\xc9\xa6\x79\x5c\xfd\x4d\xf3\xa8\x23\x85\x8f\x9b\xca\xf9\xa6\xa9\xbc\xb2\x4d\xc5\x8d\x1e\x1c\x77\x6f\x6e\xfe\xb2\x46\x93\xfa\x38\x15\xfc\xaf\x20\xe1\xf4\x1c\x84\xc9\x5f\xad\x16\x7a\x1b\xb3\xab\x05\x9b\x70\x66\xe4\x0a\x07\x59\x80\x73\x39\x63\x71\xc1\xf8\x3b\x19\x4b\x3f\xb0\x54\x8e\xcc\x2b\xf5\x8b\x7f\x15\x4a\x7c\x12\x3d\xf0\x8f\xbb\xad\x96\x4a\x81\x6d\xaf\x77\xca\x38\xf4\x65\x2a\xd4\x1d\x95\x8f\x08\x0c\x6b\x83\x70\x3a\x65\x29\x8b\x27\xcc\x19\x33\x7e\xc9\x58\xec\x5c\x27\xcb\xd4\x19\xa7\xc9\x65\xc6\x52\x87\xc6\x81\xc3\x67\x4c\xb5\xdb\x71\x5e\xa7\xc9\x9c\xf1\x19\x5b\x66\x4e\xca\xa2\x90\x65\x4e\x12\x3b\x74\x32\x59\xa6\x94\x33\x68\x52\x56\x91\x6d\xa7\xe1\x94\x3b\xf3\xf0\x62\xc6\x9d\x09\x5d\x66\xcc\x59\x96\xd3\x87\x43\x0d\xf8\x2d\xeb\x08\x0c\xfa\xe2\xcb\x2c\x7b\x7d\x85\x14\x3f\xe1\x44\x61\xc6\x3d\x67\xe7\x0d\x81\x6a\x4e\x2c\x09\x0c\x07\x91\x17\xe5\x56\x34\x87\xf3\x1f\x4e\x56\xc0\x3b\x78\xeb\x69\x72\x93\x22\xa1\x55\xb2\x67\x61\xa3\x71\x5e\x35\x69\xa1\x2b\x45\xf6\x64\xde\x6b\x10\xfb\x58\xd8\x1b\xef\x42\x8a\x6e\x7e\xb2\x93\x26\xf2\xc2\x94\x06\xa0\x52\xa8\xf7\xe8\x5a\xca\x96\x05\xf5\xa3\xac\x8e\x0a\xab\xec\x47\xd7\x2f\x0a\x12\x4b\xb2\x82\x73\x36\x4f\xd2\xeb\x67\xf1\xa3\x6b\xce\x32\xb3\x62\x5a\xaf\xf8\xbc\xe8\xe4\x35\x0d\x37\x98\xe7\x6d\x76\xcb\x37\xc4\x31\xe7\xa7\x8f\x1c\x65\x9b\x69\x77\x9d\x38\xae\x65\x06\x96\xf1\xdf\xc1\x9e\xfc\x31\x4d\x83\x30\xa6\x51\xc8\xaf\x65\x1b\xa2\x89\x81\xb6\xfb\x7e\x93\x2c\x9c\x5e\xd7\x91\xab\x02\x7b\xed\x5c\x86\x7c\xe6\x48\x42\xc2\x99\x40\x7e\x6b\x48\x0d\xce\x73\x52\xab\x05\x73\x86\x52\xce\xf8\xba\x02\x32\xba\x16\x6d\xd4\x6a\xf4\x35\x0b\x2f\x66\x0e\x2c\xae\xb3\x14\x10\x86\xc8\x32\x0e\xb9\x87\xe4\x42\xeb\x86\xe2\xad\xdd\x43\xc3\x30\xf2\x05\x0d\xd3\xa2\x6a\xba\xc9\xec\x12\xcc\x2c\xc5\xde\x8b\x4e\x49\x5c\xd2\xab\xb4\x8f\xe4\x7e\x22\x8f\xc2\x16\x8b\xc6\x6e\x95\x9f\xb9\x7d\x84\x36\x04\x83\x29\xdd\xb7\x3f\x73\x10\xa8\xcf\xe1\xf7\x2a\x66\xb0\xc5\xd5\x35\xde\x41\xed\x97\xae\x5f\xf8\x58\x9f\x39\xb9\x63\x9f\xc1\xf2\x7e\x4b\x64\x6d\x5a\xd8\x3f\x4b\x2b\x87\x9f\x6a\x82\x74\x71\xc6\xe0\x88\x55\x04\xe9\xbf\x73\xff\xd4\xfd\x89\x63\xc2\xe8\xa7\x06\x32\xe3\x59\x30\xfe\x74\x8f\x9f\xdf\x1b\x32\x70\x5b\xb8\x81\xc2\x09\xa8\x21\xea\x2e\x51\x49\x53\xdc\xcd\x77\x98\x23\xeb\xf0\x19\x8d\x93\xac\x48\xc1\xf3\x69\x42\xe7\xb1\xb8\x38\x4a\x11\x36\xa9\x35\x2e\x98\x77\x4b\xad\x6b\x99\xf2\x23\x5a\x86\xca\xed\xc0\x8c\x68\xf0\x26\x59\x78\xdf\x75\xad\x66\x3f\xcb\xce\x84\xac\xc6\x34\x63\xa2\x4b\xaf\xba\x57\x31\xbb\x44\xd6\x20\xb7\xcb\xce\x98\xac\xa6\x69\x32\xf7\xd0\xa1\x0c\xa6\xd5\xa8\x07\xe9\x8a\x10\xb6\x0e\xf5\x47\x0e\x33\xf4\x90\x2a\x56\x15\xd9\xdb\xaa\xa4\x65\x15\x88\xb1\xb3\x43\x9d\x65\x59\x47\x05\xcc\xdb\x5e\x67\x56\xd6\x81\x48\x69\xdb\xab\x7c\x28\xab\x40\xec\x8c\xed\x55\x2e\xcb\x2a\x19\x78\x9b\xb5\x83\xc2\xb7\x71\x7b\xf5\x77\x46\x75\xb8\x01\xb7\xd7\x61\xb4\xa8\x23\x0e\x5d\x7b\xe7\x8a\xbf\x95\x9d\x69\x17\xbd\x5a\x25\x08\x61\x4b\xc1\x46\xf1\x2e\x26\xaf\x1f\xbe\xf9\x61\xf4\xfa\xec\xc9\xd3\x67\xff\xc1\x27\xc8\x78\x1a\xbd\x7e\xfe\xf0\xf1\x93\x1f\x5e\x3d\x3f\x7d\x72\x86\xf6\x7c\xdf\xf8\xd4\x6a\xa1\xc3\xda\xab\x9b\x1b\x97\x52\x1f\x21\x10\x50\xc6\xd4\x7f\xf3\xc3\xc3\x97\xaf\xce\x47\x8f\x5f\xbd\x78\xfd\xea\xe5\x93\x97\x6f\x4e\x64\xf6\xc5\xfa\xdb\x56\xcb\x8d\xa9\x0f\xbc\x29\xc2\x24\xeb\x08\xcc\x12\x07\x2c\x75\x9b\x73\xe3\xb4\x72\xd4\x28\x6d\x9c\xb5\x58\x1c\xb6\x20\x99\x48\x9d\x44\xe7\x82\x71\x55\xf5\xd1\xf5\xb3\xc0\x45\x69\x92\x70\x29\xf4\x39\xfa\x77\xc5\xd3\x8b\x50\xbc\x92\x31\xe5\x92\x94\x67\xfe\xaa\x30\xf1\xf1\x0c\xdd\xa4\x94\x18\x8d\x8a\x4f\xa3\xd1\xd1\x9c\x4e\xe6\x48\x3b\x49\xd4\x0b\xca\xd7\xa3\x51\x6f\xb1\xf8\xfe\x1d\x22\x60\x9b\xd4\x2c\x05\xef\x47\xa3\xde\xc3\x65\xf8\xd2\xd9\xdc\x06\x90\xd2\xcd\x36\xe0\xfd\x68\xf4\x7b\xf2\xc3\xfb\x6f\xb7\xb4\x21\x2d\x73\x2c\x83\x15\xaf\x47\xa3\xde\x79\x90\xf6\x10\x99\xb0\xc8\x32\x54\xf1\x76\x34\x3a\x7e\xfe\xcb\x78\x84\x48\x61\x8a\xd1\x28\xa6\xbf\x8c\x46\xbd\x97\x77\x2e\xae\x1a\xe3\xa9\x34\xa3\x83\x50\xd5\x0b\xc1\xfb\xd1\xa8\xf7\xcb\x2f\x57\xe3\xcd\x4d\x48\xb1\x7a\xb3\x05\xf9\x7a\x34\x3a\x7a\xf4\xe7\xe9\x96\x31\x54\x2c\x29\x6c\x43\x29\xbe\x8e\x46\xbd\x7b\x47\xbf\xfc\xb4\xb9\x39\xb0\x81\xb0\xac\x8b\x7c\x3f\x1a\x1d\xfd\xf8\xe8\xc3\x6f\x1b\x9b\xc8\x73\x72\xf7\xbb\x4d\xe0\x39\xe6\xb1\x87\x40\x9b\x3a\x1a\xf3\x78\x34\xea\x5d\xcf\x82\x0b\x51\xef\xde\x9d\x4d\xf5\x4a\x63\x14\xad\x2e\x06\xa3\x94\x51\xf9\x61\x34\x3a\x62\xe7\xd1\x1d\x94\xe7\x39\x19\x0c\x7a\xdd\x2e\xe9\x91\xa3\xe1\x70\x88\x4f\xfe\xbf\xc3\xc3\xaf\x9c\x2c\x59\xa6\x13\xf6\x82\x2e\x16\x61\x7c\xf1\xf6\xec\xb9\x3f\xa7\x61\xdc\x09\x8e\xa7\x77\xbf\x3d\x9a\x76\x3b\xd2\x39\xb4\xf3\x4e\xda\x47\xfd\xbf\x00\x00\x00\xff\xff\x40\xd4\x2c\xd6\xe6\x97\x01\x00") +var _pkgUiStaticReactStaticJsMain90aae54fChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x7d\x0b\x77\xe3\xb6\xd1\xe8\x5f\x91\xf8\x35\x0a\xb0\x82\x68\x52\xb6\xf7\x41\x19\xd6\x49\x37\x9b\x64\xdb\x6c\x36\x8d\x37\x4d\x53\x55\x27\x07\x26\x21\x89\x31\x45\xb2\x24\x64\x4b\xb1\xf8\xdf\xef\xc1\x00\x20\x41\x8a\xde\x4d\x1f\xf7\x9e\x7b\xbe\xa6\x6b\x81\xc0\x60\x30\x78\x0d\x06\x83\xc1\x00\x89\x4d\x5c\xba\x0f\xfc\x36\x67\xe1\xdd\x9f\xca\x2c\xcd\xd7\x05\xcb\x37\xb4\x3f\xfa\x78\x5c\x2c\xb1\x9b\xef\xca\x0d\x5a\x2c\xbc\x25\x79\xf4\x3d\x2f\x58\xed\xd2\x50\xc4\x59\x8a\x38\x11\x84\xe1\x47\xee\xf2\x7d\x9e\x15\xa2\xa4\x0c\x4d\xbd\xe7\xb8\x22\xbe\xff\xf2\x04\xaa\x22\xfe\xc5\x8b\x56\x2c\xc4\x3d\xbf\xec\x89\x7b\xde\x13\xd7\x93\xf7\xe5\xf4\x34\xee\xd5\x79\x27\x6e\xd8\x7c\x4a\x52\xc3\x2c\xc9\x0a\xfa\x58\x11\x1d\x74\xb7\xec\x8e\xd3\x1a\x46\x10\x46\x52\x52\xe0\xc7\x7b\x56\x0c\x32\xfa\x58\xcd\x0a\x2e\x76\x45\x3a\xc8\xdc\x82\x8a\xe3\xd1\x23\x99\xbb\xa6\x4c\x05\x6e\x69\xaa\x02\x8c\xa6\xbb\x24\x19\xd2\x62\x5e\x04\xbe\xfc\x8e\x22\xda\xa6\x62\x95\x15\x48\xa2\x64\xd4\x9b\xb1\x2b\xee\x26\x3c\x5d\x8b\xcd\x6c\x3c\x66\x38\x5b\x70\x37\xdc\xb0\xe2\x0b\x81\x18\x5e\x8e\xa9\x68\x8a\x4c\xb3\x62\xcb\x92\xf8\x37\x8e\x70\x45\x32\xb7\x0c\x59\xc2\xff\x5d\xc4\xcf\x3e\x82\x58\x64\x37\xa2\x88\xd3\x75\x83\x1b\x3f\xd6\xb0\xec\x9a\xfa\x73\xa7\x58\xdf\x22\x67\xbc\xc8\xdc\x42\xb6\x80\xac\xfc\xd2\xfd\x35\x8b\x53\xe4\x10\x07\x8f\x1d\xec\x04\x12\x84\x75\x60\x64\x5b\x74\xe0\x64\x79\x75\xf1\x76\x81\x26\x38\xe0\x66\xc8\x68\x12\xc4\x15\x9f\xf3\x40\x5c\xb3\x39\x0b\x44\x65\xf5\x07\x47\x1e\xc9\x59\x51\xf2\xb7\xa9\x40\x99\x5b\x60\x32\xbd\xbc\xc4\xd0\x43\x9d\xa4\x75\x9d\x74\xdb\x4d\xba\xad\x93\x18\x24\x65\x2e\x23\x3e\x26\x99\xa4\x33\x4c\xb2\x94\xf7\x34\x8a\x3d\x76\x90\xaa\xee\xad\xae\x32\xc3\xad\x0a\xca\xf6\x35\xd0\x7c\x2f\x0a\x16\x8a\xd6\x60\x53\x03\x2d\x9d\x45\xd9\x63\xbc\x42\x8e\x33\xa4\x28\xa5\xc2\x0d\xcb\x12\x31\xec\x8a\xec\xdb\xec\x81\x17\xaf\x59\xc9\x11\xc6\xa3\x91\x23\x0a\x96\x96\x39\x2b\x78\x2a\x9c\x21\x4d\xf1\x6d\xc1\xd9\xdd\x4c\x50\xe1\xaa\x48\x84\xab\x87\x4d\x9c\x70\x24\xf4\x40\x18\x8d\x86\xdc\x4d\xb3\x88\x7f\xc7\xb6\x32\x76\xcd\x05\xf2\x30\x71\x6e\xb3\xe8\xe0\x60\xac\x47\x84\xea\x3a\x8f\x0c\xf4\xff\xb1\x43\x69\x3a\x1a\xa1\x94\xb6\x4a\xc4\x75\x55\xa0\xfd\x50\x6a\x55\x0e\x62\x9a\xaa\x99\x8a\x91\x82\xda\x8d\x35\x8b\x57\x28\xa5\x67\xc5\xfa\xf6\x1f\xe8\x1f\xe5\x33\xb4\xf0\x26\xaf\x96\x8f\x3e\x39\xaf\xf0\x3f\xca\x67\xe4\x77\x45\xfd\x03\x9f\xb9\x7c\xcf\x43\xc4\x30\xd6\xfd\x51\xa0\xba\x43\xd3\x85\xbf\x24\xbe\x87\x89\x15\x33\x3d\x89\x39\x87\x18\xdc\x90\xc3\xfe\x7d\x7a\x9a\xa8\x31\x9a\x07\xff\x70\x55\x10\xcf\xff\xbb\xb4\xaa\x98\xaf\x92\x8c\xc9\xb8\x8b\xa5\x4d\xbc\x45\x7b\x97\x84\xcf\x3e\x4a\xe0\xa7\x53\x7b\x2b\x30\x75\x2f\x2f\x9f\xb5\xe8\xf1\x97\x98\x9c\xc6\x4e\x7b\x63\xcf\x97\x4f\x35\xfc\x7f\x9b\xf8\x7f\xb9\x67\xfe\xe3\x8a\x3d\xd9\x4b\xff\x83\x16\x6c\xb2\xfa\x62\xf2\x15\x0c\x9d\x69\x85\x3f\xf5\xfd\xe9\x71\xf3\xfc\x64\xdc\x3c\x3f\x19\x37\xcf\xfb\x09\xc0\x4f\x7f\x7c\xaa\xdc\x71\x7f\xe1\xe3\x7e\x0a\xc6\x0d\x19\x6a\x41\xe5\xae\x28\xe2\xed\x09\x6f\x33\x7c\xc8\xe6\x36\x94\x66\xf3\x02\x4d\x2f\x2f\x89\xf9\xe7\xe1\xa0\x40\x92\x3f\x2e\xb2\xe5\xf1\xb8\xf0\x88\x47\xbc\x25\x96\x72\x09\x10\x05\xfd\x52\x41\x41\x82\x3e\xb2\x7f\xee\x58\xb0\xf0\x4c\xe6\x25\x61\xbf\xed\x0a\x1e\x2c\xa6\x17\x56\xdc\x2d\x8f\xd7\x10\x77\x49\xe0\xdf\xd4\x5b\x92\xdb\x84\x85\x77\x81\xc6\x4e\x6e\x93\x1d\x57\x1f\x2a\x43\x91\x3d\xa4\xc1\xc2\x7f\x7e\x49\x2e\xa6\xe4\x62\xba\x24\xe1\x81\xa5\xad\x72\x22\x56\xdc\x35\xb9\xfc\xf3\x57\x2a\xca\xc0\xf9\xe7\xaf\x9a\xc8\x75\xc1\x0f\x12\xdb\x2b\xa2\xff\xd5\xd1\x5c\x01\x7b\x40\x84\x8c\xbb\xdb\xb0\xbb\x38\x58\xf8\x2f\x5f\x11\xff\xe5\x39\xf1\xbd\x17\x2a\x7e\xcb\xd6\x3c\x15\x2c\x58\x48\xc4\x56\x79\x59\x12\xdf\x73\x8d\xe8\xe5\xa5\x84\x27\x17\x3a\x4b\x56\xb0\x14\xaa\x7d\x79\x49\xfc\x8b\xba\x84\xac\x08\x37\x71\x14\x2c\xfc\xcb\x73\x72\xe9\x91\xa9\x77\xa1\xe2\x0b\x1e\x19\xec\x1a\xb2\x64\xc9\x36\x4b\x83\xc5\xf4\xfc\x9c\xf8\x97\x1e\xf1\xa7\x53\x95\x70\x1f\x67\x09\x17\xc1\xc2\xbf\x78\x29\x5b\xcc\xf7\x97\x64\xb5\x0b\x37\x65\xcc\x54\x69\xba\x15\xd7\x59\x12\xa9\x88\xa9\x7f\x29\x91\x36\x15\x9e\xbe\x94\xdf\x71\x1a\xc5\xeb\x2c\x58\xbc\xb8\x84\x2a\x79\x4b\xa2\xab\x0f\xbd\x77\xee\x49\xb2\x97\x24\x89\xd7\x1b\xa1\x9a\xda\x7f\x71\x4e\xa6\xfe\x73\x99\xa6\xe3\x55\x7b\x4f\xa7\x17\x4d\xcf\x40\xbc\x2e\xca\xbf\xb8\x20\xd3\xf3\x97\xc4\xbf\xb8\x68\x12\x0e\xc1\x62\xea\xfb\x44\xff\xd3\xf1\x79\x9c\xde\xe9\xb6\x7a\x39\x95\x02\xa6\x8e\x3f\xf0\x24\xc9\x1e\x74\x35\xe4\xbf\x29\x60\xda\x72\x33\x1a\xbc\x25\xa9\x3b\xc7\xaa\xfc\x96\x15\x99\x6c\x3c\xa8\xaa\x04\x4a\xd9\xfd\x41\x0f\x96\xe9\xcb\x25\x81\x8e\x53\xc9\xba\x35\x5a\xfd\xf5\x1c\x10\x5b\x44\xbd\x9a\x92\xa9\x77\xbe\x24\xf9\xae\xc8\x13\x6e\xf0\x02\xaa\xba\x3b\x9a\x28\xe8\x4c\x45\x8d\xb7\x24\x65\x9c\xdc\xf3\x22\x58\x48\x24\xfa\xdf\x92\x3c\x6c\x62\xc1\xad\x7a\x49\xa2\xbb\x95\xf5\x96\x55\x85\x1e\xe2\x34\xca\x1e\xdc\x5f\xff\xb2\xe3\xc5\x01\x13\x5b\xd0\x56\x93\xf0\xfd\xed\xaf\x3c\x14\x6e\x5e\x64\x22\x13\x87\x9c\xbb\x1b\x56\xbe\x7f\x48\xbf\x2f\xb2\x9c\x17\xe2\x30\xab\x45\x3e\x66\xc9\x42\x94\xb9\xe1\x26\x4e\xa2\x82\xa7\xc8\x71\x9d\xb1\x90\x33\x1c\xb8\xd8\x2e\x49\x94\x5c\x82\x52\x1a\x65\xe1\x6e\xcb\x53\xe1\x86\x05\x67\x82\xbf\x49\xb8\xfc\x42\x4e\xc8\xd2\x7b\x56\x3a\x18\xbb\x61\xc2\xca\x52\x8a\x3d\x54\x10\x29\xab\x80\x50\xf5\x18\xc5\x05\x87\x32\x03\x27\x11\x85\x43\xf2\xac\x8c\xd5\x27\xbb\x2d\xb3\x64\x27\xb8\x43\x12\xbe\x12\x81\x47\x44\x96\x07\x5e\x85\x5d\x96\xe7\x3c\x8d\x3e\x64\x88\x61\x32\x4c\xa5\x08\xf5\x3a\x4b\x05\xdf\x0b\x8c\xa5\xd0\x36\xd4\xcd\xf0\xf5\x2f\xf7\xdb\xe4\x35\x14\xff\x8e\xa5\x6c\xcd\x0b\x2c\x36\x45\xf6\x30\x48\xf9\xc3\xe0\x4d\x51\x64\x05\x72\x54\xf2\x20\x2e\x07\x69\x26\x06\xec\x9e\xc5\x09\xbb\x4d\xb8\x3b\x78\xbb\x1a\x1c\xb2\xdd\xe7\x05\x1f\xec\xca\x38\x5d\x0f\xde\xbe\x19\x3c\xc4\x62\x33\x60\x83\x15\x4b\x92\xc9\x2d\x0b\xef\x06\xe5\x2e\xdc\x0c\x58\x39\x78\xb3\x57\x95\x24\x03\xb1\xe1\xa9\xfc\x53\xf0\xcf\xcb\x01\x8f\x65\x68\xc0\x06\xdb\xb8\x14\xec\x8e\x0f\xe2\x54\xe2\x2c\x06\x61\x96\x46\x50\x47\x96\x0c\xe2\x34\x4c\x76\x11\x27\x83\xac\x90\x19\x07\x39\x5b\xf3\xc1\x86\x49\x7a\x06\x5f\xbe\x7f\xfd\xe1\xe7\xef\xdf\x0c\x58\x1a\x49\x0a\x0b\x9e\x46\x5c\xee\x0a\x24\xa2\xbf\xec\xe2\xe2\xae\x1c\xbc\xcb\x22\xee\x3a\x78\x96\xd2\x27\x2b\xed\xc6\x69\x2c\x4c\x77\xa4\xb8\x82\x8d\x25\x57\xdf\x34\x05\xee\x5c\xa8\xdd\x66\xa8\x5a\x91\xda\x4d\x8a\x9c\x69\xe4\x60\x92\x19\xfc\x11\xbf\x8f\x43\xfe\x7d\xbc\xe7\xc9\x0f\x4c\xc4\xd9\xf1\xe8\x93\x98\x16\x72\xa7\x7a\x17\x8b\x3f\xb2\xf0\x2e\x4e\xd7\x37\x22\x2b\x5a\x30\x85\xbb\xcd\x7e\xfb\x48\x62\xf9\x74\x5a\xf6\x74\xd2\xed\x13\x29\xfe\x0c\xaa\x93\xd7\x51\x34\x3b\x8b\x09\xc4\x15\xbc\x94\x9b\x00\xe6\x3e\xc4\x91\xd8\x20\x4c\x98\xbb\xe1\x92\x79\x20\x8c\x15\x84\xac\xb4\xac\x3b\x8b\x53\x5e\xc0\x36\xb2\x89\x97\xdb\x54\xf8\xf8\x05\xa0\x58\xb8\xe1\xed\xa8\x9b\xf8\x37\xae\xa2\x75\x73\xad\x92\x4c\x7c\xf8\x5d\x09\xc7\xe3\x63\x55\xd5\xf3\x4f\xee\x45\x52\x52\x90\x4c\xcd\xc1\x98\x2e\x96\x24\xa1\x8f\x20\xb8\x97\xc1\xc2\xf9\x1f\x1e\x85\xd3\x0b\xcf\x21\xce\xff\xb0\x55\xf4\x72\xf5\x52\x86\xc2\xdb\x8b\xdb\x8b\x5b\x19\xba\x88\xd8\x8b\x8b\x48\x86\x5e\x5d\x5c\x78\x3c\x72\x96\x24\xe1\x6b\x9e\x46\xc1\x63\xb9\xc9\x1e\x82\xa1\x47\xd2\xec\x75\x96\xec\xb6\x69\x19\xf8\x24\x61\xb7\x3c\xf9\x4a\x6e\x91\x84\xe0\x45\x00\x95\x86\xb8\x3f\x66\xfb\x3f\x66\x45\xc4\x8b\xd7\xb2\xe0\xc0\xf9\x9f\x30\x0c\x1d\x12\x9a\xe6\x51\x90\xcd\x8c\x4d\xb9\x23\xb9\xe9\x3a\x4e\x83\x4b\x22\x7b\x67\x5d\x64\xbb\x34\x52\x99\x01\xb6\x89\x7c\x9f\xb3\x30\x16\x87\xc0\x7d\x79\x49\xca\xac\x10\x3c\x02\x88\x8a\xec\xd9\x3e\x2e\x35\x9d\x1d\xfc\xb7\x99\x10\xd9\xd6\x21\xdb\x2c\xe2\x2a\x6d\x95\xa5\x42\x85\xc2\xa6\x10\x11\x87\x77\x56\x99\x20\xc3\xac\xb2\x62\xab\x3e\xe3\xf4\x9e\x17\x25\xff\xd0\x8e\xdd\xc6\xa9\x0e\xb0\xbd\x0a\xb0\x9d\xc8\x60\x83\xff\x4e\xd5\xa8\x46\x5d\x36\xc1\xbe\x36\xfb\x49\x8e\x2c\xeb\xfb\x1b\x18\x5f\x2a\xa2\xe0\x25\x2f\xee\xf9\x4d\xce\x42\xde\x60\xf9\x16\x76\x86\xba\xd4\x24\x5e\xa7\x1f\x64\x29\x3f\xc5\x62\xf3\x85\x6c\x8a\x1a\xee\x4b\x1e\xc6\x5b\x96\x58\x31\x72\xf4\xd4\xf4\x7f\xb0\x23\x2a\x72\x50\xed\xd8\xad\x86\xeb\x4d\xad\x16\x95\x9c\xd5\x81\x36\xe7\x65\xb0\x58\xca\x4c\x2a\x50\xf2\x22\xe6\x65\xf0\x98\x67\x71\x2a\x4c\x77\x0c\x7d\x52\xb0\x28\xde\x95\xc1\x39\x49\xe2\x94\xab\xaa\x4e\xc9\x2a\x4e\x12\x39\xa6\xe4\xaf\x19\x29\x2b\xf8\x9f\x43\xca\xc3\xf6\x36\x4b\x02\x27\x8c\x8b\x30\xe1\x4e\x05\x19\xcb\xe0\xf1\x34\xbf\x6f\xe5\x87\x3a\x95\x82\xe7\x65\x30\xf4\x2b\x72\xcb\x0a\x8b\x06\x3b\xeb\x2d\x2b\x54\xd0\xef\xa1\xa2\x69\x51\x5d\x53\xb2\xc9\x8a\xf8\x37\x39\x7c\xa1\xbc\xdf\x78\x91\x05\x43\xaf\x22\xe5\x86\x45\xd9\x03\x34\xde\x39\xd9\xc4\xeb\x0d\x08\x14\x0d\x92\x8a\xac\x8b\xd8\x9a\x3c\xec\x36\xbb\xe7\x5f\x32\xc1\x24\x96\x50\xd7\xf8\xf2\x42\xfe\xe7\x3c\x31\xf0\xad\x69\xd4\x37\x48\xf5\xb4\xf1\xd4\x98\x79\x67\x26\x11\xbf\xe7\xa9\xb8\x51\x0b\xa4\x1e\x48\x1e\x91\x1d\xab\x21\x5e\x6a\xc4\xa6\x39\xb6\x71\xaa\x26\xac\x3d\x68\xb7\xac\x90\x7c\xb2\x6c\x7f\xd5\x1d\x75\x21\xff\x73\xea\xf8\x6f\xad\xd6\x0d\x93\x38\xbc\x93\x0b\xa2\xac\xe7\x26\xbb\xe7\x85\xf9\x90\xc3\xea\x1b\xd3\x50\xb2\x49\xb6\xd9\xae\xe4\x5f\x84\x22\xbe\xe7\x3f\xa8\x31\xe2\x7b\x15\x89\x53\xc1\x0b\xa6\xd6\xf7\xc7\x82\x47\x05\x7b\x78\x7f\xcf\x8b\x84\x1d\xde\xca\x94\x7b\x96\x04\x3e\x3f\x3f\x7b\xee\x55\x64\x93\x65\x77\x65\xf0\x58\x55\xa4\x54\x6c\x37\x54\x3f\x3b\xf5\xb3\x55\x3f\xb9\xfa\xd9\x48\x86\x18\xc9\x3f\x2b\xfa\xa8\xc5\x83\x42\x37\x0f\x88\x09\x44\xf1\x8a\xc0\xab\xc8\x9a\x7a\xe4\x9e\x7a\xe4\x96\x3e\xe6\x45\x16\xf2\xb2\x7c\x9f\x4b\x82\x60\x9c\xeb\x98\x1f\xd8\x03\x74\x67\x13\x23\x3f\xf5\xe0\x6f\x22\xdf\xaf\x56\xa5\x94\xdf\xac\x7c\x20\x08\x2e\x89\xac\xd9\x1f\xeb\x8e\x37\x31\x37\x6a\x16\xe9\x2f\xf9\x7b\x1b\xa7\xd1\x1b\xd9\xa9\x75\xac\x6e\x0f\x98\x74\x9b\x9d\x88\x60\x3f\xb3\xac\xc8\x01\x16\xe5\x46\x24\xdb\x2b\xfd\xa2\xa0\x8b\xc3\x52\x2e\xd5\x21\x13\x48\xe0\xd9\x47\xf4\x8d\x7c\xc1\x96\x52\x58\x4a\x0e\xa0\x64\x26\x02\x37\x0b\xcc\x1b\x24\xf0\x63\x6c\xa9\xbe\x6c\xcd\xe5\x62\x49\x52\xea\xcd\xd2\x2b\xd1\xa0\x4b\xd5\x4a\x54\x50\xee\xf2\xbd\xe0\x69\x84\x86\x1e\x79\xac\x48\xe2\x2a\x56\x81\x67\x4a\xe5\x2a\x16\xe9\xd2\x8d\x98\x60\x73\x54\xc0\x6f\x13\x43\x22\x9e\x70\xc1\x07\x4d\x84\x8d\xab\x20\x32\x1e\x93\x3a\x95\xaa\xfc\x38\xb0\xf0\x10\xa6\x94\xdf\x05\x36\x7a\x47\x56\x21\x61\x89\xba\x5a\xd2\x25\x8c\xc6\x9a\x76\x92\xd2\x89\x0f\xcd\x24\xa8\x37\x13\x57\x71\x53\x27\x61\xea\x14\x2f\xc4\x52\x69\xc5\x74\x2d\x8a\xd1\x08\xb1\xc9\x84\x38\xe9\x6e\x7b\xcb\x0b\x87\x52\x29\x2e\x67\xab\x41\x31\x1a\x15\xd7\x4a\x15\x57\x60\x5c\xb1\x2b\x90\x7f\x19\x4d\xc7\xbe\xde\x52\x93\x52\xb6\x5f\x48\x13\x85\xb0\x24\x3b\x1a\x1a\x52\xb6\xd4\xb3\x28\x61\x33\x31\x1e\xe3\x8c\xb6\x95\x78\xe1\x42\x7c\xb6\x5b\x1e\x8f\xce\xff\x3c\x7f\xfe\xdc\xc1\x44\x7c\xb6\xa3\xd4\x1b\x8d\xc4\x68\x84\xb6\x74\x7b\x4d\xbd\xf9\xf6\xca\xbd\x9c\x4f\xb6\x13\x77\x1a\x78\xc1\x64\x8b\x49\xb9\x10\x4b\xaa\xf5\xd1\xc8\x29\xd6\xb7\x0e\xf1\xc7\x5b\x45\x50\x4e\x56\xad\x52\xdb\xf5\xaf\xc5\x78\x94\x43\x2b\x60\x45\xcb\x1c\xe5\x5a\x33\x5f\x2e\x56\xcb\x5a\x1f\x8d\x30\x19\x8f\x57\x38\x38\x69\x16\x0d\x3d\x1a\x59\xf9\x74\xc8\xce\x8d\x89\x2a\x2c\x77\x61\x15\x70\x25\x3f\x55\x7d\xb0\x26\xf7\x74\xa8\xc8\x04\xf9\x36\xc7\xf1\x0a\xe5\x8b\xf5\x72\x34\x92\x7f\x0d\x24\x1d\xfa\x33\xd0\xb1\x56\xf7\x50\x56\x83\x86\x0e\x3d\x5c\xb5\xb1\x4b\xf6\x6e\x41\xc9\x4f\x3a\x1c\x9a\x4f\xb9\x4c\x60\x92\xbb\x20\x6f\xd0\x1b\xb4\x21\x77\x28\x27\xce\xde\xc1\x32\xf6\xa0\x63\x23\x15\x7b\x70\x30\xae\x2a\xd4\x37\xd0\x94\x9c\x46\x12\x52\x92\x90\xec\xc8\x96\xe4\x64\x43\x22\xfa\x1d\xb4\x90\xfb\xfd\xfb\x9b\xb7\x1f\xde\xfe\xf5\xcd\x2f\x6f\xbf\xfb\xea\xed\x77\x6f\x3f\xfc\x4c\x56\x26\xe9\xbb\x37\x5f\x7f\xd1\x4e\x5a\x9b\xa4\x77\x5f\xfc\xed\x97\xbf\x7e\xf1\xed\x8f\x6f\x9a\xe9\x7f\x6f\x94\xf0\xe2\x8a\xc3\x7c\xd8\xc6\xe9\x68\x24\x86\x74\xb2\x1e\x8d\x50\x1d\x45\x05\x26\xec\x5a\x7f\xb2\xfd\x68\xc4\x86\xd4\x02\x60\x7b\xca\x70\x25\x5b\x99\xbb\x9c\x85\x1b\xf4\x80\x30\x41\xed\x13\x0c\x51\xe3\x8a\x88\xa8\xb3\xad\x88\x70\x77\x25\x8f\xe8\xd0\xaf\xa4\xac\x7c\x3a\x96\x50\xa6\x47\x50\x54\xb3\x4e\xfa\x58\xb3\xd0\x8a\xec\xd1\xad\xdb\x66\xb7\x64\x91\x91\x4c\x71\x82\xcc\xca\xb5\xc4\x1f\x1b\xae\xaa\x14\x92\x53\x9d\x73\x88\x36\xd4\xce\xed\xae\x40\x28\x53\x7b\x41\x24\x17\x0a\x7d\x60\xf6\xb8\x07\xb9\x17\x5a\x58\x86\x0a\xfe\xcf\x5d\x2c\xb7\xdf\x43\xaf\xc2\x64\xa3\x81\x0e\x1f\x03\xca\xdc\x52\xb0\xf0\xee\x78\xcc\x5c\x29\x92\xc0\xc0\x93\x1f\xcd\x30\x1c\x8d\x32\x7b\x7c\xc1\x20\x39\xd0\xe1\x10\x59\x39\x24\x0c\x7c\xc8\x11\xf9\x54\x76\x99\x86\x67\x9f\xa4\xca\x27\x11\x5f\xb1\x5d\x22\xfe\xca\x92\x1d\x97\xc2\x81\x91\xf7\x82\x03\x10\x0c\x05\x35\x62\xcf\x68\x84\x34\x17\xde\x2c\x36\xba\x69\x27\xfe\xd2\x3d\x90\xf6\xf7\x1e\xe6\x53\x4f\xbb\xd2\x4d\x55\xf3\x8c\x56\xb2\xfa\x89\x7f\xe3\xf8\xb1\x3f\x9e\x1a\xfc\xa4\x7c\x22\x27\x49\xfa\x12\x80\x8b\xbd\xa1\xfd\xcd\x04\x32\x22\x0c\x97\x4c\xcd\x64\x35\x48\x33\x35\x81\xf5\x88\xf5\x08\xa3\x29\xac\x8f\xb9\xb5\x3e\x92\x74\x4c\x4b\xd5\x43\x77\x54\x33\xc1\x2d\xcd\x17\x6c\x09\x3a\xda\xe1\x1d\x96\x68\x0b\xea\xcd\x8a\xab\x72\x36\x1e\x17\x38\xa4\xdb\x45\xb1\x24\x68\x47\x37\x8b\x62\x89\x47\x23\xb4\x73\x55\xa7\x8c\x46\x6a\xdd\x08\x47\x23\x14\xd2\x71\x48\xe2\xf2\x3b\xf6\x1d\x0a\xf1\x5c\x49\x31\x41\x48\xa9\x7f\xe6\xcd\x43\xba\x96\xc1\x89\x7f\xe6\x01\xe4\x64\x5d\xf3\xc4\x10\xd0\x99\x9e\x1d\x8d\xd0\x9d\xec\x02\xa2\xf0\xee\x5c\xbb\x9b\x21\x6b\x3b\x0a\x63\x4c\x92\x45\x3a\x2e\x96\x34\x94\xd4\x9f\x12\xaf\x10\xa1\x90\x2a\x30\x3c\x1a\x0d\xfd\x21\xa5\xa6\x32\x6e\x3d\x70\x80\x8e\xfd\x68\x74\x6f\x9a\x94\x84\x24\xc4\x64\xe7\x1e\x54\xdc\xa1\x8e\xab\x8b\x94\xb8\x65\xa9\x6f\x46\xa3\xf4\x5a\xd6\x6c\x78\x77\x3c\xaa\x02\x93\x45\x3a\x29\x97\x58\x89\x17\x36\x3d\x32\x6b\x29\x33\x2b\x1c\x33\xf9\xe3\x2f\x15\xfc\xd8\x5f\x1e\x8f\x1e\xb9\x1b\x8d\x50\xb2\x48\x97\x74\xbb\xf0\x96\x18\xfa\xab\xaa\xaa\xea\xd3\xcc\xa1\x77\x1c\x3d\x3d\xec\x9c\x94\xaf\x99\x94\x5c\x27\x3f\x3b\x54\x0e\xeb\x7a\xcb\x08\xad\xa8\x44\xab\xc4\x94\xc5\xe4\xb0\x31\x95\x63\x4b\xe8\x8c\x64\xc1\xc6\xfe\x92\xa8\x1f\x3a\x09\xf1\xcc\xe2\x76\x8d\x28\xd9\x30\x3c\xc3\xe9\x9e\xac\xcc\xbf\x57\x93\x5e\x56\x08\x13\xe8\x3d\x8d\xc8\x0d\x8d\xc8\x07\xba\x22\xbf\xd2\xd5\xec\xa9\x8a\xe9\xc9\xad\xea\xd6\x33\x03\x64\x15\x5b\x73\x00\x46\xd1\xce\x1e\x3e\x21\x2c\x39\xa1\x5e\x9a\x60\x2c\xa1\xf0\xea\xfd\x68\x84\xde\xd3\x10\x93\xf0\xfa\xc3\x68\x84\x3e\x50\x39\x7e\x60\x50\xa1\xf0\xea\x66\x34\x42\x37\x2a\xf1\xd7\xd1\x08\xfd\x2a\x13\x61\x16\x5a\x6c\x53\x4d\xd5\xd7\xb3\xf2\x21\x16\xe1\xc6\xa4\xc0\xf6\x0e\x3f\x86\xac\xe4\x6a\x8f\x17\xbc\xa6\x9e\x92\x11\x66\x10\x09\xdb\x02\x19\x3b\xd1\x39\xcc\x96\x51\x03\xe9\x59\xd4\x03\x70\x36\xad\x4e\xf8\xe7\x1c\xdd\x8c\xe9\x6b\xf2\xeb\x98\xbe\x1e\x77\xc0\x71\x80\xde\xcb\xb4\x0f\x7d\x69\x55\x33\x9b\xde\x93\x0f\x98\x34\x13\xe9\x86\xfc\x8a\xab\xdf\xb3\x1a\x53\xc9\x14\x9a\x4f\xd9\x4b\xd8\x5a\xa0\xe9\xaa\x49\x66\x7b\x95\x5c\x61\x5c\x21\x4b\xea\xbf\x53\x38\x95\x94\xcf\x17\x62\xec\x48\x12\x9c\xa5\x39\xee\xc9\x40\x3f\xdc\x88\x75\x0c\x64\x5b\xe6\xa6\xb8\x96\x84\x87\xed\x34\x1f\x13\xd6\xe0\x7f\xb0\x8f\xe4\xd7\x05\xcf\xd1\xc6\x6c\x55\xa2\x56\xcd\x1a\x30\x49\x62\x9d\xff\x7d\xad\xaa\x96\x72\x15\x7d\xac\x2c\x41\x60\xd3\x92\x35\x18\xdd\x48\x59\x43\x0a\xe2\x0b\x67\xef\x8c\x99\x9b\x2e\x29\x73\xc3\x69\x8e\xe4\x1e\x68\x25\xb0\x2d\x44\x44\x9d\xbc\x51\x93\xf7\xd0\xc9\x2b\xb2\xbc\x3e\x86\x1f\xdc\x67\x71\x34\xf0\x86\x94\xa6\xee\xde\x97\xf0\xee\x1e\x82\x98\x58\x29\x07\x95\x72\x80\x20\x26\x69\x53\x9d\x1b\xd4\x32\x9b\x58\xb0\x89\xe4\x6b\x48\x05\xe8\x63\x1a\x30\xd2\xa8\xbf\x05\xa5\x9b\xb9\xb3\x77\x02\xe7\xe0\x90\x4c\xef\x50\x3b\x9b\x2d\x80\x49\xd4\x38\x0a\x12\x35\x80\x70\x25\xf7\x4c\x12\x63\x53\xf0\x07\x84\x1f\xbf\x19\x8d\xc2\x84\xb3\xe2\x43\xbc\xe5\xd9\x4e\xa0\x6f\xe4\x6c\xdb\xa5\x72\x03\x8a\x1c\xd8\xad\x6f\xb3\x7b\xee\x90\x7f\x9e\xc4\x27\x9c\xc9\x84\x3f\xda\x09\xa0\x09\x70\xc8\x8f\x18\xc4\x38\xb3\x51\x25\x8b\xdd\xd2\xea\xbe\x5f\x65\xf7\x99\x6d\xa4\xa0\xdc\xd5\xd5\x20\x8c\x72\x17\x54\x67\xc7\x23\xec\x2d\x85\xdb\xa8\xca\x24\xa3\x2f\x4c\x8c\xd2\x71\x80\x11\x0f\x4d\x8f\x47\xe4\xec\x1d\x4a\xb9\x5b\xb7\xd2\xfc\x1d\x13\x1b\x77\x95\x64\x59\x81\x4a\xa5\xc4\x3d\x43\x4c\xf7\xee\xf1\xe8\x63\x1c\xa8\x79\x11\xdb\xb9\xc6\xce\x17\xfb\xb8\x1c\x38\x63\x3b\x8e\xbb\x3a\xde\x21\x09\x75\x56\x49\x26\x26\x6d\x00\x67\x22\x9b\x77\xd0\x93\x02\x59\x55\xaa\x33\x8e\x49\x48\x85\xbb\xca\x52\x71\x3c\x2a\x34\xb2\xa6\x13\xa8\xce\x00\xd4\x7b\x32\xe4\x90\x1d\xf5\x66\xbb\x2b\xd6\x8c\xc4\x9d\x1a\xea\x5b\xca\x16\x3b\x38\x4f\xd9\xaa\x36\x50\xd1\x39\x2d\xdd\x35\x07\x1d\xf1\xdb\x74\x95\xa1\x84\xe8\x64\x12\x82\x4c\x40\x32\x3c\x4b\x29\x34\xc7\x96\xed\x51\x4a\x72\xd5\x1c\x63\x1f\x93\xa2\x89\x2f\x48\xae\x35\xdc\xb8\xaa\xb8\xd5\xec\x9d\x3e\x48\x09\xb7\x7b\xa0\xdb\x1f\x45\xd3\xc9\xaf\x51\xcd\x41\x6c\x14\x4d\xaf\xaa\x3c\xd0\xa7\xba\xff\x5d\xa3\x70\x24\x19\x85\x1e\xa5\xa2\x69\x4d\x12\x5b\x80\x8d\x3a\x14\x76\xd0\xeb\x22\x8e\xdc\x46\xdd\x45\x76\x26\xce\xd2\x92\x91\xad\x89\x3c\x55\x96\x91\x5c\x0a\x7f\x6b\xf9\x47\x6e\x2f\xc9\xad\xdc\x3f\x6a\x5e\x9b\xcd\x37\x41\xd4\xe2\xb6\x0c\x3f\x02\x53\xd3\x62\x3d\x73\x6d\x75\x2d\x06\x76\x47\xa9\x98\xdf\xd2\xa1\x17\xb0\x93\xba\x51\x0a\x5a\x83\xdb\xf9\x9a\x0e\xfd\x20\xa7\x43\x1f\x93\xdb\xe3\x11\xc9\x3d\x2b\x96\x9c\x98\xac\x41\x54\xf0\x8c\xc0\x17\x8f\x46\x28\xa6\xf7\x73\x67\xb5\x4b\x12\x27\xb8\xc4\x5a\x68\x1c\xc7\xf8\x78\x44\xbb\x31\x1d\xc7\x98\x64\x73\x94\x8e\xe9\x4e\xca\x3e\x5b\x62\x14\xe0\x94\x16\x73\xb4\x72\xd5\xd7\x98\xa6\xe3\x90\x08\xf7\x36\xdb\xd3\x47\x91\xe5\x41\xa9\x3b\x7c\x62\x20\xc8\x46\xab\xa0\x2b\x1c\x20\x0b\x70\x25\x99\xdd\x38\x6c\x92\x89\x8a\x91\x08\x31\x0e\x10\x93\x05\xab\x45\x15\x4a\xd4\x59\x41\xdd\xb6\x02\x26\x3b\x0e\x09\x0c\xba\x80\xc9\xbc\x10\x43\xd9\x38\xc4\x01\x5a\xb9\xb0\xee\xc2\x27\xb1\x33\xea\x59\x3b\xd1\x00\x75\x7e\xb9\xa7\x6c\xda\xb2\x20\xc2\x1a\x0b\x34\x56\x28\xdc\x9c\x45\x51\x9c\xae\xe9\x4e\x7f\xdb\x3d\xfe\xbd\x4e\xdb\x12\xe1\xc6\x69\xca\x8b\x6d\x56\x0a\x9a\x37\x03\xf7\x7b\xbd\x67\x87\x1d\x3b\x95\x4b\x6d\x66\x46\x8e\xec\xf0\x5a\x93\x16\x0e\xe2\x74\xb0\x52\xb0\xf5\x80\x53\xfa\xd9\xe3\xd1\x9b\xad\x16\xe1\x92\x9e\x28\x40\x76\xf3\x5d\xb0\x5b\x84\x52\x6c\xad\x5a\x88\x2c\x39\x50\x69\x0f\xc9\x62\xb5\xc4\x64\x85\x4f\x16\x5b\x5d\x92\xa5\xd0\x9d\xcb\xb2\xc6\x34\x9b\x9f\x26\x2d\xc2\x65\xe0\x05\x4f\xa7\x07\xde\xcc\x6c\xf1\x8b\xae\x48\x61\x26\xaf\x1e\xc1\x33\xa1\x14\x28\x6a\x54\xaa\xd1\x3f\x57\x9b\xfd\x40\x7d\x11\xd1\x9a\x0a\x35\xa4\x1d\x39\x57\x58\x82\x76\x6c\xcf\x19\xb4\xbd\x2a\x8c\xb5\xac\x29\xdc\x6d\x9c\xce\xe1\x6f\x50\xab\x32\x30\x49\x6d\x00\xb6\x9f\xc3\xdf\xa0\x56\x65\x48\x46\x97\x4e\x98\x64\x9d\x1e\xa5\xb5\x8d\x28\xf0\x3e\x76\x5b\xca\xc8\x74\xee\x07\xee\xf4\xf2\x59\xaa\xd4\x93\x54\x95\x04\xca\x3d\x9a\x99\xcd\x15\xa0\x55\x3b\x38\x0d\x70\x3c\xca\x59\x97\xe1\x8a\x27\x25\xd7\x27\x70\xc2\xed\x1c\xa5\x68\x55\xa1\x9c\xc6\x27\xb8\x8b\x67\x31\xbe\xf2\xcc\xae\xd0\x52\xd8\xd4\xc1\x6b\xea\x01\x47\xa9\xd9\x81\xa6\x42\x16\x2c\x73\x5f\x77\x73\xcb\xc4\x3a\x78\x05\xb9\x53\xea\x61\x29\x3b\x4a\x71\x90\x11\xee\x82\xdc\x57\x21\x01\xdc\xa6\xa5\x6e\x49\xd7\x9c\x2c\x96\x98\x64\x78\x34\xb2\x54\x58\x72\x5d\x06\x31\xad\xe8\x17\xce\x34\x27\xe4\xad\x3e\xad\xb4\xf1\x90\x90\xcc\x54\x8e\x75\xa5\x2b\x9e\x82\x96\x09\x46\x1c\xeb\xb2\xd5\x77\x88\x61\xf2\xa5\xfc\x23\xe8\x77\x88\x11\xa6\xa4\x01\x7c\x3c\x0a\xf2\x2b\x62\x40\xaf\x18\x8d\xda\x04\xeb\x95\xf2\xda\xc3\xb3\x74\x3c\xc6\xbd\xf5\xb1\x68\x60\xb5\xf6\x62\x26\x1b\x77\x36\x99\xa4\xf8\x35\x62\x8b\x74\x89\x67\xc3\x1e\xfd\xb0\x99\xd8\xed\x13\x93\xc6\xae\x81\x99\xbd\x5f\x9f\xae\x8b\x35\x2b\x2c\x23\xd3\x67\x08\x14\xc8\x7a\xd3\xa5\x8e\xc8\xc6\x76\x54\x7d\x62\x75\x36\xd5\x8d\x97\x6a\x76\xc8\xf4\xb1\x05\x83\x63\x0b\x66\x8e\x2d\x58\x35\xfb\xd8\x96\xc0\xee\x8e\xd1\x48\xb1\xca\xb2\x0e\xd4\xa6\xa6\xe8\x64\xb1\x9d\xa3\x14\xd8\xb4\x25\x38\xc0\x37\xb1\x97\xf2\xb3\x29\x26\xa9\x62\xcf\x36\x9c\xe2\xd7\x1d\x40\x1c\xa0\x54\x2f\x33\x36\xac\x5e\x78\x5a\x12\x81\x42\x2b\xb2\xdc\x06\x14\x59\x7e\x02\xa5\x56\xcb\x95\x45\x68\xc8\xe3\x04\x75\x49\x5e\x69\x39\x9f\xac\x6c\x5a\xbb\xa0\x8a\x6a\x0d\x02\xc0\x35\x05\x5d\x50\x49\xcb\x4a\x6d\x00\xc8\xaa\x55\xa9\x2e\xa4\xae\x9e\x01\x82\x5d\x16\xe9\x1d\xfc\x5d\x83\xf7\x13\x81\x16\x71\x58\xc9\xa0\xae\xaa\x46\x13\xde\x6a\x62\xa2\x00\x60\x9d\xa4\xcd\xea\x09\x90\x66\x95\xb5\x73\xe0\x40\xa3\x94\xf5\x84\xea\x4c\x78\xbb\x81\x35\x46\xb5\xec\xd3\x13\x71\x61\xa2\xa4\x80\x56\x26\xac\xb9\x4a\x85\xf0\x6c\xfd\x04\x15\xe4\xfe\x29\x5c\xe4\xa9\x95\xa8\xd5\x34\xf5\x42\x2d\x5a\xfb\xc3\x66\xc9\xe6\x8d\x98\x68\xf4\x33\x92\x81\x64\x56\x42\xf7\x70\x7f\x76\xda\xde\x92\xe7\x29\xc3\xfd\xf5\x59\xbd\x54\x14\x08\xb8\x27\x9e\x40\x20\x4e\xb1\x5c\x7c\x54\x87\xc7\x69\x9d\x4a\xea\x54\x29\x1d\xd1\x89\x85\xeb\xfe\x63\xb8\x1a\x64\x52\x22\x3f\x45\x46\xb8\x9b\x4f\x43\x5a\x48\xe9\xf2\x94\x0d\x23\x3e\x49\xf1\x33\x56\x05\x3d\x49\x05\xe2\x58\xa5\x12\x2e\x37\xb0\x34\xeb\x41\x30\xc8\x50\x3a\xe6\x67\x0c\xf7\xa1\x18\x40\x52\x65\x56\x8d\x4c\x2e\x32\x4f\x31\x9e\xba\x2b\x48\x46\x62\x92\x50\x10\xc2\x60\xfb\x73\xba\xd5\xb2\xe3\x44\xb3\xd5\xda\xd5\x5b\x2d\xf1\xe4\x56\xeb\x24\xab\xd9\x6a\x85\x64\x6b\xed\x15\x3e\xb9\xe5\x92\xbc\xbc\x74\x0b\xd8\xe7\xca\x7d\x14\xda\x49\x19\x53\xe9\x8f\x3d\xb9\xec\xdb\xdc\x12\x1b\xa9\x2d\xa7\xde\x2c\xbf\x6a\x27\xce\xc6\xe3\x1c\x0f\x11\x33\x79\x16\xf9\x12\xab\xe9\x21\xb7\x09\xf7\x57\x5a\x68\x60\xee\xfd\x35\x2c\xe3\x66\xe7\xda\xe2\xbc\x19\x75\x42\x9e\x0a\x5e\x38\x24\xd5\x53\x7d\x2c\x64\xc7\x23\xe6\xde\x63\x4b\xb8\x6f\xe4\xe0\x79\x41\x13\x98\x8c\x89\x11\x7d\xc7\x49\x9f\xd0\x1b\xa0\x06\x50\xcf\xc0\x3a\x07\x89\xa9\x41\x2d\x87\x6d\x4c\x9d\x6d\x1c\x45\x09\x77\x48\xa1\xd8\x43\x8b\x08\x2d\xed\x5b\x24\xa0\x94\x26\x8a\xd8\x44\x4f\xfb\x06\x75\x46\xb5\x7a\x0d\x07\x16\x94\x4e\xc5\xa4\x74\x59\x14\xa9\x96\x87\x51\xc3\xf4\x0e\x76\xab\x76\xb0\x6a\x1b\x4b\x62\xcd\xef\x9b\x25\x5a\x2b\x20\x5d\x65\xb3\xe4\xd6\xf6\x46\x73\x8e\x4e\x23\xb1\xbb\x11\xdb\x04\x39\x0e\x0e\x84\xbb\x02\x65\x85\x86\x71\xb0\xee\x7c\xa4\x14\xfa\x75\x5e\xd0\x26\xaa\xe1\xdf\x9c\x9f\x03\x8b\x59\x2c\x49\x26\xff\x94\x74\xe8\xc3\x0e\x54\xe7\x68\x5b\x48\xe9\xbd\x7c\x6c\xef\xe5\x11\xa3\xf1\x62\x67\x86\x05\x08\x67\xe1\x5c\xb6\xaa\xaa\x32\xc3\x81\x0e\xe2\xd1\x28\xd3\xa7\x3a\xf0\x1d\xa4\xda\x82\x84\xa9\xf3\xd2\x0a\x88\x6d\x68\x05\xdb\x28\x1c\xaf\x10\x77\xe3\xf2\x2b\xd3\x48\xdd\x74\x9c\x41\xe8\x24\x7e\x26\x25\xd8\x41\xbc\x42\x4e\xc1\x81\x35\x3a\x94\x76\x61\x32\x57\xa7\x21\x05\xae\xd5\x12\x4e\xc4\xcb\x90\xa7\xb2\x2b\x9d\x61\x37\xd3\x4c\x97\xd7\xe1\x10\xb5\xe0\x08\x55\xa3\x46\x25\x30\xf7\x02\x1d\x75\xa5\x63\x86\x74\x3b\xf7\x83\x89\x0f\xea\xbf\xac\x40\xaa\x45\xb3\x13\xed\x48\x4e\xb3\xc5\x6e\x39\xdb\x7d\x56\x97\x5f\x1b\xae\xc1\xa9\x38\x2a\x47\xa3\x42\x35\xa7\x73\x75\x26\x8a\x6b\x07\x93\xfa\x5b\x7d\x96\x70\x8e\xa2\x23\x3f\xbf\x12\xd1\x00\x2c\x51\xa9\xa3\x10\x82\x1d\xcc\x1f\xb3\xbd\x73\x7d\x15\xc5\xf7\x83\x52\x1c\x12\x2e\x67\x8c\x94\x09\x03\x3f\xdf\x0f\xca\x2c\x89\xa3\xc1\xe7\xe3\xf6\x60\x68\x9b\xc6\x8d\x3f\x9f\xe9\x51\x2f\xb3\xb4\x51\xa9\x1d\xee\x45\xbe\x9f\xe9\x8d\xb6\x37\xd3\xd8\x2f\x2d\xec\xfa\xb4\x7c\xfc\xf9\x2c\xbb\xe7\xc5\x2a\xc9\x1e\x82\x4d\x1c\x45\x3c\x75\xae\xaf\xce\xa2\xf8\xbe\xfe\x2b\xa2\xeb\x93\x3a\x28\x7e\x77\x2d\xb1\x00\x71\x63\x07\xe0\x1c\x5c\x9d\x36\x8f\xd9\x2e\x19\xbe\xa7\xe7\x81\x6c\xec\x0d\xfd\xfc\x4a\xb0\xdb\x84\x1b\xd2\x25\x8b\x9d\x94\xf1\x6f\x3c\x28\xb7\x2c\x49\x78\x31\x53\x43\x55\x36\x06\x48\xcf\x9a\x66\x59\x74\xa1\xaf\x95\x39\x18\x4a\x97\x68\xae\x9d\x59\x73\x9c\x70\x3a\x71\x3f\x32\x9b\x37\xd6\x48\x8c\xa8\xe3\x90\x75\x83\xa0\x56\x26\xdd\x37\x71\xdb\x66\x47\x46\xe9\xfd\xc2\x5b\x8e\x46\xe8\x9e\x2e\xee\xc9\xfd\x12\x13\x27\x75\x28\x5d\x9b\xab\x77\x1e\x9e\x47\x63\xea\x48\x71\xdb\x19\xa3\xfb\x85\xbf\x1c\x2b\xa1\x6f\xec\xe4\xfb\x99\x13\x38\x65\x1b\x7a\x34\x42\x12\x5e\x0b\xe6\x4d\x16\x2d\xfa\xa9\x5c\x98\x38\xdc\xce\xe6\xab\x42\x94\x6c\x0f\x79\x3c\x99\x47\x09\xa1\xa6\xa0\x87\x76\x0e\x5d\x10\x6c\x0b\x9a\x2c\x20\xe3\xea\x42\xa0\x93\x6e\x29\x47\x9f\xc3\xf8\x6a\x0d\x01\xd9\x05\x1b\xb7\xe0\x79\xc2\x42\x8e\x3e\xd7\x1d\xf8\x39\x31\xa1\xda\xe6\xcf\x98\x55\xcf\x3e\x1f\x47\x63\x67\xa6\xba\x4b\x0e\x2d\xc7\xb2\xac\x16\x6a\x98\x58\xdd\x76\x62\xb9\x69\xce\xb6\x7b\x20\x5e\xd7\x96\x34\x94\x1e\x46\x23\x84\x0e\x14\x1d\xcc\x86\xab\x03\x86\x47\x23\xa7\x04\xf3\x90\x46\x13\x72\x98\xb7\x4d\x62\x0e\x38\xe8\xdc\xd9\x43\xb7\xc4\x69\x10\x4d\x20\xcd\xc1\xd8\x65\xd4\x27\x07\x7a\xb0\x4d\x4e\xa0\xd1\xf6\xf4\xb6\x31\x62\xc7\x33\xd3\x82\x4f\xb6\x8d\x9a\xb3\x9f\x8f\xf7\xc6\x50\x18\x7a\x40\xcf\x5f\x67\xbc\xaf\xad\x86\x55\xcf\xc8\x96\xec\x92\x13\x38\xe3\xc3\xf8\xf3\x99\x73\x3d\x50\xcd\xfb\x39\x76\xf3\x82\xeb\xf6\xbd\x55\xd6\xef\x4e\xa6\xda\xd2\x21\x1f\x69\xe7\xaa\x6a\x9d\xe1\xbc\x43\x8d\x24\x66\x29\x71\xd8\xa9\x4e\x2a\x35\xfb\x42\x1d\xb8\xf6\xe6\x3a\x14\xb8\xe7\xcf\x40\x20\x2d\xff\x59\x88\x53\x51\x45\xcb\xf7\xb5\x26\x11\x6b\x2b\x71\x04\xc2\xcd\x04\xa4\x1d\x7c\xc6\x48\x46\x27\x96\x3e\x1e\x82\x49\xb6\x46\x05\x56\xc2\xf0\xb7\xdf\xf9\x1e\x26\x31\x55\x85\x1a\xeb\xd5\x46\x6d\x92\x5d\xc7\xa3\x11\xca\x68\xac\xf0\x27\x24\x54\x52\x72\x9e\x3d\x20\xdf\x23\x93\x0c\x93\x1d\x2d\xce\xe0\x3c\x7b\x77\xe5\xbb\x97\xf3\x84\xfa\xc1\xee\xea\x7c\x8e\x12\x3a\x25\xbb\xeb\xa9\x3b\xbd\xac\xb5\x2f\xf1\xf1\x98\x8d\xfd\x2b\x1a\xcb\x89\x94\xd0\xa9\x7b\x49\xc6\xe3\x0c\xe3\x20\xa1\xbb\xab\x17\xee\xe5\xfc\x32\xf0\x3d\x92\x3c\xa3\xa1\x56\xfb\xa4\xae\x65\x34\x3b\x1a\x25\x57\x9d\x08\x94\xb4\x41\xe0\xb0\x8d\x27\x82\xd5\xda\x49\x53\xa5\x46\xb8\xf7\x34\xee\x78\x1e\x07\x19\xd6\x60\x32\xb3\x6e\x04\x19\x3c\x1e\x13\x0d\xd5\x69\x99\xd1\xc8\x3a\x55\xb2\x13\x8e\x47\x24\xd4\x3e\x23\xaa\x8b\x6c\x53\x30\xce\x30\x71\x44\xbc\x95\x4c\x28\x75\xb7\x59\xc4\x47\xa3\xa1\x02\xf9\x9a\xa7\xbc\x60\x22\xeb\xb9\xfd\xf0\x21\xde\xf2\x81\x04\x1e\x68\xb3\x83\x12\xee\x20\x48\x89\xda\x95\xc8\x06\x79\xb2\x5b\xc7\xa9\xab\x16\x8d\x0e\x3a\x20\xaa\x15\x43\x4f\x94\x7d\xc4\x92\xaa\x60\xb3\xb4\x8d\x53\x82\x52\x7d\x1a\x04\x8d\xfa\xcc\x1a\x41\xec\x4c\x6e\xbc\x62\xea\x91\xa4\x36\x92\x62\xdf\xcd\xa2\xec\x51\xd0\x84\x24\x34\x1b\xc7\xcf\x9a\xac\x66\x49\x4f\x30\x19\x8f\x63\x7d\xcf\x36\xb9\xe2\x4a\x8f\x96\x0c\xa9\xa8\xcf\xf1\x8a\x4a\x77\x45\x2d\xc2\xd1\x7e\x95\xa8\xdd\xa6\x73\x7b\x30\xb6\x93\x70\xe0\x93\x94\x3a\xce\x18\x40\x60\xb6\x22\xfe\x8c\xe1\x33\xd6\x2c\x78\x9d\x1c\xda\xd2\x30\x75\xe3\x34\xe2\xfb\xf7\x2b\xe4\xb8\x70\xaf\x62\xe2\x53\x5a\xcc\xbd\x20\x35\xea\xab\x62\xe2\xc3\xc1\xf7\x55\x07\x81\xde\xf1\x65\xf3\x34\x48\xc7\x32\xf3\x18\x39\xce\x98\x61\xb7\xdc\xdd\x96\xa2\x40\x7e\x87\xc6\x49\x56\xdb\x48\xa6\x95\xdc\x62\x5a\xd2\x63\xda\x6e\x0c\x0c\x27\xc7\x1f\x6b\x1f\x7d\x3e\xec\x8c\x3b\x39\x21\xb5\xc2\xf5\x8c\x3a\x35\x5f\x37\x87\x5c\xa7\x5c\x66\x13\x44\x78\xd1\x97\x65\xe2\xab\xe3\xb0\xd1\x68\x0b\x5a\xe8\xd1\x68\x2b\x3b\x53\xcb\x83\x9d\x41\xa7\x97\xaa\xbc\xd6\x16\xd6\x0c\x21\xd5\xea\x58\x60\x57\xcd\x66\x1e\x3e\x49\xbe\xf0\x96\xb5\xe9\x4d\xaa\x86\x4c\x8d\xc3\x57\xb9\xd8\xbe\x99\xd8\xf0\x49\xf2\x45\xde\xd8\x48\x61\x6c\x26\xf8\x27\x66\x00\x5d\x2c\x2d\x73\x8b\x6d\x77\x67\xc9\xb0\xa0\x48\xc7\x2e\xd8\xd2\xbd\x9f\x6c\x15\x83\x45\x5b\x60\xb7\xea\x8b\x08\x35\x7d\xc6\xe2\x99\x52\x20\x4c\x94\xf6\x80\xa4\x6a\x16\x34\x83\x3d\xad\xc8\x50\x68\x1e\x60\xea\x77\x3a\x14\x57\x36\xd3\xf2\x7b\xf9\xb8\x66\x77\x36\x37\xc7\x64\xdd\xd7\x01\x6b\xab\xe5\xce\xfe\xe1\xba\xcf\xbc\x3f\x9c\xb9\x82\x97\x02\xa1\xf5\xc2\x5f\x4e\xd6\xb2\xb5\x5d\x91\x7d\x15\xef\x79\x84\x56\x18\xd7\xcc\xa3\xe6\x67\x2b\x0c\xa6\x3d\x66\x95\xfb\x12\xd9\xfa\x86\xce\x09\x61\x09\x9b\x34\xa5\xf7\x85\x0a\x16\xc7\x63\xbf\xa5\xae\x37\xcf\x7a\xe8\x0d\x0a\x58\x77\x5a\x53\xa2\xc0\x73\x95\x64\x3a\x15\xcc\x78\x55\x97\x65\x76\x67\xe9\xe3\x00\x75\xc1\x83\x66\x0b\xb6\x9c\x9d\x1e\xe5\xc8\x5d\xf3\x38\x59\x78\x4b\x92\xd8\x83\x2a\xa6\xc9\x42\x0e\x9c\x40\xa6\xb6\x8e\x01\x3b\xd3\x0f\xa5\x44\x60\x73\x20\x98\xe2\xe3\xd1\xe8\x23\xd4\xc6\xf1\x3e\x48\xd5\x45\x81\x20\xae\xb0\xd5\x6a\xdf\xd9\xdc\x6c\xe8\xcf\xea\xed\x98\x69\xbd\xce\x11\xc6\x68\x24\x4e\xe7\x4d\x03\xad\xe6\x0f\x6f\xcf\x1f\xc5\xc4\xc5\xc2\x5b\xba\xf7\x98\xb0\xda\x48\xad\x95\x51\x4e\x27\x61\xd7\x9c\xb7\xa7\x13\x7c\x12\xb1\x10\x96\xc9\xa1\xc1\xd6\xb2\x28\xf9\x05\xe1\xc7\xd2\x05\x43\x06\xa4\xce\x34\xda\x96\xf6\x64\xb1\x5d\x2a\xf1\x81\x6b\x01\x73\xc6\xb5\x8a\x87\x77\x45\xcd\xd1\x08\x6d\xdd\x92\xdd\x73\x84\xc9\x56\xe9\x10\x13\x26\x38\x5a\x19\x7d\xb2\xdc\x05\x90\x2d\x58\x6e\xde\x80\x64\xf8\x77\xd4\x2f\xb4\x92\x7b\xe2\x11\xe5\xa4\x61\x7a\x79\x49\x06\xcd\x1f\x0f\x3b\x06\xc5\x0f\x3c\x14\xc8\x23\x1e\x59\x93\x7b\x19\x57\xf0\x52\x64\x05\x47\xa0\xef\x53\x24\x0e\xb9\x5b\x5f\x25\x19\x8d\xbe\x42\x8d\x39\x7f\xcf\x99\x83\xa9\xbc\xba\x54\x40\x16\x5b\x12\x2f\xc4\x72\x89\xc9\x0f\x70\xfc\xa0\x4c\xce\x24\x00\xb4\x09\x69\x9a\xa1\x5d\x04\x29\x5d\x75\x93\x10\x61\xf2\xb3\x2d\x58\xfe\xd6\x71\x60\x62\x14\x7d\x70\x54\x9a\x50\x6f\x96\xd8\xf4\x24\x38\x5e\x21\x50\x7a\x24\x4b\xdc\x70\x75\x4a\x85\xec\xed\x45\x46\xc5\x98\xb9\xa9\x31\x30\x3a\x1e\xfd\x21\x65\x6e\x7a\x3c\x22\x99\xa2\x62\x31\xe1\x8b\x6c\x89\xf1\x63\x4a\x65\xc0\x5d\x15\xd9\x96\x14\x2a\x2c\x32\x6d\xe7\x1d\xaf\x24\xb6\xe5\xf1\x88\x98\xb2\x1d\x10\xf3\xcd\xc2\x5b\x06\x11\x5c\x33\x57\x46\x4c\xbe\xb3\x84\x7c\x62\xec\x4c\x9d\x65\xbd\x1a\x99\x03\xb4\x62\x34\x4a\xaf\xf5\xf1\x60\x49\xd3\x59\x4a\x0b\x52\xd0\x52\xaf\x8e\x8f\xb2\xd8\x20\x25\x22\x0b\x0a\xb8\x5a\x13\x30\x6b\x46\x7d\xd5\x36\xf4\x9e\x7d\x7a\x00\xe9\x8b\xf5\xcd\xb9\x31\xdc\xaa\x81\x25\x1d\x2b\xc3\x6b\x8b\xeb\x64\x72\xe9\x45\x8c\x1e\xdc\x35\x17\x5f\xec\x79\x89\x30\x76\xf7\x70\x9e\xa7\xcd\x59\xe5\x64\x63\xee\x1e\x2c\xb7\x4d\x14\xdb\x13\xe6\x1e\x14\xd4\xc1\x82\x3a\x28\xa8\x43\x0d\x95\xd1\x0c\xb1\xda\x5a\x3b\x3b\xb9\xf9\x10\xd3\x6c\x21\x96\xa4\xa4\xbf\xa1\x18\x4c\xdf\x49\xa8\x82\x07\x25\xf2\xa9\x79\x5d\x42\xcf\x8c\x46\x48\x05\x68\xe9\x9a\x32\xcd\xcc\x2f\x5d\x91\x41\xba\xc8\xea\x54\xb6\xaf\x2d\x5b\x4d\x7e\x15\xa0\xe1\x49\xfe\x50\xe5\x97\x3f\x75\xaa\xcc\x3f\x04\x94\x57\x4d\x81\xc7\xa3\xa2\xe1\xba\x29\xe5\x78\x94\xd9\xae\x42\x0b\x46\x95\x73\x6d\x61\x92\x4c\x04\xca\xae\x39\x90\xfa\x26\x76\x5d\x80\xfc\x9a\xcf\xc9\x2f\x62\x57\x26\xec\x60\x50\xdf\xc4\xae\x4d\xd8\xc2\x20\xbf\x88\x45\xc4\x4c\x59\x14\x68\x4a\x54\xab\x91\x5c\x37\x0f\x55\xad\x00\x8a\xca\xdd\xf1\x38\x84\x0b\x10\x36\xd1\xc6\xe8\x09\xd0\xe5\xd3\x50\x27\x62\x9b\xee\x1e\x18\x91\xe1\x36\xe9\x0a\x26\x6c\x60\x42\x83\x27\xec\xe0\x69\xc1\x00\x9e\xdd\xf1\x98\xab\x91\xb3\xa1\x71\x73\xaa\x79\x3c\x76\x46\x7b\x7d\x87\x8c\x44\x74\xf3\xd9\x74\xee\x5e\x06\xde\x6c\xeb\xde\xf2\x75\x9c\x7e\xcf\xe0\xe2\xed\xd6\x2d\x45\x91\xdd\x71\xc5\x68\x63\xb5\xbd\x3f\x41\xa4\xb8\xed\xb6\x29\x8a\x6e\xc8\x6e\x2e\x05\xa3\xec\x9e\x7f\xc8\xa0\x7e\xe3\x48\xd7\x0f\x6b\x40\x3b\x5e\x92\x1d\xd8\xf0\xba\xcf\x64\x72\x07\xde\xc4\x36\xb4\x21\x65\x00\x30\xb0\x97\x84\x4f\x51\x5a\x73\x7e\xab\x28\xe8\xa1\x49\x1d\x21\x7f\x26\x40\x5a\x55\x31\xe0\xae\x29\x3d\xb5\xe0\xa8\x97\x82\x5b\xea\xcd\x6e\x6d\xc3\xb1\x5b\xd5\x05\x7b\xf2\x86\xdc\x91\xf7\xe4\x86\xb2\xc5\xed\x92\x7c\xa0\x37\x70\x1c\xf3\x2b\xbd\xb1\x4c\x67\xe4\x78\xba\x69\xce\x3c\x6e\xda\x67\x1e\xc0\xec\xed\xd6\xf5\x09\xf0\xd8\x1b\xfb\xdc\x62\x4f\x3d\xf2\x86\x2a\x2b\x25\x4a\x7f\x9d\x3b\x22\xcb\x01\xa6\x3e\x22\xf0\x82\xfb\xe0\x03\x9c\x34\xaa\x03\x05\x74\x0a\xf2\xc1\x35\xca\x4f\xd9\x1f\x6f\xa8\x47\xf6\x36\x4a\x7d\xec\xd0\xc2\xb9\x0e\x3e\x98\xf3\x45\x38\x58\x40\x3d\x50\x1f\xb4\xa6\x42\x4a\x0d\x37\x8d\xd9\xcf\xf1\x88\xda\xe3\xeb\xa6\x16\x4d\x42\xdd\x4f\xf6\x58\xbc\xa3\xef\xa9\x77\x5a\xf3\x3b\xba\x1e\xfb\xc1\x7b\x7a\x3f\xf6\x89\x4f\xa9\xd5\x4e\xe6\x68\xdd\x86\x7e\x63\x4f\x9d\x37\x78\xec\x5e\x06\x7b\x3b\x6a\x2f\xa3\xe4\xd8\xd2\x43\x71\x4f\xde\x58\x03\x70\x3f\xbe\x23\x6f\xc6\xef\xed\xb1\xd7\x9d\x23\x37\x2d\x19\xf8\x75\x4f\x3d\x14\x9b\xbf\xe9\x6e\x30\x34\xb3\x7f\x6d\x7a\x7f\x21\x96\xee\xfd\x4c\x55\x5a\x49\x98\xaf\xf1\xf1\xf8\xfa\xea\x46\x71\xcf\xd7\xd7\x37\x8a\xaf\xd6\xfd\x23\xab\xdb\x15\x71\xe5\xea\xba\x68\x7a\x62\x79\xed\x1d\x8f\xe9\x35\xa8\x4b\x5f\xcb\x86\x51\xa8\x20\xc4\xf6\xd8\x1c\x88\x75\x06\xd6\x0d\x30\x97\xd7\x98\xbc\xb7\x06\xc3\xe4\x3e\xf8\x95\x9c\x8c\x20\xb0\x1e\x9f\xbc\x57\xa3\xa7\xce\x77\x67\xe7\x5b\xcb\x7c\x27\x63\x04\x6e\x52\x4c\xee\x30\xfe\x1d\x7d\x78\xda\x61\xc1\x69\xb7\x7e\xb2\x0f\x71\x65\x31\x90\x4a\x12\x50\xb4\xe7\xb7\xea\xbb\xd3\x26\x3d\x1e\x4f\xe2\x8a\x79\xdd\xf4\x43\xbb\xed\x51\xaa\x6c\xf8\x52\x6d\x3f\x92\x1a\xcb\x91\x54\x79\xcb\x90\x5b\xfe\xd3\x8c\x05\xd0\x02\x19\x0b\x9d\xb1\x30\x19\x0b\x95\xb1\xa8\xb4\x95\x06\xec\x08\xda\x23\xb0\x80\xc3\x7c\x9b\x5f\xa4\x3a\xa6\xcd\xd9\x75\xeb\x78\x13\x6d\xa9\x21\x03\x22\xcb\xcf\xa6\x56\x63\xad\xdb\xb1\xcd\xa0\xd7\x26\x1b\xbd\xc5\x2b\x3b\x83\x36\x01\x26\xae\x97\x84\xf5\x58\x03\x9c\x4d\x4d\x79\x36\x0d\x56\xea\x7d\x97\x0a\xd5\x2c\xbd\x64\x68\xf3\x8f\x36\x1d\x75\xe4\xc7\x09\x21\xf7\x63\x03\xdb\x6a\x0f\xef\x24\xc1\x26\x46\x36\x63\x2f\x29\xd0\xbe\x6d\x42\x74\xd4\x47\xbb\x44\x56\xb8\x2e\xce\xa6\xa2\x49\xf7\x5a\x34\xc0\x22\x6a\x95\xd2\xe1\x4d\x3d\xc3\xdb\x00\xc0\x62\x38\x49\xcf\xa6\x04\xfe\xac\xc7\xa9\x2c\x1a\xe3\xd6\x96\xa8\x11\xb8\x7f\x50\x6e\x21\xed\xbb\x5e\xe8\x29\x2b\x11\xd2\xf1\x0e\xc9\xcd\xfd\x98\xb8\x0e\xaa\x5b\x65\xca\x9d\x80\xba\xa6\xd4\x6a\x99\xc6\xe8\x93\xc6\xb3\xb0\x91\x90\xc3\x31\x8d\x8d\x05\x68\xb6\x08\x27\x31\x5c\x38\x94\x81\xb1\xbf\x24\x1b\x19\x5c\x92\x48\xfe\x8c\xfd\x65\xa3\xf3\xdb\x99\x2d\xc7\x06\x6e\x23\xe5\x57\x34\x1a\x8d\xf2\xab\x02\xa4\x43\x19\x13\xe9\x70\x98\xa5\x22\x4e\x77\x7c\xb6\xa3\x08\x62\x26\x39\x3e\x43\xd1\x24\xc7\xcf\xd0\x66\xb2\xc3\xe3\x1d\xc9\x29\x24\x54\xe6\x00\x37\xba\xa2\xf9\x68\x14\x59\xc8\xf2\x2e\xb2\xcd\x93\xc8\x22\x8d\x4c\xe6\xba\x06\xa2\xae\x0b\x60\xcc\x40\x94\x0e\x77\x88\x62\xfb\x27\x88\x62\xfb\x86\xa8\x6b\x20\xca\x42\x96\x77\x91\x6d\x9e\x44\x16\x69\x64\xa0\xde\xa7\x9b\xd1\x68\xa7\x54\xf0\x80\x67\xa3\xc3\x35\x9e\x9c\x22\x88\x99\xec\xf0\x19\x60\x78\x06\xd8\xc6\x39\xd9\x29\x55\x5f\x4d\xd4\xe6\x4a\x76\xc4\xc6\x42\xb6\xeb\x22\x8b\x9e\x44\xb6\xd1\xc8\x64\xae\x6b\x20\xea\x3a\xad\x2b\xb7\xd1\xe1\x0e\x51\x6c\xff\x04\x51\x56\x4b\x6d\xae\x81\x28\x0b\xd9\xae\x8b\x2c\x7a\x12\xd9\x46\x23\xdb\x51\x9a\x8c\x46\x39\xa5\xe5\xf1\x58\xcf\xe9\x14\x16\xc3\x1d\x1e\x0b\x52\x40\x30\xc7\x63\x26\x77\xec\x1b\x52\xd2\xa8\x99\xdb\x0a\x6e\xd3\xc0\x45\x12\xae\xb2\x17\xab\xdf\xa5\x1e\x91\xe8\xfe\x94\xc5\x29\x75\x40\x21\xe2\xcc\xf4\x75\x22\x3d\x67\x6b\x26\x21\x77\xe7\x6e\xe3\x59\x43\xce\x12\x06\x56\xad\xd7\x1e\x7e\xfc\x18\x33\x31\xde\x2f\xe1\x3f\xd7\xc7\x8e\x3e\x7e\x82\x85\xf8\xfb\xb7\x67\xfe\xcb\x99\xd0\x17\x9a\xf5\x7c\x57\x67\x59\x71\x8a\x0a\xfc\x0c\xb1\xb3\xe9\x38\x95\x2c\x54\x99\xee\x65\x65\x3b\x96\xeb\x6b\x58\x5c\x5f\x9f\x69\x73\xcf\xb3\x29\xf9\x34\xee\x8b\x5e\xdc\x17\xa7\xb8\x2b\x1b\x37\xeb\x54\x53\x1f\x69\x6a\x7d\xc1\x17\x48\x37\xa0\xf1\xe0\x49\x3c\x72\x8f\x67\x19\xf0\xfc\x66\xfb\x91\x91\xae\x1f\x5f\xc3\xc1\xd2\x86\xfd\x15\x2d\xf6\x67\xed\x48\x2d\x95\x2f\x53\x3b\x56\xa6\xf6\xb6\xea\xcc\x65\xe8\x93\x92\xfa\x24\xa4\x1e\x58\xb8\x0c\x51\x21\xfb\x2b\xbe\x36\x67\x13\xe3\x02\xcf\x8c\x1a\x3e\x5d\xa0\x78\x4c\x0b\x3c\x29\x24\x3f\x4c\x17\xf1\xa4\x18\x97\x92\x27\xa6\x8b\x78\x49\x56\xf2\x67\x5c\x02\x6b\x4c\x60\xb4\x17\x8d\x41\x73\x6e\xf4\xd2\x11\x7e\xdc\xd1\x98\x14\x74\x52\x90\x92\x4e\x67\x66\x26\xc8\xc9\x57\x5c\xc9\xa2\x29\x0d\xc7\x85\x1c\x2d\xb2\x05\x40\x0d\xa5\x69\x8c\x69\x48\x77\x63\x24\xb3\xe2\x26\x5f\x55\x73\xe2\xdc\x14\x16\xb5\x38\xb1\xb0\x38\xb1\x38\x61\x9e\xa2\xc3\x3c\x57\x93\x0d\x1e\x6f\x48\xae\x2c\xbb\x4f\x38\xb1\xb0\x38\x71\x07\xd9\xea\x49\x64\x91\x46\x66\x71\x62\x61\x71\x62\x71\xc2\x3c\x45\x87\x79\xda\x44\xf5\x70\x62\x61\x71\xe2\x0e\xb2\xd5\x93\xc8\x22\x8d\x4c\xf6\x16\xec\x9d\x7a\x85\x07\xa1\xb9\x0b\x61\x10\xc8\x30\xf4\x87\x87\xc9\xe6\x9a\x32\xa5\xf3\x5d\xe9\x10\xae\xb9\x4e\x27\x93\x4a\xb5\x24\x0e\xa1\x59\x51\x3b\x7d\x66\xf1\x72\xa6\xf4\xd0\x2b\x1d\xfa\x18\x6a\x30\xdc\xfc\x08\x6a\x99\xde\x18\x96\xac\x69\x4e\xee\x69\x34\xdb\x5c\xd1\x95\x5c\x2f\x4c\x41\xd7\xaa\xa0\x39\xca\xa9\xca\x34\xd9\xe0\x33\x68\x2a\x8b\x21\x2b\x6c\xc1\x0a\x16\xae\x95\xc9\xbb\xb9\x36\xe4\xa2\xe8\xc9\xcc\x2b\x9d\x59\xb6\x9b\x2c\xf8\xda\x34\xde\x95\x6a\x3c\x53\x30\xdb\x3f\x51\x30\xdb\xe3\x60\x05\x8b\xd3\xca\xe4\xdd\x5c\x99\x2e\xd0\x05\xf7\x65\x5e\xe9\xcc\x24\x87\x1b\xba\x9d\x86\x5a\x9b\x86\xda\x9c\x36\x62\xfe\x91\xb4\xba\x81\x57\x18\x93\x68\x48\xef\x81\x65\x3d\x0d\xd2\x49\xbb\xb7\xd2\xe0\x0c\xa8\xcd\x7e\xbb\x2c\x15\xcf\x60\x11\xe9\x30\x69\xb9\x54\x74\x21\x67\xb6\x7c\x89\x38\x58\xd9\x2a\x73\x7c\x73\xab\xc1\xf2\xe1\xd0\x12\x31\x6b\x1d\x3c\x9c\x00\x29\x5b\x45\xf5\x53\xd0\x56\xb1\x60\x2b\x18\x53\x6f\x16\x5f\x15\x0d\xc7\x9d\x4c\x67\xf1\x78\x8c\xb5\x95\x9f\xd7\x08\x99\x4a\x89\x5e\xd4\xb7\x02\x94\xac\x99\x8c\x69\x61\x7b\x4f\x50\x6a\x6a\x13\xb5\x48\x96\x24\xb4\xbe\xa4\xbc\x99\xd2\x84\x52\xda\xc1\x33\xb1\x90\xcc\xc1\xe7\x80\x95\xc9\x4a\x5b\x1a\xe3\x83\xd2\xb0\x48\x1a\x1a\x86\x4c\x59\x1d\x52\x27\xa7\x50\x83\x12\xae\x66\xc9\x50\x68\x42\xc6\xad\x10\x91\x4c\x80\xd1\xb2\x52\xa2\xb2\x29\x66\x66\x02\x54\x34\xad\xae\xee\x45\x9c\xca\x09\x67\x53\xf2\x56\x76\x4f\x9d\x67\x27\x7b\x4b\x76\x97\xe5\x31\xe3\xe4\x60\xd5\x5c\x03\xff\xdd\x22\x8b\x5a\x84\x35\xd2\x46\x48\xe9\x5d\x93\x4d\xd9\xa7\x97\xcb\x45\xef\xe5\x72\x41\x27\xfc\xa3\x97\xcb\x4f\x01\xce\xa6\x95\x91\x9b\x20\x5e\x2e\x70\xf3\xb6\x27\x72\x7d\x7a\x27\x25\x03\x09\x52\x0b\x06\x32\xb1\x82\x7b\xae\x33\xd4\x75\x94\x0f\xf6\xb4\x8f\xcd\x80\x13\x8d\xcb\x00\x61\xc9\x04\x21\xf5\x66\x61\x73\xf3\x3f\xb4\x5d\x1a\x84\xcb\xd1\xe8\x5b\x24\x7f\x49\x02\xfb\x1b\xf8\x99\x2e\x9b\x02\xc8\xd6\x34\x50\x73\x31\x9e\x74\x5b\x16\x57\xb8\x3d\x47\x05\x11\xe3\x4e\x23\x10\xd6\x27\x8e\x7d\x64\xd6\x8e\x46\x72\xa8\x34\xbb\xc5\xb7\x4f\x6d\x09\x95\x85\x7a\xd3\x12\x65\x23\x1d\x85\x2d\xe9\x48\x19\x9e\xd6\x93\x71\x37\xa6\x61\x7d\x01\x77\xb1\x93\xb2\x4d\xb9\xd8\xc1\xa4\x53\xbe\x85\x8e\xc7\xfc\x2a\x53\xda\xad\xfc\x3a\x53\x8a\xb2\xcd\x55\xac\x62\x36\xd7\xb1\x36\xff\x6e\x2f\xa1\x39\xcd\x0c\x1b\xdd\xd0\xd8\xc8\xe1\x29\x31\x5e\xf1\x28\x4d\xe6\x5b\x97\x15\x21\xca\xc9\x86\x08\xe2\x91\x62\xae\xa5\xdd\x60\xfa\x4c\x87\xc8\xd0\xc7\x41\x82\x94\x83\x21\x41\x0a\xd9\x54\x61\x92\x95\x5c\x17\xc2\x3a\xa2\x22\x23\x46\x6c\x6a\xed\xe4\xab\xdf\x21\xe5\xd7\x22\x7d\xf7\xfe\x52\x47\xa6\xb7\x24\x4d\x3d\xbd\x49\xb3\x0b\x77\x95\xeb\x3f\x6d\x6f\xaa\xdd\x05\xf0\xc9\x05\x26\xcd\x36\x40\x9f\xa5\x9f\x4d\x67\xf6\x24\x8d\x3f\xb5\x21\xe8\xca\xe8\x85\xb2\x25\x8f\xc7\xf1\xd9\x94\x0c\x4f\x96\x02\x92\x75\x75\xa9\x6d\x8c\xd3\xa7\x31\x3e\x85\xef\xf7\x48\xf6\xa7\x38\xe5\x54\xae\xd7\x35\x80\xc1\xc4\x23\x43\xbf\x9f\xe0\x1e\xed\xc8\xb7\xdd\x11\xae\xbc\x4e\x69\x23\x1b\xe5\x7a\x8a\xac\xc8\x9a\xdc\x93\x5b\x72\x98\x85\x73\x74\x4b\xd7\x14\xee\x3e\xaf\xa4\xe8\x1c\x51\x31\x4e\xc9\x86\x8a\x71\x41\x50\x4e\x39\xbe\x42\x5b\xca\xf0\x68\x84\x0e\x34\x27\x39\xdd\x92\x2d\x3d\x48\x50\xb8\x35\xed\x63\x1c\xa0\x95\x41\x70\x2b\x11\x6c\x29\x1f\xa7\x24\xa7\x5c\x22\x88\xa8\xc0\x57\x68\x63\x10\x44\x24\xa2\x1b\xb2\xa1\x07\x09\x0a\x37\xae\x7d\x8c\x49\x6e\x26\xc7\xd6\x4c\x8e\xe8\x2a\x31\xd3\x25\x31\xd3\x45\x01\x81\x8b\x33\x08\x01\xb9\x98\xe4\x2a\xcf\x68\x84\x72\x0a\x21\x45\x16\xd9\x28\x14\xa3\x11\xda\x50\x08\x01\x75\x98\x44\x0a\x23\x48\x41\x10\x52\x54\x90\xad\x9e\x75\x5b\x39\x01\x13\x3d\x01\x49\xae\x63\x73\x4c\x22\x1d\x1b\xc1\x15\x18\x54\xda\x5b\x2e\xb4\x21\x11\x26\x65\x73\xb4\xb3\x25\x11\xc9\x27\x5b\xb2\x99\x44\x18\x93\x1d\x28\xe6\x56\xc7\xe3\xfa\x78\xbc\x3f\x1e\x6f\x31\xe4\xb7\xa7\x7f\x69\x24\xe8\x2d\xd9\x60\xb2\x9a\x97\x46\x02\xda\x92\x08\x07\x56\x6a\x84\xc9\x7d\x93\x9a\xb7\x52\xe5\x17\x59\xdb\xa9\x9b\x56\xea\x06\x93\x5b\x1b\xf3\xa6\x85\x79\x23\xa9\x68\xb4\x79\xcd\x88\xfa\xa2\xfb\xc4\x8a\x80\x7a\xc2\x39\x64\x66\x7c\xce\x1b\xff\x3e\x2a\x4d\xd9\xed\xea\xa4\xbf\xdb\x91\xea\x96\x87\x62\x1f\x71\xc7\xaf\x1d\xab\x0d\x94\x62\xb7\xc7\x58\x35\x9b\x67\x81\x7b\x41\x62\xfb\xa9\x0e\x12\x5b\x86\xbc\xd5\xc1\x2d\xb9\xf8\x92\x09\x46\xdf\x10\x08\xef\xf2\xaf\x8b\x38\xa2\xdf\x93\x03\x98\x3d\xd0\x5f\x08\x1c\xa3\x7f\x9f\xb0\x90\x6f\xb2\x24\xb2\xad\xd8\x1a\x2f\x1c\x95\x82\x52\x3e\x92\x7b\x00\x6a\xe7\xc8\x95\x41\x97\x09\x75\x73\xbb\x07\x78\x25\x81\xd4\xd5\xbc\xd3\xc4\xb5\x4c\xd4\xb7\xec\x4e\x53\xef\x65\x6a\x76\x82\x58\x99\xb2\xec\x74\x4a\xed\x89\x7f\xc0\xf5\xf5\x7a\xcd\xa7\xb9\xba\xa9\xaf\xaf\xd7\x69\x52\xa1\x71\x4e\x4b\x8a\x75\xf2\x17\x7b\x5e\x76\x8b\x12\xd6\x93\x3a\xfa\xe2\xd7\x13\x2e\x5b\x8c\x7b\x04\xb1\x60\xd6\xfd\x2c\xa4\xec\x3a\xe6\xcc\x4d\x03\x30\xfd\x57\xf6\x1e\x54\xdf\xe9\xd5\x25\xff\xad\x5b\xb4\x2e\x71\xa3\xd3\x7f\x7e\x22\x3d\x92\xe9\xe1\x34\xa7\xef\xc9\x01\xae\xc8\x3d\x65\x61\xfa\xb4\xa7\x18\x65\xa5\xa2\x9d\xc5\x30\x6d\x4f\x88\x52\xaa\x9d\xc6\x18\xd3\xa5\x45\xba\x1c\x8d\x7c\x2a\xeb\x62\x92\x8d\x1d\x89\x4c\xc3\xf8\x51\xe9\xda\xa9\xda\xab\x40\x9c\xb6\x50\x79\xc2\xcd\x8c\x2a\x38\x3a\x2d\xf8\xf0\xf1\x82\x0f\xa7\x05\x8b\x2c\xef\x29\xb7\xb1\x6d\x85\x36\xd4\x4e\x4d\x7b\x5a\x31\x81\x71\x68\x9c\xb5\xd2\xbf\x90\x83\xbb\x4b\x9b\xef\x3f\x90\x83\x2b\x8a\x78\xbd\xe6\xc5\x0f\xb6\x87\x56\xfa\xb3\x6c\x74\xb9\x5a\x75\x87\x7f\x7d\x79\x50\xdd\x61\xae\x5f\x98\xd8\x2c\xee\x10\x07\x3b\x92\x89\xbf\x04\x7a\xc7\xdc\xdd\x63\x7d\x8b\x01\x5e\x4d\x11\x59\xde\xc0\x47\x0a\xfe\xd0\x82\x3f\x60\x75\x1f\x43\x82\x57\x92\x72\xe3\x6c\x86\x7e\x90\x13\x9d\x4b\x26\x76\xb0\x6b\xf9\x01\x61\x70\x50\xb0\xd5\x56\x4e\xc8\xc9\x93\x4c\x38\xd8\xe5\xdb\x5c\x1c\x24\x17\x51\xde\xb3\xad\x43\x80\xdf\xe9\x5b\xf6\x56\x45\xfc\x24\xc3\x07\xaa\xdd\x2a\x6b\x1f\xe2\xa7\x73\x56\x34\x4e\xc5\xa9\xa8\x2f\x08\xcc\x6a\xa7\xe3\x72\x06\x91\xd0\xfe\x82\x7e\xc9\xb2\xbb\x92\xde\xda\xd7\xdf\x9a\xfd\xe7\xa3\xe2\x52\x01\xab\xb4\x43\xd6\xac\xc7\x21\x6b\xb6\x48\x97\x33\xe5\xe6\x1d\x1d\x88\x90\x1b\x29\x7d\x50\x0c\x77\x39\x6b\xff\x41\x49\x93\xd0\xf1\x65\xa9\xdf\x0c\x6b\x00\x19\x48\x93\xfa\x42\x5a\x39\x1a\x21\xe3\xcc\x94\x9a\x38\xe3\x4f\x41\x3b\x23\xaa\xdd\x7f\xb6\xbe\x3b\x2b\x80\x7d\x67\x08\x1b\x67\xa5\xcc\x21\xee\x74\x8a\x5b\x37\x36\x0c\xea\x43\x07\xf5\xe1\xbf\x87\x5a\x51\x59\x1f\xa4\x5b\x94\xd7\x71\xe6\x50\xab\x8e\x38\x1e\x5b\xb5\xeb\xd2\xd9\x46\x76\xf8\x1d\xc8\x0e\x7d\xc8\xba\x07\x69\x80\xad\x1b\x49\x5b\x15\x6e\xe7\x6d\xd3\xd1\x8e\xfa\x77\x9b\x4d\xbf\x1d\x05\xe6\x80\xea\x35\xac\xe6\x6e\x18\x5c\xb1\x8b\xe7\xe3\xb8\xbe\x7d\xe4\xe4\x7b\x87\x38\x0e\x0e\xfc\x73\x12\xd2\x47\xb8\x65\x13\xb4\xb2\xc9\x18\x99\x2f\xfe\x8d\x07\x96\x0d\xbd\xfb\xf2\x59\x89\xc9\x3d\x2b\x62\x96\x8a\x56\x0e\x1d\xe7\x60\xf2\xa0\xec\x48\xec\x44\x15\xe5\x60\xb2\x62\xdb\x38\x39\xb4\xd2\x54\x94\x83\xd5\x02\x91\xa9\xae\xe7\x65\xe3\x32\xca\xcc\x2c\x98\x52\x70\x52\x0f\x00\x92\xd1\x8e\x46\xc3\xa2\xd5\x9c\xd6\x17\x2d\x8c\x00\xdf\xe3\x12\x59\x09\xf3\x05\x26\x0d\x32\x5a\x90\x02\xae\x2c\x03\x1a\x19\x68\xb2\x3d\x56\x24\xd4\xa9\x58\xff\x1a\x2b\x23\x64\x7f\x5a\x65\xaa\x58\x29\xec\x19\x17\x4d\xe8\x24\x8e\x5a\x2d\xeb\xbb\xfe\xe5\x33\x0d\x01\x6a\x26\xed\x1f\x2d\x53\xc3\xf7\xe3\x0d\x72\xf8\x8f\x1b\xe4\xd0\x34\xc8\xe1\xff\xdf\x06\x31\xd3\x3b\xcd\x3e\xe8\x8b\x53\x27\xdc\xa2\xec\x70\x8a\x92\x76\x32\x49\x2c\x87\x7e\x2c\x87\x0e\x96\x43\x0b\xcb\xa1\x8b\x65\x3f\x95\x31\xa6\x3c\x5e\x2e\xfc\xe5\x53\x23\xcd\x00\x37\x03\x4e\xae\xa7\xc6\x99\x12\xd8\xd2\x90\xba\x2e\x53\x63\xaf\xd8\x42\xed\x36\x3e\x05\xbb\x90\xb0\x9f\xb2\x21\x8d\x7b\x41\xa8\x6b\x43\xe5\xe1\x49\x2a\x0f\x9a\xca\x43\x4d\xe5\xe1\x94\x4a\xa5\x4b\xab\x4b\x3f\xb4\xe9\x3c\x3c\x4d\xe7\xa1\x4d\xe7\xa1\x97\xce\x86\xd1\xf1\xe8\x8b\x82\xb3\xb2\xe1\x8e\xc6\x84\x8f\xf6\x40\xf5\x66\xed\x70\xd7\x96\x09\x60\x1f\x12\xb5\x61\x9a\x25\x4a\xf3\xd9\x59\x95\xb5\xff\x74\x7d\xf8\xa7\x61\x24\xb0\x52\x14\x3c\x01\xad\xb5\x08\x06\x4a\xc2\xdf\xb2\xe2\x29\x68\x50\x1f\x2a\x08\xe3\xa7\x3d\xb1\xd4\x38\x50\x15\x0d\xda\xc4\xb6\x40\x9a\x6c\xed\xe7\x11\xec\xac\xed\x94\x13\x50\x6c\x39\x0b\x6a\x73\x61\xe0\x34\x37\x68\x43\xd2\xb1\x8f\x8d\x8c\x62\x31\xe2\x56\xc6\xc3\x69\xc6\xa8\x9b\xf1\x60\x67\x04\xd5\xf4\x20\x4e\x07\xb7\x38\x51\xe2\xd6\x62\xb7\x1c\x8d\x9a\x70\xe3\x2f\xe7\x76\xb1\x5b\x52\xf9\xc7\x6c\x81\x1a\x20\xdc\x72\xe9\xaa\x85\x6d\xb2\x48\x96\xb8\x42\x45\xcb\x7b\x41\xed\x85\x40\x79\xa6\xe0\xdb\x7c\x22\x77\x94\x96\x37\x02\xe2\x94\x82\x89\x38\x84\x0b\x51\xb0\x54\x99\x59\xe0\xe0\xd1\xa8\x1b\x45\x9c\x82\x27\xe0\x9e\xd6\xc1\xb3\x92\xa6\xfc\x61\xc0\x90\x72\x7b\x71\xcb\x4a\xee\x48\x91\x2f\x6c\x45\x67\x4a\x80\x87\x94\x2d\xad\x1f\xf6\x01\x5b\x63\x13\xde\x51\x8e\x42\xb3\xd5\xc5\xc6\xcf\xa3\x71\x4e\xa4\xfc\x88\x1a\x49\x7a\x06\x5b\x93\x5a\x10\x47\x52\x8c\xd5\x57\x32\xf0\xac\x05\x4a\x0e\xe0\x0a\xe7\x0d\x4a\x31\xf9\x1e\x61\xf2\x4b\xdb\x65\xba\x9e\x1b\xf5\x4b\x12\xe0\x1e\xb6\xf6\x45\x89\xc0\x15\x65\x9f\x23\xca\x66\x16\x9a\x07\x29\x46\xa3\x9d\xfa\x40\x3f\xaa\x8e\x69\x1e\x56\x50\x4e\x29\x75\x55\x40\x76\xff\x46\x59\xfe\xd4\x3a\x8f\x7f\xca\x1d\xcc\x29\x2d\x7f\x55\x95\x80\x18\x87\xf0\x5e\x97\x58\xde\x90\xf2\x26\x4f\xcb\x79\xe9\x1f\xff\x55\xac\x06\xe9\xd0\x6f\xe1\xf9\x51\xe2\x39\xb8\x71\x79\xc3\x13\xb9\xcb\x4e\xd7\xc7\xa3\x46\xa2\xbd\x70\x7e\x84\xb4\xba\x81\x5a\x28\xff\x2a\xb7\x1b\xa4\xde\x31\x34\xda\x05\x92\xc9\x8d\x25\x5b\xf3\xbf\x4d\x0a\xdb\xd8\x96\x94\x3a\xfe\xe7\x49\xd1\x18\xf6\x92\x90\xbe\x47\x6a\xcf\x97\xc1\x4e\xae\xac\xf0\x2c\x54\xf9\x0d\x1e\xa2\xbe\x7f\x36\xf9\xe5\x50\x11\x45\xf2\x67\x7e\x90\x7b\x07\x15\x22\xa1\xbb\xe5\x82\xa9\x38\x1d\x9a\xa9\x6b\x82\x5d\xeb\x86\x46\xf0\xac\xd9\xf3\xc9\x4b\x23\x24\xa4\xe5\xb3\x72\xec\xeb\xed\x9c\xe6\x16\x71\x8f\x3f\xb0\x78\x85\x18\x8a\xd5\xb6\x5a\x95\x27\x3f\x48\x4e\xb7\x7a\x21\xdd\xd0\xad\x5e\xac\x22\xba\xed\x71\xbc\xbc\xa2\xb9\xf2\x13\x8b\xc9\x9a\x6e\x20\x28\x30\xb9\xa7\xe5\x59\xae\xc4\x67\x72\x4b\xcb\xb3\x8d\x0a\xc3\x9d\x8f\x3e\x34\xf1\x6f\x9c\xe4\x4f\xfa\x2c\x02\xd7\x05\xdd\x87\x00\x30\xd9\x7c\x2c\xc3\x6d\x4f\x86\xad\x65\x44\x77\x3c\x6e\xed\x63\x14\xcb\xaf\x73\xad\xb3\x28\xc6\x34\x33\x77\xfa\xa3\x45\xb1\x24\x7b\xf9\xd3\x32\x6f\x3b\x8c\x46\x43\x74\x98\xac\xae\xef\x8f\xc7\xc3\x64\x75\x35\xb9\x3f\x1e\xf7\x93\xf5\xf5\x2d\xfc\x5c\x4d\x6e\x75\xb3\xbe\x69\x7c\xf0\xe5\xb0\xad\x3f\xe0\x09\xc7\xe4\xae\x89\xde\x40\xf4\x1e\x4f\x04\x26\x0f\xf4\xcd\xb3\x37\xe3\xbb\x67\x77\xb3\x87\x2b\xe5\x3f\xfd\x81\xec\xe8\x22\x25\xc5\x59\xb6\xc4\x60\xd3\xb1\xb5\x8f\x02\x87\x5a\xdd\xfd\x9e\xdc\x34\x87\x80\x4f\x1c\xd7\xbd\xef\x3d\xae\x7b\x4f\x27\xdb\x8f\x1e\xd7\x9d\x02\x9c\x4d\x41\xcf\x73\x43\xdf\x8f\x3b\x29\xa4\xb7\x1d\xbb\x6d\x28\x09\xfe\x00\x1f\xd3\xe5\xac\x6e\x4d\x04\x83\xf1\xc4\xc7\xf4\xea\xaa\xb9\x65\xf2\x81\x1c\x30\xd8\x24\xd4\x46\x3c\x2a\x66\x7d\x4d\xf7\xe3\xf7\xa3\xd1\xfa\x8a\xee\xc7\x37\xc1\xea\x9a\x1e\xe4\xe7\xea\x8a\x1e\xc6\x37\x90\x6c\x65\xd8\x63\x00\xb4\x90\xee\x31\xb8\xaf\xaf\x9b\x19\x57\x95\x51\x28\xed\xe6\x28\xa5\xbb\x85\xb7\x24\x05\xdd\x2d\xfc\x25\xc9\x60\x96\xf4\x0f\xe3\xc7\x3a\x36\xe8\x07\x72\xcb\x24\x0e\x39\x2a\x9e\x65\x04\x15\x63\x1f\x3f\xcb\x30\x91\x40\x6f\xd3\x88\xef\x83\xc2\x3c\x34\x05\xf3\x50\x85\x55\x4a\x5a\x29\x57\xbe\x15\xca\x48\x49\x52\xac\x6f\x04\xa3\xad\x66\x37\xb5\x12\x69\x6b\xc4\x8f\x7d\x7d\x5b\xc5\x9a\x72\x0b\x6f\x89\xc7\x8a\xb5\xd9\x6a\xa8\xad\x66\x52\xa7\x58\x0e\xbd\x58\x7c\xc0\x22\xb2\xbc\xd1\x4d\x49\x29\x56\xf9\xa7\xb5\x9f\x42\x6a\xb4\x37\xca\x8f\xd4\x4f\xb6\x07\x29\x7d\x73\xe6\xa7\x45\xbe\x9c\x6d\x20\xdf\x90\xf2\xe3\x71\x3b\x1a\x6d\x74\xf1\x94\x1a\x42\x64\x9c\xa9\x01\xa5\xed\x1a\x35\x69\x7e\x27\xcd\x5f\x1e\x8f\x7f\x40\x06\x1b\xd1\x60\xb8\xda\x8e\x46\x7f\xa9\xeb\x48\xac\x1c\x84\xe3\x4a\x18\xf5\x1f\xe2\x64\x11\x92\xad\xed\xd2\xf9\xe7\x5a\xbd\x95\xb8\xd6\x63\x4e\x6e\xef\x5b\x4e\xb3\x89\x3f\xa4\x7c\xfe\xcd\xf1\x88\xbe\xa1\x25\x17\xc6\xf5\xf4\xd7\x84\x63\x1c\x7c\x6d\x1f\x64\x7d\x6d\xf0\x12\x01\xfc\xfa\x1b\xad\x82\x33\x47\x93\xb5\x80\x41\xf2\x27\xcf\xf5\x39\xf5\x66\xdc\x6e\x61\x8e\x91\xa0\x3f\x2d\xf8\x12\xdb\x82\xaf\x72\x68\xfa\x27\x24\x4c\xf5\xf5\x41\x38\x0e\xfe\x7c\x1a\x37\xcb\x9b\x63\xb7\xfa\xba\xa9\xae\x26\x59\xe4\x76\xd3\xfc\xc5\xac\x51\xf1\x0a\x9d\x1c\x67\x48\xd1\x86\xd3\x58\xd2\x72\xfa\x88\x90\x30\x2f\x6b\xf2\xde\x49\x35\x13\x7d\x09\x7a\x22\xa5\xcf\x04\x49\x9f\x21\x31\xf6\x31\xae\xd4\x72\xfe\x37\xb8\xb8\x39\x53\x9e\x04\xd0\x4f\xfa\x8e\xb0\x9e\x58\x9c\xa8\xd9\x29\xe0\x65\x90\x80\x55\x70\xeb\x13\x07\xec\x78\x44\x3f\x2d\x8a\x25\x0c\x43\x3a\xf4\xad\x8a\xfd\x41\x5d\x04\xad\xef\xff\xd5\xf7\xc8\x85\x39\xf4\x01\xa9\x0a\x9c\x55\xfc\xac\x7c\x6b\xfd\x5b\xf5\x67\xff\x4e\xfd\xd9\x33\x41\x98\x5d\xff\xb4\xa9\x3f\xdc\xf9\x44\x3f\xb9\x65\xae\x9a\x8a\xf8\xaa\xb2\x4d\xd5\xfe\xd6\xf7\x48\xff\x4f\x27\xd7\xbb\x53\xfa\xd3\x82\xa9\x85\xaf\x9e\x98\xb2\x15\xac\x19\xa9\xe6\x61\x6a\xcd\x43\xe0\x12\xf5\xab\x54\x2a\x30\xf1\x9b\xb2\xff\xdc\x7a\x53\x55\xf1\x57\xa6\xf8\xab\xd0\xe2\x47\x4c\x85\xd9\x2b\xd3\xc6\x2b\x4e\xdd\x6c\x9d\x0d\xd5\xbc\x1b\x11\xb4\xb5\x7b\xa2\x47\xb1\x77\x69\xeb\xf5\xe0\x90\x0f\xa5\xc6\x9e\x21\x35\xf6\x0c\x85\x39\xb2\x2d\xd4\xf1\x2b\x36\x46\x49\xa2\xe3\xe3\x54\xf4\x38\x38\x9d\xe5\xd6\xc9\x78\x29\x67\xb4\x7d\x4f\x60\xa6\x8c\xed\x7d\xf7\xf2\x59\x39\x4b\xb5\x59\x44\x8a\x49\xa1\x8f\x62\x0b\x39\xe1\xed\xb3\xd3\xc6\x44\x42\xb4\xed\x0a\xe6\x39\x18\x4c\x48\xe1\x30\x24\x1e\x69\x9b\x49\x74\x60\x51\x4e\x14\x1c\x9c\x29\xb7\xac\x26\x72\xeb\xaa\x4e\xdd\x55\x7f\x42\xb6\xf0\xf9\xff\xa2\x2b\x48\x46\x0b\x23\xcd\x88\xa7\xa4\x99\xb4\x57\x9a\x49\xe9\x44\x7c\x54\x9a\x39\x05\x38\x9b\x56\x76\x2f\x89\xae\x51\x54\xbb\xd3\x0a\xf2\x2d\x82\xf1\x0a\xa3\x95\x2d\xa6\xf0\x38\x4b\x4a\xd2\x71\x07\x6d\xcf\xde\x66\x90\x55\x98\x98\xe1\x6d\x06\x77\x4e\xc4\x89\xf9\x50\x97\x06\x6b\xd2\xfe\xbd\x39\xa2\x96\xac\xa6\xeb\x2d\xaa\xe6\x4a\xa2\xde\xee\x4b\xa9\x5b\xbd\x43\xfc\x6d\x9c\x72\x56\x7c\x2d\xc7\x2b\x4f\x05\x92\x64\x7b\x84\x19\x83\x67\xdd\x2d\xb5\x3a\x21\xbe\x4a\x66\xe3\x71\xdc\x0c\x77\x95\xbc\x88\x81\x17\x98\x92\xeb\x27\x30\xb4\x2b\x8d\xb0\xa3\x55\x2f\x8c\xb2\xa4\x74\x6f\xa1\x8f\x52\x5e\x96\x20\xd8\x86\xad\x27\xda\xec\x64\x6c\x0e\xfd\x4a\x57\xfb\x84\x82\xfb\xd0\xec\x59\x13\x81\x49\x09\x57\x84\xeb\x03\xf1\xcc\x65\x91\xf2\x47\x70\x23\xb2\x1c\xc5\x67\x28\x99\xf8\x98\x94\xb5\xdf\x97\xac\xaa\xb8\xbb\x4a\xdd\x88\x0b\x16\x6e\x8e\x47\x64\x7d\xf5\x1d\x8d\xc3\xcb\xc0\x2c\xdc\x20\xbb\x1f\xd5\x5b\xba\xf0\x04\xfc\x77\xe0\x53\xa4\x13\xa1\xb5\x1a\xaf\x37\x71\x12\xc1\x3b\x83\xe0\x27\x16\x8c\x3a\xeb\x67\xa6\xbb\x47\x66\x66\x7d\xe1\x57\xd4\x3b\x1e\xc5\x15\xf5\x4e\x9d\x13\xbd\x4d\xef\x59\x12\x47\x83\x28\xde\xf2\xb4\x94\x1b\x9f\xc1\x2a\x2b\x06\x72\x1b\x4c\x06\x70\xd2\x36\xa0\x03\x67\xcc\xc7\x0e\x19\xa8\xc3\x36\xf8\x16\xc6\x78\xc9\x7e\xe7\x98\xa4\xad\x17\x8e\x89\x7e\xf0\xb8\x79\x21\x58\xbd\x18\x0c\x58\x87\x92\xd3\x9b\x17\x82\x29\x7f\x56\x10\xe6\xc2\x79\x85\x89\x19\xc3\xf1\x46\x93\x81\x72\xfd\x74\xb0\xa2\x62\x08\x1e\x10\xcc\xbb\xc2\x54\x58\x08\x4c\x94\x85\xc1\x44\xc1\xbd\xb7\x5a\xf0\x48\x8d\x18\x94\xea\x01\x53\x90\x02\x57\xad\x26\x05\xf1\x88\x76\xfb\x49\x57\x50\xa5\xd6\x0e\x28\x1a\x5a\xed\x42\x3b\x08\x95\x53\x88\x9e\x63\xcd\xf6\x83\xc7\x8d\xc3\xcc\x41\x9c\x0e\x38\x06\xab\x90\x90\x25\x09\x9c\x68\x9a\xe5\x0d\x32\xe9\xe7\x2b\xbe\x65\x07\x5e\x20\x06\xe7\x02\x72\x55\xad\x27\xa9\x44\x90\xba\x9b\x38\x92\x35\x2d\x2c\x4c\x05\xc9\xb0\xb1\x0d\x2b\x16\x59\x93\x25\x91\x59\x62\x0b\x32\x26\x09\xb6\x8c\xfc\x48\x08\xfe\x28\x6a\xa5\x72\x09\xe6\x7d\x25\x0d\xc1\x87\xe4\x78\x8c\x4b\x97\x81\xe2\x60\x6e\x9c\x60\xf0\xe8\x78\x44\xa9\x76\x7c\x87\xea\x01\xd3\x78\xc9\x80\xf7\xc3\x70\x80\x42\x23\x55\xec\x26\x13\x29\x57\x34\xe9\xa3\x51\x9d\x4d\xcf\x2d\x84\xf1\xcc\xa3\xf5\xb3\x8f\xa3\x91\x7e\x72\x4d\xd2\x56\x55\x29\x08\xa4\x72\xbd\x69\xb5\xbf\xdd\x5a\xad\x77\x39\xad\xe1\x2c\x7b\x61\x21\x96\x33\xcb\x2c\x47\x59\xd6\x69\xf9\xec\xe4\x01\xeb\xd1\x08\xf5\xbc\x6a\xcd\x91\x63\x39\x10\xfc\x5c\xeb\x29\xf7\x62\xd0\xd6\x58\x7e\x7e\x5d\x3b\x06\x84\xa7\xda\xfb\x9e\x66\x57\x8f\xad\xea\x17\x58\xcd\x9b\xab\xf5\x53\xac\xd6\x21\x61\xe0\x68\x17\x92\x4e\xf7\xc1\xdc\x0a\xbb\x71\x5a\xf2\x42\x7c\xb1\x12\xbc\x40\xf6\xbc\x05\xe3\x62\xbb\xe6\x86\xf4\x86\x32\xc9\x02\x65\x35\x90\xf8\x77\xa9\xb4\x5f\x94\x3f\x6d\x2c\x70\x47\xd3\xd7\x51\x6f\xd3\x55\x46\x4f\xcd\x6f\xf5\xb8\x55\x96\x79\x70\xe7\x89\x3a\xce\x98\x91\x98\x36\x77\x7b\xeb\x7b\xbc\xf3\x54\x71\x86\xb1\x33\x70\xc6\xa9\xab\x0f\x39\xf5\x97\x3a\xd5\xd4\x1f\xb2\x0d\x25\xdb\x38\x93\x1f\xcd\x89\x96\x8c\x82\x74\x7d\xf2\x69\xcc\x4a\x50\xd2\x9d\xb7\xfa\xc5\xa3\xbe\x78\xfa\x58\x99\xc3\x14\x54\xd2\x64\x11\x03\xa4\x0a\xd9\x69\x21\x2d\x17\xcc\xa8\xce\x76\xa7\x5d\x01\x9e\x3b\xd9\x47\xba\xc1\xd9\xb2\xfd\x04\xf8\x90\xa3\x15\x88\x93\x57\xaf\x5e\xbd\x3a\xe9\x80\x16\xe3\x10\x18\xcf\xfa\x9a\x6e\xa7\xca\x81\x17\xc0\x63\xf3\xfc\xb7\x71\xa1\x1b\x9c\x8a\x6c\xe9\x68\xb4\x6b\x46\x4b\x8a\x89\xaa\x0e\x7d\xd4\x63\x2d\xd8\xd5\xef\x62\xc3\x7b\x95\x5a\x21\xd9\xf3\xb8\xbb\x64\x62\xdb\x39\x0a\x35\xfb\xdf\x6a\xd6\x1a\x1a\x66\xbe\x35\x0c\x36\xa8\x61\x76\x6e\xb6\x13\xda\xb1\x03\x1a\x7a\xb8\x01\xd6\x29\xaa\x3b\x21\xa9\xbf\x44\xfa\xa8\x3c\x1d\x68\x8c\xe6\xd1\x16\x83\xa7\xc2\x64\x57\x73\x1f\xb3\xfe\x87\xed\x81\xab\x9d\x31\x77\x74\xac\xb6\x2d\xa9\x91\x67\xec\x5e\x80\xd7\x87\x78\x6d\x5b\x0e\xcf\xd9\xd6\x0d\x35\x33\x2e\xad\x29\x4d\xe6\x62\x42\x35\x75\x67\xd3\x40\x4b\xa7\x70\x61\x11\x35\x29\x98\x18\xf7\xd3\x94\x96\x73\x26\xe3\x37\xda\x2d\x7d\xd0\x78\xc0\x2e\xd5\x2b\x1a\x61\xed\x7f\xd2\x70\xf8\x2d\xc9\xa9\x37\xdb\xd2\xdd\x22\x5f\xce\xf2\xf1\x18\x83\x72\x70\x0f\x5e\x87\xb6\xee\x81\x52\x86\xad\xa7\xbb\xd0\x56\xb3\x7b\xc9\xc2\x67\x5b\xfa\xa8\xbe\xd4\x0b\x9a\x8a\x79\x07\x43\x9f\xd4\x03\x40\xf3\xeb\x79\x7d\x2e\x22\x77\x0a\x29\x47\x38\xa8\x63\xc8\x3e\x10\xe4\x10\xb0\x8a\xec\xd4\x3e\x1b\x6e\x4f\xd7\xe0\x72\x44\xca\x71\x6d\x1d\x34\x33\xac\x18\x8f\x15\x25\x30\x71\x64\xff\x4e\x40\xc4\x77\x82\xa4\x3a\x59\x8b\x8d\xcf\x72\xbb\xb3\x2c\x03\xff\x7a\x6f\xae\xcd\x36\x4f\xa7\x35\xb7\xf4\xb6\x49\xed\xdc\xbc\x94\x0b\x68\x62\x2d\xa0\xb2\xd3\x4d\xaf\x27\x8b\xb2\x73\x62\x16\x5a\x90\x21\xd9\xe1\x1a\xcf\x16\x96\x54\x6b\x9d\x95\xdd\xb2\xa1\x5b\xd3\x2d\x9b\xba\xe1\xfd\xaa\x79\x44\x45\xf9\x34\xd9\xf6\x0d\x2f\x55\xaf\x8f\x21\xdc\xc3\x4a\xb7\x91\x9d\x0c\x76\xbf\x4d\x09\x72\x25\xe5\xae\x14\x0c\xdb\xfc\xb8\x68\x7c\xdc\xf3\x87\x41\x8a\xb8\x6c\x78\x46\x0a\x0d\xec\x2a\xef\x96\x25\x36\xb9\xdd\x7b\x5e\x94\x70\x14\xed\xb9\x2f\xdd\x73\xa7\x03\x47\x17\x4b\x02\x02\xf4\x49\x49\x9f\x90\xa0\x15\x1a\xfd\x06\x37\x01\xcb\xc8\xaa\x42\x0f\x71\x1a\x65\x0f\xee\xaf\x7f\xd9\xf1\xe2\x80\x2b\xe2\xbf\xba\x08\xda\x02\x72\x0b\xa2\x45\x8a\x56\xf1\xc4\x69\x2c\x5a\x2e\xfd\xb9\x3a\xae\x3c\x7d\x78\x52\x65\x40\xdd\xd3\x15\xcb\x59\x25\x3c\x6c\xab\x5f\x73\xd4\x5f\x46\x98\x6b\x53\xd5\xe8\x4e\xf4\xc5\x28\xfb\xa1\xf0\xd1\x88\xab\x27\xc0\xe1\x64\x16\x9e\xf2\x06\x54\x94\x72\x53\x02\x52\x2f\x79\xd7\x86\xad\xac\x42\x82\x70\x63\xbe\x8a\xd4\xb3\x8f\x69\x53\x4e\xcb\xd0\x9d\x48\x06\xc0\x5a\x0f\x5e\x9a\x2f\x12\xd1\xb4\x5f\x47\xbd\xea\x4b\x20\x6b\xd0\x61\x51\x61\x9d\x92\x90\x5b\x7a\xba\x31\x3d\xd0\xfc\x7a\x0a\x0f\x7b\x31\xfd\x9e\xe6\x62\xba\x74\xf7\x81\xfd\x75\xc0\x64\x4f\xef\xc1\xe5\x5d\xf3\x2a\x2d\x79\x43\x6f\xe7\x7e\xe0\x91\x3b\x7a\x3b\xf7\x02\x9f\x3c\x50\x8f\xbc\x87\x7b\xb5\x0f\xd7\xf5\x63\xb8\xa3\xd1\xfb\x6b\x30\xea\x05\x87\x3c\x33\x75\x33\x9c\x1a\x87\x8a\xe4\xe1\xaa\x01\x54\x33\x7e\xb3\x78\x58\x6a\xc7\x3d\x92\x15\x5e\xe5\xb3\xf1\x78\x8b\xd7\xaa\x87\x37\x8b\x87\xf1\x76\x89\x67\x0f\x63\x9a\xd7\x57\x43\xad\xd2\x9e\xcc\xb8\x5a\xbc\x87\x8c\x72\xdb\xb9\x5e\xec\xc6\xd3\x25\x95\x51\x77\x4b\x4c\xde\x8f\x69\x54\xe3\xb2\x89\xfd\x97\x88\x78\x7f\xb5\xea\x54\x64\xb5\x78\xbf\xc4\x12\xb9\xba\x91\x19\xaf\x50\x21\x2b\x37\x7e\xb3\x24\x19\x04\xee\x96\x24\x01\x2a\xde\x2c\x49\xa9\xc9\x81\xcb\xc9\x05\xa5\xc9\x27\x4b\x97\xb5\xb8\x5b\x8e\x29\x1c\x0f\x12\x49\x4b\xbb\x26\xc5\xb5\xba\x98\xec\x51\xfa\xf0\xc9\x66\x09\x69\x59\x41\x4b\xd6\x97\x98\x37\x8b\x87\x49\xae\x3b\x22\xa6\xd9\x18\x41\xc4\xf8\x6e\x39\xc9\xf0\x33\x94\x4c\x0a\x7c\xa6\xa3\xde\x2c\x27\x05\x26\xeb\xda\x59\xad\x0e\xc5\xe3\x12\x93\x2d\x9d\x3e\x45\xbf\x2c\xb2\x26\xf8\x53\x95\x7d\xdf\x10\xb6\x5a\xbc\x9f\x44\xea\x55\xda\x72\x8c\xe0\x4b\x52\x55\xe2\x67\xa8\x98\x24\xf8\x4c\x47\xbd\x59\x4e\x12\x8c\x89\x69\xa5\x10\x5a\xa8\xda\x0d\xeb\xa1\x37\x1a\x59\x63\x21\xc4\xb2\xfa\xfb\xd1\xa8\x05\xb0\x6b\x4a\x5d\x83\x4d\x85\xfc\x0b\xe1\x49\xae\xbe\xc6\xbe\xf9\x1e\xfb\x7d\xa3\x76\xb1\x1b\xe7\xe3\xed\x52\x82\x8c\xb7\xcb\x99\xca\x51\x67\xa8\x2a\x33\xb9\xe9\xba\xaa\x24\xdb\xac\x1f\xc6\x34\xea\xed\x47\xe0\x2a\xea\xa4\xa8\x22\x29\xdb\x72\x29\xfa\xb1\xf0\xce\x21\x9a\x9b\x07\x8e\xef\x4e\x9d\x0a\x38\xec\x65\xf0\x3b\xdf\x9f\xb1\xde\x32\x10\xb6\x87\x62\x7e\x26\x2c\xc5\x14\x33\x12\x94\x52\x4c\x99\x78\x4b\x0b\xee\x96\xa2\x58\x89\x78\xcb\x71\xf3\xa4\x96\x8e\x41\xc6\xad\x36\xc9\x7a\x9d\xed\x0e\x84\xdc\x38\x98\x9d\xdd\xdc\xf1\x9c\x40\x80\x0f\x23\xc4\x65\x02\xc7\x46\x5a\x11\x63\x1e\xf0\xca\x58\x39\xc3\xfd\x78\x60\xa7\xdf\x64\xbb\xa2\x44\x20\xe7\x5e\xf9\xd3\x59\xb3\x59\x64\x74\xe1\xfc\x89\xa5\x0e\x71\xbe\xe2\xb7\x0e\x71\xde\xb1\xc2\x21\xce\x17\x79\x01\xe1\x83\x43\x9c\x3f\xed\x52\xf8\x9b\xc8\xf8\xdd\xda\x21\xce\x0d\xcf\x1d\xe2\xbc\x0f\x85\x43\x9c\xef\xb2\x7b\x87\x38\x5f\xf2\xd0\xf8\x5a\x54\x2b\x72\x4a\x17\xce\x0d\x64\x7c\x07\x56\x2b\x1f\x76\x52\xe4\xff\x89\x47\x32\xbc\xd9\xc9\xe2\x8a\x58\xa2\x62\x42\x66\x2c\x68\x79\xed\x4f\xe7\xe5\xc4\x9f\x06\x9e\x14\x06\xfd\x69\x50\x36\xe2\x07\x5c\xcb\x13\x3d\xaf\x65\x0a\xe3\x31\x7f\x87\xb5\x77\x01\x73\x08\xac\x75\xa5\xcc\x09\xb6\xb2\x85\xd2\x85\x5e\x55\x0e\x08\x2f\x6d\xbd\xe9\xad\x06\x60\x0a\xe0\x5d\x96\x8a\x4d\x07\x24\x92\x20\x19\x32\xcb\x12\xd8\xec\x38\xd8\x86\xe0\x3d\x10\x83\x36\xc8\xc6\x09\xe0\xf7\x1b\x05\x5a\xb6\x12\xdf\xaa\xc8\xa2\x15\x99\xe8\xc8\x13\x54\x5b\xab\x34\x4d\xef\xd8\xef\x92\xf4\xce\x06\x8a\xd3\x9d\x00\x77\x92\x36\xc4\x3f\x75\xcd\x91\x3d\xa4\x2d\x9c\x67\xe7\x78\xec\xb7\x72\xdc\x58\x38\x6f\x78\x98\xa5\x51\x17\xe7\xc1\x82\xf8\x6a\x97\x24\x3f\xc3\xb1\xdd\x67\xbe\xe7\xb5\xc0\x7e\xd6\x45\x77\xe0\x6c\x90\x5c\x82\x84\x73\x87\x6d\x9d\xc0\xc9\xb7\x8e\x9d\xf6\xbd\x4e\xfb\xe2\x9d\x13\x38\xdf\xbf\x6b\xa5\x3d\xd8\xa8\xa1\xbb\xab\xb8\x16\xce\xe5\x8c\x00\x16\xea\x7c\xe6\x50\xba\x9d\x27\x74\xe8\x05\x75\x72\x55\x5f\x49\x32\x8f\x57\x34\xb3\xfb\x09\x77\x43\xf8\x11\xf6\xcc\xa7\xea\x53\x26\xa5\x1d\x75\x2f\x9a\x11\x56\xac\x77\x72\x4b\x50\xe2\x4a\xdf\xf3\x7d\x8c\x98\x90\x13\x75\x66\x9c\xbc\x37\xac\x60\x34\x12\x88\x11\xc7\x7c\x3a\x84\x5b\x1f\x98\x40\xe2\x5a\x1d\xa7\x42\x9a\x09\xeb\xa4\xd2\x4a\x32\xe1\x66\xcb\x24\xa7\xa5\x1c\xa0\x72\xca\xc2\xe4\x36\x8d\xef\x10\x07\x58\x84\x9c\xb0\x71\x92\xc4\xa5\xea\x5e\xf8\x84\xc1\xa3\x66\xb2\xd8\xc0\xf4\x57\x69\x4b\x6d\xed\x90\x36\xd6\x0e\x63\x6c\xe8\x93\x53\xae\x58\x6a\x02\x7f\xfc\xf0\x5a\x7d\x37\x44\x36\xe9\xa5\x9d\xde\x08\x82\x75\x63\x17\x2d\xaf\xe3\xb7\x45\xf6\x50\xaa\xf3\x43\x70\x4b\xff\x5b\x96\xf2\xb9\x14\xe9\x61\xde\x71\x78\xd4\xd4\xc4\xab\x47\xf0\x54\x98\xa4\xc8\x82\xd2\xc7\x85\x19\x7d\x54\x15\x0d\x7c\x7e\x4e\xb6\x50\xd3\xe0\x39\xbf\x20\x9b\x6c\x57\x04\xe7\xcf\xf9\x25\x89\xd8\x21\x78\xf9\xfc\x82\x5f\x92\xad\xac\x7e\x30\xbd\x7c\x35\xe5\xcf\xc9\x3f\x77\xac\x10\xbc\x08\x5e\xbc\x78\xf1\x9c\x3f\x27\x07\xce\x8a\xe0\x72\x7a\xf9\xea\xe2\x95\x3b\x7d\xf6\xdc\x7b\xe6\xf3\x73\xe0\xc2\x0b\x5f\x56\x50\x16\xe1\x2c\xc9\x62\x6a\x7f\x5c\xda\x1f\xbe\x67\x7f\x9d\xb7\xbe\x7c\xb9\x4d\x96\xa4\x69\x14\xcd\xc7\xa5\xfd\x21\x51\x34\x5f\xe7\xad\x2f\x9f\x38\xb2\x4a\x1a\x81\x09\x5e\x34\xc1\x97\x4d\xd0\xb7\x20\x7c\xe2\x44\xec\xa0\xb3\xe9\xd0\x79\x1d\x72\xa7\x92\x00\x18\x15\xf2\xcb\xfe\xf0\xad\xf0\xb4\x0e\xcb\x35\x29\x36\xe6\x94\x0b\x89\xa9\x06\x7a\xde\xce\x2c\x1b\xd4\x59\x2e\xe1\x36\x41\x93\xc1\x27\x8e\x6e\x78\x8d\xd7\xfa\xb2\x32\xcd\xf8\xa7\x37\x48\x29\x7e\x4c\xdb\x1b\xa4\xf7\xe6\x0d\xdf\xf6\xee\x28\x85\xfb\x30\x72\x1b\x97\x36\x7e\x79\x5b\x77\xe1\xd2\xfa\xea\x72\xfd\x00\x87\x79\x7e\x21\xd6\xae\xd7\xb5\x93\xfd\xa7\x7d\xc3\x33\x0a\x6f\x61\xeb\x67\xe0\x48\x8c\xb5\xe3\x9d\xb8\x7e\xe1\x60\x34\xaa\x6b\x4b\xa9\x15\x0f\x66\x1e\x71\xfb\xb5\x8a\x36\xa4\x95\xb4\xf0\x97\xf3\x32\x48\xcc\xb3\x1b\x9d\x37\x2e\xc2\xd3\x9b\x98\x4d\x39\xf3\x26\x18\xb4\x71\x7a\xcb\x67\xd9\xa2\x5b\xcc\xd2\xd2\xd3\x80\x90\xb7\xab\x4d\xf0\x46\xa3\x21\xe2\xca\x9d\xfc\x15\xda\x2d\xb6\x4b\x85\x01\x42\xfe\x72\x39\xde\x2d\xb6\x63\xbf\x89\x94\x61\x89\xef\x6c\x3a\x1a\x9d\x42\x5f\xd3\x10\x83\xf8\x38\x53\x76\x36\x1a\x82\x6c\xa8\x86\x80\xc3\x3a\x18\x19\x54\x7b\x62\xeb\xad\xbc\x01\xe9\xd6\x03\xe7\xb6\xcf\xc7\x6e\xc5\x5b\x2f\x13\xd9\x4f\x44\xf4\xb9\xd0\xd7\x75\x3e\xcb\x5c\x59\x56\xdb\x93\xfe\x8a\xb6\x53\xcf\xa2\x59\x4e\x57\xf0\xce\x89\x1f\xac\xae\xce\xe7\xd3\x60\xd5\x3c\x5c\x92\x3f\xa3\x51\x95\x5f\xf9\x70\x15\xda\xc7\x55\xf3\x0e\x86\x35\x30\x8e\xc7\x45\x4e\x36\xca\xda\x6c\x6d\xbd\xb2\xb1\xf0\x96\xb3\x8d\xfd\xad\x2d\xd2\xee\xe9\xfa\x59\xb6\xd8\x2c\x67\x86\xf5\x50\xba\x99\xa7\x6e\xd9\xac\xf5\x42\x4d\x81\x7a\xe9\x27\x6b\x8c\x03\xc3\x65\x6a\x68\x23\x6d\x68\xe8\x5a\xf8\x50\xd0\xc0\x59\x6a\x58\x25\x96\x6a\x48\x23\xa3\x2a\xac\xc0\x0c\x1a\xa4\x20\x93\x18\x94\x4a\x40\x51\x80\xcd\x50\x6f\x81\x9e\x3f\x6b\x03\x9f\x9d\x2b\x70\x33\x12\x46\x23\x00\xae\x85\x0f\x0d\xdd\x08\x23\x12\x9c\xe8\x0a\x35\x0b\x22\xf2\x30\xb9\xbf\xa6\x60\x24\xb1\x13\x5c\x63\xb9\xe9\x24\xca\x4a\xea\x24\x53\x7d\x93\x14\xb1\x83\x4e\x51\xd5\x55\xf1\x17\xcf\xec\x14\x58\xa4\x7c\x48\x98\x3e\xcb\x5c\x68\x0a\x83\xae\xaf\x1d\xce\x71\x0d\xab\x5b\xe3\x63\xd0\xcf\xb1\x26\x45\x36\x45\x0b\xd0\xd3\x8f\x4a\x91\x03\xb8\xe4\x6d\xbf\xba\x12\xaf\xd0\x2d\xdd\x93\x3d\x05\x64\x52\xae\x40\x70\xae\x2b\xb9\xe5\x1e\x93\xa6\xc3\x8e\x47\xbb\x4f\x70\xbc\x42\xeb\x2b\x5f\x72\xdb\xa6\x66\x33\x65\x18\x6a\x61\x9a\x59\x64\xd8\xd4\x8e\x51\xab\x83\xcf\x03\x5f\x5f\x40\xbb\x3b\xcd\x0d\xe1\xfd\xf8\xf0\x4c\x75\xc0\x18\xdd\x4d\xde\xe0\x67\x6b\x4c\x0e\xb4\x35\xbe\x5a\xad\xaf\x54\x00\x4f\x95\xbe\x7e\xd6\x57\x3e\x48\x90\x66\x20\xcd\xdb\xe3\xa8\x33\x8a\xc6\x6b\x1c\xd8\xc4\xdd\x63\xfd\x36\xcd\xde\xbc\x4d\xb3\x1f\xd2\x5b\x4b\xec\x21\xe9\x27\xdf\xa6\x81\x65\x82\xd4\xaf\x60\xe0\x99\xc5\xd3\xe4\xba\xa3\x54\x51\xb5\xf5\x11\x4a\x89\x1d\x4f\x62\x35\xa0\xbe\x63\x5b\x5e\x92\x58\x0e\x3b\x08\xea\x77\x97\x3a\xaf\x6b\x9c\xac\x27\xa7\xc9\xb0\x00\x09\xfb\x9d\x88\xde\x85\xa8\x17\x62\xe1\x2f\x89\x79\xbe\xa8\x59\x4b\x84\x8d\x7b\x09\x6f\x8a\xd6\x4f\x4d\xa9\x35\xf1\x81\x27\xf7\x5c\x76\xe1\xeb\x24\x0b\xef\xe6\xce\xe0\xb3\xdc\x09\x1c\x07\x5c\x3b\x9c\x24\x7e\xf6\xd6\x09\x9c\xcf\xbe\x71\x66\x56\x8b\x94\x57\x66\x0a\xcf\xb7\x63\x27\xf8\xec\x5d\xf0\xd9\x8d\x33\xde\x05\x32\x3e\x62\x87\x79\x78\x35\x55\x53\x52\x27\xcb\x34\xe7\xb3\xdb\xc1\x67\xd1\xc0\x19\x37\x51\x80\x46\xb6\xe6\x5c\x25\x3a\x41\x32\x1a\xc9\x48\x5d\xef\xe3\x71\xa8\x23\xe4\x70\x99\x87\x26\xe0\x7c\x76\xeb\x28\x7c\x3f\xd7\x59\x3a\x10\x7f\xf9\xec\x9f\x4e\x20\xff\x02\x8c\xf3\xd9\xcf\xce\x93\x3d\x57\x29\x2b\x0b\x5b\x23\x02\x36\x36\xc1\xa3\x91\x7e\x41\x27\x42\x9a\x41\xa0\xbf\xdb\x2d\x15\x0c\x7d\xd2\x14\xd0\x56\xa3\xa8\xad\x88\xa5\x45\xf1\x1c\x78\x47\x08\xe4\x2c\x85\x53\xce\x6d\xca\xfa\x74\xd9\xcf\xff\x63\x5d\xb6\xbe\x01\xbd\x0f\x26\x3e\x39\xc8\x3f\x92\x5e\x38\xb0\xa9\x66\x96\x06\x06\x3f\x0a\x57\xa5\x1c\x8f\x13\x7f\x48\x85\xbb\x07\xcf\x55\x7b\x3a\xf1\x09\xef\xbd\xd8\xde\xb2\x08\x84\xdb\xcf\xf1\x0a\x0d\x0d\x1a\xf5\xd4\x26\xac\x79\x89\x72\x72\x30\x1a\xb5\xbf\x11\xc6\x0a\x7f\x23\x09\xa4\x94\x37\x1e\x1b\x64\xa2\xe5\x69\xb1\xb6\xc3\x36\x37\x2d\x52\xe3\xc2\x41\xdf\x17\x87\x77\x84\x0e\x1f\xc9\xf2\xb3\xf2\x5c\x4c\x78\x7d\xab\x1c\xdc\x63\xf5\xd7\xad\xaa\xb8\x64\x3e\xaf\x8b\xac\x2c\x37\x2c\xb6\xb8\x89\xaa\x28\x6b\x8c\x4f\xc1\x2b\xde\xd3\xf4\xfe\x0b\x74\x9e\xd2\xa7\x98\xac\x69\xa7\xa7\x68\x25\xda\x90\xa5\xa1\xb6\x4d\x3c\xe1\xd0\x2b\xfd\x95\x61\xb2\x63\x6c\x68\x78\x60\x5e\x77\x23\x1d\x7a\x12\xfb\x2e\x7d\x22\x7f\x33\x6e\xe8\xd0\x97\x90\x6a\x63\xd0\x5c\x23\xea\x39\x32\x91\xdb\x82\xc6\xd3\x02\xc2\x6e\x68\xf0\x1a\x99\x5f\xa8\xdb\x29\xd9\x4e\x28\x5a\x9a\xbb\x4d\xa9\x7a\xe5\xd6\x94\x63\x35\xc3\x69\x41\x56\x17\xf5\x17\xa7\x2c\x53\x65\x99\xe6\x4a\x0f\x6f\xbb\x2a\x51\xb6\x9d\xcc\x98\x11\x31\xcb\x86\x5a\xfb\x8c\x2e\x94\x0d\xb5\x9e\x32\x8d\x07\xe5\x27\xea\x57\xdb\xe5\x99\xd7\x1c\x14\x7a\xcb\x4a\x50\x9f\xbd\x13\xd6\x76\x46\x5d\xdb\x14\xb2\x13\xc7\xb1\x84\xb5\x2c\x3d\xc1\x7e\x17\x2a\xd5\xbc\x91\xb6\x77\x6a\x43\x20\x4b\xbc\x96\x04\x8f\xb3\x19\x33\xee\x6d\x62\xe2\x61\x8d\x1f\xbe\xac\x71\x58\xc5\x2b\xd4\x87\xf8\x60\x10\x27\x6d\xc4\x87\x16\x62\x8f\x24\x16\xe2\x7a\x22\x90\x04\x57\xac\xb1\x1b\x65\x96\xa7\x26\xbb\x8f\xcd\x7d\xb9\xde\x91\x24\xcc\x95\x3b\xc7\x8c\x18\x87\xc0\x90\x69\x45\x4b\x3a\x1c\x92\x76\x38\x7d\xdd\x2d\xc1\xa3\xac\x95\xe2\xec\xda\xaa\x06\x1c\x5b\xf9\x2f\x3c\x32\xd0\xff\x77\x5f\x7a\xd8\x21\x75\x3f\x04\x7e\xcd\xe0\x6b\x34\x27\x5c\x5e\x72\xf0\x97\x41\xf7\xb4\xb0\x22\x53\x6f\xda\x1b\xfb\xfc\x24\xd6\xd9\x95\x7c\x50\x8a\x22\x0e\x85\x33\x63\x6e\x61\xb4\xdd\x29\x65\x68\x7a\x81\x49\x41\x99\x2b\x37\xda\xb3\xd6\xc2\x40\x0b\x97\x11\x1d\xb3\xcd\xb6\x3c\x15\x12\xfc\xb9\x79\x53\x87\x21\x78\x4f\x52\xe6\xcc\x30\x49\x28\x43\xe7\x1e\x86\xab\x6a\x29\x4a\xe4\xf6\x99\xa1\xe7\x98\xec\x64\x9e\x4b\x4c\xb6\xf2\xd7\x7b\x81\x49\x0e\x81\x97\x98\x6c\x20\xf0\x0a\x93\x48\x06\x7c\x4f\xee\xc1\x64\xc0\xc7\x64\x0d\x81\x29\x26\xf7\xf4\xf1\x9f\x92\x94\x60\xf1\xa8\x5a\xe9\xeb\x82\xe5\x1b\x87\xec\x8a\x38\x70\xce\x52\xfe\x70\xb6\x86\x88\x6a\x59\x91\xdb\x53\x7f\x34\x92\xab\x32\xb1\xf9\xbe\xe0\xab\x78\x4f\x98\xdc\x73\x6d\x58\x9a\x95\xaf\xb3\x6d\x9e\xa5\xca\x14\xf1\x3d\x18\xb3\xa0\xcc\xdd\x95\xfc\x46\x30\xc1\x31\x1a\xfa\xb2\x49\x74\x42\xe8\x32\x8c\x52\x32\x95\x55\x2c\xe4\xc6\xb6\xa4\x85\xdc\xb1\x35\xee\x93\xb4\x71\xeb\x1b\x65\x76\x80\xb6\x2e\x23\x8f\x60\xcc\xf5\x1d\x90\xbc\xbd\x9d\x9c\x3b\x24\x62\xc5\x5d\x30\xf4\xcc\xc0\x90\x9f\x0e\xe1\xfb\x9c\xa5\x51\xe0\x6c\x23\x87\xac\xe2\x3d\x8f\x02\xb8\x1d\x5e\x91\x53\xac\xb9\xc4\x9a\xa5\xaf\x93\x38\xbc\x0b\x7a\xfc\x24\xa1\x61\x22\xc7\x7b\x4f\xce\x5d\x87\x9e\x94\xdd\xdf\xb2\x62\x72\x5b\x30\x39\xeb\x45\x16\x38\x8e\x51\xf0\x08\x62\x37\x2a\xae\x88\xf3\x01\xda\x6b\x30\x19\x38\x84\x2d\xbc\xa5\x2b\xb2\x1f\xf3\x9c\x17\xaf\x59\xa9\x38\x59\xfd\xdc\xa1\x79\x11\x05\xf7\x91\xb0\x91\x24\xc4\xe5\xfb\x9c\xa7\x41\x42\x14\x01\xb2\x31\x94\x2f\x8a\xc7\x5f\x77\xa5\x88\x57\x87\xd7\x59\x2a\x78\x2a\x02\xa7\xcc\x59\xc8\x27\xb7\x5c\x3c\x70\x9e\x3a\x55\x5f\x73\x44\xdd\x46\x4e\x26\x9e\xd3\x60\xae\xc8\xfd\x82\x2d\xdd\x2d\xcb\x51\xdf\xe5\xcc\x53\x7c\x2b\x89\xef\x8e\x1f\x02\xee\xee\x8a\xb8\xaf\xc4\xb5\x84\x10\x6c\x1d\xc8\xf6\x6c\xb7\x1a\x36\x21\xc8\x0c\xeb\xa8\x1c\xad\x6a\x8d\xe9\x2f\x4b\xf9\xb3\xeb\x2f\x64\x53\xf0\x55\xe0\x6c\x84\xc8\xcb\xe0\xec\x4c\x8d\x58\x37\xce\xce\xd6\x5c\x88\x38\x5d\x4f\x4a\x21\x45\xdb\xc8\xdd\x46\x67\x4e\x45\x9c\x6f\x78\x92\x3b\xff\x41\x41\xad\xde\xd7\x3d\x6f\xa2\xf4\xec\x4f\xb2\x90\xc1\x45\xa3\x92\xb3\x22\xdc\xc8\x81\x01\x86\x5b\x71\x38\xf8\xf1\xad\x83\xe5\xff\x2a\x72\x90\x93\x76\xfa\x12\x93\x3d\x45\x0c\xf9\xfe\x4b\x4c\x18\xba\xbc\xc4\x98\xbc\x01\x9e\xb0\xc7\xe4\x8e\x32\xe4\x9f\x63\xf2\x40\x19\x7a\xf9\x02\x37\x92\xe3\x7b\xfb\xa9\x3c\x35\xf1\xdc\x3b\x7e\x28\x11\x87\xa5\x53\xc7\xc8\xd5\xf0\x21\xfd\xbe\xc8\x72\x5e\x88\xc3\x0d\x5c\x26\x28\xcd\xea\xfc\x31\x18\x89\x46\xc0\xa1\x58\xea\xae\xe2\x44\xf0\xc2\x1a\x16\xcd\x19\x5f\x2f\x8a\x2f\x79\x19\x16\x71\x2e\x32\xa5\x06\x77\x79\xba\xdb\xd6\xf7\x8d\xcd\x06\xbc\x3e\x69\x48\xeb\x43\x0c\x4b\x81\x7e\xd3\xf6\x63\xeb\xcf\xc4\x55\x7d\x22\x61\x54\xf7\x62\x3c\x36\xf5\x57\x5b\xc9\x1a\x62\x21\x96\x73\xfb\x23\x78\xac\x66\xe2\xb3\xe9\xfc\x3d\x62\x64\xe8\x61\x29\xfc\xbf\x69\x1b\xb9\x08\xfc\xa8\x99\xd7\x9d\x64\x5e\xb0\x08\x2c\xc4\x52\x0e\xc7\xe0\x13\x75\x2c\xe7\x1a\x20\xe2\xab\x38\xe5\x1a\x20\xe6\x25\xe2\xe4\x53\x59\x11\x93\xf8\x11\xfb\x28\x49\x6d\xc4\x07\x20\xee\x53\xed\xce\x88\x50\xdb\x2b\x73\x6c\x5b\xa9\x0b\x9c\x7d\xaf\xc6\xf6\xb0\xf3\xc7\x52\x30\xb1\x2b\xe1\x28\xba\x10\x83\x15\x17\xe1\x26\x4e\xd7\x72\xff\x94\xb6\xb8\x3c\x93\x5c\xbe\xa0\xa9\xe4\xf2\x31\x4d\xe5\xde\x38\xe9\x43\x28\x57\x39\x3b\x5f\x22\xf3\xed\x68\x29\xf3\x6d\x69\x29\xf3\xe5\xbd\xeb\x8a\x27\x57\x3d\x3b\x67\x2e\x73\x46\x74\x23\x73\xae\xe8\xc6\x5a\x57\xec\xec\x6f\x56\x2b\x1e\x0a\xdc\x32\x63\x42\x1d\xd3\xf0\xba\xe6\x0f\x12\xef\x1b\x97\x81\x23\x8c\x26\x0b\x6c\xce\xf4\x15\x1a\x53\x86\x84\x7a\x28\x5a\x3c\x52\xbb\xb0\x9f\xcd\xb0\x3e\xc7\x65\x6e\x5e\xf0\x7b\x39\x81\xf9\x5e\xa8\x33\xdd\x81\x17\x18\x87\x7b\x50\x25\x0d\x22\xd7\x00\x09\x44\x2f\x08\x34\x31\xe2\xe4\x06\x3d\x86\x2c\xdc\xc8\x45\x27\x9b\x80\x50\xe6\x90\xb0\xe0\x11\x4f\x45\xcc\x12\xd9\x23\x6c\xcb\x27\x59\x11\xaf\xe3\xd4\xa9\x64\x2f\xc3\x19\xe2\xe0\x22\x88\x57\x08\xa5\x94\xb9\x25\xf8\x43\xc8\xee\xf0\xa3\x46\xfe\x42\xfb\x5b\xeb\xde\x50\x48\x5d\xd5\xcb\x1f\x24\x99\x0a\xcb\x0b\x43\xa6\xce\xfa\x8a\xa4\xee\xaf\xa5\x6c\x31\x95\xfe\x2a\x28\x74\x09\x24\x06\xaf\x11\xb0\xf0\x6b\x60\xff\x85\x75\xa8\x39\xf0\x2f\x02\x53\xcb\x0b\x29\xbf\x7b\x94\xb9\x21\x93\x95\xf4\x31\xd9\x22\x19\xa3\x91\xfa\x2f\xd4\x31\x33\x4f\x23\xa7\x29\xbf\x14\x59\x0e\xf2\x28\xd1\x1c\x79\xb1\xf0\x89\x7f\xb1\x84\x39\x59\x2b\x9f\x7a\x4e\x31\x8d\x6b\xe7\x4d\x5c\xb6\x4e\x31\x31\xc2\x08\x57\x98\x2c\x38\x11\x4b\x4c\x1e\x0b\x5e\xe6\x59\x5a\xf2\xa0\x20\x5c\xb6\x47\xb0\x23\x71\xf9\x6d\xc6\xa2\x38\x5d\x07\x51\x55\x91\x5f\xa5\x7c\x76\x81\xc9\x6b\x10\xad\xce\x31\xf9\x5e\xf2\xe2\x0b\x4c\xde\x51\x86\x5e\x61\xf2\x65\x8f\x43\xb9\x41\x8f\xe1\xbb\x0b\xe8\xe1\xb1\xf3\xba\x00\x78\x12\x36\xdc\x95\x22\xdb\x42\x67\xbc\x2b\xd7\x70\x8d\x2e\x34\x62\xd6\x87\x58\x24\xbc\x99\x4b\xbf\xca\x21\x2a\xc8\xc2\x01\x5c\x0e\x71\x6a\x4c\x0e\x71\xda\x78\x64\x44\x0b\x8b\x63\x1d\x51\xce\x4f\xd7\xb5\xd7\x20\x17\x18\x19\x2b\x5d\xf3\xc2\xa9\x48\x71\x3c\x9e\x42\xca\x98\xaf\x0a\xb6\x56\x37\x52\xfa\x57\x49\x47\xee\x2a\x24\x55\x90\xee\x00\x51\x81\x83\x89\xa3\x06\x5d\xcd\x4a\x06\x0e\xc9\x8e\x47\xee\x46\x71\x99\x27\x4a\x29\x44\x9c\x40\xca\x4c\xee\x96\x97\x25\x5b\x73\x8c\x83\xb4\x87\xdc\xef\x25\xb9\xe0\x77\xcb\x39\xdf\x3b\x24\x0e\xb3\x34\x78\xe7\x26\xa4\xcc\xe3\x14\xa4\xc5\x46\xc2\x31\xc6\x98\x93\xc6\x82\x5b\x8b\x4f\xc2\xb8\x1e\x08\x9c\x66\x63\x39\xb9\xf4\x3e\x23\x03\xf9\x17\x2b\x8b\x7b\xe7\xd2\xfb\xcc\x51\xc6\xaf\x10\xac\x2a\x1c\x9c\x12\xc4\xe5\x6e\xaa\x22\xdf\xc1\x5a\x7e\x89\xc9\x2f\x10\xf0\x30\xf9\x4d\x0e\x97\x57\x98\x7c\x05\x52\x3b\x26\x3f\xc0\x9a\xfe\x15\x26\x6f\x65\xc2\x73\x4c\xbe\x95\xbf\x2f\x30\xf9\x02\x72\x60\xf2\x13\x0c\x34\x4c\xbe\x91\xbf\xe7\x98\xfc\x13\xe2\x7d\x4c\xfe\x08\x81\x29\x26\x3f\x42\xe0\x1c\x93\xbf\x42\xe0\x02\x93\x9f\x21\xcf\x0b\x4c\xbe\x86\xc0\x05\x26\x7f\x81\xc0\x25\x26\x7f\x90\xc3\xd4\xc3\xe4\x6f\x10\xf1\x1c\x93\x3f\xcb\x88\x97\x98\xfc\x49\xca\x12\x2f\x31\xf9\x3b\x10\xf4\x27\x4c\x38\x97\x31\xaf\x30\x11\x1c\xa2\x38\xc7\x84\x71\xfa\x94\x71\x91\x1e\xd9\x1d\xbe\xfb\x16\x86\x28\xd8\x88\x62\x82\x6a\xe6\xfa\x45\x1d\xad\x23\x7e\x82\x08\xac\x8c\x72\x21\x81\x63\x8c\x5d\xbe\xcf\x8b\xb7\x69\xbe\x13\x3f\xf0\x15\x6d\x5a\xf9\x07\xbe\x52\x52\x33\x17\xdf\x9c\x78\x22\x55\x17\x7c\x58\x2b\xaf\x1b\xee\x8a\x42\x0e\x50\x51\xab\xb4\x54\x46\x70\xfd\x1c\x26\x31\x4f\x4d\x04\x28\x6b\xc2\x22\x4b\x12\x1d\x91\x51\x31\x49\x67\x50\x18\xac\x3f\xe8\x51\x5b\xa9\x17\xe3\x4c\x99\x38\x6f\x58\x1a\x25\x1c\xca\xb2\x09\x81\x2c\x7f\x65\xc9\x8e\xa3\x7e\x6a\xdc\x7b\x99\x08\x28\x0c\x64\xab\x79\xe1\x41\x93\xbc\xc8\xf2\xd2\xcd\xd2\x37\xfb\xbc\xe0\xa5\xdc\xcf\xbe\xde\xc8\x09\x89\x11\xd7\x4d\xd0\xa6\xca\x61\x3b\x91\x39\x95\xdd\x3a\x16\x91\x7f\xe6\x87\xef\x25\x9a\x9e\x3d\x9e\x29\x8a\xef\x79\xb8\x13\x1c\xb6\xae\x33\xe7\x0d\x18\xc2\x0f\x29\xe5\x52\x90\x94\x93\xb3\xdc\xc4\x2b\xf1\x67\x19\x46\x02\x81\xea\xb4\xe0\xf7\x3c\x15\x5f\xaa\x8b\x99\x08\x43\x71\xa0\x5a\x94\x42\xee\x3b\xc9\xde\x6d\x3f\xa8\xb6\x35\xd8\xdf\x5d\x66\x04\x49\x5e\x3b\xda\x3b\x1b\x9c\xad\x89\xe3\x60\x22\xc8\x63\x5e\xf0\xc0\xb9\x52\xec\xe3\xda\x21\x79\x56\x8a\xc0\xb9\x3a\x33\x11\xaa\xfd\xd5\xa0\xf8\x62\x27\x32\xc9\xe3\x12\x2e\xf8\x8d\x7e\xb7\xb7\x6f\x27\x1b\xcb\x5e\x80\xc6\x26\x29\x55\x66\x2b\x14\x6c\xd1\x9c\x40\xf5\x3e\x5c\xa4\x7d\xc7\xd3\x1d\xb8\xfd\xae\x6f\xc0\xf2\x08\x7c\x38\xc8\x1d\xba\x6e\x29\x76\x5a\x62\x49\x4a\x38\xee\x36\xa6\x24\x46\x0c\xe4\xa9\x28\xa4\xf4\x97\x60\xb7\xe0\xd1\x2e\xe4\xb6\x4c\x47\x6a\x7b\x77\x5b\xa6\x29\x94\x34\x94\x28\x69\x28\x51\xd2\xd0\x69\xc3\xa2\x94\x6c\x6b\x56\x6e\x1e\x72\x9f\x2f\x6a\x67\x4f\x1a\xe5\x6f\x6a\x82\x91\x45\x0f\x77\xde\x25\x4e\x6b\x13\x08\xef\x69\xef\xd6\x6b\x5e\x8a\x49\x54\x64\x79\x94\x3d\xa4\x93\x24\x2e\x85\x43\xe4\xd6\x6e\xd7\xb7\xad\x73\x92\xf8\x77\x20\xd9\x70\x16\xc1\x52\xb2\x83\x3b\xca\x70\xf5\xcc\x23\xbe\xe7\xe1\xce\x1e\xd3\x5a\x28\x95\x58\xc3\x12\x58\x2b\xd5\x05\x18\xa2\x55\x83\x6f\x05\xdf\x4a\x39\xb7\x44\xb0\xe7\x64\x04\x34\x61\x41\x49\x62\xc1\xb7\x01\x33\x8c\xbd\xf3\xce\x75\x90\x51\x4a\xcb\xf1\x78\xee\x40\xbf\xae\x0b\x76\x70\x02\xe7\x61\x13\x0b\x2e\xb9\xf9\xd3\x1a\x09\xa8\xa3\xee\x50\xb9\x6b\x5b\xa7\xaa\xdc\x5d\x45\x0a\xf2\xa8\x96\xc9\x6c\x57\x26\x87\x1b\x2e\xde\xa6\x29\x2f\xbe\xf9\xf0\xee\xdb\xe0\xf1\x97\x5f\x36\x62\x9b\x04\x82\x23\x8c\x52\xf2\xc8\x92\x24\x7b\xe0\xd1\x07\xb6\x2e\x83\x85\x59\x19\x97\x15\x68\xd9\xa4\x14\xb3\xc4\x81\x90\x12\xc9\x12\x07\x8b\x5a\x8c\xad\x6f\x71\xf4\x50\x15\xc5\xf7\x27\x64\x55\xca\xf8\x5c\x8e\x62\xd5\x40\xf8\x93\x9d\x23\xe5\xf8\x1d\x0e\x90\xe5\xe2\xa2\x50\x96\x90\x8a\x43\x49\x2e\x43\x4f\xb8\x4c\xd5\xe6\xf7\xdf\x28\x91\x84\x63\xc3\xd8\xbf\xd5\x32\x0a\x34\x54\x23\x83\x7c\x19\x47\xef\xb2\x5d\x2a\x1c\x02\x3c\x30\xe8\x5e\xf9\xac\x79\x17\xdc\x28\x3c\xcd\xfc\x63\x1e\x81\xf5\x57\x27\x77\x3d\xcd\xd5\x4d\x58\x98\xa5\x00\x32\x13\xc0\xc2\x20\xac\x2f\xfb\xd6\xcc\x59\x34\x45\xa8\x0b\x34\x3d\x44\x35\xb7\x46\x89\x8d\x1c\x9c\xe2\xda\x0c\x13\x06\x29\xe4\x36\xd7\x71\xa1\xdd\xb4\xea\xf6\xe9\xa1\xf5\x67\xa5\x96\x52\xa7\x31\x41\x8b\xbe\x8a\xf4\xed\xb1\x9f\x1a\x07\x4f\x48\x60\x5f\x77\xf4\x3c\xbc\x5e\x4d\x26\xc0\x0f\x7b\x75\x65\x7f\x91\x99\x58\x14\x65\xe9\x87\x43\x2e\x45\xa7\x82\xe7\x52\x1e\xef\x83\xfd\x83\xd1\x91\x70\xdd\xec\x89\x92\x44\x9f\x12\xd6\xba\x22\x5a\xaf\x14\x65\x43\xde\x81\x9a\xe0\x14\xe6\x6f\x2e\xeb\x0e\xfe\x2c\x85\x95\x36\xe0\xf6\xca\x6c\x98\x81\x59\xbc\x2b\x70\x1d\xf2\x55\x16\xee\x4a\x29\x21\x0a\xa8\xa1\xe0\x7b\xc1\x0a\xce\x1c\x52\x64\x0f\x65\xe0\xf8\x0e\xc9\x52\xb3\x66\xd6\xf8\x4c\x04\xc9\x1b\xa7\xec\x81\xd3\x2c\xd0\x03\x04\xa1\xc1\x8d\x5c\x29\xc7\xb0\x82\xc2\x2d\xef\x94\x3f\x28\x3f\x88\x0e\x81\x47\x7d\x7f\xe0\xab\x80\xb7\x24\x83\x8a\xc0\xf6\x1d\x3e\x35\x63\x83\xf2\xbf\xcc\x1e\xd2\xc0\xde\x5c\xd6\xbb\xca\x3b\x7e\xd0\x16\xc2\xdf\x64\x5b\xae\x6d\x73\xdf\xc8\x4d\x13\x73\x53\xf0\xaf\x07\x07\x3f\xf5\x22\x9d\x3d\xa4\xb0\x80\xeb\xd5\x9a\x0e\x5b\xce\x17\xbe\x28\x8a\xec\xe1\xc7\x5c\xa3\x81\x2f\x99\xc3\x09\xe4\x2e\xe5\x7d\xce\xd3\xe3\x11\xfd\x5e\xbc\x2d\x2b\x58\x25\x46\x04\xa2\x59\x5c\xdb\x56\xb2\x6f\xca\x90\xe5\xdc\x2e\x87\xf7\x8b\x4c\xb7\xc9\xae\x90\x3c\xa1\xc2\xe4\x51\xcd\xd2\xb4\x5f\x3b\xd8\x1d\xbc\xea\x32\x66\xef\xd8\xfd\xf9\x64\x72\xc0\x84\x9e\xdc\x8a\xb4\xbe\xd7\x9b\x17\xf1\x96\x15\x07\x39\x1e\x94\xee\x98\x55\xc4\x79\xa3\x00\x1d\x75\x88\xa8\x28\x1f\x8d\xf8\xd3\x02\x09\xd2\x0a\x98\x6a\x89\x89\xa8\x50\xe6\xd6\x1a\x74\x4c\x52\x0e\x22\xf9\x4b\x4c\x0a\x15\x7a\x85\x49\xc6\x41\x07\x28\x05\x76\xf9\xe3\xab\x9f\xa9\xfc\x39\x7f\x8e\xf1\x2c\xe3\x6e\xe8\xb2\x28\x42\xef\xdc\x35\x79\xe7\x6e\xc8\x3b\x37\x24\xef\xdc\x5b\xf2\xce\x65\xe4\x9d\xbb\x95\x18\x5c\xe6\x3e\xc0\x16\x5b\xbf\x60\xf0\xa4\x08\x6f\x7c\x17\xb1\x59\x8f\xf0\x6e\x59\xde\x76\x75\x6e\xa4\x00\x3f\x8d\x5f\x14\x05\x3b\xa0\x14\x93\x8c\x7a\xb3\xec\x2a\x9d\x65\xe3\x31\x2e\x16\xd9\xd2\x52\xc1\x65\x66\x41\xeb\xdb\x0a\x20\x4e\xdb\xbb\x01\xb5\x1d\xd0\x5b\x77\x4e\x16\x12\xaa\x96\x6b\x0a\x2c\x37\x08\x22\xde\xf2\x8f\x6c\x10\xfe\x20\xd3\xd5\x95\x2e\x90\x9c\xfe\xc8\x4a\x2e\x17\xb7\x3e\x43\x67\xcd\xb7\x64\x8e\xe3\xf1\x07\x84\x11\x56\x8c\xfc\xfd\x0a\x29\x29\x93\x25\x21\xcc\xe8\x1f\xe4\x42\xdf\x83\xc1\xe7\xe7\xcf\x0c\x96\x42\xc2\x9c\x4d\x65\xbe\x38\x95\x34\x9d\x96\x6b\xf6\x29\x16\x59\x08\x8f\xbb\xe5\x20\x3c\x6b\xf6\x00\x4a\xf2\x07\x48\xb5\x6d\x88\xf8\xbf\x80\x7b\xf2\xaf\xe1\x86\x23\xec\x2e\xe2\x5e\xf8\x5a\x46\x30\x56\x1a\x1f\x69\xde\x5d\xc9\xbf\xcd\x42\x96\xc8\x8c\xf3\x1f\x5c\xe6\x8a\xdf\xdc\xf5\x8e\x97\x25\xc2\x81\xf3\xe3\x87\xd7\xff\x77\x64\x8a\x66\xf9\x56\x3e\x31\xd4\xb8\x28\x10\xd6\x77\xe3\xad\x51\x64\x38\x8d\xbe\xb2\x0c\x90\xae\x14\x36\x64\x20\x8f\xc3\x3b\x5e\x20\x58\x93\xca\xe0\x51\x64\x11\x3b\x04\xce\x8a\x95\x83\x15\x9b\x84\x2c\xe1\x69\xc4\x8a\x49\xb8\xe1\xe1\x9d\x53\x91\xdb\x9d\x10\xea\x5a\xcf\x26\x7b\x78\x2d\x19\x1f\x1c\xd6\x6c\xb2\x87\x0f\x90\x71\xe8\x55\xa4\x8c\x23\xfe\xc7\xc3\x4d\x1c\x41\x9a\x36\x6a\x71\x7e\xfe\xf9\xe7\x9f\x27\xef\xde\x4d\xbe\xfc\x72\xf0\xcd\x37\xc1\x76\x1b\x94\xa5\x43\x12\xd9\x6e\x92\x3d\xa5\x0e\x58\xc0\xfc\x3d\x4b\x79\x50\xd3\xff\x1b\xdc\xe9\x25\xda\x3d\xce\x97\x4c\xe8\xb4\x66\x54\x57\xad\x2a\x65\x29\x72\x42\xe8\xc3\x4e\xed\x9c\xb6\xbc\x01\x9e\x50\xb9\xe4\x6a\x3d\x3d\xaf\x12\x9b\x79\xa2\x98\x5b\x57\x5e\xfb\x29\x4e\x92\x1f\xd3\xed\xc7\xe4\xbd\xde\x66\x76\xf4\xbb\x08\xce\x7f\x2a\x03\x82\x98\x26\x11\x83\x78\x66\x0f\xc1\x19\x87\xf8\x21\xdc\x21\xfa\x18\x25\x50\x12\x9b\x4b\xbe\xc0\x94\x0f\x3f\xb9\xf5\xb5\x51\x0d\xe1\xc2\xd0\x47\x70\xe8\x93\x6e\x87\x3c\xfe\xae\xde\x03\xb3\xa5\x7f\x49\x34\x7d\x5a\xbc\xec\x8a\x7f\xb2\x48\x2d\xf8\x29\x77\xf5\x4e\xb9\xfd\x8f\x45\x40\x58\x46\x45\x2c\xe4\x18\xfd\x52\x33\xa6\x81\xb2\xb7\x32\x8b\x26\xd4\xd7\x66\x5a\x7d\x78\x6c\xa9\x6f\xad\xce\x73\xd5\x21\xbf\x94\x12\x9f\x94\x01\x1f\x6d\x61\xcc\x1a\xf9\x56\x74\x23\x75\x9d\xcc\x7a\x92\xa5\x4a\x14\x3c\xe5\x5c\xfc\x89\xee\x94\xf3\xd8\xc1\x15\xc9\xd2\x3f\x26\xbb\xe2\x5f\xc8\xb8\x89\x23\xae\x32\x9e\x48\x76\xb5\x7c\xbf\x30\x12\x11\xd1\xa2\xd3\x52\xae\x23\xc9\x2e\xe2\x25\x82\x23\x3d\x2c\x67\xe4\x47\xf1\x9b\xe9\xde\x30\x80\xd1\xe8\xbf\x2a\x26\xc1\x02\x31\x81\xa1\x04\x92\x92\xee\xfa\xd7\x32\xba\xaf\xdf\xeb\x05\xe5\x53\x9d\xbe\xfd\x5d\x9d\xfe\xaf\x52\xae\xc9\x7b\x9b\x3e\x3d\x32\xed\xa5\xfa\x53\x44\x6e\x4e\x89\xec\x97\xeb\x92\xff\x55\x02\x17\x08\x36\xfd\xc2\x56\xc1\x41\xa1\x1e\x67\xe9\x13\xe9\x32\xeb\x8d\xe0\x79\x49\x17\x3e\xf1\x3d\xf2\xdc\x23\xe7\x9e\x47\x5e\x79\x1e\xf1\x5f\x7a\x1e\x39\x7f\xee\x79\xe4\xc5\xd4\xf3\xc8\xd4\x97\xc1\x8b\x73\x19\x7e\xf9\xfc\x42\x02\xbc\x98\x4a\x90\xe7\xde\x85\xfc\xf1\xa7\xde\x2b\x09\x31\xbd\xf0\x5f\x49\x98\x8b\x97\xe7\x2f\x25\xd4\xb9\x7f\x79\xfe\x9c\x9f\x93\xe7\xe7\xde\x8b\x29\x3f\x5f\x12\x56\xaf\x57\x20\xf1\x74\x74\xb4\xf5\x52\xf1\x9b\x14\x7a\xf4\x65\x52\x2a\xe6\xcc\x0d\x3b\x79\x50\x4b\xb0\xc3\x41\x57\x0e\x52\xf2\x94\xd2\xb4\x76\xf3\xb6\xca\x63\x75\x0b\xb6\xb5\xc0\xf4\x2b\x23\x77\x99\x41\x78\x22\x66\x2a\x46\x2f\xf7\xaa\x74\xe8\xd7\xba\xcb\x99\x28\x0e\xb6\x5b\x01\x6a\x37\xf4\x42\x1d\xdc\xbb\xb1\x50\xd7\x75\x96\x08\xcf\x86\x88\x53\x54\xd0\x0c\xce\xe7\x10\xc6\x6e\x94\xa5\x1c\xcf\xc0\x9d\x88\x71\x4f\xa5\x95\x26\x60\x0e\x67\xd5\xfb\x2a\xae\x8d\xb1\x4f\x5b\x28\xc6\xca\x79\x66\x7f\xd3\xc4\xb8\xaa\xd4\x49\x5f\x82\x1f\xe5\xf6\x90\xa4\x34\xa9\x56\x71\xca\x92\xe4\xf0\x28\xeb\xc0\x8f\x47\xd5\x01\x99\xab\x0a\x39\x1e\x4d\x08\xe1\x1a\x32\x5e\x21\x61\xdc\xaa\x55\x95\x2d\x03\xff\x37\xda\x4b\xab\x24\xb1\x2b\x77\xb5\x45\xc9\x11\xfe\x2f\xb7\xe0\xf5\xff\x87\x2d\xf8\xef\x8b\xdb\x4f\x4b\x60\x5c\x55\x77\x48\x6d\x4d\x1c\x44\x69\x11\xe9\xa4\xf2\x5d\x38\x29\x5e\x35\x1c\xa5\x83\xa8\x8e\x37\xae\xc0\x5a\xbc\xa7\x33\xb3\xf4\x7b\xc0\xbd\xf9\xe7\xbd\xb1\x96\x3f\xc2\xc0\x71\xfe\x4b\x32\x58\xca\x61\xf5\x48\x93\x38\xe5\x9d\x33\x49\xb0\x16\x9a\x84\x59\x2a\x8a\x2c\x29\xe5\xa2\x74\xb3\xbb\xdd\x76\x4c\xc7\x6b\xa9\xa2\x7b\xde\xd2\x6b\xd8\xd5\x95\xf8\xa0\x4d\xff\xdf\x88\x7c\x50\xd4\x13\x32\x1f\x74\xf8\xa7\x96\xd6\xf8\xf7\x0b\x7d\x5a\x60\x06\x45\x69\xf0\x15\xef\x19\x45\x6d\x99\xcf\x30\xdf\x8f\x49\x6d\xa7\x2b\x06\xe2\x4f\x70\xed\x27\x4c\x05\xff\x53\xd1\xa4\xaf\x05\x5b\xcb\xc2\xa7\x5a\xf0\xd7\x1e\xe1\xa4\x27\x4b\xcc\xd5\x5e\xc4\x96\x97\x79\x1a\x49\xf1\x87\xd8\x5b\x1b\x3b\xdd\x8e\x27\x40\x68\xd0\x6d\xf4\x8e\x5e\x34\x8d\x1a\x59\xab\xde\x3a\xda\x99\x4c\xfc\x1b\x55\x74\x6f\x93\x9e\x88\xf8\xce\x0f\xbc\x74\x07\xa8\xc4\x8e\x3d\x93\x9a\x39\x6c\xc6\x7a\x6b\x84\xfc\xa7\xac\xa0\x3b\x9a\x6c\xae\xd3\x33\xa4\x94\x70\x51\xbb\x63\xe7\x1f\x63\x53\x70\xd9\xb7\xcd\xf6\x6b\x60\x24\x14\x67\xc7\x15\xb9\x2d\x6f\xea\xc9\xdb\xd7\x4e\x05\xef\x4c\x7c\xf0\x1b\xc2\xa3\xdf\x35\xf5\xed\xc1\x78\xb3\xc9\x1e\x06\xbb\x54\x67\x1f\x48\xae\x35\x50\x56\x8d\xe4\x69\xf3\xd9\x6e\x15\x6e\x64\x6e\xd9\x78\x43\x5f\xca\x36\xda\x51\x99\xd5\xd0\x1a\xfd\xa7\xc6\x33\x3f\x19\xcf\xbf\x87\x7a\x43\xfb\x7f\x40\xb6\xd7\x90\xfd\xaf\x53\x1d\xfd\xde\x2d\x42\xc9\x29\x43\xaf\x5e\x60\x12\xf2\xde\x23\xeb\x84\xdd\xf2\xa4\x04\xc3\x6b\xa5\x21\x6a\xfb\xca\xa4\xa2\xe7\x94\xe5\xd4\x2e\xc7\x29\x43\x96\xb0\xc2\xc1\x01\x9b\x9f\xac\x5d\x8b\x25\x61\x74\xe8\x35\xbb\x8e\x41\x9c\x0e\x04\x76\x7e\xf9\x25\x65\x5b\xfe\xcb\x2f\x8e\x52\x6f\x20\xae\xfd\xfc\xf4\xd8\xf8\xe4\x2c\x75\xd4\x42\x99\x56\x64\xc8\x46\x23\x87\x0c\x9c\x5e\x6b\x20\x05\x69\x0d\xd2\x84\xaf\x79\x1a\x4d\xa0\x9e\x13\x59\xa0\x53\x91\x14\x13\x87\xfe\x3b\xf9\x61\x3a\x39\x15\xf9\xdc\xf9\x9c\x88\x45\xba\x94\x01\x30\x31\x05\x2f\x31\x43\x1f\x7f\xec\x88\xf7\x63\x87\x68\x4f\x17\xbc\xe5\xa2\x88\x43\x43\xb9\x70\x4d\xab\x1d\x8f\x8e\xd3\x37\x54\x3f\x55\x85\xdb\x82\x85\x12\x93\xf3\xe8\x60\xc2\xff\x13\x04\x95\x83\x71\x85\xfa\x0e\xd7\x4e\x07\xc8\x77\x1c\xce\x27\xc8\xee\x7f\xd5\x8e\x55\x1f\x5c\x97\x70\xb4\xaa\x8d\x38\x38\x38\xc3\xac\xad\x62\x6e\xc0\xed\x92\x3a\x7c\xfd\x3d\xf6\x7b\x60\x51\x09\xe7\xba\x1d\xac\xa4\xa0\xda\x47\xa1\x30\xcf\x02\x1d\x8f\xc2\xbc\x06\x64\xee\x23\x19\xf9\x3e\xdc\xb0\x02\xfc\xc3\xcd\x0a\x9a\x36\xfa\x1d\x8e\xe7\x1f\x35\xaf\x86\xa3\xec\x0a\xe3\xc0\xa3\xb4\x31\x34\xc9\xfa\x0c\x4b\xc0\xb3\x8b\xe1\x15\x94\x52\x3e\x17\xc1\xd3\xa6\x21\xe9\x12\xd7\x86\x07\x7d\x30\x29\x26\x0b\xbe\xd4\x97\xe0\x7c\xab\xf0\xd1\xa8\x45\xfe\x68\x84\x0a\xba\x58\xe2\x96\xd1\x54\xb7\xfd\x0b\xe3\x4d\x1b\xf8\xae\xea\x81\x0f\xd9\x7a\x0d\x7e\xa1\x39\xfe\xbf\xb5\x31\xb1\xb9\xf8\x26\xdb\x25\xd1\x0f\xbc\xe4\x02\xee\xdc\x35\x9f\x6d\x11\xa1\x05\x67\x8e\xe6\x9f\xa8\xd5\x62\xf9\xaf\xa9\x6c\x4f\xad\x09\xea\x41\x01\xba\xea\x2c\xfd\x16\xa6\xf5\xbb\x6c\x57\xf2\xf7\x3b\x70\xf2\xed\x66\xe9\x37\xd9\x3d\x97\x7b\x57\xcb\xc2\xa0\x3b\x12\x13\x6a\xae\x92\x5c\xfb\xa3\x91\x1c\x2a\xf5\x33\xbb\x9f\xe0\x7e\x8f\x27\x3b\x13\xc5\x5a\xe4\x0a\x6a\xe8\x08\x92\x79\x1a\xa8\x0d\xb5\x9c\x46\xbd\xc6\x3b\x60\xdb\x0a\x26\x53\xb5\xd3\x79\xb8\x02\xad\x56\xb3\x4f\x52\xa1\xcf\xeb\xb5\x9f\xf8\xc0\xae\x81\xdc\xd7\xd6\xe3\x2d\xc5\x73\x3f\x70\x2f\xab\xe6\x64\xb6\xae\xf7\x9c\xf7\x4c\x70\x94\x62\x4d\x79\x5d\x9f\x7b\x5e\x04\xc9\xbc\xb0\x52\x60\x15\x23\xa7\xdc\x35\x16\xbc\x5f\x74\x7a\x9a\x21\x97\x70\xfa\xea\x3c\x65\x8c\x54\xf6\x6f\x21\x42\x4e\x1e\x55\x43\x05\xa1\x39\x16\x02\x11\xa2\x82\xcb\x12\x4d\xcf\xfe\x9e\x5e\xcc\x93\x89\x3f\xd8\x8a\x89\x3f\x00\x07\xad\xdb\x9d\xe0\x51\x4d\xd0\x2a\x4b\xc1\x27\x6f\xe0\x9f\x57\x70\x21\x45\xb6\xe1\x40\x0d\xa7\x81\x7e\x48\x66\x00\x77\x82\xe2\x35\x13\x59\xe1\xe6\x09\x13\x92\xa2\xa6\x0b\x9c\x77\x2c\x74\xf0\xdc\x79\xfd\xee\x4b\x27\x70\x5e\x7f\xf8\xe1\x5b\x87\x38\x83\xf1\x20\x54\xb8\x04\x4c\xeb\xc1\x76\x97\x88\x38\x4f\xb8\x46\xea\xd8\xc2\xd0\xf7\xbb\x82\x37\x02\x51\x73\xa1\x65\xcb\xff\x37\xde\x68\x01\x0f\x2f\xed\x45\xb6\xf6\x7d\x4b\x8d\x57\x3d\x47\x7e\x3b\x33\x25\x03\xd6\x6f\x8c\xa9\x6a\x8b\x6b\xea\xf3\xe9\x85\x86\x44\xfc\x0c\xbe\x5c\x91\x7d\x25\x05\x4e\x34\xc5\x63\xe7\x67\xa7\x01\xf4\x5b\x80\x7e\x1b\xf0\xef\x0d\xa0\xff\xd2\x06\xf4\x5f\xb6\x01\xdf\x58\x80\x97\x2d\xc0\xcb\x36\xe0\xf7\x16\xe0\xb4\x05\x38\x6d\x03\x7e\x68\x00\x5f\xd9\x70\xaf\xda\x60\x5f\x37\x60\xcf\x6d\xb0\xe7\x6d\xb0\x77\x0d\xd8\xb9\x0d\x76\xde\x06\xbb\xab\xc1\x1a\xf7\x85\x4d\xfa\x4c\x39\xcf\x6c\x5e\x05\xea\x26\x8a\x2b\x9f\x4f\xa6\xad\x02\x26\xdd\xb6\x3f\x38\x0d\xa4\xd7\x86\xec\x34\xfe\x6f\x0d\xa4\xff\xa2\x05\xd9\x6d\x7d\x66\x41\x5e\xb4\x21\x3b\xcd\xbf\xb2\x20\xfd\x36\x64\xa7\xfd\xf3\x06\xb2\xd5\xf3\x93\x4e\x07\xa4\x0d\x5c\xab\xe3\x27\x9d\x1e\xf8\xc7\xfe\xf6\x52\x83\xba\x9e\x55\xb4\xeb\x79\x9d\x7a\x6f\x35\xd8\x13\x9d\xa0\xd4\x93\xfa\xcd\x8c\x50\x2e\xbf\xe9\xe7\x62\xa0\xd8\xe0\x80\x0d\x94\x81\x1d\x38\x26\x1e\xc4\xe5\x80\x0d\x6e\x77\x6b\x07\x57\xe4\xff\x70\xf7\xae\xcd\x6d\xdb\xd8\xe3\xf0\xfb\xe7\x53\xd0\x68\x57\x26\x6a\x48\x96\xec\xa4\xdd\xd0\x61\xf4\x24\x71\xd2\xa6\xeb\x5c\xd6\x4e\x9a\x6d\x55\xfd\x34\x90\x08\x49\x4c\x28\x52\x25\xa1\xd8\xae\xcc\xef\xfe\x1f\x5c\x09\x92\xa0\x24\x27\x4e\xb7\xb3\xed\x4c\x2c\x92\xb8\xe3\xe0\xe0\xdc\xcf\x9c\xd8\x53\x2d\xfa\x69\x07\x97\x92\x99\x10\x46\x82\xc6\x9d\x14\x85\x7e\xdc\x99\xa1\xc8\x8f\x3b\x63\x9e\x37\x48\x45\xda\x16\x1e\xc7\xda\xa5\x2f\x41\x8c\x97\xd1\xee\x7c\x61\xf9\x31\x2a\x3f\x52\x04\x20\x10\xc6\x36\x99\x7f\x74\xff\xfe\x77\x6e\xaf\x4d\x15\xcf\xc1\x1a\x2e\xda\x35\xc2\x67\x67\x07\xf4\xbb\x04\x22\x80\x8a\x86\x2a\x5f\xc3\x8d\x5f\x23\xc8\xbb\xcd\x51\x50\x4d\x49\x52\x25\x62\x4d\xa2\xb0\x44\xe7\xdf\xb5\x67\xdd\x82\xfc\x2d\x5d\xeb\xd8\xb0\xfe\x02\xdf\x3a\x77\x9d\x23\xed\x44\x33\x27\xae\x84\x40\x14\x33\xf2\xbd\xdf\x39\xf6\x7a\x88\x42\x4e\x2d\x4e\xed\x3b\xb6\x9e\xa5\x61\xe0\xad\x75\xd6\x55\x21\x34\x96\x99\x50\xd9\x43\x29\x47\x1f\x7b\x51\x4b\x22\xea\xf5\xba\xdd\x1c\x09\x42\x44\x98\xa1\x78\x7b\xbd\x1c\xc9\xa0\x2a\xdc\xcd\x5e\x46\x44\xe1\x56\x29\xe1\xe4\x63\xa6\x4c\x54\x5e\x86\x71\x92\xea\x37\xac\xd0\x13\x9c\x11\x0f\x2c\x4a\x51\x15\x75\x5c\x16\xda\xd7\x11\x0d\x35\x5d\x78\xad\x62\xb7\x18\x61\x80\xbc\x25\xc9\x51\xd5\xd5\x1f\x5c\x5d\x17\x09\x34\xc6\xe3\x31\xe3\xa1\x93\x84\x51\x0b\x6a\xd0\x5d\x34\xc9\x32\xee\x2b\xab\x68\x52\x59\x80\xd5\x13\xee\xce\xd5\x98\xf2\x8a\xdb\x4a\x55\x36\xbc\x90\xd1\x8f\x42\x92\x12\xf9\x89\xdc\x8d\xcc\x17\x26\x1d\x8a\x1c\xa5\x37\x37\x6e\xe6\x67\x9d\x15\x9d\xb8\x10\xa2\xfd\xdf\x63\xc7\xf8\xcf\x48\x30\x22\x4c\x42\x1e\xed\xab\xe3\x98\x49\xd1\x8c\x6b\x33\xde\x71\x7e\x03\x10\xed\x8b\x9c\x12\xf5\x16\x2b\xaf\x1c\xe7\x21\x23\x26\x75\x3f\x84\xe2\x30\x52\x64\xa4\xc3\xa9\x36\x1f\x14\x64\x64\x5b\x2c\x9c\xb3\x6f\xe0\xa3\x7d\xe0\x1c\xda\x5b\x7d\x54\x14\x0b\x4d\x31\x85\x10\x9a\x20\xe0\x39\xda\xdb\x42\x17\x8c\xd9\xd0\xe5\xdb\x87\x87\xbc\x95\xad\x93\x30\x57\x4a\x2c\x3a\x27\x40\x41\x6d\x54\xc5\x78\x4c\xea\x2e\xac\x3a\x04\x68\x66\xbc\x24\x91\x22\xfd\x7d\xb3\xa3\xc5\x98\xf5\xa0\x26\xa0\xb7\x86\xa0\xc2\x65\xc4\x33\x10\xf5\x29\x71\x65\x2e\x3f\x95\xed\xc3\x03\x20\x87\x50\x87\x4d\x45\xa0\x32\xa9\xda\x06\x0a\x84\xcb\x25\xcc\x6f\xe7\x64\x41\xbc\xbd\x1e\x8f\x4a\x91\x09\xe3\xae\x52\x38\x67\x22\xbf\xac\x8b\xb0\x15\xa4\xdf\xf3\x8e\x10\x0f\xac\xce\x6a\x4e\xc3\x28\xf2\x48\x8e\x8a\x0c\xe5\x5e\x37\xcf\x73\x34\xb3\x8b\x05\x79\x48\x87\x37\x38\xc5\x0b\x21\x1b\x0c\x04\xd7\x58\x2f\x3a\x00\xdf\x90\x60\x72\x74\xaf\x0b\x10\xf8\x06\x4f\x83\x7f\x4e\xff\xc9\x7e\x4d\xc6\xf7\xc6\xf7\xc6\xec\xd7\xbd\x00\xff\x70\x2f\x60\xbf\x1e\xdc\xbb\xd7\x25\x01\x18\x72\x5e\x54\x0a\x6f\x62\xbf\x7b\xa2\x6f\xe9\x94\x64\xab\x88\x56\x77\x07\x25\x45\x6e\xb4\x7f\x60\xdf\xf7\xbb\xad\x56\x22\xe8\xea\x47\x7e\xb7\x1f\x3f\xec\xdc\xef\xb7\xe3\x76\xe7\xc8\xeb\x7a\xed\x18\xa2\xea\x85\x4c\x07\xc9\x3f\xf0\xf0\xe6\x06\x7c\xf3\xfd\xf7\xdf\x03\x58\xca\x28\xd6\x3b\x10\xa1\x42\x5c\xcc\x6e\x6d\xca\xcf\x31\x77\x41\xe6\x2a\x08\x76\x94\x95\xce\x22\xe3\x9a\x4f\x25\x35\xd7\xfe\x8d\x4d\x63\x2e\xc5\xfd\x97\x56\x6c\x19\xf7\x2d\x11\xf2\x3c\x94\xf8\x83\xa1\x8a\x5f\x79\xb2\x7a\xe8\x47\x27\xab\x03\x3f\x53\x31\x9b\xf1\x60\x32\x3c\xd1\xac\xd8\xa4\xd5\x5a\x0c\xba\xc3\x87\xab\x83\xec\xb0\xd7\xed\xf6\xdd\x44\x48\x4a\x07\x3d\x72\xfc\x1d\xfb\x82\x3e\x11\x77\x31\xe8\x0d\xe1\x10\xa2\xc9\xc1\x01\xf4\xcc\x02\x2b\x2e\x81\x1b\xaa\xeb\x43\xb1\x7e\x52\x5f\x91\xf6\x53\x6f\x9d\xab\x74\x30\x03\x3a\x34\x73\xec\xb1\x5d\xf7\x12\xe9\xfa\x42\x45\x40\xf1\x4f\x36\x80\xe1\x2b\xfd\x3c\x4a\xd8\x89\x28\x44\xa0\xd9\x2b\xfc\xca\xa5\xb0\xcf\xba\xf2\x68\x7e\x82\xdd\xde\x83\x63\x61\x67\x7c\x4f\xfc\xb9\x2f\xfe\x7c\x2f\xfe\xfc\x20\x63\xeb\x11\x74\x7d\xf7\x62\xc2\xa4\x2c\x26\x8c\xfc\xee\x49\xf4\x30\x3e\x89\x0e\x0e\x60\x32\x88\x4c\x31\x61\x74\x77\x62\xc2\x84\x8b\x09\xb9\xdc\xa5\xc1\x8a\x98\x7f\x93\xf6\x03\xdc\x90\x65\xfa\xe2\xd4\xef\x72\x17\x3b\x21\x74\xb9\x28\x72\xfc\x12\x9e\x52\x43\xfb\xcb\x68\x71\x8e\x37\x23\xca\x14\x40\xe4\x45\x29\xe5\xdb\xd0\x26\xbb\x95\x15\x79\xd4\x6d\xb5\x54\x68\x65\x63\xf6\x5d\x93\xe0\xea\x0e\x3d\x25\x8e\x2c\x24\x8a\x58\x4f\x48\xa9\x99\x78\xfe\x36\x69\x51\xf9\x26\x4a\xa8\x39\x35\x76\x1c\x79\x3a\x8f\x94\x5d\x86\xb5\xaa\x10\x11\x34\xd5\xc3\x57\xea\x0f\x64\xb3\xe9\x85\x50\x1a\x26\xeb\x7e\xcc\x49\xbe\x64\x8d\x88\x3e\x61\xab\xa5\x7e\xaa\xd2\x2e\xdc\x2a\x92\x45\x35\x09\xac\x39\x65\x3e\x85\x9e\xef\xfb\x0d\x3b\xa3\xc5\x95\x4d\xdf\x0b\x1b\x3b\xd8\x8f\x39\xbe\x08\x88\x4b\x51\x65\xe2\x10\x7a\x36\x69\x81\x91\x32\x85\x14\x2d\xf1\xcc\x28\xb0\x11\x56\x48\x75\xca\x5c\xb4\xb7\x51\x08\x2d\x8c\x88\xa6\x2f\x4e\x5b\xad\x09\x8e\x27\x24\x7a\x1c\x87\x0b\x1e\x57\xe4\x79\x8a\x19\x71\x2b\xbe\x42\x0d\xa9\x29\xf9\x63\x45\x32\x5a\x29\xe6\x96\xcd\xba\xa3\x84\x5e\x10\xfa\x38\x0e\x4e\x53\x7c\xe9\xd6\x56\x57\x2d\x06\xa9\x2f\x86\x34\xfa\x55\xd3\x28\x0b\x2c\xcd\xdd\xdf\x36\xda\xca\x18\x0c\x68\x38\xaf\xa4\x5a\xac\x43\x12\xdf\x7a\x0d\x50\x45\xde\x95\xaf\x24\x46\x2e\x2c\x8c\x55\x2e\x37\x21\xc1\x65\x70\xc9\xaf\xe1\x54\x00\x28\x3f\x27\x89\x8f\xab\x46\xc7\xac\xcc\x9e\xef\xc7\x7d\x57\x0a\x94\x1b\xf0\x48\x45\xdc\x5c\xc2\x26\x45\xb7\x30\x97\xa6\x9e\x51\x42\x21\xf4\x88\xea\x99\x5d\x1d\x35\x91\x75\x73\x1b\x26\x44\x70\x19\xc8\xc6\x53\xd4\xa7\x62\xd1\x79\x5e\x5a\x9e\x0a\xa8\x06\x33\xb5\x33\x42\xcc\xb4\x42\xdb\xce\xa0\x38\x39\x22\xf6\x58\xc5\xd0\x3a\x51\x09\x3b\xf9\x00\xac\xd6\xe1\x1b\xdd\x0b\x9b\xea\xed\x60\xa9\x5e\xc2\xa0\xba\x85\x32\xe8\x36\x8a\xfc\x3f\x13\xbd\x1b\x62\xfe\x02\xdd\xbd\x94\xbb\xa7\x0f\x81\xf9\x28\x63\xd4\x62\x57\xa5\xf1\x54\x98\x96\x1f\xac\x5b\xa9\x28\x6a\x1d\xdf\x56\x7d\x60\x95\x97\x67\xdc\x4e\x41\x9c\x6e\xa5\x20\x47\x49\x2c\x0e\xba\x98\xb0\x79\xf4\x51\xf6\x31\x5c\xbe\x8e\xf9\xa6\x72\x39\xb8\x4d\x04\xdf\xa0\xbd\xe0\x23\x07\x28\x55\x56\x1b\xea\x76\xb3\x47\xf9\x22\x68\x6d\x28\x7c\xb8\xda\xa1\xf9\x88\x2a\xba\xa5\x38\x53\x04\x49\xed\x8c\x39\x07\x03\xb3\xa3\xaa\x46\xc7\x2c\x57\xd1\xf5\x94\xd5\x62\xf5\x06\xc5\xed\x98\x37\xcb\xd1\xd1\x95\x9d\x71\xe0\x18\x0a\xfb\x1a\x4f\xf0\x28\x08\x65\xc3\x1e\x6e\x75\x90\xd1\x7f\x17\x2c\x86\xda\x77\x06\x77\xb0\x2f\xf0\x83\x24\xac\x1b\x7d\x93\xcd\x30\x22\x42\x66\x80\xd3\x6b\x90\x23\xf0\x6c\xb1\xa4\xd7\x0e\x67\x60\x1c\xd1\x08\x63\xbe\x16\x98\xa6\xe1\x15\xd8\x2b\x9a\x7e\x7b\xbd\x24\xbb\x86\x27\x01\xff\x36\x9a\x73\xc2\xcc\x49\xa6\xce\x25\x63\xfa\x1c\x7a\xbd\x24\xce\x3e\x40\x66\xab\x08\xec\x23\x47\xec\xb4\x33\x26\xce\xbe\xe8\x7b\xdf\x71\xb9\x09\x93\xf3\x89\x4c\x68\x92\xc2\x0e\xb0\xa9\xce\xaf\x09\x5a\x73\xb2\x9b\x22\xb9\x82\x1e\x2e\x1b\x4c\xc5\xc8\x60\xce\xbc\xd4\xea\xdd\x6a\x4e\x82\x8b\x70\xd8\x1c\x5e\x25\x0e\x6b\x99\x2f\x4d\x48\x02\xe7\x9a\x50\xc6\x63\x3e\x23\x36\x92\x80\x68\x3d\x10\xb9\xd7\x27\x85\x3f\x3d\xb9\x07\x19\x1b\xf9\xb1\x79\xf7\x4f\x0a\x7d\x83\x96\x74\x7f\xc9\x08\xcd\xf6\xe4\x22\xdf\xdc\x58\x60\x64\xb7\xbe\xb6\x82\xca\x89\x91\x6a\x60\xaf\xc7\x95\xa2\xa5\x6e\x1e\xfa\x3d\x72\x5c\x64\x1e\x2f\x76\x5d\xfa\xca\x8a\xdd\x05\x5e\xec\xbb\xd8\x7f\x46\x74\x91\x9a\xd4\x01\x6d\xf4\xb8\xa6\xa9\x34\x78\xa1\x56\x95\x20\x0d\x1a\x4d\x49\x0c\xf5\x9e\xe6\x36\xa5\x96\x2f\xb5\x5b\x37\x15\xad\x49\x4e\x95\xb1\x92\xfc\x86\x94\x73\xde\xab\x2d\x76\x29\xd7\x8e\x38\x5a\xbb\xcd\xb8\xcc\x11\x37\x86\xff\x63\x43\x38\x00\xce\xff\x0f\x0e\xc8\xa0\x3b\x2c\x04\x27\xbf\xc7\x60\x93\x89\x0d\x5f\x35\xa9\x7c\xe4\x51\x17\x2e\x96\x78\x22\x0c\x4d\x41\x8e\xfe\xf2\xe5\xc4\xb7\x58\x45\x69\x41\xe5\xe1\x46\x2b\x28\x0d\x12\xa0\x6b\xd7\x13\xeb\x7e\xb5\x39\xd6\xc6\x52\x6a\x30\x7c\xb7\x4b\x2e\xd3\x32\x17\xec\x1d\x8d\x45\x34\xf6\x19\x63\x51\xf9\xf8\x77\x3a\xd8\x05\xae\x7e\x17\x67\xab\xe5\x32\x49\x29\x09\x14\xc6\xe6\xd0\xc6\x71\x35\x30\x52\x18\x6d\x37\x5b\x8a\x6d\x4a\x70\x6b\xaf\x5b\x23\x53\xbd\xc7\x69\x1c\xc6\x33\x11\x9b\xea\x39\xa1\x93\x39\x09\x9c\xe2\xde\x50\xd7\x3d\x70\x04\x8c\x65\xc8\x49\xe2\xe8\xda\x91\xf1\xaa\xc2\x78\xe6\x4c\xc3\x34\xa3\x3c\x62\x95\x2a\xdb\x01\x10\xed\xa5\xdb\xc6\x68\xa2\xbc\xad\xc3\x7c\x95\xd0\x90\x9d\x18\x36\xca\x8b\x79\x72\xc9\x3a\x5e\x24\x29\x71\xe8\x1c\xc7\x0e\x40\x3d\x72\x8c\x80\xd6\xdd\xb3\x85\x64\x25\x92\xe9\xd4\xe1\x87\x44\x2a\xd2\x28\x1f\x6f\x92\x3a\x4b\x92\xf2\x37\xf1\x84\x38\x29\xc1\x59\x12\x67\x1d\x2b\x28\x8c\x38\xcd\xc6\xa9\x9b\xbd\x6e\x61\x4a\x6a\xda\x49\xb0\xab\xa1\x4d\xf1\x38\x22\x0d\x20\x37\x4e\x82\xeb\xe2\xe4\xc1\x1c\x5d\x4a\x1f\xf7\x7f\x42\x64\xb5\x7d\x4c\xb0\x10\xee\x31\x84\x54\x08\xf7\x38\xc9\x22\x76\x45\x10\x43\xb7\x21\x4b\xf9\x65\xd2\x66\x74\x6d\xb6\xab\x31\xc7\x34\x4a\x30\x6d\xa7\xea\x12\x3c\x4b\xb0\xb0\x6a\xf6\x18\x78\x20\xb0\xc8\x9c\xdf\x57\x47\xdd\xee\x91\x53\x58\xed\xf2\xc0\x65\x08\x98\x5f\x18\x98\x4b\xa1\xb0\x03\x10\x8f\x9e\x6d\x04\xef\xfc\x9f\xb4\x75\xd8\x2b\xbb\x85\xf0\xc0\xc3\xbe\x64\x0c\x10\xe9\xbc\x65\x6d\xf8\x40\x42\x8c\x3b\x26\x37\x37\xee\x98\xf8\xeb\x5c\xa6\xc7\xb8\x20\xfe\x9a\xc7\xe6\x18\xcb\xb2\x88\x5c\x2d\x53\x0f\x00\x69\x7b\xce\x7d\xc6\xa4\xfc\x57\x84\x8c\x2e\x60\x44\x3c\x2b\x0a\x6d\xaf\x97\xa3\xb7\x7f\x71\xfc\x32\x3c\x4e\x52\xfa\x22\x7e\xce\x89\x27\x8e\x4f\x54\x30\x02\x33\x68\x8c\xcd\x73\x5f\x30\x5d\x3a\x04\x86\x88\x57\x45\xfd\x53\xf6\x36\x4e\x2e\x55\x28\xf4\x22\x3a\x58\xd1\x9c\x08\x0c\x26\xbf\xc8\x54\x15\xac\xa1\x3d\xdf\x27\x42\xf4\xa5\x83\xa1\xaf\xf9\x62\x92\x1c\x22\xc0\xd5\x29\x70\x8d\x2d\x63\xe6\x92\xc3\xfa\x6b\x2e\x40\x6c\x98\xa1\x8a\x8b\xcd\xc5\xb9\xac\xc8\x53\xe1\xdc\x12\x91\xf4\xc4\x5a\xa9\x6e\x94\x1d\x8b\x62\xae\x8a\x8f\x26\xc5\x17\x32\xae\x0c\x67\x02\x4f\x0a\x1f\xae\x19\xa1\xd2\x7d\xc0\x8c\xdb\x70\xc8\x30\x61\xe8\x27\xed\xea\x7a\x08\x3f\x85\x22\x94\x97\x7e\xaf\x81\xe7\xe6\x46\xa7\x04\x30\x62\xa9\x5b\xdb\x39\x3c\xba\xdf\x85\xa8\x07\x51\xc6\xe7\xfb\xee\xfc\x4c\x44\xe8\x12\xd4\xbf\x2b\x43\x6f\x13\x14\x90\x60\xb5\xf4\x0c\xa9\xe9\x29\x7b\x11\x85\x32\x28\xb0\x21\xd3\x5f\xe2\x94\x86\x38\x1a\xe9\x70\x94\x3b\x54\xca\xe1\x89\x11\x6b\xd4\x1c\x24\x2d\x08\x5f\x71\xee\xbc\xd4\x07\x87\x78\x19\x1e\x7e\xea\x1d\xf2\xc1\x8d\xa4\xc7\x49\x26\x73\xd6\xbb\x22\xc6\x2b\x40\xa1\xd1\x01\x34\x3e\x0b\x73\xc0\x86\x8f\x19\x25\x4b\x80\x22\xf3\xab\x49\xb8\x88\xb3\x5e\x1b\x83\xd9\xbb\xf4\x17\xb1\xb4\xa0\xc8\x8d\x6a\xdc\xd2\xfd\x17\xf1\x27\x1c\x85\x81\xb3\xc4\x31\x89\x04\xc7\x07\xf6\x0f\x6c\x4b\x71\xb0\x0f\xf6\x61\x2e\x62\xab\x16\x51\x9b\x55\xc9\x22\xd0\xb9\xd6\x13\xa6\x08\xf4\x0b\xad\x61\x06\xd1\x2d\xa2\xb1\xa2\x2c\x9c\xc5\x38\xf2\xe2\x8e\xf8\x91\xc3\x0e\x9d\x93\xd8\x4e\x4f\xcb\xb0\xaa\x8c\x92\xae\x17\x0a\xa7\x2e\xc8\x56\x93\x09\xc9\x32\x11\x8f\x4f\x04\x6a\x85\xd5\x95\x20\x22\xb4\xe8\xcd\x0d\x08\xe5\x92\x28\x28\x72\x7e\xbe\x78\xfd\x0a\xa8\xa3\xc9\xb3\x1d\x08\x6e\xb0\xc8\xb7\xc0\x25\x03\x99\x9f\x9a\x8c\xf2\x44\x3f\x9e\x28\x9a\xd5\xf7\xfd\xac\x1f\xfb\x3d\x6f\xd2\x6a\x4d\x0c\x59\x96\x1b\xfb\xea\x91\x27\x13\xd0\xa7\x56\x04\x53\xe5\xb8\x8f\x33\xce\xb2\xa7\x8a\x88\x81\x6b\x4a\x85\x5e\xcf\x0b\x35\x56\x4f\x4c\x94\x1e\xe5\x88\xdf\xdb\xde\x5a\x11\x06\x5e\x81\x13\xdb\xb4\x54\x14\x99\xf4\x81\x17\xe7\x48\xe3\x8e\x5e\xbe\x01\x77\xe5\x5c\x5d\x44\x4b\xb6\x21\x04\xae\x01\xc7\x63\x7c\x8d\xc5\xfa\xc7\x78\xa1\xf0\x69\x69\x96\x22\xbe\xa9\x23\x30\x3c\xa3\xb1\xc4\xf9\x77\xc0\x01\x51\x61\x4c\x4b\x23\x29\x8b\xcf\xab\x71\x1e\x2b\xde\xc3\x46\x67\xa5\xbb\x81\x21\xf1\xa2\x11\xc3\x81\xad\x5e\x5f\x23\x7f\x71\x83\xca\x8a\x05\x02\xb5\xe1\x62\xc1\xda\xd7\x6e\x15\x51\x81\x47\xc5\x30\x7c\xa2\xcb\x5f\xab\xa3\xaa\xf5\x52\x1b\x97\xda\x78\xdb\x94\xf4\xf6\x6e\x9a\x57\x01\x03\x96\x26\x18\x4c\x37\x2e\x2a\x07\x4e\x01\x04\xa8\xdc\x28\x27\x42\x2c\xcd\x29\x5f\xa1\x0d\xe3\x51\x14\x88\xac\x2d\x35\x83\xba\xab\xda\x29\x10\x2f\x35\x84\x20\xe3\xf0\x08\xd8\x17\x62\x80\xca\xfe\x97\xee\xfa\xaf\xaa\xf6\xd0\x5d\x95\x74\x1f\xfa\x65\xec\x63\xad\x91\x4f\x95\x7b\xb5\x70\xb4\x2e\xc8\xf7\xd0\xc7\x1c\x19\x9f\x50\x55\xd6\x17\xf1\x53\x44\x71\x5f\x68\x2e\x8c\x1a\xbe\x90\xfa\xf3\x4a\xbe\xef\x87\x37\x37\xbc\x6b\x93\x8e\xfa\x1c\x4d\x40\x43\xfd\x62\xfb\x9a\x97\xe1\xab\xda\xce\xbd\xfe\x7b\xda\xce\xbd\xfe\xeb\x6c\xe7\x2c\x90\xb5\xce\x11\xe3\x61\x4c\xcf\x51\xb9\x4b\xe2\x2c\x06\x5f\x1c\xcb\x71\x29\x8f\x22\x63\x9c\x63\x9f\x4a\x59\x92\x48\x54\x96\x16\xa9\xdf\x6e\xc3\x6c\x72\x82\xc4\xca\x66\xfe\xd1\x9c\x57\xe2\x49\xf3\x27\x4c\x54\xe4\x3b\x43\x3b\x53\x61\x14\xea\xe1\x82\x4d\xed\x41\xf5\x1b\x32\x0f\x81\x57\x3b\x16\x1a\x15\x19\xfd\xc9\x57\xc8\x16\x02\xd7\x5b\x4b\x49\xfc\x4f\x21\xa3\x8e\xae\x81\x87\x11\x78\xc9\x17\xd2\xe1\x2b\x09\xbc\x38\x6f\x70\xea\xde\x65\x49\xcc\x69\x33\xcc\xb8\xb3\xf8\xa7\x5a\xf1\xf3\x87\xd0\x90\x48\x85\xe2\xb1\x30\xfc\xba\x7d\x0e\x11\x33\x38\x13\xa7\x8f\x19\x06\xe4\xc8\xae\x0f\x84\x03\x2a\xcf\x0b\xb8\xc9\x87\xb5\x7a\xc9\xb9\x8a\x65\x66\x67\x02\xf0\x5f\x9f\x97\xdf\xa4\xa6\xd0\xbb\x9b\xb1\x71\x51\x00\x1f\x9b\xc8\x46\x04\x21\xda\xab\x83\x58\xab\xb5\x57\xdf\x70\xd3\xef\x89\xdd\x88\x36\x10\xb8\x24\xa8\x5a\xcc\x3a\xfb\x77\xdc\x59\x9f\x4f\xe3\x2d\x1e\x7b\x62\x62\xb6\x2d\xfc\x45\x6e\xf1\x8b\x40\xed\x51\x8e\xaa\x9b\x65\x1b\xc8\x4e\x11\xf2\x6b\x68\x83\x37\x5c\xc4\x84\xb0\x0d\x48\xbb\xef\xa7\x9f\xe3\xb5\x9f\x5a\x9d\xf5\x19\x66\xc1\x42\x26\xd2\xe0\xb3\x6f\xa1\xe5\xec\x22\xf6\x8f\x5a\x4b\x56\x6c\x03\x7b\x6e\x38\xfa\xe6\xf2\x2a\xbd\x71\x01\x6f\xf5\xdb\xe0\x8b\xd6\x3b\x22\x68\x5d\x5e\x06\x45\x74\xde\x76\x2d\x0b\x5a\x33\x35\xe9\x1b\x45\xf3\xa5\x85\x15\x88\x19\x56\xa2\xbe\x94\xe7\x82\x4a\x2a\x87\x42\x68\x5c\x71\x54\x0f\x12\x60\x69\xb2\x18\x4e\xd5\xb3\xbd\x5e\x58\x7d\xb1\x6a\xc5\xaf\x1a\xb6\xd2\x32\xcd\x9d\x56\xad\x4a\xf1\x9a\xc7\xbe\xfc\x89\x3b\xcd\xdf\x21\x9e\xae\x06\x31\x33\xe5\xba\x48\xab\x3a\xe3\x8f\x95\xe8\x1b\x2a\x2c\xc4\x22\xf9\x44\xde\xb0\x0b\xdd\x0c\xa4\x00\xce\xf9\x7b\x87\x7f\x00\x4d\x5e\xfe\x85\xa0\xf7\xc3\xff\xa4\xa0\x97\x8d\xeb\xa9\x85\x79\x04\xa3\x8a\xbb\x0b\x8e\x83\x64\xe1\xc2\x42\xb8\x73\xfc\x3d\x54\x09\xd0\x8e\xd0\x03\x08\x73\xf4\x66\xb3\xba\xbb\x9b\xa3\x97\xd6\x12\xd2\x5e\x96\x18\x56\x35\x24\x47\xa7\x36\x3d\xf8\x1a\xb4\x80\x07\x5a\x78\xb1\x3c\x01\x08\x3c\x64\xbf\x23\xca\x7e\x3e\x62\x3f\x67\xec\xe7\x3e\xd8\xf7\x40\xeb\x8f\x55\xc2\xdf\xef\xb3\xf7\xdf\x1c\x3f\x60\xbf\x0f\xf9\xef\xab\xa3\xe7\x27\x20\x57\xb4\xa0\x9c\x0c\x81\x45\x22\x83\x41\xeb\xe1\x23\xb0\x7f\x38\x3c\x9c\x21\x9b\xbc\x87\x0e\xc8\x90\x9b\xeb\xbe\xda\xea\x0b\x28\xe5\x2e\xd2\x1b\xd0\x25\xe5\x08\x03\x07\x60\x0d\x10\xf6\x07\xc3\x72\xf8\x06\x52\x0b\xdf\x20\x75\x85\xf1\xc1\xbe\x0f\xf6\x0f\xc8\x20\x1e\x72\x61\x98\x76\x7e\x38\xf0\xb1\xd4\xe1\x22\x87\x35\x9b\x83\x1c\x8d\x88\xbf\xbe\xf6\x54\x64\xb5\x4b\x4f\x86\x60\x0b\x3c\x11\x98\x6d\x2e\x44\xf0\x0b\xef\xfb\x2e\xca\x3c\x33\x8d\x2d\x0f\xaa\x26\x57\x3b\x26\x97\xce\x39\x99\x3d\xbb\x5a\xba\xe0\xff\xdc\x41\xb7\xfd\x60\x78\x00\xdd\xc1\xf5\x65\x30\x5f\x64\xc3\x03\xf8\x2d\x80\x5c\xc1\xb3\xe0\x72\x17\x0a\x85\x33\xd6\xcd\xcd\xf1\x9e\xaf\xfd\x98\xa1\xb1\xc9\x52\x86\xa5\x43\xab\xe0\x41\x6f\xc8\xf3\x2f\x0e\x8e\x74\xcc\xfc\xf8\xbb\x11\x19\xa4\xc3\x22\x7f\x18\x0f\xb1\x66\xb0\x6a\x5d\x54\x3e\x7d\x23\x76\x6e\x1e\xe2\x1a\xd3\x16\xfb\x8c\xbf\xe2\xe2\xb2\x7f\x8c\xd8\xa2\xf9\xbe\xdf\xd5\x7e\x6b\x87\xfc\xd5\x41\xac\xb9\x97\x03\x90\x81\xa2\xd3\x73\x62\xec\xf8\x79\x07\x73\xcf\x12\x62\xc6\x16\x66\x5d\xbc\xb0\x9a\x6a\x3c\xec\xf6\x41\x9b\xd3\x56\x98\x3f\xb4\x7b\xdf\x11\x8f\xa0\xd8\x67\xed\x04\xab\x14\x4b\x7f\x2e\xb0\xc8\x00\x9b\xbd\x21\xa8\x8e\x3b\xa6\xa3\x8e\x0b\x21\x4a\xca\x9f\x8d\x2f\x61\xb5\xa2\x4c\x74\x0f\x51\x54\xfe\x32\x17\x89\xc7\x21\xca\xca\xef\x71\x76\x8a\xaf\xd9\x07\xb5\xf4\xec\xe0\x65\x7d\x5b\x6a\xbf\x0c\x81\xa0\xec\x3a\x37\x2f\x3b\xd6\x2d\x8c\xc7\x04\x81\x0c\x40\x8f\xb5\x16\x59\x5b\xdb\xb9\x7a\x68\xad\xde\x5c\x3e\xb1\x96\x4f\xb8\x36\xd7\x10\x0b\xb3\xe2\xf8\x51\xd7\x5a\x18\x6b\x87\xc6\x63\x28\x76\xc8\x03\x5d\x46\xc8\x9d\x55\xdd\xbd\xc4\x3d\xc0\x01\x45\xfb\x2c\xb0\xad\x7f\x45\x3e\x91\x14\x78\x2f\x88\x4b\xdb\x18\xe6\xe8\x31\xf1\x0f\xff\x6f\xf6\x7b\x70\xf0\x7b\xa7\x73\xe0\x77\x0e\xbe\x3d\x44\xef\x6b\x98\x03\x00\x03\x6f\x0c\x86\x27\x4a\x64\x23\x10\x2c\xc3\x50\x3d\xd8\xc9\x96\x51\x48\x5d\xd0\x2a\xec\x34\x68\x3d\x7c\x04\x11\xe1\x23\x94\x68\x58\x9b\xe8\x83\x19\x30\x96\xa0\x03\x54\x56\x5e\x8a\x53\x9a\xbd\x0f\xa9\x29\x55\x4f\x10\x4f\x35\xe0\xb3\x5b\x51\x86\xc6\xab\x84\x21\xb0\x87\x9a\x20\x10\x0d\xd6\x61\xe0\x3d\x25\x2e\xe4\x26\x21\x45\x93\x29\xd4\x39\x63\xa9\x34\x79\x8a\x2d\x59\x55\x4c\xd3\x1d\x6a\x0e\x2e\x81\xad\xd6\x63\xd2\xa1\x24\x63\xbb\xd5\xff\xaa\x52\x9c\x0f\x7f\x4f\x29\xce\x87\xbf\x4e\x8a\x43\xd0\x3a\x47\x3f\x11\x97\x1a\x00\x18\x42\x08\xb9\xd2\xf1\x82\xc0\x7c\x68\x54\xe0\xc1\x47\x58\x71\xab\xdd\x9a\x04\x5a\x9f\x5f\x15\x66\xa6\x1c\x8a\x8e\x20\x62\x48\xba\x3b\xe4\x57\x40\x6f\x88\x12\x3f\x20\x93\x24\x20\xef\xce\x5f\x68\x0a\xcc\x4d\x8b\x9b\xf9\xf7\x83\xc3\x19\x02\x0e\x80\x5a\x69\x16\x4b\x0d\x19\x03\x57\x95\x71\x4e\xa8\x47\x93\x5c\xeb\xad\xf4\x07\x91\x2e\xa2\xcb\xce\x5a\xd2\x57\xbc\xac\xd6\x51\xe7\xca\x42\x87\x93\xc4\xba\x92\x22\x96\x41\x8f\xd7\x93\xa5\x38\xfb\x31\x12\xe1\xb9\x3c\x71\x44\xfe\x24\x6e\x02\x0d\x7b\xcb\x10\xf6\x25\xb7\x12\xe6\x0c\xb4\x54\x66\x3c\x55\x4b\x58\x78\xf1\xd4\xc2\xea\x95\x9a\x80\xe4\x23\xce\x59\x8b\x7a\x58\x64\x69\xf6\x17\x15\xd7\x68\xd1\x6b\xf4\xa8\xdb\x5f\x97\xf4\x2e\xde\x3a\x57\xde\x49\x79\x8e\xfe\xb0\xef\xd1\x47\x72\xcd\xef\xf1\x42\x16\xbc\x31\x9c\x4e\x61\x0e\x6e\x20\x15\x52\xc2\xb2\x14\xb1\x1d\xd7\xdf\xe2\xda\xae\x62\x46\x6e\xbb\x54\x64\x5f\x66\x1b\xc6\x45\xcd\x6c\x83\xb8\x90\x59\xf1\x25\x91\x96\x44\x67\x86\x7c\x7a\x52\x96\x4a\xaf\xfc\xbd\xbd\x97\xc4\xcd\x60\xab\x65\x19\xb7\x71\x7b\x6f\xf0\xf5\x04\x30\x77\x33\xb5\x8e\x83\xd8\x15\x10\x85\x52\x88\x62\x97\xc3\x10\x4a\x7c\xdf\x57\x30\xd3\xef\x7a\x3d\xfe\x45\x01\x0b\x0a\xfb\x3d\xaf\xcb\x5f\x99\x90\x81\x9e\x13\x37\x82\x10\xad\x8c\xbb\x26\x76\x0d\x20\x40\x2b\x88\x18\x42\x37\x3e\x96\x20\x02\xad\x20\x8f\x60\xf7\x92\xb8\x13\xd8\x8f\x5d\x13\x0c\xd0\x84\x7d\x1a\x2a\x66\xe1\x0d\x51\x96\x7c\x2d\x00\x73\xf4\xc4\x46\x6a\x83\x4e\x47\x24\xb9\xed\xcf\xba\x1d\x81\xe2\x37\xec\x11\x61\x63\x9b\x75\x3b\x14\x8f\xfd\x1e\xfb\x21\x67\xeb\x77\xd9\x83\x31\x4f\xbf\xc7\xf3\x25\xbf\x6b\xf0\x61\xaf\x64\xd3\x22\xc2\x7a\x91\xc2\x1c\xfd\x52\xe2\x3c\x14\x22\xaf\x5b\xdc\x23\x6a\xb8\x98\x11\x86\x49\xba\x27\xf8\x21\x39\xc1\x07\x07\x90\x0e\xb0\xe9\x62\x86\x87\x96\x84\x92\x1b\x5a\xc6\xe5\x96\x63\xbf\x7b\x12\x3f\x24\x27\xf1\xc1\x01\xc4\x8c\x68\x2c\x5a\x8e\x87\x27\x54\x2d\xf6\x93\x24\x89\x08\x8e\x6d\xe8\xd8\xe4\x7c\x04\xc7\x25\xcd\xa6\x84\xc6\xf0\x57\xe2\xaf\xa7\x61\xca\xed\xd5\xa4\x8c\x13\x2d\x49\xcc\x45\xb5\xe0\x52\x58\xb2\x01\x14\xc6\x32\x7e\x9d\x56\x1e\xe7\xe8\x47\xfb\xe1\xc5\x71\x9c\x50\xbc\x45\xc0\x9d\x6c\x97\x65\xd1\xb4\x39\x84\x1a\x0d\x00\x17\xcc\x5e\x2c\x71\xec\xdd\xb3\x1a\x5f\xcd\xef\x57\x4c\xaf\x92\x98\xb6\x2f\x79\xda\x9e\xf6\x38\x89\x02\xc6\x71\x3f\x2e\x86\x0a\xec\xe2\x81\x5b\x8d\xa2\x02\x57\x9b\xac\x62\xcd\x8b\x87\xd4\x2e\x9e\xad\x8a\x81\x66\xf3\xd6\x92\x89\x5f\xdc\xec\xe0\x20\x8c\x9c\x84\xd1\x2a\x63\x1e\xff\x6d\xdf\xcc\x74\x15\x09\x9b\xb9\x6c\x9e\x5c\x1a\xcb\xf5\x35\x52\xb5\xef\x22\x71\xe3\x12\xf9\x29\x0e\xb8\x8b\xf4\xb6\x04\xec\x52\x12\xf3\x2b\x19\x48\xa7\xa2\xa1\x8a\x56\x34\x59\xa5\x19\xcf\xc7\x93\x84\x3c\x2e\xbe\x35\xf8\x6d\x11\x84\x31\xea\xbf\xec\x4c\x6d\xd1\xda\xb7\xee\x00\x15\xb9\xc7\x11\x70\x5c\x80\x0c\xfa\xbe\x83\x23\x92\x16\x87\x1e\x38\x52\x02\x2e\xc2\x6f\x6c\x4d\xda\x5e\x4e\x68\x7f\x64\x37\x3f\x5c\xa6\xa4\x30\x91\x2e\x3c\xfd\x3d\xf0\xcd\xf4\x3e\xfb\x1f\xa0\x25\x0e\xf8\x39\xef\xdd\xb7\x2e\x00\x60\x18\xb8\x19\xfc\x0b\x38\x02\x6c\x92\x9e\x35\x4c\x23\xcf\x77\x4f\x13\xef\x09\x71\xf7\x1f\x9f\x3d\x3b\x7f\x7b\xb1\xe6\x53\x67\x35\x7c\xb0\x5f\x2c\x08\x7b\x81\xf6\x41\xbe\xcf\xa0\x51\x2e\xdb\x16\xf0\xe5\x77\xe2\xd6\x6e\xa9\xf0\x70\xe7\xad\x8a\x5f\x5b\x9a\xdd\xdc\xa7\x34\x10\xb7\x1b\x39\xd7\xe4\xef\x8b\xa8\x7d\x9f\x61\x9a\x8c\x31\x61\x21\xbd\xe6\x86\x9e\x32\x7e\x44\x47\xbd\xfc\xb2\x01\x19\xf8\xf6\xd6\xa3\x5a\x2d\x16\x38\x95\x83\x32\xda\xe9\xc8\x0f\x50\xa4\xa4\x2a\xc1\xea\xa3\xae\x4d\x5a\xce\x6d\x7a\xc7\x49\x1a\x90\x94\x04\x25\xb3\x5e\xbb\xfd\xee\x9c\xe0\x66\x3b\xfc\xcd\x48\x77\xae\x26\x7e\xc6\x57\xb1\xc1\xda\x5c\x97\xe2\xa8\x69\x5b\x21\x11\xed\xc4\xb9\x08\xe3\xc9\xd6\xb2\x5c\x37\xda\x78\x5d\x18\x86\xc9\x7a\xe1\x6e\xe3\x0d\x62\x5c\x8c\x9b\x7c\x42\xb6\xdd\x4a\xf2\xd4\x7f\x62\x1c\xdd\x04\x47\x8f\xa3\x70\x16\x7b\x60\x11\x06\x41\x44\x18\xb6\xab\x92\x40\x12\x24\xbf\xc2\x8d\xf5\x8a\x41\x06\x9f\x49\x2d\x09\x9a\x09\x91\x69\xbb\x07\x72\x14\xf3\x60\xad\x29\x6c\x50\xee\x6c\x72\xde\xa8\x5d\xf8\x8b\xb6\xdd\x5f\xe1\x55\xa1\xd4\xfd\x95\x0c\x88\xbc\x19\x0e\x80\x88\x6a\xb7\x5a\x2e\x49\xca\x19\x9c\x52\xba\xe7\xab\xf6\x31\xc8\x91\x2c\xbc\x6d\x70\xa4\x23\xb0\xf9\x63\xba\x93\x0b\x8e\x08\x2a\x5b\x2f\xf8\x23\x41\x6b\xf3\x70\x97\x48\xab\x5c\x5d\xdd\x30\x47\xdf\xf2\x4c\x6f\x47\xdf\x43\xf4\x1f\xf1\xeb\x07\x88\xfe\x45\x8a\x0b\x7a\x41\x16\x09\x2c\x53\x84\xea\x7e\x9f\xcc\xc3\x28\x48\x49\xcc\xef\xf8\xcb\x14\xb3\xd9\x5f\x30\xd8\xc9\xb8\x69\x7c\x18\x14\xf7\xf9\x07\xb1\xf3\x03\xa0\xea\x00\x04\x4a\x35\x00\x02\x61\x60\x64\x04\xaf\xcf\xe8\xdb\x6a\x58\x69\x91\x5e\x5c\xe9\x27\x1d\xf5\x38\x27\x93\x8f\xe3\xe4\x4a\x05\x17\xc4\xb6\x6d\xb4\x64\x6c\xe4\x09\x54\xc3\xc0\x8b\x65\x1e\xc6\xa2\x9d\xc6\x2e\x55\xde\x4a\x7b\x6c\x78\x3e\x5c\x79\x94\x56\x19\x49\x65\x62\x4d\x10\x27\x31\x01\xf9\x86\x56\xf9\x69\x02\x68\x9a\xa4\x5e\x9c\x4b\x89\x46\x21\xd2\xfe\xf9\x7f\x52\x73\xa3\xa7\xf7\x1b\xf9\x2a\x52\xb0\x9f\xff\x9e\x52\xb0\x9f\xff\x1a\x29\x18\xe7\x16\xa9\x3f\x18\x00\xc5\x8a\x01\xa4\x79\xb1\x21\x1a\x00\xc9\xb3\xb1\x43\x29\x99\x36\xf6\x56\x70\x76\x00\x29\xd6\x6e\x38\x44\xd4\x96\xba\x86\x74\x18\x71\xc8\xcd\x97\x8c\x64\xd6\x83\xa1\x27\x72\x9b\x73\xbb\x87\xa7\xc9\x2a\xa6\x05\x3e\x30\x09\x7f\xc5\x41\xee\x75\x35\xef\xb8\xd7\x2d\x98\x46\x4e\x2a\x5b\xf2\x52\x67\x22\x2f\xf5\x4a\xe4\xa5\x5e\x34\xb1\x14\xcb\x52\xcd\x05\xab\x39\xf7\x97\xac\x66\xe0\x2f\xbf\x98\xa5\xa8\x93\x47\x41\x7b\x1a\x91\x2b\x19\x70\x34\xcd\xda\x12\xcb\xb1\x0b\xa0\x16\xfe\x47\x2e\x20\xb2\x5c\x90\xa9\xb8\x20\x93\x2d\x17\xe4\xbf\x88\xb8\x1f\x53\x54\xc2\xa6\xde\x7a\x81\xd3\x59\x18\x9f\xf3\xb0\x6c\xbd\xae\x8e\x10\xf5\x94\x61\x35\x41\x64\x85\x81\x29\xd1\x46\xa0\x2d\x87\x0c\xa0\xe6\x8d\x5c\xea\xa7\xc8\x60\x90\x56\xee\x6f\x84\x61\x4a\xed\x73\xc2\x4f\xcc\x3a\x47\x14\xed\xb1\xd3\xc6\x63\x25\x6c\xb9\x36\x13\x13\xf3\xf1\x5b\x73\x82\x97\x21\xc5\x51\xf8\x27\x43\x8b\xa9\xe0\x76\xe2\x41\x3a\xe4\xdc\x0c\xb4\x63\x57\x36\x6f\xeb\x8c\xcf\xc8\xb4\x48\x0d\xcd\xa6\xc8\x78\xcf\xb6\x71\xf7\xe9\x69\x6e\xe0\x00\x03\x77\x6f\x6e\xcf\x69\xa2\xdc\xb2\xaa\x81\x6b\x41\xb7\xf3\x20\x25\x0b\xc0\xe3\x6b\x89\xb4\xd1\x5e\xaf\xf3\x20\xcf\x91\xc8\x03\x80\x2b\xc2\x82\x6a\xbc\x62\x93\xae\x13\x8c\x73\xd6\xc9\x92\x52\x88\x94\x42\x14\x93\x69\xc2\x23\x87\xd0\xe2\x9a\xbe\x13\x19\x88\x29\x5a\xf3\x7e\x3c\xd9\x1f\xa3\x50\xa6\x61\x44\x10\x70\x1e\x39\x00\x11\xc9\x7c\xaa\xd1\x34\x8f\xb7\x18\x8e\x35\xbb\x9b\x84\x50\xd1\xde\x01\x45\x15\x61\x80\x37\x47\xac\x03\x6e\x99\x0c\x21\x94\x96\xcf\x3c\x6a\x8a\x1d\xd7\xf0\xe1\x70\x92\x43\xd3\x1f\xb1\x6f\xd5\x1d\x15\x43\x14\x60\x4b\x6a\x60\x2b\xc6\x8d\x0a\x1e\xff\xa0\xc2\xb0\x30\xf8\x43\x0a\x41\x15\xf8\xa9\xbb\x31\x47\xbb\x25\x08\x44\xb2\x5a\xb6\xc3\x78\x9a\x38\x82\xcd\x71\x38\x33\x4d\x82\x76\xb6\xd0\x41\x90\x4b\x90\xd3\xcb\x73\x84\x77\xc2\x37\x63\x1c\xcc\x88\x89\x66\x5e\x12\x37\xee\x28\xec\x09\x6d\x5b\xf2\xca\x74\xfa\xd4\x12\xb9\xe2\x6e\x80\x28\xee\xc8\x99\xda\x19\x36\xb3\x01\x75\x61\xe4\x48\xdd\x22\xfc\xfc\xaa\x06\x84\x48\x82\x91\x12\xe9\x4e\xcd\x15\xee\xb9\xa2\x86\x68\x4c\xfc\x16\x08\x01\xe6\x27\x94\x76\xa4\xbf\xeb\x2b\x2e\x09\x78\xcc\xb7\x4c\x98\x26\xc4\xd4\x3f\x75\x29\x85\x28\xb5\x83\x4f\xe1\x5c\x83\xb0\xff\xd6\xd0\x13\x1a\x57\x17\x00\x1e\x45\xda\x35\x88\x03\x5c\x9f\x1b\x7d\x73\xd8\x00\x90\xf3\x2f\x1d\xe5\xd3\x22\xa4\xfe\x69\x9a\x08\xb1\x7f\x98\x9d\x49\xcb\xd4\xc8\x5f\xeb\x5b\xcc\x80\x1d\xa4\xc0\x49\xdb\x6d\xc4\xdc\x92\xa9\xd5\x12\x7f\xe5\x6d\x5a\x79\xdc\x22\x9c\x15\x87\x74\x53\x99\xa8\x60\x57\x0e\xf2\x26\xbc\x1a\xd3\x2a\x5d\x5c\xdc\xde\x5e\x94\x23\x31\x24\x24\xdd\x4c\x52\xa4\x27\xeb\x25\xdc\x8c\x24\xa1\x3e\x76\x1f\x1c\x43\x14\x52\x1f\x77\x62\x37\xa1\x10\x45\xd4\x77\xb1\x7b\xd4\x3d\xb2\x7b\xd7\x5e\xe3\x45\xb4\xe1\x30\x09\x41\x94\x49\x2d\x27\xf1\x34\x9c\xb5\x59\x35\x90\xf3\xf8\xa5\x27\x51\x05\x1e\x9e\xf2\x22\x02\x1e\x32\x06\x0f\x11\x85\x68\x62\x87\x07\xb1\x71\x46\xec\xc2\xcf\x14\x4d\xa2\x95\x8f\x5b\x2d\xbc\x65\x3a\x3b\xd1\x14\xf3\x23\x25\x2e\x10\x13\x91\x56\x16\xbf\x5f\xe1\xae\x4d\x5c\x15\x52\x2e\xaf\x22\x57\xd4\x5b\xb1\x4b\x2d\x59\x5e\x7b\x65\x2c\x98\xb9\x3c\xc3\x0b\xf7\x6a\x4a\x56\xd4\xcd\x50\xef\x7e\xb7\x6b\xbf\xe1\x7e\xad\x05\xdc\x40\x41\x98\x31\x1a\x3e\xf0\xf6\x56\x39\x8a\xfa\xe0\x69\xb2\x0c\x49\x00\x3c\xf6\xe3\xda\xa1\x89\x33\x89\xc2\xe5\x38\xc1\x69\xd0\x20\xd9\xc8\xa8\x82\x18\x6a\x40\xcc\xde\x0a\xb1\xc5\xf2\x56\x1c\x72\xac\x49\x11\x37\x1c\x57\xe3\x80\x0a\x2f\xb4\x43\x01\x18\xcd\xa7\xb3\x79\x57\x26\xb4\x80\x68\xe1\x13\x23\xad\x44\x73\xb4\xb0\x0f\x4b\x86\xaf\x31\x70\xc6\x3a\xf7\xe8\x1d\xee\xfb\x62\x81\xe3\xa0\x7d\x16\xc6\xc4\x79\x1e\xe1\x99\x5d\x52\xd5\x2c\x38\x43\x19\x4d\xc3\x25\x7f\xb9\xd5\x07\xde\xe4\x21\x71\x63\xd0\xd3\x8d\xc1\x47\xac\xc6\xca\x85\xd8\x8b\x6c\x09\x7f\x31\x20\xc3\x42\x99\xb0\x64\x07\x76\x41\xe1\xc9\xa2\x72\xaa\xc5\x3a\xf0\x43\x3d\xbf\x2b\xdc\x2e\x41\x67\x2a\x96\x78\x37\xbc\xde\xbc\xcb\x4b\x2a\x6d\x54\x25\x9a\xb4\x62\xc9\x1c\x05\x0c\x49\x1e\x7d\x0f\xd1\xd4\x9a\xea\xe5\x33\xa1\xa7\xa4\x3a\x20\x1d\x9e\x85\x0a\x01\xbb\x54\x77\x55\x11\xa5\x2c\xa2\xf6\x3d\x80\x84\xc8\x5b\x78\x72\x40\x46\x0e\xf2\x1f\xb6\xbe\xc6\x52\x84\xc8\xf6\x6b\xc6\xf6\xcb\x2a\x1f\xd2\x0b\x89\x4b\xd3\x94\xd6\x0e\xca\x1f\x38\xf9\xa8\x4c\x05\x34\x31\x22\xad\x0b\x52\x6d\x05\xa1\xc8\x02\xf1\x61\x15\x7f\x8c\x93\xcb\x58\x7f\xd4\x24\x48\x2e\xd2\xde\x14\xfe\xa4\x8c\x30\x34\xee\xd0\x3b\x3b\x9f\xe7\xec\xb6\xe5\x74\xcd\x6d\xc4\xb3\xb5\xe3\xba\x41\x46\xfb\x05\x32\x6e\x53\xb1\x78\x6c\x6d\x1d\x03\xb4\x9e\xa7\x64\xea\x81\x6f\xc0\x81\x20\xcc\xed\x6a\xd0\x23\xc0\x65\x62\xaa\x88\xe4\x09\x3e\x43\xbc\xaa\x56\xee\x8c\xb8\xc2\xbe\xba\xb0\xf2\x57\x44\x79\x40\x3b\x71\x72\x09\x5d\x08\x11\x70\xf0\x2c\xb1\x3b\x8a\xec\xd6\xcd\x0b\xe2\xf6\xc8\xf1\x77\x66\xb8\xd9\x0e\xd1\x3d\xca\x20\xa1\x3b\x48\xe1\x9b\x70\xde\x66\xd5\xf0\xa6\x51\x73\xd0\xd9\x12\xe4\x66\xa3\xda\x41\x17\x12\x6e\xc0\x5b\x0a\x9d\xe1\x8c\x3a\xc5\x5a\x6f\x6d\xb3\xf0\xbd\x60\x8b\x04\xe0\x2e\xfc\xdf\xa6\x8b\x81\x32\xa0\x11\x1c\x95\x85\x51\x2d\xa9\x1b\xaa\x59\x69\xc0\x37\xcf\xef\xb3\xff\xcb\xb2\x52\x36\x98\xd1\x84\x44\x76\x77\xb6\x29\xd5\xe9\xf7\x04\xa9\x2e\x42\x75\x48\xf8\xb5\x3a\x1e\x15\x35\x84\x91\x8c\xac\xc0\x95\x7d\x1b\x62\xfc\xed\x84\x85\x0d\x7d\xdf\xae\x3a\x13\x85\x3d\x6b\x02\x21\xec\x53\x46\x6c\xc6\x3e\xdd\x45\xc7\x5f\xc3\xed\x6c\x33\x30\xe3\x29\x81\x08\xfb\xd2\xa4\x24\xb9\xc5\xe4\x2a\xba\xc3\xda\x0c\x8d\xef\xff\xd5\x69\xda\x02\xdf\xed\x08\x79\x5b\x60\x2c\x25\x93\x24\x0d\xbe\x18\xc8\x6e\x8b\xe7\x0c\x7e\x19\xbb\xa4\x33\x27\x38\xa2\x73\x7e\x61\x8b\x9f\x1d\x9a\xbc\x5b\x2e\x49\xfa\x14\x67\xc4\xdd\xae\x6f\xe2\xe8\x98\x21\x93\x5d\xa3\x1c\x1a\x55\x84\xbc\x66\x73\x0f\xb7\xc2\xf9\x1b\x5b\xda\x0d\xad\xe7\xea\x9f\xdc\xb0\xd6\x67\xab\xfc\xe9\xf3\x59\x8c\x54\x5c\xf8\x5f\x4a\x20\xce\x28\x5a\xeb\x80\x2a\x71\x13\x7d\x38\xb6\x8f\xb3\xa4\x6e\xe3\xf9\x97\x85\x78\x7d\x9e\x5c\xbe\x4c\x52\xb2\xe1\xb0\xcc\x8f\x95\x56\xb9\x89\xe1\x13\x8c\xc3\x55\x56\x48\x45\xb1\x92\x4b\x29\x3b\x0f\xd0\xed\x1c\x93\x85\xa3\xfe\x3d\xba\xaf\x1e\x00\x32\xc5\xa0\xc7\x3f\xdc\x67\xaf\x4c\x69\x6c\x8f\xbd\xa8\x68\x93\xc7\x38\x23\x51\x28\x34\x61\x65\xcd\x6e\x8e\xb8\xcc\x96\x1d\xdf\x3e\x88\x18\x39\xe8\x81\x45\x92\xb2\xcb\x28\x47\xd7\x56\x8a\xd9\x6e\x93\x77\xf7\xe8\x46\x62\x97\xcd\x12\xac\x0d\x1a\x6a\x23\xd4\x0b\xda\xf7\xc1\xbe\x99\xde\x82\x27\x08\xe5\x9c\xf0\x95\x7d\xfb\x45\xc6\x21\x2c\xa3\x7e\xfc\xb7\x6c\xa8\x36\x5e\x10\x63\xc6\x47\x7f\x2a\x65\x42\x81\x6b\x69\x4e\xa5\xc0\xd4\x8b\x76\x0c\x77\x46\x71\x3a\x23\xb4\xcd\x09\xe1\x9c\x07\x6a\x43\x91\x05\x43\x8d\x0a\xf0\x65\x7c\xaf\x49\x5e\x17\x61\xe2\xb6\x30\xc3\x77\x61\x50\x72\x1a\x66\x13\xd6\x1f\x09\x9c\xdd\x6c\x4b\xde\xf2\xf9\xe9\xc2\xbb\x98\x84\x54\x69\x30\xbc\x13\x0d\x66\x85\xd8\x02\xa9\x5e\x53\x97\x0e\xf0\x90\xf1\xda\x72\x02\x62\x48\x10\x22\xfe\x3e\xcc\x4e\xd3\x64\xb9\x24\xc1\x36\x02\x8e\x61\x81\xf7\x42\x80\x0d\x04\x25\x9c\x23\x20\xeb\x5a\x63\xd8\xd6\xc7\x20\x89\x22\x89\xc3\x3d\x99\x70\xfa\x99\xfd\x40\x28\x87\x69\xb6\x8c\x32\xfb\x88\xe8\x4c\xbd\x8a\xad\x4e\x2e\xeb\x1c\xc5\xfe\x5e\x17\xa5\xfe\x5e\x0f\x25\x52\x84\x73\x42\xd3\x6b\xad\x75\x0e\x51\xe4\x93\x81\xd0\x87\x77\x42\x4a\x52\x4c\x93\x74\xe8\xc2\x93\x3d\x37\xf6\xdd\xd0\x8f\x3a\x31\xb9\xa2\x2e\x84\x9d\x20\x89\x09\x3c\x61\xcd\x89\xd6\x33\x3f\x14\xe7\xb4\x93\x4d\x52\xbc\x24\x6f\x92\x24\x3a\xc1\x83\x6c\x78\x73\xe3\xb2\x3f\xfe\x9a\x26\x14\x47\x5e\x57\x65\x74\xee\xe6\x10\xb1\x0f\x1d\xfe\xfe\xe0\x40\x3c\x88\x8f\x07\x07\x79\x2e\x82\x00\x4d\xe1\x3a\x65\x43\x4e\xfc\x69\x3e\x0d\x63\x1c\x45\xd7\x6b\x36\xe0\x58\xe4\xe4\xf6\xfd\xa8\x23\xe0\xe0\xe6\x46\xfd\x72\xa1\x2e\x19\x4e\xdd\x54\x86\x68\x4a\x72\xae\x0b\x9e\xb0\xc6\x56\x6c\xfe\x0b\xdb\xfc\x97\x68\xee\x53\xfb\xfc\x27\xbe\xbb\xf4\xe7\x95\xf9\x4f\xf4\xfc\x03\x7f\x29\xe7\x5f\x85\xa6\xce\x87\x64\x7c\x82\x07\x81\x58\x89\xa0\x69\x25\x02\xbd\x12\xc6\xdc\x57\x6c\xb8\x8b\xca\xdc\x27\x6a\xee\x73\x3d\xf7\xb9\x75\xee\x2b\x39\xf7\x45\x5e\x98\x1b\x70\xb3\x7f\x94\xfe\xf7\xe0\x03\x4d\xfc\xac\x0c\x23\x13\xb1\x32\x93\xa1\x3f\x18\xb2\x95\x98\x0c\x85\xa3\xe4\xba\xba\x92\x5e\x56\x5b\x5c\x14\xa9\x2f\x32\xb9\x94\x3e\xb3\x22\xba\x93\x5c\xca\x4f\x1a\x8c\x3e\xdd\x09\x18\xc9\x7d\xd9\xeb\xa1\xa5\x6d\x99\xe6\x28\x68\x02\xa3\x95\xef\xce\xfd\xa0\xb2\x4c\x2b\xbd\x4c\x53\x7f\x2e\x97\x69\xe6\x4f\x9b\x40\x69\x26\x16\x6c\xa6\x16\x6c\xd6\xb8\x60\xf5\x26\xcc\x05\xea\xaa\xd5\x5b\xe7\xa5\xa5\x5a\xb0\xd9\x2d\x2b\x4b\xb5\x52\x4b\x15\xe8\xa5\x0a\xac\x4b\xb5\x90\x4b\xb5\xac\x42\xdd\x9d\xc9\xa0\x2e\x48\xfa\x29\x9c\x10\x47\x5d\x3c\xd7\xf6\x0b\x67\x15\xc9\x0a\xef\x88\x1b\xa3\xbb\xa4\x89\xa2\x70\xe3\x05\x53\x12\x32\x09\x9e\x4c\x28\xf3\xc4\x81\x47\xc0\x39\x64\x34\x9e\x38\xef\xda\x88\xd9\x11\xd7\x7e\x26\x55\xff\xd6\x29\xcd\x95\xf4\x91\xcd\x29\xbd\xcb\x39\x5d\x51\x15\xd8\x26\x46\xdc\x2c\x19\x4b\x8e\x52\xf0\x13\x27\xcf\x2a\x22\x69\xb9\x07\x7a\x0b\x9e\x8a\x44\x70\x42\x48\xfd\x91\xfa\xa7\xee\x33\x0a\xd1\xe5\xe7\xf3\x1d\x72\x35\xbe\x9c\xf3\xf8\x58\x53\xec\x6d\x54\xe6\x21\x1d\xbd\xea\xad\xe0\x5b\x6b\xd0\xe6\x84\xb1\xf0\x40\x0a\x93\x18\x70\xba\xf5\x35\xf5\x8d\xe0\x79\x8a\xe1\xbd\x60\x6f\x64\x24\x0f\x61\xe8\x16\xfe\x49\x7e\xa9\xc5\xb3\x52\xac\x1a\xb9\x74\x4e\x31\x25\x8c\x86\xa7\xc9\xbb\xb7\x4f\x75\x68\xc9\x1c\x3d\x7d\x7f\xaa\x5b\x7d\x9f\xa4\x1f\xc3\x78\xe6\x04\x61\xca\xe3\xa8\x33\xb6\x21\x25\x51\x82\x03\xa1\x32\xbb\x10\x92\x64\x5d\xbe\xa4\x48\x73\x44\xc9\x5d\xc6\x43\xfa\x40\x36\x35\x5d\x45\xc0\xe3\x31\xa3\xf5\x63\x9e\xf3\x28\x12\xa2\xed\xd2\xa4\xb9\xd8\xad\x28\xe9\x4c\x6c\xdd\xe7\x68\x32\x5f\xc5\x1f\x85\x6e\x55\xd5\xfc\x89\xe0\xc0\xe1\xef\x33\x90\xf3\xdc\x86\x22\x76\xa0\xa5\x14\xfb\xa8\x12\x19\x33\x2e\x2a\x4d\x57\xdc\xe5\xad\x5c\xf4\xfd\xe3\x33\xa7\xf8\xc6\x4a\xce\x92\x34\x59\xd1\x30\x26\xe5\x82\x3f\xaa\xd7\xac\x4c\x46\x93\x14\xcf\xc8\x39\x61\xe0\x1c\x26\xb1\xb1\x9d\xfc\x83\x93\xaa\x2f\x8c\x36\x17\x06\xab\x11\x49\xe9\x02\xc7\x78\x46\xd2\xcc\x5b\x8b\xb5\x3d\x97\x99\x13\x9b\x16\xfa\x6b\x9b\x33\x6b\x6a\xfb\x59\x1c\x70\x7f\x0d\x21\xd2\x6c\x60\x0f\x49\x67\x95\x46\xd2\x89\xea\xdd\xf9\x99\x4b\xc5\xa9\x13\x71\x34\xf9\x99\x63\x67\x96\x21\x86\x6d\xb1\xe5\x3f\x2b\x84\x7c\x81\x32\x69\x8e\x62\xa8\x3c\x6c\xf2\x1c\x49\xc2\xb6\xb2\xc4\xd9\xc7\x70\xc9\x78\x9a\x1c\x5d\x6c\xd4\x52\x4a\x65\xd0\x5d\xdd\x3c\xb8\x51\x15\x69\x70\x6f\xf3\x36\xb7\xc1\x42\x76\xce\xec\xf6\xda\xc9\x66\xbf\xa8\xdd\x70\x3e\x63\x8b\x19\x8b\x71\x73\xb3\xce\x51\xe2\xa7\x52\x3f\x16\x15\x2a\xdc\xa4\x8f\xbd\x84\x07\x1e\x2d\x43\x2b\x5a\x15\x65\xb2\xbe\x0d\x47\xe4\x5e\x86\x16\xba\xde\x79\x72\xa9\x56\x3a\xed\xb0\x2d\x12\x79\xed\x16\xfd\x95\x1b\x23\x6c\xe7\x83\xb6\xb0\x6a\xf3\x8a\x05\x84\x36\x98\x6b\xf3\x59\x68\x13\xa2\x4b\xee\x5b\x04\x8e\xef\xff\x83\xe3\xa6\x46\x61\xda\xba\x6a\x82\xc7\x03\xdb\x82\x1c\xb1\x21\x46\xb0\xd0\xc5\xbe\x65\x57\xd8\x05\x85\x27\x17\xd5\x8b\x8f\xeb\x4d\xc5\x3d\xf7\x61\x87\xeb\x6d\xbb\x2a\x76\x53\xbe\x86\x3a\x7c\x0e\xd6\x3c\x78\xae\x88\x67\xee\x99\x97\x27\x46\x40\x69\x75\xd3\x55\xcc\x70\x24\xbb\xa8\xd8\xb1\x97\x18\xec\x5c\xbc\x75\x5e\x98\xf7\x17\xda\xa5\xbd\xf1\x2a\x8c\x82\x4a\x6b\x4f\xd8\xbb\xdb\xb4\x85\xcd\x33\x6c\x34\x54\x3a\xdb\x20\x1f\x36\xe3\x28\xa3\xf5\xe2\x70\x4b\x1b\x38\x4d\x1e\x50\xc3\x0e\x29\xf1\xe9\x36\x0b\x88\xb7\x15\xcd\xb5\x18\x14\x36\x48\x82\x54\x4a\x2b\x6b\xa4\x81\x22\x8e\xd0\x53\xea\x63\xf7\xfe\x0f\x10\xbd\x11\xb6\x3f\x4f\xcd\x80\x43\x2f\xe9\xff\xb4\xd9\xfa\x29\xfd\x2a\x66\xeb\x2f\xe9\xdf\xd2\x6c\x9d\x0d\xeb\x2f\x32\x5b\x7f\x65\x47\x2e\x62\x8b\x85\x73\x29\xa1\xcf\xc5\x13\x3b\x02\xd9\x3c\xb9\xfc\x89\x6b\x41\xae\x51\xea\xaf\x71\x14\x79\x32\xb2\x9e\x17\x9b\x12\x59\x1c\x45\x8e\x3e\x97\x6f\x68\x07\x77\xc6\x34\x86\x35\x2f\xa3\x66\x1b\x61\xec\x9e\x52\x61\xfa\xbc\x36\xfa\xe4\xd6\xea\xec\xc6\x5e\xc5\x73\xf9\x46\x75\xbf\x57\xea\x5f\x7f\xff\x3a\xa3\xe8\xf1\x51\xe4\xcd\x07\x3e\x25\x9b\x03\x94\xa5\x1d\xcc\x7d\xdb\xa2\xc8\xca\x56\x8a\x22\x7a\x12\x08\xbc\x53\x3f\xb9\x98\x7e\xc4\x2d\x5c\xfe\x09\xd1\x9f\x02\x15\x8c\x28\x44\xcf\x2d\x3b\x29\x54\x19\x92\x34\xe3\xda\x8c\x59\x94\x8c\x71\xf4\x2e\x8d\xb8\x28\x81\x6a\x52\x0c\x43\xc9\x99\x2f\x37\x10\x8c\x9f\x97\x71\xe5\x99\x08\x99\x0d\x11\x70\x00\x5a\xaa\xf8\xd8\x22\x28\x52\xea\x53\x4e\x2d\xcc\x93\x8c\xa2\xc8\x4f\x35\x01\xc8\x09\x85\x65\x9a\xd0\x64\x92\x44\x68\xc5\x53\x7c\x17\x01\xf7\xd1\xc2\xe7\x4e\xf8\x9d\x69\x9a\x2c\xdc\x95\xa6\x5e\xe0\x97\xb2\xff\x9a\x42\x8c\x4d\x6d\x42\x86\xc0\xe1\xa1\x11\x44\xa8\x08\x4e\x04\x21\x5a\x68\xdf\x4b\x9b\x00\x57\x5b\xf2\x88\x88\xce\x8b\xbb\xd6\x9c\xec\xa2\x19\x29\x8e\x00\x86\x4a\x83\xbb\x4d\x55\x22\xae\x9c\x73\x0e\x67\x47\x0f\x20\x7a\x21\x8d\x4c\x79\xde\xe0\x07\xf7\x20\x44\x67\x02\xf4\x5e\x50\x88\x1e\x37\x90\xc7\x55\xa9\x10\xf6\x95\x5e\x5e\x3a\xb0\x5d\xf1\x2c\x74\x85\x9c\xae\xf0\x43\xa9\x6a\x5d\xb2\xd2\x0a\x45\x6c\x85\x56\x7e\xc6\x56\x68\xe1\x67\x8c\xfe\x5c\xfa\x40\xf0\x6a\xc2\xbf\x2b\x6b\x97\x7c\x2f\x8c\xa0\x19\x5f\x0a\x22\x42\x55\x15\x06\xde\xd2\x5c\xe7\x72\xdf\x93\x24\xa6\x38\x8c\xf9\xf9\xf8\x6c\xf3\xbf\xdb\x6d\x2d\x11\x5b\x4b\xcc\xad\x25\xe5\xad\xc5\x03\x32\x2c\x76\xd7\x32\xb7\x73\x6a\x38\xb2\xaf\x90\x10\x8e\x78\x4f\x2f\x2e\x3a\x24\x9b\xe0\x25\x71\x97\x10\x09\xf7\x0e\x0b\xaa\x5c\xb8\x7b\x2b\x98\x2b\x52\x79\x81\xaf\x84\x27\xbe\xf0\xc7\x43\x8c\x0c\x96\xaa\xc9\x88\x4c\xa9\x5d\xf5\x0f\xc6\x0a\x67\x3c\x21\xd3\x24\x65\x5c\x30\x5f\x50\x99\xaf\xa9\x59\x33\x29\x09\x9d\xca\xe2\x6a\xb2\xc4\x14\xfd\x94\x56\x84\x0c\xa8\x58\x11\x9e\x7c\xfc\x96\xb9\xe1\x76\x63\x9f\x35\x02\xd8\x49\x2b\x77\xc6\xee\xa8\xe2\xdc\xe4\x88\x28\x7d\x7b\x41\xea\xbd\x2f\x91\x7a\x3f\x5f\xbc\x7e\x25\x33\xac\x47\xc9\x04\x47\x52\x80\xc0\xe8\x80\x17\x94\x2c\x5c\x02\x6f\x6e\x78\x19\x11\x99\x29\x9c\x5e\xbb\x94\x4b\xbb\x2c\x07\x0d\x5b\xb5\x9b\xa1\xd0\x6e\x46\x25\xed\xa6\x59\xfb\xd9\x74\x4a\x26\x14\x96\xd2\x0d\x0b\x1c\x50\xe9\x38\x84\x27\xa5\x31\x66\x6a\x8c\xdc\xcc\x1c\x0d\x08\x0a\x87\x10\x0d\x42\x14\x0d\xf9\xed\xf0\x13\xf5\x07\x85\x64\x41\xd9\x6d\x69\xe7\x72\x69\x7e\x75\xc1\xd1\x07\xfb\xcc\x7f\x38\xa7\x52\x0e\x04\x94\x0d\xd7\x10\xfd\x61\x47\x50\x06\xe2\xe1\x84\x3e\x87\xf7\x1f\xd3\x64\xb5\x44\xb1\xff\x9e\x31\x73\x42\x3c\xd8\x36\x45\x87\x6d\x72\xb5\xc4\x71\x40\x02\x00\xd1\x5a\xfd\x16\x5e\x74\x96\xc5\x4b\xf8\xe2\x75\x54\x39\xb9\x8a\x3c\x40\xd1\x6a\xc9\x05\x44\x0f\xb1\xec\x58\x67\xdd\x55\x77\x2b\x3b\x3b\xe9\x02\x47\x00\xad\x7c\xb0\x4c\x92\xc8\x18\x07\x44\x0b\x5f\x8b\x7f\xd5\xdb\x15\x44\x61\xe0\xad\x36\x90\x25\x35\xbb\x9e\x3f\x19\xc0\x69\x74\x65\x83\x60\xab\xd2\x59\xf9\x3c\xb8\xc6\x0a\x70\xdb\x0a\xad\x86\x4e\x9a\x84\xd6\x15\x31\x69\x79\x28\x83\x6c\x98\xa3\x05\x44\x25\x61\xad\xe3\x02\x23\xe4\x9e\x5c\x36\x04\x0e\xcd\xb7\xe5\x25\x44\xc0\x59\x2d\x61\x83\xd2\xd7\x8c\xd6\x61\x1d\x65\x45\xd6\xc2\x97\x88\xc7\x6a\x6e\x90\xb6\xdc\xa1\x1e\x5c\xc4\xb5\x67\xe5\xf8\xdd\xf1\x93\xc5\xa5\x71\x83\x64\x6c\x5e\x98\x8b\x13\x81\x36\xb6\x49\x7f\x8a\x85\xdb\x90\x23\xb2\x76\x8f\xc7\xc5\x3d\x5e\xb9\xbf\x13\xfd\xf8\x2e\x65\xb7\xb9\x41\x70\xa2\xcc\x37\x0c\x9b\xd0\x44\x3e\x89\x43\x8b\x56\xa5\x47\x75\x84\xd1\xc2\x57\x46\x57\x68\x69\x35\x72\xee\xd0\xe4\x2c\xb9\xd4\xb6\x58\xc2\xe4\x79\xb5\x6c\x30\x79\x0e\x4c\xb3\x66\x65\xf3\x5c\x4e\x6f\x68\x58\x3b\xbb\x8b\xad\x39\x2e\xd9\x6a\xdb\x21\xbd\x22\x07\xe2\x40\xa4\x28\x71\x5b\x85\xe7\xec\x98\xc9\xef\x5e\x82\xf4\xb2\x79\xd1\x06\x03\xb6\x6a\x07\xdc\xff\x68\x8b\x01\xcd\x32\x47\x8b\x5d\x2d\xd8\xaa\xed\x8b\x4d\xb7\x75\xf0\x98\xa2\xba\x62\x10\x2b\xd5\x5f\x8c\x0a\x18\xf1\x52\x14\x06\x57\x1e\xdd\x7d\x5a\x03\xc0\x20\xa3\x2d\x9a\x00\xc3\x1c\x9d\x11\x77\x52\x37\x71\xdb\xbd\x39\xd1\x52\x5b\x85\x57\x65\x4d\x4a\xd3\xb7\xd5\xee\x6b\xc1\xc5\x35\x59\x8e\x6c\x86\xb7\xe5\xe5\xce\xa4\xa5\x45\x11\x14\xe2\xc9\x56\xae\xbb\x6c\x7c\x21\x74\x53\x36\x07\x4c\x71\x46\xa9\x3a\x24\x9c\x45\x2f\x8e\x63\xea\xb3\xb3\xc0\xd3\xfa\x94\xce\x49\xbf\xe7\x75\x15\x68\x93\x41\x3c\xbc\xb9\x71\x79\xd0\xdb\xb5\x44\xae\x5e\x57\x12\x7f\x99\x37\x18\xe6\x10\xb1\x8f\x1a\x53\x70\x2d\x30\x95\x2f\x65\x85\x03\x3f\x45\x24\x87\x68\xcd\x6f\xc1\xb2\x98\x20\x91\xcf\x9a\x85\xbd\x0d\x01\x6e\x12\x78\x8d\x31\x40\xa5\xcc\x87\x11\x73\x51\x71\xb1\x8a\x69\x97\xee\x05\x1d\xfa\xb0\xd5\x4a\x6f\x6e\xf6\xa2\x56\x2b\xe9\x37\x47\x27\xad\x8f\xef\x0f\x45\xea\x99\xf0\x4c\x91\x41\x38\x78\x38\x87\x43\x11\xfa\x72\x30\x64\x64\xdb\x93\xaa\x64\x57\x57\x2c\x29\x33\xdf\x51\xff\xd4\x7d\x42\x21\xfa\x65\x07\x69\xaf\x86\x94\x78\x8b\x5e\xb3\x2f\x12\x11\x29\xbf\x53\xb6\x37\x71\x21\xc5\x4c\xfc\x58\x2a\x39\x23\x3f\x36\xe4\x99\x8c\xf5\x16\x22\x59\x34\xf1\xcd\x84\x64\x59\xab\x25\xb2\xc6\x39\x5c\x46\xca\xb0\x24\x7b\xdb\xbc\x9f\xef\x2c\x5a\xd1\x54\x6a\x45\xc5\x14\x3c\xe5\xc5\x33\xe9\x17\xf9\xcd\x32\xe8\x25\x86\x68\x34\xaa\x69\x4b\xe5\xb9\xa8\xeb\x48\x7f\xdd\x61\xf5\x4c\xc2\x6e\x89\x67\xa4\x2d\x46\x02\xaa\x82\x26\x54\x02\x5a\x41\xe1\xc5\x25\x0a\x0f\x8b\x48\x02\xb1\x88\x24\xa0\x66\x94\x22\x2d\x32\xf3\xe2\x41\x6f\x98\xa3\xc8\xf8\x56\x0c\xc5\xa3\x1b\x08\xb5\x5b\x1a\x2b\xbc\x55\x7a\x6c\x1b\xee\xa7\x28\xb1\x66\x63\xa0\x28\x2a\x31\x16\x3f\xfe\x6f\xcb\x90\xff\xfd\x75\x64\xc8\x3f\xfe\x3d\x65\xc8\x3f\xfe\x75\x32\xe4\x6f\x6d\x87\x0e\xf4\x0b\x31\x04\x27\x2e\xff\x30\x43\x8e\xc2\x93\xcb\x30\x0e\x92\xcb\xce\x5c\x24\x10\xe2\xdb\x27\x13\xb4\xe5\x08\x00\xc6\x10\xa2\xff\xd8\x0f\xb3\x4a\xcc\x6c\x8f\x86\x52\x4e\xdd\x21\x5e\x94\xf2\x69\x72\xaa\x74\x95\x91\x37\x22\x01\xe7\xb9\xc2\x86\x59\x19\x4f\x30\x82\x94\xfb\x0f\xc8\x14\x47\xcf\x62\xee\xa3\x5b\x04\x42\xd1\x21\x97\xe4\x78\x00\x02\x66\xdf\xe2\xb1\xd4\xb3\x78\x55\xe9\x17\x20\x50\xf4\x0a\x10\xb0\xf4\x09\x86\x46\x98\x15\x93\x5f\x5f\x74\x78\xe6\xa9\x0c\xa2\x79\x09\x2f\x2d\x19\x5e\x0a\xfc\x39\xc3\x4b\x53\x7f\xce\x18\xce\x19\x47\x7b\x72\xb5\x01\xbb\x9b\xd0\xa7\x52\x9d\x19\xab\x33\xf6\x3f\xb1\x3a\xd7\xfe\x27\xc6\xea\x6f\xe3\xf1\xf7\x02\x79\x6a\x5a\xad\x67\x2e\x44\x72\x47\x93\x78\x99\x2c\xc5\xbd\x53\xcb\xc8\xf5\x9e\xb8\xb2\x54\x94\xc8\xec\xa6\x42\xac\x0b\x4f\x88\x11\xc2\x6e\xea\x12\x98\x8b\x1b\x94\x5f\x8e\x57\xd5\x08\xe8\x7b\x6e\xbb\xc7\xd3\x06\x84\x71\x40\xae\x5e\xb3\xf2\xb0\xd5\x52\x4d\x28\x50\x19\xd7\xc9\x05\x23\x1c\xb1\x83\x7d\xdf\x27\x7d\xea\xd9\x09\x00\x0a\xd1\x00\x0f\x85\x58\x62\x08\x4f\xae\x5d\x15\x89\xbc\x8b\xee\x77\xb9\x0a\xe2\x99\x39\xbf\x5f\x88\x3b\x45\xdf\x52\xe8\xda\x5b\x0b\x9a\x83\x9d\xab\x45\x2c\x62\x9e\x5f\x90\x9c\x93\x0e\xb7\xb8\x1c\x82\x66\x75\x66\x18\x70\xae\x6c\x6b\x5a\xb3\xb7\x04\xad\xcb\x59\x86\xbd\x2b\xe1\x41\xa9\x07\x96\xa0\x6a\x36\x36\x9b\x4d\x8f\x5e\x8a\xea\xa0\x8a\xa5\x17\xb4\x59\x18\xf4\xff\xcd\xb5\x2b\x18\xad\x55\x17\x24\x87\x1e\x16\xc2\x67\x23\x15\x8b\x45\xf4\x60\xf4\x62\x0b\x6b\x5f\xec\x72\x27\x0c\xf6\x04\x86\x68\xa2\xf3\xf4\x20\xca\x1b\xa3\xc1\xa9\x4c\xd1\x95\xd3\xdf\xc4\xa8\x7a\xca\xbd\x14\xd5\x4f\xb9\x17\x21\x23\xcf\x9c\x87\x91\x91\x85\xce\x5b\xf5\xc7\xde\x60\x68\x52\x06\x59\xde\x10\x3f\xa2\x9a\xdb\x66\x31\x6e\x1f\x83\x46\x7d\xd6\xb3\x1c\x81\xc7\x41\xa0\xb3\xd6\xe4\xe8\x5f\x3b\xd0\x47\x55\x0b\x02\xab\xa8\xb0\xbb\x53\xc4\x06\x86\x73\x56\x19\x69\x73\xa9\x5f\x5b\x18\xa9\xed\xf5\x60\x81\x44\x79\xd5\x15\xab\xba\xf4\x17\xac\xea\xdc\x5f\xb0\xaa\x01\xaf\x4a\x38\xfe\x6b\x8b\x5c\xee\x1a\x77\xb1\x06\xa6\xa5\x06\x02\xd6\xc0\xcc\x9f\xb2\x06\x3e\xf9\x53\xd6\xc0\x58\xf7\x1d\x94\x51\xf0\x5e\x17\xa2\xeb\x52\xed\x31\xab\x7d\xe5\x5f\xb3\xda\xcf\xfc\x6b\x56\xfb\xa3\xae\x2d\xd3\x34\xb7\x53\x8d\xae\x59\xf7\x97\xa5\x06\x3e\xb2\x06\x5e\xfb\x97\xac\x81\x0b\xff\x92\x35\xf0\xc1\xaf\xd9\x25\x08\xc2\x9c\x33\xc4\x87\x2a\x67\xcb\x21\x37\x86\xe4\x66\x0a\x6f\xfc\x0f\x05\x65\xfe\xd2\xff\x20\x29\xf3\x53\xdf\x55\x36\x7b\x90\xdd\xcb\x22\xfd\x35\x4f\x7a\xfd\xaa\xa9\x0f\xbe\x5e\x7d\xfe\xaf\x4f\x79\x79\xd6\xc1\xc8\x7f\x55\x74\xf0\xa7\xff\xaa\x6c\xb2\xb0\x0d\xd7\x87\x53\x77\x64\x38\x7e\x13\x5f\x3c\xc9\xac\xc1\x83\xee\xf0\x24\x13\xb9\x7f\xf0\x38\x73\x4f\xdb\x04\x0a\x04\x2e\x4a\x0d\x6d\xa0\xbc\x0b\x85\xbb\x39\x0c\xd5\x31\x92\x9c\x95\x07\xc2\x38\x0a\x63\xd2\x1e\x47\xc9\xe4\xa3\x0c\x4c\x55\x82\x1a\x23\x6c\xa1\x4e\x97\x68\x3b\x08\x82\x2f\x50\x8b\xf2\xc9\xa5\x9d\x89\x88\xe8\x05\x6b\x21\xbe\x66\x39\x02\xe2\x82\x16\xd9\x7f\x1d\x05\xa0\xb7\x8f\xa7\x75\xd4\xdd\x38\x93\xf2\x09\xfa\xbc\xa9\xcc\x37\x4d\x65\x99\x23\xf0\x2e\x23\x0e\xef\x44\xd8\x92\x7e\x95\x49\x94\x8e\xe2\xe7\xcd\xe3\xd9\xa6\x79\x5c\xc9\x79\x94\xa9\xae\xaf\x32\x95\x2a\x5e\xf8\xbc\xd9\x5c\x6c\x9a\xcd\x6b\x39\x1b\x79\x95\x38\x9a\x62\x84\xc8\x8d\x1e\x1d\x77\x6f\x6e\xfe\xb4\x86\x9f\xfa\x3c\x2d\xfd\x7b\x21\xf6\xf4\x1c\x00\xd1\x9f\xad\x16\x78\x17\x93\xab\x25\x99\x50\x62\x24\x17\x17\x42\x01\xe7\x72\x4e\x62\x2d\x01\x70\x32\x92\x7e\x22\x29\x87\x1a\xaf\x50\x47\xfe\xa9\xf5\xfc\x28\x7a\xe4\x1f\x77\x5b\x2d\x99\x33\xdb\x5e\xef\x94\x50\xd1\x17\x30\xf2\xfe\x38\x32\x81\x91\xb0\xc4\x0d\xc2\xe9\x94\xa4\x24\x9e\x10\x67\x4c\xe8\x25\x21\xb1\x73\x9d\xac\x52\x67\x9c\x26\x97\x19\x49\x1d\x1c\x07\x0e\x9d\x13\xd9\x6e\xc7\x79\x93\x26\x0b\x42\xe7\x64\x95\x39\x29\x89\x42\x92\x39\x49\xec\xe0\xc9\x64\x95\x62\x4a\x44\x93\xbc\x0a\x6f\x3b\x0d\xa7\xd4\x59\x84\xb3\x39\x75\x26\x78\x95\x11\x67\x55\x4c\x5f\x9c\x6e\x81\xe8\xb2\x0e\x43\xa5\x2f\xbf\xce\xb2\x57\x57\x48\x32\x16\x4e\x14\x66\xd4\x73\x76\xde\x10\x51\xcd\x89\x39\xa5\xe1\x00\xf4\xb2\xd8\x8a\xfa\x70\xfe\x43\xd1\x5a\x30\x11\x5e\x33\x71\x6e\x92\x26\xb8\x4c\xff\x2c\x6d\xc4\xce\xeb\x3a\x51\x74\x25\xe9\x9f\xcc\x7b\x23\xe4\x3f\x16\x3e\xc7\x9b\x71\x19\xce\xcf\x76\x1a\x85\xdf\x9c\xdc\x62\x94\x4b\xf7\x9e\x5c\x73\x21\x33\x23\x83\xa4\x99\x92\x36\xe3\x7e\x72\xfd\x52\xd3\x5a\x9c\x27\x5c\x90\x45\x92\x5e\xbf\x88\x9f\x5c\x53\x92\x99\x15\xd3\x6a\xc5\x33\xdd\xc9\x1b\x1c\x6e\xb0\xe7\xdb\xec\xc7\x6f\xc8\x65\x2e\x4e\x9f\x38\xd2\x98\xd3\xee\x6b\x71\x5c\x49\x25\xcc\x03\xc6\x0b\x03\xf4\xa7\x38\x0d\xc2\x18\x47\x21\xbd\xe6\x6d\xb0\x26\x06\xca\x50\xfc\x6d\xb2\x74\x7a\x5d\x87\xaf\x8a\xd8\x6b\xe7\x32\xa4\x73\x87\x53\x14\xce\x44\x24\xc4\x16\xb9\xc4\x69\x8e\x2a\xb5\xc4\x9c\x45\x29\x67\x7c\x5d\x02\x19\x55\x0b\xd7\x6a\xd5\xfa\x9a\x87\xb3\xb9\x23\x16\xd7\x59\x31\x08\x03\x68\x15\x87\xd4\x03\x7c\xa1\x55\x43\xf1\xd6\xee\x45\xc3\x62\xe4\x4b\x1c\xa6\xba\x6a\xba\xc9\x4e\x53\xd8\x65\xb2\xbd\x67\x9d\xa2\xb8\x20\x5c\x71\x1f\xf0\xfd\x04\x1e\x16\x5b\xcc\x1a\xbb\x55\x42\xe7\xf6\x11\xd8\x10\x3d\xa6\xf0\xf7\xbe\xe3\xa8\x51\x77\xe1\x28\xcb\x66\xb0\xc5\x37\x36\xde\x41\x33\x98\x36\x2f\x7c\xac\xce\x1c\xdf\xb1\x3b\x30\xd5\xdf\x12\x8a\x1b\x6b\x83\x69\x6e\x08\xf1\x73\x45\xa2\xce\xce\x98\x38\x62\x25\x89\xfa\x6f\xd4\x3f\x75\x7f\xa6\x10\x11\xfc\xa5\x91\xcf\x68\x16\x8c\xbf\xdc\x45\xe8\xb7\x9a\x30\xdc\x16\x9f\x40\x7b\x0d\xd5\x64\xde\x05\x2a\xa9\xcb\xbd\xe9\x0e\x73\x24\x1d\x3a\xc7\x71\x92\xe9\x9c\x3d\x5f\x26\x7d\x1e\xb3\x8b\xa3\x90\x65\xa3\x4a\xe3\x8c\x8b\xb7\xd4\xba\xe6\x39\x42\xa2\x55\x28\xfd\x14\xcc\x10\x08\x6f\x93\xa5\xf7\x43\xd7\x6a\x19\xb4\xea\x4c\xd0\x7a\x8c\x33\xc2\xba\xf4\xca\x7b\x15\x93\x4b\x60\x8d\x8a\xbb\xea\x8c\xd1\x7a\x9a\x26\x0b\x0f\x1c\xf2\xe8\x5b\xb5\x7a\x22\xbf\x11\x80\xd6\xa1\xfe\x8b\x8a\x19\x7a\x40\x16\x2b\xcb\xee\x6d\x55\xd2\xa2\x8a\x08\xca\xb3\x43\x9d\x55\x51\x47\x46\xd8\xdb\x5e\x67\x5e\xd4\x11\xa1\xd5\xb6\x57\xf9\x54\x54\x11\xc1\x36\xb6\x57\xb9\x2c\xaa\x64\xc2\x3d\xad\x1d\x68\x67\xc8\xed\xd5\x3f\x18\xd5\xc5\x0d\xb8\xbd\x0e\xc1\xba\x0e\x3b\x74\xed\x9d\x2b\xfe\x5a\x74\xa6\x7c\xfa\x2a\x95\x44\xcc\x5b\x2c\xcc\x18\xef\x43\xf4\xe3\xd9\xeb\x27\x8f\xcf\x46\x6f\x1e\xbf\xfd\x69\xf4\xe6\xfc\xd9\xf3\x17\xff\x81\x27\xc0\x78\x1a\xbd\x39\x7b\xfc\xf4\xd9\x4f\xaf\xcf\x4e\x9f\x9d\x83\x3d\xdf\xaf\x97\x6f\xb5\xc0\x61\xd3\x97\x97\xc4\xb5\x74\x70\x73\xe3\x62\xec\x03\x20\xc4\x9a\x31\xf6\xdf\xfe\xf4\xf8\xd5\xeb\x8b\xd1\xd3\xd7\x2f\xdf\xbc\x7e\xf5\xec\xd5\xdb\x13\x9e\xdb\xb1\xfa\xb6\xd5\x72\x63\xec\x0b\x8e\x16\x40\x94\x75\x18\x1a\x8a\x03\x92\xba\xf5\x85\xa0\xb8\x74\x2e\x31\xae\x1d\xcc\x98\x9d\xcc\x20\x99\x70\x4d\x46\x67\x46\xa8\xac\xfa\xe4\xfa\x45\xe0\x82\x34\x49\x28\x17\x15\x1d\xfd\xb3\xe4\x47\x86\x30\x5c\xf3\x88\x75\x49\x4a\x33\x7f\xad\x4d\x86\x3c\x43\xa3\xc9\xe5\x4c\x23\xfd\x69\x34\x3a\x5a\xe0\xc9\x02\x28\x17\x8c\x6a\x41\xfe\x7a\x34\xea\x2d\x97\x3f\x7e\x00\x48\xd8\x3a\xd5\x4b\x89\xf7\xa3\x51\xef\xf1\x2a\x7c\xe5\x6c\x6e\x43\xd0\xdd\xf5\x36\xc4\xfb\xd1\xe8\xb7\xe4\xa7\x8f\xdf\x6f\x69\x83\x5b\xfa\x58\x06\xcb\x5e\x8f\x46\xbd\x8b\x20\xed\x01\x34\x21\x91\x65\xa8\xec\xed\x68\x74\x7c\xf6\xcb\x78\x04\x90\x36\xe6\xa8\x15\x53\x5f\x46\xa3\xde\xab\x7b\xb3\xab\xda\x78\x4a\xcd\xa8\x10\x57\xd5\x42\xe2\xfd\x68\xd4\xfb\xe5\x97\xab\xf1\xe6\x26\xb8\x30\xbe\xde\x02\x7f\x3d\x1a\x1d\x3d\xf9\xe3\x74\xcb\x18\x4a\xf6\x17\xb6\xa1\xe8\xaf\xa3\x51\xef\xc1\xd1\x2f\xff\xda\xdc\x9c\xb0\x9c\xb0\xac\x0b\x7f\x3f\x1a\x1d\xfd\xfc\xe4\xd3\xaf\x1b\x9b\xc8\x73\x74\xff\x87\x4d\xe0\x39\xa6\xb1\x07\x84\x0e\x76\x34\xa6\xf1\x68\xd4\xbb\x9e\x07\x33\x56\xef\xc1\xbd\x4d\xf5\x0a\x13\x16\xa5\x64\x16\xa6\x2c\xa3\xe2\xc3\x68\x74\x44\x2e\xa2\x7b\x20\xcf\x73\x34\x18\xf4\xba\x5d\xd4\x43\x47\xc3\xe1\x10\x9e\xfc\x7f\x87\x87\xdf\x38\x59\xb2\x4a\x27\xe4\x25\x5e\x2e\xc3\x78\xf6\xee\xfc\xcc\x5f\xe0\x30\xee\x3c\xe8\x62\x4c\xee\xdf\x9b\x76\xb8\xeb\x69\xe7\x03\xb7\xb7\xfa\x7f\x01\x00\x00\xff\xff\x0f\xe6\x2d\x33\x43\x99\x01\x00") -func pkgUiStaticReactStaticJsMainD3f562f0ChunkJsBytes() ([]byte, error) { +func pkgUiStaticReactStaticJsMain90aae54fChunkJsBytes() ([]byte, error) { return bindataRead( - _pkgUiStaticReactStaticJsMainD3f562f0ChunkJs, - "pkg/ui/static/react/static/js/main.d3f562f0.chunk.js", + _pkgUiStaticReactStaticJsMain90aae54fChunkJs, + "pkg/ui/static/react/static/js/main.90aae54f.chunk.js", ) } -func pkgUiStaticReactStaticJsMainD3f562f0ChunkJs() (*asset, error) { - bytes, err := pkgUiStaticReactStaticJsMainD3f562f0ChunkJsBytes() +func pkgUiStaticReactStaticJsMain90aae54fChunkJs() (*asset, error) { + bytes, err := pkgUiStaticReactStaticJsMain90aae54fChunkJsBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/static/js/main.d3f562f0.chunk.js", size: 104422, mode: os.FileMode(420), modTime: time.Unix(1581497509, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/static/js/main.90aae54f.chunk.js", size: 104771, mode: os.FileMode(420), modTime: time.Unix(1586531010, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -771,7 +771,7 @@ func pkgUiStaticReactStaticJsRuntimeMain56ad181aJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/static/js/runtime-main.56ad181a.js", size: 1552, mode: os.FileMode(420), modTime: time.Unix(1581497509, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/static/js/runtime-main.56ad181a.js", size: 1552, mode: os.FileMode(420), modTime: time.Unix(1586531010, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -791,7 +791,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapGridCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.css", size: 37644, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.css", size: 37644, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -811,7 +811,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapGridMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.min.css", size: 28977, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.min.css", size: 28977, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -831,7 +831,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapRebootCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.css", size: 4896, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.css", size: 4896, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -851,7 +851,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapRebootMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.min.css", size: 4019, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.min.css", size: 4019, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -871,7 +871,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap.min.css", size: 140936, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap.min.css", size: 140936, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -891,7 +891,7 @@ func pkgUiStaticVendorBootstrap413JsBootstrapBundleJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.js", size: 212345, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.js", size: 212345, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -911,7 +911,7 @@ func pkgUiStaticVendorBootstrap413JsBootstrapBundleMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.min.js", size: 70966, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.min.js", size: 70966, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -931,7 +931,7 @@ func pkgUiStaticVendorBootstrap413JsBootstrapMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.min.js", size: 51039, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.min.js", size: 51039, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -951,7 +951,7 @@ func pkgUiStaticVendorBootstrap3TypeaheadBootstrap3TypeaheadMinJs() (*asset, err return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap3-typeahead/bootstrap3-typeahead.min.js", size: 11273, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap3-typeahead/bootstrap3-typeahead.min.js", size: 11273, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -971,7 +971,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsCssBootstrapGlyphiconsCss() (*asset, e return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.css", size: 14523, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.css", size: 14523, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -991,7 +991,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsCssBootstrapGlyphiconsMinCss() (*asset return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.min.css", size: 11830, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.min.css", size: 11830, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1011,7 +1011,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Eot() (*ass return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.eot", size: 98620, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.eot", size: 98620, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1031,7 +1031,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Svg() (*ass return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.svg", size: 507478, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.svg", size: 507478, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1051,7 +1051,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Ttf() (*ass return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.ttf", size: 98384, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.ttf", size: 98384, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1071,7 +1071,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Woff() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff", size: 63712, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff", size: 63712, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1091,7 +1091,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Woff2() (*a return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff2", size: 54420, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff2", size: 54420, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1111,7 +1111,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Eot() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.eot", size: 31156, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.eot", size: 31156, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1131,7 +1131,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Svg() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.svg", size: 107199, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.svg", size: 107199, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1151,7 +1151,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Ttf() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.ttf", size: 30928, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.ttf", size: 30928, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1171,7 +1171,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Woff() (*a return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff", size: 14712, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff", size: 14712, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1191,7 +1191,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Woff2() (* return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff2", size: 12220, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff2", size: 12220, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1211,7 +1211,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Eot() (*asse return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.eot", size: 102152, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.eot", size: 102152, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1231,7 +1231,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Svg() (*asse return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.svg", size: 378215, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.svg", size: 378215, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1251,7 +1251,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Ttf() (*asse return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.ttf", size: 101932, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.ttf", size: 101932, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1271,7 +1271,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Woff() (*ass return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff", size: 48704, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff", size: 48704, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1291,7 +1291,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Woff2() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff2", size: 38784, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff2", size: 38784, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1311,7 +1311,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.eot", size: 20127, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.eot", size: 20127, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1331,7 +1331,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.svg", size: 108738, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.svg", size: 108738, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1351,7 +1351,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.ttf", size: 45404, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.ttf", size: 45404, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1371,7 +1371,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff", size: 23424, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff", size: 23424, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1391,7 +1391,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff2", size: 18028, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff2", size: 18028, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1411,7 +1411,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsMapsGlyphiconsFontawesomeCss() (*asset return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.css", size: 51062, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.css", size: 51062, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1431,7 +1431,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsMapsGlyphiconsFontawesomeLess() (*asse return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.less", size: 53867, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.less", size: 53867, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1451,7 +1451,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsMapsGlyphiconsFontawesomeMinCss() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.min.css", size: 42307, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.min.css", size: 42307, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1471,7 +1471,7 @@ func pkgUiStaticVendorEonasdanBootstrapDatetimepickerBootstrapDatetimepickerMinC return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.css", size: 7771, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.css", size: 7771, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1491,7 +1491,7 @@ func pkgUiStaticVendorEonasdanBootstrapDatetimepickerBootstrapDatetimepickerMinJ return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.js", size: 48881, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.js", size: 48881, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1511,7 +1511,7 @@ func pkgUiStaticVendorFuzzyFuzzyJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/fuzzy/fuzzy.js", size: 5669, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/fuzzy/fuzzy.js", size: 5669, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1531,7 +1531,7 @@ func pkgUiStaticVendorJsJquery331MinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery-3.3.1.min.js", size: 86927, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery-3.3.1.min.js", size: 86927, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1551,7 +1551,7 @@ func pkgUiStaticVendorJsJqueryHotkeysJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.hotkeys.js", size: 4490, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.hotkeys.js", size: 4490, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1571,7 +1571,7 @@ func pkgUiStaticVendorJsJqueryMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.min.js", size: 86671, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.min.js", size: 86671, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1591,7 +1591,7 @@ func pkgUiStaticVendorJsJquerySelectionJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.selection.js", size: 12881, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.selection.js", size: 12881, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1611,7 +1611,7 @@ func pkgUiStaticVendorJsPopperMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/popper.min.js", size: 19236, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/popper.min.js", size: 19236, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1631,7 +1631,7 @@ func pkgUiStaticVendorMomentMomentTimezoneWithDataMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/moment/moment-timezone-with-data.min.js", size: 184495, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/moment/moment-timezone-with-data.min.js", size: 184495, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1651,7 +1651,7 @@ func pkgUiStaticVendorMomentMomentMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/moment/moment.min.js", size: 51825, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/moment/moment.min.js", size: 51825, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1671,7 +1671,7 @@ func pkgUiStaticVendorMustacheMustacheMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/mustache/mustache.min.js", size: 9528, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/mustache/mustache.min.js", size: 9528, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1691,7 +1691,7 @@ func pkgUiStaticVendorRickshawRickshawMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/rickshaw.min.css", size: 6102, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/rickshaw.min.css", size: 6102, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1711,7 +1711,7 @@ func pkgUiStaticVendorRickshawRickshawMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/rickshaw.min.js", size: 76322, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/rickshaw.min.js", size: 76322, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1731,7 +1731,7 @@ func pkgUiStaticVendorRickshawVendorD3LayoutMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/vendor/d3.layout.min.js", size: 17514, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/vendor/d3.layout.min.js", size: 17514, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1751,7 +1751,7 @@ func pkgUiStaticVendorRickshawVendorD3V3Js() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/vendor/d3.v3.js", size: 144718, mode: os.FileMode(420), modTime: time.Unix(1580204350, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/vendor/d3.v3.js", size: 144718, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1832,12 +1832,12 @@ var _bindata = map[string]func() (*asset, error){ "pkg/ui/static/react/favicon.ico": pkgUiStaticReactFaviconIco, "pkg/ui/static/react/index.html": pkgUiStaticReactIndexHtml, "pkg/ui/static/react/manifest.json": pkgUiStaticReactManifestJson, - "pkg/ui/static/react/precache-manifest.89cd5f634bdd3cbf6ea21e1c773c0c50.js": pkgUiStaticReactPrecacheManifest89cd5f634bdd3cbf6ea21e1c773c0c50Js, + "pkg/ui/static/react/precache-manifest.c5d86e4aadc1447ddca4911d3f554098.js": pkgUiStaticReactPrecacheManifestC5d86e4aadc1447ddca4911d3f554098Js, "pkg/ui/static/react/service-worker.js": pkgUiStaticReactServiceWorkerJs, - "pkg/ui/static/react/static/css/2.bae5dac8.chunk.css": pkgUiStaticReactStaticCss2Bae5dac8ChunkCss, - "pkg/ui/static/react/static/css/main.ec7d4f9e.chunk.css": pkgUiStaticReactStaticCssMainEc7d4f9eChunkCss, - "pkg/ui/static/react/static/js/2.776f6080.chunk.js": pkgUiStaticReactStaticJs2776f6080ChunkJs, - "pkg/ui/static/react/static/js/main.d3f562f0.chunk.js": pkgUiStaticReactStaticJsMainD3f562f0ChunkJs, + "pkg/ui/static/react/static/css/2.3f5e1097.chunk.css": pkgUiStaticReactStaticCss23f5e1097ChunkCss, + "pkg/ui/static/react/static/css/main.a6053568.chunk.css": pkgUiStaticReactStaticCssMainA6053568ChunkCss, + "pkg/ui/static/react/static/js/2.42f57af3.chunk.js": pkgUiStaticReactStaticJs242f57af3ChunkJs, + "pkg/ui/static/react/static/js/main.90aae54f.chunk.js": pkgUiStaticReactStaticJsMain90aae54fChunkJs, "pkg/ui/static/react/static/js/runtime-main.56ad181a.js": pkgUiStaticReactStaticJsRuntimeMain56ad181aJs, "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.css": pkgUiStaticVendorBootstrap413CssBootstrapGridCss, "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.min.css": pkgUiStaticVendorBootstrap413CssBootstrapGridMinCss, @@ -1955,16 +1955,16 @@ var _bintree = &bintree{nil, map[string]*bintree{ "favicon.ico": &bintree{pkgUiStaticReactFaviconIco, map[string]*bintree{}}, "index.html": &bintree{pkgUiStaticReactIndexHtml, map[string]*bintree{}}, "manifest.json": &bintree{pkgUiStaticReactManifestJson, map[string]*bintree{}}, - "precache-manifest.89cd5f634bdd3cbf6ea21e1c773c0c50.js": &bintree{pkgUiStaticReactPrecacheManifest89cd5f634bdd3cbf6ea21e1c773c0c50Js, map[string]*bintree{}}, + "precache-manifest.c5d86e4aadc1447ddca4911d3f554098.js": &bintree{pkgUiStaticReactPrecacheManifestC5d86e4aadc1447ddca4911d3f554098Js, map[string]*bintree{}}, "service-worker.js": &bintree{pkgUiStaticReactServiceWorkerJs, map[string]*bintree{}}, "static": &bintree{nil, map[string]*bintree{ "css": &bintree{nil, map[string]*bintree{ - "2.bae5dac8.chunk.css": &bintree{pkgUiStaticReactStaticCss2Bae5dac8ChunkCss, map[string]*bintree{}}, - "main.ec7d4f9e.chunk.css": &bintree{pkgUiStaticReactStaticCssMainEc7d4f9eChunkCss, map[string]*bintree{}}, + "2.3f5e1097.chunk.css": &bintree{pkgUiStaticReactStaticCss23f5e1097ChunkCss, map[string]*bintree{}}, + "main.a6053568.chunk.css": &bintree{pkgUiStaticReactStaticCssMainA6053568ChunkCss, map[string]*bintree{}}, }}, "js": &bintree{nil, map[string]*bintree{ - "2.776f6080.chunk.js": &bintree{pkgUiStaticReactStaticJs2776f6080ChunkJs, map[string]*bintree{}}, - "main.d3f562f0.chunk.js": &bintree{pkgUiStaticReactStaticJsMainD3f562f0ChunkJs, map[string]*bintree{}}, + "2.42f57af3.chunk.js": &bintree{pkgUiStaticReactStaticJs242f57af3ChunkJs, map[string]*bintree{}}, + "main.90aae54f.chunk.js": &bintree{pkgUiStaticReactStaticJsMain90aae54fChunkJs, map[string]*bintree{}}, "runtime-main.56ad181a.js": &bintree{pkgUiStaticReactStaticJsRuntimeMain56ad181aJs, map[string]*bintree{}}, }}, }}, diff --git a/pkg/ui/bucket.go b/pkg/ui/bucket.go index 9f2dcfb0b5c..d8d5b341425 100644 --- a/pkg/ui/bucket.go +++ b/pkg/ui/bucket.go @@ -4,6 +4,7 @@ package ui import ( + "encoding/json" "html/template" "net/http" "path" @@ -11,6 +12,7 @@ import ( "github.com/go-kit/kit/log" "github.com/prometheus/common/route" + "github.com/thanos-io/thanos/pkg/block/metadata" "github.com/thanos-io/thanos/pkg/component" extpromhttp "github.com/thanos-io/thanos/pkg/extprom/http" ) @@ -18,6 +20,8 @@ import ( // Bucket is a web UI representing state of buckets as a timeline. type Bucket struct { *BaseUI + + externalPrefix, prefixHeader string // Unique Prometheus label that identifies each shard, used as the title. If // not present, all labels are displayed externally as a legend. Label string @@ -26,41 +30,55 @@ type Bucket struct { Err error } -func NewBucketUI(logger log.Logger, label string, flagsMap map[string]string) *Bucket { +func NewBucketUI(logger log.Logger, label, externalPrefix, prefixHeader string) *Bucket { return &Bucket{ - BaseUI: NewBaseUI(logger, "bucket_menu.html", queryTmplFuncs(), flagsMap, component.Bucket), - Blocks: "[]", - Label: label, + BaseUI: NewBaseUI(log.With(logger, "component", "bucketUI"), "bucket_menu.html", queryTmplFuncs(), externalPrefix, prefixHeader, component.Bucket), + Blocks: "[]", + Label: label, + externalPrefix: externalPrefix, + prefixHeader: prefixHeader, } } // Register registers http routes for bucket UI. func (b *Bucket) Register(r *route.Router, ins extpromhttp.InstrumentationMiddleware) { instrf := func(name string, next func(w http.ResponseWriter, r *http.Request)) http.HandlerFunc { - return ins.NewHandler(name, http.HandlerFunc(next)) + return ins.NewHandler(b.externalPrefix+name, http.HandlerFunc(next)) } - r.Get("/", instrf("root", b.root)) - r.Get("/static/*filepath", instrf("static", b.serveStaticAsset)) + r.WithPrefix(b.externalPrefix).Get("/", instrf("root", b.root)) + r.WithPrefix(b.externalPrefix).Get("/static/*filepath", instrf("static", b.serveStaticAsset)) // Make sure that "/new" is redirected to "/new/" and // not just the naked "/new/", which would be the default behavior of the router // with the "RedirectTrailingSlash" option (https://godoc.org/github.com/julienschmidt/httprouter#Router.RedirectTrailingSlash), // and which breaks users with a --web.route-prefix that deviates from the path derived // from the external URL. r.Get("/new", func(w http.ResponseWriter, r *http.Request) { - http.Redirect(w, r, path.Join(GetWebPrefix(b.logger, b.flagsMap, r), "new")+"/", http.StatusFound) + http.Redirect(w, r, path.Join(GetWebPrefix(b.logger, b.externalPrefix, b.prefixHeader, r), "new")+"/", http.StatusFound) }) r.Get("/new/*filepath", instrf("react-static", b.serveReactUI)) } // Handle / of bucket UIs. func (b *Bucket) root(w http.ResponseWriter, r *http.Request) { - prefix := GetWebPrefix(b.logger, b.flagsMap, r) - b.executeTemplate(w, "bucket.html", prefix, b) + b.executeTemplate(w, "bucket.html", GetWebPrefix(b.logger, b.externalPrefix, b.prefixHeader, r), b) } -func (b *Bucket) Set(data string, err error) { +func (b *Bucket) Set(blocks []metadata.Meta, err error) { + if err != nil { + // Last view is maintained. + b.RefreshedAt = time.Now() + b.Err = err + return + } + + data := "[]" + dataB, err := json.Marshal(blocks) + if err == nil { + data = string(dataB) + } + b.RefreshedAt = time.Now() - b.Blocks = template.JS(string(data)) + b.Blocks = template.JS(data) b.Err = err } diff --git a/pkg/ui/query.go b/pkg/ui/query.go index e311fd07d1d..2231f99c8a1 100644 --- a/pkg/ui/query.go +++ b/pkg/ui/query.go @@ -26,6 +26,8 @@ type Query struct { *BaseUI storeSet *query.StoreSet + externalPrefix, prefixHeader string + cwd string birth time.Time reg prometheus.Registerer @@ -41,18 +43,20 @@ type thanosVersion struct { GoVersion string `json:"goVersion"` } -func NewQueryUI(logger log.Logger, reg prometheus.Registerer, storeSet *query.StoreSet, flagsMap map[string]string) *Query { +func NewQueryUI(logger log.Logger, reg prometheus.Registerer, storeSet *query.StoreSet, externalPrefix, prefixHeader string) *Query { cwd, err := os.Getwd() if err != nil { cwd = "" } return &Query{ - BaseUI: NewBaseUI(logger, "query_menu.html", queryTmplFuncs(), flagsMap, component.Query), - storeSet: storeSet, - cwd: cwd, - birth: time.Now(), - reg: reg, - now: model.Now, + BaseUI: NewBaseUI(logger, "query_menu.html", queryTmplFuncs(), externalPrefix, prefixHeader, component.Query), + storeSet: storeSet, + externalPrefix: externalPrefix, + prefixHeader: prefixHeader, + cwd: cwd, + birth: time.Now(), + reg: reg, + now: model.Now, } } @@ -86,7 +90,7 @@ func (q *Query) Register(r *route.Router, ins extpromhttp.InstrumentationMiddlew // and which breaks users with a --web.route-prefix that deviates from the path derived // from the external URL. r.Get("/new", func(w http.ResponseWriter, r *http.Request) { - http.Redirect(w, r, path.Join(GetWebPrefix(q.logger, q.flagsMap, r), "new")+"/", http.StatusFound) + http.Redirect(w, r, path.Join(GetWebPrefix(q.logger, q.externalPrefix, q.prefixHeader, r), "new")+"/", http.StatusFound) }) r.Get("/new/*filepath", instrf("react-static", q.serveReactUI)) @@ -97,19 +101,19 @@ func (q *Query) Register(r *route.Router, ins extpromhttp.InstrumentationMiddlew // Root redirects "/" requests to "/graph", taking into account the path prefix value. func (q *Query) root(w http.ResponseWriter, r *http.Request) { - prefix := GetWebPrefix(q.logger, q.flagsMap, r) + prefix := GetWebPrefix(q.logger, q.externalPrefix, q.prefixHeader, r) http.Redirect(w, r, path.Join(prefix, "/graph"), http.StatusFound) } func (q *Query) graph(w http.ResponseWriter, r *http.Request) { - prefix := GetWebPrefix(q.logger, q.flagsMap, r) + prefix := GetWebPrefix(q.logger, q.externalPrefix, q.prefixHeader, r) q.executeTemplate(w, "graph.html", prefix, nil) } func (q *Query) status(w http.ResponseWriter, r *http.Request) { - prefix := GetWebPrefix(q.logger, q.flagsMap, r) + prefix := GetWebPrefix(q.logger, q.externalPrefix, q.prefixHeader, r) q.executeTemplate(w, "status.html", prefix, struct { Birth time.Time @@ -130,7 +134,7 @@ func (q *Query) status(w http.ResponseWriter, r *http.Request) { } func (q *Query) stores(w http.ResponseWriter, r *http.Request) { - prefix := GetWebPrefix(q.logger, q.flagsMap, r) + prefix := GetWebPrefix(q.logger, q.externalPrefix, q.prefixHeader, r) statuses := make(map[component.StoreAPI][]query.StoreStatus) for _, status := range q.storeSet.GetStoreStatus() { statuses[status.StoreType] = append(statuses[status.StoreType], status) diff --git a/pkg/ui/rule.go b/pkg/ui/rule.go index 85bf1a5dedb..5f54415b3f2 100644 --- a/pkg/ui/rule.go +++ b/pkg/ui/rule.go @@ -24,17 +24,21 @@ import ( type Rule struct { *BaseUI + externalPrefix, prefixHeader string + ruleManager *thanosrule.Manager queryURL string reg prometheus.Registerer } -func NewRuleUI(logger log.Logger, reg prometheus.Registerer, ruleManager *thanosrule.Manager, queryURL string, flagsMap map[string]string) *Rule { +func NewRuleUI(logger log.Logger, reg prometheus.Registerer, ruleManager *thanosrule.Manager, queryURL string, externalPrefix, prefixHeader string) *Rule { return &Rule{ - BaseUI: NewBaseUI(logger, "rule_menu.html", ruleTmplFuncs(queryURL), flagsMap, component.Rule), - ruleManager: ruleManager, - queryURL: queryURL, - reg: reg, + BaseUI: NewBaseUI(logger, "rule_menu.html", ruleTmplFuncs(queryURL), externalPrefix, prefixHeader, component.Rule), + externalPrefix: externalPrefix, + prefixHeader: prefixHeader, + ruleManager: ruleManager, + queryURL: queryURL, + reg: reg, } } @@ -131,14 +135,14 @@ func (ru *Rule) alerts(w http.ResponseWriter, r *http.Request) { Counts: alertCounts(groups), } - prefix := GetWebPrefix(ru.logger, ru.flagsMap, r) + prefix := GetWebPrefix(ru.logger, ru.externalPrefix, ru.prefixHeader, r) // TODO(bwplotka): Update HTML to include partial response. ru.executeTemplate(w, "alerts.html", prefix, alertStatus) } func (ru *Rule) rules(w http.ResponseWriter, r *http.Request) { - prefix := GetWebPrefix(ru.logger, ru.flagsMap, r) + prefix := GetWebPrefix(ru.logger, ru.externalPrefix, ru.prefixHeader, r) // TODO(bwplotka): Update HTML to include partial response. ru.executeTemplate(w, "rules.html", prefix, ru.ruleManager) @@ -146,7 +150,7 @@ func (ru *Rule) rules(w http.ResponseWriter, r *http.Request) { // Root redirects / requests to /graph, taking into account the path prefix value. func (ru *Rule) root(w http.ResponseWriter, r *http.Request) { - prefix := GetWebPrefix(ru.logger, ru.flagsMap, r) + prefix := GetWebPrefix(ru.logger, ru.externalPrefix, ru.prefixHeader, r) http.Redirect(w, r, path.Join(prefix, "/alerts"), http.StatusFound) } @@ -167,7 +171,7 @@ func (ru *Rule) Register(r *route.Router, ins extpromhttp.InstrumentationMiddlew // and which breaks users with a --web.route-prefix that deviates from the path derived // from the external URL. r.Get("/new", func(w http.ResponseWriter, r *http.Request) { - http.Redirect(w, r, path.Join(GetWebPrefix(ru.logger, ru.flagsMap, r), "new")+"/", http.StatusFound) + http.Redirect(w, r, path.Join(GetWebPrefix(ru.logger, ru.externalPrefix, ru.prefixHeader, r), "new")+"/", http.StatusFound) }) r.Get("/new/*filepath", instrf("react-static", ru.serveReactUI)) } diff --git a/pkg/ui/static/js/bucket.js b/pkg/ui/static/js/bucket.js index 9221301d761..15fd9bc217f 100644 --- a/pkg/ui/static/js/bucket.js +++ b/pkg/ui/static/js/bucket.js @@ -7,6 +7,9 @@ function draw() { if (thanos.refreshedAt == "0001-01-01T00:00:00Z") { thanos.err = "Synchronizing blocks from remote storage"; } + else if (!thanos.err && thanos.blocks.length == 0) { + thanos.err = "No blocks are currently loaded"; + } if (thanos.err != null) { $("#err").show().find('.alert').text(JSON.stringify(thanos.err, null, 4)); @@ -24,24 +27,23 @@ function draw() { dataTable.addColumn({type: 'string', id: 'Replica'}); dataTable.addColumn({type: 'string', id: 'Label'}); + dataTable.addColumn({type: 'string', role: 'tooltip'}); dataTable.addColumn({type: 'date', id: 'Start'}); dataTable.addColumn({type: 'date', id: 'End'}); dataTable.addRows(thanos.blocks + .sort((a, b) => a.thanos.downsample.resolution - b.thanos.downsample.resolution) .map(function(d) { // Title is the first column of the timeline. // // A unique Prometheus label that identifies each shard is used - // as the title if present, otherwise all labels are displayed + // as the title if present, otherwise labels are displayed // externally as a legend. title = function() { - if (thanos.label != "") { - var key = d.thanos.labels[thanos.label]; - if (key == undefined) { - throw `Label ${thanos.label} not found in ${Object.keys(d.thanos.labels)}`; - } else { - return key; - } + var key = thanos.label != "" && d.thanos.labels[thanos.label]; + + if (key) { + return key; } else { title = titles[stringify(d.thanos.labels)]; if (title == undefined) { @@ -52,8 +54,8 @@ function draw() { } }(); - label = `l: ${d.compaction.level}, res: ${d.thanos.downsample.resolution}`; - return [title, label, new Date(d.minTime), new Date(d.maxTime)]; + label = `level: ${d.compaction.level}, resolution: ${d.thanos.downsample.resolution}`; + return [title, label, generateTooltip(d), new Date(d.minTime), new Date(d.maxTime)]; })); chart.draw(dataTable); @@ -76,3 +78,61 @@ function stringify(map) { } return t; } + +function generateTooltip(block) { + var tooltip = document.createElement("div"); + tooltip.className = "card"; + + + var title = document.createElement("h6"); + title.className = "card-header text-nowrap"; + title.innerHTML = block.ulid; + + var info = document.createElement("ul"); + info.className = "list-group list-group-flush"; + + var metaInfo = document.createElement("li"); + metaInfo.className = "list-group-item"; + metaInfo.innerHTML = "

Labels

"; + var labelTable = document.createElement("table"); + labelTable.className = "table table-sm mb-0"; + for (let [key, value] of Object.entries(block.thanos.labels)) { + labelTable.innerHTML += `${key}${value}`; + } + metaInfo.appendChild(labelTable); + + var dateInfo = document.createElement("li"); + var minTime = new Date(block.minTime); + var maxTime = new Date(block.maxTime); + + dateInfo.className = "list-group-item"; + dateInfo.innerHTML = generateLine("Start Date: ", minTime.toLocaleDateString() + " " + minTime.toLocaleTimeString()); + dateInfo.innerHTML += generateLine("End Date: ", maxTime.toLocaleDateString() + " " + maxTime.toLocaleTimeString()); + dateInfo.innerHTML += generateLine("Duration: ", moment.duration(maxTime-minTime).humanize()); + + var statsInfo = document.createElement("li"); + statsInfo.className = "list-group-item"; + statsInfo.innerHTML = generateLine("Series: ", block.stats.numSeries.toLocaleString()); + statsInfo.innerHTML += generateLine("Samples: ", block.stats.numSamples.toLocaleString()); + statsInfo.innerHTML += generateLine("Chunks: ", block.stats.numChunks.toLocaleString()); + + var compactInfo = document.createElement("li"); + compactInfo.className = "list-group-item"; + compactInfo.innerHTML = generateLine("Resolution: ", block.thanos.downsample.resolution); + compactInfo.innerHTML += generateLine("Level: ", block.compaction.level); + compactInfo.innerHTML += generateLine("Source: ", block.thanos.source); + + info.appendChild(metaInfo); + info.appendChild(dateInfo); + info.appendChild(statsInfo); + info.appendChild(compactInfo); + + tooltip.appendChild(title); + tooltip.appendChild(info); + + return tooltip.outerHTML; +} + +function generateLine(key, value) { + return "" + key + "" + value + "
" +} diff --git a/pkg/ui/templates/bucket.html b/pkg/ui/templates/bucket.html index 98825e71e98..c7b900c8a1f 100644 --- a/pkg/ui/templates/bucket.html +++ b/pkg/ui/templates/bucket.html @@ -3,6 +3,7 @@ + {{end}} {{define "content"}} diff --git a/pkg/ui/templates/stores.html b/pkg/ui/templates/stores.html index c4cb297493b..e6b0d617568 100644 --- a/pkg/ui/templates/stores.html +++ b/pkg/ui/templates/stores.html @@ -18,7 +18,7 @@

Unknown Type

Announced LabelSets Min Time Max Time - Last Health Check + Last Successful Health Check Last Message diff --git a/pkg/ui/ui.go b/pkg/ui/ui.go index 9c11837ac5f..b8f4ce57390 100644 --- a/pkg/ui/ui.go +++ b/pkg/ui/ui.go @@ -5,7 +5,6 @@ package ui import ( "bytes" - "fmt" "html/template" "net/http" "net/url" @@ -16,6 +15,7 @@ import ( "github.com/go-kit/kit/log" "github.com/go-kit/kit/log/level" + "github.com/pkg/errors" "github.com/prometheus/common/route" "github.com/prometheus/common/version" "github.com/thanos-io/thanos/pkg/component" @@ -38,19 +38,20 @@ var ( ) type BaseUI struct { - logger log.Logger - menuTmpl string - tmplFuncs template.FuncMap - flagsMap map[string]string - component component.Component + logger log.Logger + menuTmpl string + tmplFuncs template.FuncMap + externalPrefix, prefixHeader string + component component.Component } -func NewBaseUI(logger log.Logger, menuTmpl string, funcMap template.FuncMap, flagsMap map[string]string, component component.Component) *BaseUI { +func NewBaseUI(logger log.Logger, menuTmpl string, funcMap template.FuncMap, externalPrefix, prefixHeader string, component component.Component) *BaseUI { funcMap["pathPrefix"] = func() string { return "" } funcMap["buildVersion"] = func() string { return version.Revision } - return &BaseUI{logger: logger, menuTmpl: menuTmpl, tmplFuncs: funcMap, flagsMap: flagsMap, component: component} + return &BaseUI{logger: logger, menuTmpl: menuTmpl, tmplFuncs: funcMap, externalPrefix: externalPrefix, prefixHeader: prefixHeader, component: component} } + func (bu *BaseUI) serveStaticAsset(w http.ResponseWriter, req *http.Request) { fp := route.Param(req.Context(), "filepath") fp = filepath.Join("pkg/ui/static", fp) @@ -77,7 +78,7 @@ func (bu *BaseUI) serveReactIndex(index string, w http.ResponseWriter, req *http w.WriteHeader(http.StatusNotFound) return } - prefix := GetWebPrefix(bu.logger, bu.flagsMap, req) + prefix := GetWebPrefix(bu.logger, bu.externalPrefix, bu.prefixHeader, req) tmpl, err := template.New("").Funcs(bu.tmplFuncs). Funcs(template.FuncMap{"pathPrefix": func() string { return prefix }}). @@ -121,15 +122,15 @@ func (bu *BaseUI) serveAsset(fp string, w http.ResponseWriter, req *http.Request func (bu *BaseUI) getTemplate(name string) (string, error) { baseTmpl, err := Asset("pkg/ui/templates/_base.html") if err != nil { - return "", fmt.Errorf("error reading base template: %s", err) + return "", errors.Errorf("error reading base template: %s", err) } menuTmpl, err := Asset(filepath.Join("pkg/ui/templates", bu.menuTmpl)) if err != nil { - return "", fmt.Errorf("error reading menu template %s: %s", bu.menuTmpl, err) + return "", errors.Errorf("error reading menu template %s: %s", bu.menuTmpl, err) } pageTmpl, err := Asset(filepath.Join("pkg/ui/templates", name)) if err != nil { - return "", fmt.Errorf("error reading page template %s: %s", name, err) + return "", errors.Errorf("error reading page template %s: %s", name, err) } return string(baseTmpl) + string(menuTmpl) + string(pageTmpl), nil } @@ -155,13 +156,13 @@ func (bu *BaseUI) executeTemplate(w http.ResponseWriter, name string, prefix str // GetWebPrefix sanitizes an external URL path prefix value. // A value provided by web.external-prefix flag is preferred over the one supplied through an HTTP header. -func GetWebPrefix(logger log.Logger, flagsMap map[string]string, r *http.Request) string { +func GetWebPrefix(logger log.Logger, externalPrefix, prefixHeader string, r *http.Request) string { // Ignore web.prefix-header value if web.external-prefix is defined. - if len(flagsMap["web.external-prefix"]) > 0 { - return flagsMap["web.external-prefix"] + if len(externalPrefix) > 0 { + return externalPrefix } - prefix := r.Header.Get(flagsMap["web.prefix-header"]) + prefix := r.Header.Get(prefixHeader) // Even if rfc2616 suggests that Location header "value consists of a single absolute URI", browsers // support relative location too. So for extra security, scheme and host parts are stripped from a dynamic prefix. diff --git a/pkg/verifier/duplicated_compaction.go b/pkg/verifier/duplicated_compaction.go index c7cd94b4a79..d5ccdb73c29 100644 --- a/pkg/verifier/duplicated_compaction.go +++ b/pkg/verifier/duplicated_compaction.go @@ -27,14 +27,14 @@ const DuplicatedCompactionIssueID = "duplicated_compaction" // until sync-delay passes. // The expected print of this are same overlapped blocks with exactly the same sources, time ranges and stats. // If repair is enabled, all but one duplicates are safely deleted. -func DuplicatedCompactionIssue(ctx context.Context, logger log.Logger, bkt objstore.Bucket, backupBkt objstore.Bucket, repair bool, idMatcher func(ulid.ULID) bool, fetcher *block.MetaFetcher) error { +func DuplicatedCompactionIssue(ctx context.Context, logger log.Logger, bkt objstore.Bucket, backupBkt objstore.Bucket, repair bool, idMatcher func(ulid.ULID) bool, fetcher block.MetadataFetcher, deleteDelay time.Duration, metrics *verifierMetrics) error { if idMatcher != nil { return errors.Errorf("id matching is not supported by issue %s verifier", DuplicatedCompactionIssueID) } level.Info(logger).Log("msg", "started verifying issue", "with-repair", repair, "issue", DuplicatedCompactionIssueID) - overlaps, err := fetchOverlaps(ctx, logger, bkt, fetcher) + overlaps, err := fetchOverlaps(ctx, fetcher) if err != nil { return errors.Wrap(err, DuplicatedCompactionIssueID) } @@ -84,7 +84,7 @@ func DuplicatedCompactionIssue(ctx context.Context, logger log.Logger, bkt objst } for i, id := range toKill { - if err := BackupAndDelete(ctx, logger, bkt, backupBkt, id); err != nil { + if err := BackupAndDelete(ctx, logger, bkt, backupBkt, id, deleteDelay, metrics.blocksMarkedForDeletion); err != nil { return err } level.Info(logger).Log("msg", "Removed duplicated block", "id", id, "to-be-removed", len(toKill)-(i+1), "removed", i+1, "issue", DuplicatedCompactionIssueID) diff --git a/pkg/verifier/index_issue.go b/pkg/verifier/index_issue.go index 828be214449..a6a5035ebe3 100644 --- a/pkg/verifier/index_issue.go +++ b/pkg/verifier/index_issue.go @@ -10,6 +10,7 @@ import ( "os" "path" "path/filepath" + "time" "github.com/thanos-io/thanos/pkg/block/metadata" @@ -28,7 +29,7 @@ const IndexIssueID = "index_issue" // If the replacement was created successfully it is uploaded to the bucket and the input // block is deleted. // NOTE: This also verifies all indexes against chunks mismatches and duplicates. -func IndexIssue(ctx context.Context, logger log.Logger, bkt objstore.Bucket, backupBkt objstore.Bucket, repair bool, idMatcher func(ulid.ULID) bool, fetcher *block.MetaFetcher) error { +func IndexIssue(ctx context.Context, logger log.Logger, bkt objstore.Bucket, backupBkt objstore.Bucket, repair bool, idMatcher func(ulid.ULID) bool, fetcher block.MetadataFetcher, deleteDelay time.Duration, metrics *verifierMetrics) error { level.Info(logger).Log("msg", "started verifying issue", "with-repair", repair, "issue", IndexIssueID) metas, _, err := fetcher.Fetch(ctx) @@ -115,7 +116,7 @@ func IndexIssue(ctx context.Context, logger log.Logger, bkt objstore.Bucket, bac } level.Info(logger).Log("msg", "safe deleting broken block", "id", id, "issue", IndexIssueID) - if err := BackupAndDeleteDownloaded(ctx, logger, filepath.Join(tmpdir, id.String()), bkt, backupBkt, id); err != nil { + if err := BackupAndDeleteDownloaded(ctx, logger, filepath.Join(tmpdir, id.String()), bkt, backupBkt, id, deleteDelay, metrics.blocksMarkedForDeletion); err != nil { return errors.Wrapf(err, "safe deleting old block %s failed", id) } level.Info(logger).Log("msg", "all good, continuing", "id", id, "issue", IndexIssueID) diff --git a/pkg/verifier/overlapped_blocks.go b/pkg/verifier/overlapped_blocks.go index 61e291ac783..ac767348786 100644 --- a/pkg/verifier/overlapped_blocks.go +++ b/pkg/verifier/overlapped_blocks.go @@ -6,6 +6,7 @@ package verifier import ( "context" "sort" + "time" "github.com/go-kit/kit/log" "github.com/go-kit/kit/log/level" @@ -21,14 +22,14 @@ const OverlappedBlocksIssueID = "overlapped_blocks" // OverlappedBlocksIssue checks bucket for blocks with overlapped time ranges. // No repair is available for this issue. -func OverlappedBlocksIssue(ctx context.Context, logger log.Logger, bkt objstore.Bucket, _ objstore.Bucket, repair bool, idMatcher func(ulid.ULID) bool, fetcher *block.MetaFetcher) error { +func OverlappedBlocksIssue(ctx context.Context, logger log.Logger, _ objstore.Bucket, _ objstore.Bucket, repair bool, idMatcher func(ulid.ULID) bool, fetcher block.MetadataFetcher, _ time.Duration, _ *verifierMetrics) error { if idMatcher != nil { return errors.Errorf("id matching is not supported by issue %s verifier", OverlappedBlocksIssueID) } level.Info(logger).Log("msg", "started verifying issue", "with-repair", repair, "issue", OverlappedBlocksIssueID) - overlaps, err := fetchOverlaps(ctx, logger, bkt, fetcher) + overlaps, err := fetchOverlaps(ctx, fetcher) if err != nil { return errors.Wrap(err, OverlappedBlocksIssueID) } @@ -48,7 +49,7 @@ func OverlappedBlocksIssue(ctx context.Context, logger log.Logger, bkt objstore. return nil } -func fetchOverlaps(ctx context.Context, logger log.Logger, bkt objstore.Bucket, fetcher *block.MetaFetcher) (map[string]tsdb.Overlaps, error) { +func fetchOverlaps(ctx context.Context, fetcher block.MetadataFetcher) (map[string]tsdb.Overlaps, error) { metas, _, err := fetcher.Fetch(ctx) if err != nil { return nil, err diff --git a/pkg/verifier/safe_delete.go b/pkg/verifier/safe_delete.go index b6c882cbc98..b124317e290 100644 --- a/pkg/verifier/safe_delete.go +++ b/pkg/verifier/safe_delete.go @@ -9,11 +9,13 @@ import ( "io/ioutil" "os" "path/filepath" + "time" "github.com/go-kit/kit/log" "github.com/go-kit/kit/log/level" "github.com/oklog/ulid" "github.com/pkg/errors" + "github.com/prometheus/client_golang/prometheus" "github.com/thanos-io/thanos/pkg/block" "github.com/thanos-io/thanos/pkg/objstore" ) @@ -32,10 +34,12 @@ func TSDBBlockExistsInBucket(ctx context.Context, bkt objstore.Bucket, id ulid.U } // BackupAndDelete moves a TSDB block to a backup bucket and on success removes -// it from the source bucket. It returns error if block dir already exists in +// it from the source bucket. If deleteDelay is zero, block is removed from source bucket. +// else the block is marked for deletion. +// It returns error if block dir already exists in // the backup bucket (blocks should be immutable) or if any of the operations // fail. -func BackupAndDelete(ctx context.Context, logger log.Logger, bkt, backupBkt objstore.Bucket, id ulid.ULID) error { +func BackupAndDelete(ctx context.Context, logger log.Logger, bkt, backupBkt objstore.Bucket, id ulid.ULID, deleteDelay time.Duration, blocksMarkedForDeletion prometheus.Counter) error { // Does this TSDB block exist in backupBkt already? found, err := TSDBBlockExistsInBucket(ctx, backupBkt, id) if err != nil { @@ -68,20 +72,29 @@ func BackupAndDelete(ctx context.Context, logger log.Logger, bkt, backupBkt objs } // Block uploaded, so we are ok to remove from src bucket. - level.Info(logger).Log("msg", "Deleting block", "id", id.String()) - if err := block.Delete(ctx, logger, bkt, id); err != nil { - return errors.Wrap(err, "delete from source") + if deleteDelay.Seconds() == 0 { + level.Info(logger).Log("msg", "Deleting block", "id", id.String()) + if err := block.Delete(ctx, logger, bkt, id); err != nil { + return errors.Wrap(err, "delete from source") + } + } + + level.Info(logger).Log("msg", "Marking block as deleted", "id", id.String()) + if err := block.MarkForDeletion(ctx, logger, bkt, id); err != nil { + return errors.Wrap(err, "marking delete from source") } + blocksMarkedForDeletion.Inc() return nil } // BackupAndDeleteDownloaded works much like BackupAndDelete in that it will -// move a TSDB block from a bucket to a backup bucket. The bdir parameter +// move a TSDB block from a bucket to a backup bucket. If deleteDelay param is zero, block is removed from source bucket. +// else the block is marked for deletion. The bdir parameter // points to the location on disk where the TSDB block was previously // downloaded allowing this function to avoid downloading the TSDB block from // the source bucket again. An error is returned if any operation fails. -func BackupAndDeleteDownloaded(ctx context.Context, logger log.Logger, bdir string, bkt, backupBkt objstore.Bucket, id ulid.ULID) error { +func BackupAndDeleteDownloaded(ctx context.Context, logger log.Logger, bdir string, bkt, backupBkt objstore.Bucket, id ulid.ULID, deleteDelay time.Duration, blocksMarkedForDeletion prometheus.Counter) error { // Does this TSDB block exist in backupBkt already? found, err := TSDBBlockExistsInBucket(ctx, backupBkt, id) if err != nil { @@ -97,11 +110,19 @@ func BackupAndDeleteDownloaded(ctx context.Context, logger log.Logger, bdir stri } // Block uploaded, so we are ok to remove from src bucket. - level.Info(logger).Log("msg", "Deleting block", "id", id.String()) - if err := block.Delete(ctx, logger, bkt, id); err != nil { - return errors.Wrap(err, "delete from source") + if deleteDelay.Seconds() == 0 { + level.Info(logger).Log("msg", "Deleting block", "id", id.String()) + if err := block.Delete(ctx, logger, bkt, id); err != nil { + return errors.Wrap(err, "delete from source") + } + return nil } + level.Info(logger).Log("msg", "Marking block as deleted", "id", id.String()) + if err := block.MarkForDeletion(ctx, logger, bkt, id); err != nil { + return errors.Wrap(err, "marking delete from source") + } + blocksMarkedForDeletion.Inc() return nil } diff --git a/pkg/verifier/verify.go b/pkg/verifier/verify.go index 06f54f97d36..6149a6450b4 100644 --- a/pkg/verifier/verify.go +++ b/pkg/verifier/verify.go @@ -5,6 +5,7 @@ package verifier import ( "context" + "time" "github.com/thanos-io/thanos/pkg/block" @@ -12,43 +13,66 @@ import ( "github.com/go-kit/kit/log/level" "github.com/oklog/ulid" "github.com/pkg/errors" + "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/thanos-io/thanos/pkg/objstore" ) +type verifierMetrics struct { + blocksMarkedForDeletion prometheus.Counter +} + +func newVerifierMetrics(reg prometheus.Registerer) *verifierMetrics { + var m verifierMetrics + + m.blocksMarkedForDeletion = promauto.With(reg).NewCounter(prometheus.CounterOpts{ + Name: "thanos_verify_blocks_marked_for_deletion_total", + Help: "Total number of blocks marked for deletion by verify.", + }) + + return &m +} + // Issue is an function that does verification and repair only if repair arg is true. // It should log affected blocks using warn level logs. It should be safe for issue to run on healthy bucket. -type Issue func(ctx context.Context, logger log.Logger, bkt objstore.Bucket, backupBkt objstore.Bucket, repair bool, idMatcher func(ulid.ULID) bool, fetcher *block.MetaFetcher) error +type Issue func(ctx context.Context, logger log.Logger, bkt objstore.Bucket, backupBkt objstore.Bucket, repair bool, idMatcher func(ulid.ULID) bool, fetcher block.MetadataFetcher, deleteDelay time.Duration, metrics *verifierMetrics) error // Verifier runs given issues to verify if bucket is healthy. type Verifier struct { - logger log.Logger - bkt objstore.Bucket - backupBkt objstore.Bucket - issues []Issue - repair bool - fetcher *block.MetaFetcher + logger log.Logger + bkt objstore.Bucket + backupBkt objstore.Bucket + issues []Issue + repair bool + fetcher block.MetadataFetcher + deleteDelay time.Duration + metrics *verifierMetrics } // New returns verifier that only logs affected blocks. -func New(logger log.Logger, bkt objstore.Bucket, fetcher *block.MetaFetcher, issues []Issue) *Verifier { +func New(logger log.Logger, reg prometheus.Registerer, bkt objstore.Bucket, fetcher block.MetadataFetcher, deleteDelay time.Duration, issues []Issue) *Verifier { return &Verifier{ - logger: logger, - bkt: bkt, - issues: issues, - fetcher: fetcher, - repair: false, + logger: logger, + bkt: bkt, + issues: issues, + fetcher: fetcher, + repair: false, + deleteDelay: deleteDelay, + metrics: newVerifierMetrics(reg), } } // NewWithRepair returns verifier that logs affected blocks and attempts to repair them. -func NewWithRepair(logger log.Logger, bkt objstore.Bucket, backupBkt objstore.Bucket, fetcher *block.MetaFetcher, issues []Issue) *Verifier { +func NewWithRepair(logger log.Logger, reg prometheus.Registerer, bkt objstore.Bucket, backupBkt objstore.Bucket, fetcher block.MetadataFetcher, deleteDelay time.Duration, issues []Issue) *Verifier { return &Verifier{ - logger: logger, - bkt: bkt, - backupBkt: backupBkt, - issues: issues, - fetcher: fetcher, - repair: true, + logger: logger, + bkt: bkt, + backupBkt: backupBkt, + issues: issues, + fetcher: fetcher, + repair: true, + deleteDelay: deleteDelay, + metrics: newVerifierMetrics(reg), } } @@ -67,7 +91,7 @@ func (v *Verifier) Verify(ctx context.Context, idMatcher func(ulid.ULID) bool) e // TODO(blotka): Wrap bucket with BucketWithMetrics and print metrics after each issue (e.g how many blocks where touched). // TODO(bplotka): Implement disk "bucket" to allow this verify to work on local disk space as well. for _, issueFn := range v.issues { - err := issueFn(ctx, v.logger, v.bkt, v.backupBkt, v.repair, idMatcher, v.fetcher) + err := issueFn(ctx, v.logger, v.bkt, v.backupBkt, v.repair, idMatcher, v.fetcher, v.deleteDelay, v.metrics) if err != nil { return errors.Wrap(err, "verify") } diff --git a/scripts/genflagdocs.sh b/scripts/genflagdocs.sh index 5393b311dc7..cfd09bbbb6e 100755 --- a/scripts/genflagdocs.sh +++ b/scripts/genflagdocs.sh @@ -40,7 +40,7 @@ for x in "${commands[@]}"; do ./thanos "${x}" --help &> "docs/components/flags/${x}.txt" done -bucketCommands=("verify" "ls" "inspect" "web") +bucketCommands=("verify" "ls" "inspect" "web" "replicate" "downsample") for x in "${bucketCommands[@]}"; do ./thanos bucket "${x}" --help &> "docs/components/flags/bucket_${x}.txt" done diff --git a/scripts/genproto.sh b/scripts/genproto.sh index 2df48ba70fc..c5660502a73 100755 --- a/scripts/genproto.sh +++ b/scripts/genproto.sh @@ -24,18 +24,21 @@ GO111MODULE=on go install "github.com/gogo/protobuf/protoc-gen-gogofast" GOGOPROTO_ROOT="$(GO111MODULE=on go list -f '{{ .Dir }}' -m github.com/gogo/protobuf)" GOGOPROTO_PATH="${GOGOPROTO_ROOT}:${GOGOPROTO_ROOT}/protobuf" -DIRS="pkg/store/storepb" +DIRS="pkg/store/storepb pkg/store/storepb/prompb" echo "generating code" for dir in ${DIRS}; do pushd ${dir} - ${PROTOC_BIN} --gogofast_out=plugins=grpc:. -I=. \ + ${PROTOC_BIN} --gogofast_out=plugins=grpc:. \ + -I=. \ -I="${GOGOPROTO_PATH}" \ - -I="../../../vendor" \ *.proto sed -i.bak -E 's/import _ \"gogoproto\"//g' *.pb.go sed -i.bak -E 's/import _ \"google\/protobuf\"//g' *.pb.go + # Hacky hack. + sed -i.bak -E 's/prompb \"prompb\"/prompb \"github.com\/thanos-io\/thanos\/pkg\/store\/storepb\/prompb\"/g' *.pb.go + rm -f *.bak ${GOIMPORTS_BIN} -w *.pb.go popd diff --git a/scripts/insecure_grpcurl_series.sh b/scripts/insecure_grpcurl_series.sh new file mode 100755 index 00000000000..2e6ad269fc6 --- /dev/null +++ b/scripts/insecure_grpcurl_series.sh @@ -0,0 +1,62 @@ +#!/usr/bin/env bash + +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" + +HELP=' +insecure_grpcurl_series.sh allows you to use call StoreAPI.Series gRPC method and receive streamed series in JSON format. + +Usage: + # Start some example Thanos component that exposes gRPC or use existing one. To start example one run: `thanos query &` + bash scripts/insecure_grpcurl_series.sh localhost:10901 '"'"'[{"type": 0, "name": "__name__", "value":"go_goroutines"}]'"'"' 0 10 +' + +STORE_API_HOSTPORT=$1 +if [ -z "${STORE_API_HOSTPORT}" ]; then + echo "\$1 is missing (STORE_API_HOSTPORT). Expected host:port string for the target StoreAPI to grpcurl against, e.g. localhost:10901" + echo "${HELP}" + exit 1 +fi + +REQUESTED_MATCHERS=$2 +if [ -z "${REQUESTED_MATCHERS}" ]; then + echo '$2 is missing (REQUESTED_MATCHERS). Expected matchers in form of JSON matchers: e.g [{"type": 0, "name": "__name__", "value":"go_goroutines"}]' + echo "${HELP}" + exit 1 +fi + +REQUESTED_MIN_TIME=$3 +if [ -z "${REQUESTED_MIN_TIME}" ]; then + echo '$3 is missing (REQUESTED_MIN_TIME). Expected min time in unix_timestamp.' + echo "${HELP}" + exit 1 +fi + +REQUESTED_MAX_TIME=$4 +if [ -z "${REQUESTED_MAX_TIME}" ]; then + echo '$4 is missing (REQUESTED_MAX_TIME). Expected max time in unix_timestamp.' + echo "${HELP}" + exit 1 +fi + +go install github.com/fullstorydev/grpcurl/cmd/grpcurl + +SERIES_REQUEST='{ + "min_time": '${REQUESTED_MIN_TIME}', + "max_time": '${REQUESTED_MAX_TIME}', + "matchers": '${REQUESTED_MATCHERS}', + "max_resolution_window": 0, + "aggregates": [], + "partial_response_strategy": 0, + "skip_chunks": false +}' + +GOGOPROTO_ROOT="$(GO111MODULE=on go list -f '{{ .Dir }}' -m github.com/gogo/protobuf)" + +pushd ${DIR}/../pkg/store/storepb/ +grpcurl \ + -import-path="${GOGOPROTO_ROOT}" \ + -import-path=. \ + -proto=rpc.proto \ + -plaintext \ + -d="${SERIES_REQUEST}" "${STORE_API_HOSTPORT}" thanos.Store/Series +popd diff --git a/scripts/quickstart.sh b/scripts/quickstart.sh index bde47d9bfdf..898455bc2cb 100755 --- a/scripts/quickstart.sh +++ b/scripts/quickstart.sh @@ -166,7 +166,6 @@ if [ -n "${REMOTE_WRITE_ENABLED}" ]; then ${THANOS_EXECUTABLE} receive \ --debug.name receive \ --log.level debug \ - --log.level debug \ --tsdb.path "./data/remote-write-receive-data" \ --grpc-address 0.0.0.0:10907 \ --grpc-grace-period 1s \ @@ -199,6 +198,15 @@ fi sleep 0.5 +QUERIER_JAEGER_CONFIG=$(cat <<-EOF +type: JAEGER +config: + service_name: thanos-query + sampler_type: ratelimiting + sampler_param: 2 +EOF +) + # Start two query nodes. for i in $(seq 0 1); do ${THANOS_EXECUTABLE} query \ @@ -209,6 +217,7 @@ for i in $(seq 0 1); do --http-address 0.0.0.0:109${i}4 \ --http-grace-period 1s \ --query.replica-label prometheus \ + --tracing.config="${QUERIER_JAEGER_CONFIG}" \ ${STORES} & done diff --git a/test/e2e/compact_test.go b/test/e2e/compact_test.go new file mode 100644 index 00000000000..5e4b601dcff --- /dev/null +++ b/test/e2e/compact_test.go @@ -0,0 +1,469 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +package e2e_test + +import ( + "context" + "fmt" + "net/http" + "os" + "path" + "path/filepath" + "testing" + "time" + + "github.com/cortexproject/cortex/integration/e2e" + e2edb "github.com/cortexproject/cortex/integration/e2e/db" + "github.com/go-kit/kit/log" + "github.com/oklog/ulid" + "github.com/prometheus/common/model" + "github.com/prometheus/prometheus/pkg/labels" + "github.com/prometheus/prometheus/pkg/timestamp" + "github.com/thanos-io/thanos/pkg/objstore" + "github.com/thanos-io/thanos/pkg/objstore/client" + "github.com/thanos-io/thanos/pkg/objstore/s3" + "github.com/thanos-io/thanos/pkg/promclient" + "github.com/thanos-io/thanos/pkg/testutil" + "github.com/thanos-io/thanos/pkg/testutil/e2eutil" + "github.com/thanos-io/thanos/test/e2e/e2ethanos" +) + +func TestCompactWithStoreGateway(t *testing.T) { + t.Parallel() + + l := log.NewLogfmtLogger(os.Stdout) + type blockDesc struct { + series []labels.Labels + extLset labels.Labels + mint int64 + maxt int64 + } + + delay := 30 * time.Minute + // Make sure to take realistic timestamp for start. This is to align blocks as if they would be aligned on Prometheus. + // To have deterministic compaction, let's have fixed date: + now, err := time.Parse(time.RFC3339, "2020-03-24T08:00:00Z") + testutil.Ok(t, err) + + // Simulate real scenario, including more complex cases like overlaps if needed. + // TODO(bwplotka): Add blocks to downsample and test delayed delete. + blocks := []blockDesc{ + // Non overlapping blocks, not ready for compaction. + { + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("case", "no-compaction", "replica", "1"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + }, + { + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("case", "no-compaction", "replica", "1"), + mint: timestamp.FromTime(now.Add(2 * time.Hour)), + maxt: timestamp.FromTime(now.Add(4 * time.Hour)), + }, + { + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("case", "no-compaction", "replica", "1"), + mint: timestamp.FromTime(now.Add(4 * time.Hour)), + maxt: timestamp.FromTime(now.Add(6 * time.Hour)), + }, + } + blocks = append(blocks, + // Non overlapping blocks, ready for compaction. + blockDesc{ + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("case", "compaction-ready", "replica", "1"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + }, + blockDesc{ + series: []labels.Labels{labels.FromStrings("a", "1", "b", "3")}, + extLset: labels.FromStrings("case", "compaction-ready", "replica", "1"), + mint: timestamp.FromTime(now.Add(2 * time.Hour)), + maxt: timestamp.FromTime(now.Add(4 * time.Hour)), + }, + blockDesc{ + series: []labels.Labels{labels.FromStrings("a", "1", "b", "4")}, + extLset: labels.FromStrings("case", "compaction-ready", "replica", "1"), + mint: timestamp.FromTime(now.Add(4 * time.Hour)), + maxt: timestamp.FromTime(now.Add(6 * time.Hour)), + }, + blockDesc{ + series: []labels.Labels{labels.FromStrings("a", "1", "b", "5")}, + extLset: labels.FromStrings("case", "compaction-ready", "replica", "1"), + mint: timestamp.FromTime(now.Add(6 * time.Hour)), + maxt: timestamp.FromTime(now.Add(8 * time.Hour)), + }, + blockDesc{ + series: []labels.Labels{labels.FromStrings("a", "1", "b", "6")}, + extLset: labels.FromStrings("case", "compaction-ready", "replica", "1"), + mint: timestamp.FromTime(now.Add(8 * time.Hour)), + maxt: timestamp.FromTime(now.Add(10 * time.Hour)), + }, + + // Non overlapping blocks, ready for compaction, only after deduplication. + blockDesc{ + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("case", "compaction-ready-after-dedup", "replica", "1"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + }, + blockDesc{ + series: []labels.Labels{labels.FromStrings("a", "1", "b", "3")}, + extLset: labels.FromStrings("case", "compaction-ready-after-dedup", "replica", "1"), + mint: timestamp.FromTime(now.Add(2 * time.Hour)), + maxt: timestamp.FromTime(now.Add(4 * time.Hour)), + }, + blockDesc{ + series: []labels.Labels{labels.FromStrings("a", "1", "b", "4")}, + extLset: labels.FromStrings("case", "compaction-ready-after-dedup", "replica", "1"), + mint: timestamp.FromTime(now.Add(4 * time.Hour)), + maxt: timestamp.FromTime(now.Add(6 * time.Hour)), + }, + blockDesc{ + series: []labels.Labels{labels.FromStrings("a", "1", "b", "5")}, + extLset: labels.FromStrings("case", "compaction-ready-after-dedup", "replica", "2"), + mint: timestamp.FromTime(now.Add(6 * time.Hour)), + maxt: timestamp.FromTime(now.Add(8 * time.Hour)), + }, + blockDesc{ + series: []labels.Labels{labels.FromStrings("a", "1", "b", "6")}, + extLset: labels.FromStrings("case", "compaction-ready-after-dedup", "replica", "1"), + mint: timestamp.FromTime(now.Add(8 * time.Hour)), + maxt: timestamp.FromTime(now.Add(10 * time.Hour)), + }, + + // Replica partial overlapping blocks, not ready for compaction, among no-overlapping blocks. + // NOTE: We put a- in front to make sure this will be compacted as first one (: + blockDesc{ + series: []labels.Labels{ + labels.FromStrings("a", "1", "b", "1"), + labels.FromStrings("a", "1", "b", "2"), + }, + extLset: labels.FromStrings("case", "a-partial-overlap-dedup-ready", "replica", "1"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + }, + blockDesc{ + series: []labels.Labels{ + labels.FromStrings("a", "1", "b", "2"), + labels.FromStrings("a", "1", "b", "3"), + }, + extLset: labels.FromStrings("case", "a-partial-overlap-dedup-ready", "replica", "2"), + mint: timestamp.FromTime(now.Add(1 * time.Hour)), + maxt: timestamp.FromTime(now.Add(4 * time.Hour)), + }, + blockDesc{ + series: []labels.Labels{ + labels.FromStrings("a", "1", "b", "2"), + labels.FromStrings("a", "1", "b", "4"), + }, + extLset: labels.FromStrings("case", "a-partial-overlap-dedup-ready", "replica", "3"), + mint: timestamp.FromTime(now.Add(3 * time.Hour)), + maxt: timestamp.FromTime(now.Add(4 * time.Hour)), + }, + // Extra. + blockDesc{ + series: []labels.Labels{ + labels.FromStrings("a", "1", "b", "2"), + labels.FromStrings("a", "1", "b", "5"), + }, + extLset: labels.FromStrings("case", "a-partial-overlap-dedup-ready", "replica", "1"), + mint: timestamp.FromTime(now.Add(4 * time.Hour)), + maxt: timestamp.FromTime(now.Add(6 * time.Hour)), + }, + + // Multi-Replica partial overlapping blocks, not ready for compaction, among no-overlapping blocks. + blockDesc{ + series: []labels.Labels{ + labels.FromStrings("a", "1", "b", "1"), + labels.FromStrings("a", "1", "b", "2"), + }, + extLset: labels.FromStrings("case", "partial-multi-replica-overlap-dedup-ready", "rule_replica", "1", "replica", "1"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + }, + blockDesc{ + series: []labels.Labels{ + labels.FromStrings("a", "1", "b", "2"), + labels.FromStrings("a", "1", "b", "3"), + }, + extLset: labels.FromStrings("case", "partial-multi-replica-overlap-dedup-ready", "rule_replica", "2", "replica", "1"), + mint: timestamp.FromTime(now.Add(1 * time.Hour)), + maxt: timestamp.FromTime(now.Add(4 * time.Hour)), + }, + blockDesc{ + series: []labels.Labels{ + labels.FromStrings("a", "1", "b", "2"), + labels.FromStrings("a", "1", "b", "4"), + }, + // TODO(bwplotka): This is wrong, but let's fix in next PR. We should error out in this case as we should + // never support overlaps before we modify dedup labels. This probably means another check in fetcher. + extLset: labels.FromStrings("case", "partial-multi-replica-overlap-dedup-ready", "rule_replica", "1", "replica", "1"), + mint: timestamp.FromTime(now.Add(1 * time.Hour)), + maxt: timestamp.FromTime(now.Add(4 * time.Hour)), + }, + // Extra. + blockDesc{ + series: []labels.Labels{ + labels.FromStrings("a", "1", "b", "2"), + labels.FromStrings("a", "1", "b", "5"), + }, + extLset: labels.FromStrings("case", "partial-multi-replica-overlap-dedup-ready", "rule_replica", "1", "replica", "1"), + mint: timestamp.FromTime(now.Add(4 * time.Hour)), + maxt: timestamp.FromTime(now.Add(6 * time.Hour)), + }, + + // Replica full overlapping blocks, not ready for compaction, among no-overlapping blocks. + blockDesc{ + series: []labels.Labels{ + labels.FromStrings("a", "1", "b", "1"), + labels.FromStrings("a", "1", "b", "2"), + }, + extLset: labels.FromStrings("case", "full-replica-overlap-dedup-ready", "replica", "1"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + }, + blockDesc{ + series: []labels.Labels{ + labels.FromStrings("a", "1", "b", "2"), + labels.FromStrings("a", "1", "b", "3"), + }, + extLset: labels.FromStrings("case", "full-replica-overlap-dedup-ready", "replica", "2"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + }, + // Extra. + blockDesc{ + series: []labels.Labels{ + labels.FromStrings("a", "1", "b", "2"), + labels.FromStrings("a", "1", "b", "4"), + }, + extLset: labels.FromStrings("case", "full-replica-overlap-dedup-ready", "replica", "1"), + mint: timestamp.FromTime(now.Add(2 * time.Hour)), + maxt: timestamp.FromTime(now.Add(4 * time.Hour)), + }, + blockDesc{ + series: []labels.Labels{ + labels.FromStrings("a", "1", "b", "2"), + labels.FromStrings("a", "1", "b", "5"), + }, + extLset: labels.FromStrings("case", "full-replica-overlap-dedup-ready", "replica", "1"), + mint: timestamp.FromTime(now.Add(4 * time.Hour)), + maxt: timestamp.FromTime(now.Add(6 * time.Hour)), + }, + ) + + s, err := e2e.NewScenario("e2e_test_compact") + testutil.Ok(t, err) + defer s.Close() // TODO(kakkoyun): Change with t.CleanUp after go 1.14 update. + + dir := filepath.Join(s.SharedDir(), "tmp") + testutil.Ok(t, os.MkdirAll(dir, os.ModePerm)) + + const bucket = "compact_test" + m := e2edb.NewMinio(8080, bucket) + testutil.Ok(t, s.StartAndWaitReady(m)) + + bkt, err := s3.NewBucketWithConfig(l, s3.Config{ + Bucket: bucket, + AccessKey: e2edb.MinioAccessKey, + SecretKey: e2edb.MinioSecretKey, + Endpoint: m.HTTPEndpoint(), // We need separate client config, when connecting to minio from outside. + Insecure: true, + }, "test-feed") + testutil.Ok(t, err) + + ctx, cancel := context.WithTimeout(context.Background(), 90*time.Second) + defer cancel() // TODO(kakkoyun): Change with t.CleanUp after go 1.14 update. + + rawBlockIDs := map[ulid.ULID]struct{}{} + for _, b := range blocks { + id, err := e2eutil.CreateBlockWithBlockDelay(ctx, dir, b.series, 120, b.mint, b.maxt, delay, b.extLset, 0) + testutil.Ok(t, err) + testutil.Ok(t, objstore.UploadDir(ctx, l, bkt, path.Join(dir, id.String()), id.String())) + rawBlockIDs[id] = struct{}{} + } + + svcConfig := client.BucketConfig{ + Type: client.S3, + Config: s3.Config{ + Bucket: bucket, + AccessKey: e2edb.MinioAccessKey, + SecretKey: e2edb.MinioSecretKey, + Endpoint: m.NetworkHTTPEndpoint(), + Insecure: true, + }, + } + str, err := e2ethanos.NewStoreGW(s.SharedDir(), "1", svcConfig) + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(str)) + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(float64(len(rawBlockIDs))), "thanos_blocks_meta_synced")) + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_sync_failures_total")) + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_modified")) + + q, err := e2ethanos.NewQuerier(s.SharedDir(), "1", []string{str.GRPCNetworkEndpoint()}, nil) + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(q)) + + ctx, cancel = context.WithTimeout(context.Background(), 3*time.Minute) + defer cancel() + + // Check if query detects current series, even if overlapped. + queryAndAssert(t, ctx, q.HTTPEndpoint(), + fmt.Sprintf(`count_over_time({a="1"}[13h] offset %ds)`, int64(time.Since(now.Add(12*time.Hour)).Seconds())), + promclient.QueryOptions{ + Deduplicate: false, // This should be false, so that we can be sure deduplication was offline. + }, + model.Vector{ + {Value: 360, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "no-compaction", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "compaction-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "compaction-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "compaction-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "compaction-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "6", "case": "compaction-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "compaction-ready-after-dedup", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "compaction-ready-after-dedup", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "compaction-ready-after-dedup", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "compaction-ready-after-dedup", "replica": "2"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "6", "case": "compaction-ready-after-dedup", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "1", "case": "a-partial-overlap-dedup-ready", "replica": "1"}}, + {Value: 240, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "a-partial-overlap-dedup-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "a-partial-overlap-dedup-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "a-partial-overlap-dedup-ready", "replica": "2"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "a-partial-overlap-dedup-ready", "replica": "2"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "a-partial-overlap-dedup-ready", "replica": "3"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "a-partial-overlap-dedup-ready", "replica": "3"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "1", "case": "partial-multi-replica-overlap-dedup-ready", "replica": "1", "rule_replica": "1"}}, + {Value: 320, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "partial-multi-replica-overlap-dedup-ready", "replica": "1", "rule_replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "partial-multi-replica-overlap-dedup-ready", "replica": "1", "rule_replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "partial-multi-replica-overlap-dedup-ready", "replica": "1", "rule_replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "partial-multi-replica-overlap-dedup-ready", "replica": "1", "rule_replica": "2"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "partial-multi-replica-overlap-dedup-ready", "replica": "1", "rule_replica": "2"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "1", "case": "full-replica-overlap-dedup-ready", "replica": "1"}}, + {Value: 360, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "full-replica-overlap-dedup-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "full-replica-overlap-dedup-ready", "replica": "2"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "full-replica-overlap-dedup-ready", "replica": "2"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "full-replica-overlap-dedup-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "full-replica-overlap-dedup-ready", "replica": "1"}}, + }, + ) + + t.Run("no replica label with overlaps should halt compactor", func(t *testing.T) { + c, err := e2ethanos.NewCompactor(s.SharedDir(), "expect-to-halt", svcConfig, nil) + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(c)) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(float64(len(rawBlockIDs))), "thanos_blocks_meta_synced")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_sync_failures_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_modified")) + + // Expect compactor halted. + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(1), "thanos_compactor_halted")) + + // We expect no ops. + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compactor_iterations_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compactor_blocks_cleaned_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compactor_blocks_marked_for_deletion_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_group_compactions_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_group_vertical_compactions_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(1), "thanos_compact_group_compactions_failures_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(3), "thanos_compact_group_compaction_runs_started_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(2), "thanos_compact_group_compaction_runs_completed_total")) + + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_downsample_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_downsample_failures_total")) + + // Ensure bucket UI. + ensureGETStatusCode(t, http.StatusOK, "http://"+path.Join(c.HTTPEndpoint(), "global")) + ensureGETStatusCode(t, http.StatusOK, "http://"+path.Join(c.HTTPEndpoint(), "loaded")) + + testutil.Ok(t, s.Stop(c)) + }) + t.Run("native vertical deduplication should kick in", func(t *testing.T) { + c, err := e2ethanos.NewCompactor(s.SharedDir(), "working", svcConfig, nil, "--deduplication.replica-label=replica", "--deduplication.replica-label=rule_replica") + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(c)) + + // NOTE: We cannot assert on intermediate `thanos_blocks_meta_` metrics as those are gauge and change dynamically due to many + // compaction groups. Wait for at least first compaction iteration (next is in 5m). + testutil.Ok(t, c.WaitSumMetrics(e2e.Greater(0), "thanos_compactor_iterations_total")) + + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(16), "thanos_compactor_blocks_cleaned_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(16), "thanos_compactor_blocks_marked_for_deletion_total")) + + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(5), "thanos_compact_group_compactions_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(3), "thanos_compact_group_vertical_compactions_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_group_compactions_failures_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(12), "thanos_compact_group_compaction_runs_started_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(12), "thanos_compact_group_compaction_runs_completed_total")) + + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_downsample_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_downsample_failures_total")) + + // We had 8 deletions based on 3 compactios, so 3 new blocks. + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(float64(len(rawBlockIDs)-16+5)), "thanos_blocks_meta_synced")) + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_sync_failures_total")) + + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compactor_halted")) + // Make sure compactor does not modify anything else over time. + testutil.Ok(t, s.Stop(c)) + + ctx, cancel = context.WithTimeout(context.Background(), 3*time.Minute) + defer cancel() + + // Check if query detects new blocks. + queryAndAssert(t, ctx, q.HTTPEndpoint(), + fmt.Sprintf(`count_over_time({a="1"}[13h] offset %ds)`, int64(time.Since(now.Add(12*time.Hour)).Seconds())), + promclient.QueryOptions{ + Deduplicate: false, // This should be false, so that we can be sure deduplication was offline. + }, + model.Vector{ + // NOTE(bwplotka): Even after deduplication some series has still replica labels. This is because those blocks did not overlap yet with anything. + // This is fine as querier deduplication will remove it if needed. + {Value: 360, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "no-compaction", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "compaction-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "compaction-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "compaction-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "compaction-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "6", "case": "compaction-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "compaction-ready-after-dedup"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "compaction-ready-after-dedup"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "compaction-ready-after-dedup"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "compaction-ready-after-dedup"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "6", "case": "compaction-ready-after-dedup", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "1", "case": "a-partial-overlap-dedup-ready"}}, + {Value: 360, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "a-partial-overlap-dedup-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "a-partial-overlap-dedup-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "a-partial-overlap-dedup-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "a-partial-overlap-dedup-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "a-partial-overlap-dedup-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "1", "case": "partial-multi-replica-overlap-dedup-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "partial-multi-replica-overlap-dedup-ready", "replica": "1", "rule_replica": "1"}}, + {Value: 240, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "partial-multi-replica-overlap-dedup-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "partial-multi-replica-overlap-dedup-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "partial-multi-replica-overlap-dedup-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "partial-multi-replica-overlap-dedup-ready", "replica": "1", "rule_replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "1", "case": "full-replica-overlap-dedup-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "full-replica-overlap-dedup-ready"}}, + {Value: 240, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "full-replica-overlap-dedup-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "full-replica-overlap-dedup-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "full-replica-overlap-dedup-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "full-replica-overlap-dedup-ready", "replica": "1"}}, + }, + ) + + // Store view: + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(float64(len(rawBlockIDs)-16+5)), "thanos_blocks_meta_synced")) + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_sync_failures_total")) + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_modified")) + }) +} + +func ensureGETStatusCode(t testing.TB, code int, url string) { + t.Helper() + + r, err := http.Get(url) + testutil.Ok(t, err) + testutil.Equals(t, code, r.StatusCode) +} diff --git a/test/e2e/e2ethanos/service.go b/test/e2e/e2ethanos/service.go new file mode 100644 index 00000000000..e9ada58150f --- /dev/null +++ b/test/e2e/e2ethanos/service.go @@ -0,0 +1,38 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +package e2ethanos + +import ( + "github.com/cortexproject/cortex/integration/e2e" +) + +type Service struct { + *e2e.HTTPService + + grpc int +} + +func NewService( + name string, + image string, + command *e2e.Command, + readiness *e2e.ReadinessProbe, + http, grpc int, + otherPorts ...int, +) *Service { + return &Service{ + HTTPService: e2e.NewHTTPService(name, image, command, readiness, http, append(otherPorts, grpc)...), + grpc: grpc, + } +} + +func (s *Service) GRPCEndpoint() string { return s.Endpoint(s.grpc) } + +func (s *Service) GRPCNetworkEndpoint() string { + return s.NetworkEndpoint(s.grpc) +} + +func (s *Service) GRPCNetworkEndpointFor(networkName string) string { + return s.NetworkEndpointFor(networkName, s.grpc) +} diff --git a/test/e2e/e2ethanos/services.go b/test/e2e/e2ethanos/services.go new file mode 100644 index 00000000000..c014a36d7b8 --- /dev/null +++ b/test/e2e/e2ethanos/services.go @@ -0,0 +1,387 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +package e2ethanos + +import ( + "encoding/json" + "fmt" + "io/ioutil" + "os" + "path/filepath" + "strconv" + "time" + + "github.com/cortexproject/cortex/integration/e2e" + "github.com/cortexproject/cortex/pkg/util" + "github.com/pkg/errors" + "github.com/prometheus/common/model" + "github.com/prometheus/prometheus/discovery/targetgroup" + "github.com/prometheus/prometheus/pkg/relabel" + "github.com/thanos-io/thanos/pkg/alert" + "github.com/thanos-io/thanos/pkg/objstore/client" + "github.com/thanos-io/thanos/pkg/query" + "github.com/thanos-io/thanos/pkg/receive" + "gopkg.in/yaml.v2" +) + +const logLevel = "info" + +// Same as default for now. +var defaultBackoffConfig = util.BackoffConfig{ + MinBackoff: 300 * time.Millisecond, + MaxBackoff: 600 * time.Millisecond, + MaxRetries: 50, +} + +// TODO(bwplotka): Run against multiple? +func DefaultPrometheusImage() string { + return "quay.io/prometheus/prometheus:v2.16.0" +} + +func DefaultAlertmanagerImage() string { + return "quay.io/prometheus/alertmanager:v0.20.0" +} + +// DefaultImage returns the local docker image to use to run Thanos. +func DefaultImage() string { + // Get the Thanos image from the THANOS_IMAGE env variable. + if os.Getenv("THANOS_IMAGE") != "" { + return os.Getenv("THANOS_IMAGE") + } + + return "thanos" +} + +func NewPrometheus(sharedDir string, name string, config, promImage string) (*e2e.HTTPService, string, error) { + dir := filepath.Join(sharedDir, "data", "prometheus", name) + container := filepath.Join(e2e.ContainerSharedDir, "data", "prometheus", name) + if err := os.MkdirAll(dir, 0777); err != nil { + return nil, "", errors.Wrap(err, "create prometheus dir") + } + + if err := ioutil.WriteFile(filepath.Join(dir, "prometheus.yml"), []byte(config), 0666); err != nil { + return nil, "", errors.Wrap(err, "creating prom config failed") + } + + prom := e2e.NewHTTPService( + fmt.Sprintf("prometheus-%s", name), + promImage, + e2e.NewCommandWithoutEntrypoint("prometheus", e2e.BuildArgs(map[string]string{ + "--config.file": filepath.Join(container, "prometheus.yml"), + "--storage.tsdb.path": container, + "--storage.tsdb.max-block-duration": "2h", + "--log.level": logLevel, + "--web.listen-address": ":9090", + })...), + e2e.NewReadinessProbe(9090, "/-/ready", 200), + 9090, + ) + prom.SetUser("root") + prom.SetBackoff(defaultBackoffConfig) + + return prom, container, nil +} + +func NewPrometheusWithSidecar(sharedDir string, netName string, name string, config, promImage string) (*e2e.HTTPService, *Service, error) { + prom, dataDir, err := NewPrometheus(sharedDir, name, config, promImage) + if err != nil { + return nil, nil, err + } + prom.SetBackoff(defaultBackoffConfig) + + sidecar := NewService( + fmt.Sprintf("sidecar-%s", name), + DefaultImage(), + e2e.NewCommand("sidecar", e2e.BuildArgs(map[string]string{ + "--debug.name": fmt.Sprintf("sidecar-%v", name), + "--grpc-address": ":9091", + "--grpc-grace-period": "0s", + "--http-address": ":80", + "--prometheus.url": "http://" + prom.NetworkEndpointFor(netName, 9090), + "--tsdb.path": dataDir, + "--log.level": logLevel, + })...), + e2e.NewReadinessProbe(80, "/-/ready", 200), + 80, + 9091, + ) + sidecar.SetBackoff(defaultBackoffConfig) + + return prom, sidecar, nil +} + +func NewQuerier(sharedDir string, name string, storeAddresses []string, fileSDStoreAddresses []string) (*Service, error) { + const replicaLabel = "replica" + + args := e2e.BuildArgs(map[string]string{ + "--debug.name": fmt.Sprintf("querier-%v", name), + "--grpc-address": ":9091", + "--grpc-grace-period": "0s", + "--http-address": ":80", + "--query.replica-label": replicaLabel, + "--store.sd-dns-interval": "5s", + "--log.level": logLevel, + "--query.max-concurrent": "1", + "--store.sd-interval": "5s", + }) + for _, addr := range storeAddresses { + args = append(args, "--store="+addr) + } + + if len(fileSDStoreAddresses) > 0 { + queryFileSDDir := filepath.Join(sharedDir, "data", "querier", name) + container := filepath.Join(e2e.ContainerSharedDir, "data", "querier", name) + if err := os.MkdirAll(queryFileSDDir, 0777); err != nil { + return nil, errors.Wrap(err, "create query dir failed") + } + + fileSD := []*targetgroup.Group{{}} + for _, a := range fileSDStoreAddresses { + fileSD[0].Targets = append(fileSD[0].Targets, model.LabelSet{model.AddressLabel: model.LabelValue(a)}) + } + + b, err := yaml.Marshal(fileSD) + if err != nil { + return nil, err + } + + if err := ioutil.WriteFile(queryFileSDDir+"/filesd.yaml", b, 0666); err != nil { + return nil, errors.Wrap(err, "creating query SD config failed") + } + + args = append(args, "--store.sd-files="+filepath.Join(container, "filesd.yaml")) + } + + querier := NewService( + fmt.Sprintf("querier-%v", name), + DefaultImage(), + e2e.NewCommand("query", args...), + e2e.NewReadinessProbe(80, "/-/ready", 200), + 80, + 9091, + ) + querier.SetBackoff(defaultBackoffConfig) + + return querier, nil +} + +func RemoteWriteEndpoint(addr string) string { return fmt.Sprintf("http://%s/api/v1/receive", addr) } + +func NewReceiver(sharedDir string, networkName string, name string, replicationFactor int, hashring ...receive.HashringConfig) (*Service, error) { + localEndpoint := NewService(fmt.Sprintf("receive-%v", name), "", e2e.NewCommand("", ""), nil, 80, 9091, 81).GRPCNetworkEndpointFor(networkName) + if len(hashring) == 0 { + hashring = []receive.HashringConfig{{Endpoints: []string{localEndpoint}}} + } + + dir := filepath.Join(sharedDir, "data", "receive", name) + container := filepath.Join(e2e.ContainerSharedDir, "data", "receive", name) + if err := os.MkdirAll(dir, 0777); err != nil { + return nil, errors.Wrap(err, "create receive dir") + } + b, err := json.Marshal(hashring) + if err != nil { + return nil, errors.Wrapf(err, "generate hashring file: %v", hashring) + } + + if err := ioutil.WriteFile(filepath.Join(dir, "hashrings.json"), b, 0666); err != nil { + return nil, errors.Wrap(err, "creating receive config") + } + + receiver := NewService( + fmt.Sprintf("receive-%v", name), + DefaultImage(), + // TODO(bwplotka): BuildArgs should be interface. + e2e.NewCommand("receive", e2e.BuildArgs(map[string]string{ + "--debug.name": fmt.Sprintf("receive-%v", name), + "--grpc-address": ":9091", + "--grpc-grace-period": "0s", + "--http-address": ":80", + "--remote-write.address": ":81", + "--label": fmt.Sprintf(`receive="%s"`, name), + "--tsdb.path": container, + "--log.level": logLevel, + "--receive.replication-factor": strconv.Itoa(replicationFactor), + "--receive.local-endpoint": localEndpoint, + "--receive.hashrings-file": filepath.Join(container, "hashrings.json"), + "--receive.hashrings-file-refresh-interval": "5s", + })...), + e2e.NewReadinessProbe(80, "/-/ready", 200), + 80, + 9091, + 81, + ) + receiver.SetBackoff(defaultBackoffConfig) + + return receiver, nil +} + +func NewRuler(sharedDir string, name string, ruleSubDir string, amCfg []alert.AlertmanagerConfig, queryCfg []query.Config) (*Service, error) { + dir := filepath.Join(sharedDir, "data", "rule", name) + container := filepath.Join(e2e.ContainerSharedDir, "data", "rule", name) + if err := os.MkdirAll(dir, 0777); err != nil { + return nil, errors.Wrap(err, "create rule dir") + } + + amCfgBytes, err := yaml.Marshal(alert.AlertingConfig{ + Alertmanagers: amCfg, + }) + if err != nil { + return nil, errors.Wrapf(err, "generate am file: %v", amCfg) + } + + queryCfgBytes, err := yaml.Marshal(queryCfg) + if err != nil { + return nil, errors.Wrapf(err, "generate query file: %v", queryCfg) + } + + ruler := NewService( + fmt.Sprintf("rule-%v", name), + DefaultImage(), + e2e.NewCommand("rule", e2e.BuildArgs(map[string]string{ + "--debug.name": fmt.Sprintf("rule-%v", name), + "--grpc-address": ":9091", + "--grpc-grace-period": "0s", + "--http-address": ":80", + "--label": fmt.Sprintf(`replica="%s"`, name), + "--data-dir": container, + "--rule-file": filepath.Join(e2e.ContainerSharedDir, ruleSubDir, "*.yaml"), + "--eval-interval": "3s", + "--alertmanagers.config": string(amCfgBytes), + "--alertmanagers.sd-dns-interval": "1s", + "--log.level": logLevel, + "--query.config": string(queryCfgBytes), + "--query.sd-dns-interval": "1s", + "--resend-delay": "5s", + })...), + e2e.NewReadinessProbe(80, "/-/ready", 200), + 80, + 9091, + ) + ruler.SetBackoff(defaultBackoffConfig) + + return ruler, nil +} + +func NewAlertmanager(sharedDir string, name string) (*e2e.HTTPService, error) { + dir := filepath.Join(sharedDir, "data", "am", name) + container := filepath.Join(e2e.ContainerSharedDir, "data", "am", name) + if err := os.MkdirAll(dir, 0777); err != nil { + return nil, errors.Wrap(err, "create am dir") + } + const config = ` +route: + group_by: ['alertname'] + group_wait: 1s + group_interval: 1s + receiver: 'null' +receivers: +- name: 'null' +` + if err := ioutil.WriteFile(filepath.Join(dir, "config.yaml"), []byte(config), 0666); err != nil { + return nil, errors.Wrap(err, "creating alertmanager config file failed") + } + + s := e2e.NewHTTPService( + fmt.Sprintf("alertmanager-%v", name), + DefaultAlertmanagerImage(), + e2e.NewCommandWithoutEntrypoint("/bin/alertmanager", e2e.BuildArgs(map[string]string{ + "--config.file": filepath.Join(container, "config.yaml"), + "--web.listen-address": "0.0.0.0:80", + "--log.level": logLevel, + "--storage.path": container, + "--web.get-concurrency": "1", + "--web.timeout": "2m", + })...), + e2e.NewReadinessProbe(80, "/-/ready", 200), + 80, + ) + s.SetUser("root") + s.SetBackoff(defaultBackoffConfig) + + return s, nil +} + +func NewStoreGW(sharedDir string, name string, bucketConfig client.BucketConfig, relabelConfig ...relabel.Config) (*Service, error) { + dir := filepath.Join(sharedDir, "data", "store", name) + container := filepath.Join(e2e.ContainerSharedDir, "data", "store", name) + if err := os.MkdirAll(dir, 0777); err != nil { + return nil, errors.Wrap(err, "create store dir") + } + + bktConfigBytes, err := yaml.Marshal(bucketConfig) + if err != nil { + return nil, errors.Wrapf(err, "generate store config file: %v", bucketConfig) + } + + relabelConfigBytes, err := yaml.Marshal(relabelConfig) + if err != nil { + return nil, errors.Wrapf(err, "generate store relabel file: %v", relabelConfig) + } + + store := NewService( + fmt.Sprintf("store-gw-%v", name), + DefaultImage(), + e2e.NewCommand("store", e2e.BuildArgs(map[string]string{ + "--debug.name": fmt.Sprintf("store-gw-%v", name), + "--grpc-address": ":9091", + "--grpc-grace-period": "0s", + "--http-address": ":80", + "--log.level": logLevel, + "--data-dir": container, + "--objstore.config": string(bktConfigBytes), + // Accelerated sync time for quicker test (3m by default). + "--sync-block-duration": "3s", + "--block-sync-concurrency": "1", + "--store.grpc.series-max-concurrency": "1", + "--selector.relabel-config": string(relabelConfigBytes), + "--consistency-delay": "30m", + })...), + e2e.NewReadinessProbe(80, "/-/ready", 200), + 80, + 9091, + ) + store.SetBackoff(defaultBackoffConfig) + + return store, nil +} + +func NewCompactor(sharedDir string, name string, bucketConfig client.BucketConfig, relabelConfig []relabel.Config, extArgs ...string) (*e2e.HTTPService, error) { + dir := filepath.Join(sharedDir, "data", "compact", name) + container := filepath.Join(e2e.ContainerSharedDir, "data", "compact", name) + + if err := os.MkdirAll(dir, 0777); err != nil { + return nil, errors.Wrap(err, "create compact dir") + } + + bktConfigBytes, err := yaml.Marshal(bucketConfig) + if err != nil { + return nil, errors.Wrapf(err, "generate compact config file: %v", bucketConfig) + } + + relabelConfigBytes, err := yaml.Marshal(relabelConfig) + if err != nil { + return nil, errors.Wrapf(err, "generate compact relabel file: %v", relabelConfig) + } + + compactor := e2e.NewHTTPService( + fmt.Sprintf("compact-%s", name), + DefaultImage(), + e2e.NewCommand("compact", append(e2e.BuildArgs(map[string]string{ + "--debug.name": fmt.Sprintf("compact-%s", name), + "--log.level": logLevel, + "--data-dir": container, + "--objstore.config": string(bktConfigBytes), + "--http-address": ":80", + "--delete-delay": "0s", + "--block-sync-concurrency": "20", + "--selector.relabel-config": string(relabelConfigBytes), + "--wait": "", + }), extArgs...)...), + e2e.NewReadinessProbe(80, "/-/ready", 200), + 80, + ) + compactor.SetBackoff(defaultBackoffConfig) + + return compactor, nil +} diff --git a/test/e2e/query_test.go b/test/e2e/query_test.go index 55db7952f25..553ae4d602f 100644 --- a/test/e2e/query_test.go +++ b/test/e2e/query_test.go @@ -12,12 +12,14 @@ import ( "testing" "time" + "github.com/cortexproject/cortex/integration/e2e" "github.com/go-kit/kit/log" "github.com/pkg/errors" "github.com/prometheus/common/model" "github.com/thanos-io/thanos/pkg/promclient" "github.com/thanos-io/thanos/pkg/runutil" "github.com/thanos-io/thanos/pkg/testutil" + "github.com/thanos-io/thanos/test/e2e/e2ethanos" ) // NOTE: by using aggregation all results are now unsorted. @@ -34,9 +36,12 @@ global: prometheus: %v replica: %v scrape_configs: -- job_name: 'test' +- job_name: 'myself' + # Quick scrapes for test purposes. + scrape_interval: 1s + scrape_timeout: 1s static_configs: - - targets: ['fake'] + - targets: ['localhost:9090'] `, name, replica) if remoteWriteEndpoint != "" { @@ -44,6 +49,10 @@ scrape_configs: %s remote_write: - url: "%s" + # Don't spam receiver on mistake. + queue_config: + min_backoff: 2s + max_backoff: 10s `, config, remoteWriteEndpoint) } return config @@ -56,173 +65,145 @@ func sortResults(res model.Vector) { } func TestQuery(t *testing.T) { - a := newLocalAddresser() + t.Parallel() - // Thanos Receive. - r := receiver(a.New(), a.New(), a.New(), 1) + s, err := e2e.NewScenario("e2e_test_query") + testutil.Ok(t, err) + defer s.Close() - // Prometheus-es. - prom1 := prometheus(a.New(), defaultPromConfig("prom-alone", 0, "")) - prom2 := prometheus(a.New(), defaultPromConfig("prom-both-remote-write-and-sidecar", 1234, remoteWriteEndpoint(r.HTTP))) - prom3 := prometheus(a.New(), defaultPromConfig("prom-ha", 0, "")) - prom4 := prometheus(a.New(), defaultPromConfig("prom-ha", 1, "")) + receiver, err := e2ethanos.NewReceiver(s.SharedDir(), s.NetworkName(), "1", 1) + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(receiver)) - // Sidecars per each Prometheus. - s1 := sidecar(a.New(), a.New(), prom1) - s2 := sidecar(a.New(), a.New(), prom2) - s3 := sidecar(a.New(), a.New(), prom3) - s4 := sidecar(a.New(), a.New(), prom4) + prom1, sidecar1, err := e2ethanos.NewPrometheusWithSidecar(s.SharedDir(), "e2e_test_query", "alone", defaultPromConfig("prom-alone", 0, ""), e2ethanos.DefaultPrometheusImage()) + testutil.Ok(t, err) + prom2, sidecar2, err := e2ethanos.NewPrometheusWithSidecar(s.SharedDir(), "e2e_test_query", "remote-and-sidecar", defaultPromConfig("prom-both-remote-write-and-sidecar", 1234, e2ethanos.RemoteWriteEndpoint(receiver.NetworkEndpoint(81))), e2ethanos.DefaultPrometheusImage()) + testutil.Ok(t, err) + prom3, sidecar3, err := e2ethanos.NewPrometheusWithSidecar(s.SharedDir(), "e2e_test_query", "ha1", defaultPromConfig("prom-ha", 0, ""), e2ethanos.DefaultPrometheusImage()) + testutil.Ok(t, err) + prom4, sidecar4, err := e2ethanos.NewPrometheusWithSidecar(s.SharedDir(), "e2e_test_query", "ha2", defaultPromConfig("prom-ha", 1, ""), e2ethanos.DefaultPrometheusImage()) + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(prom1, sidecar1, prom2, sidecar2, prom3, sidecar3, prom4, sidecar4)) // Querier. Both fileSD and directly by flags. - q := querier(a.New(), a.New(), []address{s1.GRPC, s2.GRPC, r.GRPC}, []address{s3.GRPC, s4.GRPC}) - - ctx, cancel := context.WithTimeout(context.Background(), 3*time.Minute) - - exit, err := e2eSpinup(t, ctx, r, prom1, prom2, prom3, prom4, s1, s2, s3, s4, q) - if err != nil { - t.Errorf("spinup failed: %v", err) - cancel() - return - } + q, err := e2ethanos.NewQuerier( + s.SharedDir(), "1", + []string{sidecar1.GRPCNetworkEndpoint(), sidecar2.GRPCNetworkEndpoint(), receiver.GRPCNetworkEndpoint()}, + []string{sidecar3.GRPCNetworkEndpoint(), sidecar4.GRPCNetworkEndpoint()}, + ) + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(q)) + + ctx, cancel := context.WithTimeout(context.Background(), 1*time.Minute) + defer cancel() + + testutil.Ok(t, q.WaitSumMetrics(e2e.Equals(5), "thanos_store_nodes_grpc_connections")) + + queryAndAssertSeries(t, ctx, q.HTTPEndpoint(), queryUpWithoutInstance, promclient.QueryOptions{ + Deduplicate: false, + }, []model.Metric{ + { + "job": "myself", + "prometheus": "prom-alone", + "replica": "0", + }, + { + "job": "myself", + "prometheus": "prom-both-remote-write-and-sidecar", + "receive": "1", + "replica": "1234", + }, + { + "job": "myself", + "prometheus": "prom-both-remote-write-and-sidecar", + "replica": "1234", + }, + { + "job": "myself", + "prometheus": "prom-ha", + "replica": "0", + }, + { + "job": "myself", + "prometheus": "prom-ha", + "replica": "1", + }, + }) - defer func() { - cancel() - <-exit - }() + // With deduplication. + queryAndAssertSeries(t, ctx, q.HTTPEndpoint(), queryUpWithoutInstance, promclient.QueryOptions{ + Deduplicate: true, + }, []model.Metric{ + { + "job": "myself", + "prometheus": "prom-alone", + }, + { + "job": "myself", + "prometheus": "prom-both-remote-write-and-sidecar", + "receive": "1", + }, + { + "job": "myself", + "prometheus": "prom-both-remote-write-and-sidecar", + }, + { + "job": "myself", + "prometheus": "prom-ha", + }, + }) +} - var res model.Vector +func urlParse(t *testing.T, addr string) *url.URL { + u, err := url.Parse(addr) + testutil.Ok(t, err) - w := log.NewSyncWriter(os.Stderr) - l := log.NewLogfmtLogger(w) + return u +} - // Try query without deduplication. - testutil.Ok(t, runutil.RetryWithLog(l, time.Second, ctx.Done(), func() error { - select { - case <-exit: - cancel() - return nil - default: - } +func instantQuery(t *testing.T, ctx context.Context, addr string, q string, opts promclient.QueryOptions, expectedSeriesLen int) model.Vector { + t.Helper() - var ( - err error - warnings []string - ) - res, warnings, err = promclient.QueryInstant(ctx, nil, urlParse(t, q.HTTP.URL()), queryUpWithoutInstance, time.Now(), promclient.QueryOptions{ - Deduplicate: false, - }) + fmt.Println("queryAndAssert: Waiting for", expectedSeriesLen, "results for query", q) + var result model.Vector + logger := log.NewLogfmtLogger(os.Stdout) + logger = log.With(logger, "ts", log.DefaultTimestampUTC) + testutil.Ok(t, runutil.RetryWithLog(logger, time.Second, ctx.Done(), func() error { + res, warnings, err := promclient.QueryInstant(ctx, nil, urlParse(t, "http://"+addr), q, time.Now(), opts) if err != nil { return err } if len(warnings) > 0 { - // we don't expect warnings. return errors.Errorf("unexpected warnings %s", warnings) } - expectedRes := 5 - if len(res) != expectedRes { - return errors.Errorf("unexpected result size, expected %d; result: %v", expectedRes, res) + if len(res) != expectedSeriesLen { + return errors.Errorf("unexpected result size, expected %d; result %d: %v", expectedSeriesLen, len(res), res) } + result = res return nil })) + sortResults(result) + return result +} - select { - case <-exit: - return - default: - } - - sortResults(res) - testutil.Equals(t, model.Metric{ - "job": "test", - "prometheus": "prom-alone", - "replica": "0", - }, res[0].Metric) - testutil.Equals(t, model.Metric{ - "job": "test", - "prometheus": "prom-both-remote-write-and-sidecar", - "receive": model.LabelValue(r.HTTP.Port), - "replica": model.LabelValue("1234"), - }, res[1].Metric) - testutil.Equals(t, model.Metric{ - "job": "test", - "prometheus": "prom-both-remote-write-and-sidecar", - "replica": model.LabelValue("1234"), - }, res[2].Metric) - testutil.Equals(t, model.Metric{ - "job": "test", - "prometheus": "prom-ha", - "replica": model.LabelValue("0"), - }, res[3].Metric) - testutil.Equals(t, model.Metric{ - "job": "test", - "prometheus": "prom-ha", - "replica": model.LabelValue("1"), - }, res[4].Metric) - - // With deduplication. - testutil.Ok(t, runutil.Retry(time.Second, ctx.Done(), func() error { - select { - case <-exit: - cancel() - return nil - default: - } - - var ( - err error - warnings []string - ) - res, warnings, err = promclient.QueryInstant(ctx, nil, urlParse(t, q.HTTP.URL()), queryUpWithoutInstance, time.Now(), promclient.QueryOptions{ - Deduplicate: true, - }) - if err != nil { - return err - } - - if len(warnings) > 0 { - // we don't expect warnings. - return errors.Errorf("unexpected warnings %s", warnings) - } - - expectedRes := 4 - if len(res) != expectedRes { - return errors.Errorf("unexpected result size, expected %d; result: %v", expectedRes, res) - } - - return nil - })) +func queryAndAssertSeries(t *testing.T, ctx context.Context, addr string, q string, opts promclient.QueryOptions, expected []model.Metric) { + t.Helper() - select { - case <-exit: - return - default: + result := instantQuery(t, ctx, addr, q, opts, len(expected)) + for i, exp := range expected { + testutil.Equals(t, exp, result[i].Metric) } - - sortResults(res) - testutil.Equals(t, model.Metric{ - "job": "test", - "prometheus": "prom-alone", - }, res[0].Metric) - testutil.Equals(t, model.Metric{ - "job": "test", - "prometheus": "prom-both-remote-write-and-sidecar", - "receive": model.LabelValue(r.HTTP.Port), - }, res[1].Metric) - testutil.Equals(t, model.Metric{ - "job": "test", - "prometheus": "prom-both-remote-write-and-sidecar", - }, res[2].Metric) - testutil.Equals(t, model.Metric{ - "job": "test", - "prometheus": "prom-ha", - }, res[3].Metric) } -func urlParse(t *testing.T, addr string) *url.URL { - u, err := url.Parse(addr) - testutil.Ok(t, err) +func queryAndAssert(t *testing.T, ctx context.Context, addr string, q string, opts promclient.QueryOptions, expected model.Vector) { + t.Helper() - return u + sortResults(expected) + result := instantQuery(t, ctx, addr, q, opts, len(expected)) + for _, r := range result { + r.Timestamp = 0 // Does not matter for us. + } + testutil.Equals(t, expected, result) } diff --git a/test/e2e/receive_test.go b/test/e2e/receive_test.go index 1ec20416c94..9c741c91155 100644 --- a/test/e2e/receive_test.go +++ b/test/e2e/receive_test.go @@ -8,222 +8,227 @@ import ( "testing" "time" - "github.com/thanos-io/thanos/pkg/receive" - - "github.com/pkg/errors" + "github.com/cortexproject/cortex/integration/e2e" "github.com/prometheus/common/model" "github.com/thanos-io/thanos/pkg/promclient" - "github.com/thanos-io/thanos/pkg/runutil" + "github.com/thanos-io/thanos/pkg/receive" "github.com/thanos-io/thanos/pkg/testutil" + "github.com/thanos-io/thanos/test/e2e/e2ethanos" ) -type receiveTestConfig struct { - name string - cmds []scheduler - metrics []model.Metric +func TestReceive(t *testing.T) { + t.Parallel() - queryAddress address -} + t.Run("hashring", func(t *testing.T) { + t.Parallel() -func TestReceive(t *testing.T) { - var testCases []receiveTestConfig + s, err := e2e.NewScenario("e2e_test_receive_hashring") + testutil.Ok(t, err) + defer s.Close() - a := newLocalAddresser() - { // The hashring suite creates three receivers, each with a Prometheus // remote-writing data to it. However, due to the hashing of the labels, // the time series from the Prometheus is forwarded to a different // receiver in the hashring than the one handling the request. // The querier queries all the receivers and the test verifies // the time series are forwarded to the correct receive node. - receiveGRPC1, receiveGRPC2, receiveGRPC3 := a.New(), a.New(), a.New() + r1, err := e2ethanos.NewReceiver(s.SharedDir(), s.NetworkName(), "1", 1) + testutil.Ok(t, err) + r2, err := e2ethanos.NewReceiver(s.SharedDir(), s.NetworkName(), "2", 1) + testutil.Ok(t, err) + r3, err := e2ethanos.NewReceiver(s.SharedDir(), s.NetworkName(), "3", 1) + testutil.Ok(t, err) h := receive.HashringConfig{ - Endpoints: []string{receiveGRPC1.HostPort(), receiveGRPC2.HostPort(), receiveGRPC3.HostPort()}, + Endpoints: []string{ + r1.GRPCNetworkEndpointFor(s.NetworkName()), + r2.GRPCNetworkEndpointFor(s.NetworkName()), + r3.GRPCNetworkEndpointFor(s.NetworkName()), + }, } - r1 := receiver(a.New(), receiveGRPC1, a.New(), 1, h) - r2 := receiver(a.New(), receiveGRPC2, a.New(), 1, h) - r3 := receiver(a.New(), receiveGRPC3, a.New(), 1, h) - - prom1 := prometheus(a.New(), defaultPromConfig("prom1", 1, remoteWriteEndpoint(r1.HTTP))) - prom2 := prometheus(a.New(), defaultPromConfig("prom2", 1, remoteWriteEndpoint(r2.HTTP))) - prom3 := prometheus(a.New(), defaultPromConfig("prom3", 1, remoteWriteEndpoint(r3.HTTP))) - - q1 := querier(a.New(), a.New(), []address{r1.GRPC, r2.GRPC, r3.GRPC}, nil) - - testCases = append(testCases, receiveTestConfig{ - name: "hashring", - cmds: []scheduler{q1, prom1, prom2, prom3, r1, r2, r3}, - queryAddress: q1.HTTP, - metrics: []model.Metric{ - { - "job": "test", - "prometheus": "prom1", - "receive": model.LabelValue(r1.HTTP.Port), - "replica": "1", - }, - { - "job": "test", - "prometheus": "prom2", - "receive": model.LabelValue(r2.HTTP.Port), - "replica": "1", - }, - { - "job": "test", - "prometheus": "prom3", - "receive": model.LabelValue(r2.HTTP.Port), - "replica": "1", - }, - }}) - } - { + // Recreate again, but with hashring config. + r1, err = e2ethanos.NewReceiver(s.SharedDir(), s.NetworkName(), "1", 1, h) + testutil.Ok(t, err) + r2, err = e2ethanos.NewReceiver(s.SharedDir(), s.NetworkName(), "2", 1, h) + testutil.Ok(t, err) + r3, err = e2ethanos.NewReceiver(s.SharedDir(), s.NetworkName(), "3", 1, h) + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(r1, r2, r3)) + + prom1, _, err := e2ethanos.NewPrometheus(s.SharedDir(), "1", defaultPromConfig("prom1", 0, e2ethanos.RemoteWriteEndpoint(r1.NetworkEndpoint(81))), e2ethanos.DefaultPrometheusImage()) + testutil.Ok(t, err) + prom2, _, err := e2ethanos.NewPrometheus(s.SharedDir(), "2", defaultPromConfig("prom2", 0, e2ethanos.RemoteWriteEndpoint(r2.NetworkEndpoint(81))), e2ethanos.DefaultPrometheusImage()) + testutil.Ok(t, err) + prom3, _, err := e2ethanos.NewPrometheus(s.SharedDir(), "3", defaultPromConfig("prom3", 0, e2ethanos.RemoteWriteEndpoint(r3.NetworkEndpoint(81))), e2ethanos.DefaultPrometheusImage()) + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(prom1, prom2, prom3)) + + q, err := e2ethanos.NewQuerier(s.SharedDir(), "1", []string{r1.GRPCNetworkEndpoint(), r2.GRPCNetworkEndpoint(), r3.GRPCNetworkEndpoint()}, nil) + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(q)) + + ctx, cancel := context.WithTimeout(context.Background(), 3*time.Minute) + defer cancel() + + testutil.Ok(t, q.WaitSumMetrics(e2e.Equals(3), "thanos_store_nodes_grpc_connections")) + + queryAndAssertSeries(t, ctx, q.HTTPEndpoint(), queryUpWithoutInstance, promclient.QueryOptions{ + Deduplicate: false, + }, []model.Metric{ + { + "job": "myself", + "prometheus": "prom1", + "receive": "2", + "replica": "0", + }, + { + "job": "myself", + "prometheus": "prom2", + "receive": "1", + "replica": "0", + }, + { + "job": "myself", + "prometheus": "prom3", + "receive": "3", + "replica": "0", + }, + }) + }) + + t.Run("replication", func(t *testing.T) { + t.Parallel() + + s, err := e2e.NewScenario("e2e_test_receive_replication") + testutil.Ok(t, err) + defer s.Close() + // The replication suite creates three receivers but only one // receives Prometheus remote-written data. The querier queries all // receivers and the test verifies that the time series are // replicated to all of the nodes. - receiveGRPC1, receiveGRPC2, receiveGRPC3 := a.New(), a.New(), a.New() + r1, err := e2ethanos.NewReceiver(s.SharedDir(), s.NetworkName(), "1", 3) + testutil.Ok(t, err) + r2, err := e2ethanos.NewReceiver(s.SharedDir(), s.NetworkName(), "2", 3) + testutil.Ok(t, err) + r3, err := e2ethanos.NewReceiver(s.SharedDir(), s.NetworkName(), "3", 3) + testutil.Ok(t, err) h := receive.HashringConfig{ - Endpoints: []string{receiveGRPC1.HostPort(), receiveGRPC2.HostPort(), receiveGRPC3.HostPort()}, + Endpoints: []string{ + r1.GRPCNetworkEndpointFor(s.NetworkName()), + r2.GRPCNetworkEndpointFor(s.NetworkName()), + r3.GRPCNetworkEndpointFor(s.NetworkName()), + }, } - r1 := receiver(a.New(), receiveGRPC1, a.New(), 3, h) - r2 := receiver(a.New(), receiveGRPC2, a.New(), 3, h) - r3 := receiver(a.New(), receiveGRPC3, a.New(), 3, h) - - prom1 := prometheus(a.New(), defaultPromConfig("prom1", 1, remoteWriteEndpoint(r1.HTTP))) - - q1 := querier(a.New(), a.New(), []address{r1.GRPC, r2.GRPC, r3.GRPC}, nil) - - testCases = append(testCases, receiveTestConfig{ - name: "replication", - cmds: []scheduler{q1, prom1, r1, r2, r3}, - queryAddress: q1.HTTP, - metrics: []model.Metric{ - { - "job": "test", - "prometheus": "prom1", - "receive": model.LabelValue(r1.HTTP.Port), - "replica": "1", - }, - { - "job": "test", - "prometheus": "prom1", - "receive": model.LabelValue(r2.HTTP.Port), - "replica": "1", - }, - { - "job": "test", - "prometheus": "prom1", - "receive": model.LabelValue(r3.HTTP.Port), - "replica": "1", - }, - }}) - } - { - // The replication suite creates a three-node hashring but one of the - // receivers is dead. In this case, replication should still - // succeed and the time series should be replicated to the other nodes. - receiveGRPC1, receiveGRPC2, receiveGRPC3 := a.New(), a.New(), a.New() + // Recreate again, but with hashring config. + r1, err = e2ethanos.NewReceiver(s.SharedDir(), s.NetworkName(), "1", 3, h) + testutil.Ok(t, err) + r2, err = e2ethanos.NewReceiver(s.SharedDir(), s.NetworkName(), "2", 3, h) + testutil.Ok(t, err) + r3, err = e2ethanos.NewReceiver(s.SharedDir(), s.NetworkName(), "3", 3, h) + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(r1, r2, r3)) - h := receive.HashringConfig{ - Endpoints: []string{receiveGRPC1.HostPort(), receiveGRPC2.HostPort(), receiveGRPC3.HostPort()}, - } + prom1, _, err := e2ethanos.NewPrometheus(s.SharedDir(), "1", defaultPromConfig("prom1", 0, e2ethanos.RemoteWriteEndpoint(r1.NetworkEndpoint(81))), e2ethanos.DefaultPrometheusImage()) + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(prom1)) - r1 := receiver(a.New(), receiveGRPC1, a.New(), 3, h) - r2 := receiver(a.New(), receiveGRPC2, a.New(), 3, h) - - prom1 := prometheus(a.New(), defaultPromConfig("prom1", 1, remoteWriteEndpoint(r1.HTTP))) - - q1 := querier(a.New(), a.New(), []address{r1.GRPC, r2.GRPC}, nil) - - testCases = append(testCases, receiveTestConfig{ - name: "replication with outage", - cmds: []scheduler{q1, prom1, r1, r2}, - queryAddress: q1.HTTP, - metrics: []model.Metric{ - { - "job": "test", - "prometheus": "prom1", - "receive": model.LabelValue(r1.HTTP.Port), - "replica": "1", - }, - { - "job": "test", - "prometheus": "prom1", - "receive": model.LabelValue(r2.HTTP.Port), - "replica": "1", - }, - }}) - } - for _, tt := range testCases { - t.Run(tt.name, func(t *testing.T) { - testReceive(t, tt) - }) - } -} + q, err := e2ethanos.NewQuerier(s.SharedDir(), "1", []string{r1.GRPCNetworkEndpoint(), r2.GRPCNetworkEndpoint(), r3.GRPCNetworkEndpoint()}, nil) + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(q)) -// testReceive runs a setup of Prometheus servers, receive nodes, and query nodes and verifies that -// queries return data from the Prometheus servers. Additionally it verifies that remote-writes were routed through the correct receive node. -func testReceive(t *testing.T, conf receiveTestConfig) { - ctx, cancel := context.WithTimeout(context.Background(), 3*time.Minute) - - exit, err := e2eSpinup(t, ctx, conf.cmds...) - if err != nil { - t.Errorf("spinup failed: %v", err) - cancel() - return - } - - defer func() { - cancel() - <-exit - }() - - var res model.Vector - - // Query without deduplication so we can check what replica the - // time series ended up on. - testutil.Ok(t, runutil.Retry(time.Second, ctx.Done(), func() error { - select { - case <-exit: - cancel() - return nil - default: - } + ctx, cancel := context.WithTimeout(context.Background(), 3*time.Minute) + defer cancel() - var ( - err error - warnings []string - ) - res, warnings, err = promclient.QueryInstant(ctx, nil, urlParse(t, conf.queryAddress.URL()), queryUpWithoutInstance, time.Now(), promclient.QueryOptions{ + testutil.Ok(t, q.WaitSumMetrics(e2e.Equals(3), "thanos_store_nodes_grpc_connections")) + + queryAndAssertSeries(t, ctx, q.HTTPEndpoint(), queryUpWithoutInstance, promclient.QueryOptions{ Deduplicate: false, + }, []model.Metric{ + { + "job": "myself", + "prometheus": "prom1", + "receive": "1", + "replica": "0", + }, + { + "job": "myself", + "prometheus": "prom1", + "receive": "2", + "replica": "0", + }, + { + "job": "myself", + "prometheus": "prom1", + "receive": "3", + "replica": "0", + }, }) - if err != nil { - return err - } + }) - if len(warnings) > 0 { - // we don't expect warnings. - return errors.Errorf("unexpected warnings %s", warnings) - } + t.Run("replication_with_outage", func(t *testing.T) { + t.Parallel() + + s, err := e2e.NewScenario("e2e_test_receive_replication_with_outage") + testutil.Ok(t, err) + defer s.Close() + + // The replication suite creates a three-node hashring but one of the + // receivers is dead. In this case, replication should still + // succeed and the time series should be replicated to the other nodes. + r1, err := e2ethanos.NewReceiver(s.SharedDir(), s.NetworkName(), "1", 3) + testutil.Ok(t, err) + r2, err := e2ethanos.NewReceiver(s.SharedDir(), s.NetworkName(), "2", 3) + testutil.Ok(t, err) + notRunningR3, err := e2ethanos.NewReceiver(s.SharedDir(), s.NetworkName(), "3", 3) + testutil.Ok(t, err) - if len(res) != len(conf.metrics) { - return errors.Errorf("unexpected result size, expected %d; result: %v", len(conf.metrics), res) + h := receive.HashringConfig{ + Endpoints: []string{ + r1.GRPCNetworkEndpointFor(s.NetworkName()), + r2.GRPCNetworkEndpointFor(s.NetworkName()), + notRunningR3.GRPCNetworkEndpointFor(s.NetworkName()), + }, } - return nil - })) + // Recreate again, but with hashring config. + r1, err = e2ethanos.NewReceiver(s.SharedDir(), s.NetworkName(), "1", 3, h) + testutil.Ok(t, err) + r2, err = e2ethanos.NewReceiver(s.SharedDir(), s.NetworkName(), "2", 3, h) + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(r1, r2)) + + prom1, _, err := e2ethanos.NewPrometheus(s.SharedDir(), "1", defaultPromConfig("prom1", 0, e2ethanos.RemoteWriteEndpoint(r1.NetworkEndpoint(81))), e2ethanos.DefaultPrometheusImage()) + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(prom1)) - select { - case <-exit: - return - default: - } + q, err := e2ethanos.NewQuerier(s.SharedDir(), "1", []string{r1.GRPCNetworkEndpoint(), r2.GRPCNetworkEndpoint()}, nil) + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(q)) - sortResults(res) - for i, metric := range conf.metrics { - testutil.Equals(t, metric, res[i].Metric) - } + ctx, cancel := context.WithTimeout(context.Background(), 3*time.Minute) + defer cancel() + + testutil.Ok(t, q.WaitSumMetrics(e2e.Equals(2), "thanos_store_nodes_grpc_connections")) + + queryAndAssertSeries(t, ctx, q.HTTPEndpoint(), queryUpWithoutInstance, promclient.QueryOptions{ + Deduplicate: false, + }, []model.Metric{ + { + "job": "myself", + "prometheus": "prom1", + "receive": "1", + "replica": "0", + }, + { + "job": "myself", + "prometheus": "prom1", + "receive": "2", + "replica": "0", + }, + }) + }) } diff --git a/test/e2e/rule_test.go b/test/e2e/rule_test.go index 81f08bd683d..3a601608b8a 100644 --- a/test/e2e/rule_test.go +++ b/test/e2e/rule_test.go @@ -10,7 +10,6 @@ import ( "encoding/pem" "fmt" "io/ioutil" - "math" "net/http" "net/http/httptest" "os" @@ -20,21 +19,18 @@ import ( "testing" "time" + "github.com/cortexproject/cortex/integration/e2e" "github.com/pkg/errors" "github.com/prometheus/common/model" "github.com/prometheus/prometheus/discovery/targetgroup" - "github.com/prometheus/prometheus/pkg/labels" - "github.com/prometheus/prometheus/pkg/timestamp" - yaml "gopkg.in/yaml.v2" - "github.com/thanos-io/thanos/pkg/alert" http_util "github.com/thanos-io/thanos/pkg/http" "github.com/thanos-io/thanos/pkg/promclient" "github.com/thanos-io/thanos/pkg/query" - rapi "github.com/thanos-io/thanos/pkg/rule/api" "github.com/thanos-io/thanos/pkg/runutil" - "github.com/thanos-io/thanos/pkg/store/storepb" "github.com/thanos-io/thanos/pkg/testutil" + "github.com/thanos-io/thanos/test/e2e/e2ethanos" + yaml "gopkg.in/yaml.v2" ) const ( @@ -83,34 +79,17 @@ func writeTargets(t *testing.T, path string, addrs ...string) { tgs = append( tgs, model.LabelSet{ - model.LabelName(model.AddressLabel): model.LabelValue(a), + model.AddressLabel: model.LabelValue(a), }, ) } - b, err := yaml.Marshal([]*targetgroup.Group{&targetgroup.Group{Targets: tgs}}) + b, err := yaml.Marshal([]*targetgroup.Group{{Targets: tgs}}) testutil.Ok(t, err) testutil.Ok(t, ioutil.WriteFile(path+".tmp", b, 0660)) testutil.Ok(t, os.Rename(path+".tmp", path)) } -func serializeAlertingConfiguration(t *testing.T, cfg ...alert.AlertmanagerConfig) []byte { - t.Helper() - amCfg := alert.AlertingConfig{ - Alertmanagers: cfg, - } - b, err := yaml.Marshal(&amCfg) - testutil.Ok(t, err) - return b -} - -func serializeQueryConfiguration(t *testing.T, cfg ...query.Config) []byte { - t.Helper() - b, err := yaml.Marshal(&cfg) - testutil.Ok(t, err) - return b -} - type mockAlertmanager struct { path string token string @@ -186,7 +165,7 @@ func (m *mockAlertmanager) ServeHTTP(resp http.ResponseWriter, req *http.Request m.mtx.Unlock() } -// TestRuleAlertmanagerHTTPClient verifies that Thanos Ruler can send alerts to +// TestRule_AlertmanagerHTTPClient verifies that Thanos Ruler can send alerts to // Alertmanager in various setups: // * Plain HTTP. // * HTTPS with custom CA. @@ -197,32 +176,37 @@ func (m *mockAlertmanager) ServeHTTP(resp http.ResponseWriter, req *http.Request // a mocked server instead of the "real" Alertmanager service. // The other end-to-end tests exercise against the "real" Alertmanager // implementation. -func TestRuleAlertmanagerHTTPClient(t *testing.T) { - a := newLocalAddresser() +func TestRule_AlertmanagerHTTPClient(t *testing.T) { + t.Skip("TODO: Allow HTTP ports from binaries running on host to be accessible.") + + s, err := e2e.NewScenario("e2e_test_rule_am_http_client") + testutil.Ok(t, err) + defer s.Close() + + tlsSubDir := filepath.Join("tls") + testutil.Ok(t, os.MkdirAll(filepath.Join(s.SharedDir(), tlsSubDir), os.ModePerm)) // API v1 with plain HTTP and a prefix. handler1 := newMockAlertmanager("/prefix/api/v1/alerts", "") srv1 := httptest.NewServer(handler1) defer srv1.Close() + // API v2 with HTTPS and authentication. handler2 := newMockAlertmanager("/api/v2/alerts", "secret") srv2 := httptest.NewTLSServer(handler2) defer srv2.Close() - // Write the server's certificate to disk for the alerting configuration. - tlsDir, err := ioutil.TempDir("", "tls") - defer os.RemoveAll(tlsDir) - testutil.Ok(t, err) var out bytes.Buffer - err = pem.Encode(&out, &pem.Block{Type: "CERTIFICATE", Bytes: srv2.TLS.Certificates[0].Certificate[0]}) - testutil.Ok(t, err) - caFile := filepath.Join(tlsDir, "ca.crt") - err = ioutil.WriteFile(caFile, out.Bytes(), 0640) - testutil.Ok(t, err) + testutil.Ok(t, pem.Encode(&out, &pem.Block{Type: "CERTIFICATE", Bytes: srv2.TLS.Certificates[0].Certificate[0]})) + caFile := filepath.Join(s.SharedDir(), tlsSubDir, "ca.crt") + testutil.Ok(t, ioutil.WriteFile(caFile, out.Bytes(), 0640)) + + rulesSubDir := filepath.Join("rules") + testutil.Ok(t, os.MkdirAll(filepath.Join(s.SharedDir(), rulesSubDir), os.ModePerm)) + createRuleFiles(t, filepath.Join(s.SharedDir(), rulesSubDir)) - amCfg := serializeAlertingConfiguration( - t, - alert.AlertmanagerConfig{ + r, err := e2ethanos.NewRuler(s.SharedDir(), "1", rulesSubDir, []alert.AlertmanagerConfig{ + { EndpointsConfig: http_util.EndpointsConfig{ StaticAddresses: []string{srv1.Listener.Addr().String()}, Scheme: "http", @@ -231,10 +215,10 @@ func TestRuleAlertmanagerHTTPClient(t *testing.T) { Timeout: model.Duration(time.Second), APIVersion: alert.APIv1, }, - alert.AlertmanagerConfig{ + { HTTPClientConfig: http_util.ClientConfig{ TLSConfig: http_util.TLSConfig{ - CAFile: caFile, + CAFile: filepath.Join(e2e.ContainerSharedDir, tlsSubDir, "ca.crt"), }, BearerToken: "secret", }, @@ -245,47 +229,29 @@ func TestRuleAlertmanagerHTTPClient(t *testing.T) { Timeout: model.Duration(time.Second), APIVersion: alert.APIv2, }, - ) - - rulesDir, err := ioutil.TempDir("", "rules") - defer os.RemoveAll(rulesDir) - testutil.Ok(t, err) - createRuleFiles(t, rulesDir) - - qAddr := a.New() - queryCfg := serializeQueryConfiguration( - t, - query.Config{ + }, []query.Config{ + { EndpointsConfig: http_util.EndpointsConfig{ - StaticAddresses: []string{qAddr.HostPort()}, - Scheme: "http", + StaticAddresses: func() []string { + q, err := e2ethanos.NewQuerier(s.SharedDir(), "1", nil, nil) + testutil.Ok(t, err) + return []string{q.NetworkHTTPEndpointFor(s.NetworkName())} + }(), + Scheme: "http", }, }, - ) - r := rule(a.New(), a.New(), rulesDir, amCfg, queryCfg) - q := querier(qAddr, a.New(), []address{r.GRPC}, nil) + }) + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(r)) - ctx, cancel := context.WithTimeout(context.Background(), 3*time.Minute) - exit, err := e2eSpinup(t, ctx, q, r) - if err != nil { - t.Errorf("spinup failed: %v", err) - cancel() - return - } + q, err := e2ethanos.NewQuerier(s.SharedDir(), "1", []string{r.GRPCNetworkEndpoint()}, nil) + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(q)) - defer func() { - cancel() - <-exit - }() + ctx, cancel := context.WithTimeout(context.Background(), 3*time.Minute) + defer cancel() testutil.Ok(t, runutil.Retry(5*time.Second, ctx.Done(), func() (err error) { - select { - case <-exit: - cancel() - return nil - default: - } - for i, am := range []*mockAlertmanager{handler1, handler2} { if len(am.Alerts()) == 0 { return errors.Errorf("no alert received from handler%d, last error: %v", i, am.LastError()) @@ -296,577 +262,226 @@ func TestRuleAlertmanagerHTTPClient(t *testing.T) { })) } -func TestRuleAlertmanagerFileSD(t *testing.T) { - a := newLocalAddresser() +func TestRule(t *testing.T) { + t.Parallel() - am := alertManager(a.New()) - amDir, err := ioutil.TempDir("", "am") - defer os.RemoveAll(amDir) + s, err := e2e.NewScenario("e2e_test_rule") + testutil.Ok(t, err) + defer s.Close() + + // Prepare work dirs. + rulesSubDir := filepath.Join("rules") + testutil.Ok(t, os.MkdirAll(filepath.Join(s.SharedDir(), rulesSubDir), os.ModePerm)) + createRuleFiles(t, filepath.Join(s.SharedDir(), rulesSubDir)) + amTargetsSubDir := filepath.Join("rules_am_targets") + testutil.Ok(t, os.MkdirAll(filepath.Join(s.SharedDir(), amTargetsSubDir), os.ModePerm)) + queryTargetsSubDir := filepath.Join("rules_query_targets") + testutil.Ok(t, os.MkdirAll(filepath.Join(s.SharedDir(), queryTargetsSubDir), os.ModePerm)) + + am1, err := e2ethanos.NewAlertmanager(s.SharedDir(), "1") testutil.Ok(t, err) - amCfg := serializeAlertingConfiguration( - t, - alert.AlertmanagerConfig{ + am2, err := e2ethanos.NewAlertmanager(s.SharedDir(), "2") + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(am1, am2)) + + r, err := e2ethanos.NewRuler(s.SharedDir(), "1", rulesSubDir, []alert.AlertmanagerConfig{ + { EndpointsConfig: http_util.EndpointsConfig{ FileSDConfigs: []http_util.FileSDConfig{ - http_util.FileSDConfig{ - Files: []string{filepath.Join(amDir, "*.yaml")}, - RefreshInterval: model.Duration(time.Hour), + { + // FileSD which will be used to register discover dynamically am1. + Files: []string{filepath.Join(e2e.ContainerSharedDir, amTargetsSubDir, "*.yaml")}, + RefreshInterval: model.Duration(time.Second), }, }, + StaticAddresses: []string{ + am2.NetworkHTTPEndpoint(), + }, Scheme: "http", }, Timeout: model.Duration(time.Second), APIVersion: alert.APIv1, }, - ) - - rulesDir, err := ioutil.TempDir("", "rules") - defer os.RemoveAll(rulesDir) - testutil.Ok(t, err) - createRuleFiles(t, rulesDir) - - qAddr := a.New() - queryCfg := serializeQueryConfiguration( - t, - query.Config{ + }, []query.Config{ + { EndpointsConfig: http_util.EndpointsConfig{ - StaticAddresses: []string{qAddr.HostPort()}, - Scheme: "http", + // We test Statically Addressed queries in other tests. Focus on FileSD here. + FileSDConfigs: []http_util.FileSDConfig{ + { + // FileSD which will be used to register discover dynamically q. + Files: []string{filepath.Join(e2e.ContainerSharedDir, queryTargetsSubDir, "*.yaml")}, + RefreshInterval: model.Duration(time.Second), + }, + }, + Scheme: "http", }, }, - ) - r := rule(a.New(), a.New(), rulesDir, amCfg, queryCfg) - q := querier(qAddr, a.New(), []address{r.GRPC}, nil) + }) + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(r)) - ctx, cancel := context.WithTimeout(context.Background(), 3*time.Minute) - exit, err := e2eSpinup(t, ctx, am, q, r) - if err != nil { - t.Errorf("spinup failed: %v", err) - cancel() - return - } + q, err := e2ethanos.NewQuerier(s.SharedDir(), "1", []string{r.GRPCNetworkEndpoint()}, nil) + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(q)) - defer func() { - cancel() - <-exit - }() + t.Run("no query configured", func(t *testing.T) { + testutil.Ok(t, r.WaitSumMetrics(e2e.Equals(0), "thanos_ruler_query_apis_dns_provider_results")) - // Wait for a couple of evaluations and make sure that Alertmanager didn't receive anything. - testutil.Ok(t, runutil.Retry(5*time.Second, ctx.Done(), func() (err error) { - select { - case <-exit: - cancel() - return nil - default: - } + // Check for a few evaluations, check all of them failed. + testutil.Ok(t, r.WaitSumMetrics(e2e.Greater(10), "prometheus_rule_evaluations_total")) + testutil.Ok(t, r.WaitSumMetrics(e2e.EqualsAmongTwo, "prometheus_rule_evaluations_total", "prometheus_rule_evaluation_failures_total")) - // The time series written for the firing alerting rule must be queryable. - res, warnings, err := promclient.QueryInstant(ctx, nil, urlParse(t, q.HTTP.URL()), "max(count_over_time(ALERTS[1m])) > 2", time.Now(), promclient.QueryOptions{ - Deduplicate: false, - }) - if err != nil { - return err - } - if len(warnings) > 0 { - return errors.Errorf("unexpected warnings %s", warnings) - } - if len(res) == 0 { - return errors.Errorf("empty result") - } + // No alerts sent. + testutil.Ok(t, r.WaitSumMetrics(e2e.Equals(0), "thanos_alert_sender_alerts_dropped_total")) + testutil.Ok(t, r.WaitSumMetrics(e2e.Equals(0), "thanos_alert_sender_alerts_sent_total")) + testutil.Ok(t, r.WaitSumMetrics(e2e.Equals(0), "thanos_alert_sender_errors_total")) + }) - alrts, err := queryAlertmanagerAlerts(ctx, am.HTTP.URL()) - if err != nil { - return err - } - if len(alrts) != 0 { - return errors.Errorf("unexpected alerts length %d", len(alrts)) - } + var currentFailures float64 + t.Run("attach query", func(t *testing.T) { + // Attach querier to target files. + writeTargets(t, filepath.Join(s.SharedDir(), queryTargetsSubDir, "targets.yaml"), q.NetworkHTTPEndpoint()) + + testutil.Ok(t, r.WaitSumMetrics(e2e.Equals(1), "thanos_ruler_query_apis_dns_provider_results")) + testutil.Ok(t, r.WaitSumMetrics(e2e.Equals(1), "thanos_ruler_alertmanagers_dns_provider_results")) + + var currentVal float64 + testutil.Ok(t, r.WaitSumMetrics(func(sums ...float64) bool { + currentVal = sums[0] + currentFailures = sums[1] + return true + }, "prometheus_rule_evaluations_total", "prometheus_rule_evaluation_failures_total")) + + // Check for a few evaluations, check all of them failed. + testutil.Ok(t, r.WaitSumMetrics(e2e.Greater(currentVal+4), "prometheus_rule_evaluations_total")) + // No failures. + testutil.Ok(t, r.WaitSumMetrics(e2e.Equals(currentFailures), "prometheus_rule_evaluation_failures_total")) + + // Alerts sent. + testutil.Ok(t, r.WaitSumMetrics(e2e.Equals(0), "thanos_alert_sender_alerts_dropped_total")) + testutil.Ok(t, r.WaitSumMetrics(e2e.Greater(4), "thanos_alert_sender_alerts_sent_total")) + testutil.Ok(t, r.WaitSumMetrics(e2e.Equals(0), "thanos_alert_sender_errors_total")) + + // Alerts received. + testutil.Ok(t, am2.WaitSumMetrics(e2e.Equals(2), "alertmanager_alerts")) + testutil.Ok(t, am2.WaitSumMetrics(e2e.Greater(4), "alertmanager_alerts_received_total")) + testutil.Ok(t, am2.WaitSumMetrics(e2e.Equals(0), "alertmanager_alerts_invalid_total")) + + // am1 not connected, so should not receive anything. + testutil.Ok(t, am1.WaitSumMetrics(e2e.Equals(0), "alertmanager_alerts")) + testutil.Ok(t, am1.WaitSumMetrics(e2e.Equals(0), "alertmanager_alerts_received_total")) + testutil.Ok(t, am1.WaitSumMetrics(e2e.Equals(0), "alertmanager_alerts_invalid_total")) + }) + t.Run("attach am1", func(t *testing.T) { + // Attach am1 to target files. + writeTargets(t, filepath.Join(s.SharedDir(), amTargetsSubDir, "targets.yaml"), am1.NetworkHTTPEndpoint()) - return nil - })) + testutil.Ok(t, r.WaitSumMetrics(e2e.Equals(1), "thanos_ruler_query_apis_dns_provider_results")) + testutil.Ok(t, r.WaitSumMetrics(e2e.Equals(2), "thanos_ruler_alertmanagers_dns_provider_results")) - // Add the Alertmanager address to the file SD directory. - writeTargets(t, filepath.Join(amDir, "targets.yaml"), am.HTTP.HostPort()) + testutil.Ok(t, r.WaitSumMetrics(e2e.Equals(currentFailures), "prometheus_rule_evaluation_failures_total")) - // Verify that alerts are received by Alertmanager. - testutil.Ok(t, runutil.Retry(5*time.Second, ctx.Done(), func() (err error) { - select { - case <-exit: - cancel() - return nil - default: - } - alrts, err := queryAlertmanagerAlerts(ctx, am.HTTP.URL()) - if err != nil { - return err - } - if len(alrts) == 0 { - return errors.Errorf("expecting alerts") - } + var currentVal float64 + testutil.Ok(t, am2.WaitSumMetrics(func(sums ...float64) bool { + currentVal = sums[0] + return true + }, "alertmanager_alerts_received_total")) - return nil - })) -} + // Alerts received by both am1 and am2. + testutil.Ok(t, am2.WaitSumMetrics(e2e.Equals(2), "alertmanager_alerts")) + testutil.Ok(t, am2.WaitSumMetrics(e2e.Greater(currentVal+4), "alertmanager_alerts_received_total")) + testutil.Ok(t, am2.WaitSumMetrics(e2e.Equals(0), "alertmanager_alerts_invalid_total")) -func TestRule(t *testing.T) { - a := newLocalAddresser() + testutil.Ok(t, am1.WaitSumMetrics(e2e.Equals(2), "alertmanager_alerts")) + testutil.Ok(t, am1.WaitSumMetrics(e2e.Greater(4), "alertmanager_alerts_received_total")) + testutil.Ok(t, am1.WaitSumMetrics(e2e.Equals(0), "alertmanager_alerts_invalid_total")) + }) - am := alertManager(a.New()) - amCfg := serializeAlertingConfiguration( - t, - alert.AlertmanagerConfig{ - EndpointsConfig: http_util.EndpointsConfig{ - StaticAddresses: []string{am.HTTP.HostPort()}, - Scheme: "http", - }, - Timeout: model.Duration(time.Second), - APIVersion: alert.APIv2, - }, - ) + t.Run("am1 drops again", func(t *testing.T) { + testutil.Ok(t, os.RemoveAll(filepath.Join(s.SharedDir(), amTargetsSubDir, "targets.yaml"))) - qAddr := a.New() - queryCfg1 := serializeQueryConfiguration( - t, - query.Config{ - EndpointsConfig: http_util.EndpointsConfig{ - StaticAddresses: []string{qAddr.HostPort()}, - Scheme: "http", - }, - }, - ) - qDir, err := ioutil.TempDir("", "query") - defer os.RemoveAll(qDir) - testutil.Ok(t, err) - writeTargets(t, filepath.Join(qDir, "targets.yaml"), qAddr.HostPort()) - queryCfg2 := serializeQueryConfiguration( - t, - query.Config{ - EndpointsConfig: http_util.EndpointsConfig{ - FileSDConfigs: []http_util.FileSDConfig{ - http_util.FileSDConfig{ - Files: []string{filepath.Join(qDir, "*.yaml")}, - RefreshInterval: model.Duration(time.Hour), - }, - }, - Scheme: "http", - }, - }, - ) + testutil.Ok(t, r.WaitSumMetrics(e2e.Equals(1), "thanos_ruler_query_apis_dns_provider_results")) + testutil.Ok(t, r.WaitSumMetrics(e2e.Equals(1), "thanos_ruler_alertmanagers_dns_provider_results")) + testutil.Ok(t, r.WaitSumMetrics(e2e.Equals(currentFailures), "prometheus_rule_evaluation_failures_total")) - rulesDir, err := ioutil.TempDir("", "rules") - defer os.RemoveAll(rulesDir) - testutil.Ok(t, err) - createRuleFiles(t, rulesDir) + var currentValAm1 float64 + testutil.Ok(t, am1.WaitSumMetrics(func(sums ...float64) bool { + currentValAm1 = sums[0] + return true + }, "alertmanager_alerts_received_total")) - r1 := rule(a.New(), a.New(), rulesDir, amCfg, queryCfg1) - r2 := rule(a.New(), a.New(), rulesDir, amCfg, queryCfg2) + var currentValAm2 float64 + testutil.Ok(t, am2.WaitSumMetrics(func(sums ...float64) bool { + currentValAm2 = sums[0] + return true + }, "alertmanager_alerts_received_total")) - q := querier(qAddr, a.New(), []address{r1.GRPC, r2.GRPC}, nil) + // Alerts received by both am1 and am2. + testutil.Ok(t, am2.WaitSumMetrics(e2e.Equals(2), "alertmanager_alerts")) + testutil.Ok(t, am2.WaitSumMetrics(e2e.Greater(currentValAm2+4), "alertmanager_alerts_received_total")) + testutil.Ok(t, am2.WaitSumMetrics(e2e.Equals(0), "alertmanager_alerts_invalid_total")) - ctx, cancel := context.WithTimeout(context.Background(), 3*time.Minute) + // Am1 should not receive more alerts. + testutil.Ok(t, am1.WaitSumMetrics(e2e.Equals(currentValAm1), "alertmanager_alerts_received_total")) + }) - exit, err := e2eSpinup(t, ctx, q, r1, r2, am) - if err != nil { - t.Errorf("spinup failed: %v", err) - cancel() - return - } + t.Run("duplicate am ", func(t *testing.T) { + // am2 is already registered in static addresses. + writeTargets(t, filepath.Join(s.SharedDir(), amTargetsSubDir, "targets.yaml"), am2.NetworkHTTPEndpoint()) - defer func() { - cancel() - <-exit - }() + testutil.Ok(t, r.WaitSumMetrics(e2e.Equals(1), "thanos_ruler_query_apis_dns_provider_results")) + testutil.Ok(t, r.WaitSumMetrics(e2e.Equals(1), "thanos_ruler_alertmanagers_dns_provider_results")) + }) - expMetrics := []model.Metric{ - { - "__name__": "ALERTS", - "severity": "page", - "alertname": "TestAlert_AbortOnPartialResponse", - "alertstate": "firing", - "replica": model.LabelValue(r1.HTTP.Port), - }, + ctx, cancel := context.WithTimeout(context.Background(), 3*time.Minute) + defer cancel() + + queryAndAssertSeries(t, ctx, q.HTTPEndpoint(), "ALERTS", promclient.QueryOptions{ + Deduplicate: false, + }, []model.Metric{ { "__name__": "ALERTS", "severity": "page", "alertname": "TestAlert_AbortOnPartialResponse", "alertstate": "firing", - "replica": model.LabelValue(r2.HTTP.Port), - }, - { - "__name__": "ALERTS", - "severity": "page", - "alertname": "TestAlert_WarnOnPartialResponse", - "alertstate": "firing", - "replica": model.LabelValue(r1.HTTP.Port), + "replica": "1", }, { "__name__": "ALERTS", "severity": "page", "alertname": "TestAlert_WarnOnPartialResponse", "alertstate": "firing", - "replica": model.LabelValue(r2.HTTP.Port), + "replica": "1", }, - } + }) + expAlertLabels := []model.LabelSet{ { "severity": "page", "alertname": "TestAlert_AbortOnPartialResponse", - "replica": model.LabelValue(r1.HTTP.Port), - }, - { - "severity": "page", - "alertname": "TestAlert_AbortOnPartialResponse", - "replica": model.LabelValue(r2.HTTP.Port), + "replica": "1", }, { "severity": "page", "alertname": "TestAlert_WarnOnPartialResponse", - "replica": model.LabelValue(r1.HTTP.Port), - }, - { - "severity": "page", - "alertname": "TestAlert_WarnOnPartialResponse", - "replica": model.LabelValue(r2.HTTP.Port), + "replica": "1", }, } - testutil.Ok(t, runutil.Retry(5*time.Second, ctx.Done(), func() (err error) { - select { - case <-exit: - cancel() - return nil - default: - } - - qtime := time.Now() - - // The time series written for the firing alerting rule must be queryable. - res, warnings, err := promclient.QueryInstant(ctx, nil, urlParse(t, q.HTTP.URL()), "ALERTS", time.Now(), promclient.QueryOptions{ - Deduplicate: false, - }) - if err != nil { - return err - } - - if len(warnings) > 0 { - // we don't expect warnings. - return errors.Errorf("unexpected warnings %s", warnings) - } - - if len(res) != len(expMetrics) { - return errors.Errorf("unexpected result %v, expected %d", res, len(expMetrics)) - } - - for i, r := range res { - if !r.Metric.Equal(expMetrics[i]) { - return errors.Errorf("unexpected metric %s", r.Metric) - } - if int64(r.Timestamp) != timestamp.FromTime(qtime) { - return errors.Errorf("unexpected timestamp %d", r.Timestamp) - } - if r.Value != 1 { - return errors.Errorf("unexpected value %f", r.Value) - } - } - - // A notification must be sent to Alertmanager. - alrts, err := queryAlertmanagerAlerts(ctx, am.HTTP.URL()) - if err != nil { - return err - } - if len(alrts) != len(expAlertLabels) { - return errors.Errorf("unexpected alerts length %d", len(alrts)) - } - for i, a := range alrts { - if !a.Labels.Equal(expAlertLabels[i]) { - return errors.Errorf("unexpected labels %s", a.Labels) - } - } - return nil - })) - - // The checks counter ensures that we are not missing metrics. - checks := 0 - // Check metrics to make sure we report correct ones that allow handling the AlwaysFiring not being triggered because of query issue. - testutil.Ok(t, promclient.MetricValues(ctx, nil, urlParse(t, r1.HTTP.URL()), func(lset labels.Labels, val float64) error { - switch lset.Get("__name__") { - case "prometheus_rule_group_rules": - checks++ - if val != 1 { - return errors.Errorf("expected 1 loaded groups for strategy %s but found %v", lset.Get("strategy"), val) - } - } - - return nil - })) - testutil.Equals(t, 2, checks) - - // Verify the rules API endpoint. - for _, r := range []*serverScheduler{r1, r2} { - rgs, err := queryRules(ctx, r.HTTP.URL()) - testutil.Ok(t, err) - testutil.Equals(t, 2, len(rgs)) - for i := range rgs { - testutil.Equals(t, filepath.Join(rulesDir, fmt.Sprintf("rules-%d.yaml", i)), rgs[i].File) - testutil.Equals(t, "example", rgs[i].Name) - } - } + alrts, err := queryAlertmanagerAlerts(ctx, "http://"+am2.HTTPEndpoint()) + testutil.Ok(t, err) - // Verify the alerts API endpoint. - for _, r := range []*serverScheduler{r1, r2} { - code, _, err := getAPIEndpoint(ctx, r.HTTP.URL()+"/api/v1/alerts") - testutil.Ok(t, err) - testutil.Equals(t, 200, code) + testutil.Equals(t, len(expAlertLabels), len(alrts)) + for i, a := range alrts { + testutil.Assert(t, a.Labels.Equal(expAlertLabels[i]), "unexpected labels %s", a.Labels) } } -type failingStoreAPI struct{} - -func (a *failingStoreAPI) Info(context.Context, *storepb.InfoRequest) (*storepb.InfoResponse, error) { - return &storepb.InfoResponse{ - MinTime: math.MinInt64, - MaxTime: math.MaxInt64, - Labels: []storepb.Label{ - { - Name: "magic", - Value: "store_api", - }, - }, - LabelSets: []storepb.LabelSet{ - { - Labels: []storepb.Label{ - { - Name: "magic", - Value: "store_api", - }, - }, - }, - { - Labels: []storepb.Label{ - { - Name: "magicmarker", - Value: "store_api", - }, - }, - }, - }, - }, nil -} - -func (a *failingStoreAPI) Series(_ *storepb.SeriesRequest, _ storepb.Store_SeriesServer) error { - return errors.New("I always fail. No reason. I am just offended StoreAPI. Don't touch me") -} - -func (a *failingStoreAPI) LabelNames(context.Context, *storepb.LabelNamesRequest) (*storepb.LabelNamesResponse, error) { - return &storepb.LabelNamesResponse{}, nil -} - -func (a *failingStoreAPI) LabelValues(context.Context, *storepb.LabelValuesRequest) (*storepb.LabelValuesResponse, error) { - return &storepb.LabelValuesResponse{}, nil -} - // Test Ruler behaviour on different storepb.PartialResponseStrategy when having partial response from single `failingStoreAPI`. func TestRulePartialResponse(t *testing.T) { - a := newLocalAddresser() - qAddr := a.New() - queryCfg := serializeQueryConfiguration( - t, - query.Config{ - EndpointsConfig: http_util.EndpointsConfig{ - StaticAddresses: []string{qAddr.HostPort()}, - Scheme: "http", - }, - }, - ) - - f := fakeStoreAPI(a.New(), &failingStoreAPI{}) - am := alertManager(a.New()) - amCfg := serializeAlertingConfiguration( - t, - alert.AlertmanagerConfig{ - EndpointsConfig: http_util.EndpointsConfig{ - StaticAddresses: []string{am.HTTP.HostPort()}, - Scheme: "http", - }, - Timeout: model.Duration(time.Second), - APIVersion: alert.APIv2, - }, - ) - - rulesDir, err := ioutil.TempDir("", "rules") - defer os.RemoveAll(rulesDir) - testutil.Ok(t, err) - - r := rule(a.New(), a.New(), rulesDir, amCfg, queryCfg) - q := querier(qAddr, a.New(), []address{r.GRPC, f.GRPC}, nil) - - ctx, cancel := context.WithTimeout(context.Background(), 3*time.Minute) - exit, err := e2eSpinup(t, ctx, am, f, q, r) - if err != nil { - t.Errorf("spinup failed: %v", err) - cancel() - return - } - - defer func() { - cancel() - <-exit - }() - - testutil.Ok(t, runutil.Retry(5*time.Second, ctx.Done(), func() (err error) { - select { - case <-exit: - cancel() - return nil - default: - } + t.Skip("TODO: Allow HTTP ports from binaries running on host to be accessible.") - // The time series written for the firing alerting rule must be queryable. - res, warnings, err := promclient.QueryInstant(ctx, nil, urlParse(t, q.HTTP.URL()), "ALERTS", time.Now(), promclient.QueryOptions{ - Deduplicate: false, - }) - if err != nil { - return err - } - - if len(warnings) != 1 { - // We do expect warnings. - return errors.Errorf("unexpected number of warnings, expected 1, got %s", warnings) - } - - // This is tricky as for initial time (1 rule eval, we will have both alerts, as "No store match queries" will be there. - if len(res) != 0 { - return errors.Errorf("unexpected result length. expected %v, got %v", 0, res) - } - return nil - })) - - // Add alerts to ruler, we want to add it only when Querier is rdy, otherwise we will get "no store match the query". - createRuleFiles(t, rulesDir) - - resp, err := http.Post(r.HTTP.URL()+"/-/reload", "", nil) - testutil.Ok(t, err) - defer func() { _, _ = ioutil.ReadAll(resp.Body); _ = resp.Body.Close() }() - testutil.Equals(t, http.StatusOK, resp.StatusCode) - - // We don't expect `AlwaysFiring` as it does NOT allow PartialResponse, so it will trigger `prometheus_rule_evaluation_failures_total` instead. - expMetrics := []model.Metric{ - { - "__name__": "ALERTS", - "severity": "page", - "alertname": "TestAlert_WarnOnPartialResponse", - "alertstate": "firing", - "replica": model.LabelValue(r.HTTP.Port), - }, - } - expAlertLabels := []model.LabelSet{ - { - "severity": "page", - "alertname": "TestAlert_WarnOnPartialResponse", - "replica": model.LabelValue(r.HTTP.Port), - }, - } - - expectedWarning := "receive series from Addr: " + f.GRPC.HostPort() + " LabelSets: [name:\"magic\" value:\"store_api\" ][name:\"magicmarker\" value:\"store_api\" ] Mint: -9223372036854775808 Maxt: 9223372036854775807: rpc error: code = Unknown desc = I always fail. No reason. I am just offended StoreAPI. Don't touch me" - - testutil.Ok(t, runutil.Retry(5*time.Second, ctx.Done(), func() (err error) { - select { - case <-exit: - cancel() - return nil - default: - } - - qtime := time.Now() - - // The time series written for the firing alerting rule must be queryable. - res, warnings, err := promclient.QueryInstant(ctx, nil, urlParse(t, q.HTTP.URL()), "ALERTS", time.Now(), promclient.QueryOptions{ - Deduplicate: false, - }) - if err != nil { - return err - } - - if len(warnings) != 1 { - // We do expect warnings. - return errors.Errorf("unexpected number of warnings, expected 1, got %s", warnings) - } - - if warnings[0] != expectedWarning { - return errors.Errorf("unexpected warning, expected %s, got %s", expectedWarning, warnings[0]) - } - - // This is tricky as for initial time (1 rule eval, we will have both alerts, as "No store match queries" will be there. - if len(res) != len(expMetrics) { - return errors.Errorf("unexpected result length. expected %v, got %v", len(expMetrics), res) - } - - for i, r := range res { - if !r.Metric.Equal(expMetrics[i]) { - return errors.Errorf("unexpected metric %s, expected %s", r.Metric, expMetrics[i]) - } - if int64(r.Timestamp) != timestamp.FromTime(qtime) { - return errors.Errorf("unexpected timestamp %d", r.Timestamp) - } - if r.Value != 1 { - return errors.Errorf("unexpected value %f", r.Value) - } - } - - // A notification must be sent to Alertmanager. - alrts, err := queryAlertmanagerAlerts(ctx, am.HTTP.URL()) - if err != nil { - return err - } - if len(alrts) != len(expAlertLabels) { - return errors.Errorf("unexpected alerts length %d", len(alrts)) - } - for i, a := range alrts { - if !a.Labels.Equal(expAlertLabels[i]) { - return errors.Errorf("unexpected labels %s", a.Labels) - } - } - return nil - })) - - // checks counter ensures we are not missing metrics. - checks := 0 - // Check metrics to make sure we report correct ones that allow handling the AlwaysFiring not being triggered because of query issue. - testutil.Ok(t, promclient.MetricValues(ctx, nil, urlParse(t, r.HTTP.URL()), func(lset labels.Labels, val float64) error { - switch lset.Get("__name__") { - case "prometheus_rule_group_rules": - checks++ - if val != 1 { - return errors.Errorf("expected 1 loaded groups for strategy %s but found %v", lset.Get("strategy"), val) - } - case "prometheus_rule_evaluation_failures_total": - if lset.Get("strategy") == "abort" { - checks++ - if val <= 0 { - return errors.Errorf("expected rule eval failures for abort strategy rule as we have failing storeAPI but found %v", val) - } - } else if lset.Get("strategy") == "warn" { - checks++ - if val > 0 { - return errors.Errorf("expected no rule eval failures for warm strategy rule but found %v", val) - } - } - case "thanos_rule_evaluation_with_warnings_total": - if lset.Get("strategy") == "warn" { - checks++ - if val <= 0 { - return errors.Errorf("expected rule eval with warnings for warn strategy rule as we have failing storeAPI but found %v", val) - } - } else if lset.Get("strategy") == "abort" { - checks++ - if val > 0 { - return errors.Errorf("expected rule eval with warnings 0 for abort strategy rule but found %v", val) - } - } - } - return nil - })) - testutil.Equals(t, 6, checks) + // TODO: Implement with failing store. } // TODO(bwplotka): Move to promclient. @@ -892,27 +507,6 @@ func queryAlertmanagerAlerts(ctx context.Context, url string) ([]*model.Alert, e return v.Data, nil } -func queryRules(ctx context.Context, url string) ([]*rapi.RuleGroup, error) { - code, body, err := getAPIEndpoint(ctx, url+"/api/v1/rules") - if err != nil { - return nil, err - } - if code != 200 { - return nil, errors.Errorf("expected 200 response, got %d", code) - } - - var resp struct { - Data rapi.RuleDiscovery - } - if err = json.Unmarshal(body, &resp); err != nil { - return nil, err - } - sort.Slice(resp.Data.RuleGroups, func(i, j int) bool { - return resp.Data.RuleGroups[i].File < resp.Data.RuleGroups[j].File - }) - return resp.Data.RuleGroups, nil -} - func getAPIEndpoint(ctx context.Context, url string) (int, []byte, error) { req, err := http.NewRequest("GET", url, nil) if err != nil { diff --git a/test/e2e/spinup_test.go b/test/e2e/spinup_test.go deleted file mode 100644 index ad0f57b6c41..00000000000 --- a/test/e2e/spinup_test.go +++ /dev/null @@ -1,607 +0,0 @@ -// Copyright (c) The Thanos Authors. -// Licensed under the Apache License 2.0. - -package e2e_test - -import ( - "bufio" - "context" - "encoding/json" - "fmt" - "io" - "io/ioutil" - "net" - "os" - "os/exec" - "path/filepath" - "strconv" - "syscall" - "testing" - "time" - - "github.com/oklog/run" - "github.com/pkg/errors" - "github.com/thanos-io/thanos/pkg/objstore/s3" - "github.com/thanos-io/thanos/pkg/receive" - "github.com/thanos-io/thanos/pkg/runutil" - "github.com/thanos-io/thanos/pkg/store/storepb" - "github.com/thanos-io/thanos/pkg/testutil/e2eutil" - "google.golang.org/grpc" -) - -const portMin = 10000 - -func remoteWriteEndpoint(addr address) string { return fmt.Sprintf("%s/api/v1/receive", addr.URL()) } - -type address struct { - host string - Port string -} - -func (a address) HostPort() string { - return net.JoinHostPort(a.host, a.Port) -} - -func (a address) URL() string { - return fmt.Sprintf("http://%s", net.JoinHostPort(a.host, a.Port)) -} - -// portPool allows to reserve ports within unit test. This naive implementation assumes that all ports from portMin-X are free outside. -// No top boundary, no thread safety. -// TODO(bwplotka): Make it more resilient. -type portPool struct { - lastPort int -} - -func (pp *portPool) New() int { - if pp.lastPort < portMin { - pp.lastPort = portMin - 1 - } - pp.lastPort++ - return pp.lastPort -} - -type addresser struct { - host string - pp *portPool -} - -func (a *addresser) New() address { - return address{host: a.host, Port: fmt.Sprintf("%d", a.pp.New())} -} - -func newLocalAddresser() *addresser { - // We keep this one with localhost, not 127.0.0.1 to have perfect match with what Prometheus will expose in up metric. - return &addresser{host: "localhost", pp: &portPool{}} -} - -type Exec interface { - Start(stdout io.Writer, stderr io.Writer) error - Wait() error - Kill() error - - String() string -} - -type cmdExec struct { - *exec.Cmd -} - -func newCmdExec(cmd *exec.Cmd) *cmdExec { - return &cmdExec{Cmd: cmd} -} - -func (c *cmdExec) Start(stdout io.Writer, stderr io.Writer) error { - c.Stderr = stderr - c.Stdout = stdout - c.SysProcAttr = e2eutil.SysProcAttr() - return c.Cmd.Start() -} - -func (c *cmdExec) Kill() error { return c.Process.Signal(syscall.SIGKILL) } - -func (c *cmdExec) String() string { return fmt.Sprintf("%s %v", c.Path, c.Args[1:]) } - -type scheduler interface { - Schedule(workDir string) (Exec, error) -} - -type serverScheduler struct { - schedule func(workDir string) (Exec, error) - - HTTP address - GRPC address -} - -func (s *serverScheduler) Schedule(workDir string) (Exec, error) { return s.schedule(workDir) } - -type prometheusScheduler struct { - serverScheduler - - RelDir string -} - -func prometheus(http address, config string) *prometheusScheduler { - s := &prometheusScheduler{ - RelDir: filepath.Join("data", "prom", http.Port), - } - - s.serverScheduler = serverScheduler{ - HTTP: http, - schedule: func(workDir string) (execs Exec, e error) { - promDir := filepath.Join(workDir, s.RelDir) - if err := os.MkdirAll(promDir, 0777); err != nil { - return nil, errors.Wrap(err, "create prom dir failed") - } - - if err := ioutil.WriteFile(promDir+"/prometheus.yml", []byte(config), 0666); err != nil { - return nil, errors.Wrap(err, "creating prom config failed") - } - - return newCmdExec(exec.Command(e2eutil.PrometheusBinary(), - "--config.file", promDir+"/prometheus.yml", - "--storage.tsdb.path", promDir, - "--storage.tsdb.max-block-duration", "2h", - "--log.level", "info", - "--web.listen-address", http.HostPort(), - )), nil - }, - } - return s -} - -func sidecar(http, grpc address, prom *prometheusScheduler) *serverScheduler { - return &serverScheduler{ - HTTP: http, - GRPC: grpc, - schedule: func(workDir string) (Exec, error) { - promDir := filepath.Join(workDir, prom.RelDir) - return newCmdExec(exec.Command("thanos", "sidecar", - "--debug.name", fmt.Sprintf("sidecar-%s", http.Port), - "--grpc-address", grpc.HostPort(), - "--grpc-grace-period", "0s", - "--http-address", http.HostPort(), - "--prometheus.url", prom.HTTP.URL(), - "--tsdb.path", promDir, - "--log.level", "debug")), nil - }, - } -} - -func receiver(http, grpc, metric address, replicationFactor int, hashring ...receive.HashringConfig) *serverScheduler { - if len(hashring) == 0 { - hashring = []receive.HashringConfig{{Endpoints: []string{grpc.HostPort()}}} - } - - return &serverScheduler{ - HTTP: http, - GRPC: grpc, - schedule: func(workDir string) (Exec, error) { - receiveDir := filepath.Join(workDir, "data", "receive", http.Port) - if err := os.MkdirAll(receiveDir, 0777); err != nil { - return nil, errors.Wrap(err, "create receive dir") - } - - b, err := json.Marshal(hashring) - if err != nil { - return nil, errors.Wrapf(err, "generate hashring file: %v", hashring) - } - - if err := ioutil.WriteFile(filepath.Join(receiveDir, "hashrings.json"), b, 0666); err != nil { - return nil, errors.Wrap(err, "creating receive config") - } - - return newCmdExec(exec.Command("thanos", "receive", - "--debug.name", fmt.Sprintf("receive-%s", http.Port), - "--grpc-address", grpc.HostPort(), - "--grpc-grace-period", "0s", - "--http-address", metric.HostPort(), - "--remote-write.address", http.HostPort(), - "--label", fmt.Sprintf(`receive="%s"`, http.Port), - "--tsdb.path", filepath.Join(receiveDir, "tsdb"), - "--log.level", "debug", - "--receive.replication-factor", strconv.Itoa(replicationFactor), - "--receive.local-endpoint", grpc.HostPort(), - "--receive.hashrings-file", filepath.Join(receiveDir, "hashrings.json"), - "--receive.hashrings-file-refresh-interval", "5s")), nil - }, - } -} - -func querier(http, grpc address, storeAddresses []address, fileSDStoreAddresses []address) *serverScheduler { - const replicaLabel = "replica" - return &serverScheduler{ - HTTP: http, - GRPC: grpc, - schedule: func(workDir string) (Exec, error) { - args := []string{ - "query", - "--debug.name", fmt.Sprintf("querier-%s", http.Port), - "--grpc-address", grpc.HostPort(), - "--grpc-grace-period", "0s", - "--http-address", http.HostPort(), - "--log.level", "debug", - "--query.replica-label", replicaLabel, - "--store.sd-dns-interval", "5s", - } - for _, addr := range storeAddresses { - args = append(args, "--store", addr.HostPort()) - } - - if len(fileSDStoreAddresses) > 0 { - queryFileSDDir := filepath.Join(workDir, "data", "querier", http.Port) - if err := os.MkdirAll(queryFileSDDir, 0777); err != nil { - return nil, errors.Wrap(err, "create query dir failed") - } - - if err := ioutil.WriteFile(queryFileSDDir+"/filesd.json", []byte(generateFileSD(fileSDStoreAddresses)), 0666); err != nil { - return nil, errors.Wrap(err, "creating query SD config failed") - } - - args = append(args, - "--store.sd-files", filepath.Join(queryFileSDDir, "filesd.json"), - "--store.sd-interval", "5s", - ) - } - - return newCmdExec(exec.Command("thanos", args...)), nil - }, - } -} - -func storeGateway(http, grpc address, bucketConfig []byte, relabelConfig []byte) *serverScheduler { - return &serverScheduler{ - HTTP: http, - GRPC: grpc, - schedule: func(workDir string) (Exec, error) { - dbDir := filepath.Join(workDir, "data", "store-gateway", http.Port) - - if err := os.MkdirAll(dbDir, 0777); err != nil { - return nil, errors.Wrap(err, "creating store gateway dir failed") - } - - return newCmdExec(exec.Command("thanos", - "store", - "--debug.name", fmt.Sprintf("store-gw-%s", http.Port), - "--data-dir", dbDir, - "--grpc-address", grpc.HostPort(), - "--grpc-grace-period", "0s", - "--http-address", http.HostPort(), - "--log.level", "debug", - "--objstore.config", string(bucketConfig), - // Accelerated sync time for quicker test (3m by default). - "--sync-block-duration", "5s", - "--selector.relabel-config", string(relabelConfig), - "--experimental.enable-index-header", - )), nil - }, - } -} - -func alertManager(http address) *serverScheduler { - return &serverScheduler{ - HTTP: http, - schedule: func(workDir string) (Exec, error) { - dir := filepath.Join(workDir, "data", "alertmanager", http.Port) - - if err := os.MkdirAll(dir, 0777); err != nil { - return nil, errors.Wrap(err, "creating alertmanager dir failed") - } - config := ` -route: - group_by: ['alertname'] - group_wait: 1s - group_interval: 1s - receiver: 'null' -receivers: -- name: 'null' -` - if err := ioutil.WriteFile(dir+"/config.yaml", []byte(config), 0666); err != nil { - return nil, errors.Wrap(err, "creating alertmanager config file failed") - } - return newCmdExec(exec.Command(e2eutil.AlertmanagerBinary(), - "--config.file", dir+"/config.yaml", - "--web.listen-address", http.HostPort(), - "--cluster.listen-address", "", - "--log.level", "debug", - )), nil - }, - } -} - -func rule(http, grpc address, ruleDir string, amCfg []byte, queryCfg []byte) *serverScheduler { - return &serverScheduler{ - HTTP: http, - GRPC: grpc, - schedule: func(workDir string) (Exec, error) { - err := ioutil.WriteFile(filepath.Join(workDir, "query.cfg"), queryCfg, 0666) - if err != nil { - return nil, errors.Wrap(err, "creating query config for ruler") - } - args := []string{ - "rule", - "--debug.name", fmt.Sprintf("rule-%s", http.Port), - "--label", fmt.Sprintf(`replica="%s"`, http.Port), - "--data-dir", filepath.Join(workDir, "data"), - "--rule-file", filepath.Join(ruleDir, "*.yaml"), - "--eval-interval", "1s", - "--alertmanagers.config", string(amCfg), - "--alertmanagers.sd-dns-interval", "5s", - "--grpc-address", grpc.HostPort(), - "--grpc-grace-period", "0s", - "--http-address", http.HostPort(), - "--log.level", "debug", - "--query.config-file", filepath.Join(workDir, "query.cfg"), - "--query.sd-dns-interval", "5s", - "--resend-delay", "5s", - } - return newCmdExec(exec.Command("thanos", args...)), nil - }, - } -} - -type sameProcessGRPCServiceExec struct { - addr string - stdout io.Writer - stderr io.Writer - - ctx context.Context - cancel context.CancelFunc - srvChan <-chan error - srv *grpc.Server -} - -func (c *sameProcessGRPCServiceExec) Start(stdout io.Writer, stderr io.Writer) error { - c.stderr = stderr - c.stdout = stdout - - if c.ctx != nil { - return errors.New("process already started") - } - c.ctx, c.cancel = context.WithCancel(context.Background()) - - l, err := net.Listen("tcp", c.addr) - if err != nil { - return errors.Wrap(err, "listen API address") - } - - srvChan := make(chan error) - go func() { - defer close(srvChan) - if err := c.srv.Serve(l); err != nil { - srvChan <- err - _, _ = c.stderr.Write([]byte(fmt.Sprintf("server failed: %s", err))) - } - }() - c.srvChan = srvChan - return nil -} - -func (c *sameProcessGRPCServiceExec) Wait() error { - err := <-c.srvChan - if c.ctx.Err() == nil && err != nil { - return err - } - return err -} - -func (c *sameProcessGRPCServiceExec) Kill() error { - c.cancel() - c.srv.Stop() - - return nil -} - -func (c *sameProcessGRPCServiceExec) String() string { - return fmt.Sprintf("gRPC service %v", c.addr) -} - -func fakeStoreAPI(grpcAddr address, svc storepb.StoreServer) *serverScheduler { - return &serverScheduler{ - GRPC: grpcAddr, - schedule: func(_ string) (Exec, error) { - - srv := grpc.NewServer() - storepb.RegisterStoreServer(srv, svc) - - return &sameProcessGRPCServiceExec{addr: grpcAddr.HostPort(), srv: srv}, nil - }, - } -} - -func minio(http address, config s3.Config) *serverScheduler { - return &serverScheduler{ - HTTP: http, - schedule: func(workDir string) (Exec, error) { - dbDir := filepath.Join(workDir, "data", "minio", http.Port) - if err := os.MkdirAll(dbDir, 0777); err != nil { - return nil, errors.Wrap(err, "creating minio dir failed") - } - - cmd := exec.Command(e2eutil.MinioBinary(), - "server", - "--address", http.HostPort(), - dbDir, - ) - cmd.Env = append(os.Environ(), - fmt.Sprintf("MINIO_ACCESS_KEY=%s", config.AccessKey), - fmt.Sprintf("MINIO_SECRET_KEY=%s", config.SecretKey)) - - return newCmdExec(cmd), nil - }, - } -} - -// NOTE: It is important to install Thanos before using this function to compile latest changes. -// This means that export GOCACHE=/unique/path is must have to avoid having this test cached locally. -func e2eSpinup(t testing.TB, ctx context.Context, cmds ...scheduler) (exit chan struct{}, err error) { - return e2eSpinupWithS3ObjStorage(t, ctx, address{}, nil, cmds...) -} - -func e2eSpinupWithS3ObjStorage(t testing.TB, ctx context.Context, minioAddr address, s3Config *s3.Config, cmds ...scheduler) (exit chan struct{}, err error) { - dir, err := ioutil.TempDir("", "spinup_test") - if err != nil { - return nil, err - } - - defer func() { - if err != nil { - if rerr := os.RemoveAll(dir); rerr != nil { - t.Log(rerr) - } - } - }() - - var s3Exit chan struct{} - if s3Config != nil { - s3Exit, err = e2eSpinupWithS3ObjStorage(t, ctx, address{}, nil, minio(minioAddr, *s3Config)) - if err != nil { - return nil, errors.Wrap(err, "start minio") - } - - ctx, cancel := context.WithCancel(ctx) - if err := runutil.Retry(time.Second, ctx.Done(), func() error { - select { - case <-s3Exit: - cancel() - return nil - default: - } - - bkt, _, err := s3.NewTestBucketFromConfig(t, "eu-west1", *s3Config, false) - if err != nil { - return errors.Wrap(err, "create bkt client for minio healthcheck") - } - - return bkt.Close() - }); err != nil { - return nil, errors.Wrap(err, "minio not ready in time") - } - } - - var g run.Group - - // Interrupt go routine. - { - ctx, cancel := context.WithCancel(ctx) - g.Add(func() error { - // This go routine will return only when: - // 1) Any other process from group exited unexpectedly - // 2) Global context will be cancelled. - // 3) Minio (if started) exited unexpectedly. - - if s3Exit != nil { - select { - case <-ctx.Done(): - case <-s3Exit: - } - return nil - } - - <-ctx.Done() - return nil - - }, func(error) { - cancel() - if err := os.RemoveAll(dir); err != nil { - t.Log(err) - } - }) - } - - var stdFiles []*os.File - // Run go routine for each command. - for _, command := range cmds { - c, err := command.Schedule(dir) - if err != nil { - return nil, err - } - // Store buffers in temp files to avoid excessive memory consumption. - stdout, err := ioutil.TempFile(dir, "stdout") - if err != nil { - return nil, errors.Wrap(err, "create file for stdout") - } - - stderr, err := ioutil.TempFile(dir, "stderr") - if err != nil { - return nil, errors.Wrap(err, "create file for stderr") - } - - stdFiles = append(stdFiles, stdout, stderr) - if err := c.Start(stdout, stderr); err != nil { - // Let already started commands finish. - go func() { _ = g.Run() }() - return nil, errors.Wrap(err, "start") - } - - cmd := c - g.Add(func() error { - return errors.Wrap(cmd.Wait(), cmd.String()) - }, func(error) { - // This's accepted scenario to kill a process immediately for sure and run tests as fast as possible. - _ = cmd.Kill() - }) - } - - exit = make(chan struct{}) - go func(g run.Group) { - if err := g.Run(); err != nil && ctx.Err() == nil { - t.Errorf("Some process exited unexpectedly: %v", err) - } - - if s3Exit != nil { - <-s3Exit - } - - printAndCloseFiles(t, stdFiles) - close(exit) - }(g) - - return exit, nil -} - -func generateFileSD(addresses []address) string { - conf := "[ { \"targets\": [" - for index, addr := range addresses { - conf += fmt.Sprintf("\"%s\"", addr.HostPort()) - if index+1 < len(addresses) { - conf += "," - } - } - conf += "] } ]" - return conf -} - -func printAndCloseFiles(t testing.TB, files []*os.File) { - defer func() { - for _, f := range files { - _ = f.Close() - } - }() - - for _, f := range files { - info, err := f.Stat() - if err != nil { - t.Error(err) - } - - if info.Size() == 0 { - continue - } - - if _, err := f.Seek(0, 0); err != nil { - t.Error(err) - } - t.Logf("-------------------------------------------") - t.Logf("------------------- %s ------------------", f.Name()) - t.Logf("-------------------------------------------") - - scanner := bufio.NewScanner(f) - for scanner.Scan() { - t.Log(scanner.Text()) - } - if err := scanner.Err(); err != nil { - t.Error(err) - } - } -} diff --git a/test/e2e/store_gateway_test.go b/test/e2e/store_gateway_test.go index 484fbec325d..64a0b352e46 100644 --- a/test/e2e/store_gateway_test.go +++ b/test/e2e/store_gateway_test.go @@ -5,181 +5,245 @@ package e2e_test import ( "context" - "io/ioutil" + "net/http" "os" "path" + "path/filepath" "testing" "time" + "github.com/cortexproject/cortex/integration/e2e" + e2edb "github.com/cortexproject/cortex/integration/e2e/db" "github.com/go-kit/kit/log" - "github.com/pkg/errors" "github.com/prometheus/common/model" "github.com/prometheus/prometheus/pkg/labels" + "github.com/prometheus/prometheus/pkg/relabel" "github.com/prometheus/prometheus/pkg/timestamp" + "github.com/thanos-io/thanos/pkg/block" "github.com/thanos-io/thanos/pkg/objstore" "github.com/thanos-io/thanos/pkg/objstore/client" "github.com/thanos-io/thanos/pkg/objstore/s3" "github.com/thanos-io/thanos/pkg/promclient" - "github.com/thanos-io/thanos/pkg/runutil" "github.com/thanos-io/thanos/pkg/testutil" "github.com/thanos-io/thanos/pkg/testutil/e2eutil" - yaml "gopkg.in/yaml.v2" + "github.com/thanos-io/thanos/test/e2e/e2ethanos" ) +// TODO(bwplotka): Extend this test to have multiple stores and memcached. +// TODO(bwplotka): Extend this test for downsampling. func TestStoreGateway(t *testing.T) { - a := newLocalAddresser() - minioAddr := a.New() - - s3Config := s3.Config{ - Bucket: "test-storegateway-query", - AccessKey: "abc", - SecretKey: "mightysecret", - Endpoint: minioAddr.HostPort(), - Insecure: true, - } - - bucketConfig := client.BucketConfig{ - Type: client.S3, - Config: s3Config, - } + t.Parallel() - config, err := yaml.Marshal(bucketConfig) + s, err := e2e.NewScenario("e2e_test_store_gateway") testutil.Ok(t, err) + defer s.Close() + + m := e2edb.NewMinio(80, "thanos") + testutil.Ok(t, s.StartAndWaitReady(m)) + + s1, err := e2ethanos.NewStoreGW(s.SharedDir(), "1", client.BucketConfig{ + Type: client.S3, + Config: s3.Config{ + Bucket: "thanos", + AccessKey: e2edb.MinioAccessKey, + SecretKey: e2edb.MinioSecretKey, + Endpoint: m.NetworkHTTPEndpoint(), + Insecure: true, + }, + }, relabel.Config{ + Action: relabel.Drop, + Regex: relabel.MustNewRegexp("value2"), + SourceLabels: model.LabelNames{"ext1"}, + }) + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(s1)) + // Ensure bucket UI. + ensureGETStatusCode(t, http.StatusOK, "http://"+path.Join(s1.HTTPEndpoint(), "loaded")) - relabelContentYaml := ` - - action: drop - regex: "value2" - source_labels: - - ext1 - ` - s := storeGateway(a.New(), a.New(), config, []byte(relabelContentYaml)) - q := querier(a.New(), a.New(), []address{s.GRPC}, nil) - ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second) - - exit, err := e2eSpinupWithS3ObjStorage(t, ctx, minioAddr, &s3Config, s, q) - if err != nil { - t.Errorf("spinup failed: %v", err) - cancel() - return - } - - defer func() { - cancel() - <-exit - }() - - dir, err := ioutil.TempDir("", "test_store_gateway_query_local") + q, err := e2ethanos.NewQuerier( + s.SharedDir(), "1", + []string{s1.GRPCNetworkEndpoint()}, nil) testutil.Ok(t, err) - defer func() { testutil.Ok(t, os.RemoveAll(dir)) }() + testutil.Ok(t, s.StartAndWaitReady(q)) + + dir := filepath.Join(s.SharedDir(), "tmp") + testutil.Ok(t, os.MkdirAll(filepath.Join(s.SharedDir(), dir), os.ModePerm)) - series := []labels.Labels{ - labels.FromStrings("a", "1", "b", "2"), - } + series := []labels.Labels{labels.FromStrings("a", "1", "b", "2")} extLset := labels.FromStrings("ext1", "value1", "replica", "1") extLset2 := labels.FromStrings("ext1", "value1", "replica", "2") extLset3 := labels.FromStrings("ext1", "value2", "replica", "3") + extLset4 := labels.FromStrings("ext1", "value1", "replica", "3") + + ctx, cancel := context.WithTimeout(context.Background(), 1*time.Minute) + defer cancel() now := time.Now() - id1, err := e2eutil.CreateBlock(ctx, dir, series, 10, timestamp.FromTime(now), timestamp.FromTime(now.Add(2*time.Hour)), extLset, 0) + id1, err := e2eutil.CreateBlockWithBlockDelay(ctx, dir, series, 10, timestamp.FromTime(now), timestamp.FromTime(now.Add(2*time.Hour)), 30*time.Minute, extLset, 0) testutil.Ok(t, err) - - id2, err := e2eutil.CreateBlock(ctx, dir, series, 10, timestamp.FromTime(now), timestamp.FromTime(now.Add(2*time.Hour)), extLset2, 0) + id2, err := e2eutil.CreateBlockWithBlockDelay(ctx, dir, series, 10, timestamp.FromTime(now), timestamp.FromTime(now.Add(2*time.Hour)), 30*time.Minute, extLset2, 0) testutil.Ok(t, err) - - id3, err := e2eutil.CreateBlock(ctx, dir, series, 10, timestamp.FromTime(now), timestamp.FromTime(now.Add(2*time.Hour)), extLset3, 0) + id3, err := e2eutil.CreateBlockWithBlockDelay(ctx, dir, series, 10, timestamp.FromTime(now), timestamp.FromTime(now.Add(2*time.Hour)), 30*time.Minute, extLset3, 0) + testutil.Ok(t, err) + id4, err := e2eutil.CreateBlock(ctx, dir, series, 10, timestamp.FromTime(now), timestamp.FromTime(now.Add(2*time.Hour)), extLset, 0) testutil.Ok(t, err) - l := log.NewLogfmtLogger(os.Stdout) - - bkt, err := s3.NewBucketWithConfig(l, s3Config, "test-feed") + bkt, err := s3.NewBucketWithConfig(l, s3.Config{ + Bucket: "thanos", + AccessKey: e2edb.MinioAccessKey, + SecretKey: e2edb.MinioSecretKey, + Endpoint: m.HTTPEndpoint(), // We need separate client config, when connecting to minio from outside. + Insecure: true, + }, "test-feed") testutil.Ok(t, err) testutil.Ok(t, objstore.UploadDir(ctx, l, bkt, path.Join(dir, id1.String()), id1.String())) testutil.Ok(t, objstore.UploadDir(ctx, l, bkt, path.Join(dir, id2.String()), id2.String())) testutil.Ok(t, objstore.UploadDir(ctx, l, bkt, path.Join(dir, id3.String()), id3.String())) + testutil.Ok(t, objstore.UploadDir(ctx, l, bkt, path.Join(dir, id4.String()), id4.String())) + + // Wait for store to sync blocks. + // thanos_blocks_meta_synced: 2x loadedMeta 1x labelExcludedMeta 1x TooFreshMeta. + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(4), "thanos_blocks_meta_synced")) + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_sync_failures_total")) + + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(2), "thanos_bucket_store_blocks_loaded")) + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(0), "thanos_bucket_store_block_drops_total")) + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(0), "thanos_bucket_store_block_load_failures_total")) + + t.Run("query works", func(t *testing.T) { + queryAndAssertSeries(t, ctx, q.HTTPEndpoint(), "{a=\"1\"}", + promclient.QueryOptions{ + Deduplicate: false, + }, + []model.Metric{ + { + "a": "1", + "b": "2", + "ext1": "value1", + "replica": "1", + }, + { + "a": "1", + "b": "2", + "ext1": "value1", + "replica": "2", + }, + }, + ) - var res model.Vector - - // Try query without deduplication. - testutil.Ok(t, runutil.Retry(time.Second, ctx.Done(), func() error { - select { - case <-exit: - cancel() - return nil - default: - } + // 2 x postings, 2 x series, 2x chunks. + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(6), "thanos_bucket_store_series_data_touched")) + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(6), "thanos_bucket_store_series_data_fetched")) + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(2), "thanos_bucket_store_series_blocks_queried")) + + queryAndAssertSeries(t, ctx, q.HTTPEndpoint(), "{a=\"1\"}", + promclient.QueryOptions{ + Deduplicate: true, + }, + []model.Metric{ + { + "a": "1", + "b": "2", + "ext1": "value1", + }, + }, + ) - var ( - err error - warnings []string + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(12), "thanos_bucket_store_series_data_touched")) + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(8), "thanos_bucket_store_series_data_fetched")) + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(2+2), "thanos_bucket_store_series_blocks_queried")) + }) + t.Run("remove meta.json from id1 block", func(t *testing.T) { + testutil.Ok(t, bkt.Delete(ctx, filepath.Join(id1.String(), block.MetaFilename))) + + // Wait for store to sync blocks. + // thanos_blocks_meta_synced: 1x loadedMeta 1x labelExcludedMeta 1x TooFreshMeta 1x noMeta. + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(4), "thanos_blocks_meta_synced")) + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_sync_failures_total")) + + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(1), "thanos_bucket_store_blocks_loaded")) + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(1), "thanos_bucket_store_block_drops_total")) + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(0), "thanos_bucket_store_block_load_failures_total")) + + // TODO(bwplotka): Entries are still in LRU cache. + queryAndAssertSeries(t, ctx, q.HTTPEndpoint(), "{a=\"1\"}", + promclient.QueryOptions{ + Deduplicate: false, + }, + []model.Metric{ + { + "a": "1", + "b": "2", + "ext1": "value1", + "replica": "2", + }, + }, ) - res, warnings, err = promclient.QueryInstant(ctx, nil, urlParse(t, q.HTTP.URL()), "{a=\"1\"}", time.Now(), promclient.QueryOptions{ - Deduplicate: false, - }) - if err != nil { - return err - } - - if len(warnings) > 0 { - // we don't expect warnings. - return errors.Errorf("unexpected warnings %s", warnings) - } - - if len(res) != 2 { - return errors.Errorf("unexpected result size %d", len(res)) - } - return nil - })) - - // In our model result are always sorted. - testutil.Equals(t, model.Metric{ - "a": "1", - "b": "2", - "ext1": "value1", - "replica": "1", - }, res[0].Metric) - testutil.Equals(t, model.Metric{ - "a": "1", - "b": "2", - "ext1": "value1", - "replica": "2", - }, res[1].Metric) - - // Try query with deduplication. - testutil.Ok(t, runutil.Retry(time.Second, ctx.Done(), func() error { - select { - case <-exit: - cancel() - return nil - default: - } - - var ( - err error - warnings []string + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(4+1), "thanos_bucket_store_series_blocks_queried")) + }) + t.Run("upload block id5, similar to id1", func(t *testing.T) { + id5, err := e2eutil.CreateBlockWithBlockDelay(ctx, dir, series, 10, timestamp.FromTime(now), timestamp.FromTime(now.Add(2*time.Hour)), 30*time.Minute, extLset4, 0) + testutil.Ok(t, err) + testutil.Ok(t, objstore.UploadDir(ctx, l, bkt, path.Join(dir, id5.String()), id5.String())) + + // Wait for store to sync blocks. + // thanos_blocks_meta_synced: 2x loadedMeta 1x labelExcludedMeta 1x TooFreshMeta 1x noMeta. + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(5), "thanos_blocks_meta_synced")) + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_sync_failures_total")) + + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(2), "thanos_bucket_store_blocks_loaded")) + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(1), "thanos_bucket_store_block_drops_total")) + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(0), "thanos_bucket_store_block_load_failures_total")) + + queryAndAssertSeries(t, ctx, q.HTTPEndpoint(), "{a=\"1\"}", + promclient.QueryOptions{ + Deduplicate: false, + }, + []model.Metric{ + { + "a": "1", + "b": "2", + "ext1": "value1", + "replica": "2", + }, + { + "a": "1", + "b": "2", + "ext1": "value1", + "replica": "3", // New block. + }, + }, ) - res, warnings, err = promclient.QueryInstant(ctx, nil, urlParse(t, q.HTTP.URL()), "{a=\"1\"}", time.Now(), promclient.QueryOptions{ - Deduplicate: true, - }) - if err != nil { - return err - } - - if len(warnings) > 0 { - // we don't expect warnings. - return errors.Errorf("unexpected warnings %s", warnings) - } - - if len(res) != 1 { - return errors.Errorf("unexpected result size %d", len(res)) - } - return nil - })) - - // In our model result are always sorted. - testutil.Equals(t, model.Metric{ - "a": "1", - "b": "2", - "ext1": "value1", - }, res[0].Metric) + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(5+2), "thanos_bucket_store_series_blocks_queried")) + }) + t.Run("delete whole id2 block #yolo", func(t *testing.T) { + testutil.Ok(t, block.Delete(ctx, l, bkt, id2)) + + // Wait for store to sync blocks. + // thanos_blocks_meta_synced: 1x loadedMeta 1x labelExcludedMeta 1x TooFreshMeta 1x noMeta. + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(4), "thanos_blocks_meta_synced")) + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_sync_failures_total")) + + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(1), "thanos_bucket_store_blocks_loaded")) + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(1+1), "thanos_bucket_store_block_drops_total")) + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(0), "thanos_bucket_store_block_load_failures_total")) + + queryAndAssertSeries(t, ctx, q.HTTPEndpoint(), "{a=\"1\"}", + promclient.QueryOptions{ + Deduplicate: false, + }, + []model.Metric{ + { + "a": "1", + "b": "2", + "ext1": "value1", + "replica": "3", + }, + }, + ) + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(7+1), "thanos_bucket_store_series_blocks_queried")) + }) + + // TODO(khyati) Let's add some case for compaction-meta.json once the PR will be merged: https://github.com/thanos-io/thanos/pull/2136. } diff --git a/tutorials/katacoda/thanos/1-globalview/courseBase.sh b/tutorials/katacoda/thanos/1-globalview/courseBase.sh index 6bda9cb811d..53bcd979d24 100644 --- a/tutorials/katacoda/thanos/1-globalview/courseBase.sh +++ b/tutorials/katacoda/thanos/1-globalview/courseBase.sh @@ -1,4 +1,4 @@ #!/usr/bin/env bash -docker pull quay.io/prometheus/prometheus:v2.14.0 -docker pull quay.io/thanos/thanos:v0.10.0 +docker pull quay.io/prometheus/prometheus:v2.16.0 +docker pull quay.io/thanos/thanos:v0.11.0 diff --git a/tutorials/katacoda/thanos/1-globalview/step2.md b/tutorials/katacoda/thanos/1-globalview/step2.md index 4982909dfea..03618d2acc5 100644 --- a/tutorials/katacoda/thanos/1-globalview/step2.md +++ b/tutorials/katacoda/thanos/1-globalview/step2.md @@ -10,7 +10,7 @@ component and can be invoked in a single command. Let's take a look at all the Thanos commands: ``` -docker run --rm quay.io/thanos/thanos:v0.10.0 --help +docker run --rm quay.io/thanos/thanos:v0.11.0 --help ```{{execute}} You should see multiple commands that solves different purposes. @@ -53,7 +53,7 @@ docker run -d --net=host --rm \ -v $(pwd)/prometheus0_eu1.yml:/etc/prometheus/prometheus.yml \ --name prometheus-0-sidecar-eu1 \ -u root \ - quay.io/thanos/thanos:v0.10.0 \ + quay.io/thanos/thanos:v0.11.0 \ sidecar \ --http-address 0.0.0.0:19090 \ --grpc-address 0.0.0.0:19190 \ @@ -68,7 +68,7 @@ docker run -d --net=host --rm \ -v $(pwd)/prometheus0_us1.yml:/etc/prometheus/prometheus.yml \ --name prometheus-0-sidecar-us1 \ -u root \ - quay.io/thanos/thanos:v0.10.0 \ + quay.io/thanos/thanos:v0.11.0 \ sidecar \ --http-address 0.0.0.0:19091 \ --grpc-address 0.0.0.0:19191 \ @@ -81,7 +81,7 @@ docker run -d --net=host --rm \ -v $(pwd)/prometheus1_us1.yml:/etc/prometheus/prometheus.yml \ --name prometheus-1-sidecar-us1 \ -u root \ - quay.io/thanos/thanos:v0.10.0 \ + quay.io/thanos/thanos:v0.11.0 \ sidecar \ --http-address 0.0.0.0:19092 \ --grpc-address 0.0.0.0:19192 \ diff --git a/tutorials/katacoda/thanos/1-globalview/step3.md b/tutorials/katacoda/thanos/1-globalview/step3.md index cbe7d5f1922..bd69c30c2ec 100644 --- a/tutorials/katacoda/thanos/1-globalview/step3.md +++ b/tutorials/katacoda/thanos/1-globalview/step3.md @@ -28,7 +28,7 @@ Click below snippet to start the Querier. ``` docker run -d --net=host --rm \ --name querier \ - quay.io/thanos/thanos:v0.10.0 \ + quay.io/thanos/thanos:v0.11.0 \ query \ --http-address 0.0.0.0:29090 \ --query.replica-label replica \ @@ -68,7 +68,7 @@ prometheus_tsdb_head_series{cluster="us1",instance="127.0.0.1:9092",job="prometh Now, as you remember we configured Prometheus 0 US1 and Prometheus 1 US1 to scrape the same things. We also connect Querier to both, so how Querier knows what is an HA group? -Try to query the same query as before: `sum(prometheus_tsdb_head_series)` +Try to query the same query as before: `prometheus_tsdb_head_series` Now turn off deduplication (`deduplication` button on Querier UI) and hit `Execute` again. Now you should see 5 results: diff --git a/website/data/adopters.yml b/website/data/adopters.yml index c0a498564a7..17b6c5725d1 100644 --- a/website/data/adopters.yml +++ b/website/data/adopters.yml @@ -3,8 +3,8 @@ adopters: - name: Monzo url: https://www.monzo.com logo: monzo.png -- name: Utility Warehouse - url: https://www.utilitywarehouse.co.uk +- name: UW + url: https://uw.co.uk/ logo: utilitywarehouse.png - name: Adform url: https://site.adform.com @@ -90,3 +90,12 @@ adopters: - name: Ozon url: https://www.ozon.ru logo: ozon.png +- name: MALL Group + url: https://www.mallgroup.com/ + logo: mallgroup.png +- name: leboncoin + url: https://www.leboncoin.fr/ + logo: leboncoin.png +- name: Workfront + url: https://www.workfront.com/ + logo: workfront.png \ No newline at end of file diff --git a/website/layouts/_default/list.html b/website/layouts/_default/list.html new file mode 100644 index 00000000000..792dcb15af2 --- /dev/null +++ b/website/layouts/_default/list.html @@ -0,0 +1,21 @@ +{{ define "main" }} +
+
+
+ {{ partial "_default/sidemenu.html" . }} +
+
+

{{ .Title }}

+
    + + {{ range .Pages }} +
  • +

    {{.Title}}

    +
  • + {{ end }} +
+ {{ replace .Content "" "
" | safeHTML }} + + + +{{ end }} diff --git a/website/layouts/partials/_default/sidemenu.html b/website/layouts/partials/_default/sidemenu.html index 63be2707d1c..8c9e373922a 100644 --- a/website/layouts/partials/_default/sidemenu.html +++ b/website/layouts/partials/_default/sidemenu.html @@ -5,28 +5,64 @@ \ No newline at end of file +
+ + +
+ {{ range .Site.Menus.proposals }} + {{ .Title }} + {{ end }} +
+
+ diff --git a/website/static/expand.svg b/website/static/expand.svg new file mode 100644 index 00000000000..e98e7b97f01 --- /dev/null +++ b/website/static/expand.svg @@ -0,0 +1,4 @@ + + + + diff --git a/website/static/logos/leboncoin.png b/website/static/logos/leboncoin.png new file mode 100755 index 00000000000..04469dd76b1 Binary files /dev/null and b/website/static/logos/leboncoin.png differ diff --git a/website/static/logos/mallgroup.png b/website/static/logos/mallgroup.png new file mode 100644 index 00000000000..82d47b2ed27 Binary files /dev/null and b/website/static/logos/mallgroup.png differ diff --git a/website/static/logos/utilitywarehouse.png b/website/static/logos/utilitywarehouse.png index cc2a1a5bdad..6c63094f9e2 100644 Binary files a/website/static/logos/utilitywarehouse.png and b/website/static/logos/utilitywarehouse.png differ diff --git a/website/static/logos/workfront.png b/website/static/logos/workfront.png new file mode 100644 index 00000000000..a0ad765f91d Binary files /dev/null and b/website/static/logos/workfront.png differ diff --git a/website/static/main.css b/website/static/main.css index 3124bd995e0..3d39d261bed 100644 --- a/website/static/main.css +++ b/website/static/main.css @@ -70,4 +70,36 @@ pre { } .header-anchor { font-size: 100%; visibility: hidden;} -h1:hover a, h2:hover a, h3:hover a, h4:hover a { visibility: visible} \ No newline at end of file +h1:hover a, h2:hover a, h3:hover a, h4:hover a { visibility: visible} + +/* SideMenu Collapse */ +.menuinput { + display: none; +} + +.menulabel-thanos { + cursor: pointer; + display: flex; + align-items: center; +} + +.caret-expand { + width: 16px; + margin-left: 8px; + margin-bottom: 0.2rem; + transition: transform 0.2s ease-out; +} + +.menuinput:checked + label .caret-expand { + transform: rotateX(180deg); +} + +.sidemenu-thanos .list-group { + transform: scaleY(0); + height: 0; +} + +.menuinput:checked ~ .list-group { + transform: scaleY(1); + height: auto; +}