From b8bca7ea6e751df1e13f6c77ea72d53a3768753c Mon Sep 17 00:00:00 2001 From: Serverless QE Robot Date: Sun, 13 Aug 2023 20:36:31 -0400 Subject: [PATCH 1/6] :fire: remove unneeded workflows Signed-off-by: Serverless QE Robot --- .github/workflows/kind-e2e.yaml | 233 ------------------------ .github/workflows/knative-go-build.yaml | 14 -- .github/workflows/knative-go-test.yaml | 17 -- .github/workflows/knative-security.yaml | 17 -- .github/workflows/knative-stale.yaml | 14 -- .github/workflows/knative-style.yaml | 15 -- .github/workflows/knative-verify.yaml | 26 --- 7 files changed, 336 deletions(-) delete mode 100644 .github/workflows/kind-e2e.yaml delete mode 100644 .github/workflows/knative-go-build.yaml delete mode 100644 .github/workflows/knative-go-test.yaml delete mode 100644 .github/workflows/knative-security.yaml delete mode 100644 .github/workflows/knative-stale.yaml delete mode 100644 .github/workflows/knative-style.yaml delete mode 100644 .github/workflows/knative-verify.yaml diff --git a/.github/workflows/kind-e2e.yaml b/.github/workflows/kind-e2e.yaml deleted file mode 100644 index 32bb6b2469c0..000000000000 --- a/.github/workflows/kind-e2e.yaml +++ /dev/null @@ -1,233 +0,0 @@ -name: e2e - -on: - pull_request: - branches: [ 'main', 'release-*' ] - -defaults: - run: - shell: bash - -env: - # https://github.com/google/go-containerregistry/pull/125 allows insecure registry for - # '*.local' hostnames. This works both for `ko` and our own tag-to-digest resolution logic, - # thus allowing us to test without bypassing tag-to-digest resolution. - CLUSTER_DOMAIN: c${{ github.run_id }}.local - REGISTRY_NAME: registry.local - REGISTRY_PORT: 5000 - KO_DOCKER_REPO: registry.local:5000/knative - KIND_VERSION: 0.19.0 - GOTESTSUM_VERSION: 1.7.0 - KAPP_VERSION: 0.46.0 - YTT_VERSION: 0.40.1 - KO_FLAGS: --platform=linux/amd64 - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - -jobs: - build: - runs-on: ubuntu-20.04 - - steps: - - uses: actions/checkout@v3 - - - name: Set up Go 1.19.x - uses: actions/setup-go@v3 - with: - go-version: 1.19.x - - - name: Setup Cache Directories - run: | - mkdir -p ~/artifacts/build - mkdir -p ~/artifacts/registry - - - uses: actions/cache@v3 - with: - path: | - ~/.cache/go-build - ~/go/pkg/mod - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - restore-keys: | - ${{ runner.os }}-go- - - # Install the latest release of ko - - name: Install ko - uses: ko-build/setup-ko@v0.6 - - - name: Setup Registry - run: | - docker run -d --restart=always \ - -p $REGISTRY_PORT:$REGISTRY_PORT \ - -v ~/artifacts/registry:/var/lib/registry \ - --name $REGISTRY_NAME registry:2 - - # Make the $REGISTRY_NAME -> 127.0.0.1, to tell `ko` to publish to - # local reigstry, even when pushing $REGISTRY_NAME:$REGISTRY_PORT/some/image - sudo echo "127.0.0.1 $REGISTRY_NAME" | sudo tee -a /etc/hosts - - - name: Build Knative - run: | - export YAML_OUTPUT_DIR=$HOME/artifacts/build - ./hack/generate-yamls.sh "$GITHUB_WORKSPACE" "$(mktemp)" $YAML_OUTPUT_DIR/env - - - name: Build Test Images - run: | - ./test/upload-test-images.sh - - - uses: actions/upload-artifact@v3 - with: - name: artifacts - path: ~/artifacts - retention-days: 1 - - test: - name: test - needs: build - runs-on: ubuntu-20.04 - strategy: - fail-fast: false # Keep running if one leg fails. - matrix: - k8s-version: - - v1.25.x - - v1.26.x - - v1.27.x - - ingress: - - kourier - - kourier-tls - - istio - - istio-ambient - - contour - # Disabled due to consistent failures - # - gateway_istio - - test-suite: - - runtime - - api - - e2e - - include: - # Disabled due to consistent failures - # - ingress: gateway_istio - # ingress-class: gateway-api - # test-flags: -enable-alpha - # namespace-resources: httproute - - - ingress: contour - namespace-resources: httpproxy - - - ingress: istio - namespace-resources: virtualservices - - - ingress: istio-ambient - namespace-resources: virtualservices - ingress-class: istio - ambient: 1 - - - ingress: kourier-tls - ingress-class: kourier - enable-tls: 1 - - - test-suite: runtime - test-path: ./test/conformance/runtime/... - - - test-suite: api - test-path: ./test/conformance/api/... - - - test-suite: e2e - test-path: ./test/e2e - - env: - KIND: 1 - INGRESS_CLASS: ${{ matrix.ingress-class || matrix.ingress }}.ingress.networking.knative.dev - ENABLE_TLS: ${{ matrix.enable-tls || 0 }} - AMBIENT: ${{ matrix.ambient || 0 }} - - steps: - - name: Set up Go 1.19.x - uses: actions/setup-go@v3 - with: - go-version: 1.19.x - - - uses: actions/cache@v3 - with: - path: | - ~/.cache/go-build - ~/go/pkg/mod - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - restore-keys: | - ${{ runner.os }}-go- - - - uses: actions/download-artifact@v3 - with: - name: artifacts - path: ~/artifacts - - - name: Setup KinD - uses: chainguard-dev/actions/setup-kind@main - with: - k8s-version: ${{ matrix.k8s-version }} - kind-worker-count: 4 - cluster-suffix: c${{ github.run_id }}.local - registry-volume: $HOME/artifacts/registry - - - - name: Install Dependencies - run: | - set -x - echo "::group:: install gotestsum ${GOTESTSUM_VERSION}" - curl -L https://github.com/gotestyourself/gotestsum/releases/download/v${GOTESTSUM_VERSION}/gotestsum_${GOTESTSUM_VERSION}_linux_amd64.tar.gz | tar xzf - gotestsum - chmod +x ./gotestsum - sudo mv gotestsum /usr/local/bin - echo "::endgroup::" - - echo "::group:: install kapp ${KAPP_VERSION}" - curl -Lo ./kapp https://github.com/vmware-tanzu/carvel-kapp/releases/download/v${KAPP_VERSION}/kapp-linux-amd64 - chmod +x ./kapp - sudo mv kapp /usr/local/bin - echo "::endgroup::" - - echo "::group:: install ytt ${YTT_VERSION}" - curl -Lo ./ytt https://github.com/vmware-tanzu/carvel-ytt/releases/download/v${YTT_VERSION}/ytt-linux-amd64 - chmod +x ./ytt - sudo mv ytt /usr/local/bin - echo "::endgroup::" - - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - - name: Install Serving & Ingress - run: | - set -x - # Remove chaosduck since we don't use it and it'll skip the build - rm ./test/config/chaosduck/chaosduck.yaml - - source ./test/e2e-common.sh - - export INSTALL_CUSTOM_YAMLS=$HOME/artifacts/build/env - knative_setup - - # Run the tests tagged as e2e on the KinD cluster. - echo "SYSTEM_NAMESPACE=$SYSTEM_NAMESPACE" >> $GITHUB_ENV - echo "GATEWAY_OVERRIDE=$GATEWAY_OVERRIDE" >> $GITHUB_ENV - echo "GATEWAY_NAMESPACE_OVERRIDE=$GATEWAY_NAMESPACE_OVERRIDE" >> $GITHUB_ENV - echo "CA_CERT=$CA_CERT" >> $GITHUB_ENV - echo "SERVER_NAME=$SERVER_NAME" >> $GITHUB_ENV - - - name: Test ${{ matrix.test-suite }} - run: | - gotestsum --format testname -- \ - -race -count=1 -parallel=1 -tags=e2e \ - -timeout=30m \ - ${{ matrix.test-path }} \ - -skip-cleanup-on-fail \ - -enable-alpha -enable-beta \ - --ingress-class=${{ matrix.ingress-class || matrix.ingress }}.ingress.networking.knative.dev - - - uses: chainguard-dev/actions/kind-diag@main - # Only upload logs on failure. - if: ${{ failure() }} - with: - cluster-resources: nodes,namespaces,crds - namespace-resources: configmaps,pods,svc,ksvc,route,configuration,revision,king,${{ matrix.namespace-resources || '' }} - artifact-name: logs-${{ matrix.k8s-version}}-${{ matrix.ingress }}-${{ matrix.test-suite }} diff --git a/.github/workflows/knative-go-build.yaml b/.github/workflows/knative-go-build.yaml deleted file mode 100644 index 10c3de1a1e15..000000000000 --- a/.github/workflows/knative-go-build.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Copyright 2020 The Knative Authors. -# SPDX-License-Identifier: Apache-2.0 - -# This file is automagically synced here from github.com/knative-extensions/knobots - -name: Build - -on: - pull_request: - branches: [ 'main', 'release-*' ] - -jobs: - build: - uses: knative/actions/.github/workflows/reusable-go-build.yaml@main diff --git a/.github/workflows/knative-go-test.yaml b/.github/workflows/knative-go-test.yaml deleted file mode 100644 index 75d921e216e4..000000000000 --- a/.github/workflows/knative-go-test.yaml +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright 2022 The Knative Authors. -# SPDX-License-Identifier: Apache-2.0 - -# This file is automagically synced here from github.com/knative-extensions/knobots - -name: Test - -on: - push: - branches: [ 'main', 'release-*' ] - - pull_request: - branches: [ 'main', 'release-*' ] - -jobs: - test: - uses: knative/actions/.github/workflows/reusable-go-test.yaml@main diff --git a/.github/workflows/knative-security.yaml b/.github/workflows/knative-security.yaml deleted file mode 100644 index a6cd68137a02..000000000000 --- a/.github/workflows/knative-security.yaml +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright 2020 The Knative Authors. -# SPDX-License-Identifier: Apache-2.0 - -# This file is automagically synced here from github.com/knative-extensions/knobots - -name: 'Security' - -on: - push: - branches: [ 'main', 'release-*' ] - - pull_request: - branches: [ 'main', 'release-*' ] - -jobs: - analyze: - uses: knative/actions/.github/workflows/reusable-security.yaml@main diff --git a/.github/workflows/knative-stale.yaml b/.github/workflows/knative-stale.yaml deleted file mode 100644 index 2e25b9d99a67..000000000000 --- a/.github/workflows/knative-stale.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Copyright 2020 The Knative Authors. -# SPDX-License-Identifier: Apache-2.0 - -# This file is automagically synced here from github.com/knative-extensions/knobots -name: 'Close stale' - -on: - schedule: - - cron: '0 1 * * *' - -jobs: - - stale: - uses: knative/actions/.github/workflows/reusable-stale.yaml@main diff --git a/.github/workflows/knative-style.yaml b/.github/workflows/knative-style.yaml deleted file mode 100644 index 55bb1537cc17..000000000000 --- a/.github/workflows/knative-style.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# Copyright 2020 The Knative Authors. -# SPDX-License-Identifier: Apache-2.0 - -# This file is automagically synced here from github.com/knative-extensions/knobots - -name: Code Style - -on: - pull_request: - branches: [ 'main', 'release-*' ] - -jobs: - - style: - uses: knative/actions/.github/workflows/reusable-style.yaml@main diff --git a/.github/workflows/knative-verify.yaml b/.github/workflows/knative-verify.yaml deleted file mode 100644 index e1a28c4f50cc..000000000000 --- a/.github/workflows/knative-verify.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 2020 The Knative Authors. -# -# 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. - -# This file is automagically synced here from github.com/knative-extensions/.github -# repo by knobots: https://github.com/knative-extensions/knobots and will be overwritten. - -name: Verify - -on: - pull_request: - branches: [ 'main', 'release-*' ] - -jobs: - verify: - uses: knative/actions/.github/workflows/reusable-verify-codegen.yaml@main From 03a3a801d3f976a007b9b461257ac5b2e4b37b25 Mon Sep 17 00:00:00 2001 From: Serverless QE Robot Date: Sun, 13 Aug 2023 20:36:31 -0400 Subject: [PATCH 2/6] :fire: Apply carried patches. --- .ko.yaml | 3 +- Makefile | 70 +++ OWNERS | 19 +- OWNERS_ALIASES | 259 ++++------ config/core/100-namespace.yaml | 21 - .../200-roles/config-map-view-downstream.yaml | 25 + config/core/deployments/activator-hpa.yaml | 2 +- config/core/deployments/webhook-hpa.yaml | 2 +- openshift/ci-operator/Dockerfile.in | 11 + .../ci-operator/Dockerfile_with_kodata.in | 12 + openshift/ci-operator/build-image/Dockerfile | 18 + .../ci-operator/build-image/kubernetes.repo | 7 + openshift/ci-operator/generate-dockerfiles.sh | 21 + openshift/ci-operator/source-image/Dockerfile | 1 + openshift/e2e-common.sh | 446 ++++++++++++++++++ openshift/e2e-tests-local.sh | 17 + openshift/e2e-tests.sh | 20 + openshift/patches/001-object.patch | 13 + openshift/patches/002-mutemetrics.patch | 30 ++ openshift/patches/003-routeretry.patch | 79 ++++ openshift/patches/004-grpc.patch | 67 +++ openshift/patches/005-pdb-minavailable.patch | 26 + .../008-serving-namespace-deletion.patch | 27 ++ openshift/patches/009-cm-view.patch | 31 ++ .../patches/010-secure-pod-defaults.patch | 114 +++++ openshift/patches/100-ko-baseimage.patch | 11 + openshift/release/README.md | 35 ++ openshift/release/create-release-branch.sh | 38 ++ openshift/release/generate-release.sh | 35 ++ openshift/release/mirror-upstream-branches.sh | 37 ++ openshift/release/resolve.sh | 37 ++ openshift/release/update-to-head.sh | 55 +++ openshift/tui-functions.sh | 87 ++++ pkg/apis/serving/v1/revision_defaults.go | 15 +- pkg/apis/serving/v1/revision_defaults_test.go | 15 +- test/e2e/grpc_test.go | 24 +- .../secure_pod_defaults_test.go | 3 - .../pkg/controller/stats_reporter.go | 4 +- vendor/knative.dev/pkg/test/helpers/name.go | 2 +- .../pkg/test/spoof/openshift_checks.go | 40 ++ vendor/knative.dev/pkg/test/spoof/spoof.go | 8 +- .../knative.dev/pkg/webhook/stats_reporter.go | 5 +- 42 files changed, 1557 insertions(+), 235 deletions(-) create mode 100644 Makefile delete mode 100644 config/core/100-namespace.yaml create mode 100644 config/core/200-roles/config-map-view-downstream.yaml create mode 100644 openshift/ci-operator/Dockerfile.in create mode 100644 openshift/ci-operator/Dockerfile_with_kodata.in create mode 100644 openshift/ci-operator/build-image/Dockerfile create mode 100644 openshift/ci-operator/build-image/kubernetes.repo create mode 100755 openshift/ci-operator/generate-dockerfiles.sh create mode 100644 openshift/ci-operator/source-image/Dockerfile create mode 100644 openshift/e2e-common.sh create mode 100755 openshift/e2e-tests-local.sh create mode 100755 openshift/e2e-tests.sh create mode 100644 openshift/patches/001-object.patch create mode 100644 openshift/patches/002-mutemetrics.patch create mode 100644 openshift/patches/003-routeretry.patch create mode 100644 openshift/patches/004-grpc.patch create mode 100644 openshift/patches/005-pdb-minavailable.patch create mode 100644 openshift/patches/008-serving-namespace-deletion.patch create mode 100644 openshift/patches/009-cm-view.patch create mode 100644 openshift/patches/010-secure-pod-defaults.patch create mode 100644 openshift/patches/100-ko-baseimage.patch create mode 100644 openshift/release/README.md create mode 100755 openshift/release/create-release-branch.sh create mode 100755 openshift/release/generate-release.sh create mode 100755 openshift/release/mirror-upstream-branches.sh create mode 100755 openshift/release/resolve.sh create mode 100755 openshift/release/update-to-head.sh create mode 100644 openshift/tui-functions.sh create mode 100644 vendor/knative.dev/pkg/test/spoof/openshift_checks.go diff --git a/.ko.yaml b/.ko.yaml index 14afa53a5541..bceaa1320402 100644 --- a/.ko.yaml +++ b/.ko.yaml @@ -1,4 +1,5 @@ # Use :nonroot base image for all containers -defaultBaseImage: gcr.io/distroless/static:nonroot +defaultBaseImage: registry.access.redhat.com/ubi8/ubi-minimal:latest baseImageOverrides: + knative.dev/serving/test/test_images/runtime: gcr.io/distroless/static:nonroot knative.dev/serving/vendor/github.com/tsenart/vegeta/v12: ubuntu:latest diff --git a/Makefile b/Makefile new file mode 100644 index 000000000000..9e3172f82c90 --- /dev/null +++ b/Makefile @@ -0,0 +1,70 @@ +#This makefile is used by ci-operator + +CGO_ENABLED=0 +GOOS=linux +CORE_IMAGES=./cmd/activator ./cmd/autoscaler ./cmd/autoscaler-hpa ./cmd/controller ./cmd/queue ./cmd/webhook ./vendor/knative.dev/pkg/apiextensions/storageversion/cmd/migrate +TEST_IMAGES=$(shell find ./test/test_images ./test/test_images/multicontainer -mindepth 1 -maxdepth 1 -type d) +# Exclude wrapper images like multicontainer and initcontainers as those are just ko convenience wrappers used upstream. The openshift serverless tests use other images to run. +TEST_IMAGES_WITHOUT_WRAPPERS=$(shell find ./test/test_images ./test/test_images/multicontainer -mindepth 1 -maxdepth 1 -type d -not -name multicontainer -not -name initcontainers) +BRANCH= +TEST= +IMAGE= +TEST_IMAGE_TAG ?= latest + +# Guess location of openshift/release repo. NOTE: override this if it is not correct. +OPENSHIFT=${CURDIR}/../../github.com/openshift/release + +install: + for img in $(CORE_IMAGES); do \ + go install -tags="disable_gcp,disable_aws,disable_azure" $$img ; \ + done +.PHONY: install + +test-install: + for img in $(TEST_IMAGES_WITHOUT_WRAPPERS); do \ + go install $$img ; \ + done +.PHONY: test-install + +test-e2e: + ./openshift/e2e-tests.sh +.PHONY: test-e2e + +test-e2e-tls: + ENABLE_INTERNAL_TLS="true" ./openshift/e2e-tests.sh +.PHONY: test-e2e-tls + +# Target used by github actions. +test-images: + for img in $(TEST_IMAGES); do \ + KO_DOCKER_REPO=$(DOCKER_REPO_OVERRIDE) ko build --tags=$(TEST_IMAGE_TAG) $(KO_FLAGS) -B $$img || \ + KO_DOCKER_REPO=$(DOCKER_REPO_OVERRIDE) ko resolve --tags=$(TEST_IMAGE_TAG) $(KO_FLAGS) -RBf $$img || exit $?; \ + done +.PHONY: test-images + +test-image-single: + KO_DOCKER_REPO=$(DOCKER_REPO_OVERRIDE) ko build --tags=$(TEST_IMAGE_TAG) $(KO_FLAGS) -B test/test_images/$(IMAGE) || \ + KO_DOCKER_REPO=$(DOCKER_REPO_OVERRIDE) ko resolve --tags=$(TEST_IMAGE_TAG) $(KO_FLAGS) -RBf test/test_images/$(IMAGE) +.PHONY: test-image-single + +# Run make DOCKER_REPO_OVERRIDE= test-e2e-local if test images are available +# in the given repository. Make sure you first build and push them there by running `make test-images`. +# Run make BRANCH= test-e2e-local if test images from the latest CI +# build for this branch should be used. Example: `make BRANCH=knative-v0.13.2 test-e2e-local`. +# If neither DOCKER_REPO_OVERRIDE nor BRANCH are defined the tests will use test images +# from the last nightly build. +# If TEST is defined then only the single test will be run. +test-e2e-local: + ./openshift/e2e-tests-local.sh $(TEST) +.PHONY: test-e2e-local + +# Generate Dockerfiles for core and test images used by ci-operator. The files need to be committed manually. +generate-dockerfiles: + ./openshift/ci-operator/generate-dockerfiles.sh openshift/ci-operator/knative-images $(CORE_IMAGES) + ./openshift/ci-operator/generate-dockerfiles.sh openshift/ci-operator/knative-test-images $(TEST_IMAGES_WITHOUT_WRAPPERS) +.PHONY: generate-dockerfiles + +# Generate an aggregated knative yaml file with replaced image references +generate-release: + ./openshift/release/generate-release.sh $(RELEASE) +.PHONY: generate-release diff --git a/OWNERS b/OWNERS index 638445f25942..6c0f0d0a1fe1 100644 --- a/OWNERS +++ b/OWNERS @@ -1,10 +1,19 @@ # The OWNERS file is used by prow to automatically merge approved PRs. approvers: -- knative-release-leads -- technical-oversight-committee -- serving-wg-leads -- serving-writers +- alanfx +- mgencur +- mvinkler +- nak3 +- ReToCode +- rhuss +- skonto reviewers: -- serving-reviewers +- alanfx +- mgencur +- mvinkler +- nak3 +- ReToCode +- rhuss +- skonto diff --git a/OWNERS_ALIASES b/OWNERS_ALIASES index 2298c811d83d..c6decdf31b6f 100644 --- a/OWNERS_ALIASES +++ b/OWNERS_ALIASES @@ -1,173 +1,120 @@ -# This file is auto-generated from peribolos. -# Do not modify this file, instead modify peribolos/knative.yaml - aliases: - client-reviewers: - - itsmurugappan - client-wg-leads: - - dsimansk - - navidshaikh + serving-approvers: + - alanfx + - mgencur + - mvinkler + - nak3 + - ReToCode - rhuss - client-writers: - - dsimansk - - maximilien - - navidshaikh + - skonto + serving-reviewers: + - alanfx + - mgencur + - mvinkler + - nak3 + - ReToCode - rhuss - - vyasgun - conformance-task-force-leads: - - salaboy - conformance-writers: - - salaboy - docs-reviewers: - - nainaz + - skonto + + serving-api-approvers: + - alanfx + - mgencur + - mvinkler - nak3 - - pmbanugo - - retocode + - ReToCode + - rhuss - skonto - - snneji - docs-wg-leads: - - snneji - docs-writers: - - csantanapr + serving-api-reviewers: + - alanfx + - mgencur + - mvinkler - nak3 - - psschwei - - retocode + - ReToCode + - rhuss - skonto - - snneji - eventing-reviewers: - - aslom - - creydr - eventing-triage: - - lberk - eventing-wg-leads: - - pierDipi - eventing-writers: - - aliok - - creydr - - lberk - - lionelvillard - - matzew - - odacremolbap - - pierDipi - func-reviewers: - - gauron99 - - jrangelramos - - nainaz - func-writers: - - jrangelramos - - lance - - lkingland - - matejvasek - - salaboy - functions-wg-leads: - - lance - - salaboy - knative-admin: - - Vishal-Chdhry - - creydr - - csantanapr - - dprotaso - - dsimansk - - knative-automation - - knative-prow-releaser-robot - - knative-prow-robot - - knative-prow-updater-robot - - knative-test-reporter-robot - - kvmware - - lance - - mchmarny - - nainaz - - pierDipi - - psschwei - - puerco - - salaboy + + autoscaling-approvers: + - alanfx + - mgencur + - mvinkler + - nak3 + - ReToCode + - rhuss - skonto - - smoser-ibm - - upodroid - - xtreme-sameer-vohra - knative-release-leads: - - Vishal-Chdhry - - creydr - - dsimansk - - pierDipi + autoscaling-reviewers: + - alanfx + - mgencur + - mvinkler + - nak3 + - ReToCode + - rhuss + - skonto + + monitoring-approvers: + - alanfx + - mgencur + - mvinkler + - nak3 + - ReToCode + - rhuss + - skonto + monitoring-reviewers: + - alanfx + - mgencur + - mvinkler + - nak3 + - ReToCode + - rhuss + - skonto + + productivity-approvers: + - alanfx + - mgencur + - mvinkler + - nak3 + - ReToCode + - rhuss - skonto - knative-robots: - - knative-automation - - knative-prow-releaser-robot - - knative-prow-robot - - knative-prow-updater-robot - - knative-test-reporter-robot - operations-reviewers: - - aliok - - houshengbo - - matzew - - maximilien - operations-wg-leads: - - houshengbo - operations-writers: - - aliok - - houshengbo - - matzew - - maximilien - productivity-leads: - - kvmware - - upodroid productivity-reviewers: - - evankanderson + - alanfx - mgencur - productivity-wg-leads: - - kvmware - - upodroid - productivity-writers: - - cardil - - kvmware - - psschwei - - upodroid - security-wg-leads: - - davidhadas - - evankanderson - security-writers: - - davidhadas - - evankanderson - serving-approvers: + - mvinkler - nak3 - - psschwei + - ReToCode + - rhuss - skonto - serving-reviewers: - - KauzClay - - jsanin-vmw - - kauana - - kvmware - - retocode + + networking-approvers: + - alanfx + - mgencur + - mvinkler + - nak3 + - ReToCode + - rhuss - skonto - - xtreme-vikram-yadav - serving-triage: - - KauzClay - - retocode + networking-reviewers: + - alanfx + - mgencur + - mvinkler + - nak3 + - ReToCode + - rhuss - skonto - serving-wg-leads: - - dprotaso - serving-writers: - - dprotaso + + build-approvers: + - alanfx + - mgencur + - mvinkler - nak3 - - psschwei + - ReToCode + - rhuss + - skonto + build-reviewers: + - alanfx + - mgencur + - mvinkler + - nak3 + - ReToCode + - rhuss - skonto - steering-committee: - - csantanapr - - lance - - nainaz - - puerco - - salaboy - technical-oversight-committee: - - dprotaso - - dsimansk - - kvmware - - psschwei - trademark-committee: - - mchmarny - - smoser-ibm - - xtreme-sameer-vohra - ux-wg-leads: - - snneji - ux-writers: - - snneji + diff --git a/config/core/100-namespace.yaml b/config/core/100-namespace.yaml deleted file mode 100644 index cce6c212b727..000000000000 --- a/config/core/100-namespace.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Copyright 2018 The Knative Authors -# -# 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 -# -# https://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. - -apiVersion: v1 -kind: Namespace -metadata: - name: knative-serving - labels: - app.kubernetes.io/name: knative-serving - app.kubernetes.io/version: devel diff --git a/config/core/200-roles/config-map-view-downstream.yaml b/config/core/200-roles/config-map-view-downstream.yaml new file mode 100644 index 000000000000..91e329703f95 --- /dev/null +++ b/config/core/200-roles/config-map-view-downstream.yaml @@ -0,0 +1,25 @@ +# Extra role for downstream, so that users can get the autoscaling CM to fetch defaults. +kind: Role +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + namespace: knative-serving + name: openshift-serverless-view-serving-configmaps +rules: + - apiGroups: [""] + resources: ["configmaps"] + resourceNames: ["config-autoscaler"] + verbs: ["get", "list", "watch"] +--- +kind: RoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: openshift-serverless-view-serving-configmaps + namespace: knative-serving +subjects: + - kind: Group + name: system:authenticated + apiGroup: rbac.authorization.k8s.io +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: openshift-serverless-view-serving-configmaps diff --git a/config/core/deployments/activator-hpa.yaml b/config/core/deployments/activator-hpa.yaml index 85ddd54df771..a4e0fefa55ed 100644 --- a/config/core/deployments/activator-hpa.yaml +++ b/config/core/deployments/activator-hpa.yaml @@ -50,7 +50,7 @@ metadata: app.kubernetes.io/name: knative-serving app.kubernetes.io/version: devel spec: - minAvailable: 80% + minAvailable: 1 selector: matchLabels: app: activator diff --git a/config/core/deployments/webhook-hpa.yaml b/config/core/deployments/webhook-hpa.yaml index a3afec4d6097..15db14912e1c 100644 --- a/config/core/deployments/webhook-hpa.yaml +++ b/config/core/deployments/webhook-hpa.yaml @@ -48,7 +48,7 @@ metadata: app.kubernetes.io/name: knative-serving app.kubernetes.io/version: devel spec: - minAvailable: 80% + minAvailable: 1 selector: matchLabels: app: webhook diff --git a/openshift/ci-operator/Dockerfile.in b/openshift/ci-operator/Dockerfile.in new file mode 100644 index 000000000000..32b94bfb199c --- /dev/null +++ b/openshift/ci-operator/Dockerfile.in @@ -0,0 +1,11 @@ +# Do not edit! This file was generated via Makefile +FROM registry.ci.openshift.org/openshift/release:golang-1.19 as builder + +COPY . . +RUN make install test-install + +FROM openshift/origin-base +USER 65532 + +COPY --from=builder /go/bin/${bin} /ko-app/${bin} +ENTRYPOINT ["/ko-app/${bin}"] diff --git a/openshift/ci-operator/Dockerfile_with_kodata.in b/openshift/ci-operator/Dockerfile_with_kodata.in new file mode 100644 index 000000000000..00de7209562b --- /dev/null +++ b/openshift/ci-operator/Dockerfile_with_kodata.in @@ -0,0 +1,12 @@ +# Do not edit! This file was generated via Makefile +FROM registry.ci.openshift.org/openshift/release:golang-1.19 as builder + +COPY . . +RUN make install test-install + +FROM openshift/origin-base +USER 65532 + +COPY ${kodata_path} /var/run/ko +COPY --from=builder /go/bin/${bin} /ko-app/${bin} +ENTRYPOINT ["/ko-app/${bin}"] diff --git a/openshift/ci-operator/build-image/Dockerfile b/openshift/ci-operator/build-image/Dockerfile new file mode 100644 index 000000000000..f138ff62ef28 --- /dev/null +++ b/openshift/ci-operator/build-image/Dockerfile @@ -0,0 +1,18 @@ +# Dockerfile to bootstrap build and test in openshift-ci + +FROM registry.ci.openshift.org/openshift/release:golang-1.19 + +# Add kubernetes repository +ADD openshift/ci-operator/build-image/kubernetes.repo /etc/yum.repos.d/ + +RUN yum install -y kubectl httpd-tools + +RUN GOFLAGS='' go install github.com/mikefarah/yq/v3@latest +RUN GOFLAGS='' go install knative.dev/test-infra/tools/kntest/cmd/kntest@latest + +# go install creates $GOPATH/.cache with root permissions, we delete it here +# to avoid permission issues with the runtime users +RUN rm -rf $GOPATH/.cache + +# Allow runtime users to add entries to /etc/passwd +RUN chmod g+rw /etc/passwd diff --git a/openshift/ci-operator/build-image/kubernetes.repo b/openshift/ci-operator/build-image/kubernetes.repo new file mode 100644 index 000000000000..795626ebca64 --- /dev/null +++ b/openshift/ci-operator/build-image/kubernetes.repo @@ -0,0 +1,7 @@ +[kubernetes] +name=Kubernetes +baseurl=https://packages.cloud.google.com/yum/repos/kubernetes-el7-x86_64 +enabled=1 +gpgcheck=1 +repo_gpgcheck=0 +gpgkey=https://packages.cloud.google.com/yum/doc/yum-key.gpg https://packages.cloud.google.com/yum/doc/rpm-package-key.gpg diff --git a/openshift/ci-operator/generate-dockerfiles.sh b/openshift/ci-operator/generate-dockerfiles.sh new file mode 100755 index 000000000000..75d276d10b29 --- /dev/null +++ b/openshift/ci-operator/generate-dockerfiles.sh @@ -0,0 +1,21 @@ +#!/usr/bin/env bash + +set -e + +function generate_dockerfiles() { + local target_dir=$1; shift + # Remove old images and re-generate, avoid stale images hanging around. + for img in $@; do + local image_base=$(basename $img) + local kodata_path="$img/kodata" + mkdir -p $target_dir/$image_base + if [ -d "$kodata_path" ] + then + bin=$image_base kodata_path=$kodata_path envsubst < openshift/ci-operator/Dockerfile_with_kodata.in > $target_dir/$image_base/Dockerfile + else + bin=$image_base envsubst < openshift/ci-operator/Dockerfile.in > $target_dir/$image_base/Dockerfile + fi + done +} + +generate_dockerfiles $@ diff --git a/openshift/ci-operator/source-image/Dockerfile b/openshift/ci-operator/source-image/Dockerfile new file mode 100644 index 000000000000..c6c622fb95dc --- /dev/null +++ b/openshift/ci-operator/source-image/Dockerfile @@ -0,0 +1 @@ +FROM src diff --git a/openshift/e2e-common.sh b/openshift/e2e-common.sh new file mode 100644 index 000000000000..6941ef08224e --- /dev/null +++ b/openshift/e2e-common.sh @@ -0,0 +1,446 @@ +#!/usr/bin/env bash + +root="$(dirname "${BASH_SOURCE[0]}")" + +# shellcheck disable=SC1090 +source "$(dirname "$0")/../test/e2e-common.sh" +source "$(dirname "$0")/release/resolve.sh" + +readonly SERVING_NAMESPACE=knative-serving +readonly SERVING_INGRESS_NAMESPACE=knative-serving-ingress + +# The OLM global namespace was moved to openshift-marketplace since v4.2 +# ref: https://jira.coreos.com/browse/OLM-1190 +readonly OLM_NAMESPACE="openshift-marketplace" + +# Determine if we're running locally or in CI. +if [ -n "$OPENSHIFT_BUILD_NAMESPACE" ]; then + TEST_IMAGE_TEMPLATE=$(cat <<-END +{{- with .Name }} +{{- if eq . "volumes"}}$KNATIVE_SERVING_TEST_VOLUMES{{end -}} +{{- if eq . "readiness"}}$KNATIVE_SERVING_TEST_READINESS{{end -}} +{{- if eq . "pizzaplanetv1"}}$KNATIVE_SERVING_TEST_PIZZAPLANETV1{{end -}} +{{- if eq . "pizzaplanetv2"}}$KNATIVE_SERVING_TEST_PIZZAPLANETV2{{end -}} +{{- if eq . "helloworld"}}$KNATIVE_SERVING_TEST_HELLOWORLD{{end -}} +{{- if eq . "runtime"}}$KNATIVE_SERVING_TEST_RUNTIME{{end -}} +{{- if eq . "timeout"}}$KNATIVE_SERVING_TEST_TIMEOUT{{end -}} +{{- if eq . "observed-concurrency"}}$KNATIVE_SERVING_TEST_OBSERVED_CONCURRENCY{{end -}} +{{- if eq . "grpc-ping"}}$KNATIVE_SERVING_TEST_GRPC_PING{{end -}} +{{- if eq . "failing"}}$KNATIVE_SERVING_TEST_FAILING{{end -}} +{{- if eq . "autoscale"}}$KNATIVE_SERVING_TEST_AUTOSCALE{{end -}} +{{- if eq . "wsserver"}}$KNATIVE_SERVING_TEST_WSSERVER{{end -}} +{{- if eq . "httpproxy"}}$KNATIVE_SERVING_TEST_HTTPPROXY{{end -}} +{{- if eq . "singlethreaded"}}$KNATIVE_SERVING_TEST_SINGLETHREADED{{end -}} +{{- if eq . "servingcontainer"}}$KNATIVE_SERVING_TEST_SERVINGCONTAINER{{end -}} +{{- if eq . "sidecarcontainer"}}$KNATIVE_SERVING_TEST_SIDECARCONTAINER{{end -}} +{{- if eq . "hellohttp2"}}$KNATIVE_SERVING_TEST_HELLOHTTP2{{end -}} +{{- if eq . "hellovolume"}}$KNATIVE_SERVING_TEST_HELLOVOLUME{{end -}} +{{- if eq . "invalidhelloworld"}}quay.io/openshift-knative/helloworld:invalid{{end -}} +{{end -}} +END +) +elif [ -n "$DOCKER_REPO_OVERRIDE" ]; then + readonly TEST_IMAGE_TEMPLATE="${DOCKER_REPO_OVERRIDE}/{{.Name}}" +elif [ -n "$BRANCH" ]; then + readonly TEST_IMAGE_TEMPLATE="registry.ci.openshift.org/openshift/${BRANCH}:knative-serving-test-{{.Name}}" +elif [ -n "$TEMPLATE" ]; then + readonly TEST_IMAGE_TEMPLATE="$TEMPLATE" +else + readonly TEST_IMAGE_TEMPLATE="registry.ci.openshift.org/openshift/knative-nightly:knative-serving-test-{{.Name}}" +fi + +env + +# Waits until the machineset in the given namespaces scales up to the +# desired number of replicas +# Parameters: $1 - namespace +# $2 - machineset name +# $3 - desired number of replicas +function wait_until_machineset_scales_up() { + echo -n "Waiting until machineset $2 in namespace $1 scales up to $3 replicas" + for _ in {1..150}; do # timeout after 15 minutes + local available + available=$(oc get machineset -n "$1" "$2" -o jsonpath="{.status.availableReplicas}") + if [[ ${available} -eq $3 ]]; then + echo -e "\nMachineSet $2 in namespace $1 successfully scaled up to $3 replicas" + return 0 + fi + echo -n "." + sleep 6 + done + echo - "Error: timeout waiting for machineset $2 in namespace $1 to scale up to $3 replicas" + return 1 +} + +# Waits until the given hostname resolves via DNS +# Parameters: $1 - hostname +function wait_until_hostname_resolves() { + echo -n "Waiting until hostname $1 resolves via DNS" + for _ in {1..150}; do # timeout after 15 minutes + local output + output=$(host -t a "$1" | grep 'has address') + if [[ -n "${output}" ]]; then + echo -e "\n${output}" + return 0 + fi + echo -n "." + sleep 6 + done + echo -e "\n\nERROR: timeout waiting for hostname $1 to resolve via DNS" + return 1 +} + +# Loops until duration (car) is exceeded or command (cdr) returns non-zero +function timeout() { + SECONDS=0; TIMEOUT=$1; shift + while eval $*; do + sleep 5 + [[ $SECONDS -gt $TIMEOUT ]] && echo "ERROR: Timed out" && return 1 + done + return 0 +} + +function serverless_operator_version { + if [[ "$branch" == "knative-v1.7" ]]; then + echo 'release-1.28' + elif [[ "$branch" == "knative-v1.8" ]]; then + echo 'release-1.29' + elif [[ "$branch" == "knative-v1.9" ]]; then + echo 'release-1.30' + elif [[ "$branch" == "knative-v1.10" ]]; then + echo 'release-1.31' + elif [[ "$branch" == "knative-v1.11" ]]; then + echo 'release-1.32' + elif [[ "$branch" == "knative-v1.12" ]]; then + echo 'release-1.33' + elif [[ "$branch" == "knative-v1.13" ]]; then + echo 'release-1.34' + elif [[ "$branch" == "knative-v1.14" ]]; then + echo 'release-1.35' + elif [[ "$branch" == "knative-v1.15" ]]; then + echo 'release-1.36' + elif [[ "$branch" == "knative-v1.16" ]]; then + echo 'release-1.37' + elif [[ "$branch" == "knative-v1.17" ]]; then + echo 'release-1.38' + else + echo 'main' + fi +} + +function install_serverless(){ + header "Installing Serverless Operator" + + # And checkout the setup script based on that commit. + local SERVERLESS_DIR=$(mktemp -d) + + # Use the absolute path for KNATIVE_SERVING_MANIFESTS_DIR. It is used in `make generated-files`. + export KNATIVE_SERVING_MANIFESTS_DIR="$(pwd)/openshift/release/artifacts" + + if ! git clone -b $(serverless_operator_version) --depth 1 https://github.com/openshift-knative/serverless-operator.git ${SERVERLESS_DIR}; then + # As serving branch cuts before SO branch so it fails to clone the branch in the meantime. + echo "Failed to clone $(serverless_operator_version) SO branch. Use main branch." + git clone --depth 1 https://github.com/openshift-knative/serverless-operator.git ${SERVERLESS_DIR} + fi + pushd ${SERVERLESS_DIR} + + source ./test/lib.bash + create_namespaces "${SYSTEM_NAMESPACES[@]}" + export GOPATH=/tmp/go + export ON_CLUSTER_BUILDS=true + export DOCKER_REPO_OVERRIDE=image-registry.openshift-image-registry.svc:5000/openshift-marketplace + OPENSHIFT_CI="true" make generated-files images install-serving || return $? + + # Create a secret for https test. + trust_router_ca || return $? + popd +} + +function install_knative(){ + install_serverless || return $? + + # To enable gRPC and HTTP2 tests without OCP Route. + oc patch knativeserving knative-serving \ + -n "${SERVING_NAMESPACE}" \ + --type merge --patch '{"spec": {"ingress": {"kourier": {"service-type": "LoadBalancer"}}}}' + + wait_until_service_has_external_ip $SERVING_INGRESS_NAMESPACE kourier || fail_test "Ingress has no external IP" + wait_until_hostname_resolves "$(kubectl get svc -n $SERVING_INGRESS_NAMESPACE kourier -o jsonpath='{.status.loadBalancer.ingress[0].hostname}')" + + # TODO: Only one cluster enables internal-tls but it should be enabled by default when the feature is stable. + if [[ ${ENABLE_INTERNAL_TLS:-} == "true" ]]; then + configure_cm network internal-encryption:true || fail_test + configure_cm kourier cluster-cert-secret:server-certs || fail_test + # Deploy certificates for testing TLS with cluster-local gateway + timeout 600 '[[ $(oc get ns $SERVING_INGRESS_NAMESPACE -oname | wc -l) == 0 ]]' || return 1 + yq read --doc 1 ./test/config/tls/cert-secret.yaml | yq write - metadata.namespace ${SERVING_INGRESS_NAMESPACE} | oc apply -f - + echo "Restart activator to mount the certificates" + oc delete pod -n ${SERVING_NAMESPACE} -l app=activator + oc wait --timeout=60s --for=condition=Available deployment -n ${SERVING_NAMESPACE} activator + echo "internal-encryption is enabled" + else + # disable internal-encryption. S-O repo would enable by default. + configure_cm network internal-encryption:false || fail_test + echo "Restart activator to unmount the certificates" + oc delete pod -n ${SERVING_NAMESPACE} -l app=activator + oc wait --timeout=60s --for=condition=Available deployment -n ${SERVING_NAMESPACE} activator + echo "internal-encryption is disabled" + fi + + header "Knative Installed successfully" +} + +function prepare_knative_serving_tests_nightly { + echo ">> Creating test resources for OpenShift (test/config/)" + + kubectl apply -f test/config/cluster-resources.yaml + kubectl apply -f test/config/test-resources.yaml + + # Apply resource quota in rq-test namespace, needed for the related e2e test. + oc apply -f ./test/config/resource-quota/resource-quota.yaml + + # Apply persistent volume claim needed, needed for the related e2e test. + oc apply -f ./test/config/pvc/pvc.yaml + + # Adding scc for anyuid to test TestShouldRunAsUserContainerDefault. + oc adm policy add-scc-to-user anyuid -z default -n serving-tests + + export SYSTEM_NAMESPACE="$SERVING_NAMESPACE" + export GATEWAY_OVERRIDE=kourier + export GATEWAY_NAMESPACE_OVERRIDE="$SERVING_INGRESS_NAMESPACE" + export INGRESS_CLASS=kourier.ingress.networking.knative.dev + + if [[ ${ENABLE_INTERNAL_TLS} == "true" ]]; then + # Deploy CA cert for testing TLS with cluster-local gateway + yq read --doc 0 ./test/config/tls/cert-secret.yaml | oc apply -f - + # This needs to match the name of Secret in test/config/tls/cert-secret.yaml + export CA_CERT=ca-cert + # This needs to match $san from test/config/tls/generate.sh + export SERVER_NAME=knative.dev + fi +} + +function run_e2e_tests(){ + header "Running tests" + + local test_name=$1 + local failed=0 + + # Keep this in sync with test/ha/ha.go + readonly OPENSHIFT_REPLICAS=2 + # TODO: Increase BUCKETS size more than 1 when operator supports configmap/config-leader-election setting. + readonly OPENSHIFT_BUCKETS=1 + + # Changing the bucket count and cycling the controllers will leave around stale + # lease resources at the old sharding factor, so clean these up. + kubectl -n ${SYSTEM_NAMESPACE} delete leases --all + + # Wait for a new leader Controller to prevent race conditions during service reconciliation + wait_for_leader_controller || failed=1 + + # Dump the leases post-setup. + header "Leaders" + kubectl get lease -n "${SYSTEM_NAMESPACE}" + + # Give the controller time to sync with the rest of the system components. + sleep 30 + subdomain=$(oc get ingresses.config.openshift.io cluster -o jsonpath="{.spec.domain}") + + readonly OPENSHIFT_TEST_OPTIONS="--kubeconfig $KUBECONFIG --enable-beta --enable-alpha --resolvabledomain --customdomain=$subdomain --https --skip-cleanup-on-fail" + + # Enable secure pod defaults for all tests. + enable_feature_flags secure-pod-defaults || fail_test + + if [ -n "$test_name" ]; then + go_test_e2e -tags=e2e -timeout=15m -parallel=1 \ + ./test/e2e ./test/conformance/api/... ./test/conformance/runtime/... \ + -run "^(${test_name})$" \ + --imagetemplate "$TEST_IMAGE_TEMPLATE" \ + ${OPENSHIFT_TEST_OPTIONS} || failed=$? + return $failed + fi + + local parallel=3 + + if [[ $(oc get infrastructure cluster -ojsonpath='{.status.platform}') = VSphere ]]; then + # Since we don't have LoadBalancers working, gRPC tests will always fail. + mv ./test/e2e/grpc_test.go /tmp/grpc_test.go + parallel=2 + fi + + go_test_e2e -tags=e2e -timeout=30m -parallel=$parallel \ + ./test/e2e ./test/conformance/api/... ./test/conformance/runtime/... \ + --imagetemplate "$TEST_IMAGE_TEMPLATE" \ + ${OPENSHIFT_TEST_OPTIONS} || failed=1 + + enable_feature_flags tag-header-based-routing || fail_test + go_test_e2e -timeout=2m ./test/e2e/tagheader \ + --imagetemplate "$TEST_IMAGE_TEMPLATE" \ + ${OPENSHIFT_TEST_OPTIONS} || failed=1 + disable_feature_flags tag-header-based-routing || fail_test + + configure_cm autoscaler allow-zero-initial-scale:true || fail_test + # wait 10 sec until sync. + sleep 10 + go_test_e2e -timeout=2m ./test/e2e/initscale \ + --imagetemplate "$TEST_IMAGE_TEMPLATE" \ + ${OPENSHIFT_TEST_OPTIONS} || failed=1 + configure_cm autoscaler allow-zero-initial-scale:false || fail_test + + enable_feature_flags responsive-revision-gc || fail_test + # immediate_gc + configure_cm gc retain-since-create-time:disabled retain-since-last-active-time:disabled min-non-active-revisions:0 max-non-active-revisions:0 || fail_test + go_test_e2e -timeout=2m ./test/e2e/gc \ + --imagetemplate "$TEST_IMAGE_TEMPLATE" \ + ${OPENSHIFT_TEST_OPTIONS} || failed=1 + disable_feature_flags responsive-revision-gc || fail_test + + # Run HPA tests + go_test_e2e -timeout=30m -tags=hpa ./test/e2e \ + --imagetemplate "$TEST_IMAGE_TEMPLATE" \ + ${OPENSHIFT_TEST_OPTIONS} || failed=1 + + # Run init-containers test + enable_feature_flags kubernetes.podspec-init-containers || fail_test + go_test_e2e -timeout=2m ./test/e2e/initcontainers \ + --imagetemplate "$TEST_IMAGE_TEMPLATE" \ + ${OPENSHIFT_TEST_OPTIONS} || failed=1 + disable_feature_flags kubernetes.podspec-init-containers || fail_test + + # Run PVC test + enable_feature_flags kubernetes.podspec-persistent-volume-claim kubernetes.podspec-persistent-volume-write kubernetes.podspec-securitycontext || fail_test + go_test_e2e -timeout=5m ./test/e2e/pvc \ + --imagetemplate "$TEST_IMAGE_TEMPLATE" \ + ${OPENSHIFT_TEST_OPTIONS} || failed=1 + disable_feature_flags kubernetes.podspec-persistent-volume-claim kubernetes.podspec-persistent-volume-write kubernetes.podspec-securitycontext || fail_test + + # Run the helloworld test with an image pulled into the internal registry. + local image_to_tag=$KNATIVE_SERVING_TEST_HELLOWORLD + oc tag -n serving-tests "$image_to_tag" "helloworld:latest" --reference-policy=local + go_test_e2e -tags=e2e -timeout=30m ./test/e2e -run "^(TestHelloWorld)$" \ + ${OPENSHIFT_TEST_OPTIONS} \ + --imagetemplate "image-registry.openshift-image-registry.svc:5000/serving-tests/{{.Name}}" || failed=2 + + # Prevent HPA from scaling to make the tests more stable + oc -n "$SERVING_NAMESPACE" patch hpa activator \ + --type 'merge' \ + --patch '{"spec": {"maxReplicas": '${OPENSHIFT_REPLICAS}', "minReplicas": '${OPENSHIFT_REPLICAS}'}}' || return 1 + + # Use sed as the -spoofinterval parameter is not available yet + sed "s/\(.*requestInterval =\).*/\1 10 * time.Millisecond/" -i vendor/knative.dev/pkg/test/spoof/spoof.go + + # Run HA tests separately as they're stopping core Knative Serving pods + # Define short -spoofinterval to ensure frequent probing while stopping pods + go_test_e2e -tags=e2e -timeout=15m -failfast -parallel=1 \ + ./test/ha \ + -replicas="${OPENSHIFT_REPLICAS}" -buckets="${OPENSHIFT_BUCKETS}" -spoofinterval="10ms" \ + --imagetemplate "$TEST_IMAGE_TEMPLATE" \ + ${OPENSHIFT_TEST_OPTIONS} || failed=1 + + # Test gRPC via OpenShift Route. + # * OCP Route does not work with websocket when enabling default-enable-http2. It will be fixed in the next haproxy version (OCP 4.12 or 4.13). + # * Also, Skip 4.9, 4.8 job as OCP option for gRPC/HTTP2 is available since 4.10 - bz#1826225 + if [[ ${JOB_NAME} =~ "48" ]] || [[ ${JOB_NAME} =~ "49" ]]; then + echo "skip gRPC test via OCP" + return $failed + fi + + echo "gRPC test via OCP" + + oc annotate ingresses.config/cluster ingress.operator.openshift.io/default-enable-http2=true + oc annotate knativeserving knative-serving -n knative-serving serverless.openshift.io/default-enable-http2=true + + # This is not necessary actually but it makes sure that access passes through OCP route. + oc patch knativeserving knative-serving \ + -n "${SERVING_NAMESPACE}" \ + --type merge --patch '{"spec": {"ingress": {"kourier": {"service-type": "ClusterIP"}}}}' + + if [[ $(oc get infrastructure cluster -ojsonpath='{.status.platform}') = VSphere ]]; then + # Revert grpc_test.go evacuated above. + mv /tmp/grpc_test.go ./test/e2e/grpc_test.go + parallel=2 + fi + + # Revert gRPC patch. + git apply -R ./openshift/patches/004-grpc.patch + + # Run test with the prefix "TestGRPC". + go_test_e2e -timeout=10m ./test/e2e -parallel=1 \ + -run "TestGRPC" \ + --imagetemplate "$TEST_IMAGE_TEMPLATE" \ + ${OPENSHIFT_TEST_OPTIONS} || failed=1 + + # Verify that the right sc is set by default and seccompProfile is injected on OCP >= 4.11. + go_test_e2e -timeout=10m ./test/e2e/securedefaults -run "^(TestSecureDefaults)$" \ + --imagetemplate "$TEST_IMAGE_TEMPLATE" \ + ${OPENSHIFT_TEST_OPTIONS} || failed=1 + + # Allow to use any seccompProfile for non default cases, + # for more check https://docs.openshift.com/container-platform/4.12/authentication/managing-security-context-constraints.html + oc adm policy add-scc-to-user privileged -z default -n serving-tests + + # Verify that non secure settings are allowed, although not-recommended. + # It requires scc privileged or a custom scc that allows any seccompProfile to be set. + go_test_e2e -timeout=10m ./test/e2e/securedefaults -run "^(TestUnsafePermitted)$" \ + --imagetemplate "$TEST_IMAGE_TEMPLATE" \ + ${OPENSHIFT_TEST_OPTIONS} || failed=1 + + return $failed +} + +function gather_knative_state { + logger.info 'Gather knative state' + local gather_dir="${ARTIFACT_DIR:-/tmp}/gather-knative" + mkdir -p "$gather_dir" + + oc --insecure-skip-tls-verify adm must-gather \ + --image=quay.io/openshift-knative/must-gather \ + --dest-dir "$gather_dir" > "${gather_dir}/gather-knative.log" +} + +function enable_feature_flags { + local failed=0 + + for feature in "$@"; do + echo "Enabling feature: $feature" + configure_cm features "$feature":enabled || failed=1 + done + # Allow settings to be picked up + sleep 30 + return $failed +} + +function disable_feature_flags { + local failed=0 + + for feature in "$@"; do + echo "Disabling feature: $feature" + configure_cm features "$feature":disabled || failed=1 + done + # Allow settings to be picked up + sleep 30 + return $failed +} + +function configure_cm { + local failed=0 + local cm="$1" + local patch="" + declare -A json_properties + + for property in "${@:2}"; do + KEY="${property%%:*}" + VALUE="${property##*:}" + patch=${patch:+$patch,}"\"$KEY\": \"$VALUE\"" + # escape in case property contains dots eg. kubernetes.pod-spec + j_property="$(echo "'$KEY'" | sed "s/\./\\\./g")" + json_properties["$j_property"]="$VALUE" + done + + oc -n ${SYSTEM_NAMESPACE} patch knativeserving/knative-serving --type=merge --patch="{\"spec\": {\"config\": { \"$cm\": {$patch} }}}" || failed=1 + + for j_property in "${!json_properties[@]}"; do + timeout 30 "[[ ! \$(oc get cm -n ${SYSTEM_NAMESPACE} config-$cm -o jsonpath={.data.${j_property}}) == \"${json_properties[$j_property]}\" ]]" || failed=1 + done + return $failed +} diff --git a/openshift/e2e-tests-local.sh b/openshift/e2e-tests-local.sh new file mode 100755 index 000000000000..a5eb45e93452 --- /dev/null +++ b/openshift/e2e-tests-local.sh @@ -0,0 +1,17 @@ +#!/usr/bin/env bash + +# shellcheck disable=SC1090 +source "$(dirname "$0")/e2e-common.sh" + +set -x + +env + +failed=0 + +(( !failed )) && prepare_knative_serving_tests_nightly || failed=1 +(( !failed )) && run_e2e_tests "$TEST" || failed=2 +(( failed )) && gather_knative_state +(( failed )) && exit $failed + +success diff --git a/openshift/e2e-tests.sh b/openshift/e2e-tests.sh new file mode 100755 index 000000000000..4575200c8091 --- /dev/null +++ b/openshift/e2e-tests.sh @@ -0,0 +1,20 @@ +#!/usr/bin/env bash + +# shellcheck disable=SC1090 +source "$(dirname "$0")/e2e-common.sh" + +set -x + +env + +failed=0 + +export ENABLE_INTERNAL_TLS="${ENABLE_INTERNAL_TLS:-false}" + +(( !failed )) && install_knative || failed=1 +(( !failed )) && prepare_knative_serving_tests_nightly || failed=2 +(( !failed )) && run_e2e_tests || failed=3 +(( failed )) && gather_knative_state +(( failed )) && exit $failed + +success diff --git a/openshift/patches/001-object.patch b/openshift/patches/001-object.patch new file mode 100644 index 000000000000..13a6bc65bde7 --- /dev/null +++ b/openshift/patches/001-object.patch @@ -0,0 +1,13 @@ +diff --git a/vendor/knative.dev/pkg/test/helpers/name.go b/vendor/knative.dev/pkg/test/helpers/name.go +index 0ceaed594..fd55ec5b0 100644 +--- a/vendor/knative.dev/pkg/test/helpers/name.go ++++ b/vendor/knative.dev/pkg/test/helpers/name.go +@@ -26,7 +26,7 @@ import ( + const ( + letterBytes = "abcdefghijklmnopqrstuvwxyz" + randSuffixLen = 8 +- nameLengthLimit = 50 ++ nameLengthLimit = 40 + sep = '-' + sepS = "-" + testNamePrefix = "Test" diff --git a/openshift/patches/002-mutemetrics.patch b/openshift/patches/002-mutemetrics.patch new file mode 100644 index 000000000000..d946e761b783 --- /dev/null +++ b/openshift/patches/002-mutemetrics.patch @@ -0,0 +1,30 @@ +diff --git a/vendor/knative.dev/pkg/controller/stats_reporter.go b/vendor/knative.dev/pkg/controller/stats_reporter.go +index 6735285db..67ec3d6a1 100644 +--- a/vendor/knative.dev/pkg/controller/stats_reporter.go ++++ b/vendor/knative.dev/pkg/controller/stats_reporter.go +@@ -199,7 +199,7 @@ func (r *reporter) ReportReconcile(duration time.Duration, success string, key t + return err + } + +- metrics.RecordBatch(ctx, reconcileCountStat.M(1), +- reconcileLatencyStat.M(duration.Milliseconds())) ++ // TODO skonto: fix latency histograms ++ metrics.Record(ctx, reconcileCountStat.M(1)) + return nil + } +diff --git a/vendor/knative.dev/pkg/webhook/stats_reporter.go b/vendor/knative.dev/pkg/webhook/stats_reporter.go +index 9d64634fe..a735367e3 100644 +--- a/vendor/knative.dev/pkg/webhook/stats_reporter.go ++++ b/vendor/knative.dev/pkg/webhook/stats_reporter.go +@@ -99,9 +99,8 @@ func (r *reporter) ReportRequest(req *admissionv1.AdmissionRequest, resp *admiss + return err + } + +- metrics.RecordBatch(ctx, requestCountM.M(1), +- // Convert time.Duration in nanoseconds to milliseconds +- responseTimeInMsecM.M(float64(d.Milliseconds()))) ++ // TODO skonto: fix latency histograms ++ metrics.Record(ctx, requestCountM.M(1)) + return nil + } + diff --git a/openshift/patches/003-routeretry.patch b/openshift/patches/003-routeretry.patch new file mode 100644 index 000000000000..e4a36aaba698 --- /dev/null +++ b/openshift/patches/003-routeretry.patch @@ -0,0 +1,79 @@ +diff --git a/vendor/knative.dev/pkg/test/spoof/openshift_checks.go b/vendor/knative.dev/pkg/test/spoof/openshift_checks.go +new file mode 100644 +index 000000000..acaebe95b +--- /dev/null ++++ b/vendor/knative.dev/pkg/test/spoof/openshift_checks.go +@@ -0,0 +1,40 @@ ++package spoof ++ ++import ( ++ "fmt" ++ "net/http" ++ "strings" ++) ++ ++// isUnknownAuthority checks if the error contains "certificate signed by unknown authority". ++// This error happens when OpenShift Route starts/changes to use passthrough mode. It takes a little bit time to be synced. ++func isUnknownAuthority(err error) bool { ++ return err != nil && strings.Contains(err.Error(), "certificate signed by unknown authority") ++} ++ ++// RetryingRouteInconsistency retries common requests seen when creating a new route ++// - 503 to account for Openshift route inconsistency (https://jira.coreos.com/browse/SRVKS-157) ++func RouteInconsistencyRetryChecker(resp *Response) (bool, error) { ++ if resp.StatusCode == http.StatusServiceUnavailable { ++ return true, fmt.Errorf("retrying route inconsistency request: %s", resp) ++ } ++ return false, nil ++} ++ ++// RouteInconsistencyMultiRetryChecker retries common requests seen when creating a new route ++// - 503 to account for Openshift route inconsistency (https://jira.coreos.com/browse/SRVKS-157) ++func RouteInconsistencyMultiRetryChecker() ResponseChecker { ++ const neededSuccesses = 32 ++ var successes int ++ return func(resp *Response) (bool, error) { ++ if resp.StatusCode == http.StatusServiceUnavailable { ++ successes = 0 ++ return true, fmt.Errorf("retrying route inconsistency request: %s", resp) ++ } ++ successes++ ++ if successes < neededSuccesses { ++ return true, fmt.Errorf("successful requests: %d, required: %d", successes, neededSuccesses) ++ } ++ return false, nil ++ } ++} +diff --git a/vendor/knative.dev/pkg/test/spoof/spoof.go b/vendor/knative.dev/pkg/test/spoof/spoof.go +index 147a64adc..5ee44906e 100644 +--- a/vendor/knative.dev/pkg/test/spoof/spoof.go ++++ b/vendor/knative.dev/pkg/test/spoof/spoof.go +@@ -164,7 +164,7 @@ func (sc *SpoofingClient) Do(req *http.Request, errorRetryCheckers ...interface{ + // If no retry checkers are specified `DefaultErrorRetryChecker` will be used. + func (sc *SpoofingClient) Poll(req *http.Request, inState ResponseChecker, checkers ...interface{}) (*Response, error) { + if len(checkers) == 0 { +- checkers = []interface{}{ErrorRetryChecker(DefaultErrorRetryChecker), ResponseRetryChecker(DefaultResponseRetryChecker)} ++ checkers = []interface{}{ErrorRetryChecker(DefaultErrorRetryChecker), ResponseRetryChecker(DefaultResponseRetryChecker), ResponseRetryChecker(RouteInconsistencyRetryChecker)} + } + + var resp *Response +@@ -252,6 +252,9 @@ func DefaultErrorRetryChecker(err error) (bool, error) { + if isNoRouteToHostError(err) { + return true, fmt.Errorf("retrying for 'no route to host' error: %w", err) + } ++ if isUnknownAuthority(err) { ++ return true, fmt.Errorf("retrying for certificate signed by unknown authority: %w", err) ++ } + return false, err + } + +@@ -328,6 +331,9 @@ func (sc *SpoofingClient) endpointState( + } + + func (sc *SpoofingClient) Check(req *http.Request, inState ResponseChecker, checkers ...interface{}) (*Response, error) { ++ if len(checkers) == 0 { ++ checkers = []interface{}{ErrorRetryChecker(DefaultErrorRetryChecker), ResponseRetryChecker(DefaultResponseRetryChecker), ResponseRetryChecker(RouteInconsistencyMultiRetryChecker())} ++ } + resp, err := sc.Do(req, checkers...) + if err != nil { + return nil, err diff --git a/openshift/patches/004-grpc.patch b/openshift/patches/004-grpc.patch new file mode 100644 index 000000000000..c66f0b8bfd00 --- /dev/null +++ b/openshift/patches/004-grpc.patch @@ -0,0 +1,67 @@ +diff --git a/test/e2e/grpc_test.go b/test/e2e/grpc_test.go +index cab0aa22d..ee64c3b29 100644 +--- a/test/e2e/grpc_test.go ++++ b/test/e2e/grpc_test.go +@@ -34,7 +34,6 @@ import ( + + "golang.org/x/sync/errgroup" + "google.golang.org/grpc" +- "google.golang.org/grpc/credentials" + "google.golang.org/grpc/credentials/insecure" + + corev1 "k8s.io/api/core/v1" +@@ -68,9 +67,6 @@ func hasPort(u string) bool { + + func dial(ctx *TestContext, host, domain string) (*grpc.ClientConn, error) { + defaultPort := "80" +- if test.ServingFlags.HTTPS { +- defaultPort = "443" +- } + if !hasPort(host) { + host = net.JoinHostPort(host, defaultPort) + } +@@ -83,12 +79,6 @@ func dial(ctx *TestContext, host, domain string) (*grpc.ClientConn, error) { + } + + creds := insecure.NewCredentials() +- if test.ServingFlags.HTTPS { +- tlsConfig := test.TLSClientConfig(context.Background(), ctx.t.Logf, ctx.clients) +- // Set ServerName for pseudo hostname with TLS. +- tlsConfig.ServerName = domain +- creds = credentials.NewTLS(tlsConfig) +- } + + return grpc.Dial( + host, +@@ -324,11 +314,6 @@ func streamTest(tc *TestContext, host, domain string) { + + func testGRPC(t *testing.T, f grpcTest, fopts ...rtesting.ServiceOption) { + t.Helper() +- // TODO: https option with parallel leads to flakes. +- // https://github.com/knative/serving/issues/11387 +- if !test.ServingFlags.HTTPS { +- t.Parallel() +- } + + // Setup + clients := Setup(t) +@@ -369,16 +354,13 @@ func testGRPC(t *testing.T, f grpcTest, fopts ...rtesting.ServiceOption) { + } + + host := url.Host +- if !test.ServingFlags.ResolvableDomain { ++ if true { + addr, mapper, err := ingress.GetIngressEndpoint(context.Background(), clients.KubeClient, pkgTest.Flags.IngressEndpoint) + if err != nil { + t.Fatal("Could not get service endpoint:", err) + } +- if test.ServingFlags.HTTPS { +- host = net.JoinHostPort(addr, mapper("443")) +- } else { +- host = net.JoinHostPort(addr, mapper("80")) +- } ++ ++ host = net.JoinHostPort(addr, mapper("80")) + } + + f(&TestContext{ diff --git a/openshift/patches/005-pdb-minavailable.patch b/openshift/patches/005-pdb-minavailable.patch new file mode 100644 index 000000000000..1bb3d0393fea --- /dev/null +++ b/openshift/patches/005-pdb-minavailable.patch @@ -0,0 +1,26 @@ +diff --git a/config/core/deployments/activator-hpa.yaml b/config/core/deployments/activator-hpa.yaml +index 75c74798d..27ae13f2e 100644 +--- a/config/core/deployments/activator-hpa.yaml ++++ b/config/core/deployments/activator-hpa.yaml +@@ -50,7 +50,7 @@ metadata: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: devel + spec: +- minAvailable: 80% ++ minAvailable: 1 + selector: + matchLabels: + app: activator +diff --git a/config/core/deployments/webhook-hpa.yaml b/config/core/deployments/webhook-hpa.yaml +index 6a2ae587c..7c95f13bb 100644 +--- a/config/core/deployments/webhook-hpa.yaml ++++ b/config/core/deployments/webhook-hpa.yaml +@@ -48,7 +48,7 @@ metadata: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: devel + spec: +- minAvailable: 80% ++ minAvailable: 1 + selector: + matchLabels: + app: webhook diff --git a/openshift/patches/008-serving-namespace-deletion.patch b/openshift/patches/008-serving-namespace-deletion.patch new file mode 100644 index 000000000000..3003afb2e004 --- /dev/null +++ b/openshift/patches/008-serving-namespace-deletion.patch @@ -0,0 +1,27 @@ +diff --git a/config/core/100-namespace.yaml b/config/core/100-namespace.yaml +deleted file mode 100644 +index cce6c212b..000000000 +--- a/config/core/100-namespace.yaml ++++ /dev/null +@@ -1,21 +0,0 @@ +-# Copyright 2018 The Knative Authors +-# +-# 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 +-# +-# https://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. +- +-apiVersion: v1 +-kind: Namespace +-metadata: +- name: knative-serving +- labels: +- app.kubernetes.io/name: knative-serving +- app.kubernetes.io/version: devel diff --git a/openshift/patches/009-cm-view.patch b/openshift/patches/009-cm-view.patch new file mode 100644 index 000000000000..7c6bb01a91c0 --- /dev/null +++ b/openshift/patches/009-cm-view.patch @@ -0,0 +1,31 @@ +diff --git a/config/core/200-roles/config-map-view-downstream.yaml b/config/core/200-roles/config-map-view-downstream.yaml +new file mode 100644 +index 000000000..91e329703 +--- /dev/null ++++ b/config/core/200-roles/config-map-view-downstream.yaml +@@ -0,0 +1,25 @@ ++# Extra role for downstream, so that users can get the autoscaling CM to fetch defaults. ++kind: Role ++apiVersion: rbac.authorization.k8s.io/v1 ++metadata: ++ namespace: knative-serving ++ name: openshift-serverless-view-serving-configmaps ++rules: ++ - apiGroups: [""] ++ resources: ["configmaps"] ++ resourceNames: ["config-autoscaler"] ++ verbs: ["get", "list", "watch"] ++--- ++kind: RoleBinding ++apiVersion: rbac.authorization.k8s.io/v1 ++metadata: ++ name: openshift-serverless-view-serving-configmaps ++ namespace: knative-serving ++subjects: ++ - kind: Group ++ name: system:authenticated ++ apiGroup: rbac.authorization.k8s.io ++roleRef: ++ apiGroup: rbac.authorization.k8s.io ++ kind: Role ++ name: openshift-serverless-view-serving-configmaps diff --git a/openshift/patches/010-secure-pod-defaults.patch b/openshift/patches/010-secure-pod-defaults.patch new file mode 100644 index 000000000000..2afe99c00464 --- /dev/null +++ b/openshift/patches/010-secure-pod-defaults.patch @@ -0,0 +1,114 @@ +diff --git a/pkg/apis/serving/v1/revision_defaults.go b/pkg/apis/serving/v1/revision_defaults.go +index 8acbf3446..48c439b4a 100644 +--- a/pkg/apis/serving/v1/revision_defaults.go ++++ b/pkg/apis/serving/v1/revision_defaults.go +@@ -184,21 +184,14 @@ func (rs *RevisionSpec) defaultSecurityContext(psc *corev1.PodSecurityContext, c + if updatedSC.AllowPrivilegeEscalation == nil { + updatedSC.AllowPrivilegeEscalation = ptr.Bool(false) + } +- if psc.SeccompProfile == nil || psc.SeccompProfile.Type == "" { +- if updatedSC.SeccompProfile == nil { +- updatedSC.SeccompProfile = &corev1.SeccompProfile{} +- } +- if updatedSC.SeccompProfile.Type == "" { +- updatedSC.SeccompProfile.Type = corev1.SeccompProfileTypeRuntimeDefault +- } +- } ++ + if updatedSC.Capabilities == nil { + updatedSC.Capabilities = &corev1.Capabilities{} + updatedSC.Capabilities.Drop = []corev1.Capability{"ALL"} + // Default in NET_BIND_SERVICE to allow binding to low-numbered ports. + needsLowPort := false + for _, p := range container.Ports { +- if p.ContainerPort < 1024 { ++ if p.ContainerPort > 0 && p.ContainerPort < 1024 { + needsLowPort = true + break + } +@@ -207,7 +200,9 @@ func (rs *RevisionSpec) defaultSecurityContext(psc *corev1.PodSecurityContext, c + updatedSC.Capabilities.Add = []corev1.Capability{"NET_BIND_SERVICE"} + } + } +- ++ if psc.RunAsNonRoot == nil && updatedSC.RunAsNonRoot == nil { ++ updatedSC.RunAsNonRoot = ptr.Bool(true) ++ } + if *updatedSC != (corev1.SecurityContext{}) { + container.SecurityContext = updatedSC + } +diff --git a/pkg/apis/serving/v1/revision_defaults_test.go b/pkg/apis/serving/v1/revision_defaults_test.go +index 332fecfb4..401cac325 100644 +--- a/pkg/apis/serving/v1/revision_defaults_test.go ++++ b/pkg/apis/serving/v1/revision_defaults_test.go +@@ -901,9 +901,7 @@ func TestRevisionDefaulting(t *testing.T) { + Resources: defaultResources, + SecurityContext: &corev1.SecurityContext{ + AllowPrivilegeEscalation: ptr.Bool(false), +- SeccompProfile: &corev1.SeccompProfile{ +- Type: corev1.SeccompProfileTypeRuntimeDefault, +- }, ++ RunAsNonRoot: ptr.Bool(true), + Capabilities: &corev1.Capabilities{ + Drop: []corev1.Capability{"ALL"}, + Add: []corev1.Capability{"NET_BIND_SERVICE"}, +@@ -914,9 +912,7 @@ func TestRevisionDefaulting(t *testing.T) { + Resources: defaultResources, + SecurityContext: &corev1.SecurityContext{ + AllowPrivilegeEscalation: ptr.Bool(false), +- SeccompProfile: &corev1.SeccompProfile{ +- Type: corev1.SeccompProfileTypeRuntimeDefault, +- }, ++ RunAsNonRoot: ptr.Bool(true), + Capabilities: &corev1.Capabilities{ + Drop: []corev1.Capability{"ALL"}, + }, +@@ -926,9 +922,7 @@ func TestRevisionDefaulting(t *testing.T) { + Resources: defaultResources, + SecurityContext: &corev1.SecurityContext{ + AllowPrivilegeEscalation: ptr.Bool(true), +- SeccompProfile: &corev1.SeccompProfile{ +- Type: corev1.SeccompProfileTypeRuntimeDefault, +- }, ++ RunAsNonRoot: ptr.Bool(true), + Capabilities: &corev1.Capabilities{ + Add: []corev1.Capability{"NET_ADMIN"}, + Drop: []corev1.Capability{}, +@@ -943,6 +937,7 @@ func TestRevisionDefaulting(t *testing.T) { + Type: corev1.SeccompProfileTypeLocalhost, + LocalhostProfile: ptr.String("special"), + }, ++ RunAsNonRoot: ptr.Bool(true), + Capabilities: &corev1.Capabilities{ + Add: []corev1.Capability{"NET_ADMIN"}, + }, +@@ -1001,6 +996,7 @@ func TestRevisionDefaulting(t *testing.T) { + Resources: defaultResources, + SecurityContext: &corev1.SecurityContext{ + AllowPrivilegeEscalation: ptr.Bool(false), ++ RunAsNonRoot: ptr.Bool(true), + Capabilities: &corev1.Capabilities{ + Drop: []corev1.Capability{"ALL"}, + }, +@@ -1010,6 +1006,7 @@ func TestRevisionDefaulting(t *testing.T) { + Name: "init", + SecurityContext: &corev1.SecurityContext{ + AllowPrivilegeEscalation: ptr.Bool(false), ++ RunAsNonRoot: ptr.Bool(true), + Capabilities: &corev1.Capabilities{ + Drop: []corev1.Capability{"ALL"}, + }, +diff --git a/test/e2e/securedefaults/secure_pod_defaults_test.go b/test/e2e/securedefaults/secure_pod_defaults_test.go +index af1498dee..96e4839a9 100644 +--- a/test/e2e/securedefaults/secure_pod_defaults_test.go ++++ b/test/e2e/securedefaults/secure_pod_defaults_test.go +@@ -60,9 +60,6 @@ func TestSecureDefaults(t *testing.T) { + if revisionSC.AllowPrivilegeEscalation == nil || *revisionSC.AllowPrivilegeEscalation { + t.Errorf("Expected allowPrivilegeEscalation: false, got %v", revisionSC.AllowPrivilegeEscalation) + } +- if revisionSC.SeccompProfile == nil || revisionSC.SeccompProfile.Type != v1.SeccompProfileTypeRuntimeDefault { +- t.Errorf("Expected seccompProfile to be RuntimeDefault, got: %v", revisionSC.SeccompProfile) +- } + } + + func TestUnsafePermitted(t *testing.T) { diff --git a/openshift/patches/100-ko-baseimage.patch b/openshift/patches/100-ko-baseimage.patch new file mode 100644 index 000000000000..7ae0cbdb01b9 --- /dev/null +++ b/openshift/patches/100-ko-baseimage.patch @@ -0,0 +1,11 @@ +diff --git a/.ko.yaml b/.ko.yaml +index 14afa53a5..bceaa1320 100644 +--- a/.ko.yaml ++++ b/.ko.yaml +@@ -1,4 +1,5 @@ + # Use :nonroot base image for all containers +-defaultBaseImage: gcr.io/distroless/static:nonroot ++defaultBaseImage: registry.access.redhat.com/ubi8/ubi-minimal:latest + baseImageOverrides: ++ knative.dev/serving/test/test_images/runtime: gcr.io/distroless/static:nonroot + knative.dev/serving/vendor/github.com/tsenart/vegeta/v12: ubuntu:latest diff --git a/openshift/release/README.md b/openshift/release/README.md new file mode 100644 index 000000000000..39d086f1a588 --- /dev/null +++ b/openshift/release/README.md @@ -0,0 +1,35 @@ +# Release creation + +## Branching + +As far as branching goes, we have two use-cases: + +1. Creating a branch based off an upstream release tag. +2. Having a branch that follow upstream's HEAD and serves as a vehicle for continuous integration. + +A prerequisite for both scripts is that your local clone of the repository has a remote "upstream" +that points to the upstream repository and a remote "openshift" that points to the openshift fork. + +Run the scripts from the root of the repository. + +### Creating a branch based off an upstream release tag + +To create a clean branch from an upstream release tag, use the `create-release-branch.sh` script: + +```bash +$ ./openshift/release/create-release-branch.sh v0.4.1 release-0.4 +``` + +This will create a new branch "release-0.4" based off the tag "v0.4.1" and add all OpenShift specific +files that we need to run CI on top of it. + +### Updating the release-next branch that follow upstream's HEAD + +To update a branch to the latest HEAD of upstream use the `update-to-head.sh` script: + +```bash +$ ./openshift/release/update-to-head.sh +``` + +That will pull the latest main from upstream, rebase the current fixes on the release-next branch +on top of it, update the Openshift specific files if necessary, and then trigger CI. \ No newline at end of file diff --git a/openshift/release/create-release-branch.sh b/openshift/release/create-release-branch.sh new file mode 100755 index 000000000000..3dfeaf76698d --- /dev/null +++ b/openshift/release/create-release-branch.sh @@ -0,0 +1,38 @@ +#!/usr/bin/env bash + +# Usage: create-release-branch.sh v0.4.1 release-0.4 + +set -e # Exit immediately on error. + +release=$1 +target=$2 + +# Fetch the latest tags and checkout a new branch from the wanted tag. +git fetch upstream --tags +git checkout -b "$target" "$release" + +# Remove GH Action hooks from upstream +rm -rf .github/workflows +git commit -sm ":fire: remove unneeded workflows" .github/ + +# Copy the openshift extra files from the OPENSHIFT/main branch. +git fetch openshift main +git checkout openshift/main -- .github/workflows openshift OWNERS_ALIASES OWNERS Makefile + +make generate-dockerfiles +make RELEASE=$release generate-release +git add .github/workflows openshift OWNERS_ALIASES OWNERS Makefile +git commit -m "Add openshift specific files." + +# Apply patches . +PATCH_DIR="openshift/patches" +# Use release-specific patch dir if exists +if [ -d "openshift/patches-${release}" ]; then + PATCH_DIR="openshift/patches-${release}" + # Update the nightly test images to actual versioned images + sed -i "s/knative-nightly:knative/knative-${release}:knative/g" ${PATCH_DIR}/*.patch +fi +git apply $PATCH_DIR/* +make RELEASE=$release generate-release +git add . +git commit -am ":fire: Apply carried patches." diff --git a/openshift/release/generate-release.sh b/openshift/release/generate-release.sh new file mode 100755 index 000000000000..d7002f7726ed --- /dev/null +++ b/openshift/release/generate-release.sh @@ -0,0 +1,35 @@ +#!/usr/bin/env bash + +root="$(dirname "${BASH_SOURCE[0]}")" + +source $(dirname $0)/resolve.sh +# "VERSION" is used for the "app.kubernetes.io/version" label. +VERSION=$1 + +readonly YAML_OUTPUT_DIR="openshift/release/artifacts/" + +# Clean up +rm -rf "$YAML_OUTPUT_DIR" +mkdir -p "$YAML_OUTPUT_DIR" + +readonly SERVING_CRD_YAML=${YAML_OUTPUT_DIR}/serving-crds.yaml +readonly SERVING_CORE_YAML=${YAML_OUTPUT_DIR}/serving-core.yaml +readonly SERVING_HPA_YAML=${YAML_OUTPUT_DIR}/serving-hpa.yaml +readonly SERVING_POST_INSTALL_JOBS_YAML=${YAML_OUTPUT_DIR}/serving-post-install-jobs.yaml + +if [[ "$VERSION" == "ci" ]]; then + # Do not use devel as operator checks the version. + VERSION="release-v1.2" +elif [[ "$VERSION" =~ "knative-" ]]; then + # openshift/release/create-release-branch.sh + # Drop the "knative-" prefix and micro version, which is used in create-release-branch.sh. + # e.g. knative-v1.7.0 => release-v1.7 + VERSION="release-"${VERSION#"knative-"} + VERSION="${VERSION%.*}" +fi + +# Generate Knative component YAML files +resolve_resources "config/core/300-resources/ config/core/300-imagecache.yaml" "$SERVING_CRD_YAML" "$VERSION" +resolve_resources "config/core/" "$SERVING_CORE_YAML" "$VERSION" +resolve_resources "config/hpa-autoscaling/" "$SERVING_HPA_YAML" "$VERSION" +resolve_resources "config/post-install/storage-version-migration.yaml" "$SERVING_POST_INSTALL_JOBS_YAML" "$VERSION" diff --git a/openshift/release/mirror-upstream-branches.sh b/openshift/release/mirror-upstream-branches.sh new file mode 100755 index 000000000000..a9d6ac56678e --- /dev/null +++ b/openshift/release/mirror-upstream-branches.sh @@ -0,0 +1,37 @@ +#!/usr/bin/env bash + +# Usage: openshift/release/mirror-upstream-branches.sh +# This should be run from the basedir of the repo with no arguments + + +set -ex +readonly TMPDIR=$(mktemp -d knativeEventingBranchingCheckXXXX -p /tmp/) + +git fetch upstream --tags +git fetch openshift --tags + +# We need to seed this with a few releases that, otherwise, would make +# the processing regex less clear with more anomalies +cat >> "$TMPDIR"/midstream_branches < "$TMPDIR"/upstream_branches +git branch --list -a "openshift/release-v1.*" | cut -f3 -d'/' | cut -f2 -d'v' | cut -f1,2 -d'.' >> "$TMPDIR"/midstream_branches + +sort -o "$TMPDIR"/midstream_branches "$TMPDIR"/midstream_branches +sort -o "$TMPDIR"/upstream_branches "$TMPDIR"/upstream_branches +comm -32 "$TMPDIR"/upstream_branches "$TMPDIR"/midstream_branches > "$TMPDIR"/new_branches + +UPSTREAM_BRANCH=$(cat "$TMPDIR"/new_branches | head -1) +if [ -z "$UPSTREAM_BRANCH" ]; then + echo "no new branch, exiting" + exit 0 +fi +echo "found upstream branch: $UPSTREAM_BRANCH" +readonly UPSTREAM_TAG="knative-v$UPSTREAM_BRANCH.0" +readonly MIDSTREAM_BRANCH="release-v$UPSTREAM_BRANCH" +openshift/release/create-release-branch.sh "$UPSTREAM_TAG" "$MIDSTREAM_BRANCH" +# we would check the error code, but we 'set -e', so assume we're fine +git push openshift "$MIDSTREAM_BRANCH" diff --git a/openshift/release/resolve.sh b/openshift/release/resolve.sh new file mode 100755 index 000000000000..048192ee6cba --- /dev/null +++ b/openshift/release/resolve.sh @@ -0,0 +1,37 @@ +#!/usr/bin/env bash + +function resolve_resources(){ + local dir=$1 + local resolved_file_name=$2 + local version=$3 + + echo "Writing resolved yaml to $resolved_file_name" + + > "$resolved_file_name" + + for yaml in `find $dir -name "*.yaml" | sort`; do + resolve_file "$yaml" "$resolved_file_name" "$version" + done +} + +function resolve_file() { + local file=$1 + local to=$2 + local version=$3 + + echo "---" >> "$to" + # 1. Rewrite image references + # 2. Update config map entry + # 3. Replace serving.knative.dev/release label. + # 4. Remove seccompProfile, except on CRD files in 300-resources folder to avoid breaking CRDs. + if [[ $file == */300-resources/* ]]; then + sed -e "s+app.kubernetes.io/version: devel+app.kubernetes.io/version: \""$version"\"+" \ + -e "s+type: RuntimeDefault++" \ + "$file" >> "$to" + else + sed -e "s+app.kubernetes.io/version: devel+app.kubernetes.io/version: \""$version"\"+" \ + -e "s+seccompProfile:++" \ + -e "s+type: RuntimeDefault++" \ + "$file" >> "$to" + fi +} diff --git a/openshift/release/update-to-head.sh b/openshift/release/update-to-head.sh new file mode 100755 index 000000000000..03f3ce185ce2 --- /dev/null +++ b/openshift/release/update-to-head.sh @@ -0,0 +1,55 @@ +#!/usr/bin/env bash + +# Synchs the REPO_BRANCH branch to main and then triggers CI +# Usage: update-to-head.sh + +set -e +REPO_NAME=$(basename $(git rev-parse --show-toplevel)) +REPO_OWNER_NAME="openshift-knative" +REPO_BRANCH="release-next" +REPO_BRANCH_CI="${REPO_BRANCH}-ci" + +# Check if there's an upstream release we need to mirror downstream +openshift/release/mirror-upstream-branches.sh + +# Reset release-next to upstream/main. +git fetch upstream main +git checkout upstream/main -B ${REPO_BRANCH} + +# Remove GH Action hooks from upstream +rm -rf .github/workflows +git commit -sm ":fire: remove unneeded workflows" .github/ + +# Update openshift's main and take all needed files from there. +git fetch openshift main +git checkout openshift/main openshift OWNERS_ALIASES OWNERS Makefile +# Apply patches . +git apply openshift/patches/* +git add . +git commit -am ":fire: Apply carried patches." + +make generate-dockerfiles +make RELEASE=ci generate-release +git add openshift OWNERS_ALIASES OWNERS Makefile +git commit -m ":open_file_folder: Update openshift specific files." + +git push -f openshift ${REPO_BRANCH} + +# Trigger CI +git checkout ${REPO_BRANCH} -B ${REPO_BRANCH_CI} +date > ci +git add ci +git commit -m ":robot: Triggering CI on branch '${REPO_BRANCH}' after synching to upstream/main" +git push -f openshift ${REPO_BRANCH_CI} + +if hash hub 2>/dev/null; then + # Test if there is already a sync PR in + message=":robot: Triggering CI on branch '${REPO_BRANCH}' after synching to upstream/main" + COUNT=$(hub api -H "Accept: application/vnd.github.v3+json" repos/${REPO_OWNER_NAME}/${REPO_NAME}/pulls --flat \ + | grep -c "${message}") || true + if [ "$COUNT" = "0" ]; then + hub pull-request -m "${message}" -l "kind/sync-fork-to-upstream" -b ${REPO_OWNER_NAME}/${REPO_NAME}:${REPO_BRANCH} -h ${REPO_OWNER_NAME}/${REPO_NAME}:${REPO_BRANCH_CI} + fi +else + echo "hub (https://github.com/github/hub) is not installed, so you'll need to create a PR manually." +fi diff --git a/openshift/tui-functions.sh b/openshift/tui-functions.sh new file mode 100644 index 000000000000..2b1368cc2886 --- /dev/null +++ b/openshift/tui-functions.sh @@ -0,0 +1,87 @@ +#!/usr/bin/env bash + +# Colors +COLOR_OFF='\033[0m' # Text Reset +RED='\033[0;31m' # Red +GREEN='\033[0;32m' # Green +YELLOW='\033[0;93m' # Yellow +COLOR="" # Points to current set color + +# Use the following functions to help printing your script output in a more user-friendly and readable +# format. If you group your script's logic into a set of logical stages, each executing a set of steps, +# then use the 'stage' function to print the main stage message, then the 'step' for each step message +# and step_error for each step error message. + +# Prints its argument within a box. +# It supports a maximum message of 120 characters. +# Will print in 60 ch box if the message fits. +function text_box() { + MSG=$* + MSG_SIZE=${#MSG} + [[ $MSG_SIZE -lt 60 ]] && WIDTH=60 || WIDTH=120 + printf "┌" + printf "─%.0s" $(seq 1 $WIDTH) + printf "┐" + printf "\n│ " + ((PADDING = ($WIDTH - $MSG_SIZE) - 1)) + printf "${COLOR}${MSG}${COLOR_OFF}" + printf " %.0s" $(seq 1 $PADDING) + printf "│\n" + printf "└" + printf "─%.0s" $(seq 1 $WIDTH) + printf "┘" + printf "\n" +} + +# Prints its argument indented as an indented text with a leeding bread crump indicator. +function box_sub_text() { + MSG=$* + printf "│─── " + printf "${COLOR}${MSG}${COLOR_OFF}" + printf "\n" +} + +# Prints a stage header message of max 120 ch in green. +function stage() { + COLOR=$GREEN + text_box "${*}..." +} + +# Prints a normal step message in green. +function step() { + COLOR=$GREEN + box_sub_text $* +} + +# Prints an error step message in red. +function step_error() { + COLOR=$RED + box_sub_text $* +} + +# Prints a warning step message in yellow. +function step_warn() { + MSG=$* + printf "${YELLOW}│─── " + printf "⚠️ ${MSG}${COLOR_OFF} ⚠️" + printf "\n" +} + +# Prints a stage warning header message of max 120 ch in yellow. +function stage_warn() { + MSG=$* + MSG_SIZE=${#MSG} + [[ $MSG_SIZE -lt 60 ]] && WIDTH=60 || WIDTH=120 + printf "${YELLOW}┌" + printf "─%.0s" $(seq 1 $WIDTH) + printf "┐" + printf "\n│ ${COLOR_OFF}" + ((PADDING = ($WIDTH - $MSG_SIZE) - 1)) + printf "${MSG}" + printf " %.0s" $(seq 1 $PADDING) + printf "${YELLOW}│\n" + printf "└" + printf "─%.0s" $(seq 1 $WIDTH) + printf "┘${COLOR_OFF}" + printf "\n" +} diff --git a/pkg/apis/serving/v1/revision_defaults.go b/pkg/apis/serving/v1/revision_defaults.go index 8acbf3446fd1..48c439b4adea 100644 --- a/pkg/apis/serving/v1/revision_defaults.go +++ b/pkg/apis/serving/v1/revision_defaults.go @@ -184,21 +184,14 @@ func (rs *RevisionSpec) defaultSecurityContext(psc *corev1.PodSecurityContext, c if updatedSC.AllowPrivilegeEscalation == nil { updatedSC.AllowPrivilegeEscalation = ptr.Bool(false) } - if psc.SeccompProfile == nil || psc.SeccompProfile.Type == "" { - if updatedSC.SeccompProfile == nil { - updatedSC.SeccompProfile = &corev1.SeccompProfile{} - } - if updatedSC.SeccompProfile.Type == "" { - updatedSC.SeccompProfile.Type = corev1.SeccompProfileTypeRuntimeDefault - } - } + if updatedSC.Capabilities == nil { updatedSC.Capabilities = &corev1.Capabilities{} updatedSC.Capabilities.Drop = []corev1.Capability{"ALL"} // Default in NET_BIND_SERVICE to allow binding to low-numbered ports. needsLowPort := false for _, p := range container.Ports { - if p.ContainerPort < 1024 { + if p.ContainerPort > 0 && p.ContainerPort < 1024 { needsLowPort = true break } @@ -207,7 +200,9 @@ func (rs *RevisionSpec) defaultSecurityContext(psc *corev1.PodSecurityContext, c updatedSC.Capabilities.Add = []corev1.Capability{"NET_BIND_SERVICE"} } } - + if psc.RunAsNonRoot == nil && updatedSC.RunAsNonRoot == nil { + updatedSC.RunAsNonRoot = ptr.Bool(true) + } if *updatedSC != (corev1.SecurityContext{}) { container.SecurityContext = updatedSC } diff --git a/pkg/apis/serving/v1/revision_defaults_test.go b/pkg/apis/serving/v1/revision_defaults_test.go index 332fecfb4d9d..401cac325fa9 100644 --- a/pkg/apis/serving/v1/revision_defaults_test.go +++ b/pkg/apis/serving/v1/revision_defaults_test.go @@ -901,9 +901,7 @@ func TestRevisionDefaulting(t *testing.T) { Resources: defaultResources, SecurityContext: &corev1.SecurityContext{ AllowPrivilegeEscalation: ptr.Bool(false), - SeccompProfile: &corev1.SeccompProfile{ - Type: corev1.SeccompProfileTypeRuntimeDefault, - }, + RunAsNonRoot: ptr.Bool(true), Capabilities: &corev1.Capabilities{ Drop: []corev1.Capability{"ALL"}, Add: []corev1.Capability{"NET_BIND_SERVICE"}, @@ -914,9 +912,7 @@ func TestRevisionDefaulting(t *testing.T) { Resources: defaultResources, SecurityContext: &corev1.SecurityContext{ AllowPrivilegeEscalation: ptr.Bool(false), - SeccompProfile: &corev1.SeccompProfile{ - Type: corev1.SeccompProfileTypeRuntimeDefault, - }, + RunAsNonRoot: ptr.Bool(true), Capabilities: &corev1.Capabilities{ Drop: []corev1.Capability{"ALL"}, }, @@ -926,9 +922,7 @@ func TestRevisionDefaulting(t *testing.T) { Resources: defaultResources, SecurityContext: &corev1.SecurityContext{ AllowPrivilegeEscalation: ptr.Bool(true), - SeccompProfile: &corev1.SeccompProfile{ - Type: corev1.SeccompProfileTypeRuntimeDefault, - }, + RunAsNonRoot: ptr.Bool(true), Capabilities: &corev1.Capabilities{ Add: []corev1.Capability{"NET_ADMIN"}, Drop: []corev1.Capability{}, @@ -943,6 +937,7 @@ func TestRevisionDefaulting(t *testing.T) { Type: corev1.SeccompProfileTypeLocalhost, LocalhostProfile: ptr.String("special"), }, + RunAsNonRoot: ptr.Bool(true), Capabilities: &corev1.Capabilities{ Add: []corev1.Capability{"NET_ADMIN"}, }, @@ -1001,6 +996,7 @@ func TestRevisionDefaulting(t *testing.T) { Resources: defaultResources, SecurityContext: &corev1.SecurityContext{ AllowPrivilegeEscalation: ptr.Bool(false), + RunAsNonRoot: ptr.Bool(true), Capabilities: &corev1.Capabilities{ Drop: []corev1.Capability{"ALL"}, }, @@ -1010,6 +1006,7 @@ func TestRevisionDefaulting(t *testing.T) { Name: "init", SecurityContext: &corev1.SecurityContext{ AllowPrivilegeEscalation: ptr.Bool(false), + RunAsNonRoot: ptr.Bool(true), Capabilities: &corev1.Capabilities{ Drop: []corev1.Capability{"ALL"}, }, diff --git a/test/e2e/grpc_test.go b/test/e2e/grpc_test.go index bd67d62ef026..404819ed4760 100644 --- a/test/e2e/grpc_test.go +++ b/test/e2e/grpc_test.go @@ -34,7 +34,6 @@ import ( "golang.org/x/sync/errgroup" "google.golang.org/grpc" - "google.golang.org/grpc/credentials" "google.golang.org/grpc/credentials/insecure" corev1 "k8s.io/api/core/v1" @@ -68,9 +67,6 @@ func hasPort(u string) bool { func dial(ctx *TestContext, host, domain string) (*grpc.ClientConn, error) { defaultPort := "80" - if test.ServingFlags.HTTPS { - defaultPort = "443" - } if !hasPort(host) { host = net.JoinHostPort(host, defaultPort) } @@ -83,12 +79,6 @@ func dial(ctx *TestContext, host, domain string) (*grpc.ClientConn, error) { } creds := insecure.NewCredentials() - if test.ServingFlags.HTTPS { - tlsConfig := test.TLSClientConfig(context.Background(), ctx.t.Logf, ctx.clients) - // Set ServerName for pseudo hostname with TLS. - tlsConfig.ServerName = domain - creds = credentials.NewTLS(tlsConfig) - } return grpc.Dial( host, @@ -321,11 +311,6 @@ func streamTest(tc *TestContext, host, domain string) { func testGRPC(t *testing.T, f grpcTest, fopts ...rtesting.ServiceOption) { t.Helper() - // TODO: https option with parallel leads to flakes. - // https://github.com/knative/serving/issues/11387 - if !test.ServingFlags.HTTPS { - t.Parallel() - } // Setup clients := Setup(t) @@ -366,16 +351,13 @@ func testGRPC(t *testing.T, f grpcTest, fopts ...rtesting.ServiceOption) { } host := url.Host - if !test.ServingFlags.ResolvableDomain { + if true { addr, mapper, err := ingress.GetIngressEndpoint(context.Background(), clients.KubeClient, pkgTest.Flags.IngressEndpoint) if err != nil { t.Fatal("Could not get service endpoint:", err) } - if test.ServingFlags.HTTPS { - host = net.JoinHostPort(addr, mapper("443")) - } else { - host = net.JoinHostPort(addr, mapper("80")) - } + + host = net.JoinHostPort(addr, mapper("80")) } f(&TestContext{ diff --git a/test/e2e/securedefaults/secure_pod_defaults_test.go b/test/e2e/securedefaults/secure_pod_defaults_test.go index af1498deede8..96e4839a91e6 100644 --- a/test/e2e/securedefaults/secure_pod_defaults_test.go +++ b/test/e2e/securedefaults/secure_pod_defaults_test.go @@ -60,9 +60,6 @@ func TestSecureDefaults(t *testing.T) { if revisionSC.AllowPrivilegeEscalation == nil || *revisionSC.AllowPrivilegeEscalation { t.Errorf("Expected allowPrivilegeEscalation: false, got %v", revisionSC.AllowPrivilegeEscalation) } - if revisionSC.SeccompProfile == nil || revisionSC.SeccompProfile.Type != v1.SeccompProfileTypeRuntimeDefault { - t.Errorf("Expected seccompProfile to be RuntimeDefault, got: %v", revisionSC.SeccompProfile) - } } func TestUnsafePermitted(t *testing.T) { diff --git a/vendor/knative.dev/pkg/controller/stats_reporter.go b/vendor/knative.dev/pkg/controller/stats_reporter.go index 6735285db478..67ec3d6a123f 100644 --- a/vendor/knative.dev/pkg/controller/stats_reporter.go +++ b/vendor/knative.dev/pkg/controller/stats_reporter.go @@ -199,7 +199,7 @@ func (r *reporter) ReportReconcile(duration time.Duration, success string, key t return err } - metrics.RecordBatch(ctx, reconcileCountStat.M(1), - reconcileLatencyStat.M(duration.Milliseconds())) + // TODO skonto: fix latency histograms + metrics.Record(ctx, reconcileCountStat.M(1)) return nil } diff --git a/vendor/knative.dev/pkg/test/helpers/name.go b/vendor/knative.dev/pkg/test/helpers/name.go index 0ceaed594304..fd55ec5b0a32 100644 --- a/vendor/knative.dev/pkg/test/helpers/name.go +++ b/vendor/knative.dev/pkg/test/helpers/name.go @@ -26,7 +26,7 @@ import ( const ( letterBytes = "abcdefghijklmnopqrstuvwxyz" randSuffixLen = 8 - nameLengthLimit = 50 + nameLengthLimit = 40 sep = '-' sepS = "-" testNamePrefix = "Test" diff --git a/vendor/knative.dev/pkg/test/spoof/openshift_checks.go b/vendor/knative.dev/pkg/test/spoof/openshift_checks.go new file mode 100644 index 000000000000..acaebe95bcf1 --- /dev/null +++ b/vendor/knative.dev/pkg/test/spoof/openshift_checks.go @@ -0,0 +1,40 @@ +package spoof + +import ( + "fmt" + "net/http" + "strings" +) + +// isUnknownAuthority checks if the error contains "certificate signed by unknown authority". +// This error happens when OpenShift Route starts/changes to use passthrough mode. It takes a little bit time to be synced. +func isUnknownAuthority(err error) bool { + return err != nil && strings.Contains(err.Error(), "certificate signed by unknown authority") +} + +// RetryingRouteInconsistency retries common requests seen when creating a new route +// - 503 to account for Openshift route inconsistency (https://jira.coreos.com/browse/SRVKS-157) +func RouteInconsistencyRetryChecker(resp *Response) (bool, error) { + if resp.StatusCode == http.StatusServiceUnavailable { + return true, fmt.Errorf("retrying route inconsistency request: %s", resp) + } + return false, nil +} + +// RouteInconsistencyMultiRetryChecker retries common requests seen when creating a new route +// - 503 to account for Openshift route inconsistency (https://jira.coreos.com/browse/SRVKS-157) +func RouteInconsistencyMultiRetryChecker() ResponseChecker { + const neededSuccesses = 32 + var successes int + return func(resp *Response) (bool, error) { + if resp.StatusCode == http.StatusServiceUnavailable { + successes = 0 + return true, fmt.Errorf("retrying route inconsistency request: %s", resp) + } + successes++ + if successes < neededSuccesses { + return true, fmt.Errorf("successful requests: %d, required: %d", successes, neededSuccesses) + } + return false, nil + } +} diff --git a/vendor/knative.dev/pkg/test/spoof/spoof.go b/vendor/knative.dev/pkg/test/spoof/spoof.go index 319e2ead86f3..c9a66749b020 100644 --- a/vendor/knative.dev/pkg/test/spoof/spoof.go +++ b/vendor/knative.dev/pkg/test/spoof/spoof.go @@ -163,7 +163,7 @@ func (sc *SpoofingClient) Do(req *http.Request, errorRetryCheckers ...interface{ // If no retry checkers are specified `DefaultErrorRetryChecker` will be used. func (sc *SpoofingClient) Poll(req *http.Request, inState ResponseChecker, checkers ...interface{}) (*Response, error) { if len(checkers) == 0 { - checkers = []interface{}{ErrorRetryChecker(DefaultErrorRetryChecker), ResponseRetryChecker(DefaultResponseRetryChecker)} + checkers = []interface{}{ErrorRetryChecker(DefaultErrorRetryChecker), ResponseRetryChecker(DefaultResponseRetryChecker), ResponseRetryChecker(RouteInconsistencyRetryChecker)} } var resp *Response @@ -251,6 +251,9 @@ func DefaultErrorRetryChecker(err error) (bool, error) { if isNoRouteToHostError(err) { return true, fmt.Errorf("retrying for 'no route to host' error: %w", err) } + if isUnknownAuthority(err) { + return true, fmt.Errorf("retrying for certificate signed by unknown authority: %w", err) + } return false, err } @@ -327,6 +330,9 @@ func (sc *SpoofingClient) endpointState( } func (sc *SpoofingClient) Check(req *http.Request, inState ResponseChecker, checkers ...interface{}) (*Response, error) { + if len(checkers) == 0 { + checkers = []interface{}{ErrorRetryChecker(DefaultErrorRetryChecker), ResponseRetryChecker(DefaultResponseRetryChecker), ResponseRetryChecker(RouteInconsistencyMultiRetryChecker())} + } resp, err := sc.Do(req, checkers...) if err != nil { return nil, err diff --git a/vendor/knative.dev/pkg/webhook/stats_reporter.go b/vendor/knative.dev/pkg/webhook/stats_reporter.go index 1fe30e8af16d..e0115024ca69 100644 --- a/vendor/knative.dev/pkg/webhook/stats_reporter.go +++ b/vendor/knative.dev/pkg/webhook/stats_reporter.go @@ -106,9 +106,8 @@ func (r *reporter) ReportAdmissionRequest(req *admissionv1.AdmissionRequest, res return err } - metrics.RecordBatch(ctx, requestCountM.M(1), - // Convert time.Duration in nanoseconds to milliseconds - responseTimeInMsecM.M(float64(d.Milliseconds()))) + // TODO skonto: fix latency histograms + metrics.Record(ctx, requestCountM.M(1)) return nil } From 7632cb2bbe3f935566e7efe3bd5a6bc76e993a43 Mon Sep 17 00:00:00 2001 From: Serverless QE Robot Date: Sun, 13 Aug 2023 20:36:32 -0400 Subject: [PATCH 3/6] :open_file_folder: Update openshift specific files. --- .../knative-images/activator/Dockerfile | 12 + .../knative-images/autoscaler-hpa/Dockerfile | 12 + .../knative-images/autoscaler/Dockerfile | 12 + .../knative-images/controller/Dockerfile | 12 + .../knative-images/migrate/Dockerfile | 11 + .../knative-images/queue/Dockerfile | 12 + .../knative-images/webhook/Dockerfile | 12 + .../knative-test-images/autoscale/Dockerfile | 11 + .../knative-test-images/failing/Dockerfile | 11 + .../knative-test-images/grpc-ping/Dockerfile | 11 + .../knative-test-images/hellohttp2/Dockerfile | 11 + .../hellovolume/Dockerfile | 11 + .../knative-test-images/helloworld/Dockerfile | 11 + .../knative-test-images/httpproxy/Dockerfile | 11 + .../pizzaplanetv1/Dockerfile | 11 + .../pizzaplanetv2/Dockerfile | 11 + .../knative-test-images/readiness/Dockerfile | 11 + .../knative-test-images/runtime/Dockerfile | 11 + .../servingcontainer/Dockerfile | 11 + .../sidecarcontainer/Dockerfile | 11 + .../singlethreaded/Dockerfile | 11 + .../knative-test-images/timeout/Dockerfile | 11 + .../knative-test-images/volumes/Dockerfile | 11 + .../knative-test-images/wsserver/Dockerfile | 11 + openshift/release/artifacts/serving-core.yaml | 7005 +++++++++++++++++ openshift/release/artifacts/serving-crds.yaml | 4295 ++++++++++ openshift/release/artifacts/serving-hpa.yaml | 133 + .../artifacts/serving-post-install-jobs.yaml | 67 + 28 files changed, 11770 insertions(+) create mode 100644 openshift/ci-operator/knative-images/activator/Dockerfile create mode 100644 openshift/ci-operator/knative-images/autoscaler-hpa/Dockerfile create mode 100644 openshift/ci-operator/knative-images/autoscaler/Dockerfile create mode 100644 openshift/ci-operator/knative-images/controller/Dockerfile create mode 100644 openshift/ci-operator/knative-images/migrate/Dockerfile create mode 100644 openshift/ci-operator/knative-images/queue/Dockerfile create mode 100644 openshift/ci-operator/knative-images/webhook/Dockerfile create mode 100644 openshift/ci-operator/knative-test-images/autoscale/Dockerfile create mode 100644 openshift/ci-operator/knative-test-images/failing/Dockerfile create mode 100644 openshift/ci-operator/knative-test-images/grpc-ping/Dockerfile create mode 100644 openshift/ci-operator/knative-test-images/hellohttp2/Dockerfile create mode 100644 openshift/ci-operator/knative-test-images/hellovolume/Dockerfile create mode 100644 openshift/ci-operator/knative-test-images/helloworld/Dockerfile create mode 100644 openshift/ci-operator/knative-test-images/httpproxy/Dockerfile create mode 100644 openshift/ci-operator/knative-test-images/pizzaplanetv1/Dockerfile create mode 100644 openshift/ci-operator/knative-test-images/pizzaplanetv2/Dockerfile create mode 100644 openshift/ci-operator/knative-test-images/readiness/Dockerfile create mode 100644 openshift/ci-operator/knative-test-images/runtime/Dockerfile create mode 100644 openshift/ci-operator/knative-test-images/servingcontainer/Dockerfile create mode 100644 openshift/ci-operator/knative-test-images/sidecarcontainer/Dockerfile create mode 100644 openshift/ci-operator/knative-test-images/singlethreaded/Dockerfile create mode 100644 openshift/ci-operator/knative-test-images/timeout/Dockerfile create mode 100644 openshift/ci-operator/knative-test-images/volumes/Dockerfile create mode 100644 openshift/ci-operator/knative-test-images/wsserver/Dockerfile create mode 100644 openshift/release/artifacts/serving-core.yaml create mode 100644 openshift/release/artifacts/serving-crds.yaml create mode 100644 openshift/release/artifacts/serving-hpa.yaml create mode 100644 openshift/release/artifacts/serving-post-install-jobs.yaml diff --git a/openshift/ci-operator/knative-images/activator/Dockerfile b/openshift/ci-operator/knative-images/activator/Dockerfile new file mode 100644 index 000000000000..c8bc07e8c4ff --- /dev/null +++ b/openshift/ci-operator/knative-images/activator/Dockerfile @@ -0,0 +1,12 @@ +# Do not edit! This file was generated via Makefile +FROM registry.ci.openshift.org/openshift/release:golang-1.19 as builder + +COPY . . +RUN make install test-install + +FROM openshift/origin-base +USER 65532 + +COPY ./cmd/activator/kodata /var/run/ko +COPY --from=builder /go/bin/activator /ko-app/activator +ENTRYPOINT ["/ko-app/activator"] diff --git a/openshift/ci-operator/knative-images/autoscaler-hpa/Dockerfile b/openshift/ci-operator/knative-images/autoscaler-hpa/Dockerfile new file mode 100644 index 000000000000..ac0866d15e32 --- /dev/null +++ b/openshift/ci-operator/knative-images/autoscaler-hpa/Dockerfile @@ -0,0 +1,12 @@ +# Do not edit! This file was generated via Makefile +FROM registry.ci.openshift.org/openshift/release:golang-1.19 as builder + +COPY . . +RUN make install test-install + +FROM openshift/origin-base +USER 65532 + +COPY ./cmd/autoscaler-hpa/kodata /var/run/ko +COPY --from=builder /go/bin/autoscaler-hpa /ko-app/autoscaler-hpa +ENTRYPOINT ["/ko-app/autoscaler-hpa"] diff --git a/openshift/ci-operator/knative-images/autoscaler/Dockerfile b/openshift/ci-operator/knative-images/autoscaler/Dockerfile new file mode 100644 index 000000000000..62a8a1712ccf --- /dev/null +++ b/openshift/ci-operator/knative-images/autoscaler/Dockerfile @@ -0,0 +1,12 @@ +# Do not edit! This file was generated via Makefile +FROM registry.ci.openshift.org/openshift/release:golang-1.19 as builder + +COPY . . +RUN make install test-install + +FROM openshift/origin-base +USER 65532 + +COPY ./cmd/autoscaler/kodata /var/run/ko +COPY --from=builder /go/bin/autoscaler /ko-app/autoscaler +ENTRYPOINT ["/ko-app/autoscaler"] diff --git a/openshift/ci-operator/knative-images/controller/Dockerfile b/openshift/ci-operator/knative-images/controller/Dockerfile new file mode 100644 index 000000000000..e78c8ad377b1 --- /dev/null +++ b/openshift/ci-operator/knative-images/controller/Dockerfile @@ -0,0 +1,12 @@ +# Do not edit! This file was generated via Makefile +FROM registry.ci.openshift.org/openshift/release:golang-1.19 as builder + +COPY . . +RUN make install test-install + +FROM openshift/origin-base +USER 65532 + +COPY ./cmd/controller/kodata /var/run/ko +COPY --from=builder /go/bin/controller /ko-app/controller +ENTRYPOINT ["/ko-app/controller"] diff --git a/openshift/ci-operator/knative-images/migrate/Dockerfile b/openshift/ci-operator/knative-images/migrate/Dockerfile new file mode 100644 index 000000000000..c009386b05ba --- /dev/null +++ b/openshift/ci-operator/knative-images/migrate/Dockerfile @@ -0,0 +1,11 @@ +# Do not edit! This file was generated via Makefile +FROM registry.ci.openshift.org/openshift/release:golang-1.19 as builder + +COPY . . +RUN make install test-install + +FROM openshift/origin-base +USER 65532 + +COPY --from=builder /go/bin/migrate /ko-app/migrate +ENTRYPOINT ["/ko-app/migrate"] diff --git a/openshift/ci-operator/knative-images/queue/Dockerfile b/openshift/ci-operator/knative-images/queue/Dockerfile new file mode 100644 index 000000000000..aaf7b287106d --- /dev/null +++ b/openshift/ci-operator/knative-images/queue/Dockerfile @@ -0,0 +1,12 @@ +# Do not edit! This file was generated via Makefile +FROM registry.ci.openshift.org/openshift/release:golang-1.19 as builder + +COPY . . +RUN make install test-install + +FROM openshift/origin-base +USER 65532 + +COPY ./cmd/queue/kodata /var/run/ko +COPY --from=builder /go/bin/queue /ko-app/queue +ENTRYPOINT ["/ko-app/queue"] diff --git a/openshift/ci-operator/knative-images/webhook/Dockerfile b/openshift/ci-operator/knative-images/webhook/Dockerfile new file mode 100644 index 000000000000..91c9e6733198 --- /dev/null +++ b/openshift/ci-operator/knative-images/webhook/Dockerfile @@ -0,0 +1,12 @@ +# Do not edit! This file was generated via Makefile +FROM registry.ci.openshift.org/openshift/release:golang-1.19 as builder + +COPY . . +RUN make install test-install + +FROM openshift/origin-base +USER 65532 + +COPY ./cmd/webhook/kodata /var/run/ko +COPY --from=builder /go/bin/webhook /ko-app/webhook +ENTRYPOINT ["/ko-app/webhook"] diff --git a/openshift/ci-operator/knative-test-images/autoscale/Dockerfile b/openshift/ci-operator/knative-test-images/autoscale/Dockerfile new file mode 100644 index 000000000000..0433013da7cf --- /dev/null +++ b/openshift/ci-operator/knative-test-images/autoscale/Dockerfile @@ -0,0 +1,11 @@ +# Do not edit! This file was generated via Makefile +FROM registry.ci.openshift.org/openshift/release:golang-1.19 as builder + +COPY . . +RUN make install test-install + +FROM openshift/origin-base +USER 65532 + +COPY --from=builder /go/bin/autoscale /ko-app/autoscale +ENTRYPOINT ["/ko-app/autoscale"] diff --git a/openshift/ci-operator/knative-test-images/failing/Dockerfile b/openshift/ci-operator/knative-test-images/failing/Dockerfile new file mode 100644 index 000000000000..3b605ef0a434 --- /dev/null +++ b/openshift/ci-operator/knative-test-images/failing/Dockerfile @@ -0,0 +1,11 @@ +# Do not edit! This file was generated via Makefile +FROM registry.ci.openshift.org/openshift/release:golang-1.19 as builder + +COPY . . +RUN make install test-install + +FROM openshift/origin-base +USER 65532 + +COPY --from=builder /go/bin/failing /ko-app/failing +ENTRYPOINT ["/ko-app/failing"] diff --git a/openshift/ci-operator/knative-test-images/grpc-ping/Dockerfile b/openshift/ci-operator/knative-test-images/grpc-ping/Dockerfile new file mode 100644 index 000000000000..878fbda3f78f --- /dev/null +++ b/openshift/ci-operator/knative-test-images/grpc-ping/Dockerfile @@ -0,0 +1,11 @@ +# Do not edit! This file was generated via Makefile +FROM registry.ci.openshift.org/openshift/release:golang-1.19 as builder + +COPY . . +RUN make install test-install + +FROM openshift/origin-base +USER 65532 + +COPY --from=builder /go/bin/grpc-ping /ko-app/grpc-ping +ENTRYPOINT ["/ko-app/grpc-ping"] diff --git a/openshift/ci-operator/knative-test-images/hellohttp2/Dockerfile b/openshift/ci-operator/knative-test-images/hellohttp2/Dockerfile new file mode 100644 index 000000000000..a54581d09783 --- /dev/null +++ b/openshift/ci-operator/knative-test-images/hellohttp2/Dockerfile @@ -0,0 +1,11 @@ +# Do not edit! This file was generated via Makefile +FROM registry.ci.openshift.org/openshift/release:golang-1.19 as builder + +COPY . . +RUN make install test-install + +FROM openshift/origin-base +USER 65532 + +COPY --from=builder /go/bin/hellohttp2 /ko-app/hellohttp2 +ENTRYPOINT ["/ko-app/hellohttp2"] diff --git a/openshift/ci-operator/knative-test-images/hellovolume/Dockerfile b/openshift/ci-operator/knative-test-images/hellovolume/Dockerfile new file mode 100644 index 000000000000..14177d2b2635 --- /dev/null +++ b/openshift/ci-operator/knative-test-images/hellovolume/Dockerfile @@ -0,0 +1,11 @@ +# Do not edit! This file was generated via Makefile +FROM registry.ci.openshift.org/openshift/release:golang-1.19 as builder + +COPY . . +RUN make install test-install + +FROM openshift/origin-base +USER 65532 + +COPY --from=builder /go/bin/hellovolume /ko-app/hellovolume +ENTRYPOINT ["/ko-app/hellovolume"] diff --git a/openshift/ci-operator/knative-test-images/helloworld/Dockerfile b/openshift/ci-operator/knative-test-images/helloworld/Dockerfile new file mode 100644 index 000000000000..72ff05cf0dc4 --- /dev/null +++ b/openshift/ci-operator/knative-test-images/helloworld/Dockerfile @@ -0,0 +1,11 @@ +# Do not edit! This file was generated via Makefile +FROM registry.ci.openshift.org/openshift/release:golang-1.19 as builder + +COPY . . +RUN make install test-install + +FROM openshift/origin-base +USER 65532 + +COPY --from=builder /go/bin/helloworld /ko-app/helloworld +ENTRYPOINT ["/ko-app/helloworld"] diff --git a/openshift/ci-operator/knative-test-images/httpproxy/Dockerfile b/openshift/ci-operator/knative-test-images/httpproxy/Dockerfile new file mode 100644 index 000000000000..dda962c5efea --- /dev/null +++ b/openshift/ci-operator/knative-test-images/httpproxy/Dockerfile @@ -0,0 +1,11 @@ +# Do not edit! This file was generated via Makefile +FROM registry.ci.openshift.org/openshift/release:golang-1.19 as builder + +COPY . . +RUN make install test-install + +FROM openshift/origin-base +USER 65532 + +COPY --from=builder /go/bin/httpproxy /ko-app/httpproxy +ENTRYPOINT ["/ko-app/httpproxy"] diff --git a/openshift/ci-operator/knative-test-images/pizzaplanetv1/Dockerfile b/openshift/ci-operator/knative-test-images/pizzaplanetv1/Dockerfile new file mode 100644 index 000000000000..38ec758141a4 --- /dev/null +++ b/openshift/ci-operator/knative-test-images/pizzaplanetv1/Dockerfile @@ -0,0 +1,11 @@ +# Do not edit! This file was generated via Makefile +FROM registry.ci.openshift.org/openshift/release:golang-1.19 as builder + +COPY . . +RUN make install test-install + +FROM openshift/origin-base +USER 65532 + +COPY --from=builder /go/bin/pizzaplanetv1 /ko-app/pizzaplanetv1 +ENTRYPOINT ["/ko-app/pizzaplanetv1"] diff --git a/openshift/ci-operator/knative-test-images/pizzaplanetv2/Dockerfile b/openshift/ci-operator/knative-test-images/pizzaplanetv2/Dockerfile new file mode 100644 index 000000000000..6532232468f2 --- /dev/null +++ b/openshift/ci-operator/knative-test-images/pizzaplanetv2/Dockerfile @@ -0,0 +1,11 @@ +# Do not edit! This file was generated via Makefile +FROM registry.ci.openshift.org/openshift/release:golang-1.19 as builder + +COPY . . +RUN make install test-install + +FROM openshift/origin-base +USER 65532 + +COPY --from=builder /go/bin/pizzaplanetv2 /ko-app/pizzaplanetv2 +ENTRYPOINT ["/ko-app/pizzaplanetv2"] diff --git a/openshift/ci-operator/knative-test-images/readiness/Dockerfile b/openshift/ci-operator/knative-test-images/readiness/Dockerfile new file mode 100644 index 000000000000..a45c427ea6c7 --- /dev/null +++ b/openshift/ci-operator/knative-test-images/readiness/Dockerfile @@ -0,0 +1,11 @@ +# Do not edit! This file was generated via Makefile +FROM registry.ci.openshift.org/openshift/release:golang-1.19 as builder + +COPY . . +RUN make install test-install + +FROM openshift/origin-base +USER 65532 + +COPY --from=builder /go/bin/readiness /ko-app/readiness +ENTRYPOINT ["/ko-app/readiness"] diff --git a/openshift/ci-operator/knative-test-images/runtime/Dockerfile b/openshift/ci-operator/knative-test-images/runtime/Dockerfile new file mode 100644 index 000000000000..ff2c7e201652 --- /dev/null +++ b/openshift/ci-operator/knative-test-images/runtime/Dockerfile @@ -0,0 +1,11 @@ +# Do not edit! This file was generated via Makefile +FROM registry.ci.openshift.org/openshift/release:golang-1.19 as builder + +COPY . . +RUN make install test-install + +FROM openshift/origin-base +USER 65532 + +COPY --from=builder /go/bin/runtime /ko-app/runtime +ENTRYPOINT ["/ko-app/runtime"] diff --git a/openshift/ci-operator/knative-test-images/servingcontainer/Dockerfile b/openshift/ci-operator/knative-test-images/servingcontainer/Dockerfile new file mode 100644 index 000000000000..986e0acee788 --- /dev/null +++ b/openshift/ci-operator/knative-test-images/servingcontainer/Dockerfile @@ -0,0 +1,11 @@ +# Do not edit! This file was generated via Makefile +FROM registry.ci.openshift.org/openshift/release:golang-1.19 as builder + +COPY . . +RUN make install test-install + +FROM openshift/origin-base +USER 65532 + +COPY --from=builder /go/bin/servingcontainer /ko-app/servingcontainer +ENTRYPOINT ["/ko-app/servingcontainer"] diff --git a/openshift/ci-operator/knative-test-images/sidecarcontainer/Dockerfile b/openshift/ci-operator/knative-test-images/sidecarcontainer/Dockerfile new file mode 100644 index 000000000000..971e476d58e0 --- /dev/null +++ b/openshift/ci-operator/knative-test-images/sidecarcontainer/Dockerfile @@ -0,0 +1,11 @@ +# Do not edit! This file was generated via Makefile +FROM registry.ci.openshift.org/openshift/release:golang-1.19 as builder + +COPY . . +RUN make install test-install + +FROM openshift/origin-base +USER 65532 + +COPY --from=builder /go/bin/sidecarcontainer /ko-app/sidecarcontainer +ENTRYPOINT ["/ko-app/sidecarcontainer"] diff --git a/openshift/ci-operator/knative-test-images/singlethreaded/Dockerfile b/openshift/ci-operator/knative-test-images/singlethreaded/Dockerfile new file mode 100644 index 000000000000..d3ffe34c6e56 --- /dev/null +++ b/openshift/ci-operator/knative-test-images/singlethreaded/Dockerfile @@ -0,0 +1,11 @@ +# Do not edit! This file was generated via Makefile +FROM registry.ci.openshift.org/openshift/release:golang-1.19 as builder + +COPY . . +RUN make install test-install + +FROM openshift/origin-base +USER 65532 + +COPY --from=builder /go/bin/singlethreaded /ko-app/singlethreaded +ENTRYPOINT ["/ko-app/singlethreaded"] diff --git a/openshift/ci-operator/knative-test-images/timeout/Dockerfile b/openshift/ci-operator/knative-test-images/timeout/Dockerfile new file mode 100644 index 000000000000..98e3a7873e93 --- /dev/null +++ b/openshift/ci-operator/knative-test-images/timeout/Dockerfile @@ -0,0 +1,11 @@ +# Do not edit! This file was generated via Makefile +FROM registry.ci.openshift.org/openshift/release:golang-1.19 as builder + +COPY . . +RUN make install test-install + +FROM openshift/origin-base +USER 65532 + +COPY --from=builder /go/bin/timeout /ko-app/timeout +ENTRYPOINT ["/ko-app/timeout"] diff --git a/openshift/ci-operator/knative-test-images/volumes/Dockerfile b/openshift/ci-operator/knative-test-images/volumes/Dockerfile new file mode 100644 index 000000000000..bf743756c7e3 --- /dev/null +++ b/openshift/ci-operator/knative-test-images/volumes/Dockerfile @@ -0,0 +1,11 @@ +# Do not edit! This file was generated via Makefile +FROM registry.ci.openshift.org/openshift/release:golang-1.19 as builder + +COPY . . +RUN make install test-install + +FROM openshift/origin-base +USER 65532 + +COPY --from=builder /go/bin/volumes /ko-app/volumes +ENTRYPOINT ["/ko-app/volumes"] diff --git a/openshift/ci-operator/knative-test-images/wsserver/Dockerfile b/openshift/ci-operator/knative-test-images/wsserver/Dockerfile new file mode 100644 index 000000000000..3c1551548ab5 --- /dev/null +++ b/openshift/ci-operator/knative-test-images/wsserver/Dockerfile @@ -0,0 +1,11 @@ +# Do not edit! This file was generated via Makefile +FROM registry.ci.openshift.org/openshift/release:golang-1.19 as builder + +COPY . . +RUN make install test-install + +FROM openshift/origin-base +USER 65532 + +COPY --from=builder /go/bin/wsserver /ko-app/wsserver +ENTRYPOINT ["/ko-app/wsserver"] diff --git a/openshift/release/artifacts/serving-core.yaml b/openshift/release/artifacts/serving-core.yaml new file mode 100644 index 000000000000..69b5bf1ee179 --- /dev/null +++ b/openshift/release/artifacts/serving-core.yaml @@ -0,0 +1,7005 @@ +--- +# Copyright 2023 The Knative Authors +# +# 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 +# +# https://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. + +kind: Role +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: knative-serving-activator + namespace: knative-serving + labels: + serving.knative.dev/controller: "true" + app.kubernetes.io/version: "release-v1.2" + app.kubernetes.io/name: knative-serving +rules: + - apiGroups: [""] + resources: ["configmaps", "secrets"] + verbs: ["get", "list", "watch"] + - apiGroups: [""] + resources: ["secrets"] + verbs: ["get", "list", "watch"] + resourceNames: ["routing-serving-certs", "knative-serving-certs"] +--- +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: knative-serving-activator-cluster + labels: + serving.knative.dev/controller: "true" + app.kubernetes.io/version: "release-v1.2" + app.kubernetes.io/name: knative-serving +rules: + - apiGroups: [""] + resources: ["services", "endpoints"] + verbs: ["get", "list", "watch"] + - apiGroups: ["serving.knative.dev"] + resources: ["revisions"] + verbs: ["get", "list", "watch"] +--- +# Copyright 2019 The Knative Authors +# +# 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 +# +# https://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. + +# Use this aggregated ClusterRole when you need readonly access to "Addressables" +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + # Named like this to avoid clashing with eventing's existing `addressable-resolver` role + # (which should be identical, but isn't guaranteed to be installed alongside serving). + name: knative-serving-aggregated-addressable-resolver + labels: + app.kubernetes.io/version: "release-v1.2" + app.kubernetes.io/name: knative-serving +aggregationRule: + clusterRoleSelectors: + - matchLabels: + duck.knative.dev/addressable: "true" +--- +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: knative-serving-addressable-resolver + labels: + app.kubernetes.io/version: "release-v1.2" + app.kubernetes.io/name: knative-serving + # Labeled to facilitate aggregated cluster roles that act on Addressables. + duck.knative.dev/addressable: "true" + +# Do not use this role directly. These rules will be added to the "addressable-resolver" role. +rules: +- apiGroups: + - serving.knative.dev + resources: + - routes + - routes/status + - services + - services/status + verbs: + - get + - list + - watch +--- +# Copyright 2019 The Knative Authors +# +# 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 +# +# https://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. + +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: knative-serving-namespaced-admin + labels: + rbac.authorization.k8s.io/aggregate-to-admin: "true" + app.kubernetes.io/version: "release-v1.2" + app.kubernetes.io/name: knative-serving +rules: + - apiGroups: ["serving.knative.dev"] + resources: ["*"] + verbs: ["*"] + - apiGroups: ["networking.internal.knative.dev", "autoscaling.internal.knative.dev", "caching.internal.knative.dev"] + resources: ["*"] + verbs: ["get", "list", "watch"] +--- +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: knative-serving-namespaced-edit + labels: + rbac.authorization.k8s.io/aggregate-to-edit: "true" + app.kubernetes.io/version: "release-v1.2" + app.kubernetes.io/name: knative-serving +rules: + - apiGroups: ["serving.knative.dev"] + resources: ["*"] + verbs: ["create", "update", "patch", "delete"] + - apiGroups: ["networking.internal.knative.dev", "autoscaling.internal.knative.dev", "caching.internal.knative.dev"] + resources: ["*"] + verbs: ["get", "list", "watch"] +--- +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: knative-serving-namespaced-view + labels: + rbac.authorization.k8s.io/aggregate-to-view: "true" + app.kubernetes.io/version: "release-v1.2" + app.kubernetes.io/name: knative-serving +rules: + - apiGroups: ["serving.knative.dev", "networking.internal.knative.dev", "autoscaling.internal.knative.dev", "caching.internal.knative.dev"] + resources: ["*"] + verbs: ["get", "list", "watch"] +--- +# Copyright 2019 The Knative Authors +# +# 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 +# +# https://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. + +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: knative-serving-core + labels: + serving.knative.dev/controller: "true" + app.kubernetes.io/version: "release-v1.2" + app.kubernetes.io/name: knative-serving +rules: + - apiGroups: [""] + resources: ["pods", "namespaces", "secrets", "configmaps", "endpoints", "services", "events", "serviceaccounts"] + verbs: ["get", "list", "create", "update", "delete", "patch", "watch"] + - apiGroups: [""] + resources: ["endpoints/restricted"] # Permission for RestrictedEndpointsAdmission + verbs: ["create"] + - apiGroups: [""] + resources: ["namespaces/finalizers"] # finalizers are needed for the owner reference of the webhook + verbs: ["update"] + - apiGroups: ["apps"] + resources: ["deployments", "deployments/finalizers"] # finalizers are needed for the owner reference of the webhook + verbs: ["get", "list", "create", "update", "delete", "patch", "watch"] + - apiGroups: ["admissionregistration.k8s.io"] + resources: ["mutatingwebhookconfigurations", "validatingwebhookconfigurations"] + verbs: ["get", "list", "create", "update", "delete", "patch", "watch"] + - apiGroups: ["apiextensions.k8s.io"] + resources: ["customresourcedefinitions", "customresourcedefinitions/status"] + verbs: ["get", "list", "create", "update", "delete", "patch", "watch"] + - apiGroups: ["autoscaling"] + resources: ["horizontalpodautoscalers"] + verbs: ["get", "list", "create", "update", "delete", "patch", "watch"] + - apiGroups: ["coordination.k8s.io"] + resources: ["leases"] + verbs: ["get", "list", "create", "update", "delete", "patch", "watch"] + - apiGroups: ["serving.knative.dev", "autoscaling.internal.knative.dev", "networking.internal.knative.dev"] + resources: ["*", "*/status", "*/finalizers"] + verbs: ["get", "list", "create", "update", "delete", "deletecollection", "patch", "watch"] + - apiGroups: ["caching.internal.knative.dev"] + resources: ["images"] + verbs: ["get", "list", "create", "update", "delete", "patch", "watch"] +--- +# Extra role for downstream, so that users can get the autoscaling CM to fetch defaults. +kind: Role +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + namespace: knative-serving + name: openshift-serverless-view-serving-configmaps +rules: + - apiGroups: [""] + resources: ["configmaps"] + resourceNames: ["config-autoscaler"] + verbs: ["get", "list", "watch"] +--- +kind: RoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: openshift-serverless-view-serving-configmaps + namespace: knative-serving +subjects: + - kind: Group + name: system:authenticated + apiGroup: rbac.authorization.k8s.io +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: openshift-serverless-view-serving-configmaps +--- +# Copyright 2019 The Knative Authors +# +# 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 +# +# https://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. + +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: knative-serving-podspecable-binding + labels: + app.kubernetes.io/version: "release-v1.2" + app.kubernetes.io/name: knative-serving + # Labeled to facilitate aggregated cluster roles that act on PodSpecables. + duck.knative.dev/podspecable: "true" + +# Do not use this role directly. These rules will be added to the "podspecable-binder" role. +rules: +- apiGroups: + - serving.knative.dev + resources: + - configurations + - services + verbs: + - list + - watch + - patch +--- +# Copyright 2018 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: v1 +kind: ServiceAccount +metadata: + name: controller + namespace: knative-serving + labels: + app.kubernetes.io/component: controller + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" +--- +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: knative-serving-admin + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" +aggregationRule: + clusterRoleSelectors: + - matchLabels: + serving.knative.dev/controller: "true" +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: knative-serving-controller-admin + labels: + app.kubernetes.io/component: controller + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" +subjects: + - kind: ServiceAccount + name: controller + namespace: knative-serving +roleRef: + kind: ClusterRole + name: knative-serving-admin + apiGroup: rbac.authorization.k8s.io +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: knative-serving-controller-addressable-resolver + labels: + app.kubernetes.io/component: controller + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" +subjects: + - kind: ServiceAccount + name: controller + namespace: knative-serving +roleRef: + kind: ClusterRole + name: knative-serving-aggregated-addressable-resolver + apiGroup: rbac.authorization.k8s.io +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: activator + namespace: knative-serving + labels: + app.kubernetes.io/component: activator + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: knative-serving-activator + namespace: knative-serving + labels: + app.kubernetes.io/component: activator + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" +subjects: + - kind: ServiceAccount + name: activator + namespace: knative-serving +roleRef: + kind: Role + name: knative-serving-activator + apiGroup: rbac.authorization.k8s.io +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: knative-serving-activator-cluster + labels: + app.kubernetes.io/component: activator + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" +subjects: + - kind: ServiceAccount + name: activator + namespace: knative-serving +roleRef: + kind: ClusterRole + name: knative-serving-activator-cluster + apiGroup: rbac.authorization.k8s.io +--- +# Copyright 2018 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: images.caching.internal.knative.dev + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" + knative.dev/crd-install: "true" +spec: + group: caching.internal.knative.dev + names: + kind: Image + plural: images + singular: image + categories: + - knative-internal + - caching + scope: Namespaced + versions: + - name: v1alpha1 + served: true + storage: true + subresources: + status: {} + schema: + openAPIV3Schema: + description: Image is a Knative abstraction that encapsulates the interface by which Knative components express a desire to have a particular image cached. + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: Spec holds the desired state of the Image (from the client). + type: object + required: + - image + properties: + image: + description: Image is the name of the container image url to cache across the cluster. + type: string + imagePullSecrets: + description: ImagePullSecrets contains the names of the Kubernetes Secrets containing login information used by the Pods which will run this container. + type: array + items: + description: LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace. + type: object + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + x-kubernetes-map-type: atomic + serviceAccountName: + description: 'ServiceAccountName is the name of the Kubernetes ServiceAccount as which the Pods will run this container. This is potentially used to authenticate the image pull if the service account has attached pull secrets. For more information: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/#add-imagepullsecrets-to-a-service-account' + type: string + status: + description: Status communicates the observed state of the Image (from the controller). + type: object + properties: + annotations: + description: Annotations is additional Status fields for the Resource to save some additional State as well as convey more information to the user. This is roughly akin to Annotations on any k8s resource, just the reconciler conveying richer information outwards. + type: object + additionalProperties: + type: string + conditions: + description: Conditions the latest available observations of a resource's current state. + type: array + items: + description: 'Condition defines a readiness condition for a Knative resource. See: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties' + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the last time the condition transitioned from one status to another. We use VolatileTime in place of metav1.Time to exclude this from creating equality.Semantic differences (all other things held constant). + type: string + message: + description: A human readable message indicating details about the transition. + type: string + reason: + description: The reason for the condition's last transition. + type: string + severity: + description: Severity with which to treat failures of this type of condition. When this is not specified, it defaults to Error. + type: string + status: + description: Status of the condition, one of True, False, Unknown. + type: string + type: + description: Type of condition. + type: string + observedGeneration: + description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. + type: integer + format: int64 + additionalPrinterColumns: + - name: Image + type: string + jsonPath: .spec.image +--- +# Copyright 2020 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: certificates.networking.internal.knative.dev + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/component: networking + app.kubernetes.io/version: "release-v1.2" + knative.dev/crd-install: "true" +spec: + group: networking.internal.knative.dev + versions: + - name: v1alpha1 + served: true + storage: true + subresources: + status: {} + schema: + openAPIV3Schema: + description: Certificate is responsible for provisioning a SSL certificate for the given hosts. It is a Knative abstraction for various SSL certificate provisioning solutions (such as cert-manager or self-signed SSL certificate). + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: 'Spec is the desired state of the Certificate. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' + type: object + required: + - dnsNames + - secretName + properties: + dnsNames: + description: DNSNames is a list of DNS names the Certificate could support. The wildcard format of DNSNames (e.g. *.default.example.com) is supported. + type: array + items: + type: string + domain: + description: Domain is the top level domain of the values for DNSNames. + type: string + secretName: + description: SecretName is the name of the secret resource to store the SSL certificate in. + type: string + status: + description: 'Status is the current state of the Certificate. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' + type: object + properties: + annotations: + description: Annotations is additional Status fields for the Resource to save some additional State as well as convey more information to the user. This is roughly akin to Annotations on any k8s resource, just the reconciler conveying richer information outwards. + type: object + additionalProperties: + type: string + conditions: + description: Conditions the latest available observations of a resource's current state. + type: array + items: + description: 'Condition defines a readiness condition for a Knative resource. See: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties' + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the last time the condition transitioned from one status to another. We use VolatileTime in place of metav1.Time to exclude this from creating equality.Semantic differences (all other things held constant). + type: string + message: + description: A human readable message indicating details about the transition. + type: string + reason: + description: The reason for the condition's last transition. + type: string + severity: + description: Severity with which to treat failures of this type of condition. When this is not specified, it defaults to Error. + type: string + status: + description: Status of the condition, one of True, False, Unknown. + type: string + type: + description: Type of condition. + type: string + http01Challenges: + description: HTTP01Challenges is a list of HTTP01 challenges that need to be fulfilled in order to get the TLS certificate.. + type: array + items: + description: HTTP01Challenge defines the status of a HTTP01 challenge that a certificate needs to fulfill. + type: object + properties: + serviceName: + description: ServiceName is the name of the service to serve HTTP01 challenge requests. + type: string + serviceNamespace: + description: ServiceNamespace is the namespace of the service to serve HTTP01 challenge requests. + type: string + servicePort: + description: ServicePort is the port of the service to serve HTTP01 challenge requests. + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + url: + description: URL is the URL that the HTTP01 challenge is expected to serve on. + type: string + notAfter: + description: The expiration time of the TLS certificate stored in the secret named by this resource in spec.secretName. + type: string + format: date-time + observedGeneration: + description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. + type: integer + format: int64 + additionalPrinterColumns: + - name: Ready + type: string + jsonPath: ".status.conditions[?(@.type==\"Ready\")].status" + - name: Reason + type: string + jsonPath: ".status.conditions[?(@.type==\"Ready\")].reason" + names: + kind: Certificate + plural: certificates + singular: certificate + categories: + - knative-internal + - networking + shortNames: + - kcert + scope: Namespaced +--- +# Copyright 2019 The Knative Authors +# +# 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 +# +# https://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. + +# Note: The schema part of the spec is auto-generated by hack/update-schemas.sh. + +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: configurations.serving.knative.dev + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" + knative.dev/crd-install: "true" + duck.knative.dev/podspecable: "true" +spec: + group: serving.knative.dev + names: + kind: Configuration + plural: configurations + singular: configuration + categories: + - all + - knative + - serving + shortNames: + - config + - cfg + scope: Namespaced + versions: + - name: v1 + served: true + storage: true + subresources: + status: {} + additionalPrinterColumns: + - name: LatestCreated + type: string + jsonPath: .status.latestCreatedRevisionName + - name: LatestReady + type: string + jsonPath: .status.latestReadyRevisionName + - name: Ready + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].status" + - name: Reason + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].reason" + schema: + openAPIV3Schema: + description: 'Configuration represents the "floating HEAD" of a linear history of Revisions. Users create new Revisions by updating the Configuration''s spec. The "latest created" revision''s name is available under status, as is the "latest ready" revision''s name. See also: https://github.com/knative/serving/blob/main/docs/spec/overview.md#configuration' + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: ConfigurationSpec holds the desired state of the Configuration (from the client). + type: object + properties: + template: + description: Template holds the latest specification for the Revision to be stamped out. + type: object + properties: + metadata: + type: object + properties: + annotations: + type: object + additionalProperties: + type: string + finalizers: + type: array + items: + type: string + labels: + type: object + additionalProperties: + type: string + name: + type: string + namespace: + type: string + x-kubernetes-preserve-unknown-fields: true + spec: + description: RevisionSpec holds the desired state of the Revision (from the client). + type: object + required: + - containers + properties: + affinity: + description: This is accessible behind a feature flag - kubernetes.podspec-affinity + type: object + x-kubernetes-preserve-unknown-fields: true + automountServiceAccountToken: + description: AutomountServiceAccountToken indicates whether a service account token should be automatically mounted. + type: boolean + containerConcurrency: + description: ContainerConcurrency specifies the maximum allowed in-flight (concurrent) requests per container of the Revision. Defaults to `0` which means concurrency to the application is not limited, and the system decides the target concurrency for the autoscaler. + type: integer + format: int64 + containers: + description: List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated. + type: array + items: + description: A single application container that you want to run within a pod. + type: object + properties: + args: + description: 'Arguments to the entrypoint. The container image''s CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' + type: array + items: + type: string + command: + description: 'Entrypoint array. Not executed within a shell. The container image''s ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' + type: array + items: + type: string + env: + description: List of environment variables to set in the container. Cannot be updated. + type: array + items: + description: EnvVar represents an environment variable present in a Container. + type: object + required: + - name + properties: + name: + description: Name of the environment variable. Must be a C_IDENTIFIER. + type: string + value: + description: 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".' + type: string + valueFrom: + description: Source for the environment variable's value. Cannot be used if value is not empty. + type: object + properties: + configMapKeyRef: + description: Selects a key of a ConfigMap. + type: object + required: + - key + properties: + key: + description: The key to select. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: Specify whether the ConfigMap or its key must be defined + type: boolean + x-kubernetes-map-type: atomic + fieldRef: + description: This is accessible behind a feature flag - kubernetes.podspec-fieldref + type: object + x-kubernetes-preserve-unknown-fields: true + x-kubernetes-map-type: atomic + resourceFieldRef: + description: This is accessible behind a feature flag - kubernetes.podspec-fieldref + type: object + x-kubernetes-preserve-unknown-fields: true + x-kubernetes-map-type: atomic + secretKeyRef: + description: Selects a key of a secret in the pod's namespace + type: object + required: + - key + properties: + key: + description: The key of the secret to select from. Must be a valid secret key. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: Specify whether the Secret or its key must be defined + type: boolean + x-kubernetes-map-type: atomic + envFrom: + description: List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated. + type: array + items: + description: EnvFromSource represents the source of a set of ConfigMaps + type: object + properties: + configMapRef: + description: The ConfigMap to select from + type: object + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: Specify whether the ConfigMap must be defined + type: boolean + x-kubernetes-map-type: atomic + prefix: + description: An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER. + type: string + secretRef: + description: The Secret to select from + type: object + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: Specify whether the Secret must be defined + type: boolean + x-kubernetes-map-type: atomic + image: + description: 'Container image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.' + type: string + imagePullPolicy: + description: 'Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images' + type: string + livenessProbe: + description: 'Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: object + properties: + exec: + description: Exec specifies the action to take. + type: object + properties: + command: + description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + type: array + items: + type: string + failureThreshold: + description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. + type: integer + format: int32 + httpGet: + description: HTTPGet specifies the http request to perform. + type: object + properties: + host: + description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the request. HTTP allows repeated headers. + type: array + items: + description: HTTPHeader describes a custom header to be used in HTTP probes + type: object + required: + - name + - value + properties: + name: + description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + path: + description: Path to access on the HTTP server. + type: string + port: + description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + description: Scheme to use for connecting to the host. Defaults to HTTP. + type: string + initialDelaySeconds: + description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: integer + format: int32 + periodSeconds: + description: How often (in seconds) to perform the probe. + type: integer + format: int32 + successThreshold: + description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + type: integer + format: int32 + tcpSocket: + description: TCPSocket specifies an action involving a TCP port. + type: object + properties: + host: + description: 'Optional: Host name to connect to, defaults to the pod IP.' + type: string + port: + description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + timeoutSeconds: + description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: integer + format: int32 + name: + description: Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. + type: string + ports: + description: List of ports to expose from the container. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Modifying this array with strategic merge patch may corrupt the data. For more information See https://github.com/kubernetes/kubernetes/issues/108255. Cannot be updated. + type: array + items: + description: ContainerPort represents a network port in a single container. + type: object + required: + - containerPort + properties: + containerPort: + description: Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536. + type: integer + format: int32 + name: + description: If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services. + type: string + protocol: + description: Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP". + type: string + default: TCP + x-kubernetes-list-map-keys: + - containerPort + - protocol + x-kubernetes-list-type: map + readinessProbe: + description: 'Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: object + properties: + exec: + description: Exec specifies the action to take. + type: object + properties: + command: + description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + type: array + items: + type: string + failureThreshold: + description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. + type: integer + format: int32 + httpGet: + description: HTTPGet specifies the http request to perform. + type: object + properties: + host: + description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the request. HTTP allows repeated headers. + type: array + items: + description: HTTPHeader describes a custom header to be used in HTTP probes + type: object + required: + - name + - value + properties: + name: + description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + path: + description: Path to access on the HTTP server. + type: string + port: + description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + description: Scheme to use for connecting to the host. Defaults to HTTP. + type: string + initialDelaySeconds: + description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: integer + format: int32 + periodSeconds: + description: How often (in seconds) to perform the probe. + type: integer + format: int32 + successThreshold: + description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + type: integer + format: int32 + tcpSocket: + description: TCPSocket specifies an action involving a TCP port. + type: object + properties: + host: + description: 'Optional: Host name to connect to, defaults to the pod IP.' + type: string + port: + description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + timeoutSeconds: + description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: integer + format: int32 + resources: + description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + type: object + properties: + claims: + description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers." + type: array + items: + description: ResourceClaim references one entry in PodSpec.ResourceClaims. + type: object + required: + - name + properties: + name: + description: Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container. + type: string + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + limits: + description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + type: object + additionalProperties: + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + requests: + description: 'Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + type: object + additionalProperties: + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + securityContext: + description: 'SecurityContext defines the security options the container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/' + type: object + properties: + allowPrivilegeEscalation: + description: 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.' + type: boolean + capabilities: + description: The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows. + type: object + properties: + add: + description: This is accessible behind a feature flag - kubernetes.containerspec-addcapabilities + type: array + items: + description: Capability represent POSIX capabilities type + type: string + drop: + description: Removed capabilities + type: array + items: + description: Capability represent POSIX capabilities type + type: string + readOnlyRootFilesystem: + description: Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows. + type: boolean + runAsGroup: + description: The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows. + type: integer + format: int64 + runAsNonRoot: + description: Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + type: boolean + runAsUser: + description: The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows. + type: integer + format: int64 + seccompProfile: + description: The seccomp options to use by this container. If seccomp options are provided at both the pod & container level, the container options override the pod options. Note that this field cannot be set when spec.os.name is windows. + type: object + required: + - type + properties: + localhostProfile: + description: localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is "Localhost". + type: string + type: + description: "type indicates which kind of seccomp profile will be applied. Valid options are: \n Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied." + type: string + terminationMessagePath: + description: 'Optional: Path at which the file to which the container''s termination message will be written is mounted into the container''s filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.' + type: string + terminationMessagePolicy: + description: Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated. + type: string + volumeMounts: + description: Pod volumes to mount into the container's filesystem. Cannot be updated. + type: array + items: + description: VolumeMount describes a mounting of a Volume within a container. + type: object + required: + - mountPath + - name + properties: + mountPath: + description: Path within the container at which the volume should be mounted. Must not contain ':'. + type: string + name: + description: This must match the Name of a Volume. + type: string + readOnly: + description: Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false. + type: boolean + subPath: + description: Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root). + type: string + workingDir: + description: Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated. + type: string + dnsConfig: + description: This is accessible behind a feature flag - kubernetes.podspec-dnsconfig + type: object + x-kubernetes-preserve-unknown-fields: true + dnsPolicy: + description: This is accessible behind a feature flag - kubernetes.podspec-dnspolicy + type: string + enableServiceLinks: + description: 'EnableServiceLinks indicates whether information about services should be injected into pod''s environment variables, matching the syntax of Docker links. Optional: Knative defaults this to false.' + type: boolean + hostAliases: + description: This is accessible behind a feature flag - kubernetes.podspec-hostaliases + type: array + items: + description: This is accessible behind a feature flag - kubernetes.podspec-hostaliases + type: object + x-kubernetes-preserve-unknown-fields: true + idleTimeoutSeconds: + description: IdleTimeoutSeconds is the maximum duration in seconds a request will be allowed to stay open while not receiving any bytes from the user's application. If unspecified, a system default will be provided. + type: integer + format: int64 + imagePullSecrets: + description: 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod' + type: array + items: + description: LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace. + type: object + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + x-kubernetes-map-type: atomic + initContainers: + description: 'List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/' + type: array + items: + description: This is accessible behind a feature flag - kubernetes.podspec-init-containers + type: object + x-kubernetes-preserve-unknown-fields: true + nodeSelector: + description: This is accessible behind a feature flag - kubernetes.podspec-nodeselector + type: object + x-kubernetes-preserve-unknown-fields: true + x-kubernetes-map-type: atomic + priorityClassName: + description: This is accessible behind a feature flag - kubernetes.podspec-priorityclassname + type: string + x-kubernetes-preserve-unknown-fields: true + responseStartTimeoutSeconds: + description: ResponseStartTimeoutSeconds is the maximum duration in seconds that the request routing layer will wait for a request delivered to a container to begin sending any network traffic. + type: integer + format: int64 + runtimeClassName: + description: This is accessible behind a feature flag - kubernetes.podspec-runtimeclassname + type: string + x-kubernetes-preserve-unknown-fields: true + schedulerName: + description: This is accessible behind a feature flag - kubernetes.podspec-schedulername + type: string + x-kubernetes-preserve-unknown-fields: true + securityContext: + description: This is accessible behind a feature flag - kubernetes.podspec-securitycontext + type: object + x-kubernetes-preserve-unknown-fields: true + serviceAccountName: + description: 'ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/' + type: string + timeoutSeconds: + description: TimeoutSeconds is the maximum duration in seconds that the request instance is allowed to respond to a request. If unspecified, a system default will be provided. + type: integer + format: int64 + tolerations: + description: This is accessible behind a feature flag - kubernetes.podspec-tolerations + type: array + items: + description: This is accessible behind a feature flag - kubernetes.podspec-tolerations + type: object + x-kubernetes-preserve-unknown-fields: true + topologySpreadConstraints: + description: This is accessible behind a feature flag - kubernetes.podspec-topologyspreadconstraints + type: array + items: + description: This is accessible behind a feature flag - kubernetes.podspec-topologyspreadconstraints + type: object + x-kubernetes-preserve-unknown-fields: true + volumes: + description: 'List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes' + type: array + items: + description: Volume represents a named volume in a pod that may be accessed by any container in the pod. + type: object + required: + - name + properties: + configMap: + description: configMap represents a configMap that should populate this volume + type: object + properties: + defaultMode: + description: 'defaultMode is optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + items: + description: items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + type: array + items: + description: Maps a string key to a path within a volume. + type: object + required: + - key + - path + properties: + key: + description: key is the key to project. + type: string + mode: + description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: optional specify whether the ConfigMap or its keys must be defined + type: boolean + x-kubernetes-map-type: atomic + emptyDir: + description: This is accessible behind a feature flag - kubernetes.podspec-emptydir + type: object + x-kubernetes-preserve-unknown-fields: true + name: + description: 'name of the volume. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + persistentVolumeClaim: + description: This is accessible behind a feature flag - kubernetes.podspec-persistent-volume-claim + type: object + x-kubernetes-preserve-unknown-fields: true + projected: + description: projected items for all in one resources secrets, configmaps, and downward API + type: object + properties: + defaultMode: + description: defaultMode are the mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. + type: integer + format: int32 + sources: + description: sources is the list of volume projections + type: array + items: + description: Projection that may be projected along with other supported volume types + type: object + properties: + configMap: + description: configMap information about the configMap data to project + type: object + properties: + items: + description: items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + type: array + items: + description: Maps a string key to a path within a volume. + type: object + required: + - key + - path + properties: + key: + description: key is the key to project. + type: string + mode: + description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: optional specify whether the ConfigMap or its keys must be defined + type: boolean + x-kubernetes-map-type: atomic + downwardAPI: + description: downwardAPI information about the downwardAPI data to project + type: object + properties: + items: + description: Items is a list of DownwardAPIVolume file + type: array + items: + description: DownwardAPIVolumeFile represents information to create the file containing the pod field + type: object + required: + - path + properties: + fieldRef: + description: 'Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.' + type: object + required: + - fieldPath + properties: + apiVersion: + description: Version of the schema the FieldPath is written in terms of, defaults to "v1". + type: string + fieldPath: + description: Path of the field to select in the specified API version. + type: string + x-kubernetes-map-type: atomic + mode: + description: 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: 'Required: Path is the relative path name of the file to be created. Must not be absolute or contain the ''..'' path. Must be utf-8 encoded. The first item of the relative path must not start with ''..''' + type: string + resourceFieldRef: + description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.' + type: object + required: + - resource + properties: + containerName: + description: 'Container name: required for volumes, optional for env vars' + type: string + divisor: + description: Specifies the output format of the exposed resources, defaults to "1" + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + resource: + description: 'Required: resource to select' + type: string + x-kubernetes-map-type: atomic + secret: + description: secret information about the secret data to project + type: object + properties: + items: + description: items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + type: array + items: + description: Maps a string key to a path within a volume. + type: object + required: + - key + - path + properties: + key: + description: key is the key to project. + type: string + mode: + description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: optional field specify whether the Secret or its key must be defined + type: boolean + x-kubernetes-map-type: atomic + serviceAccountToken: + description: serviceAccountToken is information about the serviceAccountToken data to project + type: object + required: + - path + properties: + audience: + description: audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver. + type: string + expirationSeconds: + description: expirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes. + type: integer + format: int64 + path: + description: path is the path relative to the mount point of the file to project the token into. + type: string + secret: + description: 'secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' + type: object + properties: + defaultMode: + description: 'defaultMode is Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + items: + description: items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + type: array + items: + description: Maps a string key to a path within a volume. + type: object + required: + - key + - path + properties: + key: + description: key is the key to project. + type: string + mode: + description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + type: string + optional: + description: optional field specify whether the Secret or its keys must be defined + type: boolean + secretName: + description: 'secretName is the name of the secret in the pod''s namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' + type: string + status: + description: ConfigurationStatus communicates the observed state of the Configuration (from the controller). + type: object + properties: + annotations: + description: Annotations is additional Status fields for the Resource to save some additional State as well as convey more information to the user. This is roughly akin to Annotations on any k8s resource, just the reconciler conveying richer information outwards. + type: object + additionalProperties: + type: string + conditions: + description: Conditions the latest available observations of a resource's current state. + type: array + items: + description: 'Condition defines a readiness condition for a Knative resource. See: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties' + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the last time the condition transitioned from one status to another. We use VolatileTime in place of metav1.Time to exclude this from creating equality.Semantic differences (all other things held constant). + type: string + message: + description: A human readable message indicating details about the transition. + type: string + reason: + description: The reason for the condition's last transition. + type: string + severity: + description: Severity with which to treat failures of this type of condition. When this is not specified, it defaults to Error. + type: string + status: + description: Status of the condition, one of True, False, Unknown. + type: string + type: + description: Type of condition. + type: string + latestCreatedRevisionName: + description: LatestCreatedRevisionName is the last revision that was created from this Configuration. It might not be ready yet, for that use LatestReadyRevisionName. + type: string + latestReadyRevisionName: + description: LatestReadyRevisionName holds the name of the latest Revision stamped out from this Configuration that has had its "Ready" condition become "True". + type: string + observedGeneration: + description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. + type: integer + format: int64 +--- +# Copyright 2020 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: clusterdomainclaims.networking.internal.knative.dev + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/component: networking + app.kubernetes.io/version: "release-v1.2" + knative.dev/crd-install: "true" +spec: + group: networking.internal.knative.dev + versions: + - name: v1alpha1 + served: true + storage: true + subresources: + status: {} + schema: + openAPIV3Schema: + description: ClusterDomainClaim is a cluster-wide reservation for a particular domain name. + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: 'Spec is the desired state of the ClusterDomainClaim. More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' + type: object + required: + - namespace + properties: + namespace: + description: Namespace is the namespace which is allowed to create a DomainMapping using this ClusterDomainClaim's name. + type: string + names: + kind: ClusterDomainClaim + plural: clusterdomainclaims + singular: clusterdomainclaim + categories: + - knative-internal + - networking + shortNames: + - cdc + scope: Cluster +--- +# Copyright 2020 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: domainmappings.serving.knative.dev + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" + knative.dev/crd-install: "true" +spec: + group: serving.knative.dev + versions: + - name: v1beta1 + served: true + storage: true + subresources: + status: {} + additionalPrinterColumns: + - name: URL + type: string + jsonPath: .status.url + - name: Ready + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].status" + - name: Reason + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].reason" + "schema": + "openAPIV3Schema": + description: DomainMapping is a mapping from a custom hostname to an Addressable. + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: 'Spec is the desired state of the DomainMapping. More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' + type: object + required: + - ref + properties: + ref: + description: "Ref specifies the target of the Domain Mapping. \n The object identified by the Ref must be an Addressable with a URL of the form `{name}.{namespace}.{domain}` where `{domain}` is the cluster domain, and `{name}` and `{namespace}` are the name and namespace of a Kubernetes Service. \n This contract is satisfied by Knative types such as Knative Services and Knative Routes, and by Kubernetes Services." + type: object + required: + - kind + - name + properties: + address: + description: Address points to a specific Address Name. + type: string + apiVersion: + description: API version of the referent. + type: string + group: + description: 'Group of the API, without the version of the group. This can be used as an alternative to the APIVersion, and then resolved using ResolveGroup. Note: This API is EXPERIMENTAL and might break anytime. For more details: https://github.com/knative/eventing/issues/5086' + type: string + kind: + description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + namespace: + description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ This is optional field, it gets defaulted to the object holding it if left out.' + type: string + tls: + description: TLS allows the DomainMapping to terminate TLS traffic with an existing secret. + type: object + required: + - secretName + properties: + secretName: + description: SecretName is the name of the existing secret used to terminate TLS traffic. + type: string + status: + description: 'Status is the current state of the DomainMapping. More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' + type: object + properties: + address: + description: Address holds the information needed for a DomainMapping to be the target of an event. + type: object + properties: + CACerts: + description: CACerts is the Certification Authority (CA) certificates in PEM format according to https://www.rfc-editor.org/rfc/rfc7468. + type: string + name: + description: Name is the name of the address. + type: string + url: + type: string + annotations: + description: Annotations is additional Status fields for the Resource to save some additional State as well as convey more information to the user. This is roughly akin to Annotations on any k8s resource, just the reconciler conveying richer information outwards. + type: object + additionalProperties: + type: string + conditions: + description: Conditions the latest available observations of a resource's current state. + type: array + items: + description: 'Condition defines a readiness condition for a Knative resource. See: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties' + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the last time the condition transitioned from one status to another. We use VolatileTime in place of metav1.Time to exclude this from creating equality.Semantic differences (all other things held constant). + type: string + message: + description: A human readable message indicating details about the transition. + type: string + reason: + description: The reason for the condition's last transition. + type: string + severity: + description: Severity with which to treat failures of this type of condition. When this is not specified, it defaults to Error. + type: string + status: + description: Status of the condition, one of True, False, Unknown. + type: string + type: + description: Type of condition. + type: string + observedGeneration: + description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. + type: integer + format: int64 + url: + description: URL is the URL of this DomainMapping. + type: string + - name: v1alpha1 + served: true + storage: false + deprecated: true + deprecationWarning: The v1alpha1 version of DomainMapping has been deprecated and will be removed in a future release of the API. Please upgrade to v1beta1 + subresources: + status: {} + schema: + openAPIV3Schema: + description: DomainMapping is a mapping from a custom hostname to an Addressable. + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: 'Spec is the desired state of the DomainMapping. More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' + type: object + required: + - ref + properties: + ref: + description: "Ref specifies the target of the Domain Mapping. \n The object identified by the Ref must be an Addressable with a URL of the form `{name}.{namespace}.{domain}` where `{domain}` is the cluster domain, and `{name}` and `{namespace}` are the name and namespace of a Kubernetes Service. \n This contract is satisfied by Knative types such as Knative Services and Knative Routes, and by Kubernetes Services." + type: object + required: + - kind + - name + properties: + address: + description: Address points to a specific Address Name. + type: string + apiVersion: + description: API version of the referent. + type: string + group: + description: 'Group of the API, without the version of the group. This can be used as an alternative to the APIVersion, and then resolved using ResolveGroup. Note: This API is EXPERIMENTAL and might break anytime. For more details: https://github.com/knative/eventing/issues/5086' + type: string + kind: + description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + namespace: + description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ This is optional field, it gets defaulted to the object holding it if left out.' + type: string + tls: + description: TLS allows the DomainMapping to terminate TLS traffic with an existing secret. + type: object + required: + - secretName + properties: + secretName: + description: SecretName is the name of the existing secret used to terminate TLS traffic. + type: string + status: + description: 'Status is the current state of the DomainMapping. More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' + type: object + properties: + address: + description: Address holds the information needed for a DomainMapping to be the target of an event. + type: object + properties: + CACerts: + description: CACerts is the Certification Authority (CA) certificates in PEM format according to https://www.rfc-editor.org/rfc/rfc7468. + type: string + name: + description: Name is the name of the address. + type: string + url: + type: string + annotations: + description: Annotations is additional Status fields for the Resource to save some additional State as well as convey more information to the user. This is roughly akin to Annotations on any k8s resource, just the reconciler conveying richer information outwards. + type: object + additionalProperties: + type: string + conditions: + description: Conditions the latest available observations of a resource's current state. + type: array + items: + description: 'Condition defines a readiness condition for a Knative resource. See: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties' + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the last time the condition transitioned from one status to another. We use VolatileTime in place of metav1.Time to exclude this from creating equality.Semantic differences (all other things held constant). + type: string + message: + description: A human readable message indicating details about the transition. + type: string + reason: + description: The reason for the condition's last transition. + type: string + severity: + description: Severity with which to treat failures of this type of condition. When this is not specified, it defaults to Error. + type: string + status: + description: Status of the condition, one of True, False, Unknown. + type: string + type: + description: Type of condition. + type: string + observedGeneration: + description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. + type: integer + format: int64 + url: + description: URL is the URL of this DomainMapping. + type: string + additionalPrinterColumns: + - name: URL + type: string + jsonPath: .status.url + - name: Ready + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].status" + - name: Reason + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].reason" + names: + kind: DomainMapping + plural: domainmappings + singular: domainmapping + categories: + - all + - knative + - serving + shortNames: + - dm + scope: Namespaced +--- +# Copyright 2020 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: ingresses.networking.internal.knative.dev + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/component: networking + app.kubernetes.io/version: "release-v1.2" + knative.dev/crd-install: "true" +spec: + group: networking.internal.knative.dev + versions: + - name: v1alpha1 + served: true + storage: true + subresources: + status: {} + schema: + openAPIV3Schema: + description: "Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable URLs, load balance traffic, offer name based virtual hosting, etc. \n This is heavily based on K8s Ingress https://godoc.org/k8s.io/api/networking/v1beta1#Ingress which some highlighted modifications." + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: 'Spec is the desired state of the Ingress. More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' + type: object + properties: + httpOption: + description: 'HTTPOption is the option of HTTP. It has the following two values: `HTTPOptionEnabled`, `HTTPOptionRedirected`' + type: string + rules: + description: A list of host rules used to configure the Ingress. + type: array + items: + description: IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue. + type: object + properties: + hosts: + description: 'Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the "host" part of the URI as defined in the RFC: 1. IPs are not allowed. Currently a rule value can only apply to the IP in the Spec of the parent . 2. The `:` delimiter is not respected because ports are not allowed. Currently the port of an Ingress is implicitly :80 for http and :443 for https. Both these may change in the future. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue. If multiple matching Hosts were provided, the first rule will take precedent.' + type: array + items: + type: string + http: + description: HTTP represents a rule to apply against incoming requests. If the rule is satisfied, the request is routed to the specified backend. + type: object + required: + - paths + properties: + paths: + description: "A collection of paths that map requests to backends. \n If they are multiple matching paths, the first match takes precedence." + type: array + items: + description: HTTPIngressPath associates a path regex with a backend. Incoming URLs matching the path are forwarded to the backend. + type: object + required: + - splits + properties: + appendHeaders: + description: "AppendHeaders allow specifying additional HTTP headers to add before forwarding a request to the destination service. \n NOTE: This differs from K8s Ingress which doesn't allow header appending." + type: object + additionalProperties: + type: string + headers: + description: Headers defines header matching rules which is a map from a header name to HeaderMatch which specify a matching condition. When a request matched with all the header matching rules, the request is routed by the corresponding ingress rule. If it is empty, the headers are not used for matching + type: object + additionalProperties: + description: HeaderMatch represents a matching value of Headers in HTTPIngressPath. Currently, only the exact matching is supported. + type: object + required: + - exact + properties: + exact: + type: string + path: + description: Path represents a literal prefix to which this rule should apply. Currently it can contain characters disallowed from the conventional "path" part of a URL as defined by RFC 3986. Paths must begin with a '/'. If unspecified, the path defaults to a catch all sending traffic to the backend. + type: string + rewriteHost: + description: "RewriteHost rewrites the incoming request's host header. \n This field is currently experimental and not supported by all Ingress implementations." + type: string + splits: + description: Splits defines the referenced service endpoints to which the traffic will be forwarded to. + type: array + items: + description: IngressBackendSplit describes all endpoints for a given service and port. + type: object + required: + - serviceName + - serviceNamespace + - servicePort + properties: + appendHeaders: + description: "AppendHeaders allow specifying additional HTTP headers to add before forwarding a request to the destination service. \n NOTE: This differs from K8s Ingress which doesn't allow header appending." + type: object + additionalProperties: + type: string + percent: + description: "Specifies the split percentage, a number between 0 and 100. If only one split is specified, we default to 100. \n NOTE: This differs from K8s Ingress to allow percentage split." + type: integer + serviceName: + description: Specifies the name of the referenced service. + type: string + serviceNamespace: + description: "Specifies the namespace of the referenced service. \n NOTE: This differs from K8s Ingress to allow routing to different namespaces." + type: string + servicePort: + description: Specifies the port of the referenced service. + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + visibility: + description: Visibility signifies whether this rule should `ClusterLocal`. If it's not specified then it defaults to `ExternalIP`. + type: string + tls: + description: 'TLS configuration. Currently Ingress only supports a single TLS port: 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.' + type: array + items: + description: IngressTLS describes the transport layer security associated with an Ingress. + type: object + properties: + hosts: + description: Hosts is a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified. + type: array + items: + type: string + secretName: + description: SecretName is the name of the secret used to terminate SSL traffic. + type: string + secretNamespace: + description: SecretNamespace is the namespace of the secret used to terminate SSL traffic. If not set the namespace should be assumed to be the same as the Ingress. If set the secret should have the same namespace as the Ingress otherwise the behaviour is undefined and not supported. + type: string + status: + description: 'Status is the current state of the Ingress. More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' + type: object + properties: + annotations: + description: Annotations is additional Status fields for the Resource to save some additional State as well as convey more information to the user. This is roughly akin to Annotations on any k8s resource, just the reconciler conveying richer information outwards. + type: object + additionalProperties: + type: string + conditions: + description: Conditions the latest available observations of a resource's current state. + type: array + items: + description: 'Condition defines a readiness condition for a Knative resource. See: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties' + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the last time the condition transitioned from one status to another. We use VolatileTime in place of metav1.Time to exclude this from creating equality.Semantic differences (all other things held constant). + type: string + message: + description: A human readable message indicating details about the transition. + type: string + reason: + description: The reason for the condition's last transition. + type: string + severity: + description: Severity with which to treat failures of this type of condition. When this is not specified, it defaults to Error. + type: string + status: + description: Status of the condition, one of True, False, Unknown. + type: string + type: + description: Type of condition. + type: string + observedGeneration: + description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. + type: integer + format: int64 + privateLoadBalancer: + description: PrivateLoadBalancer contains the current status of the load-balancer. + type: object + properties: + ingress: + description: Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points. + type: array + items: + description: 'LoadBalancerIngressStatus represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.' + type: object + properties: + domain: + description: Domain is set for load-balancer ingress points that are DNS based (typically AWS load-balancers) + type: string + domainInternal: + description: "DomainInternal is set if there is a cluster-local DNS name to access the Ingress. \n NOTE: This differs from K8s Ingress, since we also desire to have a cluster-local DNS name to allow routing in case of not having a mesh." + type: string + ip: + description: IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers) + type: string + meshOnly: + description: MeshOnly is set if the Ingress is only load-balanced through a Service mesh. + type: boolean + publicLoadBalancer: + description: PublicLoadBalancer contains the current status of the load-balancer. + type: object + properties: + ingress: + description: Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points. + type: array + items: + description: 'LoadBalancerIngressStatus represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.' + type: object + properties: + domain: + description: Domain is set for load-balancer ingress points that are DNS based (typically AWS load-balancers) + type: string + domainInternal: + description: "DomainInternal is set if there is a cluster-local DNS name to access the Ingress. \n NOTE: This differs from K8s Ingress, since we also desire to have a cluster-local DNS name to allow routing in case of not having a mesh." + type: string + ip: + description: IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers) + type: string + meshOnly: + description: MeshOnly is set if the Ingress is only load-balanced through a Service mesh. + type: boolean + additionalPrinterColumns: + - name: Ready + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].status" + - name: Reason + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].reason" + names: + kind: Ingress + plural: ingresses + singular: ingress + categories: + - knative-internal + - networking + shortNames: + - kingress + - king + scope: Namespaced +--- +# Copyright 2019 The Knative Authors +# +# 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 +# +# https://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. + +# Note: The schema part of the spec is auto-generated by hack/update-schemas.sh. + +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: metrics.autoscaling.internal.knative.dev + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" + knative.dev/crd-install: "true" +spec: + group: autoscaling.internal.knative.dev + names: + kind: Metric + plural: metrics + singular: metric + categories: + - knative-internal + - autoscaling + scope: Namespaced + versions: + - name: v1alpha1 + served: true + storage: true + subresources: + status: {} + additionalPrinterColumns: + - name: Ready + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].status" + - name: Reason + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].reason" + schema: + openAPIV3Schema: + description: Metric represents a resource to configure the metric collector with. + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: Spec holds the desired state of the Metric (from the client). + type: object + required: + - panicWindow + - scrapeTarget + - stableWindow + properties: + panicWindow: + description: PanicWindow is the aggregation window for metrics where quick reactions are needed. + type: integer + format: int64 + scrapeTarget: + description: ScrapeTarget is the K8s service that publishes the metric endpoint. + type: string + stableWindow: + description: StableWindow is the aggregation window for metrics in a stable state. + type: integer + format: int64 + status: + description: Status communicates the observed state of the Metric (from the controller). + type: object + properties: + annotations: + description: Annotations is additional Status fields for the Resource to save some additional State as well as convey more information to the user. This is roughly akin to Annotations on any k8s resource, just the reconciler conveying richer information outwards. + type: object + additionalProperties: + type: string + conditions: + description: Conditions the latest available observations of a resource's current state. + type: array + items: + description: 'Condition defines a readiness condition for a Knative resource. See: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties' + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the last time the condition transitioned from one status to another. We use VolatileTime in place of metav1.Time to exclude this from creating equality.Semantic differences (all other things held constant). + type: string + message: + description: A human readable message indicating details about the transition. + type: string + reason: + description: The reason for the condition's last transition. + type: string + severity: + description: Severity with which to treat failures of this type of condition. When this is not specified, it defaults to Error. + type: string + status: + description: Status of the condition, one of True, False, Unknown. + type: string + type: + description: Type of condition. + type: string + observedGeneration: + description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. + type: integer + format: int64 +--- +# Copyright 2018 The Knative Authors +# +# 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 +# +# https://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. + +# Note: The schema part of the spec is auto-generated by hack/update-schemas.sh. + +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: podautoscalers.autoscaling.internal.knative.dev + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" + knative.dev/crd-install: "true" +spec: + group: autoscaling.internal.knative.dev + names: + kind: PodAutoscaler + plural: podautoscalers + singular: podautoscaler + categories: + - knative-internal + - autoscaling + shortNames: + - kpa + - pa + scope: Namespaced + versions: + - name: v1alpha1 + served: true + storage: true + subresources: + status: {} + additionalPrinterColumns: + - name: DesiredScale + type: integer + jsonPath: ".status.desiredScale" + - name: ActualScale + type: integer + jsonPath: ".status.actualScale" + - name: Ready + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].status" + - name: Reason + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].reason" + schema: + openAPIV3Schema: + description: 'PodAutoscaler is a Knative abstraction that encapsulates the interface by which Knative components instantiate autoscalers. This definition is an abstraction that may be backed by multiple definitions. For more information, see the Knative Pluggability presentation: https://docs.google.com/presentation/d/19vW9HFZ6Puxt31biNZF3uLRejDmu82rxJIk1cWmxF7w/edit' + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: Spec holds the desired state of the PodAutoscaler (from the client). + type: object + required: + - protocolType + - scaleTargetRef + properties: + containerConcurrency: + description: ContainerConcurrency specifies the maximum allowed in-flight (concurrent) requests per container of the Revision. Defaults to `0` which means unlimited concurrency. + type: integer + format: int64 + protocolType: + description: The application-layer protocol. Matches `ProtocolType` inferred from the revision spec. + type: string + reachability: + description: Reachability specifies whether or not the `ScaleTargetRef` can be reached (ie. has a route). Defaults to `ReachabilityUnknown` + type: string + scaleTargetRef: + description: ScaleTargetRef defines the /scale-able resource that this PodAutoscaler is responsible for quickly right-sizing. + type: object + properties: + apiVersion: + description: API version of the referent. + type: string + kind: + description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + x-kubernetes-map-type: atomic + status: + description: Status communicates the observed state of the PodAutoscaler (from the controller). + type: object + required: + - metricsServiceName + - serviceName + properties: + actualScale: + description: ActualScale shows the actual number of replicas for the revision. + type: integer + format: int32 + annotations: + description: Annotations is additional Status fields for the Resource to save some additional State as well as convey more information to the user. This is roughly akin to Annotations on any k8s resource, just the reconciler conveying richer information outwards. + type: object + additionalProperties: + type: string + conditions: + description: Conditions the latest available observations of a resource's current state. + type: array + items: + description: 'Condition defines a readiness condition for a Knative resource. See: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties' + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the last time the condition transitioned from one status to another. We use VolatileTime in place of metav1.Time to exclude this from creating equality.Semantic differences (all other things held constant). + type: string + message: + description: A human readable message indicating details about the transition. + type: string + reason: + description: The reason for the condition's last transition. + type: string + severity: + description: Severity with which to treat failures of this type of condition. When this is not specified, it defaults to Error. + type: string + status: + description: Status of the condition, one of True, False, Unknown. + type: string + type: + description: Type of condition. + type: string + desiredScale: + description: DesiredScale shows the current desired number of replicas for the revision. + type: integer + format: int32 + metricsServiceName: + description: MetricsServiceName is the K8s Service name that provides revision metrics. The service is managed by the PA object. + type: string + observedGeneration: + description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. + type: integer + format: int64 + serviceName: + description: ServiceName is the K8s Service name that serves the revision, scaled by this PA. The service is created and owned by the ServerlessService object owned by this PA. + type: string +--- +# Copyright 2019 The Knative Authors +# +# 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 +# +# https://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. + +# Note: The schema part of the spec is auto-generated by hack/update-schemas.sh. + +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: revisions.serving.knative.dev + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" + knative.dev/crd-install: "true" +spec: + group: serving.knative.dev + names: + kind: Revision + plural: revisions + singular: revision + categories: + - all + - knative + - serving + shortNames: + - rev + scope: Namespaced + versions: + - name: v1 + served: true + storage: true + subresources: + status: {} + additionalPrinterColumns: + - name: Config Name + type: string + jsonPath: ".metadata.labels['serving\\.knative\\.dev/configuration']" + - name: K8s Service Name + type: string + jsonPath: ".status.serviceName" + - name: Generation + type: string # int in string form :( + jsonPath: ".metadata.labels['serving\\.knative\\.dev/configurationGeneration']" + - name: Ready + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].status" + - name: Reason + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].reason" + - name: Actual Replicas + type: integer + jsonPath: ".status.actualReplicas" + - name: Desired Replicas + type: integer + jsonPath: ".status.desiredReplicas" + schema: + openAPIV3Schema: + description: "Revision is an immutable snapshot of code and configuration. A revision references a container image. Revisions are created by updates to a Configuration. \n See also: https://github.com/knative/serving/blob/main/docs/spec/overview.md#revision" + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: RevisionSpec holds the desired state of the Revision (from the client). + type: object + required: + - containers + properties: + affinity: + description: This is accessible behind a feature flag - kubernetes.podspec-affinity + type: object + x-kubernetes-preserve-unknown-fields: true + automountServiceAccountToken: + description: AutomountServiceAccountToken indicates whether a service account token should be automatically mounted. + type: boolean + containerConcurrency: + description: ContainerConcurrency specifies the maximum allowed in-flight (concurrent) requests per container of the Revision. Defaults to `0` which means concurrency to the application is not limited, and the system decides the target concurrency for the autoscaler. + type: integer + format: int64 + containers: + description: List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated. + type: array + items: + description: A single application container that you want to run within a pod. + type: object + properties: + args: + description: 'Arguments to the entrypoint. The container image''s CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' + type: array + items: + type: string + command: + description: 'Entrypoint array. Not executed within a shell. The container image''s ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' + type: array + items: + type: string + env: + description: List of environment variables to set in the container. Cannot be updated. + type: array + items: + description: EnvVar represents an environment variable present in a Container. + type: object + required: + - name + properties: + name: + description: Name of the environment variable. Must be a C_IDENTIFIER. + type: string + value: + description: 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".' + type: string + valueFrom: + description: Source for the environment variable's value. Cannot be used if value is not empty. + type: object + properties: + configMapKeyRef: + description: Selects a key of a ConfigMap. + type: object + required: + - key + properties: + key: + description: The key to select. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: Specify whether the ConfigMap or its key must be defined + type: boolean + x-kubernetes-map-type: atomic + fieldRef: + description: This is accessible behind a feature flag - kubernetes.podspec-fieldref + type: object + x-kubernetes-preserve-unknown-fields: true + x-kubernetes-map-type: atomic + resourceFieldRef: + description: This is accessible behind a feature flag - kubernetes.podspec-fieldref + type: object + x-kubernetes-preserve-unknown-fields: true + x-kubernetes-map-type: atomic + secretKeyRef: + description: Selects a key of a secret in the pod's namespace + type: object + required: + - key + properties: + key: + description: The key of the secret to select from. Must be a valid secret key. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: Specify whether the Secret or its key must be defined + type: boolean + x-kubernetes-map-type: atomic + envFrom: + description: List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated. + type: array + items: + description: EnvFromSource represents the source of a set of ConfigMaps + type: object + properties: + configMapRef: + description: The ConfigMap to select from + type: object + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: Specify whether the ConfigMap must be defined + type: boolean + x-kubernetes-map-type: atomic + prefix: + description: An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER. + type: string + secretRef: + description: The Secret to select from + type: object + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: Specify whether the Secret must be defined + type: boolean + x-kubernetes-map-type: atomic + image: + description: 'Container image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.' + type: string + imagePullPolicy: + description: 'Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images' + type: string + livenessProbe: + description: 'Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: object + properties: + exec: + description: Exec specifies the action to take. + type: object + properties: + command: + description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + type: array + items: + type: string + failureThreshold: + description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. + type: integer + format: int32 + httpGet: + description: HTTPGet specifies the http request to perform. + type: object + properties: + host: + description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the request. HTTP allows repeated headers. + type: array + items: + description: HTTPHeader describes a custom header to be used in HTTP probes + type: object + required: + - name + - value + properties: + name: + description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + path: + description: Path to access on the HTTP server. + type: string + port: + description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + description: Scheme to use for connecting to the host. Defaults to HTTP. + type: string + initialDelaySeconds: + description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: integer + format: int32 + periodSeconds: + description: How often (in seconds) to perform the probe. + type: integer + format: int32 + successThreshold: + description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + type: integer + format: int32 + tcpSocket: + description: TCPSocket specifies an action involving a TCP port. + type: object + properties: + host: + description: 'Optional: Host name to connect to, defaults to the pod IP.' + type: string + port: + description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + timeoutSeconds: + description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: integer + format: int32 + name: + description: Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. + type: string + ports: + description: List of ports to expose from the container. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Modifying this array with strategic merge patch may corrupt the data. For more information See https://github.com/kubernetes/kubernetes/issues/108255. Cannot be updated. + type: array + items: + description: ContainerPort represents a network port in a single container. + type: object + required: + - containerPort + properties: + containerPort: + description: Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536. + type: integer + format: int32 + name: + description: If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services. + type: string + protocol: + description: Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP". + type: string + default: TCP + x-kubernetes-list-map-keys: + - containerPort + - protocol + x-kubernetes-list-type: map + readinessProbe: + description: 'Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: object + properties: + exec: + description: Exec specifies the action to take. + type: object + properties: + command: + description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + type: array + items: + type: string + failureThreshold: + description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. + type: integer + format: int32 + httpGet: + description: HTTPGet specifies the http request to perform. + type: object + properties: + host: + description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the request. HTTP allows repeated headers. + type: array + items: + description: HTTPHeader describes a custom header to be used in HTTP probes + type: object + required: + - name + - value + properties: + name: + description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + path: + description: Path to access on the HTTP server. + type: string + port: + description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + description: Scheme to use for connecting to the host. Defaults to HTTP. + type: string + initialDelaySeconds: + description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: integer + format: int32 + periodSeconds: + description: How often (in seconds) to perform the probe. + type: integer + format: int32 + successThreshold: + description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + type: integer + format: int32 + tcpSocket: + description: TCPSocket specifies an action involving a TCP port. + type: object + properties: + host: + description: 'Optional: Host name to connect to, defaults to the pod IP.' + type: string + port: + description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + timeoutSeconds: + description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: integer + format: int32 + resources: + description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + type: object + properties: + claims: + description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers." + type: array + items: + description: ResourceClaim references one entry in PodSpec.ResourceClaims. + type: object + required: + - name + properties: + name: + description: Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container. + type: string + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + limits: + description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + type: object + additionalProperties: + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + requests: + description: 'Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + type: object + additionalProperties: + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + securityContext: + description: 'SecurityContext defines the security options the container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/' + type: object + properties: + allowPrivilegeEscalation: + description: 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.' + type: boolean + capabilities: + description: The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows. + type: object + properties: + add: + description: This is accessible behind a feature flag - kubernetes.containerspec-addcapabilities + type: array + items: + description: Capability represent POSIX capabilities type + type: string + drop: + description: Removed capabilities + type: array + items: + description: Capability represent POSIX capabilities type + type: string + readOnlyRootFilesystem: + description: Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows. + type: boolean + runAsGroup: + description: The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows. + type: integer + format: int64 + runAsNonRoot: + description: Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + type: boolean + runAsUser: + description: The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows. + type: integer + format: int64 + seccompProfile: + description: The seccomp options to use by this container. If seccomp options are provided at both the pod & container level, the container options override the pod options. Note that this field cannot be set when spec.os.name is windows. + type: object + required: + - type + properties: + localhostProfile: + description: localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is "Localhost". + type: string + type: + description: "type indicates which kind of seccomp profile will be applied. Valid options are: \n Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied." + type: string + terminationMessagePath: + description: 'Optional: Path at which the file to which the container''s termination message will be written is mounted into the container''s filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.' + type: string + terminationMessagePolicy: + description: Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated. + type: string + volumeMounts: + description: Pod volumes to mount into the container's filesystem. Cannot be updated. + type: array + items: + description: VolumeMount describes a mounting of a Volume within a container. + type: object + required: + - mountPath + - name + properties: + mountPath: + description: Path within the container at which the volume should be mounted. Must not contain ':'. + type: string + name: + description: This must match the Name of a Volume. + type: string + readOnly: + description: Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false. + type: boolean + subPath: + description: Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root). + type: string + workingDir: + description: Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated. + type: string + dnsConfig: + description: This is accessible behind a feature flag - kubernetes.podspec-dnsconfig + type: object + x-kubernetes-preserve-unknown-fields: true + dnsPolicy: + description: This is accessible behind a feature flag - kubernetes.podspec-dnspolicy + type: string + enableServiceLinks: + description: 'EnableServiceLinks indicates whether information about services should be injected into pod''s environment variables, matching the syntax of Docker links. Optional: Knative defaults this to false.' + type: boolean + hostAliases: + description: This is accessible behind a feature flag - kubernetes.podspec-hostaliases + type: array + items: + description: This is accessible behind a feature flag - kubernetes.podspec-hostaliases + type: object + x-kubernetes-preserve-unknown-fields: true + idleTimeoutSeconds: + description: IdleTimeoutSeconds is the maximum duration in seconds a request will be allowed to stay open while not receiving any bytes from the user's application. If unspecified, a system default will be provided. + type: integer + format: int64 + imagePullSecrets: + description: 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod' + type: array + items: + description: LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace. + type: object + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + x-kubernetes-map-type: atomic + initContainers: + description: 'List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/' + type: array + items: + description: This is accessible behind a feature flag - kubernetes.podspec-init-containers + type: object + x-kubernetes-preserve-unknown-fields: true + nodeSelector: + description: This is accessible behind a feature flag - kubernetes.podspec-nodeselector + type: object + x-kubernetes-preserve-unknown-fields: true + x-kubernetes-map-type: atomic + priorityClassName: + description: This is accessible behind a feature flag - kubernetes.podspec-priorityclassname + type: string + x-kubernetes-preserve-unknown-fields: true + responseStartTimeoutSeconds: + description: ResponseStartTimeoutSeconds is the maximum duration in seconds that the request routing layer will wait for a request delivered to a container to begin sending any network traffic. + type: integer + format: int64 + runtimeClassName: + description: This is accessible behind a feature flag - kubernetes.podspec-runtimeclassname + type: string + x-kubernetes-preserve-unknown-fields: true + schedulerName: + description: This is accessible behind a feature flag - kubernetes.podspec-schedulername + type: string + x-kubernetes-preserve-unknown-fields: true + securityContext: + description: This is accessible behind a feature flag - kubernetes.podspec-securitycontext + type: object + x-kubernetes-preserve-unknown-fields: true + serviceAccountName: + description: 'ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/' + type: string + timeoutSeconds: + description: TimeoutSeconds is the maximum duration in seconds that the request instance is allowed to respond to a request. If unspecified, a system default will be provided. + type: integer + format: int64 + tolerations: + description: This is accessible behind a feature flag - kubernetes.podspec-tolerations + type: array + items: + description: This is accessible behind a feature flag - kubernetes.podspec-tolerations + type: object + x-kubernetes-preserve-unknown-fields: true + topologySpreadConstraints: + description: This is accessible behind a feature flag - kubernetes.podspec-topologyspreadconstraints + type: array + items: + description: This is accessible behind a feature flag - kubernetes.podspec-topologyspreadconstraints + type: object + x-kubernetes-preserve-unknown-fields: true + volumes: + description: 'List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes' + type: array + items: + description: Volume represents a named volume in a pod that may be accessed by any container in the pod. + type: object + required: + - name + properties: + configMap: + description: configMap represents a configMap that should populate this volume + type: object + properties: + defaultMode: + description: 'defaultMode is optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + items: + description: items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + type: array + items: + description: Maps a string key to a path within a volume. + type: object + required: + - key + - path + properties: + key: + description: key is the key to project. + type: string + mode: + description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: optional specify whether the ConfigMap or its keys must be defined + type: boolean + x-kubernetes-map-type: atomic + emptyDir: + description: This is accessible behind a feature flag - kubernetes.podspec-emptydir + type: object + x-kubernetes-preserve-unknown-fields: true + name: + description: 'name of the volume. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + persistentVolumeClaim: + description: This is accessible behind a feature flag - kubernetes.podspec-persistent-volume-claim + type: object + x-kubernetes-preserve-unknown-fields: true + projected: + description: projected items for all in one resources secrets, configmaps, and downward API + type: object + properties: + defaultMode: + description: defaultMode are the mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. + type: integer + format: int32 + sources: + description: sources is the list of volume projections + type: array + items: + description: Projection that may be projected along with other supported volume types + type: object + properties: + configMap: + description: configMap information about the configMap data to project + type: object + properties: + items: + description: items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + type: array + items: + description: Maps a string key to a path within a volume. + type: object + required: + - key + - path + properties: + key: + description: key is the key to project. + type: string + mode: + description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: optional specify whether the ConfigMap or its keys must be defined + type: boolean + x-kubernetes-map-type: atomic + downwardAPI: + description: downwardAPI information about the downwardAPI data to project + type: object + properties: + items: + description: Items is a list of DownwardAPIVolume file + type: array + items: + description: DownwardAPIVolumeFile represents information to create the file containing the pod field + type: object + required: + - path + properties: + fieldRef: + description: 'Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.' + type: object + required: + - fieldPath + properties: + apiVersion: + description: Version of the schema the FieldPath is written in terms of, defaults to "v1". + type: string + fieldPath: + description: Path of the field to select in the specified API version. + type: string + x-kubernetes-map-type: atomic + mode: + description: 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: 'Required: Path is the relative path name of the file to be created. Must not be absolute or contain the ''..'' path. Must be utf-8 encoded. The first item of the relative path must not start with ''..''' + type: string + resourceFieldRef: + description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.' + type: object + required: + - resource + properties: + containerName: + description: 'Container name: required for volumes, optional for env vars' + type: string + divisor: + description: Specifies the output format of the exposed resources, defaults to "1" + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + resource: + description: 'Required: resource to select' + type: string + x-kubernetes-map-type: atomic + secret: + description: secret information about the secret data to project + type: object + properties: + items: + description: items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + type: array + items: + description: Maps a string key to a path within a volume. + type: object + required: + - key + - path + properties: + key: + description: key is the key to project. + type: string + mode: + description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: optional field specify whether the Secret or its key must be defined + type: boolean + x-kubernetes-map-type: atomic + serviceAccountToken: + description: serviceAccountToken is information about the serviceAccountToken data to project + type: object + required: + - path + properties: + audience: + description: audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver. + type: string + expirationSeconds: + description: expirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes. + type: integer + format: int64 + path: + description: path is the path relative to the mount point of the file to project the token into. + type: string + secret: + description: 'secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' + type: object + properties: + defaultMode: + description: 'defaultMode is Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + items: + description: items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + type: array + items: + description: Maps a string key to a path within a volume. + type: object + required: + - key + - path + properties: + key: + description: key is the key to project. + type: string + mode: + description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + type: string + optional: + description: optional field specify whether the Secret or its keys must be defined + type: boolean + secretName: + description: 'secretName is the name of the secret in the pod''s namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' + type: string + status: + description: RevisionStatus communicates the observed state of the Revision (from the controller). + type: object + properties: + actualReplicas: + description: ActualReplicas reflects the amount of ready pods running this revision. + type: integer + format: int32 + annotations: + description: Annotations is additional Status fields for the Resource to save some additional State as well as convey more information to the user. This is roughly akin to Annotations on any k8s resource, just the reconciler conveying richer information outwards. + type: object + additionalProperties: + type: string + conditions: + description: Conditions the latest available observations of a resource's current state. + type: array + items: + description: 'Condition defines a readiness condition for a Knative resource. See: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties' + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the last time the condition transitioned from one status to another. We use VolatileTime in place of metav1.Time to exclude this from creating equality.Semantic differences (all other things held constant). + type: string + message: + description: A human readable message indicating details about the transition. + type: string + reason: + description: The reason for the condition's last transition. + type: string + severity: + description: Severity with which to treat failures of this type of condition. When this is not specified, it defaults to Error. + type: string + status: + description: Status of the condition, one of True, False, Unknown. + type: string + type: + description: Type of condition. + type: string + containerStatuses: + description: 'ContainerStatuses is a slice of images present in .Spec.Container[*].Image to their respective digests and their container name. The digests are resolved during the creation of Revision. ContainerStatuses holds the container name and image digests for both serving and non serving containers. ref: http://bit.ly/image-digests' + type: array + items: + description: ContainerStatus holds the information of container name and image digest value + type: object + properties: + imageDigest: + type: string + name: + type: string + desiredReplicas: + description: DesiredReplicas reflects the desired amount of pods running this revision. + type: integer + format: int32 + initContainerStatuses: + description: 'InitContainerStatuses is a slice of images present in .Spec.InitContainer[*].Image to their respective digests and their container name. The digests are resolved during the creation of Revision. ContainerStatuses holds the container name and image digests for both serving and non serving containers. ref: http://bit.ly/image-digests' + type: array + items: + description: ContainerStatus holds the information of container name and image digest value + type: object + properties: + imageDigest: + type: string + name: + type: string + logUrl: + description: LogURL specifies the generated logging url for this particular revision based on the revision url template specified in the controller's config. + type: string + observedGeneration: + description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. + type: integer + format: int64 +--- +# Copyright 2019 The Knative Authors +# +# 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 +# +# https://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. + +# Note: The schema part of the spec is auto-generated by hack/update-schemas.sh. + +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: routes.serving.knative.dev + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" + knative.dev/crd-install: "true" + duck.knative.dev/addressable: "true" +spec: + group: serving.knative.dev + names: + kind: Route + plural: routes + singular: route + categories: + - all + - knative + - serving + shortNames: + - rt + scope: Namespaced + versions: + - name: v1 + served: true + storage: true + subresources: + status: {} + additionalPrinterColumns: + - name: URL + type: string + jsonPath: .status.url + - name: Ready + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].status" + - name: Reason + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].reason" + schema: + openAPIV3Schema: + description: 'Route is responsible for configuring ingress over a collection of Revisions. Some of the Revisions a Route distributes traffic over may be specified by referencing the Configuration responsible for creating them; in these cases the Route is additionally responsible for monitoring the Configuration for "latest ready revision" changes, and smoothly rolling out latest revisions. See also: https://github.com/knative/serving/blob/main/docs/spec/overview.md#route' + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: Spec holds the desired state of the Route (from the client). + type: object + properties: + traffic: + description: Traffic specifies how to distribute traffic over a collection of revisions and configurations. + type: array + items: + description: TrafficTarget holds a single entry of the routing table for a Route. + type: object + properties: + configurationName: + description: ConfigurationName of a configuration to whose latest revision we will send this portion of traffic. When the "status.latestReadyRevisionName" of the referenced configuration changes, we will automatically migrate traffic from the prior "latest ready" revision to the new one. This field is never set in Route's status, only its spec. This is mutually exclusive with RevisionName. + type: string + latestRevision: + description: LatestRevision may be optionally provided to indicate that the latest ready Revision of the Configuration should be used for this traffic target. When provided LatestRevision must be true if RevisionName is empty; it must be false when RevisionName is non-empty. + type: boolean + percent: + description: 'Percent indicates that percentage based routing should be used and the value indicates the percent of traffic that is be routed to this Revision or Configuration. `0` (zero) mean no traffic, `100` means all traffic. When percentage based routing is being used the follow rules apply: - the sum of all percent values must equal 100 - when not specified, the implied value for `percent` is zero for that particular Revision or Configuration' + type: integer + format: int64 + revisionName: + description: RevisionName of a specific revision to which to send this portion of traffic. This is mutually exclusive with ConfigurationName. + type: string + tag: + description: Tag is optionally used to expose a dedicated url for referencing this target exclusively. + type: string + url: + description: URL displays the URL for accessing named traffic targets. URL is displayed in status, and is disallowed on spec. URL must contain a scheme (e.g. http://) and a hostname, but may not contain anything else (e.g. basic auth, url path, etc.) + type: string + status: + description: Status communicates the observed state of the Route (from the controller). + type: object + properties: + address: + description: Address holds the information needed for a Route to be the target of an event. + type: object + properties: + CACerts: + description: CACerts is the Certification Authority (CA) certificates in PEM format according to https://www.rfc-editor.org/rfc/rfc7468. + type: string + name: + description: Name is the name of the address. + type: string + url: + type: string + annotations: + description: Annotations is additional Status fields for the Resource to save some additional State as well as convey more information to the user. This is roughly akin to Annotations on any k8s resource, just the reconciler conveying richer information outwards. + type: object + additionalProperties: + type: string + conditions: + description: Conditions the latest available observations of a resource's current state. + type: array + items: + description: 'Condition defines a readiness condition for a Knative resource. See: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties' + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the last time the condition transitioned from one status to another. We use VolatileTime in place of metav1.Time to exclude this from creating equality.Semantic differences (all other things held constant). + type: string + message: + description: A human readable message indicating details about the transition. + type: string + reason: + description: The reason for the condition's last transition. + type: string + severity: + description: Severity with which to treat failures of this type of condition. When this is not specified, it defaults to Error. + type: string + status: + description: Status of the condition, one of True, False, Unknown. + type: string + type: + description: Type of condition. + type: string + observedGeneration: + description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. + type: integer + format: int64 + traffic: + description: Traffic holds the configured traffic distribution. These entries will always contain RevisionName references. When ConfigurationName appears in the spec, this will hold the LatestReadyRevisionName that we last observed. + type: array + items: + description: TrafficTarget holds a single entry of the routing table for a Route. + type: object + properties: + configurationName: + description: ConfigurationName of a configuration to whose latest revision we will send this portion of traffic. When the "status.latestReadyRevisionName" of the referenced configuration changes, we will automatically migrate traffic from the prior "latest ready" revision to the new one. This field is never set in Route's status, only its spec. This is mutually exclusive with RevisionName. + type: string + latestRevision: + description: LatestRevision may be optionally provided to indicate that the latest ready Revision of the Configuration should be used for this traffic target. When provided LatestRevision must be true if RevisionName is empty; it must be false when RevisionName is non-empty. + type: boolean + percent: + description: 'Percent indicates that percentage based routing should be used and the value indicates the percent of traffic that is be routed to this Revision or Configuration. `0` (zero) mean no traffic, `100` means all traffic. When percentage based routing is being used the follow rules apply: - the sum of all percent values must equal 100 - when not specified, the implied value for `percent` is zero for that particular Revision or Configuration' + type: integer + format: int64 + revisionName: + description: RevisionName of a specific revision to which to send this portion of traffic. This is mutually exclusive with ConfigurationName. + type: string + tag: + description: Tag is optionally used to expose a dedicated url for referencing this target exclusively. + type: string + url: + description: URL displays the URL for accessing named traffic targets. URL is displayed in status, and is disallowed on spec. URL must contain a scheme (e.g. http://) and a hostname, but may not contain anything else (e.g. basic auth, url path, etc.) + type: string + url: + description: URL holds the url that will distribute traffic over the provided traffic targets. It generally has the form http[s]://{route-name}.{route-namespace}.{cluster-level-suffix} + type: string +--- +# Copyright 2019 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: serverlessservices.networking.internal.knative.dev + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/component: networking + app.kubernetes.io/version: "release-v1.2" + knative.dev/crd-install: "true" +spec: + group: networking.internal.knative.dev + versions: + - name: v1alpha1 + served: true + storage: true + subresources: + status: {} + schema: + openAPIV3Schema: + description: 'ServerlessService is a proxy for the K8s service objects containing the endpoints for the revision, whether those are endpoints of the activator or revision pods. See: https://knative.page.link/naxz for details.' + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: 'Spec is the desired state of the ServerlessService. More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' + type: object + required: + - objectRef + - protocolType + properties: + mode: + description: Mode describes the mode of operation of the ServerlessService. + type: string + numActivators: + description: NumActivators contains number of Activators that this revision should be assigned. O means — assign all. + type: integer + format: int32 + objectRef: + description: ObjectRef defines the resource that this ServerlessService is responsible for making "serverless". + type: object + properties: + apiVersion: + description: API version of the referent. + type: string + fieldPath: + description: 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object. TODO: this design is not final and this field is subject to change in the future.' + type: string + kind: + description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + namespace: + description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/' + type: string + resourceVersion: + description: 'Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency' + type: string + uid: + description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids' + type: string + x-kubernetes-map-type: atomic + protocolType: + description: The application-layer protocol. Matches `RevisionProtocolType` set on the owning pa/revision. serving imports networking, so just use string. + type: string + status: + description: 'Status is the current state of the ServerlessService. More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' + type: object + properties: + annotations: + description: Annotations is additional Status fields for the Resource to save some additional State as well as convey more information to the user. This is roughly akin to Annotations on any k8s resource, just the reconciler conveying richer information outwards. + type: object + additionalProperties: + type: string + conditions: + description: Conditions the latest available observations of a resource's current state. + type: array + items: + description: 'Condition defines a readiness condition for a Knative resource. See: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties' + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the last time the condition transitioned from one status to another. We use VolatileTime in place of metav1.Time to exclude this from creating equality.Semantic differences (all other things held constant). + type: string + message: + description: A human readable message indicating details about the transition. + type: string + reason: + description: The reason for the condition's last transition. + type: string + severity: + description: Severity with which to treat failures of this type of condition. When this is not specified, it defaults to Error. + type: string + status: + description: Status of the condition, one of True, False, Unknown. + type: string + type: + description: Type of condition. + type: string + observedGeneration: + description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. + type: integer + format: int64 + privateServiceName: + description: PrivateServiceName holds the name of a core K8s Service resource that load balances over the user service pods backing this Revision. + type: string + serviceName: + description: ServiceName holds the name of a core K8s Service resource that load balances over the pods backing this Revision (activator or revision). + type: string + additionalPrinterColumns: + - name: Mode + type: string + jsonPath: ".spec.mode" + - name: Activators + type: integer + jsonPath: ".spec.numActivators" + - name: ServiceName + type: string + jsonPath: ".status.serviceName" + - name: PrivateServiceName + type: string + jsonPath: ".status.privateServiceName" + - name: Ready + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].status" + - name: Reason + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].reason" + names: + kind: ServerlessService + plural: serverlessservices + singular: serverlessservice + categories: + - knative-internal + - networking + shortNames: + - sks + scope: Namespaced +--- +# Copyright 2019 The Knative Authors +# +# 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 +# +# https://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. + +# Note: The schema part of the spec is auto-generated by hack/update-schemas.sh. + +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: services.serving.knative.dev + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" + knative.dev/crd-install: "true" + duck.knative.dev/addressable: "true" + duck.knative.dev/podspecable: "true" +spec: + group: serving.knative.dev + names: + kind: Service + plural: services + singular: service + categories: + - all + - knative + - serving + shortNames: + - kservice + - ksvc + scope: Namespaced + versions: + - name: v1 + served: true + storage: true + subresources: + status: {} + additionalPrinterColumns: + - name: URL + type: string + jsonPath: .status.url + - name: LatestCreated + type: string + jsonPath: .status.latestCreatedRevisionName + - name: LatestReady + type: string + jsonPath: .status.latestReadyRevisionName + - name: Ready + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].status" + - name: Reason + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].reason" + schema: + openAPIV3Schema: + description: "Service acts as a top-level container that manages a Route and Configuration which implement a network service. Service exists to provide a singular abstraction which can be access controlled, reasoned about, and which encapsulates software lifecycle decisions such as rollout policy and team resource ownership. Service acts only as an orchestrator of the underlying Routes and Configurations (much as a kubernetes Deployment orchestrates ReplicaSets), and its usage is optional but recommended. \n The Service's controller will track the statuses of its owned Configuration and Route, reflecting their statuses and conditions as its own. \n See also: https://github.com/knative/serving/blob/main/docs/spec/overview.md#service" + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: ServiceSpec represents the configuration for the Service object. A Service's specification is the union of the specifications for a Route and Configuration. The Service restricts what can be expressed in these fields, e.g. the Route must reference the provided Configuration; however, these limitations also enable friendlier defaulting, e.g. Route never needs a Configuration name, and may be defaulted to the appropriate "run latest" spec. + type: object + properties: + template: + description: Template holds the latest specification for the Revision to be stamped out. + type: object + properties: + metadata: + type: object + properties: + annotations: + type: object + additionalProperties: + type: string + finalizers: + type: array + items: + type: string + labels: + type: object + additionalProperties: + type: string + name: + type: string + namespace: + type: string + x-kubernetes-preserve-unknown-fields: true + spec: + description: RevisionSpec holds the desired state of the Revision (from the client). + type: object + required: + - containers + properties: + affinity: + description: This is accessible behind a feature flag - kubernetes.podspec-affinity + type: object + x-kubernetes-preserve-unknown-fields: true + automountServiceAccountToken: + description: AutomountServiceAccountToken indicates whether a service account token should be automatically mounted. + type: boolean + containerConcurrency: + description: ContainerConcurrency specifies the maximum allowed in-flight (concurrent) requests per container of the Revision. Defaults to `0` which means concurrency to the application is not limited, and the system decides the target concurrency for the autoscaler. + type: integer + format: int64 + containers: + description: List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated. + type: array + items: + description: A single application container that you want to run within a pod. + type: object + properties: + args: + description: 'Arguments to the entrypoint. The container image''s CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' + type: array + items: + type: string + command: + description: 'Entrypoint array. Not executed within a shell. The container image''s ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' + type: array + items: + type: string + env: + description: List of environment variables to set in the container. Cannot be updated. + type: array + items: + description: EnvVar represents an environment variable present in a Container. + type: object + required: + - name + properties: + name: + description: Name of the environment variable. Must be a C_IDENTIFIER. + type: string + value: + description: 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".' + type: string + valueFrom: + description: Source for the environment variable's value. Cannot be used if value is not empty. + type: object + properties: + configMapKeyRef: + description: Selects a key of a ConfigMap. + type: object + required: + - key + properties: + key: + description: The key to select. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: Specify whether the ConfigMap or its key must be defined + type: boolean + x-kubernetes-map-type: atomic + fieldRef: + description: This is accessible behind a feature flag - kubernetes.podspec-fieldref + type: object + x-kubernetes-preserve-unknown-fields: true + x-kubernetes-map-type: atomic + resourceFieldRef: + description: This is accessible behind a feature flag - kubernetes.podspec-fieldref + type: object + x-kubernetes-preserve-unknown-fields: true + x-kubernetes-map-type: atomic + secretKeyRef: + description: Selects a key of a secret in the pod's namespace + type: object + required: + - key + properties: + key: + description: The key of the secret to select from. Must be a valid secret key. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: Specify whether the Secret or its key must be defined + type: boolean + x-kubernetes-map-type: atomic + envFrom: + description: List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated. + type: array + items: + description: EnvFromSource represents the source of a set of ConfigMaps + type: object + properties: + configMapRef: + description: The ConfigMap to select from + type: object + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: Specify whether the ConfigMap must be defined + type: boolean + x-kubernetes-map-type: atomic + prefix: + description: An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER. + type: string + secretRef: + description: The Secret to select from + type: object + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: Specify whether the Secret must be defined + type: boolean + x-kubernetes-map-type: atomic + image: + description: 'Container image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.' + type: string + imagePullPolicy: + description: 'Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images' + type: string + livenessProbe: + description: 'Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: object + properties: + exec: + description: Exec specifies the action to take. + type: object + properties: + command: + description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + type: array + items: + type: string + failureThreshold: + description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. + type: integer + format: int32 + httpGet: + description: HTTPGet specifies the http request to perform. + type: object + properties: + host: + description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the request. HTTP allows repeated headers. + type: array + items: + description: HTTPHeader describes a custom header to be used in HTTP probes + type: object + required: + - name + - value + properties: + name: + description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + path: + description: Path to access on the HTTP server. + type: string + port: + description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + description: Scheme to use for connecting to the host. Defaults to HTTP. + type: string + initialDelaySeconds: + description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: integer + format: int32 + periodSeconds: + description: How often (in seconds) to perform the probe. + type: integer + format: int32 + successThreshold: + description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + type: integer + format: int32 + tcpSocket: + description: TCPSocket specifies an action involving a TCP port. + type: object + properties: + host: + description: 'Optional: Host name to connect to, defaults to the pod IP.' + type: string + port: + description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + timeoutSeconds: + description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: integer + format: int32 + name: + description: Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. + type: string + ports: + description: List of ports to expose from the container. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Modifying this array with strategic merge patch may corrupt the data. For more information See https://github.com/kubernetes/kubernetes/issues/108255. Cannot be updated. + type: array + items: + description: ContainerPort represents a network port in a single container. + type: object + required: + - containerPort + properties: + containerPort: + description: Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536. + type: integer + format: int32 + name: + description: If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services. + type: string + protocol: + description: Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP". + type: string + default: TCP + x-kubernetes-list-map-keys: + - containerPort + - protocol + x-kubernetes-list-type: map + readinessProbe: + description: 'Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: object + properties: + exec: + description: Exec specifies the action to take. + type: object + properties: + command: + description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + type: array + items: + type: string + failureThreshold: + description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. + type: integer + format: int32 + httpGet: + description: HTTPGet specifies the http request to perform. + type: object + properties: + host: + description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the request. HTTP allows repeated headers. + type: array + items: + description: HTTPHeader describes a custom header to be used in HTTP probes + type: object + required: + - name + - value + properties: + name: + description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + path: + description: Path to access on the HTTP server. + type: string + port: + description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + description: Scheme to use for connecting to the host. Defaults to HTTP. + type: string + initialDelaySeconds: + description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: integer + format: int32 + periodSeconds: + description: How often (in seconds) to perform the probe. + type: integer + format: int32 + successThreshold: + description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + type: integer + format: int32 + tcpSocket: + description: TCPSocket specifies an action involving a TCP port. + type: object + properties: + host: + description: 'Optional: Host name to connect to, defaults to the pod IP.' + type: string + port: + description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + timeoutSeconds: + description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: integer + format: int32 + resources: + description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + type: object + properties: + claims: + description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers." + type: array + items: + description: ResourceClaim references one entry in PodSpec.ResourceClaims. + type: object + required: + - name + properties: + name: + description: Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container. + type: string + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + limits: + description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + type: object + additionalProperties: + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + requests: + description: 'Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + type: object + additionalProperties: + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + securityContext: + description: 'SecurityContext defines the security options the container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/' + type: object + properties: + allowPrivilegeEscalation: + description: 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.' + type: boolean + capabilities: + description: The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows. + type: object + properties: + add: + description: This is accessible behind a feature flag - kubernetes.containerspec-addcapabilities + type: array + items: + description: Capability represent POSIX capabilities type + type: string + drop: + description: Removed capabilities + type: array + items: + description: Capability represent POSIX capabilities type + type: string + readOnlyRootFilesystem: + description: Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows. + type: boolean + runAsGroup: + description: The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows. + type: integer + format: int64 + runAsNonRoot: + description: Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + type: boolean + runAsUser: + description: The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows. + type: integer + format: int64 + seccompProfile: + description: The seccomp options to use by this container. If seccomp options are provided at both the pod & container level, the container options override the pod options. Note that this field cannot be set when spec.os.name is windows. + type: object + required: + - type + properties: + localhostProfile: + description: localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is "Localhost". + type: string + type: + description: "type indicates which kind of seccomp profile will be applied. Valid options are: \n Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied." + type: string + terminationMessagePath: + description: 'Optional: Path at which the file to which the container''s termination message will be written is mounted into the container''s filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.' + type: string + terminationMessagePolicy: + description: Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated. + type: string + volumeMounts: + description: Pod volumes to mount into the container's filesystem. Cannot be updated. + type: array + items: + description: VolumeMount describes a mounting of a Volume within a container. + type: object + required: + - mountPath + - name + properties: + mountPath: + description: Path within the container at which the volume should be mounted. Must not contain ':'. + type: string + name: + description: This must match the Name of a Volume. + type: string + readOnly: + description: Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false. + type: boolean + subPath: + description: Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root). + type: string + workingDir: + description: Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated. + type: string + dnsConfig: + description: This is accessible behind a feature flag - kubernetes.podspec-dnsconfig + type: object + x-kubernetes-preserve-unknown-fields: true + dnsPolicy: + description: This is accessible behind a feature flag - kubernetes.podspec-dnspolicy + type: string + enableServiceLinks: + description: 'EnableServiceLinks indicates whether information about services should be injected into pod''s environment variables, matching the syntax of Docker links. Optional: Knative defaults this to false.' + type: boolean + hostAliases: + description: This is accessible behind a feature flag - kubernetes.podspec-hostaliases + type: array + items: + description: This is accessible behind a feature flag - kubernetes.podspec-hostaliases + type: object + x-kubernetes-preserve-unknown-fields: true + idleTimeoutSeconds: + description: IdleTimeoutSeconds is the maximum duration in seconds a request will be allowed to stay open while not receiving any bytes from the user's application. If unspecified, a system default will be provided. + type: integer + format: int64 + imagePullSecrets: + description: 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod' + type: array + items: + description: LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace. + type: object + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + x-kubernetes-map-type: atomic + initContainers: + description: 'List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/' + type: array + items: + description: This is accessible behind a feature flag - kubernetes.podspec-init-containers + type: object + x-kubernetes-preserve-unknown-fields: true + nodeSelector: + description: This is accessible behind a feature flag - kubernetes.podspec-nodeselector + type: object + x-kubernetes-preserve-unknown-fields: true + x-kubernetes-map-type: atomic + priorityClassName: + description: This is accessible behind a feature flag - kubernetes.podspec-priorityclassname + type: string + x-kubernetes-preserve-unknown-fields: true + responseStartTimeoutSeconds: + description: ResponseStartTimeoutSeconds is the maximum duration in seconds that the request routing layer will wait for a request delivered to a container to begin sending any network traffic. + type: integer + format: int64 + runtimeClassName: + description: This is accessible behind a feature flag - kubernetes.podspec-runtimeclassname + type: string + x-kubernetes-preserve-unknown-fields: true + schedulerName: + description: This is accessible behind a feature flag - kubernetes.podspec-schedulername + type: string + x-kubernetes-preserve-unknown-fields: true + securityContext: + description: This is accessible behind a feature flag - kubernetes.podspec-securitycontext + type: object + x-kubernetes-preserve-unknown-fields: true + serviceAccountName: + description: 'ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/' + type: string + timeoutSeconds: + description: TimeoutSeconds is the maximum duration in seconds that the request instance is allowed to respond to a request. If unspecified, a system default will be provided. + type: integer + format: int64 + tolerations: + description: This is accessible behind a feature flag - kubernetes.podspec-tolerations + type: array + items: + description: This is accessible behind a feature flag - kubernetes.podspec-tolerations + type: object + x-kubernetes-preserve-unknown-fields: true + topologySpreadConstraints: + description: This is accessible behind a feature flag - kubernetes.podspec-topologyspreadconstraints + type: array + items: + description: This is accessible behind a feature flag - kubernetes.podspec-topologyspreadconstraints + type: object + x-kubernetes-preserve-unknown-fields: true + volumes: + description: 'List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes' + type: array + items: + description: Volume represents a named volume in a pod that may be accessed by any container in the pod. + type: object + required: + - name + properties: + configMap: + description: configMap represents a configMap that should populate this volume + type: object + properties: + defaultMode: + description: 'defaultMode is optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + items: + description: items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + type: array + items: + description: Maps a string key to a path within a volume. + type: object + required: + - key + - path + properties: + key: + description: key is the key to project. + type: string + mode: + description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: optional specify whether the ConfigMap or its keys must be defined + type: boolean + x-kubernetes-map-type: atomic + emptyDir: + description: This is accessible behind a feature flag - kubernetes.podspec-emptydir + type: object + x-kubernetes-preserve-unknown-fields: true + name: + description: 'name of the volume. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + persistentVolumeClaim: + description: This is accessible behind a feature flag - kubernetes.podspec-persistent-volume-claim + type: object + x-kubernetes-preserve-unknown-fields: true + projected: + description: projected items for all in one resources secrets, configmaps, and downward API + type: object + properties: + defaultMode: + description: defaultMode are the mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. + type: integer + format: int32 + sources: + description: sources is the list of volume projections + type: array + items: + description: Projection that may be projected along with other supported volume types + type: object + properties: + configMap: + description: configMap information about the configMap data to project + type: object + properties: + items: + description: items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + type: array + items: + description: Maps a string key to a path within a volume. + type: object + required: + - key + - path + properties: + key: + description: key is the key to project. + type: string + mode: + description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: optional specify whether the ConfigMap or its keys must be defined + type: boolean + x-kubernetes-map-type: atomic + downwardAPI: + description: downwardAPI information about the downwardAPI data to project + type: object + properties: + items: + description: Items is a list of DownwardAPIVolume file + type: array + items: + description: DownwardAPIVolumeFile represents information to create the file containing the pod field + type: object + required: + - path + properties: + fieldRef: + description: 'Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.' + type: object + required: + - fieldPath + properties: + apiVersion: + description: Version of the schema the FieldPath is written in terms of, defaults to "v1". + type: string + fieldPath: + description: Path of the field to select in the specified API version. + type: string + x-kubernetes-map-type: atomic + mode: + description: 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: 'Required: Path is the relative path name of the file to be created. Must not be absolute or contain the ''..'' path. Must be utf-8 encoded. The first item of the relative path must not start with ''..''' + type: string + resourceFieldRef: + description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.' + type: object + required: + - resource + properties: + containerName: + description: 'Container name: required for volumes, optional for env vars' + type: string + divisor: + description: Specifies the output format of the exposed resources, defaults to "1" + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + resource: + description: 'Required: resource to select' + type: string + x-kubernetes-map-type: atomic + secret: + description: secret information about the secret data to project + type: object + properties: + items: + description: items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + type: array + items: + description: Maps a string key to a path within a volume. + type: object + required: + - key + - path + properties: + key: + description: key is the key to project. + type: string + mode: + description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: optional field specify whether the Secret or its key must be defined + type: boolean + x-kubernetes-map-type: atomic + serviceAccountToken: + description: serviceAccountToken is information about the serviceAccountToken data to project + type: object + required: + - path + properties: + audience: + description: audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver. + type: string + expirationSeconds: + description: expirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes. + type: integer + format: int64 + path: + description: path is the path relative to the mount point of the file to project the token into. + type: string + secret: + description: 'secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' + type: object + properties: + defaultMode: + description: 'defaultMode is Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + items: + description: items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + type: array + items: + description: Maps a string key to a path within a volume. + type: object + required: + - key + - path + properties: + key: + description: key is the key to project. + type: string + mode: + description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + type: string + optional: + description: optional field specify whether the Secret or its keys must be defined + type: boolean + secretName: + description: 'secretName is the name of the secret in the pod''s namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' + type: string + traffic: + description: Traffic specifies how to distribute traffic over a collection of revisions and configurations. + type: array + items: + description: TrafficTarget holds a single entry of the routing table for a Route. + type: object + properties: + configurationName: + description: ConfigurationName of a configuration to whose latest revision we will send this portion of traffic. When the "status.latestReadyRevisionName" of the referenced configuration changes, we will automatically migrate traffic from the prior "latest ready" revision to the new one. This field is never set in Route's status, only its spec. This is mutually exclusive with RevisionName. + type: string + latestRevision: + description: LatestRevision may be optionally provided to indicate that the latest ready Revision of the Configuration should be used for this traffic target. When provided LatestRevision must be true if RevisionName is empty; it must be false when RevisionName is non-empty. + type: boolean + percent: + description: 'Percent indicates that percentage based routing should be used and the value indicates the percent of traffic that is be routed to this Revision or Configuration. `0` (zero) mean no traffic, `100` means all traffic. When percentage based routing is being used the follow rules apply: - the sum of all percent values must equal 100 - when not specified, the implied value for `percent` is zero for that particular Revision or Configuration' + type: integer + format: int64 + revisionName: + description: RevisionName of a specific revision to which to send this portion of traffic. This is mutually exclusive with ConfigurationName. + type: string + tag: + description: Tag is optionally used to expose a dedicated url for referencing this target exclusively. + type: string + url: + description: URL displays the URL for accessing named traffic targets. URL is displayed in status, and is disallowed on spec. URL must contain a scheme (e.g. http://) and a hostname, but may not contain anything else (e.g. basic auth, url path, etc.) + type: string + status: + description: ServiceStatus represents the Status stanza of the Service resource. + type: object + properties: + address: + description: Address holds the information needed for a Route to be the target of an event. + type: object + properties: + CACerts: + description: CACerts is the Certification Authority (CA) certificates in PEM format according to https://www.rfc-editor.org/rfc/rfc7468. + type: string + name: + description: Name is the name of the address. + type: string + url: + type: string + annotations: + description: Annotations is additional Status fields for the Resource to save some additional State as well as convey more information to the user. This is roughly akin to Annotations on any k8s resource, just the reconciler conveying richer information outwards. + type: object + additionalProperties: + type: string + conditions: + description: Conditions the latest available observations of a resource's current state. + type: array + items: + description: 'Condition defines a readiness condition for a Knative resource. See: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties' + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the last time the condition transitioned from one status to another. We use VolatileTime in place of metav1.Time to exclude this from creating equality.Semantic differences (all other things held constant). + type: string + message: + description: A human readable message indicating details about the transition. + type: string + reason: + description: The reason for the condition's last transition. + type: string + severity: + description: Severity with which to treat failures of this type of condition. When this is not specified, it defaults to Error. + type: string + status: + description: Status of the condition, one of True, False, Unknown. + type: string + type: + description: Type of condition. + type: string + latestCreatedRevisionName: + description: LatestCreatedRevisionName is the last revision that was created from this Configuration. It might not be ready yet, for that use LatestReadyRevisionName. + type: string + latestReadyRevisionName: + description: LatestReadyRevisionName holds the name of the latest Revision stamped out from this Configuration that has had its "Ready" condition become "True". + type: string + observedGeneration: + description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. + type: integer + format: int64 + traffic: + description: Traffic holds the configured traffic distribution. These entries will always contain RevisionName references. When ConfigurationName appears in the spec, this will hold the LatestReadyRevisionName that we last observed. + type: array + items: + description: TrafficTarget holds a single entry of the routing table for a Route. + type: object + properties: + configurationName: + description: ConfigurationName of a configuration to whose latest revision we will send this portion of traffic. When the "status.latestReadyRevisionName" of the referenced configuration changes, we will automatically migrate traffic from the prior "latest ready" revision to the new one. This field is never set in Route's status, only its spec. This is mutually exclusive with RevisionName. + type: string + latestRevision: + description: LatestRevision may be optionally provided to indicate that the latest ready Revision of the Configuration should be used for this traffic target. When provided LatestRevision must be true if RevisionName is empty; it must be false when RevisionName is non-empty. + type: boolean + percent: + description: 'Percent indicates that percentage based routing should be used and the value indicates the percent of traffic that is be routed to this Revision or Configuration. `0` (zero) mean no traffic, `100` means all traffic. When percentage based routing is being used the follow rules apply: - the sum of all percent values must equal 100 - when not specified, the implied value for `percent` is zero for that particular Revision or Configuration' + type: integer + format: int64 + revisionName: + description: RevisionName of a specific revision to which to send this portion of traffic. This is mutually exclusive with ConfigurationName. + type: string + tag: + description: Tag is optionally used to expose a dedicated url for referencing this target exclusively. + type: string + url: + description: URL displays the URL for accessing named traffic targets. URL is displayed in status, and is disallowed on spec. URL must contain a scheme (e.g. http://) and a hostname, but may not contain anything else (e.g. basic auth, url path, etc.) + type: string + url: + description: URL holds the url that will distribute traffic over the provided traffic targets. It generally has the form http[s]://{route-name}.{route-namespace}.{cluster-level-suffix} + type: string +--- +# Copyright 2022 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: v1 +kind: Secret +metadata: + # Do not drop -ctrl-ca suffix as certificate creation requires it + # https://github.com/knative/networking/blob/main/pkg/certificates/reconciler/controller.go#L38 + name: serving-certs-ctrl-ca + namespace: knative-serving + labels: + serving-certs-ctrl: "data-plane" + networking.internal.knative.dev/certificate-uid: "serving-certs" +# The data is populated when internal-encryption is enabled. +--- +apiVersion: v1 +kind: Secret +metadata: + name: knative-serving-certs + namespace: knative-serving + labels: + serving-certs-ctrl: "data-plane" + networking.internal.knative.dev/certificate-uid: "serving-certs" +# The data is populated when internal-encryption is enabled. +--- +apiVersion: v1 +kind: Secret +metadata: + name: control-serving-certs + namespace: knative-serving + labels: + serving-certs-ctrl: "control-plane" + networking.internal.knative.dev/certificate-uid: "serving-certs" +# The data is populated when internal-encryption is enabled. +--- +apiVersion: v1 +kind: Secret +metadata: + name: routing-serving-certs + namespace: knative-serving + labels: + serving-certs-ctrl: "data-plane-routing" + routing-id: "0" + networking.internal.knative.dev/certificate-uid: "serving-certs" +# The data is populated when internal-encryption is enabled. +--- +# Copyright 2018 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: caching.internal.knative.dev/v1alpha1 +kind: Image +metadata: + name: queue-proxy + namespace: knative-serving + labels: + app.kubernetes.io/component: queue-proxy + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" +spec: + # This is the Go import path for the binary that is containerized + # and substituted here. + image: ko://knative.dev/serving/cmd/queue +--- +# Copyright 2018 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: v1 +kind: ConfigMap +metadata: + name: config-autoscaler + namespace: knative-serving + labels: + app.kubernetes.io/component: autoscaler + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" + annotations: + knative.dev/example-checksum: "47c2487f" +data: + _example: | + ################################ + # # + # EXAMPLE CONFIGURATION # + # # + ################################ + + # This block is not actually functional configuration, + # but serves to illustrate the available configuration + # options and document them in a way that is accessible + # to users that `kubectl edit` this config map. + # + # These sample configuration options may be copied out of + # this example block and unindented to be in the data block + # to actually change the configuration. + + # The Revision ContainerConcurrency field specifies the maximum number + # of requests the Container can handle at once. Container concurrency + # target percentage is how much of that maximum to use in a stable + # state. E.g. if a Revision specifies ContainerConcurrency of 10, then + # the Autoscaler will try to maintain 7 concurrent connections per pod + # on average. + # Note: this limit will be applied to container concurrency set at every + # level (ConfigMap, Revision Spec or Annotation). + # For legacy and backwards compatibility reasons, this value also accepts + # fractional values in (0, 1] interval (i.e. 0.7 ⇒ 70%). + # Thus minimal percentage value must be greater than 1.0, or it will be + # treated as a fraction. + # NOTE: that this value does not affect actual number of concurrent requests + # the user container may receive, but only the average number of requests + # that the revision pods will receive. + container-concurrency-target-percentage: "70" + + # The container concurrency target default is what the Autoscaler will + # try to maintain when concurrency is used as the scaling metric for the + # Revision and the Revision specifies unlimited concurrency. + # When revision explicitly specifies container concurrency, that value + # will be used as a scaling target for autoscaler. + # When specifying unlimited concurrency, the autoscaler will + # horizontally scale the application based on this target concurrency. + # This is what we call "soft limit" in the documentation, i.e. it only + # affects number of pods and does not affect the number of requests + # individual pod processes. + # The value must be a positive number such that the value multiplied + # by container-concurrency-target-percentage is greater than 0.01. + # NOTE: that this value will be adjusted by application of + # container-concurrency-target-percentage, i.e. by default + # the system will target on average 70 concurrent requests + # per revision pod. + # NOTE: Only one metric can be used for autoscaling a Revision. + container-concurrency-target-default: "100" + + # The requests per second (RPS) target default is what the Autoscaler will + # try to maintain when RPS is used as the scaling metric for a Revision and + # the Revision specifies unlimited RPS. Even when specifying unlimited RPS, + # the autoscaler will horizontally scale the application based on this + # target RPS. + # Must be greater than 1.0. + # NOTE: Only one metric can be used for autoscaling a Revision. + requests-per-second-target-default: "200" + + # The target burst capacity specifies the size of burst in concurrent + # requests that the system operator expects the system will receive. + # Autoscaler will try to protect the system from queueing by introducing + # Activator in the request path if the current spare capacity of the + # service is less than this setting. + # If this setting is 0, then Activator will be in the request path only + # when the revision is scaled to 0. + # If this setting is > 0 and container-concurrency-target-percentage is + # 100% or 1.0, then activator will always be in the request path. + # -1 denotes unlimited target-burst-capacity and activator will always + # be in the request path. + # Other negative values are invalid. + target-burst-capacity: "211" + + # When operating in a stable mode, the autoscaler operates on the + # average concurrency over the stable window. + # Stable window must be in whole seconds. + stable-window: "60s" + + # When observed average concurrency during the panic window reaches + # panic-threshold-percentage the target concurrency, the autoscaler + # enters panic mode. When operating in panic mode, the autoscaler + # scales on the average concurrency over the panic window which is + # panic-window-percentage of the stable-window. + # Must be in the [1, 100] range. + # When computing the panic window it will be rounded to the closest + # whole second, at least 1s. + panic-window-percentage: "10.0" + + # The percentage of the container concurrency target at which to + # enter panic mode when reached within the panic window. + panic-threshold-percentage: "200.0" + + # Max scale up rate limits the rate at which the autoscaler will + # increase pod count. It is the maximum ratio of desired pods versus + # observed pods. + # Cannot be less or equal to 1. + # I.e with value of 2.0 the number of pods can at most go N to 2N + # over single Autoscaler period (2s), but at least N to + # N+1, if Autoscaler needs to scale up. + max-scale-up-rate: "1000.0" + + # Max scale down rate limits the rate at which the autoscaler will + # decrease pod count. It is the maximum ratio of observed pods versus + # desired pods. + # Cannot be less or equal to 1. + # I.e. with value of 2.0 the number of pods can at most go N to N/2 + # over single Autoscaler evaluation period (2s), but at + # least N to N-1, if Autoscaler needs to scale down. + max-scale-down-rate: "2.0" + + # Scale to zero feature flag. + enable-scale-to-zero: "true" + + # Scale to zero grace period is the time an inactive revision is left + # running before it is scaled to zero (must be positive, but recommended + # at least a few seconds if running with mesh networking). + # This is the upper limit and is provided not to enforce timeout after + # the revision stopped receiving requests for stable window, but to + # ensure network reprogramming to put activator in the path has completed. + # If the system determines that a shorter period is satisfactory, + # then the system will only wait that amount of time before scaling to 0. + # NOTE: this period might actually be 0, if activator has been + # in the request path sufficiently long. + # If there is necessity for the last pod to linger longer use + # scale-to-zero-pod-retention-period flag. + scale-to-zero-grace-period: "30s" + + # Scale to zero pod retention period defines the minimum amount + # of time the last pod will remain after Autoscaler has decided to + # scale to zero. + # This flag is for the situations where the pod startup is very expensive + # and the traffic is bursty (requiring smaller windows for fast action), + # but patchy. + # The larger of this flag and `scale-to-zero-grace-period` will effectively + # determine how the last pod will hang around. + scale-to-zero-pod-retention-period: "0s" + + # pod-autoscaler-class specifies the default pod autoscaler class + # that should be used if none is specified. If omitted, + # the Knative Pod Autoscaler (KPA) is used by default. + pod-autoscaler-class: "kpa.autoscaling.knative.dev" + + # The capacity of a single activator task. + # The `unit` is one concurrent request proxied by the activator. + # activator-capacity must be at least 1. + # This value is used for computation of the Activator subset size. + # See the algorithm here: http://bit.ly/38XiCZ3. + # TODO(vagababov): tune after actual benchmarking. + activator-capacity: "100.0" + + # initial-scale is the cluster-wide default value for the initial target + # scale of a revision after creation, unless overridden by the + # "autoscaling.knative.dev/initialScale" annotation. + # This value must be greater than 0 unless allow-zero-initial-scale is true. + initial-scale: "1" + + # allow-zero-initial-scale controls whether either the cluster-wide initial-scale flag, + # or the "autoscaling.knative.dev/initialScale" annotation, can be set to 0. + allow-zero-initial-scale: "false" + + # min-scale is the cluster-wide default value for the min scale of a revision, + # unless overridden by the "autoscaling.knative.dev/minScale" annotation. + min-scale: "0" + + # max-scale is the cluster-wide default value for the max scale of a revision, + # unless overridden by the "autoscaling.knative.dev/maxScale" annotation. + # If set to 0, the revision has no maximum scale. + max-scale: "0" + + # scale-down-delay is the amount of time that must pass at reduced + # concurrency before a scale down decision is applied. This can be useful, + # for example, to maintain replica count and avoid a cold start penalty if + # more requests come in within the scale down delay period. + # The default, 0s, imposes no delay at all. + scale-down-delay: "0s" + + # max-scale-limit sets the maximum permitted value for the max scale of a revision. + # When this is set to a positive value, a revision with a maxScale above that value + # (including a maxScale of "0" = unlimited) is disallowed. + # A value of zero (the default) allows any limit, including unlimited. + max-scale-limit: "0" +--- +# Copyright 2019 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: v1 +kind: ConfigMap +metadata: + name: config-defaults + namespace: knative-serving + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/component: controller + app.kubernetes.io/version: "release-v1.2" + annotations: + knative.dev/example-checksum: "e7973912" +data: + _example: | + ################################ + # # + # EXAMPLE CONFIGURATION # + # # + ################################ + + # This block is not actually functional configuration, + # but serves to illustrate the available configuration + # options and document them in a way that is accessible + # to users that `kubectl edit` this config map. + # + # These sample configuration options may be copied out of + # this example block and unindented to be in the data block + # to actually change the configuration. + + # revision-timeout-seconds contains the default number of + # seconds to use for the revision's per-request timeout, if + # none is specified. + revision-timeout-seconds: "300" # 5 minutes + + # max-revision-timeout-seconds contains the maximum number of + # seconds that can be used for revision-timeout-seconds. + # This value must be greater than or equal to revision-timeout-seconds. + # If omitted, the system default is used (600 seconds). + # + # If this value is increased, the activator's terminationGraceTimeSeconds + # should also be increased to prevent in-flight requests being disrupted. + max-revision-timeout-seconds: "600" # 10 minutes + + # revision-response-start-timeout-seconds contains the default number of + # seconds a request will be allowed to stay open while waiting to + # receive any bytes from the user's application, if none is specified. + # + # This defaults to 'revision-timeout-seconds' + revision-response-start-timeout-seconds: "300" + + # revision-idle-timeout-seconds contains the default number of + # seconds a request will be allowed to stay open while not receiving any + # bytes from the user's application, if none is specified. + revision-idle-timeout-seconds: "0" # infinite + + # revision-cpu-request contains the cpu allocation to assign + # to revisions by default. If omitted, no value is specified + # and the system default is used. + # Below is an example of setting revision-cpu-request. + # By default, it is not set by Knative. + revision-cpu-request: "400m" # 0.4 of a CPU (aka 400 milli-CPU) + + # revision-memory-request contains the memory allocation to assign + # to revisions by default. If omitted, no value is specified + # and the system default is used. + # Below is an example of setting revision-memory-request. + # By default, it is not set by Knative. + revision-memory-request: "100M" # 100 megabytes of memory + + # revision-ephemeral-storage-request contains the ephemeral storage + # allocation to assign to revisions by default. If omitted, no value is + # specified and the system default is used. + revision-ephemeral-storage-request: "500M" # 500 megabytes of storage + + # revision-cpu-limit contains the cpu allocation to limit + # revisions to by default. If omitted, no value is specified + # and the system default is used. + # Below is an example of setting revision-cpu-limit. + # By default, it is not set by Knative. + revision-cpu-limit: "1000m" # 1 CPU (aka 1000 milli-CPU) + + # revision-memory-limit contains the memory allocation to limit + # revisions to by default. If omitted, no value is specified + # and the system default is used. + # Below is an example of setting revision-memory-limit. + # By default, it is not set by Knative. + revision-memory-limit: "200M" # 200 megabytes of memory + + # revision-ephemeral-storage-limit contains the ephemeral storage + # allocation to limit revisions to by default. If omitted, no value is + # specified and the system default is used. + revision-ephemeral-storage-limit: "750M" # 750 megabytes of storage + + # container-name-template contains a template for the default + # container name, if none is specified. This field supports + # Go templating and is supplied with the ObjectMeta of the + # enclosing Service or Configuration, so values such as + # {{.Name}} are also valid. + container-name-template: "user-container" + + # init-container-name-template contains a template for the default + # init container name, if none is specified. This field supports + # Go templating and is supplied with the ObjectMeta of the + # enclosing Service or Configuration, so values such as + # {{.Name}} are also valid. + init-container-name-template: "init-container" + + # container-concurrency specifies the maximum number + # of requests the Container can handle at once, and requests + # above this threshold are queued. Setting a value of zero + # disables this throttling and lets through as many requests as + # the pod receives. + container-concurrency: "0" + + # The container concurrency max limit is an operator setting ensuring that + # the individual revisions cannot have arbitrary large concurrency + # values, or autoscaling targets. `container-concurrency` default setting + # must be at or below this value. + # + # Must be greater than 1. + # + # Note: even with this set, a user can choose a containerConcurrency + # of 0 (i.e. unbounded) unless allow-container-concurrency-zero is + # set to "false". + container-concurrency-max-limit: "1000" + + # allow-container-concurrency-zero controls whether users can + # specify 0 (i.e. unbounded) for containerConcurrency. + allow-container-concurrency-zero: "true" + + # enable-service-links specifies the default value used for the + # enableServiceLinks field of the PodSpec, when it is omitted by the user. + # See: https://kubernetes.io/docs/concepts/services-networking/connect-applications-service/#accessing-the-service + # + # This is a tri-state flag with possible values of (true|false|default). + # + # In environments with large number of services it is suggested + # to set this value to `false`. + # See https://github.com/knative/serving/issues/8498. + enable-service-links: "false" +--- +# Copyright 2019 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: v1 +kind: ConfigMap +metadata: + name: config-deployment + namespace: knative-serving + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/component: controller + app.kubernetes.io/version: "release-v1.2" + annotations: + knative.dev/example-checksum: "ed77183a" +data: + # This is the Go import path for the binary that is containerized + # and substituted here. + queue-sidecar-image: ko://knative.dev/serving/cmd/queue + _example: |- + ################################ + # # + # EXAMPLE CONFIGURATION # + # # + ################################ + + # This block is not actually functional configuration, + # but serves to illustrate the available configuration + # options and document them in a way that is accessible + # to users that `kubectl edit` this config map. + # + # These sample configuration options may be copied out of + # this example block and unindented to be in the data block + # to actually change the configuration. + + # List of repositories for which tag to digest resolving should be skipped + registries-skipping-tag-resolving: "kind.local,ko.local,dev.local" + + # Maximum time allowed for an image's digests to be resolved. + digest-resolution-timeout: "10s" + + # Duration we wait for the deployment to be ready before considering it failed. + progress-deadline: "600s" + + # Sets the queue proxy's CPU request. + # If omitted, a default value (currently "25m"), is used. + queue-sidecar-cpu-request: "25m" + + # Sets the queue proxy's CPU limit. + # If omitted, a default value (currently "1000m"), is used when + # `queueproxy.resource-defaults` is set to `Enabled`. + queue-sidecar-cpu-limit: "1000m" + + # Sets the queue proxy's memory request. + # If omitted, a default value (currently "400Mi"), is used when + # `queueproxy.resource-defaults` is set to `Enabled`. + queue-sidecar-memory-request: "400Mi" + + # Sets the queue proxy's memory limit. + # If omitted, a default value (currently "800Mi"), is used when + # `queueproxy.resource-defaults` is set to `Enabled`. + queue-sidecar-memory-limit: "800Mi" + + # Sets the queue proxy's ephemeral storage request. + # If omitted, no value is specified and the system default is used. + queue-sidecar-ephemeral-storage-request: "512Mi" + + # Sets the queue proxy's ephemeral storage limit. + # If omitted, no value is specified and the system default is used. + queue-sidecar-ephemeral-storage-limit: "1024Mi" + + # Sets tokens associated with specific audiences for queue proxy - used by QPOptions + # + # For example, to add the `service-x` audience: + # queue-sidecar-token-audiences: "service-x" + # Also supports a list of audiences, for example: + # queue-sidecar-token-audiences: "service-x,service-y" + # If omitted, or empty, no tokens are created + queue-sidecar-token-audiences: "" + + # Sets rootCA for the queue proxy - used by QPOptions + # If omitted, or empty, no rootCA is added to the golang rootCAs + queue-sidecar-rootca: "" +--- +# Copyright 2018 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: v1 +kind: ConfigMap +metadata: + name: config-domain + namespace: knative-serving + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/component: controller + app.kubernetes.io/version: "release-v1.2" + annotations: + knative.dev/example-checksum: "26c09de5" +data: + _example: | + ################################ + # # + # EXAMPLE CONFIGURATION # + # # + ################################ + + # This block is not actually functional configuration, + # but serves to illustrate the available configuration + # options and document them in a way that is accessible + # to users that `kubectl edit` this config map. + # + # These sample configuration options may be copied out of + # this example block and unindented to be in the data block + # to actually change the configuration. + + # Default value for domain. + # Routes having the cluster domain suffix (by default 'svc.cluster.local') + # will not be exposed through Ingress. You can define your own label + # selector to assign that domain suffix to your Route here, or you can set + # the label + # "networking.knative.dev/visibility=cluster-local" + # to achieve the same effect. This shows how to make routes having + # the label app=secret only exposed to the local cluster. + svc.cluster.local: | + selector: + app: secret + + # These are example settings of domain. + # example.com will be used for all routes, but it is the least-specific rule so it + # will only be used if no other domain matches. + example.com: | + + # example.org will be used for routes having app=nonprofit. + example.org: | + selector: + app: nonprofit +--- +# Copyright 2020 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: v1 +kind: ConfigMap +metadata: + name: config-features + namespace: knative-serving + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/component: controller + app.kubernetes.io/version: "release-v1.2" + annotations: + knative.dev/example-checksum: "eb70e734" +data: + _example: |- + ################################ + # # + # EXAMPLE CONFIGURATION # + # # + ################################ + + # This block is not actually functional configuration, + # but serves to illustrate the available configuration + # options and document them in a way that is accessible + # to users that `kubectl edit` this config map. + # + # These sample configuration options may be copied out of + # this example block and unindented to be in the data block + # to actually change the configuration. + + # Default SecurityContext settings to secure-by-default values + # if unset. + # + # This value will default to "enabled" in a future release, + # probably Knative 1.10 + secure-pod-defaults: "disabled" + + # Indicates whether multi container support is enabled + # + # WARNING: Cannot safely be disabled once enabled. + # See: https://knative.dev/docs/serving/feature-flags/#multi-containers + multi-container: "enabled" + + # Indicates whether Kubernetes affinity support is enabled + # + # WARNING: Cannot safely be disabled once enabled. + # See: https://knative.dev/docs/serving/feature-flags/#kubernetes-node-affinity + kubernetes.podspec-affinity: "disabled" + + # Indicates whether Kubernetes topologySpreadConstraints support is enabled + # + # WARNING: Cannot safely be disabled once enabled. + # See: https://knative.dev/docs/serving/feature-flags/#kubernetes-topology-spread-constraints + kubernetes.podspec-topologyspreadconstraints: "disabled" + + # Indicates whether Kubernetes hostAliases support is enabled + # + # WARNING: Cannot safely be disabled once enabled. + # See: https://knative.dev/docs/serving/feature-flags/#kubernetes-host-aliases + kubernetes.podspec-hostaliases: "disabled" + + # Indicates whether Kubernetes nodeSelector support is enabled + # + # WARNING: Cannot safely be disabled once enabled. + # See: https://knative.dev/docs/serving/feature-flags/#kubernetes-node-selector + kubernetes.podspec-nodeselector: "disabled" + + # Indicates whether Kubernetes tolerations support is enabled + # + # WARNING: Cannot safely be disabled once enabled + # See: https://knative.dev/docs/serving/feature-flags/#kubernetes-toleration + kubernetes.podspec-tolerations: "disabled" + + # Indicates whether Kubernetes FieldRef support is enabled + # + # WARNING: Cannot safely be disabled once enabled. + # See: https://knative.dev/docs/serving/feature-flags/#kubernetes-fieldref + kubernetes.podspec-fieldref: "disabled" + + # Indicates whether Kubernetes RuntimeClassName support is enabled + # + # WARNING: Cannot safely be disabled once enabled. + # See: https://knative.dev/docs/serving/feature-flags/#kubernetes-runtime-class + kubernetes.podspec-runtimeclassname: "disabled" + + # Indicates whether Kubernetes DNSPolicy support is enabled + # + # WARNING: Cannot safely be disabled once enabled. + # See: https://knative.dev/docs/serving/feature-flags/#kubernetes-dnspolicy + kubernetes.podspec-dnspolicy: "disabled" + + # Indicates whether Kubernetes DNSConfig support is enabled + # + # WARNING: Cannot safely be disabled once enabled. + # See: https://knative.dev/docs/serving/feature-flags/#kubernetes-dnsconfig + kubernetes.podspec-dnsconfig: "disabled" + + # This feature allows end-users to set a subset of fields on the Pod's SecurityContext + # + # When set to "enabled" or "allowed" it allows the following + # PodSecurityContext properties: + # - FSGroup + # - RunAsGroup + # - RunAsNonRoot + # - SupplementalGroups + # - RunAsUser + # - SeccompProfile + # + # This feature flag should be used with caution as the PodSecurityContext + # properties may have a side-effect on non-user sidecar containers that come + # from Knative or your service mesh + # + # WARNING: Cannot safely be disabled once enabled. + # See: https://knative.dev/docs/serving/feature-flags/#kubernetes-security-context + kubernetes.podspec-securitycontext: "disabled" + + # Indicates whether Kubernetes PriorityClassName support is enabled + # + # WARNING: Cannot safely be disabled once enabled. + # See: https://knative.dev/docs/serving/feature-flags/#kubernetes-priority-class-name + kubernetes.podspec-priorityclassname: "disabled" + + # Indicates whether Kubernetes SchedulerName support is enabled + # + # WARNING: Cannot safely be disabled once enabled. + # See: https://knative.dev/docs/serving/feature-flags/#kubernetes-scheduler-name + kubernetes.podspec-schedulername: "disabled" + + # This feature flag allows end-users to add a subset of capabilities on the Pod's SecurityContext. + # + # When set to "enabled" or "allowed" it allows capabilities to be added to the container. + # For a list of possible capabilities, see https://man7.org/linux/man-pages/man7/capabilities.7.html + kubernetes.containerspec-addcapabilities: "disabled" + + # This feature validates PodSpecs from the validating webhook + # against the K8s API Server. + # + # When "enabled", the server will always run the extra validation. + # When "allowed", the server will not run the dry-run validation by default. + # However, clients may enable the behavior on an individual Service by + # attaching the following metadata annotation: "features.knative.dev/podspec-dryrun":"enabled". + # See: https://knative.dev/docs/serving/feature-flags/#kubernetes-dry-run + kubernetes.podspec-dryrun: "allowed" + + # Controls whether tag header based routing feature are enabled or not. + # 1. Enabled: enabling tag header based routing + # 2. Disabled: disabling tag header based routing + # See: https://knative.dev/docs/serving/feature-flags/#tag-header-based-routing + tag-header-based-routing: "disabled" + + # Controls whether http2 auto-detection should be enabled or not. + # 1. Enabled: http2 connection will be attempted via upgrade. + # 2. Disabled: http2 connection will only be attempted when port name is set to "h2c". + autodetect-http2: "disabled" + + # Controls whether volume support for EmptyDir is enabled or not. + # 1. Enabled: enabling EmptyDir volume support + # 2. Disabled: disabling EmptyDir volume support + kubernetes.podspec-volumes-emptydir: "enabled" + + # Controls whether init containers support is enabled or not. + # 1. Enabled: enabling init containers support + # 2. Disabled: disabling init containers support + kubernetes.podspec-init-containers: "disabled" + + # Controls whether persistent volume claim support is enabled or not. + # 1. Enabled: enabling persistent volume claim support + # 2. Disabled: disabling persistent volume claim support + kubernetes.podspec-persistent-volume-claim: "disabled" + + # Controls whether write access for persistent volumes is enabled or not. + # 1. Enabled: enabling write access for persistent volumes + # 2. Disabled: disabling write access for persistent volumes + kubernetes.podspec-persistent-volume-write: "disabled" + + # Controls if the queue proxy podInfo feature is enabled, allowed or disabled + # + # This feature should be enabled/allowed when using queue proxy Options (Extensions) + # Enabling will mount a podInfo volume to the queue proxy container. + # The volume will contains an 'annotations' file (from the pod's annotation field). + # The annotations in this file include the Service annotations set by the client creating the service. + # If mounted, the annotations can be accessed by queue proxy extensions at /etc/podinfo/annnotations + # + # 1. "enabled": always mount a podInfo volume + # 2. "disabled": never mount a podInfo volume + # 3. "allowed": by default, do not mount a podInfo volume + # However, a client may mount the podInfo volume on an individual Service by attaching + # the following metadata annotation to the Service: "features.knative.dev/queueproxy-podinfo":"enabled". + # + # NOTE THAT THIS IS AN EXPERIMENTAL / ALPHA FEATURE + queueproxy.mount-podinfo: "disabled" + + # Default queue proxy resource requests and limits to good values for most cases if set. + queueproxy.resource-defaults: "disabled" +--- +# Copyright 2018 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: v1 +kind: ConfigMap +metadata: + name: config-gc + namespace: knative-serving + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/component: controller + app.kubernetes.io/version: "release-v1.2" + annotations: + knative.dev/example-checksum: "aa3813a8" +data: + _example: | + ################################ + # # + # EXAMPLE CONFIGURATION # + # # + ################################ + + # This block is not actually functional configuration, + # but serves to illustrate the available configuration + # options and document them in a way that is accessible + # to users that `kubectl edit` this config map. + # + # These sample configuration options may be copied out of + # this example block and unindented to be in the data block + # to actually change the configuration. + + # --------------------------------------- + # Garbage Collector Settings + # --------------------------------------- + # + # Active + # * Revisions which are referenced by a Route are considered active. + # * Individual revisions may be marked with the annotation + # "serving.knative.dev/no-gc":"true" to be permanently considered active. + # * Active revisions are not considered for GC. + # Retention + # * Revisions are retained if they are any of the following: + # 1. Active + # 2. Were created within "retain-since-create-time" + # 3. Were last referenced by a route within + # "retain-since-last-active-time" + # 4. There are fewer than "min-non-active-revisions" + # If none of these conditions are met, or if the count of revisions exceed + # "max-non-active-revisions", they will be deleted by GC. + # The special value "disabled" may be used to turn off these limits. + # + # Example config to immediately collect any inactive revision: + # min-non-active-revisions: "0" + # max-non-active-revisions: "0" + # retain-since-create-time: "disabled" + # retain-since-last-active-time: "disabled" + # + # Example config to always keep around the last ten non-active revisions: + # retain-since-create-time: "disabled" + # retain-since-last-active-time: "disabled" + # max-non-active-revisions: "10" + # + # Example config to disable all garbage collection: + # retain-since-create-time: "disabled" + # retain-since-last-active-time: "disabled" + # max-non-active-revisions: "disabled" + # + # Example config to keep recently deployed or active revisions, + # always maintain the last two in case of rollback, and prevent + # burst activity from exploding the count of old revisions: + # retain-since-create-time: "48h" + # retain-since-last-active-time: "15h" + # min-non-active-revisions: "2" + # max-non-active-revisions: "1000" + + # Duration since creation before considering a revision for GC or "disabled". + retain-since-create-time: "48h" + + # Duration since active before considering a revision for GC or "disabled". + retain-since-last-active-time: "15h" + + # Minimum number of non-active revisions to retain. + min-non-active-revisions: "20" + + # Maximum number of non-active revisions to retain + # or "disabled" to disable any maximum limit. + max-non-active-revisions: "1000" +--- +# Copyright 2020 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: v1 +kind: ConfigMap +metadata: + name: config-leader-election + namespace: knative-serving + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/component: controller + app.kubernetes.io/version: "release-v1.2" + annotations: + knative.dev/example-checksum: "f4b71f57" +data: + _example: | + ################################ + # # + # EXAMPLE CONFIGURATION # + # # + ################################ + + # This block is not actually functional configuration, + # but serves to illustrate the available configuration + # options and document them in a way that is accessible + # to users that `kubectl edit` this config map. + # + # These sample configuration options may be copied out of + # this example block and unindented to be in the data block + # to actually change the configuration. + + # lease-duration is how long non-leaders will wait to try to acquire the + # lock; 15 seconds is the value used by core kubernetes controllers. + lease-duration: "60s" + + # renew-deadline is how long a leader will try to renew the lease before + # giving up; 10 seconds is the value used by core kubernetes controllers. + renew-deadline: "40s" + + # retry-period is how long the leader election client waits between tries of + # actions; 2 seconds is the value used by core kubernetes controllers. + retry-period: "10s" + + # buckets is the number of buckets used to partition key space of each + # Reconciler. If this number is M and the replica number of the controller + # is N, the N replicas will compete for the M buckets. The owner of a + # bucket will take care of the reconciling for the keys partitioned into + # that bucket. + buckets: "1" +--- +# Copyright 2018 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: v1 +kind: ConfigMap +metadata: + name: config-logging + namespace: knative-serving + labels: + app.kubernetes.io/version: "release-v1.2" + app.kubernetes.io/component: logging + app.kubernetes.io/name: knative-serving + annotations: + knative.dev/example-checksum: "53fda05f" +data: + _example: | + ################################ + # # + # EXAMPLE CONFIGURATION # + # # + ################################ + + # This block is not actually functional configuration, + # but serves to illustrate the available configuration + # options and document them in a way that is accessible + # to users that `kubectl edit` this config map. + # + # These sample configuration options may be copied out of + # this example block and unindented to be in the data block + # to actually change the configuration. + + # Common configuration for all Knative codebase + zap-logger-config: | + { + "level": "info", + "development": false, + "outputPaths": ["stdout"], + "errorOutputPaths": ["stderr"], + "encoding": "json", + "encoderConfig": { + "timeKey": "timestamp", + "levelKey": "severity", + "nameKey": "logger", + "callerKey": "caller", + "messageKey": "message", + "stacktraceKey": "stacktrace", + "lineEnding": "", + "levelEncoder": "", + "timeEncoder": "iso8601", + "durationEncoder": "", + "callerEncoder": "" + } + } + + # Log level overrides + # For all components except the queue proxy, + # changes are picked up immediately. + # For queue proxy, changes require recreation of the pods. + loglevel.controller: "info" + loglevel.autoscaler: "info" + loglevel.queueproxy: "info" + loglevel.webhook: "info" + loglevel.activator: "info" + loglevel.hpaautoscaler: "info" + loglevel.net-certmanager-controller: "info" + loglevel.net-istio-controller: "info" + loglevel.net-contour-controller: "info" + loglevel.net-kourier-controller: "info" + loglevel.net-gateway-api-controller: "info" +--- +# Copyright 2018 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: v1 +kind: ConfigMap +metadata: + name: config-network + namespace: knative-serving + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/component: networking + app.kubernetes.io/version: "release-v1.2" + annotations: + knative.dev/example-checksum: "a576301d" +data: + _example: | + ################################ + # # + # EXAMPLE CONFIGURATION # + # # + ################################ + + # This block is not actually functional configuration, + # but serves to illustrate the available configuration + # options and document them in a way that is accessible + # to users that `kubectl edit` this config map. + # + # These sample configuration options may be copied out of + # this example block and unindented to be in the data block + # to actually change the configuration. + + # ingress-class specifies the default ingress class + # to use when not dictated by Route annotation. + # + # If not specified, will use the Istio ingress. + # + # Note that changing the Ingress class of an existing Route + # will result in undefined behavior. Therefore it is best to only + # update this value during the setup of Knative, to avoid getting + # undefined behavior. + ingress-class: "istio.ingress.networking.knative.dev" + + # certificate-class specifies the default Certificate class + # to use when not dictated by Route annotation. + # + # If not specified, will use the Cert-Manager Certificate. + # + # Note that changing the Certificate class of an existing Route + # will result in undefined behavior. Therefore it is best to only + # update this value during the setup of Knative, to avoid getting + # undefined behavior. + certificate-class: "cert-manager.certificate.networking.knative.dev" + + # namespace-wildcard-cert-selector specifies a LabelSelector which + # determines which namespaces should have a wildcard certificate + # provisioned. + # + # Use an empty value to disable the feature (this is the default): + # namespace-wildcard-cert-selector: "" + # + # Use an empty object to enable for all namespaces + # namespace-wildcard-cert-selector: {} + # + # Useful labels include the "kubernetes.io/metadata.name" label to + # avoid provisioning a certifcate for the "kube-system" namespaces. + # Use the following selector to match pre-1.0 behavior of using + # "networking.knative.dev/disableWildcardCert" to exclude namespaces: + # + # matchExpressions: + # - key: "networking.knative.dev/disableWildcardCert" + # operator: "NotIn" + # values: ["true"] + namespace-wildcard-cert-selector: "" + + # domain-template specifies the golang text template string to use + # when constructing the Knative service's DNS name. The default + # value is "{{.Name}}.{{.Namespace}}.{{.Domain}}". + # + # Valid variables defined in the template include Name, Namespace, Domain, + # Labels, and Annotations. Name will be the result of the tag-template + # below, if a tag is specified for the route. + # + # Changing this value might be necessary when the extra levels in + # the domain name generated is problematic for wildcard certificates + # that only support a single level of domain name added to the + # certificate's domain. In those cases you might consider using a value + # of "{{.Name}}-{{.Namespace}}.{{.Domain}}", or removing the Namespace + # entirely from the template. When choosing a new value be thoughtful + # of the potential for conflicts - for example, when users choose to use + # characters such as `-` in their service, or namespace, names. + # {{.Annotations}} or {{.Labels}} can be used for any customization in the + # go template if needed. + # We strongly recommend keeping namespace part of the template to avoid + # domain name clashes: + # eg. '{{.Name}}-{{.Namespace}}.{{ index .Annotations "sub"}}.{{.Domain}}' + # and you have an annotation {"sub":"foo"}, then the generated template + # would be {Name}-{Namespace}.foo.{Domain} + domain-template: "{{.Name}}.{{.Namespace}}.{{.Domain}}" + + # tag-template specifies the golang text template string to use + # when constructing the DNS name for "tags" within the traffic blocks + # of Routes and Configuration. This is used in conjunction with the + # domain-template above to determine the full URL for the tag. + tag-template: "{{.Tag}}-{{.Name}}" + + # Controls whether TLS certificates are automatically provisioned and + # installed in the Knative ingress to terminate external TLS connection. + # 1. Enabled: enabling auto-TLS feature. + # 2. Disabled: disabling auto-TLS feature. + auto-tls: "Disabled" + + # Controls the behavior of the HTTP endpoint for the Knative ingress. + # It requires autoTLS to be enabled. + # 1. Enabled: The Knative ingress will be able to serve HTTP connection. + # 2. Redirected: The Knative ingress will send a 301 redirect for all + # http connections, asking the clients to use HTTPS. + # + # "Disabled" option is deprecated. + http-protocol: "Enabled" + + # rollout-duration contains the minimal duration in seconds over which the + # Configuration traffic targets are rolled out to the newest revision. + rollout-duration: "0" + + # autocreate-cluster-domain-claims controls whether ClusterDomainClaims should + # be automatically created (and deleted) as needed when DomainMappings are + # reconciled. + # + # If this is "false" (the default), the cluster administrator is + # responsible for creating ClusterDomainClaims and delegating them to + # namespaces via their spec.Namespace field. This setting should be used in + # multitenant environments which need to control which namespace can use a + # particular domain name in a domain mapping. + # + # If this is "true", users are able to associate arbitrary names with their + # services via the DomainMapping feature. + autocreate-cluster-domain-claims: "false" + + # If true, networking plugins can add additional information to deployed + # applications to make their pods directly accessible via their IPs even if mesh is + # enabled and thus direct-addressability is usually not possible. + # Consumers like Knative Serving can use this setting to adjust their behavior + # accordingly, i.e. to drop fallback solutions for non-pod-addressable systems. + # + # NOTE: This flag is in an alpha state and is mostly here to enable internal testing + # for now. Use with caution. + enable-mesh-pod-addressability: "false" + + # mesh-compatibility-mode indicates whether consumers of network plugins + # should directly contact Pod IPs (most efficient), or should use the + # Cluster IP (less efficient, needed when mesh is enabled unless + # `enable-mesh-pod-addressability`, above, is set). + # Permitted values are: + # - "auto" (default): automatically determine which mesh mode to use by trying Pod IP and falling back to Cluster IP as needed. + # - "enabled": always use Cluster IP and do not attempt to use Pod IPs. + # - "disabled": always use Pod IPs and do not fall back to Cluster IP on failure. + mesh-compatibility-mode: "auto" + + # Defines the scheme used for external URLs if autoTLS is not enabled. + # This can be used for making Knative report all URLs as "HTTPS" for example, if you're + # fronting Knative with an external loadbalancer that deals with TLS termination and + # Knative doesn't know about that otherwise. + default-external-scheme: "http" + + # internal-encryption is deprecated and replaced by internal-dataplane-trust and internal-controlplane-trust + # internal-encryption indicates whether internal traffic is encrypted or not. + # + # NOTE: This flag is in an alpha state and is mostly here to enable internal testing + # for now. Use with caution. + internal-encryption: "false" + + # dataplane-trust indicates the level of trust established in the knative data-plane. + # dataplane-trust = "disabled" (the default) - uses no encryption for internal data plane traffic + # Using any other value ensures that the following traffic is encrypted using TLS: + # - ingress to activator + # - ingress to queue-proxy + # - activator to queue-proxy + # + # dataplane-trust = "minimal" ensures data messages are encrypted, Kingress authenticate that the receiver is a Ksvc + # dataplane-trust = "enabled" same as "minimal" and in addition, Kingress authenticate that Ksvc is at the correct namespace + # dataplane-trust = "mutual" same as "enabled" and in addition, Ksvc authenticate that the messages come from the Kingress + # dataplane-trust = "identity" same as "mutual" with Kingress adding a trusted sender identity to the message + # + # NOTE: This flag is in an alpha state and is mostly here to enable internal testing for now. Use with caution. + dataplane-trust: "disabled" + + # controlplane-trust indicates the level of trust established in the knative control-plane. + # controlplane-trust = "disabled" (the default) - uses no encryption for internal control plane traffic + # Using any other value ensures that control traffic is encrypted using TLS. + # + # controlplane-trust = "enabled" ensures control messages are encrypted using TLS (client authenticate the server) + # controlplane-trust = "mutual" ensures control messages are encrypted using mTLS (client and server authenticate each other) + # + # NOTE: This flag is in an alpha state and is mostly here to enable internal testing for now. Use with caution. + controlplane-trust: "disabled" +--- +# Copyright 2018 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: v1 +kind: ConfigMap +metadata: + name: config-observability + namespace: knative-serving + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/component: observability + app.kubernetes.io/version: "release-v1.2" + annotations: + knative.dev/example-checksum: "54abd711" +data: + _example: | + ################################ + # # + # EXAMPLE CONFIGURATION # + # # + ################################ + + # This block is not actually functional configuration, + # but serves to illustrate the available configuration + # options and document them in a way that is accessible + # to users that `kubectl edit` this config map. + # + # These sample configuration options may be copied out of + # this example block and unindented to be in the data block + # to actually change the configuration. + + # logging.enable-var-log-collection defaults to false. + # The fluentd daemon set will be set up to collect /var/log if + # this flag is true. + logging.enable-var-log-collection: "false" + + # logging.revision-url-template provides a template to use for producing the + # logging URL that is injected into the status of each Revision. + logging.revision-url-template: "http://logging.example.com/?revisionUID=${REVISION_UID}" + + # If non-empty, this enables queue proxy writing user request logs to stdout, excluding probe + # requests. + # NB: after 0.18 release logging.enable-request-log must be explicitly set to true + # in order for request logging to be enabled. + # + # The value determines the shape of the request logs and it must be a valid go text/template. + # It is important to keep this as a single line. Multiple lines are parsed as separate entities + # by most collection agents and will split the request logs into multiple records. + # + # The following fields and functions are available to the template: + # + # Request: An http.Request (see https://golang.org/pkg/net/http/#Request) + # representing an HTTP request received by the server. + # + # Response: + # struct { + # Code int // HTTP status code (see https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml) + # Size int // An int representing the size of the response. + # Latency float64 // A float64 representing the latency of the response in seconds. + # } + # + # Revision: + # struct { + # Name string // Knative revision name + # Namespace string // Knative revision namespace + # Service string // Knative service name + # Configuration string // Knative configuration name + # PodName string // Name of the pod hosting the revision + # PodIP string // IP of the pod hosting the revision + # } + # + logging.request-log-template: '{"httpRequest": {"requestMethod": "{{.Request.Method}}", "requestUrl": "{{js .Request.RequestURI}}", "requestSize": "{{.Request.ContentLength}}", "status": {{.Response.Code}}, "responseSize": "{{.Response.Size}}", "userAgent": "{{js .Request.UserAgent}}", "remoteIp": "{{js .Request.RemoteAddr}}", "serverIp": "{{.Revision.PodIP}}", "referer": "{{js .Request.Referer}}", "latency": "{{.Response.Latency}}s", "protocol": "{{.Request.Proto}}"}, "traceId": "{{index .Request.Header "X-B3-Traceid"}}"}' + + # If true, the request logging will be enabled. + # NB: up to and including Knative version 0.18 if logging.request-log-template is non-empty, this value + # will be ignored. + logging.enable-request-log: "false" + + # If true, this enables queue proxy writing request logs for probe requests to stdout. + # It uses the same template for user requests, i.e. logging.request-log-template. + logging.enable-probe-request-log: "false" + + # metrics.backend-destination field specifies the system metrics destination. + # It supports either prometheus (the default) or opencensus. + metrics.backend-destination: prometheus + + # metrics.reporting-period-seconds specifies the global metrics reporting period for control and data plane components. + # If a zero or negative value is passed the default reporting period is used (10 secs). + # If the attribute is not specified a default value is used per metrics backend. + # For the prometheus backend the default reporting period is 5s while for opencensus it is 60s. + metrics.reporting-period-seconds: "5" + + # metrics.request-metrics-backend-destination specifies the request metrics + # destination. It enables queue proxy to send request metrics. + # Currently supported values: prometheus (the default), opencensus. + metrics.request-metrics-backend-destination: prometheus + + # metrics.request-metrics-reporting-period-seconds specifies the request metrics reporting period in sec at queue proxy. + # If a zero or negative value is passed the default reporting period is used (10 secs). + # If the attribute is not specified, it is overridden by the value of metrics.reporting-period-seconds. + metrics.request-metrics-reporting-period-seconds: "5" + + # profiling.enable indicates whether it is allowed to retrieve runtime profiling data from + # the pods via an HTTP server in the format expected by the pprof visualization tool. When + # enabled, the Knative Serving pods expose the profiling data on an alternate HTTP port 8008. + # The HTTP context root for profiling is then /debug/pprof/. + profiling.enable: "false" +--- +# Copyright 2019 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: v1 +kind: ConfigMap +metadata: + name: config-tracing + namespace: knative-serving + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/component: tracing + app.kubernetes.io/version: "release-v1.2" + annotations: + knative.dev/example-checksum: "26614636" +data: + _example: | + ################################ + # # + # EXAMPLE CONFIGURATION # + # # + ################################ + + # This block is not actually functional configuration, + # but serves to illustrate the available configuration + # options and document them in a way that is accessible + # to users that `kubectl edit` this config map. + # + # These sample configuration options may be copied out of + # this example block and unindented to be in the data block + # to actually change the configuration. + # + # This may be "zipkin" or "none" (default) + backend: "none" + + # URL to zipkin collector where traces are sent. + # This must be specified when backend is "zipkin" + zipkin-endpoint: "http://zipkin.istio-system.svc.cluster.local:9411/api/v2/spans" + + # Enable zipkin debug mode. This allows all spans to be sent to the server + # bypassing sampling. + debug: "false" + + # Percentage (0-1) of requests to trace + sample-rate: "0.1" +--- +# Copyright 2020 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: autoscaling/v2 +kind: HorizontalPodAutoscaler +metadata: + name: activator + namespace: knative-serving + labels: + app.kubernetes.io/component: activator + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" +spec: + minReplicas: 1 + maxReplicas: 20 + scaleTargetRef: + apiVersion: apps/v1 + kind: Deployment + name: activator + metrics: + - type: Resource + resource: + name: cpu + target: + type: Utilization + # Percentage of the requested CPU + averageUtilization: 100 +--- +# Activator PDB. Currently we permit unavailability of 20% of tasks at the same time. +# Given the subsetting and that the activators are partially stateful systems, we want +# a slow rollout of the new versions and slow migration during node upgrades. +apiVersion: policy/v1 +kind: PodDisruptionBudget +metadata: + name: activator-pdb + namespace: knative-serving + labels: + app.kubernetes.io/component: activator + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" +spec: + minAvailable: 1 + selector: + matchLabels: + app: activator +--- +# Copyright 2018 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: apps/v1 +kind: Deployment +metadata: + name: activator + namespace: knative-serving + labels: + app.kubernetes.io/component: activator + app.kubernetes.io/version: "release-v1.2" + app.kubernetes.io/name: knative-serving +spec: + selector: + matchLabels: + app: activator + role: activator + template: + metadata: + labels: + app: activator + role: activator + app.kubernetes.io/component: activator + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" + spec: + serviceAccountName: activator + containers: + - name: activator + # This is the Go import path for the binary that is containerized + # and substituted here. + image: ko://knative.dev/serving/cmd/activator + + # The numbers are based on performance test results from + # https://github.com/knative/serving/issues/1625#issuecomment-511930023 + resources: + requests: + cpu: 300m + memory: 60Mi + limits: + cpu: 1000m + memory: 600Mi + + env: + # Run Activator with GC collection when newly generated memory is 500%. + - name: GOGC + value: "500" + - name: POD_NAME + valueFrom: + fieldRef: + fieldPath: metadata.name + - name: POD_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: SYSTEM_NAMESPACE + valueFrom: + fieldRef: + fieldPath: metadata.namespace + - name: CONFIG_LOGGING_NAME + value: config-logging + - name: CONFIG_OBSERVABILITY_NAME + value: config-observability + # TODO(https://github.com/knative/pkg/pull/953): Remove stackdriver specific config + - name: METRICS_DOMAIN + value: knative.dev/internal/serving + + securityContext: + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + runAsNonRoot: true + capabilities: + drop: + - ALL + + + + ports: + - name: metrics + containerPort: 9090 + - name: profiling + containerPort: 8008 + - name: http1 + containerPort: 8012 + - name: h2c + containerPort: 8013 + + readinessProbe: + httpGet: + port: 8012 + httpHeaders: + - name: k-kubelet-probe + value: "activator" + periodSeconds: 5 + failureThreshold: 5 + livenessProbe: + httpGet: + port: 8012 + httpHeaders: + - name: k-kubelet-probe + value: "activator" + periodSeconds: 10 + failureThreshold: 12 + initialDelaySeconds: 15 + + # The activator (often) sits on the dataplane, and may proxy long (e.g. + # streaming, websockets) requests. We give a long grace period for the + # activator to "lame duck" and drain outstanding requests before we + # forcibly terminate the pod (and outstanding connections). This value + # should be at least as large as the upper bound on the Revision's + # timeoutSeconds property to avoid servicing events disrupting + # connections. + terminationGracePeriodSeconds: 600 + +--- +apiVersion: v1 +kind: Service +metadata: + name: activator-service + namespace: knative-serving + labels: + app: activator + app.kubernetes.io/component: activator + app.kubernetes.io/version: "release-v1.2" + app.kubernetes.io/name: knative-serving +spec: + selector: + app: activator + ports: + # Define metrics and profiling for them to be accessible within service meshes. + - name: http-metrics + port: 9090 + targetPort: 9090 + - name: http-profiling + port: 8008 + targetPort: 8008 + - name: http + port: 80 + targetPort: 8012 + - name: http2 + port: 81 + targetPort: 8013 + - name: https + port: 443 + targetPort: 8112 + type: ClusterIP +--- +# Copyright 2018 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: apps/v1 +kind: Deployment +metadata: + name: autoscaler + namespace: knative-serving + labels: + app.kubernetes.io/component: autoscaler + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" +spec: + replicas: 1 + selector: + matchLabels: + app: autoscaler + strategy: + type: RollingUpdate + rollingUpdate: + maxUnavailable: 0 + template: + metadata: + labels: + app: autoscaler + app.kubernetes.io/component: autoscaler + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" + spec: + # To avoid node becoming SPOF, spread our replicas to different nodes. + affinity: + podAntiAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchLabels: + app: autoscaler + topologyKey: kubernetes.io/hostname + weight: 100 + + serviceAccountName: controller + containers: + - name: autoscaler + # This is the Go import path for the binary that is containerized + # and substituted here. + image: ko://knative.dev/serving/cmd/autoscaler + + resources: + requests: + cpu: 100m + memory: 100Mi + limits: + cpu: 1000m + memory: 1000Mi + + env: + - name: POD_NAME + valueFrom: + fieldRef: + fieldPath: metadata.name + - name: POD_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: SYSTEM_NAMESPACE + valueFrom: + fieldRef: + fieldPath: metadata.namespace + - name: CONFIG_LOGGING_NAME + value: config-logging + - name: CONFIG_OBSERVABILITY_NAME + value: config-observability + # TODO(https://github.com/knative/pkg/pull/953): Remove stackdriver specific config + - name: METRICS_DOMAIN + value: knative.dev/serving + + securityContext: + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + runAsNonRoot: true + capabilities: + drop: + - ALL + + + + ports: + - name: metrics + containerPort: 9090 + - name: profiling + containerPort: 8008 + - name: websocket + containerPort: 8080 + + readinessProbe: + httpGet: + port: 8080 + httpHeaders: + - name: k-kubelet-probe + value: "autoscaler" + livenessProbe: + httpGet: + port: 8080 + httpHeaders: + - name: k-kubelet-probe + value: "autoscaler" + failureThreshold: 6 + +--- +apiVersion: v1 +kind: Service +metadata: + labels: + app: autoscaler + app.kubernetes.io/component: autoscaler + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" + name: autoscaler + namespace: knative-serving +spec: + ports: + # Define metrics and profiling for them to be accessible within service meshes. + - name: http-metrics + port: 9090 + targetPort: 9090 + - name: http-profiling + port: 8008 + targetPort: 8008 + - name: http + port: 8080 + targetPort: 8080 + selector: + app: autoscaler +--- +# Copyright 2018 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: apps/v1 +kind: Deployment +metadata: + name: controller + namespace: knative-serving + labels: + app.kubernetes.io/component: controller + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" +spec: + selector: + matchLabels: + app: controller + template: + metadata: + labels: + app: controller + app.kubernetes.io/component: controller + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" + spec: + # To avoid node becoming SPOF, spread our replicas to different nodes. + affinity: + podAntiAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchLabels: + app: controller + topologyKey: kubernetes.io/hostname + weight: 100 + + serviceAccountName: controller + containers: + - name: controller + # This is the Go import path for the binary that is containerized + # and substituted here. + image: ko://knative.dev/serving/cmd/controller + + resources: + requests: + cpu: 100m + memory: 100Mi + limits: + cpu: 1000m + memory: 1000Mi + + env: + - name: POD_NAME + valueFrom: + fieldRef: + fieldPath: metadata.name + - name: SYSTEM_NAMESPACE + valueFrom: + fieldRef: + fieldPath: metadata.namespace + - name: CONFIG_LOGGING_NAME + value: config-logging + - name: CONFIG_OBSERVABILITY_NAME + value: config-observability + + # TODO(https://github.com/knative/pkg/pull/953): Remove stackdriver specific config + - name: METRICS_DOMAIN + value: knative.dev/internal/serving + + securityContext: + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + runAsNonRoot: true + capabilities: + drop: + - ALL + + + + livenessProbe: + httpGet: + path: /health + port: probes + scheme: HTTP + periodSeconds: 5 + failureThreshold: 6 + readinessProbe: + httpGet: + path: /readiness + port: probes + scheme: HTTP + periodSeconds: 5 + failureThreshold: 3 + + ports: + - name: metrics + containerPort: 9090 + - name: profiling + containerPort: 8008 + - name: probes + containerPort: 8080 + +--- +apiVersion: v1 +kind: Service +metadata: + labels: + app: controller + app.kubernetes.io/component: controller + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" + name: controller + namespace: knative-serving +spec: + ports: + # Define metrics and profiling for them to be accessible within service meshes. + - name: http-metrics + port: 9090 + targetPort: 9090 + - name: http-profiling + port: 8008 + targetPort: 8008 + selector: + app: controller +--- +# Copyright 2020 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: autoscaling/v2 +kind: HorizontalPodAutoscaler +metadata: + name: webhook + namespace: knative-serving + labels: + app.kubernetes.io/component: webhook + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" +spec: + minReplicas: 1 + maxReplicas: 5 + scaleTargetRef: + apiVersion: apps/v1 + kind: Deployment + name: webhook + metrics: + - type: Resource + resource: + name: cpu + target: + type: Utilization + # Percentage of the requested CPU + averageUtilization: 100 +--- +# Webhook PDB. +apiVersion: policy/v1 +kind: PodDisruptionBudget +metadata: + name: webhook-pdb + namespace: knative-serving + labels: + app.kubernetes.io/component: webhook + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" +spec: + minAvailable: 1 + selector: + matchLabels: + app: webhook +--- +# Copyright 2018 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: apps/v1 +kind: Deployment +metadata: + name: webhook + namespace: knative-serving + labels: + app.kubernetes.io/component: webhook + app.kubernetes.io/version: "release-v1.2" + app.kubernetes.io/name: knative-serving +spec: + selector: + matchLabels: + app: webhook + role: webhook + template: + metadata: + labels: + app: webhook + role: webhook + app.kubernetes.io/component: webhook + app.kubernetes.io/version: "release-v1.2" + app.kubernetes.io/name: knative-serving + spec: + # To avoid node becoming SPOF, spread our replicas to different nodes. + affinity: + podAntiAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchLabels: + app: webhook + topologyKey: kubernetes.io/hostname + weight: 100 + + serviceAccountName: controller + containers: + - name: webhook + # This is the Go import path for the binary that is containerized + # and substituted here. + image: ko://knative.dev/serving/cmd/webhook + + resources: + requests: + cpu: 100m + memory: 100Mi + limits: + cpu: 500m + memory: 500Mi + + env: + - name: POD_NAME + valueFrom: + fieldRef: + fieldPath: metadata.name + - name: SYSTEM_NAMESPACE + valueFrom: + fieldRef: + fieldPath: metadata.namespace + - name: CONFIG_LOGGING_NAME + value: config-logging + - name: CONFIG_OBSERVABILITY_NAME + value: config-observability + - name: WEBHOOK_NAME + value: webhook + - name: WEBHOOK_PORT + value: "8443" + + # TODO(https://github.com/knative/pkg/pull/953): Remove stackdriver specific config + - name: METRICS_DOMAIN + value: knative.dev/internal/serving + + securityContext: + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + runAsNonRoot: true + capabilities: + drop: + - ALL + + + + ports: + - name: metrics + containerPort: 9090 + - name: profiling + containerPort: 8008 + - name: https-webhook + containerPort: 8443 + + readinessProbe: + periodSeconds: 1 + httpGet: + scheme: HTTPS + port: 8443 + httpHeaders: + - name: k-kubelet-probe + value: "webhook" + livenessProbe: + periodSeconds: 1 + httpGet: + scheme: HTTPS + port: 8443 + httpHeaders: + - name: k-kubelet-probe + value: "webhook" + failureThreshold: 6 + initialDelaySeconds: 20 + + # Our webhook should gracefully terminate by lame ducking first, set this to a sufficiently + # high value that we respect whatever value it has configured for the lame duck grace period. + terminationGracePeriodSeconds: 300 + +--- +apiVersion: v1 +kind: Service +metadata: + labels: + role: webhook + app.kubernetes.io/component: webhook + app.kubernetes.io/version: "release-v1.2" + app.kubernetes.io/name: knative-serving + name: webhook + namespace: knative-serving +spec: + ports: + # Define metrics and profiling for them to be accessible within service meshes. + - name: http-metrics + port: 9090 + targetPort: 9090 + - name: http-profiling + port: 8008 + targetPort: 8008 + - name: https-webhook + port: 443 + targetPort: 8443 + selector: + app: webhook + role: webhook +--- +# Copyright 2020 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: admissionregistration.k8s.io/v1 +kind: ValidatingWebhookConfiguration +metadata: + name: config.webhook.serving.knative.dev + labels: + app.kubernetes.io/component: webhook + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" +webhooks: +- admissionReviewVersions: ["v1", "v1beta1"] + clientConfig: + service: + name: webhook + namespace: knative-serving + failurePolicy: Fail + sideEffects: None + name: config.webhook.serving.knative.dev + objectSelector: + matchExpressions: + - key: app.kubernetes.io/name + operator: In + values: ["knative-serving"] + - key: app.kubernetes.io/component + operator: In + values: ["autoscaler", "controller", "logging", "networking", "observability", "tracing"] + timeoutSeconds: 10 +--- +# Copyright 2020 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: admissionregistration.k8s.io/v1 +kind: MutatingWebhookConfiguration +metadata: + name: webhook.serving.knative.dev + labels: + app.kubernetes.io/component: webhook + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" +webhooks: +- admissionReviewVersions: ["v1", "v1beta1"] + clientConfig: + service: + name: webhook + namespace: knative-serving + failurePolicy: Fail + sideEffects: None + name: webhook.serving.knative.dev + timeoutSeconds: 10 + rules: + - apiGroups: + - autoscaling.internal.knative.dev + - networking.internal.knative.dev + - serving.knative.dev + apiVersions: + - "*" + operations: + - CREATE + - UPDATE + scope: "*" + resources: + - metrics + - podautoscalers + - certificates + - ingresses + - serverlessservices + - configurations + - revisions + - routes + - services + - domainmappings + - domainmappings/status +--- +# Copyright 2020 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: admissionregistration.k8s.io/v1 +kind: ValidatingWebhookConfiguration +metadata: + name: validation.webhook.serving.knative.dev + labels: + app.kubernetes.io/component: webhook + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" +webhooks: +- admissionReviewVersions: ["v1", "v1beta1"] + clientConfig: + service: + name: webhook + namespace: knative-serving + failurePolicy: Fail + sideEffects: None + name: validation.webhook.serving.knative.dev + timeoutSeconds: 10 + rules: + - apiGroups: + - autoscaling.internal.knative.dev + - networking.internal.knative.dev + - serving.knative.dev + apiVersions: + - "*" + operations: + - CREATE + - UPDATE + - DELETE + scope: "*" + resources: + - metrics + - podautoscalers + - certificates + - ingresses + - serverlessservices + - configurations + - revisions + - routes + - services + - domainmappings + - domainmappings/status +--- +# Copyright 2020 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: v1 +kind: Secret +metadata: + name: webhook-certs + namespace: knative-serving + labels: + app.kubernetes.io/component: webhook + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" +# The data is populated at install time. diff --git a/openshift/release/artifacts/serving-crds.yaml b/openshift/release/artifacts/serving-crds.yaml new file mode 100644 index 000000000000..3ea8eaa1950a --- /dev/null +++ b/openshift/release/artifacts/serving-crds.yaml @@ -0,0 +1,4295 @@ +--- +# Copyright 2018 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: images.caching.internal.knative.dev + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" + knative.dev/crd-install: "true" +spec: + group: caching.internal.knative.dev + names: + kind: Image + plural: images + singular: image + categories: + - knative-internal + - caching + scope: Namespaced + versions: + - name: v1alpha1 + served: true + storage: true + subresources: + status: {} + schema: + openAPIV3Schema: + description: Image is a Knative abstraction that encapsulates the interface by which Knative components express a desire to have a particular image cached. + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: Spec holds the desired state of the Image (from the client). + type: object + required: + - image + properties: + image: + description: Image is the name of the container image url to cache across the cluster. + type: string + imagePullSecrets: + description: ImagePullSecrets contains the names of the Kubernetes Secrets containing login information used by the Pods which will run this container. + type: array + items: + description: LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace. + type: object + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + x-kubernetes-map-type: atomic + serviceAccountName: + description: 'ServiceAccountName is the name of the Kubernetes ServiceAccount as which the Pods will run this container. This is potentially used to authenticate the image pull if the service account has attached pull secrets. For more information: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/#add-imagepullsecrets-to-a-service-account' + type: string + status: + description: Status communicates the observed state of the Image (from the controller). + type: object + properties: + annotations: + description: Annotations is additional Status fields for the Resource to save some additional State as well as convey more information to the user. This is roughly akin to Annotations on any k8s resource, just the reconciler conveying richer information outwards. + type: object + additionalProperties: + type: string + conditions: + description: Conditions the latest available observations of a resource's current state. + type: array + items: + description: 'Condition defines a readiness condition for a Knative resource. See: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties' + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the last time the condition transitioned from one status to another. We use VolatileTime in place of metav1.Time to exclude this from creating equality.Semantic differences (all other things held constant). + type: string + message: + description: A human readable message indicating details about the transition. + type: string + reason: + description: The reason for the condition's last transition. + type: string + severity: + description: Severity with which to treat failures of this type of condition. When this is not specified, it defaults to Error. + type: string + status: + description: Status of the condition, one of True, False, Unknown. + type: string + type: + description: Type of condition. + type: string + observedGeneration: + description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. + type: integer + format: int64 + additionalPrinterColumns: + - name: Image + type: string + jsonPath: .spec.image +--- +# Copyright 2020 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: certificates.networking.internal.knative.dev + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/component: networking + app.kubernetes.io/version: "release-v1.2" + knative.dev/crd-install: "true" +spec: + group: networking.internal.knative.dev + versions: + - name: v1alpha1 + served: true + storage: true + subresources: + status: {} + schema: + openAPIV3Schema: + description: Certificate is responsible for provisioning a SSL certificate for the given hosts. It is a Knative abstraction for various SSL certificate provisioning solutions (such as cert-manager or self-signed SSL certificate). + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: 'Spec is the desired state of the Certificate. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' + type: object + required: + - dnsNames + - secretName + properties: + dnsNames: + description: DNSNames is a list of DNS names the Certificate could support. The wildcard format of DNSNames (e.g. *.default.example.com) is supported. + type: array + items: + type: string + domain: + description: Domain is the top level domain of the values for DNSNames. + type: string + secretName: + description: SecretName is the name of the secret resource to store the SSL certificate in. + type: string + status: + description: 'Status is the current state of the Certificate. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' + type: object + properties: + annotations: + description: Annotations is additional Status fields for the Resource to save some additional State as well as convey more information to the user. This is roughly akin to Annotations on any k8s resource, just the reconciler conveying richer information outwards. + type: object + additionalProperties: + type: string + conditions: + description: Conditions the latest available observations of a resource's current state. + type: array + items: + description: 'Condition defines a readiness condition for a Knative resource. See: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties' + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the last time the condition transitioned from one status to another. We use VolatileTime in place of metav1.Time to exclude this from creating equality.Semantic differences (all other things held constant). + type: string + message: + description: A human readable message indicating details about the transition. + type: string + reason: + description: The reason for the condition's last transition. + type: string + severity: + description: Severity with which to treat failures of this type of condition. When this is not specified, it defaults to Error. + type: string + status: + description: Status of the condition, one of True, False, Unknown. + type: string + type: + description: Type of condition. + type: string + http01Challenges: + description: HTTP01Challenges is a list of HTTP01 challenges that need to be fulfilled in order to get the TLS certificate.. + type: array + items: + description: HTTP01Challenge defines the status of a HTTP01 challenge that a certificate needs to fulfill. + type: object + properties: + serviceName: + description: ServiceName is the name of the service to serve HTTP01 challenge requests. + type: string + serviceNamespace: + description: ServiceNamespace is the namespace of the service to serve HTTP01 challenge requests. + type: string + servicePort: + description: ServicePort is the port of the service to serve HTTP01 challenge requests. + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + url: + description: URL is the URL that the HTTP01 challenge is expected to serve on. + type: string + notAfter: + description: The expiration time of the TLS certificate stored in the secret named by this resource in spec.secretName. + type: string + format: date-time + observedGeneration: + description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. + type: integer + format: int64 + additionalPrinterColumns: + - name: Ready + type: string + jsonPath: ".status.conditions[?(@.type==\"Ready\")].status" + - name: Reason + type: string + jsonPath: ".status.conditions[?(@.type==\"Ready\")].reason" + names: + kind: Certificate + plural: certificates + singular: certificate + categories: + - knative-internal + - networking + shortNames: + - kcert + scope: Namespaced +--- +# Copyright 2019 The Knative Authors +# +# 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 +# +# https://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. + +# Note: The schema part of the spec is auto-generated by hack/update-schemas.sh. + +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: configurations.serving.knative.dev + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" + knative.dev/crd-install: "true" + duck.knative.dev/podspecable: "true" +spec: + group: serving.knative.dev + names: + kind: Configuration + plural: configurations + singular: configuration + categories: + - all + - knative + - serving + shortNames: + - config + - cfg + scope: Namespaced + versions: + - name: v1 + served: true + storage: true + subresources: + status: {} + additionalPrinterColumns: + - name: LatestCreated + type: string + jsonPath: .status.latestCreatedRevisionName + - name: LatestReady + type: string + jsonPath: .status.latestReadyRevisionName + - name: Ready + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].status" + - name: Reason + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].reason" + schema: + openAPIV3Schema: + description: 'Configuration represents the "floating HEAD" of a linear history of Revisions. Users create new Revisions by updating the Configuration''s spec. The "latest created" revision''s name is available under status, as is the "latest ready" revision''s name. See also: https://github.com/knative/serving/blob/main/docs/spec/overview.md#configuration' + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: ConfigurationSpec holds the desired state of the Configuration (from the client). + type: object + properties: + template: + description: Template holds the latest specification for the Revision to be stamped out. + type: object + properties: + metadata: + type: object + properties: + annotations: + type: object + additionalProperties: + type: string + finalizers: + type: array + items: + type: string + labels: + type: object + additionalProperties: + type: string + name: + type: string + namespace: + type: string + x-kubernetes-preserve-unknown-fields: true + spec: + description: RevisionSpec holds the desired state of the Revision (from the client). + type: object + required: + - containers + properties: + affinity: + description: This is accessible behind a feature flag - kubernetes.podspec-affinity + type: object + x-kubernetes-preserve-unknown-fields: true + automountServiceAccountToken: + description: AutomountServiceAccountToken indicates whether a service account token should be automatically mounted. + type: boolean + containerConcurrency: + description: ContainerConcurrency specifies the maximum allowed in-flight (concurrent) requests per container of the Revision. Defaults to `0` which means concurrency to the application is not limited, and the system decides the target concurrency for the autoscaler. + type: integer + format: int64 + containers: + description: List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated. + type: array + items: + description: A single application container that you want to run within a pod. + type: object + properties: + args: + description: 'Arguments to the entrypoint. The container image''s CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' + type: array + items: + type: string + command: + description: 'Entrypoint array. Not executed within a shell. The container image''s ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' + type: array + items: + type: string + env: + description: List of environment variables to set in the container. Cannot be updated. + type: array + items: + description: EnvVar represents an environment variable present in a Container. + type: object + required: + - name + properties: + name: + description: Name of the environment variable. Must be a C_IDENTIFIER. + type: string + value: + description: 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".' + type: string + valueFrom: + description: Source for the environment variable's value. Cannot be used if value is not empty. + type: object + properties: + configMapKeyRef: + description: Selects a key of a ConfigMap. + type: object + required: + - key + properties: + key: + description: The key to select. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: Specify whether the ConfigMap or its key must be defined + type: boolean + x-kubernetes-map-type: atomic + fieldRef: + description: This is accessible behind a feature flag - kubernetes.podspec-fieldref + type: object + x-kubernetes-preserve-unknown-fields: true + x-kubernetes-map-type: atomic + resourceFieldRef: + description: This is accessible behind a feature flag - kubernetes.podspec-fieldref + type: object + x-kubernetes-preserve-unknown-fields: true + x-kubernetes-map-type: atomic + secretKeyRef: + description: Selects a key of a secret in the pod's namespace + type: object + required: + - key + properties: + key: + description: The key of the secret to select from. Must be a valid secret key. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: Specify whether the Secret or its key must be defined + type: boolean + x-kubernetes-map-type: atomic + envFrom: + description: List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated. + type: array + items: + description: EnvFromSource represents the source of a set of ConfigMaps + type: object + properties: + configMapRef: + description: The ConfigMap to select from + type: object + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: Specify whether the ConfigMap must be defined + type: boolean + x-kubernetes-map-type: atomic + prefix: + description: An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER. + type: string + secretRef: + description: The Secret to select from + type: object + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: Specify whether the Secret must be defined + type: boolean + x-kubernetes-map-type: atomic + image: + description: 'Container image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.' + type: string + imagePullPolicy: + description: 'Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images' + type: string + livenessProbe: + description: 'Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: object + properties: + exec: + description: Exec specifies the action to take. + type: object + properties: + command: + description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + type: array + items: + type: string + failureThreshold: + description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. + type: integer + format: int32 + httpGet: + description: HTTPGet specifies the http request to perform. + type: object + properties: + host: + description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the request. HTTP allows repeated headers. + type: array + items: + description: HTTPHeader describes a custom header to be used in HTTP probes + type: object + required: + - name + - value + properties: + name: + description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + path: + description: Path to access on the HTTP server. + type: string + port: + description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + description: Scheme to use for connecting to the host. Defaults to HTTP. + type: string + initialDelaySeconds: + description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: integer + format: int32 + periodSeconds: + description: How often (in seconds) to perform the probe. + type: integer + format: int32 + successThreshold: + description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + type: integer + format: int32 + tcpSocket: + description: TCPSocket specifies an action involving a TCP port. + type: object + properties: + host: + description: 'Optional: Host name to connect to, defaults to the pod IP.' + type: string + port: + description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + timeoutSeconds: + description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: integer + format: int32 + name: + description: Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. + type: string + ports: + description: List of ports to expose from the container. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Modifying this array with strategic merge patch may corrupt the data. For more information See https://github.com/kubernetes/kubernetes/issues/108255. Cannot be updated. + type: array + items: + description: ContainerPort represents a network port in a single container. + type: object + required: + - containerPort + properties: + containerPort: + description: Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536. + type: integer + format: int32 + name: + description: If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services. + type: string + protocol: + description: Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP". + type: string + default: TCP + x-kubernetes-list-map-keys: + - containerPort + - protocol + x-kubernetes-list-type: map + readinessProbe: + description: 'Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: object + properties: + exec: + description: Exec specifies the action to take. + type: object + properties: + command: + description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + type: array + items: + type: string + failureThreshold: + description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. + type: integer + format: int32 + httpGet: + description: HTTPGet specifies the http request to perform. + type: object + properties: + host: + description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the request. HTTP allows repeated headers. + type: array + items: + description: HTTPHeader describes a custom header to be used in HTTP probes + type: object + required: + - name + - value + properties: + name: + description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + path: + description: Path to access on the HTTP server. + type: string + port: + description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + description: Scheme to use for connecting to the host. Defaults to HTTP. + type: string + initialDelaySeconds: + description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: integer + format: int32 + periodSeconds: + description: How often (in seconds) to perform the probe. + type: integer + format: int32 + successThreshold: + description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + type: integer + format: int32 + tcpSocket: + description: TCPSocket specifies an action involving a TCP port. + type: object + properties: + host: + description: 'Optional: Host name to connect to, defaults to the pod IP.' + type: string + port: + description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + timeoutSeconds: + description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: integer + format: int32 + resources: + description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + type: object + properties: + claims: + description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers." + type: array + items: + description: ResourceClaim references one entry in PodSpec.ResourceClaims. + type: object + required: + - name + properties: + name: + description: Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container. + type: string + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + limits: + description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + type: object + additionalProperties: + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + requests: + description: 'Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + type: object + additionalProperties: + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + securityContext: + description: 'SecurityContext defines the security options the container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/' + type: object + properties: + allowPrivilegeEscalation: + description: 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.' + type: boolean + capabilities: + description: The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows. + type: object + properties: + add: + description: This is accessible behind a feature flag - kubernetes.containerspec-addcapabilities + type: array + items: + description: Capability represent POSIX capabilities type + type: string + drop: + description: Removed capabilities + type: array + items: + description: Capability represent POSIX capabilities type + type: string + readOnlyRootFilesystem: + description: Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows. + type: boolean + runAsGroup: + description: The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows. + type: integer + format: int64 + runAsNonRoot: + description: Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + type: boolean + runAsUser: + description: The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows. + type: integer + format: int64 + seccompProfile: + description: The seccomp options to use by this container. If seccomp options are provided at both the pod & container level, the container options override the pod options. Note that this field cannot be set when spec.os.name is windows. + type: object + required: + - type + properties: + localhostProfile: + description: localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is "Localhost". + type: string + type: + description: "type indicates which kind of seccomp profile will be applied. Valid options are: \n Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied." + type: string + terminationMessagePath: + description: 'Optional: Path at which the file to which the container''s termination message will be written is mounted into the container''s filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.' + type: string + terminationMessagePolicy: + description: Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated. + type: string + volumeMounts: + description: Pod volumes to mount into the container's filesystem. Cannot be updated. + type: array + items: + description: VolumeMount describes a mounting of a Volume within a container. + type: object + required: + - mountPath + - name + properties: + mountPath: + description: Path within the container at which the volume should be mounted. Must not contain ':'. + type: string + name: + description: This must match the Name of a Volume. + type: string + readOnly: + description: Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false. + type: boolean + subPath: + description: Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root). + type: string + workingDir: + description: Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated. + type: string + dnsConfig: + description: This is accessible behind a feature flag - kubernetes.podspec-dnsconfig + type: object + x-kubernetes-preserve-unknown-fields: true + dnsPolicy: + description: This is accessible behind a feature flag - kubernetes.podspec-dnspolicy + type: string + enableServiceLinks: + description: 'EnableServiceLinks indicates whether information about services should be injected into pod''s environment variables, matching the syntax of Docker links. Optional: Knative defaults this to false.' + type: boolean + hostAliases: + description: This is accessible behind a feature flag - kubernetes.podspec-hostaliases + type: array + items: + description: This is accessible behind a feature flag - kubernetes.podspec-hostaliases + type: object + x-kubernetes-preserve-unknown-fields: true + idleTimeoutSeconds: + description: IdleTimeoutSeconds is the maximum duration in seconds a request will be allowed to stay open while not receiving any bytes from the user's application. If unspecified, a system default will be provided. + type: integer + format: int64 + imagePullSecrets: + description: 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod' + type: array + items: + description: LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace. + type: object + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + x-kubernetes-map-type: atomic + initContainers: + description: 'List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/' + type: array + items: + description: This is accessible behind a feature flag - kubernetes.podspec-init-containers + type: object + x-kubernetes-preserve-unknown-fields: true + nodeSelector: + description: This is accessible behind a feature flag - kubernetes.podspec-nodeselector + type: object + x-kubernetes-preserve-unknown-fields: true + x-kubernetes-map-type: atomic + priorityClassName: + description: This is accessible behind a feature flag - kubernetes.podspec-priorityclassname + type: string + x-kubernetes-preserve-unknown-fields: true + responseStartTimeoutSeconds: + description: ResponseStartTimeoutSeconds is the maximum duration in seconds that the request routing layer will wait for a request delivered to a container to begin sending any network traffic. + type: integer + format: int64 + runtimeClassName: + description: This is accessible behind a feature flag - kubernetes.podspec-runtimeclassname + type: string + x-kubernetes-preserve-unknown-fields: true + schedulerName: + description: This is accessible behind a feature flag - kubernetes.podspec-schedulername + type: string + x-kubernetes-preserve-unknown-fields: true + securityContext: + description: This is accessible behind a feature flag - kubernetes.podspec-securitycontext + type: object + x-kubernetes-preserve-unknown-fields: true + serviceAccountName: + description: 'ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/' + type: string + timeoutSeconds: + description: TimeoutSeconds is the maximum duration in seconds that the request instance is allowed to respond to a request. If unspecified, a system default will be provided. + type: integer + format: int64 + tolerations: + description: This is accessible behind a feature flag - kubernetes.podspec-tolerations + type: array + items: + description: This is accessible behind a feature flag - kubernetes.podspec-tolerations + type: object + x-kubernetes-preserve-unknown-fields: true + topologySpreadConstraints: + description: This is accessible behind a feature flag - kubernetes.podspec-topologyspreadconstraints + type: array + items: + description: This is accessible behind a feature flag - kubernetes.podspec-topologyspreadconstraints + type: object + x-kubernetes-preserve-unknown-fields: true + volumes: + description: 'List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes' + type: array + items: + description: Volume represents a named volume in a pod that may be accessed by any container in the pod. + type: object + required: + - name + properties: + configMap: + description: configMap represents a configMap that should populate this volume + type: object + properties: + defaultMode: + description: 'defaultMode is optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + items: + description: items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + type: array + items: + description: Maps a string key to a path within a volume. + type: object + required: + - key + - path + properties: + key: + description: key is the key to project. + type: string + mode: + description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: optional specify whether the ConfigMap or its keys must be defined + type: boolean + x-kubernetes-map-type: atomic + emptyDir: + description: This is accessible behind a feature flag - kubernetes.podspec-emptydir + type: object + x-kubernetes-preserve-unknown-fields: true + name: + description: 'name of the volume. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + persistentVolumeClaim: + description: This is accessible behind a feature flag - kubernetes.podspec-persistent-volume-claim + type: object + x-kubernetes-preserve-unknown-fields: true + projected: + description: projected items for all in one resources secrets, configmaps, and downward API + type: object + properties: + defaultMode: + description: defaultMode are the mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. + type: integer + format: int32 + sources: + description: sources is the list of volume projections + type: array + items: + description: Projection that may be projected along with other supported volume types + type: object + properties: + configMap: + description: configMap information about the configMap data to project + type: object + properties: + items: + description: items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + type: array + items: + description: Maps a string key to a path within a volume. + type: object + required: + - key + - path + properties: + key: + description: key is the key to project. + type: string + mode: + description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: optional specify whether the ConfigMap or its keys must be defined + type: boolean + x-kubernetes-map-type: atomic + downwardAPI: + description: downwardAPI information about the downwardAPI data to project + type: object + properties: + items: + description: Items is a list of DownwardAPIVolume file + type: array + items: + description: DownwardAPIVolumeFile represents information to create the file containing the pod field + type: object + required: + - path + properties: + fieldRef: + description: 'Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.' + type: object + required: + - fieldPath + properties: + apiVersion: + description: Version of the schema the FieldPath is written in terms of, defaults to "v1". + type: string + fieldPath: + description: Path of the field to select in the specified API version. + type: string + x-kubernetes-map-type: atomic + mode: + description: 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: 'Required: Path is the relative path name of the file to be created. Must not be absolute or contain the ''..'' path. Must be utf-8 encoded. The first item of the relative path must not start with ''..''' + type: string + resourceFieldRef: + description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.' + type: object + required: + - resource + properties: + containerName: + description: 'Container name: required for volumes, optional for env vars' + type: string + divisor: + description: Specifies the output format of the exposed resources, defaults to "1" + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + resource: + description: 'Required: resource to select' + type: string + x-kubernetes-map-type: atomic + secret: + description: secret information about the secret data to project + type: object + properties: + items: + description: items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + type: array + items: + description: Maps a string key to a path within a volume. + type: object + required: + - key + - path + properties: + key: + description: key is the key to project. + type: string + mode: + description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: optional field specify whether the Secret or its key must be defined + type: boolean + x-kubernetes-map-type: atomic + serviceAccountToken: + description: serviceAccountToken is information about the serviceAccountToken data to project + type: object + required: + - path + properties: + audience: + description: audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver. + type: string + expirationSeconds: + description: expirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes. + type: integer + format: int64 + path: + description: path is the path relative to the mount point of the file to project the token into. + type: string + secret: + description: 'secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' + type: object + properties: + defaultMode: + description: 'defaultMode is Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + items: + description: items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + type: array + items: + description: Maps a string key to a path within a volume. + type: object + required: + - key + - path + properties: + key: + description: key is the key to project. + type: string + mode: + description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + type: string + optional: + description: optional field specify whether the Secret or its keys must be defined + type: boolean + secretName: + description: 'secretName is the name of the secret in the pod''s namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' + type: string + status: + description: ConfigurationStatus communicates the observed state of the Configuration (from the controller). + type: object + properties: + annotations: + description: Annotations is additional Status fields for the Resource to save some additional State as well as convey more information to the user. This is roughly akin to Annotations on any k8s resource, just the reconciler conveying richer information outwards. + type: object + additionalProperties: + type: string + conditions: + description: Conditions the latest available observations of a resource's current state. + type: array + items: + description: 'Condition defines a readiness condition for a Knative resource. See: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties' + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the last time the condition transitioned from one status to another. We use VolatileTime in place of metav1.Time to exclude this from creating equality.Semantic differences (all other things held constant). + type: string + message: + description: A human readable message indicating details about the transition. + type: string + reason: + description: The reason for the condition's last transition. + type: string + severity: + description: Severity with which to treat failures of this type of condition. When this is not specified, it defaults to Error. + type: string + status: + description: Status of the condition, one of True, False, Unknown. + type: string + type: + description: Type of condition. + type: string + latestCreatedRevisionName: + description: LatestCreatedRevisionName is the last revision that was created from this Configuration. It might not be ready yet, for that use LatestReadyRevisionName. + type: string + latestReadyRevisionName: + description: LatestReadyRevisionName holds the name of the latest Revision stamped out from this Configuration that has had its "Ready" condition become "True". + type: string + observedGeneration: + description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. + type: integer + format: int64 +--- +# Copyright 2020 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: clusterdomainclaims.networking.internal.knative.dev + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/component: networking + app.kubernetes.io/version: "release-v1.2" + knative.dev/crd-install: "true" +spec: + group: networking.internal.knative.dev + versions: + - name: v1alpha1 + served: true + storage: true + subresources: + status: {} + schema: + openAPIV3Schema: + description: ClusterDomainClaim is a cluster-wide reservation for a particular domain name. + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: 'Spec is the desired state of the ClusterDomainClaim. More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' + type: object + required: + - namespace + properties: + namespace: + description: Namespace is the namespace which is allowed to create a DomainMapping using this ClusterDomainClaim's name. + type: string + names: + kind: ClusterDomainClaim + plural: clusterdomainclaims + singular: clusterdomainclaim + categories: + - knative-internal + - networking + shortNames: + - cdc + scope: Cluster +--- +# Copyright 2020 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: domainmappings.serving.knative.dev + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" + knative.dev/crd-install: "true" +spec: + group: serving.knative.dev + versions: + - name: v1beta1 + served: true + storage: true + subresources: + status: {} + additionalPrinterColumns: + - name: URL + type: string + jsonPath: .status.url + - name: Ready + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].status" + - name: Reason + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].reason" + "schema": + "openAPIV3Schema": + description: DomainMapping is a mapping from a custom hostname to an Addressable. + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: 'Spec is the desired state of the DomainMapping. More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' + type: object + required: + - ref + properties: + ref: + description: "Ref specifies the target of the Domain Mapping. \n The object identified by the Ref must be an Addressable with a URL of the form `{name}.{namespace}.{domain}` where `{domain}` is the cluster domain, and `{name}` and `{namespace}` are the name and namespace of a Kubernetes Service. \n This contract is satisfied by Knative types such as Knative Services and Knative Routes, and by Kubernetes Services." + type: object + required: + - kind + - name + properties: + address: + description: Address points to a specific Address Name. + type: string + apiVersion: + description: API version of the referent. + type: string + group: + description: 'Group of the API, without the version of the group. This can be used as an alternative to the APIVersion, and then resolved using ResolveGroup. Note: This API is EXPERIMENTAL and might break anytime. For more details: https://github.com/knative/eventing/issues/5086' + type: string + kind: + description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + namespace: + description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ This is optional field, it gets defaulted to the object holding it if left out.' + type: string + tls: + description: TLS allows the DomainMapping to terminate TLS traffic with an existing secret. + type: object + required: + - secretName + properties: + secretName: + description: SecretName is the name of the existing secret used to terminate TLS traffic. + type: string + status: + description: 'Status is the current state of the DomainMapping. More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' + type: object + properties: + address: + description: Address holds the information needed for a DomainMapping to be the target of an event. + type: object + properties: + CACerts: + description: CACerts is the Certification Authority (CA) certificates in PEM format according to https://www.rfc-editor.org/rfc/rfc7468. + type: string + name: + description: Name is the name of the address. + type: string + url: + type: string + annotations: + description: Annotations is additional Status fields for the Resource to save some additional State as well as convey more information to the user. This is roughly akin to Annotations on any k8s resource, just the reconciler conveying richer information outwards. + type: object + additionalProperties: + type: string + conditions: + description: Conditions the latest available observations of a resource's current state. + type: array + items: + description: 'Condition defines a readiness condition for a Knative resource. See: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties' + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the last time the condition transitioned from one status to another. We use VolatileTime in place of metav1.Time to exclude this from creating equality.Semantic differences (all other things held constant). + type: string + message: + description: A human readable message indicating details about the transition. + type: string + reason: + description: The reason for the condition's last transition. + type: string + severity: + description: Severity with which to treat failures of this type of condition. When this is not specified, it defaults to Error. + type: string + status: + description: Status of the condition, one of True, False, Unknown. + type: string + type: + description: Type of condition. + type: string + observedGeneration: + description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. + type: integer + format: int64 + url: + description: URL is the URL of this DomainMapping. + type: string + - name: v1alpha1 + served: true + storage: false + deprecated: true + deprecationWarning: The v1alpha1 version of DomainMapping has been deprecated and will be removed in a future release of the API. Please upgrade to v1beta1 + subresources: + status: {} + schema: + openAPIV3Schema: + description: DomainMapping is a mapping from a custom hostname to an Addressable. + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: 'Spec is the desired state of the DomainMapping. More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' + type: object + required: + - ref + properties: + ref: + description: "Ref specifies the target of the Domain Mapping. \n The object identified by the Ref must be an Addressable with a URL of the form `{name}.{namespace}.{domain}` where `{domain}` is the cluster domain, and `{name}` and `{namespace}` are the name and namespace of a Kubernetes Service. \n This contract is satisfied by Knative types such as Knative Services and Knative Routes, and by Kubernetes Services." + type: object + required: + - kind + - name + properties: + address: + description: Address points to a specific Address Name. + type: string + apiVersion: + description: API version of the referent. + type: string + group: + description: 'Group of the API, without the version of the group. This can be used as an alternative to the APIVersion, and then resolved using ResolveGroup. Note: This API is EXPERIMENTAL and might break anytime. For more details: https://github.com/knative/eventing/issues/5086' + type: string + kind: + description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + namespace: + description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ This is optional field, it gets defaulted to the object holding it if left out.' + type: string + tls: + description: TLS allows the DomainMapping to terminate TLS traffic with an existing secret. + type: object + required: + - secretName + properties: + secretName: + description: SecretName is the name of the existing secret used to terminate TLS traffic. + type: string + status: + description: 'Status is the current state of the DomainMapping. More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' + type: object + properties: + address: + description: Address holds the information needed for a DomainMapping to be the target of an event. + type: object + properties: + CACerts: + description: CACerts is the Certification Authority (CA) certificates in PEM format according to https://www.rfc-editor.org/rfc/rfc7468. + type: string + name: + description: Name is the name of the address. + type: string + url: + type: string + annotations: + description: Annotations is additional Status fields for the Resource to save some additional State as well as convey more information to the user. This is roughly akin to Annotations on any k8s resource, just the reconciler conveying richer information outwards. + type: object + additionalProperties: + type: string + conditions: + description: Conditions the latest available observations of a resource's current state. + type: array + items: + description: 'Condition defines a readiness condition for a Knative resource. See: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties' + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the last time the condition transitioned from one status to another. We use VolatileTime in place of metav1.Time to exclude this from creating equality.Semantic differences (all other things held constant). + type: string + message: + description: A human readable message indicating details about the transition. + type: string + reason: + description: The reason for the condition's last transition. + type: string + severity: + description: Severity with which to treat failures of this type of condition. When this is not specified, it defaults to Error. + type: string + status: + description: Status of the condition, one of True, False, Unknown. + type: string + type: + description: Type of condition. + type: string + observedGeneration: + description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. + type: integer + format: int64 + url: + description: URL is the URL of this DomainMapping. + type: string + additionalPrinterColumns: + - name: URL + type: string + jsonPath: .status.url + - name: Ready + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].status" + - name: Reason + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].reason" + names: + kind: DomainMapping + plural: domainmappings + singular: domainmapping + categories: + - all + - knative + - serving + shortNames: + - dm + scope: Namespaced +--- +# Copyright 2020 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: ingresses.networking.internal.knative.dev + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/component: networking + app.kubernetes.io/version: "release-v1.2" + knative.dev/crd-install: "true" +spec: + group: networking.internal.knative.dev + versions: + - name: v1alpha1 + served: true + storage: true + subresources: + status: {} + schema: + openAPIV3Schema: + description: "Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable URLs, load balance traffic, offer name based virtual hosting, etc. \n This is heavily based on K8s Ingress https://godoc.org/k8s.io/api/networking/v1beta1#Ingress which some highlighted modifications." + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: 'Spec is the desired state of the Ingress. More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' + type: object + properties: + httpOption: + description: 'HTTPOption is the option of HTTP. It has the following two values: `HTTPOptionEnabled`, `HTTPOptionRedirected`' + type: string + rules: + description: A list of host rules used to configure the Ingress. + type: array + items: + description: IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue. + type: object + properties: + hosts: + description: 'Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the "host" part of the URI as defined in the RFC: 1. IPs are not allowed. Currently a rule value can only apply to the IP in the Spec of the parent . 2. The `:` delimiter is not respected because ports are not allowed. Currently the port of an Ingress is implicitly :80 for http and :443 for https. Both these may change in the future. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue. If multiple matching Hosts were provided, the first rule will take precedent.' + type: array + items: + type: string + http: + description: HTTP represents a rule to apply against incoming requests. If the rule is satisfied, the request is routed to the specified backend. + type: object + required: + - paths + properties: + paths: + description: "A collection of paths that map requests to backends. \n If they are multiple matching paths, the first match takes precedence." + type: array + items: + description: HTTPIngressPath associates a path regex with a backend. Incoming URLs matching the path are forwarded to the backend. + type: object + required: + - splits + properties: + appendHeaders: + description: "AppendHeaders allow specifying additional HTTP headers to add before forwarding a request to the destination service. \n NOTE: This differs from K8s Ingress which doesn't allow header appending." + type: object + additionalProperties: + type: string + headers: + description: Headers defines header matching rules which is a map from a header name to HeaderMatch which specify a matching condition. When a request matched with all the header matching rules, the request is routed by the corresponding ingress rule. If it is empty, the headers are not used for matching + type: object + additionalProperties: + description: HeaderMatch represents a matching value of Headers in HTTPIngressPath. Currently, only the exact matching is supported. + type: object + required: + - exact + properties: + exact: + type: string + path: + description: Path represents a literal prefix to which this rule should apply. Currently it can contain characters disallowed from the conventional "path" part of a URL as defined by RFC 3986. Paths must begin with a '/'. If unspecified, the path defaults to a catch all sending traffic to the backend. + type: string + rewriteHost: + description: "RewriteHost rewrites the incoming request's host header. \n This field is currently experimental and not supported by all Ingress implementations." + type: string + splits: + description: Splits defines the referenced service endpoints to which the traffic will be forwarded to. + type: array + items: + description: IngressBackendSplit describes all endpoints for a given service and port. + type: object + required: + - serviceName + - serviceNamespace + - servicePort + properties: + appendHeaders: + description: "AppendHeaders allow specifying additional HTTP headers to add before forwarding a request to the destination service. \n NOTE: This differs from K8s Ingress which doesn't allow header appending." + type: object + additionalProperties: + type: string + percent: + description: "Specifies the split percentage, a number between 0 and 100. If only one split is specified, we default to 100. \n NOTE: This differs from K8s Ingress to allow percentage split." + type: integer + serviceName: + description: Specifies the name of the referenced service. + type: string + serviceNamespace: + description: "Specifies the namespace of the referenced service. \n NOTE: This differs from K8s Ingress to allow routing to different namespaces." + type: string + servicePort: + description: Specifies the port of the referenced service. + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + visibility: + description: Visibility signifies whether this rule should `ClusterLocal`. If it's not specified then it defaults to `ExternalIP`. + type: string + tls: + description: 'TLS configuration. Currently Ingress only supports a single TLS port: 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.' + type: array + items: + description: IngressTLS describes the transport layer security associated with an Ingress. + type: object + properties: + hosts: + description: Hosts is a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified. + type: array + items: + type: string + secretName: + description: SecretName is the name of the secret used to terminate SSL traffic. + type: string + secretNamespace: + description: SecretNamespace is the namespace of the secret used to terminate SSL traffic. If not set the namespace should be assumed to be the same as the Ingress. If set the secret should have the same namespace as the Ingress otherwise the behaviour is undefined and not supported. + type: string + status: + description: 'Status is the current state of the Ingress. More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' + type: object + properties: + annotations: + description: Annotations is additional Status fields for the Resource to save some additional State as well as convey more information to the user. This is roughly akin to Annotations on any k8s resource, just the reconciler conveying richer information outwards. + type: object + additionalProperties: + type: string + conditions: + description: Conditions the latest available observations of a resource's current state. + type: array + items: + description: 'Condition defines a readiness condition for a Knative resource. See: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties' + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the last time the condition transitioned from one status to another. We use VolatileTime in place of metav1.Time to exclude this from creating equality.Semantic differences (all other things held constant). + type: string + message: + description: A human readable message indicating details about the transition. + type: string + reason: + description: The reason for the condition's last transition. + type: string + severity: + description: Severity with which to treat failures of this type of condition. When this is not specified, it defaults to Error. + type: string + status: + description: Status of the condition, one of True, False, Unknown. + type: string + type: + description: Type of condition. + type: string + observedGeneration: + description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. + type: integer + format: int64 + privateLoadBalancer: + description: PrivateLoadBalancer contains the current status of the load-balancer. + type: object + properties: + ingress: + description: Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points. + type: array + items: + description: 'LoadBalancerIngressStatus represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.' + type: object + properties: + domain: + description: Domain is set for load-balancer ingress points that are DNS based (typically AWS load-balancers) + type: string + domainInternal: + description: "DomainInternal is set if there is a cluster-local DNS name to access the Ingress. \n NOTE: This differs from K8s Ingress, since we also desire to have a cluster-local DNS name to allow routing in case of not having a mesh." + type: string + ip: + description: IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers) + type: string + meshOnly: + description: MeshOnly is set if the Ingress is only load-balanced through a Service mesh. + type: boolean + publicLoadBalancer: + description: PublicLoadBalancer contains the current status of the load-balancer. + type: object + properties: + ingress: + description: Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points. + type: array + items: + description: 'LoadBalancerIngressStatus represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.' + type: object + properties: + domain: + description: Domain is set for load-balancer ingress points that are DNS based (typically AWS load-balancers) + type: string + domainInternal: + description: "DomainInternal is set if there is a cluster-local DNS name to access the Ingress. \n NOTE: This differs from K8s Ingress, since we also desire to have a cluster-local DNS name to allow routing in case of not having a mesh." + type: string + ip: + description: IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers) + type: string + meshOnly: + description: MeshOnly is set if the Ingress is only load-balanced through a Service mesh. + type: boolean + additionalPrinterColumns: + - name: Ready + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].status" + - name: Reason + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].reason" + names: + kind: Ingress + plural: ingresses + singular: ingress + categories: + - knative-internal + - networking + shortNames: + - kingress + - king + scope: Namespaced +--- +# Copyright 2019 The Knative Authors +# +# 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 +# +# https://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. + +# Note: The schema part of the spec is auto-generated by hack/update-schemas.sh. + +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: metrics.autoscaling.internal.knative.dev + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" + knative.dev/crd-install: "true" +spec: + group: autoscaling.internal.knative.dev + names: + kind: Metric + plural: metrics + singular: metric + categories: + - knative-internal + - autoscaling + scope: Namespaced + versions: + - name: v1alpha1 + served: true + storage: true + subresources: + status: {} + additionalPrinterColumns: + - name: Ready + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].status" + - name: Reason + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].reason" + schema: + openAPIV3Schema: + description: Metric represents a resource to configure the metric collector with. + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: Spec holds the desired state of the Metric (from the client). + type: object + required: + - panicWindow + - scrapeTarget + - stableWindow + properties: + panicWindow: + description: PanicWindow is the aggregation window for metrics where quick reactions are needed. + type: integer + format: int64 + scrapeTarget: + description: ScrapeTarget is the K8s service that publishes the metric endpoint. + type: string + stableWindow: + description: StableWindow is the aggregation window for metrics in a stable state. + type: integer + format: int64 + status: + description: Status communicates the observed state of the Metric (from the controller). + type: object + properties: + annotations: + description: Annotations is additional Status fields for the Resource to save some additional State as well as convey more information to the user. This is roughly akin to Annotations on any k8s resource, just the reconciler conveying richer information outwards. + type: object + additionalProperties: + type: string + conditions: + description: Conditions the latest available observations of a resource's current state. + type: array + items: + description: 'Condition defines a readiness condition for a Knative resource. See: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties' + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the last time the condition transitioned from one status to another. We use VolatileTime in place of metav1.Time to exclude this from creating equality.Semantic differences (all other things held constant). + type: string + message: + description: A human readable message indicating details about the transition. + type: string + reason: + description: The reason for the condition's last transition. + type: string + severity: + description: Severity with which to treat failures of this type of condition. When this is not specified, it defaults to Error. + type: string + status: + description: Status of the condition, one of True, False, Unknown. + type: string + type: + description: Type of condition. + type: string + observedGeneration: + description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. + type: integer + format: int64 +--- +# Copyright 2018 The Knative Authors +# +# 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 +# +# https://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. + +# Note: The schema part of the spec is auto-generated by hack/update-schemas.sh. + +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: podautoscalers.autoscaling.internal.knative.dev + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" + knative.dev/crd-install: "true" +spec: + group: autoscaling.internal.knative.dev + names: + kind: PodAutoscaler + plural: podautoscalers + singular: podautoscaler + categories: + - knative-internal + - autoscaling + shortNames: + - kpa + - pa + scope: Namespaced + versions: + - name: v1alpha1 + served: true + storage: true + subresources: + status: {} + additionalPrinterColumns: + - name: DesiredScale + type: integer + jsonPath: ".status.desiredScale" + - name: ActualScale + type: integer + jsonPath: ".status.actualScale" + - name: Ready + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].status" + - name: Reason + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].reason" + schema: + openAPIV3Schema: + description: 'PodAutoscaler is a Knative abstraction that encapsulates the interface by which Knative components instantiate autoscalers. This definition is an abstraction that may be backed by multiple definitions. For more information, see the Knative Pluggability presentation: https://docs.google.com/presentation/d/19vW9HFZ6Puxt31biNZF3uLRejDmu82rxJIk1cWmxF7w/edit' + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: Spec holds the desired state of the PodAutoscaler (from the client). + type: object + required: + - protocolType + - scaleTargetRef + properties: + containerConcurrency: + description: ContainerConcurrency specifies the maximum allowed in-flight (concurrent) requests per container of the Revision. Defaults to `0` which means unlimited concurrency. + type: integer + format: int64 + protocolType: + description: The application-layer protocol. Matches `ProtocolType` inferred from the revision spec. + type: string + reachability: + description: Reachability specifies whether or not the `ScaleTargetRef` can be reached (ie. has a route). Defaults to `ReachabilityUnknown` + type: string + scaleTargetRef: + description: ScaleTargetRef defines the /scale-able resource that this PodAutoscaler is responsible for quickly right-sizing. + type: object + properties: + apiVersion: + description: API version of the referent. + type: string + kind: + description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + x-kubernetes-map-type: atomic + status: + description: Status communicates the observed state of the PodAutoscaler (from the controller). + type: object + required: + - metricsServiceName + - serviceName + properties: + actualScale: + description: ActualScale shows the actual number of replicas for the revision. + type: integer + format: int32 + annotations: + description: Annotations is additional Status fields for the Resource to save some additional State as well as convey more information to the user. This is roughly akin to Annotations on any k8s resource, just the reconciler conveying richer information outwards. + type: object + additionalProperties: + type: string + conditions: + description: Conditions the latest available observations of a resource's current state. + type: array + items: + description: 'Condition defines a readiness condition for a Knative resource. See: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties' + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the last time the condition transitioned from one status to another. We use VolatileTime in place of metav1.Time to exclude this from creating equality.Semantic differences (all other things held constant). + type: string + message: + description: A human readable message indicating details about the transition. + type: string + reason: + description: The reason for the condition's last transition. + type: string + severity: + description: Severity with which to treat failures of this type of condition. When this is not specified, it defaults to Error. + type: string + status: + description: Status of the condition, one of True, False, Unknown. + type: string + type: + description: Type of condition. + type: string + desiredScale: + description: DesiredScale shows the current desired number of replicas for the revision. + type: integer + format: int32 + metricsServiceName: + description: MetricsServiceName is the K8s Service name that provides revision metrics. The service is managed by the PA object. + type: string + observedGeneration: + description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. + type: integer + format: int64 + serviceName: + description: ServiceName is the K8s Service name that serves the revision, scaled by this PA. The service is created and owned by the ServerlessService object owned by this PA. + type: string +--- +# Copyright 2019 The Knative Authors +# +# 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 +# +# https://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. + +# Note: The schema part of the spec is auto-generated by hack/update-schemas.sh. + +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: revisions.serving.knative.dev + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" + knative.dev/crd-install: "true" +spec: + group: serving.knative.dev + names: + kind: Revision + plural: revisions + singular: revision + categories: + - all + - knative + - serving + shortNames: + - rev + scope: Namespaced + versions: + - name: v1 + served: true + storage: true + subresources: + status: {} + additionalPrinterColumns: + - name: Config Name + type: string + jsonPath: ".metadata.labels['serving\\.knative\\.dev/configuration']" + - name: K8s Service Name + type: string + jsonPath: ".status.serviceName" + - name: Generation + type: string # int in string form :( + jsonPath: ".metadata.labels['serving\\.knative\\.dev/configurationGeneration']" + - name: Ready + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].status" + - name: Reason + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].reason" + - name: Actual Replicas + type: integer + jsonPath: ".status.actualReplicas" + - name: Desired Replicas + type: integer + jsonPath: ".status.desiredReplicas" + schema: + openAPIV3Schema: + description: "Revision is an immutable snapshot of code and configuration. A revision references a container image. Revisions are created by updates to a Configuration. \n See also: https://github.com/knative/serving/blob/main/docs/spec/overview.md#revision" + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: RevisionSpec holds the desired state of the Revision (from the client). + type: object + required: + - containers + properties: + affinity: + description: This is accessible behind a feature flag - kubernetes.podspec-affinity + type: object + x-kubernetes-preserve-unknown-fields: true + automountServiceAccountToken: + description: AutomountServiceAccountToken indicates whether a service account token should be automatically mounted. + type: boolean + containerConcurrency: + description: ContainerConcurrency specifies the maximum allowed in-flight (concurrent) requests per container of the Revision. Defaults to `0` which means concurrency to the application is not limited, and the system decides the target concurrency for the autoscaler. + type: integer + format: int64 + containers: + description: List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated. + type: array + items: + description: A single application container that you want to run within a pod. + type: object + properties: + args: + description: 'Arguments to the entrypoint. The container image''s CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' + type: array + items: + type: string + command: + description: 'Entrypoint array. Not executed within a shell. The container image''s ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' + type: array + items: + type: string + env: + description: List of environment variables to set in the container. Cannot be updated. + type: array + items: + description: EnvVar represents an environment variable present in a Container. + type: object + required: + - name + properties: + name: + description: Name of the environment variable. Must be a C_IDENTIFIER. + type: string + value: + description: 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".' + type: string + valueFrom: + description: Source for the environment variable's value. Cannot be used if value is not empty. + type: object + properties: + configMapKeyRef: + description: Selects a key of a ConfigMap. + type: object + required: + - key + properties: + key: + description: The key to select. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: Specify whether the ConfigMap or its key must be defined + type: boolean + x-kubernetes-map-type: atomic + fieldRef: + description: This is accessible behind a feature flag - kubernetes.podspec-fieldref + type: object + x-kubernetes-preserve-unknown-fields: true + x-kubernetes-map-type: atomic + resourceFieldRef: + description: This is accessible behind a feature flag - kubernetes.podspec-fieldref + type: object + x-kubernetes-preserve-unknown-fields: true + x-kubernetes-map-type: atomic + secretKeyRef: + description: Selects a key of a secret in the pod's namespace + type: object + required: + - key + properties: + key: + description: The key of the secret to select from. Must be a valid secret key. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: Specify whether the Secret or its key must be defined + type: boolean + x-kubernetes-map-type: atomic + envFrom: + description: List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated. + type: array + items: + description: EnvFromSource represents the source of a set of ConfigMaps + type: object + properties: + configMapRef: + description: The ConfigMap to select from + type: object + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: Specify whether the ConfigMap must be defined + type: boolean + x-kubernetes-map-type: atomic + prefix: + description: An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER. + type: string + secretRef: + description: The Secret to select from + type: object + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: Specify whether the Secret must be defined + type: boolean + x-kubernetes-map-type: atomic + image: + description: 'Container image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.' + type: string + imagePullPolicy: + description: 'Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images' + type: string + livenessProbe: + description: 'Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: object + properties: + exec: + description: Exec specifies the action to take. + type: object + properties: + command: + description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + type: array + items: + type: string + failureThreshold: + description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. + type: integer + format: int32 + httpGet: + description: HTTPGet specifies the http request to perform. + type: object + properties: + host: + description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the request. HTTP allows repeated headers. + type: array + items: + description: HTTPHeader describes a custom header to be used in HTTP probes + type: object + required: + - name + - value + properties: + name: + description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + path: + description: Path to access on the HTTP server. + type: string + port: + description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + description: Scheme to use for connecting to the host. Defaults to HTTP. + type: string + initialDelaySeconds: + description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: integer + format: int32 + periodSeconds: + description: How often (in seconds) to perform the probe. + type: integer + format: int32 + successThreshold: + description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + type: integer + format: int32 + tcpSocket: + description: TCPSocket specifies an action involving a TCP port. + type: object + properties: + host: + description: 'Optional: Host name to connect to, defaults to the pod IP.' + type: string + port: + description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + timeoutSeconds: + description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: integer + format: int32 + name: + description: Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. + type: string + ports: + description: List of ports to expose from the container. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Modifying this array with strategic merge patch may corrupt the data. For more information See https://github.com/kubernetes/kubernetes/issues/108255. Cannot be updated. + type: array + items: + description: ContainerPort represents a network port in a single container. + type: object + required: + - containerPort + properties: + containerPort: + description: Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536. + type: integer + format: int32 + name: + description: If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services. + type: string + protocol: + description: Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP". + type: string + default: TCP + x-kubernetes-list-map-keys: + - containerPort + - protocol + x-kubernetes-list-type: map + readinessProbe: + description: 'Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: object + properties: + exec: + description: Exec specifies the action to take. + type: object + properties: + command: + description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + type: array + items: + type: string + failureThreshold: + description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. + type: integer + format: int32 + httpGet: + description: HTTPGet specifies the http request to perform. + type: object + properties: + host: + description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the request. HTTP allows repeated headers. + type: array + items: + description: HTTPHeader describes a custom header to be used in HTTP probes + type: object + required: + - name + - value + properties: + name: + description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + path: + description: Path to access on the HTTP server. + type: string + port: + description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + description: Scheme to use for connecting to the host. Defaults to HTTP. + type: string + initialDelaySeconds: + description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: integer + format: int32 + periodSeconds: + description: How often (in seconds) to perform the probe. + type: integer + format: int32 + successThreshold: + description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + type: integer + format: int32 + tcpSocket: + description: TCPSocket specifies an action involving a TCP port. + type: object + properties: + host: + description: 'Optional: Host name to connect to, defaults to the pod IP.' + type: string + port: + description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + timeoutSeconds: + description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: integer + format: int32 + resources: + description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + type: object + properties: + claims: + description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers." + type: array + items: + description: ResourceClaim references one entry in PodSpec.ResourceClaims. + type: object + required: + - name + properties: + name: + description: Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container. + type: string + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + limits: + description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + type: object + additionalProperties: + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + requests: + description: 'Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + type: object + additionalProperties: + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + securityContext: + description: 'SecurityContext defines the security options the container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/' + type: object + properties: + allowPrivilegeEscalation: + description: 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.' + type: boolean + capabilities: + description: The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows. + type: object + properties: + add: + description: This is accessible behind a feature flag - kubernetes.containerspec-addcapabilities + type: array + items: + description: Capability represent POSIX capabilities type + type: string + drop: + description: Removed capabilities + type: array + items: + description: Capability represent POSIX capabilities type + type: string + readOnlyRootFilesystem: + description: Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows. + type: boolean + runAsGroup: + description: The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows. + type: integer + format: int64 + runAsNonRoot: + description: Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + type: boolean + runAsUser: + description: The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows. + type: integer + format: int64 + seccompProfile: + description: The seccomp options to use by this container. If seccomp options are provided at both the pod & container level, the container options override the pod options. Note that this field cannot be set when spec.os.name is windows. + type: object + required: + - type + properties: + localhostProfile: + description: localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is "Localhost". + type: string + type: + description: "type indicates which kind of seccomp profile will be applied. Valid options are: \n Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied." + type: string + terminationMessagePath: + description: 'Optional: Path at which the file to which the container''s termination message will be written is mounted into the container''s filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.' + type: string + terminationMessagePolicy: + description: Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated. + type: string + volumeMounts: + description: Pod volumes to mount into the container's filesystem. Cannot be updated. + type: array + items: + description: VolumeMount describes a mounting of a Volume within a container. + type: object + required: + - mountPath + - name + properties: + mountPath: + description: Path within the container at which the volume should be mounted. Must not contain ':'. + type: string + name: + description: This must match the Name of a Volume. + type: string + readOnly: + description: Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false. + type: boolean + subPath: + description: Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root). + type: string + workingDir: + description: Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated. + type: string + dnsConfig: + description: This is accessible behind a feature flag - kubernetes.podspec-dnsconfig + type: object + x-kubernetes-preserve-unknown-fields: true + dnsPolicy: + description: This is accessible behind a feature flag - kubernetes.podspec-dnspolicy + type: string + enableServiceLinks: + description: 'EnableServiceLinks indicates whether information about services should be injected into pod''s environment variables, matching the syntax of Docker links. Optional: Knative defaults this to false.' + type: boolean + hostAliases: + description: This is accessible behind a feature flag - kubernetes.podspec-hostaliases + type: array + items: + description: This is accessible behind a feature flag - kubernetes.podspec-hostaliases + type: object + x-kubernetes-preserve-unknown-fields: true + idleTimeoutSeconds: + description: IdleTimeoutSeconds is the maximum duration in seconds a request will be allowed to stay open while not receiving any bytes from the user's application. If unspecified, a system default will be provided. + type: integer + format: int64 + imagePullSecrets: + description: 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod' + type: array + items: + description: LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace. + type: object + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + x-kubernetes-map-type: atomic + initContainers: + description: 'List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/' + type: array + items: + description: This is accessible behind a feature flag - kubernetes.podspec-init-containers + type: object + x-kubernetes-preserve-unknown-fields: true + nodeSelector: + description: This is accessible behind a feature flag - kubernetes.podspec-nodeselector + type: object + x-kubernetes-preserve-unknown-fields: true + x-kubernetes-map-type: atomic + priorityClassName: + description: This is accessible behind a feature flag - kubernetes.podspec-priorityclassname + type: string + x-kubernetes-preserve-unknown-fields: true + responseStartTimeoutSeconds: + description: ResponseStartTimeoutSeconds is the maximum duration in seconds that the request routing layer will wait for a request delivered to a container to begin sending any network traffic. + type: integer + format: int64 + runtimeClassName: + description: This is accessible behind a feature flag - kubernetes.podspec-runtimeclassname + type: string + x-kubernetes-preserve-unknown-fields: true + schedulerName: + description: This is accessible behind a feature flag - kubernetes.podspec-schedulername + type: string + x-kubernetes-preserve-unknown-fields: true + securityContext: + description: This is accessible behind a feature flag - kubernetes.podspec-securitycontext + type: object + x-kubernetes-preserve-unknown-fields: true + serviceAccountName: + description: 'ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/' + type: string + timeoutSeconds: + description: TimeoutSeconds is the maximum duration in seconds that the request instance is allowed to respond to a request. If unspecified, a system default will be provided. + type: integer + format: int64 + tolerations: + description: This is accessible behind a feature flag - kubernetes.podspec-tolerations + type: array + items: + description: This is accessible behind a feature flag - kubernetes.podspec-tolerations + type: object + x-kubernetes-preserve-unknown-fields: true + topologySpreadConstraints: + description: This is accessible behind a feature flag - kubernetes.podspec-topologyspreadconstraints + type: array + items: + description: This is accessible behind a feature flag - kubernetes.podspec-topologyspreadconstraints + type: object + x-kubernetes-preserve-unknown-fields: true + volumes: + description: 'List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes' + type: array + items: + description: Volume represents a named volume in a pod that may be accessed by any container in the pod. + type: object + required: + - name + properties: + configMap: + description: configMap represents a configMap that should populate this volume + type: object + properties: + defaultMode: + description: 'defaultMode is optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + items: + description: items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + type: array + items: + description: Maps a string key to a path within a volume. + type: object + required: + - key + - path + properties: + key: + description: key is the key to project. + type: string + mode: + description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: optional specify whether the ConfigMap or its keys must be defined + type: boolean + x-kubernetes-map-type: atomic + emptyDir: + description: This is accessible behind a feature flag - kubernetes.podspec-emptydir + type: object + x-kubernetes-preserve-unknown-fields: true + name: + description: 'name of the volume. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + persistentVolumeClaim: + description: This is accessible behind a feature flag - kubernetes.podspec-persistent-volume-claim + type: object + x-kubernetes-preserve-unknown-fields: true + projected: + description: projected items for all in one resources secrets, configmaps, and downward API + type: object + properties: + defaultMode: + description: defaultMode are the mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. + type: integer + format: int32 + sources: + description: sources is the list of volume projections + type: array + items: + description: Projection that may be projected along with other supported volume types + type: object + properties: + configMap: + description: configMap information about the configMap data to project + type: object + properties: + items: + description: items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + type: array + items: + description: Maps a string key to a path within a volume. + type: object + required: + - key + - path + properties: + key: + description: key is the key to project. + type: string + mode: + description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: optional specify whether the ConfigMap or its keys must be defined + type: boolean + x-kubernetes-map-type: atomic + downwardAPI: + description: downwardAPI information about the downwardAPI data to project + type: object + properties: + items: + description: Items is a list of DownwardAPIVolume file + type: array + items: + description: DownwardAPIVolumeFile represents information to create the file containing the pod field + type: object + required: + - path + properties: + fieldRef: + description: 'Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.' + type: object + required: + - fieldPath + properties: + apiVersion: + description: Version of the schema the FieldPath is written in terms of, defaults to "v1". + type: string + fieldPath: + description: Path of the field to select in the specified API version. + type: string + x-kubernetes-map-type: atomic + mode: + description: 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: 'Required: Path is the relative path name of the file to be created. Must not be absolute or contain the ''..'' path. Must be utf-8 encoded. The first item of the relative path must not start with ''..''' + type: string + resourceFieldRef: + description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.' + type: object + required: + - resource + properties: + containerName: + description: 'Container name: required for volumes, optional for env vars' + type: string + divisor: + description: Specifies the output format of the exposed resources, defaults to "1" + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + resource: + description: 'Required: resource to select' + type: string + x-kubernetes-map-type: atomic + secret: + description: secret information about the secret data to project + type: object + properties: + items: + description: items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + type: array + items: + description: Maps a string key to a path within a volume. + type: object + required: + - key + - path + properties: + key: + description: key is the key to project. + type: string + mode: + description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: optional field specify whether the Secret or its key must be defined + type: boolean + x-kubernetes-map-type: atomic + serviceAccountToken: + description: serviceAccountToken is information about the serviceAccountToken data to project + type: object + required: + - path + properties: + audience: + description: audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver. + type: string + expirationSeconds: + description: expirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes. + type: integer + format: int64 + path: + description: path is the path relative to the mount point of the file to project the token into. + type: string + secret: + description: 'secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' + type: object + properties: + defaultMode: + description: 'defaultMode is Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + items: + description: items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + type: array + items: + description: Maps a string key to a path within a volume. + type: object + required: + - key + - path + properties: + key: + description: key is the key to project. + type: string + mode: + description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + type: string + optional: + description: optional field specify whether the Secret or its keys must be defined + type: boolean + secretName: + description: 'secretName is the name of the secret in the pod''s namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' + type: string + status: + description: RevisionStatus communicates the observed state of the Revision (from the controller). + type: object + properties: + actualReplicas: + description: ActualReplicas reflects the amount of ready pods running this revision. + type: integer + format: int32 + annotations: + description: Annotations is additional Status fields for the Resource to save some additional State as well as convey more information to the user. This is roughly akin to Annotations on any k8s resource, just the reconciler conveying richer information outwards. + type: object + additionalProperties: + type: string + conditions: + description: Conditions the latest available observations of a resource's current state. + type: array + items: + description: 'Condition defines a readiness condition for a Knative resource. See: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties' + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the last time the condition transitioned from one status to another. We use VolatileTime in place of metav1.Time to exclude this from creating equality.Semantic differences (all other things held constant). + type: string + message: + description: A human readable message indicating details about the transition. + type: string + reason: + description: The reason for the condition's last transition. + type: string + severity: + description: Severity with which to treat failures of this type of condition. When this is not specified, it defaults to Error. + type: string + status: + description: Status of the condition, one of True, False, Unknown. + type: string + type: + description: Type of condition. + type: string + containerStatuses: + description: 'ContainerStatuses is a slice of images present in .Spec.Container[*].Image to their respective digests and their container name. The digests are resolved during the creation of Revision. ContainerStatuses holds the container name and image digests for both serving and non serving containers. ref: http://bit.ly/image-digests' + type: array + items: + description: ContainerStatus holds the information of container name and image digest value + type: object + properties: + imageDigest: + type: string + name: + type: string + desiredReplicas: + description: DesiredReplicas reflects the desired amount of pods running this revision. + type: integer + format: int32 + initContainerStatuses: + description: 'InitContainerStatuses is a slice of images present in .Spec.InitContainer[*].Image to their respective digests and their container name. The digests are resolved during the creation of Revision. ContainerStatuses holds the container name and image digests for both serving and non serving containers. ref: http://bit.ly/image-digests' + type: array + items: + description: ContainerStatus holds the information of container name and image digest value + type: object + properties: + imageDigest: + type: string + name: + type: string + logUrl: + description: LogURL specifies the generated logging url for this particular revision based on the revision url template specified in the controller's config. + type: string + observedGeneration: + description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. + type: integer + format: int64 +--- +# Copyright 2019 The Knative Authors +# +# 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 +# +# https://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. + +# Note: The schema part of the spec is auto-generated by hack/update-schemas.sh. + +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: routes.serving.knative.dev + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" + knative.dev/crd-install: "true" + duck.knative.dev/addressable: "true" +spec: + group: serving.knative.dev + names: + kind: Route + plural: routes + singular: route + categories: + - all + - knative + - serving + shortNames: + - rt + scope: Namespaced + versions: + - name: v1 + served: true + storage: true + subresources: + status: {} + additionalPrinterColumns: + - name: URL + type: string + jsonPath: .status.url + - name: Ready + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].status" + - name: Reason + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].reason" + schema: + openAPIV3Schema: + description: 'Route is responsible for configuring ingress over a collection of Revisions. Some of the Revisions a Route distributes traffic over may be specified by referencing the Configuration responsible for creating them; in these cases the Route is additionally responsible for monitoring the Configuration for "latest ready revision" changes, and smoothly rolling out latest revisions. See also: https://github.com/knative/serving/blob/main/docs/spec/overview.md#route' + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: Spec holds the desired state of the Route (from the client). + type: object + properties: + traffic: + description: Traffic specifies how to distribute traffic over a collection of revisions and configurations. + type: array + items: + description: TrafficTarget holds a single entry of the routing table for a Route. + type: object + properties: + configurationName: + description: ConfigurationName of a configuration to whose latest revision we will send this portion of traffic. When the "status.latestReadyRevisionName" of the referenced configuration changes, we will automatically migrate traffic from the prior "latest ready" revision to the new one. This field is never set in Route's status, only its spec. This is mutually exclusive with RevisionName. + type: string + latestRevision: + description: LatestRevision may be optionally provided to indicate that the latest ready Revision of the Configuration should be used for this traffic target. When provided LatestRevision must be true if RevisionName is empty; it must be false when RevisionName is non-empty. + type: boolean + percent: + description: 'Percent indicates that percentage based routing should be used and the value indicates the percent of traffic that is be routed to this Revision or Configuration. `0` (zero) mean no traffic, `100` means all traffic. When percentage based routing is being used the follow rules apply: - the sum of all percent values must equal 100 - when not specified, the implied value for `percent` is zero for that particular Revision or Configuration' + type: integer + format: int64 + revisionName: + description: RevisionName of a specific revision to which to send this portion of traffic. This is mutually exclusive with ConfigurationName. + type: string + tag: + description: Tag is optionally used to expose a dedicated url for referencing this target exclusively. + type: string + url: + description: URL displays the URL for accessing named traffic targets. URL is displayed in status, and is disallowed on spec. URL must contain a scheme (e.g. http://) and a hostname, but may not contain anything else (e.g. basic auth, url path, etc.) + type: string + status: + description: Status communicates the observed state of the Route (from the controller). + type: object + properties: + address: + description: Address holds the information needed for a Route to be the target of an event. + type: object + properties: + CACerts: + description: CACerts is the Certification Authority (CA) certificates in PEM format according to https://www.rfc-editor.org/rfc/rfc7468. + type: string + name: + description: Name is the name of the address. + type: string + url: + type: string + annotations: + description: Annotations is additional Status fields for the Resource to save some additional State as well as convey more information to the user. This is roughly akin to Annotations on any k8s resource, just the reconciler conveying richer information outwards. + type: object + additionalProperties: + type: string + conditions: + description: Conditions the latest available observations of a resource's current state. + type: array + items: + description: 'Condition defines a readiness condition for a Knative resource. See: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties' + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the last time the condition transitioned from one status to another. We use VolatileTime in place of metav1.Time to exclude this from creating equality.Semantic differences (all other things held constant). + type: string + message: + description: A human readable message indicating details about the transition. + type: string + reason: + description: The reason for the condition's last transition. + type: string + severity: + description: Severity with which to treat failures of this type of condition. When this is not specified, it defaults to Error. + type: string + status: + description: Status of the condition, one of True, False, Unknown. + type: string + type: + description: Type of condition. + type: string + observedGeneration: + description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. + type: integer + format: int64 + traffic: + description: Traffic holds the configured traffic distribution. These entries will always contain RevisionName references. When ConfigurationName appears in the spec, this will hold the LatestReadyRevisionName that we last observed. + type: array + items: + description: TrafficTarget holds a single entry of the routing table for a Route. + type: object + properties: + configurationName: + description: ConfigurationName of a configuration to whose latest revision we will send this portion of traffic. When the "status.latestReadyRevisionName" of the referenced configuration changes, we will automatically migrate traffic from the prior "latest ready" revision to the new one. This field is never set in Route's status, only its spec. This is mutually exclusive with RevisionName. + type: string + latestRevision: + description: LatestRevision may be optionally provided to indicate that the latest ready Revision of the Configuration should be used for this traffic target. When provided LatestRevision must be true if RevisionName is empty; it must be false when RevisionName is non-empty. + type: boolean + percent: + description: 'Percent indicates that percentage based routing should be used and the value indicates the percent of traffic that is be routed to this Revision or Configuration. `0` (zero) mean no traffic, `100` means all traffic. When percentage based routing is being used the follow rules apply: - the sum of all percent values must equal 100 - when not specified, the implied value for `percent` is zero for that particular Revision or Configuration' + type: integer + format: int64 + revisionName: + description: RevisionName of a specific revision to which to send this portion of traffic. This is mutually exclusive with ConfigurationName. + type: string + tag: + description: Tag is optionally used to expose a dedicated url for referencing this target exclusively. + type: string + url: + description: URL displays the URL for accessing named traffic targets. URL is displayed in status, and is disallowed on spec. URL must contain a scheme (e.g. http://) and a hostname, but may not contain anything else (e.g. basic auth, url path, etc.) + type: string + url: + description: URL holds the url that will distribute traffic over the provided traffic targets. It generally has the form http[s]://{route-name}.{route-namespace}.{cluster-level-suffix} + type: string +--- +# Copyright 2019 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: serverlessservices.networking.internal.knative.dev + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/component: networking + app.kubernetes.io/version: "release-v1.2" + knative.dev/crd-install: "true" +spec: + group: networking.internal.knative.dev + versions: + - name: v1alpha1 + served: true + storage: true + subresources: + status: {} + schema: + openAPIV3Schema: + description: 'ServerlessService is a proxy for the K8s service objects containing the endpoints for the revision, whether those are endpoints of the activator or revision pods. See: https://knative.page.link/naxz for details.' + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: 'Spec is the desired state of the ServerlessService. More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' + type: object + required: + - objectRef + - protocolType + properties: + mode: + description: Mode describes the mode of operation of the ServerlessService. + type: string + numActivators: + description: NumActivators contains number of Activators that this revision should be assigned. O means — assign all. + type: integer + format: int32 + objectRef: + description: ObjectRef defines the resource that this ServerlessService is responsible for making "serverless". + type: object + properties: + apiVersion: + description: API version of the referent. + type: string + fieldPath: + description: 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object. TODO: this design is not final and this field is subject to change in the future.' + type: string + kind: + description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + namespace: + description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/' + type: string + resourceVersion: + description: 'Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency' + type: string + uid: + description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids' + type: string + x-kubernetes-map-type: atomic + protocolType: + description: The application-layer protocol. Matches `RevisionProtocolType` set on the owning pa/revision. serving imports networking, so just use string. + type: string + status: + description: 'Status is the current state of the ServerlessService. More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' + type: object + properties: + annotations: + description: Annotations is additional Status fields for the Resource to save some additional State as well as convey more information to the user. This is roughly akin to Annotations on any k8s resource, just the reconciler conveying richer information outwards. + type: object + additionalProperties: + type: string + conditions: + description: Conditions the latest available observations of a resource's current state. + type: array + items: + description: 'Condition defines a readiness condition for a Knative resource. See: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties' + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the last time the condition transitioned from one status to another. We use VolatileTime in place of metav1.Time to exclude this from creating equality.Semantic differences (all other things held constant). + type: string + message: + description: A human readable message indicating details about the transition. + type: string + reason: + description: The reason for the condition's last transition. + type: string + severity: + description: Severity with which to treat failures of this type of condition. When this is not specified, it defaults to Error. + type: string + status: + description: Status of the condition, one of True, False, Unknown. + type: string + type: + description: Type of condition. + type: string + observedGeneration: + description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. + type: integer + format: int64 + privateServiceName: + description: PrivateServiceName holds the name of a core K8s Service resource that load balances over the user service pods backing this Revision. + type: string + serviceName: + description: ServiceName holds the name of a core K8s Service resource that load balances over the pods backing this Revision (activator or revision). + type: string + additionalPrinterColumns: + - name: Mode + type: string + jsonPath: ".spec.mode" + - name: Activators + type: integer + jsonPath: ".spec.numActivators" + - name: ServiceName + type: string + jsonPath: ".status.serviceName" + - name: PrivateServiceName + type: string + jsonPath: ".status.privateServiceName" + - name: Ready + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].status" + - name: Reason + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].reason" + names: + kind: ServerlessService + plural: serverlessservices + singular: serverlessservice + categories: + - knative-internal + - networking + shortNames: + - sks + scope: Namespaced +--- +# Copyright 2019 The Knative Authors +# +# 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 +# +# https://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. + +# Note: The schema part of the spec is auto-generated by hack/update-schemas.sh. + +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: services.serving.knative.dev + labels: + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" + knative.dev/crd-install: "true" + duck.knative.dev/addressable: "true" + duck.knative.dev/podspecable: "true" +spec: + group: serving.knative.dev + names: + kind: Service + plural: services + singular: service + categories: + - all + - knative + - serving + shortNames: + - kservice + - ksvc + scope: Namespaced + versions: + - name: v1 + served: true + storage: true + subresources: + status: {} + additionalPrinterColumns: + - name: URL + type: string + jsonPath: .status.url + - name: LatestCreated + type: string + jsonPath: .status.latestCreatedRevisionName + - name: LatestReady + type: string + jsonPath: .status.latestReadyRevisionName + - name: Ready + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].status" + - name: Reason + type: string + jsonPath: ".status.conditions[?(@.type=='Ready')].reason" + schema: + openAPIV3Schema: + description: "Service acts as a top-level container that manages a Route and Configuration which implement a network service. Service exists to provide a singular abstraction which can be access controlled, reasoned about, and which encapsulates software lifecycle decisions such as rollout policy and team resource ownership. Service acts only as an orchestrator of the underlying Routes and Configurations (much as a kubernetes Deployment orchestrates ReplicaSets), and its usage is optional but recommended. \n The Service's controller will track the statuses of its owned Configuration and Route, reflecting their statuses and conditions as its own. \n See also: https://github.com/knative/serving/blob/main/docs/spec/overview.md#service" + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: ServiceSpec represents the configuration for the Service object. A Service's specification is the union of the specifications for a Route and Configuration. The Service restricts what can be expressed in these fields, e.g. the Route must reference the provided Configuration; however, these limitations also enable friendlier defaulting, e.g. Route never needs a Configuration name, and may be defaulted to the appropriate "run latest" spec. + type: object + properties: + template: + description: Template holds the latest specification for the Revision to be stamped out. + type: object + properties: + metadata: + type: object + properties: + annotations: + type: object + additionalProperties: + type: string + finalizers: + type: array + items: + type: string + labels: + type: object + additionalProperties: + type: string + name: + type: string + namespace: + type: string + x-kubernetes-preserve-unknown-fields: true + spec: + description: RevisionSpec holds the desired state of the Revision (from the client). + type: object + required: + - containers + properties: + affinity: + description: This is accessible behind a feature flag - kubernetes.podspec-affinity + type: object + x-kubernetes-preserve-unknown-fields: true + automountServiceAccountToken: + description: AutomountServiceAccountToken indicates whether a service account token should be automatically mounted. + type: boolean + containerConcurrency: + description: ContainerConcurrency specifies the maximum allowed in-flight (concurrent) requests per container of the Revision. Defaults to `0` which means concurrency to the application is not limited, and the system decides the target concurrency for the autoscaler. + type: integer + format: int64 + containers: + description: List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated. + type: array + items: + description: A single application container that you want to run within a pod. + type: object + properties: + args: + description: 'Arguments to the entrypoint. The container image''s CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' + type: array + items: + type: string + command: + description: 'Entrypoint array. Not executed within a shell. The container image''s ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' + type: array + items: + type: string + env: + description: List of environment variables to set in the container. Cannot be updated. + type: array + items: + description: EnvVar represents an environment variable present in a Container. + type: object + required: + - name + properties: + name: + description: Name of the environment variable. Must be a C_IDENTIFIER. + type: string + value: + description: 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".' + type: string + valueFrom: + description: Source for the environment variable's value. Cannot be used if value is not empty. + type: object + properties: + configMapKeyRef: + description: Selects a key of a ConfigMap. + type: object + required: + - key + properties: + key: + description: The key to select. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: Specify whether the ConfigMap or its key must be defined + type: boolean + x-kubernetes-map-type: atomic + fieldRef: + description: This is accessible behind a feature flag - kubernetes.podspec-fieldref + type: object + x-kubernetes-preserve-unknown-fields: true + x-kubernetes-map-type: atomic + resourceFieldRef: + description: This is accessible behind a feature flag - kubernetes.podspec-fieldref + type: object + x-kubernetes-preserve-unknown-fields: true + x-kubernetes-map-type: atomic + secretKeyRef: + description: Selects a key of a secret in the pod's namespace + type: object + required: + - key + properties: + key: + description: The key of the secret to select from. Must be a valid secret key. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: Specify whether the Secret or its key must be defined + type: boolean + x-kubernetes-map-type: atomic + envFrom: + description: List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated. + type: array + items: + description: EnvFromSource represents the source of a set of ConfigMaps + type: object + properties: + configMapRef: + description: The ConfigMap to select from + type: object + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: Specify whether the ConfigMap must be defined + type: boolean + x-kubernetes-map-type: atomic + prefix: + description: An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER. + type: string + secretRef: + description: The Secret to select from + type: object + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: Specify whether the Secret must be defined + type: boolean + x-kubernetes-map-type: atomic + image: + description: 'Container image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.' + type: string + imagePullPolicy: + description: 'Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images' + type: string + livenessProbe: + description: 'Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: object + properties: + exec: + description: Exec specifies the action to take. + type: object + properties: + command: + description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + type: array + items: + type: string + failureThreshold: + description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. + type: integer + format: int32 + httpGet: + description: HTTPGet specifies the http request to perform. + type: object + properties: + host: + description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the request. HTTP allows repeated headers. + type: array + items: + description: HTTPHeader describes a custom header to be used in HTTP probes + type: object + required: + - name + - value + properties: + name: + description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + path: + description: Path to access on the HTTP server. + type: string + port: + description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + description: Scheme to use for connecting to the host. Defaults to HTTP. + type: string + initialDelaySeconds: + description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: integer + format: int32 + periodSeconds: + description: How often (in seconds) to perform the probe. + type: integer + format: int32 + successThreshold: + description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + type: integer + format: int32 + tcpSocket: + description: TCPSocket specifies an action involving a TCP port. + type: object + properties: + host: + description: 'Optional: Host name to connect to, defaults to the pod IP.' + type: string + port: + description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + timeoutSeconds: + description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: integer + format: int32 + name: + description: Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. + type: string + ports: + description: List of ports to expose from the container. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Modifying this array with strategic merge patch may corrupt the data. For more information See https://github.com/kubernetes/kubernetes/issues/108255. Cannot be updated. + type: array + items: + description: ContainerPort represents a network port in a single container. + type: object + required: + - containerPort + properties: + containerPort: + description: Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536. + type: integer + format: int32 + name: + description: If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services. + type: string + protocol: + description: Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP". + type: string + default: TCP + x-kubernetes-list-map-keys: + - containerPort + - protocol + x-kubernetes-list-type: map + readinessProbe: + description: 'Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: object + properties: + exec: + description: Exec specifies the action to take. + type: object + properties: + command: + description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + type: array + items: + type: string + failureThreshold: + description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. + type: integer + format: int32 + httpGet: + description: HTTPGet specifies the http request to perform. + type: object + properties: + host: + description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the request. HTTP allows repeated headers. + type: array + items: + description: HTTPHeader describes a custom header to be used in HTTP probes + type: object + required: + - name + - value + properties: + name: + description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + path: + description: Path to access on the HTTP server. + type: string + port: + description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + description: Scheme to use for connecting to the host. Defaults to HTTP. + type: string + initialDelaySeconds: + description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: integer + format: int32 + periodSeconds: + description: How often (in seconds) to perform the probe. + type: integer + format: int32 + successThreshold: + description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + type: integer + format: int32 + tcpSocket: + description: TCPSocket specifies an action involving a TCP port. + type: object + properties: + host: + description: 'Optional: Host name to connect to, defaults to the pod IP.' + type: string + port: + description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + timeoutSeconds: + description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + type: integer + format: int32 + resources: + description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + type: object + properties: + claims: + description: "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \n This field is immutable. It can only be set for containers." + type: array + items: + description: ResourceClaim references one entry in PodSpec.ResourceClaims. + type: object + required: + - name + properties: + name: + description: Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container. + type: string + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + limits: + description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + type: object + additionalProperties: + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + requests: + description: 'Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' + type: object + additionalProperties: + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + securityContext: + description: 'SecurityContext defines the security options the container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/' + type: object + properties: + allowPrivilegeEscalation: + description: 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.' + type: boolean + capabilities: + description: The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows. + type: object + properties: + add: + description: This is accessible behind a feature flag - kubernetes.containerspec-addcapabilities + type: array + items: + description: Capability represent POSIX capabilities type + type: string + drop: + description: Removed capabilities + type: array + items: + description: Capability represent POSIX capabilities type + type: string + readOnlyRootFilesystem: + description: Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows. + type: boolean + runAsGroup: + description: The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows. + type: integer + format: int64 + runAsNonRoot: + description: Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + type: boolean + runAsUser: + description: The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows. + type: integer + format: int64 + seccompProfile: + description: The seccomp options to use by this container. If seccomp options are provided at both the pod & container level, the container options override the pod options. Note that this field cannot be set when spec.os.name is windows. + type: object + required: + - type + properties: + localhostProfile: + description: localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is "Localhost". + type: string + type: + description: "type indicates which kind of seccomp profile will be applied. Valid options are: \n Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied." + type: string + terminationMessagePath: + description: 'Optional: Path at which the file to which the container''s termination message will be written is mounted into the container''s filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.' + type: string + terminationMessagePolicy: + description: Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated. + type: string + volumeMounts: + description: Pod volumes to mount into the container's filesystem. Cannot be updated. + type: array + items: + description: VolumeMount describes a mounting of a Volume within a container. + type: object + required: + - mountPath + - name + properties: + mountPath: + description: Path within the container at which the volume should be mounted. Must not contain ':'. + type: string + name: + description: This must match the Name of a Volume. + type: string + readOnly: + description: Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false. + type: boolean + subPath: + description: Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root). + type: string + workingDir: + description: Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated. + type: string + dnsConfig: + description: This is accessible behind a feature flag - kubernetes.podspec-dnsconfig + type: object + x-kubernetes-preserve-unknown-fields: true + dnsPolicy: + description: This is accessible behind a feature flag - kubernetes.podspec-dnspolicy + type: string + enableServiceLinks: + description: 'EnableServiceLinks indicates whether information about services should be injected into pod''s environment variables, matching the syntax of Docker links. Optional: Knative defaults this to false.' + type: boolean + hostAliases: + description: This is accessible behind a feature flag - kubernetes.podspec-hostaliases + type: array + items: + description: This is accessible behind a feature flag - kubernetes.podspec-hostaliases + type: object + x-kubernetes-preserve-unknown-fields: true + idleTimeoutSeconds: + description: IdleTimeoutSeconds is the maximum duration in seconds a request will be allowed to stay open while not receiving any bytes from the user's application. If unspecified, a system default will be provided. + type: integer + format: int64 + imagePullSecrets: + description: 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod' + type: array + items: + description: LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace. + type: object + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + x-kubernetes-map-type: atomic + initContainers: + description: 'List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/' + type: array + items: + description: This is accessible behind a feature flag - kubernetes.podspec-init-containers + type: object + x-kubernetes-preserve-unknown-fields: true + nodeSelector: + description: This is accessible behind a feature flag - kubernetes.podspec-nodeselector + type: object + x-kubernetes-preserve-unknown-fields: true + x-kubernetes-map-type: atomic + priorityClassName: + description: This is accessible behind a feature flag - kubernetes.podspec-priorityclassname + type: string + x-kubernetes-preserve-unknown-fields: true + responseStartTimeoutSeconds: + description: ResponseStartTimeoutSeconds is the maximum duration in seconds that the request routing layer will wait for a request delivered to a container to begin sending any network traffic. + type: integer + format: int64 + runtimeClassName: + description: This is accessible behind a feature flag - kubernetes.podspec-runtimeclassname + type: string + x-kubernetes-preserve-unknown-fields: true + schedulerName: + description: This is accessible behind a feature flag - kubernetes.podspec-schedulername + type: string + x-kubernetes-preserve-unknown-fields: true + securityContext: + description: This is accessible behind a feature flag - kubernetes.podspec-securitycontext + type: object + x-kubernetes-preserve-unknown-fields: true + serviceAccountName: + description: 'ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/' + type: string + timeoutSeconds: + description: TimeoutSeconds is the maximum duration in seconds that the request instance is allowed to respond to a request. If unspecified, a system default will be provided. + type: integer + format: int64 + tolerations: + description: This is accessible behind a feature flag - kubernetes.podspec-tolerations + type: array + items: + description: This is accessible behind a feature flag - kubernetes.podspec-tolerations + type: object + x-kubernetes-preserve-unknown-fields: true + topologySpreadConstraints: + description: This is accessible behind a feature flag - kubernetes.podspec-topologyspreadconstraints + type: array + items: + description: This is accessible behind a feature flag - kubernetes.podspec-topologyspreadconstraints + type: object + x-kubernetes-preserve-unknown-fields: true + volumes: + description: 'List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes' + type: array + items: + description: Volume represents a named volume in a pod that may be accessed by any container in the pod. + type: object + required: + - name + properties: + configMap: + description: configMap represents a configMap that should populate this volume + type: object + properties: + defaultMode: + description: 'defaultMode is optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + items: + description: items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + type: array + items: + description: Maps a string key to a path within a volume. + type: object + required: + - key + - path + properties: + key: + description: key is the key to project. + type: string + mode: + description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: optional specify whether the ConfigMap or its keys must be defined + type: boolean + x-kubernetes-map-type: atomic + emptyDir: + description: This is accessible behind a feature flag - kubernetes.podspec-emptydir + type: object + x-kubernetes-preserve-unknown-fields: true + name: + description: 'name of the volume. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + persistentVolumeClaim: + description: This is accessible behind a feature flag - kubernetes.podspec-persistent-volume-claim + type: object + x-kubernetes-preserve-unknown-fields: true + projected: + description: projected items for all in one resources secrets, configmaps, and downward API + type: object + properties: + defaultMode: + description: defaultMode are the mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. + type: integer + format: int32 + sources: + description: sources is the list of volume projections + type: array + items: + description: Projection that may be projected along with other supported volume types + type: object + properties: + configMap: + description: configMap information about the configMap data to project + type: object + properties: + items: + description: items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + type: array + items: + description: Maps a string key to a path within a volume. + type: object + required: + - key + - path + properties: + key: + description: key is the key to project. + type: string + mode: + description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: optional specify whether the ConfigMap or its keys must be defined + type: boolean + x-kubernetes-map-type: atomic + downwardAPI: + description: downwardAPI information about the downwardAPI data to project + type: object + properties: + items: + description: Items is a list of DownwardAPIVolume file + type: array + items: + description: DownwardAPIVolumeFile represents information to create the file containing the pod field + type: object + required: + - path + properties: + fieldRef: + description: 'Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.' + type: object + required: + - fieldPath + properties: + apiVersion: + description: Version of the schema the FieldPath is written in terms of, defaults to "v1". + type: string + fieldPath: + description: Path of the field to select in the specified API version. + type: string + x-kubernetes-map-type: atomic + mode: + description: 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: 'Required: Path is the relative path name of the file to be created. Must not be absolute or contain the ''..'' path. Must be utf-8 encoded. The first item of the relative path must not start with ''..''' + type: string + resourceFieldRef: + description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.' + type: object + required: + - resource + properties: + containerName: + description: 'Container name: required for volumes, optional for env vars' + type: string + divisor: + description: Specifies the output format of the exposed resources, defaults to "1" + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + resource: + description: 'Required: resource to select' + type: string + x-kubernetes-map-type: atomic + secret: + description: secret information about the secret data to project + type: object + properties: + items: + description: items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + type: array + items: + description: Maps a string key to a path within a volume. + type: object + required: + - key + - path + properties: + key: + description: key is the key to project. + type: string + mode: + description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' + type: string + optional: + description: optional field specify whether the Secret or its key must be defined + type: boolean + x-kubernetes-map-type: atomic + serviceAccountToken: + description: serviceAccountToken is information about the serviceAccountToken data to project + type: object + required: + - path + properties: + audience: + description: audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver. + type: string + expirationSeconds: + description: expirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes. + type: integer + format: int64 + path: + description: path is the path relative to the mount point of the file to project the token into. + type: string + secret: + description: 'secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' + type: object + properties: + defaultMode: + description: 'defaultMode is Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + items: + description: items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. + type: array + items: + description: Maps a string key to a path within a volume. + type: object + required: + - key + - path + properties: + key: + description: key is the key to project. + type: string + mode: + description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' + type: integer + format: int32 + path: + description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + type: string + optional: + description: optional field specify whether the Secret or its keys must be defined + type: boolean + secretName: + description: 'secretName is the name of the secret in the pod''s namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' + type: string + traffic: + description: Traffic specifies how to distribute traffic over a collection of revisions and configurations. + type: array + items: + description: TrafficTarget holds a single entry of the routing table for a Route. + type: object + properties: + configurationName: + description: ConfigurationName of a configuration to whose latest revision we will send this portion of traffic. When the "status.latestReadyRevisionName" of the referenced configuration changes, we will automatically migrate traffic from the prior "latest ready" revision to the new one. This field is never set in Route's status, only its spec. This is mutually exclusive with RevisionName. + type: string + latestRevision: + description: LatestRevision may be optionally provided to indicate that the latest ready Revision of the Configuration should be used for this traffic target. When provided LatestRevision must be true if RevisionName is empty; it must be false when RevisionName is non-empty. + type: boolean + percent: + description: 'Percent indicates that percentage based routing should be used and the value indicates the percent of traffic that is be routed to this Revision or Configuration. `0` (zero) mean no traffic, `100` means all traffic. When percentage based routing is being used the follow rules apply: - the sum of all percent values must equal 100 - when not specified, the implied value for `percent` is zero for that particular Revision or Configuration' + type: integer + format: int64 + revisionName: + description: RevisionName of a specific revision to which to send this portion of traffic. This is mutually exclusive with ConfigurationName. + type: string + tag: + description: Tag is optionally used to expose a dedicated url for referencing this target exclusively. + type: string + url: + description: URL displays the URL for accessing named traffic targets. URL is displayed in status, and is disallowed on spec. URL must contain a scheme (e.g. http://) and a hostname, but may not contain anything else (e.g. basic auth, url path, etc.) + type: string + status: + description: ServiceStatus represents the Status stanza of the Service resource. + type: object + properties: + address: + description: Address holds the information needed for a Route to be the target of an event. + type: object + properties: + CACerts: + description: CACerts is the Certification Authority (CA) certificates in PEM format according to https://www.rfc-editor.org/rfc/rfc7468. + type: string + name: + description: Name is the name of the address. + type: string + url: + type: string + annotations: + description: Annotations is additional Status fields for the Resource to save some additional State as well as convey more information to the user. This is roughly akin to Annotations on any k8s resource, just the reconciler conveying richer information outwards. + type: object + additionalProperties: + type: string + conditions: + description: Conditions the latest available observations of a resource's current state. + type: array + items: + description: 'Condition defines a readiness condition for a Knative resource. See: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties' + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the last time the condition transitioned from one status to another. We use VolatileTime in place of metav1.Time to exclude this from creating equality.Semantic differences (all other things held constant). + type: string + message: + description: A human readable message indicating details about the transition. + type: string + reason: + description: The reason for the condition's last transition. + type: string + severity: + description: Severity with which to treat failures of this type of condition. When this is not specified, it defaults to Error. + type: string + status: + description: Status of the condition, one of True, False, Unknown. + type: string + type: + description: Type of condition. + type: string + latestCreatedRevisionName: + description: LatestCreatedRevisionName is the last revision that was created from this Configuration. It might not be ready yet, for that use LatestReadyRevisionName. + type: string + latestReadyRevisionName: + description: LatestReadyRevisionName holds the name of the latest Revision stamped out from this Configuration that has had its "Ready" condition become "True". + type: string + observedGeneration: + description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller. + type: integer + format: int64 + traffic: + description: Traffic holds the configured traffic distribution. These entries will always contain RevisionName references. When ConfigurationName appears in the spec, this will hold the LatestReadyRevisionName that we last observed. + type: array + items: + description: TrafficTarget holds a single entry of the routing table for a Route. + type: object + properties: + configurationName: + description: ConfigurationName of a configuration to whose latest revision we will send this portion of traffic. When the "status.latestReadyRevisionName" of the referenced configuration changes, we will automatically migrate traffic from the prior "latest ready" revision to the new one. This field is never set in Route's status, only its spec. This is mutually exclusive with RevisionName. + type: string + latestRevision: + description: LatestRevision may be optionally provided to indicate that the latest ready Revision of the Configuration should be used for this traffic target. When provided LatestRevision must be true if RevisionName is empty; it must be false when RevisionName is non-empty. + type: boolean + percent: + description: 'Percent indicates that percentage based routing should be used and the value indicates the percent of traffic that is be routed to this Revision or Configuration. `0` (zero) mean no traffic, `100` means all traffic. When percentage based routing is being used the follow rules apply: - the sum of all percent values must equal 100 - when not specified, the implied value for `percent` is zero for that particular Revision or Configuration' + type: integer + format: int64 + revisionName: + description: RevisionName of a specific revision to which to send this portion of traffic. This is mutually exclusive with ConfigurationName. + type: string + tag: + description: Tag is optionally used to expose a dedicated url for referencing this target exclusively. + type: string + url: + description: URL displays the URL for accessing named traffic targets. URL is displayed in status, and is disallowed on spec. URL must contain a scheme (e.g. http://) and a hostname, but may not contain anything else (e.g. basic auth, url path, etc.) + type: string + url: + description: URL holds the url that will distribute traffic over the provided traffic targets. It generally has the form http[s]://{route-name}.{route-namespace}.{cluster-level-suffix} + type: string diff --git a/openshift/release/artifacts/serving-hpa.yaml b/openshift/release/artifacts/serving-hpa.yaml new file mode 100644 index 000000000000..21f4d7d343ab --- /dev/null +++ b/openshift/release/artifacts/serving-hpa.yaml @@ -0,0 +1,133 @@ +--- +# Copyright 2019 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: apps/v1 +kind: Deployment +metadata: + name: autoscaler-hpa + namespace: knative-serving + labels: + autoscaling.knative.dev/autoscaler-provider: hpa + app.kubernetes.io/component: autoscaler-hpa + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" +spec: + selector: + matchLabels: + app: autoscaler-hpa + template: + metadata: + labels: + app: autoscaler-hpa + app.kubernetes.io/component: autoscaler-hpa + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" + spec: + # To avoid node becoming SPOF, spread our replicas to different nodes. + affinity: + podAntiAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchLabels: + app: autoscaler-hpa + topologyKey: kubernetes.io/hostname + weight: 100 + + serviceAccountName: controller + containers: + - name: autoscaler-hpa + # This is the Go import path for the binary that is containerized + # and substituted here. + image: ko://knative.dev/serving/cmd/autoscaler-hpa + + resources: + requests: + cpu: 30m + memory: 40Mi + limits: + cpu: 300m + memory: 400Mi + + env: + - name: SYSTEM_NAMESPACE + valueFrom: + fieldRef: + fieldPath: metadata.namespace + - name: CONFIG_LOGGING_NAME + value: config-logging + - name: CONFIG_OBSERVABILITY_NAME + value: config-observability + + # TODO(https://github.com/knative/pkg/pull/953): Remove stackdriver specific config + - name: METRICS_DOMAIN + value: knative.dev/serving + + securityContext: + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + runAsNonRoot: true + capabilities: + drop: + - ALL + + + + livenessProbe: + httpGet: + path: /health + port: probes + scheme: HTTP + periodSeconds: 5 + failureThreshold: 5 + readinessProbe: + httpGet: + path: /readiness + port: probes + scheme: HTTP + periodSeconds: 5 + failureThreshold: 5 + + ports: + - name: metrics + containerPort: 9090 + - name: profiling + containerPort: 8008 + - name: probes + containerPort: 8080 + +--- +apiVersion: v1 +kind: Service +metadata: + labels: + app: autoscaler-hpa + autoscaling.knative.dev/autoscaler-provider: hpa + app.kubernetes.io/component: autoscaler-hpa + app.kubernetes.io/name: knative-serving + app.kubernetes.io/version: "release-v1.2" + name: autoscaler-hpa + namespace: knative-serving +spec: + ports: + # Define metrics and profiling for them to be accessible within service meshes. + - name: http-metrics + port: 9090 + targetPort: 9090 + - name: http-profiling + port: 8008 + targetPort: 8008 + selector: + app: autoscaler-hpa diff --git a/openshift/release/artifacts/serving-post-install-jobs.yaml b/openshift/release/artifacts/serving-post-install-jobs.yaml new file mode 100644 index 000000000000..f6fc00a02b61 --- /dev/null +++ b/openshift/release/artifacts/serving-post-install-jobs.yaml @@ -0,0 +1,67 @@ +--- +# Copyright 2020 The Knative Authors +# +# 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 +# +# https://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. + +apiVersion: batch/v1 +kind: Job +metadata: + generateName: storage-version-migration-serving- + namespace: knative-serving + labels: + app: storage-version-migration-serving + app.kubernetes.io/name: knative-serving + app.kubernetes.io/component: storage-version-migration-job + app.kubernetes.io/version: "release-v1.2" +spec: + ttlSecondsAfterFinished: 600 + backoffLimit: 10 + template: + metadata: + annotations: + sidecar.istio.io/inject: "false" + labels: + app: storage-version-migration-serving + app.kubernetes.io/name: knative-serving + app.kubernetes.io/component: storage-version-migration-job + app.kubernetes.io/version: "release-v1.2" + spec: + serviceAccountName: controller + restartPolicy: OnFailure + containers: + - name: migrate + # This is the Go import path for the binary that is containerized + # and substituted here. + image: ko://knative.dev/pkg/apiextensions/storageversion/cmd/migrate + args: + - "services.serving.knative.dev" + - "configurations.serving.knative.dev" + - "revisions.serving.knative.dev" + - "routes.serving.knative.dev" + - "domainmappings.serving.knative.dev" + resources: + requests: + cpu: 100m + memory: 100Mi + limits: + cpu: 1000m + memory: 1000Mi + securityContext: + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + runAsNonRoot: true + capabilities: + drop: + - ALL + + From b8f45bd5ef7a00ed600597787f0a7558c5de5686 Mon Sep 17 00:00:00 2001 From: Serverless QE Robot Date: Sun, 6 Aug 2023 20:39:48 -0400 Subject: [PATCH 4/6] Use kourier 1.11 increase timeout --- openshift/e2e-common.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/openshift/e2e-common.sh b/openshift/e2e-common.sh index 6941ef08224e..bff8010aada4 100644 --- a/openshift/e2e-common.sh +++ b/openshift/e2e-common.sh @@ -149,6 +149,12 @@ function install_serverless(){ export GOPATH=/tmp/go export ON_CLUSTER_BUILDS=true export DOCKER_REPO_OVERRIDE=image-registry.openshift-image-registry.svc:5000/openshift-marketplace + + # TODO: Remove this workaround once SO started using kourier v1.11. + # This workaround is necessary as release-next has serving/pull/14074, which requires net-kourier/pull/1058. + sed "s/kourier: knative-v1.10/kourier: knative-v1.11/" -i olm-catalog/serverless-operator/project.yaml + sed "s/net_kourier_artifacts_branch: release-v1.10/net_kourier_artifacts_branch: release-v1.11/" -i olm-catalog/serverless-operator/project.yaml + OPENSHIFT_CI="true" make generated-files images install-serving || return $? # Create a secret for https test. @@ -440,7 +446,7 @@ function configure_cm { oc -n ${SYSTEM_NAMESPACE} patch knativeserving/knative-serving --type=merge --patch="{\"spec\": {\"config\": { \"$cm\": {$patch} }}}" || failed=1 for j_property in "${!json_properties[@]}"; do - timeout 30 "[[ ! \$(oc get cm -n ${SYSTEM_NAMESPACE} config-$cm -o jsonpath={.data.${j_property}}) == \"${json_properties[$j_property]}\" ]]" || failed=1 + timeout 180 "[[ ! \$(oc get cm -n ${SYSTEM_NAMESPACE} config-$cm -o jsonpath={.data.${j_property}}) == \"${json_properties[$j_property]}\" ]]" || failed=1 done return $failed } From 249cb97fe7b6aff818a6748d565c1480ed716360 Mon Sep 17 00:00:00 2001 From: Kenjiro Nakayama Date: Fri, 11 Aug 2023 14:16:11 +0900 Subject: [PATCH 5/6] Drop unused functions --- openshift/e2e-common.sh | 38 ++++---------------------------------- 1 file changed, 4 insertions(+), 34 deletions(-) diff --git a/openshift/e2e-common.sh b/openshift/e2e-common.sh index bff8010aada4..f447092c65b7 100644 --- a/openshift/e2e-common.sh +++ b/openshift/e2e-common.sh @@ -90,16 +90,6 @@ function wait_until_hostname_resolves() { return 1 } -# Loops until duration (car) is exceeded or command (cdr) returns non-zero -function timeout() { - SECONDS=0; TIMEOUT=$1; shift - while eval $*; do - sleep 5 - [[ $SECONDS -gt $TIMEOUT ]] && echo "ERROR: Timed out" && return 1 - done - return 0 -} - function serverless_operator_version { if [[ "$branch" == "knative-v1.7" ]]; then echo 'release-1.28' @@ -176,7 +166,10 @@ function install_knative(){ # TODO: Only one cluster enables internal-tls but it should be enabled by default when the feature is stable. if [[ ${ENABLE_INTERNAL_TLS:-} == "true" ]]; then configure_cm network internal-encryption:true || fail_test - configure_cm kourier cluster-cert-secret:server-certs || fail_test + # As config-kourier is in ingress namespace, don't use configure_cm. + oc patch knativeserving knative-serving \ + -n "${SERVING_NAMESPACE}" \ + --type merge --patch '{"spec": {"config": {"kourier": {"cluster-cert-secret": "server-certs"}}}}' # Deploy certificates for testing TLS with cluster-local gateway timeout 600 '[[ $(oc get ns $SERVING_INGRESS_NAMESPACE -oname | wc -l) == 0 ]]' || return 1 yq read --doc 1 ./test/config/tls/cert-secret.yaml | yq write - metadata.namespace ${SERVING_INGRESS_NAMESPACE} | oc apply -f - @@ -427,26 +420,3 @@ function disable_feature_flags { sleep 30 return $failed } - -function configure_cm { - local failed=0 - local cm="$1" - local patch="" - declare -A json_properties - - for property in "${@:2}"; do - KEY="${property%%:*}" - VALUE="${property##*:}" - patch=${patch:+$patch,}"\"$KEY\": \"$VALUE\"" - # escape in case property contains dots eg. kubernetes.pod-spec - j_property="$(echo "'$KEY'" | sed "s/\./\\\./g")" - json_properties["$j_property"]="$VALUE" - done - - oc -n ${SYSTEM_NAMESPACE} patch knativeserving/knative-serving --type=merge --patch="{\"spec\": {\"config\": { \"$cm\": {$patch} }}}" || failed=1 - - for j_property in "${!json_properties[@]}"; do - timeout 180 "[[ ! \$(oc get cm -n ${SYSTEM_NAMESPACE} config-$cm -o jsonpath={.data.${j_property}}) == \"${json_properties[$j_property]}\" ]]" || failed=1 - done - return $failed -} From cb8ee023b7c552baeb621a34635b561f26f7893e Mon Sep 17 00:00:00 2001 From: Kenjiro Nakayama Date: Fri, 11 Aug 2023 14:17:40 +0900 Subject: [PATCH 6/6] Use old vegeta --- go.mod | 3 +- go.sum | 45 +- .../github.com/rs/dnscache/LICENSE | 21 - .../github.com/tsenart/vegeta/v12/lib/LICENSE | 2 +- vendor/github.com/rs/dnscache/.travis.yml | 13 - vendor/github.com/rs/dnscache/LICENSE | 21 - vendor/github.com/rs/dnscache/README.md | 78 --- vendor/github.com/rs/dnscache/dnscache.go | 275 -------- .../tsenart/vegeta/v12/.deepsource.toml | 15 + .../github.com/tsenart/vegeta/v12/Dockerfile | 21 - vendor/github.com/tsenart/vegeta/v12/LICENSE | 2 +- vendor/github.com/tsenart/vegeta/v12/Makefile | 25 +- .../github.com/tsenart/vegeta/v12/README.md | 116 +--- .../github.com/tsenart/vegeta/v12/attack.go | 62 +- .../tsenart/vegeta/v12/attack_nonwindows.go | 1 - .../github.com/tsenart/vegeta/v12/encode.go | 2 +- vendor/github.com/tsenart/vegeta/v12/flags.go | 21 - .../tsenart/vegeta/v12/lib/attack.go | 211 +----- .../tsenart/vegeta/v12/lib/attack_fuzz.go | 6 +- .../tsenart/vegeta/v12/lib/pacer.go | 80 +-- .../tsenart/vegeta/v12/lib/plot/assets.go | 1 - .../vegeta/v12/lib/plot/assets_vfsdata.go | 25 +- .../tsenart/vegeta/v12/lib/plot/plot.go | 33 +- .../tsenart/vegeta/v12/lib/prom/grafana.json | 645 ------------------ .../tsenart/vegeta/v12/lib/prom/prom.go | 82 --- .../vegeta/v12/lib/prom/prometheus-sample.png | Bin 431921 -> 0 bytes .../vegeta/v12/lib/results_easyjson.go | 13 +- .../tsenart/vegeta/v12/lib/results_fuzz.go | 1 - .../tsenart/vegeta/v12/lib/target.schema.json | 12 +- .../tsenart/vegeta/v12/lib/targets.go | 35 +- .../tsenart/vegeta/v12/lib/targets_fuzz.go | 1 - .../tsenart/vegeta/v12/lib/util_fuzz.go | 1 - vendor/github.com/tsenart/vegeta/v12/main.go | 2 +- vendor/github.com/tsenart/vegeta/v12/plot.go | 2 +- .../github.com/tsenart/vegeta/v12/report.go | 3 +- .../tsenart/vegeta/v12/report_nonwindows.go | 1 - .../tsenart/vegeta/v12/report_windows.go | 1 - .../x/sync/singleflight/singleflight.go | 205 ------ vendor/modules.txt | 10 +- 39 files changed, 227 insertions(+), 1866 deletions(-) delete mode 100644 third_party/VENDOR-LICENSE/github.com/rs/dnscache/LICENSE delete mode 100644 vendor/github.com/rs/dnscache/.travis.yml delete mode 100644 vendor/github.com/rs/dnscache/LICENSE delete mode 100644 vendor/github.com/rs/dnscache/README.md delete mode 100644 vendor/github.com/rs/dnscache/dnscache.go create mode 100644 vendor/github.com/tsenart/vegeta/v12/.deepsource.toml delete mode 100644 vendor/github.com/tsenart/vegeta/v12/Dockerfile delete mode 100644 vendor/github.com/tsenart/vegeta/v12/lib/prom/grafana.json delete mode 100644 vendor/github.com/tsenart/vegeta/v12/lib/prom/prom.go delete mode 100644 vendor/github.com/tsenart/vegeta/v12/lib/prom/prometheus-sample.png delete mode 100644 vendor/golang.org/x/sync/singleflight/singleflight.go diff --git a/go.mod b/go.mod index fc7f0865b4d3..0ef89de39df2 100644 --- a/go.mod +++ b/go.mod @@ -129,7 +129,6 @@ require ( github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.10.1 // indirect github.com/prometheus/statsd_exporter v0.21.0 // indirect - github.com/rs/dnscache v0.0.0-20211102005908-e0241e321417 // indirect github.com/russross/blackfriday/v2 v2.1.0 // indirect github.com/sirupsen/logrus v1.9.0 // indirect github.com/spf13/pflag v1.0.5 // indirect @@ -158,3 +157,5 @@ require ( sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect ) + +replace github.com/tsenart/vegeta/v12 => github.com/tsenart/vegeta/v12 v12.8.4 diff --git a/go.sum b/go.sum index 840489834751..1df73b878922 100644 --- a/go.sum +++ b/go.sum @@ -74,6 +74,7 @@ github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMx github.com/Shopify/toxiproxy/v2 v2.1.6-0.20210914104332-15ea381dcdae/go.mod h1:/cvHQkZ1fst0EmZnA5dFtiQdWCNCFYzb+uE2vqVgvx0= github.com/ahmetb/gen-crd-api-reference-docs v0.3.1-0.20210609063737-0067dc6dcea2 h1:t/ces1/q8tuApSb+T5ajsu3wqkofUT43U1gpDYTPYME= github.com/ahmetb/gen-crd-api-reference-docs v0.3.1-0.20210609063737-0067dc6dcea2/go.mod h1:TdjdkYhlOifCQWPs1UdTma97kQQMozf5h26hTuG70u8= +github.com/alecthomas/jsonschema v0.0.0-20180308105923-f2c93856175a/go.mod h1:qpebaTNSsyUn5rPSJMsfqEtDw71TTggXM6stUDI16HA= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= @@ -120,8 +121,10 @@ github.com/blang/semver/v4 v4.0.0 h1:1PFHFE6yCCTv8C1TeyNNarDzntLi7wMI5i/pzqYIsAM github.com/blang/semver/v4 v4.0.0/go.mod h1:IbckMUScFkM3pff0VJDNKRiT6TG/YpiHIM2yvyW5YoQ= github.com/blendle/zapdriver v1.3.1 h1:C3dydBOWYRiOk+B8X9IVZ5IOe+7cl+tGOexN4QqHfpE= github.com/blendle/zapdriver v1.3.1/go.mod h1:mdXfREi6u5MArG4j9fewC+FGnXaBR+T4Ox4J2u4eHCc= -github.com/bmizerany/perks v0.0.0-20230307044200-03f9df79da1e h1:mWOqoK5jV13ChKf/aF3plwQ96laasTJgZi4f1aSOu+M= +github.com/bmizerany/perks v0.0.0-20141205001514-d9a9656a3a4b h1:AP/Y7sqYicnjGDfD5VcY4CIfh1hRXBUavxrvELjTiOE= +github.com/bmizerany/perks v0.0.0-20141205001514-d9a9656a3a4b/go.mod h1:ac9efd0D1fsDb3EJvhqgXRbFx7bs2wqZ10HQPeU8U/Q= github.com/buger/jsonparser v1.1.1/go.mod h1:6RYKKt7H4d4+iWqouImQ9R2FZql3VbhNgx27UK13J/0= +github.com/c2h5oh/datasize v0.0.0-20171227191756-4eba002a5eae/go.mod h1:S/7n9copUssQ56c7aAgHqftWO4LTf4xY6CGWt8Bc+3M= github.com/c2h5oh/datasize v0.0.0-20220606134207-859f65c6625b h1:6+ZFm0flnudZzdSE0JxlhR2hKnGPcNB35BjQf4RYQDY= github.com/c2h5oh/datasize v0.0.0-20220606134207-859f65c6625b/go.mod h1:S/7n9copUssQ56c7aAgHqftWO4LTf4xY6CGWt8Bc+3M= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= @@ -156,8 +159,10 @@ github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSs github.com/deepmap/oapi-codegen v1.8.2 h1:SegyeYGcdi0jLLrpbCMoJxnUUn8GBXHsvr4rbzjuhfU= github.com/deepmap/oapi-codegen v1.8.2/go.mod h1:YLgSKSDv/bZQB7N4ws6luhozi3cEdRktEqrX88CvjIw= github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= -github.com/dgryski/go-gk v0.0.0-20200319235926-a69029f61654 h1:XOPLOMn/zT4jIgxfxSsoXPxkrzz0FaCHwp33x5POJ+Q= -github.com/dgryski/go-lttb v0.0.0-20230207170358-f8fc36cdbff1 h1:dxwR3CStJdJamsIoMPCmxuIfBAPTgmzvFax+MvFav3M= +github.com/dgryski/go-gk v0.0.0-20140819190930-201884a44051 h1:ByJUvQYyTtNNCVfYNM48q6uYUT4fAlN0wNmd3th4BSo= +github.com/dgryski/go-gk v0.0.0-20140819190930-201884a44051/go.mod h1:qm+vckxRlDt0aOla0RYJJVeqHZlWfOm2UIxHaqPB46E= +github.com/dgryski/go-lttb v0.0.0-20180810165845-318fcdf10a77 h1:iRnqZBF0a1hoOOjOdPKf+IxqlJZOas7A48j77RAc7Yg= +github.com/dgryski/go-lttb v0.0.0-20180810165845-318fcdf10a77/go.mod h1:Va5MyIzkU0rAM92tn3hb3Anb7oz7KcnixF49+2wOMe4= github.com/dimchansky/utfbom v1.1.1 h1:vV6w1AhK4VMnhBno/TPVCoK9U/LP0PkLCS9tbxHdi/U= github.com/dimchansky/utfbom v1.1.1/go.mod h1:SxdoEBH5qIqFocHMyGOXVAybYJdr71b1Q/j0mACtrfE= github.com/docker/cli v20.10.20+incompatible h1:lWQbHSHUFs7KraSN2jOJK7zbMS2jNCHI4mt4xUFUVQ4= @@ -271,6 +276,15 @@ github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiu github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golangci/lint-1 v0.0.0-20181222135242-d2cdd8c08219/go.mod h1:/X8TswGSh1pIozq4ZwCfxS0WA5JGXguxk94ar/4c87Y= +github.com/gonum/blas v0.0.0-20181208220705-f22b278b28ac/go.mod h1:P32wAyui1PQ58Oce/KYkOqQv8cVw1zAapXOl+dRFGbc= +github.com/gonum/diff v0.0.0-20181124234638-500114f11e71/go.mod h1:22dM4PLscQl+Nzf64qNBurVJvfyvZELT0iRW2l/NN70= +github.com/gonum/floats v0.0.0-20181209220543-c233463c7e82/go.mod h1:PxC8OnwL11+aosOB5+iEPoV3picfs8tUpkVd0pDo+Kg= +github.com/gonum/integrate v0.0.0-20181209220457-a422b5c0fdf2/go.mod h1:pDgmNM6seYpwvPos3q+zxlXMsbve6mOIPucUnUOrI7Y= +github.com/gonum/internal v0.0.0-20181124074243-f884aa714029/go.mod h1:Pu4dmpkhSyOzRwuXkOgAvijx4o+4YMUJJo9OvPYMkks= +github.com/gonum/lapack v0.0.0-20181123203213-e4cdc5a0bff9/go.mod h1:XA3DeT6rxh2EAE789SSiSJNqxPaC0aE9J8NTOI0Jo/A= +github.com/gonum/mathext v0.0.0-20181121095525-8a4bf007ea55/go.mod h1:fmo8aiSEWkJeiGXUJf+sPvuDgEFgqIoZSs843ePKrGg= +github.com/gonum/matrix v0.0.0-20181209220409-c518dec07be9/go.mod h1:0EXg4mc1CNP0HCqCz+K4ts155PXIlUywf0wqN+GfPZw= +github.com/gonum/stat v0.0.0-20181125101827-41a0da705a5b/go.mod h1:Z4GIJBJO3Wa4gD4vbwQxXXZ+WHmW6E9ixmNrwvs0iZs= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/gnostic v0.6.9 h1:ZK/5VhkoX835RikCHpSUJV9a+S3e1zLh59YnyWeBW+0= @@ -332,7 +346,6 @@ github.com/gorilla/securecookie v1.1.1/go.mod h1:ra0sb63/xPlUeL+yeDciTfxMRAA+MP+ github.com/gorilla/sessions v1.2.1/go.mod h1:dk2InVEVJ0sfLlnXv9EAgkf6ecYs/i80K/zI+bUmuGM= github.com/gorilla/websocket v1.5.0 h1:PPwGk2jz7EePpoHN/+ClbZu8SPxiqlu12wZP/3sWmnc= github.com/gorilla/websocket v1.5.0/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= -github.com/grafana/regexp v0.0.0-20221122212121-6b5c0a4cb7fd h1:PpuIBO5P3e9hpqBD0O/HjhShYuM6XE0i/lbE6J94kww= github.com/grpc-ecosystem/grpc-gateway v1.14.6/go.mod h1:zdiPV4Yse/1gnckTHtghG4GkDEdKCRJduHpTxT3/jcw= github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3 h1:lLT7ZLSzGLI08vc9cpd+tYmNWjdKDqyr/2L+f6U12Fk= @@ -350,6 +363,7 @@ github.com/influxdata/influxdb-client-go/v2 v2.9.0 h1:1Ejxpt+cpWkadefxd5xvVx7pFg github.com/influxdata/influxdb-client-go/v2 v2.9.0/go.mod h1:x7Jo5UHHl+w8wu8UnGiNobDDHygojXwJX4mx7rXGKMk= github.com/influxdata/line-protocol v0.0.0-20200327222509-2487e7298839 h1:W9WBk7wlPfJLvMCdtV4zPulc4uCPrlywQOmbFOhgQNU= github.com/influxdata/line-protocol v0.0.0-20200327222509-2487e7298839/go.mod h1:xaLFMmpvUxqXtVkUJfg9QmT88cDaCJ3ZKgdZ78oO8Qo= +github.com/influxdata/tdigest v0.0.0-20180711151920-a7d76c6f093a/go.mod h1:9GkyshztGufsdPQWjH+ifgnIr3xNUL5syI70g2dzU1o= github.com/influxdata/tdigest v0.0.1 h1:XpFptwYmnEKUqmkcDjrzffswZ3nvNeevbUSLPP/ZzIY= github.com/influxdata/tdigest v0.0.1/go.mod h1:Z0kXnxzbTC2qrx4NaIzYkE1k66+6oEDQTvL95hQFh5Y= github.com/jcmturner/aescts/v2 v2.0.0/go.mod h1:AiaICIRyfYg35RUkr8yESTqvSy7csK90qZ5xfvvsoNs= @@ -398,6 +412,7 @@ github.com/labstack/gommon v0.3.0/go.mod h1:MULnywXg0yavhxWKc+lOruYdAhDwPK9wf0OL github.com/lyft/protoc-gen-validate v0.0.13/go.mod h1:XbGvPuh87YZc5TdIa2/I4pLk0QoUACkjt2znoq26NVQ= github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= +github.com/mailru/easyjson v0.7.0/go.mod h1:KAzv3t3aY1NaHWoQz1+4F1ccyAH66Jk7yos7ldAVICs= github.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0= github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= github.com/matryer/moq v0.0.0-20190312154309-6cfb0558e1bd/go.mod h1:9ELz6aaclSIGnZBoaSLZ3NAl1VTufbOrXBPvtcy6WiQ= @@ -410,7 +425,8 @@ github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Ky github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= github.com/matttproud/golang_protobuf_extensions v1.0.4 h1:mmDVorXM7PCGKw94cs5zkfA9PSy5pEvNWRP0ET0TIVo= github.com/matttproud/golang_protobuf_extensions v1.0.4/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= -github.com/miekg/dns v1.1.55 h1:GoQ4hpsj0nFLYe+bWiCToyrBEJXkQfOOIvFGFy0lEgo= +github.com/miekg/dns v1.1.17 h1:BhJxdA7bH51vKFZSY8Sn9pR7++LREvg0eYFzHA452ew= +github.com/miekg/dns v1.1.17/go.mod h1:WgzbA6oji13JREwiNsRDNfl7jYdPnmz+VEuLrA+/48M= github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y= github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= @@ -478,7 +494,6 @@ github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4O github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= github.com/prometheus/procfs v0.10.1 h1:kYK1Va/YMlutzCGazswoHKo//tZVlFpKYh+PymziUAg= github.com/prometheus/procfs v0.10.1/go.mod h1:nwNm2aOCAYw8uTR/9bWRREkZFxAUcWzPHWJq+XBB/FM= -github.com/prometheus/prometheus v0.45.0 h1:O/uG+Nw4kNxx/jDPxmjsSDd+9Ohql6E7ZSY1x5x/0KI= github.com/prometheus/statsd_exporter v0.21.0 h1:hA05Q5RFeIjgwKIYEdFd59xu5Wwaznf33yKI+pyX6T8= github.com/prometheus/statsd_exporter v0.21.0/go.mod h1:rbT83sZq2V+p73lHhPZfMc3MLCHmSHelCh9hSGYNLTQ= github.com/rabbitmq/amqp091-go v1.1.0/go.mod h1:ogQDLSOACsLPsIq0NpbtiifNZi2YOz0VTJ0kHRghqbM= @@ -487,8 +502,6 @@ github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475/go.mod h1:bCqn github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ= -github.com/rs/dnscache v0.0.0-20211102005908-e0241e321417 h1:Lt9DzQALzHoDwMBGJ6v8ObDPR0dzr2a6sXTB1Fq7IHs= -github.com/rs/dnscache v0.0.0-20211102005908-e0241e321417/go.mod h1:qe5TWALJ8/a1Lqznoc5BDHpYX/8HU60Hm2AwRmqzxqA= github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= @@ -505,7 +518,8 @@ github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= github.com/stoewer/go-strcase v1.2.0/go.mod h1:IBiWB2sKIp3wVVQ3Y035++gc+knqhUQag1KpM8ahLw8= github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= -github.com/streadway/quantile v0.0.0-20220407130108-4246515d968d h1:X4+kt6zM/OVO6gbJdAfJR60MGPsqCzbtXNnjoGqdfAs= +github.com/streadway/quantile v0.0.0-20150917103942-b0c588724d25 h1:7z3LSn867ex6VSaahyKadf4WtSsJIgne6A1WLOAGM8A= +github.com/streadway/quantile v0.0.0-20150917103942-b0c588724d25/go.mod h1:lbP8tGiBjZ5YWIc2fzuRpTaz0b/53vT6PEs3QuAWzuU= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= @@ -520,10 +534,11 @@ github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/ github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= github.com/stretchr/testify v1.8.1 h1:w7B6lhMri9wdJUVmEZPGGhZzrYTPvgJArz7wNPgYKsk= github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= +github.com/tsenart/go-tsz v0.0.0-20180814232043-cdeb9e1e981e/go.mod h1:SWZznP1z5Ki7hDT2ioqiFKEse8K9tU2OUvaRI0NeGQo= github.com/tsenart/go-tsz v0.0.0-20180814235614-0bd30b3df1c3 h1:pcQGQzTwCg//7FgVywqge1sW9Yf8VMsMdG58MI5kd8s= github.com/tsenart/go-tsz v0.0.0-20180814235614-0bd30b3df1c3/go.mod h1:SWZznP1z5Ki7hDT2ioqiFKEse8K9tU2OUvaRI0NeGQo= -github.com/tsenart/vegeta/v12 v12.11.0 h1:f6V4xW6KMc5BLAWPzEu9l6Vclif44AW4IxPC7TSZwDM= -github.com/tsenart/vegeta/v12 v12.11.0/go.mod h1:YzY1ucY/V7QyR5ZVRqSMUkyuwgyqtXWQuEa2lVPzUeU= +github.com/tsenart/vegeta/v12 v12.8.4 h1:UQ7tG7WkDorKj0wjx78Z4/vsMBP8RJQMGJqRVrkvngg= +github.com/tsenart/vegeta/v12 v12.8.4/go.mod h1:ZiJtwLn/9M4fTPdMY7bdbIeyNeFVE8/AHbWFqCsUuho= github.com/urfave/cli v1.22.4/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= github.com/urfave/cli/v2 v2.3.0/go.mod h1:LJmUH05zAU44vOAcrfzZQKsZbVcdbOG8rtL3/XcUArI= github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc= @@ -568,6 +583,7 @@ golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnf golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190829043050-9756ffdc2472/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= @@ -590,8 +606,8 @@ golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u0 golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= +golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6 h1:QE6XYQK6naiK1EPAe1g/ILLxN5RBoH5xkJk3CqlMI/Y= golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= -golang.org/x/exp v0.0.0-20230713183714-613f0c0eb8a1 h1:MGwJjxBy0HJshjDNfLsYO8xppfqWlA5ZT9OhtUUhTNw= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= @@ -630,6 +646,7 @@ golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLL golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190827160401-ba9fcec4b297/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-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= @@ -773,6 +790,7 @@ golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgw golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20190907020128-2ca718005c18/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/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-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= @@ -981,7 +999,8 @@ knative.dev/networking v0.0.0-20230807014815-f25e82aa2005 h1:LyXnt3TI8wdh7+2T6GK knative.dev/networking v0.0.0-20230807014815-f25e82aa2005/go.mod h1:wDDrwfgGSnn2NDcR169IUPBi96FzY9iSBS4Q05hOTX0= knative.dev/pkg v0.0.0-20230808043333-ea6c1f29b641 h1:3TUhSU2mIBI+SSLqfeaAnMB0EDzjcVQjXLC3BmAptsU= knative.dev/pkg v0.0.0-20230808043333-ea6c1f29b641/go.mod h1:1TUywzFGQcoDUg/hrP4PRPh1Xaw7s5B9n0Kb0hrytJs= -pgregory.net/rapid v1.0.0 h1:iQaM2w5PZ6xvt6x7hbd7tiDS+nk7YPp5uCaEba+T/F4= +pgregory.net/rapid v0.3.3 h1:jCjBsY4ln4Atz78QoBWxUEvAHaFyNDQg9+WU62aCn1U= +pgregory.net/rapid v0.3.3/go.mod h1:UYpPVyjFHzYBGHIxLFoupi8vwk6rXNzRY9OMvVxFIOU= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= diff --git a/third_party/VENDOR-LICENSE/github.com/rs/dnscache/LICENSE b/third_party/VENDOR-LICENSE/github.com/rs/dnscache/LICENSE deleted file mode 100644 index 71abfee39c7e..000000000000 --- a/third_party/VENDOR-LICENSE/github.com/rs/dnscache/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2018 Olivier Poitrey - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/third_party/VENDOR-LICENSE/github.com/tsenart/vegeta/v12/lib/LICENSE b/third_party/VENDOR-LICENSE/github.com/tsenart/vegeta/v12/lib/LICENSE index d396b44b381b..03ec4f5a824e 100644 --- a/third_party/VENDOR-LICENSE/github.com/tsenart/vegeta/v12/lib/LICENSE +++ b/third_party/VENDOR-LICENSE/github.com/tsenart/vegeta/v12/lib/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2013-2023 Tomás Senart +Copyright (c) 2013-2020 Tomás Senart 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 diff --git a/vendor/github.com/rs/dnscache/.travis.yml b/vendor/github.com/rs/dnscache/.travis.yml deleted file mode 100644 index ce47932b596c..000000000000 --- a/vendor/github.com/rs/dnscache/.travis.yml +++ /dev/null @@ -1,13 +0,0 @@ -language: go -go: - - "1.8" - - "1.9" - - "1.10" - - "1.11" - - "1.12" - - tip -matrix: - allow_failures: - - go: tip -script: - go test -v -race -cpu=1,2,4 -bench . -benchmem ./... diff --git a/vendor/github.com/rs/dnscache/LICENSE b/vendor/github.com/rs/dnscache/LICENSE deleted file mode 100644 index 71abfee39c7e..000000000000 --- a/vendor/github.com/rs/dnscache/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2018 Olivier Poitrey - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/vendor/github.com/rs/dnscache/README.md b/vendor/github.com/rs/dnscache/README.md deleted file mode 100644 index 267c6996c535..000000000000 --- a/vendor/github.com/rs/dnscache/README.md +++ /dev/null @@ -1,78 +0,0 @@ -# DNS Lookup Cache - -[![license](http://img.shields.io/badge/license-MIT-red.svg?style=flat)](https://raw.githubusercontent.com/rs/dnscache/master/LICENSE) -[![Go Report Card](https://goreportcard.com/badge/github.com/rs/dnscache)](https://goreportcard.com/report/github.com/rs/dnscache) -[![Build Status](https://travis-ci.org/rs/dnscache.svg?branch=master)](https://travis-ci.org/rs/dnscache) -[![Coverage](http://gocover.io/_badge/github.com/rs/dnscache)](http://gocover.io/github.com/rs/dnscache) -[![godoc](http://img.shields.io/badge/godoc-reference-blue.svg?style=flat)](https://godoc.org/github.com/rs/dnscache) - -The dnscache package provides a DNS cache layer to Go's `net.Resolver`. - -# Install - -Install using the "go get" command: - -``` -go get -u github.com/rs/dnscache -``` - -# Usage - -Create a new instance and use it in place of `net.Resolver`. New names will be cached. Call the `Refresh` method at regular interval to update cached entries and cleanup unused ones. - -```go -resolver := &dnscache.Resolver{} - -// First call will cache the result -addrs, err := resolver.LookupHost(context.Background(), "example.com") - -// Subsequent calls will use the cached result -addrs, err = resolver.LookupHost(context.Background(), "example.com") - -// Call to refresh will refresh names in cache. If you pass true, it will also -// remove cached names not looked up since the last call to Refresh. It is a good idea -// to call this method on a regular interval. -go func() { - t := time.NewTicker(5 * time.Minute) - defer t.Stop() - for range t.C { - resolver.Refresh(true) - } -}() -``` - -If you are using an `http.Transport`, you can use this cache by specifying a `DialContext` function: - -```go -r := &dnscache.Resolver{} -t := &http.Transport{ - DialContext: func(ctx context.Context, network string, addr string) (conn net.Conn, err error) { - host, port, err := net.SplitHostPort(addr) - if err != nil { - return nil, err - } - ips, err := r.LookupHost(ctx, host) - if err != nil { - return nil, err - } - for _, ip := range ips { - var dialer net.Dialer - conn, err = dialer.DialContext(ctx, network, net.JoinHostPort(ip, port)) - if err == nil { - break - } - } - return - }, -} -``` - -In addition to the `Refresh` method, you can `RefreshWithOptions`. This method adds an option to persist resource records -on failed lookups -```go -r := &Resolver{} -options := dnscache.ResolverRefreshOptions{} -options.ClearUnused = true -options.PersistOnFailure = false -resolver.RefreshWithOptions(options) -``` diff --git a/vendor/github.com/rs/dnscache/dnscache.go b/vendor/github.com/rs/dnscache/dnscache.go deleted file mode 100644 index 1ae3dff6c6fc..000000000000 --- a/vendor/github.com/rs/dnscache/dnscache.go +++ /dev/null @@ -1,275 +0,0 @@ -package dnscache - -import ( - "context" - "net" - "net/http/httptrace" - "sync" - "time" - - "golang.org/x/sync/singleflight" -) - -type DNSResolver interface { - LookupHost(ctx context.Context, host string) (addrs []string, err error) - LookupAddr(ctx context.Context, addr string) (names []string, err error) -} - -type Resolver struct { - // Timeout defines the maximum allowed time allowed for a lookup. - Timeout time.Duration - - // Resolver is used to perform actual DNS lookup. If nil, - // net.DefaultResolver is used instead. - Resolver DNSResolver - - once sync.Once - mu sync.RWMutex - cache map[string]*cacheEntry - - // OnCacheMiss is executed if the host or address is not included in - // the cache and the default lookup is executed. - OnCacheMiss func() -} - -type ResolverRefreshOptions struct { - ClearUnused bool - PersistOnFailure bool -} - -type cacheEntry struct { - rrs []string - err error - used bool -} - -// LookupAddr performs a reverse lookup for the given address, returning a list -// of names mapping to that address. -func (r *Resolver) LookupAddr(ctx context.Context, addr string) (names []string, err error) { - r.once.Do(r.init) - return r.lookup(ctx, "r"+addr) -} - -// LookupHost looks up the given host using the local resolver. It returns a -// slice of that host's addresses. -func (r *Resolver) LookupHost(ctx context.Context, host string) (addrs []string, err error) { - r.once.Do(r.init) - return r.lookup(ctx, "h"+host) -} - -// refreshRecords refreshes cached entries which have been used at least once since -// the last Refresh. If clearUnused is true, entries which haven't be used since the -// last Refresh are removed from the cache. If persistOnFailure is true, stale -// entries will not be removed on failed lookups -func (r *Resolver) refreshRecords(clearUnused bool, persistOnFailure bool) { - r.once.Do(r.init) - r.mu.RLock() - update := make([]string, 0, len(r.cache)) - del := make([]string, 0, len(r.cache)) - for key, entry := range r.cache { - if entry.used { - update = append(update, key) - } else if clearUnused { - del = append(del, key) - } - } - r.mu.RUnlock() - - if len(del) > 0 { - r.mu.Lock() - for _, key := range del { - delete(r.cache, key) - } - r.mu.Unlock() - } - - for _, key := range update { - r.update(context.Background(), key, false, persistOnFailure) - } -} - -func (r *Resolver) Refresh(clearUnused bool) { - r.refreshRecords(clearUnused, false) -} - -func (r *Resolver) RefreshWithOptions(options ResolverRefreshOptions) { - r.refreshRecords(options.ClearUnused, options.PersistOnFailure) -} - -func (r *Resolver) init() { - r.cache = make(map[string]*cacheEntry) -} - -// lookupGroup merges lookup calls together for lookups for the same host. The -// lookupGroup key is is the LookupIPAddr.host argument. -var lookupGroup singleflight.Group - -func (r *Resolver) lookup(ctx context.Context, key string) (rrs []string, err error) { - var found bool - rrs, err, found = r.load(key) - if !found { - if r.OnCacheMiss != nil { - r.OnCacheMiss() - } - rrs, err = r.update(ctx, key, true, false) - } - return -} - -func (r *Resolver) update(ctx context.Context, key string, used bool, persistOnFailure bool) (rrs []string, err error) { - c := lookupGroup.DoChan(key, r.lookupFunc(ctx, key)) - select { - case <-ctx.Done(): - err = ctx.Err() - if err == context.DeadlineExceeded { - // If DNS request timed out for some reason, force future - // request to start the DNS lookup again rather than waiting - // for the current lookup to complete. - lookupGroup.Forget(key) - } - case res := <-c: - if res.Shared { - // We had concurrent lookups, check if the cache is already updated - // by a friend. - var found bool - rrs, err, found = r.load(key) - if found { - return - } - } - err = res.Err - if err == nil { - rrs, _ = res.Val.([]string) - } - - if err != nil && persistOnFailure { - var found bool - rrs, err, found = r.load(key) - if found { - return - } - } - - r.mu.Lock() - r.storeLocked(key, rrs, used, err) - r.mu.Unlock() - } - return -} - -// lookupFunc returns lookup function for key. The type of the key is stored as -// the first char and the lookup subject is the rest of the key. -func (r *Resolver) lookupFunc(ctx context.Context, key string) func() (interface{}, error) { - if len(key) == 0 { - panic("lookupFunc with empty key") - } - - var resolver DNSResolver = defaultResolver - if r.Resolver != nil { - resolver = r.Resolver - } - - switch key[0] { - case 'h': - return func() (interface{}, error) { - ctx, cancel := r.prepareCtx(ctx) - defer cancel() - - return resolver.LookupHost(ctx, key[1:]) - } - case 'r': - return func() (interface{}, error) { - ctx, cancel := r.prepareCtx(ctx) - defer cancel() - - return resolver.LookupAddr(ctx, key[1:]) - } - default: - panic("lookupFunc invalid key type: " + key) - } -} - -func (r *Resolver) prepareCtx(origContext context.Context) (ctx context.Context, cancel context.CancelFunc) { - ctx = context.Background() - if r.Timeout > 0 { - ctx, cancel = context.WithTimeout(ctx, r.Timeout) - } else { - cancel = func() {} - } - - // If a httptrace has been attached to the given context it will be copied over to the newly created context. We only need to copy pointers - // to DNSStart and DNSDone hooks - if trace := httptrace.ContextClientTrace(origContext); trace != nil { - derivedTrace := &httptrace.ClientTrace{ - DNSStart: trace.DNSStart, - DNSDone: trace.DNSDone, - } - - ctx = httptrace.WithClientTrace(ctx, derivedTrace) - } - - return -} - -func (r *Resolver) load(key string) (rrs []string, err error, found bool) { - r.mu.RLock() - var entry *cacheEntry - entry, found = r.cache[key] - if !found { - r.mu.RUnlock() - return - } - rrs = entry.rrs - err = entry.err - used := entry.used - r.mu.RUnlock() - if !used { - r.mu.Lock() - entry.used = true - r.mu.Unlock() - } - return rrs, err, true -} - -func (r *Resolver) storeLocked(key string, rrs []string, used bool, err error) { - if entry, found := r.cache[key]; found { - // Update existing entry in place - entry.rrs = rrs - entry.err = err - entry.used = used - return - } - r.cache[key] = &cacheEntry{ - rrs: rrs, - err: err, - used: used, - } -} - -var defaultResolver = &defaultResolverWithTrace{} - -// defaultResolverWithTrace calls `LookupIP` instead of `LookupHost` on `net.DefaultResolver` in order to cause invocation of the `DNSStart` -// and `DNSDone` hooks. By implementing `DNSResolver`, backward compatibility can be ensured. -type defaultResolverWithTrace struct{} - -func (d *defaultResolverWithTrace) LookupHost(ctx context.Context, host string) (addrs []string, err error) { - // `net.Resolver#LookupHost` does not cause invocation of `net.Resolver#lookupIPAddr`, therefore the `DNSStart` and `DNSDone` tracing hooks - // built into the stdlib are never called. `LookupIP`, despite it's name, can also be used to lookup a hostname but does cause these hooks to be - // triggered. The format of the reponse is different, therefore it needs this thin wrapper converting it. - rawIPs, err := net.DefaultResolver.LookupIP(ctx, "ip", host) - if err != nil { - return nil, err - } - - cookedIPs := make([]string, len(rawIPs)) - - for i, v := range rawIPs { - cookedIPs[i] = v.String() - } - - return cookedIPs, nil -} - -func (d *defaultResolverWithTrace) LookupAddr(ctx context.Context, addr string) (names []string, err error) { - return net.DefaultResolver.LookupAddr(ctx, addr) -} diff --git a/vendor/github.com/tsenart/vegeta/v12/.deepsource.toml b/vendor/github.com/tsenart/vegeta/v12/.deepsource.toml new file mode 100644 index 000000000000..4ab01bce8078 --- /dev/null +++ b/vendor/github.com/tsenart/vegeta/v12/.deepsource.toml @@ -0,0 +1,15 @@ +version = 1 + +[[analyzers]] +name = "python" +enabled = true + + [analyzers.meta] + runtime_version = "3.x.x" + +[[analyzers]] +name = "go" +enabled = true + + [analyzers.meta] + import_paths = ["github.com/tsenart/vegeta"] diff --git a/vendor/github.com/tsenart/vegeta/v12/Dockerfile b/vendor/github.com/tsenart/vegeta/v12/Dockerfile deleted file mode 100644 index a774cfb61ad7..000000000000 --- a/vendor/github.com/tsenart/vegeta/v12/Dockerfile +++ /dev/null @@ -1,21 +0,0 @@ -FROM golang:1.20-alpine3.18 AS BUILD - -RUN apk add make build-base git - -WORKDIR /vegeta - -# cache dependencies -ADD go.mod /vegeta -ADD go.sum /vegeta -RUN go mod download - -ADD . /vegeta - -RUN make generate -RUN make vegeta - -FROM alpine:3.18.0 - -COPY --from=BUILD /vegeta/vegeta /bin/vegeta - -ENTRYPOINT ["vegeta"] diff --git a/vendor/github.com/tsenart/vegeta/v12/LICENSE b/vendor/github.com/tsenart/vegeta/v12/LICENSE index d396b44b381b..03ec4f5a824e 100644 --- a/vendor/github.com/tsenart/vegeta/v12/LICENSE +++ b/vendor/github.com/tsenart/vegeta/v12/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2013-2023 Tomás Senart +Copyright (c) 2013-2020 Tomás Senart 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 diff --git a/vendor/github.com/tsenart/vegeta/v12/Makefile b/vendor/github.com/tsenart/vegeta/v12/Makefile index 42a70b32af11..889be22ca25c 100644 --- a/vendor/github.com/tsenart/vegeta/v12/Makefile +++ b/vendor/github.com/tsenart/vegeta/v12/Makefile @@ -2,14 +2,25 @@ COMMIT=$(shell git rev-parse HEAD) VERSION=$(shell git describe --tags --exact-match --always) DATE=$(shell date +'%FT%TZ%z') -vegeta: generate +vegeta: vendor generate CGO_ENABLED=0 go build -v -a -tags=netgo \ -ldflags '-s -w -extldflags "-static" -X main.Version=$(VERSION) -X main.Commit=$(COMMIT) -X main.Date=$(DATE)' -generate: GOARCH := $(shell go env GOHOSTARCH) -generate: GOOS := $(shell go env GOHOSTOS) -generate: - go install github.com/mailru/easyjson/...@latest - go get github.com/shurcooL/vfsgen - go install github.com/shurcooL/vfsgen/...@latest +clean-vegeta: + rm vegeta + +generate: vendor + go get -u github.com/mailru/easyjson/... go generate ./... + +vendor: + go mod vendor + +clean-vendor: + rm -rf vendor + +dist: + goreleaser release --debug --skip-validate + +clean-dist: + rm -rf dist diff --git a/vendor/github.com/tsenart/vegeta/v12/README.md b/vendor/github.com/tsenart/vegeta/v12/README.md index 4a9521476c6d..e671d51a6525 100644 --- a/vendor/github.com/tsenart/vegeta/v12/README.md +++ b/vendor/github.com/tsenart/vegeta/v12/README.md @@ -1,60 +1,32 @@ -# Vegeta [![Build Status](https://github.com/tsenart/vegeta/workflows/CI/badge.svg)](https://github.com/tsenart/vegeta/actions) [![Go Report Card](https://goreportcard.com/badge/github.com/tsenart/vegeta)](https://goreportcard.com/report/github.com/tsenart/vegeta) [![PkgGoDev](https://pkg.go.dev/badge/github.com/tsenart/vegeta/v12/lib)](https://pkg.go.dev/github.com/tsenart/vegeta/v12/lib) [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/tsenart/vegeta?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) [![Donate](https://img.shields.io/badge/donate-bitcoin-yellow.svg)](#donate) +# Vegeta [![Build Status](https://github.com/tsenart/vegeta/workflows/CI/badge.svg)](https://github.com/tsenart/vegeta/actions) [![Go Report Card](https://goreportcard.com/badge/github.com/tsenart/vegeta)](https://goreportcard.com/report/github.com/tsenart/vegeta) [![GoDoc](https://godoc.org/github.com/tsenart/vegeta?status.svg)](https://godoc.org/github.com/tsenart/vegeta) [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/tsenart/vegeta?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) [![Donate](https://img.shields.io/badge/donate-bitcoin-yellow.svg)](#donate) Vegeta is a versatile HTTP load testing tool built out of a need to drill -HTTP services with a constant request rate. [It's over 9000!](https://en.wikipedia.org/wiki/It's_Over_9000) +HTTP services with a constant request rate. +It can be used both as a command line utility and a library. ![Vegeta](http://fc09.deviantart.net/fs49/i/2009/198/c/c/ssj2_vegeta_by_trunks24.jpg) -## Features - -- Usable as a command line tool and a Go library. -- CLI designed with UNIX composability in mind. -- [Avoids](https://github.com/tsenart/vegeta/pull/92/files#r20198929) nasty [Coordinated Omission](http://highscalability.com/blog/2015/10/5/your-load-generator-is-probably-lying-to-you-take-the-red-pi.html). -- Extensive reporting functionality. -- Simple to use for [distributed load testing](https://kubernetes.io/blog/2015/11/one-million-requests-per-second-dependable-and-dynamic-distributed-systems-at-scale/). -- Easy to install and run (static binary, package managers, etc). - ## Install ### Pre-compiled executables Get them [here](http://github.com/tsenart/vegeta/releases). -### macOS +### Homebrew on Mac OS X -You can install Vegeta using the [Homebrew](https://github.com/Homebrew/homebrew/): +You can install Vegeta using the [Homebrew](https://github.com/Homebrew/homebrew/) package manager on Mac OS X: ```shell $ brew update && brew install vegeta ``` -Or with [MacPorts](https://www.macports.org/): - -```shell -$ port install vegeta -``` - -### Arch Linux - -```shell -$ pacman -S vegeta -``` - -### FreeBSD - -On FreeBSD you can install Vegeta with the built in package manager because there is a [Vegeta Package](https://www.freshports.org/benchmarks/vegeta) available. - -```shell -$ pkg install vegeta -``` - ### Source +You need `go` installed and `GOBIN` in your `PATH`. Once that is done, run the +command: + ```shell -git clone https://github.com/tsenart/vegeta -cd vegeta -make vegeta -mv vegeta ~/bin # Or elsewhere, up to you. +$ go get -u github.com/tsenart/vegeta ``` ## Versioning @@ -64,7 +36,7 @@ Both the library and the CLI are versioned with [SemVer v2.0.0](https://semver.o After [v8.0.0](https://github.com/tsenart/vegeta/tree/v8.0.0), the two components are versioned separately to better isolate breaking changes to each. -CLI releases are tagged with `cli/vMAJOR.MINOR.PATCH` and published on the [GitHub releases page](https://github.com/tsenart/vegeta/releases). +CLI releases are tagged with `cli/vMAJOR.MINOR.PATCH` and published on the [Github releases page](https://github.com/tsenart/vegeta/releases). As for the library, new versions are tagged with both `lib/vMAJOR.MINOR.PATCH` and `vMAJOR.MINOR.PATCH`. The latter tag is required for compatibility with `go mod`. @@ -79,7 +51,7 @@ Usage: vegeta [global flags] [command flags] global flags: -cpus int - Number of CPUs to use (default = number of cpus) + Number of CPUs to use (defaults to the number of CPUs you have) -profile string Enable profiling of [cpu, heap] -version @@ -94,8 +66,6 @@ attack command: Send body with chunked transfer encoding -connections int Max open idle connections per target host (default 10000) - -dns-ttl value - Cache DNS lookups for the given duration [-1 = disabled, 0 = forever] (default 0s) -duration duration Duration of the test [0 = forever] -format string @@ -118,16 +88,12 @@ attack command: Read targets lazily -max-body value Maximum number of bytes to capture from response bodies. [-1 = no limit] (default -1) - -max-connections int - Max connections per target host -max-workers uint Maximum number of workers (default 18446744073709551615) -name string Attack name -output string Output file (default "stdout") - -prometheus-addr string - Prometheus exporter listen address [empty = disabled]. Example: 0.0.0.0:8880 -proxy-header value Proxy CONNECT header -rate value @@ -138,8 +104,6 @@ attack command: List of addresses (ip:port) to use for DNS resolution. Disables use of local system DNS. (comma separated list) -root-certs value TLS root certificate files (comma separated list) - -session-tickets - Enable TLS session resumption using session tickets -targets string Targets file (default "stdin") -timeout duration @@ -178,7 +142,6 @@ examples: vegeta report -type=json results.bin > metrics.json cat results.bin | vegeta plot > plot.html cat results.bin | vegeta report -type="hist[0,100ms,200ms,300ms]" - ``` #### `-cpus` @@ -215,15 +178,6 @@ Specifies whether to send request bodies with the chunked transfer encoding. Specifies the maximum number of idle open connections per target host. -#### `-dns-ttl` - -Specifies the duration to cache DNS lookups for. A zero value caches forever. -A negative value disables caching altogether. - -#### `-max-connections` - -Specifies the maximum number of connections per target host. - #### `-duration` Specifies the amount of time to issue request to the targets. @@ -303,7 +257,7 @@ Lines starting with `#` are ignored. ``` # get a dragon ball GET http://goku:9090/path/to/dragon?item=ball -# specify a test account +# specify a test accout X-Account-ID: 99 ``` @@ -348,7 +302,7 @@ The trade-off is one of added latency in each hit against the targets. Specifies the maximum number of bytes to capture from the body of each response. Remaining unread bytes will be fully read but discarded. -Set to -1 for no limit. It knows how to interpret values like these: +Set to -1 for no limit. It knows how to intepret values like these: - `"10 MB"` -> `10MB` - `"10240 g"` -> `10TB` @@ -397,10 +351,6 @@ the ones configured by the operating system. Works only on non Windows systems. Specifies the trusted TLS root CAs certificate files as a comma separated list. If unspecified, the default system CAs certificates will be used. -#### `-session-tickets` - -Specifies whether to support TLS session resumption using session tickets. - #### `-targets` Specifies the file from which to read targets, defaulting to stdin. @@ -408,7 +358,8 @@ See the [`-format`](#-format) section to learn about the different target format #### `-timeout` -Specifies the timeout for each request. A value of `0` disables timeouts. +Specifies the timeout for each request. The default is 0 which disables +timeouts. #### `-workers` @@ -691,9 +642,6 @@ The CSV encoder doesn't write a header. The columns written by it are: 7. Base64 encoded response body 8. Attack name 9. Sequence number of request - 10. Method - 11. URL - 12. Base64 encoded response headers Arguments: A file with vegeta attack results encoded with one of @@ -786,8 +734,6 @@ It'll read and sort them by timestamp before generating reports. vegeta report *.bin ``` -Another way to gather results in distributed tests is to use the built-in Prometheus Exporter and configure a Prometheus Server to get test results from all Vegeta instances. See `attack` option "prometheus-addr" for more details and a complete example in the section "Prometheus Support". - ## Usage: Real-time Analysis If you are a happy user of iTerm, you can integrate vegeta with [jplot](https://github.com/rs/jplot) using [jaggr](https://github.com/rs/jaggr) to plot a vegeta report in real-time in the comfort of your terminal: @@ -807,7 +753,7 @@ echo 'GET http://localhost:8080' | \ ![](https://i.imgur.com/ttBDsQS.gif) -## Usage: Library +## Usage (Library) The library versioning follows [SemVer v2.0.0](https://semver.org/spec/v2.0.0.html). Since [lib/v9.0.0](https://github.com/tsenart/vegeta/tree/lib/v9.0.0), the library and cli @@ -864,36 +810,6 @@ $ ulimit -u # processes / threads Just pass a new number as the argument to change it. -## Prometheus support - -Vegeta has a built-in Prometheus Exporter that may be enabled during attacks so that you can point any Prometheus instance to Vegeta attack processes and monitor attack metrics. - -To enable the Prometheus Exporter on the command line, set the "prometheus-addr" flag. - -A Prometheus HTTP endpoint will be available only during the lifespan of an attack and will be closed right after the attack is finished. - -The following metrics are exposed: - -* `request_bytes_in` - bytes count received from targeted servers by "url", "method" and "status" -* `request_bytes_out` - bytes count sent to targeted server by "url", "method" and "status" -* `request_seconds` - histogram with request latency and counters by "url", "method" and "status" -* `request_fail_count` - count of failed requests by "url", "method", "status" and "message" - - - -Check file [lib/prom/grafana.json](lib/prom/grafana.json) with the source of this sample dashboard in Grafana. - -### Limitations - -1. Prometheus scrapes metrics from a running vegeta attack process and assigns timestamps to samples on its server. This means result timestamps aren't accurate (i.e. they're scraping time, not result time). -2. Configuring Prometheus to scrape vegeta needs to happen out-of-band. That's a hassle! -3. Since there's no coordination between a vegeta attack process and a Prometheus server, an attack process will finish before Prometheus has the chance to scrape the latest observations. - - -Why aren't we using pushgateway instead? See [this comment](https://github.com/tsenart/vegeta/pull/534#issuecomment-1629943731). - -There's [an issue](https://github.com/tsenart/vegeta/issues/637) tracking the proper solution to all these limitations which is a remote write integration. - ## License See [LICENSE](LICENSE). diff --git a/vendor/github.com/tsenart/vegeta/v12/attack.go b/vendor/github.com/tsenart/vegeta/v12/attack.go index f83c2cba7454..58ea54f84f5d 100644 --- a/vendor/github.com/tsenart/vegeta/v12/attack.go +++ b/vendor/github.com/tsenart/vegeta/v12/attack.go @@ -7,18 +7,16 @@ import ( "flag" "fmt" "io" + "io/ioutil" "net" "net/http" "os" "os/signal" "strings" - "syscall" "time" - "github.com/prometheus/client_golang/prometheus" "github.com/tsenart/vegeta/v12/internal/resolver" vegeta "github.com/tsenart/vegeta/v12/lib" - prom "github.com/tsenart/vegeta/v12/lib/prom" ) func attackCmd() command { @@ -29,7 +27,6 @@ func attackCmd() command { laddr: localAddr{&vegeta.DefaultLocalAddr}, rate: vegeta.Rate{Freq: 50, Per: time.Second}, maxBody: vegeta.DefaultMaxBody, - promAddr: "0.0.0.0:8880", } fs.StringVar(&opts.name, "name", "", "Attack name") fs.StringVar(&opts.targetsf, "targets", "stdin", "Targets file") @@ -59,9 +56,6 @@ func attackCmd() command { fs.Var(&opts.laddr, "laddr", "Local IP address") fs.BoolVar(&opts.keepalive, "keepalive", true, "Use persistent connections") fs.StringVar(&opts.unixSocket, "unix-socket", "", "Connect over a unix socket. This overrides the host address in target URLs") - fs.StringVar(&opts.promAddr, "prometheus-addr", "", "Prometheus exporter listen address [empty = disabled]. Example: 0.0.0.0:8880") - fs.Var(&dnsTTLFlag{&opts.dnsTTL}, "dns-ttl", "Cache DNS lookups for the given duration [-1 = disabled, 0 = forever]") - fs.BoolVar(&opts.sessionTickets, "session-tickets", false, "Enable TLS session resumption using session tickets") systemSpecificFlags(fs, opts) return command{fs, func(args []string) error { @@ -105,9 +99,6 @@ type attackOpts struct { keepalive bool resolvers csl unixSocket string - promAddr string - dnsTTL time.Duration - sessionTickets bool } // attack validates the attack arguments, sets up the @@ -125,8 +116,6 @@ func attack(opts *attackOpts) (err error) { net.DefaultResolver = res } - net.DefaultResolver.PreferGo = true - files := map[string]io.Reader{} for _, filename := range []string{opts.targetsf, opts.bodyf} { if filename == "" { @@ -142,7 +131,7 @@ func attack(opts *attackOpts) (err error) { var body []byte if bodyf, ok := files[opts.bodyf]; ok { - if body, err = io.ReadAll(bodyf); err != nil { + if body, err = ioutil.ReadAll(bodyf); err != nil { return fmt.Errorf("error reading %s: %s", opts.bodyf, err) } } @@ -183,24 +172,6 @@ func attack(opts *attackOpts) (err error) { return err } - var pm *prom.Metrics - if opts.promAddr != "" { - pm = prom.NewMetrics() - - r := prometheus.NewRegistry() - if err := pm.Register(r); err != nil { - return fmt.Errorf("error registering prometheus metrics: %s", err) - } - - srv := http.Server{ - Addr: opts.promAddr, - Handler: prom.NewHandler(r, time.Now().UTC()), - } - - defer srv.Close() - go srv.ListenAndServe() - } - atk := vegeta.NewAttacker( vegeta.Redirects(opts.redirects), vegeta.Timeout(opts.timeout), @@ -217,42 +188,23 @@ func attack(opts *attackOpts) (err error) { vegeta.UnixSocket(opts.unixSocket), vegeta.ProxyHeader(proxyHdr), vegeta.ChunkedBody(opts.chunked), - vegeta.DNSCaching(opts.dnsTTL), - vegeta.SessionTickets(opts.sessionTickets), ) res := atk.Attack(tr, opts.rate, opts.duration, opts.name) enc := vegeta.NewEncoder(out) sig := make(chan os.Signal, 1) - signal.Notify(sig, os.Interrupt, syscall.SIGTERM) + signal.Notify(sig, os.Interrupt) - return processAttack(atk, res, enc, sig, pm) -} - -func processAttack( - atk *vegeta.Attacker, - res <-chan *vegeta.Result, - enc vegeta.Encoder, - sig <-chan os.Signal, - pm *prom.Metrics, -) error { for { select { case <-sig: - if stopSent := atk.Stop(); !stopSent { - // Exit immediately on second signal. - return nil - } + atk.Stop() + return nil case r, ok := <-res: if !ok { return nil } - - if pm != nil { - pm.Observe(r) - } - - if err := enc.Encode(r); err != nil { + if err = enc.Encode(r); err != nil { return err } } @@ -266,7 +218,7 @@ func tlsConfig(insecure bool, certf, keyf string, rootCerts []string) (*tls.Conf filenames := append([]string{certf, keyf}, rootCerts...) for _, f := range filenames { if f != "" { - if files[f], err = os.ReadFile(f); err != nil { + if files[f], err = ioutil.ReadFile(f); err != nil { return nil, err } } diff --git a/vendor/github.com/tsenart/vegeta/v12/attack_nonwindows.go b/vendor/github.com/tsenart/vegeta/v12/attack_nonwindows.go index cd5689d90848..ad6d6a92a608 100644 --- a/vendor/github.com/tsenart/vegeta/v12/attack_nonwindows.go +++ b/vendor/github.com/tsenart/vegeta/v12/attack_nonwindows.go @@ -1,4 +1,3 @@ -//go:build !windows // +build !windows package main diff --git a/vendor/github.com/tsenart/vegeta/v12/encode.go b/vendor/github.com/tsenart/vegeta/v12/encode.go index b20438a96fb2..5f70a64777e0 100644 --- a/vendor/github.com/tsenart/vegeta/v12/encode.go +++ b/vendor/github.com/tsenart/vegeta/v12/encode.go @@ -59,7 +59,7 @@ func encodeCmd() command { output := fs.String("output", "stdout", "Output file") fs.Usage = func() { - fmt.Fprintf(os.Stderr, "%s\n", encodeUsage) + fmt.Fprintln(os.Stderr, encodeUsage) } return command{fs, func(args []string) error { diff --git a/vendor/github.com/tsenart/vegeta/v12/flags.go b/vendor/github.com/tsenart/vegeta/v12/flags.go index 7ac8fcb1f2c8..6a780d9df6f3 100644 --- a/vendor/github.com/tsenart/vegeta/v12/flags.go +++ b/vendor/github.com/tsenart/vegeta/v12/flags.go @@ -132,24 +132,3 @@ func (f *maxBodyFlag) String() string { } return datasize.ByteSize(*(f.n)).String() } - -type dnsTTLFlag struct{ ttl *time.Duration } - -func (f *dnsTTLFlag) Set(v string) (err error) { - if v == "-1" { - *(f.ttl) = -1 - return nil - } - - *(f.ttl), err = time.ParseDuration(v) - return err -} - -func (f *dnsTTLFlag) String() string { - if f.ttl == nil { - return "" - } else if *(f.ttl) == -1 { - return "-1" - } - return f.ttl.String() -} diff --git a/vendor/github.com/tsenart/vegeta/v12/lib/attack.go b/vendor/github.com/tsenart/vegeta/v12/lib/attack.go index caebba6f831b..0294c628b720 100644 --- a/vendor/github.com/tsenart/vegeta/v12/lib/attack.go +++ b/vendor/github.com/tsenart/vegeta/v12/lib/attack.go @@ -7,7 +7,6 @@ import ( "io" "io/ioutil" "math" - "math/rand" "net" "net/http" "net/url" @@ -15,7 +14,6 @@ import ( "sync" "time" - "github.com/rs/dnscache" "golang.org/x/net/http2" ) @@ -24,11 +22,13 @@ type Attacker struct { dialer *net.Dialer client http.Client stopch chan struct{} - stopOnce sync.Once workers uint64 maxWorkers uint64 maxBody int64 redirects int + seqmu sync.Mutex + seq uint64 + began time.Time chunked bool } @@ -60,7 +60,7 @@ var ( // DefaultLocalAddr is the default local IP address an Attacker uses. DefaultLocalAddr = net.IPAddr{IP: net.IPv4zero} // DefaultTLSConfig is the default tls.Config an Attacker uses. - DefaultTLSConfig = &tls.Config{InsecureSkipVerify: false} + DefaultTLSConfig = &tls.Config{InsecureSkipVerify: true} ) // NewAttacker returns a new Attacker with default options which are overridden @@ -68,10 +68,10 @@ var ( func NewAttacker(opts ...func(*Attacker)) *Attacker { a := &Attacker{ stopch: make(chan struct{}), - stopOnce: sync.Once{}, workers: DefaultWorkers, maxWorkers: DefaultMaxWorkers, maxBody: DefaultMaxBody, + began: time.Now(), } a.dialer = &net.Dialer{ @@ -83,7 +83,7 @@ func NewAttacker(opts ...func(*Attacker)) *Attacker { Timeout: DefaultTimeout, Transport: &http.Transport{ Proxy: http.ProxyFromEnvironment, - DialContext: a.dialer.DialContext, + Dial: a.dialer.Dial, TLSClientConfig: DefaultTLSConfig, MaxIdleConnsPerHost: DefaultConnections, MaxConnsPerHost: DefaultMaxConnections, @@ -175,7 +175,7 @@ func LocalAddr(addr net.IPAddr) func(*Attacker) { return func(a *Attacker) { tr := a.client.Transport.(*http.Transport) a.dialer.LocalAddr = &net.TCPAddr{IP: addr.IP, Zone: addr.Zone} - tr.DialContext = a.dialer.DialContext + tr.Dial = a.dialer.Dial } } @@ -187,7 +187,7 @@ func KeepAlive(keepalive bool) func(*Attacker) { tr.DisableKeepAlives = !keepalive if !keepalive { a.dialer.KeepAlive = 0 - tr.DialContext = a.dialer.DialContext + tr.Dial = a.dialer.Dial } } } @@ -208,7 +208,6 @@ func HTTP2(enabled bool) func(*Attacker) { if tr := a.client.Transport.(*http.Transport); enabled { http2.ConfigureTransport(tr) } else { - tr.ForceAttemptHTTP2 = false tr.TLSNextProto = map[string]func(string, *tls.Conn) http.RoundTripper{} } } @@ -221,8 +220,8 @@ func H2C(enabled bool) func(*Attacker) { if tr := a.client.Transport.(*http.Transport); enabled { a.client.Transport = &http2.Transport{ AllowHTTP: true, - DialTLSContext: func(ctx context.Context, network, addr string, cfg *tls.Config) (net.Conn, error) { - return tr.DialContext(ctx, network, addr) + DialTLS: func(network, addr string, cfg *tls.Config) (net.Conn, error) { + return tr.Dial(network, addr) }, } } @@ -246,18 +245,6 @@ func UnixSocket(socket string) func(*Attacker) { } } -// SessionTickets returns a functional option which configures usage of session -// tickets for TLS session resumption. -func SessionTickets(enabled bool) func(*Attacker) { - return func(a *Attacker) { - if enabled { - cf := a.client.Transport.(*http.Transport).TLSClientConfig - cf.SessionTicketsDisabled = false - cf.ClientSessionCache = tls.NewLRUClientSessionCache(0) - } - } -} - // Client returns a functional option that allows you to bring your own http.Client func Client(c *http.Client) func(*Attacker) { return func(a *Attacker) { a.client = *c } @@ -273,116 +260,6 @@ func ProxyHeader(h http.Header) func(*Attacker) { } } -// DNSCaching returns a functional option that enables DNS caching for -// the given ttl. When ttl is zero cached entries will never expire. -// When ttl is non-zero, this will start a refresh go-routine that updates -// the cache every ttl interval. This go-routine will be stopped when the -// attack is stopped. -// When the ttl is negative, no caching will be performed. -func DNSCaching(ttl time.Duration) func(*Attacker) { - return func(a *Attacker) { - if ttl < 0 { - return - } - - if tr, ok := a.client.Transport.(*http.Transport); ok { - dial := tr.DialContext - if dial == nil { - dial = a.dialer.DialContext - } - - resolver := &dnscache.Resolver{} - - if ttl != 0 { - go func() { - refresh := time.NewTicker(ttl) - defer refresh.Stop() - for { - select { - case <-refresh.C: - resolver.Refresh(true) - case <-a.stopch: - return - } - } - }() - } - - rng := rand.New(rand.NewSource(time.Now().UnixNano())) - - tr.DialContext = func(ctx context.Context, network, addr string) (conn net.Conn, err error) { - host, port, err := net.SplitHostPort(addr) - if err != nil { - return nil, err - } - - ips, err := resolver.LookupHost(ctx, host) - if err != nil { - return nil, err - } - - if len(ips) == 0 { - return nil, &net.DNSError{Err: "no such host", Name: addr} - } - - // Pick a random IP from each IP family and dial each concurrently. - // The first that succeeds wins, the other gets canceled. - - rng.Shuffle(len(ips), func(i, j int) { ips[i], ips[j] = ips[j], ips[i] }) - - // In place filtering of ips to only include the first IPv4 and IPv6. - j := 0 - for i := 0; i < len(ips) && j < 2; i++ { - ip := net.ParseIP(ips[i]) - switch { - case len(ip.To4()) == net.IPv4len && j == 0: - fallthrough - case len(ip) == net.IPv6len && j == 1: - ips[j] = ips[i] - j++ - } - } - ips = ips[:j] - - type result struct { - conn net.Conn - err error - } - - ch := make(chan result, len(ips)) - ctx, cancel := context.WithCancel(ctx) - defer cancel() - - for _, ip := range ips { - go func(ip string) { - conn, err := dial(ctx, network, net.JoinHostPort(ip, port)) - if err == nil { - cancel() - } - ch <- result{conn, err} - }(ip) - } - - for i := 0; i < cap(ch); i++ { - if r := <-ch; conn == nil { - conn, err = r.conn, r.err - } - } - - return conn, err - } - } - } -} - -type attack struct { - name string - began time.Time - - seqmu sync.Mutex - seq uint64 -} - // Attack reads its Targets from the passed Targeter and attacks them at // the rate specified by the Pacer. When the duration is zero the attack // runs until Stop is called. Results are sent to the returned channel as soon @@ -395,29 +272,21 @@ func (a *Attacker) Attack(tr Targeter, p Pacer, du time.Duration, name string) < workers = a.maxWorkers } - atk := &attack{ - name: name, - began: time.Now(), - } - results := make(chan *Result) ticks := make(chan struct{}) for i := uint64(0); i < workers; i++ { wg.Add(1) - go a.attack(tr, atk, &wg, ticks, results) + go a.attack(tr, name, &wg, ticks, results) } go func() { - defer func() { - close(ticks) - wg.Wait() - close(results) - a.Stop() - }() - - count := uint64(0) + defer close(results) + defer wg.Wait() + defer close(ticks) + + began, count := time.Now(), uint64(0) for { - elapsed := time.Since(atk.began) + elapsed := time.Since(began) if du > 0 && elapsed > du { return } @@ -440,7 +309,7 @@ func (a *Attacker) Attack(tr Targeter, p Pacer, du time.Duration, name string) < // all workers are blocked. start one more and try again workers++ wg.Add(1) - go a.attack(tr, atk, &wg, ticks, results) + go a.attack(tr, name, &wg, ticks, results) } } @@ -456,49 +325,35 @@ func (a *Attacker) Attack(tr Targeter, p Pacer, du time.Duration, name string) < return results } -// Stop stops the current attack. The return value indicates whether this call -// has signalled the attack to stop (`true` for the first call) or whether it -// was a noop because it has been previously signalled to stop (`false` for any -// subsequent calls). -func (a *Attacker) Stop() bool { +// Stop stops the current attack. +func (a *Attacker) Stop() { select { case <-a.stopch: - return false + return default: - a.stopOnce.Do(func() { close(a.stopch) }) - return true + close(a.stopch) } } -func (a *Attacker) attack(tr Targeter, atk *attack, workers *sync.WaitGroup, ticks <-chan struct{}, results chan<- *Result) { +func (a *Attacker) attack(tr Targeter, name string, workers *sync.WaitGroup, ticks <-chan struct{}, results chan<- *Result) { defer workers.Done() for range ticks { - results <- a.hit(tr, atk) + results <- a.hit(tr, name) } } -func (a *Attacker) hit(tr Targeter, atk *attack) *Result { +func (a *Attacker) hit(tr Targeter, name string) *Result { var ( - res = Result{Attack: atk.name} + res = Result{Attack: name} tgt Target err error ) - // - // Subtleness ahead! We need to compute the result timestamp in - // the same critical section that protects the increment of the sequence - // number because we want the same total ordering of timestamps and sequence - // numbers. That is, we wouldn't want two results A and B where A.seq > B.seq - // but A.timestamp < B.timestamp. - // - // Additionally, we calculate the result timestamp based on the same beginning - // timestamp using the Add method, which will use monotonic time calculations. - // - atk.seqmu.Lock() - res.Timestamp = atk.began.Add(time.Since(atk.began)) - res.Seq = atk.seq - atk.seq++ - atk.seqmu.Unlock() + a.seqmu.Lock() + res.Timestamp = a.began.Add(time.Since(a.began)) + res.Seq = a.seq + a.seq++ + a.seqmu.Unlock() defer func() { res.Latency = time.Since(res.Timestamp) @@ -520,8 +375,8 @@ func (a *Attacker) hit(tr Targeter, atk *attack) *Result { return &res } - if atk.name != "" { - req.Header.Set("X-Vegeta-Attack", atk.name) + if name != "" { + req.Header.Set("X-Vegeta-Attack", name) } req.Header.Set("X-Vegeta-Seq", strconv.FormatUint(res.Seq, 10)) diff --git a/vendor/github.com/tsenart/vegeta/v12/lib/attack_fuzz.go b/vendor/github.com/tsenart/vegeta/v12/lib/attack_fuzz.go index eddb880737e7..e14eef61f076 100644 --- a/vendor/github.com/tsenart/vegeta/v12/lib/attack_fuzz.go +++ b/vendor/github.com/tsenart/vegeta/v12/lib/attack_fuzz.go @@ -1,4 +1,3 @@ -//go:build gofuzz // +build gofuzz package vegeta @@ -6,6 +5,7 @@ package vegeta import ( "encoding/binary" "fmt" + "io/ioutil" "net" "net/http" "os" @@ -20,7 +20,7 @@ func FuzzAttackerTCP(fuzz []byte) int { } // Start server - directory, err := os.MkdirTemp("/tmp", "fuzz") + directory, err := ioutil.TempDir("/tmp", "fuzz") if err != nil { panic(err.Error()) } @@ -77,7 +77,7 @@ func FuzzAttackerHTTP(fuzz []byte) int { } // Start server - directory, err := os.MkdirTemp("/tmp", "fuzz") + directory, err := ioutil.TempDir("/tmp", "fuzz") if err != nil { panic(err.Error()) } diff --git a/vendor/github.com/tsenart/vegeta/v12/lib/pacer.go b/vendor/github.com/tsenart/vegeta/v12/lib/pacer.go index 751bef60a36e..4c04d637fc68 100644 --- a/vendor/github.com/tsenart/vegeta/v12/lib/pacer.go +++ b/vendor/github.com/tsenart/vegeta/v12/lib/pacer.go @@ -41,8 +41,7 @@ type Rate = ConstantPacer var _ Pacer = ConstantPacer{} // String returns a pretty-printed description of the ConstantPacer's behaviour: -// -// ConstantPacer{Freq: 1, Per: time.Second} => Constant{1 hits/1s} +// ConstantPacer{Freq: 1, Per: time.Second} => Constant{1 hits/1s} func (cp ConstantPacer) String() string { return fmt.Sprintf("Constant{%d hits/%s}", cp.Freq, cp.Per) } @@ -100,43 +99,37 @@ const ( ) // SinePacer is a Pacer that describes attack request rates with the equation: -// -// R = MA sin(O+(2𝛑/P)t) -// +// R = MA sin(O+(2𝛑/P)t) // Where: -// -// R = Instantaneous attack rate at elapsed time t, hits per nanosecond -// M = Mean attack rate over period P, sp.Mean, hits per nanosecond -// A = Amplitude of sine wave, sp.Amp, hits per nanosecond -// O = Offset of sine wave, sp.StartAt, radians -// P = Period of sine wave, sp.Period, nanoseconds -// t = Elapsed time since attack start, nanoseconds +// R = Instantaneous attack rate at elapsed time t, hits per nanosecond +// M = Mean attack rate over period P, sp.Mean, hits per nanosecond +// A = Amplitude of sine wave, sp.Amp, hits per nanosecond +// O = Offset of sine wave, sp.StartAt, radians +// P = Period of sine wave, sp.Period, nanoseconds +// t = Elapsed time since attack start, nanoseconds // // Many thanks to http://ascii.co.uk/art/sine and "sps" for the ascii here :-) // -// Mean -| ,-'''-. -// +Amp | ,-' | `-. -// | ,' | `. O=𝛑 -// | ,' O=𝛑/2 `. MeanDown -// | / Peak \ / -// |/ \ / -// Mean -+-------------------------\--------------------------> t -// |\ \ / -// | \ \ O=3𝛑/2 / -// | O=0 `. Trough ,' -// | MeanUp `. | ,' -// Mean | `-. | ,-' -// -Amp -| `-,,,-' -// |<-------------------- Period --------------------->| +// Mean -| ,-'''-. +// +Amp | ,-' | `-. +// | ,' | `. O=𝛑 +// | ,' O=𝛑/2 `. MeanDown +// | / Peak \ / +// |/ \ / +// Mean -+-------------------------\--------------------------> t +// |\ \ / +// | \ \ O=3𝛑/2 / +// | O=0 `. Trough ,' +// | MeanUp `. | ,' +// Mean | `-. | ,-' +// -Amp -| `-,,,-' +// |<-------------------- Period --------------------->| // // This equation is integrated with respect to time to derive the expected // number of hits served at time t after the attack began: -// -// H = Mt - (AP/2𝛑)cos(O+(2𝛑/P)t) + (AP/2𝛑)cos(O) -// +// H = Mt - (AP/2𝛑)cos(O+(2𝛑/P)t) + (AP/2𝛑)cos(O) // Where: -// -// H = Total number of hits triggered during t +// H = Total number of hits triggered during t type SinePacer struct { // The period of the sine wave, e.g. 20*time.Minute // MUST BE > 0 @@ -155,14 +148,13 @@ type SinePacer struct { var _ Pacer = SinePacer{} // String returns a pretty-printed description of the SinePacer's behaviour: -// -// SinePacer{ -// Period: time.Hour, -// Mean: Rate{100, time.Second}, -// Amp: Rate{50, time.Second}, -// StartAt: MeanDown, -// } => -// Sine{Constant{100 hits/1s} ± Constant{50 hits/1s} / 1h, offset 1𝛑} +// SinePacer{ +// Period: time.Hour, +// Mean: Rate{100, time.Second}, +// Amp: Rate{50, time.Second}, +// StartAt: MeanDown, +// } => +// Sine{Constant{100 hits/1s} ± Constant{50 hits/1s} / 1h, offset 1𝛑} func (sp SinePacer) String() string { return fmt.Sprintf("Sine{%s ± %s / %s, offset %g𝛑}", sp.Mean, sp.Amp, sp.Period, sp.StartAt/math.Pi) } @@ -226,8 +218,7 @@ func (sp SinePacer) radians(t time.Duration) float64 { // hitsPerNs calculates the instantaneous rate of attack at // t nanoseconds after the attack began. -// -// R = MA sin(O+(2𝛑/P)t) +// R = MA sin(O+(2𝛑/P)t) func (sp SinePacer) hitsPerNs(t time.Duration) float64 { return sp.Mean.hitsPerNs() + sp.Amp.hitsPerNs()*math.Sin(sp.radians(t)) } @@ -235,12 +226,9 @@ func (sp SinePacer) hitsPerNs(t time.Duration) float64 { // hits returns the number of hits that have been sent during an attack // lasting t nanoseconds. It returns a float so we can tell exactly how // much we've missed our target by when solving numerically in Pace. -// -// H = Mt - (AP/2𝛑)cos(O+(2𝛑/P)t) + (AP/2𝛑)cos(O) -// +// H = Mt - (AP/2𝛑)cos(O+(2𝛑/P)t) + (AP/2𝛑)cos(O) // This re-arranges to: -// -// H = Mt + (AP/2𝛑)(cos(O) - cos(O+(2𝛑/P)t)) +// H = Mt + (AP/2𝛑)(cos(O) - cos(O+(2𝛑/P)t)) func (sp SinePacer) hits(t time.Duration) float64 { if t <= 0 || sp.invalid() { return 0 diff --git a/vendor/github.com/tsenart/vegeta/v12/lib/plot/assets.go b/vendor/github.com/tsenart/vegeta/v12/lib/plot/assets.go index 0498256a1700..efadc468c613 100644 --- a/vendor/github.com/tsenart/vegeta/v12/lib/plot/assets.go +++ b/vendor/github.com/tsenart/vegeta/v12/lib/plot/assets.go @@ -1,4 +1,3 @@ -//go:build dev // +build dev package plot diff --git a/vendor/github.com/tsenart/vegeta/v12/lib/plot/assets_vfsdata.go b/vendor/github.com/tsenart/vegeta/v12/lib/plot/assets_vfsdata.go index 9c4afde8f0ff..b6818b230873 100644 --- a/vendor/github.com/tsenart/vegeta/v12/lib/plot/assets_vfsdata.go +++ b/vendor/github.com/tsenart/vegeta/v12/lib/plot/assets_vfsdata.go @@ -1,6 +1,6 @@ // Code generated by vfsgen; DO NOT EDIT. -//go:build !dev +// +build !dev package plot @@ -9,6 +9,7 @@ import ( "compress/gzip" "fmt" "io" + "io/ioutil" "net/http" "os" pathpkg "path" @@ -20,40 +21,40 @@ var Assets = func() http.FileSystem { fs := vfsgen۰FS{ "/": &vfsgen۰DirInfo{ name: "/", - modTime: time.Date(2022, 10, 16, 17, 51, 16, 603062578, time.UTC), + modTime: time.Date(2018, 8, 13, 15, 32, 56, 947383985, time.UTC), }, "/VERSIONS": &vfsgen۰FileInfo{ name: "VERSIONS", - modTime: time.Date(2022, 10, 16, 17, 51, 16, 601897135, time.UTC), + modTime: time.Date(2018, 8, 13, 15, 0, 41, 923198933, time.UTC), content: []byte("\x64\x79\x67\x72\x61\x70\x68\x20\x76\x32\x2e\x31\x2e\x30\x0a\x68\x74\x6d\x6c\x32\x63\x61\x6e\x76\x61\x73\x20\x76\x31\x2e\x30\x2e\x30\x2d\x61\x6c\x70\x68\x61\x2e\x31\x32\x0a"), }, "/dygraph.css": &vfsgen۰CompressedFileInfo{ name: "dygraph.css", - modTime: time.Date(2022, 10, 16, 17, 51, 16, 601961468, time.UTC), + modTime: time.Date(2017, 12, 12, 22, 27, 49, 0, time.UTC), uncompressedSize: 2642, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xcc\x55\x4d\x8b\x23\x37\x10\xbd\xf7\xaf\x78\x90\x4b\xd2\xac\xdc\x33\x43\xf6\x90\x36\x39\x84\x2c\x21\x81\x40\x02\x09\xe4\xac\x6e\x95\xbb\xc5\xa8\x55\x8d\x54\x1e\xdb\xb3\xec\x7f\x0f\x92\xec\xf5\xc7\x7a\x3c\x13\x48\x20\x47\xab\xbe\xde\x7b\x55\xfd\xdc\xd4\x75\x85\x1a\x1f\x68\xa5\xd7\x4e\x10\x65\xe7\x28\x62\xc5\x01\x32\x12\xcc\x6e\x08\x7a\x1e\x23\xfa\x51\x07\xb1\x7e\x80\xb3\x5d\xd0\x61\xb7\xa8\x50\x37\x55\xb5\xd8\x27\x28\x47\x03\x79\x83\x8f\x15\x30\x73\xb4\x62\xd9\xb7\xd0\x5d\x64\xb7\x16\x5a\x56\xc0\x8a\xbd\xa8\x68\x9f\xa9\xc5\xfd\xb7\xf3\x36\x3d\x3d\x2b\xeb\x0d\x6d\x5b\xdc\xdf\xa5\x9f\x1b\x6b\x64\x6c\xf1\xf0\xfe\x6e\xde\x2e\x81\xa6\x86\xd3\x1d\xb9\xf8\xc1\x3e\xfd\x95\x42\x69\x60\x7a\xae\x70\x84\x65\x48\x28\x4c\xd6\x53\x4c\x70\x23\xa1\xd3\x91\x0c\xd8\x67\xf4\x73\xa0\x48\xbe\x27\xf0\xaa\x10\xd8\x77\x5c\x54\xc0\x2f\x82\xc9\x0e\xa3\x60\xd2\x8f\x84\x89\x03\x21\x92\x8f\x04\x61\xf4\x81\xb4\x10\x34\x36\x41\xcf\x33\x05\x18\xfb\x04\x1d\x78\xed\x4d\xee\x5b\x7a\xcd\x81\x67\x0a\xa9\x97\xf0\xdc\xe2\xae\x90\x0a\xa9\x69\x8b\x87\xf2\x2b\x43\xee\x74\xff\x38\xe4\xea\x16\x9b\xd1\x16\x3d\x9c\xf5\xa4\x46\x2a\xd9\x9e\xc3\xa4\x5d\x7a\x16\xda\x8a\xd2\xce\x0e\xbe\x85\xa3\x95\xa4\x37\x7e\xa2\xb0\x72\xbc\x69\x31\x5a\x63\xc8\x2f\xab\x4f\x55\xd5\xd4\xa7\xbb\xd2\x88\xec\xac\xc9\x5d\x61\x0b\xfb\xfd\x4a\xea\xe6\x72\x4b\x2a\x67\xa5\x55\x19\x1b\x67\xa7\x77\x2d\xac\xcf\x78\x3a\xc7\xfd\xe3\xf2\x6c\x87\x81\x9c\x16\xfb\x94\x31\x77\x2c\xc2\x53\x8b\xc5\x7b\xca\xec\x66\x6d\x8c\xf5\x83\x4a\x40\x5b\xdc\xd3\x94\x1e\x0f\x9c\xee\x8b\x02\x1d\x07\x43\x41\x95\x52\x75\xd8\xf1\xb5\x58\xa6\xd3\x16\x22\xcb\xbc\xe9\x8b\x84\x9e\x1d\x07\xd8\x88\x48\x72\xbe\xe8\x48\xc1\x52\x44\x49\xa8\x9b\x6b\xfa\x18\x1d\x47\xba\x26\xd0\x3b\xd0\x62\x58\x60\x33\x92\x47\x94\xc0\x8f\xf4\xbb\x16\xa1\xe0\x0f\x93\xae\x08\x98\x9a\xfd\x1b\x02\xfe\x1f\xb4\xca\xc5\x93\x0e\x83\xf5\x2a\x1f\xef\xf5\xaa\xac\x0c\xe6\xbd\x34\x87\xba\xd3\x0b\x78\x63\xdd\xa7\x13\xd7\x08\xec\x1c\x85\x1b\xae\x71\x66\x11\x65\xab\x7f\x8e\x36\xa2\x77\x3a\xc6\x3c\x70\xd4\x81\x0c\xba\x1d\xb4\x73\xd0\xde\xb3\xe8\xd4\x26\xbe\x83\xf5\xbd\x5b\x27\x74\x90\x91\x23\x61\x63\x65\x84\xed\xd9\xc7\xb3\x95\x1e\x6b\xde\x8a\xe3\xe5\x2f\xf2\x04\x1b\x7b\xb7\x83\x9e\x67\x97\xc4\x16\x3e\x85\x96\x91\xf0\x5a\x8e\x60\x9a\x1a\xbf\x39\xb3\xaf\xf4\x7a\xa2\x16\x07\x7c\x7b\x63\xfe\xe1\x88\xf2\x14\xbc\x29\xd1\x4b\x12\xe5\x16\xf2\x5d\xed\x8d\xa1\x73\xba\x1c\xe6\xd1\x8c\xca\x8d\x9c\x58\xd2\xa9\xf7\xf4\xe4\x85\xc2\xf2\x6c\x5b\x7a\x6b\xa3\xca\x0e\x9a\x87\xa4\xf5\x7f\x29\xd6\xe7\xd3\xb8\x34\xfc\x12\xb8\x10\xf2\x05\x17\xfc\x52\x5f\x60\x8f\xb6\x10\xc9\x13\x02\xcd\x4e\xf7\x14\xc1\xce\x20\x81\xfb\x35\x61\xfb\x31\x1f\x36\xcf\x07\xad\xae\x33\x50\x5b\x7c\x7c\x29\xb4\xbb\x11\x7a\xb8\x88\x89\x15\x57\xbc\x34\xf3\xdd\xec\xa9\x74\xec\xcc\x95\xbb\xb9\xa6\xf0\xa5\x58\xc7\xcf\x27\xb5\xfe\x39\x37\x7c\x81\xce\xf6\xb8\x8c\x7f\xd4\x79\x9b\x85\xba\xd6\xba\xa9\xf1\x13\x07\xec\x32\xe7\xf2\x6f\x79\xee\x7f\x59\x85\x90\x6e\x8d\xca\x47\x7f\x73\xf8\x1f\x44\x18\x45\xe6\xb6\x69\x7a\xed\xed\x3a\xd2\xa2\xe7\xa9\xf9\x6a\x45\x5a\xbe\x97\xa0\x7d\x5c\x71\x98\xe2\x83\x29\xc7\xf1\xf9\xa5\x45\x19\xf1\xf5\x77\x77\x86\x86\x6f\x52\x37\xb5\xa1\xee\xd1\x8a\xba\x99\x33\xf1\xf3\xed\x04\x7e\xa5\x3e\xde\x88\x9f\xc8\xf3\xf0\x26\x7d\x8a\x9b\xfe\xb7\x02\xa9\xb7\x28\xa4\x5e\x95\x48\xbd\xa2\x91\x7a\x4d\x24\x75\x54\xe9\xef\x00\x00\x00\xff\xff\xd8\x0f\x61\x39\x52\x0a\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x55\x4d\x8b\x23\x37\x10\xbd\xf7\xaf\x78\x90\x4b\xd2\xac\xdc\x33\x43\xf6\x90\x36\x39\x84\x2c\x21\x81\x40\x02\x09\xe4\xac\x6e\x95\xbb\xc5\xa8\x55\x8d\x54\x1e\xdb\xb3\xec\x7f\x0f\x92\xec\xf5\xc7\x7a\x3c\x13\x48\x20\x47\xab\xbe\xde\x7b\x55\xfd\xdc\xd4\x75\x85\x1a\x1f\x68\xa5\xd7\x4e\x10\x65\xe7\x28\x62\xc5\x01\x32\x12\xcc\x6e\x08\x7a\x1e\x23\xfa\x51\x07\xb1\x7e\x80\xb3\x5d\xd0\x61\xb7\xa8\x50\x37\x55\xb5\xd8\x27\x28\x47\x03\x79\x83\x8f\x15\x30\x73\xb4\x62\xd9\xb7\xd0\x5d\x64\xb7\x16\x5a\x56\xc0\x8a\xbd\xa8\x68\x9f\xa9\xc5\xfd\xb7\xf3\x36\x3d\x3d\x2b\xeb\x0d\x6d\x5b\xdc\xdf\xa5\x9f\x1b\x6b\x64\x6c\xf1\xf0\xfe\x6e\xde\x2e\x81\xa6\x86\xd3\x1d\xb9\xf8\xc1\x3e\xfd\x95\x42\x69\x60\x7a\xae\x70\x84\x65\x48\x28\x4c\xd6\x53\x4c\x70\x23\xa1\xd3\x91\x0c\xd8\x67\xf4\x73\xa0\x48\xbe\x27\xf0\xaa\x10\xd8\x77\x5c\x54\xc0\x2f\x82\xc9\x0e\xa3\x60\xd2\x8f\x84\x89\x03\x21\x92\x8f\x04\x61\xf4\x81\xb4\x10\x34\x36\x41\xcf\x33\x05\x18\xfb\x04\x1d\x78\xed\x4d\xee\x5b\x7a\xcd\x81\x67\x0a\xa9\x97\xf0\xdc\xe2\xae\x90\x0a\xa9\x69\x8b\x87\xf2\x2b\x43\xee\x74\xff\x38\xe4\xea\x16\x9b\xd1\x16\x3d\x9c\xf5\xa4\x46\x2a\xd9\x9e\xc3\xa4\x5d\x7a\x16\xda\x8a\xd2\xce\x0e\xbe\x85\xa3\x95\xa4\x37\x7e\xa2\xb0\x72\xbc\x69\x31\x5a\x63\xc8\x2f\xab\x4f\x55\xd5\xd4\xa7\xbb\xd2\x88\xec\xac\xc9\x5d\x61\x0b\xfb\xfd\x4a\xea\xe6\x72\x4b\x2a\x67\xa5\x55\x19\x1b\x67\xa7\x77\x2d\xac\xcf\x78\x3a\xc7\xfd\xe3\xf2\x6c\x87\x81\x9c\x16\xfb\x94\x31\x77\x2c\xc2\x53\x8b\xc5\x7b\xca\xec\x66\x6d\x8c\xf5\x83\x4a\x40\x5b\xdc\xd3\x94\x1e\x0f\x9c\xee\x8b\x02\x1d\x07\x43\x41\x95\x52\x75\xd8\xf1\xb5\x58\xa6\xd3\x16\x22\xcb\xbc\xe9\x8b\x84\x9e\x1d\x07\xd8\x88\x48\x72\xbe\xe8\x48\xc1\x52\x44\x49\xa8\x9b\x6b\xfa\x18\x1d\x47\xba\x26\xd0\x3b\xd0\x62\x58\x60\x33\x92\x47\x94\xc0\x8f\xf4\xbb\x16\xa1\xe0\x0f\x93\xae\x08\x98\x9a\xfd\x1b\x02\xfe\x1f\xb4\xca\xc5\x93\x0e\x83\xf5\x2a\x1f\xef\xf5\xaa\xac\x0c\xe6\xbd\x34\x87\xba\xd3\x0b\x78\x63\xdd\xa7\x13\xd7\x08\xec\x1c\x85\x1b\xae\x71\x66\x11\x65\xab\x7f\x8e\x36\xa2\x77\x3a\xc6\x3c\x70\xd4\x81\x0c\xba\x1d\xb4\x73\xd0\xde\xb3\xe8\xd4\x26\xbe\x83\xf5\xbd\x5b\x27\x74\x90\x91\x23\x61\x63\x65\x84\xed\xd9\xc7\xb3\x95\x1e\x6b\xde\x8a\xe3\xe5\x2f\xf2\x04\x1b\x7b\xb7\x83\x9e\x67\x97\xc4\x16\x3e\x85\x96\x91\xf0\x5a\x8e\x60\x9a\x1a\xbf\x39\xb3\xaf\xf4\x7a\xa2\x16\x07\x7c\x7b\x63\xfe\xe1\x88\xf2\x14\xbc\x29\xd1\x4b\x12\xe5\x16\xf2\x5d\xed\x8d\xa1\x73\xba\x1c\xe6\xd1\x8c\xca\x8d\x9c\x58\xd2\xa9\xf7\xf4\xe4\x85\xc2\xf2\x6c\x5b\x7a\x6b\xa3\xca\x0e\x9a\x87\xa4\xf5\x7f\x29\xd6\xe7\xd3\xb8\x34\xfc\x12\xb8\x10\xf2\x05\x17\xfc\x52\x5f\x60\x8f\xb6\x10\xc9\x13\x02\xcd\x4e\xf7\x14\xc1\xce\x20\x81\xfb\x35\x61\xfb\x31\x1f\x36\xcf\x07\xad\xae\x33\x50\x5b\x7c\x7c\x29\xb4\xbb\x11\x7a\xb8\x88\x89\x15\x57\xbc\x34\xf3\xdd\xec\xa9\x74\xec\xcc\x95\xbb\xb9\xa6\xf0\xa5\x58\xc7\xcf\x27\xb5\xfe\x39\x37\x7c\x81\xce\xf6\xb8\x8c\x7f\xd4\x79\x9b\x85\xba\xd6\xba\xa9\xf1\x13\x07\xec\x32\xe7\xf2\x6f\x79\xee\x7f\x59\x85\x90\x6e\x8d\xca\x47\x7f\x73\xf8\x1f\x44\x18\x45\xe6\xb6\x69\x7a\xed\xed\x3a\xd2\xa2\xe7\xa9\xf9\x6a\x45\x5a\xbe\x97\xa0\x7d\x5c\x71\x98\xe2\x83\x29\xc7\xf1\xf9\xa5\x45\x19\xf1\xf5\x77\x77\x86\x86\x6f\x52\x37\xb5\xa1\xee\xd1\x8a\xba\x99\x33\xf1\xf3\xed\x04\x7e\xa5\x3e\xde\x88\x9f\xc8\xf3\xf0\x26\x7d\x8a\x9b\xfe\xb7\x02\xa9\xb7\x28\xa4\x5e\x95\x48\xbd\xa2\x91\x7a\x4d\x24\x75\x54\xe9\xef\x00\x00\x00\xff\xff\xd8\x0f\x61\x39\x52\x0a\x00\x00"), }, "/dygraph.min.js": &vfsgen۰CompressedFileInfo{ name: "dygraph.min.js", - modTime: time.Date(2022, 10, 16, 17, 51, 16, 602455294, time.UTC), + modTime: time.Date(2017, 12, 12, 22, 27, 49, 0, time.UTC), uncompressedSize: 123954, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xec\xbd\x7b\x73\xdb\x38\xb2\x28\xfe\xff\xfd\x14\x12\xef\x39\x1c\xc2\x82\x68\x51\x79\xcc\x2c\x69\x44\xd7\xb1\x9d\xc4\x67\x12\x3b\x1b\x3b\xb3\xe3\xd5\xf2\xaa\x60\x11\x92\x70\x42\x91\x5a\x12\x92\xa5\xb1\xf4\xdd\x7f\x85\x17\x09\x52\x94\x9d\x99\xdd\xad\xdf\x56\xdd\x33\x55\x13\x8b\x40\xa3\xf1\xee\x6e\x34\x1a\xdd\xc7\x47\xed\xd6\xff\x89\xe9\x98\x24\x39\x69\x9d\xa5\x8b\x4d\x46\xa7\x33\xd6\xea\xf7\xbc\x1f\x5b\xe7\x38\x69\xfd\x82\x93\x88\x64\xdf\xf0\xbc\xe5\x44\x38\x59\x45\xdf\xfe\xcf\x74\x8e\x69\xec\x8e\xd3\x39\x68\x7d\xba\xbc\xed\xaa\xb2\x51\xcb\x99\x31\xb6\xf0\x8f\x8f\xd3\x05\x49\xf2\x74\x99\x8d\x89\x9b\x66\xd3\x63\x95\x9f\x1f\x7f\xba\xbc\x05\xad\xa3\xe3\xff\xd5\x9e\x2c\x93\x31\xa3\x69\xe2\x30\xf0\x48\x27\x8e\x95\xde\xff\x37\x19\x33\x0b\x21\xb6\x59\x90\x74\xd2\x22\xeb\x45\x9a\xb1\xdc\xb6\xad\x65\x12\x91\x09\x4d\x48\x64\xb5\x75\xe6\x3c\x8d\x96\x31\x01\xf2\x8f\xab\x40\x11\x73\x40\x40\xe2\x9c\xb4\x38\x3e\x8d\xbf\xc4\x28\xb1\xd8\xb6\xfc\xeb\xe2\x79\x04\xe4\x4f\x67\x18\x42\x26\x8b\x3e\xae\x70\xd6\x22\x01\x41\x4d\xb5\x3e\xd0\x24\x4a\x1f\x06\xf2\x8f\xdf\x04\x31\x8d\xd3\x7b\x1c\x0f\xe4\x9f\x46\x88\x9c\xc4\x93\x01\xff\xc7\x67\x33\x9a\x43\xe2\x9e\x6f\xa6\x19\x5e\xcc\x78\xe3\x77\x3b\xa7\x18\x15\xf0\x98\x11\xb6\xcc\x92\x96\x4e\x69\x31\x87\x40\x0c\x29\x78\x2c\x52\x12\x27\x85\xb9\x18\xbd\x36\x1e\xa6\xa1\xfc\x45\xc4\x2f\xde\x8d\x18\x35\x0c\x42\x46\xfe\xbe\xa4\x19\xb1\x6d\xf5\x23\xe0\x65\x72\xdb\x8e\x81\xaa\x2f\x76\x52\xd8\xee\x01\x9e\x9e\xe9\xb4\x4c\xa5\x71\xac\x33\x94\x90\x87\xd6\x45\x96\xa5\x99\x63\x9d\xe1\x24\x49\x59\x6b\x42\x93\x48\xcd\x49\xeb\x07\xab\x93\x76\xac\x1f\x2c\x10\xb0\x59\x96\x3e\xb4\x66\xee\x38\x8d\x08\xb2\x3e\x5d\x9f\x7f\xfd\x78\x31\xba\xba\xbe\x1d\xbd\xbb\xfe\x7a\x75\x6e\xc1\xd9\x8e\xe3\x5b\x22\xde\x76\xf4\xa8\x26\xd1\x7f\xdc\xed\x02\xde\x87\x61\x2f\x74\xc7\x38\x8e\x9d\xa5\x9e\x5f\x68\x2e\x19\x5e\x14\x23\x01\xe8\x85\x43\x16\x06\xaa\xa9\x89\x83\xb7\x5b\x06\x76\x70\x09\xcb\x82\x0c\xca\xa1\xdb\x29\x20\x5e\xa3\xce\xdc\x4d\xd2\xcc\xe1\xd8\xb2\xef\x19\x2e\x98\xa2\x5e\x90\x9e\x50\x37\x26\xc9\x94\xcd\x82\xb4\xd3\x01\x89\x43\xf9\x98\x17\x2d\xd8\x39\x8f\x9e\x3f\x2c\x1b\xcb\x2b\x37\x66\x8d\x3a\xe0\x51\x0e\x8d\x31\x90\x39\x61\xb7\x74\x4e\xd2\x25\x6b\xcd\x70\xde\xe2\x83\x7a\x4f\x48\xd2\xd2\xeb\x07\xec\x8c\x59\x6f\x28\x3f\x8e\x09\xce\xbe\x17\x43\xa6\xf6\x5c\x84\x10\x2a\x2b\xd6\x93\x5d\xa6\x38\x0c\xca\x85\x20\x20\xe9\x76\xdb\x8e\x80\x6d\xef\x97\x88\x0c\x2c\xb0\x5e\x9c\x65\x1b\xbd\x94\x23\x91\xb2\x1b\x63\x36\x9e\x39\x04\x3c\x9a\x59\x72\xae\x93\x65\x1c\xc3\x2a\x50\x15\x40\x6c\x1a\x01\xb0\x2b\xfb\x93\xaa\xfe\x8c\x11\x42\xe6\x40\xe8\xf6\x99\x69\x0e\x93\x3d\xe2\xb0\xc9\x76\xdb\x1e\x03\xdb\x6e\x2c\x53\xc1\x04\xeb\x28\x8c\xa6\x8f\x1d\xd6\xdc\xa7\xb1\xd9\xa7\xfd\x1e\x8d\xcd\x1e\x55\xfa\x93\x3b\xe0\x71\x64\xdb\x53\xdb\x76\x46\xa8\xed\xc1\xa9\x5a\x6d\x83\x09\x9a\xba\xe3\x34\x19\x63\xe6\x4c\x80\xbf\x42\x5d\x0f\x4e\x54\x9e\x6d\xc7\x0e\x30\xe6\x38\x76\x24\x39\x18\xc9\xad\xc2\x50\xe6\xe4\x20\x18\xa1\x76\x2f\xd0\x0b\x9e\x20\x5d\x38\x20\x01\x78\xe4\xc9\x53\x34\x81\x13\x34\x0c\x83\x4e\x67\x75\x42\x02\x30\xb5\xed\xe9\x70\x15\xba\xd9\x32\x71\x40\x20\x2a\x2c\x4b\xed\xa6\x48\xf4\x4d\xb4\x91\xcf\x81\xd1\x85\x19\x5f\xf6\x7c\x9d\xd2\xdc\x9d\x2c\x13\xc4\xa0\xf8\x89\xb3\x0c\x6f\x10\x29\xe1\x96\x0e\x78\x14\x64\x20\x82\x63\xb8\x40\x25\x2d\x7f\xdc\x05\x6d\x83\x18\xf2\x61\x8d\x9a\x36\x68\xb9\xdc\x06\xe5\x4f\x9f\xaa\xd1\x66\xe0\x31\x42\x74\xc7\x4b\x8f\x9b\x4a\x9b\xd3\x3a\x30\x3f\xfc\xa4\xc4\x30\x46\xc9\x6e\xe7\x48\xea\x37\x15\xc3\x23\xbb\xcc\x87\x23\x58\xb8\x09\x59\xb3\x5b\x3a\xfe\x86\xea\xe4\x89\x08\x4a\x79\xca\xbb\xec\xe0\x6c\xba\x9c\x93\x84\xe5\x6a\xec\xba\x9e\x58\x86\xf5\xe4\x37\x1e\xd0\xb3\x83\x91\x17\xe0\x93\x3a\x40\x80\x3b\x1d\x40\x86\xb8\xeb\x85\xa8\xc8\x1b\xe2\x30\x98\xb8\x8b\x65\x3e\x73\x78\x8d\x72\xec\x01\xf4\xda\xa8\x98\xab\xed\x76\xb4\xdd\x66\x4e\x0c\x76\x70\xe6\x2e\xb2\x94\xa5\x7c\x04\xf8\xbc\x22\x73\x94\xd5\x74\xb9\x78\xb1\x88\x37\x6a\xe5\x16\xf3\x06\x76\x70\xe1\x32\xca\x62\x82\xac\xfb\x2c\x7d\xc8\x49\x66\xc1\x85\xab\x7e\xa2\x76\x0f\x2e\x5c\x92\xac\xd0\x23\x87\xc3\xd9\x74\xc5\x47\x6a\xe1\xae\x48\x96\xd3\x34\x41\x96\x55\x7e\xe4\x12\x28\x4d\xd0\x92\xc3\x46\xd1\x47\x9a\x33\x92\x90\x4c\x7c\xa7\xc9\x98\xc8\x1f\x93\x89\xf8\x9b\x91\x79\xba\x22\x15\x18\x99\x74\x1a\xc7\x3a\x35\x17\xc9\x64\x4e\x99\xf8\xb1\xc8\xc8\x82\x24\x55\xbc\x2a\xed\x3a\x19\x57\x71\xc5\x05\x0a\x73\x0a\xe5\x36\x1d\x86\xbc\xa1\xf7\x34\x89\x68\x32\xad\xe4\xef\xd1\xe0\x45\x96\x8e\x49\x9e\x6b\xe0\x16\x95\x54\x38\x5f\x2e\xf8\x92\x16\x24\x18\x2e\xdc\xf1\x43\x84\xf6\xb8\xbc\x75\x6c\x89\xbc\x59\x44\xb3\xef\xab\x44\x80\x1e\xa8\x62\x39\xc7\xf9\xb7\xfd\x4a\x5a\xbd\xdd\x0e\x3e\xee\x42\xd8\xdf\xe7\x4e\xd6\x32\x27\xad\x9c\x65\x74\xcc\xac\xe0\x5a\x88\x62\xae\xe4\x1c\x9f\xb3\x74\x41\x32\xb6\x71\x30\xb4\x46\x23\x92\x7f\x12\x6c\xde\x82\x8f\x2b\x1c\x2f\x89\xdf\xee\xed\xe4\xce\xa0\x88\x39\x96\x7b\x7c\x8f\xb3\xdc\x02\x30\x69\x18\xca\x16\xb3\x6d\xe6\x96\x38\x06\xcc\x7f\x8c\xc8\x04\x2f\x63\xe6\xb3\xdd\xce\xa1\x00\x66\x66\xab\x77\x41\x56\x2e\x55\xb1\x97\x12\x57\xc1\x43\x23\xc7\x25\x6b\x96\xe1\x31\xbb\x21\x19\x25\xe6\x14\x2a\xbe\xab\xf6\x13\x85\x09\xcc\x60\xca\xd7\x64\x8e\xb0\x3b\x25\xcc\xb1\xe2\x74\x9a\x8f\x71\x4c\x2c\x00\x63\xd4\x0b\xe2\x13\xa6\xb7\x59\xdc\xe9\x00\x8a\xd8\x30\xe6\x72\x08\xcc\xe4\x2f\x12\xc2\xdc\xb6\xf9\xae\x68\x23\x94\xd9\xb6\x93\x0d\x7b\xe1\x09\xea\x6d\xb7\xd9\xd0\xd3\x3f\xfa\xfc\x07\xe0\x99\x82\x3a\x02\xa8\xe1\x07\x4e\x82\x38\x9c\x48\x90\xdc\x87\xe6\x57\xf8\xca\x49\xc0\x20\x95\xbb\x77\xc8\x1b\x39\x4c\x60\x12\x86\xc0\xaf\xa4\x65\xa2\x19\xc3\x7e\x18\x86\xa0\x92\xc5\xb7\xe8\x50\xfc\xcb\xff\x09\x4b\x31\x24\xdd\x55\x06\x29\x4b\xe3\x98\x26\xd3\xd3\x15\xc9\xf0\x94\xec\x8d\x12\x41\x9f\x30\x9b\xb9\x73\x9a\x38\x04\xea\x51\x50\x13\x2b\x07\x0e\xe6\x30\x86\x33\xb8\xe4\xdc\x81\x8f\x69\x82\x7a\x5c\x18\x82\x19\xea\xc1\x1c\xf5\x9a\x06\x90\x33\x20\x35\x88\x5e\x08\x67\xf2\x57\x3f\x84\xcb\x61\x1c\x8a\x0f\x3d\x14\x54\x0f\x05\x05\xdb\xad\x93\x74\xd0\x8c\x77\x37\xed\x20\x0a\x33\xfe\xe1\x85\x30\xef\x20\x0f\xc0\xb8\x4b\xde\xa0\x9e\x24\xaf\x11\x47\xd1\x25\x61\xa0\x90\x44\x43\x2f\xd4\x78\xf8\x6f\x81\xaa\x8b\xa2\x61\x5f\xcc\x61\xda\x15\x10\x30\x53\x49\x1c\x67\x17\x79\x60\x27\x5a\x93\x0f\x86\x7a\xb2\xbd\xa3\xf4\x38\x87\x43\xef\x28\x39\xce\xa1\x77\x94\x1d\xe7\x61\xe8\x17\xb9\x7b\x03\xae\x65\xca\xe5\x0e\x62\xbd\x3c\x51\x06\x4b\x4e\x56\xa4\xee\xe0\xa3\xde\x20\xfe\xab\x5d\x08\x5f\xfc\x3f\xbc\x0d\x61\xce\x37\x62\xac\x37\x62\x4e\xa7\x73\x6c\x01\x38\x6b\xd8\x99\x4b\xd4\x0b\x96\xe5\xc2\x5a\xaa\x9d\xb9\x94\xb3\x2a\x7f\x91\x10\xce\x8a\x9d\x99\xda\xb6\x93\xea\x9d\xc9\x7f\x74\xe3\xa3\x54\x6e\x50\xbe\x2f\xd3\xea\xbe\x4c\xf9\xbe\x4c\xf5\xd4\xd6\xf6\x65\x5e\xdb\x97\x72\x67\x3a\x19\x92\x18\x61\x35\xbf\x9b\xc1\xa4\x93\x41\x9e\xc3\xb7\x29\xf0\xf3\x43\xfb\xb4\xbe\x59\xf3\x7f\xd1\x66\x85\x11\x1c\x0b\x2e\x5c\x1b\x68\xb1\x83\x29\xea\x05\xb4\x1c\x58\xca\x77\x2c\x4f\xe7\xbb\x79\x29\x77\x34\x4c\x54\x55\x78\xed\xf4\x20\xed\x92\x8e\x07\x82\xe4\x84\x76\xbc\x20\xe1\x27\x1f\x39\x62\x0e\xa7\x8f\x49\x28\xf7\x9c\x1c\xbb\x8c\xef\xbe\xb8\xd3\xe1\xfb\x36\x83\xcb\x8e\x44\xb3\x48\x1f\x1c\x01\xd9\x17\x74\xa0\x0f\x40\x10\x0f\x9c\x99\xcc\xcc\xff\x9e\x31\x67\x09\x8e\x63\x18\xa1\xfc\x38\x86\xe3\x21\x0d\xd1\x90\x0d\xa9\x98\xe8\x08\x0e\xa3\xee\xe2\x68\x06\xa3\xce\xe2\x68\x26\x66\x21\x45\x1e\x42\x64\x20\x20\xbc\xd0\x17\xe3\x5a\x2d\x94\xc2\x61\x0a\xd3\x30\x2c\x0e\x7e\xe3\xdf\xbd\x49\x5f\xfe\x3f\xbd\x49\xf5\x2a\xe2\x6b\x68\x5c\xdf\xac\x8b\x86\xcd\x3a\x45\xbd\x60\x5a\xae\xa9\xa9\xda\xac\xd3\x82\x8d\x4e\xc5\x66\x5d\x3c\xc9\x46\x9b\xb9\x67\x8a\x04\x13\xcc\x2b\x4c\x34\xd5\x0b\x2e\x05\x83\xa8\xd8\x6d\x72\xde\x79\x07\xc4\x42\x89\x51\x3e\x48\x8f\x73\xbf\x07\x67\x28\x1f\x8c\x8f\xca\xe5\x16\x1f\x39\x5e\x37\x06\xc7\x39\xf0\x3d\xb8\x44\x5e\xaf\x77\x34\x83\x89\xf8\x1b\xc3\xa8\xba\xb9\x97\x30\xe9\x2c\x15\x4e\x00\xfc\xe8\xc9\xbd\x5d\xdf\xe0\xd1\x3f\x7d\x83\x3f\x4d\x3f\x1f\x68\x9c\xa7\xc9\x65\xc2\x48\xb6\xc2\xb1\xa4\xa2\x30\x42\xf2\xf0\x97\xa1\x5e\x90\x95\x93\x94\xf1\x8d\xbf\xec\x20\x36\xcc\xf4\xce\x8c\xca\xaf\x17\x9c\x65\x72\xae\x6b\xdb\xce\xb2\xcb\x93\xbb\xa4\x00\x33\xbf\x5f\x84\xb2\x85\x63\x59\xb4\xc7\xa9\x4e\x34\x58\x1e\x47\x7e\x8f\x1f\x75\x66\x80\x4e\x9c\x48\xb2\xee\x29\x5a\x9c\xf4\x06\x3d\x7f\x01\x27\x28\x82\x23\x14\x1b\x53\x32\xe5\x53\x32\x05\xc7\x93\x4e\x7c\x14\x1f\x3b\x2f\x8f\x26\x47\x13\x00\xe0\x0a\x79\x22\x21\x0a\x28\x72\xa6\x32\xaf\x7f\x14\x81\xee\x08\x1c\xaf\x60\x52\x49\xeb\x88\xb4\x7c\x98\x85\x68\x38\x86\x7c\x32\xa7\x70\xc8\xff\x50\xf1\x91\x84\xe1\x4e\xa8\x09\x35\x44\x0f\x0e\x7b\xb0\x17\x86\x52\x79\x98\xa2\x68\x60\x36\x68\xc1\x1b\xb4\x00\xc7\x11\x5f\x23\x26\xd2\x85\x44\xea\x2c\xba\x29\x80\xf2\x57\x27\x05\xa5\x44\x90\xff\x6e\x62\xf3\xea\x19\x62\x63\xe8\x90\xbe\x97\x52\xfc\x21\xfa\x94\x48\xfa\x14\x61\x86\x67\x38\x89\x62\x92\x59\x9c\xde\x50\x27\x01\x9c\xe3\x3a\x96\xeb\x1e\x47\x52\x6f\xd9\x8d\xf1\x26\x5d\x32\x0b\xc0\x1c\x51\x27\xe5\x82\xb4\x79\xf0\xd0\x3d\x2d\x75\x1d\x60\x17\xc4\x35\x52\x55\x40\xc1\xf8\xbb\x49\xd5\xae\x02\xfb\xcc\x7e\xaa\x02\xa7\xc9\xe7\x94\x26\x2c\x3f\xcb\x08\x66\x24\x1a\x55\xc0\x4b\x22\x88\x51\x2f\xc0\xe5\x2e\xe9\x74\xb0\x5c\xbc\x9c\x9e\xe1\x10\x26\x88\xf0\x73\x77\xe2\x6e\x46\x2c\x5d\xa0\x2b\x7c\x05\xf9\xef\xfb\x94\xb1\x74\xae\x3f\x57\x38\x1e\xcd\x69\xb2\xcc\x51\x39\x12\x0b\x9c\xe5\xe4\x5d\x9c\x62\xe6\x50\x29\x9b\x02\x0d\xba\x88\x9f\x84\xf4\x42\xb0\xab\x76\x65\x4a\xd8\xc5\x9a\x65\x64\x4e\xee\x7e\xe1\x53\xf8\x24\x49\x97\xda\x1a\x49\x58\xf9\x34\x16\xaa\x08\x2e\xbf\x07\xf9\x09\x4a\x83\x9c\xd3\xeb\x89\xa3\x88\xae\x10\xde\x73\x51\xaf\x6d\xb7\xb5\x84\xae\x95\xcb\x22\x4b\xca\xd6\xb3\xe2\xc3\x0b\x83\xf8\x0d\xb5\x6d\x27\x46\x14\xc0\xd9\x09\xff\x39\xe3\x3f\x1d\x45\xb0\xb3\xed\x76\xf6\x26\x93\x14\x7e\x56\x26\x27\xdb\x6d\x7c\x92\xf0\xe4\x04\xc5\x9a\x5d\x0f\x13\x98\x85\xf5\xb9\xfb\x48\x13\x72\xc1\xd7\x2b\x9f\xbb\x27\xbb\xdb\x0b\x92\x72\xfa\x12\xc5\x89\x92\x10\x52\x35\x65\xb9\xb9\x38\xc7\x77\x57\x69\x36\xc7\xf1\xc8\x21\x1c\xa0\x98\x38\x88\x81\x28\xa0\xe6\xf5\xb9\x32\x7c\x06\x21\x06\xe6\xce\x8f\x0f\xee\xfc\xbd\x4d\xe4\x7b\x2f\x60\x6d\xdf\xf9\xaf\x77\x21\x7c\xfd\xaf\x11\x42\x4c\xf9\x01\x26\x88\x06\x89\xfb\x2b\x97\xf9\xdc\x3b\xe4\xc1\xc4\xbd\xf8\xf5\xf6\xcb\xe9\x0d\xea\xc3\xe4\x77\xec\x4a\x13\x36\x17\x40\xb7\xa9\xdc\x6e\x87\xe7\x8a\xb3\xb2\x1a\x4f\xea\x74\x32\xb9\xce\x52\xc1\x4d\x60\x8e\x84\xbc\x1d\x23\xb5\x5e\xf2\x01\xff\xe1\x27\xe6\x1e\xc9\x39\xff\x7b\x5c\xfb\x7c\xef\x6d\xc4\xbf\xeb\x15\xae\xc1\xa4\x62\xbb\xf1\xa9\xf2\x63\x98\xe0\x39\xf1\x09\xa4\xd1\xda\xcf\x3a\x78\x17\x50\xc9\xd2\x67\x85\xb8\x28\x74\x5f\x75\x72\xe1\x30\x48\x01\xa4\xd5\xae\x3e\x43\x53\xaa\xc0\xcf\x52\xab\xe4\x77\x6d\xf1\x7a\x4b\x9e\xde\x21\x02\xba\x18\x90\x26\xd1\x53\x0d\x31\x1b\x5c\xe1\x2b\x9f\x99\x4b\x99\x1e\x58\xca\xbb\x10\xfe\xf8\xef\xcd\xba\x1c\xc1\xbb\x64\x96\xac\xc1\x02\x9c\x97\x51\x27\xe3\x9c\xab\x22\x49\xe7\x35\xf6\x94\x16\xec\x29\xff\xc7\x24\x69\xbe\xce\x97\x0d\x42\x33\x97\xcb\xa2\x72\xed\x47\x8a\x54\x45\x85\xd0\x1c\x09\xa1\x79\xf9\xaf\x10\x9a\x67\x55\xa1\xb9\x2e\x30\x6b\x59\x78\x66\xca\xc2\x85\x0c\x3c\xfb\x0e\x3d\xd4\x6c\x57\x19\xb6\x7f\x48\xf2\x55\x84\x42\x5c\xc2\x1d\x3a\xc1\x66\x5c\x74\xa5\x9a\x33\xa5\xe5\x97\x17\xf2\x03\xac\x14\x64\x33\x2e\xb8\x52\x25\xb8\x4a\xe5\x50\xf9\xed\x29\x41\x36\x47\xfa\x1c\x19\xa3\x74\x90\x1d\xa7\x7e\x2f\x48\xc4\xf9\x32\x17\xe2\x5e\x5c\x48\x7a\x89\xb9\x49\xf2\xc3\x92\x5e\x95\xb0\x43\x63\x31\xfa\x3f\xed\x42\xf8\xd3\xbf\xf0\xac\x59\xdd\x10\xff\x86\x47\x4e\x3e\xb7\x49\xc3\xe6\x68\x3a\xac\x94\x8c\x41\x2e\x6e\xf1\x8b\x84\x41\x62\xdb\xf9\x89\x98\xe0\x5c\xed\x04\x45\xd2\xc5\x92\x2d\xc8\x3a\xfd\x17\x68\x5b\xd0\x30\xe4\xa7\x1c\x0f\x21\xa2\xaf\x10\xd9\x93\x5a\x96\x54\xe9\x4d\xff\x21\x0d\x4b\xde\xe9\xc8\x25\x2e\xf3\x82\x98\x2f\x4f\xa1\xcb\x54\x0a\x90\xe3\x5c\xe8\x2e\x69\xa1\xbb\x2c\xd6\x6c\x5c\x1d\x84\x7f\x85\x24\xa9\x1b\x5f\x8a\x91\x15\x3d\xaf\x21\x12\x52\x2d\x12\xd2\x8a\x48\x48\xb5\x48\x48\x81\xa6\x27\x4a\x26\xfc\xae\x83\xd5\x9e\x1c\xf5\xa7\x7f\xe5\x06\x53\xa2\xdc\x92\xd1\x78\x5f\xab\x43\x27\x4e\x6d\x7b\x95\xab\x44\xde\x15\x3e\xee\x82\x42\xf2\x66\xe5\x2d\x60\x8b\x26\x2d\x06\x54\xc3\xca\xe9\x9a\xe1\xfc\xfa\x21\xd1\x4d\x54\xa7\x2b\x88\xf9\x68\xf1\x63\x89\x38\xa2\x14\x24\x98\x14\x83\xc5\x20\x51\x1b\xd9\x6c\xb3\xc5\x39\xe1\xef\x27\x08\x55\xce\xa9\x6d\x2c\x44\x57\xb9\xdc\xa4\x90\x8f\xf4\xdd\xaf\x94\x71\x11\x95\x5f\x24\x26\x73\x92\x30\x44\x2a\x9f\x67\x69\xc2\xc8\x9a\x21\x2c\x53\x67\x84\x4e\x67\x0c\x31\xf5\x63\x24\x53\x1f\x68\xc4\x66\x88\xc9\xbf\x23\xd8\x4e\x5c\x9a\x9f\xe1\x64\x85\xf3\x1b\x7d\x0f\xe6\x98\x48\x01\x10\xb7\x68\x96\x84\xd9\xbb\x33\x73\xad\x40\xdd\x71\x12\x8c\x28\xdf\x08\x9f\xe3\x94\x9d\x66\x04\xab\x3b\xdf\x0c\x55\xfa\xe3\x8e\x05\x9e\xd1\x98\xad\x47\x41\xe6\xde\x93\x29\x4d\x3e\x63\x36\x73\x00\xcc\xdc\x8c\x8c\x99\x53\xa0\x73\xd7\xb0\xfc\xbd\x31\x7e\x3f\x18\xbf\x67\xbc\xdc\x38\xa6\x0b\x47\xcc\x4b\xa5\xaa\x19\x8d\x22\x92\x88\xaa\xe0\x3f\xb7\xaa\x8a\x98\xe3\x8a\xab\xef\xbd\x9b\xe0\xea\xa4\x48\xa0\x2f\xbc\xd6\x1e\xec\x19\x53\x61\xce\x15\xa8\x71\x7b\x92\x44\x64\x1f\xf1\x68\xb9\x88\x30\x23\x52\x64\x76\x80\x44\x30\x92\xc0\x5c\x7a\x3d\x9b\xe1\x8c\x39\x02\xd7\x68\x4a\xd8\x25\x23\x19\x66\x69\xf6\x39\x23\x11\x1d\x63\x46\x1a\x17\xeb\x20\x77\x47\x0b\x0d\x71\x3b\xc3\xec\xe6\x1b\x5d\xe4\x17\xf3\x05\xdb\xc8\x8a\x84\x86\x58\xe0\x7c\x12\xac\x26\xba\x1b\x42\x71\x1b\x21\x36\x24\xa1\x38\xe9\x09\x3c\x51\x86\x1f\x6e\xd8\x26\x26\x11\x6f\xf5\xde\x5e\x10\xbc\x21\x96\xec\x8a\x2f\x58\x35\xad\x70\x89\x66\x7c\x99\xbd\x4d\xd3\x98\xe0\xe4\x7a\x21\xca\x58\x39\x23\x0b\xbe\xf2\x2c\xc8\xdc\x9c\xb0\x2b\x3c\x27\x20\xe0\x6b\x5b\x58\x10\x7c\xa4\xdf\x88\x24\x9b\x54\xb2\xb6\x40\xde\x81\x35\x61\xe2\xcd\x7a\x8f\x17\x17\xd1\x54\x0d\xb1\x89\x12\x8e\x11\x73\x17\x22\x19\x2e\x50\x91\x0e\xa7\x28\x71\xc7\xe2\xf4\xa2\x87\xdb\x19\xc3\x1e\x1c\x2b\xda\x7e\x68\x2a\x9c\xa6\x06\x8c\xd3\x24\x21\x9c\xe5\x2f\x70\xc6\x0f\x21\xba\x15\x0b\x00\x00\x9c\x20\x6a\xdb\xda\x80\xea\x0d\xea\xc3\x11\x1f\x9a\x0c\x3f\xd0\x64\xaa\x96\x5a\x30\x72\x73\xbc\x22\x0e\x80\x13\xdb\x1e\xf1\x26\xf2\xf1\x3d\xc7\xf9\xac\xf6\xe9\x50\x39\x0e\x2b\xa4\x67\x43\x48\x19\x0e\x83\x53\x88\x61\x0c\x33\x18\xc1\x25\x24\x20\x50\xd9\xb2\x21\xd7\xe2\x88\xe4\x30\xb8\x82\x29\x24\x30\x7e\xbe\x9a\x61\x08\xe0\xc8\xcd\x48\xce\xd2\x8c\xa8\x85\x59\x56\xb7\x3f\xf1\x4a\x2c\x50\xaa\x12\x71\x6d\x2a\x78\x65\x24\xff\x8c\xe5\x9f\x05\x97\x79\xa6\xa8\xdd\x83\x93\xfd\x21\x98\x54\xb6\xfb\xc4\xcd\x59\x96\x7e\x23\x62\xb5\xa1\x1c\x4e\xdc\x98\x26\xe4\x2f\x82\x12\xe2\xc2\xa2\x67\x84\x88\x34\xd5\x18\xc1\x15\x22\x2e\x49\xa2\x11\xdc\x20\xe2\x16\xeb\x7d\x04\xd7\x88\xb8\x39\xc3\x19\x1b\x05\xeb\x93\x55\xb0\x56\xd7\xb4\x33\x34\x1a\xae\x43\xb8\x91\x6c\x9e\x67\xd9\x76\x7b\xe3\x8c\xe0\x1a\x04\x60\xdd\xe9\x70\xde\xb4\x46\x68\x05\xee\x33\x82\xbf\x05\x12\x7c\xa7\x18\x16\x42\x68\xa6\xa8\xe2\x66\xbb\x2d\x7e\xb6\xcb\x54\x90\x16\x67\x97\xa5\x6d\x3b\x13\x77\x9e\xae\xc8\x6d\xea\x2c\x61\x04\x54\x5f\x6e\x53\x47\x83\xaf\x61\x04\x00\x5c\x22\x39\x5a\xd2\x2e\x93\x4e\x9c\x18\xb5\x3d\x98\x6d\xb7\xaa\xca\x25\x78\x24\xc2\xf8\xe6\x32\x5a\x8f\xd0\x1a\xca\x0f\x87\x2f\x70\xc1\x1f\xaf\xc8\x9a\x0d\x88\xbb\x20\xe4\x9b\x6e\x86\xa0\x00\x62\xc1\xcc\xb5\x22\x61\xbc\xdd\x8e\xdb\x68\x1c\x14\x9a\x85\xa5\x6d\xcf\x21\x3f\x60\xb5\xa7\xb2\xcd\x3c\x6d\xbb\x2d\x50\xda\xf6\x1c\x08\xfd\x56\xbb\x07\x76\xba\x4f\x03\x6c\xdb\x4e\xfa\xbd\x3d\x6b\x48\x2e\x47\x0a\xf8\x05\x8e\xa6\x6c\xe8\x24\xdb\x6d\x0c\x6c\x7b\xa1\x24\xdb\x06\x20\x38\x73\x69\xb4\x0e\x81\x20\x34\x45\xc5\xe5\x6c\xec\xa6\xa8\xed\x69\x39\x50\xaf\x2c\x07\xc0\x45\xb1\xae\xcd\x7d\xd2\xb0\xba\x4b\x61\x30\xdb\x5b\xb8\xca\x42\x92\x98\x16\x92\x8f\xf2\x38\x45\x86\x69\x18\x64\x7a\x6b\x63\x25\xb5\x14\x64\xd1\xfc\xa5\xa9\x52\x06\x73\x21\xe2\x8b\xd3\x1b\x4c\x60\x3e\xec\x87\x92\xf9\xe9\xad\x58\x65\x38\x15\xce\x62\xf2\x1d\xdd\x60\x86\x0c\x61\x44\xd3\x41\x52\x88\xb0\x01\xe9\x76\x03\xc3\x06\x8b\xd3\x7b\x48\x11\x2e\xc4\x77\x9e\xfd\x28\x15\x0d\x78\x48\xc3\x20\xd1\x03\x8c\x0c\x96\x7b\x94\xb8\xeb\x8e\xc9\x9a\x35\xd4\xc6\x80\x9a\x1d\x25\xee\xc6\x80\xda\xd4\xbb\x52\xe3\x87\x35\xbe\x24\xda\xc7\x79\x0c\x22\xdb\x6d\x03\xbb\xe6\x72\xf9\x7e\x4f\xf3\x4a\xa2\x1a\xe5\x5c\x0a\x40\xe3\x34\x4e\xb3\xbc\x2e\xec\x88\xc4\x4f\x78\x31\x0a\x94\xda\xb7\x92\x3d\x25\x4c\x13\xfd\x45\x9c\x32\x26\x4e\x97\x33\x14\xd7\x18\xd7\x8c\x33\xae\x19\x1a\xce\xd4\xd1\x7a\xc9\xc5\x5d\x3e\xca\x52\xc9\x5e\xb1\x6e\x7b\xa4\x48\x58\xb4\x29\x1b\x8f\xe7\xaa\x83\x14\x04\x51\x1b\xc5\xb6\xed\x2c\xf9\xe9\x27\x02\xbb\x12\xf1\xcc\x44\xac\x67\x75\x8c\x66\x43\x2c\xee\xc4\x39\xdd\x2a\x8e\x2e\xf2\xea\x32\xad\x5c\x5d\x4e\x1c\xde\x98\x69\x08\xdb\x6c\xbb\xa5\x08\x29\xcb\xbe\x09\x4a\x79\xe2\x08\x8d\x39\x5d\xa4\x5c\x46\x5f\x4a\x73\xcb\x05\x18\xa7\x09\xa3\xc9\x92\x04\x23\xc4\xdb\xb3\x93\xec\xc9\x18\xe0\x21\x0d\xe1\xe6\x70\xbf\xe4\x6e\x14\x94\x5d\xf4\xad\xd8\x2f\x59\x85\x05\xac\x60\x66\xb0\x80\x0d\x1c\x39\x8f\x72\x8a\xfd\x09\x54\xd3\xea\x53\x58\xdd\x9a\x7e\x06\x45\x13\xfc\x15\x34\x6a\xf1\x37\x50\xb5\xc3\xaf\x34\x0a\xe2\x35\xcd\xab\x49\x2e\x4f\x52\x87\x0e\x4a\xf2\x77\x69\xa6\xf8\x2d\x05\x70\xa1\x84\x66\xbf\x58\xd1\x50\xea\x7f\x2f\x93\x88\xac\xfd\xa9\xfa\x3a\x4b\x97\x09\xf3\xd3\x42\xaa\xa0\xc9\x34\x26\x12\x8b\x68\x33\x83\x38\x8e\xe5\xb7\x92\xda\xd2\xdd\xfe\x86\x1f\x7d\x96\xb3\x9f\xa3\x47\x3e\x08\xea\xcb\x37\xc5\xc2\xdc\x1d\x19\x59\x0e\x97\x4c\x27\x34\x8e\x0f\x80\x1a\x59\x02\x94\x64\x59\x9a\x1d\x80\x35\xf3\x84\xd5\x2b\xac\xd6\xd5\x60\x08\x5a\x92\x36\x6c\x88\x5c\x94\xff\x2e\x27\x82\x6f\x65\xbe\x12\xae\x96\x73\x92\xd1\x71\x75\x41\xbc\x4d\xb3\x88\x64\x6a\x59\x60\x7e\x60\x23\xe6\xaa\x29\x88\xf6\x19\x8e\xe3\x7b\x3c\xfe\xc6\x81\xb6\xdb\xc4\x3d\xa3\xd9\x38\x26\xb9\x7b\x7e\xf1\xee\xf4\xeb\xc7\x5b\x18\x57\xcb\x49\xe4\x9f\x31\x6f\x77\x22\x10\xcf\x24\x40\x83\x48\xa9\xa5\x38\xcc\x19\x4b\x53\x4b\xc5\x02\xbc\xa1\xbf\x11\x0e\x13\x64\xb6\x4d\x6d\x7b\x4f\x4a\xe6\xd4\x6b\xbf\x05\xb2\x7b\x67\x7c\x75\x8a\x0a\x68\xa7\x7f\x94\x09\xeb\x83\x14\x2e\x01\x6c\xc2\xc2\xe4\x7e\x82\xb4\x00\x13\x13\x61\xce\xce\xf7\xce\x04\xdf\xc5\x4d\xbd\x16\xb8\xde\x0a\x2b\x0d\x2e\x01\x34\x08\xba\xcb\x9c\xa5\x73\x09\xc1\xc5\x91\x7d\x08\xbe\xb0\xde\x8b\x43\xb6\x38\x9d\x8f\xd3\x24\x4f\x63\xe2\x3e\xe0\x2c\x11\xcf\x27\x7e\x60\xad\x65\x4e\x5a\x05\x58\x2b\x15\x05\x5b\x0f\x94\xcd\x5a\xa2\xfe\x96\x34\x13\x51\x0a\xa7\x46\x86\xab\x87\x22\x6e\x9c\x16\x8e\xfb\x34\x5e\xcc\xf0\x13\xf3\x5b\x1e\x3e\xc4\xec\x16\xfc\x22\xda\x3f\x15\x2c\x61\x0f\x2e\x9f\x3b\x15\x90\xdf\x71\x2a\xc0\xfc\x54\x30\x16\x57\xa6\xf2\x1e\x75\x8a\x86\x5d\x0f\x76\xbd\x10\x4e\x50\xe2\xb2\xf4\xcb\xfb\xb7\x23\x27\x05\x70\x84\xac\x6c\x7a\x8f\x1d\xab\x33\x71\xb3\x8e\x05\xf9\xdf\xa9\xfa\x7b\x2f\xfe\xc6\x1d\x0b\x58\x41\xe6\xf2\x2e\x4b\x3a\x59\x3b\x37\x17\xa2\xf2\xea\xa9\x9b\x8f\xed\x76\x95\xd2\xa8\xd5\x93\xbf\xa5\xca\x8a\x81\x5d\x10\x69\x21\x50\xc9\x00\x1b\x14\x29\xa1\x33\x68\xcf\x6c\x7b\xe5\x6c\xdc\x0d\xd8\x6e\x67\xc5\x6d\xe9\x02\xf0\xd4\x05\x18\x88\xee\xf9\x0e\x45\xc3\x4d\x71\x99\x08\x37\xf2\x22\x52\xd8\xae\x39\x0b\xc4\x0b\x43\xa5\x1f\x1b\xf6\x42\x2e\x65\xf2\xbf\xd5\x74\x4f\xa5\x7b\x3a\x9d\x43\x30\x57\x53\x5f\x77\x76\xc4\x53\x3a\x46\xca\x06\x0a\xe8\x1a\x8c\x57\x87\x11\xf8\xc7\x82\x4f\x0f\x9c\x4c\x8b\xa0\x63\x38\x15\x37\x66\x99\x16\x59\x37\x85\x40\xf9\x44\x86\x17\x02\xe0\x7f\x17\x12\x7a\x38\x83\x23\x29\x73\xc6\x12\xad\xd0\x5f\xa4\x39\x91\xb3\x09\xe0\x14\x51\x38\x46\x45\x31\xb0\x93\x73\xaf\xd9\xc4\x04\xe7\x4c\xaa\x7d\x3e\x67\xe9\x7a\xd3\x40\x0f\x86\x21\xc4\xf2\x34\x26\xcf\xd5\x30\x11\x36\xad\x35\xdd\x5d\xdb\xd1\xf2\xec\x09\xf2\x80\x69\x23\x40\x0a\x01\x22\xc0\x6f\x7a\x01\xee\x76\xb5\x95\x80\x30\x0f\xa0\x13\xa7\x8f\x90\xe8\xa5\x92\x1a\xa5\xf1\x7e\x90\xf0\x39\x41\xbc\x97\xb6\x9d\x0c\xfb\xe2\x77\x3f\xb4\x6d\xe2\xe6\x8b\x98\x8e\x89\x83\xa1\x07\x76\xbb\xaa\x31\x82\x51\x59\xa5\x16\x55\x85\x6d\xf7\x11\x4f\xe8\x78\xe1\xb0\x17\x0e\x2a\xa8\x7c\xdc\xe9\xec\x04\x99\x53\x07\xef\xbe\x6d\xb7\xd5\x28\x64\xa8\x17\x88\x92\xbd\x50\x60\xc9\x3a\x9d\x62\x9f\x48\x6b\x49\x28\xf5\xe9\x10\xa3\xcc\x68\x86\x14\xd7\xaa\xbd\xf5\x54\x6f\xcb\xa3\x61\x5a\x1c\xa3\x72\x90\x22\x0c\x73\x84\xcb\xa7\x76\xb1\xe8\x76\x10\x9f\x88\x97\x5c\xfd\x70\x90\x22\xec\xc7\x6f\x88\x34\x27\x10\x8a\x7c\x0c\x76\x3b\xa9\x41\xe1\x30\x9c\xf5\x0c\xf3\x30\x28\x3a\x97\xc1\x62\x54\x32\x00\xd3\x93\x7c\xe0\x10\x7d\x8f\x0b\xd5\xaf\x25\x00\x7e\xfa\xa6\xcc\x59\x16\x39\x33\x00\xfc\xe2\xe7\x6e\xb7\x33\x15\xa1\x18\x3c\x66\x0e\x06\xc6\x50\xf4\x60\x8e\xca\x83\xcd\x49\x5e\x1e\x6e\x62\x79\xb8\xf1\x10\x8a\xf9\xd0\x33\xbd\x6c\x63\x71\x6b\xcd\x0f\x2d\x7e\x5f\xe6\xd9\x36\xd3\xfb\xa2\xcc\xdc\x91\xe2\x19\x8f\xc3\xc7\xb2\x9c\x68\xa1\x36\x87\x49\xa7\xa8\x17\xf2\x35\xbb\xab\x6a\x5e\x13\x98\xe9\x33\x96\xb8\x4c\xc8\xd2\x65\x12\x39\x09\x08\xca\x59\xc0\xdb\x6d\xde\x46\x58\xb7\x16\x77\xe9\x1b\x0f\xce\x50\xde\xc5\x6f\xbc\x20\x75\xe2\xed\x76\x06\x20\x46\xf9\x4e\x8d\xc6\x50\x60\x0d\xc1\x4e\x29\x91\x1f\x65\x9b\xfd\xea\x21\x24\x77\xfa\x90\xff\xd8\x41\xd9\xdf\xbd\x6c\x4f\x65\x4b\x2e\xef\x1b\x07\xb2\xd4\x69\xf7\x00\x64\xc5\xe9\x53\x8a\x67\x4d\x10\x6a\x43\xc3\x82\x8c\x37\x01\x19\x34\x7e\x07\x0b\x12\xd1\x04\x69\xd0\x8f\x1d\x1c\x8d\x85\x3c\xba\xff\x56\x22\xd9\x29\x0a\x52\x0a\x86\x7b\x44\x81\xb9\x75\xf1\xd5\xb6\x05\xcf\x70\x0d\xc9\xb7\x24\x16\x55\xe1\x43\x70\xc8\x8f\xf8\x9e\xc4\xb9\x03\xdc\x5c\xac\x65\x0f\x54\xce\x9a\x6f\x50\x8f\x1f\x38\x01\x71\x57\x34\xa7\xf7\x34\xa6\x6c\xe3\x80\x21\x0d\xb7\x5b\xac\x97\x3f\x85\xf2\x25\x51\xe3\x51\xb7\x17\xb0\x93\x02\x1d\x93\x07\x9a\xe7\x84\x94\x21\x0b\x81\xba\x9b\x68\xf7\xd4\xe4\xb7\xbd\x9d\x03\x8a\xf3\x93\x90\xcb\x0c\x7e\x22\xe4\x85\x9a\xd4\x0e\x23\x54\xc8\x08\xe3\x03\x12\x07\x1e\x7f\x23\xd1\x7b\x75\x01\xb1\x90\x40\x42\x02\xcc\x1d\x4e\xd8\x1f\x77\x70\x72\xe0\x7a\x41\xef\x2e\xc2\xa5\x95\x71\xd1\xb0\x04\xd1\x92\x40\x26\x7c\xf4\x12\x4d\x8e\x33\x44\x87\x49\x18\x14\x25\xd5\x7b\x0a\x69\x51\x35\x42\x51\xd7\x0b\x46\xbc\xc0\x48\x17\x58\xed\xcb\x59\x1b\x84\x87\xa3\x30\x78\x7e\x0c\x37\xca\x46\x6a\xfd\x9c\x38\xb6\x01\x70\xfe\x8c\x38\xb6\x01\xf0\x1e\x2d\x86\xa3\x10\x3e\x20\x72\xf0\xfc\xb5\x01\xf0\x14\x79\x9d\x07\x77\x4e\x93\xcd\x0a\xc7\x47\x0f\xee\x46\x5c\xa0\x06\xa7\x27\xbd\xc1\x29\xea\xf9\xa7\x6f\x3c\xdb\x76\x4e\x91\xc7\x21\x67\xee\xec\xe8\xb4\x33\x73\x37\x42\xa8\xbc\x86\xe7\x68\xc9\x6b\xb8\xd8\x17\xf6\xce\x61\x0f\x9e\xff\x33\x85\xbd\x0d\x17\xf6\x3e\x0a\x31\xef\xb6\x10\xf3\x6e\x4a\x31\xef\x1e\xc0\xcf\x85\x98\x77\xa3\xc4\xbc\x1b\x25\xe6\xdd\x28\x31\x6f\x2d\xc4\xbc\x95\x21\xe6\x7d\x86\xab\x8a\x98\xc7\xfb\x75\x06\x3f\xa1\x76\x2f\x70\xce\x0b\x96\x77\x44\xd4\xa5\xd1\x76\x5b\x18\x75\xb8\xef\xae\xbf\x9c\x5d\x8c\xde\x9d\xde\xdc\x8e\x3e\x7f\xb9\xfe\xf5\x8e\xcb\x57\x42\x9f\x5c\x13\x1e\x9c\x15\x28\x79\xc1\x15\x7c\x87\x86\x61\x70\x51\x0a\x84\x74\xe2\x5c\xa1\x0b\xad\x83\x4c\x5c\x9a\x5f\xff\xec\x5c\x09\x79\x70\x2e\x5f\xa7\x4a\xa2\xf1\xc9\xb6\xcf\x10\xba\x72\xd7\x2b\x1c\x97\xca\x82\x4f\xa8\xed\xc1\x33\x95\x0c\x33\x34\x1d\x5e\x69\x99\x46\x6a\x42\xbe\x05\xdf\x50\x21\x94\x66\x83\x53\x3f\x1e\xf0\x35\xec\x67\xf0\x1a\x15\xb0\x1b\xf8\x2d\x84\xf3\x41\xd7\x43\x08\xdd\x72\x3e\x64\xa2\x31\xc1\x4e\x43\xff\x50\x16\x2f\x57\xcb\x2d\x32\xa5\xd9\xec\x35\x92\xc2\x62\x91\x0c\x6c\x7b\x3e\x18\xce\xdc\x4d\x67\xe6\xce\x38\xee\x4a\x4d\x81\x84\xfe\x08\x06\xce\x4a\x73\xbe\x02\x39\xbc\x16\xfc\x6d\xa5\xf7\xa5\x99\xd1\x13\x52\xe4\x9c\x17\xdb\xcb\xbd\x15\x72\xe3\xe1\x62\x87\x72\xe0\xd8\xb6\x9d\x77\x8a\xc5\x7d\x84\xb7\x43\x2f\x0c\x01\x8c\x6d\x3b\x1b\xe8\xd4\xb2\x44\x26\x72\xfd\xfd\x8c\x6b\x91\x01\x00\xbc\x45\xd7\x7c\x31\xeb\x0c\x39\x3e\x13\x67\x05\x25\x6a\xf8\x0e\x88\x75\xa2\x16\xbc\x62\xc5\x57\xee\x66\xa4\xa8\x9f\x3e\x5c\x18\x49\x5c\x02\xaf\x8c\x3e\xdf\xac\x46\x3e\xdf\xb6\x20\x88\xd1\x1c\x5e\xdb\xf6\x95\x6d\x3b\xbc\xba\x6a\xd3\x74\xb5\x7c\x80\xb4\x34\xbc\xfb\x5e\x13\x15\x75\x25\xec\x7b\x3f\xc1\xbd\x5b\x6d\xdf\xfb\x71\x17\x42\xaf\xf7\xcf\xb7\xf5\x32\x5e\xb7\xff\x7b\xdd\x96\xff\x21\x93\x80\xea\xf5\x7a\x97\xd1\xf1\x37\x22\x9e\x7a\xa4\x28\x91\xd7\xe6\x95\x7c\x9a\x70\x92\x2a\xfa\xdf\x9d\xa7\x11\x89\xc5\x7b\x44\x2a\x0d\x1a\x2b\x90\x72\x96\x85\x39\x3f\xe5\xf2\x6d\xd4\x6c\x7b\x30\x46\x89\x13\x71\x9e\xfa\x38\xa3\xd3\x59\x4c\xa7\x33\x26\xf5\x40\x37\xf4\x37\xe2\xbf\x80\x45\xaa\x64\x1f\xd7\x0b\x75\x39\x5a\xcf\x78\x8b\xc7\xdf\xa6\x42\x98\x14\x0c\xcb\x77\x5f\x1d\x86\x10\x9c\xdb\xe7\x94\xdb\xe9\xbf\x7a\x05\x5b\xfa\x1f\x60\xc1\x58\x48\x39\x9a\x15\x7c\xa4\x09\xc9\xfd\xb6\xa7\x93\x67\xe9\xc3\x5f\x49\x96\x4a\xab\x13\xbf\xdd\x53\xe9\x3f\x7f\x7a\x5b\x02\xfd\xfc\xe9\x7d\x9f\x7f\xe5\xb3\xf4\x41\xca\x4c\xd7\xc9\x07\xdd\x12\x5e\x26\xa2\x53\xca\xf2\xd3\x09\x23\xd9\x39\x19\xd3\x39\x8e\xfd\x3e\x9c\xe3\xf5\xd5\x72\x7e\xaf\xd4\x66\xfe\x6b\x98\xd3\xe9\x3b\x3a\x55\x7d\x35\x55\xa0\x1e\xdc\xd3\xb2\xf9\x3d\xb8\xa7\x9a\xf2\xad\x87\x19\x65\xc4\x12\xaa\xd1\x5b\x3a\xfe\xa6\xc6\x93\x7f\x8a\x66\xbd\x4b\xa5\x02\xcc\xf7\x5e\x42\xe1\x42\xe5\x3d\x5e\xf8\xaf\x44\xb3\xbf\xa4\x71\x4c\x32\xde\x89\xb5\xe8\xea\x67\x9c\xe5\x24\xf3\x25\x4d\x87\x11\x89\xe9\x9c\x32\x92\xf9\x16\xb4\xa0\x78\xce\xe1\xf7\x61\xa1\x7f\xe2\xc5\x26\x6a\x89\x88\x8f\xea\xfb\x0e\x3e\x02\xa5\x2a\x4a\x00\x6b\x69\x44\x7f\xa8\x09\xf4\x5e\xc1\x66\xce\x2c\x46\xd7\x10\xc9\xea\xdf\x57\xf8\xea\x1d\x97\xcf\x2d\x1c\xc7\x16\x9c\xd1\x88\x5c\xaf\x48\x16\xe3\xcd\x75\xf2\x29\x5d\xe6\xe4\x7a\x29\xe6\x21\x26\x53\x92\x44\xbe\x95\x26\x73\x9e\x9a\xae\x48\x66\x41\x2d\xcd\x88\xce\x7f\xc1\xc9\x94\x7c\xc6\x91\xdf\x83\x9b\xe2\xb7\xbc\x1c\xcd\xf0\xc3\xe9\x9a\xe4\xa7\x8c\xaf\x07\x0e\x2c\x1e\x9b\x7f\x10\x86\x05\x7e\xff\x27\xb8\x16\x63\xac\xbe\xbd\x9f\xe0\x46\x7c\xab\x19\xfc\x49\xce\x02\x4d\x88\x9a\xaa\xfb\x58\xaa\x41\x55\xaa\x04\x73\x5f\xc0\x69\x46\xa3\x4a\x42\x31\x7b\x32\xe5\x55\xaf\x00\x31\xd6\xb4\xd7\xff\x09\xaa\xff\x81\x05\x8d\x1d\xfb\x89\x6f\x58\x3f\x2e\xc4\x09\xf5\x57\x24\x43\x9c\xd0\x39\x1f\xe3\xbf\xa6\xe9\x3c\xd7\x0b\x58\xf4\xfa\x86\xc4\x64\xcc\x52\xb1\x20\x32\x33\x41\x75\xef\x65\xaf\x9a\xcc\xc7\xef\x46\xac\x47\xd5\xa8\xff\xfd\x53\xef\xa7\x77\xa7\x6f\xad\x7d\xb0\x77\x72\xee\x23\x2a\x2e\x83\xcc\x65\xdb\x08\xaa\xf1\x9d\xfe\xf8\xd6\x3b\x7b\x59\x03\x2a\xf7\x77\xa5\xf2\x69\x86\x37\x07\x21\xcb\xc1\xf5\xf6\x6b\x34\x32\xdd\x57\xd5\xec\x77\x69\x46\x1a\xea\x52\xf3\x78\x00\xf4\x60\x65\x6a\xc1\xbf\x16\x43\x7e\x99\x54\x07\x5d\x5e\xbf\x2b\xf5\xfe\x70\x59\x4c\x9e\x79\xdc\x83\x46\xb2\xa9\x54\x36\xd3\x0d\xad\x7f\x08\x17\xf1\x72\x4a\x93\xdc\x1f\x86\x10\xaf\x49\xee\x3f\xae\xfd\xc7\x05\x5d\x93\x38\xff\x4c\x32\xb1\xc0\xfc\x1f\x7b\xf5\xd5\xf6\xba\x67\x52\x8f\x6c\x2e\x34\xf1\xfe\xd8\x8d\x30\x23\xa7\x7b\x19\x50\x30\x9a\x3a\xdc\x2f\x95\x44\xb1\x8f\xde\x67\x34\x12\x74\x51\xec\x29\x2a\xe8\x2a\x4d\x22\xe1\xff\x80\x24\xc2\x5f\x85\x48\x93\xac\xc9\x4f\x05\x9e\x5b\xf1\xb1\x83\x1b\xff\x71\x7f\x4f\xd4\x7a\xf2\xa2\xb7\xdf\x96\x44\x10\xdb\x5a\x6b\x1a\x7b\x27\x21\x1b\xfa\xf7\x87\xda\x9e\xc8\x03\x96\xc8\xd8\xc1\x4d\xff\xff\xdf\xe6\xeb\x26\x97\x5d\xf1\x1a\x9a\xef\x1d\x68\xfe\x6e\x17\x94\x72\xda\xe2\x59\x39\x4d\x4b\x04\xfe\x9f\xe0\x93\x02\x85\xef\xf5\x61\x83\x44\xe2\x7b\xaf\x0f\x4a\x79\xde\xbf\xde\x58\xf2\x9f\x62\x89\xcc\x94\x51\x19\x3f\x4b\x61\x9a\x90\x0c\xb1\x8a\x69\xb2\x38\xc6\xd7\x2e\xcf\xab\x05\x5c\x9a\x24\x24\xfb\x70\xfb\xe9\x23\xb2\x2c\x28\x39\x72\x1b\xa9\x2b\x5a\xcc\xc8\x48\x34\xd6\xb6\x6b\x09\x6e\x44\xb8\x84\xb0\xd1\x06\x6c\x65\x4e\xd5\x1a\xda\xa9\xd6\xa6\x34\x62\x59\xe5\xa1\x0c\x93\xa4\x89\xa6\x49\x83\x8e\xba\xed\x05\xac\xd4\x0f\x12\xc4\x86\xbd\xd0\xcd\xd2\x87\xbd\x7a\x2b\x88\x9c\x7a\x2d\xd3\xc6\x5a\xb4\x7f\xa0\x61\x08\x49\xbd\xcb\x95\x22\x8e\xd0\x33\x91\x93\x5e\xd5\xbe\x59\xd9\x49\xd4\x0a\x4a\x03\x83\x91\xbe\x46\x92\x46\xd0\xb8\x7c\xdd\x43\x01\x93\xa7\xaa\xc7\x2c\x7d\xf0\x09\x1c\xa7\xf1\x72\x9e\xf8\xb4\xe3\xed\x0a\x41\x9c\x7d\xaf\x99\x6f\x79\x64\xe1\xeb\xb6\xff\x3f\x46\xbe\xda\xc8\x57\xd8\xe8\xcf\xf1\xe6\x9e\xdc\x66\x04\x33\x29\xa8\x2d\x4e\xf3\xb3\xb8\xea\xaf\x48\x8e\x12\xe6\x3b\x65\x7a\x91\x44\xbf\xa2\x44\xfc\x7c\x4f\xd8\xaf\x23\x51\x23\x2c\xf2\xee\xca\xbc\x3b\x99\xa7\xc6\x47\x28\x9e\xf1\x7d\xee\x94\x68\xba\xf2\xe7\x0d\xc3\x19\xfb\x95\x1f\x7e\xf6\x61\xee\x4c\x98\x3b\x10\xd0\x93\xbe\x6d\xa7\xfc\x9f\x62\x1b\x12\x37\xc6\x39\x5b\x8f\x6c\xbb\xeb\xb5\x8d\xaf\xcc\x65\xfb\x9d\x72\x08\x54\xed\xcd\xc8\x94\xa6\x89\x34\x8f\xa0\xc5\xb7\x94\xae\x90\x70\x8e\x22\xcc\xe0\x3e\xe3\x64\x6f\x20\xd4\x4d\x6b\x80\x5d\x9a\x7f\xc6\x49\x42\x93\x29\x6a\xf7\x02\x79\x07\x40\xdc\x35\xa7\xf0\x42\x9e\x50\x5b\xa2\xbc\xce\x7e\x97\x0a\xae\x60\x3c\x60\x80\xd6\xda\x02\x03\x07\xbb\x34\xa1\x8c\xe2\xf8\x23\x99\xb0\x79\x9a\xb3\x73\xcc\x08\x4a\xdc\x38\x9d\x7a\x3d\xf5\x2a\x0d\x8b\x0d\x24\x10\x1b\x39\x5e\x08\xba\x15\x38\xe0\x1f\xc0\x26\x9c\x58\x98\x48\x78\xe1\xae\xc6\xbd\xfe\x9a\x50\xc6\x19\xe0\x67\xce\x09\x91\x01\x77\xec\x10\x57\xc9\x42\x23\x65\xc0\xd4\xf5\x00\x6c\xbc\xe1\xc7\xc9\x45\x34\x25\xef\x14\x73\xb1\x40\x61\xda\xa5\x14\x6b\x47\xdf\x55\x4a\x5c\x54\x8b\x61\x54\x6f\x0e\x72\x47\x5e\x4c\xb3\xf4\x3c\x9d\xff\x7a\x96\xa6\x59\xe4\xc4\xbc\xe1\xdd\x5c\xd8\x1a\x54\xd3\xbd\x10\x74\x72\x18\xc9\x74\xcc\xb0\xca\x98\x49\xd3\xbf\x4a\xda\x12\x04\xd8\xbd\xe7\x82\x22\x89\xf8\x20\xe5\x68\x18\xc1\xb1\x54\xa9\x29\xf3\x4b\xa2\xad\xcb\xbf\xaf\xed\xc6\xa3\x0e\xe2\x72\x39\x6f\x54\x7d\x7e\x84\x54\xea\x90\xca\x5a\x26\x28\x13\x4f\x60\xc8\x5c\x8e\x36\x1c\xe9\xfe\xdc\xc9\x26\x4e\xf8\xb4\x51\xd0\x99\x0a\x9b\xcd\x6a\x8e\xc7\x73\xba\x53\x61\xc4\x29\xfb\xa5\xb2\x46\x90\x02\x61\xcb\x59\x49\x5d\x41\x0a\x82\x85\x78\xa2\xb4\x81\xeb\x70\x57\x74\x5d\x3d\xe9\x58\x48\xd3\x28\x97\xe6\xfd\x73\xbe\xf0\xdb\x1e\xc4\xa2\xb5\x7c\x24\x7e\x47\x9f\xe6\xe8\x71\x07\xef\x11\x71\x37\xe5\x56\xa0\x20\x20\x2e\x66\x2c\xa3\xf7\x4b\xc6\x31\x4c\x09\x6b\xd8\x0e\x14\x0c\x9c\xb9\x5e\xbe\xb7\xe9\x42\xb4\xac\x58\xee\xf7\x42\x1b\x38\x17\x24\x41\xe4\x54\x77\xc3\x7d\x65\x37\xdc\x6b\x0d\xe1\x1e\x3a\x0e\xb7\x8f\x85\xa7\x76\x45\x21\x38\x77\x97\x95\xdd\x50\x87\xdd\xdf\x12\x33\xbe\x25\xe4\x60\x49\xc6\x35\x07\x30\x73\x57\x45\x09\xdb\x36\xc7\xb5\x07\x76\x9c\xc2\xcc\xd3\x15\x69\x22\x30\xff\x18\xa5\x6d\xdc\xfd\xdd\x83\x74\xf7\xa8\xbe\xf7\x6b\x3b\x42\x5c\x39\x16\x6f\x90\x38\xa9\x34\x73\xc5\x18\x2b\xa5\x16\xed\x18\x54\x43\xb8\xaf\xab\x21\xca\xde\xd4\x0a\x7b\x21\xc7\xde\x45\x59\x77\x2f\x03\xd6\xf0\x01\xf8\x1d\x74\x94\x08\xf8\xbf\x08\x07\xac\x23\x34\x2c\x9c\xca\x24\xee\xc7\xeb\xf7\xa3\x9b\xb3\xd3\x8f\x17\x7c\x63\x34\xa6\x67\x20\xf4\x6b\xe5\x29\xcc\x38\xc5\x54\xd3\x06\xca\x8b\xde\x03\xfc\x49\x3d\x6f\xaa\xed\x91\xdc\xb8\x04\x56\xfb\x24\x0f\x85\x2b\x0e\xfe\xc1\x7f\x2f\x51\x7a\x34\xab\x2e\x39\x18\xa1\xda\xee\x1c\xd4\xbe\x87\xb9\xf6\x69\x83\x66\xf5\x15\xde\x59\x06\x91\x6d\x3b\xe3\xf2\x69\xda\x18\x0a\x9f\x57\x40\x51\xb6\x71\x77\x56\x5b\xd2\xbc\xc0\xe2\x24\x12\x37\xd0\xce\xb8\x8b\x16\xdd\x48\xfa\xe8\xd8\x07\xe5\x53\xf1\xfc\x4e\xce\xc1\x20\x36\x36\xc0\x81\xd9\x58\x1c\x98\x8d\x31\x08\xfd\x6a\xf1\x05\x1c\x87\x3b\x29\xad\x0b\x8d\xd3\xc8\x69\x7b\x42\x82\x25\x49\xc4\x37\xd1\x61\x49\x46\xf3\xf2\xbf\xa6\xe9\xbc\x61\xaf\xd1\x9c\x67\x48\x26\x0e\xb1\xfb\x5b\x9a\xce\x3f\xa5\x2b\x12\xa1\xb6\xa7\x37\xe9\x81\x92\x06\x68\x0f\xfe\x53\xc5\x23\xb9\x37\xbb\x25\x4e\x2e\xae\x35\xc1\xdc\x95\x30\x77\x9c\x97\xf1\xdf\xe7\x34\x53\x52\x3c\x3d\xc9\x8e\xfb\x83\xc4\xfd\xe5\xe2\xcb\xed\xe5\xd9\xe9\x47\x3f\x71\x3f\x5c\x7f\xb9\xfc\xeb\xf5\xd5\xed\xe9\x47\x28\x07\x93\xf7\xed\x0b\x19\xb3\x91\x53\x2b\x0d\xcd\xa6\x18\xdd\x83\x95\x25\x5f\x56\x0f\xb1\xbb\xc8\xc8\xea\xbc\x86\x83\xa7\xa9\x62\xea\xe7\x1d\x30\x92\x51\x05\xb1\x86\x40\x4f\xa3\x45\xb5\xa6\xf2\x79\x62\xdf\x21\xc2\x96\xaf\x49\x99\x58\xb5\x2a\xbb\xb8\x94\xe4\x85\x0a\x0b\x49\x2e\xbe\x37\x82\x89\x43\xcb\x59\x0d\xb6\x78\xed\x28\x5e\x39\x4a\xbd\xb2\xfb\xe9\xf4\xd7\xd1\x2f\xa7\x1f\xbf\x5e\x14\xee\xef\x72\x12\x4b\x85\xea\xa8\xe2\x09\x4f\x3f\x01\x2a\xb3\x87\x31\xa7\x0b\xc5\xde\x28\x0c\xf5\x8d\x35\x01\xfb\xa0\xb3\x07\xb0\x31\x16\x04\xec\x83\x40\x59\x9a\x2d\xf9\xa9\xa0\xeb\x89\xc7\xdd\xcb\x93\x1c\x08\xd3\x99\x25\x4c\x51\x0c\x76\xca\x92\xba\x41\xba\x69\xb8\x1e\xb0\x40\xa7\xcf\x69\x7b\x7e\x82\xa2\xa3\x48\x3c\xca\xac\x34\x3b\x0d\x81\xb6\x36\x19\xa3\xc7\x31\x4e\xc6\x24\xc6\xf7\x31\x3f\x2b\x41\x31\x70\x7e\x06\x55\x57\x7c\xa3\x2b\xfa\x05\x46\xd9\x78\x71\x14\x62\xee\x18\xe7\x63\x1c\x91\x8b\x15\xe1\xe8\xcd\xc1\xb7\xe0\x58\x5b\x22\x04\x89\x6d\x27\xfa\x00\x44\x60\x26\xfb\xb4\x57\xbf\xf0\xf7\xc0\xd4\x09\x01\x2e\x58\xee\x9b\x4d\xff\xde\x66\xed\xb7\x69\xac\x9b\xb3\xdd\x8a\xb7\x4b\x45\x43\x8a\xba\xcc\x7a\x34\xd1\x6a\x24\x2a\xea\xad\x5d\xb9\x29\x01\xac\x50\x28\x0f\x1e\xa6\x73\x0a\x87\xa2\x28\x82\x5d\xaa\x67\x8a\x82\x17\x1b\x27\x9e\x37\xc8\xeb\xd9\x76\x9d\x5a\x20\x93\x3a\xe8\x57\xd4\x05\x07\x39\x40\x0d\x00\xcc\x4b\xe9\xe0\x10\x4c\x90\x96\x30\x29\xa4\xee\xba\x2c\x45\x13\x27\xe7\x29\x1d\xea\x3e\x08\xfb\x2c\xdb\x26\x6e\x94\xf2\x0e\xff\x3a\x12\x0e\xcc\xc5\x4b\x10\x3e\x8d\x57\x64\xcd\xce\xef\x63\x31\xda\xa8\xdd\xdb\x69\x5f\xee\xd5\xc3\xdb\xc1\xbe\x69\x22\xa8\x99\x71\x53\xcf\x4c\x7a\xc6\x8f\x1c\x4d\x3d\xab\xc0\x04\x71\x09\x13\x43\xea\x6e\xca\x52\x34\x71\x66\x3c\xa5\x43\xdd\x19\x80\xf1\xc9\xac\xec\xd9\xdd\xc8\x89\xe1\xec\x70\xcf\xcc\x71\x54\x96\x75\x46\xfd\x48\x3e\x54\x54\x5c\xed\x36\x5d\x8e\x67\x7b\xeb\x88\x09\xa2\x49\x12\x76\xae\x94\x4c\x00\x32\x97\x71\x50\x52\x3a\x13\x16\x42\xa9\x44\x42\xe7\xe4\x5d\x9a\x9d\xa7\xcb\xfb\x98\xdc\xe2\xc5\x27\xf5\x40\x3e\xa8\xbd\xbf\x97\x3e\x73\xaa\x78\xc4\x43\xf4\x47\xfd\xda\x47\xe5\x0d\x93\x50\xfb\x4b\x79\x5c\xe0\x29\xf9\xd5\xcf\x5c\xf1\x17\xf2\x7f\xef\xd4\xd7\x1d\x8c\xf8\x59\xcc\xaf\x9d\xca\x14\x28\x10\xb9\x77\x7e\xed\x14\xa3\x8a\x82\x1d\xd8\x89\xc9\x2f\x64\x1f\x51\x31\xa2\xd0\x43\x85\xa1\x0f\x28\xb2\x3f\xd3\x64\x3c\x3b\x23\x09\x23\x99\xb0\x40\x84\x58\x36\xb5\x58\x22\x39\x7a\x5c\x73\x22\xb1\xf1\xdb\xbd\x5d\x11\x27\xc0\x78\x88\x28\x64\x85\x7d\x64\xaa\x7b\xee\xab\x23\x61\x8e\x2b\x9b\xde\xa1\x43\x2f\xd4\xbd\x90\x3d\xae\x00\xdc\x95\x00\x77\x40\x0d\x42\x01\x20\x3e\x25\x80\xf8\xa9\xc7\xa1\x02\x70\x57\x02\xdc\x81\x9d\x52\x3e\x78\x3f\xf5\x8e\xc5\xe2\xfb\x7c\x29\x3d\x94\x61\x86\x93\xbe\xd3\xd4\x6e\x59\x77\xb7\x6c\x11\x2c\x5b\xdf\x3d\x58\xa0\xdc\xca\x5c\x0e\x49\x01\x4c\xdf\xfc\xa9\x27\x9c\x66\xfe\xa9\xd7\x4d\x41\xf3\xa0\xa6\x27\xaf\x7f\x74\x5f\xc1\x8d\x9f\xbe\xe9\xf7\xdd\x57\xbb\x5d\x81\x5e\x8a\x76\x8f\x6b\xbf\xaa\x35\x81\x1b\xbf\x72\x76\x2c\x4f\x4b\xcd\x8b\xfd\xe9\x45\x6c\x78\x07\xa9\x78\x5c\xa8\xad\x62\xda\xb4\x8a\xc5\x0b\xae\x67\x57\xf1\x4e\xf2\x9b\x54\x78\x0e\xae\x2e\x47\xe1\x83\x6f\x7f\x30\x03\xe1\x9c\x32\xd1\x8e\xdb\x93\x61\x2f\xf4\x8d\x85\x94\x94\x0b\x29\x69\x5c\x48\x49\xb9\x90\x92\x72\x21\xed\x54\x04\x06\x85\x29\x55\xb3\x19\x57\xda\x9c\xaa\x99\x8f\x55\xdb\x85\xcb\x19\x73\x3e\xdc\x35\x3f\x08\xef\xa5\xf5\x42\x71\x26\xa9\xa4\x6e\x86\xbd\x3d\xc8\xcd\xd0\x0b\x83\x99\x5c\xb9\x68\x26\xab\x3e\xde\xd3\x20\x1d\x2d\xa1\x84\xb9\x53\x30\x77\x7b\x30\xb3\xa3\x48\x3a\x0c\x84\x0b\x65\x39\xac\xc7\x0b\x8c\x91\x07\x17\xc8\x2b\x76\x69\x62\xee\x52\xe9\x41\x30\x2f\xc6\x4d\xf7\x3f\x18\x23\xa7\x1c\xcd\xae\x1a\x1d\x70\x3c\x55\x7a\x98\xa2\x44\x31\x36\xc1\xc2\x28\x71\xa7\x4a\xdc\x81\xe3\xc9\xce\x38\x59\xfd\x04\x0b\x06\xe0\x7a\xfd\x57\x5c\x28\x81\x8b\xc3\xd9\x0b\x75\x06\x1b\xa1\xb6\x27\xf9\x72\x6d\xc7\xb8\x6b\xdb\x76\x6a\x07\xd1\x58\x0e\x67\x57\x0d\x6b\xc7\x69\x98\x9d\xae\x02\x02\xc7\x63\xf8\x3c\xbc\x67\xc2\x0b\x87\xf5\xbd\x86\xdd\xeb\x6e\x40\xb9\x63\xbc\x72\x8b\xac\x0c\x8d\x8f\x50\x3e\x7d\x8f\x62\x27\xd8\x6c\xb7\xce\xaa\x72\xa6\x93\x4d\xb8\x53\xed\xbc\xdb\x6b\xe7\xa6\xec\xd7\x1d\x38\x5e\xc0\xe7\xe1\x3d\x13\x5e\xf5\x4b\xda\xb5\x57\x0f\x8e\x70\xc4\x25\xc6\x92\x11\x92\x26\x41\x9f\x9f\xef\x4a\x11\xbf\x34\xda\xac\x68\x78\xbf\xa3\xa4\x14\x08\x09\x14\x9b\x88\x8f\x3d\x34\xc9\x5b\xee\x00\x49\xe0\x48\x12\x35\xd3\x37\x3a\x71\xc4\x85\x53\x8d\x64\x01\x53\x02\xd0\xc2\x9f\xde\x12\x1e\x87\x1f\xcf\x78\x05\xd1\x6d\xb5\x98\x32\xc9\x17\xc1\x00\xce\x31\x23\x80\xf7\x80\x13\x4f\x47\x1e\x79\xaa\xa5\x86\xbd\x30\x38\x48\x60\x6d\x9b\x76\x0f\x66\x9e\xbc\xea\x49\x49\x4c\x27\xfd\x6a\xdb\xe6\x19\xb6\x48\xee\x26\x6e\x3e\xce\x08\x49\x7e\x05\x27\xaf\xaa\x45\xee\x9a\x8b\xdc\x15\x45\xee\x78\x91\x01\x71\x33\x92\x13\x71\xc2\x77\x84\x02\xfc\x10\x43\xa0\xd0\xac\x18\x15\x15\x9b\xc9\x77\xa8\x44\xbe\xd3\xac\xb5\x3e\x27\xfa\xe6\xe6\x84\x0c\x48\x97\xf9\xec\x0d\x1e\xb0\x2e\xf6\x7b\x35\xd3\x7b\xfd\x12\x17\x25\xee\x84\x26\xd1\xe7\x34\x77\x88\xf6\x10\x02\x20\x45\x8f\x31\x99\x30\x1f\xbb\x6b\x69\x0f\xc4\x7f\x75\x0a\x00\x37\x9d\x4c\x72\xc2\xe4\xeb\x3f\x96\x2e\x7c\xec\x6e\xa0\x7c\x1c\xc4\x7f\xee\x01\x4a\x01\x78\x07\x33\xce\x52\x13\x49\xdf\x1c\xc6\xd9\xa9\xfc\xb8\x13\x6f\x17\x73\x94\x3a\x99\xbb\x86\x5c\xb4\x99\x30\x48\x5d\x51\x33\x80\xb1\x48\xdf\x40\xea\xb2\x74\x01\xa9\x2b\x2b\x2a\x2e\x90\x0a\x32\x96\xc3\x18\xec\x82\xac\x62\xc9\x82\x1e\x85\x3d\x4f\x94\x3e\x24\x7e\xc3\xea\x6d\x33\xf7\x7e\xc9\x58\x9a\x6c\xb7\xfd\x36\xd2\x1f\x86\x40\x45\x7f\x23\xe2\x2c\x73\x9e\x3e\xe8\x72\x90\xb9\x38\x66\x3f\x93\xcd\x76\xcb\xdc\x7c\x46\x27\xfc\xf7\xa0\xbc\x96\x51\x60\xbe\xa1\xdc\xa9\x1e\x80\x6a\x57\x6f\xc6\x31\x0a\x3c\xe6\x62\x6a\x4e\xbc\x5e\x6f\x50\x6a\x78\x34\x46\xf5\x6a\xbf\x3c\xbf\x08\x39\xb9\xd4\xee\x94\xf2\xb8\xd4\xe8\xf0\xef\xfd\x73\x1b\x90\xe7\x13\xe3\x92\xc8\xb6\x0b\x95\xaf\xaa\xca\x7c\x4f\xd2\x62\x4e\x5a\x51\x47\x0d\xf6\xda\x31\x28\xce\x8d\x4e\xaa\x3b\x7f\xf0\x30\xa8\x20\x6a\xf5\x4b\x65\x99\xca\x84\x89\x8a\x93\x21\x4e\xb2\x4e\x94\x8e\x45\xc0\x10\x68\x89\xc9\xe4\x19\x9c\x6e\x3f\x0d\xb5\x5c\x58\x90\x09\x0d\x97\xbe\xed\xde\x05\xc4\xc5\x51\x74\x9a\x44\xb7\x19\x1e\x7f\x7b\x1a\xf7\xf3\xa0\xbc\x82\x94\x13\xc8\x07\x1a\xc7\xe7\xb2\x12\x65\x72\xff\x69\x23\x22\x65\xb5\x7b\x50\x10\x46\xb1\x0e\xf6\x96\x5f\x03\x91\xdc\x49\x78\xde\x88\x06\xf0\x42\xce\xac\x42\x93\x24\x6a\x00\xd6\x34\xbb\x80\x8d\xd4\x31\xae\x69\x1b\x34\x1d\xf7\xf4\x15\xf0\x2a\xa5\x91\xd3\x7c\x1e\xf4\xf4\x8a\x7e\xfc\x2e\x0d\x05\xac\x28\x3d\xf8\x6c\xd4\xf5\x15\xba\x8d\x7c\x06\xf8\xee\xda\xdf\x67\xdb\x6d\x85\xa2\x0a\xf6\x94\x28\x83\x42\x3c\x66\x74\x45\xc4\xb6\x1f\x3d\xb5\xef\x9f\xda\xdc\x3b\xa8\xe6\xf6\x89\x15\xcc\xeb\xe4\x7d\xba\xe4\xeb\xf7\xb2\x66\x51\xf7\x47\x2b\x86\x7b\x04\x44\x35\xa5\x71\x31\x3c\xb3\x79\x75\x1f\x9e\x29\xa6\xf6\x9c\x2a\xf5\xfb\xac\x16\xaa\x36\x37\x2f\xfe\xc7\x76\x81\x1c\xb2\xef\xa9\xfb\x13\x93\xa6\x25\x68\x18\xca\x4f\xed\xcb\xa2\x48\x10\xa1\xe9\xb0\x3c\xa4\xea\xb4\xcd\x29\x17\x6a\x51\x19\xd8\x68\x2d\xac\xae\xcc\x94\x8d\x91\x52\xb5\x23\xc2\x51\x74\x8e\x19\xce\x09\x6b\xb2\x26\x92\xcd\x91\x67\x49\x02\xaa\x6d\x92\xa9\x6c\xdf\x1e\x47\x7b\x1a\x6b\x08\xd6\x53\xb8\x51\x18\x55\x4b\x8d\xd3\xf9\x62\xc9\x48\x53\x49\x69\xc8\xf3\xb8\xf6\x7b\x70\xe3\xf7\x76\x01\x73\x1f\x6a\x7e\x26\xe4\x25\x7d\x97\xb9\xeb\xee\x41\x07\x14\xda\x6e\xd9\xe2\x1c\x7a\x56\x77\x48\x26\xaf\xca\xf5\x92\x18\xcf\x70\xc6\x46\x11\x5d\xd5\xfc\x44\x88\x3f\xe7\x74\x05\x39\x8d\xc9\x56\xe4\x66\x81\xc7\xe4\x23\x97\x84\x8a\xe6\x16\x82\xd3\xe3\xda\x67\xee\x1a\x6e\x7c\xe6\x6e\xe0\x83\x4f\xe0\xcc\x67\xee\x6c\x57\x58\x01\xb9\xeb\x0e\x22\x90\xb9\x0f\x5d\x44\x20\xde\x55\x50\x7e\x11\x32\xd5\x21\x9c\x1d\x5e\x88\x3c\x81\xb9\x09\xe5\x6d\xba\x78\xbe\x91\xcc\x7d\x80\x33\x9f\x18\xa8\x36\xb2\x91\xb3\x06\x8c\x6f\xa5\x40\xf7\x34\xd2\x0e\x2f\x4b\x1a\x51\x6b\x9c\x62\xb0\xb9\xf0\xb1\xff\x5c\xb1\xb1\x79\xbc\xaf\xbb\x5d\x50\x77\x5e\x57\x65\x15\xca\xf3\x34\xd4\x4b\x56\xac\x38\xc4\xf6\xec\xd3\x4e\x8d\xdd\xb4\xb7\x35\xab\x5b\xcd\x08\x30\x77\x70\x91\x99\x36\xf0\x16\xd8\x6e\x9b\x8c\x00\x77\xb0\xe6\x82\xdd\x78\x6e\x2c\x89\x51\x9b\x53\x11\xf1\x64\x4a\xdb\x0b\x21\x84\x64\x9a\xc9\x76\x5b\xda\xeb\x02\x91\x31\xb4\x8c\xbe\xb4\xe6\xcb\x9c\xb5\x66\x78\x45\x5a\x38\x69\xfd\xb0\xfe\xa1\xb5\x50\x24\xcb\x12\x5a\x75\x81\x8c\x8e\xd3\xc4\xb6\x55\x6d\x55\xc2\xe6\x58\x62\x4b\xf1\x2e\x34\x67\xcb\x0d\x63\x01\xf0\x54\x83\x3e\xf1\x46\xe4\x84\xb5\x04\xb2\x16\x4e\xa2\x96\x2c\xd7\x7a\x98\x11\x11\x91\x91\xd1\x64\xda\x2a\x87\x59\x34\xc9\x6c\x6a\xe2\x4a\xc7\x47\x0e\x85\x82\xb2\x42\x2a\x86\x65\xbb\x75\xe4\x0f\x44\xf8\x0f\x00\xf6\x48\xa3\x24\x4d\x54\x4a\x00\x95\x19\xff\x55\x10\xc2\xfd\xc9\xd6\x24\x73\x7f\x8d\xdc\x71\xea\xba\x5f\x40\x11\xdd\x1a\x3c\x51\x1e\xaa\xf7\x9d\x03\x8a\xd3\x37\x7a\xdc\x29\xb7\x80\x1a\xf0\x23\x9d\x53\xc3\x5b\x60\x99\xac\xfc\x23\x35\x67\x89\xc6\xee\xe5\x18\x2b\xc0\xa9\x51\xe5\x5a\x7d\xfb\xf4\xb5\xba\xa6\x2b\xaa\x02\xa3\xfd\xee\x9c\x26\x7c\xdc\xd9\xb0\xa7\x78\x8f\x4e\xc7\x6b\x99\xee\x85\x8a\x8a\xf2\x9f\x5d\x0e\x57\x29\x2f\xd4\x2a\x48\x18\xc0\x0d\xbc\x63\xe2\x7b\xf0\xc0\x66\x3a\x60\x2b\x61\xdb\x8e\x89\x6e\x1d\xa7\xd3\xac\x62\x4c\xb3\xdf\xa8\xd2\xb4\x66\xbf\x23\x00\xd6\xb1\x95\x0d\x6c\xac\x67\xe0\x1d\x37\xa6\xfb\x1e\x08\x6a\x21\x16\xca\x45\xd2\xb0\xd3\x8d\x5c\xe1\x62\x40\x3f\x71\x45\x54\xb3\xc2\xa8\xb4\x5c\x10\xa6\x54\xbc\x37\x87\x21\x3c\x11\x00\x40\x0e\x45\x01\xda\x2d\xd0\xf2\xcc\xb2\x67\x1a\x72\xe0\x1d\xeb\x9f\x87\x27\xc2\x74\x5b\x6c\xdb\x0e\x75\x37\x7b\x63\x5e\x54\x58\x0e\x75\x51\xb3\x88\x33\x50\x19\x57\x03\x83\x6c\x40\x39\x86\x90\xe6\xef\xb8\x10\x4c\xcc\x6a\x8c\x28\x0d\x46\xe2\x76\x5b\xa3\x36\x78\x4d\xf3\x96\xd5\xc1\x1d\xab\x95\x4e\x5a\xa2\x17\x2d\xcc\x5a\x56\x87\xba\xd3\x8e\xd5\x1a\x0b\xa7\x34\xf7\xa4\x15\xd1\x7c\x11\xe3\x0d\x89\xb8\x88\x17\xa7\xd3\x96\x68\x59\x6b\x92\x66\x2d\x81\xb9\x35\xe4\x45\x54\xeb\x3b\x56\xab\x2b\x50\xa8\x0e\x76\xac\xd0\x52\x6a\xaf\x31\x8e\xc7\xbf\xaa\x48\x09\x87\xd4\x2c\x78\xe0\x14\x6b\xaf\x1c\x1b\xa2\x17\x1f\x38\x22\xe5\x9a\xf3\x1d\xd6\x2d\x72\x8e\x88\xdc\x29\xba\xa2\xbb\x43\x15\xf1\xe3\x99\x5e\x53\x5e\xb7\xa8\x8d\x18\x8b\xbe\x98\x09\x70\xc4\xca\xa9\xd0\x8c\xb8\x1c\x71\x30\xa0\xfe\x15\xbe\xd2\x1e\xf4\xbc\xae\x43\xba\x65\x61\x5e\xb6\x68\x52\x23\x5d\xd1\x04\xeb\x09\xff\x74\xcd\x9e\xc1\x2a\x2f\xe6\x0f\x72\xd7\x03\x04\x01\x1a\xbb\x4d\x09\xab\xe6\x6e\x33\x4c\x27\x4a\x08\x19\xe8\xa4\x22\xcb\xf2\xa4\xf4\x70\x23\x0f\xbd\xfb\x4e\x00\xac\xbb\x96\x3b\xf4\x98\x3d\x01\xb0\xee\x66\x6e\x5f\xfd\xac\x60\x8d\x3e\x26\x00\xce\x50\x2f\x98\x95\xc1\x99\x67\x9a\x8a\x2c\x11\x1d\xce\xc2\x60\xe9\xae\x51\x75\x39\x3a\x4b\xf9\xe0\xda\xa0\x54\x90\x68\xd7\xaa\x4b\xe1\xe8\x35\x60\xb6\xed\x2c\xcb\xf7\xb7\xa8\xba\xce\x9c\x1c\x4a\x38\x9d\x0f\x63\x00\xff\x97\x0e\x49\x58\xc4\x23\x04\xdb\xad\xa3\x31\x16\x2f\x7d\x81\x7e\x11\x1c\xd9\xb6\x13\x89\x27\xc2\xe9\x76\xeb\x48\x28\xfe\x09\x00\x47\xbe\x5f\x23\xaf\x64\x57\x1d\xa1\x08\x33\xfc\x41\xfa\xba\x1e\xd5\x63\x40\x38\x14\x0a\x9d\xde\x13\x0b\xb2\xc6\xeb\x15\xaf\x2b\xbd\x99\x0a\x92\x2d\xd9\x3f\x13\xa0\xfc\x44\x25\xfc\x4b\x98\x32\x81\xe9\x6a\x42\x2d\x4f\x95\x33\x64\xa1\xf0\x79\x21\x9e\x73\xc2\x0c\xb5\xb9\xe4\x79\x4f\xe2\xd1\xca\xa2\x49\x8b\xf0\xd3\x68\x36\x20\xee\xca\x57\x20\xa3\x15\x74\x68\x6d\x11\xb0\xf4\x33\xc9\xc6\x24\x61\xea\x16\x39\x01\x40\x78\xf3\xa7\x27\x9e\x7a\x9b\x21\xdb\xa6\xef\xf3\xd2\xdc\xa7\xf2\xfd\xa8\x8f\xe1\x0c\xe7\x23\x9e\xeb\x67\x3b\x50\x76\x66\xd3\xd4\x99\x2a\x2b\x62\x86\xe7\xc0\xb4\xc2\x8d\x58\xa8\xec\x01\x53\x57\xd6\x6b\xd8\x03\x12\xa4\x12\x87\xf9\x3f\xb1\xe3\xea\x82\x3c\x81\x0c\x80\x37\xa2\xe7\x48\x77\x7d\x63\x76\x5d\x7a\xee\x83\x87\x47\xe0\xc0\x4a\x68\x14\xf2\x8b\xb5\xa0\x7d\x36\x1a\x43\x65\x0a\x92\xc6\x78\x3d\x1a\x8f\x42\x0c\x90\x21\x0b\x03\x32\xc4\x62\xcb\x09\x3f\x0e\x58\x39\x4a\x09\x11\xde\x69\xb7\xe1\x0a\x9e\x44\xa3\xda\x01\xdf\x40\xa4\xfa\xbc\x5f\x3b\x28\xa9\x98\xb8\x03\xde\xa7\x75\xc5\x15\x57\x52\xa1\x73\x34\x34\xba\x96\xec\xf5\x25\x43\x09\x9f\xee\x14\x65\x65\xe3\x33\x37\xc1\x73\x12\xa4\x9c\x3b\x12\xdb\x76\x32\xa3\x3d\xd2\x55\x51\x63\x7f\xe4\x14\x65\x40\x78\x1b\xaa\x84\x21\xd0\x11\x8d\x95\x92\xa1\x32\x05\x11\x89\x09\x23\x2d\xa3\xc9\xd0\x4c\xd2\xc4\xb9\x9e\x28\xa9\xef\x47\xd1\x9b\x03\x99\xd7\xe2\x66\x21\xff\x3e\x9d\x4a\x1d\xe5\x7e\x86\x42\x27\x7c\x14\xfd\x71\x3d\x58\x43\xd4\x45\xc7\x3c\x57\xfc\x33\x94\x62\xc2\x74\x80\x4e\x9c\xf2\xbd\x17\x08\x9e\x0b\x75\x03\xcc\x98\xed\x8e\x35\x52\xd1\x98\xb9\xa4\x03\x1f\xf5\x97\xef\xf1\x2e\xbc\x7a\xaa\x0b\xf4\x90\xc7\x84\xe4\x5f\x1b\x1d\x27\x6b\x56\x05\xa6\xff\xb6\xaa\xc0\x7d\x67\x09\x2a\xbb\xcb\x45\x82\x5c\x3c\x25\x49\x1a\x1c\x25\x48\x2f\x8a\x79\x37\x23\x13\x92\x91\x64\x2c\x03\xc9\x3a\x89\x33\x03\xf0\x59\xcd\xa2\x3a\xb0\xea\xb5\x2d\xc4\x82\x51\x71\x20\x95\x24\xab\xfc\x9e\xc6\xe9\x3d\x17\x38\xf7\x25\x96\x5c\x05\x2c\x58\xe6\x24\xab\xe7\x8b\x34\x09\xb4\xdd\x6a\x54\xd2\xd9\x41\x59\x73\xcd\xd9\x82\xc2\x21\x22\xa4\x34\xb8\x70\xb0\x40\x89\x29\x23\x22\xc6\x93\x92\x92\xc0\x4e\x28\x33\x96\xee\xe9\xaf\x97\x37\xa3\x9b\xdb\x2f\x97\x57\xef\x47\x9f\x4e\x3f\x7f\xbe\xbc\x7a\x7f\x33\x42\x8f\x1b\xbf\x07\xef\xfc\x1e\xdc\x78\xfc\x07\xff\x67\xd3\xf7\x3d\x78\xd7\xf7\xbd\x1d\x5c\x0a\x41\xed\x36\x15\xde\xac\x46\xf5\x95\x62\xf1\x25\x9c\x4c\xcb\x90\xfa\x32\xf9\x40\x55\x75\xf5\x08\x2b\xd4\x22\x07\x0a\x70\x96\x21\xa3\x37\x7c\x4d\xbe\x25\xe9\x43\xd2\x12\xa7\x17\xbf\x65\x75\x18\x67\x19\x96\x7c\x8a\x5b\xaf\x5e\x79\x6e\xf4\xf8\x9f\x72\xf1\x4a\x44\xe7\x72\x0a\xf2\x56\x9a\xc4\x1b\x1d\x06\x22\x6f\xb1\x87\xb4\xb5\xe9\xe2\x35\xc9\x61\x8b\xf2\xae\x92\xa8\x35\xc9\xd2\x79\xab\xd7\xf5\x5c\x4b\xb0\x27\x70\xa8\x25\x41\x11\x60\x1d\x2e\x2b\x14\xdd\x98\x84\x03\x8a\x04\x19\xee\x46\xcc\xbb\xd2\x38\xa9\x45\xa9\xd7\x02\x2b\x7d\x83\x55\x16\xe7\xa3\x5c\x87\xfe\x30\x84\x6a\xb1\xfb\x8f\xbb\x5d\x6d\xc9\x1a\x39\xf5\xc5\x5b\xd7\xd2\x89\x05\xa9\xf2\xc5\x3a\x32\x8e\x0b\xaa\x2d\x87\x4e\xe7\x2a\x5b\x47\x45\xa4\xa1\x28\x9f\xa1\xea\xca\x71\x12\xf1\xa9\xb4\x24\xaa\x21\x43\x1a\xa2\x47\x1a\xad\x7d\x0c\x85\xc1\x84\x9f\x15\xbd\x49\x76\x66\x87\x87\x59\x38\xa8\x7e\x2a\x14\x5a\x81\xe5\x57\x73\x51\x31\x3e\xb4\x32\x40\x3b\x15\xd9\xa9\xec\x32\x9f\x72\xde\xe0\x20\xd5\x3a\x34\x13\x53\x2f\x74\x55\x69\x98\xbb\x1b\x0e\x57\x99\x07\xc3\xc2\xa4\xb1\xb8\x57\x29\xde\x97\xe5\xab\x90\x72\xae\x0c\xb0\xb5\x80\xda\x55\xd7\xd2\x94\xb0\x26\x6f\xb6\x6a\x09\xbd\x17\x34\xe8\x2b\xef\x8f\xc3\x0a\x5a\xaa\xee\x97\xc9\x80\xf8\x55\x40\x65\x33\x3a\x12\x57\x12\xb5\x5a\x0c\x54\x8d\x4f\xb3\xcb\x81\xdb\xdb\xcb\x83\x32\x73\xc8\x42\x15\x6e\xa3\x11\xbd\x6e\xc0\xc1\x1a\x14\x51\x3d\x54\x87\xca\xe6\xb5\x94\x9e\x37\xf6\x61\x8b\xbc\x83\xcd\x51\x67\xe5\x66\xdf\xea\x41\x13\x81\x21\x00\x23\x02\x29\xe2\x24\x06\x0f\xac\x8d\xe5\x5b\x9b\xbe\x55\x04\x29\xb0\x36\x9e\x85\x10\x11\xef\xb4\xad\x8d\x05\xa0\xb5\xe1\xdf\x80\xef\x26\x6d\xba\xc3\x0b\xc8\x34\xaf\x2c\xb7\xb6\xda\x88\x34\x51\x18\xab\x43\x02\x8c\xba\xde\x8e\x22\xb2\x93\x92\x6b\xd7\xe3\x75\x1b\xab\xc7\xaf\x6b\xc9\x26\x4e\x52\x48\xae\x7a\x69\xf1\xd4\xec\x30\x05\xce\x86\x4c\x44\x74\x10\x2d\x41\x64\xbb\x2d\xcf\xd6\xed\xc2\xf3\x79\x7a\x68\xc9\x95\x51\x43\x53\x8d\x30\x55\x7b\xad\x9c\x21\xf1\x1e\x8a\x86\x45\xd4\xf3\x86\x29\xe3\x87\x84\xdf\xb1\x5a\x0b\x4d\x40\x6d\x06\xe9\xc4\x21\x08\xed\xab\x29\x3e\x54\xd9\xa6\x03\xd4\x51\xa2\xce\x69\x0f\x0f\x53\x23\x38\x67\x53\xe2\x3e\xc2\x20\x6d\x75\x14\x04\xd4\x66\x57\x11\x28\x31\xc1\xc6\x81\x49\x53\x46\x15\x78\x40\x4f\x9e\xd6\x42\x35\x8c\x19\x35\xc7\x4c\x6b\x7f\x18\xc4\xd2\x06\xad\x36\x68\xc9\x72\x5e\x55\xd3\x57\x37\x5e\x85\xac\x55\x4b\xf2\xd5\xd8\x34\xde\x55\x04\x79\x31\x22\xb2\xfa\x7d\x1c\x52\x55\x74\x18\x43\x71\xbc\xd6\x7d\xaf\xa2\x90\x15\xec\x6f\xdc\x43\x48\x24\x7c\x13\x0e\x79\xb6\x39\x30\x10\x8a\xa9\xed\x4a\x7f\x10\xd4\x3c\x1f\x2c\x7f\xff\xf9\xe0\xa0\x10\xeb\x7b\x3d\xf8\xa4\xec\xea\x7b\x2f\x1b\xdd\x74\xc0\xea\x91\xe3\xf5\xff\x58\x0f\xec\x5b\x0f\x94\x3a\xac\x62\x7e\x53\x95\xba\xbf\x76\xaa\x24\xcf\xb6\xa9\xa0\x39\xbc\xec\x2e\xc0\xda\x51\xcb\x47\x9a\x10\x9c\x49\x8d\x59\xd6\x68\x3d\x28\x43\x3f\xa9\xb7\xf1\x2a\x86\xfe\x18\x51\xc7\xaa\x7a\xa1\x11\x6e\x4f\x65\xdc\xc0\x54\x0c\x89\x56\x27\x19\x8a\x24\x15\xe6\xe5\x71\xe5\xa7\xc3\x3c\xdc\x81\x82\x61\x50\xf3\xba\x01\x3c\xaa\xa7\x64\x93\x38\x4d\x33\x07\x1f\x8f\xe5\xe4\x4d\x51\xe2\xde\xd3\x04\x67\x9b\x1b\x82\x33\x61\xc5\x14\x41\x0f\x08\xbf\xea\x95\x74\x02\x23\xd8\xf5\x40\xc0\x39\xcb\xd4\xb6\x9d\x29\xea\x01\xc8\x3f\x26\xb6\xed\x4c\x50\x54\xf8\x55\xd5\xc6\xcd\xfa\xf4\x3c\xe9\x4e\xdf\xa0\xe5\xf1\xcb\x52\x81\xbc\x42\x93\x60\xf5\x06\x4d\x83\x95\xf6\xa5\xba\x41\xd1\x70\x15\xc2\xb5\x6c\x62\x9c\x4e\x9d\xcd\x31\x03\xc7\xc5\x17\x39\x66\xe0\x08\xc3\x39\x7a\x5c\xf9\x9b\x5d\xa0\x94\xa2\xa3\xc1\x08\x3d\x32\x3a\xfe\x26\x2e\x6f\xfc\x8d\x74\xe1\x33\x1a\xa7\x69\x16\xf9\xeb\x9d\x5f\x98\x8d\xae\xbb\x23\xd7\xc8\x03\x6f\xd0\xf8\x99\xa2\x73\xb9\xbb\x91\x65\xc1\x85\x7e\xcd\xbd\x5b\xb8\x19\x59\x91\x2c\x17\xcf\x11\xd4\x19\x62\x51\x31\xa9\xbd\x87\x0f\xf0\x94\x4f\x63\xe9\x94\xce\x02\xc1\xe9\xc0\xb9\x47\x43\x0f\xf6\xe1\x4b\xf8\x13\xf4\x5e\xc3\x17\x7d\xf8\xfa\xa5\x70\x16\xd6\x7f\xf5\x3a\x84\x0f\xc8\x7b\x0d\x7c\x0d\xf3\x0a\x7a\x3d\xd8\xef\xc1\x57\x3d\xe8\xf5\x7a\x22\xb7\x07\xb4\x1b\x56\x78\x01\x3f\xca\x41\x1a\x13\x1a\x8b\x69\x84\xb7\xe5\x73\x0c\xd2\x65\xe0\xf8\x23\xbc\x31\xa7\xba\x18\xc4\x5b\x63\x40\x1f\x00\x80\x9f\xcb\xb7\x85\x0f\xf0\x46\xea\x3c\xe5\x23\xc5\xfb\xd2\x97\xcc\x35\xfa\x7c\x74\x3f\x8c\x43\x78\x6e\xe2\x64\xc7\xd7\xe0\xe8\x1a\x5e\x18\x4d\x21\x32\x69\x59\x36\xe6\xa2\x7b\x0e\x8e\xaf\x61\xdb\xc1\xc7\xcb\x37\x63\x00\xc4\x3b\x47\x51\xcb\xf9\x9b\x0b\x8e\xfa\x08\x75\x3d\xa0\x03\x42\x2e\xc5\x62\x9e\xa1\xf3\x4e\x7e\x74\x0d\xcb\x45\x3d\xdb\x29\xef\xde\x67\x7c\x5c\xf7\x9d\x2d\x29\x7f\x0b\x12\xcb\xc2\xdc\x18\xc5\x7d\xff\x62\x98\x87\x72\x3e\x6d\xdb\x29\x3f\xd0\x99\x24\x1b\x19\x14\x69\x2b\xd8\xe3\xbb\xb2\x88\x23\xd9\x5a\x18\x3b\x5a\xee\xe5\x54\x45\x7d\x6d\xa6\x1d\x72\x9f\x8f\x0b\x47\xc4\x1a\x4f\xfa\x06\xf5\x06\x53\x91\x9c\x8a\xd8\x48\xfe\x30\x14\x3e\x9c\x0a\x87\x5a\x28\x57\xa1\x73\x1e\x3f\x5d\x7e\xfc\x78\x79\x73\x71\x76\x7d\x75\xfe\x91\x9f\xb7\x6f\xff\x72\x3d\xaa\xa6\x79\xf0\xdd\xe5\x2f\x17\xb5\xc4\x3e\xbc\xbd\xb8\xaa\xa5\xbd\x80\xef\x2e\xdf\xdd\xde\xd5\x52\x5f\xc2\x0f\x5f\xaf\xce\xbf\x5c\x9c\xd7\xd2\x5f\x49\xb4\xcd\x99\xaf\x61\xf1\xf3\x47\xd1\xa4\xe2\xf3\x27\x59\xac\xf8\xfe\x93\x68\x48\xd9\xd8\x1e\xbc\xfd\x70\xf9\xe5\xf6\xce\x48\xf2\xe0\xa7\xcb\xab\xaf\xb7\x17\xfc\x77\x5f\x75\x50\x7f\xbf\xd0\x9d\xd3\x09\x2f\x55\xc7\xf4\xf7\x2b\x8d\xaf\x4c\x7a\x0d\x3f\x5c\x7f\xfd\xc2\x7f\xc9\xb6\xe9\xaf\x9f\xe0\xcd\xe5\xaf\xc5\xd7\x9f\xe0\xf9\xe9\x25\x1f\x29\x39\xa6\xea\xc3\x83\x7f\xb9\xb8\xf8\x99\xff\xea\xc3\x4f\xd7\x57\xb7\x1f\xf8\xcf\x17\xf0\xcf\x5f\x4f\xbf\xdc\x5e\xf0\x72\xfd\x97\xf0\xed\xe5\xe9\xd5\xd5\xd7\xd3\x8f\x7e\xff\x15\xd4\xbf\x5e\xc3\xf3\x8b\xb3\xd3\x73\xfe\xf3\x47\x78\x76\x71\x75\x7b\x71\x75\x75\xc9\xbf\x7e\x82\x57\x5f\x3f\x8d\xde\x7f\x39\xbd\xfa\xfa\xf1\xf4\xcb\xe5\xed\xe5\xc5\x8d\xdf\xff\x13\x9f\xed\xf7\x19\x4e\x96\x31\xce\x28\xdb\xa0\x58\xbf\xd2\x39\x3f\xbd\xbd\x78\x77\x79\xf1\xf1\x7c\xc4\x27\xbb\xfc\xfa\xe4\x7b\xc6\xd7\xb9\xdf\x37\xbe\x3e\x7c\xf0\x5f\x98\xa0\x9f\xfc\x97\xc6\xe7\xcd\x8d\xff\xca\xcc\xbd\xf1\x5f\x8b\x26\x15\x49\x37\xfe\x8f\x3b\xb8\xe4\x4c\x65\x39\x8c\xdd\xca\x3c\x87\xe8\x91\xaf\xc9\x09\x25\x71\xe4\xcf\x5c\x13\x8b\xf0\xd0\xe8\x7b\x30\x5f\xe0\x31\x4d\xa6\x42\xeb\x33\x8c\xdd\xbd\xe5\xf9\x2c\x8a\x7e\x81\xa2\x2f\x51\xec\xaf\xe6\x67\x71\xbc\x2a\x70\xbc\x52\xcd\xa8\x2f\xfe\xe7\x7b\xd2\x2b\xbb\xd2\xd3\x0d\xd9\xdb\x2d\xcf\xb7\xa4\x44\xf3\x4a\xa1\x69\xdc\x41\xdf\xd1\x1e\xb3\x41\x3d\x63\x68\xfe\x18\xbe\x57\x3d\xb3\x65\x0a\xdf\xb3\xa5\x6f\xf6\xe7\x99\xbc\x28\x67\xfa\xbb\xcb\x1b\x93\xac\xcb\x57\xc8\xc4\xb3\x08\x8c\x19\x2e\x1a\x60\xd0\x95\xe7\x3b\x60\x8c\x26\x79\xa9\x10\x54\x09\xd1\xb3\x38\x5e\x94\x38\x5e\x68\x1c\x9a\xea\x1c\x1e\xff\x4f\xf5\x11\x7c\x5d\xd4\x6f\x50\xba\x67\xcb\x97\x23\xe8\xf5\x35\x82\x0a\x69\x7c\x16\xc3\x2b\xa3\xf5\x95\x6d\xf2\xbd\x3d\xe8\x19\x5d\x78\x55\x19\xc2\xef\xc6\x61\x0c\xa1\xf7\x93\x46\x22\x29\xf2\xc1\xb2\x1f\x3e\xd4\x47\xf0\x45\x59\x7f\x41\xde\x9f\x2d\x5e\x0e\xe0\x8f\x7d\x5d\xbc\xe4\x07\xcf\x16\x7f\x5d\xae\x60\xaf\xa8\x5e\x30\x8d\x83\x45\xcf\xeb\xed\xfe\xe9\xf5\x4b\xb3\xe1\xdf\x55\xda\x98\xf7\x1f\xfb\xc5\x90\x49\x26\xf5\x5c\xd9\x1f\xcb\x09\xeb\xbd\x2c\xca\x2a\xb6\x76\x78\xae\xea\xcd\xee\xbf\xee\xff\xe9\x27\x5e\xbb\xa2\x1a\x05\x33\x7c\x0e\xc5\x8b\xea\x98\x1d\xbd\x78\xfd\xca\xed\xbf\xea\xab\xd5\xab\xd9\xe8\x73\x58\xca\x91\x7f\xf9\xa2\xbf\x87\xe5\x19\x1c\x77\x8d\x73\x50\xc3\xa1\x58\xf7\xb3\x48\x8c\xfd\xef\xbd\x7a\xf5\xe3\x4f\xbd\x1f\x5f\xbc\xd6\xa4\xb4\xe4\xf9\xcf\xa3\x69\xc2\x43\x5e\xec\x94\x0d\x49\xa3\x85\x8f\x70\xb5\xd8\x7d\xf1\xa7\x80\x9c\x20\xfe\xaf\x61\x61\x80\x4b\xa9\xdd\xeb\x41\x02\x20\x45\x5e\x40\x4f\xd0\x9f\xcc\x8b\x6b\x7c\x44\x03\xe5\x3e\x31\x29\x82\xda\xb3\x9d\x08\x7d\xba\x1f\x30\xc3\x88\x8e\xd1\x70\x00\x95\xe1\xf5\x63\x77\x4f\xb0\x91\x91\xf6\xe9\xc4\xc1\xc7\x0b\xe5\x74\xe3\x0d\x4a\x0a\x65\xa1\xaa\xb6\xeb\xed\xe0\xa2\xd9\x81\x1e\x5a\x0e\x71\xe8\xaa\xc1\xa9\x3c\x32\x93\xe1\x69\xbc\x23\x79\xa0\xa1\x60\x07\xa7\x0d\x07\x68\x2d\x72\x1f\x38\x17\xc0\xbc\x3c\x89\x7d\xbd\x3d\xb3\x00\x8c\x50\x3e\x48\xdc\x73\xcc\xc8\xe9\x78\x4c\xf2\x3c\xcd\x78\x86\x5f\x4b\xfa\x98\x8e\x71\x0c\xc7\xb2\x75\xc5\xdc\xc2\x85\x6a\x2e\x23\x0b\x38\xad\x34\x9d\x1f\x96\xd5\x43\x4a\x87\x01\x38\xe2\xc2\xd5\x68\x58\x59\x0b\x21\x8a\xe4\x23\xd1\x38\xbe\x23\x38\x73\x26\x00\x56\x21\x3e\x29\x88\x4f\x69\xc2\x66\xfb\xd9\xe7\x2a\x5b\xd4\xb1\x97\xfb\xe1\x83\xca\xfe\x90\x2e\xb3\xbc\x01\x79\x81\x9d\x26\x4b\x46\x1a\x20\x6e\x6e\x14\xc4\x0d\x19\xa7\x49\xd4\x84\xe3\xa6\xc0\x11\xc7\x34\x2f\xc0\x54\x74\xe5\xd1\x70\x1c\xfe\xe7\x22\xc0\x08\x69\x72\x25\x82\x64\xa8\x46\x6f\x9c\x09\xe0\x08\xc7\x61\x17\xad\x8a\x7b\xa5\x0d\x1a\x77\xbc\x60\x73\x32\x73\xab\x12\x6a\xb0\xe9\x74\xc0\x68\xb8\x09\xd1\x46\x04\x0e\x36\x86\x61\xe0\xf9\xd2\xcd\xe2\x9a\xef\x91\x39\x8a\xdc\x39\xfe\x46\xf8\xa8\xb8\x78\xb1\x88\x37\x42\x7f\x04\x47\x00\xde\xa3\x79\xf9\xa6\x55\xbc\xb2\x3e\x41\x9a\xf7\x88\xbd\x74\x7f\xc2\x6c\xdb\xb9\xef\xa0\x29\x9c\x97\xd3\x77\x0f\x40\x70\x7f\x82\x48\x00\xd6\xc5\x09\xf4\x5e\x19\xc8\xa4\xfa\xb8\x38\x57\xcb\x6f\x07\xe0\x7e\x79\xa9\xc3\x2f\x6b\xe0\x9d\xee\xa0\xc5\x77\xb7\x55\xd7\xef\xe0\x37\x48\xb1\x9c\xed\xd6\x98\xdc\x39\xf8\xcf\x05\x42\x3d\x60\xdb\xdf\xd7\xc2\xdf\x5b\xbf\xde\x87\x6b\x7e\x68\x51\x2b\x4e\xe8\x51\xa7\x4f\x58\x63\xfc\xf8\x3b\xe2\x3d\x68\xef\x24\xc6\x8b\xc2\x8f\x34\x67\x24\x21\x99\xc3\x37\x76\xdb\x03\xbb\x66\x6b\x07\xc4\xb6\xdb\x07\xf1\x20\xde\x15\x8e\x4d\x44\x6c\xa8\x74\xf1\x39\x4b\x17\x78\x2a\xac\x6a\x6c\x7b\x2f\x49\xb8\x3d\xa9\x7a\x42\xe1\x50\x0d\xbe\x51\xe4\xa3\xb9\xb7\xcb\xfb\xfb\x98\xa0\x76\xaf\x48\x91\xbf\x65\x23\xa4\xf7\xc0\xb6\x07\xdb\x5e\xd9\xc8\xac\xea\x16\x34\x81\x59\xa0\xb4\x43\x04\x50\x84\x61\x82\x30\xcc\xcc\x98\x66\xa9\xa9\x4b\x79\x7d\xc4\x38\xa9\x7a\x7d\xc4\xba\x29\x8c\x11\x3e\x72\xbc\x2e\x01\x70\xa6\x7e\x1d\xe5\x00\x2e\xf5\x6f\xc7\xeb\xe6\x00\x04\xf9\x03\x65\xe3\x99\x93\x82\xc7\x31\xce\x49\xcb\xf3\x29\x9a\xa9\x5a\xe2\x40\xc6\xdf\x16\x19\x7d\x9f\xa2\x58\x65\x2c\xcd\x8c\x17\x2a\x63\x26\xda\x65\x64\xbc\xf4\x29\x5a\xc2\x04\xc5\xf5\x8c\x57\xbe\xec\x09\xcf\x98\x99\x19\xaf\x7d\xf1\xa7\xa7\xf2\x97\xbc\x0d\x3b\xcd\x72\xa8\xd9\xd1\xfe\xab\x57\x47\xb4\xe3\xbe\x02\x30\xa9\x27\x27\x22\x39\xab\x27\x67\x22\x59\x78\xd7\xb7\x3a\x54\xd8\x54\x25\xd2\xb2\xaa\x63\x01\xab\x9c\x80\xd4\x8c\xde\x29\x22\x0d\x2d\x93\x88\x26\xd3\xb3\x98\x92\x44\x3c\x88\x71\x00\xc4\x48\xae\x1d\x48\x91\x7e\x5f\xea\xea\x1f\x17\x32\x30\x72\x50\xbc\x95\x21\xe2\x65\x74\xc7\xc1\xf2\x09\xb5\xb4\x59\xda\x6e\xa9\x9b\x8f\xb3\x34\x16\x7e\x15\xa5\x8f\x12\x96\x2e\x34\xd4\x5d\x1d\xea\x36\x5d\x00\x23\x70\x49\x5e\xae\xe5\x36\x93\x78\xb7\x5b\xf5\xe3\xa4\x37\xe8\xf9\xea\x77\x59\x22\xde\x2b\x71\xa7\x4b\xdc\x19\x25\xee\xca\x12\x33\x79\xb9\xa5\xaf\xcf\x1c\x06\xba\xc4\x5d\xac\x4b\x80\x65\x05\x20\x56\x00\x9b\x12\x20\x32\xea\x6c\xb3\xc2\x5e\x9c\x19\x9b\x72\x6c\xe2\x10\x40\xfa\x66\x8f\x09\xc3\x54\xf3\x7b\x6d\xf8\xe9\x15\x5f\x06\x68\x25\x6b\x63\xdb\x6d\x47\xd5\xe5\xae\xc1\x76\xdb\x26\xb6\xad\xbf\x37\x80\xff\x57\xb6\x60\x61\xbe\xab\x2f\x1c\x6d\x14\xef\xd3\x3d\x48\xb6\xdb\x3e\x80\x7d\xaf\xfa\x76\x1d\xdf\xf3\x11\x39\x71\x7b\x3d\xcf\xb6\x45\xb5\x03\xe6\xb2\xf4\x62\xbd\x48\x13\x92\x30\x8a\x63\x07\x77\x3d\xe0\xf3\xc4\xcf\x19\x19\xd3\x5c\x46\xf9\x2b\x2b\x9e\x9a\xf4\xe8\xc4\xeb\x0d\xac\x9e\xd5\x61\xbe\x65\x75\x58\x09\x34\x29\x45\x2b\x29\x56\xf1\x52\x1d\xcb\xb7\x3a\x53\x87\x48\x66\xc4\xc7\xa1\x83\x64\x12\x06\x90\x02\x7d\x17\x6b\x59\x1d\x1a\xf0\x2c\xd7\xea\x38\x56\xaf\xd7\xb3\x3a\x19\x70\xf3\xe5\xbd\xb4\xa2\x71\x32\xad\x6f\xde\x15\x61\xe8\x8a\x7a\x47\xe6\xa8\x90\x01\x63\xfe\x7f\x40\x5a\x11\x4d\x12\x84\x2b\x62\x88\xb8\x09\xc1\xa5\xdc\x41\x01\x4c\x51\x41\xf6\xf9\x67\x2e\x3f\x25\xef\xa1\x40\x38\xb3\x31\x04\x09\x2a\x08\x95\x29\x38\x50\x41\xae\xf6\x04\x05\xca\xa5\x2f\xcb\xea\x24\x70\x8c\xa6\x4e\xd6\xf1\x00\x5c\xa0\xa9\x8c\xd9\xca\xc5\xea\xa3\xbc\xf3\xba\x77\x14\x77\x66\x1d\x3e\x3b\x47\x4b\xb8\x42\x51\xc7\x3a\xb6\x3a\x63\xf1\xef\x42\xcf\xe3\x88\x8b\x15\x1d\x64\xb5\xac\xce\xc4\x51\x37\x27\x00\xc0\x55\x39\x0a\xab\xbd\xb5\x51\xc8\xca\x0d\x32\x26\x3b\xc2\xe0\x18\x97\xa5\x37\xcd\x31\xec\xdb\xbd\x20\x0b\x8a\x0b\x6e\x98\x23\xc2\x47\x02\xce\x10\x85\x4b\x94\x88\x7b\x73\xce\x15\xd4\xda\x9e\x19\x2b\x7b\x26\x83\x5b\xb6\x11\x5a\x1a\xa9\x4b\x11\xed\xbc\x07\x97\x28\x2f\x2f\x4e\xe0\xec\xcd\x12\x68\xa9\x39\x50\xa5\x62\xa3\x54\xbc\xdd\x3a\x31\x52\xb7\x01\x51\x45\x96\x2f\x57\xa5\xb0\x78\x66\x45\xc4\x74\x2e\x7d\x0b\x23\xa3\xcb\x84\x39\xce\xac\xb3\x04\xc7\x7d\xe8\xf5\x00\x9c\xa2\x7c\xb8\x10\x57\x4b\x53\xe3\x4a\x5e\x38\xda\x99\xbe\x49\x85\x60\x1f\xbf\xe9\x09\xbb\xf3\x45\xd7\x83\x63\x27\x02\xb6\x9d\x0f\xa3\xf0\x24\x05\x25\x34\x43\x29\x24\x28\x87\x18\xc5\x50\x72\x21\x0e\xcc\x07\x0c\x8e\xd1\x02\x4d\x51\xa4\x82\x92\xed\xf4\xb5\x54\xdb\x99\x96\x18\xba\xc2\x03\x4e\x7c\xa2\xea\xe9\x98\xf5\xbc\x39\x5c\x0f\x07\x94\xbc\x66\xbf\x1e\x83\xe2\xae\x0b\xbe\x00\x31\xaf\x47\xb8\x3f\x64\x6e\x2e\x6f\xb4\xac\xae\x05\xb6\xdb\xae\xd7\x36\x92\x6e\xf7\x93\xfe\x6a\x01\x60\xdb\x0e\x46\x73\x87\x81\xf2\x01\x0d\x2e\x1a\x27\x50\x57\xcb\x74\x2d\x15\x02\x96\x33\xa4\x8c\x2c\x62\x3c\x26\x3c\x15\x5a\xc7\x16\xb4\xa6\x16\x08\xa4\xa7\x72\x03\x3e\x00\x04\x91\x3a\x2c\x08\x78\xb5\x44\x39\x92\xf8\x89\x37\x5e\xf9\x8b\x12\x98\x25\x59\x70\x7a\xf0\x25\x10\xbb\xa4\x48\x79\x09\xfb\xb5\x94\xd7\xb0\xcf\x59\x20\x47\x06\x7c\xd9\x17\xbd\x1b\xb0\xd1\xa7\xbd\xa7\x40\x67\xe9\x32\x8e\x92\x1f\x58\x4b\xac\xa1\x96\xd5\x61\x1d\xab\x85\xf3\x16\x6e\xf1\x93\x91\x05\xa0\xb1\x77\xe6\x66\xa0\xe4\x92\xea\x94\xb2\x65\x09\x7a\x5f\x18\x61\x94\x5e\xdc\x8b\x8d\x42\xaa\xb7\xbf\x04\xd4\xaf\x7b\x1d\x71\xcf\xcb\x86\x38\x14\x51\x65\x8d\x78\x00\x45\x05\x0f\xff\x84\x0a\xd4\x35\x23\xaf\x62\x20\x2a\xe3\x09\xfe\xa9\xb8\x60\x06\x83\xa2\x7a\x65\x7e\x07\xfc\x76\xc3\x75\x71\x2a\x2e\xae\x4b\xe3\xa0\xab\x34\x22\x03\xd6\xa2\x49\xce\xb8\x70\xa9\x52\xfc\x3d\x38\x66\xdb\xfb\x96\x8b\x6e\x92\x46\xe4\x76\xb3\x20\xb6\xbd\x6f\x55\x29\x32\xaf\xf0\x9c\xec\x64\x03\x6d\x7b\x0f\xa9\xe8\x89\xb3\x5f\xd7\x10\x87\xc5\xd8\xf0\x8f\xed\x56\x0e\xee\xe3\x0e\xc0\x07\xf1\x13\x0a\x94\xc0\x7f\x72\xcc\x4f\x0d\x31\x4c\x61\x56\x50\x46\x9d\x64\xbb\xb5\x74\x09\x69\x07\x65\x7e\x16\x9d\xa1\x8c\xcc\x41\xd9\xa8\xc6\xd1\xd0\x97\x94\x2f\x84\x00\xa1\xc7\xa6\x6c\xcf\xf5\x13\xf3\xc0\x2a\xb8\x9b\x5a\xa0\x56\x6d\x89\xee\x9c\xa3\x2b\x6d\x22\x45\x5c\xe8\xbd\xd7\xc7\xa7\x62\xb8\xc0\x40\x05\xc9\x3d\x97\x9f\x45\x08\xe1\xaa\x59\x42\x89\xfb\xa2\xb4\x2d\x29\x84\x53\x19\x68\x53\x89\xa6\x8e\xa5\x23\xbb\x95\x85\x3e\x0a\x53\xd0\x6c\xa3\xc6\x5c\x1d\x8d\x22\xb2\xa2\x63\x22\x5c\x48\x7f\xe1\x27\x20\x11\xc6\xfe\x81\xdc\x7f\xa3\xec\x2d\x1e\x7f\xa3\xc9\xf4\x86\xa5\x99\x01\xc0\x45\xca\x79\xfa\xdb\x13\x99\xf9\xe1\xbc\xf4\x70\xd6\xfd\x81\x1c\x2f\x30\x1f\x3a\xcb\xf7\xab\xe4\x18\xfb\xde\x6e\x8c\xf9\xb1\xa6\x24\x22\x9e\x41\xcb\x6f\x4b\xa1\x8a\xf0\x45\xd4\x83\x18\x61\x5e\x8d\x0a\x3d\x2a\xad\xae\x64\xac\x4d\x71\x62\x13\xaf\x15\x08\xf9\x66\x78\x6e\x10\x7e\x3f\x46\x88\xe8\x87\xec\x19\xde\x94\xce\x22\x74\xb0\xd2\x11\xa2\x32\x85\x24\xd1\xa8\x14\x2e\x8b\x8a\x48\x07\x2b\x03\xcf\x84\xac\xd9\x65\xb4\x1e\x21\xd2\xf5\xca\x14\x93\xcc\xdd\x94\x8d\x36\xe8\x62\xd9\x95\x12\xf2\x73\x4d\x66\x84\x19\xea\xc1\xb4\xd1\x43\x97\xb0\x01\x76\x32\x00\x3d\x4e\xc9\xcc\xb1\xa4\x2a\xae\x69\xce\x5b\x14\xb4\x8d\x73\x04\x78\xcc\xde\xf0\x51\x23\x4c\xaa\x08\xd4\x51\xa8\x66\x71\x4c\x9a\x3d\x82\xcd\x10\xe9\xa6\x41\x82\xb2\xea\x09\x6d\x76\xac\x1c\x2d\x2d\x51\xd6\x4d\x82\xac\xb3\x7c\x93\x6f\xb7\xd9\x1b\x94\x0f\x1c\xe6\xe4\x00\x52\x07\x00\x5f\xf8\x2d\x5b\xda\xb6\x68\x71\xec\x00\xb0\x03\x3b\x73\x88\xce\x4c\x71\x4d\xda\x00\x31\xe3\x91\x8e\x27\x1c\x35\x1a\x4f\x73\xf0\x90\x0d\x69\x18\xea\x70\x1b\x55\x2b\xa3\x62\x77\x4a\xab\x21\xe1\x3e\x78\xcf\xc8\xce\xb6\xdb\x98\x0d\x49\xd8\x10\xc3\xb8\x50\x4d\x65\x92\x2f\x08\xb7\x71\x35\x04\x19\xe0\xc9\x8d\xe6\xf5\x08\x65\xdb\x2d\x1e\x66\xa1\x6d\xb7\xb5\x09\x99\xe0\x41\x89\x43\x86\x99\x11\x35\xb9\x70\x5c\x6b\x49\x20\x59\xd2\xc2\x6b\xf9\x53\x0b\x9a\xbc\x50\xd1\xa4\x9c\x37\x29\xe5\x75\xa7\xf5\x26\xe5\x9c\x52\x3a\xe9\x30\x6f\xaa\x82\x77\x36\x6b\xea\x6c\x31\x05\x9f\xaa\x84\xad\x17\x90\x72\xc8\x89\xf1\x58\xcb\x1d\xcf\x70\x76\xca\xd4\x19\xc6\xfa\x1b\x27\xc6\x08\xeb\x15\x48\x3a\xde\x49\x49\x93\xad\xbf\x71\x62\x6a\x94\xe9\x78\x60\x60\xfd\x2d\xfb\x5b\x62\xf9\x58\x16\x4f\x9e\x2c\x9e\x35\x15\x4f\xfe\x96\x59\x3e\xde\x19\xd6\xcb\x65\x2f\xae\x0a\x8e\xaf\xf9\xf6\x76\xab\x7e\x69\x0b\xff\xb6\x67\x06\x24\x0a\xb0\x6d\x63\x4e\x7d\x02\x80\x11\x3f\xc2\x67\x24\x61\x9c\x1b\x17\x82\x11\x47\x52\x56\xf0\xae\x72\x74\x26\x27\xbd\x81\x77\x5c\x9c\x2f\x18\xec\x12\xe0\x1b\x9f\xc4\x58\xe3\xdf\x4a\xc6\x98\x30\x97\xac\xc9\x58\x19\xc4\xb6\x8b\xfd\x5b\xb8\x29\xc5\xa5\xb4\x2e\x9e\xa2\x73\x51\x9d\x9a\x69\x7d\x99\x96\x98\x69\x2f\x44\x5a\xc1\x57\x86\x2f\xc3\xc1\x63\xe6\x63\x38\xf5\x29\xbc\xf7\x13\x88\x7d\x01\xfc\x2e\x4e\x31\x07\x7f\x19\x82\x9d\x6f\x02\x18\x74\xf6\x4b\xd9\xd6\x6f\xaa\x95\x45\x23\xb5\x15\xea\x21\x16\x15\xd1\x15\x17\x59\xdd\x9c\x6d\x62\x22\xe8\xbf\x11\xf9\x13\x31\xa8\x73\xca\x60\xe5\xc8\x9a\xd1\x28\x22\x89\x05\x0b\x9c\xf7\x69\xb4\x71\xf1\x62\x41\x92\xe8\x6c\x46\xe3\xc8\x29\xdc\xb9\x29\x06\x27\x82\x80\xcb\x57\xfb\x22\xb4\xb3\x83\xc5\xb9\x0b\xd4\x2b\x0c\xea\x0c\x55\x60\x96\x6a\x47\x8d\x19\x7e\x73\x4c\x2a\x7c\xa9\x39\xaa\xc3\xb6\xdb\xe7\x18\x31\x90\x2d\x11\x7e\xc8\x1c\xab\x1f\x59\xa0\xce\xc0\xda\xde\xae\xd8\x8e\x45\x1d\x1f\xaa\x77\x20\xc6\xc4\xa8\x35\xa1\x1e\xe8\x17\xe7\x0b\x61\x65\x7e\xfc\x7f\x5b\x47\xff\x71\xec\x32\x92\x33\xc3\xd4\x58\xdb\xd8\xf1\xdc\x04\x27\x1c\x84\xd6\x61\xae\xf0\x95\xa2\x94\xd6\xd7\x04\xdf\xc7\xa4\xc5\x52\x25\xcd\xff\x20\xc4\xf9\x1f\xa4\x3c\xaf\xe4\xab\x3d\xe6\x8c\xcd\x48\x4b\x4a\x6f\xd1\xe2\x4c\x85\x26\xfc\x3c\xe0\x78\x1d\x87\xb3\x63\x00\x3a\x56\xcb\xf9\x41\x78\x0d\xf8\x01\xb4\xd2\x49\xeb\xec\xe6\x17\xd7\x02\xb0\x7a\xa0\x48\xe4\x93\xe6\x72\x38\xee\x2a\x4a\x0b\xc7\x52\x11\x58\x2d\xd3\x60\xbc\x20\x12\x0b\x23\x60\x02\x4c\x38\xf8\x7e\x58\x57\x71\x65\x45\x1c\xab\x1a\xdb\x55\xbc\x61\x23\xa5\x61\xde\x5b\x71\x3f\x44\x6a\x96\x7a\x74\xe2\x50\xe9\xb0\xc2\xb6\x1d\x43\x65\xf4\xa6\xa2\x48\xc8\xc0\x76\x6b\xea\x93\xcc\xbc\x6e\x02\xc0\x9e\x52\x29\x01\xbe\x65\x75\x56\x0e\x83\x09\x80\xe9\x76\x9b\x2b\x07\xe4\x70\xc6\xa5\x48\x61\x8c\x93\xda\xb6\x13\x23\x8f\xbc\x80\x33\x94\x31\x00\x73\xdb\x76\x52\xdb\xd6\x83\xf7\x80\xb9\x10\x7d\xa3\xdc\xbc\xdc\xa7\x6c\xd6\x2a\x7a\x22\xbc\xc1\x94\xdd\x70\x5b\x9f\xe9\xf8\x5b\x2b\x4d\x48\x5b\x3c\x7e\xf3\x7a\xfd\x97\x70\x86\x52\x06\x97\x28\x67\xa5\x6b\x8d\x08\x19\x7d\x80\x63\xf4\xce\x89\xe1\x4c\x6b\x97\xe0\x14\xcd\xca\x48\xf9\xd3\x37\xa8\x17\x4c\xbb\x5d\x38\x3e\x46\x31\xe7\x40\xd1\x1b\x34\x06\x8f\x14\xad\x1c\x76\x3c\x86\x09\xe8\xcc\x86\xd3\x50\x6a\x85\x77\x74\xe2\xa8\xfe\x4d\xd0\x8d\x54\x5a\xd5\xc7\x03\x00\x37\x5f\xc4\x94\x39\x16\xe1\x27\xdf\x3e\x42\x68\x52\x90\xfe\xc9\xd0\x0b\xdf\xa0\x17\xf2\xc7\x09\xea\xbf\x14\xe1\x67\xf8\xc7\x7f\xbe\x78\xd3\x1b\xac\x44\x38\xa4\xe3\x77\x7c\xb0\x65\x22\x80\x09\xf0\xe5\x54\x8b\x3c\xe0\xb2\xf4\x1d\x5d\x93\xc8\xe9\x03\x48\x3b\x68\x39\x34\x84\x16\x5e\xe4\xf8\x05\xe8\x8a\xb8\xfe\x7a\x83\x95\xab\xf1\xd7\x9a\xd7\x89\x3b\xd3\x5c\x1b\x9a\x9a\xc0\x5f\xaa\xdb\x18\x57\x6f\x1a\x13\x44\xa5\xfe\x2d\x43\x49\x45\xe3\xc6\x44\x88\xe7\x52\xe3\x26\x74\xff\x49\xa1\x71\x13\x4e\x38\x93\x52\xe3\xc6\xb8\xf4\x95\x98\x1a\x37\x06\xe0\x52\xa6\x68\x8d\x1b\x03\x30\xd2\x30\x86\xc6\x4d\xd1\xee\x37\xe8\xbd\x69\x7b\xa6\x6f\xbf\xd5\x8e\xb2\xac\x4e\xd6\x08\xa6\xcc\x06\xf4\xc6\x8b\xd9\x30\x0d\x3b\x96\xfd\xbf\xbd\xd7\xbd\x40\x95\xe9\x21\x24\x55\x77\x71\xe7\x75\xef\x68\xd6\x59\x4a\xd5\x5d\xb4\xdd\xee\x57\x7a\x7a\x59\xe2\x9a\x3a\x39\x28\x51\x09\xcc\x32\x6e\x60\xb5\x8c\x36\xd4\xd1\x91\x24\x2c\xab\x13\x05\x05\x8a\x25\xe8\x18\x2a\xd2\xb1\xa9\x22\x1d\xd7\x55\xa4\xe4\x4d\xad\x6f\xca\x7e\x65\x30\x71\xa4\xe5\x75\x0f\xf8\xfa\x67\x64\x4c\xf1\x5f\x2b\x0c\x5f\x68\x57\x2b\xb3\x0c\x7e\xf7\x13\x5b\x11\x65\xae\xb8\xf6\x12\xae\x68\xe5\x1d\x93\xfc\x4e\x20\x76\x67\xf9\xea\x36\xfd\xf2\xfe\x2d\xca\x20\xd6\x0e\x63\x51\x0a\xd5\x45\x04\xca\xd5\xaf\x3b\xa4\x3d\x90\x8a\x20\x33\x68\x56\x7e\xdd\x8d\xd0\x52\x84\x8c\xb8\xfe\x19\x45\xe2\xc7\x2f\x38\xa6\xd2\xcf\x06\x1a\x73\xac\x9c\xdb\xc8\x8b\x72\xb4\x80\xd8\xfd\x8d\x64\xe9\x02\x47\x68\xca\xab\x9f\xe7\x72\xd3\x8e\xd0\x44\x85\x8a\xd3\xdf\x23\xde\x7a\xce\x5d\x47\x68\x05\x71\xc5\x3a\x1c\x6d\x14\xac\xf4\xd7\x85\xd6\x65\xd1\xdb\x54\xae\x4a\x34\x87\x58\xbd\x6a\x43\xf7\xc5\xcf\x73\x42\x16\xe8\x41\x34\xf2\x94\x1f\xc7\x3e\xd2\x6f\x04\x9d\x8a\xef\x73\xe1\x78\xe2\x1b\x41\xd7\x7c\x94\xe2\x34\x21\xe8\x9c\xff\x12\xcc\xf8\x4c\xf0\x60\x74\x01\xb1\xc1\x84\xcb\x43\x26\xfa\x08\xb1\x7b\xc9\x48\x86\x59\x9a\xa1\xdb\xa2\x58\x91\x74\x23\x66\x62\x41\x30\x3b\x4d\xa2\xb3\x98\xe0\x64\xb9\x40\x9f\x45\xbd\x02\xcb\xd9\x0c\x27\x53\x9a\x4c\xe5\x4b\x94\x8f\x34\x67\xe8\x4c\xbc\x56\x67\x64\x2c\x22\x14\x9f\xeb\x70\xdc\xe8\x93\x28\xc5\xe5\xc6\x33\x15\xc0\x33\x7a\xbb\x41\x57\x7c\x9e\xd2\x07\xf4\x4e\xb8\xd4\xfe\xf2\xfe\xed\x08\x7d\x11\x80\xb2\xe5\x37\xf2\x51\x29\x89\xd0\xa5\x98\x50\x2d\x03\x8c\xd0\x07\x88\x1b\xe3\xcc\xa2\xbb\x22\x63\x3f\xac\x2c\xfa\x55\x0d\x78\x43\xd6\x2f\x2a\xab\x86\xee\xaf\x82\x8b\xbe\x3d\x14\x87\xfe\xfd\xbf\xed\xeb\x8d\xb7\x5c\xc2\x2c\xc2\x44\x21\x4f\x9e\x03\xff\x52\x3e\x1d\xe0\x92\x30\x76\x3f\x5e\x8d\x6e\x2f\xae\xd0\x5f\x44\xee\xd7\x26\x4d\x79\x51\x80\x81\xe3\xbf\xec\x02\x2c\x9d\xfc\xa0\xaf\xa2\xc4\x6f\x07\x4c\x56\xbe\xca\x6b\x94\xaf\x0e\x01\x32\x3e\xd9\x91\x93\x74\x69\xf5\x66\xa1\x10\x13\x14\x52\xe1\x56\x4a\xc7\x07\x44\xbf\x09\xfc\xff\x8d\x86\x7d\xd8\x0f\x03\xec\x9e\x5f\xdf\xde\x5e\x9c\x8f\x3e\x5e\x5e\x5d\xa0\xff\x16\x79\x3f\xa3\xe1\x8f\xf0\x85\xc8\x3b\xbd\xf9\xa0\xf3\x7e\x16\x79\x7f\xe7\x79\x7d\x58\x96\x1d\x71\x18\x09\xf1\xf7\x00\x1b\xe1\x5b\x90\x17\xe0\x22\xe2\x09\xea\x8b\xd2\x7f\x6e\xbc\x31\xd8\x97\x63\x03\x73\x5b\xa1\x3f\x8b\xb2\xff\xd5\x10\x61\x04\x47\x51\xf3\x05\x7e\x80\x8b\x3c\xf4\x5f\xa2\xf8\x7f\xa0\x47\x83\x0f\xfa\x87\xda\x51\x30\x4a\xb0\x83\x9a\x49\x1e\x04\x96\x2c\x54\x42\x72\x72\x71\x10\x50\xf0\x56\x09\x27\xf8\xea\x41\x40\xc9\x75\x55\xdd\x92\xe3\x1e\xae\x5d\x71\x64\x09\xad\xb8\xf1\x41\x68\xcd\xad\x35\xee\x92\x53\x3f\x51\x81\xc1\xce\x75\x2f\x37\x4f\x74\x72\xc3\xa1\xb4\x91\x87\xdf\xf4\x4a\x01\xa6\x0d\x1a\xfa\x4a\xb6\x08\x2f\xbd\x6f\x0f\x85\xfe\x43\xcc\x22\x63\xdf\x37\x8d\x5f\x6f\xcf\x7e\xd7\x4c\x7e\xbd\x3d\xfb\xee\xc9\xfc\x7a\x7b\xf6\xdd\xf3\xf9\xf5\xf6\xec\xf7\x4c\x29\x6f\xc6\xef\x9a\xd5\xaf\xb7\x67\x7f\x60\x62\x45\x35\xbf\x6b\x6e\x45\x9f\xff\xd8\xf4\x0a\x83\x9f\xaf\xb7\x67\x35\xb8\x86\x89\xfe\x7a\x7b\x86\x18\x83\xb7\xe6\x5b\x50\xbe\xff\x0d\x2d\x61\xf1\x84\x55\x69\x5a\x2b\x07\xd1\x9a\x87\xb2\x05\x21\xdf\xb4\x0f\x32\xad\x2a\xed\x78\x10\xa3\xb6\x17\x90\x93\x42\xc5\x1a\x18\x58\x4b\x25\xec\x76\x5b\x4b\x70\x0c\x9d\x2d\x24\x40\xfb\xd4\x25\xe4\x1b\x32\x72\x86\x24\xe4\x15\xf4\xd4\x59\x84\x74\x3a\x3b\xf3\xc9\x66\xa9\xb1\x85\x78\xbb\x75\xaa\x3a\x63\xaf\xa6\x33\x06\x90\x49\x23\x4d\xc2\x1a\x9e\x80\x2a\x65\x44\x46\xfe\xbe\x24\x39\x3b\x4d\xe8\x5c\x98\x1b\xbd\xcb\xf0\x9c\x14\x66\x4a\x52\xed\xfe\xe5\x49\x98\x79\xfa\xdb\xd3\x00\xe9\x33\xe5\xf3\x03\xf9\xe6\x5a\x52\xb0\xb9\xd4\xe9\xa6\x4b\xe6\x30\xe8\x91\x17\xc7\xaf\x7b\x60\xb7\x73\x38\xbf\x34\x3a\x22\xca\x23\x22\x59\x3b\x66\xe8\xb1\x74\x5b\x24\xdc\x72\x2b\x2f\x62\x7e\xbb\x07\xcb\x9c\xf3\xfb\xf8\x70\xa6\x74\xeb\xbd\x64\x4f\x64\xae\x48\x66\xe6\x72\x39\x86\x26\x44\x28\x72\xcc\x04\x19\xae\xbf\xdd\x83\x95\x48\x7d\x3a\x9a\x7e\xfd\xbb\x78\xcc\x2d\x84\xdf\x7a\xae\xf4\x47\x54\xf9\xaa\x83\xc8\xf0\xfc\x3d\x38\xa1\x71\x7c\x1a\x2f\x66\x98\x7f\x4c\x33\x1a\x55\x1a\xa7\x13\x8a\xc6\xcd\x68\x24\x7a\x14\xe3\xcd\x75\xd1\x79\x99\xa1\xc3\xe9\x19\x15\x35\xc4\xd8\xe3\xc9\xb4\xe6\xf0\x9c\xa7\xc9\xd3\xc7\x39\x5d\x95\x1f\x3f\x7f\x7a\x6b\x7e\xbc\xef\x97\x5f\xda\xc7\x1e\x6f\x5b\x6e\x24\xcf\xd2\x87\xbf\x92\x2c\x95\x51\x44\x45\x3a\x99\x92\x44\x74\xb4\x16\xcd\x58\x24\x69\x8b\xe0\x3b\x21\x59\x16\x61\xfc\xce\xea\x33\x20\x52\x75\xeb\x85\x03\x48\x19\x1a\x3e\xcd\x3e\xc7\x29\x7b\x47\xe3\xb8\x18\xb1\xc6\xdc\xf7\x19\x8e\x28\x49\xd8\x61\xa8\x1b\x96\xa5\xdf\x48\x73\xfe\xdb\x42\xfb\xf7\x7d\x50\x95\x09\xdb\xab\xe9\x70\xee\xbb\x34\x23\xcf\xd7\x53\x42\x1d\xc6\x54\x2c\xa8\x7c\x96\x3e\x88\xb1\xcd\xaf\x93\x62\xc9\xea\x8c\x2f\x69\xac\x36\x45\x2e\xea\x2b\x70\x2d\x93\x48\xac\x30\x73\x0a\x96\x49\xe3\x0a\x33\x83\xd1\xf0\x83\x28\xa4\x0c\x3d\x9e\x5f\xbc\x3b\xfd\xfa\xf1\xf6\x20\x23\xc1\xee\x3d\x99\xd2\xe4\x33\xe6\x6c\x59\x1c\x46\xe3\x58\x28\x5c\xc5\xd1\x14\x67\x63\x87\x83\xa6\xb0\x07\xfb\x47\x2a\xe4\x18\x97\xfd\x14\xa4\x23\x19\x8c\x5c\xd2\x39\xa2\x92\x9a\x24\x0c\x1d\xff\xdf\x6c\x7a\x8f\x07\x7f\x73\x9c\xbf\x45\x8f\x1e\x7c\xb1\x03\xf0\x6f\xf9\x51\xf3\x87\x33\xf0\xc5\xf7\xb0\xe7\x85\xce\xc0\xff\x9b\xfb\xb7\xa8\x03\x06\x00\x0c\xfe\x06\xfe\xe3\x18\x66\x0c\x0d\xad\x9f\x2d\x68\x7d\xb2\xa0\xf5\xd6\x82\xd6\xad\x05\xad\x3f\x5b\x21\x4c\x79\xc6\x37\x95\xf1\x5e\x65\x7c\xb6\xa0\x75\x61\x41\xeb\xaf\x16\xb4\xee\xac\x10\xe6\x1c\x68\x6e\x41\x6b\x69\x41\x2b\xb1\xa0\xb5\xb0\xa0\x35\xb1\xa0\x85\x2d\x68\xfd\x66\x41\x6b\x63\x85\x30\xe6\x40\xff\x85\x79\xf6\x3b\x72\xcf\x31\xe2\xcc\x82\xd6\xe9\x22\x13\xbf\x37\x16\xb4\xfe\x6b\x99\x88\x7f\x63\x9e\xbe\x9c\x5a\xd0\xba\x21\x1c\xd5\xf5\x98\x59\xd0\xba\x4a\x57\x16\xb4\xce\xc9\xd8\x0a\xab\xf6\xb3\xfa\xa8\xe5\x7b\xaf\x77\x21\xf4\x7e\xfa\xe3\xce\xc0\xfe\x8d\x0e\x67\xa6\x49\xec\x77\x7a\x29\x6b\x34\xe2\x14\xd1\xf9\x10\x19\xf6\x42\xd3\xc3\x4a\x5b\x5f\xce\x63\xdb\x6e\xaf\x0d\x15\x81\x83\x95\xe7\x0c\x21\xf5\x5c\x48\xcb\x95\x8b\xf5\x82\x8c\x19\x89\x94\x62\xbb\x95\x66\xc2\x64\xa5\x75\xbf\x64\xad\x69\xca\x5a\x56\x47\x63\xeb\x58\xbe\xf4\x76\xeb\x5a\x66\xb8\x43\x4f\x04\x3b\xdf\xf7\x0a\x48\x86\x34\x34\x94\xd3\x89\xa1\x1f\x4f\x6c\x7b\xbf\xb5\x89\x6a\x6d\xa1\xe0\x70\x12\xf0\x7d\xed\x15\x32\xcd\x7e\x83\x13\xd9\xe0\x44\x34\xf8\x0f\xfa\x79\xab\xba\x96\x2d\x03\xd0\x18\xca\x78\x11\xf1\xbd\xdd\x83\x22\x0a\x7c\xa6\xcc\xab\x02\x96\x6d\x8a\xbb\xc2\x14\xe6\x88\x0d\x6f\x36\xf3\xfb\x34\x76\xa9\xd2\xad\x84\x0e\x08\xda\x0e\x45\x4e\x8a\xf4\x85\x38\x70\xa3\x34\x21\xc2\x8a\x4a\x9a\x41\xa4\x32\x06\x18\x80\x6d\xb2\xdd\x62\x35\xc6\xc2\x30\x27\xe0\x55\x82\xa0\xbc\x49\x49\x78\x13\x32\xc4\x76\x13\x9a\xe0\x38\xde\x88\xeb\x99\x36\xb5\xed\x5c\x99\x64\x97\xbf\x1c\x50\x00\x09\xf7\x36\x72\x88\xb3\x42\xcf\x5b\x5c\x1c\x96\x8e\xf6\x95\xdf\x5f\x31\x35\x7a\x8a\x1c\x02\xca\x0b\x2f\x3a\x71\x6a\xfd\xe3\xbb\x46\x0e\xb9\x01\xc8\x04\xaa\xa0\x9c\xd4\xdb\xcd\x82\xa8\x89\xbd\x4c\x56\x38\xa6\x51\x0b\x33\x46\xe6\x0b\xd6\x62\x69\x4b\x44\xca\x59\x8e\xd9\x32\x23\xad\x24\x4d\xba\x02\xf7\x7d\x4c\x0a\xbb\x20\x4b\x88\x65\x30\xae\xaa\x67\x94\x2b\x7e\x00\x67\x28\x73\x62\x00\x97\xd5\x6c\x7d\x31\x05\x23\x94\x39\x4b\x00\xc7\x8d\x1e\xef\x84\x4f\x89\xcc\x19\x03\x38\xad\xe6\x1b\xf2\x46\x77\xce\x05\x0e\x0b\xc0\x09\xca\x9c\x29\x80\xa3\x43\x6a\xa2\x15\x4a\x9c\x11\x80\x9b\x66\x17\x20\x6b\x94\x38\x1b\x00\xe7\x4f\xfb\xe7\xbb\x47\x99\x33\x07\xf0\xe1\x79\xff\x7c\xa7\xc8\xc9\x9c\x07\x00\x05\x20\x9d\x70\x31\xb5\xcb\x70\xb6\xb0\x00\x80\xd7\x28\x73\x4e\x01\x3c\x57\x58\x30\xc3\x33\x29\x4e\x1e\xab\xfa\x2c\x00\x2f\x50\xe6\x9c\x03\xf8\x71\x1f\xe6\x1e\x67\x79\x57\xdc\x50\x59\x00\xde\xa2\xcc\xf9\x08\xe0\xcd\x01\xb0\xf1\x32\x67\xe9\xdc\x02\xf0\x33\xca\x9c\x1b\x00\xcf\x0e\x56\xd9\x9d\xa8\xf1\xe4\xdd\xfc\x84\x32\xe7\x0c\xc0\xab\x03\x58\x4d\xd0\x77\x28\x73\xae\x00\xfc\xd6\x0c\x6a\x01\xf8\x05\x65\xce\x37\x00\x2f\x25\xc0\x22\x5e\x4e\x69\x92\x1f\x1b\xde\x4e\x2d\x00\x3f\xa0\xcc\xb9\x04\xf0\xae\x06\xb3\x26\x3c\xf3\x57\x94\x39\x77\x00\xfe\x52\xcd\x14\xf1\x23\xba\xda\xd7\x1c\xfc\x2b\xca\x9c\x5f\x00\x7c\x5b\x05\xe2\xc2\xae\x50\x10\x66\xce\x5b\x00\xff\x52\xcd\x94\x82\xa4\x05\xe0\x57\x94\x39\x7f\x01\xf0\xb7\x6a\xb6\x10\x7f\xba\xb9\x92\x7f\x2c\x00\xff\x1b\x65\xce\x6f\x00\xfe\x5c\x9d\xfb\xe9\x8a\xfe\x66\x01\xf8\x77\x94\x39\x3f\x03\xf8\xe7\x7d\xc5\x93\x70\xc6\x3c\xa2\x09\x65\xa3\x91\x8e\xaa\x13\xfc\xd9\xbd\x3a\xfd\x74\x81\xb4\xfb\x3e\x0b\xfe\xd9\xfd\xe5\xe2\xcb\xcd\xe5\xf5\x15\xb2\xfa\xae\xe7\xf6\x78\x8a\x12\x7a\x46\x5f\xae\x3f\x7e\x1c\x7d\xbe\xf8\x72\x79\x7d\x8e\x3c\x23\xfd\x2f\x97\xe7\xb7\x1f\xd0\xcb\x9f\x7a\x46\xda\x87\x8b\xcb\xf7\x1f\x6e\xd1\x8b\x3e\x4f\x3c\xbd\xba\xfc\x74\x7a\x7b\x79\x7d\x35\xba\xb9\xbd\xf8\x7c\x83\xbc\x7e\x25\xf1\xfc\xeb\x17\xf1\x03\xf5\x7b\x1c\xfa\xb3\x8c\x67\x99\xa3\xa8\x70\x71\x35\xd2\x69\xf0\xcf\x2e\x8e\x22\x12\x95\x3e\x75\xcf\x6e\x6e\x38\xad\xfd\xb3\xe9\x79\x57\xf5\xb2\xc9\x5b\xb9\x18\x06\x9a\x8f\x54\xac\xa3\x11\x3f\xb0\x8c\x0a\xdb\xa7\x8c\xe0\x68\xf3\x2e\x91\xce\x22\xf5\x45\xaa\xc1\xab\xf8\x01\x18\x0b\x13\x3f\x8c\xfe\xec\x8e\xd3\xc5\xe6\x6b\x4e\xb2\x53\xe1\x70\xd2\xc1\x00\xee\x5b\x18\xda\xb6\xc3\xca\xbb\xff\x29\xd1\xcf\x26\xde\x6e\x2e\x23\x87\x01\x00\xdb\x6c\x9f\xad\x9d\xa5\x89\xa4\x75\x34\x99\xb6\xd4\x04\xb7\x1e\x28\x9b\xb5\xb0\x20\x7d\x64\x2d\x74\x87\xac\x15\xd1\x55\xdb\x52\xbe\xff\xe6\x98\x26\x11\x5d\x15\xc6\x59\x13\x1a\x93\xc2\x6e\x2b\x4b\xe3\xf8\x33\xc9\x68\x1a\x8d\x10\x36\xbe\xb6\xdb\xc6\xe9\x2d\xcc\xbb\x56\x34\x5d\xe6\xbf\x90\x8c\xd1\x31\x8e\x7f\x1d\x21\x6d\xb4\x55\xec\x3c\x8e\xae\xf8\xd8\x6e\xb5\x42\xc0\x8c\xc3\x89\x8d\x2f\x69\x5e\xb2\xe7\x7a\x58\x3a\xe7\x74\x69\x92\x90\xec\xc3\xed\xa7\x8f\xc8\xb2\xa0\x25\x8d\x59\xa4\xf5\x83\x08\xe1\x61\xdb\x58\xff\x70\x2a\x19\x48\xa5\x77\xac\xc5\xda\x02\xd5\x92\x32\xe4\x07\x2f\xaa\x7f\x39\xd5\x2c\xa4\x73\x9e\x2a\xdd\x93\x86\x35\xe2\x6d\xcc\x87\x03\x78\xea\x8b\x5f\xe0\x6b\xec\x46\xad\xf5\xb5\x9d\x24\xdb\xa1\xec\xe5\x64\x6c\xa1\xa2\x6e\x71\x90\xe1\xec\xff\x41\xfe\x50\xeb\x56\x05\x10\xaa\x35\x91\xc3\xcd\xd4\xaf\x9e\x30\x24\x29\x5d\xdd\x0b\xb9\x62\x22\x0f\x90\x8b\x99\x88\x63\x5a\xfa\x19\x94\x1e\x54\xd1\xe3\x0e\xae\x2b\x4e\x15\x8d\x4c\xa8\x0d\xfa\xf6\x61\xcf\x09\x59\x38\x46\x1e\xbc\xd7\xfb\x58\x15\xb9\xe7\x47\x3c\x9c\x6d\x2e\x23\xc3\x2b\x6b\x4e\x98\xf0\x68\xf9\x76\x73\x85\xe7\xa4\x74\x04\x1b\x49\xbf\xcd\xca\x4f\xaa\x86\xce\xc8\x94\x6f\x81\x8c\x44\x2a\xe6\x4e\x91\x43\x4c\xdd\xba\xe1\x50\xd6\x70\x76\x2f\x9e\x77\x2c\x74\xa3\x44\x53\x55\xcb\xd4\x8d\x17\x67\xea\x13\x3c\x26\x23\x1d\xe2\x44\xd1\xe2\x91\x19\x87\x87\xa2\x3f\xbb\x9f\x3f\x7e\x7d\x7f\x79\x75\xe3\x8e\xd3\x64\x8c\x25\x26\xd3\x6d\xbf\x2a\xc6\x27\x53\x06\x01\xa7\xfb\xc1\xbf\x61\x8a\xe8\x30\x09\x03\x2d\x2c\xb6\x11\x4a\x5d\x11\x2c\x0e\x33\x32\x48\x7d\xde\x56\xed\x43\xe7\x51\x22\xf4\x33\x28\x7a\x99\xfb\x8f\x3b\xc3\x0b\x27\x94\xb9\xd7\x86\x77\xd2\x18\x65\x05\x2e\xd9\xcf\xa2\xf9\x33\x11\x7f\x02\xc4\x75\xbb\xb8\x19\x17\x39\xd5\x30\xe6\xc3\x59\x88\xe2\xe1\x2c\x54\x24\x46\x0f\x83\x14\x48\x73\xb0\x2b\x5f\x41\x8b\x10\xe7\x15\x98\x7a\x4f\x97\xa8\x92\xcf\xfb\x5c\x69\xcb\x52\xd5\x09\x84\xa3\x5b\xf9\x7b\xbf\x71\x12\x57\x84\x96\x65\x0b\xe1\x18\x0d\x97\x0a\x2f\x8c\xc2\x40\x60\x6b\x5a\x0b\x83\xa6\xc4\xe1\x2c\x94\xdd\x19\x2b\x67\xa7\xfb\xf9\x68\x38\x0e\x77\x3b\x63\x81\x9c\x67\x78\xba\xbf\x48\xa4\xa5\xac\x03\x76\x15\x66\x54\x0d\x0d\xb5\xef\x50\xb1\xed\xb0\x43\xed\x05\xa5\x09\x9e\x32\xf5\x54\xbc\x40\x34\xb4\x12\xb0\xd0\x83\x6a\x35\x7f\x96\x6f\x34\x49\xc4\xd3\xaa\x0f\x36\xfd\x9a\x4e\x5a\xdf\xa3\x73\x0c\xca\x89\xe2\x99\xa0\xc9\x2d\x7e\x7c\x6d\x55\x0b\xb7\xf8\xc9\x39\x4d\xba\x65\x91\x96\xc8\x76\xad\xd2\x7d\x5f\x51\x37\x6a\xf7\x76\x70\x51\xbe\x27\xbd\x61\xe9\x62\x21\x9b\x54\x7b\x69\x6a\xb6\x09\xbb\xfb\x45\x38\xa6\x5d\x50\x50\x21\xac\xe3\x48\x28\x1f\xb9\xf5\xb9\x92\x0e\x23\x29\x30\x5e\xe7\x97\x16\x39\xc9\x1b\xbe\x4a\xb5\xfb\xb4\x4c\x6c\x3b\x7e\x68\x96\x1b\x70\xe8\x49\x97\x71\xfa\x39\x30\x06\xb0\xa9\x41\x40\x2a\xc9\xf5\xe9\x68\xaf\xeb\xd5\xc9\x17\xc1\xe8\xf8\xba\xbc\x54\x67\x94\x51\xb3\xe9\xad\xb4\x1f\x6d\xda\x3e\xa4\xe6\xf8\xbf\xd8\x3e\x24\x94\x71\xb0\x65\x82\xf9\x38\xa2\xb8\x60\xd0\x99\x15\xdb\xcf\x4a\xfb\x64\xd4\x54\x12\x35\x38\xc1\x6d\xb7\xeb\x8c\x3c\x90\x6e\x4c\x4d\xef\xcf\x15\x17\x9b\x22\xb4\xb5\x3b\xc7\x0b\x67\xff\x46\xa6\xdd\x66\x46\x08\xeb\x1d\x70\x85\x33\xe8\xeb\x89\xd3\xee\x01\x3e\x2d\xa5\x05\x2a\xdb\x6e\xcb\xa0\x63\x45\x3d\xdb\xad\x34\x80\xdd\x54\xaa\xc7\xc1\x9e\xe8\x24\x9c\xbb\x2e\x30\x3f\xe6\x30\x92\xb5\x68\xde\x1a\x0a\x83\xbd\x50\xc6\x24\xbb\x27\x62\x14\xa0\x08\x4a\x96\x66\xad\x1f\x36\x3f\xb8\x56\x6d\xc7\xb2\x54\x5a\x6f\x1c\xf0\x2d\xad\xe5\x2c\xa5\xcd\xb1\x86\x4a\x76\x6e\x59\x1d\xa9\x53\xa2\xd1\x80\xff\xe3\x33\xd0\xb1\x42\xab\x8a\x9b\x73\xa1\x3a\x11\xd0\x7d\x1c\xd4\xf9\x54\x35\x28\x0b\x87\xf5\x9b\x40\x84\x37\xc5\xda\xaa\x93\x4c\xa0\xb9\xa2\x02\x87\x7c\xfb\xb8\x57\xf6\x4a\xba\x6f\x7b\x16\x45\xc9\xe8\x1a\xd1\xc8\x41\xfc\x47\xb1\xbc\x4d\xd3\x98\xe0\xe4\x1f\x45\x53\x8d\x34\xfe\xc7\xf1\x54\x62\x01\x3d\x33\xbc\x0d\x91\xdd\xf7\x71\x2a\xf6\xfd\x0b\x25\x0f\x0a\x68\x74\xc0\x23\x75\x50\x57\xc4\x14\xf6\x15\xc4\x14\xcc\xc4\x36\x2c\xfc\xda\xda\x36\x1d\xb2\x50\xfe\xbb\xff\x5e\x4b\xf8\xb8\x1d\xe2\xd0\x57\xee\x89\x59\xcd\x3d\xb1\xd0\x5f\x96\x86\xac\x66\x35\x43\x1c\x0e\xea\x09\xbe\x43\x55\x50\x7b\xd5\x0c\xf8\xbd\xf5\x8b\x7d\xcd\x6c\x5b\xc7\xc7\xef\x35\x01\x97\x99\xb2\x48\xbf\x5a\xc6\x7b\xaa\x8c\x27\xca\xa8\xfd\xe7\x60\x20\x82\x68\x99\xf3\x50\x1e\x89\x0e\xb9\xae\x35\x8e\x50\xd5\xa2\x65\xb0\xba\x43\x45\x0d\x22\x3a\xa8\x27\xf8\xa5\xc3\xe9\x8b\x35\xcb\xc8\x5c\xde\xa3\xef\x55\xa0\x33\x0f\x7b\xbc\xaf\xec\x5b\xc7\x5a\x8b\x26\x7d\xc6\x91\x05\x8e\x15\xeb\x10\x67\xe8\x91\x88\x46\xe9\x3e\x68\x73\x44\x79\xc9\xbb\x9c\x7f\x49\x1f\x72\x47\x8b\x1c\xc3\x5e\x97\x41\xaf\xc3\x8a\x68\x7a\x62\x04\xf0\xc3\x39\x66\x58\xcc\x80\x50\x36\x57\x53\x2b\x5f\x05\xdb\x0d\x95\x42\x9a\x15\x56\x9f\x5d\x12\x90\x2e\xa2\x47\x0c\xe2\x0e\xff\xa3\xd8\xd3\x90\x40\x1c\x56\x3b\xbe\xf9\x9e\x8e\x63\x36\x23\x99\x8e\xee\xa2\xae\xbc\xf9\x5c\x91\x48\xb9\x91\x96\x96\xee\x90\x20\xe6\x12\x85\x0b\x9a\x2c\x4b\xca\xb6\x2a\xa8\xdd\x5d\x31\x99\xf9\xc8\xa9\x0a\x1b\x12\xb8\xb2\xcb\x45\xd0\x00\x2c\x82\xe3\x35\x71\xbd\x56\x51\xa3\x62\x7b\x0d\xdd\xab\x2d\x1c\x66\xbc\xbf\x44\xd2\xa6\x9a\x21\x7e\x38\x3b\xe9\x6d\xb7\xec\x8d\xc9\x69\x95\xc5\x66\xfd\x31\x04\x31\x60\xb8\x40\xa4\x47\xf7\x40\x60\x3f\xd2\x1c\xce\x2f\x3c\xd4\xd4\xfc\x09\xef\x4b\x85\x14\x63\x36\x50\x88\x30\xca\xb1\x92\x76\x22\xad\x83\x3b\x12\x60\xbc\x89\xac\x31\xe1\xf3\x74\x2e\x02\x33\xe5\x07\xa2\xdb\xc9\xf5\x26\xe0\x54\xe8\x2a\x7d\xbe\x14\x69\x2a\xaa\x13\x2f\x10\x36\xa0\x96\x45\xea\xe3\x5e\x7b\xfb\xb2\x37\xa8\x95\x2d\xa4\x17\x51\x25\x58\x65\x71\xc5\xb3\xee\x38\xac\x8b\x87\xbd\x10\x1c\x3b\x78\xe8\x85\xf2\xf7\x11\x71\x1f\x1a\x5a\x73\x57\x6f\x4d\x79\xa3\xa0\x7a\x54\x8d\x55\xc5\xf3\x0d\x99\x09\xef\xb5\x97\x36\xb4\xb7\x74\x76\xbe\xe9\xe0\x23\xea\xce\xf6\x1a\x82\x19\xfe\xbe\x21\xc7\x0c\xef\x8f\x39\x66\xf8\xc9\x41\x2f\x0a\xfd\xf3\x47\xbd\x08\x73\xd5\xcc\x76\x6b\x31\xfb\x34\x25\x12\x11\x0f\xd7\xe0\x98\xb8\x0f\x85\x07\x9f\x3d\xdb\x43\x07\x0b\x5a\x27\x22\x5c\x16\xd6\xd1\x3c\xad\x63\x14\x3f\x32\xa6\xb8\xa9\xdf\x8d\xf3\xfb\x54\xcf\x71\x53\xcf\xcb\xb0\x9d\xe5\xfe\x09\x4c\x6a\x21\x03\x24\xf4\x00\xfc\xce\xc1\x20\x40\xdf\xcf\xf1\xb5\xea\x6e\xc0\x31\x76\x67\x4f\x0c\x05\x15\xa3\xc0\xc7\xa3\xf4\x90\x46\xc5\x50\x60\xbe\xa6\xdc\x59\x97\x09\x14\x47\x02\xb2\x4b\x9b\x86\xa3\xb2\x90\xbf\x77\x44\xea\x1d\x0c\x54\x2c\x89\x03\x03\xf2\xbb\xbb\xbf\xd6\x61\x43\x79\x8b\x61\x66\x7c\x7b\x21\x08\x30\x72\xb2\xee\xba\x08\xa4\x09\x8e\x9d\xac\x9b\x28\xff\x02\x18\xc9\xbe\x32\x70\x6c\x74\xba\x78\x0d\x77\xa0\xf7\xbf\x77\x1f\x1c\x5a\xf4\xed\x82\x81\xff\xbe\x95\xaf\x3b\x23\x16\x2c\x4c\x8c\x6f\xde\x5f\x82\x9c\xb2\xb7\x5d\x0a\x8e\x85\xb9\xae\xec\x2f\x41\x4d\x64\xad\x7c\x9d\x5d\xe9\x6f\xb2\x9c\x9f\xa5\xf1\x72\x9e\x1c\x8c\x07\xa0\xc5\x85\x41\x5d\xc0\xd8\x4b\x50\xdc\xc4\x37\x4e\x2f\x45\x84\x1f\x9d\xd7\xdb\xab\x9e\x0b\x35\xbf\xaf\xee\x03\xb8\xa6\x84\x49\x3f\x56\xcd\x32\xbf\xe4\xce\x4d\x88\x06\xc2\x01\x02\xe1\x00\xe4\x4d\x4d\x60\x0a\x2b\x30\xf5\xcc\x21\xa9\xd1\xd0\xba\x76\xf2\xb9\x03\xaa\x94\x8f\x54\xd0\xf8\xa7\x1f\x20\xc2\x0a\xac\xd2\x4e\x33\xb2\x66\xa7\x31\x9d\x26\xc8\x8a\xc9\x84\x59\x8d\x40\x8b\x34\xa7\xe2\x4c\x65\x65\x24\xc6\x8c\xae\x88\x05\x59\xe5\x2d\x62\xa5\x94\x56\xb4\x8a\x6b\xd7\x11\x5a\x57\xde\x26\x38\xd5\xdc\xbd\x1a\xf0\x7d\x9e\xc6\x4b\x46\x2c\x1d\xc8\x2b\x8a\x48\xa2\xe2\x77\x49\x3c\x9f\xe3\x94\xfd\x4c\x99\x44\xa7\x84\x41\x85\xad\x8a\x7b\xcc\xd6\xbc\x76\xc3\x8a\xbb\x01\x56\x55\x70\x00\x56\xe5\x02\xad\x91\xce\xe9\x6f\x7a\x54\xf3\x42\x29\x58\x8c\xd6\xde\x88\x54\x8b\x1f\x86\xab\x36\x69\x9e\x2e\x73\xa9\x4c\x54\x55\x55\xba\xff\x69\x2f\x57\xb7\x43\x5e\x83\x4b\xd5\xf7\xac\xaa\xfa\x36\x58\x6d\x50\xd6\xf1\x29\x5d\x11\x1d\xfa\xb4\x42\xa8\x48\x99\x2f\x83\xc7\x94\x65\x4a\x6b\xc5\xfd\x43\x2c\x46\xcc\x65\x38\x9b\x12\xb6\xdd\x32\x77\x92\xa5\x73\xd5\x44\x4e\xc5\x5d\xb1\x76\x48\x74\x5b\x00\xb0\x54\xfb\x17\x5b\xef\xbf\x14\x71\x30\x24\xe5\x8a\x52\xa6\x22\x75\x18\x5a\x85\x21\x45\x13\x8d\x56\xe3\x28\x3a\x4d\xa2\xdb\x0c\x8f\xbf\x89\x51\xd3\x6f\xfc\x2d\x01\x2b\x42\xf8\x37\xf6\x0e\x1c\x28\x7e\x60\x8a\x14\xbe\x79\xba\x22\x26\x42\x73\x88\x2b\xab\x48\x27\x6a\x73\xdb\x6a\x6a\x6d\x36\x64\xa6\xf3\x6c\x97\x24\x9c\xd5\x54\x0f\xa8\x71\xe9\xda\x5a\xde\x0b\x26\x5f\x23\x01\xf2\x16\xcb\xb8\xae\x92\x37\x5f\x4d\xa0\xea\xaa\xcc\xbc\xb4\x12\xc0\xc1\x93\x47\xd9\x45\xf1\x48\x49\x46\x68\xde\x6e\xd7\x8d\x4f\x98\x9c\xfa\x0e\x57\xf7\x16\x9a\x9e\xec\x35\xf4\x88\x54\x09\x4e\x43\xf3\xea\x20\xcf\x77\xb9\x0a\x79\xa8\xc7\xd0\x93\x6f\x83\xeb\x4d\x96\x81\xb7\x1d\xa2\x35\xdd\xf8\xb9\xee\x1a\x44\x4a\x75\x57\xa5\x34\x74\x17\x57\xe8\x5a\x63\x77\x6b\x20\xcf\x77\xb7\x0a\xf9\x64\x77\x71\x11\x17\xaa\x68\xb2\xea\x2e\x86\xb8\xb6\x06\x85\xb9\x4f\xba\xd9\x5b\x7b\xe6\x50\x65\x24\x67\x69\x46\x9c\x7d\x72\x5d\x66\xed\x59\xd8\x57\x15\xec\x5d\x2f\x60\x6f\x50\x2f\x60\xfa\x5e\x80\xd4\xc0\x16\xe9\xc2\x01\x01\x51\x09\xba\x59\x9c\x9e\x54\x53\x1c\x15\x3b\x5a\xbe\x55\x14\xfb\xaf\xb8\x9c\x74\x00\x5c\x9b\x8f\x18\xbf\x9f\xcc\x54\x8b\xfd\x23\xe4\xa5\xb9\x01\x4f\x11\x85\xa6\x44\xe9\x18\xc6\xb0\x7d\x23\x52\x09\x10\x08\x13\x48\xc1\xb5\x38\x1d\xce\x1d\x10\x00\xe6\x10\x77\x42\xb3\x9c\x89\x64\x00\x49\xc5\x8f\x40\x25\x6f\xe7\x54\x24\x17\xbd\xf2\x9f\x70\x53\xd2\xe0\x90\x89\x84\xc2\xc1\x15\x91\x3e\xa7\xc0\x2e\xc0\x8e\xc9\xfa\x00\x54\xdf\xfa\x50\xa5\x13\x40\x93\x94\x55\x15\x24\x1a\x54\xb2\x75\xc9\xa5\x3c\xf9\x1f\x96\x5a\x74\x1e\x4b\x17\x85\x49\x00\x4b\x17\x45\x3a\x97\xb2\x8a\x0c\xfe\x01\xff\x57\xc3\xde\x83\x8d\xbb\xac\x40\x72\x60\xaf\x92\xe7\x36\x28\x69\x1a\x86\x7d\x81\xe2\x90\x34\xad\xf6\x65\x15\x49\x4e\xa4\x61\x7a\x3e\x3a\xac\xb6\x94\x46\xdc\x8e\x54\xd0\x95\x9b\x52\xea\xe4\x64\x59\x7d\xb7\x2f\xbf\x3f\xe1\x45\x25\xd4\x26\x3e\xc4\x36\x04\xf8\x0d\x66\xcb\x4c\xdc\xe0\x59\x60\xbb\xf5\xf4\x99\xf1\x00\xb4\x90\xf1\x39\xa0\xfb\x4a\x7b\x5c\x55\x91\x7a\xfa\xfc\x5c\x58\xbf\xe0\x97\x0d\x12\x7e\x12\x44\x56\xe9\xa4\xc3\xd1\x41\x7a\x88\x88\xab\x43\x27\xd2\xd5\x8c\xf4\x61\x80\xd8\x30\xef\x78\x21\x9c\xa1\xa7\xaf\x7c\x24\x7e\x0b\xc6\xf2\xb0\x37\xe3\x68\x32\x30\x43\xd9\x30\xff\x4f\xed\xd4\x32\x2c\x5d\xe4\x2e\x51\xfe\x9f\xfd\x41\xd2\x71\xf2\x8e\x07\x8e\xfb\x7e\xd9\x7c\x95\x02\x60\x84\xbc\xa3\xe5\xb1\xe3\x75\x08\x08\x66\x68\x5d\xbc\x9c\x76\x22\xe9\x5b\xc9\x1c\x76\xa9\xb2\x9b\x81\xfa\xd8\x0f\xe3\x10\xcd\x76\x7b\xc7\x23\x39\xd1\x07\x97\x87\xc4\xb9\x7f\x3d\x2a\x95\xf5\x32\xf6\x5c\x43\x10\xbc\xf2\x8a\xb4\xeb\x41\xbc\xbf\x68\xa4\xc9\x31\x36\x4d\x8e\xe9\xc4\xc1\x43\x1a\x8a\xe8\x8a\x04\xd1\xc0\xbc\xb1\xed\x7a\x08\x11\x79\xdc\x7a\x4c\xf0\x9c\xf8\x0c\x8e\xc5\x09\xd5\x27\x50\x4c\x5e\xac\xa2\x7a\x9a\x33\x39\x24\x5d\x2f\x84\xa2\x07\x7e\x7d\x2c\x58\x28\x9e\xd9\xf8\x5e\x67\x6f\x2a\x2b\x91\xfd\xb8\xcc\xd9\xb4\xc1\xbe\xa4\x71\xfc\xdc\x89\x4e\x3f\x08\x13\x5a\xed\x6c\x14\x90\x42\x2e\x94\x09\x88\x1c\x3c\xdc\xd1\x64\x21\x8c\x5f\x89\xcb\xeb\x44\x16\x17\x20\x4a\x5a\x10\xd1\x7c\x11\xe3\x0d\xb2\x92\x34\x11\xe4\x69\x1c\xe3\x5c\x04\xf0\x43\x96\xb6\x2b\x94\x75\x58\x4f\x9c\x52\x08\x00\x41\x75\x1f\x56\x2e\xed\x1c\xab\x7c\x91\x61\x81\x81\x75\x1f\xa7\xe3\x6f\x96\xaf\xea\x2c\xb7\xe3\x69\x46\xb0\x03\x60\x82\x1e\x59\xba\xf0\xa9\xbb\xe9\x50\x77\xd6\xed\xbf\x92\xd4\x89\x53\x43\x9f\xba\xeb\x8e\x27\xbf\x55\xd3\x7d\xbc\x0b\x88\xcb\x39\x14\xb2\xfa\xbc\x07\xe2\x92\x19\xd5\x2f\x6c\x4a\x3b\x26\xd5\x75\x98\xf0\x31\x49\x93\xf1\xec\xd0\xbd\x8d\x8b\xa3\xff\x5e\xe6\x8c\xb7\xdb\x51\x68\x9b\x67\xb0\x6a\x0c\xb2\x3f\x83\x8f\xf2\x92\x9d\x26\x53\xbf\xed\x41\x9a\x7f\xc6\x49\x52\x7c\xf4\xcf\x3f\xe3\x44\x98\x6f\x64\x78\x7a\xc3\x70\xc6\x7e\x15\x21\x55\xcb\xef\xbb\xf2\xfb\x22\x89\x7e\xad\x7c\x19\x79\xe7\x34\x23\xf2\xf5\xd1\xff\x47\xde\xbb\x7f\x37\x6e\x23\x09\xa3\xbf\x7f\x7f\x85\xcc\xbd\xcb\x26\x9a\x10\x2d\xaa\x93\xcc\x84\x34\xec\xe3\xf4\x23\xc9\x4e\x3f\xd2\x8f\x64\x3a\xd1\xea\xea\xc0\x22\x24\x71\x43\x91\x1a\x92\x7a\xc5\xd6\xff\x7e\x0f\x0a\x00\x09\xf0\x61\xbb\x33\x3b\xf7\xfb\xf6\xde\x93\x93\xb6\x08\x02\x20\x50\x28\x14\xaa\x0a\xf5\x80\xa2\x4d\xce\x76\x75\x75\xf9\xf4\x6b\xfd\xf4\xa2\xdd\x44\x58\x76\xbc\x65\x87\xf2\xc5\x4d\x02\x9e\x62\x30\x44\x61\x27\xf9\x9a\x2d\xca\x75\x56\x08\x27\x53\xa8\x7e\xf8\x39\x8d\xcb\xe2\x27\x96\x03\x3f\x2a\x07\xc2\x11\x9a\x03\x54\x7e\xe8\x10\x8c\xf0\xe6\x18\x8c\x30\x58\x7c\xb1\x88\xb7\x2e\xc4\x3b\x59\x22\xdd\xa9\x84\x51\x20\xcd\x37\x60\xee\xf4\x4e\xc9\xa7\xea\xeb\xf1\x1f\xe2\x20\x7a\x91\xed\xd3\xa0\xed\x51\x6d\x5a\xaa\x5c\xb5\x03\x95\x07\x4e\x2b\x16\x79\x2b\x74\xb9\xba\xea\x39\xa8\x00\x12\x0e\xab\x44\xef\x90\x7a\x9b\x03\x89\xbd\x03\xa6\xde\xe6\x48\x62\xef\x28\x23\x47\x88\x15\x23\x87\x3a\xa8\x04\x78\x7d\xe8\x6f\x7f\xad\xdf\xfe\x5a\xbd\x6d\xc3\x9a\x8f\x89\x72\x01\x79\xe3\xcd\xb3\x1d\x03\x0f\x60\xc9\x59\x06\x9d\x44\x01\x62\xb3\x96\x5e\x85\x5c\x5c\x68\xae\x90\x0b\x42\x7d\xd6\xef\xc4\x84\xb5\x01\x0b\x78\xeb\x83\x94\xce\x9b\x5a\x17\xb7\xda\x43\xdd\xc1\x32\x4e\x97\x7c\x19\xab\x2e\xd4\x92\x13\xc3\x9d\x55\xdc\x05\xd1\xf6\x45\x50\xc4\x12\x56\xb2\x81\x7c\x33\x61\xd3\xaa\x57\x58\x1a\xdc\xfd\xbe\xbe\x9a\x3a\x95\x02\x48\xdb\x54\x81\xe9\x84\x59\xeb\x5c\x6e\xba\x01\x5a\x48\x9e\x1d\xb5\xf5\x5e\x4f\x10\xd3\x58\xe5\xae\x7d\xb4\x6c\x1f\xd7\x11\x01\x6b\x85\xa0\xee\x86\xc4\x9c\x18\x53\xcc\xe9\xbf\xc3\x26\xf1\x14\xc9\x28\x66\xde\x3e\x4e\x92\x17\x62\x89\xa5\x68\xf7\xe6\x58\xb0\x64\xa1\x94\xd2\x7a\xb7\xa5\x26\x66\x84\xdd\xe3\x53\x47\x80\x94\x06\xb6\x1b\x0b\xa7\x4d\x8a\x15\xe5\x74\xcf\x71\xe2\x03\x9b\x97\x33\xd2\xed\xc4\x86\x8b\x8a\x4b\x69\xc8\x5b\x61\x4e\xc8\x41\x8b\x96\x70\x95\x78\xf3\x84\xd1\x1c\x82\xc5\x57\x41\x1f\x19\xce\x4c\x9d\x93\xb0\x82\xca\x24\x81\xf7\x8e\x58\x4b\xbd\x78\x7f\xd5\x15\x0a\xe0\x93\x2a\x22\x83\x6d\xeb\x5f\xbc\xa7\xe1\x01\x57\xc3\x89\x71\x71\xef\x37\xf6\xf5\x70\xe2\x61\x81\x10\x2e\x1b\x93\xa4\xb6\xcd\x6c\xdb\x49\x34\x5f\x3e\x2b\x5f\xde\x50\xc7\x1f\xff\x15\xab\xff\x47\xde\xb3\x67\xc8\xc2\xa2\x52\x13\x1e\xf4\xb1\xf0\xa0\x43\xf6\x00\x3c\x50\x50\x9a\x00\x49\x6d\x3b\xfe\x13\xa3\x7b\x2c\xec\xd2\xc7\xc2\x2e\x1d\xc6\xa8\xa9\x46\x82\xa5\xea\x40\x37\x25\xc9\x6f\xf3\x9c\xa5\xa5\xaa\x70\x9d\x2f\x8b\x99\x16\x78\x54\x17\xf4\xeb\x45\x1f\xe1\x91\x6e\x18\x6d\x98\x3f\x37\x35\x08\x19\xef\xfa\x73\xd3\xdc\xea\xfe\x6f\x87\xc6\xad\xab\x79\xd1\x19\x77\x14\x33\xa9\x73\x91\x1f\x83\x13\x6e\xe6\x00\x2f\xdd\x35\x18\xf1\xbe\xf7\xa2\x57\x7d\x42\xbf\xe7\xc1\x29\x99\x94\x98\x4d\x35\xf1\xc3\xb4\x66\x72\x2c\xdd\x55\xd5\xaa\x06\x24\x7c\xdb\x59\xc4\x3f\x0c\x6e\xa7\x00\x5b\x43\x80\xe7\xfc\x8e\x6d\xe7\xc2\xe6\x91\x62\xa0\x03\xfa\x5d\xbf\x08\x3d\xda\x31\x91\x5f\xfb\xe7\x10\x3e\x00\xe0\xda\x7e\xba\x71\x79\x57\x88\xb9\x4e\x65\xf6\xa4\xb6\x21\x41\xae\x6c\x21\x33\xd2\xbe\x73\x2e\x71\x0e\xbe\x5f\x1d\x97\xd1\x39\x0a\x53\x21\xcc\x4c\x12\x9c\x4d\xd1\x49\x64\x92\xfc\x27\xa0\x59\x43\x92\xc3\xd5\xb4\xab\x5d\xa9\x53\x9a\x9a\xcb\xc8\x48\xe1\x94\x78\xcc\xd1\x08\x0c\x2f\x52\xc2\x26\xfe\x34\x5c\x29\xe0\xf3\x9e\x5a\xc0\x17\xd0\xe7\x23\xaa\x23\x15\xc8\xaf\x75\xde\x44\x39\xfe\xb0\x0e\xa7\xe3\x7d\x8d\x87\x70\x5d\xd9\x2c\x64\x1d\x0a\x5f\x06\x6b\x75\xbf\x00\xa2\xcc\x45\x1d\xeb\x50\x9d\xa8\x5a\xe1\xd1\x82\xc9\x49\x5b\x4d\x81\x06\x7c\xe3\x0a\xdf\x6d\x91\x57\xa6\xca\xef\xd0\x65\xf6\x84\x73\x52\x38\x29\x87\x51\x46\x72\x0e\xa3\x84\xe4\x93\x5a\x4e\x6e\x4b\x16\x54\x5b\x14\x2e\x86\x6f\x1f\xbb\xa8\x42\x9c\xee\xb1\xd1\xd2\x88\x90\xc0\xbf\x45\x96\xbf\xa4\xf3\x95\x61\xe1\xa3\xdb\xb3\xda\xb6\x64\x5b\x4c\x23\x57\xe9\xc0\x00\x21\x11\xe8\x66\x35\x73\x10\xa4\x3d\x77\xb6\xb6\xbd\xd5\x62\xe4\x65\x58\x7e\xcc\x5c\x7b\x99\xb1\x40\x0c\x66\x2e\xfe\x6c\xc4\x9f\xa5\xd8\x49\x0c\x12\x00\xb4\x09\xc6\x9c\x4c\x32\x9c\x4c\x11\xa6\xb6\xed\x6c\xba\xb6\xd9\x52\x2b\xac\xc1\xaf\x06\x6c\xe2\x7a\x84\xe7\x78\x83\x97\x3a\x96\x97\x1d\xd0\xfa\x27\x41\xa5\xc1\x44\x00\xa4\x4d\x86\x9a\x74\x48\x1f\x65\x07\x2f\x53\xf9\x57\xe0\x42\x20\x71\xf2\x48\x2c\xba\x6a\x39\xac\x05\xbe\x16\x75\xb2\xf6\x62\x2e\x1b\xc1\xf1\x73\xe2\x87\xf9\x05\x49\x80\x50\x65\xa4\x67\xdf\x3a\x39\x4e\x10\x5e\x4d\xf2\xa1\x3f\x25\x93\x72\x32\x9a\x3e\x75\xfc\x61\x86\xdc\xec\x29\xd0\x85\x72\xe2\xeb\x25\xfe\x54\xff\x24\xad\x3e\x19\xb7\x3f\x79\x7b\xff\x37\xb5\x28\x96\x93\x29\x9e\x93\x51\x38\xef\x20\xb2\x73\xce\xa4\x4b\x6a\x49\x27\xf3\xa9\x3e\xbe\x58\x3c\x63\x28\xf7\x1b\xe5\xfe\x74\x8a\xc2\xad\x98\x56\x74\x3a\xb4\x42\xc5\x39\x0d\x6b\x87\xad\x32\x60\x33\x65\x86\x0e\xe3\x31\x79\xb8\x6c\xc5\x9d\x78\x58\xd4\xb2\x41\x8d\x42\x64\x52\xd9\xe9\x4c\x4f\xab\x3a\x17\xb7\xb9\xb1\x57\x93\x72\x8a\xb0\xb9\x27\x4f\x38\xe9\xf4\x46\x3c\x4f\x38\xff\xdc\xd4\x57\x71\xce\xa7\x4f\xc7\x65\x58\xeb\x98\x2d\x41\x1e\xfd\xd4\x69\xd3\x26\xdc\x12\xbd\x0c\x12\x21\x7d\xb6\x6d\xf5\x53\xc5\x7e\x9c\x54\xef\x70\xf5\x4a\x99\x65\xd6\xc2\x6a\x8f\x74\xa2\xd4\xd2\x93\x83\x88\x85\x28\x72\x17\x1d\xb0\x78\xfc\x55\x3c\x1e\x1b\x76\x06\xbc\xcf\xe7\x49\x56\xb0\xa2\xfc\x90\xed\x7b\xd4\x71\xfe\xf9\x08\x53\x32\xac\x14\xaa\x8a\x43\x84\x80\x26\x45\x97\xbf\x53\x9d\x19\x26\x9e\xa4\x53\x4e\xe2\x55\x78\x78\x99\xa1\x1f\x34\xa5\x52\xf6\xc8\x27\x05\xe0\xfd\xc1\x08\xc5\xe8\x24\xf8\x6c\x24\xad\x58\x56\x75\x2c\xd6\x44\x32\x8b\x87\x61\x89\xc2\xd5\x85\xb0\x12\x5a\x61\x4a\x12\x2f\x8e\x0e\x48\x73\x66\xef\x9b\xa7\x08\xf4\x68\x9e\xa8\x95\x7e\xb9\x96\x8c\x70\x82\x57\x30\xf3\x6d\xd7\xa4\x6b\xed\xf5\xf6\x92\x8c\xc2\xe1\x70\x8b\xea\x2d\xd7\x51\x7f\xb2\x55\xdb\x30\x52\x70\x72\xdd\x39\xca\x49\x34\x99\x4f\x71\x63\xe6\x39\x82\x98\xae\x79\x3d\x55\x9c\x56\x4f\xc7\x21\xc3\x0e\x25\xf1\xd3\xd8\x4d\x9f\xa6\xe8\x82\x63\xfe\x8a\x50\x0e\x63\x5c\x90\x2d\xf8\x81\x71\x48\x28\x74\xb8\xcd\xb3\x7d\x90\x60\x11\x48\xfd\x2d\xe8\x41\xf5\xe1\x15\xac\xe4\x85\xc5\xa4\x98\x8a\x00\x35\x41\x76\x6a\x83\xee\xa3\x70\x27\x7c\x10\x74\x44\xba\xa3\xea\x48\xc5\xd9\x69\x8d\xcd\xeb\x84\x63\xe8\xba\xb9\xc1\xef\x2d\x59\xf9\x9a\x2d\x44\xa6\x32\x9a\x1f\x67\x4e\x0e\x81\x60\x21\x05\x5c\x17\x78\x73\xc0\xa0\x33\xa7\xb8\x24\x89\x22\x36\x0a\x77\x92\x6e\xfc\x52\x15\xb6\x64\xa5\x40\x0b\xbc\xcc\xa5\x7a\x3c\xd8\x76\xe1\xfa\x17\x55\x7f\xd2\x1d\x2d\x01\x85\x7e\x47\x87\x11\x52\xb1\x58\xa3\x6a\xe5\xaa\xbe\x78\xfd\xf9\xe5\x48\xd4\xd8\x10\xa7\xac\x5f\xa1\xf3\x79\xb8\x75\xc9\xe6\xa9\x13\x55\x6b\x5c\x0d\x09\x9d\x4e\x55\xa8\xfa\xf2\x42\x1f\x9a\xea\x6c\xc9\x47\x34\xec\x1c\xd1\xb2\x1a\x51\xd5\x70\xb8\xec\x1b\xd1\x4a\xdb\x59\xd5\x88\x96\xdd\x23\x02\x6b\xf2\xfc\xee\x6e\x7b\x21\xc2\x56\x90\x15\x8e\x49\xce\xdf\x68\x48\x97\x3e\x8c\x74\xb1\x42\x3a\xda\x40\xba\xda\xee\xa4\xc7\x45\xa2\x81\x00\x61\x5f\x26\x1b\xdd\xb4\xb6\x49\x99\x85\xa0\x47\x05\x87\x0e\x66\x9f\xed\x6b\x9f\xae\x3c\x06\x9c\x67\x3d\x83\xcc\x4c\xb9\x6d\x9f\x49\xce\x58\xbc\x7f\x9d\xf1\x7d\xe2\x48\xb8\x17\x61\xd1\xab\x28\xd7\x1c\x74\x2d\x74\x55\xed\x1b\x7d\xa7\x81\x50\x1e\x34\xb7\x54\xfd\x4a\x5d\x45\x15\xac\xac\xf9\xee\xc2\xcb\xb3\x3d\x2e\xbc\x1a\xf6\xc2\x9c\x4f\x57\xf4\x34\x36\x68\x8c\xc2\xae\x9e\x92\x87\xa4\xa7\x56\x2c\x25\x0b\x85\x2b\xdb\xce\x6c\x7b\x65\xc4\x85\x96\xeb\x55\x94\x87\x99\x72\x00\x4e\x44\x70\xb1\x59\xfd\xee\x43\xb6\x57\x22\x7e\x0d\x72\x2e\xe8\xb7\xce\x65\x83\x30\xb4\x4e\xd7\xa6\xd7\x31\x67\x03\xf4\x93\xbb\xf1\x6e\x32\x9a\x86\x1d\xbe\x79\x7a\x2d\x9d\x3f\xd1\xd1\xac\xdd\x1d\xbb\xe7\x53\x0c\x3e\x25\x5f\x37\x2c\x0e\x25\x57\x5a\x81\xbe\x81\xf4\x95\x87\x00\xac\x1d\x8d\xd8\x6b\xb6\x63\x89\x6d\x3b\x66\x01\x19\x09\xa1\xa3\xae\x2b\xfb\xfd\x31\x52\x75\xab\x02\x65\x58\xcb\x1a\x9d\x72\x49\xef\x62\x74\xc5\x02\x7f\x34\x64\x32\x2f\xec\x48\x4f\xa2\xe2\x34\x07\x21\xbc\xc5\xe1\xc6\xa5\x1e\xbf\xe3\x23\xa5\x64\x77\x5d\xf3\xcb\xf2\x90\xc0\xb9\xce\x5a\x41\x70\x20\xa3\x57\x48\x79\x96\xea\x93\xc3\x69\x4b\xc4\x44\xa7\xf0\x3e\xe6\x93\xa1\xdb\x54\x9b\x32\x89\xcd\x2e\x5d\x52\x62\x0e\x2a\xad\xe8\xaa\xfd\x8d\x20\x6d\xcf\x4e\x6b\x71\xee\x8f\xb8\x84\x4d\xf1\x33\x88\x68\x6b\x2c\x6b\xb3\x9d\xb1\xaa\x52\xf1\xa5\x7b\x0c\x3b\x96\x08\xfd\x61\xe1\x5b\xf1\x83\x45\x1f\xb2\x7d\x30\xf4\xd5\x7a\xaa\x7d\x72\x25\x96\x39\x30\x37\x8f\x6a\xf3\xb9\xd1\xe2\xd0\xae\x7f\xa8\x6b\xcb\x28\x7f\x8d\x7d\x29\xc3\x20\x55\xd6\xc8\xba\x6a\x58\xed\xb2\x87\xa8\x24\xba\xa5\x8f\xd5\xe6\x49\x5c\xf1\x87\x3d\x17\xf6\x8d\xfe\xeb\x28\x75\x10\x23\xce\x12\x76\xcd\x22\x8e\xf4\x43\x63\xfb\xce\xcc\x82\x61\x09\x1d\x7d\xdc\xf0\xc5\x31\xf2\x06\xe9\x08\x6c\xe0\x78\x18\x3f\x85\xb4\x1d\x4d\x85\xac\xe5\xa6\x5e\x2e\xf2\xb1\x7a\x4b\xf9\xf7\x06\xfe\xc6\xae\x85\x2c\xd9\xe2\x11\x4a\x4e\x53\xd6\x98\xe5\x2c\x8d\x58\x0e\xb1\x15\x57\x34\xaf\x6c\x53\x35\x72\x89\x29\xaa\xd9\x85\xee\xc0\x1e\x97\x64\xa4\xdc\xa2\x47\xea\x04\x69\x18\x59\x87\x22\x37\x9f\x1f\xb2\x8b\xac\x25\x9d\x15\xe4\xa1\x45\xaa\xe3\x34\x5a\x38\xe3\x44\x31\x2c\x2e\x73\xdb\x76\x72\x52\x88\x23\x45\x1e\x43\xed\xb1\x85\x3a\xc6\x24\xc3\x7c\xe8\x43\xf8\xbc\xdc\x1d\x37\x00\xa3\xa6\x57\x63\xac\x1c\xa7\x62\x68\x56\xa4\xf1\x7e\x32\x9a\x56\x9c\x0f\x9f\x1e\xf5\x0a\xba\x13\xca\xba\x8a\xea\xb7\x7a\xab\x67\xbd\x6d\xf5\x27\xbc\xb2\x65\x3a\x92\x6d\xc5\x1d\x29\x36\xf1\x4b\x80\xb4\xf5\x52\x7e\x4e\xe3\x79\xef\x51\xdb\x1f\xad\xb3\x6e\xbd\x69\x38\x92\x08\xd3\x85\x89\x78\x3d\x0d\xe7\x77\x77\xce\x9c\x1c\x54\xc8\x41\x15\x88\x04\x61\xea\x25\x2a\x06\x63\xdf\xa8\xb5\xd0\x8a\xf5\xf7\xa8\x27\x8a\x05\xe6\x6f\x8c\x7d\xb0\xc1\x73\x9d\x05\xe0\xff\x88\x66\x98\xe2\x15\xae\xa0\x85\x37\x38\xc2\x5b\x29\xb9\xd1\xa6\x91\x5f\x47\x50\x9a\xa6\x31\x8a\xce\xb0\x74\xc7\x41\xaa\x57\x8c\x4c\xa6\x92\xce\x08\xe6\xed\xcc\x17\x8a\x9d\x12\x76\x44\x79\x66\xd2\x58\x10\xc1\xaa\x58\x29\xaa\x94\x94\x61\x47\x20\x8c\x3e\x99\x46\x29\xa6\x3a\x45\x16\x90\x8b\xcb\x61\xb7\xb8\x93\x02\x55\xca\x20\x59\x69\x76\x91\x57\x4a\x8e\x7c\x92\x4d\x39\xb8\xc0\xe2\x45\xec\x46\x5e\xa4\xb2\xa1\x16\x32\xc1\x70\x13\x9b\x55\x10\x8f\x2a\xf9\xba\xd8\x85\xa3\x30\xa9\xfa\x0e\x5d\x37\xa9\xbb\x4c\x00\xb9\x8b\xea\x53\x8f\xeb\x5f\xda\xdf\x28\x91\xc5\x80\x1c\x4c\xa5\x13\xa4\x43\xdf\xf0\xb4\x6c\x6d\xc2\x2b\xed\xd8\xea\xda\xd5\x87\x1d\x4d\xf4\xa3\x8d\x0c\x7d\x6c\xa4\xe4\x69\x93\x49\xf9\x42\x1b\x8d\xf1\x9a\x30\x84\xf5\x04\x3f\xf2\x0e\x0d\x78\x7b\x78\x4f\x11\x8e\xfb\x58\x1f\xd1\x10\xe1\xb8\x43\xa2\x79\xb7\x2d\x3b\xb8\x80\x8e\xfd\xde\x11\xa8\xd4\x52\xd7\xd5\x8f\xad\xae\x6f\x40\xe5\x7a\xd0\x92\x43\x3a\x43\xf1\xf2\x4f\x9d\x35\xe6\xac\xcc\x97\x1b\xec\x51\xc7\x35\x60\xc7\x86\xac\x59\xf3\x26\xc7\x13\xb1\x8a\xe7\x51\x5a\x74\x0d\xce\x2a\xc6\x54\xc5\x6e\x3d\xe6\x5c\x1e\xfa\xa6\x2d\xf8\x97\x5c\x2b\xe2\x26\x4b\x8d\xdb\x44\x04\x37\x70\xad\x89\xcd\x5d\x08\xd5\x8e\xc7\xb1\xec\xa4\x5c\x5a\xb0\xef\xfa\x9b\x32\xd8\x77\x6b\x63\x5c\xf8\x75\x9a\xe0\xda\xf4\x79\x14\x96\xf7\x51\xa5\x52\x53\xcf\x75\x8a\xd2\x60\xe7\x06\x99\x3b\x99\x9e\xb9\x33\x5e\x40\x78\x53\xef\x40\x3a\xf7\x60\x15\xbe\x83\xd7\x89\xa3\x43\xa8\x46\xd6\x9a\xf5\x0f\x26\x3f\xd6\xa7\x61\x35\xe0\xd7\x0c\x65\xa2\x0b\xdb\x7d\x1d\xd4\x68\x64\xb6\x4e\x32\x1a\x49\x73\xed\x8e\xbd\xa8\x9c\xb2\xe4\x59\x4a\xf3\x82\x3d\xff\xf8\xcb\xac\x72\x7e\x95\xf8\xcb\xeb\xbc\x88\xa3\x9f\x61\xf3\x8b\xbe\xb4\x53\x0b\x22\xcd\x35\xf7\x06\x8d\xa2\xcf\x9f\xe2\xf9\xef\x1d\x06\xb2\xa1\x34\x91\xd5\x83\x07\x4c\x9a\x25\x70\x61\xd0\x2c\xf3\xa7\xd3\xce\xa8\x02\xba\x70\xd7\x11\x77\x42\xdd\xea\x31\xc7\x12\xc1\x2a\x2d\xe4\x94\xea\x46\x02\x77\x85\x10\xc0\xc2\x37\x42\xee\x2c\x4d\x91\x23\xe6\xe4\xd0\xb6\xfe\x5c\x1a\x92\x3f\x4f\x68\x51\xf4\xda\x12\x4b\xce\x33\xa2\x25\x95\xf5\x95\x36\xa4\xeb\x4d\xd0\x88\x48\x77\xd5\x43\xd5\x20\x54\xe5\x77\x10\x0c\xf2\xea\x95\x32\x31\x0b\xde\x54\xbf\x7a\x9a\x89\xd0\x95\xb2\xdd\x4f\x0f\xd5\xd6\x3f\xf2\xa9\xaa\xfc\x52\xfd\x32\xe1\xa1\xb0\xa2\x7d\xeb\xaa\x32\x11\x84\x55\x0c\xb4\xda\x02\x9f\xed\x2b\x71\xc6\x80\x66\x75\x81\xa7\x16\x42\x3a\xf6\xd7\x06\x1b\xb8\x11\xe9\x80\xd5\x7e\x6a\xcd\x90\x88\xca\xc4\xf4\x4b\xdd\x2d\xda\x5e\x76\x8a\xa5\x6e\x7b\x7e\x68\xe5\x0a\xb1\x60\xe2\x91\xe1\x9f\x66\x34\x6c\xf5\x82\x4d\x13\x7f\xcd\x17\xce\xb4\xac\x75\xcc\xad\x5a\x1d\x35\x72\x09\x94\x07\xa4\x11\x38\x82\x4c\x38\x85\xd6\x55\x41\x55\x12\x86\xda\xb3\xd5\x41\xad\x18\x4d\xfa\x72\x41\x00\x08\x3a\x2f\x95\x15\xb0\x4e\x4e\x30\x6b\x39\x6a\xcb\xad\xa4\x99\xae\x5e\xfa\xa0\x4b\x6d\x77\xcc\xeb\xc4\xe9\xf2\x7a\xc7\x72\xba\x64\x0e\x6d\x05\x7a\x6c\x77\xde\x35\x49\xc1\xa6\x51\x29\x56\xea\x17\x63\x92\x2f\x6e\xa0\x62\x4e\xf7\x71\xba\xfc\x14\xaf\xd9\x9b\x62\x46\xe2\x21\xa0\x34\x10\xfd\x4f\xc7\x0d\x93\x41\xec\xf0\x7b\x11\x6c\x50\x9d\x8f\xcd\xdb\xd9\xfa\x86\x20\x15\xd7\xc7\xb9\xf8\x93\x89\x3f\x05\x3f\x30\x05\x27\x5a\xb6\x38\xd1\x15\x29\x27\xc9\x14\x6f\xc9\x0a\x98\x3c\xcd\x39\x7c\xb2\x9d\x42\xbc\xed\xed\xb4\xca\xf7\x4f\x56\xc0\x9c\x86\x42\x20\x8b\x50\x95\xde\x34\xba\x12\x06\xc8\x84\xc4\x57\x11\x19\x05\xce\x99\xae\x21\x52\xd7\x06\x0c\xd5\x91\xbf\x09\xd3\xf3\x56\xbb\x2e\x05\xa3\x7e\x31\x60\x29\xf0\x95\xfc\x9c\xe3\xdf\x43\x46\x6a\x70\x51\x74\x5b\xc0\x85\x0c\x2f\x50\x2c\xb1\x93\x40\xdc\x61\xd0\x8e\x8a\xe1\x9c\x91\xf8\x2a\x87\xfa\xae\x93\xc1\xdf\xa1\x78\x44\x4f\x1d\x67\x3b\xcc\x61\xca\xe8\xdc\xc9\xe0\x87\x7a\x46\x41\x6e\xdb\x16\x4d\x12\x98\x8e\x68\x10\x64\x5a\x91\xe8\x2a\x18\xa1\x20\x27\xab\x50\x68\xff\x39\x9c\xc2\xf4\x8c\x6c\x6d\xdb\x99\xbb\x24\xc2\x00\xb8\x39\xc2\x29\xd9\x62\x01\xb6\x99\x54\x48\x93\x39\x9e\x5f\xd2\x89\xcf\xc1\xcb\xff\xf0\x5a\xf3\x0b\x3a\x19\x89\x82\x11\x2f\x68\xaa\x64\xcd\xb0\x2c\x5d\xd6\x42\xfa\xb5\x1a\xe7\xa0\xaa\x2b\x76\x1c\x91\xdb\x13\x97\x7b\xeb\x0b\x35\x10\xce\xc9\x3c\xa4\x97\xc4\x0f\xe9\x70\x88\x14\xeb\x68\xd8\xe9\xd3\xa1\x3f\x85\xc5\x63\x1c\xda\x00\x69\x71\x8f\x01\x17\xeb\x4b\x61\x70\xc3\xbb\x32\xb1\x2e\x26\xa3\x30\xbe\x28\x74\x1f\x82\x62\x12\x4f\x27\xa3\xe9\x25\xd9\x88\x95\x24\x22\x4e\x79\x4a\x62\x84\xe5\xbb\x0b\xb2\x04\xf5\x45\x8c\x42\xa3\xc6\xa8\xbe\x68\x5f\x90\x14\xcf\xc8\xd9\x28\x9c\xd9\xf6\xe2\x72\x14\xa2\xc5\x70\x88\x05\xdf\x47\x08\x29\x26\x0b\x88\x3a\x27\x1f\xa5\x32\xa4\x9a\xb3\xc0\xe0\x1d\xc9\xa1\x3b\xd5\xcd\xee\x42\xbb\x66\x44\x3b\xd7\xd5\xfb\xdb\x41\x7f\x8b\x33\x35\x94\x05\xc2\xbb\x33\xd5\xf3\x0e\xe1\x04\x20\x44\x26\x29\xce\xa7\xb8\x20\x85\xcc\xc2\x9f\xe2\xdc\xf5\xa5\x1c\x28\xc0\x56\xd5\x1c\xe1\xfa\x73\x02\x98\xc7\x4e\xe5\x10\x6f\x73\xe8\x20\x52\x4b\x56\x4a\xfe\xe3\x57\x61\xea\xed\x14\x8a\xea\x75\x5d\x7f\xb0\x0d\x3f\xac\x2c\x7c\x44\x10\x01\xbb\xd5\x9d\xb8\xbf\xf8\x94\x09\xba\xe2\x14\xf8\x28\x47\x0a\x41\x08\x1e\x75\xab\x62\xdb\x4e\x46\x1e\xf0\xd5\x38\x6a\x3a\xf3\xed\x24\xe3\x58\xce\xff\x90\xc9\x14\x35\x28\x9b\xb3\xc6\xfc\x0d\x3e\xe0\x47\x7c\xfc\x2d\x7d\xfb\x2a\x4e\x12\x0b\x21\x84\xa3\xc9\x71\x4a\x0e\x78\x35\xa1\x53\xb2\x56\x17\x64\x82\xd7\x0e\x56\x58\xc5\x29\x0a\x22\xac\xdd\x17\x04\x49\x87\x39\xaf\xa0\xd6\xfd\x1c\x44\x6d\xbb\x65\x1e\xf0\x61\x4f\x24\x64\xdf\xe4\x21\x84\xcb\xde\x75\x92\xa8\xad\x5c\x45\xbb\xac\x5c\xbb\x1c\x23\x12\xac\x57\x65\x34\x21\xde\xd7\x4f\xbf\x40\xe1\x65\x3a\x91\x3c\x1c\xd5\xa9\xc9\xf6\xc2\xb5\x5d\x6d\x7e\x40\xab\x60\x4f\x61\x3b\xe8\x2c\xd5\x1f\xfb\xe2\xcf\xd6\x89\xcd\x3b\x51\x1e\x67\x64\x84\x0b\xe2\x87\x45\x6d\xe6\x50\xb8\x2e\x6a\x93\xa5\x62\x08\x94\xd3\x80\x2b\x8d\x22\x39\x3b\x27\x9f\x14\x53\x1c\x4f\x8a\x29\xea\x88\x78\x3b\x29\xa6\x24\x73\xdd\x9a\xa6\x08\x5b\x89\xbc\xf5\xc5\xc6\xf8\x27\xbc\xd7\x29\x29\x6a\x4b\xbc\x8e\xf8\x56\x4d\xeb\xde\x82\x95\xc0\x15\x3a\xb5\x59\x50\xed\xe9\x2e\xe5\x94\x46\x40\x01\x8f\xed\x68\xb2\x85\xd4\x62\xca\x5f\x34\x8d\x58\x2e\x79\x08\x56\xab\x18\xf4\x70\x80\x5c\xc0\x58\xc7\xe9\x92\x8f\x54\x05\x25\x49\x6a\x46\x43\x25\xf0\x85\x3c\x83\x0f\x36\x77\xad\xc1\x70\x50\xed\x84\x60\x60\xb9\x4e\x32\x2c\x91\x6b\xad\x0b\xab\x15\xe5\x4d\x1b\xdc\xc3\x17\x2f\xa0\x1e\x00\xa5\xba\xd5\x60\x53\x85\xe6\xc0\x94\xa8\x3a\x35\x30\x66\xb6\x19\x0b\x85\xcc\xb6\x59\x43\x09\xda\xcb\xce\x9a\xd6\xd6\xb8\x6a\xa0\x76\xca\xad\xe0\xb2\x03\x83\x41\x96\x0c\x9a\xf4\x28\x08\x9a\x1f\x38\x85\x9d\x53\x05\x5f\x84\x9c\xee\xc5\x6c\x2b\x8b\xf5\x6a\xbe\x02\x70\x7d\x4c\x74\x14\x47\x1d\x8d\x5b\xda\x0f\xe5\x18\xdf\x4c\x9d\xf8\x85\x17\x42\xf7\xa9\xc3\x4d\x13\x4f\x65\x2a\x67\xdb\x71\x53\xf1\xcc\x45\x77\xe0\xed\xb4\xb8\xef\x71\xce\x22\x38\x67\xcd\x58\xf0\xd5\x25\x42\x68\xd8\xae\xd6\xef\x85\x8b\x78\x2a\x9d\x89\x1b\xca\x2f\x5d\xd8\x6a\x51\x69\xce\x0d\x87\xd5\x28\x44\x38\xb9\xc9\x14\x6b\xfa\x1a\xfd\x90\x4a\xb7\x6b\xd8\x9d\x08\xf4\x35\x8c\xdc\x2e\x61\x79\xb5\x28\xdd\x6d\x81\x02\x4e\x36\x19\x12\x1a\xe2\xcd\x1b\xc1\xe1\x08\x13\x5f\xd7\xbe\xa7\x1b\xdf\x95\x42\xc5\x23\x2e\xbf\xee\x53\x1c\x1c\x2d\xd7\x29\xaf\xac\xb1\x15\x58\x16\x42\xd8\x01\x25\x42\x6d\x9c\x67\x21\x54\x5d\x36\xcb\x2f\xeb\xa6\x7b\x14\xd5\x3e\xac\x72\x79\x5b\x01\x2d\x61\x0d\x8f\x63\x90\x85\xf8\x0f\xad\xfd\x03\x7d\x9f\x5a\x41\x81\x38\x10\xef\x53\x3d\xb4\xe0\xdd\xd0\xd9\x1c\xe2\xe2\x21\xb7\xd5\x56\x94\xc0\xc9\x83\xee\xa1\xd3\x3e\xc4\xa9\xe8\x75\xb7\x25\x5e\xed\xb9\xd3\x35\x02\x21\x98\x18\x09\xf3\xd1\x49\x5a\xc4\x76\x4f\x56\x0a\x5e\x45\x98\x28\xb1\x76\xa5\x47\x14\x04\xd1\xeb\x91\x21\xa7\x40\xbc\xb9\xb7\x6e\x9c\xce\x93\x6d\xc4\x7e\x63\x79\x06\xd5\xe7\x0f\x55\x8f\xd8\x86\x93\xa2\xb4\x84\xd3\x48\xb8\x46\xb7\xdb\x08\x3e\x51\x35\x83\xe0\x8f\x90\x94\xc7\xf3\xa5\x40\xd0\xc3\x97\x1c\xeb\x98\x99\x1a\xfd\xd8\x80\x3d\xe1\x99\x8f\x53\xb2\xe9\x0a\xa5\xb9\x42\x60\x32\xa0\xb8\x00\xb4\x32\xa2\x3e\x72\x26\xda\x97\x5e\xda\x6a\xd1\x96\x78\x81\x67\x60\x48\xb8\x23\x43\xfe\xe7\x48\x46\xe1\xb1\xe6\x23\x8e\x10\x32\xb1\xe9\x9a\x36\x39\x4e\x39\xae\x2f\x49\x39\xe1\xbf\xc1\x14\x57\x0e\x91\x8b\x22\x33\x52\x39\xee\x2c\x31\x17\xf6\xe5\x3b\x67\x51\x35\xf0\xa1\x83\x9d\xac\x48\x0f\xce\x02\xef\x10\x42\x61\x64\xdb\x67\x5c\x0e\x9c\x5d\x8e\xa0\xa3\x11\xc2\x3b\x30\xb6\xd8\x91\x11\x42\x78\x46\xf8\x58\xab\x37\x04\xc6\x0c\x6f\x7d\x84\x29\xd9\x0d\x67\x00\x00\x6a\xdb\xce\xe8\x8c\x90\xdd\x15\xad\x6d\x33\x77\x28\xe0\xf5\x30\x25\xca\xfc\x63\x4d\x76\xf8\x86\xcc\xc0\x7c\x7d\x7b\xe5\xac\xc9\xce\x4d\x9f\x52\x5e\x84\x02\xfd\x69\x08\x7f\xf9\x30\xe4\x3d\xd1\x0d\xff\xfa\x9a\x0f\x71\x77\x01\x05\x6b\x3e\x3a\x84\x9b\xf0\xbe\xc1\xeb\xe9\x29\x5e\x38\x2b\x9d\x48\x00\x26\xef\x49\x66\x94\x72\xb1\xe1\xca\x6c\x3e\x19\x4d\x83\x46\x15\x7c\xdd\x6c\xe6\xb7\x9b\xf9\x8d\x66\xc2\xb5\xa3\x15\x5a\x93\x4c\xf6\xf8\x7a\x2a\x64\xad\xce\xf7\x66\xb7\xc2\x55\x10\x42\xe2\xa3\xdb\x3d\x59\xf5\x04\xf1\xbc\xee\x7e\x23\x45\xb6\x77\x24\x3d\x77\xc6\x4f\xd3\xa1\x8f\xf0\x0b\xe2\xf0\xbf\xea\x39\xec\xe9\x91\x74\x44\xff\xdb\xe3\x6b\xfc\x8e\x43\xbb\xf3\x4b\x7d\x2d\x5e\x48\xc1\xf2\x4f\x0c\x1e\x53\x72\x3d\xdc\xe3\xbe\x21\xee\x87\xf4\x69\xda\x3b\x9c\x6b\x97\x3e\x4d\xc1\x9c\x11\xdd\xae\xbc\x26\xe1\x20\x73\x80\xcc\xcb\x07\xce\xb4\xa4\x3e\xd3\x5e\x93\x97\xb5\x5e\x3c\x5c\x79\x25\x74\xf3\xda\xe9\x9b\x55\xdf\x9c\xba\xe8\x07\x7e\x29\xf8\x3a\x9c\xdf\xdd\x39\x39\x59\xa1\xd3\x49\x37\x3c\xc9\x45\x74\xfe\x27\xcf\xb3\x74\x11\x2f\x65\x34\x0b\x11\xf0\x3c\x18\x5c\x97\x83\x84\xd1\xa2\x1c\x64\x29\x1b\x40\xf4\xf3\x15\x2d\x06\x65\x36\x58\xd1\x1d\x1b\x94\x2b\x36\x68\x53\xcd\x81\x98\xf0\x40\xa5\x86\x88\xbc\x27\xa1\x79\x01\xdc\x4f\xfd\x85\xeb\x4c\x0b\xa0\xf5\x81\xf4\x67\x61\x8a\x3f\x91\x5c\x40\x15\x7f\x24\x79\x37\xf4\x86\x79\x0f\xb4\x7f\xea\xc3\xa1\x61\xdf\xfa\x3c\xe7\x8c\xd6\x1b\x32\x0a\xdf\x5c\x7c\x52\x64\xf7\x8d\x9a\xf3\x5b\xe2\x7c\x9a\xbc\x99\x7a\xbb\xbe\x0f\xa2\xf3\x8f\xf8\x55\x1f\x46\xbb\x6f\x9f\xfe\x14\x3e\x17\x8a\xd5\x57\xe8\xf4\x2f\xc1\x15\xfc\x1c\x9d\x9a\xda\x00\x48\xb4\xff\xe9\xb8\x61\xaf\xf2\x6c\x2d\x04\xa6\x2e\x4b\xd9\x33\x08\xa4\x51\x45\xe0\xb7\x86\x16\x0a\x29\xa7\xaa\x16\xb3\xce\x48\x09\xfa\x14\xdb\xb6\x5e\x56\x0f\xe0\x5a\xae\x6a\x9f\x5b\xe8\x92\x8c\xee\xee\xba\x18\x8b\x2b\x7e\xcc\x06\x7f\x25\x95\xe6\xce\xb6\xcb\x4b\xcb\xff\xf6\x2f\xa3\x91\x3f\xf2\x2d\xdb\x2e\x2f\xac\xf1\xe8\xd9\x5f\xfc\xf1\x33\xfe\xe4\xb0\xfa\xaa\xbd\x60\xe5\xe7\xeb\x9a\x55\xe5\xa2\x63\xcb\xa8\xc3\xa8\x60\x8a\x6f\x57\x7a\xc2\x19\xef\x00\x60\xfc\x89\x8f\x2d\x27\x07\x50\x12\x88\x07\x43\x51\xc1\x31\xda\x3b\x08\x9a\x5d\xe7\xf8\x3f\x74\x24\xfe\xef\x6a\x26\xd0\x96\xec\xa0\xfa\x27\x78\xe8\xaa\x06\x39\x78\xe9\x0d\x4b\x9a\x5f\xb8\x6e\xbd\x40\x41\xff\x24\x3a\x38\x3b\x03\xf4\xa7\x47\xcc\xac\x8b\x3f\x3d\xdd\x3b\xb5\x54\x70\x47\xb0\xc1\x1f\x39\xb9\x07\x87\xd1\x58\xd6\xea\x32\xb5\x8d\xa8\x9c\xb1\x85\x3c\x5c\x1c\x62\x80\xdb\xaf\xe3\x94\xbd\x60\x49\xbc\x8e\x4b\x96\x0b\x17\x82\xd2\x2b\x36\x49\x5c\x3a\xe9\xdd\x9d\xf5\x9f\x69\x1d\x89\xa7\xa5\x32\x88\x54\x3b\x0b\x85\x43\x9f\x80\x7f\x61\x85\xd5\x19\xb2\x6d\xa3\xc0\xfa\xcf\x12\xf0\x1c\xb4\x85\xf0\x10\x2a\xe5\x8b\x52\x00\xa9\xa4\x2d\x9a\xa8\x72\x77\xe7\x14\xc4\x37\x20\x25\x2a\x8b\xaf\x89\x91\x66\x1d\xe1\x79\x73\x06\x70\x90\xb2\x00\xaa\xb5\x3d\x09\x5e\xf1\xfd\xba\x25\xf7\x84\x3d\xc5\x11\xaf\x32\x27\x45\x38\xaf\xf5\x42\x73\x45\xca\x36\x24\x9f\xcc\x81\x6a\xcf\x31\x67\xce\x36\xd5\xd6\xb4\xfe\xcd\x3a\x23\x1b\x4e\xcc\xa4\xcb\xc0\xa6\x1a\xa1\xf0\x9b\x58\x2a\x93\x82\xb1\xd4\xd1\x2c\xa4\xff\xdb\x4a\xdd\x0e\x76\x92\x1c\x67\x09\x51\x65\x93\x5e\x41\x5d\xc7\x6c\x48\xcc\xc8\xa9\xc0\x82\x1f\xe9\x09\xb4\xc5\x5a\x46\xa6\xfa\x5a\x17\x89\x3b\x00\x3f\xa4\x17\x4b\xdd\x06\x81\x91\xe5\x84\x2a\xe0\x72\xf2\x84\xc7\x67\x44\x59\x29\x5c\x39\x4a\x99\x04\x17\xb3\xce\x93\x2a\x63\xa8\xea\x98\x26\x03\x2b\xdd\xae\xcf\x23\x96\x5a\x03\x40\xd5\x62\x10\xa7\x83\xe7\x1f\x7f\x19\x44\xb4\xa4\x90\x49\x74\x91\x6d\xd3\x68\x40\xc5\xeb\xc1\x7f\x3e\x79\xe2\xf2\x4f\xba\xd6\x93\x41\x96\x0e\x92\x38\x65\x03\xcb\x75\x7c\x77\x8e\x5c\x6b\xe0\x3c\xb1\xdc\x8d\x6b\x3d\x41\x83\xfd\x2a\x9e\xaf\x06\x71\x31\x48\xb3\x72\x90\x2d\x00\x5b\x06\x8b\x2c\x5f\x7b\x16\x9f\x2e\x05\xf5\xfa\x68\x8a\x02\xf1\xfb\xe0\xd5\x3b\x7a\xe6\xc0\xb9\x30\xc7\x1b\x84\x9b\xe5\xbe\x28\x17\x12\xc5\x40\xb3\xbb\xed\xbf\x89\x06\xd0\x29\xa0\xfd\xfb\xf8\x8c\xf8\xb6\x6d\xc2\xa5\xce\xa4\x4a\x93\x92\xe5\x29\x85\xd4\x73\x0e\x4c\x18\x0f\x8a\x32\x62\x3b\x0f\x0d\x36\x34\xce\xdb\xd0\x69\x00\x80\xb3\x1f\x34\x1d\x64\x51\x9d\x95\x75\xa1\x00\xeb\x58\x6e\x35\x8e\xa1\x8f\x5c\x0b\x05\x03\x09\x2f\x30\x3d\x68\x2c\x2e\x19\xa3\xc5\xc4\xa1\x10\xbb\xaa\x05\x21\xbe\x04\x5d\x10\x5a\x4e\xa8\xfb\x58\x18\xe9\x77\xfb\x7d\xf8\x05\x98\x3f\x03\x24\x0b\xcf\xff\xef\xc1\xd3\xff\xeb\xdc\x2b\x59\x51\x3a\x33\x74\x25\x16\xae\x76\x06\x87\xeb\xe2\xc0\x61\x64\xa6\xd0\x31\xb4\x10\x7e\x46\x6a\x74\xfc\x53\x4b\xdd\x2a\x1f\xcb\xe9\x05\x6a\x11\xf7\x34\x4f\x9d\x27\x7f\x5f\xb1\x74\xb0\x2d\xf8\xca\xd5\x13\xc3\x0a\xf6\x2a\xff\x0d\x8b\xcb\x15\xcb\x07\x37\x09\x4d\x7f\x1f\x64\xf9\xc0\x4a\xb2\x7d\x38\x67\x69\xc9\xf2\x70\x15\x2f\x57\xd6\xa0\xdc\x6e\x12\xbe\x58\x90\x40\xf7\x89\x3b\x73\x9f\x58\x15\xa2\x3f\x11\xeb\x8c\x34\xb3\xc1\x0e\x98\xc1\x34\x7b\x96\x0b\x2c\xab\x2b\x9d\x9a\x6d\xf3\x8d\x7f\x11\x4f\x62\x23\x63\x04\x78\x36\x03\x59\xa8\x12\xdd\x6e\x5b\x38\xfb\xb6\x42\x2f\x11\xc3\x0b\x50\x53\x62\xe3\x9c\x6f\x45\xcb\x55\xcd\x5d\x0b\x0d\xa2\x8c\x89\xbd\x48\x97\x39\x63\x22\x9f\x62\x8d\xa1\x82\xa8\xf2\x36\x5b\x5e\xd9\x72\x37\x42\xaa\x9f\xab\x78\x30\x26\xed\x15\x68\xb1\x23\x67\x23\x79\x37\x39\x0a\x77\xb6\x4d\x2f\x16\x4d\x30\x80\x98\x7c\xe6\x8b\x40\xed\xe8\xd6\x58\x31\xeb\xd3\x8a\xa9\xfc\x8e\xc5\xe0\x89\xe8\xfb\x89\xe2\xce\xe3\x62\x50\xb0\x12\xc3\x1e\xe3\x7c\x3c\xc4\x4b\x1c\xe4\xd9\x9e\x0f\xb7\xda\x81\x35\xbd\xa1\x9b\x0d\xa3\x39\xf0\xfe\x34\x29\xb2\xc1\x5c\x04\xc3\x95\x33\xf3\x06\x7f\x8f\x93\x64\x10\xe5\xd9\x06\x7a\xe3\x1d\xc8\x39\xd3\x34\x1a\x6c\x0b\x21\x2c\xc8\x6f\xcb\x36\x16\x0a\x79\x2f\x71\xba\x65\xa7\x53\x2c\x38\xda\x45\xed\xd1\x35\x88\x6c\xdb\x31\x67\xc4\xbb\x8d\x8b\x41\xb6\x05\x92\x97\xe5\x11\xcb\x43\xf1\x67\x10\x97\x83\x79\x96\xe7\x6c\x5e\x26\x47\x3e\xc8\x62\xc3\x58\x34\x48\x32\x1a\xc5\xe9\x92\xd3\xc4\xd8\x2b\xb2\xbc\x74\xba\x23\x6c\x4f\x46\xd3\x21\xdf\x29\x27\xd4\xb2\xa2\x04\x34\x83\x34\xc4\x2d\xcf\x1f\x91\xb7\xd1\xcc\x94\xd1\xc0\xa2\xe7\x34\x7d\x52\x0e\x38\x97\x3d\x60\xeb\x4d\x79\x14\x60\x2d\x58\x69\x09\x0d\x4a\x95\x27\xa5\x0e\x42\xde\xd3\xd3\x0b\xd9\x70\x30\x97\x69\xd4\xe4\x02\xd0\x54\xf6\x9c\x67\x7b\xd5\x69\xe6\x94\xf2\xf6\x40\xcf\x7d\xd5\x89\x68\x1c\xbf\x4c\x20\xff\x0c\x7b\x5c\x1a\xc9\x54\xeb\xfb\x91\xa9\xdf\x03\x76\xd8\x24\xf1\x3c\xe6\x80\xde\xc5\xb4\xc6\x2c\xe0\x59\xd4\x22\x6b\x79\xb2\x2c\xd4\xc5\xb4\x4c\xac\xcf\xd6\x14\x4b\xab\x97\x7a\xf6\x22\xa1\x47\xab\xba\xc0\x0e\xeb\x57\xcb\x55\x31\x51\xee\xe1\x70\x6a\xef\x33\xda\xed\x6c\x00\xb9\xcd\xd4\xd6\x7f\x18\xf4\x6f\xe2\x62\x4d\xcb\xf9\x6a\x70\xc3\xca\x3d\x63\x69\xe7\xc6\xa6\x7c\x63\x73\x64\x4f\xbb\x08\x87\x48\x1c\xee\x58\xae\xf6\x35\xd7\x42\x72\xc1\x4e\xd2\x91\xb2\x4a\x9f\x5e\x8a\x2c\x38\x48\xde\x1d\xfd\x1f\x2a\x53\x54\x41\xcd\xe6\x49\x96\x32\x8e\x73\xc2\x8b\x03\xbc\x1b\x0c\x7f\x06\x89\xe5\xf1\x84\x3d\x00\xea\x0f\xd9\x5e\x9c\xf6\x8c\x9f\xf6\xd9\x42\xec\x97\xb8\x10\x38\xae\x6d\x1a\x89\xd4\xb1\xf0\x72\xbb\xbb\xb3\xd4\xde\xac\xd3\xbc\xcb\x77\xfc\x64\xfe\x14\xaf\x99\x92\x2a\x1b\xc5\x0e\x42\x3d\x63\x39\x48\x96\x2c\x4e\x81\x2e\xd6\xc3\x92\x5c\x17\x85\x0b\xc5\x6a\x4c\xa2\x5b\xd2\xea\xbe\xca\x65\x71\x6a\x5e\x05\xfc\xef\x15\xa6\x0e\x9e\xc0\xd4\xf6\xba\xe2\xb2\x83\x04\x72\xfa\xf3\x89\xde\x24\xdd\xfe\xb1\x52\xdd\x7d\xc3\xf2\x77\x8b\xca\x76\x0d\x34\x01\xda\x0b\x91\x04\x0a\x42\xb2\x8b\x90\x9e\xdb\x75\xca\xd9\x7b\x67\x04\x5b\xd2\xe2\x58\x66\x11\x12\xdf\xdd\xc1\xcf\x32\x5e\xc3\x23\xfa\x9f\x2f\x7d\x0b\x05\x3d\x9f\xa3\x80\xb9\x75\x06\xd3\x6a\xa4\x17\xcc\xd2\xe4\x38\x78\xc2\x7b\x78\x82\xc5\x5f\x0e\x82\x27\x40\x55\x9e\x88\x86\x4f\x06\x7c\x45\x8a\x01\xcd\xd9\xa0\xd8\x6e\x36\x59\x0e\xe2\x46\x96\x4b\x62\x33\xf0\xf9\xa6\xa9\xd6\x6a\x00\x21\x3a\x07\xce\xf7\x59\xc9\x59\xe1\x98\x1f\xe5\x96\x46\x40\xff\xbf\xab\x09\x00\xaf\x2f\x71\x71\x35\x99\xe2\x82\xdc\x9e\x70\x42\xce\x7c\x69\xa0\xe5\x87\xe9\x05\xab\xb3\xc7\xae\x5a\x18\x29\xbc\x61\xd4\x6a\x11\xb2\x42\x99\x38\x82\x52\x54\xaf\xa5\xcc\xc7\x7d\x46\x56\x77\x77\x67\x3d\x42\x80\x0c\x25\x7a\xad\x67\x82\x6f\xaf\xfc\x3b\x58\x79\xb5\xc4\x9c\x37\xab\xd6\x96\x0b\x3c\x83\x4a\x1d\x0a\xcb\x2f\xb8\xcb\xef\x77\xf1\x1f\xde\xe0\x89\x18\x04\x34\x02\xfc\xa9\x5b\xc6\x8b\x41\xfb\xeb\xbc\x5e\x99\x6f\x95\x45\xcc\x96\x64\x93\x4c\x33\xc2\x6a\x25\xc5\xdd\xa2\xab\x62\xb2\x9d\xaa\xc9\x07\xfc\x81\x4c\xd2\x29\x87\xe6\xe8\x74\x92\x11\x5f\x34\xf0\xc1\x42\x39\x23\xa4\x6c\xe1\x46\x61\x5a\xbb\xf4\xa5\x75\xfc\x97\x56\x93\x6c\x92\x4e\x51\xaf\xd7\x88\x26\x70\xda\xb6\x93\xba\xc4\x37\xd1\x58\x72\x15\x11\x66\xa4\x8a\x77\x21\x4c\x11\x27\x53\xbc\x21\x67\x3e\x5e\xaa\xfc\xca\x62\x4c\xb4\x5e\x7e\xa5\x79\xa8\xfd\xac\xab\x8c\x2c\x4e\x8a\x47\x9a\xbd\xa5\x59\x0e\xe7\x5a\x1f\xd5\xba\x5a\x68\xf3\xac\xdb\x68\xc7\x4e\xd0\x5d\xe3\x31\x20\x90\xe1\x79\x46\x61\x7e\xc1\x86\x3e\xc4\xe7\x91\x9d\x4d\x8c\xde\x7c\x77\xfc\x34\x47\xd8\x28\x1b\x43\xd9\x14\xd5\x97\x86\xa2\xa3\xac\x15\x09\x6d\x46\x32\x19\xe6\xa2\x6b\xa4\x33\x84\x70\x62\xdb\x2d\x8c\x99\xf5\xc0\xab\x98\xcc\x24\x4f\x23\x2c\xfd\x6e\x4f\xe1\x51\xde\xa5\x92\x16\x32\xcc\x10\x3e\x82\xf9\x29\xe1\x12\x1c\x3e\x7a\xc5\x2a\xcb\xcb\x4f\xec\x50\x76\x9c\x3e\x42\x35\x04\x69\x3f\x9e\xaf\x68\xfe\x3c\x8b\x98\xf3\xcd\xd7\x6e\xf9\xef\xe3\x6f\x90\x34\x41\x80\x1b\xc3\x45\x92\xf1\x87\x73\x5e\x5c\x5e\x8e\x42\xd4\xdb\xd4\x29\x87\x3e\xe2\xcd\x5d\xe6\x95\xd9\xeb\x6c\xcf\xf2\xe7\xb4\x00\x33\x24\xbd\x2b\xa8\x06\xdd\x55\x29\x8a\x2a\x0d\x04\x9f\x40\xc9\xc7\x6b\x59\x95\xc2\x6d\x4d\x46\xe1\xfa\x82\x03\x42\xc1\x7a\xed\xba\x68\x6d\xdb\x8e\xa8\xeb\x12\xa1\x66\x54\x4f\x6d\xf8\xad\xa7\x28\x5c\x8a\xc5\x38\xa2\xd3\xa9\x5e\xbd\x85\xbe\x7a\x71\xf1\x2a\x4e\xe3\x92\x39\x8b\x49\x3e\x45\x77\x77\xf0\x57\x06\xae\x9f\x37\xa5\xe3\xf9\x64\xde\x94\x8e\x37\x20\x1d\xcf\x2b\x91\x0c\xa4\x71\x53\x4a\xf8\x71\x99\x66\x1c\x74\x92\x35\x4a\x05\xb7\x56\x1f\x3c\x37\x6c\x4e\xb9\xd8\x97\x2d\x06\xdb\x34\x62\x8b\x38\x65\xd1\x20\xcb\x21\xed\x94\x14\x36\xc5\x89\xe5\x59\xe8\xb4\x69\x49\x7a\xda\x09\xf6\x27\xe5\xbd\xf9\x63\xe5\x3d\xd3\x09\x67\x8e\x97\x1a\x80\xd4\xed\x81\x46\x40\x9d\x25\x3e\x1b\x3d\xac\x65\xed\xcc\xd3\xdd\xe1\xc3\xd3\x91\x82\xa2\x61\xfe\xa4\xb7\x01\x9f\xb5\xc6\xd5\x05\x24\x06\xef\x89\x80\xbf\x88\x13\x26\x52\x2b\x57\xec\x71\x9d\xd3\x00\xb2\x3f\x96\x0e\x42\x10\x0d\x08\x44\x5c\x21\x7c\x20\xd4\xe7\x98\x24\xe4\xe0\x3f\xe5\x9a\x54\x69\xcb\xda\xc9\x15\x6c\xbb\x6b\x78\x35\x49\x10\x77\xec\xf5\x28\x6a\x56\xf4\x9f\x1c\x89\x3c\xc0\xeb\x6f\xd6\xf9\x17\xba\xef\x04\x42\x30\xff\x96\xce\x5e\xb5\x53\x17\x7f\x53\xcb\x9c\x21\x25\x22\x03\x86\xf7\xf9\xcd\xeb\x1f\xca\x72\xf3\x81\xfd\x63\xcb\x8a\xf2\x8a\x1f\xf8\x66\x11\x44\xa4\xbe\x9e\x97\xf1\x8e\x7d\x7e\x07\x60\xe1\xd2\xe6\x3c\xcf\x8a\x6c\x51\x42\xf3\x4f\x9f\x7e\xb2\x74\xdb\xb4\x90\x7a\x59\x0a\xd6\x61\x45\x49\x4b\xd6\x0e\x31\xfe\x15\x21\x54\x98\x8f\x7d\xe4\x15\x6c\xdb\x19\x8f\xc0\xa9\x94\x63\x4a\xb9\x2d\x6c\x5b\x7f\xba\xbb\x8b\xcd\x99\x80\x4b\xf4\x26\x4b\x0b\xc6\x89\x2d\x04\x9a\xf0\xb2\x0d\x4b\x1d\xeb\xfb\x97\x9f\x2c\x5c\x02\xf2\x53\xaf\x60\x69\xe4\x08\x82\x62\x52\x07\x29\x3b\xfd\x9c\xfe\x9e\x66\xfb\x54\x88\x6f\x0b\x60\xca\x82\x81\xe5\x56\x70\xee\x0a\x5b\x21\x2f\xdf\x9a\xd6\xfc\x66\x7a\xbe\x33\xbf\x32\xe5\x05\xec\xc6\x31\x79\xef\xcd\xb3\xcd\xf1\xe7\x82\xe5\xd7\xc0\x0b\xf0\xd5\xb0\x6a\x57\x15\x2b\x86\x54\xc5\x4e\xd3\x83\x85\xc4\xda\x13\xc2\x56\x6d\xed\x6b\xb4\xd0\x23\xbc\xc5\xda\x93\x18\x46\x4a\xf8\xde\x81\x28\xe5\xcf\xf9\x52\x54\x77\x42\xaf\xe3\xa2\x74\x3a\x2d\x7b\x63\x54\xa5\x9c\x7f\xc1\xd8\xc6\x69\xde\xf3\xe0\xf8\x61\xea\x82\xe9\x95\xd3\x4b\x2d\xfe\x1e\x27\x89\x46\x2e\x70\x4d\x09\x08\xc5\x4c\xb9\x76\x02\xd9\xe0\x5c\x08\xbb\xbb\x73\xd2\xab\xc6\x1e\x09\xda\xe6\xb6\x67\xbe\x08\xec\x69\x02\xbb\xe3\x38\xd6\xb3\x67\x88\x7c\x2a\x65\x3b\x79\x32\xdf\xf3\x31\x24\x82\xa6\xb6\xdd\xf9\x1e\x9c\x3f\xc1\x61\xa0\x2f\x03\xa0\xc8\x1e\xd3\x4e\xf3\x78\xa6\xe5\x96\x99\x25\xd9\xfc\x77\xe5\x69\x59\x97\x80\xc5\x96\xd4\x8b\x9d\x11\xa5\x4d\x00\x6b\xbf\xc6\x41\x24\x14\xa8\x55\x22\xac\x41\xb1\xca\xb6\x49\x34\xb8\x61\x83\x39\x4d\x12\x16\x09\x66\xfc\x0f\x96\x67\xb5\xc6\xab\xe0\x27\x5d\xb9\xcf\x06\x69\x96\x0e\xdf\xfe\xfc\xfa\xb5\xf6\xca\x1b\xfc\x94\xb3\x92\xa5\xfc\x9c\xe2\xa7\xd8\x9e\x16\xd0\x9a\x9f\x59\x25\x11\x91\xce\x0d\x6b\x75\x69\xac\x1a\x1b\x59\x55\x42\x75\x29\xad\xb2\xda\x98\xf9\x59\xb4\x0c\x4a\x8d\x0a\x32\x43\x0b\xd3\x6a\x88\x0f\x90\xd2\xb0\x87\x25\x4c\xdd\x18\xab\xd7\x46\x67\xf3\x24\x66\x69\x09\xe1\x19\xcc\x66\x5d\xd5\x7e\x80\x77\x08\x53\xa2\xcf\xc8\xb6\x63\x62\xcc\xc9\x4c\x48\xd6\x4a\x76\x57\x23\xa7\x91\x3c\x48\x2e\xa7\x7f\x6a\xfa\xbe\xaa\x04\x0b\x1d\x1e\xb7\x1a\x11\x28\xef\x77\xa1\xad\x4d\xed\x9b\x99\x89\x9b\x41\x5f\xea\x9a\x16\x52\x33\x91\xb2\x89\xd6\xc9\x44\xf3\x24\xe9\x6a\xa9\x2e\x45\x5b\x7e\x80\x43\x3f\x44\xdd\x7d\x0a\x2e\xed\x6c\x84\xc2\xee\x54\xf3\x46\xff\x2d\xb3\x87\x5f\x3a\x26\xd8\x4c\x10\x6c\x24\x9e\x51\xb1\x2c\x80\x15\x50\x7c\x83\x53\xf2\x39\xd7\x91\x4b\xdb\x67\xfc\x55\x4c\xce\x46\x41\x49\x20\x46\x66\x5c\x39\xbe\xa5\x3d\x04\x22\x05\x29\xef\x62\x74\x77\x97\x5e\x12\xa5\xab\xbd\x6a\xb0\xa0\xe9\x8e\x26\x71\x34\x10\x32\x84\xd2\xbb\xc6\xe9\xc0\x98\x16\x3f\x76\x52\x14\xd0\x49\xca\x89\x49\x2a\xe5\x9e\x41\x23\xa6\x86\x2e\xa0\x5a\x37\x42\xee\xd2\xd3\x3f\xa5\xd3\xab\xff\xee\x81\x04\xfc\x1f\x48\xed\x39\x49\xa7\xff\x0d\x7d\xc3\xe4\x02\x3a\xe1\x7f\xa7\x44\x7a\x54\xf6\xe1\xb5\x49\x38\x15\x63\x7c\x0b\x3b\x33\xd0\xc9\x8e\xd8\x9b\x81\xbe\x4f\xdb\x01\x51\x34\xf6\xb8\x4d\x8d\x65\xcc\x84\xaa\x06\xdf\x73\x67\x86\x63\xad\x1e\x61\xa1\x71\x85\x95\xc7\x2c\x02\xf6\xde\xf8\xc8\xe0\x86\x2d\xb2\xbc\xba\xdd\x02\x1a\x0a\x2c\x8f\x37\xf8\x94\x1f\x79\x65\xb8\x61\x2e\x57\x6c\x0d\xca\x77\xf1\xd2\x41\x03\x48\x0f\xe3\x0d\x3e\xb2\xfa\x66\xcc\x9b\x67\xeb\xf3\x92\x15\x65\x71\x5e\x0f\xd2\x5b\x95\xeb\xc4\x6a\xbb\x9e\xeb\x72\x40\x6b\x5e\xa8\x3a\x5c\x7b\x1d\xf2\xbb\xe0\xd4\xb0\xe7\xd6\x3a\x6c\xc7\xa1\x13\x4a\x8e\x6e\x5e\xbf\x79\xc9\xa1\x7a\xbd\x2a\xa5\x27\x1e\x0a\xda\x31\x21\xc0\x24\x05\xcc\x2b\x44\x80\xc4\x5e\x3b\xf3\xa6\x07\x50\x39\x6d\x8d\xee\x43\xb6\x7f\x95\xe5\x9f\x7b\x42\xba\x8e\x54\x60\x2f\x99\x38\x17\x48\x1a\xbb\x20\x34\xac\x72\xf7\xbb\xec\xf2\xd2\x57\x21\x3d\x2b\xc9\x37\xc6\x42\x3d\x9c\x5e\x94\x88\x91\xd8\xf5\x2b\xfe\x3d\xbd\x2c\x11\x25\xf1\xd0\xaf\x54\x72\x8c\x90\x58\xa1\x53\x1c\x52\x12\x57\x97\x89\xed\xa9\x03\x4e\xb4\x0f\x87\xa6\xd3\xda\x55\xd3\x1f\x03\x14\x21\x28\x28\x1b\x4e\x1f\xed\xd8\x0b\x46\x06\x8d\x56\xa8\xa0\x03\xaf\x22\x93\x7f\xe0\x3a\x8d\x43\xce\x96\x71\x51\xb2\xbc\x4a\xef\x27\x3e\x78\xcb\x12\xb6\x0e\x4a\xcc\xfb\x0e\x18\x5e\xa4\x01\x3d\xb5\xc2\xac\xb7\x73\x03\x76\xc5\x43\x69\x7d\x01\x75\x44\xf2\x68\x0f\x43\xf3\xda\xd0\x83\x62\xb6\x2a\x4e\xca\x69\x68\xa6\x03\x64\x1e\x1f\xbc\xcc\x12\x85\x99\xb7\x48\xab\x6c\x86\x8d\xb6\x64\x02\x58\xf5\xd3\xeb\x9f\xbf\xff\xf1\xed\x47\x32\xf9\xb9\xca\xd5\xf3\xb9\xfa\xf5\x5f\xd5\xaf\xdf\xaa\x5f\x3f\x54\xbf\xbe\x57\xbf\xa6\xf8\xbd\xf7\xfd\x2f\xf1\x1f\xe0\x36\x44\xfe\x51\x55\x78\xef\xbd\xb8\xfe\xf8\xc3\xcb\x17\xb3\xd7\x3f\xbe\x7d\x49\x0e\xfa\x13\x7f\xf7\xee\xd3\x8c\x97\x54\x6f\xf5\x67\xfc\xbe\x47\xbb\xdf\xab\xf6\xc7\xef\x65\x88\xb8\x2a\x56\x1c\x7e\xaf\x82\x2a\xd7\xe1\x95\xf9\x2a\xd2\x25\xfb\x4c\x64\x18\x65\xf9\xfc\xab\x7c\xfe\x55\x7e\x57\xd9\x5c\x1e\xf4\x27\xfe\x4e\xcc\xec\xc7\x46\x56\x1a\xb2\x50\x6f\xd4\x5f\x28\xc6\xef\xbd\x34\x4b\xab\xca\x3b\x26\x2a\x77\x96\xce\xb4\x3e\xba\x5e\xe3\xf7\x2a\xb4\x57\x1d\xe4\x8b\x2f\x9f\xc8\x6e\x49\x6e\x5f\xb3\x25\x4b\xa3\xa0\x5e\xc5\xeb\x03\x2b\x82\x7a\x29\x35\x6a\x1a\xd4\x4b\x08\x2b\x26\x28\x5d\x50\x2f\xf1\xf7\x79\x1c\x05\xd5\xea\x62\x50\x09\x88\x68\x36\x59\x1e\xfc\x97\x1e\x01\xe3\x45\xed\xd3\x5b\x90\x5b\x99\xa6\x49\x16\xd4\xb1\x32\xf0\x77\x34\x2f\x54\xe9\x87\xfa\xe3\x95\x69\x8b\x7a\x57\x05\xe5\xc0\xb2\x2b\x65\x80\xae\x2a\x54\x31\x3e\xf0\x4b\xa5\xa0\x55\xaf\xaa\x18\x1d\x58\x35\x2a\xf4\xd7\xaf\xf4\x61\x83\x40\xf6\x13\x4d\x35\x98\xab\x22\xf5\x56\xc4\xa2\x37\x5f\xf3\x32\xfc\xde\xe3\xbb\xcd\x6c\x2c\x4b\xe4\xbb\x46\x53\x55\x84\xdf\x7b\x2c\x8d\xcc\x86\xa2\x40\xbc\x69\x34\x93\x25\x1c\x87\xc4\x95\xcd\xeb\x38\x65\x34\x17\x46\xef\xbb\x8e\xc2\xba\x66\xa3\x8e\x7a\x5b\xdf\xb0\x99\xd7\x6d\xef\xbd\xef\x73\x9a\x6e\x13\x9a\x73\xce\x74\xa7\x3f\xe1\xf7\xfc\x6c\x78\x21\x37\x1c\xd9\xe9\x4f\x7c\x7b\x25\x19\x2d\xc5\x0e\xe4\x5b\xac\x7e\xc2\x54\xcd\x83\xbc\xc7\xcc\x63\x87\x4d\x96\x97\x05\xa9\x4a\x4f\x46\xf8\x2a\xc7\x9a\x6d\xf2\x6c\xce\x8a\xc2\xe2\x62\xef\xad\xe5\x9d\x73\xd9\x7a\x25\x96\xee\xfc\x86\xe6\x85\x15\x7c\x8d\x3b\x8a\x87\xc2\x3c\xca\x0a\xc6\x9d\x6f\x41\x41\x62\x05\xcf\x3a\x5f\x56\x06\x89\x56\xf0\x55\xb3\x82\x1c\xa6\x15\xfc\xb5\xe7\x8d\xde\xfa\x2f\x50\x47\x66\xd9\x13\xae\x91\x56\xf0\xad\x5e\xa8\x1a\x81\x3c\x61\x05\xfe\x48\x7f\xb9\xdc\xc5\x7f\x58\x81\xef\xeb\x65\x5a\xda\xab\xe1\x1a\xf2\x5e\x05\xfe\x58\xaf\x20\xf8\x24\x2b\xf0\x9f\xe9\xa5\xd2\x1c\xc4\x0a\xfc\xaf\x3b\x8a\x87\x39\x5b\xb0\x9c\xa5\x73\x66\x05\xfe\x57\x7a\x05\x71\x3b\xc8\xdb\x7d\xa3\x17\x6f\xcb\x38\xe1\x85\x30\xc1\x78\xc1\xa5\xea\x61\x49\xf3\x8d\x15\xf8\x30\x3d\x99\x5a\x57\xe3\xe5\x0a\x2b\x18\x8f\x8c\x57\x07\xc6\xcb\x7c\xbd\x6c\xce\x89\xce\x50\xf2\x4e\xc1\x78\xac\xbf\x5b\xe6\x71\x64\x05\xe3\x67\x7a\x59\x02\xa4\xcd\x0a\xc6\x5f\xe9\xa5\x39\xa7\x4a\xc3\x42\x92\x25\x2b\x18\x7f\x8d\x15\x16\x05\xfe\x69\x8a\xfd\x6f\x83\x49\x93\x0f\xb0\xb6\x05\x1b\x14\x65\x1e\xcf\x4b\x2b\xac\x72\xdf\xc6\x4a\x1d\xcc\xe7\x56\xf0\x73\x51\xa8\x07\x3d\xa1\x4a\xaf\x15\x25\xd8\x9a\xcd\x58\xf1\x26\x8b\xb6\x09\xb3\xf0\x2d\x5c\x82\x06\x67\xa3\x93\x52\x4f\x95\x4e\x0b\x78\x08\xe7\xad\x18\xc6\xb6\x5d\x7a\x75\x47\x55\x4c\xe1\xb0\xd2\xe8\x54\x0e\x6b\x25\x6a\x28\x77\xe4\xc0\x6a\x46\xc4\x14\xe5\x54\xde\x8d\x3e\x95\x4e\xb5\x29\x4b\xcc\x4e\x70\xef\x6a\xf8\x29\xee\x58\xde\x94\xbc\x05\xab\x52\x25\xa5\x5c\x32\x95\x90\xa0\xf8\xee\xf8\x89\x82\xe3\xb6\x63\x09\xd4\xb0\xaa\x60\x9b\x1d\x29\x1f\xca\x09\x9b\xe2\x98\xe4\x55\x9a\x03\x8a\x70\x0a\x89\xf8\x32\xc8\xc2\xc7\x69\x83\x48\x89\x20\xf4\x1c\x49\xf5\x2c\x14\x1a\x78\xd5\x9b\x19\x33\x8a\x77\xe0\xc7\xd3\x9f\xad\x77\xa5\x67\xe5\x4d\x85\x36\x66\xa5\x65\xf0\xcd\xcc\x22\xa1\xd7\x29\xcc\x42\xa9\xcb\x49\xcc\xd2\x3f\x80\x4f\x27\xdf\x7e\xfb\x2d\xae\x86\x77\x93\x45\x47\x23\xad\xa6\x4a\xbc\x0a\xe8\xa5\x72\xb1\x9e\x4e\x58\x07\xbe\xcc\x82\xd7\x0d\xfe\x8a\x53\x14\x3d\x68\xdc\x61\x5d\x3a\x29\xa7\xde\x86\xe6\x2c\x2d\xdf\x66\x91\x99\xa0\xd9\xa8\x24\xe5\xac\x0a\xd5\x35\x4a\x1d\x77\x52\x6a\x41\x8e\x9b\x14\xe1\x34\xc5\xe3\xd1\x03\x1b\xec\x4f\xed\xa2\xb8\x75\x49\x63\x88\xb3\x93\xe9\xc9\x40\xda\x32\x13\xcc\x59\x5b\xc4\xb3\x74\x19\x56\xb0\x49\x96\x09\x73\xe5\x34\xd5\x21\x87\xdd\xd6\x11\x03\x82\x3a\x30\x22\x3c\x63\xdd\x47\x5e\xbc\xd4\x4b\x1a\xeb\x1a\xb1\x92\xce\x57\x6d\x59\xb2\x63\x71\xf5\x79\xf6\x49\x00\x7a\x1d\xce\xfc\x33\x6d\xcd\x21\x93\x79\x37\x06\xa8\xe8\x0d\x8d\xe6\x22\x6e\x61\x27\x90\x8d\x49\xd4\x93\x6f\x8b\x70\xfa\x04\xb9\x08\x6e\x4c\x5e\x83\x4b\xa7\x21\x93\x44\x2b\x4c\x09\xab\xe3\x69\x88\x91\xb0\x68\x56\xc7\xfe\xa7\xea\x22\xa5\x91\x68\x26\x26\xa5\x8c\x45\xa0\xcd\x1c\x1b\xa1\x62\x21\x46\x55\x33\x97\x63\x15\xb9\x35\xd6\x26\x1e\xe6\x4d\xc5\x58\x89\xae\xf2\x49\x39\x75\x72\x1c\x63\x86\x53\x14\x30\x4d\xd5\xc7\x69\xac\xf9\x5c\xd5\x3b\x9d\xc0\x9f\x45\xce\x4e\x4b\x89\x9b\x91\xdb\x93\xcc\x91\x42\xf5\xb8\x1f\x32\x6e\x06\x95\xa9\x2c\xce\xea\x3c\x28\x17\xb9\x77\xb8\xbb\xab\x1e\x2f\x73\xef\xe0\xe6\xde\xbe\x2e\x3a\x5e\xe4\xde\x51\x7b\xbc\xcc\xbd\xa3\x9b\x7b\x5a\x7e\x0c\x6d\x8a\x78\x4b\xbe\x09\x57\xcd\x69\x82\xe3\x9e\x20\xb3\x60\xf0\xb1\x25\xc2\xd1\x4d\xaa\x92\x65\xfc\xad\x7b\xc9\xef\xff\x0a\x23\x49\x11\x17\x99\x8c\x19\xa3\xc3\xc6\xd2\xac\x8a\xc4\x6b\x0b\x01\x21\x95\x66\x23\x55\x8e\xe2\x7a\xa8\x56\xc7\x38\xe3\xb9\xc8\xfd\xed\xcc\x5d\x62\x29\xa5\x92\x94\x14\xea\xdd\x3e\x68\x71\x5d\x75\xa7\x08\xb7\x7b\x9d\x17\x05\x84\xdd\x83\xb9\x43\xcf\x96\xbb\xf2\x54\x29\xc2\x91\x96\x4c\x79\x2e\xbd\xce\xdb\xbd\xc0\xa1\x61\xa1\xab\x95\x38\x3e\x38\x27\xb5\xec\xa8\xb6\x92\x60\xbe\x5a\xc9\x13\x25\xf0\xbf\x01\x47\x9c\x9e\xc9\x2a\xa3\x99\xde\xb4\xd0\xeb\xa5\x85\xc2\x85\x57\xe4\x73\xb2\xf2\x78\x1b\xbc\x90\x07\xd8\x06\x2f\xd4\xa9\xb5\xc4\x91\x71\x22\x29\x33\x03\x1d\x37\x5a\x03\xa8\xac\x40\x38\x60\xcc\xf6\x8d\xd1\xf0\x4a\x7c\xe7\x39\x46\x7f\x55\x7b\xe9\x2d\x3e\x23\x75\x76\x9f\xcd\xf9\xb8\xc2\x18\x38\x95\x67\x35\x3a\xec\xc8\x48\x40\x84\x96\x9c\xb4\x5c\x97\xdf\x65\x65\x99\xad\x95\x29\x8b\xc4\xef\xe1\x72\xb8\x0d\xb3\xc9\x6c\x7a\x75\x1c\x12\xfe\x37\xe0\xff\x90\x11\xe6\x7f\x5c\xb2\x75\x97\x78\x47\x8e\x62\x9a\xbb\xea\xcb\x47\x68\x16\x69\x67\xff\x4e\x66\xa1\x36\xce\xfe\x8d\x59\xa8\xa0\xa8\x4a\xcb\xb8\x4c\x98\xb1\xb1\xc0\x86\xa4\xaa\x0f\xa1\xb9\x09\x33\x32\xad\x8b\x30\xdd\x55\x95\x1b\xb0\xac\x78\xde\x5f\x71\xe5\x45\xf1\x8e\x44\x98\x75\xe4\x87\xc5\x16\x64\x1a\xb6\x70\xea\x88\x5f\x2a\x82\x26\xb6\xea\x21\x3d\x37\x5e\x24\x08\xf5\x74\x05\x91\x8b\x39\xef\x01\xdd\x89\x38\xc6\x3b\x96\x77\x75\xf9\xa6\xf5\xf2\xa1\x6e\xb7\xa5\xd6\xeb\xb6\xec\xef\x54\x7b\xd7\xdf\x67\x24\x53\x2c\x43\x9f\xd1\x4d\xf2\xbc\x6f\xee\x2f\x9a\xef\x78\x9f\xb1\x89\xc2\x1d\x47\xa2\xe0\xcd\x22\x81\xae\x07\x52\x7a\x66\x08\x1e\x91\x82\x47\x06\xbb\x3c\x18\xe1\xd1\xbb\x69\xaa\x4c\x41\x70\x25\xc8\x29\x3c\x05\x9d\x8b\x7d\xd0\x62\xb4\x77\x77\xf5\xf7\x8a\xbc\x54\x4f\xc6\x69\x64\xc4\x70\xe7\xa3\xbb\x61\xcb\x38\xfd\x89\x96\x2b\x87\xd3\xbc\xee\xad\xb4\x73\x97\xe1\x01\xf4\x13\x9f\xb2\xfa\xc8\xc1\x47\x24\x07\x64\x96\xba\x5b\x49\x35\x3a\x9a\x54\xfb\xab\xb3\x69\xbd\xfb\xc6\xc3\x2d\x0a\xc1\x86\xbd\x60\x72\x70\x0a\x90\xf0\xb3\x8a\x3e\x7a\x6a\xf1\x51\x90\x34\xb9\xc5\x1c\x36\xd9\x8f\x87\xb9\x59\xce\xb9\xfa\xff\x1a\xce\x95\xcb\x7f\x6d\x01\x30\xfd\x3f\x56\x00\x8c\x91\x99\xa7\x45\x84\x1a\x16\x82\x79\x1d\x0a\xfb\x58\x17\x9c\xc2\xfc\x91\xbc\xf7\x81\x69\x4c\x77\xfe\x48\xa6\x5b\xb0\x80\x7a\x32\x29\x7c\x0f\x1f\x6e\x44\xba\x52\xf7\x68\x5a\xd1\xc9\xfc\xb0\xe8\xf0\x3e\x36\x14\x0c\x8e\xea\x3d\x55\xc5\xaa\xe1\x54\x80\xff\xb2\xb0\x75\x54\x27\x32\x25\x5d\x35\x2b\x36\x47\xe6\x52\xe0\xf5\xdd\xf1\xd3\xbe\xaa\x9f\xe2\xf9\xef\x22\x45\x04\xaf\x18\x96\x90\xbd\x35\xdf\xb1\x8f\x1b\x3a\x67\xaf\xd9\xa2\x74\x28\xe4\xc2\x78\x60\x50\x07\x35\xa8\x38\x8c\x4d\xb6\x0b\xc2\x46\x2b\xce\xee\xaa\xff\x55\x70\xef\x64\x2a\x9e\x0d\x3e\xf5\xb8\xf9\x1c\x2c\x84\xcd\xf9\x08\xd2\xe3\xc4\x30\xa3\x31\x21\xac\x0e\x54\x24\x22\x7d\x3e\x00\xf9\xf1\x97\x82\x7e\xfc\x68\xd8\x8f\x5b\xc0\xff\xc0\xe1\xc2\xa1\x2f\x28\x9e\x36\xd6\xcb\x31\x67\xfb\x99\x66\x4a\x5e\xee\xb3\xc1\x71\x48\x0f\x2d\x4f\x01\x5a\x0a\x4f\xe1\x32\x5e\x33\x6f\xe0\x7c\xca\x8f\x70\x51\x9a\x81\x8b\x9e\xe5\x6a\x9d\x82\x77\x92\x89\xae\xbd\x82\xa3\xd2\x5a\x95\x8d\x2b\xbf\x7b\x14\x2f\x21\x35\xc4\x44\xda\x27\x26\xf2\xf9\x4a\x43\x2a\x45\x05\x10\x96\x05\xc7\xba\xe0\x41\x2a\x61\x4c\xe4\x4b\x84\x47\xbd\x9d\xb1\x97\xcd\x7b\x4e\x05\x02\xa6\x5d\x9c\x82\xa5\x30\x24\xfe\x71\x4a\xe4\x7a\x5f\x9f\xaa\x5a\xb4\xaf\xd6\xd0\xfb\xfa\x54\x1b\xfb\xe9\x22\x1b\x24\x7f\x7b\x70\xd3\xdd\xdd\xe5\x0f\x52\x8b\x87\xeb\x54\x78\xad\xb2\x52\x36\xd9\x0e\xbc\xed\x94\x72\x23\x92\x2b\xbb\x81\x39\xc9\x95\xbd\x00\xde\x74\x11\x56\xa5\x14\x0b\x34\xa5\x98\x12\xd4\x82\xfc\x71\x7b\xbf\x14\x12\x1b\x16\xe2\x4d\xfe\x88\x2d\x28\x5b\x9c\x4e\x78\x49\x6e\x0f\xc1\x46\x84\xa5\x3f\xf2\x1f\x47\xfe\x63\x0c\xbf\xc6\x1c\xf3\x17\xad\x2b\x5b\xb1\x30\xf7\x0a\x9d\x38\x27\xcb\x09\xef\x80\x10\x7a\xc5\xff\x06\x6c\x1a\xaa\x7c\x5e\x4e\x2c\x38\x6d\x9c\x8b\xd3\x39\x7b\x40\x7f\x28\x11\x24\xd3\x84\xbd\x5a\x2a\x3d\xc4\x85\xd0\x57\x0f\xda\x45\x43\xcb\x65\xae\x43\xaf\xac\xee\x77\x34\xb0\x2c\x84\x33\x2f\x4e\x53\x96\xff\xf0\xe9\xcd\x6b\x52\x36\x38\xd1\x0c\xe1\xf8\x14\xae\x24\x63\x29\x45\xa5\x5c\xe9\x43\xf0\x4e\xd3\x24\x18\x11\x64\xf0\xb1\xcb\x80\x40\x0f\x7e\x2d\x8b\x3a\xd6\x8a\xe1\x12\x9d\x4e\x8f\x40\x73\x38\xf0\xe2\x85\x33\xf3\x8e\x10\xfb\xc6\xb6\xd5\xaf\x46\x46\xa6\x03\xc9\xb5\xc8\x73\x6b\x32\x39\xca\x55\x16\x4b\x3c\x0d\xab\x76\x5d\x89\xa5\x4d\x87\x10\x80\x1d\xba\x2d\xc8\xce\x3b\x48\xa6\xc8\x3a\xfa\x16\xa6\x64\x3d\x19\x4d\x43\x9f\xd7\xe1\x40\xb6\x6d\x07\xea\xb8\x3b\x6f\x8f\x87\x3e\xe6\xd5\xc6\xa2\x9a\x3f\x55\x4a\x79\xda\xa9\x7d\x08\x13\xb2\xf3\x8e\x6e\xe9\x6d\xb2\xe2\xe9\xce\x5b\xe1\x8c\x2c\x1c\xf9\x65\x3e\x6b\x3c\x26\xe4\x70\xc5\x82\xda\x42\x30\x27\xc9\x30\x3d\x1f\x87\x39\x84\x53\xcb\xc9\x08\xe1\xdc\x4d\xdd\x67\x97\xf3\xab\xac\x12\xea\xf8\x11\x47\xac\x91\x15\x64\x9a\x88\x99\x8b\x8d\x23\x3c\x98\xf9\x58\xae\x9c\x4c\x97\x7d\x77\xde\x61\x48\x5b\xdb\x07\xa9\xb2\xea\xa4\x92\x1b\xb0\xea\x9a\x1d\xca\xeb\x24\x5e\xa6\xc4\xca\xe5\x31\xae\x43\xa6\xf9\x09\x0e\x24\xf7\xf1\x5d\xf2\x66\x80\xb8\xba\x5c\xdc\x31\x4a\xd1\xc1\xb6\x85\xd1\xd5\x81\x20\x84\xaa\x0c\x9d\x24\x9b\x7c\x43\x8c\xf3\x62\x32\x9a\xe2\x3d\x79\x24\x0d\x02\x36\x09\x8c\x73\x7f\x4c\x4b\xe7\xa6\x86\x31\xf6\x47\xc8\xdd\x5f\xce\x87\x7b\xdb\xd6\xcb\x49\x5f\xe5\xe1\xfe\x7c\x0c\x43\x17\x29\xcb\xae\x1b\x5b\x41\xed\x01\x56\x5c\x97\x10\xd2\x50\xd2\xe8\x77\x24\xf7\xca\xec\x27\x96\xcf\x59\x5a\x7e\x86\x3c\xa3\xce\x08\x85\xce\xbb\x4b\xff\xee\xee\xdd\x45\x15\x4d\xe9\x1d\xc4\xc9\x7c\xc7\x91\xe4\x9a\x30\x87\x83\xff\xdd\xd3\x9d\xb7\x97\x12\x94\x2c\x13\xb7\x16\xb5\x14\xd9\x0b\x85\x38\x65\x42\x96\x04\x08\xe0\x95\x26\x2e\xde\xd7\x46\xe3\x42\xf1\xaa\x21\x11\x4a\x11\xee\x1a\x53\x67\xe7\x1d\x91\xea\xb4\x2e\x72\x77\xde\x0a\x8a\x75\x61\x6d\x55\x0b\x6b\x63\xa2\xef\x78\xdb\x76\xfe\xc4\x5c\xc6\x7f\x66\x32\xe3\xfe\xd9\x50\x47\x22\x3a\x6a\x4f\xab\xf9\xee\x81\xf9\x01\x9b\x9a\x3f\x82\xf1\x06\xe2\x78\x28\x45\xe8\x34\x8e\x23\x2f\xc8\x11\x4e\xba\x50\x15\x7f\x21\xc5\xab\x88\xd2\x1e\x0b\x22\xd5\x22\x4f\x07\x6d\x63\x6a\x5b\x56\x84\xfe\xd0\x76\x73\xb6\x21\x89\xfb\xa2\x73\xcb\x4b\xb2\x5a\x0c\x5f\xb4\xb7\xf4\xf9\x38\x64\x6e\x47\xf9\x65\x04\x5e\x01\x51\x57\x9b\x7b\xa8\x12\x66\x40\x31\x19\x19\x3d\x82\xce\x00\xb5\x62\x26\x55\x12\xb4\xe7\xc5\x17\xd0\x9e\x43\x9b\xf6\x9c\xbe\x1c\x3d\x0f\x7f\x02\x3b\x0f\x4d\xe4\x14\xd1\x09\xff\x0c\x79\xf9\x55\x92\x17\xac\x13\x18\x41\x56\x7c\x84\x5f\x12\x81\xc5\x9c\xac\xac\x24\x59\x51\x65\xbc\x24\xac\x36\x85\x20\x35\xf8\xa5\xb6\x17\x58\xbd\x17\x5e\xf6\x6f\x81\xd3\x4a\xd7\xc7\x68\xaa\x95\xbc\xf7\xa2\xb0\xe7\xa6\x70\xfc\xff\xce\x4d\x21\xe8\x65\x67\x51\xbc\x13\x99\x14\x74\x49\xa5\x59\x7a\xec\x2e\x1d\x37\x8a\x1f\x7d\xd9\xa8\x19\x52\x7d\xf9\x65\x63\x87\xde\xe3\xa1\x4b\x46\xc9\xdc\xb4\xb5\x19\x8f\xe2\x72\xd9\x3d\x97\xe5\x4c\xdf\x89\xa5\x77\x10\x9b\x8c\x69\x34\xa5\xf4\x8e\x66\xa1\x74\x84\xf0\xf6\x66\xb1\x54\x9b\x97\xde\x4a\x96\x9b\xd0\xd4\x85\xbf\x59\xf7\xdd\xe8\xa4\xb1\xac\xad\x15\x6d\x2d\x66\x7b\x1d\xa7\xf8\x21\xe1\xd8\xb6\x9d\x47\x0b\xc8\xd2\x9a\xf2\x5f\x81\x69\x82\xc9\x6c\x26\xd8\xc1\xd5\x5d\xe5\x03\x2b\x7b\xcf\x92\xe6\xfa\x92\xfa\x20\x2d\x8d\x36\x07\x2b\x60\x6a\x75\x73\x6d\x75\x99\x5a\xdd\xdc\x58\x5d\xa6\x56\x37\x6f\x38\xb7\xa8\xd5\xcd\x9b\x17\x80\xa5\x4e\xef\x8e\x06\x67\x3b\xae\xcf\xa0\x87\xe4\xb2\xec\x9e\x79\x65\x8d\x11\xae\xcc\x73\xa3\x1a\xe1\xbe\xc1\xe5\xc2\x2c\x57\xe7\xe3\x21\xf3\x14\x1b\xd8\x38\x80\x78\xf9\x10\xea\xa8\xb7\x1d\x62\xa1\x10\xf1\x72\xb8\xad\x1e\x5a\xae\x23\x20\x2b\x4e\xbd\x40\x1e\x6c\x32\xd8\xe0\xa3\x76\x65\xa1\x7d\x24\xc6\x85\x26\x32\xa6\x38\x33\x0e\xb9\x02\xe1\xbc\x79\xea\xe5\xe6\xee\xea\x50\x77\xb6\x54\x2e\xb3\x3a\xef\x81\x76\x15\x5f\x7a\x60\xa0\xc5\x51\xb3\xa1\x11\x75\x2c\xc0\xfb\x4a\xdd\x48\x4c\xa5\xd9\xa7\x6c\xd3\x51\x5b\xe9\x18\x95\xe1\x89\xb6\x73\x1c\xe5\x7d\x57\x17\xde\x7b\x8b\x6c\xf4\x37\xfc\xeb\x97\x20\x51\xdf\xf2\x0d\x6a\x13\x38\x3e\x33\x43\x50\xef\x9a\x79\x6b\xbc\x8d\x55\xa0\x46\x41\xa3\x72\x53\x99\xeb\x58\x82\x64\x28\x80\x16\xa4\x53\x65\x6a\xb6\x80\xa5\x6b\x00\xd5\xa0\x3c\x4e\x81\x5a\xf4\xe8\x5e\xb0\x9a\x5d\x7e\xd9\xe6\x7c\x10\xae\x72\x86\xfd\x80\x55\x20\x68\x8f\xf9\x61\xd0\x6a\xb5\xdb\xb0\x3d\x1a\xb0\x4d\x48\x87\x7a\x7d\x24\xe1\xa7\xd3\xe8\xdc\x61\x38\xc1\x3e\xee\x99\x8f\xec\x15\x77\x7f\xaa\x6b\x90\xc7\x7b\x07\x39\x96\x4d\x6d\xbb\xa9\x13\x57\xc1\x52\xda\x7a\xe9\x6a\xd8\xe3\xc6\xb8\x57\x78\xdc\x3b\xee\x71\xe7\xc0\xc7\xf7\x8e\x7c\xac\x0f\xfd\xcf\xd9\xf6\x34\x77\xbd\x72\xf5\xd5\xb6\xd0\x9c\x7f\x31\x67\xa9\x08\xdb\x7a\xdf\xee\x6b\x23\x89\xea\x4e\xc7\x9b\x47\xf4\x57\xed\xbb\xd6\x19\xad\x3a\x3c\xf6\x74\xf8\x88\xce\x8f\x8d\xce\xc7\x1d\xbd\x8f\xff\x89\xee\xab\x35\x7b\xd8\x4a\x0b\xdd\x7e\xf9\x35\xea\xec\xf1\xf7\xa8\xcf\xfe\xe5\x7c\xfd\xa3\x19\xf0\xef\xf3\x38\x82\x88\x91\x5f\xcc\x7d\x3f\xe2\x1e\x31\xfe\xdf\x73\x2f\xa1\xb2\xea\x69\xc7\x73\xd2\xbe\x1e\x58\x91\xca\x6d\x0e\xae\x0a\x3a\x95\xc5\x22\xdf\x77\xb7\x36\x83\x83\x4e\xa9\x7a\x15\xef\x1d\x91\x89\x75\x14\xda\x96\x29\x96\x71\x7d\x26\x53\x88\xeb\x83\x17\xfc\x1f\xb8\xf9\x11\xe1\x50\x22\x3d\x1c\xca\x72\x92\x4f\xc9\xfd\x5f\x8a\x26\xf9\x14\x61\x5e\xd1\xb6\x9d\x79\x5f\xfd\x65\x1e\x47\x9a\x34\x2e\x1a\x6d\x1e\xaa\x2d\xe5\x70\x51\x7b\xf6\x50\xed\x9f\xc0\x73\x28\x55\xf5\x21\x72\xcb\x0c\xc6\xc5\xff\x55\x1a\x6e\x32\x46\x61\x46\x56\x52\x7f\x8d\x13\x65\x02\x92\xf5\x29\x76\xc0\xc3\x76\xc6\x6b\x57\x19\xe2\x41\x2b\x1b\xca\x39\x57\x3d\x2c\xe0\x39\xf1\x0a\x26\xa2\x5f\xd0\x62\xd5\x78\x74\x66\x30\xb2\xc4\x50\x5e\x70\x98\xe1\x44\xd3\x4c\x70\xb0\xe0\x98\x30\x67\xcb\x25\xfd\x94\x50\x67\x5b\x29\xb7\xb7\xde\x8a\xb7\xd7\xf5\x65\x89\x52\x0d\x70\xe9\x42\x76\xc4\x9f\xdc\xad\xb7\x17\x25\x95\x96\x2f\xd1\x12\xc2\x9e\x4e\xc6\xf3\xe9\x61\x94\x02\x05\x19\x07\xdd\xc1\x04\x9d\xbc\xe4\x78\xd4\xd2\x80\x4a\x65\x41\x66\xb6\x3d\xab\x17\x24\x5c\x3c\x04\xb6\x26\xcc\x1e\x81\x62\xf0\x25\x1d\xac\x8f\x40\x34\xa9\x8b\xeb\x42\x84\x1a\x0b\x20\x17\x3d\x2c\x4e\xb5\x26\xfb\x7a\x99\xbe\x60\x81\xf0\xd6\x3b\xf2\x67\x5d\x5f\x93\x68\x2a\x4b\x84\x1f\x82\xcb\x64\x6a\xae\xe1\x83\xc7\xc3\x63\x8f\x82\xaf\x1e\xef\x6d\x21\x5f\x43\xf0\x88\xbb\x3b\x25\x97\x5f\x10\x95\xef\xfc\xc9\x45\x14\xef\x06\xc0\x59\x6a\x5c\x25\x38\x81\x0c\x39\x24\xac\x01\x70\xb3\xc4\x12\x46\x74\x43\x71\xed\x32\x04\xbb\xaa\x60\xf0\xc4\x65\xee\x93\xd0\xba\xbc\x38\x8f\xe2\xdd\xe5\x93\xd0\xa0\xa4\x38\x21\x23\xbc\x22\x23\xc8\x4e\x0a\x91\x33\x44\xca\xd0\x2a\xb4\x2c\xe4\x0c\x4d\x5c\x52\x4e\xe2\x7f\x57\x65\x60\x93\xeb\x14\x7a\x30\x2a\x7a\xee\x24\xc3\x12\x22\x6c\xa1\x4b\x5f\x90\x4d\xd1\x93\xd1\xd1\x76\x12\x4f\x79\x57\xd3\x73\x1a\xae\xc8\x56\xbe\x3a\x55\xc1\xc0\x0a\xe2\xe3\x7b\x9b\x25\x5a\x33\xd7\x97\x11\xe0\x64\x90\x2b\xe1\x4d\x5f\x80\x1b\x7d\xfd\x7d\xde\x03\x19\xa3\x9c\x6c\x27\xf1\xbf\xab\xa6\x53\x9c\x91\xfa\x1b\x57\xdb\x89\x13\xbb\x3e\xaa\x5f\x07\x23\x1c\xb9\xe4\x3e\xb8\x47\xb4\x58\x55\x70\x5f\xd3\x7c\x19\xa7\x43\x90\x74\x39\xc0\x33\xd7\x62\xeb\x70\xb0\xa1\x51\x14\xa7\xcb\x21\x97\x7c\x83\x81\xe5\xe6\xee\x13\xb6\xd6\x56\x42\x85\x1a\xfe\x67\xdc\x6b\xfe\x67\xf9\xd7\xe8\x99\xbc\x24\xa7\x25\xe0\xd9\x54\x07\xc5\xc5\x6c\xc9\x52\x96\x83\xdd\x3b\xbc\x3b\xf3\x4f\x61\xf6\x38\xd6\x47\xb8\x7e\xd6\x8c\x4f\xf6\x10\xe3\x23\x93\x32\x98\x1a\x1a\xa1\x32\x7f\xa1\x2b\x24\x68\x15\x5c\x8e\x5e\x31\xd2\x8a\xe0\x44\xef\xee\x38\xd8\x8a\x92\xa6\x73\xfe\x2c\x06\x78\xd5\xe1\x2c\xf4\xdd\xf1\xc7\xc8\xa1\x28\xa0\x81\xf3\x80\x86\x12\xb3\x4e\x91\x52\x78\x80\xe1\xd2\x13\x26\xdf\xf1\xce\x10\x56\x18\xea\x85\xa2\x8a\x1e\xa6\x83\x5d\xe6\xd6\xcb\x52\x36\x63\xeb\x99\x0c\xb9\xe2\x8f\xf0\xad\x70\x26\x0b\xa4\x0f\x3e\xff\x8d\x23\xa6\x17\xaa\x27\x2c\x83\x0e\x04\x7a\x04\x82\xc7\xe9\x6c\x8b\x2f\xd0\xd9\x16\x1b\x9a\x5a\x28\x14\x61\x1f\x54\x80\x22\xc7\x82\x5d\x68\x61\xb9\x0d\x83\xc1\xa8\xda\x7a\xc1\x60\x04\xff\xf9\x7c\x3b\x0a\xea\xc8\x5f\x83\x2d\x96\x09\xb0\x50\x59\x52\x69\x4e\x57\x55\x14\x83\xa6\xef\x08\x3d\xe1\xa4\x33\x58\x81\x97\xb3\x4d\x42\xe7\xcc\x39\xb7\xcf\x97\xd8\xb2\xe9\x7a\x13\x5a\xa8\x2e\xb5\xa0\xf4\x1f\xdb\xac\x34\x8a\x2f\xa0\x38\x31\x0b\x2f\xa1\x70\xc9\x0b\x4d\xcc\x17\x20\xef\x94\x31\xc5\x2b\x16\x7d\x06\x64\x56\x4f\x22\xa3\x2f\x84\xbe\x55\x45\x1f\xb2\x3d\x4e\x4d\x97\x8c\x0a\xef\x05\x6e\xc9\x18\xa4\x6c\x07\x21\x48\x49\xaa\x07\xca\x70\x9a\x28\x24\xd5\x29\x32\xe2\x27\x11\x19\xbf\x45\x0f\x8b\x2c\x49\xb2\xbd\xe8\xa2\x62\xfe\xba\xed\x37\x64\xee\x3e\xbd\x5f\xd3\x05\xae\x63\xbc\xf7\x9a\x1a\xe2\x15\xa1\x5c\x70\x3c\x3c\xcd\xbd\xbd\xfb\x35\x3f\xe5\xe0\xf9\xf8\x34\xf7\x56\xc3\xaf\x47\xe1\xca\x2d\x5c\xff\x32\xf7\xf6\xb6\xed\xac\xc8\x6a\xe8\x8f\x46\xc3\x62\xe8\x40\xfa\x71\x2e\xae\xd6\xdf\xeb\xda\x66\xcd\xd1\xb6\xb7\x96\xae\x43\x4d\xdc\x95\x16\xf7\xa8\x5d\xa9\xcc\x36\x64\x2b\x0c\x84\xc4\xb1\x96\x79\x6a\xf3\x0a\x82\xc6\x25\x5f\xa7\x96\x7c\x18\xa6\x1d\xfb\x16\xc7\x2a\x70\x88\xf6\x81\x5a\x70\x8e\xf0\x43\x4b\xd7\xa0\x97\x6a\x87\x1b\xe8\x66\xd1\x64\x4f\x8f\x85\x05\x57\xb5\xf7\xa0\x50\x95\x1a\xf8\x41\x4c\x91\xb7\xaf\x6d\x90\x86\x1d\xa4\x89\xc9\xcd\xfa\x00\x80\x64\xc2\x7e\xf9\x87\x61\x61\xba\x72\x0f\x70\x68\x63\xea\x7d\x1a\x1d\x83\xf4\x41\x60\x62\xbd\x99\xa4\x7e\xad\x53\xb8\x93\x20\x73\xae\xf8\xcb\x70\xac\xa9\xa0\xd6\xbc\xa9\xe8\xbd\xfb\x27\xbc\x0f\x39\x99\x77\x70\x99\xb7\x1f\xd2\xa1\xff\x20\x92\xaa\x0b\x91\x53\x0b\x53\x3a\x55\x29\xcd\x03\x9e\xb7\x6a\xaf\x5b\xf3\x9e\x27\xc5\x85\xd2\xf8\xdd\xca\x99\x06\x25\x3e\x04\x0c\x8b\x60\x44\xc1\x64\x7a\xc2\x5b\x72\x7b\xc2\x91\x38\xb6\x95\xd1\x24\x27\x3a\x51\xc5\xc6\xcc\x89\x1f\xce\x6b\x81\x5c\xcb\x1d\x04\x8d\x3a\x92\x9d\x3a\xd1\x64\xce\xa5\x71\x93\x19\x10\x22\x85\x26\x1e\xf3\x3a\x0b\x72\xcb\xd9\x40\x3e\xfc\x20\x76\x96\x78\x23\x5c\x19\x40\x44\xe1\xa3\x09\x78\x35\xf1\x13\xea\x24\xb2\xef\xb8\x80\xe0\x49\x09\x0b\x36\x22\xbc\x55\xc2\xb0\x60\xd6\x65\x0f\x60\xfd\x06\xa3\x51\x51\x50\xf1\x76\xc2\xdb\x4e\xc9\xe2\xa4\x1b\x4a\x30\x15\x2b\xb7\xec\xce\x4a\xc7\x85\xb1\x1d\x99\xc9\x8c\xb5\x55\x68\x10\x70\x0f\x3e\x00\xd8\x77\x8a\x85\x63\x78\x86\x23\x48\x51\x84\x0b\xac\x65\xfa\x3f\x92\x09\x24\xc0\xd7\x8c\xd9\xe6\x64\x14\xce\x2f\x0e\x00\xcd\xe3\x64\x3e\xed\xfb\xfa\xd1\x72\x9d\xf9\x95\xef\xce\x21\x27\x9e\xcc\x90\xd9\xc1\x63\x7d\x5c\x65\xfb\xdf\x58\x9e\x89\x3c\xfa\x16\xc2\x37\xa2\xd6\x0f\x2a\x97\xba\x8a\x3c\x08\x83\x12\x5f\xa7\xad\x25\xdd\x13\xca\xc1\xbd\x20\xdb\xc9\x5e\xb8\x91\x88\xe0\xc1\x47\xb2\xf7\x8e\x3b\x9a\x80\xbd\x99\xf8\x69\xdb\x67\x6b\x65\x99\xb4\xaf\x3c\x35\xd0\xc2\xab\x56\x86\x9c\xf9\x75\x50\xcd\x7b\x90\x45\x7c\x09\xe1\x6b\x72\x9c\x6c\x40\xa7\x31\xf4\xa7\xf8\x1d\xb9\x6e\x83\x1c\xbf\x20\xef\x14\xb0\xe5\x88\xae\xb1\x68\x0f\x30\x8f\xaa\x14\x5d\xb2\x53\x14\xe6\xca\x76\x73\x81\x6f\x8f\x80\x42\x2f\x4e\x48\xb6\x21\xe4\xc6\xb6\x1d\x3e\xe4\x0a\x4c\x0c\x12\xcb\x54\x39\x4c\x9c\xb2\x4d\x93\xb5\xf1\xdc\xdd\x65\x8a\x3d\xaf\x53\x98\xa9\x01\xae\x80\xa8\x35\x5f\x3f\xe4\x2c\x70\x06\x38\x69\xec\x9b\x55\xb6\x17\x3b\xf3\x5d\x5a\x8d\xd3\x52\x49\x0f\x2c\x71\xab\x42\x71\xc3\x4c\x5f\xa2\x05\xdb\x50\x20\x12\x71\xca\x64\xe2\x8c\x2a\x1e\x67\xe9\x1d\x44\x00\xec\xea\x24\x62\x5d\x07\x50\xfd\x1d\xaa\x87\x42\x56\x71\xd7\xe4\x1e\xd3\xc2\xaf\x55\x1c\x8a\x78\x35\x49\xa7\x61\x5e\x63\x85\x6d\x3b\x16\x3f\xf4\xe0\x86\xdc\x25\xf1\x95\x75\x71\x93\x9f\x5f\x5a\x81\x35\xb0\x10\xa6\x2e\xb1\x2e\x38\x8b\x2a\xc5\xc2\x27\x8b\x2c\x2d\x87\x7b\xe1\xd5\x38\xb8\xc9\x92\x28\x1c\x48\x99\xdc\x72\x73\xb1\xd3\x5d\x2b\x7c\x72\xc9\x9f\x14\x21\x71\x2d\x78\x59\x11\x0d\xd7\xba\x38\xe7\x7d\x5e\x5a\x55\x2e\x07\x7a\xe2\xcc\xdd\x41\xbc\x0d\xfe\xe4\xac\xc0\xfe\xa6\x9a\x18\xba\x8d\xc5\x94\xf8\x84\x2e\x2d\x14\x56\x73\xb1\x5c\xa8\xa7\xe1\xd8\xd5\x13\x25\x12\xaf\xaa\x05\x7d\xc2\x77\xb8\x6b\x5d\x0e\x2e\x6e\x2e\x0d\x10\xf4\xce\xb7\x3d\xc1\x8b\xf3\x9b\xcb\xc0\xfe\x37\xff\x9b\x51\xc8\x2b\x1c\xcd\xd9\x9f\xea\xd9\x6b\x0a\x98\xec\x4b\x0d\x6f\xbe\xfe\x02\xad\x4c\xcd\xd6\x9b\x02\xf4\x55\x19\xdc\xca\x4f\x05\xe5\xe9\xff\x57\xc2\xbb\x39\xe8\x76\x50\x16\x84\x0b\x12\x3b\x19\xa4\xc8\x83\xaa\x7a\x90\x14\xce\x8e\xc7\x4e\x82\xf0\xb6\xc5\x23\xac\x68\xf1\x29\xdb\xce\x57\x10\xe5\x69\x41\xe7\x6c\x46\xac\x2a\x72\x77\x9d\x54\x05\xea\x80\xf7\xa3\x92\x6f\xdf\x64\x37\x71\xc2\x5e\xb0\x5d\xcc\xdb\x9c\xaf\xe1\xf1\x8e\xa6\x51\x9e\xc5\xd1\xf9\x32\x16\x09\xcd\x52\xba\x8b\x97\xb4\xcc\xc0\x46\xe0\x17\x96\x17\x71\x96\x2a\x11\x59\x7d\xf1\x39\x88\x9a\x91\x50\x34\x6c\x1f\xa7\x68\x30\x02\x41\xd5\xfa\x86\xed\xe3\x2e\x5a\x44\x6c\x3b\x09\xcc\x2a\x18\x68\x45\xc5\x66\x82\x7a\x1a\xdf\xe0\x2c\xb5\x70\xfb\x82\xd1\xd6\xe0\x72\x10\x36\xac\xa6\xf4\x3b\xd2\x99\x29\x9d\x8b\xb8\xba\x1f\x4b\x5a\xc6\xf3\xd7\xf4\xc8\xf2\x59\x87\xa0\x2e\x2a\x69\x41\xb7\x44\xcd\x93\x39\xb9\x3e\x96\xef\x66\x29\xce\x54\x5d\xa3\xb3\xe8\x28\xe3\xac\xe7\x6f\x59\xb6\x16\x6e\xa9\xfa\x1b\x50\xa5\x35\x5f\x99\x1f\xaf\x01\x45\xba\xe3\xac\xeb\xd0\xd5\x0e\x07\x5e\xc7\xec\xa9\x60\xa5\x74\x9a\xef\xee\xd0\xec\x49\xc4\x40\x9d\x94\x53\xc2\xcc\x6e\x9a\x6b\xd2\x8e\xae\x0e\x15\x9e\x03\x18\x58\x1d\x5b\x56\x14\xd7\x93\xad\xdf\xc4\x69\xac\x87\x56\xab\xca\x75\x1c\xa1\x69\xbc\xe6\x88\xcb\xdb\x4b\x97\x7d\x23\x8a\xe5\xb5\x7c\x3f\xf8\x83\x57\x80\x74\x2e\x10\x29\x68\xa0\x22\x05\x81\x93\x96\x48\xea\xb5\xde\xd0\x92\x1f\x07\xe1\x20\x8a\x0b\x7a\x93\xc4\xe9\x72\x60\xf4\xef\x29\xb3\x84\x0a\x1a\x46\xf4\x6c\xe7\xd6\xa8\x1d\x9c\xf9\x27\x7c\x56\x25\x95\xe8\xd8\x6a\x23\xe9\x73\x1c\x45\x9f\x32\x19\xe9\xb9\xb1\x36\xda\xab\x9e\xd0\x93\x4a\x6c\x92\xe1\x7f\xeb\x15\x97\xe5\x61\xd9\x16\xa8\x2a\x04\x6d\x2a\x82\x4c\x54\xed\x7c\xdb\x40\xda\xce\x3a\x4d\xf4\x6d\x4c\x4a\xa8\x93\x5e\xe5\xd9\xfa\x71\x33\x0b\xcb\x76\xfc\x1a\x63\x0a\xad\xb7\x8b\x7b\xdf\x76\x4c\xa1\x55\xa7\x35\x05\xdc\x80\x76\x7b\x47\x1a\x44\xa7\x2d\x31\x3f\x4c\xd9\xba\x8c\x7d\x5a\x4d\x73\xbd\x99\x32\xd2\x71\xbf\x6a\x81\xb8\x49\xe5\x5a\xdb\x51\xa0\x6e\x1d\xc7\x76\xe6\x54\x0a\x0b\x19\xdd\x59\xed\x37\x4e\x3c\xf5\xae\x1c\xd4\xf9\xb5\x16\xb9\x7c\xdc\x27\xcf\xe4\x59\xa6\x62\xb8\x03\x5c\x2a\xcb\x08\xd0\x06\x76\x11\x07\x3e\xa8\xd6\x17\x5b\x23\x6b\x7d\xb1\x0f\xd7\xee\x5f\x1c\xce\x65\x94\xa8\x7b\x1b\x5f\x99\x88\x21\x4f\xa8\xea\x59\xb3\x1d\x95\x11\x6a\x8d\xed\x1e\xf4\x9c\x67\x8d\x04\xa7\xaa\xb7\x2a\x9a\xba\xb9\x83\x6a\xc3\x3d\x9d\x06\x84\x85\xc8\x77\x93\x6d\xb5\x5c\x1c\xe8\x96\xa9\xb0\xe2\x23\xcc\xaa\xd8\xea\x27\xec\x57\x1c\x76\xd9\xc2\x6b\x8e\x0d\x7d\x5e\xa7\xc2\x2e\x55\x40\x33\x25\xb1\xf4\x70\x94\xd6\x08\x10\x9d\xff\x03\x2d\xe3\xcc\x61\x28\x2c\x35\x35\x0a\x55\x76\xa5\xa5\xae\x88\xa1\xca\x04\xb5\x54\x2e\x46\xde\xfe\x69\x8a\x4b\x65\xbc\x49\xbd\x15\x3c\x1a\x5e\x48\xca\xa0\xb3\x34\x0d\x3d\xa9\x32\x00\xf5\xcf\x48\x6a\xdb\xcc\x2b\xe6\x34\x61\x4e\x8a\x53\xe1\xe4\xd3\x80\x56\x15\x71\x88\xcb\xba\x49\x56\x6b\x95\x46\x61\xcf\x59\xda\xe3\x03\xc2\x45\x89\x36\x56\x19\x0e\xd6\x12\x13\x8c\x83\xac\x23\x24\xce\xf8\x69\x67\xb5\xda\x77\xa3\xca\xc0\xc1\x89\xdd\x07\x36\x2f\x67\xe4\xf6\x10\x30\xef\x80\x8f\x01\xf3\x8e\x2e\xf3\x56\x2e\x75\xbf\xc2\xfb\x80\x79\x7b\x2c\xa3\x4b\x3f\x48\x4d\x4e\x5a\xce\x0b\x63\xda\x6f\x45\x00\x49\x25\x66\x6e\xaa\xc5\xb5\x50\x58\x36\xe8\x32\x36\x1f\xe7\xe5\x61\xd6\x1a\x2c\xa4\x5b\x68\x50\xec\x06\xbb\xd4\xd7\xae\x8b\xf7\xa8\x58\x8b\x7b\x38\xb2\xdc\xa8\xab\x88\x49\xf5\xbe\xeb\xb6\x09\x60\x54\xb0\x64\xa8\x6a\x59\xcd\x46\xfd\x26\xc9\x9d\x15\x55\x94\xb8\x0e\x10\x11\x7d\xf3\xb4\x4f\x3a\x93\x93\xec\x9e\xcb\xe2\x51\x73\x59\x98\x73\x59\x3c\x76\x2e\x8b\x7b\xe7\xd2\x7c\x3b\xdf\xe6\x45\x96\x13\x4b\xc5\xcf\xec\x58\xdc\x8e\x19\xd7\xa7\x77\xd7\x2a\xeb\x87\x41\x9b\x9a\xa7\x6c\x3f\xf8\x71\x4d\x97\x2c\x2c\xef\x9d\x3f\x67\x07\x45\x0c\xcf\x9a\x6e\x74\x4e\xda\x9c\xa7\x3f\xaa\x4a\xb4\xcc\x02\xd6\x2a\x8e\x22\x96\xd6\xb5\xd5\xbc\xe7\x59\x32\x14\xe4\xb3\xa6\x68\xdf\xd6\xd4\xcc\xff\x86\xb7\xc8\xe7\x04\x72\x87\x04\x31\x1f\xf7\xf9\x26\x5d\x86\x37\xb4\x60\xdf\x7c\x85\xe3\x5f\xbe\x7b\xf7\x61\x3f\xfa\xdb\xf7\xcb\xec\xfa\xfa\xfa\xfa\xed\xc7\x9f\x57\x2f\x7f\x5e\xf2\x9f\xbf\xf3\x7f\xde\x3f\xbf\xfe\xf5\xfa\xfa\xfa\xc5\xcb\x8f\xaf\x7e\x79\xc1\x0b\xae\x3f\xbf\xfd\xf8\x61\xf4\xe3\x75\x5e\x7c\x35\xff\xe6\x3d\x2f\xf8\x2d\xfe\x38\x8a\x5e\x5e\xbf\xbd\xbe\xfe\x63\xff\xe2\xa7\xaf\x7e\xfb\xcb\xdf\x18\xb4\x4f\xf6\x1f\x5f\x25\x7f\x5c\x5f\x5f\xbf\x3b\xf0\x1e\x8a\xf7\xdf\x25\x1f\x8b\x77\xdf\xef\xf9\xbb\x68\xf4\xf1\x67\xff\xd5\x77\xdf\x16\x3f\x7c\xbf\x1f\xcd\xdf\xfc\x23\x2a\xfd\x9f\xe1\xc5\x6f\xd1\xcb\x5f\x7e\x8d\x5e\xbe\xdd\xdd\xfc\xdd\x4f\x6e\xd2\xf7\xd7\xef\x9f\xfd\x47\xf2\xeb\xe7\x0f\xc9\x6f\xcf\xbf\x7b\x46\x3f\x7f\xc8\x7e\x7c\x19\xfd\xc7\xa7\x5f\xbe\xfb\xbc\x7c\xff\xd5\x67\xde\x80\xbe\x4c\x5e\xbe\xff\xe5\x7d\xf6\x87\xfb\xec\x63\xf1\xe1\xd5\xf5\xfb\xef\x9e\xbf\xfa\xea\xb7\x6f\xff\xfe\x1f\x6f\xfe\xfa\xb7\xe7\x2f\x7e\xd9\x67\xfb\x34\xf9\xe6\xd7\xcf\xc5\xa7\xf5\xf3\x9f\x8b\xe3\xdf\xbe\xff\xfd\xb7\x3f\xe6\xc9\x5f\xfe\xf8\xfd\x8f\x67\xbf\xbe\xfe\xfd\xb8\x59\x5e\xa7\x39\x7b\xb5\x7e\xf1\x72\xf3\xc3\xef\x3f\xee\x7f\x79\xf7\x66\xb1\x89\xe2\x6f\x9f\xbf\x7c\xf9\x76\x9c\x7e\xbf\x79\x15\xed\x5f\x8c\x9e\x1d\x5f\xfe\xe3\x45\xf9\x6e\xf9\x9c\x6e\xd3\xbf\x14\xff\xf8\xf8\xe9\xc5\x0f\xcf\xc6\x3f\xfa\x9b\xf7\xd7\xe3\x9f\x6e\xbe\x2d\x7e\x63\xf3\xeb\xc3\xfc\xeb\xfc\xd9\x8f\xd7\x37\x63\x3f\xfa\xe6\xaf\x7f\xf9\xeb\xa1\x00\x48\x5d\x7f\xfc\xf9\x97\x77\x1f\xfe\xf6\xf5\xf3\x5f\x7f\xfc\x91\x58\x9d\xf2\x34\x67\x41\xc4\x9a\x3d\x25\xe3\x6a\xd1\x9e\x92\x31\xea\x16\xdf\xca\x1e\xd9\xad\x14\x39\x5a\x21\x22\xd6\x99\xdf\xc0\xe9\xa6\x8c\xd3\xc2\x68\xe5\xf6\x81\x33\x9c\xe0\x2d\x8e\xf0\x1c\x6f\xf0\x12\x2f\x30\xb8\x82\xaf\xe2\x02\x1f\xab\x0b\x63\x7c\x20\x23\xbc\x16\x72\xe4\x0d\x39\xf3\xf1\x9e\xff\x73\x4d\xce\xba\xa6\x87\xdf\xc1\x66\x59\x29\x3d\x47\xd8\x75\xa7\xba\xab\xe9\x3f\x1c\x60\x2f\x0f\x65\xce\xd6\x22\x0d\x0e\x81\x44\xe6\x90\xcb\x0b\x9d\xef\x74\xfa\xec\xed\xa5\x16\x65\xc2\x5f\xba\x4e\x09\xb0\x12\xf0\xf8\x29\x2b\x86\x66\xe5\x03\x7a\x4a\xb1\xaa\x08\xd0\xbb\xaf\xe6\xf4\x84\x3b\xb5\x09\x39\xaf\x39\x67\x89\x0c\xeb\x8e\x38\x00\x46\xa0\xb9\x17\x89\x50\x3e\xe3\x35\x29\xbd\x92\xe6\x4b\x56\x5e\xa9\x1f\x01\x6c\x3f\x79\xc1\x2e\x83\x54\x45\xd9\x3e\x15\x57\x7b\x7c\x81\x6c\x9b\x9f\xee\x4b\x88\xf7\x5c\x97\xde\xdd\x39\x79\x1d\x43\xfe\x28\x5b\x72\x9e\xcc\xc2\x14\x9c\x31\x9a\xef\xb6\x1b\x0b\xc7\x08\xe1\x5d\x2f\x8d\xd4\x69\xc5\x3b\x11\x7d\xd5\x41\xf8\x6c\x74\xc2\xb4\xa9\x15\x3b\xbb\x91\x8a\xb0\x33\x3f\x6c\xce\xbb\xba\x20\x93\xd3\x1e\x1e\x38\xf3\x0a\xb6\x4a\xf4\xa6\x70\x18\xba\xf8\x4a\x35\x1e\x85\x1a\x78\x2a\x55\x34\x04\x75\xae\xf1\xf7\x23\xe4\xaa\xe2\x1c\xe6\x9a\x90\x5d\x13\xe9\xaf\x1c\x4a\x62\x73\x75\x5d\x86\xa9\xb0\x8d\x5a\xc7\xa9\x43\x71\xdc\x5c\xd3\xb5\xd8\x54\xc3\x67\xa8\xaa\x48\x0f\x0e\xc5\xcd\xb5\x46\x01\x74\x6e\xb6\x6e\xf6\xde\x68\xe4\x36\xf0\xb0\xf1\x89\xe6\x50\xe5\x50\xdc\x67\x48\x45\x85\x90\x25\xe7\x63\xa5\x07\x5c\x1b\xec\xe9\x50\xc6\x86\xdd\xf5\xc9\x1f\xf8\xda\xb6\x53\xb9\x6e\x71\x07\x9e\x9e\x9d\xdd\xd8\xb6\x03\x9b\xf3\x9d\x8a\xf2\xea\x70\x8c\xd1\xa3\xf6\x77\x20\x54\xd7\x6b\x81\x53\xf7\xa0\x54\x75\xec\x5e\xdf\xdd\x89\x41\xa1\x93\x1e\x7f\x0a\xdd\x96\xf9\xb1\xda\xe9\x3d\xcb\x1e\x2f\x9c\x5d\x4b\x3c\xe3\x7b\x8b\x79\x71\xc1\x1b\xb0\xa8\xf2\x9f\x03\x4b\x92\x9a\x64\x44\x19\x7f\xff\xf9\x05\x2d\xb9\xe0\x46\x27\xa3\x29\xa6\x13\x7f\x2a\xdd\x53\xb5\x8a\x5c\xf0\x85\x8f\x3b\xe8\xb4\x88\x53\x9a\x24\xc7\xdb\xae\x8f\xfa\xa7\x93\x6e\x43\xa5\x91\xa9\x06\x5e\x8a\x14\x9e\x5b\xc8\xf4\xf4\x1c\x10\x9c\x23\x04\x50\x2d\xb1\x94\x2e\xab\x16\x9a\x37\x6f\x12\xed\xbe\xf6\x92\x33\x6e\xf5\x51\x59\xc0\xc8\xdd\x74\x09\x99\xb5\xe4\xc3\x45\xdc\x6d\x30\x73\xe6\xec\xef\xee\xce\x32\x48\xe0\x73\xd6\x07\xff\x1a\xc8\xb6\xed\xb4\x88\xdc\xbe\x49\xe4\x34\x1a\x46\x6a\x1a\xd6\x4f\xad\xb6\xbd\xd4\x2a\x42\x12\x61\xb6\x2d\xf2\xb3\xff\x57\x91\x9f\x5e\x2c\xc4\x31\x44\x7b\xd5\xf6\x2e\x4e\x09\x6d\xd0\x06\x9c\x91\x74\x18\x87\xb1\xcb\x2e\x48\x83\x2e\x5c\x39\x71\xb3\x08\xa7\x24\x76\x33\x14\xa4\x2e\xbb\x24\x0f\x90\x91\x2b\x27\x7d\xa8\x0a\x8e\x49\x3a\xcc\x50\xe0\xc4\x2e\x61\x38\x75\x09\x53\xce\x7e\x6d\xe4\x6c\x60\x4d\xbb\x82\x46\x72\xe2\x61\xa1\x48\x4e\x0b\x49\xf5\x30\xd6\x75\xb5\x7b\x28\xd3\x5c\x52\xa6\xa8\x93\x32\xed\x6d\xdb\x01\x8e\xe1\x3e\x6a\xb4\xbd\x8f\x1a\x45\x88\x93\x9a\xb9\x22\x35\xf3\x16\xa9\xe9\x24\x24\x3a\xc5\xd0\x32\xfe\x95\x4e\x1f\x36\x20\xa3\x09\xd8\x97\xab\x34\x79\x0f\x92\x8f\x4d\xfb\x30\xb5\xed\xb3\xbd\xa2\x24\x7c\x37\x5e\x59\x30\xd5\xa0\xa2\x9f\x21\x3b\x23\x7d\x54\xd6\xb6\x9d\x5e\x02\xcc\x10\x04\x3b\x32\x6c\x87\xca\x6c\x3b\x5f\x09\x76\xa2\xde\x9f\x10\xa8\x45\xb0\x24\x70\xc9\x53\xdd\x5f\x5e\x31\xa7\xf1\x82\x73\x5b\xb6\xdd\xdc\x76\x81\xe8\x17\xc6\xfd\x98\x6e\xe9\x23\xbb\x8d\xc1\xbe\x67\xf1\x4f\x4d\x21\xf9\xd7\x4c\x61\xfb\xc8\x6e\x23\x98\x42\xf3\x52\xa3\xba\x2b\x24\x13\x7d\x3e\x58\x3c\x80\x75\xa9\x36\x1e\xf9\x5b\xf4\x6c\x4d\xa5\x91\x36\xd5\x8d\xb4\x35\x8c\x6c\xc5\x2a\x2d\x31\x9d\xc4\x53\xb8\x78\x51\x09\x9d\xcc\x1b\x17\xc7\x8a\x1b\x29\x64\x2c\x5c\xd4\x39\x64\x72\xba\xfc\xb1\xf8\x89\xa6\xcd\x3c\x33\xa8\xb7\xbb\x0d\x4d\x5f\x46\x4b\xa6\x52\x9f\x58\xd8\x67\xc3\xaf\x04\x41\x7a\xa1\x32\xa4\x66\x1b\x96\xd3\x2b\xed\xc0\x08\x34\x56\xb7\xa1\xf3\x6a\x4f\xa9\x43\x02\xc2\x2f\x30\x6b\x5e\x90\x74\x37\x6c\x52\xb2\xc7\xb7\xac\xf5\x44\xda\xc0\x71\xf2\xe7\x1a\x8b\xb5\xdd\xc8\xc6\xed\x5b\x58\xdb\x76\x66\xdd\x33\x5d\x22\x3c\xeb\x99\x4a\xfd\xaa\xfe\xdc\xa2\xa9\x97\x6e\xaa\xd4\x7b\xd4\xd2\x86\x6e\x08\x34\x1a\x8c\xe6\xc0\x89\x8c\xf0\xa8\xa5\x16\xf3\xf6\xed\xa2\x15\x0a\x39\xe1\xad\x54\xe6\x6f\xe2\x34\xfe\x29\xc9\xca\x99\x83\x4e\x73\x5a\xce\x57\x7c\x47\x1b\x57\x66\xa5\x8c\x69\x60\x7c\x5b\xf3\x82\xb9\x5f\x87\xf8\x1d\x9d\xff\xbe\x04\xcf\xb5\xda\x2b\x06\x81\x5e\xa4\xf6\xbd\x79\x6c\x0f\x1f\xa1\x8d\x8c\x9a\x8b\x4b\xc3\x25\xa6\x54\x2e\x31\xde\xd7\xd8\xfb\x9a\x3f\x4b\xa7\x18\xef\xeb\x0e\x20\x0c\x8d\x2a\x6d\xb8\x0d\xff\x74\x2b\x51\xa5\x0a\x91\xd2\x5a\xe4\x0a\xde\x8f\xb8\x78\x30\xc0\xc0\x1b\xbd\x8a\x93\x44\x4d\x9f\x3d\xb2\xfe\xf7\x39\x8d\x38\x47\xa5\xda\xd1\x47\xb4\x33\x00\x0d\x77\x1d\x77\x77\x55\xcc\xbd\xf6\xfd\x48\xc9\x36\xbc\x15\xc4\xb2\x15\x50\xc9\xd6\x9b\x6d\xc9\x9e\x67\xeb\x9b\x38\x65\x91\x30\x0e\xbb\xe6\x28\xb0\x8e\x45\x16\xd1\x9c\xa4\xde\xf1\x0d\x3d\x0c\xf9\x9f\x38\xc5\x59\x07\x7e\x2b\x03\xe8\x5e\x8d\x43\x52\x8b\x72\xc5\xc4\x9f\x0e\x39\xc5\xe7\x84\xed\xd9\x08\xe1\x15\xe9\x5e\x20\x74\x9e\xe0\x6d\xc7\x3b\x58\xdc\xf3\x1c\x47\xa4\x7b\x5d\xe7\xa4\xb3\x09\xde\x08\xed\xca\x12\xfe\x84\x99\x81\x93\x99\x86\x93\xf3\xda\x84\x70\x41\x46\xe1\xe2\x22\xe5\xbc\x4d\x75\x62\x2c\xea\x3c\xff\xe2\xc5\x64\x31\xc5\x3b\x22\xdd\x2b\x66\x93\xd1\xf4\xca\xe1\xff\xc2\x1c\xd1\xd3\x55\xf0\x96\xbe\xc5\xc7\xfa\xbd\x3f\xbd\x9a\x0f\x1d\xfe\x57\x42\x14\x3d\xdd\xf2\x3a\xa1\x13\xdf\xdd\xc9\x8c\xba\x9b\xbb\x3b\xcd\x8f\x74\x87\xce\x88\xf6\xb8\x81\x88\x64\x55\xb2\xfa\x1d\xb2\xed\xea\xe1\x88\xae\x54\x56\xde\xcd\x55\xa6\xf0\x7f\x87\xe7\x28\x88\x6d\x5b\x2b\x58\xf2\x39\x57\x4f\x47\x84\x37\x64\x87\x97\xe4\x88\x02\x95\x8f\x74\xc3\x3f\x72\xe5\xf4\xb6\x99\x23\x14\x54\x8f\x1b\xfe\x88\x37\x44\x00\x57\x84\xdc\xaa\x5e\x46\x78\x8e\x20\xee\x46\xed\xea\x56\xaa\x50\x83\x1d\xf4\x4a\xe8\x8a\x45\x3a\x2c\xb5\x25\x80\x68\x8e\xf8\xd2\x30\xdb\x86\x1c\x80\x80\xf2\x1f\xcb\x6c\xe3\x8c\xf8\x01\xd4\x28\xf3\x71\x89\x3a\x74\xf4\xde\x22\x4e\x12\x41\xc9\x0e\x38\x83\x27\x07\x9d\xa8\xba\xb1\x34\xeb\xea\x74\x8f\xe2\x7f\x82\xb0\xf2\x1d\xa7\x93\xd4\x4c\xf3\xf3\x6b\xa8\xc9\xef\xdf\x8d\x1d\x1a\x46\x73\xdf\x75\x91\x8c\x24\x5b\xc2\xed\x99\x85\xc0\x58\x51\xcf\x8e\x8b\x53\xc2\x74\x0b\x64\x2e\x85\xb1\xfd\x40\xe4\xa6\x8d\x11\x2e\xb8\x44\x91\x10\x66\xa6\xb2\x5d\x29\x87\xbb\x92\xf8\x61\x79\x11\xd7\xa9\x4d\xb6\xdd\x37\xb2\x3f\xa6\xe6\x9d\x2c\x4e\x21\x7b\xcd\x4a\x98\x08\x6f\x11\x96\x18\xb7\x85\x28\x90\x5c\xfc\x88\x17\x4e\x81\x9a\x9f\xc8\x26\xe5\x94\xac\x26\xe5\xd0\x9f\xd6\xc9\x68\x5b\x15\x12\x51\x41\x7a\x3e\x4f\xf1\x9c\x30\xd8\xa5\x32\x80\xfc\x0c\x6f\x08\xd3\x73\x84\x6b\x33\x31\x81\x03\x5d\x72\x34\xe6\x83\x85\xe9\x2d\xc9\xdc\x63\x87\x92\x33\x66\xd2\x88\x96\x55\xd9\xfe\x71\x89\x37\x28\x64\x5a\x92\x64\x07\x5d\xfa\xb6\xed\xf0\x46\xbc\x30\x4e\x97\xd7\x3b\x96\xd3\x25\x73\x96\xd8\xac\x87\x37\x08\xe1\x48\x40\x63\x29\x2e\x38\x17\x35\x8c\x47\x61\x79\x11\x4d\x46\x53\x23\x91\x8c\x22\x50\x33\x32\xc2\x3b\x32\xc2\x47\x32\x0a\x8f\xb5\xb5\xf8\x51\xad\xc8\x81\x44\x93\xe3\x74\x52\x4e\x27\xfe\x34\x94\x84\xe1\xa0\x0c\x88\x0f\xe8\xee\xce\xd9\xb9\x2e\x9e\xb9\xe4\x80\x4e\x0b\x31\x82\x09\xff\x18\x6f\x31\x9a\xe2\xd9\xf9\x6e\x2a\x06\xb4\x26\x6f\x21\x87\xae\xf7\xe6\xfa\xf3\xec\x97\xeb\xd7\x3f\xbf\xc4\x37\x64\xd8\x2c\xd3\x86\xbc\x68\x25\xbe\xd9\x93\x85\x36\x90\x33\x42\xf6\x1a\xe1\xda\x73\x9a\x76\x46\xef\xee\xf6\x97\x10\x19\x6d\x5d\x6b\x0a\xd7\x78\x8f\xf0\x4d\x7d\x80\xdc\xe0\xbd\x20\x30\x14\x50\xe4\x86\xe4\x5e\x92\x2d\xfd\x91\x73\x83\xf0\x8d\x4b\xbc\xf1\xd7\x4f\x6f\xf0\xba\x2a\x5d\x23\xdc\x31\x22\x39\x94\xaa\x96\x7c\x46\xb5\xed\xf4\x35\x7e\x47\x6e\x86\xeb\xf0\x9a\xbc\xbb\xa8\x26\xff\xe3\x5b\x31\xd1\x2b\xf8\x4a\xc0\xff\x7d\xc7\x3f\x7a\x8d\xd7\x43\x72\x2d\x6f\xe1\x6f\xe1\x4a\x68\x81\x39\x71\x0f\xd6\x98\x1f\x9e\xc1\x4d\x63\xa7\xb7\x8c\x23\x7a\x98\x8c\xde\x13\x95\x75\xbd\x87\x7d\x26\xfc\x29\xf8\xf9\x52\xf2\x35\x8c\x6b\xc8\x8d\xb0\xc3\xf8\xc9\x04\xee\xae\xe7\x90\xb7\x4b\x7f\x57\x8a\x3b\x01\x5f\xbc\xcb\xdb\xc7\xe8\xc1\x6d\x9f\xb8\x4f\x63\xc5\x11\x3c\x58\xd3\xf1\x87\x29\x27\x2a\xd5\x37\x5b\x75\x8e\x6d\x56\xee\xe8\x76\x71\x00\x5d\x9c\xbd\xbc\xe5\x41\xe7\x63\xb0\xe2\xec\xaa\xa1\xb4\x37\x9d\x2f\x35\x95\x4c\x3e\x4c\x0c\x67\x92\xae\x8a\x65\xb6\x51\x99\xc5\x3a\xa5\x09\xbd\xbf\xcc\xe8\xaf\xa7\x26\x04\x64\xbb\xf7\x7b\xf7\x0d\x47\xbf\xd3\x94\xae\x19\xf7\x7f\xae\xab\x41\x9b\x09\xbe\xd7\x32\x48\xc3\xd3\xc5\x7f\x87\xb8\xa3\x99\x76\x98\x5c\x9d\xaf\x0e\x36\x13\x0b\x7c\x5c\xf3\xb8\x3d\xfa\xef\x2f\x11\x5f\x5e\x65\x39\xeb\x16\x5f\x1e\x7b\xd2\xd7\x3d\xe8\xe7\x7d\xdc\xd0\xb6\x6b\xbb\xce\x6f\xde\x6b\x0c\xdb\x5b\x89\x6f\xc5\x8a\x18\xb2\xf6\xa5\x4c\x47\x8b\xb0\xd4\x38\x1d\x2b\x5f\xde\x50\x67\xfc\xd5\x08\x0f\xea\x7f\x2c\xf7\xfe\x99\x5c\x27\x9b\x15\xb5\x50\x65\x43\x2c\x22\xdb\x63\xd1\x6f\xb5\xae\x69\xd7\x32\xea\x95\xf2\xce\xc5\x1f\xe6\x3d\xed\x3a\xc5\x44\x1f\xfb\x9a\x2c\x97\x36\x9e\xa8\xf6\x94\x37\x9e\xf4\x9a\x4c\x3c\x55\xe2\x1e\x70\x10\x8f\xfa\xa2\x6f\xf4\xca\x1a\x4f\x7e\xbf\x10\xd9\x85\x95\x3d\xdb\xa7\x87\x50\x61\x26\xc2\x1e\xbf\x4a\x32\xda\xad\xb8\xd1\xa8\x0c\x72\x4b\x4c\x5b\xf5\xef\x21\x4b\xc8\x2d\x43\x15\xb7\x52\xc7\xc1\x80\x61\x13\xc5\x02\x8a\x15\x06\x07\x6c\xe8\x5f\xb6\x31\xee\xee\x8e\xba\xfe\xc5\xa3\x8e\x01\x23\xfe\xe8\xf6\x11\x6e\x10\x7d\x19\x54\xbb\xb3\x9b\xb6\xd2\x9b\x9e\xa6\x27\x7c\x7b\xc2\x13\xff\xaf\x53\xe4\xf8\x7f\x45\x27\x14\xfe\xaf\xf3\xf3\x7f\x1b\x14\xd9\x36\x9f\xb3\x37\x74\xb3\x89\xd3\xe5\xcf\x1f\x5e\x93\x28\x2e\x4a\xd5\x25\xdf\x6b\xde\x7f\x15\xde\x9a\x6e\xfe\x9f\x00\x00\x00\xff\xff\x0d\x37\xaf\xaa\x32\xe4\x01\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\xbd\x7b\x73\xdb\x38\xb2\x28\xfe\xff\xfd\x14\x12\xef\x39\x1c\xc2\x82\x68\x51\x79\xcc\x2c\x69\x44\xd7\xb1\x9d\xc4\x67\x12\x3b\x1b\x3b\xb3\xe3\xd5\xf2\xaa\x60\x11\x92\x70\x42\x91\x5a\x12\x92\xa5\xb1\xf4\xdd\x7f\x85\x17\x09\x52\x94\x9d\xd9\x9d\xad\xdf\x9e\xba\x53\x35\xb1\x08\x34\x1a\xef\xee\x46\xa3\xd1\x7d\x7c\xd4\x6e\xfd\x9f\x98\x8e\x49\x92\x93\xd6\x59\xba\xd8\x64\x74\x3a\x63\xad\x7e\xcf\xfb\xb1\x75\x8e\x93\xd6\x2f\x38\x89\x48\xf6\x0d\xcf\x5b\x4e\x84\x93\x55\xf4\xed\xff\x4c\xe7\x98\xc6\xee\x38\x9d\x83\xd6\xa7\xcb\xdb\xae\x2a\x1b\xb5\x9c\x19\x63\x0b\xff\xf8\x38\x5d\x90\x24\x4f\x97\xd9\x98\xb8\x69\x36\x3d\x56\xf9\xf9\xf1\xa7\xcb\x5b\xd0\x3a\x3a\xfe\x5f\xed\xc9\x32\x19\x33\x9a\x26\x0e\x03\x8f\x74\xe2\x58\xe9\xfd\x7f\x93\x31\xb3\x10\x62\x9b\x05\x49\x27\x2d\xb2\x5e\xa4\x19\xcb\x6d\xdb\x5a\x26\x11\x99\xd0\x84\x44\x56\x5b\x67\xce\xd3\x68\x19\x13\x20\xff\xb8\x0a\x14\x31\x07\x04\x24\xce\x49\x8b\xe3\xd3\xf8\x4b\x8c\x12\x8b\x6d\xcb\xbf\x2e\x9e\x47\x40\xfe\x74\x86\x21\x64\xb2\xe8\xe3\x0a\x67\x2d\x12\x10\xd4\x54\xeb\x03\x4d\xa2\xf4\x61\x20\xff\xf8\x4d\x10\xd3\x38\xbd\xc7\xf1\x40\xfe\x69\x84\xc8\x49\x3c\x19\xf0\x7f\x7c\x36\xa3\x39\x24\xee\xf9\x66\x9a\xe1\xc5\x8c\x37\x7e\xb7\x73\x8a\x51\x01\x8f\x19\x61\xcb\x2c\x69\xe9\x94\x16\x73\x08\xc4\x90\x82\xc7\x22\x25\x71\x52\x98\x8b\xd1\x6b\xe3\x61\x1a\xca\x5f\x44\xfc\xe2\xdd\x88\x51\xc3\x20\x64\xe4\xef\x4b\x9a\x11\xdb\x56\x3f\x02\x5e\x26\xb7\xed\x18\xa8\xfa\x62\x27\x85\xed\x1e\xe0\xe9\x99\x4e\xcb\x54\x1a\xc7\x3a\x43\x09\x79\x68\x5d\x64\x59\x9a\x39\xd6\x19\x4e\x92\x94\xb5\x26\x34\x89\xd4\x9c\xb4\x7e\xb0\x3a\x69\xc7\xfa\xc1\x02\x01\x9b\x65\xe9\x43\x6b\xe6\x8e\xd3\x88\x20\xeb\xd3\xf5\xf9\xd7\x8f\x17\xa3\xab\xeb\xdb\xd1\xbb\xeb\xaf\x57\xe7\x16\x9c\xed\x38\xbe\x25\xe2\x6d\x47\x8f\x6a\x12\xfd\xc7\xdd\x2e\xe0\x7d\x18\xf6\x42\x77\x8c\xe3\xd8\x59\xea\xf9\x85\xe6\x92\xe1\x45\x31\x12\x80\x5e\x38\x64\x61\xa0\x9a\x9a\x38\x78\xbb\x65\x60\x07\x97\xb0\x2c\xc8\xa0\x1c\xba\x9d\x02\xe2\x35\xea\xcc\xdd\x24\xcd\x1c\x8e\x2d\xfb\x9e\xe1\x82\x29\xea\x05\xe9\x09\x75\x63\x92\x4c\xd9\x2c\x48\x3b\x1d\x90\x38\x94\x8f\x79\xd1\x82\x9d\xf3\xe8\xf9\xc3\xb2\xb1\xbc\x72\x63\xd6\xa8\x03\x1e\xe5\xd0\x18\x03\x99\x13\x76\x4b\xe7\x24\x5d\xb2\xd6\x0c\xe7\x2d\x3e\xa8\xf7\x84\x24\x2d\xbd\x7e\xc0\xce\x98\xf5\x86\xf2\xe3\x98\xe0\xec\x7b\x31\x64\x6a\xcf\x45\x08\xa1\xb2\x62\x3d\xd9\x65\x8a\xc3\xa0\x5c\x08\x02\x92\x6e\xb7\xed\x08\xd8\xf6\x7e\x89\xc8\xc0\x02\xeb\xc5\x59\xb6\xd1\x4b\x39\x12\x29\xbb\x31\x66\xe3\x99\x43\xc0\xa3\x99\x25\xe7\x3a\x59\xc6\x31\xac\x02\x55\x01\xc4\xa6\x11\x00\xbb\xb2\x3f\xa9\xea\xcf\x18\x21\x64\x0e\x84\x6e\x9f\x99\xe6\x30\xd9\x23\x0e\x9b\x6c\xb7\xed\x31\xb0\xed\xc6\x32\x15\x4c\xb0\x8e\xc2\x68\xfa\xd8\x61\xcd\x7d\x1a\x9b\x7d\xda\xef\xd1\xd8\xec\x51\xa5\x3f\xb9\x03\x1e\x47\xb6\x3d\xb5\x6d\x67\x84\xda\x1e\x9c\xaa\xd5\x36\x98\xa0\xa9\x3b\x4e\x93\x31\x66\xce\x04\xf8\x2b\xd4\xf5\xe0\x44\xe5\xd9\x76\xec\x00\x63\x8e\x63\x47\x92\x83\x91\xdc\x2a\x0c\x65\x4e\x0e\x82\x11\x6a\xf7\x02\xbd\xe0\x09\xd2\x85\x03\x12\x80\x47\x9e\x3c\x45\x13\x38\x41\xc3\x30\xe8\x74\x56\x27\x24\x00\x53\xdb\x9e\x0e\x57\xa1\x9b\x2d\x13\x07\x04\xa2\xc2\xb2\xd4\x6e\x8a\x44\xdf\x44\x1b\xf9\x1c\x18\x5d\x98\xf1\x65\xcf\xd7\x29\xcd\xdd\xc9\x32\x41\x0c\x8a\x9f\x38\xcb\xf0\x06\x91\x12\x6e\xe9\x80\x47\x41\x06\x22\x38\x86\x0b\x54\xd2\xf2\xc7\x5d\xd0\x36\x88\x21\x1f\xd6\xa8\x69\x83\x96\xcb\x6d\x50\xfe\xf4\xa9\x1a\x6d\x06\x1e\x23\x44\x77\xbc\xf4\xb8\xa9\xb4\x39\xad\x03\xf3\xc3\x4f\x4a\x0c\x63\x94\xec\x76\x8e\xa4\x7e\x53\x31\x3c\xb2\xcb\x7c\x38\x82\x85\x9b\x90\x35\xbb\xa5\xe3\x6f\xa8\x4e\x9e\x88\xa0\x94\xa7\xbc\xcb\x0e\xce\xa6\xcb\x39\x49\x58\xae\xc6\xae\xeb\x89\x65\x58\x4f\x7e\xe3\x01\x3d\x3b\x18\x79\x01\x3e\xa9\x03\x04\xb8\xd3\x01\x64\x88\xbb\x5e\x88\x8a\xbc\x21\x0e\x83\x89\xbb\x58\xe6\x33\x87\xd7\x28\xc7\x1e\x40\xaf\x8d\x8a\xb9\xda\x6e\x47\xdb\x6d\xe6\xc4\x60\x07\x67\xee\x22\x4b\x59\xca\x47\x80\xcf\x2b\x32\x47\x59\x4d\x97\x8b\x17\x8b\x78\xa3\x56\x6e\x31\x6f\x60\x07\x17\x2e\xa3\x2c\x26\xc8\xba\xcf\xd2\x87\x9c\x64\x16\x5c\xb8\xea\x27\x6a\xf7\xe0\xc2\x25\xc9\x0a\x3d\x72\x38\x9c\x4d\x57\x7c\xa4\x16\xee\x8a\x64\x39\x4d\x13\x64\x59\xe5\x47\x2e\x81\xd2\x04\x2d\x39\x6c\x14\x7d\xa4\x39\x23\x09\xc9\xc4\x77\x9a\x8c\x89\xfc\x31\x99\x88\xbf\x19\x99\xa7\x2b\x52\x81\x91\x49\xa7\x71\xac\x53\x73\x91\x4c\xe6\x94\x89\x1f\x8b\x8c\x2c\x48\x52\xc5\xab\xd2\xae\x93\x71\x15\x57\x5c\xa0\x30\xa7\x50\x6e\xd3\x61\xc8\x1b\x7a\x4f\x93\x88\x26\xd3\x4a\xfe\x1e\x0d\x5e\x64\xe9\x98\xe4\xb9\x06\x6e\x51\x49\x85\xf3\xe5\x82\x2f\x69\x41\x82\xe1\xc2\x1d\x3f\x44\x68\x8f\xcb\x5b\xc7\x96\xc8\x9b\x45\x34\xfb\xbe\x4a\x04\xe8\x81\x2a\x96\x73\x9c\x7f\xdb\xaf\xa4\xd5\xdb\xed\xe0\xe3\x2e\x84\xfd\x7d\xee\x64\x2d\x73\xd2\xca\x59\x46\xc7\xcc\x0a\xae\x85\x28\xe6\x4a\xce\xf1\x39\x4b\x17\x24\x63\x1b\x07\x43\x6b\x34\x22\xf9\x27\xc1\xe6\x2d\xf8\xb8\xc2\xf1\x92\xf8\xed\xde\x4e\xee\x0c\x8a\x98\x63\xb9\xc7\xf7\x38\xcb\x2d\x00\x93\x86\xa1\x6c\x31\xdb\x66\x6e\x89\x63\xc0\xfc\xc7\x88\x4c\xf0\x32\x66\x3e\xdb\xed\x1c\x0a\x60\x66\xb6\x7a\x17\x64\xe5\x52\x15\x7b\x29\x71\x15\x3c\x34\x72\x5c\xb2\x66\x19\x1e\xb3\x1b\x92\x51\x62\x4e\xa1\xe2\xbb\x6a\x3f\x51\x98\xc0\x0c\xa6\x7c\x4d\xe6\x08\xbb\x53\xc2\x1c\x2b\x4e\xa7\xf9\x18\xc7\xc4\x02\x30\x46\xbd\x20\x3e\x61\x7a\x9b\xc5\x9d\x0e\xa0\x88\x0d\x63\x2e\x87\xc0\x4c\xfe\x22\x21\xcc\x6d\x9b\xef\x8a\x36\x42\x99\x6d\x3b\xd9\xb0\x17\x9e\xa0\xde\x76\x9b\x0d\x3d\xfd\xa3\xcf\x7f\x00\x9e\x29\xa8\x23\x80\x1a\x7e\xe0\x24\x88\xc3\x89\x04\xc9\x7d\x68\x7e\x85\xaf\x9c\x04\x0c\x52\xb9\x7b\x87\xbc\x91\xc3\x04\x26\x61\x08\xfc\x4a\x5a\x26\x9a\x31\xec\x87\x61\x08\x2a\x59\x7c\x8b\x0e\xc5\xbf\xfc\x9f\xb0\x14\x43\xd2\x5d\x65\x90\xb2\x34\x8e\x69\x32\x3d\x5d\x91\x0c\x4f\xc9\xde\x28\x11\xf4\x09\xb3\x99\x3b\xa7\x89\x43\xa0\x1e\x05\x35\xb1\x72\xe0\x60\x0e\x63\x38\x83\x4b\xce\x1d\xf8\x98\x26\xa8\xc7\x85\x21\x98\xa1\x1e\xcc\x51\xaf\x69\x00\x39\x03\x52\x83\xe8\x85\x70\x26\x7f\xf5\x43\xb8\x1c\xc6\xa1\xf8\xd0\x43\x41\xf5\x50\x50\xb0\xdd\x3a\x49\x07\xcd\x78\x77\xd3\x0e\xa2\x30\xe3\x1f\x5e\x08\xf3\x0e\xf2\x00\x8c\xbb\xe4\x0d\xea\x49\xf2\x1a\x71\x14\x5d\x12\x06\x0a\x49\x34\xf4\x42\x8d\x87\xff\x16\xa8\xba\x28\x1a\xf6\xc5\x1c\xa6\x5d\x01\x01\x33\x95\xc4\x71\x76\x91\x07\x76\xa2\x35\xf9\x60\xa8\x27\xdb\x3b\x4a\x8f\x73\x38\xf4\x8e\x92\xe3\x1c\x7a\x47\xd9\x71\x1e\x86\x7e\x91\xbb\x37\xe0\x5a\xa6\x5c\xee\x20\xd6\xcb\x13\x65\xb0\xe4\x64\x45\xea\x0e\x3e\xea\x0d\xe2\xbf\xda\x85\xf0\xc5\xff\xc3\xdb\x10\xe6\x7c\x23\xc6\x7a\x23\xe6\x74\x3a\xc7\x16\x80\xb3\x86\x9d\xb9\x44\xbd\x60\x59\x2e\xac\xa5\xda\x99\x4b\x39\xab\xf2\x17\x09\xe1\xac\xd8\x99\xa9\x6d\x3b\xa9\xde\x99\xfc\x47\x37\x3e\x4a\xe5\x06\xe5\xfb\x32\xad\xee\xcb\x94\xef\xcb\x54\x4f\x6d\x6d\x5f\xe6\xb5\x7d\x29\x77\xa6\x93\x21\x89\x11\x56\xf3\xbb\x19\x4c\x3a\x19\xe4\x39\x7c\x9b\x02\x3f\x3f\xb4\x4f\xeb\x9b\x35\xff\x17\x6d\x56\x18\xc1\xb1\xe0\xc2\xb5\x81\x16\x3b\x98\xa2\x5e\x40\xcb\x81\xa5\x7c\xc7\xf2\x74\xbe\x9b\x97\x72\x47\xc3\x44\x55\x85\xd7\x4e\x0f\xd2\x2e\xe9\x78\x20\x48\x4e\x68\xc7\x0b\x12\x7e\xf2\x91\x23\xe6\x70\xfa\x98\x84\x72\xcf\xc9\xb1\xcb\xf8\xee\x8b\x3b\x1d\xbe\x6f\x33\xb8\xec\x48\x34\x8b\xf4\xc1\x11\x90\x7d\x41\x07\xfa\x00\x04\xf1\xc0\x99\xc9\xcc\xfc\xef\x19\x73\x96\xe0\x38\x86\x11\xca\x8f\x63\x38\x1e\xd2\x10\x0d\xd9\x90\x8a\x89\x8e\xe0\x30\xea\x2e\x8e\x66\x30\xea\x2c\x8e\x66\x62\x16\x52\xe4\x21\x44\x06\x02\xc2\x0b\x7d\x31\xae\xd5\x42\x29\x1c\xa6\x30\x0d\xc3\xe2\xe0\x37\xfe\xdd\x9b\xf4\xe5\xff\xd3\x9b\x54\xaf\x22\xbe\x86\xc6\xf5\xcd\xba\x68\xd8\xac\x53\xd4\x0b\xa6\xe5\x9a\x9a\xaa\xcd\x3a\x2d\xd8\xe8\x54\x6c\xd6\xc5\x93\x6c\xb4\x99\x7b\xa6\x48\x30\xc1\xbc\xc2\x44\x53\xbd\xe0\x52\x30\x88\x8a\xdd\x26\xe7\x9d\x77\x40\x2c\x94\x18\xe5\x83\xf4\x38\xf7\x7b\x70\x86\xf2\xc1\xf8\xa8\x5c\x6e\xf1\x91\xe3\x75\x63\x70\x9c\x03\xdf\x83\x4b\xe4\xf5\x7a\x47\x33\x98\x88\xbf\x31\x8c\xaa\x9b\x7b\x09\x93\xce\x52\xe1\x04\xc0\x8f\x9e\xdc\xdb\xf5\x0d\x1e\xfd\xe1\x1b\xfc\x69\xfa\xf9\x40\xe3\x3c\x4d\x2e\x13\x46\xb2\x15\x8e\x25\x15\x85\x11\x92\x87\xbf\x0c\xf5\x82\xac\x9c\xa4\x8c\x6f\xfc\x65\x07\xb1\x61\xa6\x77\x66\x54\x7e\xbd\xe0\x2c\x93\x73\x5d\xdb\x76\x96\x5d\x9e\xdc\x25\x05\x98\xf9\xfd\x22\x94\x2d\x1c\xcb\xa2\x3d\x4e\x75\xa2\xc1\xf2\x38\xf2\x7b\xfc\xa8\x33\x03\x74\xe2\x44\x92\x75\x4f\xd1\xe2\xa4\x37\xe8\xf9\x0b\x38\x41\x11\x1c\xa1\xd8\x98\x92\x29\x9f\x92\x29\x38\x9e\x74\xe2\xa3\xf8\xd8\x79\x79\x34\x39\x9a\x00\x00\x57\xc8\x13\x09\x51\x40\x91\x33\x95\x79\xfd\xa3\x08\x74\x47\xe0\x78\x05\x93\x4a\x5a\x47\xa4\xe5\xc3\x2c\x44\xc3\x31\xe4\x93\x39\x85\x43\xfe\x87\x8a\x8f\x24\x0c\x77\x42\x4d\xa8\x21\x7a\x70\xd8\x83\xbd\x30\x94\xca\xc3\x14\x45\x03\xb3\x41\x0b\xde\xa0\x05\x38\x8e\xf8\x1a\x31\x91\x2e\x24\x52\x67\xd1\x4d\x01\x94\xbf\x3a\x29\x28\x25\x82\xfc\x77\x13\x9b\x57\xcf\x10\x1b\x43\x87\xf4\xbd\x94\xe2\x1f\xa2\x4f\x89\xa4\x4f\x11\x66\x78\x86\x93\x28\x26\x99\xc5\xe9\x0d\x75\x12\xc0\x39\xae\x63\xb9\xee\x71\x24\xf5\x96\xdd\x18\x6f\xd2\x25\xb3\x00\xcc\x11\x75\x52\x2e\x48\x9b\x07\x0f\xdd\xd3\x52\xd7\x01\x76\x41\x5c\x23\x55\x05\x14\x8c\xbf\x9b\x54\xed\x2a\xb0\xcf\xec\xa7\x2a\x70\x9a\x7c\x4e\x69\xc2\xf2\xb3\x8c\x60\x46\xa2\x51\x05\xbc\x24\x82\x18\xf5\x02\x5c\xee\x92\x4e\x07\xcb\xc5\xcb\xe9\x19\x0e\x61\x82\x08\x3f\x77\x27\xee\x66\xc4\xd2\x05\xba\xc2\x57\x90\xff\xbe\x4f\x19\x4b\xe7\xfa\x73\x85\xe3\xd1\x9c\x26\xcb\x1c\x95\x23\xb1\xc0\x59\x4e\xde\xc5\x29\x66\x0e\x95\xb2\x29\xd0\xa0\x8b\xf8\x49\x48\x2f\x04\xbb\x6a\x57\xa6\x84\x5d\xac\x59\x46\xe6\xe4\xee\x17\x3e\x85\x4f\x92\x74\xa9\xad\x91\x84\x95\x4f\x63\xa1\x8a\xe0\xf2\x7b\x90\x9f\xa0\x34\xc8\x39\xbd\x9e\x38\x8a\xe8\x0a\xe1\x3d\x17\xf5\xda\x76\x5b\x4b\xe8\x5a\xb9\x2c\xb2\xa4\x6c\x3d\x2b\x3e\xbc\x30\x88\xdf\x50\xdb\x76\x62\x44\x01\x9c\x9d\xf0\x9f\x33\xfe\xd3\x51\x04\x3b\xdb\x6e\x67\x6f\x32\x49\xe1\x67\x65\x72\xb2\xdd\xc6\x27\x09\x4f\x4e\x50\xac\xd9\xf5\x30\x81\x59\x58\x9f\xbb\x8f\x34\x21\x17\x7c\xbd\xf2\xb9\x7b\xb2\xbb\xbd\x20\x29\xa7\x2f\x51\x9c\x28\x09\x21\x55\x53\x96\x9b\x8b\x73\x7c\x77\x95\x66\x73\x1c\x8f\x1c\xc2\x01\x8a\x89\x83\x18\x88\x02\x6a\x5e\x9f\x2b\xc3\x67\x10\x62\x60\xee\xfc\xf8\xe0\xce\xdf\xdb\x44\xbe\xf7\x02\xd6\xf6\x9d\xff\x7a\x17\xc2\xd7\xff\x1a\x21\xc4\x94\x1f\x60\x82\x68\x90\xb8\xbf\x72\x99\xcf\xbd\x43\x1e\x4c\xdc\x8b\x5f\x6f\xbf\x9c\xde\xa0\x3e\x4c\x7e\xc7\xae\x34\x61\x73\x01\x74\x9b\xca\xed\x76\x78\xae\x38\x2b\xab\xf1\xa4\x4e\x27\x93\xeb\x2c\x15\xdc\x04\xe6\x48\xc8\xdb\x31\x52\xeb\x25\x1f\xf0\x1f\x7e\x62\xee\x91\x9c\xf3\xbf\xc7\xb5\xcf\xf7\xde\x46\xfc\xbb\x5e\xe1\x1a\x4c\x2a\xb6\x1b\x9f\x2a\x3f\x86\x09\x9e\x13\x9f\x40\x1a\xad\xfd\xac\x83\x77\x01\x95\x2c\x7d\x56\x88\x8b\x42\xf7\x55\x27\x17\x0e\x83\x14\x40\x5a\xed\xea\x33\x34\xa5\x0a\xfc\x2c\xb5\x4a\x7e\xd7\x16\xaf\xb7\xe4\xe9\x1d\x22\xa0\x8b\x01\x69\x12\x3d\xd5\x10\xb3\xc1\x15\xbe\xf2\x99\xb9\x94\xe9\x81\xa5\xbc\x0b\xe1\x8f\xff\xde\xac\xcb\x11\xbc\x4b\x66\xc9\x1a\x2c\xc0\x79\x19\x75\x32\xce\xb9\x2a\x92\x74\x5e\x63\x4f\x69\xc1\x9e\xf2\x7f\x4e\x92\xe6\xeb\x7c\xd9\x20\x34\x73\xb9\x2c\x2a\xd7\x7e\xa4\x48\x55\x54\x08\xcd\x91\x10\x9a\x97\xff\x0a\xa1\x79\x56\x15\x9a\xeb\x02\xb3\x96\x85\x67\xa6\x2c\x5c\xc8\xc0\xb3\xef\xd0\x43\xcd\x76\x95\x61\xfb\xa7\x24\x5f\x45\x28\xc4\x25\xdc\xa1\x13\x6c\xc6\x45\x57\xaa\x39\x53\x5a\x7e\x79\x21\x3f\xc0\x4a\x41\x36\xe3\x82\x2b\x55\x82\xab\x54\x0e\x95\xdf\x9e\x12\x64\x73\xa4\xcf\x91\x31\x4a\x07\xd9\x71\xea\xf7\x82\x44\x9c\x2f\x73\x21\xee\xc5\x85\xa4\x97\x98\x9b\x24\x3f\x2c\xe9\x55\x09\x3b\x34\x16\xa3\xff\xd3\x2e\x84\x3f\xfd\x0b\xcf\x9a\xd5\x0d\xf1\x6f\x78\xe4\xe4\x73\x9b\x34\x6c\x8e\xa6\xc3\x4a\xc9\x18\xe4\xe2\x16\xbf\x48\x18\x24\xb6\x9d\x9f\x88\x09\xce\xd5\x4e\x50\x24\x5d\x2c\xd9\x82\xac\xd3\x7f\x81\xb6\x05\x0d\x43\x7e\xca\xf1\x10\x22\xfa\x0a\x91\x3d\xa9\x65\x49\x95\xde\xf4\x9f\xd2\xb0\xe4\x9d\x8e\x5c\xe2\x32\x2f\x88\xf9\xf2\x14\xba\x4c\xa5\x00\x39\xce\x85\xee\x92\x16\xba\xcb\x62\xcd\xc6\xd5\x41\xf8\x57\x48\x92\xba\xf1\xa5\x18\x59\xd1\xf3\x1a\x22\x21\xd5\x22\x21\xad\x88\x84\x54\x8b\x84\x14\x68\x7a\xa2\x64\xc2\xef\x3a\x58\xed\xc9\x51\x7f\xfa\x57\x6e\x30\x25\xca\x2d\x19\x8d\xf7\xb5\x3a\x74\xe2\xd4\xb6\x57\xb9\x4a\xe4\x5d\xe1\xe3\x2e\x28\x24\x6f\x56\xde\x02\xb6\x68\xd2\x62\x40\x35\xac\x9c\xae\x19\xce\xaf\x1f\x12\xdd\x44\x75\xba\x82\x98\x8f\x16\x3f\x96\x88\x23\x4a\x41\x82\x49\x31\x58\x0c\x12\xb5\x91\xcd\x36\x5b\x9c\x13\xfe\x7e\x82\x50\xe5\x9c\xda\xc6\x42\x74\x95\xcb\x4d\x0a\xf9\x48\xdf\xfd\x4a\x19\x17\x51\xf9\x45\x62\x32\x27\x09\x43\xa4\xf2\x79\x96\x26\x8c\xac\x19\xc2\x32\x75\x46\xe8\x74\xc6\x10\x53\x3f\x46\x32\xf5\x81\x46\x6c\x86\x98\xfc\x3b\x82\xed\xc4\xa5\xf9\x19\x4e\x56\x38\xbf\xd1\xf7\x60\x8e\x89\x14\x00\x71\x8b\x66\x49\x98\xbd\x3b\x33\xd7\x0a\xd4\x1d\x27\xc1\x88\xf2\x8d\xf0\x39\x4e\xd9\x69\x46\xb0\xba\xf3\xcd\x50\xa5\x3f\xee\x58\xe0\x19\x8d\xd9\x7a\x14\x64\xee\x3d\x99\xd2\xe4\x33\x66\x33\x07\xc0\xcc\xcd\xc8\x98\x39\x05\x3a\x77\x0d\xcb\xdf\x1b\xe3\xf7\x83\xf1\x7b\xc6\xcb\x8d\x63\xba\x70\xc4\xbc\x54\xaa\x9a\xd1\x28\x22\x89\xa8\x0a\xfe\xb1\x55\x55\xc4\x1c\x57\x5c\x7d\xef\xdd\x04\x57\x27\x45\x02\x7d\xe1\xb5\xf6\x60\xcf\x98\x0a\x73\xae\x40\x8d\xdb\x93\x24\x22\xfb\x88\x47\xcb\x45\x84\x19\x91\x22\xb3\x03\x24\x82\x91\x04\xe6\xd2\xeb\xd9\x0c\x67\xcc\x11\xb8\x46\x53\xc2\x2e\x19\xc9\x30\x4b\xb3\xcf\x19\x89\xe8\x18\x33\xd2\xb8\x58\x07\xb9\x3b\x5a\x68\x88\xdb\x19\x66\x37\xdf\xe8\x22\xbf\x98\x2f\xd8\x46\x56\x24\x34\xc4\x02\xe7\x93\x60\x35\xd1\xdd\x10\x8a\xdb\x08\xb1\x21\x09\xc5\x49\x4f\xe0\x89\x32\xfc\x70\xc3\x36\x31\x89\x78\xab\xf7\xf6\x82\xe0\x0d\xb1\x64\x57\x7c\xc1\xaa\x69\x85\x4b\x34\xe3\xcb\xec\x6d\x9a\xc6\x04\x27\xd7\x0b\x51\xc6\xca\x19\x59\xf0\x95\x67\x41\xe6\xe6\x84\x5d\xe1\x39\x01\x01\x5f\xdb\xc2\x82\xe0\x23\xfd\x46\x24\xd9\xa4\x92\xb5\x05\xf2\x0e\xac\x09\x13\x6f\xd6\x7b\xbc\xb8\x88\xa6\x6a\x88\x4d\x94\x70\x8c\x98\xbb\x10\xc9\x70\x81\x8a\x74\x38\x45\x89\x3b\x16\xa7\x17\x3d\xdc\xce\x18\xf6\xe0\x58\xd1\xf6\x43\x53\xe1\x34\x35\x60\x9c\x26\x09\xe1\x2c\x7f\x81\x33\x7e\x08\xd1\xad\x58\x00\x00\xe0\x04\x51\xdb\xd6\x06\x54\x6f\x50\x1f\x8e\xf8\xd0\x64\xf8\x81\x26\x53\xb5\xd4\x82\x91\x9b\xe3\x15\x71\x00\x9c\xd8\xf6\x88\x37\x91\x8f\xef\x39\xce\x67\xb5\x4f\x87\xca\x71\x58\x21\x3d\x1b\x42\xca\x70\x18\x9c\x42\x0c\x63\x98\xc1\x08\x2e\x21\x01\x81\xca\x96\x0d\xb9\x16\x47\x24\x87\xc1\x15\x4c\x21\x81\xf1\xf3\xd5\x0c\x43\x00\x47\x6e\x46\x72\x96\x66\x44\x2d\xcc\xb2\xba\xfd\x89\x57\x62\x81\x52\x95\x88\x6b\x53\xc1\x2b\x23\xf9\x67\x2c\xff\x2c\xb8\xcc\x33\x45\xed\x1e\x9c\xec\x0f\xc1\xa4\xb2\xdd\x27\x6e\xce\xb2\xf4\x1b\x11\xab\x0d\xe5\x70\xe2\xc6\x34\x21\x7f\x11\x94\x10\x17\x16\x3d\x23\x44\xa4\xa9\xc6\x08\xae\x10\x71\x49\x12\x8d\xe0\x06\x11\xb7\x58\xef\x23\xb8\x46\xc4\xcd\x19\xce\xd8\x28\x58\x9f\xac\x82\xb5\xba\xa6\x9d\xa1\xd1\x70\x1d\xc2\x8d\x64\xf3\x3c\xcb\xb6\xdb\x1b\x67\x04\xd7\x20\x00\xeb\x4e\x87\xf3\xa6\x35\x42\x2b\x70\x9f\x11\xfc\x2d\x90\xe0\x3b\xc5\xb0\x10\x42\x33\x45\x15\x37\xdb\x6d\xf1\xb3\x5d\xa6\x82\xb4\x38\xbb\x2c\x6d\xdb\x99\xb8\xf3\x74\x45\x6e\x53\x67\x09\x23\xa0\xfa\x72\x9b\x3a\x1a\x7c\x0d\x23\x00\xe0\x12\xc9\xd1\x92\x76\x99\x74\xe2\xc4\xa8\xed\xc1\x6c\xbb\x55\x55\x2e\xc1\x23\x11\xc6\x37\x97\xd1\x7a\x84\xd6\x50\x7e\x38\x7c\x81\x0b\xfe\x78\x45\xd6\x6c\x40\xdc\x05\x21\xdf\x74\x33\x04\x05\x10\x0b\x66\xae\x15\x09\xe3\xed\x76\xdc\x46\xe3\xa0\xd0\x2c\x2c\x6d\x7b\x0e\xf9\x01\xab\x3d\x95\x6d\xe6\x69\xdb\x6d\x81\xd2\xb6\xe7\x40\xe8\xb7\xda\x3d\xb0\xd3\x7d\x1a\x60\xdb\x76\xd2\xef\xed\x59\x43\x72\x39\x52\xc0\x2f\x70\x34\x65\x43\x27\xd9\x6e\x63\x60\xdb\x0b\x25\xd9\x36\x00\xc1\x99\x4b\xa3\x75\x08\x04\xa1\x29\x2a\x2e\x67\x63\x37\x45\x6d\x4f\xcb\x81\x7a\x65\x39\x00\x2e\x8a\x75\x6d\xee\x93\x86\xd5\x5d\x0a\x83\xd9\xde\xc2\x55\x16\x92\xc4\xb4\x90\x7c\x94\xc7\x29\x32\x4c\xc3\x20\xd3\x5b\x1b\x2b\xa9\xa5\x20\x8b\xe6\x2f\x4d\x95\x32\x98\x0b\x11\x5f\x9c\xde\x60\x02\xf3\x61\x3f\x94\xcc\x4f\x6f\xc5\x2a\xc3\xa9\x70\x16\x93\xef\xe8\x06\x33\x64\x08\x23\x9a\x0e\x92\x42\x84\x0d\x48\xb7\x1b\x18\x36\x58\x9c\xde\x43\x8a\x70\x21\xbe\xf3\xec\x47\xa9\x68\xc0\x43\x1a\x06\x89\x1e\x60\x64\xb0\xdc\xa3\xc4\x5d\x77\x4c\xd6\xac\xa1\x36\x06\xd4\xec\x28\x71\x37\x06\xd4\xa6\xde\x95\x1a\x3f\xac\xf1\x25\xd1\x3e\xce\x63\x10\xd9\x6e\x1b\xd8\x35\x97\xcb\xf7\x7b\x9a\x57\x12\xd5\x28\xe7\x52\x00\x1a\xa7\x71\x9a\xe5\x75\x61\x47\x24\x7e\xc2\x8b\x51\xa0\xd4\xbe\x95\xec\x29\x61\x9a\xe8\x2f\xe2\x94\x31\x71\xba\x9c\xa1\xb8\xc6\xb8\x66\x9c\x71\xcd\xd0\x70\xa6\x8e\xd6\x4b\x2e\xee\xf2\x51\x96\x4a\xf6\x8a\x75\xdb\x23\x45\xc2\xa2\x4d\xd9\x78\x3c\x57\x1d\xa4\x20\x88\xda\x28\xb6\x6d\x67\xc9\x4f\x3f\x11\xd8\x95\x88\x67\x26\x62\x3d\xab\x63\x34\x1b\x62\x71\x27\xce\xe9\x56\x71\x74\x91\x57\x97\x69\xe5\xea\x72\xe2\xf0\xc6\x4c\x43\xd8\x66\xdb\x2d\x45\x48\x59\xf6\x4d\x50\xca\x13\x47\x68\xcc\xe9\x22\xe5\x32\xfa\x52\x9a\x5b\x2e\xc0\x38\x4d\x18\x4d\x96\x24\x18\x21\xde\x9e\x9d\x64\x4f\xc6\x00\x0f\x69\x08\x37\x87\xfb\x25\x77\xa3\xa0\xec\xa2\x6f\xc5\x7e\xc9\x2a\x2c\x60\x05\x33\x83\x05\x6c\xe0\xc8\x79\x94\x53\xec\x4f\xa0\x9a\x56\x9f\xc2\xea\xd6\xf4\x33\x28\x9a\xe0\xaf\xa0\x51\x8b\xbf\x81\xaa\x1d\x7e\xa5\x51\x10\xaf\x69\x5e\x4d\x72\x79\x92\x3a\x74\x50\x92\xbf\x4b\x33\xc5\x6f\x29\x80\x0b\x25\x34\xfb\xc5\x8a\x86\x52\xff\x7b\x99\x44\x64\xed\x4f\xd5\xd7\x59\xba\x4c\x98\x9f\x16\x52\x05\x4d\xa6\x31\x91\x58\x44\x9b\x19\xc4\x71\x2c\xbf\x95\xd4\x96\xee\xf6\x37\xfc\xe8\xb3\x9c\xfd\x1c\x3d\xf2\x41\x50\x5f\xbe\x29\x16\xe6\xee\xc8\xc8\x72\xb8\x64\x3a\xa1\x71\x7c\x00\xd4\xc8\x12\xa0\x24\xcb\xd2\xec\x00\xac\x99\x27\xac\x5e\x61\xb5\xae\x06\x43\xd0\x92\xb4\x61\x43\xe4\xa2\xfc\x77\x39\x11\x7c\x2b\xf3\x95\x70\xb5\x9c\x93\x8c\x8e\xab\x0b\xe2\x6d\x9a\x45\x24\x53\xcb\x02\xf3\x03\x1b\x31\x57\x4d\x41\xb4\xcf\x70\x1c\xdf\xe3\xf1\x37\x0e\xb4\xdd\x26\xee\x19\xcd\xc6\x31\xc9\xdd\xf3\x8b\x77\xa7\x5f\x3f\xde\xc2\xb8\x5a\x4e\x22\xff\x8c\x79\xbb\x13\x81\x78\x26\x01\x1a\x44\x4a\x2d\xc5\x61\xce\x58\x9a\x5a\x2a\x16\xe0\x0d\xfd\x8d\x70\x98\x20\xb3\x6d\x6a\xdb\x7b\x52\x32\xa7\x5e\xfb\x2d\x90\xdd\x3b\xe3\xab\x53\x54\x40\x3b\xfd\xa3\x4c\x58\x1f\xa4\x70\x09\xf6\x65\x6d\x87\x41\x26\xf7\x13\xa4\x05\x98\x98\x08\x73\x76\xbe\x77\x26\xf8\x2e\x6e\xea\xb5\xc0\xf5\x56\x58\x69\x70\x09\xa0\x41\xd0\x5d\xe6\x2c\x9d\x4b\x08\x2e\x8e\xec\x43\xf0\x85\xf5\x5e\x1c\xb2\xc5\xe9\x7c\x9c\x26\x79\x1a\x13\xf7\x01\x67\x89\x78\x3e\xf1\x03\x6b\x2d\x73\xd2\x2a\xc0\x5a\xa9\x28\xd8\x7a\xa0\x6c\xd6\x12\xf5\xb7\xa4\x99\x88\x52\x38\x35\x32\x5c\x3d\x14\x71\xe3\xb4\x70\xdc\xa7\xf1\x62\x86\x9f\x98\xdf\xf2\xf0\x21\x66\xb7\xe0\x17\xd1\xfe\xa9\x60\x09\x7b\x70\xf9\xdc\xa9\xa0\x71\xb0\x0e\x9c\x0a\x30\x3f\x15\x8c\xc5\x95\xa9\xbc\x47\x9d\xa2\x61\xd7\x83\x5d\x2f\x84\x13\x94\xb8\x2c\xfd\xf2\xfe\xed\xc8\x49\x01\x1c\x21\x2b\x9b\xde\x63\xc7\xea\x4c\xdc\xac\x63\x41\xfe\x77\xaa\xfe\xde\x8b\xbf\x71\xc7\x02\x56\x90\xb9\xbc\xcb\x92\x4e\xd6\xce\xcd\x85\xa8\xbc\x7a\xea\xe6\x63\xbb\x5d\xa5\x34\x6a\xf5\xe4\x6f\xa9\xb2\x62\x60\x17\x44\x5a\x08\x54\x32\xc0\x06\x45\x4a\xe8\x0c\xda\x33\xdb\x5e\x39\x1b\x77\x03\xb6\xdb\x59\x71\x5b\xba\x00\x3c\x75\x01\x06\xa2\x7b\xbe\x43\xd1\x70\x53\x5c\x26\xc2\x8d\xbc\x88\x14\xb6\x6b\xce\x02\xf1\xc2\x50\xe9\xc7\x86\xbd\x90\x4b\x99\xfc\x6f\x35\xdd\x53\xe9\x9e\x4e\xe7\x10\xcc\xd5\xd4\xd7\x9d\x1d\xf1\x94\x8e\x91\xb2\x81\x02\xba\x06\xe3\xd5\x61\x04\xfe\xb1\xe0\xd3\x03\x27\xd3\x22\xe8\x18\x4e\xc5\x8d\x59\xa6\x45\xd6\x4d\x21\x50\x3e\x91\xe1\x85\x00\xf8\xdf\x85\x84\x1e\xce\xe0\x48\xca\x9c\xb1\x44\x2b\xf4\x17\x69\x4e\xe4\x6c\x02\x38\x45\x14\x8e\x51\x51\x0c\xec\xe4\xdc\x6b\x36\x31\xc1\x39\x93\x6a\x9f\xcf\x59\xba\xde\x34\xd0\x83\x61\x08\xb1\x3c\x8d\xc9\x73\x35\x4c\x84\x4d\x6b\x4d\x77\xd7\x76\xb4\x3c\x7b\x82\x3c\x60\xda\x08\x90\x42\x80\x08\xf0\x9b\x5e\x80\xbb\x5d\x6d\x25\x20\xcc\x03\xe8\xc4\xe9\x23\x24\x7a\xa9\xa4\x46\x69\xbc\x1f\x24\x7c\x4e\x10\xef\xa5\x6d\x27\xc3\xbe\xf8\xdd\x0f\x6d\x9b\xb8\xf9\x22\xa6\x63\xe2\x60\xe8\x81\xdd\xae\x6a\x8c\x60\x54\x56\xa9\x45\x55\x61\xdb\x7d\xc4\x13\x3a\x5e\x38\xec\x85\x83\x0a\x2a\x1f\x77\x3a\x3b\x41\xe6\xd4\xc1\xbb\x6f\xdb\x6d\x35\x0a\x19\xea\x05\xa2\x64\x2f\x14\x58\xb2\x4e\xa7\xd8\x27\xd2\x5a\x12\x4a\x7d\x3a\xc4\x28\x33\x9a\x21\xc5\xb5\x6a\x6f\x3d\xd5\xdb\xf2\x68\x98\x16\xc7\xa8\x1c\xa4\x08\xc3\x1c\xe1\xf2\xa9\x5d\x2c\xba\x1d\xc4\x27\xe2\x25\x57\x3f\x1c\xa4\x08\xfb\xf1\x1b\x22\xcd\x09\x84\x22\x1f\x83\xdd\x4e\x6a\x50\x38\x0c\x67\x3d\xc3\x3c\x0c\x8a\xce\x65\xb0\x18\x95\x0c\xc0\xf4\x24\x1f\x38\x44\xdf\xe3\x42\xf5\x6b\x09\x80\x9f\xbe\x29\x73\x96\x45\xce\x0c\x00\xbf\xf8\xb9\xdb\xed\x4c\x45\x28\x06\x8f\x99\x83\x81\x31\x14\x3d\x98\xa3\xf2\x60\x73\x92\x97\x87\x9b\x58\x1e\x6e\x3c\x84\x62\x3e\xf4\x4c\x2f\xdb\x58\xdc\x5a\xf3\x43\x8b\xdf\x97\x79\xb6\xcd\xf4\xbe\x28\x33\x77\xa4\x78\xc6\xe3\xf0\xb1\x2c\x27\x5a\xa8\xcd\x61\xd2\x29\xea\x85\x7c\xcd\xee\xaa\x9a\xd7\x04\x66\xfa\x8c\x25\x2e\x13\xb2\x74\x99\x44\x4e\x02\x82\x72\x16\xf0\x76\x9b\xb7\x11\xd6\xad\xc5\x5d\xfa\xc6\x83\x33\x94\x77\xf1\x1b\x2f\x48\x9d\x78\xbb\x9d\x01\x88\x51\xbe\x53\xa3\x31\x14\x58\x43\xb0\x53\x4a\xe4\x47\xd9\x66\xbf\x7a\x08\xc9\x9d\x3e\xe4\x3f\x76\x50\xf6\x77\x2f\xdb\x53\xd9\x92\xcb\xfb\xc6\x81\x2c\x75\xda\x3d\x00\x59\x71\xfa\x94\xe2\x59\x13\x84\xda\xd0\xb0\x20\xe3\x4d\x40\x06\x8d\xdf\xc1\x82\x44\x34\x41\x1a\xf4\x63\x07\x47\x63\x21\x8f\xee\xbf\x95\x48\x76\x8a\x82\x94\x82\xe1\x1e\x51\x60\x6e\x5d\x7c\xb5\x6d\xc1\x33\x5c\x43\xf2\x2d\x89\x45\x55\xf8\x10\x1c\xf2\x23\xbe\x27\x71\xee\x00\x37\x17\x6b\xd9\x03\x95\xb3\xe6\x1b\xd4\xe3\x07\x4e\x40\xdc\x15\xcd\xe9\x3d\x8d\x29\xdb\x38\x60\x48\xc3\xed\x16\xeb\xe5\x4f\xa1\x7c\x49\xd4\x78\xd4\xed\x05\xec\xa4\x40\xc7\xe4\x81\xe6\x39\x21\x65\xc8\x42\xa0\xee\x26\xda\x3d\x35\xf9\x6d\x6f\xe7\x80\xe2\xfc\x24\xe4\x32\x83\x9f\x08\x79\xa1\x26\xb5\xc3\x08\x15\x32\xc2\xf8\x80\xc4\x81\xc7\xdf\x48\xf4\x5e\x5d\x40\x2c\x24\x90\x90\x00\x73\x87\x13\xf6\xc7\x1d\x9c\x1c\xb8\x5e\xd0\xbb\x8b\x70\x69\x65\x5c\x34\x2c\x41\xb4\x24\x90\x09\x1f\xbd\x44\x93\xe3\x0c\xd1\x61\x12\x06\x45\x49\xf5\x9e\x42\x5a\x54\x8d\x50\xd4\xf5\x82\x11\x2f\x30\xd2\x05\x56\xfb\x72\xd6\x06\xe1\xe1\x28\x3c\x24\x2b\x1a\x63\xb8\x51\x36\x52\xeb\xe7\xc4\xb1\x0d\x80\xf3\x67\xc4\xb1\x0d\x80\xf7\x68\x31\x1c\x85\xf0\x01\x91\x83\xe7\xaf\x0d\x80\xa7\xc8\xeb\x3c\xb8\x73\x9a\x6c\x56\x38\x3e\x7a\x70\x37\xe2\x02\x35\x38\x3d\xe9\x0d\x4e\x51\xcf\x3f\x7d\xe3\xd9\xb6\x73\x8a\x3c\x0e\x39\x73\x67\x47\xa7\x9d\x99\xbb\x11\x42\xe5\x35\x3c\x47\x4b\x5e\xc3\xc5\xbe\xb0\x77\x0e\x7b\xf0\xfc\x8f\x14\xf6\x36\x5c\xd8\xfb\x28\xc4\xbc\xdb\x42\xcc\xbb\x29\xc5\xbc\x7b\x00\x3f\x17\x62\xde\x8d\x12\xf3\x6e\x94\x98\x77\xa3\xc4\xbc\xb5\x10\xf3\x56\x86\x98\xf7\x19\xae\x2a\x62\x1e\xef\xd7\x19\xfc\x84\xda\xbd\xc0\x39\x2f\x58\xde\x11\x51\x97\x46\xdb\x6d\x61\xd4\xe1\xbe\xbb\xfe\x72\x76\x31\x7a\x77\x7a\x73\x3b\xfa\xfc\xe5\xfa\xd7\x3b\x2e\x5f\x09\x7d\x72\x4d\x78\x70\x56\xa0\xe4\x05\x57\xf0\x1d\x1a\x86\xc1\x45\x29\x10\xd2\x89\x73\x85\x2e\xb4\x0e\x32\x71\x69\x7e\xfd\xb3\x73\x25\xe4\xc1\xb9\x7c\x9d\x2a\x89\xc6\x27\xdb\x3e\x43\xe8\xca\x5d\xaf\x70\x5c\x2a\x0b\x3e\xa1\xb6\x07\xcf\x54\x32\xcc\xd0\x74\x78\xa5\x65\x1a\xa9\x09\xf9\x16\x7c\x43\x85\x50\x9a\x0d\x4e\xfd\x78\xc0\xd7\xb0\x9f\xc1\x6b\x54\xc0\x6e\xe0\xb7\x10\xce\x07\x5d\x0f\x21\x74\xcb\xf9\x90\x89\xc6\x04\x3b\x0d\xfd\x43\x59\xbc\x5c\x2d\xb7\xc8\x94\x66\xb3\xd7\x48\x0a\x8b\x45\x32\xb0\xed\xf9\x60\x38\x73\x37\x9d\x99\x3b\xe3\xb8\x2b\x35\x05\x12\xfa\x23\x18\x38\x2b\xcd\xf9\x0a\xe4\xf0\x5a\xf0\xb7\x95\xde\x97\x66\x46\x4f\x48\x91\x73\x5e\x6c\x2f\xf7\x56\xc8\x8d\x87\x8b\x1d\xca\x81\x63\xdb\x76\xde\x29\x16\xf7\x11\xde\x0e\xbd\x30\x04\x30\xb6\xed\x6c\xa0\x53\xcb\x12\x99\xc8\xf5\xf7\x33\xae\x45\x06\x00\xf0\x16\x5d\xf3\xc5\xac\x33\xe4\xf8\x4c\x9c\x15\x94\xa8\xe1\x3b\x20\xd6\x89\x5a\xf0\x8a\x15\x5f\xb9\x9b\x91\xa2\x7e\xfa\x70\x61\x24\x71\x09\xbc\x32\xfa\x7c\xb3\x1a\xf9\x7c\xdb\x82\x20\x46\x73\x78\x6d\xdb\x57\xb6\xed\xf0\xea\xaa\x4d\xd3\xd5\xf2\x01\xd2\xd2\xf0\xee\x7b\x4d\x54\xd4\x95\xb0\xef\xfd\x04\xf7\x6e\xb5\x7d\xef\xc7\x5d\x08\xbd\xde\x1f\x6f\xeb\x65\xbc\x6e\xff\xf7\xba\x2d\xff\x87\x4c\x02\xaa\xd7\xeb\x5d\x46\xc7\xdf\x88\x78\xea\x91\xa2\x44\x5e\x9b\x57\xf2\x69\xc2\x49\xaa\xe8\x7f\x77\x9e\x46\x24\x16\xef\x11\xa9\x34\x68\xac\x40\xca\x59\x16\xe6\xfc\x94\xcb\xb7\x51\xb3\xed\xc1\x18\x25\x4e\xc4\x79\xea\xe3\x8c\x4e\x67\x31\x9d\xce\x98\xd4\x03\xdd\xd0\xdf\x88\xff\x02\x16\xa9\x92\x7d\x5c\x2f\xd4\xe5\x68\x3d\xe3\x2d\x1e\x7f\x9b\x0a\x61\x52\x30\x2c\xdf\x7d\x75\x18\x42\x70\x6e\x9f\x53\x6e\xa7\xff\xea\x15\x6c\xe9\x7f\x80\x05\x63\x21\xe5\x68\x56\xf0\x91\x26\x24\xf7\xdb\x9e\x4e\x9e\xa5\x0f\x7f\x25\x59\x2a\xad\x4e\xfc\x76\x4f\xa5\xff\xfc\xe9\x6d\x09\xf4\xf3\xa7\xf7\x7d\xfe\x95\xcf\xd2\x07\x29\x33\x5d\x27\x1f\x74\x4b\x78\x99\x88\x4e\x29\xcb\x4f\x27\x8c\x64\xe7\x64\x4c\xe7\x38\xf6\xfb\x70\x8e\xd7\x57\xcb\xf9\xbd\x52\x9b\xf9\xaf\x61\x4e\xa7\xef\xe8\x54\xf5\xd5\x54\x81\x7a\x70\x4f\xcb\xe6\xf7\xe0\x9e\x6a\xca\xb7\x1e\x66\x94\x11\x4b\xa8\x46\x6f\xe9\xf8\x9b\x1a\x4f\xfe\x29\x9a\xf5\x2e\x95\x0a\x30\xdf\x7b\x09\x85\x0b\x95\xf7\x78\xe1\xbf\x12\xcd\xfe\x92\xc6\x31\xc9\x78\x27\xd6\xa2\xab\x9f\x71\x96\x93\xcc\x97\x34\x1d\x46\x24\xa6\x73\xca\x48\xe6\x5b\xd0\x82\xe2\x39\x87\xdf\x87\x85\xfe\x89\x17\x9b\xa8\x25\x22\x3e\xaa\xef\x3b\xf8\x08\x94\xaa\x28\x01\xac\xa5\x11\xfd\xa1\x26\xd0\x7b\x05\x9b\x39\xb3\x18\x5d\x43\x24\xab\x7f\x5f\xe1\xab\x77\x5c\x3e\xb7\x70\x1c\x5b\x70\x46\x23\x72\xbd\x22\x59\x8c\x37\xd7\xc9\xa7\x74\x99\x93\xeb\xa5\x98\x87\x98\x4c\x49\x12\xf9\x56\x9a\xcc\x79\x6a\xba\x22\x99\x05\xb5\x34\x23\x3a\xff\x05\x27\x53\xf2\x19\x47\x7e\x0f\x6e\x8a\xdf\xf2\x72\x34\xc3\x0f\xa7\x6b\x92\x9f\x32\xbe\x1e\x38\xb0\x78\x6c\xfe\x41\x18\x16\xf8\xfd\x9f\xe0\x5a\x8c\xb1\xfa\xf6\x7e\x82\x1b\xf1\xad\x66\xf0\x27\x39\x0b\x34\x21\x6a\xaa\xee\x63\xa9\x06\x55\xa9\x12\xcc\x7d\x01\xa7\x19\x8d\x2a\x09\xc5\xec\xc9\x94\x57\xbd\x02\xc4\x58\xd3\x5e\xff\x27\xa8\xfe\x07\x16\x34\x76\xec\x27\xbe\x61\xfd\xb8\x10\x27\xd4\x5f\x91\x0c\x71\x42\xe7\x7c\x8c\xff\x9a\xa6\xf3\x5c\x2f\x60\xd1\xeb\x1b\x12\x93\x31\x4b\xc5\x82\xc8\xcc\x04\xd5\xbd\x97\xbd\x6a\x32\x1f\xbf\x1b\xb1\x1e\x55\xa3\xfe\xf7\x4f\xbd\x9f\xde\x9d\xbe\xb5\xf6\xc1\xde\xc9\xb9\x8f\xa8\xb8\x0c\x32\x97\x6d\x23\xa8\xc6\x77\xfa\xe3\x5b\xef\xec\x65\x0d\xa8\xdc\xdf\x95\xca\xa7\x19\xde\x1c\x84\x2c\x07\xd7\xdb\xaf\xd1\xc8\x74\x5f\x55\xb3\xdf\xa5\x19\x69\xa8\x4b\xcd\xe3\x01\xd0\x83\x95\xa9\x05\xff\x5a\x0c\xf9\x65\x52\x1d\x74\x79\xfd\xae\xd4\xfb\xc3\x65\x31\x79\xe6\x71\x0f\x1a\xc9\xa6\x52\xd9\x4c\x37\xb4\xfe\x21\x5c\xc4\xcb\x29\x4d\x72\x7f\x18\x42\xbc\x26\xb9\xff\xb8\xf6\x1f\x17\x74\x4d\xe2\xfc\x33\xc9\xc4\x02\xf3\x7f\xec\xd5\x57\xdb\xeb\x9e\x49\x3d\xb2\xb9\xd0\xc4\xfb\x63\x37\xc2\x8c\x9c\xee\x65\x40\xc1\x68\xea\x70\xbf\x54\x12\xc5\x3e\x7a\x9f\xd1\x48\xd0\x45\xb1\xa7\xa8\xa0\xab\x34\x89\x84\xff\x03\x92\x08\x7f\x15\x22\x4d\xb2\x26\x3f\x15\x78\x6e\xc5\xc7\x0e\x6e\xfc\xc7\xfd\x3d\x51\xeb\xc9\x8b\xde\x7e\x5b\x12\x41\x6c\x6b\xad\x69\xec\x9d\x84\x6c\xe8\xdf\x3f\xd4\xf6\x44\x1e\xb0\x44\xc6\x0e\x6e\xfa\xff\xff\x36\x5f\x37\xb9\xec\x8a\xd7\xd0\x7c\xef\x40\xf3\x77\xbb\xa0\x94\xd3\x16\xcf\xca\x69\x5a\x22\xf0\xff\x04\x9f\x14\x28\x7c\xaf\x0f\x1b\x24\x12\xdf\x7b\x7d\x50\xca\x6b\xf0\x61\xf4\x47\x1b\x4b\xfe\x21\x96\xc8\x4c\x19\x95\xf1\xb3\x14\xa6\x09\xc9\x10\xab\x98\x26\x8b\x63\x7c\xed\xf2\xbc\x5a\xc0\xa5\x49\x42\xb2\x0f\xb7\x9f\x3e\x22\xcb\x82\x92\x23\xb7\x91\xba\xa2\xc5\x8c\x8c\x44\x63\x6d\xbb\x96\xe0\x46\x84\x4b\x08\x1b\x6d\xc0\x56\xe6\x54\xad\xa1\x9d\x6a\x6d\x4a\x23\x96\x55\x1e\xca\x30\x49\x9a\x68\x9a\x34\xe8\xa8\xdb\x5e\xc0\x4a\xfd\x20\x41\x6c\xd8\x0b\xdd\x2c\x7d\xd8\xab\xb7\x82\xc8\xa9\xd7\x32\x6d\xac\x45\xfb\x07\x1a\x86\x90\xd4\xbb\x5c\x29\xe2\x08\x3d\x13\x39\xe9\x55\xed\x9b\x95\x9d\x44\xad\xa0\x34\x30\x18\xe9\x6b\x24\x69\x04\x8d\xcb\xd7\x3d\x14\x30\x79\xaa\x7a\xcc\xd2\x07\x9f\xc0\x71\x1a\x2f\xe7\x89\x4f\x3b\xde\xae\x10\xc4\xd9\xf7\x9a\xf9\x96\x47\x16\xbe\x6e\xff\x95\xde\x4d\xfe\x87\x19\xf9\x0a\x1b\xfd\x39\xde\xdc\x93\xdb\x8c\x60\x26\x05\xb5\xc5\x69\x7e\x16\x57\xfd\x15\xc9\x51\xc2\x7c\xa7\x4c\x2f\x92\xe8\x57\x94\x88\x9f\xef\x09\xfb\x75\x24\x6a\x84\x45\xde\x5d\x99\x77\x27\xf3\xd4\xf8\x08\xc5\x33\xbe\xcf\x9d\x12\x4d\x57\xfe\xbc\x61\x38\x63\xbf\xf2\xc3\xcf\x3e\xcc\x9d\x09\x73\x07\x02\x7a\xd2\xb7\xed\x94\xff\x53\x6c\x43\xe2\xc6\x38\x67\xeb\x91\x6d\x77\xbd\xb6\xf1\x95\xb9\x6c\xbf\x53\x0e\x81\xaa\xbd\x19\x99\xd2\x34\x91\xe6\x11\xb4\xf8\x96\xd2\x15\x12\xce\x51\x84\x19\xdc\x67\x9c\xec\x0d\x84\xba\x69\x0d\xb0\x4b\xf3\xcf\x38\x49\x68\x32\x45\xed\x5e\x20\xef\x00\x88\xbb\xe6\x14\x5e\xc8\x13\x6a\x4b\x94\xd7\xd9\xef\x52\xc1\x15\x8c\x07\x0c\xd0\x5a\x5b\x60\xe0\x60\x97\x26\x94\x51\x1c\x7f\x24\x13\x36\x4f\x73\x76\x8e\x19\x41\x89\x1b\xa7\x53\xaf\xa7\x5e\xa5\x61\xb1\x81\x04\x62\x23\xc7\x0b\x41\xb7\x02\x07\xfc\x03\xd8\x84\x13\x0b\x13\x09\x2f\xdc\xd5\xb8\xd7\x5f\x13\xca\x38\x03\xfc\xcc\x39\x21\x32\xe0\x8e\x1d\xe2\x2a\x59\x68\xa4\x0c\x98\xba\x1e\x80\x8d\x37\xfc\x38\xb9\x88\xa6\xe4\x9d\x62\x2e\x16\x28\x4c\xbb\x94\x62\xed\xe8\xbb\x4a\x89\x8b\x6a\x31\x8c\xea\xcd\x41\xee\xc8\x8b\x69\x96\x9e\xa7\xf3\x5f\xcf\xd2\x34\x8b\x9c\x98\x37\xbc\x9b\x0b\x5b\x83\x6a\xba\x17\x82\x4e\x0e\x23\x99\x8e\x19\x56\x19\x33\x69\xfa\x57\x49\x5b\x82\x00\xbb\xf7\x5c\x50\x24\x11\x1f\xa4\x1c\x0d\x23\x38\x96\x2a\x35\x65\x7e\x49\xb4\x75\xf9\xf7\xb5\xdd\x78\xd4\x41\x5c\x2e\xe7\x8d\xaa\xcf\x8f\x90\x4a\x1d\x52\x59\xcb\x04\x65\xe2\x09\x0c\x99\xcb\xd1\x86\x23\xdd\x9f\x3b\xd9\xc4\x09\x9f\x36\x0a\x3a\x53\x61\xb3\x59\xcd\xf1\x78\x4e\x77\x2a\x8c\x38\x65\xbf\x54\xd6\x08\x52\x20\x6c\x39\x2b\xa9\x2b\x48\x41\xb0\x10\x4f\x94\x36\x70\x1d\xee\x8a\xae\xab\x27\x1d\x0b\x69\x1a\xe5\xd2\xbc\x7f\xce\x17\x7e\xdb\x83\x58\xb4\x96\x8f\xc4\xef\xe8\xd3\x1c\x3d\xee\xe0\x3d\x22\xee\xa6\xdc\x0a\x14\x04\xc4\xc5\x8c\x65\xf4\x7e\xc9\x38\x86\x29\x61\x0d\xdb\x81\x82\x81\x33\xd7\xcb\xf7\x36\x5d\x88\x96\x15\xcb\xfd\x5e\x68\x03\xe7\x82\x24\x88\x9c\xea\x6e\xb8\xaf\xec\x86\x7b\xad\x21\xdc\x43\xc7\xe1\xf6\xb1\xf0\xd4\xae\x28\x04\xe7\xee\xb2\xb2\x1b\xea\xb0\xfb\x5b\x62\xc6\xb7\x84\x1c\x2c\xc9\xb8\xe6\x00\x66\xee\xaa\x28\x61\xdb\xe6\xb8\xf6\xc0\x8e\x53\x98\x79\xba\x22\x4d\x04\xe6\x9f\xa3\xb4\x8d\xbb\xbf\x7b\x90\xee\x1e\xd5\xf7\x7e\x6d\x47\x88\x2b\xc7\xe2\x0d\x12\x27\x95\x66\xae\x18\x63\xa5\xd4\xa2\x1d\x83\x6a\x08\xf7\x75\x35\x44\xd9\x9b\x5a\x61\x2f\xe4\xd8\xbb\x28\xeb\xee\x65\xc0\x1a\x3e\x00\xbf\x83\x8e\x12\x01\xff\x17\xe1\x80\x75\x84\x86\x85\x53\x99\xc4\xfd\x78\xfd\x7e\x74\x73\x76\xfa\xf1\x82\x6f\x8c\xc6\xf4\x0c\x84\x7e\xad\x3c\x85\x19\xa7\x98\x6a\xda\x40\x79\xd1\x7b\x80\x3f\xa9\xe7\x4d\xb5\x3d\x92\x1b\x97\xc0\x6a\x9f\xe4\xa1\x70\xc5\xc1\x3f\xf8\xef\x25\x4a\x8f\x66\xd5\x25\x07\x23\x54\xdb\x9d\x83\xda\xf7\x30\xd7\x3e\x6d\xd0\xac\xbe\xc2\x3b\xcb\x20\xb2\x6d\x67\x5c\x3e\x4d\x1b\x43\xe1\xf3\x0a\x28\xca\x36\xee\xce\x6a\x4b\x9a\x17\x58\x9c\x44\xe2\x06\xda\x19\x77\xd1\xa2\x1b\x49\x1f\x1d\xfb\xa0\x7c\x2a\x9e\xdf\xc9\x39\x18\xc4\xc6\x06\x38\x30\x1b\x8b\x03\xb3\x31\x06\xa1\x5f\x2d\xbe\x80\xe3\x70\x27\xa5\x75\xa1\x71\x1a\x39\x6d\x4f\x48\xb0\x24\x89\xf8\x26\x3a\x2c\xc9\x68\x5e\xfe\xd7\x34\x9d\x37\xec\x35\x9a\xf3\x0c\xc9\xc4\x21\x76\x7f\x4b\xd3\xf9\xa7\x74\x45\x22\xd4\xf6\xf4\x26\x3d\x50\xd2\x00\xed\xc1\x3f\x54\x3c\x92\x7b\xb3\x5b\xe2\xe4\xe2\x5a\x13\xcc\x5d\x09\x73\xc7\x79\x19\xff\x7d\x4e\x33\x25\xc5\xd3\x93\xec\xb8\x3f\x48\xdc\x5f\x2e\xbe\xdc\x5e\x9e\x9d\x7e\xf4\x13\xf7\xc3\xf5\x97\xcb\xbf\x5e\x5f\xdd\x9e\x7e\x84\x72\x30\x79\xdf\xbe\x90\x31\x1b\x39\xb5\xd2\xd0\x6c\x8a\xd1\x3d\x58\x59\xf2\x65\xf5\x10\xbb\x8b\x8c\xac\xce\x6b\x38\x78\x9a\x2a\xa6\x7e\xde\x01\x23\x19\x55\x10\x6b\x08\xf4\x34\x5a\x54\x6b\x2a\x9f\xa7\x06\x69\xef\x89\xd7\xa4\x4c\xac\x5a\x95\x5d\x5c\x4a\xf2\x42\x85\x85\x24\x17\xdf\x1b\xc1\xc4\xa1\xe5\xac\x06\x5b\xbc\x76\x14\xaf\x1c\xa5\x5e\xd9\xfd\x74\xfa\xeb\xe8\x97\xd3\x8f\x5f\x2f\x0a\xf7\x77\x39\x89\xa5\x42\x75\x54\xf1\x84\xa7\x9f\x00\x95\xd9\xc3\x98\xd3\x85\x62\x6f\x14\x86\xfa\xc6\x9a\x80\x7d\xd0\xd9\x03\xd8\x18\x0b\x02\xf6\x41\xa0\x2c\xcd\x96\xfc\x54\xd0\xf5\xc4\xe3\xee\xe5\x49\x0e\x84\xe9\xcc\x12\xa6\x28\x06\x3b\x65\x49\xdd\x20\xdd\x34\x5c\x0f\x58\xa0\xd3\xe7\xb4\x3d\x3f\x41\xd1\x51\x24\x1e\x65\x56\x9a\x9d\x86\x40\x5b\x9b\x8c\xd1\xe3\x18\x27\x63\x12\xe3\xfb\x98\x9f\x95\xa0\x18\x38\x3f\x83\xaa\x2b\xbe\xd1\x15\xfd\x02\xa3\x6c\xbc\x38\x0a\x31\x77\x8c\xf3\x31\x8e\xc8\xc5\x8a\x70\xf4\xe6\xe0\x5b\x70\xac\x2d\x11\x82\xc4\xb6\x13\x7d\x00\x22\x30\x93\x7d\xda\xab\x5f\xf8\x7b\x60\xea\x84\x00\x17\x2c\xf7\xcd\xa6\x7f\x6f\xb3\xf6\xdb\x34\xd6\xcd\xd9\x6e\xc5\xdb\xa5\xa2\x21\x45\x5d\x66\x3d\x9a\x68\x35\x12\x15\xf5\xd6\xae\xdc\x94\x00\x56\x28\x94\x07\x0f\xd3\x39\x85\x43\x51\x14\xc1\x2e\xd5\x33\x45\xc1\x8b\x8d\x13\xcf\x1b\xe4\xf5\x6c\xbb\x4e\x2d\x90\x49\x1d\xf4\x2b\xea\x82\x83\x1c\xa0\x06\x00\xe6\xa5\x74\x70\x08\x26\x48\x4b\x98\x14\x52\x77\x5d\x96\xa2\x89\x93\xf3\x94\x0e\x75\x1f\x84\x7d\x96\x6d\x13\x37\x4a\x79\x87\x7f\x1d\x09\x07\xe6\xe2\x25\x08\x9f\xc6\x2b\xb2\x66\xe7\xf7\xb1\x18\x6d\xd4\xee\xed\xb4\x2f\xf7\xea\xe1\xed\x60\xdf\x34\x11\xd4\xcc\xb8\xa9\x67\x26\x3d\xe3\x47\x8e\xa6\x9e\x55\x60\x82\xb8\x84\x89\x21\x75\x37\x65\x29\x9a\x38\x33\x9e\xd2\xa1\xee\x0c\xc0\xf8\x64\x56\xf6\xec\x6e\xe4\xc4\x70\x76\xb8\x67\xe6\x38\x2a\xcb\x3a\xa3\x7e\x24\x1f\x2a\x2a\xae\x76\x9b\x2e\xc7\xb3\xbd\x75\xc4\x04\xd1\x24\x09\x3b\x57\x4a\x26\x00\x99\xcb\x38\x28\x29\x9d\x09\x0b\xa1\x54\x22\xa1\x73\xf2\x2e\xcd\xce\xd3\xe5\x7d\x4c\x6e\xf1\xe2\x93\x7a\x20\x1f\xd4\xde\xdf\x4b\x9f\x39\x55\x3c\xe2\x21\xfa\xa3\x7e\xed\xa3\xf2\x86\x49\xa8\xfd\xa5\x3c\x2e\xf0\x94\xfc\xea\x67\xae\xf8\x0b\xf9\xbf\x77\xea\xeb\x0e\x46\xfc\x2c\xe6\xd7\x4e\x65\x0a\x14\x88\xdc\x3b\xbf\x76\x8a\x51\x45\xc1\x0e\xec\xc4\xe4\x17\xb2\x8f\xa8\x18\x51\xe8\xa1\xc2\xd0\x07\x14\xd9\x9f\x69\x32\x9e\x9d\x91\x84\x91\x4c\x58\x20\x42\x2c\x9b\x5a\x2c\x91\x1c\x3d\xae\x39\x91\xd8\xf8\xed\xde\xae\x88\x13\x60\x3c\x44\x14\xb2\xc2\x3e\x32\xd5\x3d\xf7\xd5\x91\x30\xc7\x95\x4d\xef\xd0\xa1\x17\xea\x5e\xc8\x1e\x57\x00\xee\x4a\x80\x3b\xa0\x06\xa1\x00\x10\x9f\x12\x40\xfc\xd4\xe3\x50\x01\xb8\x2b\x01\xee\xc0\x4e\x29\x1f\xbc\x9f\x7a\xc7\x62\xf1\x7d\xbe\x94\x1e\xca\x30\xc3\x49\xdf\x69\x6a\xb7\xac\xbb\x5b\xb6\x08\x96\xad\xef\x1e\x2c\x50\x6e\x65\x2e\x87\xa4\x00\xa6\x6f\xfe\xd4\x13\x4e\x33\xff\xd4\xeb\xa6\xa0\x79\x50\xd3\x93\xd7\x3f\xba\xaf\xe0\xc6\x4f\xdf\xf4\xfb\xee\xab\xdd\xae\x40\x2f\x45\xbb\xc7\xb5\x5f\xd5\x9a\xc0\x8d\x5f\x39\x3b\x96\xa7\xa5\xe6\xc5\xfe\xf4\x22\x36\xbc\x83\x54\x3c\x2e\xd4\x56\x31\x6d\x5a\xc5\xe2\x05\xd7\xb3\xab\x78\x27\xf9\x4d\x2a\x3c\x07\x57\x97\xa3\xf0\xc1\xb7\x3f\x98\x81\x70\x4e\x99\x68\xc7\xed\xc9\xb0\x17\xfa\xc6\x42\x4a\xca\x85\x94\x34\x2e\xa4\xa4\x5c\x48\x49\xb9\x90\x76\x2a\x02\x83\xc2\x94\xaa\xd9\x8c\x2b\x6d\x4e\xd5\xcc\xc7\xaa\xed\xc2\xe5\x8c\x39\x1f\xee\x9a\x1f\x84\xf7\xd2\x7a\xa1\x38\x93\x54\x52\x37\xc3\xde\x1e\xe4\x66\xe8\x85\xc1\x4c\xae\x5c\x34\x93\x55\x1f\xef\x69\x90\x8e\x96\x50\xc2\xdc\x29\x98\xbb\x3d\x98\xd9\x51\x24\x1d\x06\xc2\x85\xb2\x1c\xd6\xe3\x05\xc6\xc8\x83\x0b\xe4\x15\xbb\x34\x31\x77\xa9\xf4\x20\x98\x17\xe3\xa6\xfb\x1f\x8c\x91\x53\x8e\x66\x57\x8d\x0e\x38\x9e\x2a\x3d\x4c\x51\xa2\x18\x9b\x60\x61\x94\xb8\x53\x25\xee\xc0\xf1\x64\x67\x9c\xac\x7e\x82\x05\x03\x70\xbd\xfe\x2b\x2e\x94\xc0\xc5\xe1\xec\x85\x3a\x83\x8d\x50\xdb\x93\x7c\xb9\xb6\x63\xdc\xb5\x6d\x3b\xb5\x83\x68\x2c\x87\xb3\xab\x86\xb5\xe3\x34\xcc\x4e\x57\x01\x81\xe3\x31\x7c\x1e\xde\x33\xe1\x85\xc3\xfa\x5e\xc3\xee\x75\x37\xa0\xdc\x31\x5e\xb9\x45\x56\x86\xc6\x47\x28\x9f\xbe\x47\xb1\x13\x6c\xb6\x5b\x67\x55\x39\xd3\xc9\x26\xdc\xa9\x76\xde\xed\xb5\x73\x53\xf6\xeb\x0e\x1c\x2f\xe0\xf3\xf0\x9e\x09\xaf\xfa\x25\xed\xda\xab\x07\x47\x38\xe2\x12\x63\xc9\x08\x49\x93\xa0\xcf\xcf\x77\xa5\x88\x5f\x1a\x6d\x56\x34\xbc\xdf\x51\x52\x0a\x84\x04\x8a\x4d\xc4\xc7\x1e\x9a\xe4\x2d\x77\x80\x24\x70\x24\x89\x9a\xe9\x1b\x9d\x38\xe2\xc2\xa9\x46\xb2\x80\x29\x01\x68\xe1\x4f\x6f\x09\x8f\xc3\x8f\x67\xbc\x82\xe8\xb6\x5a\x4c\x99\xe4\x8b\x60\x00\xe7\x98\x11\xc0\x7b\xc0\x89\xa7\x23\x8f\x3c\xd5\x52\xc3\x5e\x18\x1c\x24\xb0\xb6\x4d\xbb\x07\x33\x4f\x5e\xf5\xa4\x24\xa6\x93\x7e\xb5\x6d\xf3\x0c\x5b\x24\x77\x13\x37\x1f\x67\x84\x24\xbf\x82\x93\x57\xd5\x22\x77\xcd\x45\xee\x8a\x22\x77\xbc\xc8\x80\xb8\x19\xc9\x89\x38\xe1\x3b\x42\x01\x7e\x88\x21\x50\x68\x56\x8c\x8a\x8a\xcd\xe4\x3b\x54\x22\xdf\x69\xd6\x5a\x9f\x13\x7d\x73\x73\x42\x06\xa4\xcb\x7c\xf6\x06\x0f\x58\x17\xfb\xbd\x9a\xe9\xbd\x7e\x89\x8b\x12\x77\x42\x93\xe8\x73\x9a\x3b\x44\x7b\x08\x01\x90\xa2\xc7\x98\x4c\x98\x8f\xdd\xb5\xb4\x07\xe2\xbf\x3a\x05\x80\x9b\x4e\x26\x39\x61\xf2\xf5\x1f\x4b\x17\x3e\x76\x37\x50\x3e\x0e\xe2\x3f\xf7\x00\xa5\x00\xbc\x83\x19\x67\xa9\x89\xa4\x6f\x0e\xe3\xec\x54\x7e\xdc\x89\xb7\x8b\x39\x4a\x9d\xcc\x5d\x43\x2e\xda\x4c\x18\xa4\xae\xa8\x19\xc0\x58\xa4\x6f\x20\x75\x59\xba\x80\xd4\x95\x15\x15\x17\x48\x05\x19\xcb\x61\x0c\x76\x41\x56\xb1\x64\x41\x8f\xc2\x9e\x27\x4a\x1f\x12\xbf\x61\xf5\xb6\x99\x7b\xbf\x64\x2c\x4d\xb6\xdb\x7e\x1b\xe9\x0f\x43\xa0\xa2\xbf\x11\x71\x96\x39\x4f\x1f\x74\x39\xc8\x5c\x1c\xb3\x9f\xc9\x66\xbb\x65\x6e\x3e\xa3\x13\xfe\x7b\x50\x5e\xcb\x28\x30\xdf\x50\xee\x54\x0f\x40\xb5\xab\x37\xe3\x18\x05\x1e\x73\x31\x35\x27\x5e\xaf\x37\x28\x35\x3c\x1a\xa3\x7a\xb5\x5f\x9e\x5f\x84\x9c\x5c\x6a\x77\x4a\x79\x5c\x6a\x74\xf8\xf7\xfe\xb9\x0d\xc8\xf3\x89\x71\x49\x64\xdb\x85\xca\x57\x55\x65\xbe\x27\x69\x31\x27\xad\xa8\xa3\x06\x7b\xed\x18\x14\xe7\x46\x27\xd5\x9d\x3f\x78\x18\x54\x10\xb5\xfa\xa5\xb2\x4c\x65\xc2\x44\xc5\xc9\x10\x27\x59\x27\x4a\xc7\x22\x60\x08\xb4\xc4\x64\xf2\x0c\x4e\xb7\x9f\x86\x5a\x2e\x2c\xc8\x84\x86\x4b\xdf\x76\xef\x02\xe2\xe2\x28\x3a\x4d\xa2\xdb\x0c\x8f\xbf\x3d\x8d\xfb\x79\x50\x5e\x41\xca\x09\xe4\x03\x8d\xe3\x73\x59\x89\x32\xb9\xff\xb4\x11\x91\xb2\xda\x3d\x28\x08\xa3\x58\x07\x7b\xcb\xaf\x81\x48\xee\x24\x3c\x6f\x44\x03\x78\x21\x67\x56\xa1\x49\x12\x35\x00\x6b\x9a\x5d\xc0\x46\xea\x18\xd7\xb4\x0d\x9a\x8e\x7b\xfa\x0a\x78\x95\xd2\xa8\x11\x00\xb5\x3d\xbd\xa2\x1f\xbf\x4b\x43\x01\x2b\x4a\x0f\x3e\x1b\x75\x7d\x85\x6e\x23\x9f\x01\xbe\xbb\xf6\xf7\xd9\x76\x5b\xa1\xa8\x82\x3d\x25\xca\xa0\x10\x8f\x19\x5d\x11\xb1\xed\x47\x4f\xed\xfb\xa7\x36\xf7\x0e\xaa\xb9\x7d\x62\x05\xf3\x3a\x79\x9f\x2e\xf9\xfa\xbd\xac\x59\xd4\xfd\xa3\x15\xc3\x3d\x02\xa2\x9a\xd2\xb8\x18\x9e\xd9\xbc\xba\x0f\xcf\x14\x53\x7b\x4e\x95\xfa\x7d\x56\x0b\x55\x9b\x9b\x7f\x65\x48\x88\xff\x61\xb6\x0b\x7b\xf6\x3d\x75\x7f\x62\xd2\xb4\x04\x0d\x43\xf9\xa9\x7d\x59\x14\x09\x22\x34\x1d\x96\x87\x54\x9d\xb6\x39\xe5\x42\x2d\x2a\x03\x1b\xad\x85\xd5\x95\x99\xb2\x31\x52\xaa\x76\x44\x38\x8a\xce\x31\xc3\x39\xa9\xbb\xe2\x30\x9a\x23\xcf\x92\x04\x54\xdb\x24\x53\xd9\xbe\x3d\x8e\xf6\x34\xd6\x10\xac\xa7\x70\xa3\x30\xaa\x96\x1a\xa7\xf3\xc5\x92\x91\xa6\x92\xd2\x90\xe7\x71\xed\xf7\xe0\xc6\xef\xed\x02\xe6\x3e\xd4\xfc\x4c\xc8\x4b\xfa\x2e\x73\xd7\xdd\x83\x0e\x28\xb4\xdd\xb2\xc5\x39\xf4\xac\xee\x90\x4c\x5e\x95\xeb\x25\x31\x9e\xe1\x8c\x8d\x22\xba\xaa\xf9\x89\x10\x7f\xce\xe9\x0a\x72\x1a\x93\xad\xc8\xcd\x02\x8f\xc9\x47\x2e\x09\x15\xcd\x2d\x04\xa7\xc7\xb5\xcf\xdc\x35\xdc\xf8\xcc\xdd\xc0\x07\x9f\xc0\x99\xcf\xdc\xd9\xae\xb0\x02\x72\xd7\x1d\x44\x20\x73\x1f\xba\x88\x40\xbc\xab\xa0\xfc\x22\x64\xaa\x43\x38\x3b\xbc\x10\x79\x02\x73\x13\xca\xdb\x74\xf1\x7c\x23\x99\xfb\x00\x67\x3e\x31\x50\x6d\x64\x23\x67\x0d\x18\xdf\x4a\x81\xee\x69\xa4\x1d\x5e\x96\x34\xa2\xd6\x38\xc5\x60\x73\xe1\x63\xff\xb9\x62\x63\xf3\x78\x5f\x77\xbb\xa0\xee\xbc\xae\xca\x2a\x94\xe7\x69\xa8\x97\xac\x58\x71\x88\xed\xd9\xa7\x9d\x1a\xbb\x69\x6f\x6b\x56\xb7\x9a\x11\x60\xee\xe0\x22\x33\x6d\xe0\x2d\xb0\xdd\x36\x19\x01\xee\x60\xcd\x05\xbb\xf1\xdc\x58\x12\xa3\x36\xa7\x22\xe2\xc9\x94\xb6\x17\x42\x08\xc9\x34\x93\xed\xb6\xb4\xd7\x05\x22\x63\x68\x19\x7d\x69\xcd\x97\x39\x6b\xcd\xf0\x8a\xb4\x70\xd2\xfa\x61\xfd\x43\x6b\xa1\x48\x96\x25\xb4\xea\x02\x19\x1d\xa7\x89\x6d\xab\xda\xaa\x84\xcd\xb1\xc4\x96\xe2\x5d\x68\xce\x96\x1b\xc6\x02\xe0\xa9\x06\x7d\xe2\x8d\xc8\x09\x6b\x09\x64\x2d\x9c\x44\x2d\x59\xae\xf5\x30\x23\x22\x22\x23\xa3\xc9\xb4\x55\x0e\xb3\x68\x92\xd9\xd4\xc4\x95\x8e\x8f\x1c\x0a\x05\x65\x85\x54\x0c\xcb\x76\xeb\xc8\x1f\x88\xf0\x1f\x00\xec\x91\x46\x49\x9a\xa8\x94\x00\x2a\x33\xfe\xab\x20\x84\xfb\x93\xad\x49\xe6\xfe\x1a\xb9\xe3\xd4\x75\xbf\x80\x22\xba\x35\x78\xa2\x3c\x54\xef\x3b\x07\x14\xa7\x6f\xf4\xb8\x53\x6e\x01\x35\xe0\x47\x3a\xa7\x86\xb7\xc0\x32\x59\xf9\x47\x6a\xce\x12\x8d\xdd\xcb\x31\x56\x80\x53\xa3\xca\xb5\xfa\xf6\xe9\x6b\x75\x4d\x57\x54\x05\x46\xfb\xdd\x39\x4d\xf8\xb8\xb3\x61\x4f\xf1\x1e\x9d\x8e\xd7\x32\xdd\x0b\x15\x15\xe5\x3f\xbb\x1c\xae\x52\x5e\xa8\x55\x90\x30\x80\x1b\x78\xc7\xc4\xf7\xe0\x81\xcd\x74\xc0\x56\xc2\xb6\x1d\x13\xdd\x3a\x4e\xa7\x59\xc5\x98\x66\xbf\x51\xa5\x69\xcd\x7e\x47\x00\xac\x63\x2b\x1b\xd8\x58\xcf\xc0\x3b\x6e\x4c\xf7\x3d\x10\xd4\x42\x2c\x94\x8b\xa4\x61\xa7\x1b\xb9\xc2\xc5\x80\x7e\xe2\x8a\xa8\x66\x85\x51\x69\xb9\x20\x4c\xa9\x78\x6f\x0e\x43\x78\x22\x00\x80\x1c\x8a\x02\xb4\x5b\xa0\xe5\x99\x65\xcf\x34\xe4\xc0\x3b\xd6\x3f\x0f\x4f\x84\xe9\xb6\xd8\xb6\x1d\xea\x6e\xf6\xc6\xbc\xa8\xb0\x1c\xea\xa2\x66\x11\x67\xa0\x32\xae\x06\x06\xd9\x80\x72\x0c\x21\xcd\xdf\x71\x21\x98\x98\xd5\x18\x51\x1a\x8c\xc4\xed\xb6\x46\x6d\xf0\x9a\xe6\x2d\xab\x83\x3b\x56\x2b\x9d\xb4\x44\x2f\x5a\x98\xb5\xac\x0e\x75\xa7\x1d\xab\x35\x16\x4e\x69\xee\x49\x2b\xa2\xf9\x22\xc6\x1b\x12\x71\x11\x2f\x4e\xa7\x2d\xd1\xb2\xd6\x24\xcd\x5a\x02\x73\x6b\xc8\x8b\xa8\xd6\x77\xac\x56\x57\xa0\x50\x1d\xec\x58\xa1\xa5\xd4\x5e\x63\x1c\x8f\x7f\x55\x91\x12\x0e\xa9\x59\xf0\xc0\x29\xd6\x5e\x39\x36\x44\x2f\x3e\x70\x44\xca\x35\xe7\x3b\xac\x5b\xe4\x1c\x11\xb9\x53\x74\x45\x77\x87\x2a\xe2\xc7\x33\xbd\xa6\xbc\x6e\x51\x1b\x31\x16\x7d\x31\x13\xe0\x88\x95\x53\xa1\x19\x71\x39\xe2\x60\x40\xfd\x2b\x7c\xa5\x3d\xe8\x79\x5d\x87\x74\xcb\xc2\xbc\x6c\xd1\xa4\x46\xba\xa2\x09\xd6\x13\xfe\xe9\x9a\x3d\x83\x55\x5e\xcc\x1f\xe4\xae\x07\x08\x02\x34\x76\x9b\x12\x56\xcd\xdd\x66\x98\x4e\x94\x10\x32\xd0\x49\x45\x96\xe5\x49\xe9\xe1\x46\x1e\x7a\xf7\x9d\x00\x58\x77\x2d\x77\xe8\x31\x7b\x02\x60\xdd\xcd\xdc\xbe\xfa\x59\xc1\x1a\x7d\x4c\x00\x9c\xa1\x5e\x30\x2b\x83\x33\xcf\x34\x15\x59\x22\x3a\x9c\x85\xc1\xd2\x5d\xa3\xea\x72\x74\x96\xf2\xc1\xb5\x41\xa9\x20\xd1\xae\x55\x97\xc2\xd1\x6b\xc0\x6c\xdb\x59\x96\xef\x6f\x51\x75\x9d\x39\x39\x94\x70\x3a\x1f\xc6\x00\xfe\x2f\x1d\x92\xb0\x88\x47\x08\xb6\x5b\x47\x63\x2c\x5e\xfa\x02\xfd\x22\x38\xb2\x6d\x27\x12\x4f\x84\xd3\xed\xd6\x91\x50\xfc\x13\x00\x8e\x7c\xbf\x46\x5e\xc9\xae\x3a\x42\x11\x66\xf8\x83\xf4\x75\x3d\xaa\xc7\x80\x70\x28\x14\x3a\xbd\x27\x16\x64\x8d\xd7\x2b\x5e\x57\x7a\x33\x15\x24\x5b\xb2\x7f\x26\x40\xf9\x89\x4a\xf8\x97\x30\x65\x02\xd3\xd5\x84\x5a\x9e\x2a\x67\xc8\x42\xe1\xf3\x42\x3c\xe7\x84\x19\x6a\x73\xc9\xf3\x9e\xc4\xa3\x95\x45\x93\x16\xe1\xa7\xd1\x6c\x40\xdc\x95\xaf\x40\x46\x2b\xe8\xd0\xda\x22\x60\xe9\x67\x92\x8d\x49\xc2\xd4\x2d\x72\x02\x80\xf0\xe6\x4f\x4f\x3c\xf5\x36\x43\xb6\x4d\xdf\xe7\xa5\xb9\x4f\xe5\xfb\x51\x1f\xc3\x19\xce\x47\x3c\xd7\xcf\x76\xa0\xec\xcc\xa6\xa9\x33\x55\x56\xc4\x0c\xcf\x81\x69\x85\x1b\xb1\x50\xd9\x03\xa6\xae\xac\xd7\xb0\x07\x24\x48\x25\x0e\xf3\x3f\xb0\xe3\xea\x82\x3c\x81\x0c\x80\x37\xa2\xe7\x48\x77\x7d\x63\x76\x5d\x7a\xee\x83\x87\x47\xe0\xc0\x4a\x68\x14\xf2\x8b\xb5\xa0\x7d\x36\x1a\x43\x65\x0a\x92\xc6\x78\x3d\x1a\x8f\x42\x0c\x90\x21\x0b\x03\x32\xc4\x62\xcb\x09\x3f\x0e\x58\x39\x4a\x09\x11\xde\x69\xb7\xe1\x0a\x9e\x44\xa3\xda\x01\xdf\x40\xa4\xfa\xbc\x5f\x3b\x28\xa9\x98\xb8\x03\xde\xa7\x75\xc5\x15\x57\x52\xa1\x73\x34\x34\xba\x96\xec\xf5\x25\x43\x09\x9f\xee\x14\x65\x65\xe3\x33\x37\xc1\x73\x12\xa4\x9c\x3b\x12\xdb\x76\x32\xa3\x3d\xd2\x55\x51\x63\x7f\xe4\x14\x65\x40\x78\x1b\xaa\x84\x21\xd0\x11\x8d\x95\x92\xa1\x32\x05\x11\x89\x09\x23\x2d\xa3\xc9\xd0\x4c\xd2\xc4\xb9\x9e\x28\xa9\xef\x47\xd1\x9b\x03\x99\xd7\xe2\x66\x21\xff\x3e\x9d\x4a\x1d\xe5\x7e\x86\x42\x27\x7c\x14\xfd\xe3\x7a\xb0\x86\xa8\x8b\x8e\x79\xae\xf8\x23\x94\x62\xc2\x74\x80\x4e\x9c\xf2\xbd\x17\x08\x9e\x0b\x75\x03\xcc\x98\xed\x8e\x35\x52\xd1\x98\xb9\xa4\x03\x1f\xf5\x97\xef\xf1\x2e\x34\xc4\x72\x2b\xbb\x40\x0f\x79\x4c\xf8\xfe\x57\x70\x7f\x84\x63\x02\xad\x0a\x4c\xff\x6d\x55\x81\xfb\xce\x12\x54\x76\x97\x8b\x04\xb9\x78\x4a\x92\x34\x38\x4a\x90\x5e\x14\xf3\x6e\x46\x26\x24\x23\xc9\x58\x06\x92\x75\x12\x67\x06\xe0\xb3\x9a\x45\x75\x60\xd5\x6b\x5b\x88\x05\xa3\xe2\x40\x2a\x49\x56\xf9\x3d\x8d\xd3\x7b\x2e\x70\xee\x4b\x2c\xb9\x0a\x58\xb0\xcc\x49\x56\xcf\x17\x69\x12\x68\xbb\xd5\xa8\xa4\xb3\x83\xb2\xe6\x9a\xb3\x05\x85\x43\x44\x48\x69\x70\xe1\x60\x81\x12\x53\x46\x44\x8c\x27\x25\x25\x81\x9d\x50\x66\x2c\xdd\xd3\x5f\x2f\x6f\x46\x37\xb7\x5f\x2e\xaf\xde\x8f\x3e\x9d\x7e\xfe\x7c\x79\xf5\xfe\x66\x84\x1e\x37\x7e\x0f\xde\xf9\x3d\xb8\xf1\xf8\x0f\xfe\xcf\xa6\xef\x7b\xf0\xae\xef\x7b\x3b\xb8\x14\x82\xda\x6d\x2a\xbc\x59\x8d\xea\x2b\xc5\xe2\x4b\x38\x99\x96\x21\xf5\x65\xf2\x81\xaa\xea\xea\x11\x56\xa8\x45\x0e\x14\xe0\x2c\x43\x46\x6f\xf8\x9a\x7c\x4b\xd2\x87\xa4\x25\x4e\x2f\x7e\xcb\xea\x30\xce\x32\x2c\xf9\x14\xb7\x5e\xbd\xf2\xdc\xe8\xf1\x3f\xe5\xe2\x95\x88\xce\xe5\x14\xe4\xad\x34\x89\x37\x3a\x0c\x44\xde\x62\x0f\x69\x6b\xd3\xc5\x6b\x92\xc3\x16\xe5\x5d\x25\x51\x6b\x92\xa5\xf3\x56\xaf\xeb\xb9\x96\x60\x4f\xe0\x50\x4b\x82\x22\xc0\x3a\x5c\x56\x28\xba\x31\x09\x07\x14\x09\x32\xdc\x8d\x98\x77\xa5\x71\x52\x8b\x52\xaf\x05\x56\xfa\x06\xab\x2c\xce\x47\xb9\x0e\xfd\x61\x08\xd5\x62\xf7\x1f\x77\xbb\xda\x92\x35\x72\xea\x8b\xb7\xae\xa5\x13\x0b\x52\xe5\x8b\x75\x64\x1c\x17\x54\x5b\x0e\x9d\xce\x55\xb6\x8e\x8a\x48\x43\x51\x3e\x43\xd5\x95\xe3\x24\xe2\x53\x69\x49\x54\x43\x86\x34\x44\x8f\x34\x5a\xfb\x18\x0a\x83\x09\x3f\x2b\x7a\x93\xec\xcc\x0e\x0f\xb3\x70\x50\xfd\x54\x28\xb4\x02\xcb\xaf\xe6\xa2\x62\x7c\x68\x65\x80\x76\xf2\xbd\x9a\xd1\x65\x3e\xe5\xbc\xc1\x41\xaa\x75\x68\x26\xa6\x5e\xe8\xaa\xd2\x30\x77\x37\x1c\xae\x32\x0f\x86\x85\x49\x63\x71\xaf\x52\xbc\x2f\xcb\x57\x21\xe5\x5c\x19\x60\x6b\x01\xb5\xab\xae\xa5\x29\x61\x4d\xde\x6c\xd5\x12\x7a\x2f\x68\xd0\x57\xde\x1f\x87\x15\xb4\x54\xdd\x2f\x93\x01\xf1\xab\x80\xca\x66\x74\x24\xae\x24\x6a\xb5\x18\xa8\x1a\x9f\x66\x97\x03\xb7\xb7\x97\x07\x65\xe6\x90\x85\x2a\xdc\x46\x23\x7a\xdd\x80\x83\x35\x28\xa2\x7a\xa8\x0e\x95\xcd\x6b\x29\x3d\x6f\xec\xc3\x16\x79\x07\x9b\xa3\xce\xca\xcd\xbe\xd5\x83\x26\x02\x43\x00\x46\x04\x52\xc4\x49\x0c\x1e\x58\x1b\xcb\xb7\x36\x7d\xab\x08\x52\x60\x6d\x3c\x0b\x21\x22\xde\x69\x5b\x1b\x0b\x40\x6b\xc3\xbf\x01\xdf\x4d\xda\x74\x87\x17\x90\x69\x5e\x59\x6e\x6d\xb5\x11\x69\xa2\x30\x56\x87\x04\x18\x75\xbd\x1d\x45\x64\x27\x25\xd7\xae\xc7\xeb\x36\x56\x8f\x5f\xd7\x92\x4d\x9c\xa4\x90\x5c\xf5\xd2\xe2\xa9\xd9\x61\x0a\x9c\x0d\x99\x88\xe8\x20\x5a\x82\xc8\x76\x5b\x9e\xad\xdb\x85\xe7\xf3\xf4\xd0\x92\x2b\xa3\x86\xa6\x1a\x61\xaa\xf6\x5a\x39\x43\xe2\x3d\x14\x0d\x8b\xa8\xe7\x0d\x53\xc6\x0f\x09\xbf\x63\xb5\x16\x9a\x80\xda\x0c\xd2\x89\x43\x10\xda\x57\x53\x7c\xa8\xb2\x4d\x07\xa8\xa3\x44\x9d\xd3\x1e\x1e\xa6\x46\x70\xce\xa6\xc4\x7d\x84\x41\xda\xea\x28\x08\xa8\xcd\xae\x22\x50\x62\x82\x8d\x03\x93\xa6\x8c\x2a\xf0\x80\x9e\x3c\xad\x85\x6a\x18\x33\x6a\x8e\x99\xd6\xfe\x30\x88\xa5\x0d\x5a\x6d\xd0\x92\xe5\xbc\xaa\xa6\xaf\x6e\xbc\x0a\x59\xab\x96\xe4\xab\xb1\x69\xbc\xab\x08\xf2\x62\x44\x64\xf5\xfb\x38\xa4\xaa\xe8\x30\x86\xe2\x78\xad\xfb\x5e\x45\x21\x2b\xd8\xdf\xb8\x87\x90\x48\xf8\x26\x1c\xf2\x6c\x73\x60\x20\x14\x53\xdb\x95\xfe\x20\xa8\x79\x3e\x58\xfe\xfe\xf3\xc1\x41\x21\xd6\xf7\x7a\xf0\x49\xd9\xd5\xf7\x5e\x36\xba\xe9\x80\xd5\x23\xc7\xbf\x28\x4c\xec\xff\x6c\xeb\x81\x52\x87\x55\xcc\x6f\xaa\x52\xf7\xd7\x4e\x95\xe4\xd9\x36\x15\x34\x87\x97\xdd\x05\x58\x3b\x6a\xf9\x48\x13\x82\x33\xa9\x31\xcb\x1a\xad\x07\x65\xe8\x27\xf5\x36\x5e\xc5\xd0\x1f\x23\xea\x58\x55\x2f\x34\xc2\xed\xa9\x8c\x1b\x98\x8a\x21\xd1\xea\x24\x43\x91\xa4\xc2\xbc\x3c\xae\xfc\x74\x98\x87\x3b\x50\x30\x0c\x6a\x5e\x37\x80\x47\xf5\x94\x6c\x12\xa7\x69\xe6\xe0\xe3\xb1\x9c\xbc\x29\x4a\xdc\x7b\x9a\xe0\x6c\x73\x43\x70\x26\xac\x98\x22\xe8\x01\xe1\x57\xbd\x92\x4e\x60\x04\xbb\x1e\x08\x38\x67\x99\xda\xb6\x33\x45\x3d\x00\xf9\xc7\xc4\xb6\x9d\x09\x8a\x0a\xbf\xaa\xda\xb8\x59\x9f\x9e\x27\xdd\xe9\x1b\xb4\x3c\x7e\x59\x2a\x90\x57\x68\x12\xac\xde\xa0\x69\xb0\xd2\xbe\x54\x37\x28\x1a\xae\x42\xb8\x96\x4d\x8c\xd3\xa9\xb3\x39\x66\xe0\xb8\xf8\x22\xc7\x0c\x1c\x61\x38\x47\x8f\x2b\x7f\xb3\x0b\x94\x52\x74\x34\x18\xa1\x47\x46\xc7\xdf\xc4\xe5\x8d\xbf\x91\x2e\x7c\x46\xe3\x34\xcd\x22\x7f\xbd\xf3\x0b\xb3\xd1\x75\x77\xe4\x1a\x79\xe0\x0d\x1a\x3f\x53\x74\x2e\x77\x37\xb2\x2c\xb8\xd0\xaf\xb9\x77\x0b\x37\x23\x2b\x92\xe5\xe2\x39\x82\x3a\x43\x2c\x2a\x26\xb5\xf7\xf0\x01\x9e\xf2\x69\x2c\x9d\xd2\x59\x20\x38\x1d\x38\xf7\x68\xe8\xc1\x3e\x7c\x09\x7f\x82\xde\x6b\xf8\xa2\x0f\x5f\xbf\x14\xce\xc2\xfa\xaf\x5e\x87\xf0\x01\x79\xaf\x81\xaf\x61\x5e\x41\xaf\x07\xfb\x3d\xf8\xaa\x07\xbd\x5e\x4f\xe4\xf6\x80\x76\xc3\x0a\x2f\xe0\x47\x39\x48\x63\x42\x63\x31\x8d\xf0\xb6\x7c\x8e\x41\xba\x0c\x1c\x7f\x84\x37\xe6\x54\x17\x83\x78\x6b\x0c\xe8\x03\x00\xf0\x73\xf9\xb6\xf0\x01\xde\x48\x9d\xa7\x7c\xa4\x78\x5f\xfa\x92\xb9\x46\x9f\x8f\xee\x87\x71\x08\xcf\x4d\x9c\xec\xf8\x1a\x1c\x5d\xc3\x0b\xa3\x29\x44\x26\x2d\xcb\xc6\x5c\x74\xcf\xc1\xf1\x35\x6c\x3b\xf8\x78\xf9\x66\x0c\x80\x78\xe7\x28\x6a\x39\x7f\x73\xc1\x51\x1f\xa1\xae\x07\x74\x40\xc8\xa5\x58\xcc\x33\x74\xde\xc9\x8f\xae\x61\xb9\xa8\x67\x3b\xe5\xdd\xfb\x8c\x8f\xeb\xbe\xb3\x25\xe5\x6f\x41\x62\x59\x98\x1b\xa3\xb8\xef\x5f\x0c\xf3\x50\xce\xa7\x6d\x3b\xe5\x07\x3a\x93\x64\x23\x83\x22\x6d\x05\x7b\x7c\x57\x16\x71\x24\x5b\x0b\x63\x47\xcb\xbd\x9c\xaa\xa8\xaf\xcd\xb4\x43\xee\xf3\x71\xe1\x88\x58\xe3\x49\xdf\xa0\xde\x60\x2a\x92\x53\x11\x1b\xc9\x1f\x86\xc2\x87\x53\xe1\x50\x0b\xe5\x2a\x74\xce\xe3\xa7\xcb\x8f\x1f\x2f\x6f\x2e\xce\xae\xaf\xce\x3f\xf2\xf3\xf6\xed\x5f\xae\x47\xd5\x34\x0f\xbe\xbb\xfc\xe5\xa2\x96\xd8\x87\xb7\x17\x57\xb5\xb4\x17\xf0\xdd\xe5\xbb\xdb\xbb\x5a\xea\x4b\xf8\xe1\xeb\xd5\xf9\x97\x8b\xf3\x5a\xfa\x2b\x89\xb6\x39\xf3\x35\x2c\x7e\xfe\x28\x9a\x54\x7c\xfe\x24\x8b\x15\xdf\x7f\x12\x0d\x29\x1b\xdb\x83\xb7\x1f\x2e\xbf\xdc\xde\x19\x49\x1e\xfc\x74\x79\xf5\xf5\xf6\x82\xff\xee\xab\x0e\xea\xef\x17\xba\x73\x3a\xe1\xa5\xea\x98\xfe\x7e\xa5\xf1\x95\x49\xaf\xe1\x87\xeb\xaf\x5f\xf8\x2f\xd9\x36\xfd\xf5\x13\xbc\xb9\xfc\xb5\xf8\xfa\x13\x3c\x3f\xbd\xe4\x23\x25\xc7\x54\x7d\x78\xf0\x2f\x17\x17\x3f\xf3\x5f\x7d\xf8\xe9\xfa\xea\xf6\x03\xff\xf9\x02\xfe\xf9\xeb\xe9\x97\xdb\x0b\x5e\xae\xff\x12\xbe\xbd\x3c\xbd\xba\xfa\x7a\xfa\xd1\xef\xbf\x82\xfa\xd7\x6b\x78\x7e\x71\x76\x7a\xce\x7f\xfe\x08\xcf\x2e\xae\x6e\x2f\xae\xae\x2e\xf9\xd7\x4f\xf0\xea\xeb\xa7\xd1\xfb\x2f\xa7\x57\x5f\x3f\x9e\x7e\xb9\xbc\xbd\xbc\xb8\xf1\xfb\x7f\xe2\xb3\xfd\x3e\xc3\xc9\x32\xc6\x19\x65\x1b\x14\xeb\x57\x3a\xe7\xa7\xb7\x17\xef\x2e\x2f\x3e\x9e\x8f\xf8\x64\x97\x5f\x9f\x7c\xcf\xf8\x3a\xf7\xfb\xc6\xd7\x87\x0f\xfe\x0b\x13\xf4\x93\xff\xd2\xf8\xbc\xb9\xf1\x5f\x99\xb9\x37\xfe\x6b\xd1\xa4\x22\xe9\xc6\xff\x71\x07\x97\x9c\xa9\x2c\x87\xb1\x5b\x99\xe7\x10\x3d\xf2\x35\x39\xa1\x24\x8e\xfc\x99\x6b\x62\x11\x1e\x1a\x7d\x0f\xe6\x0b\x3c\xa6\xc9\x54\x68\x7d\x86\xb1\xbb\xb7\x3c\x9f\x45\xd1\x2f\x50\xf4\x25\x8a\xfd\xd5\xfc\x2c\x8e\x57\x05\x8e\x57\xaa\x19\xf5\xc5\xff\x7c\x4f\x7a\x65\x57\x7a\xba\x21\x7b\xbb\xe5\xf9\x96\x94\x68\x5e\x29\x34\x8d\x3b\xe8\x3b\xda\x63\x36\xa8\x67\x0c\xcd\x3f\x86\xef\x55\xcf\x6c\x99\xc2\xf7\x6c\xe9\x9b\xfd\x79\x26\x2f\xca\x99\xfe\xee\xf2\xc6\x24\xeb\xf2\x15\x32\xf1\x2c\x02\x63\x86\x8b\x06\x18\x74\xe5\xf9\x0e\x18\xa3\x49\x5e\x2a\x04\x55\x42\xf4\x2c\x8e\x17\x25\x8e\x17\x1a\x87\xa6\x3a\x87\xc7\xff\x53\x7d\x04\x5f\x17\xf5\x1b\x94\xee\xd9\xf2\xe5\x08\x7a\x7d\x8d\xa0\x42\x1a\x9f\xc5\xf0\xca\x68\x7d\x65\x9b\x7c\x6f\x0f\x7a\x46\x17\x5e\x55\x86\xf0\xbb\x71\x18\x43\xe8\xfd\xa4\x91\x48\x8a\x7c\xb0\xec\x87\x0f\xf5\x11\x7c\x51\xd6\x5f\x90\xf7\x67\x8b\x97\x03\xf8\x63\x5f\x17\x2f\xf9\xc1\xb3\xc5\x5f\x97\x2b\xd8\x2b\xaa\x17\x4c\xe3\x60\xd1\xf3\x7a\xbb\x7f\x7a\xfd\xd2\x6c\xf8\x77\x95\x36\xe6\xfd\xc7\x7e\x31\x64\x92\x49\x3d\x57\xf6\xc7\x72\xc2\x7a\x2f\x8b\xb2\x8a\xad\x1d\x9e\xab\x7a\xb3\xfb\xaf\xfb\x7f\xfa\x89\xd7\xae\xa8\x46\xc1\x0c\x9f\x43\xf1\xa2\x3a\x66\x47\x2f\x5e\xbf\x72\xfb\xaf\xfa\x6a\xf5\x6a\x36\xfa\x1c\x96\x72\xe4\x5f\xbe\xe8\xef\x61\x79\x06\xc7\x5d\xe3\x1c\xd4\x70\x28\xd6\xfd\x2c\x12\x63\xff\x7b\xaf\x5e\xfd\xf8\x53\xef\xc7\x17\xaf\x35\x29\x2d\x79\xfe\xf3\x68\x9a\xf0\x90\x17\x3b\x65\x43\xd2\x68\xe1\x23\x5c\x2d\x76\x5f\xfc\x29\x20\x27\x88\xff\x6b\x58\x18\xe0\x52\x6a\xf7\x7a\x90\x00\x48\x91\x17\xd0\x13\xf4\x27\xf3\xe2\x1a\x1f\xd1\x40\xb9\x4f\x4c\x8a\xa0\xf6\x6c\x27\x42\x9f\xee\x07\xcc\x30\xa2\x63\x34\x1c\x40\x65\x78\xfd\xd8\xdd\x13\x6c\x64\xa4\x7d\x3a\x71\xf0\xf1\x42\x39\xdd\x78\x83\x92\x42\x59\xa8\xaa\xed\x7a\x3b\xb8\x68\x76\xa0\x87\x96\x43\x1c\xba\x6a\x70\x2a\x8f\xcc\x64\x78\x1a\xef\x48\x1e\x68\x28\xd8\xc1\x69\xc3\x01\x5a\x8b\xdc\x07\xce\x05\x30\x2f\x4f\x62\x5f\x6f\xcf\x2c\x00\x23\x94\x0f\x12\xf7\x1c\x33\x72\x3a\x1e\x93\x3c\x4f\x33\x9e\xe1\xd7\x92\x3e\xa6\x63\x1c\xc3\xb1\x6c\x5d\x31\xb7\x70\xa1\x9a\xcb\xc8\x02\x4e\x2b\x4d\xe7\x87\x65\xf5\x90\xd2\x61\x00\x8e\xb8\x70\x35\x1a\x56\xd6\x42\x88\x22\xf9\x48\x34\x8e\xef\x08\xce\x9c\x09\x80\x55\x88\x4f\x0a\xe2\x53\x9a\xb0\xd9\x7e\xf6\xb9\xca\x16\x75\xec\xe5\x7e\xf8\xa0\xb2\x3f\xa4\xcb\x2c\x6f\x40\x5e\x60\xa7\xc9\x92\x91\x06\x88\x9b\x1b\x05\x71\x43\xc6\x69\x12\x35\xe1\xb8\x29\x70\xc4\x31\xcd\x0b\x30\x15\x5d\x79\x34\x1c\x87\xff\xb9\x08\x30\x42\x9a\x5c\x89\x20\x19\xaa\xd1\x1b\x67\x02\x38\xc2\x71\xd8\x45\xab\xe2\x5e\x69\x83\xc6\x1d\x2f\xd8\x9c\xcc\xdc\xaa\x84\x1a\x6c\x3a\x1d\x30\x1a\x6e\x42\xb4\x11\x81\x83\x8d\x61\x18\x78\xbe\x74\xb3\xb8\xe6\x7b\x64\x8e\x22\x77\x8e\xbf\x11\x3e\x2a\x2e\x5e\x2c\xe2\x8d\xd0\x1f\xc1\x11\x80\xf7\x68\x5e\xbe\x69\x15\xaf\xac\x4f\x90\xe6\x3d\x62\x2f\xdd\x9f\x30\xdb\x76\xee\x3b\x68\x0a\xe7\xe5\xf4\xdd\x03\x10\xdc\x9f\x20\x12\x80\x75\x71\x02\xbd\x57\x06\x32\xa9\x3e\x2e\xce\xd5\xf2\xdb\x01\xb8\x5f\x5e\xea\xf0\xcb\x1a\x78\xa7\x3b\x68\xf1\xdd\x6d\xd5\xf5\x3b\xf8\x0d\x52\x2c\x67\xbb\x35\x26\x77\x0e\xfe\x73\x81\x50\x0f\xd8\xf6\xf7\xb5\xf0\xf7\xd6\xaf\xf7\xe1\x9a\x1f\x5a\xd4\x8a\x13\x7a\xd4\xe9\x13\xd6\x18\x3f\xfe\x8e\x78\x0f\xda\x3b\x89\xf1\xa2\xf0\x23\xcd\x19\x49\x48\xe6\xf0\x8d\xdd\xf6\xc0\xae\xd9\xda\x01\xb1\xed\xf6\x41\x3c\x88\x77\x85\x63\x13\x11\x1b\x2a\x5d\x7c\xce\xd2\x05\x9e\x0a\xab\x1a\xdb\xde\x4b\x12\x6e\x4f\xaa\x9e\x50\x38\x54\x83\x6f\x14\xf9\x68\xee\xed\xf2\xfe\x3e\x26\xa8\xdd\x2b\x52\xe4\x6f\xd9\x08\xe9\x3d\xb0\xed\xc1\xb6\x57\x36\x32\xab\xba\x05\x4d\x60\x16\x28\xed\x10\x01\x14\x61\x98\x20\x0c\x33\x33\xa6\x59\x6a\xea\x52\x5e\x1f\x31\x4e\xaa\x5e\x1f\xb1\x6e\x0a\x63\x84\x8f\x1c\xaf\x4b\x00\x9c\xa9\x5f\x47\x39\x80\x4b\xfd\xdb\xf1\xba\x39\x00\x41\xfe\x40\xd9\x78\xe6\xa4\xe0\x71\x8c\x73\xd2\xf2\x7c\x8a\x66\xaa\x96\x38\x90\xf1\xb7\x45\x46\xdf\xa7\x28\x56\x19\x4b\x33\xe3\x85\xca\x98\x89\x76\x19\x19\x2f\x7d\x8a\x96\x30\x41\x71\x3d\xe3\x95\x2f\x7b\xc2\x33\x66\x66\xc6\x6b\x5f\xfc\xe9\xa9\xfc\x25\x6f\xc3\x4e\xb3\x1c\x6a\x76\xb4\xff\xea\xd5\x11\xed\xb8\xaf\x00\x4c\xea\xc9\x89\x48\xce\xea\xc9\x99\x48\x16\xde\xf5\xad\x0e\x15\x36\x55\x89\xb4\xac\xea\x58\xc0\x2a\x27\x20\x35\xa3\x77\x8a\x48\x43\xcb\x24\xa2\xc9\xf4\x2c\xa6\x24\x11\x0f\x62\x1c\x00\x31\x92\x6b\x07\x52\xa4\xdf\x97\xba\xfa\xc7\x85\x0c\x8c\x1c\x14\x6f\x65\x88\x78\x19\xdd\x71\xb0\x7c\x42\x2d\x6d\x96\xb6\x5b\xea\xe6\xe3\x2c\x8d\x85\x5f\x45\xe9\xa3\x84\xa5\x0b\x0d\x75\x57\x87\xba\x4d\x17\xc0\x08\x5c\x92\x97\x6b\xb9\xcd\x24\xde\xed\x56\xfd\x38\xe9\x0d\x7a\xbe\xfa\x5d\x96\x88\xf7\x4a\xdc\xe9\x12\x77\x46\x89\xbb\xb2\xc4\x4c\x5e\x6e\xe9\xeb\x33\x87\x81\x2e\x71\x17\xeb\x12\x60\x59\x01\x88\x15\xc0\xa6\x04\x88\x8c\x3a\xdb\xac\xb0\x17\x67\xc6\xa6\x1c\x9b\x38\x04\x90\xbe\xd9\x63\xc2\x30\xd5\xfc\x5e\x1b\x7e\x7a\xc5\x97\x01\x5a\xc9\xda\xd8\x76\xdb\x51\x75\xb9\x6b\xb0\xdd\xb6\x89\x6d\xeb\xef\x0d\xe0\xff\x95\x2d\x58\x98\xef\xea\x0b\x47\x1b\xc5\xfb\x74\x0f\x92\xed\xb6\x0f\x60\xdf\xab\xbe\x5d\xc7\xf7\x7c\x44\x4e\xdc\x5e\xcf\xb3\x6d\x51\xed\x80\xb9\x2c\xbd\x58\x2f\xd2\x84\x24\x8c\xe2\xd8\xc1\x5d\x0f\xf8\x3c\xf1\x73\x46\xc6\x34\x97\x51\xfe\xca\x8a\xa7\x26\x3d\x3a\xf1\x7a\x03\xab\x67\x75\x98\x6f\x59\x1d\x56\x02\x4d\x4a\xd1\x4a\x8a\x55\xbc\x54\xc7\xf2\xad\xce\xd4\x21\x92\x19\xf1\x71\xe8\x20\x99\x84\x01\xa4\x40\xdf\xc5\x5a\x56\x87\x06\x3c\xcb\xb5\x3a\x8e\xd5\xeb\xf5\xac\x4e\x06\xdc\x7c\x79\x2f\xad\x68\x9c\x4c\xeb\x9b\x77\x45\x18\xba\xa2\xde\x91\x39\x2a\x64\xc0\x98\xff\x1f\x90\x56\x44\x93\x04\xe1\x8a\x18\x22\x6e\x42\x70\x29\x77\x50\x00\x53\x54\x90\x7d\xfe\x99\xcb\x4f\xc9\x7b\x28\x10\xce\x6c\x0c\x41\x82\x0a\x42\x65\x0a\x0e\x54\x90\xab\x3d\x41\x81\x72\xe9\xcb\xb2\x3a\x09\x1c\xa3\xa9\x93\x75\x3c\x00\x17\x68\x2a\x63\xb6\x72\xb1\xfa\x28\xef\xbc\xee\x1d\xc5\x9d\x59\x87\xcf\xce\xd1\x12\xae\x50\xd4\xb1\x8e\xad\xce\x58\xfc\xbb\xd0\xf3\x38\xe2\x62\x45\x07\x59\x2d\xab\x33\x71\xd4\xcd\x09\x00\x70\x55\x8e\xc2\x6a\x6f\x6d\x14\xb2\x72\x83\x8c\xc9\x8e\x30\x38\xc6\x65\xe9\x4d\x73\x0c\xfb\x76\x2f\xc8\x82\xe2\x82\x1b\xe6\x88\xf0\x91\x80\x33\x44\xe1\x12\x25\xe2\xde\x9c\x73\x05\xb5\xb6\x67\xc6\xca\x9e\xc9\xe0\x96\x6d\x84\x96\x46\xea\x52\x44\x3b\xef\xc1\x25\xca\xcb\x8b\x13\x38\x7b\xb3\x04\x5a\x6a\x0e\x54\xa9\xd8\x28\x15\x6f\xb7\x4e\x8c\xd4\x6d\x40\x54\x91\xe5\xcb\x55\x29\x2c\x9e\x59\x11\x31\x9d\x4b\xdf\xc2\xc8\xe8\x32\x61\x8e\x33\xeb\x2c\xc1\x71\x1f\x7a\x3d\x00\xa7\x28\x1f\x2e\xc4\xd5\xd2\xd4\xb8\x92\x17\x8e\x76\xa6\x6f\x52\x21\xd8\xc7\x6f\x7a\xc2\xee\x7c\xd1\xf5\xe0\xd8\x89\x80\x6d\xe7\xc3\x28\x3c\x49\x41\x09\xcd\x50\x0a\x09\xca\x21\x46\x31\x94\x5c\x88\x03\xf3\x01\x83\x63\xb4\x40\x53\x14\xa9\xa0\x64\x3b\x7d\x2d\xd5\x76\xa6\x25\x86\xae\xf0\x80\x13\x9f\xa8\x7a\x3a\x66\x3d\x6f\x0e\xd7\xc3\x01\x25\xaf\xd9\xaf\xc7\xa0\xb8\xeb\x82\x2f\x40\xcc\xeb\x11\xee\x0f\x99\x9b\xcb\x1b\x2d\xab\x6b\x81\xed\xb6\xeb\xb5\x8d\xa4\xdb\xfd\xa4\xbf\x5a\x00\xd8\xb6\x83\xd1\xdc\x61\xa0\x7c\x40\x83\x8b\xc6\x09\xd4\xd5\x32\x5d\x4b\x85\x80\xe5\x0c\x29\x23\x8b\x18\x8f\x09\x4f\x85\xd6\xb1\x05\xad\xa9\x05\x02\xe9\xa9\xdc\x80\x0f\x00\x41\xa4\x0e\x0b\x02\x5e\x2d\x51\x8e\x24\x7e\xe2\x8d\x57\xfe\xa2\x04\x66\x49\x16\x9c\x1e\x7c\x09\xc4\x2e\x29\x52\x5e\xc2\x7e\x2d\xe5\x35\xec\x73\x16\xc8\x91\x01\x5f\xf6\x45\xef\x06\x6c\xf4\x69\xef\x29\xd0\x59\xba\x8c\xa3\xe4\x07\xd6\x12\x6b\xa8\x65\x75\x58\xc7\x6a\xe1\xbc\x85\x5b\xfc\x64\x64\x01\x68\xec\x9d\xb9\x19\x28\xb9\xa4\x3a\xa5\x6c\x59\x82\xde\x17\x46\x18\xa5\x17\xf7\x62\xa3\x90\xea\xed\x2f\x01\xf5\xeb\x5e\x47\xdc\xf3\xb2\x21\x0e\x45\x54\x59\x23\x1e\x40\x51\xc1\xc3\x1f\x50\x81\xba\x66\xe4\x55\x0c\x44\x65\x3c\xc1\x3f\x15\x17\xcc\x60\x50\x54\xaf\xcc\xef\x80\xdf\x6e\xb8\x2e\x4e\xc5\xc5\x75\x69\x1c\x74\x95\x46\x64\xc0\x5a\x34\xc9\x19\x17\x2e\x55\x8a\xbf\x07\xc7\x6c\x7b\xdf\x72\xd1\x4d\xd2\x88\xdc\x6e\x16\xc4\xb6\xf7\xad\x2a\x45\xe6\x15\x9e\x93\x9d\x6c\xa0\x6d\xef\x21\x15\x3d\x71\xf6\xeb\x1a\xe2\xb0\x18\x1b\xfe\xb1\xdd\xca\xc1\x7d\xdc\x01\xf8\x20\x7e\x42\x81\x12\xf8\x4f\x8e\xf9\xa9\x21\x86\x29\xcc\x0a\xca\xa8\x93\x6c\xb7\x96\x2e\x21\xed\xa0\xcc\xcf\xa2\x33\x94\x91\x39\x28\x1b\xd5\x38\x1a\xfa\x92\xf2\x85\x10\x20\xf4\xd8\x94\xed\xb9\x7e\x62\x1e\x58\x05\x77\x53\x0b\xd4\xaa\x2d\xd1\x9d\x73\x74\xa5\x4d\xa4\x88\x0b\xbd\xf7\xfa\xf8\x54\x0c\x17\x18\xa8\x20\xb9\xe7\xf2\xb3\x08\x21\x5c\x35\x4b\x28\x71\x5f\x94\xb6\x25\x85\x70\x2a\x03\x6d\x2a\xd1\xd4\xb1\x74\x64\xb7\xb2\xd0\x47\x61\x0a\x9a\x6d\xd4\x98\xab\xa3\x51\x44\x56\x74\x4c\x84\x0b\xe9\x2f\xfc\x04\x24\xc2\xd8\x3f\x90\xfb\x6f\x94\xbd\xc5\xe3\x6f\x34\x99\xde\xb0\x34\x33\x00\xb8\x48\x39\x4f\x7f\x7b\x22\x33\x3f\x9c\x97\x1e\xce\xba\x3f\x90\xe3\x05\xe6\x43\x67\xf9\x7e\x95\x1c\x63\xdf\xdb\x8d\x31\x3f\xd6\x94\x44\xc4\x33\x68\xf9\x6d\x29\x54\x11\xbe\x88\x7a\x10\x23\xcc\xab\x51\xa1\x47\xa5\xd5\x95\x8c\xb5\x29\x4e\x6c\xe2\xb5\x02\x21\xdf\x0c\xcf\x0d\xc2\xef\xc7\x08\x11\xfd\x90\x3d\xc3\x9b\xd2\x59\x84\x0e\x56\x3a\x42\x54\xa6\x90\x24\x1a\x95\xc2\x65\x51\x11\xe9\x60\x65\xe0\x99\x90\x35\xbb\x8c\xd6\x23\x44\xba\x5e\x99\x62\x92\xb9\x9b\xb2\xd1\x06\x5d\x2c\xbb\x52\x42\x7e\xae\xc9\x8c\x30\x43\x3d\x98\x36\x7a\xe8\x12\x36\xc0\x4e\x06\xa0\xc7\x29\x99\x39\x96\x54\xc5\x35\xcd\x79\x8b\x82\xb6\x71\x8e\x00\x8f\xd9\x1b\x3e\x6a\x84\x49\x15\x81\x3a\x0a\xd5\x2c\x8e\x49\xb3\x47\xb0\x19\x22\xdd\x34\x48\x50\x56\x3d\xa1\xcd\x8e\x95\xa3\xa5\x25\xca\xba\x49\x90\x75\x96\x6f\xf2\xed\x36\x7b\x83\xf2\x81\xc3\x9c\x1c\x40\xea\x00\xe0\x0b\xbf\x65\x4b\xdb\x16\x2d\x8e\x1d\x00\x76\x60\x67\x0e\xd1\x99\x29\xae\x49\x1b\x20\x66\x3c\xd2\xf1\x84\xa3\x46\xe3\x69\x0e\x1e\xb2\x21\x0d\x43\x1d\x6e\xa3\x6a\x65\x54\xec\x4e\x69\x35\x24\xdc\x07\xef\x19\xd9\xd9\x76\x1b\xb3\x21\x09\x1b\x62\x18\x17\xaa\xa9\x4c\xf2\x05\xe1\x36\xae\x86\x20\x03\x3c\xb9\xd1\xbc\x1e\xa1\x6c\xbb\xc5\xc3\x2c\xb4\xed\xb6\x36\x21\x13\x3c\x28\x71\xc8\x30\x33\xa2\x26\x17\x8e\x6b\x2d\x09\x24\x4b\x5a\x78\x2d\x7f\x6a\x41\x93\x17\x2a\x9a\x94\xf3\x26\xa5\xbc\xee\xb4\xde\xa4\x9c\x53\x4a\x27\x1d\xe6\x4d\x55\xf0\xce\x66\x4d\x9d\x2d\xa6\xe0\x53\x95\xb0\xf5\x02\x52\x0e\x39\x31\x1e\x6b\xb9\xe3\x19\xce\x4e\x99\x3a\xc3\x58\x7f\xe3\xc4\x18\x61\xbd\x02\x49\xc7\x3b\x29\x69\xb2\xf5\x37\x4e\x4c\x8d\x32\x1d\x0f\x0c\xac\xbf\x65\x7f\x4b\x2c\x1f\xcb\xe2\xc9\x93\xc5\xb3\xa6\xe2\xc9\xdf\x32\xcb\xc7\x3b\xc3\x7a\xb9\xec\xc5\x55\xc1\xf1\x35\xdf\xde\x6e\xd5\x2f\x6d\xe1\xdf\xf6\xcc\x80\x44\x01\xb6\x6d\xcc\xa9\x4f\x00\x30\xe2\x47\xf8\x8c\x24\x8c\x73\xe3\x42\x30\xe2\x48\xca\x0a\xde\x55\x8e\xce\xe4\xa4\x37\xf0\x8e\x8b\xf3\x05\x83\x5d\x02\x7c\xe3\x93\x18\x6b\xfc\x5b\xc9\x18\x13\xe6\x92\x35\x19\x2b\x83\xd8\x76\xb1\x7f\x0b\x37\xa5\xb8\x94\xd6\xc5\x53\x74\x2e\xaa\x53\x33\xad\x2f\xd3\x12\x33\xed\x85\x48\x2b\xf8\xca\xf0\x65\x38\x78\xcc\x7c\x0c\xa7\x3e\x85\xf7\x7e\x02\xb1\x2f\x80\xdf\xc5\x29\xe6\xe0\x2f\x43\xb0\xf3\x4d\x00\x83\xce\x7e\x29\xdb\xfa\x4d\xb5\xb2\x68\xa4\xb6\x42\x3d\xc4\xa2\x22\xba\xe2\x22\xab\x9b\xb3\x4d\x4c\x04\xfd\x37\x22\x7f\x22\x06\x75\x4e\x19\xac\x1c\x59\x33\x1a\x45\x24\xb1\x60\x81\xf3\x3e\x8d\x36\x2e\x5e\x2c\x48\x12\x9d\xcd\x68\x1c\x39\x85\x3b\x37\xc5\xe0\x44\x10\x70\xf9\x6a\x5f\x84\x76\x76\xb0\x38\x77\x81\x7a\x85\x41\x9d\xa1\x0a\xcc\x52\xed\xa8\x31\xc3\x6f\x8e\x49\x85\x2f\x35\x47\x75\xd8\x76\xfb\x1c\x23\x06\xb2\x25\xc2\x0f\x99\x63\xf5\x23\x0b\xd4\x19\x58\xdb\xdb\x15\xdb\xb1\xa8\xe3\x43\xf5\x0e\xc4\x98\x18\xb5\x26\xd4\x03\xfd\xe2\x7c\x21\xac\xcc\x8f\xff\x6f\xeb\xe8\x3f\x8e\x5d\x46\x72\x66\x98\x1a\x6b\x1b\x3b\x9e\x9b\xe0\x84\x83\xd0\x3a\xcc\x15\xbe\x52\x94\xd2\xfa\x9a\xe0\xfb\x98\xb4\x58\xaa\xa4\xf9\x1f\x84\x38\xff\x83\x94\xe7\x95\x7c\xb5\xc7\x9c\xb1\x19\x69\x49\xe9\x2d\x5a\x9c\xa9\xd0\x84\x9f\x07\x1c\xaf\xe3\x70\x76\x0c\x40\xc7\x6a\x39\x3f\x08\xaf\x01\x3f\x80\x56\x3a\x69\x9d\xdd\xfc\xe2\x5a\x00\x56\x0f\x14\x89\x7c\xd2\x5c\x0e\xc7\x5d\x45\x69\xe1\x58\x2a\x02\xab\x65\x1a\x8c\x17\x44\x62\x61\x04\x4c\x80\x09\x07\xdf\x0f\xeb\x2a\xae\xac\x88\x63\x55\x63\xbb\x8a\x37\x6c\xa4\x34\xcc\x7b\x2b\xee\x87\x48\xcd\x52\x8f\x4e\x1c\x2a\x1d\x56\xd8\xb6\x63\xa8\x8c\xde\x54\x14\x09\x19\xd8\x6e\x4d\x7d\x92\x99\xd7\x4d\x00\xd8\x53\x2a\x25\xc0\xb7\xac\xce\xca\x61\x30\x01\x30\xdd\x6e\x73\xe5\x80\x1c\xce\xb8\x14\x29\x8c\x71\x52\xdb\x76\x62\xe4\x91\x17\x70\x86\x32\x06\x60\x6e\xdb\x4e\x6a\xdb\x7a\xf0\x1e\x30\x17\xa2\x6f\x94\x9b\x97\xfb\x94\xcd\x5a\x45\x4f\x84\x37\x98\xb2\x1b\x6e\xeb\x33\x1d\x7f\x6b\xa5\x09\x69\x8b\xc7\x6f\x5e\xaf\xff\x12\xce\x50\xca\xe0\x12\xe5\xac\x74\xad\x11\x21\xa3\x0f\x70\x8c\xde\x39\x31\x9c\x69\xed\x12\x9c\xa2\x59\x19\x29\x7f\xfa\x06\xf5\x82\x69\xb7\x0b\xc7\xc7\x28\xe6\x1c\x28\x7a\x83\xc6\xe0\x91\xa2\x95\xc3\x8e\xc7\x30\x01\x9d\xd9\x70\x1a\x4a\xad\xf0\x8e\x4e\x1c\xd5\xbf\x09\xba\x91\x4a\xab\xfa\x78\x00\xe0\xe6\x8b\x98\x32\xc7\x22\xfc\xe4\xdb\x47\x08\x4d\x0a\xd2\x3f\x19\x7a\xe1\x1b\xf4\x42\xfe\x38\x41\xfd\x97\x22\xfc\x0c\xff\xf8\xcf\x17\x6f\x7a\x83\x95\x08\x87\x74\xfc\x8e\x0f\xb6\x4c\x04\x30\x01\xbe\x9c\x6a\x91\x07\x5c\x96\xbe\xa3\x6b\x12\x39\x7d\x00\x69\x07\x2d\x87\x86\xd0\xc2\x8b\x1c\xbf\x00\x5d\x11\xd7\x5f\x6f\xb0\x72\x35\xfe\x5a\xf3\x3a\x71\x67\x9a\x6b\x43\x53\x13\xf8\x4b\x75\x1b\xe3\xea\x4d\x63\x82\xa8\xd4\xbf\x65\x28\xa9\x68\xdc\x98\x08\xf1\x5c\x6a\xdc\x84\xee\x3f\x29\x34\x6e\xc2\x09\x67\x52\x6a\xdc\x18\x97\xbe\x12\x53\xe3\xc6\x00\x5c\xca\x14\xad\x71\x63\x00\x46\x1a\xc6\xd0\xb8\x29\xda\xfd\x06\xbd\x37\x6d\xcf\xf4\xed\xb7\xda\x51\x96\xd5\xc9\x1a\xc1\x94\xd9\x80\xde\x78\x31\x1b\xa6\x61\xc7\xb2\xff\xb7\xf7\xba\x17\xa8\x32\x3d\x84\xa4\xea\x2e\xee\xbc\xee\x1d\xcd\x3a\x4b\xa9\xba\x8b\xb6\xdb\xfd\x4a\x4f\x2f\x4b\x5c\x53\x27\x07\x25\x2a\x81\x59\xc6\x0d\xac\x96\xd1\x86\x3a\x3a\x92\x84\x65\x75\xa2\xa0\x40\xb1\x04\x1d\x43\x45\x3a\x36\x55\xa4\xe3\xba\x8a\x94\xbc\xa9\xf5\x4d\xd9\xaf\x0c\x26\x8e\xb4\xbc\xee\x01\x5f\xff\x8c\x8c\x29\xfe\x6b\x85\xe1\x0b\xed\x6a\x65\x96\xc1\xef\x7e\x62\x2b\xa2\xcc\x15\xd7\x5e\xc2\x15\xad\xbc\x63\x92\xdf\x09\xc4\xee\x2c\x5f\xdd\xa6\x5f\xde\xbf\x45\x19\xc4\xda\x61\x2c\x4a\xa1\xba\x88\x40\xb9\xfa\x75\x87\xb4\x07\x52\x11\x64\x06\xcd\xca\xaf\xbb\x11\x5a\x8a\x90\x11\xd7\x3f\xa3\x48\xfc\xf8\x05\xc7\x54\xfa\xd9\x40\x63\x8e\x95\x73\x1b\x79\x51\x8e\x16\x10\xbb\xbf\x91\x2c\x5d\xe0\x08\x4d\x79\xf5\xf3\x5c\x6e\xda\x11\x9a\xa8\x50\x71\xfa\x7b\xc4\x5b\xcf\xb9\xeb\x08\xad\x20\xae\x58\x87\xa3\x8d\x82\x95\xfe\xba\xd0\xba\x2c\x7a\x9b\xca\x55\x89\xe6\x10\xab\x57\x6d\xe8\xbe\xf8\x79\x4e\xc8\x02\x3d\x88\x46\x9e\xf2\xe3\xd8\x47\xfa\x8d\xa0\x53\xf1\x7d\x2e\x1c\x4f\x7c\x23\xe8\x9a\x8f\x52\x9c\x26\x04\x9d\xf3\x5f\x82\x19\x9f\x09\x1e\x8c\x2e\x20\x36\x98\x70\x79\xc8\x44\x1f\x21\x76\x2f\x19\xc9\x30\x4b\x33\x74\x5b\x14\x2b\x92\x6e\xc4\x4c\x2c\x08\x66\xa7\x49\x74\x16\x13\x9c\x2c\x17\xe8\xb3\xa8\x57\x60\x39\x9b\xe1\x64\x4a\x93\xa9\x7c\x89\xf2\x91\xe6\x0c\x9d\x89\xd7\xea\x8c\x8c\x45\x84\xe2\x73\x1d\x8e\x1b\x7d\x12\xa5\xb8\xdc\x78\xa6\x02\x78\x46\x6f\x37\xe8\x8a\xcf\x53\xfa\x80\xde\x09\x97\xda\x5f\xde\xbf\x1d\xa1\x2f\x02\x50\xb6\xfc\x46\x3e\x2a\x25\x11\xba\x14\x13\xaa\x65\x80\x11\xfa\x00\x71\x63\x9c\x59\x74\x57\x64\xec\x87\x95\x45\xbf\xaa\x01\x6f\xc8\xfa\x45\x65\xd5\xd0\xfd\x55\x70\xd1\xb7\x87\xe2\xd0\xbf\xff\xb7\x7d\xbd\xf1\x96\x4b\x98\x45\x98\x28\xe4\xc9\x73\xe0\x5f\xca\xa7\x03\x5c\x12\xc6\xee\xc7\xab\xd1\xed\xc5\x15\xfa\x8b\xc8\xfd\xda\xa4\x29\x2f\x0a\x30\x70\xfc\x97\x5d\x80\xa5\x93\x1f\xf4\x55\x94\xf8\xed\x80\xc9\xca\x57\x79\x8d\xf2\xd5\x21\x40\xc6\x27\x3b\x72\x92\x2e\xad\xde\x2c\x14\x62\x82\x42\x2a\xdc\x4a\xe9\xf8\x80\xe8\x37\x81\xff\xbf\xd1\xb0\x0f\xfb\x61\x80\xdd\xf3\xeb\xdb\xdb\x8b\xf3\xd1\xc7\xcb\xab\x0b\xf4\xdf\x22\xef\x67\x34\xfc\x11\xbe\x10\x79\xa7\x37\x1f\x74\xde\xcf\x22\xef\xef\x3c\xaf\x0f\xcb\xb2\x23\x0e\x23\x21\xfe\x1e\x60\x23\x7c\x0b\xf2\x02\x5c\x44\x3c\x41\x7d\x51\xfa\xcf\x8d\x37\x06\xfb\x72\x6c\x60\x6e\x2b\xf4\x67\x51\xf6\xbf\x1a\x22\x8c\xe0\x28\x6a\xbe\xc0\x0f\x70\x91\x87\xfe\x4b\x14\xff\x0f\xf4\x68\xf0\x41\xff\x50\x3b\x0a\x46\x09\x76\x50\x33\xc9\x83\xc0\x92\x85\x4a\x48\x4e\x2e\x0e\x02\x0a\xde\x2a\xe1\x04\x5f\x3d\x08\x28\xb9\xae\xaa\x5b\x72\xdc\xc3\xb5\x2b\x8e\x2c\xa1\x15\x37\x3e\x08\xad\xb9\xb5\xc6\x5d\x72\xea\x27\x2a\x30\xd8\xb9\xee\xe5\xe6\x89\x4e\x6e\x38\x94\x36\xf2\xf0\x9b\x5e\x29\xc0\xb4\x41\x43\x5f\xc9\x16\xe1\xa5\xf7\xed\xa1\xd0\x7f\x88\x59\x64\xec\xfb\xa6\xf1\xeb\xed\xd9\xef\x9a\xc9\xaf\xb7\x67\xdf\x3d\x99\x5f\x6f\xcf\xbe\x7b\x3e\xbf\xde\x9e\xfd\x9e\x29\xe5\xcd\xf8\x5d\xb3\xfa\xf5\xf6\xec\x1f\x98\x58\x51\xcd\xef\x9a\x5b\xd1\xe7\x7f\x6c\x7a\x85\xc1\xcf\xd7\xdb\xb3\x1a\x5c\xc3\x44\x7f\xbd\x3d\x43\x8c\xc1\x5b\xf3\x2d\x28\xdf\xff\x86\x96\xb0\x78\xc2\xaa\x34\xad\x95\x83\x68\xcd\x43\xd9\x82\x90\x6f\xda\x07\x99\x56\x95\x76\x3c\x88\x51\xdb\x0b\xc8\x49\xa1\x62\x0d\x0c\xac\xa5\x12\x76\xbb\xad\x25\x38\x86\xce\x16\x12\xa0\x7d\xea\x12\xf2\x0d\x19\x39\x43\x12\xf2\x0a\x7a\xea\x2c\x42\x3a\x9d\x9d\xf9\x64\xb3\xd4\xd8\x42\xbc\xdd\x3a\x55\x9d\xb1\x57\xd3\x19\x03\xc8\xa4\x91\x26\x61\x0d\x4f\x40\x95\x32\x22\x23\x7f\x5f\x92\x9c\x9d\x26\x74\x2e\xcc\x8d\xde\x65\x78\x4e\x0a\x33\x25\xa9\x76\xff\xf2\x24\xcc\x3c\xfd\xed\x69\x80\xf4\x99\xf2\xf9\x81\x7c\x73\x2d\x29\xd8\x5c\xea\x74\xd3\x25\x73\x18\xf4\xc8\x8b\xe3\xd7\x3d\xb0\xdb\x39\x9c\x5f\x1a\x1d\x11\xe5\x11\x91\xac\x1d\x33\xf4\x58\xba\x2d\x12\x6e\xb9\x95\x17\x31\xbf\xdd\x83\x65\xce\xf9\x7d\x7c\x38\x53\xba\xf5\x5e\xb2\x27\x32\x57\x24\x33\x73\xb9\x1c\x43\x13\x22\x14\x39\x66\x82\x0c\xd7\xdf\xee\xc1\x4a\xa4\x3e\x1d\x4d\xbf\xfe\x5d\x3c\xe6\x16\xc2\x6f\x3d\x57\xfa\x23\xaa\x7c\xd5\x41\x64\x78\xfe\x1e\x9c\xd0\x38\x3e\x8d\x17\x33\xcc\x3f\xa6\x19\x8d\x2a\x8d\xd3\x09\x45\xe3\x66\x34\x12\x3d\x8a\xf1\xe6\xba\xe8\xbc\xcc\xd0\xe1\xf4\x8c\x8a\x1a\x62\xec\xf1\x64\x5a\x73\x78\xce\xd3\xe4\xe9\xe3\x9c\xae\xca\x8f\x9f\x3f\xbd\x35\x3f\xde\xf7\xcb\x2f\xed\x63\x8f\xb7\x2d\x37\x92\x67\xe9\xc3\x5f\x49\x96\xca\x28\xa2\x22\x9d\x4c\x49\x22\x3a\x5a\x8b\x66\x2c\x92\xb4\x45\xf0\x9d\x90\x2c\x8b\x30\x7e\x67\xf5\x19\x10\xa9\xba\xf5\xc2\x01\xa4\x0c\x0d\x9f\x66\x9f\xe3\x94\xbd\xa3\x71\x5c\x8c\x58\x63\xee\xfb\x0c\x47\x94\x24\xec\x30\xd4\x0d\xcb\xd2\x6f\xa4\x39\xff\x6d\xa1\xfd\xfb\x3e\xa8\xca\x84\xed\xd5\x74\x38\xf7\x5d\x9a\x91\xe7\xeb\x29\xa1\x0e\x63\x2a\x16\x54\x3e\x4b\x1f\xc4\xd8\xe6\xd7\x49\xb1\x64\x75\xc6\x97\x34\x56\x9b\x22\x17\xf5\x15\xb8\x96\x49\x24\x56\x98\x39\x05\xcb\xa4\x71\x85\x99\xc1\x68\xf8\x41\x14\x52\x86\x1e\xcf\x2f\xde\x9d\x7e\xfd\x78\x7b\x90\x91\x60\xf7\x9e\x4c\x69\xf2\x19\x73\xb6\x2c\x0e\xa3\x71\x2c\x14\xae\xe2\x68\x8a\xb3\xb1\xc3\x41\x53\xd8\x83\xfd\x23\x15\x72\x8c\xcb\x7e\x0a\xd2\x91\x0c\x46\x2e\xe9\x1c\x51\x49\x4d\x12\x86\x8e\xff\x6f\x36\xbd\xc7\x83\xbf\x39\xce\xdf\xa2\x47\x0f\xbe\xd8\x01\xf8\xb7\xfc\xa8\xf9\xc3\x19\xf8\xe2\x7b\xd8\xf3\x42\x67\xe0\xff\xcd\xfd\x5b\xd4\x01\x03\x00\x06\x7f\x03\xff\x71\x0c\x33\x86\x86\xd6\xcf\x16\xb4\x3e\x59\xd0\x7a\x6b\x41\xeb\xd6\x82\xd6\x9f\xad\x10\xa6\x3c\xe3\x9b\xca\x78\xaf\x32\x3e\x5b\xd0\xba\xb0\xa0\xf5\x57\x0b\x5a\x77\x56\x08\x73\x0e\x34\xb7\xa0\xb5\xb4\xa0\x95\x58\xd0\x5a\x58\xd0\x9a\x58\xd0\xc2\x16\xb4\x7e\xb3\xa0\xb5\xb1\x42\x18\x73\xa0\xff\xc2\x3c\xfb\x1d\xb9\xe7\x18\x71\x66\x41\xeb\x74\x91\x89\xdf\x1b\x0b\x5a\xff\xb5\x4c\xc4\xbf\x31\x4f\x5f\x4e\x2d\x68\xdd\x10\x8e\xea\x7a\xcc\x2c\x68\x5d\xa5\x2b\x0b\x5a\xe7\x64\x6c\x85\x55\xfb\x59\x7d\xd4\xf2\xbd\xd7\xbb\x10\x7a\x3f\xfd\xe3\xce\xc0\xfe\x8d\x0e\x67\xa6\x49\xec\x77\x7a\x29\x6b\x34\xe2\x14\xd1\xf9\x10\x19\xf6\x42\xd3\xc3\x4a\x5b\x5f\xce\x63\xdb\x6e\xaf\x0d\x15\x81\x83\x95\xe7\x0c\x21\xf5\x5c\x48\xcb\x95\x8b\xf5\x82\x8c\x19\x89\x94\x62\xbb\x95\x66\xc2\x64\xa5\x75\xbf\x64\xad\x69\xca\x5a\x56\x47\x63\xeb\x58\xbe\xf4\x76\xeb\x5a\x66\xb8\x43\x4f\x04\x3b\xdf\xf7\x0a\x48\x86\x34\x34\x94\xd3\x89\xa1\x1f\x4f\x6c\x7b\xbf\xb5\x89\x6a\x6d\xa1\xe0\x70\x12\xf0\x7d\xed\x15\x32\xcd\x7e\x83\x13\xd9\xe0\x44\x34\xf8\x1f\xf4\xf3\x56\x75\x2d\xab\xe7\x80\x99\xca\x78\x11\xf1\xbd\xdd\x83\x22\x0a\x7c\xa6\xcc\xab\x02\x96\x6d\x8a\xbb\xc2\x14\xe6\x88\x0d\x6f\x36\xf3\xfb\x34\x76\xa9\xd2\xad\x84\x0e\x08\xda\x0e\x45\x4e\x8a\xf4\x85\x38\x70\xa3\x34\x21\xc2\x8a\x4a\x9a\x41\xa4\x32\x06\x18\x80\x6d\xb2\xdd\x62\x35\xc6\xc2\x30\x27\xe0\x55\x82\xa0\xbc\x49\x49\x78\x13\x32\xc4\x76\x13\x9a\xe0\x38\xde\x88\xeb\x99\x36\xb5\xed\x5c\x99\x64\x97\xbf\x1c\x50\x00\x09\xf7\x36\x72\x88\xb3\x42\xcf\x5b\x5c\x1c\x96\x8e\xf6\x95\xdf\x5f\x31\x35\x7a\x8a\x1c\x02\xca\x0b\x2f\x3a\x71\x6a\xfd\xe3\xbb\x46\x0e\xb9\x01\xc8\x04\xaa\xa0\x9c\xd4\xdb\xcd\x82\xa8\x89\xbd\x4c\x56\x38\xa6\x51\x0b\x33\x46\xe6\x0b\xd6\x62\x69\x4b\x44\xca\x59\x8e\xd9\x32\x23\xad\x24\x4d\xba\x02\xf7\x7d\x4c\x0a\xbb\x20\x4b\x88\x65\x30\xae\xaa\x67\x94\x2b\x7e\x00\x67\x28\x73\x62\x00\x97\xd5\x6c\x7d\x31\x05\x23\x94\x39\x4b\x00\xc7\x8d\x1e\xef\x84\x4f\x89\xcc\x19\x03\x38\xad\xe6\x1b\xf2\x46\x77\xce\x05\x0e\x0b\xc0\x09\xca\x9c\x29\x80\xa3\x43\x6a\xa2\x15\x4a\x9c\x11\x80\x9b\x66\x17\x20\x6b\x94\x38\x1b\x00\xe7\x4f\xfb\xe7\xbb\x47\x99\x33\x07\xf0\xe1\x79\xff\x7c\xa7\xc8\xc9\x9c\x07\x00\x05\x20\x9d\x70\x31\xb5\xcb\x70\xb6\xb0\x00\x80\xd7\x28\x73\x4e\x01\x3c\x57\x58\x30\xc3\x33\x29\x4e\x1e\xab\xfa\x2c\x00\x2f\x50\xe6\x9c\x03\xf8\x71\x1f\xe6\x1e\x67\x79\x57\xdc\x50\x59\x00\xde\xa2\xcc\xf9\x08\xe0\xcd\x01\xb0\xf1\x32\x67\xe9\xdc\x02\xf0\x33\xca\x9c\x1b\x00\xcf\x0e\x56\xd9\x9d\xa8\xf1\xe4\xdd\xfc\x84\x32\xe7\x0c\xc0\xab\x03\x58\x4d\xd0\x77\x28\x73\xae\x00\xfc\xd6\x0c\x6a\x01\xf8\x05\x65\xce\x37\x00\x2f\x25\xc0\x22\x5e\x4e\x69\x92\x1f\x1b\xde\x4e\x2d\x00\x3f\xa0\xcc\xb9\x04\xf0\xae\x06\xb3\x26\x3c\xf3\x57\x94\x39\x77\x00\xfe\x52\xcd\x14\xf1\x23\xba\xda\xd7\x1c\xfc\x2b\xca\x9c\x5f\x00\x7c\x5b\x05\xe2\xc2\xae\x50\x10\x66\xce\x5b\x00\xff\x52\xcd\x94\x82\xa4\x05\xe0\x57\x94\x39\x7f\x01\xf0\xb7\x6a\xb6\x10\x7f\xba\xb9\x92\x7f\x2c\x00\xff\x1b\x65\xce\x6f\x00\xfe\x5c\x9d\xfb\xe9\x8a\xfe\x66\x01\xf8\x77\x94\x39\x3f\x03\xf8\xe7\x7d\xc5\x93\x70\xc6\x3c\xa2\x09\x65\xa3\x91\x8e\xaa\x13\xfc\xd9\xbd\x3a\xfd\x74\x81\xb4\xfb\x3e\x0b\xfe\xd9\xfd\xe5\xe2\xcb\xcd\xe5\xf5\x15\xb2\xfa\xae\xe7\xf6\x78\x8a\x12\x7a\x46\x5f\xae\x3f\x7e\x1c\x7d\xbe\xf8\x72\x79\x7d\x8e\x3c\x23\xfd\x2f\x97\xe7\xb7\x1f\xd0\xcb\x9f\x7a\x46\xda\x87\x8b\xcb\xf7\x1f\x6e\xd1\x8b\x3e\x4f\x3c\xbd\xba\xfc\x74\x7a\x7b\x79\x7d\x35\xba\xb9\xbd\xf8\x7c\x83\xbc\x7e\x25\xf1\xfc\xeb\x17\xf1\x03\xf5\x7b\x1c\xfa\xb3\x8c\x67\x99\xa3\xa8\x70\x71\x35\xd2\x69\xf0\xcf\x2e\x8e\x22\x12\x95\x3e\x75\xcf\x6e\x6e\x38\xad\xfd\xb3\xe9\x79\x57\xf5\xb2\xc9\x5b\xb9\x18\x06\x9a\x8f\x54\xac\xa3\x11\x3f\xb0\x8c\x0a\xdb\xa7\x8c\xe0\x68\xf3\x2e\x91\xce\x22\xf5\x45\xaa\xc1\xab\xf8\x01\x18\x0b\x13\x3f\x8c\xfe\xec\x8e\xd3\xc5\xe6\x6b\x4e\xb2\x53\xe1\x70\xd2\xc1\x00\xee\x5b\x18\xda\xb6\xc3\xca\xbb\xff\x29\xd1\xcf\x26\xde\x6e\x2e\x23\x87\x01\x00\xdb\x6c\x9f\xad\x9d\xa5\x89\xa4\x75\x34\x99\xb6\xd4\x04\xb7\x1e\x28\x9b\xb5\xb0\x20\x7d\x64\x2d\x74\x87\xac\x15\xd1\x55\xdb\x52\xbe\xff\xe6\x98\x26\x11\x5d\x15\xc6\x59\x13\x1a\x93\xc2\x6e\x2b\x4b\xe3\xf8\x33\xc9\x68\x1a\x8d\x10\x36\xbe\xb6\xdb\xc6\xe9\x2d\xcc\xbb\x56\x34\x5d\xe6\xbf\x90\x8c\xd1\x31\x8e\x7f\x1d\x21\x6d\xb4\x55\xec\x3c\x8e\xae\xf8\xd8\x6e\xb5\x42\xc0\x8c\xc3\x89\x8d\x2f\x69\x5e\xb2\xe7\x7a\x58\x3a\xe7\x74\x69\x92\x90\xec\xc3\xed\xa7\x8f\xc8\xb2\xa0\x25\x8d\x59\xa4\xf5\x83\x08\xe1\x61\xdb\x58\xff\x70\x2a\x19\x48\xa5\x77\xac\xc5\xda\x02\xd5\x92\x32\xe4\x07\x2f\xaa\x7f\x39\xd5\x2c\xa4\x73\x9e\x2a\xdd\x93\x86\x35\xe2\x6d\xcc\x87\x03\x78\xea\x8b\x5f\xe0\x6b\xec\x46\xad\xf5\xb5\x9d\x24\xdb\xa1\xec\xe5\x64\x6c\xa1\xa2\x6e\x71\x90\xe1\xec\xff\x41\xfe\x50\xeb\x56\x05\x10\xaa\x35\x91\xc3\xcd\xd4\xaf\x9e\x30\x24\x29\x5d\xdd\x0b\xb9\x62\x22\x0f\x90\x8b\x99\x88\x63\x5a\xfa\x19\x94\x1e\x54\xd1\xe3\x0e\xae\x2b\x4e\x15\x8d\x4c\xa8\x0d\xfa\xf6\x61\xcf\x09\x59\x38\x46\x1e\xbc\xd7\xfb\x58\x15\xb9\xe7\x47\x3c\x9c\x6d\x2e\x23\xc3\x2b\x6b\x4e\x98\xf0\x68\xf9\x76\x73\x85\xe7\xa4\x74\x04\x1b\x49\xbf\xcd\xca\x4f\xaa\x86\xce\xc8\x94\x6f\x81\x8c\x44\x2a\xe6\x4e\x91\x43\x4c\xdd\xba\xe1\x50\xd6\x70\x76\x2f\x9e\x77\x2c\x74\xa3\x44\x53\x55\xcb\xd4\x8d\x17\x67\xea\x13\x3c\x26\x23\x1d\xe2\x44\xd1\xe2\x91\x19\x87\x87\xa2\x3f\xbb\x9f\x3f\x7e\x7d\x7f\x79\x75\xe3\x8e\xd3\x64\x8c\x25\x26\xd3\x6d\xbf\x2a\xc6\x27\x53\x06\x01\xa7\xfb\xc1\xbf\x61\x8a\xe8\x30\x09\x03\x2d\x2c\xb6\x11\x4a\x5d\x11\x2c\x0e\x33\x32\x48\x7d\xde\x56\xed\x43\xe7\x51\x22\xf4\x33\x28\x7a\x99\xfb\x8f\x3b\xc3\x0b\x27\x94\xb9\xd7\x86\x77\xd2\x18\x65\x05\x2e\xd9\xcf\xa2\xf9\x33\x11\x7f\x02\xc4\x75\xbb\xb8\x19\x17\x39\xd5\x30\xe6\xc3\x59\x88\xe2\xe1\x2c\x54\x24\x46\x0f\x83\x14\x48\x73\xb0\x2b\x5f\x41\x8b\x10\xe7\x15\x98\x7a\x4f\x97\xa8\x92\xcf\xfb\x5c\x69\xcb\x52\xd5\x09\x84\xa3\x5b\xf9\x7b\xbf\x71\x12\x57\x84\x96\x65\x0b\xe1\x18\x0d\x97\x0a\x2f\x8c\xc2\x40\x60\x6b\x5a\x0b\x83\xa6\xc4\xe1\x2c\x94\xdd\x19\x2b\x67\xa7\xfb\xf9\x68\x38\x0e\x77\x3b\x63\x81\x9c\x67\x78\xba\xbf\x48\xa4\xa5\xac\x03\x76\x15\x66\x54\x0d\x0d\xb5\xef\x50\xb1\xed\xb0\x43\xed\x05\xa5\x09\x9e\x32\xf5\x54\xbc\x40\x34\xb4\x12\xb0\xd0\x83\x6a\x35\x7f\x96\x6f\x34\x49\xc4\xd3\xaa\x0f\x36\xfd\x9a\x4e\x5a\xdf\xa3\x73\x0c\xca\x89\xe2\x99\xa0\xc9\x2d\x7e\x7c\x6d\x55\x0b\xb7\xf8\xc9\x39\x4d\xba\x65\x91\x96\xc8\x76\xad\xd2\x7d\x5f\x51\x37\x6a\xf7\x76\x70\x51\xbe\x27\xbd\x61\xe9\x62\x21\x9b\x54\x7b\x69\x6a\xb6\x09\xbb\xfb\x45\x38\xa6\x5d\x50\x50\x21\xac\xe3\x48\x28\x1f\xb9\xf5\xb9\x92\x0e\x23\x29\x30\x5e\xe7\x97\x16\x39\xc9\x1b\xbe\x4a\xb5\xfb\xb4\x4c\x6c\x3b\x7e\x68\x96\x1b\x70\xe8\x49\x97\x71\xfa\x39\x30\x06\xb0\xa9\x41\x40\x2a\xc9\xf5\xe9\x68\xaf\xeb\xd5\xc9\x17\xc1\xe8\xf8\xba\xbc\x54\x67\x94\x51\xb3\xe9\xad\xb4\x1f\x6d\xda\x3e\xa4\xe6\xf8\xbf\xd8\x3e\x24\x94\x71\xb0\x65\x82\xf9\x38\xa2\xb8\x60\xd0\x99\x15\xdb\xcf\x4a\xfb\x64\xd4\x54\x12\x35\x38\xc1\x6d\xb7\xeb\x8c\x3c\x90\x6e\x4c\x4d\xef\xcf\x15\x17\x9b\x22\xb4\xb5\x3b\xc7\x0b\x67\xff\x46\xa6\xdd\x66\x46\x08\xeb\x1d\x70\x85\x33\xe8\xeb\x89\xd3\xee\x01\x3e\x2d\xa5\x05\x2a\xdb\x6e\xcb\xa0\x63\x45\x3d\xdb\xad\x34\x80\xdd\x54\xaa\xc7\xc1\x9e\xe8\x24\x9c\xbb\x2e\x30\x3f\xe6\x30\x92\xb5\x68\xde\x1a\x0a\x83\xbd\x50\xc6\x24\xbb\x27\x62\x14\xa0\x08\x4a\x96\x66\xad\x1f\x36\x3f\xb8\x56\x6d\xc7\xb2\x54\x5a\x6f\x1c\xf0\x2d\xad\xe5\x2c\xa5\xcd\xb1\x86\x4a\x76\x6e\x59\x1d\xa9\x53\xa2\xd1\x80\xff\xe3\x33\xd0\xb1\x42\xab\x8a\x9b\x73\xa1\x3a\x11\xd0\x7d\x1c\xd4\xf9\x54\x35\x28\x0b\x87\xf5\x9b\x40\x84\x37\xc5\xda\xaa\x93\x4c\xa0\xb9\xa2\x02\x87\x7c\xfb\xb8\x57\xf6\x4a\xba\x6f\x7b\x16\x45\xc9\xe8\x1a\xd1\xc8\x41\xfc\x67\xb1\xbc\x4d\xd3\x98\xe0\xe4\x9f\x45\x53\x8d\x34\xfe\x8f\xe3\xa9\xc4\x02\x7a\x66\x78\x1b\x22\xbb\xef\xe3\x54\xec\xfb\x17\x4a\x1e\x14\xd0\xe8\x80\x47\xea\xa0\xae\x88\x29\xec\x2b\x88\x29\x98\x89\x6d\x58\xf8\xb5\xb5\x6d\x3a\x64\xa1\xfc\x77\xff\xbd\x96\xf0\x71\x3b\xc4\xa1\xaf\xdc\x13\xb3\x9a\x7b\x62\xa1\xbf\x2c\x0d\x59\xcd\x6a\x86\x38\x1c\xd4\x13\x7c\x87\xaa\xa0\xf6\xaa\x19\xf0\x7b\xeb\x17\xfb\x9a\xd9\xb6\x8e\x8f\xdf\x6b\x02\x2e\x33\x65\x91\x7e\xb5\x8c\xf7\x54\x19\x4f\x94\x51\xfb\xcf\xc1\x40\x04\xd1\x32\xe7\xa1\x3c\x12\x1d\x72\x5d\x6b\x1c\xa1\xaa\x45\xcb\x60\x75\x87\x8a\x1a\x44\x74\x50\x4f\xf0\x4b\x87\xd3\x17\x6b\x96\x91\xb9\xbc\x47\xdf\xab\x40\x67\x1e\xf6\x78\x5f\xd9\xb7\x8e\xb5\x16\x4d\xfa\x8c\x23\x0b\x1c\x2b\xd6\x21\xce\xd0\x23\x11\x8d\xd2\x7d\xd0\xe6\x88\xf2\x92\x77\x39\xff\x92\x3e\xe4\x8e\x16\x39\x86\xbd\x2e\x83\x5e\x87\x15\xd1\xf4\xc4\x08\xe0\x87\x73\xcc\xb0\x98\x01\xa1\x6c\xae\xa6\x56\xbe\x0a\xb6\x1b\x2a\x85\x34\x2b\xac\x3e\xbb\x24\x20\x5d\x44\x8f\x18\xc4\x1d\xfe\x47\xb1\xa7\x21\x81\x38\xac\x76\x7c\xf3\x3d\x1d\xc7\x6c\x46\x32\x1d\xdd\x45\x5d\x79\xf3\xb9\x22\x91\x72\x23\x2d\x2d\xdd\x21\x41\xcc\x25\x0a\x17\x34\x59\x96\x94\x6d\x55\x50\xbb\xbb\x62\x32\xf3\x91\x53\x15\x36\x24\x70\x65\x97\x8b\xa0\x01\x58\x04\xc7\x6b\xe2\x7a\xad\xa2\x46\xc5\xf6\x1a\xba\x57\x5b\x38\xcc\x78\x7f\x89\xa4\x4d\x35\x43\xfc\x70\x76\xd2\xdb\x6e\xd9\x1b\x93\xd3\x2a\x8b\xcd\xfa\x63\x08\x62\xc0\x70\x81\x48\x8f\xee\x81\xc0\x7e\x8d\xe9\x5e\xd8\x34\x13\x72\x58\x9e\xf0\xbe\x54\x48\x31\x66\x03\x85\x08\xa3\x1c\x2b\x69\x27\xd2\x3a\xb8\x23\x01\xc6\x9b\xc8\x1a\x13\x3e\x4f\xe7\x22\x30\x53\xdd\x75\xa8\x1e\x5c\xb9\xde\x04\x9c\x0a\x5d\xa5\xcf\x97\x22\x4d\x45\x75\xe2\x05\xc2\x06\xd4\xb2\x48\x7d\xdc\x6b\x6f\x5f\xf6\x06\xb5\xb2\x85\xf4\x22\xaa\x04\xab\x2c\xae\x78\xd6\x1d\x87\x75\xf1\xb0\x17\x82\x63\x07\x0f\xbd\x50\xfe\x3e\x22\xee\x43\x43\x6b\xee\xea\xad\x29\x6f\x14\x54\x8f\xaa\xb1\xaa\x78\xbe\x21\x33\xe1\xbd\xf6\xd2\x86\xf6\x96\xce\xce\x37\x1d\x7c\x44\xdd\xd9\x5e\x43\x30\xc3\xdf\x37\xe4\x98\xe1\xfd\x31\xc7\x0c\x3f\x39\xe8\x45\xa1\x3f\x7e\xd4\x8b\x30\x57\xcd\x6c\xb7\x16\xb3\x4f\x53\x22\x11\xf1\x70\x0d\x8e\x89\xfb\x50\x78\xf0\xd9\xb3\x3d\x74\xb0\xa0\x75\x22\xc2\x65\x61\x1d\xcd\xd3\x3a\x46\xf1\x23\x63\x8a\x9b\xfa\xdd\x38\xbf\x4f\xf5\x1c\x37\xf5\xbc\x0c\xdb\x59\xee\x9f\xc0\xa4\x16\x32\x40\x42\x0f\xec\x69\x3c\x0e\x0c\x06\x01\xfa\x7e\x8e\xaf\x55\x77\x03\x8e\xb1\x3b\x7b\x62\x28\xa8\x18\x05\x3e\x1e\xa5\x87\x34\x2a\x86\x02\xf3\x35\xe5\xce\xba\x4c\xa0\x38\x12\x90\x5d\xda\x34\x1c\x95\x85\xfc\xbd\x23\x52\xef\xa0\x1c\xa3\x83\x03\xf2\xbb\xbb\xbf\xd6\x61\x43\x79\x8b\x61\x66\x7c\x7b\x21\x08\x30\x72\xb2\xee\xba\x08\xa4\x09\x8e\x9d\xac\x9b\x28\xff\x02\x18\xc9\xbe\x32\x70\x6c\x74\xba\x78\x0d\x77\xa0\xf7\xbf\x77\x1f\x1c\x5a\xf4\xed\x82\x81\xff\xbe\x95\xaf\x3b\x23\x16\x2c\x4c\x8c\x6f\xde\x5f\x82\x9c\xb2\xb7\x5d\x0a\x8e\x85\xb9\xae\xec\x2f\x41\x4d\x64\xad\x7c\x9d\x5d\xe9\x6f\xb2\x9c\x9f\xa5\xf1\x72\x9e\x1c\x8c\x07\xa0\xc5\x85\x41\x5d\xc0\xd8\x4b\x50\xdc\xc4\x37\x4e\x2f\x45\x84\x1f\x9d\xd7\xdb\xab\x9e\x0b\x35\xbf\xaf\xee\x03\xb8\xa6\x84\x49\x3f\x56\xcd\x32\xbf\xe4\xce\x4d\x88\x06\xc2\x01\x02\xe1\x00\xe4\x4d\x4d\x60\x0a\x2b\x30\xf5\xcc\x21\xa9\xd1\xd0\xba\x76\xf2\xb9\x03\xaa\x94\x8f\x54\xd0\xf8\xa7\x1f\x20\xc2\x0a\xac\xd2\x4e\x33\xb2\x66\xa7\x31\x9d\x26\xc8\x8a\xc9\x84\x59\x8d\x40\x8b\x34\xa7\xe2\x4c\x65\x65\x24\xc6\x8c\xae\x88\x05\x59\xe5\x2d\x62\xa5\x94\x56\xb4\x8a\x6b\xd7\x11\x5a\x57\xde\x26\x38\xd5\xdc\xbd\x1a\xf0\x7d\x9e\xc6\x4b\x46\x2c\x1d\xc8\x2b\x8a\x48\xa2\xe2\x77\x49\x3c\x9f\xe3\x94\xfd\x4c\x99\x44\xa7\x84\x41\x85\xad\x8a\x7b\xcc\xd6\xbc\x76\xc3\x8a\xbb\x01\x56\x55\x70\x00\x56\xe5\x02\xad\x91\xce\xe9\x6f\x7a\x54\xf3\x42\x29\x58\x8c\xd6\xde\x88\x54\x8b\x1f\x86\xab\x36\x69\x9e\x2e\x73\xa9\x4c\x54\x55\x55\xba\xff\x69\x2f\x57\xb7\x43\x5e\x83\x4b\xd5\xf7\xac\xaa\xfa\x36\x58\x6d\x50\xd6\xf1\x29\x5d\x11\x1d\xfa\xb4\x42\xa8\x48\x99\x2f\x83\xc7\x94\x65\x4a\x6b\xc5\xfd\x43\x2c\x46\xcc\x65\x38\x9b\x12\xb6\xdd\x32\x77\x92\xa5\x73\xd5\x44\x4e\xc5\x5d\xb1\x76\x48\x74\x5b\x00\xb0\x54\xfb\x17\x5b\xef\xbf\x14\x71\x30\x24\xe5\x8a\x52\xa6\x22\x75\x18\x5a\x85\x21\x45\x13\x8d\x56\xe3\x28\x3a\x4d\xa2\xdb\x0c\x8f\xbf\x89\x51\xd3\x6f\xfc\x2d\x01\x2b\x42\xf8\x37\xf6\x0e\x1c\x28\x7e\x60\x8a\x14\xbe\x79\xba\x22\x26\x42\x73\x88\x2b\xab\x48\x27\x6a\x73\xdb\x6a\x6a\x6d\x36\x64\xa6\xf3\x6c\x97\x24\x9c\xd5\x54\x0f\xa8\x71\xe9\xda\x5a\xde\x0b\x26\x5f\x23\x01\xf2\x16\xcb\xb8\xae\x92\x37\x5f\x4d\xa0\xea\xaa\xcc\xbc\xb4\x12\xc0\xc1\x93\x47\xd9\x45\xf1\x48\x49\x46\x68\xde\x6e\xd7\x8d\x4f\x98\x9c\xfa\x0e\x57\xf7\x16\x9a\x9e\xec\x35\xf4\x88\x54\x09\x4e\x43\xf3\xea\x20\xcf\x77\xb9\x0a\x79\xa8\xc7\xd0\x93\x6f\x83\xeb\x4d\x96\x81\xb7\x1d\xa2\x35\xdd\xf8\xb9\xee\x1a\x44\x4a\x75\x57\xa5\x34\x74\x17\x57\xe8\x5a\x63\x77\x6b\x20\xcf\x77\xb7\x0a\xf9\x64\x77\x71\x11\x17\xaa\x68\xb2\xea\x2e\x86\xb8\xb6\x06\x85\xb9\x4f\xba\xd9\x5b\x7b\xe6\x50\x65\x24\x67\x69\x46\x9c\x7d\x72\x5d\x66\xed\x59\xd8\x57\x15\xec\x5d\x2f\x60\x6f\x50\x2f\x60\xfa\x5e\x80\xd4\xc0\x16\xe9\xc2\x01\x01\x51\x09\xba\x59\x9c\x9e\x54\x53\x1c\x15\x3b\x5a\xbe\x55\x14\xfb\xaf\xb8\x9c\x74\x00\x5c\x9b\x8f\x18\xbf\x9f\xcc\x54\x8b\xfd\x33\xe4\xa5\xb9\x01\x4f\x11\x85\xa6\x44\xe9\x18\xc6\xb0\x7d\x23\x52\x09\x10\x08\x13\x48\xc1\xb5\x38\x1d\xce\x1d\x10\x00\xe6\x10\x77\x42\xb3\x9c\x89\x64\x00\x49\xc5\x8f\x40\x25\x6f\xe7\x54\x24\x17\xbd\xf2\x9f\x70\x53\xd2\xe0\x90\x89\x84\xc2\xc1\x15\x91\x3e\xa7\xc0\x2e\xc0\x8e\xc9\xfa\x00\x54\xdf\xfa\x50\xa5\x13\xea\x17\x76\x0d\x82\x44\x83\x4a\xb6\x2e\xb9\x94\x27\xff\xc3\x52\x8b\xce\x63\xe9\xa2\x30\x09\x60\xe9\xa2\x48\xe7\x52\x56\x91\xc1\x3f\xe0\xff\x6a\xd8\x7b\xb0\x71\x97\x15\x48\x0e\xec\x55\xf2\xdc\x06\x25\x4d\xc3\xb0\x2f\x50\x1c\x92\xa6\xd5\xbe\xac\x22\xc9\x89\x34\x4c\xcf\x0f\xc9\xaa\x53\xc2\xa4\x11\xb7\x23\x15\x74\xe5\xa6\x94\x3a\x39\x59\x56\xdf\xed\xcb\xef\x4f\x78\x51\x09\xb5\x89\x0f\xb1\x0d\x01\x7e\x83\xd9\x32\x13\x37\x78\x16\xd8\x6e\x3d\x7d\x66\x3c\x00\x2d\x64\x7c\x0e\xe8\xbe\xd2\x1e\x57\x55\xa4\x9e\x3e\x3f\x17\xea\xa2\x95\x32\x32\xd6\xaf\xc8\x2a\x9d\x74\x38\x3a\x48\x0f\x11\x71\x75\xe8\x44\xba\x9a\x91\x3e\x0c\x10\x1b\xe6\x1d\x2f\x84\xb3\x43\x67\x37\x1d\x87\x5f\xe0\xb7\x60\x2c\x0f\x7b\x33\x8e\x26\x03\x33\x94\x0d\xf3\xff\xd4\x4e\x2d\xc3\xd2\x45\xee\x12\xe5\xff\xd9\x1f\x24\x1d\x27\xef\x78\xe0\xb8\xef\x97\xcd\x57\x29\x00\x46\xc8\x3b\x5a\x1e\x3b\x5e\x87\x80\x60\x86\xd6\xc5\xcb\x69\x27\x92\xbe\x95\xcc\x61\x97\x2a\xbb\x19\xa8\x8f\xfd\x30\x0e\xd1\x6c\xb7\x77\x3c\x92\x13\x7d\x70\x79\x48\x9c\xfb\xd7\xa3\x52\x59\x2f\x63\xcf\x35\x04\xc1\x2b\xaf\x48\xbb\x1e\xc4\xfb\x8b\x46\x9a\x1c\x63\xd3\xe4\x98\x4e\x1c\x3c\xa4\xa1\x88\xae\x48\x10\x0d\xcc\x1b\xdb\xae\x87\x10\x91\xc7\xad\xc7\x04\xcf\x89\xcf\xe0\x58\x9c\x50\x7d\x02\xc5\xe4\xc5\x2a\xaa\xa7\x39\x93\x43\xd2\xf5\x42\x28\x7a\xe0\xd7\xc7\x82\x85\xe2\x99\x8d\xef\x75\xf6\xa6\xb2\x12\xd9\x8f\xcb\x9c\x4d\x1b\xec\x4b\x1a\xc7\xcf\x9d\xe8\xf4\x83\x30\xa1\xd5\xce\x46\x01\x29\xe4\x42\x99\x80\xc8\xc1\xc3\x1d\x4d\x16\xc2\xf8\x95\xb8\xbc\x4e\x64\x71\x01\xa2\xa4\x05\x11\xcd\x17\x31\xde\x20\x2b\x49\x13\x41\x9e\xc6\x31\xce\x45\x00\x3f\x64\x69\xbb\x42\x59\x47\x5d\x9a\x33\x4f\x29\x04\x80\xa0\xba\x0f\x2b\x97\x76\x8e\x55\xbe\xc8\xb0\xc0\xc0\xba\x8f\xd3\xf1\x37\xcb\x57\x75\x96\xdb\xf1\x34\x23\xd8\x01\x30\x41\x8f\x2c\x5d\xf8\xd4\xdd\x74\xa8\x3b\xeb\xf6\x5f\x49\xea\xc4\xa9\xa1\x4f\xdd\x75\xc7\x93\xdf\xaa\xe9\x3e\xde\x05\xc4\xe5\x1c\x0a\x59\x7d\xde\x03\x71\xc9\x5c\x0e\x97\xba\xb0\x29\xed\x98\x54\xd7\x61\xc2\xc7\x24\x4d\xc6\xb3\x43\xf7\x36\x2e\x8e\xfe\x7b\x99\x33\xde\x6e\x47\xa1\x6d\x9e\xc1\xaa\x31\xc8\xfe\x0c\x3e\xca\x4b\x76\x9a\x4c\xfd\xb6\x07\x69\xfe\x19\x27\x49\xf1\xd1\x3f\xff\x8c\x13\x61\xbe\x91\xe1\xe9\x0d\xc3\x19\xfb\x55\x84\x54\x2d\xbf\xef\xca\xef\x8b\x24\xfa\xb5\xf2\x65\xe4\x9d\xd3\x8c\xc8\xd7\x47\x22\x69\xf1\xff\x91\xf7\xee\xdf\x8d\xdb\x48\xc2\xe8\xef\xdf\x5f\x21\x73\xef\xb2\x89\x26\x44\x8b\xea\x24\x33\x21\x0d\xfb\x38\xfd\x48\xb2\xd3\x8f\xf4\x23\x99\x4e\xb4\xba\x3a\xb0\x08\x49\xdc\x50\xa4\x86\xa4\x5e\xb1\xf5\xbf\xdf\x83\x02\x40\x02\x7c\xd8\xee\xcc\xce\xfd\xbe\xbd\xf7\xe4\xa4\x2d\x82\x00\x08\x14\x0a\x85\xaa\x42\x3d\x72\xb6\xab\xab\xcb\xa7\x5f\xeb\xa7\x17\xed\x26\xc2\xb2\xe3\x2d\x3b\x94\x2f\x6e\x12\xf0\x14\x83\x21\x0a\x3b\xc9\xd7\x6c\x51\xae\xb3\x42\x38\x99\x42\xf5\xc3\xcf\x69\x5c\x16\x3f\xb1\x1c\xf8\x51\x39\x10\x8e\xd0\x1c\xa0\xf2\x43\x87\x60\x84\x37\xc7\x60\x84\xc1\xe2\x8b\x45\xbc\x75\x21\xde\xc9\x12\xe9\x4e\x25\x8c\x02\x69\xbe\x01\x73\xa7\x77\x4a\x3e\x55\x5f\x8f\xff\x10\x07\xd1\x8b\x6c\x9f\x06\x6d\x8f\x6a\xd3\x52\xe5\xaa\x1d\xa8\x3c\x70\x5a\xb1\xc8\x5b\xa1\xcb\xd5\x55\xcf\x41\x05\x90\x70\x58\x25\x7a\x87\xd4\xdb\x1c\x48\xec\x1d\x30\xf5\x36\x47\x12\x7b\x47\x19\x39\x42\xac\x18\x39\xd4\x41\x25\xc0\xeb\x43\x7f\xfb\x6b\xfd\xf6\xd7\xea\x6d\x1b\xd6\x7c\x4c\x94\x0b\xc8\x1b\x6f\x9e\xed\x18\x78\x00\x4b\xce\x32\xe8\x24\x0a\x10\x9b\xb5\xf4\x2a\xe4\xe2\x42\x73\x85\x5c\x10\xea\xb3\x7e\x27\x26\xac\x0d\x58\xc0\x5b\x1f\xa4\x74\xde\xd4\xba\xb8\xd5\x1e\xea\x0e\x96\x71\xba\xe4\xcb\x58\x75\xa1\x96\x9c\x18\xee\xac\xe2\x2e\x88\xb6\x2f\x82\x22\x96\xb0\x92\x0d\xe4\x9b\x09\x9b\x56\xbd\xc2\xd2\xe0\xee\xf7\xf5\xd5\xd4\xa9\x14\x40\xda\xa6\x0a\x4c\x27\xcc\x5a\xe7\x72\xd3\x0d\xd0\x42\xf2\xec\xa8\xad\xf7\x7a\x82\x98\xc6\x2a\x77\xed\xa3\x65\xfb\xb8\x8e\x08\x58\x2b\x04\x75\x37\x24\xe6\xc4\x98\x62\x4e\xff\x1d\x36\x89\xa7\x48\x46\x31\xf3\xf6\x71\x92\xbc\x10\x4b\x2c\x45\xbb\x37\xc7\x82\x25\x0b\xa5\x94\xd6\xbb\x2d\x35\x31\x23\xec\x1e\x9f\x3a\x02\xa4\x34\xb0\xdd\x58\x38\x6d\x52\xac\x28\xa7\x7b\x8e\x13\x1f\xd8\xbc\x6c\x9a\x47\x2b\x27\x36\x5c\x54\x5c\x4a\x43\xde\x0a\x73\x42\x0e\x5a\xb4\x84\xab\xc4\x9b\x27\x8c\xe6\x10\x2c\xbe\x0a\xfa\xc8\x70\x66\xea\x9c\x84\x15\x54\x26\x09\xbc\x77\xc4\x5a\xea\xc5\xfb\xab\xae\x50\x00\x9f\x54\x11\x19\x6c\x5b\xff\xe2\x3d\x0d\x0f\xb8\x1a\x4e\x8c\x8b\x7b\xbf\xb1\xaf\x87\x13\x0f\x0b\x84\x70\xd9\x98\x24\xb5\x6d\x66\xdb\x4e\xa2\xf9\xf2\x59\xf9\xf2\x86\x3a\xfe\xf8\xaf\x58\xfd\x3f\xf2\x9e\x3d\x43\x16\x16\x95\x9a\xf0\xa0\x8f\x85\x07\x1d\xb2\x07\xe0\x81\x82\xd2\x04\x48\x6a\xdb\xf1\x9f\x18\xdd\x63\x61\x97\x3e\x16\x76\xe9\x30\x46\x4d\x35\x12\x2c\x55\x07\xba\x29\x49\x7e\x9b\xe7\x2c\x2d\x55\x85\xeb\x7c\x59\xcc\xb4\xc0\xa3\xba\xa0\x5f\x2f\xfa\x08\x8f\x74\xc3\x68\xc3\xfc\xb9\xa9\x41\xc8\x78\xd7\x9f\x9b\xe6\x56\xf7\x7f\x3b\x34\x6e\x5d\xcd\x8b\xce\xb8\xa3\x98\x49\x9d\x8b\xfc\x18\x9c\x70\x33\x07\x78\xe9\xae\xc1\x88\xf7\xbd\x17\xbd\xea\x13\xfa\x3d\x0f\x4e\xc9\xa4\xc4\x6c\xaa\x89\x1f\xa6\x35\x93\x63\xe9\xae\xaa\x56\x35\x20\xe1\xdb\xce\x22\xfe\x61\x70\x3b\x05\xd8\x1a\x02\x3c\xe7\x77\x6c\x3b\x17\x36\x8f\x14\x03\x1d\xd0\xef\xfa\x45\xe8\xd1\x8e\x89\xfc\xda\x3f\x87\xf0\x01\x00\xd7\xf6\xd3\x50\xd1\xf8\x1a\x9f\xeb\x54\x66\x4f\x12\x54\x4e\x3f\x3f\x72\x65\x0b\x99\xe9\x0b\x51\x5d\x89\xe7\xe0\xfb\xd5\x7a\xc1\x70\x8e\xc2\x54\x08\x33\x93\x04\x67\x53\x04\xa9\x51\x57\xff\x0c\x34\x6b\x48\x72\xb8\x9a\x76\xb5\x2b\x75\x4a\x53\x73\x19\x19\x29\x9c\x12\x8f\x39\x1a\x81\xe1\x45\x4a\xd8\xc4\x9f\x86\x2b\x05\x7c\xde\x53\x0b\xf8\x02\xfa\x7c\x44\x75\xa4\x02\xf9\xb5\xce\x9b\x28\xc7\x1f\xd6\xe1\x74\xbc\xaf\xf1\x10\xae\x2b\x9b\x85\xac\x43\xe1\xcb\x60\xad\xee\x17\x40\x94\xb9\xa8\x63\x1d\xaa\x13\x55\x2b\x3c\x5a\x30\x39\x69\xab\x29\xd0\x80\x6f\x5c\xe1\xbb\x2d\xf2\xca\x54\xf9\x1d\x6a\x3c\xaf\xcd\x9e\x70\x4e\x0a\x27\xe5\x30\xca\x48\xce\x61\x94\x90\x7c\x52\xcb\xc9\x6d\xc9\x82\x6a\x8b\xc2\xc5\xf0\xed\x63\x17\x55\x88\xd3\x3d\x36\x5a\x1a\x11\x12\xf8\xb7\xc8\xf2\x97\x74\xbe\x32\x2c\x7c\x74\x7b\x56\xdb\x96\x6c\x8b\x69\xe4\x2a\x1d\x18\x20\x24\x02\xdd\xac\x66\x0e\x82\xb4\xe7\xce\xd6\xb6\xb7\x5a\x8c\xbc\x0c\xcb\x8f\x99\x6b\x2f\x33\x16\x88\xc1\xcc\xc5\x9f\x8d\xf8\xb3\x14\x3b\x89\x41\x02\x80\x36\xc1\x98\x93\x49\x86\x93\x29\xc2\xd4\xb6\x9d\x4d\xd7\x36\x5b\x6a\x85\x35\xf8\xd5\x80\x4d\x5c\x8f\xf0\x1c\x6f\xf0\x52\xc7\xf2\xb2\x03\x5a\xff\x24\xa8\x34\x98\x08\x80\xb4\xc9\x50\x93\x0e\xe9\xa3\xec\xe0\x65\x2a\xff\x0a\x5c\x08\x24\x4e\x1e\x89\x45\x57\x2d\x87\xb5\xc0\xd7\xa2\x4e\xd6\x5e\xcc\x65\x23\x38\x7e\x4e\xfc\x30\xbf\x20\x09\x10\xaa\x8c\xf4\xec\x5b\x27\xc7\x09\xc2\xab\x49\x3e\xf4\xa7\x64\x52\x4e\x46\xd3\xa7\x8e\x3f\xcc\x90\x9b\x3d\x05\xba\x50\x4e\x7c\xbd\xc4\x9f\xea\x9f\xa4\xd5\x27\xe3\xf6\x27\x6f\xef\xff\xa6\x16\xc5\x72\x32\xc5\x73\x32\x0a\xe7\x1d\x44\x76\xce\x99\x74\x49\x2d\xe9\x64\x3e\xd5\xc7\x17\x8b\x67\x0c\xe5\x7e\xa3\xdc\x9f\x4e\x51\xb8\x15\xd3\x8a\x4e\x87\x56\xa8\x38\xa7\x61\xed\xb0\x55\x06\x6c\xa6\xcc\xd0\x61\x3c\x26\x0f\x97\xad\xb8\x13\x0f\x8b\x5a\x36\xa8\x51\x88\x4c\x2a\x3b\x9d\xe9\x69\x55\xe7\xe2\x36\x37\xf6\x6a\x52\x4e\x11\x36\xf7\xe4\x09\x27\x9d\xde\x88\xe7\x09\xe7\x9f\x9b\xfa\x2a\xce\xf9\xf4\xe9\xb8\x0c\x6b\x1d\xb3\x25\xc8\xa3\x9f\x3a\x6d\xda\x84\x5b\xa2\x97\x41\x22\xa4\xcf\xb6\xad\x7e\xaa\xd8\x8f\x93\xea\x1d\xae\x5e\x29\xb3\xcc\x5a\x58\xed\x91\x4e\x94\x5a\x7a\x72\x10\xb1\x10\x45\xee\xa2\x03\x16\x8f\xbf\x8a\xc7\x63\xc3\xce\x80\xf7\xf9\x3c\xc9\x0a\x56\x94\x1f\xb2\x7d\x8f\x3a\xce\x3f\x1f\x61\x4a\x86\x95\x42\x55\x71\x88\x10\xd0\xa4\xe8\xf2\x77\xaa\x33\xc3\xc4\x93\x74\xca\x49\xbc\x0a\x0f\x2f\x33\xf4\x83\xa6\x54\xca\x1e\xf9\xa4\x00\xbc\x3f\x18\xa1\x18\x9d\x04\x9f\x8d\xa4\x15\xcb\xaa\x8e\xc5\x9a\x48\x66\xf1\x30\x2c\x51\xb8\xba\x10\x56\x42\x2b\x4c\x49\xe2\xc5\xd1\x01\x69\xce\xec\x7d\xf3\x14\x81\x1e\xcd\x13\xb5\xd2\x2f\xd7\x92\x11\x4e\xf0\x0a\x66\xbe\xed\x9a\x74\xad\xbd\xde\x5e\x92\x51\x38\x1c\x6e\x51\xbd\xe5\x3a\xea\x4f\xb6\x6a\x1b\x46\x0a\x4e\xae\x3b\x47\x39\x89\x26\xf3\x29\x6e\xcc\x3c\x47\x10\xd3\x35\xaf\xa7\x8a\xd3\xea\xe9\x38\x64\xd8\xa1\x24\x7e\x1a\xbb\xe9\xd3\x14\x5d\x70\xcc\x5f\x11\xca\x61\x8c\x0b\xb2\x05\x3f\x30\x0e\x09\x85\x0e\xb7\x79\xb6\x0f\x12\x2c\x02\xa9\xbf\x05\x3d\xa8\x3e\xbc\x82\x95\xbc\xb0\x98\x14\x53\x11\xa0\x26\xc8\x4e\x6d\xd0\x7d\x14\xee\x84\x0f\x82\x4e\x4c\xdd\x44\x2a\xce\x4e\x6b\x6c\x5e\x27\x1c\x43\xd7\xcd\x0d\x7e\x6f\xc9\xca\xd7\x6c\x21\x32\x95\xd1\xfc\x38\x73\x72\x08\x04\x0b\x29\xe0\xba\xc0\x9b\x03\x06\x9d\x39\xc5\x25\x49\x14\xb1\x51\xb8\x93\x74\xe3\x97\xaa\xb0\x25\x2b\x05\x5a\xe0\x65\x2e\xd5\xe3\xc1\xb6\x0b\xd7\xbf\xa8\xfa\x93\xee\x68\x09\x28\xf4\x3b\x3a\x8c\x90\x8a\xc5\x1a\x55\x2b\x57\xf5\xc5\xeb\xcf\x2f\x47\xa2\xc6\x86\x38\x65\xfd\x0a\x9d\xcf\xc3\xad\x4b\x36\x4f\x9d\xa8\x5a\xe3\x6a\x48\xe8\x74\xaa\x42\xd5\x97\x17\xfa\xd0\x54\x67\x4b\x3e\xa2\x61\xe7\x88\x96\xd5\x88\xaa\x86\xc3\x65\xdf\x88\x56\xda\xce\xaa\x46\xb4\xec\x1e\x11\x58\x93\xe7\x77\x77\xdb\x0b\x11\xb6\x82\xac\x70\x4c\x72\xfe\x46\x43\xba\xf4\x61\xa4\x8b\x15\xd2\xd1\x06\xd2\xd5\x76\x27\x3d\x2e\x12\x0d\x04\x08\xfb\x32\xd9\xe8\xa6\xb5\x4d\xca\x2c\x04\x3d\x2a\x38\x74\x30\xfb\x6c\x5f\xfb\x74\xe5\x31\xe0\x3c\xeb\x19\x64\x66\xca\x6d\xfb\x4c\x72\xc6\xe2\xfd\xeb\x8c\xef\x13\x47\xc2\xbd\x08\x8b\x5e\x45\xb9\xe6\xa0\x6b\xa1\xab\x6a\xdf\xe8\x3b\x0d\x84\xf2\xa0\xb9\xa5\xea\x57\xea\x2a\xaa\x60\x65\xcd\x77\x17\x5e\x9e\xed\x71\xe1\xd5\xb0\x17\xe6\x7c\xba\xa2\xa7\xb1\x41\x63\x14\x76\xf5\x94\x3c\x24\x3d\xb5\x62\x29\x59\x28\x5c\xd9\x76\x66\xdb\x2b\x23\x2e\xb4\x5c\xaf\xa2\x3c\xcc\x94\x03\x70\x22\x82\x8b\xcd\xea\x77\x1f\xb2\xbd\x12\xf1\x6b\x90\x73\x41\xbf\x75\x2e\x1b\x84\xa1\x75\xba\xae\x1a\x5e\xc7\x9c\x0d\xd0\x4f\xee\xc6\xbb\xc9\x68\x1a\x76\xf8\xe6\xe9\xb5\x74\xfe\x44\x47\xb3\x76\x77\xec\x9e\x4f\x31\xf8\x94\x7c\xdd\xb0\x38\x94\x5c\x69\x05\xfa\x06\xd2\x57\x1e\x02\xb0\x76\x34\x62\xaf\xd9\x8e\x25\xb6\xed\x98\x05\x64\x24\x84\x8e\xba\xae\xec\xf7\xc7\x48\xd5\xad\x0a\x94\x61\x2d\x6b\x74\xca\x25\xbd\x8b\xd1\x15\x0b\xfc\xd1\x90\xc9\xbc\xb0\x23\x3d\x89\x8a\xd3\x1c\x04\x3c\x8b\x1b\x97\x7a\xfc\x8e\x8f\x94\x92\xdd\x75\xcd\x2f\xcb\x43\x02\xe7\x3a\x6b\x05\xc1\x81\x8c\x5e\x21\xe5\x59\xaa\x4f\x0e\xa7\x2d\x11\x13\x9d\xc2\xfb\x98\x4f\x86\x6e\x53\x6d\xca\x24\x36\xbb\x74\x49\x89\x39\xa8\xb4\xa2\xab\xf6\x37\x82\xb4\x3d\x3b\xad\xc5\xb9\x3f\xe2\x12\x36\xc5\xcf\x20\xa2\xad\xb1\xac\xcd\x76\xc6\xaa\x4a\xc5\x97\xee\x31\xec\x58\x22\xf4\x87\x85\x6f\xc5\x0f\x16\x7d\xc8\xf6\xc1\xd0\x57\xeb\xa9\xf6\xc9\x95\x58\xe6\xc0\xdc\x3c\xaa\xcd\xe7\x46\x8b\x43\xbb\xfe\xa1\xae\x2d\xa3\xfc\x35\xf6\xa5\x0c\x83\x54\x59\x23\xeb\xaa\x61\xb5\xcb\x1e\xa2\x92\xe8\x96\x3e\x56\x9b\x27\x71\xc5\x1f\xf6\x5c\xd8\x37\xfa\xaf\xa3\xd4\x41\x8c\x38\x4b\xd8\x35\x8b\x38\xd2\x0f\x8d\xed\x3b\x33\x0b\x86\x25\x74\xf4\x71\xc3\x17\xc7\xc8\x1b\xa4\x23\xb0\x81\xe3\x61\xfc\x14\xd2\x76\x34\x15\xb2\x96\x9b\x7a\xb9\xc8\xc7\xea\x2d\xe5\xdf\x1b\xf8\x1b\xbb\x16\xb2\x64\x8b\x47\x28\x39\x4d\x59\x63\x96\xb3\x34\x62\x39\xc4\x56\x5c\xd1\xbc\xb2\x4d\xd5\xc8\x25\xa6\xa8\x66\x17\x56\x9d\x81\x3d\x2e\xc9\x48\xb9\x45\x8f\xd4\x09\xd2\x30\xb2\x0e\x45\x6e\x3e\x3f\x64\x17\x59\x4b\x3a\x2b\xfa\xac\x2a\x3a\xe2\x34\x5a\x38\xe3\x44\x31\x2c\x2e\x73\xdb\x76\x72\x52\x88\x23\x45\x1e\x43\xed\xb1\x85\x3a\xc6\x24\xc3\x7c\xe8\x43\xf8\xbc\xdc\x1d\x37\x00\xa3\xa6\x57\x63\xac\x1c\xa7\x62\x68\x56\xa4\xf1\x7e\x32\x9a\x56\x9c\x0f\x9f\x1e\xf5\x0a\xba\x13\xca\xba\x8a\xea\xb7\x7a\xab\x67\xbd\x6d\xf5\x27\xbc\xb2\x65\x3a\x92\x6d\xc5\x1d\x29\x36\xf1\x4b\x80\xb4\xf5\x52\x7e\x4e\xe3\x79\xef\x51\xdb\x1f\xad\xb3\x6e\xbd\x69\x38\x92\x08\xd3\x85\x89\x78\x3d\x0d\xe7\x77\x77\xce\x9c\x1c\x54\xc8\x41\x15\x88\x04\x61\xea\x25\x2a\x06\x63\xdf\xa8\xb5\xd0\x8a\xf5\xf7\xa8\x27\x8a\x05\xe6\x6f\x8c\x7d\xb0\xc1\x73\x9d\x05\xe0\xff\x88\x66\x98\xe2\x15\xae\xa0\x85\x37\x38\xc2\x5b\x29\xb9\xd1\xa6\x91\x5f\x47\x50\x9a\xa6\x31\x8a\xce\xb0\x74\xc7\x41\xaa\x57\x8c\x4c\xa6\x92\xce\x08\xe6\xed\xcc\x17\x8a\x9d\x12\x76\x44\x79\x66\xd2\x58\x10\xc1\xaa\x58\x29\xaa\x94\x94\x61\x47\x20\x8c\x3e\x99\x46\x29\xa6\x3a\x45\x16\x90\x8b\xcb\x61\xb7\xb8\x93\x02\x55\xca\x20\x59\x69\x76\x91\x57\x4a\x8e\x7c\x92\x4d\x39\xb8\xc0\xe2\x45\xec\x46\x5e\xa4\xb2\xa1\x16\x32\xc1\x70\x13\x9b\x55\x10\x8f\x2a\xf9\xba\xd8\x85\xa3\x30\xa9\xfa\x0e\x5d\x37\xa9\xbb\x4c\x00\xb9\x8b\xea\x53\x8f\xeb\x5f\xda\xdf\x28\x91\xc5\x80\x1c\x4c\xa5\x13\xa4\x43\xdf\xf0\xb4\x6c\x6d\xc2\x2b\xed\xd8\xea\xda\xd5\x87\x1d\x4d\xf4\xa3\x8d\x0c\x7d\x6c\xa4\xe4\x69\x93\x49\xf9\x42\x1b\x8d\xf1\x9a\x30\x84\xf5\x04\x3f\xf2\x0e\x0d\x78\x7b\x78\x4f\x11\x8e\xfb\x58\x1f\xd1\x10\xe1\xb8\x43\xa2\x79\xb7\x2d\x3b\xb8\x80\x8e\xfd\xde\x11\xa8\xd4\x52\xd7\xd5\x8f\xad\xae\x6f\x40\xe5\x7a\xd0\x92\x43\x3a\x43\xf1\xf2\x4f\x9d\x35\xe6\xac\xcc\x97\x1b\xec\x51\xc7\x35\x60\xc7\x86\xac\x59\xf3\x26\xc7\x13\xb1\x8a\xe7\x51\x5a\x74\x0d\xce\x2a\xc6\x54\xc5\x6e\x3d\xe6\x5c\x1e\xfa\xa6\x2d\xf8\x97\x5c\x2b\xe2\x26\x4b\xdd\x14\x58\x2a\x03\xc5\x1a\xd7\x9a\xd8\xdc\x85\x50\xed\x78\x1c\xcb\x4e\xca\xa5\x05\xfb\xae\xbf\x29\x83\x7d\xb7\x36\xc6\x85\x5f\xa7\x09\xae\x4d\x9f\x47\x61\x79\x1f\x55\x2a\x35\xf5\x5c\xa7\x28\x0d\x76\x6e\x90\xb9\x93\xe9\x99\x3b\xe3\x05\x84\x37\xf5\x0e\xa4\x73\x0f\x56\xe1\x3b\x78\x9d\x38\x3a\x84\x6a\x64\xad\x59\xff\x60\xf2\x63\x7d\x1a\x56\x03\x7e\xcd\x50\x26\xba\xb0\xdd\xd7\x41\x8d\x46\x66\xeb\x24\xa3\x91\x34\xd7\xee\xd8\x8b\xca\x29\x4b\x9e\xa5\x34\x2f\xd8\xf3\x8f\xbf\xcc\x2a\xe7\x57\x89\xbf\xbc\xce\x8b\x38\xfa\x19\x36\xbf\xe8\x4b\x3b\xb5\x20\xd2\x5c\x73\x6f\xd0\x28\xfa\xfc\x29\x9e\xff\xde\x61\x20\x1b\x4a\x13\x59\x3d\x78\xc0\xa4\x59\x02\x17\x06\xcd\x32\x7f\x3a\xed\x8c\x2a\xa0\x0b\x77\x1d\x71\x27\xd4\xad\x1e\x73\x2c\x11\xac\xd2\x42\x4e\xa9\x6e\x24\x70\x5b\xc3\xed\xed\xb1\xf0\x8d\x90\x3b\x4b\x53\xe4\x88\x39\x39\x4d\x9b\x7e\xbe\xd0\xc2\x90\xfc\x79\x42\x8b\xa2\xd7\x96\x58\x72\x9e\x11\x2d\xa9\xac\xaf\xb4\x21\x5d\x6f\xa4\x32\xa4\x8a\x48\x77\xd5\x43\xd5\x20\x54\xe5\x77\x10\x0c\xf2\xea\x95\x32\x31\x0b\xde\x54\xbf\x7a\x9a\x89\xd0\x95\xb2\xdd\x4f\x0f\xd5\xd6\x3f\xf2\xa9\xaa\xfc\x52\xfd\x32\xe1\xa1\xb0\xa2\x7d\xeb\xaa\x32\x11\x84\x6a\x71\x69\x6d\x81\xcf\xf6\x95\x38\x63\x40\xb3\xba\xc0\x53\x0b\x21\x1d\xfb\x6b\x83\x0d\x65\xc9\xab\x22\x1d\xb0\xda\x4f\xad\x19\x12\x51\x99\x98\x7e\xa9\xbb\x45\xdb\xcb\x4e\xb1\xd4\xad\x36\x7a\xb9\x42\x2c\x98\x78\x64\xf8\xa7\x19\x0d\x5b\xbd\x18\x33\x36\xa2\xb8\x99\x96\xb5\x8e\xb9\x55\xab\xa3\x46\x2e\x81\xf2\x80\x34\x02\x47\x90\x09\xa7\xd0\xba\x2a\xa8\x4a\xc2\x50\x7b\xb6\x3a\xa8\x15\xa3\x49\x5f\x2e\x08\x00\x41\xe7\xa5\xb2\x02\xd6\xc9\x09\x66\x2d\x47\x6d\xb9\x95\x34\xd3\xd5\x4b\x1f\x74\xa9\xed\x8e\x79\x9d\x38\x5d\x5e\xef\x58\x4e\x97\xcc\xa1\xad\x40\x8f\xed\xce\xbb\x26\x29\xd8\x34\x2a\xc5\x4a\xfd\x62\x4c\xf2\xc5\x0d\x54\xcc\xe9\x3e\x4e\x97\x9f\xe2\x35\x7b\x53\xcc\x48\x3c\x04\x94\x06\xa2\xff\xe9\xb8\x61\x32\x88\x1d\x7e\x2f\x82\x0d\xaa\xf3\xb1\x79\x3b\x5b\xdf\x10\xa4\xe2\xfa\x38\x17\x7f\x32\xf1\xa7\xe0\x07\xa6\xe0\x44\xcb\x16\x27\xba\x22\xe5\x24\x99\xe2\x2d\x59\x01\x93\xa7\x39\x87\x4f\xb6\x53\x88\xb7\xbd\x9d\x56\xf9\xfe\xc9\x0a\x98\xd3\x50\x08\x64\x11\xaa\xd2\x9b\x46\x57\xc2\x00\x99\x90\xf8\x2a\x22\xa3\xc0\x39\xd3\x35\x44\xea\xda\x80\xa1\x3a\xf2\x37\x61\x7a\xde\x6a\xd7\xa5\x60\xd4\x2f\x06\x2c\x05\xbe\x92\x9f\x73\xfc\x7b\xc8\x48\x0d\x2e\x8a\x6e\x0b\xb8\x90\xe1\x05\x8a\x25\x76\x12\x88\x3b\x0c\xda\x51\x31\x9c\x33\x12\x5f\xe5\x50\xdf\x75\x32\xf8\x3b\x14\x8f\xe8\xa9\xe3\x6c\x87\x39\x4c\x19\x9d\x3b\x19\xfc\x50\xcf\x28\xc8\x6d\xdb\xa2\x49\x02\xd3\x11\x0d\x82\x4c\x2b\x12\x5d\x05\x23\x14\xe4\x64\x15\x0a\xed\x3f\x87\x53\x98\x9e\x91\xad\x6d\x3b\x73\x97\x44\x18\x00\x37\x47\x38\x25\x5b\x2c\xc0\x36\x93\x0a\x69\x32\xc7\xf3\x4b\x3a\xf1\x39\x78\xf9\x1f\x5e\x6b\x7e\x41\x27\x23\x51\x30\xe2\x05\x4d\x95\xac\x19\x96\xa5\xcb\x5a\x48\xbf\x56\xe3\x1c\x54\x75\xc5\x8e\x23\x72\x7b\xe2\x72\x6f\x7d\xa1\x06\xc2\x39\x99\x87\xf4\x92\xf8\x21\x1d\x0e\x91\x62\x1d\x0d\x3b\x7d\x3a\xf4\xa7\xb0\x78\x8c\x43\x1b\x20\x2d\xee\x31\xe0\x62\x7d\x29\x0c\x6e\x78\x57\x26\xd6\xc5\x64\x14\xc6\x17\x85\xee\x43\x50\x4c\xe2\xe9\x64\x34\xbd\x24\x1b\xb1\x92\x44\xc4\x29\x4f\x49\x8c\xb0\x7c\x77\x41\x96\xa0\xbe\x88\x51\x68\xd4\x18\xd5\x17\xed\x0b\x92\xe2\x19\x39\x1b\x85\x33\xdb\x5e\x5c\x8e\x42\xb4\x18\x0e\xb1\xe0\xfb\x08\x21\xc5\x64\x01\x51\xe7\xe4\xa3\x54\x86\x54\x73\x16\x18\xbc\x23\x39\x74\xa7\xba\xd9\x5d\x68\xd7\x8c\x68\xe7\xba\x7a\x7f\x3b\xe8\x6f\x71\xa6\x86\xb2\x40\x78\x77\xa6\x7a\xde\x21\x9c\x00\x84\xc8\x24\xc5\xf9\x14\x17\xa4\x90\x59\xf8\x53\x9c\xbb\xbe\x94\x03\x05\xd8\xaa\x9a\x23\x5c\x7f\x4e\x00\xf3\xd8\xa9\x1c\xe2\x6d\x0e\x1d\x44\x6a\xc9\x4a\xc9\x7f\xfc\x2a\x4c\xbd\x9d\x42\x51\xbd\xae\xeb\x0f\xb6\xe1\x87\x95\x85\x8f\x08\x22\x60\xb7\xba\x13\xf7\x17\x9f\x32\x41\x57\x9c\x02\x1f\xe5\x48\x21\x08\x41\x6f\xb7\xfa\xad\x8a\x6d\x3b\x59\xdb\xed\xc6\xf4\xd5\x38\x6a\x3a\xf3\xed\x24\xe3\x58\xce\xff\x90\xc9\x14\x35\x28\x9b\xb3\xc6\xfc\x0d\x3e\xf4\xcf\xa9\xfe\xf8\x5b\xfa\xf6\x55\x9c\x24\x16\x42\x08\x47\x93\xe3\x94\x1c\xf0\x6a\x42\xa7\x64\xad\x2e\xc8\x04\xaf\x1d\xac\xb0\x8a\x53\x14\x44\x58\xbb\x2f\x08\x92\x0e\x73\x5e\x41\xad\xfb\x39\x88\xda\x76\xcb\x3c\xe0\xc3\xce\xd2\x4a\xb8\x52\x3c\x84\x70\xd9\xbb\x4e\x12\xb5\x95\xab\x68\x97\x95\x6b\x97\x63\x44\x82\xf5\xaa\x8c\x26\xc4\xfb\xfa\xe9\x17\x28\xbc\x4c\x27\x92\x87\xa3\x3a\x35\xd9\x5e\xb8\xb6\xab\xcd\x0f\x68\x15\xec\x49\xcc\xd4\x08\x3a\x4b\xf5\xc7\xbe\xf8\xb3\x75\x62\xf3\x4e\x94\xc7\x19\x19\xe1\x82\xf8\x61\x51\x9b\x39\x14\xae\x8b\xda\x64\xa9\x18\x02\xe5\x34\xe0\x4a\xa3\x48\xce\xce\xc9\x27\xc5\x14\xc7\x93\x62\x8a\x3a\x22\xde\x4e\x8a\x29\xc9\x5c\xb7\xa6\x29\xc2\x56\x22\x6f\x7d\xb1\x31\xfe\x09\xef\x75\x4a\x8a\xda\x12\xaf\x23\xbe\x55\xd3\xba\xb7\x60\x25\x70\x85\xf2\x5e\x88\xf3\x87\xb5\xa7\xbb\x94\x53\x1a\x01\x05\x3c\xb6\xa3\xc9\x16\x52\x8b\x29\x7f\xd1\x34\x62\xb9\xe4\x21\x58\xad\x62\xd0\xc3\x01\x72\x01\x63\x1d\xa7\x4b\x3e\x52\x15\x94\x24\xa9\x19\x0d\x95\xc0\x17\xf2\x0c\x3e\xd8\xdc\xb5\x06\xc3\x41\xb5\x13\x82\x81\xe5\x3a\xc9\xb0\x44\xae\xb5\x2e\xac\x56\x94\x37\x6d\x70\x0f\x5f\xbc\x80\x7a\x00\x94\xea\x56\x83\x4d\x15\x9a\x03\x53\xa2\xea\xd4\xc0\x98\xd9\x66\x2c\x14\x32\xdb\x66\x0d\x25\x68\x2f\x3b\x6b\x5a\x5b\xe3\xaa\x81\xda\x29\xb7\x82\xcb\x0e\x0c\x06\x59\x32\x68\xd2\xa3\x20\x68\x7e\xe0\x14\x76\x4e\x15\x7c\x11\x72\xba\x17\xb3\xad\x2c\xd6\xab\xf9\x0a\xc0\xf5\x31\xd1\x51\x1c\x75\x34\x6e\x69\x3f\x94\x63\x7c\x33\x75\xe2\x17\x5e\x08\xf5\x41\x5b\x4f\x66\x65\xa4\xc2\x8e\x6d\x3b\x6e\x2a\x9e\xb9\xe8\x0e\xbc\x9d\x44\x5a\x1a\x1d\x5f\xc5\x39\x8b\xe0\x9c\xd5\xca\x52\xed\x12\x21\x34\x6c\x57\xeb\xf7\xc2\x45\x3c\x95\xce\xc4\x0d\xe5\x97\x2e\x6c\xb5\xa8\x34\xe7\x86\xc3\x6a\x14\x22\x9c\xdc\x64\x8a\x35\x7d\x8d\x7e\x48\xa5\xdb\x35\xec\x4e\x04\xfa\x1a\x46\x6e\x97\xb0\xbc\x5a\x94\xee\xb6\x40\x01\x27\x9b\x0c\x09\x0d\xf1\xe6\xeb\x2f\x4d\xca\x29\x61\xe2\xeb\xda\xf7\x74\xe3\xbb\x52\xa8\x78\xc4\xe5\xd7\x7d\x8a\x83\xa3\xe5\x3a\xe5\x95\x35\xb6\x02\xcb\x42\x08\x3b\xa0\x44\xa8\x8d\xf3\x2c\x84\xaa\xcb\x66\xf9\x65\xdd\x74\x8f\xa2\xda\x87\x55\x2e\x6f\x2b\xa0\x25\xac\xe1\x71\x0c\xb2\x10\xff\xa1\xb5\x7f\xa0\xef\x53\x2b\x28\x10\x07\xe2\x7d\xaa\x87\x16\xbc\x1b\x3a\x9b\x43\x5c\x3c\xe4\xb6\xda\x8a\x12\x38\x79\x80\xe5\x28\x9b\x01\xd3\x3a\xe8\x75\xb7\x25\x5e\xed\xb9\xd3\x35\x02\x21\x98\x18\x09\xf3\xd1\x49\x5a\xc4\x76\x4f\x56\x0a\x5e\x45\x98\x28\xb1\x76\xa5\x47\x14\x04\xd1\xab\xd5\xba\x3b\xe4\x14\x88\x37\xf7\xd6\x8d\xd3\x79\xb2\x8d\xd8\x6f\x2c\xcf\xa0\xfa\xfc\xa1\xea\x11\xdb\x70\x52\x94\x96\x70\x1a\x09\xd7\xe8\x76\x1b\xc1\x27\xaa\x66\x10\xfc\x11\x92\xf2\x78\xbe\x14\x08\x7a\xf8\x92\x63\x1d\x33\x53\xa3\x1f\x1b\xb0\x27\x3c\xf3\x71\x4a\x36\x5d\xa1\x34\x57\x08\x4c\x06\x14\x17\x80\x56\x46\xd4\x47\xce\x44\xfb\xd2\x4b\x5b\x2d\xda\x12\x2f\xf0\x0c\x0c\x09\x77\x64\xc8\xff\x1c\xc9\x28\x3c\xd6\x7c\xc4\x11\x42\x26\x36\x5d\xd3\x26\xc7\x29\xc7\xf5\x25\x29\x27\xfc\x37\x98\xe2\xca\x21\x72\x51\x64\x46\x2a\xc7\x9d\x25\xe6\xc2\xbe\x7c\xe7\x2c\xaa\x06\x3e\x74\xb0\x93\x15\xe9\xc1\x59\xe0\x1d\x42\x28\x8c\x6c\xfb\x8c\xcb\x81\xb3\xcb\x11\x74\x34\x42\x78\x07\xc6\x16\x3b\x32\x42\x08\xcf\x08\x1f\x6b\xf5\x86\xc0\x98\xe1\xad\x8f\x30\x25\xbb\xe1\x0c\x00\x40\x6d\xdb\x19\x9d\x11\xb2\xbb\xa2\xb5\x6d\xe6\x0e\x05\xbc\x1e\xa6\x44\x99\x7f\xac\xc9\x0e\xdf\x90\x19\x98\xaf\x6f\xaf\x9c\x35\xd9\xb9\xe9\x53\xca\x8b\x50\xa0\x3f\x0d\xe1\x2f\x1f\x86\xbc\x27\xba\xe1\x5f\x5f\xf3\x21\xee\x2e\xa0\x60\xcd\x47\x87\x70\x13\xde\x37\x78\x3d\x3d\xc5\x0b\x67\xa5\x13\x09\xc0\xe4\x3d\xc9\x8c\x52\x2e\x36\x5c\x99\xcd\x27\xa3\x69\xd0\xa8\x82\xaf\x9b\xcd\xfc\x76\x33\xbf\xd1\x4c\xb8\x76\xb4\x42\x6b\x92\xc9\x1e\x5f\x4f\x85\xac\xd5\xf9\xde\xec\x56\xb8\x0a\x42\x48\x7c\x74\xbb\x27\x5d\x2d\xc4\x00\x3b\xdf\x48\x91\xed\x1d\x49\xcf\x9d\xf1\xd3\x74\xe8\x23\xfc\x82\x38\xfc\xaf\x7a\xee\x1c\x23\x17\xe8\x3b\xa2\xff\xed\xf1\x35\x7e\xc7\xa1\xdd\xf9\xa5\xbe\x16\x2f\xa4\x60\xf9\x27\x06\x8f\x29\xb9\x1e\xee\xbb\x3f\x38\x9a\x92\xfd\x90\x3e\x4d\x7b\x87\x73\xed\xd2\xa7\x29\x98\x33\xa2\xdb\x95\xd7\x24\x1c\x64\x0e\x90\x79\xf9\xc0\x99\x96\xd4\x67\xda\x6b\xf2\xb2\xd6\x8b\x87\x2b\xaf\x84\x6e\x5e\x3b\x7d\xb3\xea\x9b\x53\x17\xfd\xc0\x2f\x05\x5f\x87\xf3\xbb\x3b\x27\x27\x2b\x74\x3a\xe9\x86\x27\xb9\x88\xce\xff\xe4\x79\x96\x2e\xe2\xa5\x8c\x66\x21\x02\x9e\x07\x83\xeb\x72\x90\x30\x5a\x94\x83\x2c\x65\x03\x88\x7e\xbe\xa2\xc5\xa0\xcc\x06\x2b\xba\x63\x83\x72\xc5\x06\x6d\xaa\x39\x10\x13\x1e\xa8\xd4\x10\x91\xf7\x24\x34\x2f\x80\xfb\xa9\xbf\x70\x9d\x69\x01\xb4\x3e\x90\xfe\x2c\x4c\xf1\x27\x92\x0b\xa8\xe2\x8f\x24\xef\x86\xde\xb0\xb3\x7c\x34\xc5\x3f\xf5\xe1\xd0\xb0\x6f\x7d\x9e\x73\x46\xeb\x0d\x19\x85\x6f\x2e\x3e\x29\xb2\xfb\x46\xcd\xf9\x2d\x71\x3e\x4d\xde\x4c\xbd\x5d\xdf\x07\xd1\xf9\x47\xfc\xaa\x0f\xa3\xdd\xb7\x4f\x7f\x0a\x9f\x0b\xc5\xea\x2b\x74\xfa\x97\xe0\x0a\x7e\x8e\x4e\x4d\x6d\x00\x24\xda\xff\x74\xdc\xb0\x57\x79\xb6\x16\x02\x53\x97\xa5\xec\x19\x04\xd2\xa8\x22\xf0\x5b\x43\x0b\x85\x94\x53\x55\x8b\x59\x67\xa4\x04\x7d\x8a\x6d\x5b\x2f\xab\x07\x70\x2d\x57\xb5\xcf\x2d\x74\x49\x46\x77\x77\x5d\x8c\xc5\x15\x3f\x66\x83\xbf\x92\x4a\x73\x67\xdb\xe5\xa5\xe5\x7f\xfb\x97\xd1\xc8\x1f\xf9\x96\x6d\x97\x17\xd6\x78\xf4\xec\x2f\xfe\xf8\x19\x7f\x72\x58\x7d\xd5\x5e\xb0\xf2\xf3\x75\xcd\xaa\x72\xd1\xb1\x65\xd4\x61\x54\x30\xc5\xb7\x2b\x3d\xe1\x8c\x77\x00\x30\xfe\xc4\xc7\x96\x93\x03\x28\x09\xc4\x83\xa1\xa8\xe0\x18\xed\x1d\x04\xcd\xae\x73\xfc\x1f\x3a\x12\xff\x77\x35\x13\x68\x4b\x76\x50\xfd\x13\x3c\x74\x55\x83\x1c\xbc\xf4\x86\x25\xcd\x2f\x5c\xb7\x5e\xa0\xa0\x7f\x12\x1d\x9c\x9d\x01\xfa\xd3\x23\x66\xd6\xc5\x9f\x76\xb6\xab\xa6\x96\x0a\xee\x08\x36\xf8\x23\x27\xf7\xe0\x30\x1a\xcb\x5a\x5d\xa6\xb6\x11\x95\x33\xb6\x90\x87\x8b\x43\x0c\x70\xfb\x75\x9c\xb2\x17\x2c\x89\xd7\x71\xc9\x72\xe1\x42\x50\x7a\xc5\x26\x89\x4b\x27\xbd\xbb\xb3\xfe\x33\xad\x23\xf1\xb4\x54\x06\x91\x6a\x67\xa1\x70\xe8\x13\xf0\x2f\xac\xb0\x3a\x43\xb6\x6d\x14\x58\xff\x59\x02\x9e\x83\xb6\x10\x1e\x42\xa5\x7c\x51\x0a\x20\x95\xb4\x45\x13\x55\xee\xee\x9c\x82\xf8\x06\xa4\x44\x65\xf1\x35\x31\xd2\xac\x23\x3c\x6f\xce\x00\x0e\x52\x16\x40\xb5\xb6\x27\xc1\x2b\xbe\x5f\xb7\x9d\x1a\x28\xe5\x3e\x13\xf1\x2a\x73\x52\x84\xf3\x5a\x2f\x34\x57\xa4\x6c\x43\xf2\xc9\x1c\xa8\xf6\x1c\x73\xe6\x6c\x53\x6d\x4d\xeb\xdf\xac\x33\xb2\xe1\xc4\x4c\xba\x0c\x6c\xaa\x11\x0a\xbf\x89\xa5\x32\x29\x18\x4b\x1d\xcd\x42\xfa\xbf\xad\xd4\xed\x60\x27\xc9\x71\x96\x10\x55\x36\xe9\x15\xd4\x75\xcc\x86\xc4\x8c\x9c\x0a\x2c\xf8\x91\x9e\x40\x5b\x79\x18\x96\xe6\xb5\x2e\x12\x77\x00\x7e\x48\x2f\x96\xba\x0d\x02\x23\xcb\x09\x55\xc0\xe5\xe4\x09\x8f\xcf\x88\xb2\x52\xb8\x72\x94\x32\x09\x2e\x66\x9d\x27\x55\xc6\x50\xd5\x31\x4d\x06\x56\xba\x5d\x9f\x47\x2c\xb5\x06\x80\xaa\xc5\x20\x4e\x07\xcf\x3f\xfe\x32\x88\x68\x49\x21\x93\xe8\x22\xdb\xa6\xd1\x80\x8a\xd7\x83\xff\x7c\xf2\xc4\xe5\x9f\x74\xad\x27\x83\x2c\x1d\x24\x71\xca\x06\x96\xeb\xf8\xee\x1c\xb9\xd6\xc0\x79\x62\xb9\x1b\xd7\x7a\x82\x06\xfb\x55\x3c\x5f\x0d\xe2\x62\x90\x66\xe5\x20\x5b\x00\xb6\x0c\x16\x59\xbe\xf6\x2c\x3e\x5d\x0a\xea\xf5\xd1\x14\x05\xe2\xf7\xc1\xab\x77\xf4\xcc\x81\x73\x61\x8e\x37\x08\x37\xcb\x7d\x51\x2e\x24\x8a\x81\x66\x77\xdb\x7f\x13\x0d\xa0\x53\x40\xfb\xf7\xf1\x19\xf1\x6d\xdb\x84\x4b\x9d\x49\x95\x26\x25\xcb\x53\x0a\xa9\xe7\x1c\x98\x30\x1e\x14\x65\xc4\x76\x1e\x1a\x6c\x68\x9c\xb7\xa1\xd3\x00\x00\x67\x3f\x68\x3a\xc8\xa2\x3a\x2b\xeb\x42\x01\xd6\xb1\xdc\x6a\x1c\x43\x1f\xb9\x16\x0a\x06\x12\x5e\x60\x7a\xd0\x58\x5c\x32\x46\x8b\x89\x43\x21\x76\x55\x0b\x42\x7c\x09\xba\x20\xb4\x9c\x50\xf7\xb1\x30\xd2\xef\xf6\xfb\xf0\x0b\x30\x7f\x06\x48\x16\x9e\xff\xdf\x83\xa7\xff\xd7\xb9\x57\xb2\xa2\x74\x66\xe8\x4a\x2c\x5c\xed\x0c\x0e\xd7\xc5\x81\xc3\xc8\x4c\xa1\x63\x68\x21\xfc\x8c\xd4\xe8\xf8\xa7\x96\xba\x55\x3e\x96\xd3\x0b\xd4\x22\xee\x69\x9e\x3a\x4f\xfe\xbe\x62\xe9\x60\x5b\xf0\x95\xab\x27\x86\x15\xec\x55\xfe\x1b\x16\x97\x2b\x96\x0f\x6e\x12\x9a\xfe\x3e\xc8\xf2\x81\x95\x64\xfb\x70\xce\xd2\x92\xe5\xe1\x2a\x5e\xae\xac\x41\xb9\xdd\x24\x7c\xb1\x20\x81\xee\x13\x77\xe6\x3e\xb1\x2a\x44\x7f\x22\xd6\x19\x69\x66\x83\x1d\x30\x83\x69\xf6\x2c\x17\x58\x56\x57\x3a\x35\xdb\xe6\x1b\xff\x22\x9e\xc4\x46\xc6\x08\xf0\x6c\x06\xb2\x50\x25\xba\xdd\xb6\x70\xf6\x6d\x85\x5e\x22\x86\x17\xa0\xa6\xc4\xc6\x39\xdf\x8a\x96\xab\x9a\xbb\x16\x1a\x44\x19\x13\x7b\x91\x2e\x73\xc6\x44\x3e\xc5\x1a\x43\x05\x51\xe5\x6d\xb6\xbc\xb2\xe5\x6e\x84\x54\x3f\x57\xf1\x60\x4c\xda\x2b\xd0\x62\x47\xce\x46\xf2\x6e\x72\x14\xee\x6c\x9b\x5e\x2c\x9a\x60\x00\x31\xf9\xcc\x17\x81\xda\xd1\xad\xb1\x62\xd6\xa7\x15\x53\xf9\x1d\x8b\xc1\x13\xd1\xf7\x13\xc5\x9d\xc7\xc5\xa0\x60\x25\x86\x3d\xc6\xf9\x78\x88\x97\x38\xc8\xb3\x3d\x1f\x6e\xb5\x03\x6b\x7a\x43\x37\x1b\x46\x73\xe0\xfd\x69\x52\x64\x83\xb9\x08\x86\x2b\x67\xe6\x0d\xfe\x1e\x27\xc9\x20\xca\xb3\x0d\xf4\xc6\x3b\x90\x73\xa6\x69\x34\xd8\x16\x42\x58\x90\xdf\x96\x6d\x2c\x14\xf2\x5e\xe2\x74\xcb\x4e\xa7\x58\x70\xb4\x8b\xda\xa3\x6b\x10\xd9\xb6\x63\xce\x88\x77\x1b\x17\x83\x6c\x0b\x24\x2f\xcb\x23\x96\x87\xe2\xcf\x20\x2e\x07\xf3\x2c\xcf\xd9\xbc\x4c\x8e\x7c\x90\xc5\x86\xb1\x68\x90\x64\x34\x8a\xd3\x25\xa7\x89\xb1\x57\x64\x79\xe9\x74\x47\xd8\x9e\x8c\xa6\x43\xbe\x53\x4e\xa8\x65\x45\x09\x68\x06\x69\x88\x5b\x9e\x3f\x22\x6f\xa3\x99\x29\xa3\x81\x45\xcf\x69\xfa\xa4\x1c\x70\x2e\x7b\xc0\xd6\x9b\xf2\x28\xc0\x5a\xb0\xd2\x12\x1a\x94\x2a\x4f\x4a\x1d\x84\xbc\xa7\xa7\x17\xb2\xe1\x60\x2e\xd3\xa8\xc9\x05\xa0\xa9\xec\x39\xcf\xf6\xaa\xd3\xcc\x29\xe5\xed\x81\x9e\xfb\xaa\x13\xd1\x38\x7e\x99\x40\xfe\x19\xf6\xb8\x34\x92\xa9\xd6\xf7\x23\x53\xbf\x07\xec\xb0\x49\xe2\x79\xcc\x01\xbd\x8b\x69\x8d\x59\xc0\xb3\xa8\x45\xd6\xf2\x64\x59\xa8\x8b\x69\x99\x58\x9f\xad\x29\x96\x56\x2f\xf5\xec\x45\x42\x8f\x56\x75\x81\x1d\xd6\xaf\x96\xab\x62\xa2\xdc\xc3\xe1\xd4\xde\x67\xb4\xdb\xd9\x00\x72\x9b\xa9\xad\xff\x30\xe8\xdf\xc4\xc5\x9a\x96\xf3\xd5\xe0\x86\x95\x7b\xc6\xd2\xce\x8d\x4d\xf9\xc6\xe6\xc8\x9e\x76\x11\x0e\x91\x38\xdc\xb1\x5c\xed\x6b\xae\x85\xe4\x82\x9d\xa4\x23\x65\x95\x3e\xbd\x14\x59\x70\x90\xbc\x3b\xfa\x3f\x54\xa6\xa8\x82\x9a\xcd\x93\x2c\x65\x1c\xe7\x84\x17\x07\x78\x37\x18\xfe\x0c\x12\xcb\xe3\x09\x7b\x00\xd4\x1f\xb2\xbd\x38\xed\x19\x3f\xed\xb3\x85\xd8\x2f\x71\x21\x70\x5c\xdb\x34\x12\xa9\x63\xe1\xe5\x76\x77\x67\xa9\xbd\x59\xa7\x79\x97\xef\xf8\xc9\xfc\x29\x5e\x33\x25\x55\x36\x8a\x1d\x84\x7a\xc6\x72\x90\x2c\x59\x9c\x02\x5d\xac\x87\x25\xb9\x2e\x0a\x17\x8a\xd5\x98\x44\xb7\xa4\xd5\x7d\x95\xcb\xe2\xd4\xbc\x0a\xf8\xdf\x2b\x4c\x1d\x3c\x81\xa9\xed\x75\xc5\x4d\x4b\x42\xbe\xb9\x38\xfd\xf9\x44\x6f\x92\x6e\xff\x58\xa9\xee\xbe\x61\xf9\xbb\x45\x65\xbb\x06\x9a\x00\xed\x85\x48\x02\x05\x21\xd9\x45\x48\xcf\xed\x3a\xe5\xec\xbd\x33\x82\x2d\x69\x71\x2c\xb3\x08\x89\xef\xee\xe0\x67\x19\xaf\xe1\x11\xfd\xcf\x97\xbe\x85\x82\x9e\xcf\x51\xc0\xdc\x3a\x83\x69\x35\xd2\x0b\x66\x69\x72\x1c\x3c\xe1\x3d\x3c\xc1\xe2\x2f\x07\xc1\x13\xa0\x2a\x4f\x44\xc3\x27\x03\xbe\x22\xc5\x80\xe6\x6c\x50\x6c\x37\x9b\x2c\x07\x71\x23\xcb\x25\xb1\x19\xf8\x7c\xd3\x54\x6b\x35\x80\x10\x9d\x03\xe7\xfb\xac\xe4\xac\x70\xcc\x8f\x72\x4b\x23\xa0\xff\xdf\xd5\x04\x80\xd7\x97\xb8\xb8\x9a\x4c\x71\x41\x6e\x4f\x38\x21\x67\xbe\x34\xd0\xf2\xc3\xf4\x82\xd5\xd9\x63\x57\x2d\x8c\x14\xde\x30\x6a\xb5\x08\x59\xa1\x4c\x1c\x41\x29\xaa\xd7\x52\xe6\xe3\x3e\x23\xab\xbb\xbb\xb3\x1e\x21\x40\x86\x12\xbd\xd6\x33\xc1\xb7\x57\xfe\x1d\xac\xbc\x5a\x62\xce\x9b\x55\x6b\xcb\x05\x9e\x41\xa5\x0e\x85\xe5\x17\xdc\xe5\xf7\xbb\xf8\x0f\x6f\xf0\x44\x0c\x02\x1a\x01\xfe\xd4\x2d\xe3\xc5\xa0\xfd\x75\x5e\xaf\xcc\xb7\xca\x22\x66\x4b\xb2\x49\xa6\x19\x61\xb5\x92\xe2\x6e\xd1\x55\x31\xd9\x4e\xd5\xe4\x03\xfe\x40\x26\xe9\x94\x43\x73\x74\x3a\xc9\x88\x2f\x1a\xf8\x60\xa1\x9c\x11\x52\xb6\x70\xa3\x30\xad\x5d\xfa\xd2\x3a\xfe\x4b\xab\x49\x36\x49\xa7\xa8\xd7\x6b\x44\x13\x38\x6d\xdb\x49\x5d\xe2\x9b\x68\x2c\xb9\x8a\x08\x33\x52\xc5\xbb\x10\xa6\x88\x93\x29\xde\x90\x33\x1f\x2f\x55\x7e\x65\x31\x26\x5a\x2f\xbf\xd2\x3c\xd4\x7e\xd6\x55\x46\x16\x27\xc5\x23\xcd\xde\xd2\x2c\x87\x73\xad\x8f\x6a\x5d\x2d\xb4\x79\xd6\x6d\xb4\x63\x27\xe8\xae\xf1\x18\x10\xc8\xf0\x3c\xa3\x30\xbf\x60\x43\x1f\xe2\xf3\xc8\xce\x26\x46\x6f\xbe\x3b\x7e\x9a\x23\x6c\x94\x8d\xa1\x6c\x8a\xea\x4b\x43\xd1\x51\xd6\x8a\x84\x36\x23\x99\x0c\x73\xd1\x35\xd2\x19\x42\x38\xb1\xed\x16\xc6\xcc\x7a\xe0\x55\x4c\x66\x92\xa7\x11\x96\x7e\xb7\xa7\xf0\x28\xef\x52\x49\x0b\x19\x66\x08\x1f\xc1\xfc\x94\x70\x09\x0e\x1f\xbd\x62\x95\xe5\xe5\x27\x76\x28\x3b\x4e\x1f\xa1\x1a\x82\xb4\x1f\xcf\x57\x34\x7f\x9e\x45\xcc\xf9\xe6\x6b\xb7\xfc\xf7\xf1\x37\x48\x9a\x20\xc0\x8d\xe1\x22\xc9\xf8\xc3\x39\x2f\x2e\x2f\x47\x21\xea\x6d\xea\x94\x43\x1f\xf1\xe6\x2e\xf3\xca\xec\x75\xb6\x67\xf9\x73\x5a\x80\x19\x92\xde\x15\x54\x83\xee\xaa\x14\x45\x95\x06\x82\x4f\xa0\xe4\xe3\xb5\xac\x4a\xe1\xb6\x26\xa3\x70\x7d\xc1\x01\xa1\x60\xbd\x76\x5d\xb4\xb6\x6d\x47\xd4\x75\x89\x50\x33\xaa\xa7\x36\xfc\xd6\x53\x14\x2e\xc5\x62\x1c\xd1\xe9\x54\xaf\xde\x42\x5f\xbd\xb8\x78\x15\xa7\x71\xc9\x9c\xc5\x24\x9f\xa2\xbb\x3b\xf8\x2b\x03\xd7\xcf\x9b\xd2\xf1\x7c\x32\x6f\x4a\xc7\x1b\x90\x8e\xe7\x95\x48\x06\xd2\xb8\x29\x25\xfc\xb8\x4c\x33\x0e\x3a\xc9\x1a\xa5\x82\x5b\xab\x0f\x9e\x1b\x36\xa7\x5c\xec\xcb\x16\x83\x6d\x1a\xb1\x45\x9c\xb2\x68\x90\xe5\x90\x76\x4a\x0a\x9b\xe2\xc4\xf2\x2c\x74\xda\xb4\x24\x3d\xed\x04\xfb\x93\xf2\xde\xfc\xb1\xf2\x9e\xb0\xb7\x51\x4e\x38\x73\xbc\xd4\x00\xa4\x6e\x0f\x34\x02\xea\x2c\xf1\x59\x57\x12\xb4\xa6\x0c\xd2\x95\xa7\xbb\xc3\x87\xa7\x23\x05\x45\xc3\xfc\x49\x6f\x03\x3e\x6b\x8d\xab\x0b\x48\x0c\xde\x13\x01\x7f\x11\x27\x4c\xa4\x56\xae\xd8\xe3\x3a\xa7\x01\x64\x7f\x2c\x1d\x84\x20\x1a\x10\x88\xb8\x42\xf8\x40\xc8\x84\x89\xb8\x29\xaa\xe5\xe0\x3f\xe5\x9a\x54\x69\xcb\xda\xc9\x15\x6c\xbb\x6b\x78\x35\x49\x10\x77\xec\xf5\x28\x6a\x56\xf4\x9f\x1c\x89\x3c\xc0\xeb\x6f\xd6\xf9\x17\xba\xef\x04\x42\x30\xff\x16\x06\x68\x9a\x53\x17\x7f\x53\xcb\x9c\x21\x25\x22\x03\x86\xf7\xf9\xcd\xeb\x1f\xca\x72\xf3\x81\xfd\x63\xcb\x8a\xf2\x8a\x1f\xf8\x66\x11\x44\xa4\xbe\x9e\x97\xf1\x8e\x7d\x7e\x07\x60\xe1\xd2\xe6\x3c\xcf\x8a\x6c\x51\x42\xf3\x4f\x9f\x7e\xb2\x74\xdb\xb4\x90\x7a\x59\x0a\xd6\x61\x45\x49\x4b\xd6\x0e\x31\xfe\x15\x21\x54\x98\x8f\x7d\xe4\x15\x6c\xdb\x19\x8f\xc0\xa9\x94\x63\x4a\xb9\x2d\x6c\x5b\x7f\xba\xbb\x8b\xcd\x99\x80\x4b\xf4\x26\x4b\x0b\xc6\x89\x2d\x04\x9a\xf0\xb2\x0d\x4b\x1d\xeb\xfb\x97\x9f\x2c\x5c\x02\xf2\x53\xaf\x60\x69\xe4\x08\x82\x62\x52\x07\x29\x3b\xfd\x9c\xfe\x9e\x66\xfb\x54\x88\x6f\x0b\x60\xca\x82\x81\xe5\x56\x70\xee\x0a\x5b\x21\x2f\xdf\x9a\xd6\xfc\x66\x7a\xbe\x33\xbf\x32\xe5\x05\xec\xc6\x31\x79\xef\xcd\xb3\xcd\xf1\xe7\x82\xe5\xd7\xc0\x0b\xf0\xd5\xb0\x6a\x57\x15\x2b\x86\x54\xc5\xb5\x95\xaf\xf4\x60\x21\xb1\xf6\x84\xb0\x55\x5b\xfb\x1a\x2d\xf4\x08\x6f\xb1\xf6\x24\x86\x91\x12\xbe\x77\x20\x4a\xf9\x73\xbe\x14\xd5\x9d\xd0\xeb\xb8\x28\x9d\x4e\xcb\xde\x18\x55\x29\xe7\x5f\x30\xb6\x71\x9a\xf7\x3c\x38\x7e\x98\xba\x60\x7a\xd5\xe3\xdc\x4a\x4b\xfa\xf7\x38\x49\x34\x72\x81\x6b\x4a\x40\x28\x66\xca\xb5\x13\xc8\x06\xe7\x42\xd8\xdd\x9d\x93\x5e\x35\xf6\x48\xd0\x36\xb7\x3d\xf3\x45\x60\x4f\x13\xd8\x1d\xc7\xb1\x9e\x3d\x43\xe4\x53\x69\x59\x1b\x51\xc4\xf7\x7c\x0c\x89\xa0\xa9\x6d\x77\xbe\x07\xe7\x4f\x70\x18\xe8\xcb\x00\x28\xb2\xc7\xb4\xd3\x3c\x9e\xc9\xc1\xf3\xb7\xb3\x24\x9b\xff\xae\x3c\x2d\xeb\x12\xb0\xd8\x92\x7a\xb1\x33\xa2\xb4\x09\x60\xed\xd7\x38\x88\x84\x02\xb5\x4a\x84\x35\x28\x56\xd9\x36\x89\x06\x37\x6c\x30\xa7\x49\xc2\x22\xc1\x8c\xff\xc1\xf2\xac\xd6\x78\x15\xfc\xa4\x2b\xf7\xd9\x20\xcd\xd2\xe1\xdb\x9f\x5f\xbf\xd6\x5e\x79\x83\x9f\x72\x56\xb2\x94\x9f\x53\xfc\x14\xdb\xd3\x02\x5a\xf3\x33\xab\x24\x22\xd2\xb9\x61\xad\x2e\x8d\x55\x63\x23\xab\x4a\xa8\x2e\xa5\x55\x56\x1b\x33\x3f\x8b\x96\x41\xa9\x51\x41\x66\x68\x61\x5a\x0d\xf1\x01\x52\x1a\xf6\xb0\x84\xa9\x1b\x63\xf5\xda\xe8\x6c\x9e\xc4\x2c\x2d\x21\x3c\x83\xd9\xac\xab\xda\x0f\xf0\x0e\x61\x4a\xf4\x19\xd9\x76\x4c\x8c\x39\x99\x09\xc9\x5a\xc9\xee\x6a\xe4\x34\x92\x07\xc9\xe5\xf4\x4f\x4d\xdf\x57\x95\x60\xa1\xc3\xe3\x56\x23\x02\xe5\xfd\x2e\xb4\xb5\xa9\x7d\x33\x33\xb1\x62\xd2\x15\x77\x5e\xd7\xb4\x90\x9a\x89\x94\x4d\xb4\x4e\x26\x9a\x27\x49\x57\x4b\x75\x29\x0a\x75\x74\x3f\xc0\xa1\x1f\xa2\xee\x3e\x05\x97\x76\x36\x42\x61\x77\xaa\x79\xa3\xff\x96\xd9\xc3\x2f\x1d\x13\x6c\x26\x08\x36\x12\xcf\xa8\x58\x16\xc0\x0a\x28\xbe\xc1\x29\xf9\x9c\xeb\xc8\xa5\xed\x33\xfe\x2a\x26\x67\xa3\xa0\x24\x10\x23\x33\xae\x1c\xdf\xd2\x1e\x02\x91\x82\x94\x77\x31\xba\xbb\x4b\x2f\x89\xd2\xd5\x5e\x35\x58\xd0\x74\x47\x93\x38\x1a\x08\x19\x42\xe9\x5d\xe3\x74\x60\x4c\x8b\x1f\x3b\x29\x0a\xe8\x24\xe5\xc4\x24\x95\x72\xcf\xa0\x11\x53\x43\x17\x50\xad\x1b\x21\x77\xe9\xe9\x9f\xd2\xe9\xd5\x7f\xf7\x40\x02\xfe\x0f\xa4\xf6\x9c\xa4\xd3\xff\x86\xbe\x61\x72\x01\x9d\xf0\xbf\x53\x22\x3d\x2a\xfb\xf0\xda\x24\x9c\x8a\x31\xbe\x85\x9d\x19\xe8\x64\x47\xec\xcd\x40\xdf\xa7\xed\x80\x28\x1a\x7b\xdc\xa6\xc6\x02\x6b\xeb\x1a\x7c\xcf\xc9\x50\x0f\xd2\xb1\x56\x8f\xb0\xd0\xb8\xc2\xca\x63\x16\x01\x7b\x6f\x7c\x64\x70\xc3\x16\x59\x5e\xdd\x6e\x01\x0d\x05\x96\xc7\x1b\x7c\xca\x8f\xbc\x32\xdc\x30\x97\x2b\xb6\x06\xe5\xbb\x78\xe9\xa0\x01\xa4\x87\xf1\x06\x1f\x59\x7d\x33\xe6\xcd\xb3\xf5\x79\xc9\x8a\xb2\x38\xaf\x07\xe9\xad\xca\x75\x62\xb5\x5d\xcf\x75\x39\xa0\x35\x2f\x54\x1d\xae\xbd\x0e\xf9\x5d\x70\x6a\xd8\x73\x6b\x1d\xb6\xe3\xd0\x09\x25\x47\x37\xaf\xdf\xbc\xe4\x50\xbd\x5e\x95\xd2\x13\x0f\x05\xed\x98\x10\x60\x92\x02\xe6\x15\x22\x40\x62\xaf\x9d\x79\xd3\x03\xa8\x9c\xb6\x46\xf7\x21\xdb\xbf\xca\xf2\xcf\x3d\x21\x5d\x47\x2a\xb0\x97\x4c\x9c\x0b\x24\x8d\x5d\x10\x1a\x56\xb9\xfb\x5d\x76\x79\xe9\xab\x90\x9e\x95\xe4\x1b\x63\xa1\x1e\x4e\x2f\x4a\xc4\x48\xec\xfa\x15\xff\x9e\x5e\x96\x88\x92\x78\xe8\x57\x2a\x39\x46\x48\xac\xd0\x29\x0e\x29\x89\xab\xcb\xc4\xf6\xd4\x01\x27\xda\x87\x43\xd3\x69\x4d\x26\xf0\xad\xfd\x31\x40\x11\x82\x82\xb2\xe1\xf4\xd1\x8e\xbd\x60\x64\xd0\x68\x85\x0a\x3a\xf0\x2a\x32\xf9\x07\xae\xd3\x38\xe4\x6c\x19\x17\x25\xcb\xab\xf4\x7e\xe2\x83\xb7\x2c\x61\xeb\xa0\xc4\xbc\xef\x80\xe1\x45\x1a\xd0\xa6\x20\xd8\x95\x1b\xb0\x2b\x1e\x4a\xeb\x0b\xa8\x23\x92\x47\x7b\x18\x9a\xd7\x86\x1e\x14\xb3\x55\x71\x52\x4e\x43\x33\x1d\x20\xf3\xf8\xe0\x65\x96\x28\xcc\xbc\x45\x5a\x65\x33\x6c\xb4\x25\x13\xc0\xaa\x9f\x5e\xff\xfc\xfd\x8f\x6f\x3f\x92\xc9\xcf\x55\xae\x9e\xcf\xd5\xaf\xff\xaa\x7e\xfd\x56\xfd\xfa\xa1\xfa\xf5\xbd\xfa\x35\xc5\xef\xbd\xef\x7f\x89\xff\x00\xb7\x21\xf2\x8f\xaa\xc2\x7b\xef\xc5\xf5\xc7\x1f\x5e\xbe\x98\xbd\xfe\xf1\xed\x4b\x72\xd0\x9f\xf8\xbb\x77\x9f\x66\xbc\xa4\x7a\xab\x3f\xe3\xf7\x3d\xda\xfd\x5e\xb5\x3f\x7e\x2f\x43\xc4\x55\xb1\xe2\xf0\x7b\x15\x54\xb9\x0e\xaf\xcc\x57\x91\x2e\xd9\x67\x22\xc3\x28\xcb\xe7\x5f\xe5\xf3\xaf\xf2\xbb\xca\xe6\xf2\xa0\x3f\xf1\x77\x62\x66\x3f\x36\xb2\xd2\x90\x85\x7a\xa3\xfe\x42\x31\x7e\xef\xa5\x59\x5a\x55\xde\x31\x51\xb9\xb3\x74\xa6\xf5\xd1\xf5\x1a\xbf\x57\xa1\xbd\xea\x20\x5f\x7c\xf9\x44\x76\x4b\x72\xfb\x9a\x2d\x59\x1a\x05\xf5\x2a\x5e\x1f\x58\x11\xd4\x4b\xa9\x51\xd3\xa0\x5e\x42\x58\x31\x41\xe9\x82\x7a\x89\xbf\xcf\xe3\x28\xa8\x56\x17\x83\x4a\x40\x44\xb3\xc9\xf2\xe0\xbf\xf4\x08\x18\x2f\x6a\x9f\xde\x82\xdc\xca\x34\x4d\xb2\xa0\x8e\x95\x81\xbf\xa3\x79\xa1\x4a\x3f\xd4\x1f\xaf\x4c\x5b\xd4\xbb\x2a\x28\x07\x96\x5d\x29\x03\x74\x55\xa1\x8a\xf1\x81\x5f\x2a\x05\xad\x7a\x55\xc5\xe8\xc0\xaa\x51\xa1\xbf\x7e\xa5\x0f\x1b\x04\xb2\x9f\x68\xaa\xc1\x5c\x15\xa9\xb7\x22\x16\xbd\xf9\x9a\x97\xe1\xf7\x1e\xdf\x6d\x66\x63\x59\x22\xdf\x35\x9a\xaa\x22\xfc\xde\x63\x69\x64\x36\x14\x05\xe2\x4d\xa3\x99\x2c\xe1\x38\x24\xae\x6c\x5e\xc7\x29\xa3\xb9\x30\x7a\xdf\x75\x14\xd6\x35\x1b\x75\xd4\xdb\xfa\x86\xcd\xbc\x6e\x7b\xef\x7d\x9f\xd3\x74\x9b\xd0\x9c\x73\xa6\x3b\xfd\x09\xbf\xe7\x67\xc3\x0b\xb9\xe1\xc8\x4e\x7f\xe2\xdb\x2b\xc9\x68\x29\x76\x20\xdf\x62\xf5\x13\xa6\x6a\x1e\xe4\x3d\x66\x1e\x3b\x6c\xb2\xbc\x2c\x48\x55\x7a\x32\xc2\x57\x39\xd6\x6c\x93\x67\x73\x56\x14\x16\x17\x7b\x6f\x2d\xef\x9c\xcb\xd6\x2b\xb1\x74\xe7\x37\x34\x2f\xac\xe0\x6b\xdc\x51\x3c\x14\xe6\x51\x56\x30\xee\x7c\x0b\x0a\x12\x2b\x78\xd6\xf9\xb2\x32\x48\xb4\x82\xaf\x9a\x15\xe4\x30\xad\xe0\xaf\x3d\x6f\xf4\xd6\x7f\x81\x3a\x32\xcb\x9e\x70\x8d\xb4\x82\x6f\xf5\x42\xd5\x08\xe4\x09\x2b\xf0\x47\xfa\xcb\xe5\x2e\xfe\xc3\x0a\x7c\x5f\x2f\xd3\xd2\x5e\x0d\xd7\x90\xf7\x2a\xf0\xc7\x7a\x05\xc1\x27\x59\x81\xff\x4c\x2f\x95\xe6\x20\x56\xe0\x7f\xdd\x51\x3c\xcc\xd9\x82\xe5\x2c\x9d\x33\x2b\xf0\xbf\xd2\x2b\x88\xdb\x41\xde\xee\x1b\xbd\x78\x5b\xc6\x09\x2f\x84\x09\xc6\x0b\x2e\x55\x0f\x4b\x9a\x6f\xac\xc0\x87\xe9\xc9\xd4\xba\x1a\x2f\x57\x58\xc1\x78\x64\xbc\x3a\x30\x5e\xe6\xeb\x65\x73\x4e\x74\x86\x92\x77\x0a\xc6\x63\xfd\xdd\x32\x8f\x23\x2b\x18\x3f\xd3\xcb\x12\x20\x6d\x56\x30\xfe\x4a\x2f\xcd\x39\x55\x1a\x16\x92\x2c\x59\xc1\xf8\x6b\xac\xb0\x28\xf0\x4f\x53\xec\x7f\x1b\x4c\x9a\x7c\x80\xb5\x2d\xd8\xa0\x28\xf3\x78\x5e\x5a\x61\x95\xfb\x36\x56\xea\x60\x3e\xb7\x82\x9f\x8b\x42\x3d\xe8\x09\x55\x7a\xad\x28\xc1\xd6\x6c\xc6\x8a\x37\x59\xb4\x4d\x98\x85\x6f\xe1\x12\x34\x38\x1b\x9d\x94\x7a\xaa\x74\x5a\xc0\x43\x38\x6f\xc5\x30\xb6\xed\xd2\xab\x3b\xaa\x62\x0a\x87\x95\x46\xa7\x72\x58\x2b\x51\x43\xb9\x23\x07\x56\x33\x22\xa6\x28\xa7\xf2\x6e\xf4\xa9\x74\xaa\x4d\x59\x62\x76\x82\x7b\x57\xc3\x4f\x71\xc7\xf2\xa6\xe4\x2d\x58\x95\x2a\x29\xe5\x92\xa9\x84\x04\xc5\x77\xc7\x4f\x14\x1c\xb7\x1d\x4b\xa0\x86\x55\x05\xdb\xec\x48\xf9\x50\x4e\xd8\x14\xc7\x24\xaf\xd2\x1c\x50\x84\x53\x48\xc4\x97\x41\x16\x3e\x4e\x1b\x44\x4a\x04\xa1\xe7\x48\xaa\x67\xa1\xd0\xc0\xab\xde\xcc\x98\x51\xbc\x03\x3f\x9e\xfe\x6c\xbd\x2b\x3d\x2b\x6f\x2a\xb4\x31\x2b\x2d\x83\x6f\x66\x16\x09\xbd\x4e\x61\x16\x4a\x5d\x4e\x62\x96\xfe\x01\x7c\x3a\xf9\xf6\xdb\x6f\x71\x35\xbc\x9b\x2c\x3a\x1a\x69\x35\x55\xe2\x55\x40\x2f\x95\x8b\xf5\x74\xc2\x3a\xf0\x65\x16\xbc\x6e\xf0\x57\x9c\xa2\xe8\x41\xe3\x0e\xeb\xd2\x49\x39\xf5\x36\x34\x67\x69\xf9\x36\x8b\xcc\x04\xcd\x46\x25\x29\x67\x55\xa8\xae\x51\xea\xb8\x93\x52\x0b\x72\xdc\xa4\x08\xa7\x29\x1e\x8f\x1e\xd8\x60\x7f\x6a\x17\xc5\xad\x4b\x1a\x43\x9c\x9d\x4c\x4f\x06\xd2\x96\x99\x60\xce\xda\x22\x9e\xa5\xcb\xb0\x82\x4d\xb2\x4c\x98\x2b\xa7\xa9\x0e\x39\xec\xb6\x8e\x18\x20\x13\xc5\x56\xcf\x58\xf7\x91\x17\x2f\xf5\x92\xc6\xba\x46\xac\xa4\xf3\x55\x5b\x96\xec\x58\x5c\x7d\x9e\x7d\x12\x80\x5e\x87\x33\xff\x4c\x5b\x73\xc8\x64\xde\x8d\x01\x2a\x7a\x43\xa3\xb9\x88\x5b\xd8\x09\x64\x63\x12\xf5\xe4\xdb\x22\x9c\x3e\x41\x2e\x82\x1b\x93\xd7\xe0\xd2\x69\xc8\x24\xd1\x0a\x53\xc2\xea\x78\x1a\x62\x24\x2c\x9a\xd5\xb1\xff\xa9\xba\x48\x69\x24\x9a\x89\x49\x29\x63\x11\x68\x33\xc7\x46\xa8\x58\x88\x51\xd5\xcc\xe5\x58\x45\x6e\x8d\xb5\x89\x87\x79\x53\x31\x56\xa2\xab\x7c\x52\x4e\x9d\x1c\xc7\x98\xe1\x14\x05\x4c\x53\xf5\x71\x1a\x6b\x3e\x57\xf5\x4e\x27\xf0\x67\x91\xb3\xd3\x52\xe2\x66\xe4\xf6\x24\x73\xa4\x50\x3d\xee\x87\x8c\x9b\x41\x65\x2a\x8b\xb3\x3a\x0f\xca\x45\xee\x1d\xee\xee\xaa\xc7\xcb\xdc\x3b\xb8\xb9\xb7\xaf\x8b\x8e\x17\xb9\x77\xd4\x1e\x2f\x73\xef\xe8\xe6\x9e\x96\x1f\x43\x9b\x22\xde\x92\x6f\xc2\x55\x73\x9a\xe0\xb8\x27\xc8\x2c\x18\x7c\x6c\x89\x70\x74\x93\xaa\x64\x19\x7f\xeb\x5e\xf2\xfb\xbf\xc2\x48\x52\xc4\x45\x26\x63\xc6\xe8\xb0\xb1\x34\xab\x22\xf1\xda\x42\x40\x48\xa5\xd9\x48\x95\xa3\xb8\x1e\xaa\xd5\x31\xce\x78\x2e\x72\x7f\x3b\x73\x97\x58\x4a\xa9\x24\x25\x85\x7a\xb7\x0f\x5a\x5c\x57\xdd\x29\xc2\xed\x5e\xe7\x45\x01\x61\xf7\x60\xee\xd0\xb3\xe5\xae\x3c\x55\x8a\x70\xa4\x25\x53\x9e\x4b\xaf\xf3\x76\x2f\x70\x68\x58\xe8\x6a\x25\x8e\x0f\xce\x49\x2d\x3b\xaa\xad\x24\x98\xaf\x56\xf2\x44\x09\xfc\x6f\xc0\x11\xa7\x67\xb2\xca\x68\xa6\x37\x2d\xf4\x7a\x69\xa1\x70\xe1\x15\xf9\x9c\xac\x3c\xde\x06\x2f\xe4\x01\xb6\xc1\x0b\x75\x6a\x2d\x71\x64\x9c\x48\xca\xcc\x40\xc7\x8d\xd6\x00\x2a\x2b\x10\x0e\x18\xb3\x7d\x63\x34\xbc\x12\xdf\x79\x8e\xd1\x5f\xd5\x5e\x7a\x8b\xcf\x48\x9d\xdd\x67\x73\x3e\xae\x30\x06\x4e\xe5\x59\x8d\x0e\x3b\x32\x12\x10\xa1\x25\x27\x2d\xd7\xe5\x77\x59\x59\x66\x6b\x65\xca\x22\xf1\x7b\xb8\x1c\x6e\xc3\x6c\x32\x9b\x5e\x1d\x87\x84\xff\x0d\xf8\x3f\x64\x84\xf9\x1f\x97\x6c\xdd\x25\xde\x91\xa3\x98\xe6\xae\xfa\xf2\x11\x9a\x45\xda\xd9\xbf\x93\x59\xa8\x8d\xb3\x7f\x63\x16\x2a\x28\xaa\xd2\x32\x2e\x13\x66\x6c\x2c\xb0\x21\xa9\xea\x43\x68\x6e\xc2\x8c\x4c\xeb\x22\x4c\x77\x55\xe5\x06\x2c\x2b\x9e\xf7\x57\x5c\x79\x51\xbc\x23\x11\x6e\x6b\xb7\x9c\x08\x5b\x90\x69\xd8\xc2\xa9\x23\x7e\xa9\x08\x9a\xd8\xaa\x87\xf4\xdc\x78\x91\x20\xd4\xd3\x15\x44\x2e\xe6\xbc\x07\x74\x27\xe2\x18\xef\x58\xde\xd5\xe5\x9b\xd6\xcb\x87\xba\xdd\x96\x5a\xaf\xdb\xb2\xbf\x53\xed\x5d\x7f\x9f\x91\x4c\xb1\x0c\x7d\x46\x37\xc9\xf3\xbe\xb9\xbf\x68\xbe\xe3\x7d\xc6\x26\x0a\x77\x1c\x89\x82\x37\x8b\x04\xba\x1e\x48\xe9\x99\x21\x78\x44\x0a\x1e\x19\xec\xf2\x60\x84\x47\xef\xa6\xa9\x32\x05\xc1\x95\x20\xa7\xf0\x14\x74\x2e\xf6\x41\x8b\xd1\xde\xdd\xd5\xdf\x2b\xf2\x52\x3d\x19\xa7\x91\x11\xc3\x9d\x8f\xee\x86\x2d\xe3\xf4\x27\x5a\xae\x1c\x4e\xf3\xba\xb7\xd2\xce\x5d\x86\x07\xd0\x4f\x7c\xca\xea\x23\x07\x1f\x91\x1c\x90\x59\xea\x6e\x25\xd5\xe8\x68\x52\xed\xaf\xce\xa6\xf5\xee\x1b\x0f\xb7\x28\x04\x1b\xf6\x82\xc9\xc1\x29\x40\xc2\xcf\x2a\xfa\xe8\xa9\xc5\x47\x41\xd2\xe4\x16\x73\xd8\x64\x3f\x1e\xe6\x66\x39\xe7\xea\xff\x6b\x38\x57\x2e\xff\xb5\x05\xc0\xf4\xff\x58\x01\x30\x46\x66\x9e\x16\x80\xe8\x41\x08\xe6\x75\x28\xec\x63\x5d\x70\x0a\xf3\x47\xf2\xde\x07\xa6\x31\xdd\xf9\x23\x99\x6e\xc1\x02\xea\xc9\xa4\xf0\x3d\x7c\xb8\x11\xe9\x4a\xdd\xa3\x69\x45\x27\xf3\xc3\xa2\xc3\xfb\xd8\x50\x30\x38\xaa\xf7\x54\x15\xab\x86\x53\x01\xfe\xcb\xc2\xd6\x51\x9d\xc8\x94\x74\xd5\xac\xd8\x1c\x99\x4b\x81\xd7\x77\xc7\x4f\xfb\xaa\x7e\x8a\xe7\xbf\x8b\x14\x11\xbc\x62\x58\x42\xf6\xd6\x7c\xc7\x3e\x6e\xe8\x9c\xbd\x66\x8b\xd2\xa1\x90\x0b\xe3\x81\x41\x1d\xd4\xa0\xe2\x30\x36\xd9\x2e\x08\x1b\xad\x38\xbb\xab\xfe\x57\xc1\xbd\x93\xa9\x78\x36\xf8\xd4\xe3\xe6\x73\xb0\x10\x36\xe7\x23\x48\x8f\x13\xc3\x8c\xc6\x84\xb0\x3a\x50\x91\x88\xf4\xf9\x00\xe4\xc7\x5f\x0a\xfa\xf1\xa3\x61\x3f\x6e\x01\xff\x03\x87\x0b\x87\xbe\xa0\x78\xda\x58\x2f\xc7\x9c\xed\x67\x9a\x29\x79\xb9\xcf\x06\xc7\x21\x3d\xb4\x3c\x05\x68\x29\x3c\x85\xcb\x78\xcd\xbc\x81\xf3\x29\x3f\xc2\x45\x69\x06\x2e\x7a\x96\xab\x75\x0a\xde\x49\x26\xba\xf6\x0a\x8e\x4a\x6b\x55\x36\xae\xfc\xee\x51\xbc\x84\xd4\x10\x13\x69\x9f\x98\xc8\xe7\x2b\x0d\xa9\x14\x15\x40\x58\x16\x1c\xeb\x82\x07\xa9\x84\x31\x91\x2f\x11\x1e\xf5\x76\xc6\x5e\x36\xef\x39\x15\x08\x98\x76\x71\x0a\x96\xc2\x90\xf8\xc7\x29\x91\xeb\x7d\x7d\xaa\x6a\xd1\xbe\x5a\x43\xef\xeb\x53\x6d\xec\xa7\x8b\x6c\x90\xfc\xed\xc1\x4d\x77\x77\xf7\x40\x9d\xe3\x63\xea\x54\x78\xad\xb2\x52\x36\xd9\x0e\xbc\xed\x94\x72\x23\x92\x2b\xbb\x81\x39\xc9\x95\xbd\x00\xde\x74\x11\x56\xa5\x14\x0b\x34\xa5\x98\x12\xd4\x82\xae\x01\x76\xec\xfd\x52\x48\x6c\x58\x88\x37\xf7\x36\x92\x5b\x50\xb6\x38\x9d\xf0\x92\xdc\x1e\x82\x8d\x08\x4b\x7f\xe4\x3f\x8e\xfc\xc7\x18\x7e\x8d\x39\xe6\x2f\x5a\x57\xb6\x62\x61\xee\x15\x3a\x71\x4e\x96\x13\xde\x01\x21\xf4\x8a\xff\x0d\xd8\x34\x54\xf9\xbc\x9c\x58\x70\xda\x38\x17\xa7\x73\xf6\x80\xfe\x50\x22\x48\xa6\x09\x7b\xb5\x54\x7a\x88\x0b\xa1\xaf\x1e\xb4\x8b\x86\x96\xcb\x5c\x87\x5e\x59\xdd\xef\x68\x60\x59\x08\x67\x5e\x9c\xa6\x2c\xff\xe1\xd3\x9b\xd7\xa4\x6c\x70\xa2\x19\xc2\xf1\x29\x5c\x49\xc6\x52\x8a\x4a\xb9\xd2\x87\xe0\x9d\xa6\x49\x30\x22\xc8\xe0\x63\x97\x01\x81\x1e\xfc\x5a\x16\x75\xac\x15\xc3\x25\x3a\x9d\x1e\x81\xe6\x70\xe0\xc5\x0b\x67\xe6\x1d\x21\xf6\x8d\x6d\xab\x5f\x8d\x8c\x4c\x07\x92\x6b\x91\xe7\xd6\x64\x72\x94\xab\x2c\x96\x78\x1a\x56\xed\xba\x12\x4b\x9b\x0e\x21\x00\x3b\x74\x5b\x90\x9d\x77\x90\x4c\x91\x75\xf4\x2d\x4c\xc9\x7a\x32\x9a\x86\x3e\xaf\xc3\x81\x6c\xdb\x0e\xd4\x71\x77\xde\x1e\x0f\x7d\xcc\xab\x8d\x45\x35\x7f\xaa\x94\xf2\xb4\x53\xfb\x10\x26\x64\xe7\x1d\xdd\xd2\xdb\x64\xc5\xd3\x9d\xb7\xc2\x19\x59\x38\xf2\xcb\x7c\xd6\x78\x4c\xc8\xe1\x8a\x05\xb5\x85\x60\x4e\x92\x61\x7a\x3e\x0e\x73\x08\xa7\x96\x93\x11\xc2\xb9\x9b\xba\xcf\x2e\xe7\x57\x59\x25\xd4\xf1\x23\x8e\x58\x23\x2b\xc8\x34\x11\x33\x17\x1b\x47\x78\x30\xf3\xb1\x5c\x39\x99\x2e\xfb\xee\xbc\xc3\x90\xb6\xb6\x0f\x52\x65\xd5\x49\x25\x37\x60\xd5\x35\x3b\x94\xd7\x49\xbc\x4c\x89\x95\xcb\x63\x5c\x87\x4c\xf3\x13\x1c\x48\xee\xe3\xbb\xe4\xcd\x00\x71\x75\xb9\xb8\x63\x94\xa2\x83\x6d\x0b\xa3\xab\x03\x41\x08\x55\x19\x3a\x49\x36\xf9\x86\x18\xe7\xc5\x64\x34\xc5\x7b\xf2\x48\x1a\x04\x6c\x12\x18\xe7\xfe\x98\x96\xce\x4d\x0d\x63\xec\x8f\x90\xbb\xbf\x9c\x0f\xf7\xb6\xad\x97\x93\xbe\xca\xc3\xfd\xf9\x18\x86\x2e\x52\x96\x5d\x37\xb6\x82\xda\x03\xac\xb8\x2e\x21\xa4\xa1\xa4\xd1\xef\x48\xee\x95\xd9\x4f\x2c\x9f\xb3\xb4\xfc\x0c\x79\x46\x9d\x11\x0a\x9d\x77\x97\xfe\xdd\xdd\xbb\x8b\x2a\x9a\xd2\x3b\x88\x93\xf9\x8e\x23\xc9\x35\x61\x0e\x07\xff\xbb\xa7\x3b\x6f\x2f\x25\x28\x59\x26\x6e\x2d\x6a\x29\xb2\x17\x0a\x71\xca\x84\x2c\x09\x10\xc0\x2b\x4d\x5c\xbc\xaf\x8d\xc6\x85\xe2\x55\x43\x22\x94\x22\xdc\x35\xa6\xce\xce\x3b\x22\xd5\x69\x5d\xe4\xee\xbc\x15\x14\xeb\xc2\xda\xaa\x16\xd6\xc6\x44\xdf\xf1\xb6\xed\xfc\x89\xb9\x8c\xff\xcc\x64\xc6\xfd\xb3\xa1\x8e\x44\x74\xd4\x9e\x56\xf3\xdd\x03\xf3\x03\x36\xf5\x61\x1e\x40\x12\xc7\x43\x29\x42\xa7\x71\x1c\x79\x41\x8e\x70\xd2\x85\xaa\xf8\x0b\x29\x5e\x45\x94\xf6\x58\x10\xa9\x16\x79\x3a\x68\x1b\x53\xdb\xb2\x22\xf4\x87\xb6\x9b\xb3\x0d\x49\xdc\x17\x9d\x5b\x5e\x92\xd5\x62\xf8\xa2\xbd\xa5\xcf\xc7\x21\x73\x3b\xca\x2f\x23\xf0\x0a\x88\xba\xda\xdc\x43\x95\x30\x03\x8a\xc9\xc8\xe8\x11\x74\x06\xa8\x15\x33\xa9\x92\xa0\x3d\x1d\x1f\xed\xa5\x3d\x87\x36\xed\x39\x7d\x39\x7a\x1e\xfe\x04\x76\x1e\x9a\xc8\x29\xa2\x13\xfe\x19\xf2\xf2\xab\x24\x2f\x58\x27\x30\x82\xac\xf8\x08\xbf\x24\x02\x8b\x39\x59\x59\x49\xb2\xa2\xca\x78\x49\x58\x6d\x0a\x41\x6a\xf0\x4b\x6d\x2f\xb0\x7a\x2f\xbc\xec\xdf\x02\xa7\x95\xae\x8f\xd1\x54\x2b\x79\xef\x45\x61\xcf\x4d\xe1\xf8\xff\x9d\x9b\x42\xd0\xcb\xce\xa2\x78\x27\x32\x29\xe8\x92\x4a\xb3\xf4\xd8\x5d\x3a\x6e\x14\x3f\xfa\xb2\x51\x33\xa4\xfa\xf2\xcb\xc6\x0e\xbd\xc7\x43\x97\x8c\x92\xb9\x69\x6b\x33\x1e\xc5\xe5\xb2\x7b\x2e\xcb\x99\xbe\x13\x4b\xef\x20\x36\x19\xd3\x68\x4a\xe9\x1d\xcd\x42\xe9\x08\xe1\xed\xcd\x62\xa9\x36\x2f\xbd\x95\x2c\x37\xa1\xa9\x0b\x7f\xb3\xee\xbb\xd1\x49\x63\x59\x5b\x2b\xda\x5a\xcc\xf6\x3a\x4e\x1f\xb0\x4a\x08\xa9\x6d\x3b\x8f\x16\x90\xa5\x35\xe5\xbf\x02\xd3\x04\x93\xd9\x4c\xb0\x83\xab\xbb\xca\x07\x56\xf6\x9e\x25\xcd\xf5\x25\xf5\x41\x5a\x1a\x6d\x0e\x56\xc0\xd4\xea\xe6\xda\xea\x32\xb5\xba\xb9\xb1\xba\x4c\xad\x6e\xde\x70\x6e\x51\xab\x9b\x37\x2f\x00\x4b\x9d\xde\x1d\x0d\xce\x76\x5c\x9f\x41\x0f\xc9\x65\xd9\x3d\xf3\xca\x1a\x23\x5c\x99\xe7\x46\x35\xc2\x7d\x83\xcb\x85\x59\xae\xce\xc7\x43\xe6\x29\x36\xb0\x71\x00\xf1\xf2\x21\xd4\x51\x6f\x3b\xc4\x42\x21\xe2\xe5\x70\x5b\x3d\xb4\x5c\x47\x40\x56\x9c\x7a\x81\x3c\xd8\x64\xb0\xc1\x47\xed\xca\x42\xfb\x48\x8c\x0b\x4d\x64\x4c\x71\x66\x1c\x72\x05\xc2\x79\xf3\xd4\xcb\xcd\xdd\xd5\xa1\xee\x6c\xa9\x5c\x66\x75\xde\x03\xed\x2a\xbe\xf4\xc0\x40\x8b\xa3\x66\x43\x23\xea\x58\x80\xf7\x95\xba\x91\x98\x4a\xb3\x4f\xd9\xa6\xa3\xb6\xd2\x31\x2a\xc3\x13\x6d\xe7\x38\xca\xfb\xae\x2e\xbc\xf7\x16\xd9\xe8\x6f\xf8\xd7\x2f\x41\xa2\xbe\xe5\x1b\xd4\x26\x70\x7c\x66\x86\xa0\xde\x35\xf3\xd6\x78\x1b\xab\x40\x8d\x82\x46\xe5\xa6\x32\xd7\xb1\x04\xc9\x50\x00\x2d\x48\xa7\xca\xd4\x6c\x01\x4b\xd7\x00\xaa\x41\x79\x9c\x02\xb5\xe8\xd1\xbd\x60\x35\xbb\xfc\xb2\xcd\xf9\x20\x5c\xe5\x0c\xfb\x01\xab\x40\xd0\x1e\xf3\xc3\xa0\xd5\x6a\xb7\x61\x7b\x34\x60\x9b\x90\x0e\xf5\xfa\x48\xc2\x4f\xa7\xd1\xb9\xc3\x70\x82\x7d\xdc\x33\x1f\xd9\x2b\xee\xfe\x54\xd7\x20\x8f\xf7\x0e\x72\x2c\x9b\xda\x76\x53\x27\xae\x82\xa5\xb4\xf5\xd2\xd5\xb0\xc7\x8d\x71\xaf\xf0\xb8\x77\xdc\xe3\xce\x81\x8f\xef\x1d\xf9\x58\x1f\xfa\x9f\xb3\xed\x69\xee\x7a\xe5\xea\xab\x6d\xa1\x39\xff\x62\xce\x52\x11\xb6\xf5\xbe\xdd\xd7\x46\x12\xd5\x9d\x8e\x37\x8f\xe8\xaf\xda\x77\xad\x33\x5a\x75\x78\xec\xe9\xf0\x11\x9d\x1f\x1b\x9d\x8f\x3b\x7a\x1f\xff\x13\xdd\x57\x6b\xf6\xb0\x95\x16\xba\xfd\xf2\x6b\xd4\xd9\xe3\xef\x51\x9f\xfd\xcb\xf9\xfa\x47\x33\xe0\xdf\xe7\x71\x04\x11\x23\xbf\x98\xfb\x7e\xc4\x3d\x62\xfc\xbf\xe7\x5e\x42\x65\xd5\xd3\x8e\xe7\xa4\x7d\x3d\xb0\x22\x95\xdb\x1c\x5c\x15\x74\x2a\x8b\x45\xbe\xef\x6e\x6d\x06\x07\x9d\x52\xf5\x2a\xde\x3b\x22\x13\xeb\x28\xb4\x2d\x53\x2c\xe3\xfa\x4c\xa6\x10\xd7\x07\x2f\xf8\x3f\x70\xf3\x23\xc2\xa1\x44\x7a\x38\x94\xe5\x24\x9f\x92\xfb\xbf\x14\x4d\xf2\x29\xc2\xbc\xa2\x6d\x3b\xf3\xbe\xfa\xcb\x3c\x8e\x34\x69\x5c\x34\xda\x3c\x54\x5b\xca\xe1\xa2\xf6\xec\xa1\xda\x3f\x81\xe7\x50\xaa\xea\x43\xe4\x96\x19\x8c\x8b\xff\xab\x34\xdc\x64\x8c\xc2\x8c\xac\xa4\xfe\x1a\x27\xca\x04\x24\xeb\x53\xec\x80\x87\xed\x8c\xd7\xae\x32\xc4\x83\x56\x36\x94\x73\xae\x7a\x58\xc0\x73\xe2\x15\x4c\x44\xbf\xa0\xc5\xaa\xf1\xe8\xcc\x60\x64\x89\xa1\xbc\xe0\x30\xc3\x89\xa6\x99\xe0\x60\xc1\x31\x61\xce\x96\x4b\xfa\x29\xa1\xce\xb6\x52\x6e\x6f\xbd\x15\x6f\xaf\xeb\xcb\x12\xa5\x1a\xe0\xd2\x85\xec\x88\x3f\xb9\x5b\x6f\x2f\x4a\x2a\x2d\x5f\xa2\x25\x84\x3d\x9d\x8c\xe7\xd3\xc3\x28\x05\x0a\x32\x0e\xba\x83\x09\x3a\x79\xc9\xf1\xa8\xa5\x01\x95\xca\x82\xcc\x6c\x7b\x56\x2f\x48\xb8\x78\x08\x6c\x4d\x98\x3d\x02\xc5\xe0\x4b\x3a\x58\x1f\x81\x68\x52\x17\xd7\x85\x08\x35\x16\x40\x2e\x7a\x58\x9c\x6a\x4d\xf6\xf5\x32\x7d\xc1\x02\xe1\xad\x77\xe4\xcf\xba\xbe\x26\xd1\x54\x96\x08\x3f\x04\x97\xc9\xd4\x5c\xc3\x07\x8f\x87\xc7\x1e\x05\x5f\x3d\xde\xdb\x42\xbe\x86\xe0\x11\x77\x77\x4a\x2e\xbf\x20\x2a\xdf\xf9\x93\x8b\x28\xde\x0d\x80\xb3\xd4\xb8\x4a\x70\x02\x19\x72\x48\x58\x03\xe0\x66\x89\x25\x8c\xe8\x86\xe2\xda\x65\x08\x76\x55\xc1\xe0\x89\xcb\xdc\x27\xa1\x75\x79\x71\x1e\xc5\xbb\xcb\x27\xa1\x41\x49\x71\x42\x46\x78\x45\x46\x90\x9d\x14\x22\x67\x88\x94\xa1\x55\x68\x59\xc8\x19\x9a\xb8\xa4\x9c\xc4\xff\xae\xca\xc0\x26\xd7\x29\xf4\x60\x54\xf4\xdc\x49\x86\x25\x44\xd8\x42\x97\xbe\x20\x9b\xa2\x27\xa3\xa3\xed\x24\x9e\xf2\xae\xa6\xe7\x34\x5c\x91\xad\x7c\x75\xaa\x82\x81\x15\xc4\xc7\xf7\x36\x4b\xb4\x66\xae\x2f\x23\xc0\xc9\x20\x57\xc2\x9b\xbe\x00\x37\xfa\xfa\xfb\xbc\x07\x32\x46\x39\xd9\x4e\xe2\x7f\x57\x4d\xa7\x38\x23\xf5\x37\xae\xb6\x13\x27\x76\x7d\x54\xbf\x0e\x46\x38\x72\xc9\x7d\x70\x8f\x68\xb1\xaa\xe0\xbe\xa6\xf9\x32\x4e\x87\x20\xe9\x72\x80\x67\xae\xc5\xd6\xe1\x60\x43\xa3\x28\x4e\x97\x43\x2e\xf9\x06\x03\xcb\xcd\xdd\x27\x6c\xad\xad\x84\x0a\x35\xfc\xcf\xb8\xd7\xfc\xcf\xf2\xaf\xd1\x33\x79\x49\x4e\x4b\xc0\xb3\xa9\x0e\x8a\x8b\xd9\x92\xa5\x2c\x07\xbb\x77\x78\x77\xe6\x9f\xc2\xec\x71\xac\x8f\x70\xfd\xac\x19\x9f\xec\x21\xc6\x47\x26\x65\x30\x35\x34\x42\x65\xfe\x42\x57\x48\xd0\x2a\xb8\x1c\xbd\x62\xa4\x15\xc1\x89\xde\xdd\x71\xb0\x15\x25\x4d\xe7\xfc\x59\x0c\xf0\xaa\xc3\x59\xe8\xbb\xe3\x8f\x91\x43\x51\x40\x03\xe7\x01\x0d\x25\x66\x9d\x22\xa5\xf0\x00\xc3\xa5\x27\x4c\xbe\xe3\x9d\x21\xac\x30\xd4\x0b\x45\x15\x3d\x4c\x07\xbb\xcc\xad\x97\xa5\x6c\xc6\xd6\x33\x19\x72\xc5\x1f\xe1\x5b\xe1\x4c\x16\x48\x1f\x7c\xfe\x1b\x47\x4c\x2f\x54\x4f\x58\x06\x1d\x08\xf4\x08\x04\x8f\xd3\xd9\x16\x5f\xa0\xb3\x2d\x36\x34\xb5\x50\x28\xc2\x3e\xa8\x00\x45\x8e\x05\xbb\xd0\xc2\x72\x1b\x06\x83\x51\xb5\xf5\x82\xc1\x08\xfe\xf3\xf9\x76\x14\xd4\x91\xbf\x06\x5b\x2c\x13\x60\xa1\xb2\xa4\xd2\x9c\xae\xaa\x28\x06\x4d\xdf\x11\x7a\xc2\x49\x67\xb0\x02\x2f\x67\x9b\x84\xce\x99\x73\x6e\x9f\x2f\xb1\x65\xd3\xf5\x26\xb4\x50\x5d\x6a\x41\xe9\x3f\xb6\x59\x69\x14\x5f\x40\x71\x62\x16\x5e\x42\xe1\x92\x17\x9a\x98\x2f\x40\xde\x29\x63\x8a\x57\x2c\xfa\x0c\xc8\xac\x9e\x44\x46\x5f\x08\x7d\xab\x8a\x3e\x64\x7b\x9c\x9a\x2e\x19\x15\xde\x0b\xdc\x92\x31\x48\xd9\x0e\x42\x90\x92\x54\x0f\x94\xe1\x34\x51\x48\xaa\x53\x64\xc4\x4f\x22\x32\x7e\x8b\x1e\x16\x59\x92\x64\x7b\xd1\x45\xc5\xfc\x75\xdb\x6f\xc8\xdc\x7d\x7a\xbf\xa6\x0b\x5c\xc7\x78\xef\x35\x35\xc4\x2b\x42\xb9\xe0\x78\x78\x9a\x7b\x7b\xf7\x6b\x7e\xca\xc1\xf3\xf1\x69\xee\xad\x86\x5f\x8f\xc2\x95\x5b\xb8\xfe\x65\xee\xed\x6d\xdb\x59\x91\xd5\xd0\x1f\x8d\x86\xc5\xd0\x81\xf4\xe3\x5c\x5c\xad\xbf\xd7\xb5\xcd\x9a\xa3\x6d\x6f\x2d\x5d\x87\x9a\xb8\x2b\x2d\xee\x51\xbb\x52\x99\x6d\xc8\x56\x18\x08\x89\x63\x2d\xf3\xd4\xe6\x15\x04\x8d\x4b\xbe\x4e\x2d\xf9\x30\x4c\x3b\xf6\x2d\x8e\x55\xe0\x10\xed\x03\xb5\xe0\x1c\xf5\x7d\xbd\x5a\xba\x06\xbd\x54\x3b\xdc\x40\x37\x8b\x26\x7b\x7a\x2c\x2c\xb8\xaa\xbd\x07\x85\xaa\xd4\xc0\x0f\x62\x8a\xbc\x7d\x6d\x83\x34\xec\x20\x4d\x4c\x6e\xd6\x07\x00\x24\x13\xf6\xcb\x3f\x0c\x0b\xd3\x95\x7b\x80\x43\x1b\x53\xef\xd3\xe8\x18\xa4\x0f\x02\x13\xeb\xcd\x24\xf5\x6b\x9d\xc2\x9d\x04\x99\x73\xc5\x5f\x86\x63\x4d\x05\xb5\xe6\x4d\x45\xef\xdd\x3f\xed\x99\x1b\x0a\xfe\x83\xcb\xbc\xfd\x90\x0e\xfd\x07\x91\x54\x5d\x88\x9c\x5a\x98\xd2\xa9\x4a\x69\x1e\xf0\xbc\x55\x7b\xdd\x9a\xf7\x3c\x29\x2e\x94\xc6\xef\x56\xce\x34\x28\xf1\x21\x60\x58\x04\x23\x0a\x26\xd3\x13\xde\x92\xdb\x13\x8e\xc4\xb1\xad\x8c\x26\x39\xd1\x89\x2a\x36\x66\x4e\xfc\x70\x5e\x0b\xe4\x5a\xee\x20\x68\xd4\x91\xec\xd4\x89\x26\x73\x2e\x8d\x9b\xcc\x80\x10\x29\x34\xf1\x98\xd7\x59\x90\x5b\xce\x06\xf2\xe1\x07\xb1\xb3\xc4\x1b\xe1\xca\x00\x22\x0a\x1f\x4d\xc0\xab\x89\x9f\x50\x27\x91\x7d\xc7\x05\x04\x4f\x4a\x58\xb0\x11\xe1\xad\x12\x86\x05\xb3\x2e\x7b\x00\xeb\x37\x18\x8d\x8a\x82\x8a\xb7\x13\xde\x76\x4a\x16\x27\xdd\x50\x82\xa9\x58\xb9\x65\x77\x56\x3a\x2e\x8c\xed\xc8\x4c\x66\xac\xad\x42\x83\x80\x7b\xf0\x01\xc0\xbe\x53\x2c\x1c\xc3\x33\x1c\x41\x8a\x22\x5c\x60\x2d\xd3\xff\x91\x4c\x20\x01\xbe\x66\xcc\x36\x27\xa3\x70\x7e\x71\x00\x68\x1e\x27\xf3\x69\xdf\xd7\x8f\x96\xeb\xcc\xaf\x7c\x77\x0e\x39\xf1\x64\x86\xcc\x0e\x1e\xeb\xe3\x2a\xdb\xff\xc6\xf2\x4c\xe4\xd1\xb7\x10\xbe\x11\xb5\x7e\x50\xb9\xd4\x55\xe4\x41\x18\x94\xf8\x3a\x6d\x2d\xe9\x9e\x50\x0e\xee\x05\xd9\x4e\xf6\xc2\x8d\x44\x04\x0f\x3e\x92\xbd\x77\xdc\xd1\x04\xec\xcd\xc4\x4f\xdb\x3e\x5b\x2b\xcb\xa4\x7d\xe5\xa9\x81\x16\x5e\xb5\x32\xe4\xcc\xaf\x83\x6a\xde\x83\x2c\xe2\x4b\x08\x5f\x93\xe3\x64\x03\x3a\x8d\xa1\x3f\xc5\xef\xc8\x75\x1b\xe4\xf8\x05\x79\xa7\x80\x2d\x47\x74\x8d\x45\x7b\x80\x79\x54\xa5\xe8\x92\x9d\xa2\x30\x57\xb6\x9b\x0b\x7c\x7b\x04\x14\x7a\x71\x42\xb2\x0d\x21\x37\xb6\xed\xf0\x21\x57\x60\x62\x90\x58\xa6\xca\x61\xe2\x94\x6d\x9a\xac\x8d\xe7\xee\x2e\x53\xec\x79\x9d\xc2\x4c\x0d\x70\x05\x44\xad\xf9\xfa\x21\x67\x81\x33\xc0\x49\x63\xdf\xac\xb2\xbd\xd8\x99\xef\xd2\x6a\x9c\x96\x4a\x7a\x60\x89\x5b\x15\x8a\x1b\x66\xfa\x12\x2d\xd8\x86\x02\x91\x88\x53\x26\x13\x67\x54\xf1\x38\x4b\xef\x20\x02\x60\x57\x27\x11\xeb\x3a\x80\xea\xef\x50\x3d\x14\xb2\x8a\xbb\x26\xf7\x98\x16\x7e\xad\xe2\x50\xc4\xab\x49\x3a\x0d\xf3\x1a\x2b\x6c\xdb\xb1\xf8\xa1\x07\x37\xe4\x2e\x89\xaf\xac\x8b\x9b\xfc\xfc\xd2\x0a\xac\x81\x85\x30\x75\x89\x75\xc1\x59\x54\x29\x16\x3e\x59\x64\x69\x39\xdc\x0b\xaf\xc6\xc1\x4d\x96\x44\xe1\x40\xca\xe4\x96\x9b\x8b\x9d\xee\x5a\xe1\x93\x4b\xfe\xa4\x08\x89\x6b\xc1\xcb\x8a\x68\xb8\xd6\xc5\x39\xef\xf3\xd2\xaa\x72\x39\xd0\x13\x67\xee\x0e\xe2\x6d\xf0\x27\x67\x05\xf6\x37\xd5\xc4\xd0\x6d\x2c\xa6\xc4\x27\x74\x69\xa1\xb0\x9a\x8b\xe5\x42\x3d\x0d\xc7\xae\x9e\x28\x91\x78\x55\x2d\xe8\x13\xbe\xc3\x5d\xeb\x72\x70\x71\x73\x69\x80\xa0\x77\xbe\xed\x09\x5e\x9c\xdf\x5c\x06\xf6\xbf\xf9\xdf\x8c\x42\x5e\xe1\x68\xce\xfe\x54\xcf\x5e\x53\xc0\x64\x5f\x6a\x78\xf3\xf5\x17\x68\x65\x6a\xb6\xde\x14\xa0\xaf\xca\xe0\x56\x7e\x2a\x28\x4f\xff\xbf\x12\xde\xcd\x41\xb7\x83\xb2\x20\x5c\x90\xd8\xc9\x20\x45\x1e\x54\xd5\x83\xa4\x70\x76\x3c\x76\x12\x84\xb7\x2d\x1e\x61\x45\x8b\x4f\xd9\x76\xbe\x82\x28\x4f\x0b\x3a\x67\x33\x62\x55\x91\xbb\xeb\xa4\x2a\x50\x07\xbc\x1f\x95\x7c\xfb\x26\xbb\x89\x13\xf6\x82\xed\x62\xde\xe6\x7c\x0d\x8f\x77\x34\x8d\xf2\x2c\x8e\xce\x97\xb1\x48\x68\x96\xd2\x5d\xbc\xa4\x65\x06\x36\x02\xbf\xb0\xbc\x88\xb3\x54\x89\xc8\xea\x8b\xcf\x41\xd4\x8c\x84\xa2\x61\xfb\x38\x45\x83\x11\x08\xaa\xd6\x37\x6c\x1f\x77\xd1\x22\x62\xdb\x49\x60\x56\xc1\x40\x2b\x2a\x36\x13\xd4\xd3\xf8\x06\x67\xa9\x85\xdb\x17\x8c\xb6\x06\x97\x83\xb0\x61\x35\xa5\xdf\x91\xce\x4c\xe9\x5c\xc4\xd5\xfd\x58\xd2\x32\x9e\xbf\xa6\x47\x96\xcf\x3a\x04\x75\x51\x49\x0b\xba\x25\x6a\x9e\xcc\xc9\xf5\xb1\x7c\x37\x4b\x71\xa6\xea\x1a\x9d\x45\x47\x19\x67\x3d\x7f\xcb\xb2\xb5\x70\x4b\xd5\xdf\x80\x2a\xad\xf9\xca\xfc\x78\x0d\x28\xd2\x1d\x67\x5d\x87\xae\x76\x38\xf0\x3a\x66\x4f\x05\x2b\xa5\xd3\x7c\x77\x87\x66\x4f\x22\x06\xea\xa4\x9c\x12\x66\x76\xd3\x5c\x93\x76\x74\x75\xa8\xf0\x1c\xc0\xc0\xea\xd8\xb2\xa2\xb8\x9e\x6c\xfd\x26\x4e\x63\x3d\xb4\x5a\x55\xae\xe3\x08\x4d\xe3\x35\x47\x5c\xde\x5e\xba\xec\x1b\x51\x2c\xaf\xe5\xfb\xc1\x1f\xbc\x02\xa4\x73\x81\x48\x41\x03\x15\x29\x08\x9c\xb4\x44\x52\xaf\xf5\x86\x96\xfc\x38\x08\x07\x51\x5c\xd0\x9b\x24\x4e\x97\x03\xa3\x7f\x4f\x99\x25\x54\xd0\x30\xa2\x67\x3b\xb7\x46\xed\xe0\xcc\x3f\xe1\xb3\x2a\xa9\x44\xc7\x56\x1b\x49\x9f\xe3\x28\xfa\x94\xc9\x48\xcf\x8d\xb5\xd1\x5e\xf5\x84\x9e\x54\x62\x93\x0c\xff\x5b\xaf\xb8\x2c\x0f\xcb\xb6\x40\x55\x21\x68\x53\x11\x64\xa2\x6a\xe7\xdb\x06\xd2\x76\xd6\x69\xa2\x6f\x63\x52\x42\x9d\xf4\x2a\xcf\xd6\x8f\x9b\x59\x58\xb6\xe3\xd7\x18\x53\x68\xbd\x5d\xdc\xfb\xb6\x63\x0a\xad\x3a\xad\x29\xe0\x06\xb4\xdb\x3b\xd2\x20\x3a\x6d\x89\xf9\x61\xca\xd6\x65\xec\xd3\x6a\x9a\xeb\xcd\x94\x91\x8e\xfb\x55\x0b\xc4\x4d\x2a\xd7\xda\x8e\x02\x75\xeb\x38\xb6\x33\xa7\x52\x58\xc8\xe8\xce\x6a\xbf\x71\xe2\xa9\x77\xe5\xa0\xce\xaf\xb5\xc8\xe5\xe3\x3e\x79\x26\xcf\x32\x15\xc3\x1d\xe0\x52\x59\x46\x80\x36\xb0\x8b\x38\xf0\x41\xb5\xbe\xd8\x1a\x59\xeb\x8b\x7d\xb8\x76\xff\xe2\x70\x2e\xa3\x44\xdd\xdb\xf8\xca\x44\x0c\x79\x42\x55\xcf\x9a\xed\xa8\x8c\x50\x6b\x6c\xf7\xa0\xe7\x3c\x6b\x24\x38\x55\xbd\x55\xd1\xd4\xcd\x1d\x54\x1b\xee\xe9\x34\x20\x2c\x44\xbe\x9b\x6c\xab\xe5\xe2\x40\xb7\x4c\x85\x15\x1f\x61\x56\xc5\x56\x3f\x61\xbf\xe2\xb0\xcb\x16\x5e\x73\x6c\xe8\xf3\x3a\x15\x76\xa9\x02\x9a\x29\x89\xa5\x87\xa3\xb4\x46\x80\xe8\xfc\x1f\x68\x19\x67\x0e\x43\x61\xa9\xa9\x51\xa8\xb2\x2b\x2d\x75\x45\x0c\x55\x26\xa8\xa5\x72\x31\xf2\xf6\x4f\x53\x5c\x2a\xe3\x4d\xea\xad\xe0\xd1\xf0\x42\x52\x06\x9d\xa5\x69\xe8\x49\x95\x01\xa8\x7f\x46\x52\xdb\x66\x5e\x31\xa7\x09\x73\x52\x9c\x0a\x27\x9f\x06\xb4\xaa\x88\x43\x5c\xd6\x4d\xb2\x5a\xab\x34\x0a\x7b\xce\xd2\x1e\x1f\x10\x2e\x4a\xb4\xb1\xca\x70\xb0\x96\x98\x60\x1c\x64\x1d\x21\x71\xc6\x4f\x3b\xab\xd5\xbe\x1b\x55\x06\x0e\x4e\xec\x3e\xb0\x79\x39\x23\xb7\x87\x80\x79\x07\x7c\x0c\x98\x77\x74\x99\xb7\x72\xa9\xfb\x15\xde\x07\xcc\xdb\x63\x19\x5d\xfa\x41\x6a\x72\xd2\x72\x5e\x18\xd3\x7e\x2b\x02\x48\x2a\x31\x73\x53\x2d\xae\x85\xc2\xb2\x41\x97\xb1\xf9\x38\x2f\x0f\xb3\xd6\x60\x21\xdd\x42\x83\x62\x37\xd8\xa5\xbe\x76\x5d\xbc\x47\xc5\x5a\xdc\xc3\x91\xe5\x46\x5d\x45\x4c\xaa\xf7\x5d\xb7\x4d\x00\xa3\x82\x25\x43\x55\xcb\x6a\x36\xea\x37\x49\xee\xac\xa8\xa2\xc4\x75\x80\x88\xe8\x9b\xa7\x7d\xd2\x99\x9c\x64\xf7\x5c\x16\x8f\x9a\xcb\xc2\x9c\xcb\xe2\xb1\x73\x69\x56\x34\xe7\xd2\x7c\x3b\xdf\xe6\x45\x96\x13\x4b\xc5\xcf\xec\x58\xdc\x8e\x19\xd7\xa7\x77\xd7\x2a\xeb\x87\x41\x9b\x9a\xa7\x6c\x3f\xf8\x71\x4d\x97\x2c\x2c\xef\x9d\x3f\x67\x07\x45\x0c\xcf\x9a\x6e\x74\x4e\xda\x9c\xa7\x3f\xaa\x4a\xb4\xcc\x02\xd6\x2a\x8e\x22\x96\xd6\xb5\xd5\xbc\xe7\x59\x32\x14\xe4\xb3\xa6\x68\xdf\xd6\xd4\xcc\xff\x86\xb7\xc8\xe7\x04\x72\x87\x04\x31\x1f\xf7\xf9\x26\x5d\x86\x37\xb4\x60\xdf\x7c\x85\xe3\x5f\xbe\x7b\xf7\x61\x3f\xfa\xdb\xf7\xcb\xec\xfa\xfa\xfa\xfa\xed\xc7\x9f\x57\x2f\x7f\x5e\xf2\x9f\xbf\xf3\x7f\xde\x3f\xbf\xfe\xf5\xfa\xfa\xfa\xc5\xcb\x8f\xaf\x7e\x79\xc1\x0b\xae\x3f\xbf\xfd\xf8\x61\xf4\xe3\x75\x5e\x7c\x35\xff\xe6\x3d\x2f\xf8\x2d\xfe\x38\x8a\x5e\x5e\xbf\xbd\xbe\xfe\x63\xff\xe2\xa7\xaf\x7e\xfb\xcb\xdf\x18\xb4\x4f\xf6\x1f\x5f\x25\x7f\x5c\x5f\x5f\xbf\x3b\xf0\x1e\x8a\xf7\xdf\x25\x1f\x8b\x77\xdf\xef\xf9\xbb\x68\xf4\xf1\x67\xff\xd5\x77\xdf\x16\x3f\x7c\xbf\x1f\xcd\xdf\xfc\x23\x2a\xfd\x9f\xe1\xc5\x6f\xd1\xcb\x5f\x7e\x8d\x5e\xbe\xdd\xdd\xfc\xdd\x4f\x6e\xd2\xf7\xd7\xef\x9f\xfd\x47\xf2\xeb\xe7\x0f\xc9\x6f\xcf\xbf\x7b\x46\x3f\x7f\xc8\x7e\x7c\x19\xfd\xc7\xa7\x5f\xbe\xfb\xbc\x7c\xff\xd5\x67\xde\x80\xbe\x4c\x5e\xbe\xff\xe5\x7d\xf6\x87\xfb\xec\x63\xf1\xe1\xd5\xf5\xfb\xef\x9e\xbf\xfa\xea\xb7\x6f\xff\xfe\x1f\x6f\xfe\xfa\xb7\xe7\x2f\x7e\xd9\x67\xfb\x34\xf9\xe6\xd7\xcf\xc5\xa7\xf5\xf3\x9f\x8b\xe3\xdf\xbe\xff\xfd\xb7\x3f\xe6\xc9\x5f\xfe\xf8\xfd\x8f\x67\xbf\xbe\xfe\xfd\xb8\x59\x5e\xa7\x39\x7b\xb5\x7e\xf1\x72\xf3\xc3\xef\x3f\xee\x7f\x79\xf7\x66\xb1\x89\xe2\x6f\x9f\xbf\x7c\xf9\x76\x9c\x7e\xbf\x79\x15\xed\x5f\x8c\x9e\x1d\x5f\xfe\xe3\x45\xf9\x6e\xf9\x9c\x6e\xd3\xbf\x14\xff\xf8\xf8\xe9\xc5\x0f\xcf\xc6\x3f\xfa\x9b\xf7\xd7\xe3\x9f\x6e\xbe\x2d\x7e\x63\xf3\xeb\xc3\xfc\xeb\xfc\xd9\x8f\xd7\x37\x63\x3f\xfa\xe6\xaf\x7f\xf9\xeb\xa1\x00\x48\x5d\x7f\xfc\xf9\x97\x77\x1f\xfe\xf6\xf5\xf3\x5f\x7f\xfc\x91\x58\x9d\xf2\x34\x67\x41\xc4\x9a\x3d\x25\xe3\x6a\xd1\x9e\x92\x31\xea\x16\xdf\xca\x1e\xd9\xad\x14\x39\x5a\x21\x22\xd6\x99\xdf\xc0\xe9\xa6\x8c\xd3\xc2\x68\xe5\xf6\x81\x33\x9c\xe0\x2d\x8e\xf0\x1c\x6f\xf0\x12\x2f\x30\xb8\x82\xaf\xe2\x02\x1f\xab\x0b\x63\x7c\x20\x23\xbc\x16\x72\xe4\x0d\x39\xf3\xf1\x9e\xff\x73\x4d\xce\xba\xa6\x87\xdf\xc1\x66\x59\x29\x3d\x47\xd8\x75\xa7\xba\xab\xe9\x3f\x1c\x60\x2f\x0f\x65\xce\xd6\x22\x0d\x0e\x81\x44\xe6\x90\xcb\x0b\x9d\xef\x74\xfa\xec\xed\xa5\x16\x65\xc2\x5f\xba\x4e\x09\xb0\x12\xf0\xf8\x29\x2b\x86\x66\xe5\x03\x7a\x4a\xb1\xaa\x08\xd0\xbb\xaf\xe6\xf4\x84\x3b\xb5\x09\x39\xaf\x39\x67\x89\x0c\xeb\x8e\x38\x00\x46\xa0\xb9\x17\x89\x50\x3e\xe3\x35\x29\xbd\x92\xe6\x4b\x56\x5e\xa9\x1f\x01\x6c\x3f\x79\xc1\x2e\x83\x54\x45\xd9\x3e\x15\x57\x7b\x7c\x81\x6c\x9b\x9f\xee\x4b\x88\xf7\x5c\x97\xde\xdd\x39\x79\x1d\x43\xfe\x28\x5b\x72\x9e\xcc\xc2\x14\x9c\x31\x9a\xef\xb6\x1b\x0b\xc7\x08\xe1\x5d\x2f\x8d\xd4\x69\xc5\x3b\x11\x7d\xd5\x41\xf8\x6c\x74\xc2\xb4\xa9\x15\x3b\xbb\x91\x8a\xb0\x33\x3f\x6c\xce\xbb\xba\x20\x93\xd3\x1e\x1e\x38\xf3\x0a\xb6\x4a\xf4\xa6\x70\x18\xba\xf8\x4a\x35\x1e\x85\x1a\x78\x2a\x55\x34\x04\x75\xae\xf1\xf7\x23\xe4\xaa\xe2\x1c\xe6\x9a\x90\x5d\x13\xe9\xaf\x1c\x4a\x62\x73\x75\x5d\x86\xa9\xb0\x8d\x5a\xc7\xa9\x43\x71\xdc\x5c\xd3\xb5\xd8\x54\xc3\x67\xa8\xaa\x48\x0f\x0e\xc5\xcd\xb5\x46\x01\x74\x6e\xb6\x6e\xf6\xde\x68\xe4\x36\xf0\xb0\xf1\x89\xe6\x50\xe5\x50\xdc\x67\x48\x45\x85\x90\x25\xe7\x63\xa5\x07\x5c\x1b\xec\xe9\x50\xc6\x86\xdd\xf5\xc9\x1f\xf8\xda\xb6\x53\xb9\x6e\x71\x07\x9e\x9e\x9d\xdd\xd8\xb6\x03\x9b\xf3\x9d\x8a\xf2\xea\x70\x8c\xd1\xa3\xf6\x77\x20\x54\xd7\x6b\x81\x53\xf7\xa0\x54\x75\xec\x5e\xdf\xdd\x89\x41\xa1\x93\x1e\x7f\x0a\xdd\x96\xf9\xb1\xda\xe9\x3d\xcb\x1e\x2f\x9c\x5d\x4b\x3c\xe3\x7b\x8b\x79\x71\xc1\x1b\xb0\xa8\xf2\x9f\x03\x4b\x92\x9a\x64\x44\x19\x7f\xff\xf9\x05\x2d\xb9\xe0\x46\x27\xa3\x29\xa6\x13\x7f\x2a\xdd\x53\xb5\x8a\x5c\xf0\x85\x8f\x3b\xe8\xb4\x88\x53\x9a\x24\xc7\xdb\xae\x8f\xfa\xa7\x93\x6e\x43\xa5\x91\xa9\x06\x5e\x8a\x14\x9e\x5b\xc8\xf4\xf4\x1c\x10\x9c\x23\x04\x50\x2d\xb1\x94\x2e\xab\x16\x9a\x37\x6f\x12\xed\xbe\xf6\x92\x33\x6e\xf5\x51\x59\xc0\xc8\xdd\x74\x09\x99\xb5\xe4\xc3\x45\xdc\x6d\x30\x73\xe6\xec\xef\xee\xce\x32\x48\xe0\x73\xd6\x07\xff\x1a\xc8\xb6\xed\xb4\x88\xdc\xbe\x49\xe4\x34\x1a\x46\x6a\x1a\xd6\x4f\xad\xb6\xbd\xd4\x2a\x42\x12\x61\xb6\x2d\xf2\xb3\xff\x57\x91\x9f\x5e\x2c\xc4\x31\x44\x7b\xd5\xf6\x2e\x4e\x09\x6d\xd0\x06\x9c\x91\x74\x18\x87\xb1\xcb\x2e\x48\x83\x2e\x5c\x39\x71\xb3\x08\xa7\x24\x76\x33\x14\xa4\x2e\xbb\x6c\xbe\x6b\x92\x91\x2b\x27\x7d\xa8\x0a\x8e\x49\x3a\xcc\x50\xe0\xc4\x2e\x61\x38\x75\x09\x53\xce\x7e\x6d\xe4\x6c\x60\x4d\xbb\x82\x46\x72\xe2\x61\xa1\x48\x4e\x0b\x49\xf5\x30\xd6\x75\xb5\x7b\x28\xd3\x5c\x52\xa6\xa8\x93\x32\xed\x6d\xdb\x01\x8e\xe1\x3e\x6a\xb4\xbd\x8f\x1a\x45\x88\x93\x9a\xb9\x22\x35\xf3\x16\xa9\xe9\x24\x24\x3a\xc5\xd0\x32\xfe\x95\x4e\x1f\x36\x20\xa3\x09\xd8\x97\xab\x34\x79\x0f\x92\x8f\x4d\xfb\x30\xb5\xed\xb3\xbd\xa2\x24\x7c\x37\x5e\x59\x30\xd5\xa0\xa2\x9f\x21\x3b\x23\x7d\x54\xd6\xb6\x9d\x5e\x02\xcc\x10\x04\x3b\x32\x6c\x87\xca\x6c\x3b\x5f\x09\x76\xa2\xde\x9f\x10\xa8\x45\xb0\x24\x70\xc9\x53\xdd\x5f\x5e\x31\xa7\xf1\x82\x73\x5b\xb6\xdd\xdc\x76\x81\xe8\x17\xc6\xfd\x98\x6e\xe9\x23\xbb\x8d\xc1\xbe\x67\xf1\x4f\x4d\x21\xf9\xd7\x4c\x61\xfb\xc8\x6e\x23\x98\x42\xf3\x52\xa3\xba\x2b\x24\x13\x7d\x3e\x58\x3c\x80\x75\xa9\x36\x1e\xf9\x5b\xf4\x6c\x4d\xa5\x91\x36\xd5\x8d\xb4\x35\x8c\x6c\xc5\x2a\x2d\x31\x9d\xc4\x53\xb8\x78\x91\xc6\xa4\x8d\x1b\x17\xc7\x8a\x1b\x29\x64\x2c\x5c\xd4\x39\x64\x72\xba\xfc\xb1\xf8\x89\xa6\xcd\x3c\x33\xa8\xb7\xbb\x0d\x4d\x5f\x46\x4b\xa6\x52\x9f\x58\xd8\x67\xc3\xaf\x04\x41\x7a\xa1\x32\xa4\x66\x1b\x96\xd3\x2b\xed\xc0\x08\x34\x56\xb7\xa1\xf3\x6a\x4f\xa9\x43\x02\xc2\x2f\x30\x6b\x5e\x90\x74\x37\x6c\x52\xb2\xc7\xb7\xac\xf5\x44\xda\xc0\x71\xf2\xe7\x1a\x8b\xb5\xdd\xc8\xc6\xed\x5b\x58\xdb\x76\x66\xdd\x33\x5d\x22\x3c\xeb\x99\x4a\xfd\xaa\xfe\xdc\xa2\xa9\x97\x6e\xaa\xd4\x7b\xd4\xd2\x86\x6e\x08\x34\x1a\x8c\xe6\xc0\x89\x8c\xf0\xa8\xa5\x16\xf3\xf6\xed\xa2\x15\x0a\x39\xe1\xad\x54\xe6\x6f\xe2\x34\xfe\x29\xc9\xca\x99\x83\x4e\x73\x5a\xce\x57\x7c\x47\x1b\x57\x66\xa5\x8c\x69\x60\x7c\x5b\xf3\x82\xb9\x5f\x87\xf8\x1d\x9d\xff\xbe\x04\xcf\xb5\xda\x2b\x06\x81\x5e\xa4\xf6\xbd\x79\x6c\x0f\x1f\xa1\x8d\x8c\x9a\x8b\x4b\xc3\x25\xa6\x54\x2e\x31\xde\xd7\xd8\xfb\x9a\x3f\x4b\xa7\x18\xef\xeb\x0e\x20\x0c\x8d\x2a\x6d\xb8\x0d\xff\x74\x2b\x51\xa5\x0a\x91\xd2\x5a\xe4\x0a\xde\x8f\xb8\x78\x30\xc0\xc0\x1b\xbd\x8a\x93\x44\x4d\xff\x21\xb0\xa9\xfa\xdf\xe7\x34\xe2\x1c\x95\x6a\xd7\xa1\x8a\x6e\xb5\x33\x00\x0d\x77\x1d\x77\x77\x55\xcc\xbd\xf6\xfd\x48\xc9\x36\xbc\x15\xc4\xb2\x15\x50\xc9\xd6\x9b\x6d\xc9\x9e\x67\xeb\x9b\x38\x65\x91\x30\x0e\xbb\xe6\x28\xb0\x8e\x45\x16\xd1\x9c\xa4\xde\xf1\x0d\x3d\x0c\xf9\x9f\x38\xc5\x59\x07\x7e\x2b\x03\xe8\x5e\x8d\x43\x52\x8b\x72\xc5\xc4\x9f\x0e\x39\xc5\xe7\x84\xed\xd9\x08\xe1\x15\xe9\x5e\x20\x74\x9e\xe0\x6d\xc7\x3b\x58\xdc\xf3\x1c\x47\xa4\x7b\x5d\xe7\xed\x72\xde\x04\x6f\x84\x76\x65\x09\x7f\xc2\xcc\xc0\xc9\x4c\xc3\xc9\x79\x6d\x42\xb8\x20\xa3\x70\x71\x91\x72\xde\xa6\x3a\x31\x16\x75\x9e\x7f\xf1\x62\xb2\x98\xe2\x1d\x91\xee\x15\xb3\xc9\x68\x7a\xe5\xf0\x7f\x61\x8e\xe8\xe9\x2a\x78\x4b\xdf\xe2\x63\xfd\xde\x9f\x5e\xcd\x87\x0e\xff\x2b\x21\x8a\x9e\x6e\x79\x9d\xd0\x89\xef\xee\x64\x46\xdd\xcd\xdd\x9d\xe6\x47\xba\x43\x67\x44\x7b\xdc\x40\x44\xb2\x2a\x59\xfd\x0e\xd9\x76\xf5\x70\x44\x57\x2a\x2b\xef\xe6\x2a\x53\xf8\xbf\xc3\x73\x14\xc4\xb6\xad\x15\x2c\xf9\x9c\xab\xa7\x23\xc2\x1b\xb2\xc3\x4b\x72\x44\x81\xca\x47\xba\xe1\x1f\xb9\x72\x7a\xdb\xcc\x11\x0a\xaa\xc7\x0d\x7f\xc4\x1b\x22\x80\x2b\x42\x6e\x55\x2f\x23\x3c\x47\x10\x77\xa3\x76\x75\x2b\x55\xa8\xc1\x0e\x7a\x25\x74\xc5\x22\x1d\x96\xda\x12\x40\x34\x47\x7c\x69\x98\x6d\x43\x0e\x40\x40\xf9\x8f\x65\xb6\x71\x46\xfc\x00\x6a\x94\xf9\xb8\x6c\xde\x0f\x40\xdf\x8b\x38\x49\x04\x25\x3b\xe0\x0c\x9e\x1c\x74\xa2\xea\xc6\xd2\xac\xab\xd3\x3d\xda\xd5\xd9\x63\x09\x2b\xdf\x71\x3a\x49\xcd\x34\x3f\xbf\x86\x9a\xfc\xfe\xdd\xd8\xa1\x61\x34\xf7\x5d\x17\xc9\x48\xb2\x25\xdc\x9e\x59\x08\x8c\x15\xf5\xec\xb8\x38\x25\x4c\xb7\x40\xe6\x52\x18\xdb\x0f\x44\x6e\xda\x18\xe1\x82\x4b\x14\x09\x61\x66\x2a\xdb\x95\x72\xb8\x2b\x89\x1f\x96\x17\x71\x9d\xda\x64\xdb\x7d\x23\xfb\x63\x6a\xde\xc9\xe2\x14\xb2\xd7\xac\x84\x89\xf0\x16\x61\x89\x71\x5b\x88\x02\xc9\xc5\x8f\x78\xe1\x14\xa8\xf9\x89\x6c\x52\x4e\xc9\x6a\x52\x0e\xfd\x69\x9d\x8c\xb6\x55\x21\x11\x15\xa4\xe7\xf3\x14\xcf\x09\x83\x5d\x2a\x03\xc8\xcf\xf0\x86\x30\x3d\x47\xb8\x36\x13\x13\x38\xd0\x25\x47\x63\x3e\x58\x98\xde\x92\xcc\x3d\x76\x28\x39\x63\x26\x8d\x68\x59\x95\xed\x1f\x97\x78\x83\x42\xa6\x25\x49\x76\xd0\xa5\x6f\xdb\x0e\x6f\xc4\x0b\xe3\x74\x79\xbd\x63\x39\x5d\x32\x67\x89\xcd\x7a\x78\x83\x10\x8e\x04\x34\x96\xe2\x82\x73\x51\xc3\x78\x14\x96\x17\xd1\x64\x34\x35\x12\xc9\x28\x02\x35\x23\x23\xbc\x23\x23\x7c\x24\xa3\xf0\x58\x5b\x8b\x1f\xd5\x8a\x1c\x48\x34\x39\x4e\x27\xe5\x74\xe2\x4f\x43\x49\x18\x0e\xca\x80\xf8\x80\xee\xee\x9c\x9d\xeb\xe2\x99\x4b\x0e\xe8\xb4\x10\x23\x98\xf0\x8f\xf1\x16\xa3\x29\x9e\x9d\xef\xa6\x62\x40\x6b\xf2\x16\x72\xe8\x7a\x6f\xae\x3f\xcf\x7e\xb9\x7e\xfd\xf3\x4b\x7c\x43\x86\xcd\x32\x6d\xc8\x8b\x56\xe2\x9b\x3d\x59\x68\x03\x39\x23\x64\xaf\x11\xae\x3d\xa7\x69\x67\xf4\xee\x6e\x7f\x09\x91\xd1\xd6\xb5\xa6\x70\x8d\xf7\x08\xdf\xd4\x07\xc8\x0d\xde\x0b\x02\x43\x01\x45\x6e\x48\xee\x25\xd9\xd2\x1f\x39\x37\x08\xdf\xb8\xc4\x1b\x7f\xfd\xf4\x06\xaf\xab\xd2\x35\xc2\x1d\x23\x92\x43\xa9\x6a\xc9\x67\x54\xdb\x4e\x5f\xe3\x77\xe4\x66\xb8\x0e\xaf\xc9\xbb\x8b\x6a\xf2\x3f\xbe\x15\x13\xbd\x82\xaf\x04\xfc\xdf\x77\xfc\xa3\xd7\x78\x3d\x24\xd7\xf2\x16\xfe\x16\xae\x84\x16\x98\x13\xf7\x60\x8d\xf9\xe1\x19\xdc\x34\x76\x7a\xcb\x38\xa2\x87\xc9\xe8\x3d\x51\x9b\x57\xe0\xf0\x1e\xf6\x99\xf0\xa7\xe0\xe7\x4b\xc9\xd7\x30\xae\x21\x37\xc2\x0e\xe3\x27\x13\xb8\xbb\x9e\x43\xde\x2e\xfd\x5d\x29\xee\x04\x7c\xf1\x2e\x6f\x1f\xa3\x07\xb7\x7d\xe2\x3e\x8d\x15\x47\xf0\x60\x4d\xc7\x1f\xa6\x9c\xa8\x54\xdf\x6c\xd5\x39\xb6\x59\xb9\xa3\xdb\xc5\x01\x74\x71\xf6\xf2\x96\x07\x9d\x8f\xc1\x8a\xb3\xab\x86\xd2\xde\x74\xbe\xd4\x54\x32\xf9\x30\x31\x9c\x49\xba\x2a\x96\xd9\x46\x65\x16\xeb\x94\x26\xf4\xfe\x32\xa3\xbf\x9e\x9a\x10\x90\xed\xde\xef\xdd\x37\x1c\xfd\x4e\x53\xba\x66\xdc\xff\xb9\xae\x06\x6d\x26\xf8\x5e\xcb\x20\x0d\x4f\x17\xff\x1d\xe2\x8e\x66\xda\x61\x72\x75\xbe\x3a\xd8\x4c\x2c\xf0\x71\xcd\xe3\xf6\xe8\xbf\xbf\x44\x7c\x79\x95\xe5\xac\x5b\x7c\x79\xec\x49\x5f\xf7\xa0\x9f\xf7\x71\x43\xdb\xae\xed\x3a\xbf\x79\xaf\x31\x6c\x6f\x25\xbe\x15\x2b\x62\xc8\xda\x97\x32\x1d\x2d\xc2\x52\xe3\x74\xac\x7c\x79\x43\x9d\xf1\x57\x23\x3c\xa8\xff\xb1\xdc\xfb\x67\x72\x9d\x6c\x56\xd4\x42\x95\x0d\xb1\x88\x6c\x8f\x45\xbf\xd5\xba\xa6\x5d\xcb\xa8\x57\xca\x3b\x17\x7f\x98\xf7\xb4\xeb\x14\x13\x7d\xec\x6b\xb2\x5c\xda\x78\xa2\xda\x53\xde\x78\xd2\x6b\x32\xf1\x54\x89\x7b\xc0\x41\x3c\xea\x8b\xbe\xd1\x2b\x6b\x3c\xf9\xfd\x42\x64\x17\x56\xf6\x6c\x9f\x1e\x42\x85\x99\x08\x7b\xfc\x2a\xc9\x68\xb7\xe2\x46\xa3\x32\xc8\x2d\x31\x6d\xd5\xbf\x87\x2c\x21\xb7\x0c\x55\xdc\x4a\x1d\x07\x03\x86\x4d\x14\x0b\x28\x56\x18\x1c\xb0\xa1\x7f\xd9\xc6\xb8\xbb\x3b\xea\xfa\x17\x8f\x3a\x06\x8c\xf8\xa3\xdb\x47\xb8\x41\xf4\x65\x50\xed\xce\x6e\xda\x4a\x6f\x7a\x9a\x9e\xf0\xed\x09\x4f\xfc\xbf\x4e\x91\xe3\xff\x15\x9d\x50\xf8\xbf\xce\xcf\xff\x6d\x50\x64\xdb\x7c\xce\xde\xd0\xcd\x26\x4e\x97\x3f\x7f\x78\x4d\xa2\xb8\x28\x55\x97\x7c\xaf\x79\xff\x55\x78\x6b\xba\xf9\x7f\x02\x00\x00\xff\xff\x0d\x37\xaf\xaa\x32\xe4\x01\x00"), }, "/html2canvas.min.js": &vfsgen۰CompressedFileInfo{ name: "html2canvas.min.js", - modTime: time.Date(2022, 10, 16, 17, 51, 16, 603013162, time.UTC), + modTime: time.Date(2018, 8, 13, 14, 28, 13, 35498020, time.UTC), uncompressedSize: 166138, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xec\xbd\xfb\x77\xe3\xc8\x75\x20\xfc\xfb\xfe\x15\x12\x36\xa6\x51\xcd\x22\x1a\x20\xa9\x17\xd8\x68\x1d\x50\x62\x77\xd3\xa3\x16\xd5\x14\xd5\x0f\x6b\xe8\x3e\x10\x59\xa2\xe0\x86\x00\x1a\x28\xea\x61\x89\xe7\xb8\xbb\x1d\xaf\x63\x7b\xe2\xf7\xda\x5e\xc7\x71\xec\xf5\x3a\x8e\x1f\xeb\x67\x36\xe3\xc4\xeb\xfd\x27\xbe\x3d\xf9\x79\x97\x33\x8e\xf3\x65\xbe\xff\xe1\x3b\xf5\x02\x0a\x20\x48\x75\x8f\xa7\x27\x39\xc7\x99\x69\x81\x40\xd5\xad\xaa\x5b\xb7\xaa\x6e\xdd\xaa\xba\xf7\xd6\xf5\x6b\x8b\xff\x61\xe1\xda\xc2\x11\x3e\xf6\xca\x3d\xc7\x3f\x71\xa2\x05\x43\xd3\x35\xbd\xe4\x78\xc3\x23\x47\x33\x8c\x85\x1b\x47\x18\x0f\x23\xf3\xfa\x75\x09\x46\x3b\x42\x21\xfe\x38\xf2\xb5\x5e\x70\x7c\x93\xa4\xdf\x08\x86\xe7\xa1\x3b\x38\xc2\x0b\x6a\x0f\x2c\x94\x75\x63\x75\x61\xdb\x7d\xe2\x39\xd1\xc2\x49\xe0\x2f\xdc\x61\xd0\x52\x56\x99\xe4\x6d\xe4\x21\x27\x42\xfd\x85\x91\xdf\x47\xe1\xc2\xdd\x66\x67\x61\xcb\xed\x21\x3f\x42\xff\x61\xe1\xda\xf5\xff\xb0\x78\x38\xf2\x7b\xd8\x0d\x7c\xd5\x86\x08\x5c\x28\xc1\xc1\x47\x51\x0f\x2b\x96\x85\xcf\x87\x28\x38\x5c\x40\x67\xc3\x20\xc4\x51\xa1\x30\x15\x73\x1c\xf4\x47\x1e\x5a\x67\x3f\x1a\x87\xb3\x90\x0a\x4c\x45\xe4\x99\x00\xf7\xd1\xa1\xeb\xa3\x42\x81\xfd\x6a\xce\x71\x7f\x9d\xbd\xaa\xfb\x5d\x88\x80\x39\xab\xdc\x75\xfe\xab\x49\x14\xa2\x65\xd8\xd9\x90\xb1\x8a\x8f\xdc\x08\xc6\xd5\x01\x17\x21\xc2\xa3\xd0\x5f\x48\x2a\x08\x2e\x4e\x9c\x70\x01\x59\x17\xe3\x9a\x08\x5c\xc0\x6a\x08\x2e\xdc\x43\x15\xed\x87\x5d\xc0\x53\x90\x77\x51\xa1\x1a\x49\xe2\x5b\x24\xc8\xba\x70\xcd\x10\x7a\xe6\xa2\x01\x79\xa4\x79\x31\x1e\xd7\x78\x22\x9b\x24\xea\x39\x9e\xa7\xfa\x22\x2d\xf4\x61\xf2\x8e\x01\xf4\x35\xcf\x5a\xd4\x93\xb0\x31\x4f\x8a\xb5\x63\xcb\x86\x58\xeb\x59\x08\x62\xad\x6f\xc9\x4d\x02\x43\x70\x81\xb5\x80\xb6\xce\xe5\x65\x8b\x52\x49\x63\xa4\xdb\x09\x83\x21\x0a\xf1\x39\x05\xbb\xe8\x05\xfe\xa1\x3b\x18\x85\xce\x81\x87\x28\x8a\xfe\xe8\x18\xf1\x2f\x1d\x0e\x10\x36\xc3\x31\x18\x43\xac\xf9\xd6\x34\x45\xec\x42\xc1\xd6\x1e\x3f\x46\xd1\x5d\xd6\xa8\xd3\x54\xb4\x49\xa1\xce\xc8\xc3\x63\x33\x27\x32\xa6\x02\xd6\xfa\x2a\x82\x8a\xa3\x40\x04\x20\x22\xc5\x05\x56\xba\x87\x71\x40\x5e\x93\x61\x18\xe0\x80\x34\xb9\x76\xe4\x44\xad\x53\x5f\xd4\x89\x51\x92\x24\x20\x79\x0c\x2d\x45\x81\x58\xc5\x5a\x64\x95\x57\xc0\x58\xdd\x4f\x51\x08\x83\x0b\x65\x14\xa1\x85\x08\x87\x6e\x0f\x2b\xb5\x7c\x22\x21\xa8\x24\x15\x54\xe0\xc5\x89\xe3\x8d\x08\x69\xc6\x80\x36\x71\x68\xcd\xeb\x39\x04\x71\xf7\x50\xb5\xc3\xd0\x39\xd7\xdc\x88\xfe\xaa\x36\x10\x1d\xc6\xae\xb9\x87\xea\xee\xf9\xf1\x41\xe0\x69\x2e\x46\xa1\x83\x83\x70\xc1\x15\x95\x94\x00\xd3\x39\x92\x72\xb1\xb5\xdf\x85\x21\xed\x16\xd6\xa2\x01\xeb\xd6\x49\xe0\xf6\x17\xf4\x1a\x0e\xcf\x2f\x0e\x83\x50\x25\x30\x0e\x8c\x2c\x7b\x3f\x93\x7f\x57\x05\xb5\x45\x35\xb4\x54\xc7\x8a\x34\x1f\x9d\x61\x15\x00\xad\x1f\xf8\x08\x14\x0a\x2a\xd6\x86\xa3\xe8\x48\x75\x34\x5a\x4b\x00\x17\xd1\xe5\x25\xd6\x3c\xe4\x0f\xf0\xd1\xa2\x65\x21\x50\x23\x45\x82\xda\xb8\xe7\xe0\xde\x11\xe9\x07\x3e\x41\xa1\x6e\xd9\xe3\x43\xd7\x77\x3c\xef\xfc\x82\x20\xb0\x18\x16\x0a\x91\xc6\x70\x4f\xde\x54\x10\x03\xb9\x87\xaa\x0f\xf0\x51\x18\x9c\x2e\xd4\xc7\x71\x77\x1e\xd3\xea\xd5\x58\xb8\x8f\x4e\x17\x3a\xe7\x43\xd4\x08\xc3\x20\x54\x95\xa6\x7f\xe2\x78\x6e\x7f\xc1\xc1\x18\x1d\x0f\xf1\x02\x0e\x16\xfa\x28\xc2\xe1\xa8\x87\x47\x21\x5a\xf0\x03\xbf\x44\x6b\x78\xe0\xa1\x05\xd7\x8f\xb0\xe3\xf7\x90\x02\xc6\x63\x15\x40\x5f\x6e\xa2\x78\x00\xdb\x8c\x96\x82\x56\xd8\xd2\x6b\xf8\x06\xe2\x75\xad\xe1\x62\x91\xd1\x39\xb4\xd0\x3e\xee\xd6\x42\x2d\x19\x17\x96\xfc\x71\x79\xb9\x68\xc0\x50\x93\x47\x11\xa1\x88\x42\x09\xa8\xb8\xfe\x42\x58\x28\xa8\xa1\x76\x1a\xba\x98\xc7\x01\x38\x6b\x34\x86\xda\x13\x74\x0e\x43\x10\x53\x24\xc6\x1b\x41\x4c\x06\xb4\x20\x54\xa1\x60\xab\x28\x19\x03\x84\x47\x84\x34\x0c\x86\x64\xf4\x8c\x55\xd6\x37\xeb\xd6\xf5\x8f\xfc\x47\x75\xdf\x29\x1d\xea\xa5\xb5\xee\x45\x65\x0c\xfe\xe4\xba\x0b\x9d\xbc\x71\xac\x1d\xd3\x06\xad\x03\x3e\x20\x17\x17\x51\xa1\xb0\x3f\x74\xc2\x08\x35\x7d\xac\xa2\x7d\xa3\xbb\xaf\x77\x8b\xfc\x17\x1a\xcb\x00\xa6\x23\x0d\x1e\x69\xe4\x45\x96\x79\x64\x99\x45\xfa\x23\xcf\xeb\x8e\x61\x94\x46\x6f\x99\xa1\x17\xcc\x41\x2f\x9a\x83\x9e\x16\x8d\x0e\xc8\x48\xf6\x07\xaa\x0e\xcb\x60\x1a\x0b\x09\xa0\x0c\xab\xf3\x01\xaa\x70\x19\xc8\xa8\xba\xd6\xf5\x8f\x84\x83\x83\xd7\xd5\xd7\xa3\x6b\xea\xeb\xfd\x0b\x03\x56\xc6\xe0\xf5\xe8\x1a\xbc\xe2\xfb\x75\xf0\x27\xd7\x61\x6f\x4e\x8d\xdc\x74\x8d\xb6\x47\xc7\x07\x28\xa4\xd8\x00\x18\x7f\x94\xe5\x8f\x4a\x37\xc6\xca\x63\x58\x39\x2f\x8d\x16\xff\x5e\x7f\x5d\x5b\x7f\xbd\x5f\x8c\x11\x1d\xcd\x41\xd4\x4b\x10\x55\x51\xa1\x20\x06\xca\xcd\x2a\x78\x71\xb4\xe3\x8f\x6a\x17\x74\xc7\xf0\x5e\xaa\x38\x96\xfb\xfe\x5d\x07\x1f\x69\xc7\xae\xaf\xda\xa4\x9f\x95\x97\x96\x00\x94\x82\x8c\xe9\xa0\x32\x0f\xb2\x05\x46\x95\x75\x7b\xbf\xd2\x35\x39\x8d\x4e\x73\xea\x34\xd8\xb7\x35\x1c\x6c\x05\xa7\x28\xdc\x70\x22\xa4\x82\xae\x98\x86\xe8\x70\x1e\xc3\xbd\x19\x1c\x03\x81\x8b\xc5\x29\xe6\xbe\xa8\xda\x31\xc7\x21\x02\x08\x00\xb9\x0c\x6c\xc3\xf1\xfd\x00\x2f\x90\xf9\x69\xc1\x59\xe8\x79\x4e\x14\x2d\x38\xd1\x82\x13\x0f\x72\x45\x88\x22\x36\x1b\xbd\xd8\x4a\x4f\x1b\x08\xac\xdf\x53\x11\x30\x1d\x95\xcc\xe8\x3d\xfa\x1c\xd1\xe7\x29\x7d\x06\xf4\xb9\xaf\x43\xf2\x3f\xad\x3d\xf4\xad\x50\xc5\xa4\xaf\xd7\x2d\x9f\x90\x33\xb2\x7c\x42\x42\xd7\xf2\x09\xd9\x3c\xcb\xdf\xaf\x74\x6b\xa4\x4c\x2d\xb4\xea\x90\xbe\x0c\xac\x88\xbd\x1c\x58\x2e\x7b\x71\x2c\x4f\xf0\x23\x52\xe9\xfd\x8b\x27\xe8\xdc\x54\xdc\xa8\x13\x3a\x7e\x34\x74\x42\xe4\x63\x05\xb2\x59\x71\x7a\x2a\xd4\x2d\xcb\x62\xb9\x8c\xc7\x90\xa5\xc4\xc1\x2e\x1d\x64\xb3\x13\x11\xe4\x17\x45\xba\x42\xc1\x88\xdf\xd7\x15\xd2\xdd\x55\xa5\xc8\x70\x2e\x2a\x90\xbf\x0e\x92\xd7\x83\xe4\xd5\x29\x2a\x40\x31\x49\x9a\x2b\x93\x00\x65\x3c\xee\x02\x68\x13\xd6\x89\x84\xc8\x62\xed\xd1\x86\x18\x58\x17\x38\xa9\xab\xc9\x29\xac\x77\xa1\xe3\xb9\x3d\x74\x40\xea\xb0\x5f\xae\xea\xb0\x5c\x5d\x25\x5d\x91\xd3\xde\xf1\xb1\xfb\xb1\x11\x3a\x3d\x72\x31\x89\x5f\xd2\x61\xb9\xb2\x04\xcb\x46\x1c\xff\xb1\x91\x43\xf2\x22\x29\xa4\x54\x1f\x1b\x39\xc7\x4e\xe8\xfa\xc8\xdc\x37\xca\x2b\x2c\xd6\x28\x8b\xd8\x8f\x8f\x42\x51\x58\x2a\xd9\x01\x72\x07\x34\x62\x09\xd2\xbf\xb2\xe8\x01\x07\x6e\xf4\x31\x8a\x1f\x01\x2f\xaf\x42\x63\x6d\x59\xc4\x78\x4e\xef\x89\x99\xea\x2e\x07\x9e\xe3\xf7\x8e\x50\xdf\xf1\x8e\x03\xbf\xcf\x13\x11\xa4\xf5\xb8\x1c\x5a\x59\x92\x42\x2a\xdb\x1b\xa1\x13\x37\xf0\x10\x36\xf7\x8d\xca\x2a\xac\x56\x60\xb9\x1c\x97\x12\x06\xa7\xbe\xb9\x6f\x2c\x2f\xc1\x6a\x99\xfc\xe3\xc1\xa3\xd0\x3b\x3f\x0d\x02\x52\x48\xb9\x0c\x8d\xd5\x2a\x34\x2a\x22\xc3\x9e\xd3\x47\x98\x95\xb4\xb6\x04\x8d\xa5\x55\x68\x2c\x0b\x14\x7b\x47\x4e\x88\x43\x34\x8a\x24\xfa\x24\x71\x41\x2f\xf0\x1c\x4a\x6e\x43\x87\x86\xbe\x04\x2b\x71\x5c\x10\x3a\x1e\xab\x11\x49\xb6\x2a\x85\xfb\x87\x1e\xe1\x04\xac\x40\x43\xd7\xa1\x51\x5d\x83\xe5\xca\x8a\x04\x11\xb9\xde\x13\x4e\x0e\xd2\xc6\x31\x75\x7b\xa1\x7b\x1c\x05\x3e\xa9\x84\x0e\xcb\x3a\x4c\xd0\x3c\x77\xfc\xe9\xc6\xed\x3b\xe1\x93\x84\x82\x46\x65\x4d\x0a\x17\x29\x48\x68\x3a\x66\x10\x78\x7d\xe4\x87\x84\x56\x8c\x4e\x55\x68\x18\x72\x7c\xe8\x9c\x13\x0a\xaf\x41\xf1\x27\xc7\x21\xc4\xb2\xd5\x93\x66\xe6\x11\x33\x13\x3d\x39\x72\x9e\xb8\xa4\xb0\x35\x68\xac\x56\xa0\xa1\xaf\x48\x91\xc7\xce\x00\xf9\xd8\x21\x4d\xbd\x36\x55\x89\xc0\x73\x4f\x10\x2f\x73\x75\x89\xa6\xac\xca\x89\x83\xd0\xf1\x07\xbc\x37\x1a\xd5\x34\x46\x41\xd8\x3b\x72\x49\x1d\x97\x2a\x90\x0c\x16\xbd\x2a\x45\x86\xa8\x2f\x4a\x94\xd3\x44\xb4\xa7\x9a\xfb\xe5\x4a\x05\x1a\x4b\x3a\x34\xca\x65\x39\x16\x39\x1c\x17\xa3\x5a\x81\xc6\xea\x2a\x24\xbf\x52\x3c\xe9\x2b\xac\x3d\x56\xca\x70\xd9\xc8\x54\x86\x46\x33\xe2\x56\x57\xe0\xca\x1a\xf9\x37\x15\x8b\xf2\x63\xf1\x28\xfc\xd8\x28\x70\x23\xda\xd4\x65\x7d\x19\x96\x75\x39\x3a\x1e\x2e\xd5\x55\x32\x94\x92\xe6\x44\x68\x38\x74\x7d\xd1\xd7\x48\x57\x5c\x91\xa2\xa2\x27\xe7\xa2\xfb\x18\x6b\x86\xdc\xb1\xdc\x63\xde\x0b\xf4\x25\x28\xfe\xa4\x28\x94\x1f\x15\xf4\x07\xa2\xdf\x57\x48\x59\x55\x29\xcb\x43\x37\x44\x07\xa1\x4b\x58\x84\xb1\xb2\x0a\x2b\x55\xf2\x8f\x47\x79\x64\x30\xc5\x8c\x8d\xf4\x70\xc2\xfc\x44\xc3\x1c\x06\x21\x8a\x30\xa7\x3c\xe9\xac\x95\x35\x29\xed\xa8\x77\x14\xb9\x0e\x4b\x27\x73\x91\x81\xe3\xfa\xd1\x41\x10\x06\x7c\x30\xf1\x3f\x1e\x79\x14\x44\x58\x14\x48\x46\x60\x8a\xd3\x92\x01\xc2\x11\x31\x12\x6e\x20\x0d\x9b\xb2\x41\x58\xc8\x12\xac\x88\xde\xc1\x89\x45\xf8\x21\xff\x13\xe1\x62\xb8\x94\x57\x93\x8c\x48\xe0\x39\xf2\xbc\xe0\x94\xd0\xa2\x42\x4b\x8e\xdb\x85\x13\x77\x2a\xab\xa3\xc0\x47\xe7\x7d\x74\x2a\x71\xeb\x98\x42\x47\x01\x4e\x5a\x99\xb6\x49\xcc\x8f\x5c\xbf\xef\x3a\x3e\xed\xee\x84\xeb\xae\x95\xc9\xbf\x24\x6a\x10\x98\xfb\x2b\x4b\x74\xdc\xc5\x29\x4e\x82\xf0\x5c\xb4\x83\x5c\x0a\x1f\xc6\xb4\x78\xda\xbc\x22\xc2\x73\x4e\x90\xdf\x47\x21\x19\x37\x2c\x8e\x34\x60\x3a\xee\xc0\x1b\x45\x47\x82\xe5\xe9\x74\x52\x11\x00\xa7\xbe\x18\x55\x65\xd2\x61\xca\x31\xa1\x3c\x74\x1c\xf8\xbd\x23\xf7\xf0\x90\x8e\x49\xd1\x31\xe2\xfe\xe6\xb9\x83\x23\xce\xd7\x29\x19\x8d\x65\x5a\xb8\x14\x29\xb8\x74\x55\xcf\x50\x93\xc5\x52\x16\x59\x2e\x57\x33\x6c\x95\x46\xc6\xcd\x2d\x5a\x8a\x96\x4d\xfe\x8c\x54\x11\xac\xe9\xc9\x90\x13\x7f\xa9\x48\xce\x2e\xaa\xb0\x5c\x59\xa5\x23\x22\x1d\x3b\x3b\xa9\xd4\xa0\xab\x65\x68\xac\x55\xe4\xc8\x98\x4f\x91\xe8\x65\x99\x4f\xb1\xe8\x98\x51\x55\xca\x90\x8c\x36\x63\x25\x85\x73\x3c\xee\x0d\x3a\x19\x2f\xcb\xed\x45\xe3\x13\x4e\x65\x18\x64\xfa\x58\x86\x84\x8b\x4e\x43\xa0\x39\x10\x18\x21\x4f\x34\xce\x32\x95\x13\xca\x69\x2c\x13\xc2\xf2\x9e\x56\x4e\xa8\x73\x8c\xc4\x6c\xa7\x4b\x61\xbc\x52\xbc\x13\x48\x38\xfb\xc8\xe7\x0d\xc4\x3b\x27\x8b\x88\xe7\x96\x2c\x73\x38\x76\xc2\x20\xf0\xd9\x30\x4b\x66\x80\x63\xd4\x77\x47\xc7\x29\x89\x49\x2f\xd3\xa2\x12\xfa\x31\x18\x49\x6c\x89\x7b\x23\x8b\x89\x67\x9d\xd5\x65\xb8\xba\x24\x35\x2a\x8b\x1e\x8e\xc2\xa1\x47\x32\xae\xae\x40\xc3\x28\xc3\xb2\xb1\x96\x8a\x4f\x5a\x8e\xb4\xea\xca\x1a\x34\x8c\x4a\x1a\x20\x99\x63\x8c\x32\x99\x4b\x59\xcf\x4a\x81\x0c\x89\x34\x1c\xb3\x1e\x42\x16\x63\xa9\x9a\x02\x91\xa6\x93\x95\x32\x9d\x4b\x92\xe9\x91\x41\xb0\x19\x85\x4d\x93\x6b\x6b\xb0\x4c\x26\xb3\x18\x13\xb7\xef\x27\x43\xaf\x4c\x5a\x8f\x56\x46\xc4\xfa\xb8\x17\x22\xe7\x98\x8b\x8f\x7c\xd8\x8a\xc8\x08\x9f\x87\x41\x24\x49\x90\xe5\x72\x4c\xc1\xa0\xd7\x73\x22\xd7\x97\xa4\xcb\x55\x41\x3e\xdf\x39\x71\x3e\x1a\xc8\x73\x04\x11\xf3\x56\x2a\x49\xf4\x39\x97\x82\xe2\x31\x1e\x78\x7d\xcf\xe9\x51\xf0\x0a\x93\x62\xe3\x8e\x41\xe5\x8a\x84\xcb\xa6\x82\xfb\xa1\x73\x40\x5a\x7e\x05\x1a\xd5\x32\x8c\x85\xc8\x94\xa8\xb1\x9c\xf4\x4b\x16\xce\x18\xec\xd2\x12\x5c\x5e\x93\x62\x58\x57\xa0\xb3\x05\x6d\x6b\x41\xe2\xa1\xe3\x21\x79\x3a\xa9\xac\xc2\x32\x1d\xa9\xba\x0c\xc0\x79\xc7\x52\x19\x96\x97\x0c\x48\x7e\x93\x48\xa9\x01\x8d\x95\x25\xc8\x72\x58\x95\x00\xa4\xf6\x23\x7d\x8c\x94\x9f\xcc\xfd\x43\x67\xe8\x9c\x3b\xa7\x47\xee\x50\xc8\xe4\xa4\x85\x05\x2d\x87\xc8\xe9\x1d\x0d\x47\x87\x87\x62\x0e\x24\xed\xb0\x14\x47\x86\x23\x36\x95\x90\xfe\xb0\x1c\xa7\x49\xb8\xd5\x1a\xe9\x50\x71\xb8\x37\x22\xfd\x80\x74\x9f\x65\x32\x01\x8b\xe6\x1c\x06\xa7\xfd\x58\x44\x5e\x59\xa6\x63\x3f\x69\x9e\x78\x94\xd0\xb6\x49\x5a\x34\x44\x07\xa8\xd7\x73\xe2\x68\xbd\x0c\x29\x65\x2a\x71\x7c\x5f\x8c\x75\x91\x55\x18\x44\xe7\x62\xcd\xc0\x05\xb6\x44\x68\x0b\x83\x73\x87\xf3\xa8\x65\x36\x71\x26\x9d\x31\x72\xfa\x7d\x0f\x89\xa4\x95\x35\xd2\xb2\xf1\x60\x4d\xf8\x2f\x9f\x58\xe2\xa6\x8d\x1c\xbf\x2f\x0a\x2c\x57\xab\xd0\x58\xae\xc2\x78\x89\x94\x8c\xee\xea\x32\x15\x63\x56\x57\x92\x98\xe8\x08\x79\x9e\x98\x21\x97\xa4\xe6\x8c\x5c\xe4\xfb\x44\x40\x5e\xd6\xe1\x6a\x19\xc6\x33\x67\xe4\x7a\x27\x64\xd2\x25\x14\x17\x7f\x3c\x66\x8a\xbf\xc7\xdd\x58\xe6\x1f\xfa\x32\x5c\x93\x39\x58\x8a\xed\x97\x59\xc5\xe2\x19\x2b\xc5\xf1\xa7\x22\xfd\x84\x91\xcb\xb3\xff\x14\x2b\x62\xab\x25\x1e\x99\xcc\x10\x2b\x4c\x00\x49\xc4\x16\x4c\x67\x66\x83\x05\x25\x92\x06\x46\x64\x3a\xcf\x4e\xe6\x64\xcd\x8d\x3d\xba\x4a\x5b\x66\x82\xac\x21\x28\x8e\x83\x63\x07\x07\x0c\xb5\xb5\x35\xb8\x22\xfa\x9f\x34\x7e\x96\xab\xac\xf7\xe9\x22\x3b\x21\x4c\xd3\x19\x9b\x0a\x34\x22\xe6\xf4\x08\x39\x98\xb3\x35\xca\x7e\xd6\xe2\x08\x49\x76\x95\x45\x09\x1a\x11\x1d\x07\x4f\xe4\xc5\x74\xdc\x82\xd9\x19\x50\x4f\x85\xc7\x0c\xa0\x9a\x9a\xee\xc6\x35\xa4\x75\xda\xf6\xf6\xee\x8e\xdd\x6e\x6c\x77\x2c\x1f\x9d\x2e\xec\xa9\xf1\x26\x02\x18\xc3\xf7\xf4\x50\x02\x22\xad\xe7\x78\xbd\x11\x69\xfe\x2d\xba\x21\x76\x2b\x0c\x8e\xef\x93\xf8\x07\x2e\x3e\xda\xf3\x5d\x6c\x21\x6d\xab\xb1\x7d\xbb\x73\xe7\x71\xe7\xd1\x4e\x43\x1c\x1c\xd0\xcd\xee\x3f\xca\xbd\x72\x58\xb7\xb0\x5a\x01\x35\x35\xb4\xea\xa0\x50\x08\xa5\x03\x2d\x4a\x15\x27\x43\xb0\x8b\x9d\x87\xa6\x0e\x77\x1a\xed\x8d\xc6\x76\xc7\xbe\xdd\x30\x8d\x31\x8c\xfe\x95\x77\x0c\xd9\x56\x1d\xa9\xa0\xa5\x7c\x40\xb1\x2c\x0b\xf1\xdd\x6c\x55\x34\x53\xc9\x00\xeb\x8e\x26\x61\xed\x68\x3b\x0f\xf9\x46\x23\xdd\x06\xbf\xe5\x05\x0e\x56\xe9\xf9\x8b\x1b\xb1\x03\x20\xcb\x8d\xb6\x9d\x6d\x15\x83\x75\xdd\xc4\xb9\x9b\x80\x3b\x28\xec\x11\x99\x6d\x80\x66\x6f\xe7\x25\xa8\x59\x96\x8c\x41\xbc\x23\x38\x40\xd8\x3e\x88\x02\x6f\x84\x11\xed\xa8\x53\x59\xd9\xe9\xbc\xe4\x62\x55\xb0\x6e\x5f\x53\x13\x94\xaf\x1b\xba\x0e\xcc\xe4\x7b\x3c\xee\x0a\x6c\x89\x94\x83\xa7\x33\x4f\xce\x16\x09\xfd\x49\x93\xe5\x6d\x05\x46\xb5\x17\x18\x58\xd9\x91\x1c\x9d\xba\xb8\x77\xa4\x62\x70\xd1\x73\x22\xa4\x0c\xcf\x14\x93\xbe\x7c\x40\x31\xa5\x22\x23\x15\x15\x31\xa8\xd1\x18\x74\xcc\x41\x42\xf2\xc6\x06\x15\x87\x11\x1b\xf0\x0b\x21\xab\xd9\x35\x8b\x40\x5b\x96\x85\xd7\xa5\xf6\xb3\xb5\x08\x9f\x7b\x48\x3b\x0c\x7c\x4c\x1f\xbb\xee\xc7\x11\x30\xd3\x5d\x92\xb5\x3a\xd2\xd8\x8e\x66\x7c\x06\xbb\x6e\xab\x18\x98\x72\x67\xc8\xcd\x6c\xac\xda\x00\x86\x35\x4e\x99\x74\x4d\x14\x5d\x01\xe3\xf1\x7b\xcf\xd3\x28\x52\xf5\x60\xe4\xf7\x37\x46\xe1\x09\x8a\x2c\xa9\x35\x76\x9c\x7e\xdf\xf5\x07\xf5\xe0\x6c\xc7\xc1\x47\x72\x4c\x3d\x08\xfb\x28\x4c\x22\x68\x2e\xe4\xfd\x56\x10\xb2\x38\x11\xb8\x19\xf4\x46\xc7\x88\x55\x50\xce\x61\x23\xf0\x31\xf2\x71\x3d\x38\xcb\x2f\xd1\x92\x51\x23\x58\xf1\x17\x99\xa9\xfe\x31\xb2\x54\xdf\x72\x54\xac\xae\x00\xc2\x5c\xc9\x5b\xa5\x0c\x40\xa2\x3c\xe1\x48\x23\x3a\xab\x42\x60\x9b\x17\xa2\x67\xd9\xe3\x31\xa1\x81\x44\xd6\x19\x4c\x96\xa0\x07\xfd\xf7\x95\xd5\x7a\xe8\x10\x5b\x88\xb3\xdd\x60\x68\x61\xf6\x7a\xea\xf6\xf1\x91\x15\xb2\x8f\x23\x44\x96\x5d\x96\x2f\xe8\x19\xaa\x36\x95\x09\x04\x43\x3a\x0c\x83\xe3\x0d\xcf\x45\x3e\x6e\xa3\xde\xf4\x21\x4a\x9a\xea\x9c\x39\xd1\x82\x8b\x18\x22\x52\x6a\x31\x84\x88\x15\x09\x11\x2f\x2d\x61\x5e\x30\xb0\xd4\x74\xef\xcc\x0e\x4a\x9e\x73\xa4\xa5\x11\x51\x6d\x6d\x80\x30\x4d\xe3\xfa\x03\x29\x1c\xd0\x64\x63\x98\x3f\x12\x72\xd5\x35\x18\x57\xb0\x19\xd6\x68\xbf\xd2\xd5\x0e\xe8\xb8\x7b\x40\x91\xb6\x69\x25\xd0\xbe\x9e\x0d\xa6\x75\x2a\xb1\x53\x59\x29\x66\x2a\x07\x00\x6d\x5e\x6f\x02\xac\x67\x81\xcb\x69\xe0\x34\xea\xd2\xd0\xce\x12\x46\x8c\x3c\xbd\xcb\x58\x2d\xf4\x2d\x8a\x0a\xfb\xa8\x5b\x34\x67\xf6\xe1\x58\x14\x27\xfa\x51\xcb\xab\xb4\x53\xc4\xf9\xd5\x0e\x8b\x78\x66\xc5\x71\xb6\xe2\xd9\x3c\x8a\x4e\xd1\x97\x2b\x9f\xcd\xaa\x88\x33\x95\x2f\x86\xc5\x3a\x23\xc0\x34\xbf\xcb\x3b\xf5\x3d\x08\xfa\xe7\x10\x5b\xb6\xd6\xe7\x90\x0d\x0f\x91\x9f\x1a\x19\x54\x84\xed\x60\x69\x24\xf1\x51\xa4\x08\x95\x18\x76\x3c\xeb\x9c\xa9\xf1\x0b\xd2\xa2\x5e\x18\x78\x1e\xab\x27\x96\xbf\xc4\x69\x2e\x85\x0a\x0e\x0f\x23\x84\x05\x94\xf4\x95\x82\xea\xd1\x3e\x29\xa0\xa4\x2f\x40\x38\xcf\xec\xd2\xef\x50\x6a\xc5\xc5\xb3\xcf\x9c\xf2\x63\x38\xf9\x33\x07\x83\x18\x4e\xfe\x04\x20\xdd\x0f\x88\x9c\x4f\xb8\x53\x4c\xfb\xf4\x04\x94\x1e\x36\x5c\x62\x40\x4c\x62\x58\xd0\xc5\xec\x1a\xa8\xb4\xd3\x6c\xa1\x43\xdc\x1a\x61\x14\xc2\xf8\xb3\xe9\xfb\xe2\xb3\x4d\x8a\x97\xa2\xe9\x37\x8d\x67\xd2\xc5\x82\x91\xc9\x6e\x76\x02\x48\x7a\x00\xc6\xc1\x71\x0a\x44\x0a\x92\xb3\x2d\xcb\xd9\xbe\x40\xb2\x38\x48\xae\x4e\x12\x22\x67\x5d\x31\x33\x62\x46\x52\xc4\x9c\xc4\x70\x2e\xb1\xc0\x94\x7c\x42\xd8\x2c\xd3\xd7\xdb\x8f\x55\x01\x52\xf3\x46\x5d\xc8\x81\xeb\x3e\xd3\x90\xb2\x89\x78\xdd\x77\x4f\xdc\x3e\x52\xb5\x25\xb8\x68\x00\x60\x8a\x28\x00\xf1\xdc\xb4\x38\x93\x56\x4f\xd2\x92\x99\x74\x6e\xda\x70\x2a\xad\x16\xa2\x13\x14\x46\x48\x4d\x72\x21\xb3\xf0\xdc\x5c\xd0\x14\xf6\x39\xb9\x20\x00\xfd\x31\x80\x2e\x99\x45\x66\x48\x54\x39\xfa\x1b\x79\x94\x9f\xd5\x19\xa6\x5b\x8f\x86\x74\x67\xcc\x30\x57\x16\x99\x1d\x0a\x39\x3d\x79\xba\xff\xd1\x90\xee\x38\x4f\xc6\xcc\x9f\x16\xf0\xbe\xab\x75\x5a\x3b\x8f\xb7\x1a\xb7\x3a\x5d\xc2\x76\xb3\xcb\x17\x95\xb3\x71\xba\xb0\x4c\x01\x1b\xb9\xc0\x7c\xe2\x86\x4e\x0c\xdd\x6e\xde\xbe\x73\x55\xde\x51\x16\x7a\x7e\xe6\x01\x05\xaf\xb7\x3a\x9d\xd6\xdd\x17\xca\xdf\xcb\x49\x30\xbf\x88\x91\x9c\xe2\x05\xa8\x73\x6f\x1a\x7e\x7e\x01\xa7\x64\x78\x9e\xb2\xde\xa9\x86\x45\x07\x5c\x8f\xf3\x12\xa1\xa3\x62\x90\x13\x5a\x2f\xde\x23\xa1\x71\x3e\x3c\x38\x2a\x7a\x52\x30\x9d\xbb\xf6\xe2\xd9\x43\x73\x86\x43\xef\x9c\xce\x21\xf0\x14\xd4\xf6\x6e\x1a\x44\x92\xbe\x6e\xed\xc1\x3a\x79\x38\xe4\x11\x91\x47\x40\x1e\x1e\x79\x8c\xc8\xe3\xde\x75\x6b\x0f\x70\xbd\x11\x31\x9f\x3b\x70\xc3\x8a\xe7\x6a\x0f\xf6\xe3\x88\x00\xde\x4a\x22\xee\x71\xd6\x73\x21\x8f\x20\x33\xbc\xa9\x5f\x5e\xd6\x6f\xea\xeb\x3d\x2e\x51\xb0\x0e\x0e\x43\x58\x87\x49\xdf\x02\x26\x99\x6c\x7c\x31\xd0\x53\xa0\x00\xca\xe3\x63\x3a\xc3\x17\x96\xcb\xe2\xf9\x4f\x87\x61\x69\x5a\x14\x93\xa2\xeb\xa5\x6c\x62\x70\x25\xb2\x2f\x8a\x06\xad\x4e\xc2\x3f\x4c\x87\xd4\x27\x92\xeb\x33\xe0\x24\x72\x60\x04\xa5\x21\x32\xa3\x58\xde\x16\x12\xad\x12\x4e\x91\x93\x79\xac\x7a\x36\x10\xe2\x5a\xae\x54\x9a\x4b\xc0\xc1\xcd\x59\x49\xd6\x75\xd3\x99\x22\x29\x8c\xa6\xc8\xf8\xe2\xf5\x29\x65\x85\xe7\x99\xe4\xcc\x72\x64\x33\x20\x95\xf6\xe4\x4a\xf7\x79\xe2\x0d\x18\x40\x0f\xa6\xd9\xc2\x8b\x90\xb5\x98\x0c\xbe\x2c\x33\xce\x29\x2d\x26\x71\x1f\x26\x95\xc9\x27\x71\x0c\xba\x11\x0b\xc3\x39\x35\x94\x7a\x66\x30\x45\x17\x00\xbd\x52\x76\xa9\xf0\x52\x55\x9c\x45\xe9\x78\x60\x4f\x2d\x44\x60\x66\xc6\x33\x47\x84\x06\xf7\xa6\x06\x79\xf1\x16\x1c\xc1\x7b\x30\xc5\x24\xe7\x8d\xf4\x29\x32\x27\xa3\x7e\xaa\x84\x59\xc3\xed\x96\x4c\xad\x51\x0e\xe1\xef\xcd\xa1\xd6\xcb\x8f\xee\xd9\x44\x1a\x8f\xe1\x85\xe0\x18\xa6\x0e\xe3\x6e\x6f\x1a\x50\x6e\x1b\xb3\x0c\xa5\xc2\xcd\xca\x18\xa4\x14\x6e\x99\x78\x07\x1d\x36\x7b\x47\x16\x5b\x14\x44\x1f\x0b\xb1\x5a\x06\x25\x03\x5c\xaf\x5c\xab\x92\xc9\xf1\x5a\x04\x7b\x56\x78\x2d\x82\x9e\x65\x17\x31\x1c\x59\xa8\x18\xd6\xb8\x34\xee\x70\x69\x3c\xe1\x60\xf2\xa6\x57\x2c\x5d\xa9\x99\x7a\xc3\x11\x80\x53\x41\xa5\x5e\x36\xd0\x2b\x05\x10\x4d\x05\x42\x04\xb8\x08\x2c\x8d\xf8\x17\x2b\x76\x2a\x33\xbb\x98\x5b\x42\x1e\x2e\x70\x94\x14\x9b\xa2\xf2\x0b\x94\xec\xe5\x56\xa3\xd8\xcb\x43\x27\x8f\x34\x53\x25\x53\x4a\xe7\x6c\x33\xce\x46\x60\x94\x47\xdc\x9c\xb2\xf2\xb0\x22\x14\x7f\xcf\xb7\x2e\xff\xd8\x8f\x55\x74\x22\xd6\xe6\x1c\xac\xac\x87\xc9\x36\x5f\x38\x26\xc2\xac\x5a\xa5\x42\xaa\xba\x44\x96\x1c\x58\x35\xca\x64\x1c\x63\xb5\x52\xa1\xa2\xa8\x5a\xa9\x52\x01\x53\xad\x2c\x51\xc1\x51\xad\x2c\x13\x79\x10\xab\x95\x15\x00\xf7\xc8\xef\x2a\x80\x03\x0b\xab\xab\x00\x6e\x90\xcf\x35\x00\xfb\x24\x53\x1d\xc0\x5b\x24\xbb\x55\x00\x1b\xe4\x77\x05\xc0\x43\xf2\xbb\x06\xe0\x11\xf9\x35\x00\xbc\x43\xe0\x0c\x00\x87\x16\x56\xcb\x3a\x80\xdb\xe4\xbb\x0c\x60\x93\xfc\x56\x00\x7c\x8d\xfc\x56\x01\xec\x90\xdf\x25\x00\x8f\x09\x1c\x80\x27\xe4\xc7\x00\xf0\x9c\x64\x53\x65\x2d\x7d\x60\xed\x2b\xcd\xed\x9d\xbd\x8e\x02\x95\x4e\xe3\x61\xc7\x6e\x37\x6c\x05\x2a\xbb\x8d\xad\xc6\x46\x47\xe9\xc2\xdd\xab\x76\x30\x99\xd9\x06\x3e\x72\xa3\xda\xfb\xb8\x99\xc9\xce\x01\xc4\x1e\x26\x76\x06\xdb\xce\x31\xb2\x90\x78\x63\xc1\xae\xdf\x47\x67\x96\xcf\x3e\x7a\x47\xae\xd7\xdf\x0e\xfa\x28\xb2\xf6\xbb\x7c\x47\xd4\x8d\x70\x13\xa3\x63\x1a\xa2\xf8\x54\xd7\x5f\xb2\xcb\xd3\x22\xec\x84\xb8\x50\x50\x63\xe0\x5d\x12\x60\xf1\x08\x46\xbf\xc8\x42\x5a\x70\xea\xa3\x50\xec\x4f\x89\xe1\x79\xdf\x45\xa7\x70\xd7\x22\xa8\x0e\xd0\xc3\x16\xdd\x96\x81\x8f\xf9\xf7\x23\xfe\xbd\x69\x45\x64\xf9\xb0\x11\x1c\x0f\x47\x18\xf5\x77\xf1\xb9\x87\x54\x44\xb7\x5c\x01\xbc\x6b\xa9\x3a\xf4\xf8\xee\x97\x1b\x0d\x3d\xe7\x1c\xa8\x9b\x5a\x9f\xbf\xc2\x96\xa5\x84\x4e\xdf\x0d\xd8\xe1\x19\xc1\xfa\xf2\x52\xe9\x1d\xa1\xde\x93\x83\xe0\x2c\x09\x84\x6d\x92\xcf\x21\xdf\xc9\x09\x22\x97\x10\x94\x64\x34\x14\xef\x35\xf7\x90\xd5\x91\x9e\x9d\x58\x17\x07\x4e\xef\xc9\x20\x24\xcb\x4a\xb3\xb5\x7e\xa2\xd1\xee\xf1\xb8\x6e\x6f\xbc\x76\xbb\xdd\xda\xdb\xde\x34\x89\x50\xc2\xd7\x9e\x31\x24\x50\x37\xc9\x38\x62\xd3\xa1\x9c\xac\xd5\xde\x6c\xb4\x77\x49\x1a\x57\xac\x57\x09\x08\x50\x37\x05\x74\xdb\xe9\xbb\xa3\xc8\x54\x53\x3b\x00\x91\x76\xa7\x73\x77\xab\xe9\x0f\x47\x62\x1f\xef\xf2\x32\x05\x90\x8d\x06\x85\x42\x6b\x5d\xd5\xe1\x09\x21\x28\x8d\xa8\x4b\xb9\x03\x15\x01\x82\x43\x4f\xc6\x41\x44\x6d\x02\xd8\x0b\xbc\x40\x46\x7b\xa3\xb5\xd5\x6a\x53\xb1\xc0\x89\xf9\xed\xa6\x46\xa1\x00\xe4\x2d\x60\xde\x85\x87\x5e\xe0\x60\x92\xef\x88\xe5\xbb\xb1\xbb\x4b\xcf\xa1\x08\x79\x69\x1c\x80\x87\x81\x4f\x21\xee\x31\x88\x5b\x81\x8f\x69\x89\x1e\xc2\x18\x85\xbb\x43\xa7\xe7\xfa\x03\x02\x70\xca\x00\xb6\xe4\x70\x92\x4f\x0a\x10\x40\xd6\x0f\xcf\x3d\x64\xde\xb5\x2c\xcb\xd3\x36\x9b\xbb\x3b\x5b\xf6\x23\x6d\xab\xb9\xdb\x79\xdc\xec\x34\xee\x12\x22\x0c\x78\x5e\x02\x96\x94\x48\xed\x4b\xa8\x2a\x5b\x3d\x44\xce\x13\x52\xe4\x9e\x00\xe3\x61\xb4\xb8\xf8\x03\x1e\x3b\xe1\xc0\xf5\x09\xe0\x06\x03\xbc\x4b\x03\x28\xfa\x01\xc1\x07\x9f\xcb\x67\x6f\x9b\x1a\x0f\x04\x30\x38\x41\xe1\xa1\x17\x9c\x9a\x25\xc3\xb2\xac\x03\x36\x12\x5b\x87\x6a\x3c\x40\x01\xc1\xb2\xcf\x72\x6d\x71\x60\x52\xba\x48\x08\xcc\xbe\xd6\xba\xdf\x68\xdf\xda\x6a\x3d\xd0\xee\x34\x37\x37\x1b\xdb\x71\xa6\x0f\x42\x67\x48\x90\xba\x95\x4e\x4e\x82\xe5\x2c\xc8\xf7\x7a\xfa\xd3\xdc\xd4\x4e\x83\xb0\x4f\x21\xe1\x90\x6d\xd3\x90\x9c\x1a\x62\x9b\x93\x86\xd0\xfa\x89\xc1\x61\xb6\x21\x46\x67\x78\x13\xf5\x82\xd0\xa1\x01\xaa\x0e\x8f\x18\x7c\x27\x15\x41\x93\x11\xd8\xdd\x23\xa7\x1f\x9c\x12\xb8\x3b\x09\x1c\x0b\x24\xf8\x25\x20\x0c\x9c\x5a\xa5\x1c\x06\xe1\x31\x49\x31\x4c\x52\xc4\xe1\x22\x51\x12\x00\xb1\x9c\x66\x9b\xa7\x91\xe0\x01\x3c\x71\x23\xf7\xc0\xf5\x48\x13\xa9\x3a\x6c\x32\x90\xfb\x71\x20\xc9\x33\x01\x01\x90\x90\x25\xee\x16\xaf\x31\xe8\x07\x22\x8c\x00\xc7\x00\x00\x7e\xbc\x49\x5a\x93\x00\x76\x18\xe0\x87\x69\x00\x50\xdb\x8b\x96\x75\xa8\xed\xb4\x76\x9b\x9d\x66\x6b\x5b\xdb\xed\xd8\x9d\xe6\xc6\xfa\xa6\xc6\x13\x28\xce\x08\x07\x0a\x18\x73\xe6\x1c\xc5\x08\xa3\xbe\x0a\x0a\x85\xf8\xec\x36\xae\x9c\xa5\x1c\x3b\x38\x74\xcf\x54\x83\xaa\x9e\xd0\x27\x50\x08\x63\xcc\xed\xf8\x6c\x2e\xda\x21\xdc\xee\x9c\x30\x01\xd2\xfb\x5b\x84\x35\x03\xca\xdd\x28\x9b\xdb\x61\x40\x0f\xad\x9d\x84\xfb\x0b\xf1\x45\x0e\x62\x7b\x9b\x24\x95\x34\x55\xd0\xe9\x84\xda\xef\xda\x18\x87\xee\xc1\x08\x23\x95\xcb\x2c\xa0\x50\xc8\x99\x40\x68\xdc\x3a\xff\x35\x75\xcb\xb2\x1e\xae\x4f\x81\xed\x24\x53\xcb\xba\xf4\x6e\x1a\xa6\x84\xd0\xfe\xc3\x92\xd1\x4d\xb0\x28\x1a\xe3\xb1\xd2\xbc\x7b\x9b\x73\x79\x36\xa6\x0a\x05\xa4\x39\xfd\x7e\xe3\x04\xf9\xb4\xee\xc8\x47\xa1\xaa\x78\x81\xd3\x57\x64\x63\xf1\xba\x76\xc0\x0e\xd7\x54\x1d\x1e\xcb\xa7\x6d\x40\x45\x70\x17\x3e\x06\xb0\xae\xf5\x46\xe1\x09\xea\xd7\x73\xe1\xd8\x56\x23\x50\x45\x3e\xb0\xce\xdb\x8d\x71\xf3\xcc\x27\xe7\xb1\x63\x4e\x47\xf7\xd8\x19\x20\x6b\x8b\x09\x5d\xcc\x94\x89\x15\xc2\x79\x77\x88\x48\xc3\x3b\x82\x81\x33\xb4\x66\x21\x4a\x39\x7a\x7e\x15\xd8\x94\xff\x02\xb5\x90\x70\x80\xc9\x1c\x28\xea\x32\x15\x22\xaa\x33\xad\x59\x42\xa6\x71\xcf\x1d\xee\x38\xf8\x28\xca\xd1\x2c\x21\xbd\xce\xb6\x24\xd9\x65\x5d\x7a\xd7\xe4\xc4\x2a\x30\x93\x3d\x7d\x09\x01\xc1\xc8\x16\x2d\x4b\xe2\x8d\xf7\x9b\xbb\xcd\xfa\x56\x63\xdd\x26\xd2\x74\xcf\xc1\xea\x3e\xad\xe8\x8c\xcd\x68\x5e\x5f\x99\x30\xa0\x0b\x4c\x3b\x56\x6c\x71\xa3\xa6\x7f\xcb\x0b\x4e\xaf\xd0\x8d\x71\xa3\x76\x10\x88\x99\x97\x0c\xde\x45\x1e\x4c\x67\x02\xd7\x1f\xc8\x61\x62\x73\xd4\x3b\x17\xd2\x07\x19\xf0\x52\x91\x94\x2d\x79\xb3\xf5\x71\x16\x55\x1d\x46\xa4\x7e\xd8\x71\x7d\xd1\x66\x8c\x28\x7c\x2a\x86\x09\x3b\xd8\x6e\x6d\x37\x40\xa1\x20\x13\x8e\xcd\x4a\x37\xf5\x54\x68\xc2\xfd\x2c\xcb\x6a\x32\x3a\x36\xb7\x9a\x9d\x47\x82\xa4\x12\x82\x79\x35\xb8\x82\x42\xac\x10\x31\x8b\xe4\x31\xc6\x14\x36\xf9\x80\xed\xc6\x96\xdd\x69\xde\x97\x51\x79\x0f\x11\x90\x72\x15\xcd\xf6\x42\x79\x52\xc1\x66\xd1\xb2\x46\xda\xad\xad\x96\xdd\xa1\x14\x97\xf2\x92\x7a\xc6\x7c\x83\x49\x61\x68\xc9\xc6\x80\x94\x83\x34\x31\xbc\x98\xc9\x65\x66\xde\xc8\x25\xd7\x03\x17\x1f\xb1\x89\xea\xca\xbe\x2d\x77\x53\xd1\x8d\x59\x11\x6c\x26\xd3\xc8\x44\x96\x1a\x32\x44\x68\xda\x42\x27\xc8\x9b\x99\xf7\xcb\x74\xe1\xe6\xf6\x56\x73\xbb\x01\x2e\x2f\x5f\x3e\xd1\xe3\xfa\x56\x6b\xe3\xb5\x77\x97\xf4\xd6\x56\xe3\xe1\xbb\x4b\x79\xbb\xdd\xdc\x7c\x77\x29\x93\xc9\xfb\x5d\x25\xef\xd8\xf5\xad\x06\x98\x6a\x8a\xba\x17\xf4\x9e\xb4\x42\xf6\xd1\x71\xe6\xf1\x96\xf7\x97\xc4\x02\xdf\x69\x6d\xbd\x5d\xba\x9a\xdc\xb2\xa6\x3d\x71\xc8\x8b\x1e\x7b\xf6\x5a\x53\xdb\xbd\x7f\x7b\xf7\xfe\xed\x78\xb1\x94\x4a\x97\x8a\x13\xda\x74\x64\x75\xf3\xf0\xee\xd6\x2e\x0a\x5d\xc7\x73\x3f\x8e\xc2\xd8\xa6\x5c\x23\x42\x43\x93\x4c\xd5\xaa\xd2\x77\xb0\x63\xd2\x69\xfb\x7a\x74\x32\x28\x9e\x1d\x7b\x50\x29\x22\xbf\x17\xf4\xd1\x5e\xbb\x49\x56\xae\x81\x4f\x26\x01\xac\x45\x22\xa3\x0e\xb7\x97\x56\x6d\x00\xc0\x98\x6f\x49\xda\xb1\xe8\xcf\x54\x0b\x89\xf4\xc2\xd5\x05\xed\xbc\x82\x43\x32\x4b\x11\xc6\xb0\x1b\xf6\x2e\x2f\x43\x2d\x0a\x7b\x5c\xe3\x70\xc3\xde\xbe\x6f\xef\xb2\xc4\x7e\x36\xf1\x06\x75\x93\xa3\xfa\x1c\xb6\x79\xab\x6d\xdf\x6d\x30\xd8\xba\x45\xd5\x84\x24\xd9\x8d\xd4\xad\x24\x79\xd7\x29\xb9\x3e\x46\xa1\xef\x78\x25\xf7\x30\x74\x8e\x51\xe9\x09\x3a\x57\xa8\xdc\x58\x17\x7e\x4d\xea\x63\x89\xff\xbc\xe7\x7b\x6f\x28\xee\x4f\xf9\xca\x49\xfa\xa2\xa5\xda\x05\x44\x35\x33\xfa\x2e\x6b\xde\x7c\xc8\x64\xd3\xd8\xbe\x66\x17\xd1\x35\x96\xa6\x17\x0c\xcf\x37\x76\x77\xe9\x9a\x30\x5b\x44\xb2\xa9\x67\xc7\x0a\xb8\x35\x7c\xd3\xd2\x6b\xb8\x54\x12\xfb\x7a\xb6\xe6\x62\x74\xac\x62\x50\x53\x7a\x4c\x1b\x49\x59\xb4\xac\x90\x88\x9e\xac\xeb\x47\x08\xc7\x15\x0d\x21\x25\xb8\xf8\x66\x87\xa3\x21\x88\xa5\x27\x44\x50\xda\xbd\x6b\x6f\x6d\x3d\x6e\xde\xb5\x6f\x37\x2c\xb9\xb3\x0d\xdc\xc3\xda\x81\x13\xa1\xe5\x2a\x6c\xeb\xde\xed\xd6\xa6\x77\x64\xdf\xb3\xeb\x76\xd3\x66\xff\xed\x5c\xbf\x7e\xfd\xfc\xce\x52\xdd\x6e\xd0\xcf\x2d\x16\x5a\xb7\xe9\x77\xb3\xde\xb6\xed\x15\xe5\x55\x69\x75\xc6\xbb\x1e\xb4\xab\x5a\x53\xc1\x29\x8d\xce\x38\xb4\x8d\x86\xc8\xc1\x53\x1a\x9f\x71\xbc\x98\x76\x72\x63\x07\x22\xd6\xf5\x07\x76\x88\x9c\x19\x40\x8e\xeb\xe3\x1c\x88\xdb\xa1\xd3\x77\x91\x8f\x93\xc2\xb2\x6a\xa3\x53\x31\xc9\x7e\xcf\xe3\x56\xbb\x79\xbb\xb9\x9d\x0e\xdb\xd8\x6a\xee\xa4\x43\x76\x9b\x1f\x6e\xa4\x43\xda\x8d\x9d\x86\xdd\x49\x6b\x96\xba\x2a\x56\x75\xaa\xf4\x44\xde\x0c\xaa\x6e\x49\xde\x2a\xe4\xd5\xa1\xaf\x2b\x80\xea\x0a\xa8\x65\xb6\xbd\x6a\xac\x48\x7a\x98\xee\x4b\xe9\x61\xf6\x72\xf1\xb9\x60\xbf\xa6\x0e\xb7\x5b\x3c\xcc\x34\x20\x7b\x79\xfc\xd0\x2c\x8b\xd7\x47\x66\x65\x0c\xbd\x9c\x4a\x5e\xd8\x7b\x9d\x96\xa9\xc3\x8d\xd6\x76\xc7\x6e\x6e\x9b\x06\xdc\x20\xf2\xb8\x59\x86\x4c\xe9\x9e\xa4\x1b\xe5\x90\xeb\x82\x6d\x86\x3d\xae\xb7\xa8\x3a\xbe\xbd\xb9\xd9\xdc\xbe\x4d\xbf\x0c\x9a\x57\x63\xbb\x43\xbf\xca\x63\x78\x2f\xb7\x05\x46\x92\x73\x10\xa6\x17\xcd\x99\xeb\xfb\xb2\xf1\x2a\x38\x37\x67\x51\x0a\xd3\x59\x8f\x48\x77\xf1\x34\x4e\x8b\xda\x41\x88\x9c\x27\x35\x0e\x77\x82\xc2\x2c\xd4\xfd\x46\x5b\x86\xa1\x5b\x02\x29\x10\x42\x5b\x0e\x21\x5a\x53\x52\xef\x4f\x9f\x80\x20\x32\xf5\xef\xa5\xd5\x7d\xd2\xfd\x38\x5f\x21\x46\x87\xbe\xa5\x43\xc7\xb2\x69\xa1\x84\xbf\x3b\xfb\x7a\x97\x61\x60\x25\x95\xb9\xbc\xcc\x06\xdf\x6f\xb4\xc5\xb1\x1c\x66\x47\xa9\xd7\x31\x3f\x0e\x84\x81\xc5\x35\x5b\xaf\x0b\xcd\x56\x31\x33\x45\x37\x82\x45\x4b\xcd\xcb\x6b\x3d\x7d\x38\xc4\xf3\x84\x22\xef\x80\x9d\x4c\xca\x00\x2c\xe7\x6b\x01\xc4\xb1\xfa\x2c\x2f\xc5\x89\x95\x3f\x0b\x05\x35\xb4\x92\xcf\x69\x05\x15\x9e\x3f\x19\x71\x29\xa4\x08\xed\x0b\x05\x87\x7a\x16\x92\xc3\xd6\x09\x4f\x62\xc5\x99\xb9\xb1\xe1\x75\x5e\xf7\x6b\x69\x38\x81\x8e\x6f\x25\x9f\x79\xe8\xf0\xaa\xe4\xe3\xa3\x86\x96\x1f\xd3\xf4\x1a\x12\xaa\x32\x69\xca\x08\x7d\xc5\xab\x58\x5e\x9e\x5f\x32\xd6\x0d\x60\x68\xe1\x98\x66\xeb\x78\x0e\xf9\x04\x0a\xa6\x50\x65\xf6\x2d\x1c\x57\x6f\x1d\xcf\xa9\x69\xac\xf3\x6c\x4a\x45\x85\x66\xb6\xc3\xe4\x55\x8d\x84\x9d\xaa\x7c\x0f\x0d\xc0\x41\x7e\xaf\x4f\xcf\x00\x73\x35\x35\x47\x9a\xc4\x8e\x64\x61\x38\x57\x73\x0e\xa8\x36\x3f\xec\x1c\x69\x32\xe7\x4a\x1f\x76\xa6\x33\xc8\xee\x3d\xd8\x64\xb8\xbe\xd0\xe4\x36\x4b\xd9\x71\x56\xfe\x80\x6e\x28\x89\xd3\x6f\x9b\xd7\xf0\xde\x74\x0d\x17\x50\x8d\x47\xc9\x0c\x97\x9f\x61\xed\x07\x71\xd5\x76\x9b\x9b\x8d\x5d\x8d\xaa\x78\xcd\x6e\x7f\xaa\xff\x96\x4d\xc3\x14\xcf\xe6\x24\x72\x73\x12\x75\x5a\x3b\xf3\x92\xf4\x72\x92\xb0\x13\xe7\x39\xa9\x52\x3a\xbd\xdc\x1c\x41\xf5\x99\x6a\x43\x1d\xfa\x54\x97\xc1\x85\x3e\xd7\x08\xa9\x97\x1c\xe8\x0b\xcd\x06\xb7\xc4\x65\xed\x85\x7b\x73\x1a\x7b\xc1\x9f\xd1\x9c\x89\x24\x33\x43\x7f\x3f\x7d\xae\x62\xe7\x2a\xdd\x61\xa1\xaa\x22\x88\x60\xe7\xea\xda\xe1\x58\x1b\x23\x66\x22\x33\x90\x92\xc4\xaf\x29\x65\x0b\x3f\x1e\x1d\xb6\x16\x52\x38\xde\x85\x7a\x5a\x2c\x17\x70\xdd\xcd\x34\xee\x54\xcc\xa6\xd9\x73\xd2\x72\xd5\x1d\x16\x14\x32\xfd\x25\xed\x1c\x30\x76\x35\x27\x5d\xd1\x17\xf5\x7c\x0f\xd3\x0b\xe2\x14\x5f\x22\xa3\x2b\x33\xe8\xd6\xd2\x94\x79\x74\x25\x65\x42\xae\x4f\xa3\x9d\xa5\x32\xa7\x5d\x70\x1e\x42\x49\xba\x22\xce\xa9\xdd\x1f\x9e\x9e\x57\xee\x25\x32\x9a\x9b\x41\x4c\x99\x44\xae\x7c\x97\xa4\x79\xa1\xf6\xba\xa2\x7a\xef\x69\x1e\x45\x69\x8e\x7e\xd7\x95\x91\x32\xe9\x66\x8c\xf1\x5e\x6a\x58\x5d\xd9\x5e\x73\x86\xc4\x1f\x96\xf6\x45\x3b\x4c\x2e\xd2\x99\xce\x32\x1e\x4f\xaf\x27\x73\xd7\xf2\xd2\x79\xfc\x06\x3d\xa6\x26\xc5\x86\x92\xb6\x5a\x26\x1e\xc0\x83\xf4\x02\xd5\xec\x33\x1d\x2b\x09\xce\x73\x87\xe6\x20\x9d\xd4\x73\x87\x32\x48\x2b\x74\x07\xae\x6f\x6e\xa4\x80\x58\x60\xda\x1c\x21\x61\x9d\xc2\x68\x94\x4d\xcb\xa5\x83\xe0\x2c\xb6\x1a\x4d\x09\x0d\xb5\x78\x19\x81\x7c\x9c\x01\x93\xa6\xe5\x71\x1c\x98\x4c\xe3\x63\x00\x37\xac\x97\x2c\xfb\xde\x8b\x95\x7d\x2f\xaf\x6c\x59\x84\x18\xc3\x7e\xae\xf8\x78\x98\x22\x11\xa5\x38\xd0\x8e\x9d\xa1\x2a\xe3\xe9\x1e\xaa\xca\x28\xf4\x14\xcb\xb2\x6c\xed\x18\xe1\xa3\xa0\x9f\x58\xb5\x26\xbb\x5e\xb6\xe6\x84\x83\x68\x5f\xef\x82\x1a\x7b\xb5\xf0\xfa\x3e\xee\x9a\xfb\xdd\x71\xec\x81\x18\xc0\xd0\x92\x4b\x14\xb3\xad\x16\x0d\x3d\x17\xab\x0a\x54\xc8\xf2\x5a\x86\x60\x53\x9f\x1c\x5f\x4f\xc5\x13\xc9\x58\x8a\x4d\x5c\x1c\xa7\x6b\x91\x54\x59\xad\xef\xa3\xee\xe5\x25\x97\x46\x35\x1c\xba\xc7\x2a\x10\x39\x2c\x28\xac\xfa\xb7\x98\x26\xd5\x0b\x40\x36\x44\x91\x17\x51\x30\x0a\x7b\xc8\xb4\x21\x9b\x85\xcd\xbc\xa6\xe6\x99\xf0\x16\xf7\x83\x12\x83\x8d\x1b\x52\xe2\xbf\x35\x6e\x99\x4c\xe2\x4b\x67\xb1\xa1\x32\xf9\x5c\xc8\x4b\x28\x26\xfb\x54\xba\x73\x9e\x2e\x4e\xb0\x30\x2b\xdd\x23\x39\xdd\x54\xf4\x38\xfb\xad\x2a\xcc\x79\x6b\x72\x16\xec\xef\xa3\xee\x3a\x79\x98\x3e\xe9\x03\x90\xac\x4b\x4c\xe1\xce\xf8\x46\x79\x7d\x9f\x2c\x1b\xe0\x5e\xd7\x64\x2f\x64\xa9\xd1\x4d\x54\x15\x1c\x09\x90\x2c\xa4\xe8\x6a\xaa\x6b\x8a\x77\xa3\xdb\x1d\x8f\xc1\x18\xde\xca\x31\x49\x61\xed\x43\x3a\xe7\xfa\x9e\xc9\x96\x1a\x36\x18\xc3\xc6\xbc\xb1\xc6\x14\x76\x05\x51\x09\x6f\x4b\x19\x89\x27\xcb\x74\xc5\xd0\xf5\x0f\x28\x7c\x47\x96\x30\x46\x9e\x06\x07\xc3\x59\x29\x12\x78\xb6\x43\x30\x03\x4a\x49\x4e\x62\xd3\xaa\x91\x60\x0c\x0f\xad\x19\xdb\x75\xd3\xc6\x83\xd7\x3f\xf2\x7a\xf4\x27\xd7\x21\xf7\x50\xbd\xdf\x85\xbe\xa5\x28\xb0\x6e\x51\x8d\x19\x87\xbc\x47\x96\x0e\x03\x4b\x87\xae\x35\x75\xa6\xab\x28\x35\xea\x1c\xfa\xe2\x83\xca\x07\xa9\xbf\x00\xee\xc6\x40\x87\x06\x28\x14\x54\x27\x09\x31\xa0\x68\xa1\x52\x99\xac\x75\x0b\x85\x50\x78\xaf\xe6\x5d\xba\xc6\xf0\xf1\x63\x85\x19\xa5\xa4\x40\x03\x14\x8d\x9a\x52\x22\xad\xe3\xa7\x33\x47\x37\xf5\x42\x41\xb5\xe5\x60\x04\xd2\x8e\x62\xa1\x9f\xc4\x22\x00\xa0\xe2\x07\x3e\x52\x16\x2d\x4b\x25\x11\x29\x50\x50\x28\x70\x6f\xda\x17\xc3\x10\x1d\xba\x67\xa6\x0d\x19\xa7\x32\x7d\x48\x78\x11\xf5\xab\xce\xe9\x43\xa8\x92\x78\x84\x17\x03\x5a\x01\xda\x61\x10\x36\x9c\xd4\x96\x14\x65\x7e\xfa\xa2\x65\x45\x97\x97\x8b\x48\xc3\x28\xa2\x8e\xc2\x33\xdd\xe9\x83\xca\x07\xcd\xfa\x7a\x9d\x74\xc1\x42\x41\x65\xb4\x07\x66\xdd\xb2\xe5\xed\x22\x55\x31\xe9\x66\x3c\x0b\x22\xd9\x5a\x96\x15\x89\xbd\xf9\x93\xc0\xed\xab\x91\x65\x80\x5a\x50\x2c\xca\xc9\x40\x36\x99\x41\x93\x5d\xf0\x0c\x02\x91\x01\x69\x65\xba\x5b\xe9\xaa\xa0\x16\x94\x4a\x63\x29\x0f\x78\x65\xd1\x34\x95\xc8\xbc\x50\xa0\x39\x17\x0a\x8b\x3e\xf7\x47\x7c\xfd\x23\xa3\xd0\xfb\x93\xeb\x6e\xec\x22\x3d\xdb\xf8\xb4\x68\x95\x10\x16\x8c\x69\xe6\xeb\x7e\xd1\xb2\x4d\xa7\x68\xd9\xe3\x31\x80\xae\x0a\x20\x7e\x05\x27\x0e\x3b\x76\xe7\x8e\x75\x71\xbf\xb1\xd1\x69\xb5\x4d\x1d\xd6\x1b\x1f\x6e\x36\xda\x8f\x37\xf6\xda\xf7\x1b\xa6\x01\x37\x9a\xed\x8d\xad\x86\x59\x7e\x35\x6a\xc6\x16\x56\x97\xe5\x53\xb0\xb4\x82\xe9\xfb\xef\x89\x24\xa4\xd4\xd0\x18\x31\x58\xf8\x99\xb0\x99\x3f\xb7\xf0\xab\x72\x13\x11\xeb\xe9\x59\xd9\x00\x52\x25\x0b\x31\x1d\xa7\xdd\xce\xa3\xad\x06\x73\xe8\x92\x0a\x11\xc7\xfa\xe9\x8d\x76\xaa\x97\xec\xcf\x80\xbc\x68\x6e\xef\x36\x37\x1b\xa6\x0e\x5b\x7b\x1d\xfa\x66\x8c\x61\x3d\xa7\xa0\x8b\xed\xd6\x76\xc3\x2c\x19\x70\xb3\xb9\xbb\x61\xea\xa2\x3b\x18\x70\xf7\xde\x9e\xdd\x6e\x98\x65\xb8\xd9\xd8\x68\xde\xb5\xb7\xcc\x0a\xdc\xf8\xd0\x6b\x8f\xc5\x57\x55\x84\x3f\xde\x6a\xd8\x54\xf6\xfa\x70\xa3\xdd\x32\x97\xe0\x56\xeb\x41\xa3\xfd\xb8\xdd\xba\x6b\x6f\x9b\xcb\x70\x6f\x67\x27\xfe\x5a\xe1\x71\xb7\xdb\x8d\xc6\x6b\xe6\x2a\xff\xb2\xb7\x76\xee\xd8\xe6\x1a\x87\x64\x5f\x86\x0e\xed\xb6\x5d\x6f\x6e\x3c\x6e\x6e\x6f\x36\x37\x4c\xc3\x80\x76\xfb\x6e\x63\xbb\x69\x6f\x9b\x46\x19\xd6\x1b\xdb\xb7\xed\xad\xa6\x69\x54\xe0\x86\x7d\xb7\xde\xda\xa4\xe1\x55\x8a\x5f\xc3\x6e\x77\xee\x6c\x3d\x7a\x5c\x6f\xdb\xdb\x1b\x77\x4c\x63\x89\x86\xde\x69\xd8\xf7\x1b\xdb\x5b\x8f\x1e\xef\x76\x1a\x77\x4d\x63\x99\x06\x36\x37\x1b\xad\xdb\x6d\x7b\xe7\x0e\x29\x61\x05\x6e\x36\xee\xdb\xdb\xf6\x6d\xbb\xdd\x34\x8d\x55\xd8\xe8\xdc\x69\xb6\x76\x9a\x1b\x8f\xb7\xf7\xee\x36\xda\x04\x62\x0d\xde\x6e\xb4\xda\xb7\x49\x59\x65\x1d\xde\xde\xfb\x90\xdd\xb6\x3b\x4d\xb3\x6c\xc0\xdb\x7b\xed\xbb\x7b\xaf\xdd\x69\x9a\xe5\x32\xbc\xd3\xa8\xb7\x1b\x0f\xe8\x5b\xb3\x6d\xdf\xb6\xb7\x6d\xb3\x5c\x89\xdf\x1f\x37\xdb\xad\x3b\xb6\x59\xae\xc2\x0f\xd9\x3b\xf6\x76\x63\xb7\xf1\xf8\x56\xab\x4d\xe8\x59\x5e\x4a\x82\x9a\xdb\x22\x70\x19\xbe\x66\x6f\x6f\xdb\x9b\xb6\x59\x5e\x81\xaf\xd9\x1d\xfb\x35\x9a\xe1\x6a\xfc\x2e\x32\x5c\x83\xaf\xdd\xb9\xdb\x68\x9b\x15\x1d\xbe\xd6\x6a\x37\xec\xed\xc7\x77\xec\xed\xdb\x7b\x5b\x22\xfb\x8a\x21\x85\x7f\xc8\x8e\x83\xcb\xe9\xe0\xb8\xe4\x4a\x05\x6e\xd9\x2d\xb3\x52\x15\xad\x24\xc8\x5f\x59\x82\x77\xed\x2d\xfb\x91\xbd\x65\xdf\x35\x2b\xcb\xf0\x6e\x6b\xfb\x76\x6b\x8b\xc6\xac\xc0\xbb\x8f\xec\xed\xbb\x76\xdb\xac\xac\xc2\x56\xbb\xf9\xc8\x36\x2b\x6b\x70\xa7\xd1\xde\x25\xd1\x55\x1d\xee\x36\xef\xee\x3c\xde\xb8\xd3\x94\xeb\x5d\x35\xd2\xc1\x31\x06\xd5\x32\xec\xd8\x77\x9b\x5b\x66\xb5\x02\x3b\x8d\xad\xbd\xdb\x7b\x66\xb5\x0a\x3b\x77\xec\xa6\x59\x5d\x82\x9d\x66\xbd\xd1\x21\xb9\x2e\xc3\x4e\xdb\xde\x9c\xca\x75\x25\x1d\x9c\xe4\xba\x2a\x3a\x9a\xa8\x50\x75\x8d\x76\xfd\xad\xd6\xee\x5e\xbb\xf1\xb8\xb5\xd3\xd8\x36\x97\x74\x39\x88\xfc\x36\x36\xcd\x25\x63\x0c\x9d\xfc\xe1\x3b\x47\x84\xea\xbb\x51\x2f\x16\x6e\xea\x1a\xc9\x96\x2f\x50\xdc\xb0\xe7\x21\x29\x8a\x0d\x3c\x16\x19\x7d\x6c\xe4\x84\x72\x24\x1b\x8c\x2c\xb2\x8f\x7a\xee\xb1\xe3\xc9\xb9\xb2\x91\xc8\x33\xfe\xe8\x93\xd2\x34\x88\x34\x74\x53\xb9\x94\x3c\xe4\xd0\xf5\xd4\xc7\x51\x18\x4c\x67\x99\x1a\xdc\x5c\xbc\x23\xf2\x44\x29\x0c\x8e\x1d\x5f\x82\x97\x46\x3d\x03\x1b\x0d\x87\x39\x60\x12\x3b\x90\x73\x1b\x84\x08\x3d\x99\xca\x8d\xf2\x09\x19\x8c\x5e\x36\x34\x05\x46\x59\x86\x5c\x68\x16\x4c\xe2\x2c\x5c\xe2\x0c\x9d\x03\xb7\x57\x72\xfd\xbe\x2b\x37\x8e\xcc\x72\x04\xe0\x31\xf2\xdd\x54\x0d\x44\xbf\x61\x00\x07\xc8\x1f\x38\x9e\x2b\xc5\x73\xde\xc4\xdb\xc2\x39\x3e\x08\xfa\xe9\x0c\x62\x8e\x95\x34\x17\x72\x42\x7c\xe4\x9d\x97\x0e\x42\xc7\xef\x1d\x65\x5a\x2d\xcd\xd0\x92\x44\x47\xc8\x39\x41\xbe\x77\x5e\x8a\x30\x3a\xce\xa4\x49\xb1\xbb\x24\x89\xdb\x47\xc1\x20\x74\x86\x47\xa9\x6a\x67\x58\xa1\xe8\x1e\x27\x8e\xef\x0c\x9c\xd0\x4d\x75\x0a\xc1\x21\xb9\x67\x28\x7c\xe4\x06\x43\xb7\x57\xa2\x76\x3f\xa9\x4c\xb3\xec\x93\x25\x18\xa0\x20\x1c\xa4\xc9\x21\x78\x2a\x07\x18\x7d\xd4\x09\x1d\x2c\x17\x2a\x18\xad\x00\x08\x8f\x47\x4f\x8e\xd2\x00\x8c\xfb\x32\x80\x23\x74\x10\xa2\x53\x29\x9a\x31\x64\x1e\xe9\x86\xce\xc0\xf1\xe5\xce\x21\x38\x73\x1a\xa0\xe4\x86\xc1\x51\x1e\x18\xe3\xb7\x0c\xf8\xa3\xce\xd0\xf1\x51\x84\x4a\x54\xa3\x55\x1e\x6d\x19\xe6\x9e\x01\x77\xfd\xd9\x09\x04\xa3\x62\x49\x9e\x38\xbe\xef\xf4\x65\x3c\xf8\x74\x20\xa2\xb1\xf3\x24\x5d\x1d\x31\x2f\xa4\x01\xa6\xaa\x93\x9e\x3e\x38\xf0\xd1\x31\x0a\x65\x18\x32\xa1\xf0\xa8\x20\x44\x8e\x5f\x3a\x72\xfc\xc1\xc8\x9b\xae\x6e\xde\x8c\x93\x4d\xf8\x51\x67\x5e\xba\x78\x46\xca\x49\x96\x43\xae\xdc\x39\x8b\x73\x0a\x47\x66\x63\x5b\x76\x8a\x6b\xe5\x8c\xe7\xf4\xf4\xc6\x80\x8f\x1d\xcf\x39\x77\x3c\x47\x1e\x56\xf1\xa4\xc7\x41\x02\x7f\x10\x78\xe9\xac\xe2\xa9\x90\x83\x9c\x3b\xfe\xb1\x23\x53\x94\x4f\x8f\x2c\x3a\x08\xdd\x73\xb9\x49\xe8\x84\xc9\xa2\x86\x28\x8c\xd2\x59\xf3\x49\x94\xcf\x0e\xee\xf1\xb0\xd4\x3b\x72\xf3\xfb\x5e\xce\x24\x9b\x93\x2c\x87\xa8\xb9\xd3\x30\x4b\x8a\x9d\x63\x57\x06\xa5\x13\x33\x8f\x42\xde\x68\x30\x92\xe3\xe8\x5c\xcd\x23\x8f\x1c\x79\xa4\x92\xc9\x9b\x47\xb8\x07\x08\xa7\x6a\xc8\x27\x74\x1e\x1d\x3a\xfd\xd9\x35\xcc\x99\xf0\x73\x92\xe5\xd4\x30\x57\x24\x48\xcd\x1c\xd3\xfd\x23\x2d\x2d\xd4\xe2\x49\xdd\x0b\xa2\x51\x88\x4a\xc1\x10\xf9\x99\xf9\x5d\x92\x24\xa6\xc0\xc9\x2f\xea\xe7\x27\x60\x72\x46\x8d\xef\x44\xf9\x48\xc9\x9e\xc6\xd5\x85\x22\x6e\x14\x7b\xd1\x4a\xd6\x15\xd3\x7b\x1e\xaa\x0e\xc3\xdc\xfd\x11\xa0\xe6\x68\x6d\x29\x9e\x1b\xe1\x12\x55\xf1\x2a\x51\xfd\x2c\x25\x76\x1a\x74\xe1\xc9\xd2\x8e\xe9\x5c\x95\x9c\x2c\xb4\x14\x20\x19\x32\xb1\x3d\x6a\x61\x45\xba\x8e\xf6\xf5\xae\xb0\x55\xe2\x10\x62\x87\xd3\x8c\xae\xca\x5c\xec\x85\x29\xe0\x8a\x4d\x6a\xd7\x8f\xdc\x7e\x22\x43\xf9\x1a\x5b\x11\xf1\xc1\x37\xc2\x2c\x36\x7b\xe0\xa9\xf1\xe5\x12\xdd\x47\x7b\xc5\x57\xb3\xfd\xf1\x38\xde\x63\x46\xac\x75\xf2\x5b\x06\xdc\x81\xe9\x1c\xab\xd3\xf7\x77\x5b\x00\x9d\xc5\x5e\xf3\xd2\x46\xa7\xdc\x70\x25\x9c\xe7\x2b\xaf\x83\xce\xf0\x76\xd0\x47\x79\x9e\xf2\x44\xab\x05\x2a\xd2\xfa\x0e\x76\x20\x16\x7a\xec\x29\x5b\xaf\x5a\xca\x9b\x5e\x08\x31\x54\x75\x58\x4f\xcc\xc4\x84\xe1\x0b\x89\xa1\xf6\xe0\xd3\xba\xc5\x0e\xb7\x54\xbd\xae\x7e\xe4\xf2\xf5\xe8\xd2\xbc\x2c\x5d\xbe\xae\x5e\xbe\x0e\x80\xba\xef\x94\x3e\xde\x05\xd7\x07\x30\x98\xaf\x2b\xe2\x6b\x9d\xc6\xc3\xce\x63\xea\x15\x98\xf0\x45\x36\x2f\x6e\xd8\xbb\x0d\x33\xde\x02\x4c\xed\x25\xd6\xf2\x93\x6d\xd8\x3b\xcd\x8e\xbd\xd5\xfc\xb0\x94\x2e\x44\x43\xcf\xe9\x21\x35\x82\xee\xac\x64\x94\xcb\x66\x4b\xdb\x23\x3c\x99\x97\x96\x19\xa7\xf6\x78\x9c\x52\x19\x4c\x29\x1f\xc4\xd7\x6e\xe9\xeb\xa8\x88\xd3\x19\x51\x4b\x98\x57\xb3\xcf\x55\xae\xa4\xee\xf5\xb3\x53\x17\x4e\xd9\xfb\x7a\xb7\x50\x28\x2f\x2d\xd1\x77\xa3\xcb\x76\x0f\xed\xfd\xb2\x14\x5a\xe9\x8e\x61\xdd\xba\x18\x20\xbc\xb0\xbb\xb7\xb3\xd3\x6a\x77\x1e\xb7\xed\xed\xdb\x8d\xc7\xf5\xd6\xde\xf6\xe6\x6e\xbc\x1f\x9d\xd9\x78\xb5\x35\xe6\x45\xb6\xed\xf8\x03\x94\x78\xcb\x93\x02\xd9\xae\x25\xca\x77\xa1\x98\xe8\x48\xb1\x14\xc2\xe6\x47\xa1\xdd\x1f\xa3\x08\x2b\xa0\x26\x7a\x2e\x77\x1f\xa9\x18\xe5\xca\xf0\x4c\x89\x3b\x34\x57\x87\xb7\x94\x03\x2f\xe8\x3d\x51\x20\xf3\xd5\xa7\x39\xc3\x21\xf2\xfb\x1b\x47\xae\xd7\x57\x31\x80\x48\x8b\x90\x87\x7a\x74\xbc\xa8\x58\x10\x0e\xcd\xf4\xec\xc8\xdd\xe6\x89\x33\x66\xe1\x13\x89\x56\x99\xe6\x1f\xa2\xe3\xe0\x04\xc5\xf9\x1b\xe5\x8a\x65\x59\x3e\xdf\x7d\x5d\xd4\x05\xef\x5a\x34\xc6\xaa\x70\x19\x18\x8f\xb6\xfc\x66\xae\x43\x25\x8f\xf4\x71\x83\xdb\x63\x32\xf6\xa0\xdc\x44\xbb\xf7\x6f\x3f\xde\x6c\xdb\x0f\x9a\xdb\xb7\x73\x5b\x88\x6f\xf8\xa3\xd3\x05\x3a\x0d\xc2\x1c\x4a\x33\xdd\x74\x05\xc0\xd0\x62\x96\x62\x81\x4f\x58\x84\xaa\x94\xfb\x0a\x19\xe6\x51\xd8\xb3\xf2\xd4\xf4\x6f\x44\x27\x83\x85\xb3\x63\xcf\x8f\xac\x0f\x1e\x61\x3c\x34\xaf\x5f\x3f\x3d\x3d\xd5\x4e\x2b\x5a\x10\x0e\xae\x97\x75\x5d\x27\xa0\x1f\xbc\x79\x83\xfc\xdc\x54\xe8\x45\x9c\xa1\xd6\x0f\x9d\x53\x76\x16\x89\xa8\xbd\x25\x24\x43\x64\xd3\xc1\xce\x5e\x7b\x4b\x05\xc9\x35\x9a\x31\xf1\x62\x7a\xbe\x0b\x2a\x4a\xd4\x99\x47\xc4\xba\xbd\xdb\x58\xae\x4a\x74\x9c\x79\xe1\x6d\xde\x61\x65\x42\xdc\x70\x0e\x71\x7d\x2b\x9c\x26\xae\xc4\x7b\x77\xc2\xe0\xd8\x8d\x50\xea\x5c\x03\x53\xda\x23\x7e\x75\xa5\x34\x65\x11\x52\xfa\x12\x29\x31\x23\x65\x98\x43\xca\x44\x65\xdf\x56\x17\x8d\xf8\x3c\xcb\x56\x17\x75\x30\xae\x61\x2d\xf0\xbd\xc0\xe9\x5b\x75\x48\x5e\x11\x99\xc6\x72\xee\x6f\x65\x49\xe1\x22\xbd\xbc\x4e\xeb\x05\xc7\x43\x0f\x61\x54\x28\x44\x08\x77\xdc\x63\x14\x8c\xb0\x2a\x5b\x80\xaa\x60\x0c\x97\x74\x1d\x8c\x41\xd2\x68\xd0\x7e\xf1\x66\x4b\xb7\x47\xdc\x72\xd3\x78\xa1\xf1\x98\x4e\xf3\xa9\xd6\xbc\xd5\x6a\x37\x9a\xb7\xb7\x5b\xf5\x0f\x35\x36\x3a\x53\x83\x23\xe7\x4a\x65\x76\xab\x20\x99\x4f\x0b\x85\x9c\xe8\x53\xd7\xef\x07\xa7\xda\x21\xc2\xbd\xa3\xf5\x3c\xcf\xa0\x33\x9a\xbc\xc6\x55\xcb\x2c\x43\xd7\x63\x6f\xb4\xe4\xa3\x26\xce\xe5\xa7\xfa\x03\xd6\x0e\x5d\xcf\x63\x22\x35\xbd\xa5\x4f\x87\x0b\xe5\xa5\x25\xb8\xa0\x03\xc2\xee\x48\x24\xe5\x4e\xd4\x5c\x59\xa7\x7f\xe2\x62\xd3\xa4\x17\x3a\x16\x92\xfb\x41\xad\x4e\x7b\x91\x98\xa4\xa9\x5c\xce\x30\xbe\x15\x84\xc8\x1d\xf8\xac\x39\x76\xef\xdf\x06\x2a\xcf\x93\x9a\x43\xd7\xa5\x73\x7a\x19\x2b\xd4\x9f\x89\x0a\xa4\x99\x93\xfe\x14\x1b\xfd\xf4\x69\xbe\x11\xd0\xf0\x11\xf2\x55\xd9\xc5\x38\x9e\x62\x05\xbc\x26\x94\x09\xd1\x70\x52\x87\x54\x01\x54\x90\xa9\xbd\x30\x3e\xbc\xca\x53\x2d\xd4\x77\x4f\x92\xc1\x17\x1b\xe0\x66\x8e\x71\x95\x51\xe8\xa9\x4a\x91\x5e\x99\x08\xa3\xec\x0c\xa4\xeb\x64\x06\xf2\xd5\x3a\xf5\x34\x90\x5b\xe9\x17\xa6\x74\x04\x80\xc9\x87\xbf\x16\x22\x7a\xd1\x31\x19\x6e\x59\x9a\x49\x3e\xdf\x25\xd2\xd9\x6c\xe8\xfb\xea\x55\x64\x23\x19\x32\x96\x30\x9d\xe3\xa2\x21\x0f\x55\x19\x9b\x28\xf0\x4e\x10\x41\xe7\x85\x07\x6f\xee\xf0\x9b\xc7\x7d\x37\x5a\xed\x5d\x66\xa0\x93\x08\x19\xec\xa8\x89\x1e\x23\x8b\x7e\x0d\xb4\x5e\x18\x44\x11\x53\x11\x7a\x61\x6c\xa4\xcc\xe7\xe1\xd0\x6e\xec\xee\xb4\xb6\x77\xd9\xa9\x54\xc2\x2b\x32\xfa\x13\x2a\x37\x69\xbb\x83\xf1\xb0\x8d\x3e\x36\x42\x11\x06\x84\x46\xc3\xc0\x8f\xe8\xea\xf4\xc5\xa7\x77\xb9\xbc\x2b\x89\xf3\xf0\x4e\x3b\xc1\xe9\xd4\xc5\x47\x1b\x21\xea\x23\x1f\xbb\x8e\x17\x91\x95\xd5\x34\x5a\x2f\x47\x9f\x87\x77\xda\x19\x1c\xc6\x92\x78\x5f\x7f\x45\xa7\x92\x69\xf7\x16\x16\x62\x52\xf9\x66\x63\xa3\xd5\xb6\x3b\xcd\xd6\xf6\xe3\xad\xe6\x76\x63\x3a\x38\x07\x90\x1e\x28\x66\xaf\xed\xa0\xae\x96\xea\x96\x1a\x5a\xfe\x5c\x57\x4b\xf1\x8d\x16\xf9\xb9\x5e\xec\xb6\xb6\x9a\x9b\xa6\x0e\x37\x5b\x7b\x75\x7a\x34\xb9\xd9\xea\x74\x1a\x9b\x66\x19\x6e\xda\xbb\x77\x1a\x9b\x66\x05\x3e\xb0\xef\x3f\x32\xab\x63\x18\xe5\x60\xcb\x4e\x38\xa9\x35\x1f\x35\xe1\xc8\xad\xe4\xc5\xde\xf6\x66\xa3\x4d\x5e\x4d\x03\xb6\xee\xf3\xd7\x32\x64\x46\x9d\x77\xda\xad\xbd\xdb\x77\xcc\x0a\xac\x6f\x35\xb7\x5f\x23\x05\xb9\xf3\x0e\x7d\x46\x7e\x1f\x85\x9e\xeb\x27\xbb\x0f\x81\x16\xe7\xcf\x37\x20\x4e\xa6\x20\x44\xa9\x7c\xc3\xd2\xf5\x51\x89\x2c\x71\x47\x83\x23\x09\x48\xc6\x67\x1c\x87\x52\xb4\x48\x8f\xc9\x6b\xd6\xa9\x09\x13\x62\x8b\x6d\x30\x59\x96\xa5\x92\xe9\x33\xed\xff\x64\xcb\xf5\xd1\x7a\x5e\xa0\x99\x0d\x04\xeb\x84\xaa\x26\xca\x6a\x7b\xb9\x89\x5c\xc5\xad\xc0\xd7\x23\xba\x77\x65\x5e\xe4\xe4\x8a\x33\xfe\x57\x98\x0a\x64\xb6\x2c\x1a\x9a\xb1\xa6\xc9\x85\xe1\x6e\x70\xd2\x31\xcc\x9f\xce\xbc\x73\xba\x60\x74\x20\x1d\xc7\x39\x1a\xeb\x6c\x7c\x03\x2f\xc0\x58\xda\xb5\x23\x91\xa4\x03\xf2\x48\x27\x3a\x4a\x47\xd2\x4e\xc9\x22\x4f\x9d\x93\x73\x29\x8a\x74\xd3\xd8\x9a\x47\xa3\xfd\x7a\x3c\x55\x0b\xe6\xcf\xe7\x15\xde\x58\xc1\x2f\x99\xe0\x7a\x8f\xd4\xd8\x40\xfa\x7c\x4f\x46\x72\x2a\x33\x36\x00\x75\xc8\xc6\xb1\xc1\x46\x69\xaa\xf4\x8b\x4e\x6b\xc7\xd4\x61\xda\x97\x22\xb5\xb6\xa3\xee\x13\x61\x60\xf1\xda\x3e\x41\xe7\x11\x91\x65\xb2\xca\x97\xf9\x7b\x14\x54\xfb\x45\xae\x74\x4e\x92\x20\x9d\x57\x6a\x4d\x21\xf7\xb4\xe9\x4d\x49\xe6\x2f\xa4\xa4\x14\x51\x51\x29\x51\xc7\x51\x0a\x20\x4b\xb8\x39\xbd\x8c\x6d\xeb\xc6\x1d\x80\x6e\xe7\x4e\x77\x87\x2b\x8a\xa2\x72\x90\x42\x2d\x2c\x53\x97\xac\x5c\x91\x8c\x4a\xc2\xd2\xa6\x2e\x8b\x64\x83\x0d\x73\x47\x5d\x6c\x98\x84\x50\xf2\x79\x69\xb2\xfb\x76\x7c\xb0\xae\x9b\xfe\x78\x0c\x5e\x81\x7e\x12\x0e\x36\x82\x3e\xda\x09\x5c\x1f\x47\x29\xea\x89\x0d\x51\x44\x1d\xba\x59\x3a\x5d\xde\x89\x5d\xd1\x1b\x61\x4d\x18\x0d\xd9\x5a\xef\xc8\x09\x49\x26\x36\x56\x71\xb1\x48\xf7\x08\xfc\x9b\xd6\xd2\x52\x79\x6d\xb9\x50\xf0\x6f\x58\x4b\xcb\x15\x63\xad\x50\xc0\x37\x42\xe1\xcf\x6e\x3a\xcd\xd2\x72\xa5\xac\x5b\x96\xba\x5c\x5d\x32\xca\x85\x3a\x58\x47\xdc\x27\xb3\x6a\xe8\xe5\x4a\xc1\x07\x37\x6e\x18\x3a\x28\xb2\xaf\x3a\x28\x2e\x2f\x2d\x55\x96\x81\xa9\x72\x30\x1f\x40\x5c\x2a\x81\x31\xf2\x22\xb4\x10\x87\xa5\x2c\xa1\xe9\x9d\x16\xa2\xaa\xf2\x22\xcf\x3d\x54\x99\x41\x7d\x1a\x44\xe8\x91\xe5\xc5\x71\x5f\xd0\x2c\x0a\x3a\xe1\x80\x0a\x8e\x11\x93\xb8\x6d\x2b\x0e\x10\xf4\x72\x0f\xd5\x45\x9b\x67\xa8\x28\xb5\x0c\x69\x4b\x06\x0c\x2d\x45\xa9\x15\x8b\xf8\x86\x1d\xd3\x35\x9b\xc9\x0d\x0b\xaf\x33\xce\x60\xc6\x51\xfb\xb8\x5b\xf3\x6f\x58\x84\x18\x4b\xeb\x71\xb5\x4d\xd5\x2f\xd1\xb0\x65\xc8\xc3\x68\x5b\x14\x55\xff\xe6\x4d\x83\x08\xcb\x1f\x30\xf4\x72\xb5\x48\x49\x0e\x00\x54\x71\xd1\xb0\x2c\xcb\xbe\xbc\x8c\x2f\xf1\x37\x96\x2b\xab\x55\x50\x28\xa8\x61\xd1\x92\xeb\xcf\x1b\x2d\x5d\x7d\x44\xb8\x1b\x4b\x68\xe9\x31\xcd\xc3\x71\x5c\xcd\xd0\x52\xec\xfa\xc6\x66\xe3\xd6\xed\x3b\xcd\x0f\xbd\xb6\x75\x77\xbb\xb5\x73\xaf\xbd\xdb\xd9\xbb\xff\xe0\xe1\xa3\x0f\x3b\x07\xbd\x3e\x3a\x1c\x1c\xb9\x1f\x7d\xe2\x1d\xfb\xc1\xf0\x63\x61\x84\x47\x27\xa7\x67\xe7\x1f\xd7\x8d\x72\xa5\xba\xb4\xbc\xb2\xba\x56\xbc\xae\x40\xdf\xa2\x33\x3b\xe9\xd8\xfd\x64\x71\xba\xe7\xfa\x78\x95\x2e\x60\xd7\xf7\xbb\x54\xb3\x36\x09\x51\xcb\x4b\xcb\x84\x71\xea\xb5\xfa\x8d\x50\xb4\x44\xbd\x58\x04\xfe\x7e\x28\xf7\xbf\x3a\xe8\x5a\x75\x2a\xf0\xf5\x82\x7e\xde\x59\x8e\xb6\xb2\x74\x4d\x74\x7d\x98\xd8\xef\xc3\x90\x73\x6a\x52\x06\x74\xc4\x87\xb8\xeb\x07\x06\xe2\xc5\x15\x1c\x5d\xb1\xa8\x0e\xf0\x7e\xe2\x01\xa0\x5b\x28\xa8\xa8\x54\x82\x53\x31\xe5\x6e\xa1\x80\x4a\x25\xd6\xa3\x7a\x72\xdd\x17\x53\xeb\xf6\xfa\xe8\xf0\x10\x85\x85\x42\x1e\x40\x42\x8a\x42\x21\x5e\x51\x24\x81\xc9\xb9\x81\x16\x79\x6e\x0f\xd1\xf9\x5d\xca\x54\x45\xcc\x3e\x96\x11\x13\x01\xe8\x59\x2c\x9d\x1b\xb1\xa0\x1e\x58\xef\x65\x69\xde\x03\xb4\xd9\x43\x4b\xaf\x85\x37\x70\x2d\x2c\x5a\x55\xe0\x58\xfe\x7e\x6a\xc4\x87\xa0\x0b\xa3\xa9\xc0\xa2\x01\xba\x30\x98\x0e\x2e\x83\x2e\x74\xa7\x83\x2b\xa0\x0b\xbd\xfd\x7a\xb1\xd8\xb5\x9c\x1b\x37\xca\x97\xd1\xcd\x9b\x55\x11\xa0\x1a\x4b\x85\x08\xdc\xb8\x51\xbd\x0c\x6e\xde\x2c\xc7\xa1\x95\x42\x00\x6e\xdc\x58\xbe\x5c\xae\x14\x5c\x21\x24\xf5\xa8\x9d\x48\xe0\x9d\x93\x4a\x18\xcb\xb4\x16\x33\xf8\xa0\xd4\x07\xa8\x26\x33\xa9\x22\x22\x55\x2c\x03\xae\xd9\x6b\xef\x87\x45\xa3\x7b\xe3\xc6\xea\xa5\xbd\x1f\x76\x93\x1d\x04\xb9\x8c\x4a\xf9\x5d\x95\x51\x95\xcb\xa8\x74\x6f\xdc\x28\x57\x49\x21\xc5\x72\xf7\xc6\x0d\x63\xf9\x72\x66\xc9\xaf\xe0\x3a\x41\xba\xa6\xdf\x08\x46\x3e\x46\x61\x87\x1e\xe0\x68\x2e\xf3\xd1\xc3\xfd\xa9\xf1\x9d\x06\xb6\xc5\x13\xfb\x89\xcb\x2a\x50\x56\xc9\x24\x1a\xa8\x58\xad\x50\x37\x05\xe4\x6d\x8d\x7a\x29\xa0\x4e\x5b\xa9\x8b\x82\xaa\xe4\x9b\x20\x78\x29\xdf\x04\xae\xb5\xaf\xb4\xb6\x14\xa8\xec\x91\xc7\xdd\xc6\xf6\x9e\xd2\x85\x3d\x4b\xcd\xa0\x94\xb7\x9f\xc5\x2f\x41\xa3\xf7\xda\x00\x49\x94\xae\xf5\x03\x32\x57\x94\x8c\x45\xcb\x72\x73\x7c\x2e\x82\xd8\x06\x16\xc5\x57\xa9\x8d\x4f\x8f\x5c\x0f\x49\x77\xb5\x89\xec\x49\x8f\xc8\x27\x5a\x9e\x4d\x7d\x64\x09\x07\x20\xf1\xa1\x2d\xc1\x2f\x62\xb1\x81\x35\xcf\x71\xcd\x94\x03\x54\x9b\x3b\x40\x75\xa7\x92\x65\xf6\x89\x24\xd7\x2d\xa7\xa1\x33\x1c\xa2\x50\x89\x8d\x80\xd9\xee\x8e\xec\xef\x04\xa8\x01\x74\x01\x74\x33\xae\xb1\x2c\xc5\xe1\x16\xa5\x4a\x1c\xc7\x4c\x1b\x2c\x66\x7c\x10\x87\x66\xcf\x31\x44\x78\xca\x43\x27\x59\x3c\x51\xc5\x02\x18\x69\x53\x07\xd8\xfc\x38\xcd\xc9\x53\xca\x15\x67\xcb\x66\x92\xed\x21\xce\xa2\x40\xcd\x2c\xe6\x52\xd3\xf5\x7d\x2e\x9b\x95\x10\x3f\xa3\xa4\x39\x95\x44\x03\x31\xaf\x9e\xb9\xc6\xb4\x71\x02\x66\xfb\x56\x5c\x29\x2a\xc3\xb3\xa4\x70\xb2\x10\xb1\x3d\x77\xe0\x5b\xdc\xdc\x43\xd2\xb1\x9f\x51\x27\xae\x67\x9c\xaa\xd2\x5c\xb4\x2a\x2f\x80\x56\x0a\x29\x46\x91\x0c\x99\x24\x4c\xa9\xbd\x09\xf7\x06\xc2\xa7\x3b\xcf\xca\x14\xaa\x5f\x5d\x28\x1c\x59\x52\x7b\xd2\x0d\x2f\xd2\xc1\x47\x40\x32\xec\x1a\xa5\x0c\xbb\xee\x5d\xd5\x7b\xdd\xe3\x81\x02\x6a\xf7\xe8\xee\xef\x48\xd8\x7d\x25\x55\x08\x86\x09\xa5\x70\x30\x2c\x79\xe9\x7a\xb3\xad\xeb\x4c\xbd\xc5\xf6\xa7\x08\x95\x8f\xd8\xee\x31\xe1\x93\xe2\x76\x6a\x69\x4b\xd7\xae\xbc\x36\xb1\x36\x07\x97\xf8\x93\x9b\x5f\x1b\xda\xd2\xb5\xd3\x3c\x0c\x33\x81\x1c\xc3\x4c\x68\x76\x6f\x37\xc8\x90\x9a\x62\x9e\xe3\x60\x33\x76\x88\x59\x28\xa8\xbd\x19\xf4\x16\x67\xf0\xea\x2d\x55\x4a\x20\x8f\xce\xce\xf9\x10\xd1\x4b\x8d\x32\x14\xeb\x81\xab\x5a\x43\x5c\xc1\x92\x2d\xf9\x20\xe8\x9f\xd7\xf6\x52\x99\xb9\x00\xf6\xd6\x55\x24\xf9\xa1\x66\xb3\x65\xbc\x8a\xd4\x64\x85\x01\xb5\x07\x11\x00\x70\x2f\x75\x88\xe9\x02\x60\x4e\x67\x90\xb6\x7c\x72\xa9\x45\xbb\x4e\xd5\x5f\x2e\x5c\x1f\xa3\x01\x0a\x23\x73\xdf\x40\x15\xb8\xa6\xeb\x70\x49\xd7\x61\x95\x6f\x6d\xaf\x91\x4f\x58\x25\x1f\x70\x0d\x2e\xc1\x2a\x34\xba\x4c\x4f\x21\x32\xf7\x95\xbb\x0a\x54\x36\xc8\x63\x93\xbc\xd0\x87\x02\x95\x87\xe4\x41\x26\xac\x87\xf4\xa1\x40\xa5\x49\x1e\xf7\xc9\x0b\x7d\x28\xdd\x31\x91\xc3\xa4\xa2\xd7\x50\x05\xae\xa2\x0a\x5c\x41\x15\xb8\x8c\x2a\x70\x09\x55\x60\x15\x55\x60\x05\x55\x60\x19\x55\xa0\x40\x6d\x55\xd7\xe1\x8a\xae\xc3\x65\x09\xcd\x8a\xae\xc3\x72\x82\xee\x2a\x81\x80\xcb\x02\xef\x0a\x89\x64\xd8\xaf\xc2\x15\xb8\x4c\xeb\x50\x81\xe5\x54\x3d\xfe\xf7\x57\x14\xa8\xfc\xef\x2f\x93\xc7\x97\xc8\xe3\x8b\xe4\xf1\x05\xf2\xf8\x3c\x79\xfc\x39\x79\xbc\x41\x1e\x9f\x23\x8f\xcf\x92\xc7\x67\xc8\xe3\xcf\xc8\xe3\xd3\xe4\xf1\x9f\xc8\xe3\x53\xe4\xf1\xa7\xe4\xf1\x49\xf2\x78\x4e\x1e\xcf\xc8\xe3\x29\x79\x7c\x42\x81\xca\xff\xf3\xbf\xc8\xe3\xb7\xe4\xf1\x3f\xc9\xe3\x37\xe4\xf1\x0f\xe4\xf1\xf7\xe4\xf1\x6b\xf2\x78\x93\x3c\xfe\x8e\x3c\xfe\x07\x79\xfc\x2d\x79\xfc\x8a\x3c\x7e\x49\x1e\xbf\x20\x8f\x9f\x2b\xdd\x31\x1c\x59\xa9\xb6\xab\xc2\x17\x21\xe2\x0b\x13\x6c\x0d\x1a\xab\xd0\x58\x81\xc6\x32\x34\x96\xae\xa2\xdf\x3f\x7e\xe3\x1f\x09\x72\xff\xf8\x75\xf6\xf3\x35\xf6\xf3\x9f\xd9\xcf\x57\xd9\xcf\x57\xd8\xcf\x97\xd9\xcf\x97\xd8\xcf\x17\xd9\xcf\x17\xd8\xcf\x0f\xc9\xe3\x6f\xc8\xe3\x07\xe4\xf1\xd7\xe4\xf1\x7d\xf2\xf8\x1e\x79\x7c\x97\x3c\xbe\x43\x1e\x7f\x45\x1e\x7f\x49\x1e\x7f\x41\x1e\xdf\x24\x8f\x6f\xfc\xe3\xd7\xd9\xcf\xd7\xd8\xcf\x7f\x66\xf8\xf0\x9f\xaf\xd2\x40\xfa\x4e\x11\xa4\xe8\x51\xe4\x28\x6a\x14\x31\x8a\x16\x45\x8a\xa2\x44\x48\x7c\xef\xdd\x90\xf8\x15\xf6\xd3\xff\xf3\x9c\xf4\x86\xff\xf3\xfc\x67\xf4\xf9\x53\xfa\xfc\x15\x7d\xfe\x77\xfa\xfc\x09\x7d\xfe\x98\x3e\x7f\x44\x9f\x3f\xa4\xcf\xbf\xa1\xcf\x1f\xd0\xe7\x5f\xd3\xe7\xf7\xe9\xf3\xbf\xd1\xe7\xf7\xe8\xf3\x97\xf4\xf9\x5d\xfa\xfc\x0e\x7d\xfe\x15\x7d\x7e\x9b\x3e\xff\x92\x3e\xbf\x45\x9f\xbf\xa0\xcf\xbf\xa0\xcf\x6f\xd2\xe7\x7f\xa1\xcf\x6f\xd0\xe7\xd7\xe9\xf3\x6b\xf4\xf9\x73\xfa\xfc\xcf\xf4\xf9\x55\xfa\xfc\x0a\x7d\x7e\x99\x3e\xbf\x44\x9f\x5f\xa4\x4f\x4a\xee\xd3\x1c\xa7\x1b\xb0\x9e\xc8\xcb\x37\xd0\xe5\xa5\x7d\x13\xaf\xdf\x22\xd2\x1f\xac\xc7\x3a\x3a\xc0\x0c\x35\xd1\x4e\x5a\x88\xfa\xa3\x9e\x74\x04\x4f\xf2\xf1\xd9\xe2\xa4\x66\xdf\xb4\x70\x0d\xd8\x25\x0b\x43\x54\xb4\xf8\x8d\xc3\xd1\xbe\x1f\xbb\xd2\x45\x63\xa8\x28\xa0\x58\x1f\xc3\xbd\x99\xfe\x65\x14\x85\xc8\xd0\xf8\xf2\xd2\x2e\x95\xa0\x6f\x85\xaa\x0d\x8a\x3e\xb4\xaf\x5b\x88\xcb\xc9\xf6\x35\x74\xd3\x4a\x84\x65\x7f\x0c\x07\xb9\xde\x44\xf8\x49\x69\x09\x15\x0d\x0e\xab\xda\x37\xf4\x75\xa5\xa4\x98\x04\x09\x75\x8f\x79\x0b\x70\x0e\x22\xd5\x06\xb0\x0e\x43\x38\xbd\xf9\x48\x9d\xdd\xa4\x77\x7c\x58\xaa\x43\x2f\x08\x42\xd5\xfe\x40\x1d\x14\x11\x18\x83\xa2\x0f\xc6\x29\xab\xf8\x44\xf5\x21\xbb\x45\x73\xb3\x2c\x2d\xb4\x93\x4d\x9a\x72\x77\x5d\xfe\x30\x15\x6d\x41\x81\xa1\x15\xeb\x18\xf2\xda\xa6\x91\x0e\xe1\xa2\x91\x83\xf5\x02\xda\x4f\x21\x19\x82\xee\x18\x14\x71\xd6\x78\x9e\xb4\x1c\xac\x43\x66\x84\x69\xdf\x28\xad\xad\xad\xad\x91\x1e\x40\x7e\xc5\x3a\x85\xf4\x05\x27\x6b\x92\x26\xdb\xaa\xc8\xfd\xa4\xc6\x16\x1a\x32\x86\xae\x55\xaf\x65\x4d\x3c\xd1\xbe\xde\x2d\xba\xf1\xce\x4f\xcf\xd2\x6b\xc1\x4d\xbd\x50\xe8\xdd\xb0\xaa\xb5\x9e\xd0\xa5\xf4\xac\xe0\x03\x86\x5e\x23\x29\xbd\x42\x81\x2f\x25\x84\xa3\xcf\x88\xda\xde\x2a\x0a\x59\x65\xad\xbb\x16\xda\xf7\xba\x45\xd7\xf4\x6e\x1a\x97\x97\x06\x4b\x40\xd2\xf5\xe2\x2f\xf2\xd3\xcb\xc9\xa5\x0c\xae\x04\xa9\x82\x42\xc1\xbe\x69\xe8\x7a\x0c\xd9\xa3\xb7\xba\x65\xe1\x56\x81\x40\x44\xed\xdd\xd4\xd7\xf1\x7e\xaf\x64\x74\x69\x4f\x73\xcd\x38\xa1\x5e\x28\xa8\xae\xc5\xe2\x8a\x2e\x80\x9c\x58\xac\xa1\x82\xeb\x46\xbc\x35\x46\xbb\xaa\xcf\x92\x8f\xe1\x2d\x2b\x6f\x45\x3d\xe3\xa6\xc1\x75\xd2\x75\x4c\x45\x81\x3e\x79\x9f\x7c\xe2\x29\xfd\xa8\x93\x0f\x48\x23\x6a\x19\xcd\xc2\xe9\xf6\xa5\x96\x86\x7c\x27\xf2\xff\x7e\xe2\xbb\x4a\x6d\x06\x1c\x37\x45\x14\x90\x5f\xfb\xfe\x4c\x48\x6e\xab\x18\x43\xfe\x76\x26\x64\xae\xd1\x22\x5b\xdf\x0e\x54\x1b\x56\x57\xe1\xd2\x0a\x5c\xd4\x61\x28\x69\x27\xf0\xcd\xcf\xea\xba\xa2\x2b\xc5\xc8\x8c\x66\xe2\x2b\x99\x47\xf2\xc4\x1b\xaa\x0d\x95\xc9\x27\xfe\xd3\x5b\x6f\x7e\xe2\xad\xbf\xff\xdc\x5b\x6f\xfe\xd9\xdb\xdf\xfc\xe6\x5b\x7f\xff\x95\xb7\xff\xf4\x27\x6f\xbd\xf9\xfc\xed\x3f\xfd\xd1\x5b\xbf\xfe\x96\x02\xb9\x2b\xd3\x9c\x1c\x65\x5b\x4a\x9e\xe3\xa9\x6a\x43\x03\x56\xd6\xd6\xd6\x60\x0f\xce\xac\x1f\x0c\x41\x9e\xba\xe6\x34\xbc\x6c\x9f\xf9\xb2\x25\xcc\xc7\x9a\x59\x79\xf2\x3c\x09\x6d\xd7\xaa\x4b\x70\x6d\x79\x8d\x30\x95\xab\xd2\x32\x2b\x50\x39\xed\x0a\x34\xca\xe5\xf9\x49\x65\x03\x52\x29\xe9\xf2\x12\x99\xb0\xe7\xa6\x4c\xd9\x9a\x4a\x49\x8d\xe5\x4a\x19\x1a\xcb\x55\x83\xf7\x88\x99\xc9\xb9\x29\xe1\x7c\xc4\x04\x54\x8a\xcc\x84\x1b\x42\xef\x0f\x20\xf3\xbb\xce\xf6\xc5\xfa\x87\x30\xb5\x95\xa8\x52\x5e\xaa\x54\x61\x79\xa9\x5a\x99\x4f\x95\xc4\x32\x77\x06\x00\x33\x58\x95\x5b\xca\x30\xca\x70\xd9\x28\x5f\x41\xee\x1c\x2b\x5f\x79\xb4\xbd\xfd\x93\x2f\xbc\xf5\xe6\x17\xdf\xfe\xe9\x9f\xbe\xfd\xc6\x4f\x7f\xff\xdb\x9f\xbd\xfd\x77\xbf\x7c\xfb\x8d\x4f\xff\xee\x2f\x7e\xf8\x4f\x5f\xf9\xe5\x3f\xff\xe9\x9f\xfd\xee\xd3\x9f\x7b\xeb\xef\xff\xdb\xbc\x31\x37\x6d\x2e\x2c\xe7\xfe\x4f\x5f\xf9\xc5\x5b\xbf\xfe\xc6\x5b\x6f\x7e\xe3\xad\x37\x9f\xfe\xee\xd3\x9f\x79\xfb\xef\x7e\xfe\xf6\xdf\xff\x97\xdf\xff\xf6\x9b\x6f\xff\xd7\x1f\xff\xd3\x37\xde\xbc\x2a\x5f\xd9\xe2\x78\x06\x58\xbe\xd9\x2a\x47\xa1\x4f\x50\xf8\xe7\x6f\xfe\x8f\xb9\xec\x44\x79\xfb\x8d\xa7\xff\xf4\x8d\xdf\xbe\xfd\xc6\xf3\xdf\x7f\x81\x48\x93\xbf\xff\xc5\x5f\x29\xd0\x87\x46\x75\x26\x6a\x79\x16\xb4\x99\x12\xdf\xfe\xaf\xbf\xfe\xfd\x2f\x7e\xf9\xf6\xe7\x9f\xff\xfe\xd9\xa7\xde\xfa\xcd\x1b\xff\xfc\x8d\x37\x7f\xf7\xed\x2f\xfd\xee\x8d\xcf\xfd\xd3\x9f\x13\x01\xf1\x77\x9f\xfd\xed\x5b\xff\xf3\x67\x6f\xfd\xc3\xb7\xd3\x25\x2e\xcd\x2c\x31\xdf\xe4\xf7\x0f\xaa\xe5\xaf\xbe\x7d\x45\x2d\xf3\xac\x8f\x73\x6a\xf9\xab\x9f\xbd\xfd\xf9\xa7\xa2\x96\x9f\x9a\x57\x4b\x5e\xe2\xec\x5a\x4e\x1b\x74\xcb\xe5\x5d\x35\x2d\x24\x35\x7c\xeb\x4d\xb2\x42\x9d\x3c\xff\xcb\xc9\xb3\xef\x4d\x9e\x7f\x66\xf2\xec\xd7\xa4\x60\xfd\xea\x72\x67\xd5\xf2\xe7\x6f\xff\xe6\x0b\x6f\x7f\xfe\x19\x29\xf5\x37\x6f\x64\x4a\xfd\xdd\x67\x7f\x3b\xaf\xd4\x95\x99\xa5\xe6\xda\x9d\xcb\x45\xbf\xf3\xf5\xa7\xef\x7c\xeb\x37\xef\x7c\xeb\x57\xef\x3c\xfb\xcd\x3b\xcf\x7e\xfc\xce\xd7\xbf\xf7\xce\x5f\x7c\xe7\x9d\x5f\xff\xd5\xff\xf7\xb9\xaf\xfc\xbf\x7f\x4b\x28\xfa\xce\x67\x7f\xf2\x2f\x3f\xfb\xf9\x3b\xbf\xf8\x8b\x7f\xf9\x6b\xb2\x56\xff\x97\xbf\xfe\xf4\x3b\xdf\xfa\xd5\xbf\x7c\xf2\xd3\xef\x7c\xe6\x7b\x0b\x0a\xac\xbf\x50\xd9\xb2\x11\xfb\x1f\xd2\x9f\xa6\x0a\xd7\x5f\xac\xf0\x2b\x86\x4f\x6e\xd1\x31\xc9\x5f\xae\xd2\x92\xc3\x02\x99\x3d\x57\xf5\x65\x58\xae\x1a\x4b\xf3\xb9\x68\xec\xcb\x20\x35\x6f\x18\x74\xe2\xb8\xf7\xae\xe6\xa3\xd8\x23\x82\x8c\xcc\xca\x9a\x4e\x1e\x6b\x57\x20\x23\x1c\x28\xc8\x49\x97\x97\xcb\xb0\xbc\xbc\x72\xc5\x6c\xc0\xfd\x2d\xa4\x6b\xa1\x93\x5a\x8c\xde\x55\x2d\x62\xaf\x0d\x29\x09\xee\xe9\xb3\xc9\xd3\x4f\x4e\x9e\x7e\x6a\xf2\xf4\xd3\x93\xa7\x9f\x99\x3c\xfd\xec\xe4\xe9\x1b\x93\xa7\x9f\x9f\x3c\xfd\xe2\xe4\xe9\x97\x27\x4f\xbf\x3a\x79\xfa\xb5\xc9\xd3\x6f\x4c\x9e\x7e\x73\xf2\xf4\x5b\x93\xa7\xdf\x9e\x3c\xfd\xce\xe4\xe9\xf7\x26\x4f\xbf\x3f\x79\xfa\x83\xc9\xd3\x1f\x4e\x9e\xfe\x68\xf2\xf4\xc7\x93\xa7\x3f\x99\x3c\xfd\xef\x93\xa7\x3f\x9d\x3c\xfd\xc5\xe4\xe9\xdf\x4e\x9e\xbe\x39\x79\xfa\x0f\x93\xa7\xbf\x9d\x3c\xfd\x5f\x93\x67\x9f\x98\x3c\x7b\x3a\x79\xf6\x6c\xf2\xec\x93\x93\x67\x9f\x9a\x3c\xfb\xf4\xe4\xd9\x9f\x4d\x9e\x7d\x66\xf2\xec\xb3\x93\x67\x9f\x9b\x3c\x7b\x63\xf2\xec\xf3\x93\x67\x5f\x98\x3c\xfb\xe2\xe4\xd9\x97\x26\xcf\xbe\xac\x5c\x89\x3e\xf7\x0b\x91\xae\xc4\x27\x49\x4e\xa4\xfc\x1f\xd1\x92\xdf\xa4\xd8\x7d\x87\x94\xf3\xf4\xc7\xb4\xa8\x2f\x91\x72\x9e\x7e\x96\x94\xff\xf4\xdb\xa4\x64\x52\x9b\xef\x51\xc4\x7f\x48\x31\xfa\x04\xa1\xc1\xb3\x2f\xd0\x7a\x7c\x86\x10\xe0\xd9\x27\x69\x0d\xbe\x48\x2b\xf4\x65\x4a\x9e\xef\x53\x6a\x7d\x95\x50\x88\x54\xe5\x29\xa9\xdf\xd3\xaf\x11\xdc\x9f\xfe\x82\x54\x91\x10\xe9\x1b\xb3\x6b\x20\x1c\x5e\x48\x5d\xa1\x52\xd1\xcb\xb0\x52\x31\xae\xe8\x0a\xb1\x7f\x8c\x54\xad\x9f\x7d\x97\xf0\xaf\x67\xdf\x9f\x3c\xfb\xc1\xe4\xd9\x0f\x27\xcf\x7e\x34\x79\xf6\x93\xc9\xb3\x9f\x4e\x9e\xfd\x7c\xf2\xec\x97\x93\x67\x7f\x3b\x79\xf6\x77\x93\x67\xbf\x9e\x3c\xfb\x87\xc9\xb3\xff\x39\x79\xf6\xbf\x26\xcf\x9f\x4e\x9e\x7f\x72\xf2\xfc\x53\x93\xe7\x9f\x26\x5c\xef\xf9\x67\x27\xcf\x3f\x37\x79\xfe\xc6\xe4\xf9\x9f\x4f\x9e\x7f\x7e\xf2\xfc\x4b\x93\xe7\x5f\x9d\x3c\xff\xfa\xe4\xf9\x37\x09\x67\x7c\xfe\xed\xc9\xf3\xbf\x9a\x3c\xff\xce\xe4\xf9\x77\x27\xcf\xbf\x37\x79\xfe\xfd\xc9\xf3\x1f\x4c\x9e\xff\xcd\xe4\xf9\x0f\x27\xcf\x7f\x34\x79\xfe\xe3\xc9\xf3\x9f\x4c\x9e\xff\x74\xf2\xfc\x67\x93\xe7\x3f\x9f\x3c\xff\xc5\xe4\xf9\x2f\xe7\x89\x08\x19\xa7\x1e\xe9\x6a\x7c\x8f\xe6\xf5\x79\x8a\xd0\x37\x29\x06\x9f\xa6\xb8\xfe\x90\xe2\xf7\x23\x9a\xfb\x4f\x49\xf5\x9e\xff\x80\x56\xe3\xc7\xa4\x3e\xa4\x26\x6f\xd0\x6a\xfc\x0d\x41\xf4\xd9\xf7\x29\x2a\x7f\x4e\x09\xf1\x53\x8a\xf1\x5f\x12\x42\x3c\xff\x2a\xa5\xc5\x0f\x48\xb5\x09\xbd\xfe\x96\xd0\x88\x54\xe6\x3b\xa4\x86\xcf\xfe\x8e\x62\xff\x25\x52\x49\x42\xa6\x5f\xcf\x5d\xb2\xd8\xad\x54\xd3\xad\xac\x95\x61\x65\x55\xbf\xa2\xe9\x12\x2f\x22\x29\x79\x70\x59\x27\x8f\x2b\x98\x87\x70\x3a\x22\xa5\xac\x92\x94\xd5\x2b\x53\x32\x1f\x25\x32\xcf\x59\x33\x56\x61\x79\xad\xbc\x32\x3f\x9d\x70\x69\x22\x2f\x15\x56\x56\x96\xa1\xb1\xb2\x7a\x05\xd7\x65\x1e\x4d\x64\xfa\xe8\xd5\x65\x58\xd1\x97\xae\x4a\xc7\x1c\xa0\xc8\x09\x8d\x95\x2a\xac\x18\xab\x57\x48\xe1\xd4\x5f\x8a\x9c\x6c\x79\xb9\x0a\x2b\xcb\x2b\x57\x25\xe3\xee\x55\xe4\x94\xab\x2b\xa4\x25\x57\xaf\x68\x49\xb1\x00\xce\x18\xec\x65\x16\xd7\xaf\xe8\x52\xdb\x3f\x56\xeb\xda\x65\x66\x5c\x6b\x18\x53\xc6\xb5\xd2\x56\xa1\xb8\x43\x9b\xab\x4e\x51\x2d\x59\x9b\xdd\x78\xb9\x8b\x83\x61\x34\x5b\xa9\x32\xc2\xc1\x70\x4c\x75\x1b\x8d\xeb\xf1\x4d\xdc\x06\xc4\xa0\x96\x4a\x9f\xe7\x18\x8e\x5e\x58\xb7\x21\x60\xd4\xf0\x1a\xcb\x4d\x14\xac\x61\x71\x93\x0c\x00\x63\x30\x86\xd1\x2c\xb3\xe0\xf7\xd5\x24\x98\x29\x1c\x58\xe8\xf2\xb2\x3f\xe3\x64\x57\x58\x18\xc9\xa6\xc1\xdc\x2a\x38\x44\x7e\x1f\x85\x53\xf6\xc0\x36\xb8\x60\x79\xe3\x33\x4b\x2a\x64\xca\x02\x89\x61\x10\x0c\x49\xa2\xc8\xb2\x65\x84\xf8\x79\xab\xbc\xf9\xca\x7d\xf2\xdb\x5a\xd4\x73\x3c\x94\x42\x5f\x1c\xc4\xa6\xc0\xb9\x8b\xfd\x5c\x78\xf9\x4c\x97\x67\xcc\xce\x70\xa7\x81\x78\xd6\xf1\xf5\xf6\x12\x18\x3e\x63\x79\xab\x72\x3d\x58\x10\x9c\x0e\x02\x49\x2a\x7a\xb9\x97\xe7\x60\xa4\x96\x6c\xed\x0c\x96\x6c\xed\x5c\x8e\x45\x67\xb8\xee\x44\xc8\x73\x7d\x64\x09\xc7\x94\xd0\xd6\xbc\x60\x30\x40\x21\xf9\xa1\x0d\x7d\xe2\x44\x0b\xac\x01\x50\xb8\xe0\xfa\x2e\xe6\xe6\x40\x0b\xaa\x52\x8c\xeb\x74\xa6\x14\x13\xcc\x17\x1c\xbc\x40\xbe\xcf\x8a\x0a\x24\xbf\xe7\x45\x05\x2c\x9c\xba\xf8\x68\x81\x22\xb8\xa0\x14\x73\xb0\x8e\xef\xa3\xea\x79\xee\x70\xba\xa9\x93\x31\x47\x6f\x4d\x16\x0a\x55\xe2\xa2\x61\x4a\x23\xe7\x04\xa9\x00\xda\xb9\x83\x06\x6b\x43\x07\x1f\xa9\xa4\x3b\x52\x60\x52\x8a\x0a\xc8\x08\x64\x69\x44\x76\x71\x6e\x21\x8a\x70\x10\x22\xe9\xce\xbd\xd8\x3c\x29\x0f\x3b\xc2\x6d\xe3\xb4\xb2\x21\x13\xd3\xdf\x80\xf4\x34\x1c\x8a\xbb\x0f\x44\x73\x43\xcc\x62\x31\x8d\x4d\x6e\xb2\x10\xb7\x54\xc8\x45\xef\x1e\x39\x43\x94\x4f\x18\x6e\x68\xcf\xeb\x27\xb0\x48\xec\xc9\x90\xc4\x13\xd2\xf1\x52\xf5\xc8\xe7\xbc\x21\x26\xe5\x67\xbf\x48\x7e\x03\x84\x3b\x4e\x38\x40\xf8\x8a\xab\xe3\x66\x0c\x5a\x2d\x42\x89\x41\x7f\xea\x32\x53\x98\x35\xe4\x92\xb2\x49\x8a\x27\xe4\xc8\xab\x0e\xd3\x07\xa3\x9d\x28\xc6\xfc\x00\x0d\x5c\x7f\x87\xd0\x0f\xc0\xb4\x32\xa4\x0d\xd6\xf3\xfa\x53\xb2\x79\x6f\x33\x1f\x88\x96\xe5\xcb\x5e\x10\xd7\x6d\xd3\x66\x17\x5e\xd3\xe3\x10\xbc\x8e\x68\x39\xc7\xc1\x09\xea\x04\x6a\xa8\x9d\xc1\x50\x3b\xa7\x7a\x09\xf8\x8c\x5e\x1e\x2c\x85\xc2\x6c\x96\xb2\x73\xc9\x42\x01\x71\x8c\x3f\xee\xa2\x90\xde\xc7\xd9\x09\x54\x5e\x16\xa1\x5f\x18\x78\xda\x19\xcc\x04\x9c\x43\x5b\x43\x7e\x5f\x8e\x97\x3e\x79\xac\x08\xd6\xce\xc1\x18\x98\x31\x6d\x9c\xb0\xa7\x92\xa1\x6c\x6b\x21\xbd\xc6\x13\x92\xf1\x2c\x7d\xf0\x17\x1d\x96\xaf\x51\xb6\xb8\xd3\x84\x64\x9a\x8e\xd3\x53\xf7\x2c\x8c\xb6\x71\xdb\x84\xa8\x87\x1d\x7f\xe0\xcd\x18\x49\xec\x34\x30\xa7\xdf\xf9\x33\xfb\x1d\xb5\x92\x14\xe7\x92\x52\x39\x84\x6d\x6d\xb9\x3e\x72\x42\x71\xb5\xc9\x55\xac\x85\x21\x4d\xa7\xa6\x74\x42\xd5\x16\x9e\xda\xfb\x2e\xa9\x80\x1b\xf8\xda\x99\x41\x5a\x8b\x3a\x6a\x4f\x02\xcf\x0d\x98\x07\xaa\xe7\x81\xea\xa0\xe6\x50\xbf\x16\x79\xc3\x16\xe7\xd5\x91\x31\x0c\x9a\x15\xe4\xec\x17\xda\x53\x0c\x83\xd5\xbc\xed\xf4\x5d\xc7\x7b\xd1\x9a\x73\x53\x00\x8a\x77\x0f\xf9\x18\x91\x1e\xe9\x5b\x02\x6b\x1e\x74\x0e\xeb\x59\x3a\xa5\x8b\x51\x43\xe8\x43\x9d\x1e\x55\x23\xde\x3b\xb4\x33\x7e\x1f\x9c\x7b\xa8\x92\xea\xd6\x73\xab\x5b\x97\xe0\x17\x2d\x2b\xfe\x38\x17\xda\x92\x1c\x3b\x6d\xe9\x9a\xa8\x78\xc0\xb1\xa3\x41\x9c\xa5\xba\x52\xca\xeb\x49\x8e\xb0\x67\x19\xd7\x5d\x36\xe6\xe3\x4b\x2f\xd5\x08\x06\x70\x9f\x31\x17\x97\x3c\xbb\x30\x87\x4b\xe5\xb6\x40\xef\x9a\x4a\xcb\x2e\x05\xa0\x18\x4c\xb5\xc4\xb5\x1e\x91\xbd\xa8\xdd\xc2\x1f\xda\x86\xcc\x2f\xf6\x55\x03\x65\x0e\xf7\xcf\xb4\xd6\x8e\x83\x31\x0a\x7d\xc6\x35\x43\x14\xb9\x1f\x47\xc2\x5e\x19\x03\x28\xfc\x70\xe7\x4a\x11\xa4\xb8\x2c\xbf\xcf\x95\x36\x42\x58\xf2\xb3\x15\x99\xe9\xd6\x25\xa3\x01\xe0\x64\x98\xf3\x61\xe0\x63\x6b\x9f\x6b\xd8\x91\x0a\x41\xf6\x7e\xdf\x09\x5d\xc7\xc7\xfc\xeb\x81\x98\x4f\x85\x22\x1e\x7f\xbd\xe5\x1c\xbb\xde\x79\x57\xfb\x68\xe0\xfa\xd4\x9a\x6e\x86\x7c\x40\x7a\xe6\xbc\x59\xd3\x2f\x14\x98\x51\x99\xf0\xc6\xce\x1d\x2f\xf9\x4c\xcb\x5e\xd5\x81\x16\xa2\x13\x14\x46\x48\xcd\x71\xe7\x8c\xc0\x05\xcb\x3d\xa2\x77\x98\x53\xe1\xdd\x42\x53\xf2\x3a\x94\x81\x5a\x87\x87\x11\xc2\x0f\x2d\xa4\x05\xec\xed\x9a\x93\x91\xfd\xa6\xa1\x1f\xc5\xd0\x8f\xe6\x42\xd7\xbd\x11\x29\xff\xc0\x1b\x85\x30\xa9\x36\x69\x21\x6e\x3a\x47\xdd\x8d\xc4\xfa\xa6\xc9\x17\x19\x6c\x76\x5a\x8b\x91\xcc\x16\x7f\x70\x1e\x90\xdf\x4c\x1b\x8a\xb1\x1e\xe6\xd9\x21\x5e\x5e\xa2\x5a\x98\x63\x45\x99\x4b\xf0\xcc\x99\x79\x3d\xd7\x48\x35\xb1\x21\xe5\xd7\x6a\x26\x54\x23\xbd\xe7\x2e\x22\x6b\x67\x2a\x9c\xf0\x57\x15\x03\xed\x80\x0b\xcd\x35\x47\x8b\x67\x32\x35\x5d\x59\xc9\xcb\x4a\xaa\xde\x21\x48\xe8\xc0\xc6\xbd\x01\x23\x20\xab\x04\xcf\xc0\x33\xb6\x9f\x7d\xe9\x32\xdf\x6d\x89\x29\x33\x5d\x6e\xbc\xf4\x02\xc4\x39\x76\xfb\x7d\xef\x4a\xd2\xf4\x90\xeb\xa5\x29\xe3\xe7\xe2\x49\xad\xe3\x64\x4e\x12\xb3\xab\xfc\xd9\x8c\x3a\xb2\x61\xeb\x2d\x4b\x5c\x2d\x47\x46\x2e\x5f\x5d\x59\xf1\x95\x6c\x42\xb5\xc5\xae\xc9\x53\x3f\x13\x45\xe7\x2a\x20\xc7\x8e\x30\xe2\xd9\x81\x15\x87\x32\xc2\xbb\x25\xc9\xf8\x53\xb2\x6d\xc6\xd3\xc1\xd4\x24\x40\x03\xb3\x8b\x05\xe6\xc9\x9c\x11\x22\x42\xb8\xc5\x6e\xe8\x9e\x2b\xb2\x0f\xbc\xe0\xc0\xf1\x6c\x6f\x78\xe4\x58\xc9\x7d\xe5\xf1\xf4\x37\x8b\x15\x4b\x39\xf0\x45\x55\x0e\x93\xa7\xb7\xa3\xa4\xc3\xe9\x94\x1a\x5f\xb2\x00\xf1\x7e\x99\x3c\x2a\xe4\x51\x25\x8f\xa5\xee\x8c\xc5\x29\x2c\x21\x00\x43\xb9\x1c\x69\xf9\x35\xed\x9b\x2b\xfa\xf7\x9d\xae\xf7\x66\xa7\xab\xc6\xc6\xf5\xbf\x15\xbf\x71\xc8\x27\x95\xef\xe7\xda\xc5\x31\x87\x35\x85\x02\xdf\xf2\xa0\xeb\x1b\x2b\xbc\xbc\xdc\x74\x30\xd2\xfc\xe0\x54\x74\x1e\xb7\x6f\xe1\x9c\x2d\x24\xaa\x00\x3e\xed\x51\x2e\x75\xbb\x9a\xad\xca\x58\x40\xb9\xa4\x84\x05\x79\x41\xde\x85\xef\xee\x61\x2a\x6d\xa1\xc0\xfd\xeb\xf4\x02\x3f\x0a\x3c\x94\xfd\xd6\xbc\x60\x90\x74\xaa\x69\xd3\x52\x88\x2c\xb1\xfe\x84\xac\xcb\xd9\xb4\xaf\x91\x4e\x66\xa5\xec\x44\x6f\x71\x1c\x24\xb3\xbf\x03\xd7\xef\x6b\x84\xea\xea\x74\xa1\x30\x1d\x04\xf8\xc6\x65\x3a\x14\xee\x27\x44\x2d\x25\x34\x28\x2a\xc7\x91\x22\x88\xbc\x2e\xdb\x11\x2d\xa8\x7c\x4b\xc7\xed\x17\x15\x60\x2a\xa6\x1c\x69\x2a\x5d\x92\x71\xcf\xc1\xea\x7e\x97\x49\x4b\x0c\x3b\x04\x75\x00\xe8\xb6\x35\xa3\x2c\xf5\xd3\xf4\x1e\xd0\x96\xe6\xf3\xfe\x53\x97\x16\xfb\x6f\x92\xbe\xd3\x0c\xd4\x7f\x45\x8e\x10\xf8\xe5\x92\x16\x4a\xdf\xbb\x38\xed\xfb\xc0\x78\x31\xdf\x07\xd9\x7c\xae\x70\x6a\xc0\x77\xea\xf7\xe9\x25\x39\x90\xdb\x5b\xc1\x78\x6b\x93\x99\x35\x75\x6b\x19\x64\x73\xf6\xe7\x9d\x29\x0f\x06\xb9\x97\x8c\xe6\x39\x08\x10\x97\x69\x29\x45\x44\xf7\xdf\x5f\xcd\x54\x85\xa8\x40\x78\x6b\xab\xf5\xe0\xf1\x83\xb6\xbd\x63\x5d\x6c\x33\x1d\x09\x1d\xd6\xdb\x0d\xfb\xb5\xc7\x0f\x5a\xed\x4d\xd3\x88\xdd\x97\xb4\x4e\x50\x78\xe8\x05\xa7\x0f\x42\x67\x38\xf7\x76\x22\x22\x15\x96\x4e\x83\x30\x71\xbe\x11\x6a\x49\x8e\xc2\x91\x2e\xf3\x01\x9c\x39\x8e\x0a\x35\x86\xc3\xf8\x95\x55\x39\xb9\x89\x63\xb7\x63\x77\x9a\x1b\xa4\x27\x34\xb6\xec\x4e\x93\x5e\xba\x62\xd7\x77\x5b\x5b\x7b\x9d\x86\x59\x86\xb7\x9a\x0f\xa9\x0b\x9b\xdd\x4e\x73\xe3\xb5\x47\x66\x35\xa6\x43\xce\x1d\x9b\x53\x34\x08\x91\xe7\x60\xf7\x04\x49\x14\x10\xa5\x70\x0f\xf6\xc2\xf2\x31\x01\x10\x65\x33\x80\x43\xf7\x0c\xc9\x04\xa4\xe8\x70\x87\xd1\xd8\xed\x3d\x39\x97\xe2\x18\x8a\x63\xe9\x9b\xd4\xec\x95\x91\x30\xed\x23\x34\x76\x23\x92\x78\x26\x35\x60\xe2\x37\xb4\x0c\x25\xd7\xa3\x95\x94\x2f\x9c\x78\x67\x76\xae\xcf\x9e\xe1\x10\x85\xf4\x2d\xa9\x6f\x9c\xbb\xe4\x43\x3c\x03\x12\x23\x23\x1c\xfe\x0f\x5d\x4c\x8f\x1c\x24\x98\x04\xb1\xb1\xd4\xfd\xa8\x27\xe7\xf7\x9a\xb1\x85\x88\x3a\xbd\xc6\x4d\x7f\x38\xe2\x8e\x63\x63\xd3\xe8\x5d\xea\x7c\x33\x31\x8c\x66\xa1\x84\x40\x76\x88\x9c\x6c\x38\xcd\x21\x65\x45\xcd\xf3\x0c\xf9\x5e\xdd\x88\xe4\xdc\xdc\xde\xd9\xeb\x3c\x4e\xee\x31\x4f\x82\xa8\x7b\x97\xdd\xf8\x7b\xa3\xb5\xd5\x6a\xa7\xcd\xaf\x3d\x6e\x6d\xed\xb3\x9b\x6c\xe8\x01\x66\x19\x40\x87\x46\x2c\xe9\xf4\x8e\x78\x8f\xdf\x16\x1f\xd0\x37\x6a\xc0\x47\xdf\x0c\x00\x60\xcf\x52\xe9\x15\xf2\xd4\xa9\x30\xc4\x6a\x15\x48\xa6\xda\xde\x0b\x9b\x6a\xa7\x31\x24\x3c\x33\x88\x79\xe6\x7e\xb5\x0c\xe9\xbf\x2e\xeb\x95\xa3\x6c\xbc\xb1\xbc\x04\xf9\x5f\x17\xc0\x7b\xd9\xe8\x72\xb9\x0c\xf9\x5f\x17\xc0\x53\xeb\x42\x76\xac\x62\x40\xd9\x05\xcb\x28\xe5\x82\xa5\x9e\xf2\xa0\xc3\x5d\xc3\xb0\x8b\xd0\xd3\xf4\xdd\x3f\x85\xf4\xff\x2e\xcc\x69\x8c\xa9\x7b\x25\xef\x4d\x5d\x1c\xb9\xdf\xcd\x5e\x1a\xe9\x67\x6f\xb5\x97\x2f\x57\x9c\xbe\x3e\xd2\x9f\xbe\xc5\x5e\x4e\xc0\xae\xb5\x76\x93\x1b\xdd\x96\xf4\x0f\xb0\xdb\xad\xf7\xf7\xe0\x5e\x17\x6e\x58\xfb\x03\x48\xff\xef\xc2\xbe\x95\x81\xad\x0c\xcf\x14\x00\x6f\x59\xfb\x7d\xd8\xef\xc2\x86\xb5\x7f\x0b\xd2\xff\xbb\xf0\x90\x9b\xd1\x4f\xf7\xc9\x9c\x9b\xef\x42\xa7\xef\xb2\xab\xef\xe8\x61\xc5\xfa\x86\xd9\x48\x6c\xdf\x53\xfd\x7c\x6a\xf5\x90\x4d\x7b\x79\xa9\xf4\x8e\x50\xef\xc9\x41\x70\x96\x04\x0a\x2f\xbc\x24\x02\xf5\xd3\xc7\xed\xae\x9f\xb1\x33\x86\x19\xbb\x5a\x22\xe9\x64\x0d\x3e\x73\xca\x58\xdf\x67\xb7\x3c\xc7\x17\xe3\xcb\xdb\x14\x45\xad\xb2\x56\x59\xae\x5c\xc3\x50\xb6\x60\x2d\x6a\x2b\x6b\xd7\x30\xbb\xc3\x74\x66\x42\x63\x79\x2a\xd5\xd2\x52\xf5\xea\x74\xe5\x95\x4a\x75\x65\x2a\x69\xb5\xaa\xaf\x18\x57\xa6\xad\xac\x2d\xaf\x55\xa7\x8b\x5d\x7e\x81\x62\x57\xca\x6b\xab\xd3\xf5\x2c\x57\xae\x4c\xb8\x3a\x5d\x60\xa5\xaa\xaf\x2e\xbd\x00\xb2\x33\x29\xcb\xbc\xbd\x38\x33\x52\xe2\xeb\xd5\x74\x22\x12\x80\xaf\x57\x89\x94\x4b\xf7\xda\x0f\x55\xba\x09\x4e\x38\x3f\xf5\xed\x3a\x8b\x23\xa7\x3b\x25\xe9\x69\x94\xe5\xb3\x84\xba\x94\x30\xcd\xe0\xf3\xef\xc1\xe7\x7b\x62\xfb\x36\xf7\xc5\x8c\xfa\xd4\x58\xfa\xf2\x52\xef\xd6\x0e\x55\x5c\x28\x60\xba\x65\x79\x79\xa9\x28\x32\x66\x79\xf3\x4a\xae\xaa\x08\xed\xe3\x37\xc5\xd6\xd0\xba\x38\x87\xb2\xc4\x4e\x57\x29\x3e\x3a\xb8\x5e\x16\x3b\x49\xb1\x1e\x01\x30\x79\xc8\x0d\x11\x52\x28\xb0\x83\x0b\x9a\x01\x37\x44\xe7\x30\x2c\x83\x58\x13\x41\xdc\x21\x9e\x9d\x53\x13\x5b\x3d\x94\x67\xc2\x4d\x47\xae\x30\x31\x2b\x14\xea\x62\x5b\x1f\xbd\x0b\xbf\x14\xaa\x0e\x7b\x59\x87\x14\xe8\x65\xdc\x62\x20\xee\x16\xc3\x01\xd0\x99\xe3\xc3\xc2\x91\x7d\x2d\xe0\x54\xa7\xa3\x8a\x18\x8e\x64\xd2\x8e\xe5\x1e\x48\x63\xfd\xcb\x4b\x55\x40\x9c\x1e\xb9\x18\xed\x0e\x9d\x1e\xb2\x14\x3f\x20\x35\x51\x84\xcb\x56\x34\xdf\xd4\xde\x06\x35\x27\x65\xfd\x1e\x01\x58\x4f\x05\x38\x54\x7b\x21\xc3\xd9\xc2\x7c\x5b\xf8\x08\x62\x40\xd2\xcb\xb6\xf0\x0e\x18\x8f\x01\x3c\xca\xf1\x8f\xa2\x0c\x9d\x28\xa2\x72\x7f\xc2\x1e\x13\x2f\x41\x7c\x78\xf0\x46\x2d\x1a\x80\x1f\xa7\xfc\xdf\x4f\x7c\x57\x21\x1d\x8c\xc6\xd6\x24\xd7\xec\xf1\xbd\x14\xb6\x46\xfd\xd4\x1f\x05\x5e\x1f\x85\x64\x04\x98\x68\xfc\x0a\x3d\x6f\xc6\xe2\x99\xf4\x31\xb5\xf6\x2c\xc7\x9a\x5d\xd4\x2b\x8d\xa1\x13\xa9\x48\x0d\x2d\x67\xee\x5a\x14\x06\xdc\x75\x0d\xf3\x43\x93\x2a\xe2\x5f\xf3\x06\x46\xe9\xaa\x05\x7e\xb9\x02\x1e\x33\x97\x38\x59\xaa\x64\xa9\x9e\x38\xf2\xd2\xe9\x71\x6b\x8e\x5f\x96\x75\x55\x87\x41\xca\x99\x1c\x50\xed\x59\xae\x02\x29\x6c\xc6\xf4\xd6\x06\x63\x60\xd2\x08\xba\xb4\x7c\x10\x84\x7d\x92\x05\x44\xcc\x77\x38\xdf\x8f\x71\x2c\xcc\x1d\xe8\x90\xae\xbb\x2e\x7f\xcc\x1e\xeb\xcc\x27\xe5\xc8\x72\xd6\x1d\x6d\xe8\x0c\xd0\x43\x76\x04\x66\xea\xf0\x5e\x1c\xf6\x28\x0e\x3b\xb5\xf6\xbb\x70\xcf\xd2\xe1\xc0\xd2\x6b\x83\x1b\x7e\x6d\x20\xb6\x6e\x37\xac\x70\x7f\xd0\x65\xde\xfc\x13\x47\x28\xc9\x01\xd3\xa2\x65\x4d\x9d\x90\xd0\xb5\xc6\xe5\xe5\x46\xfa\x30\xf0\xa6\x0e\xdc\x43\x35\x9e\xf6\xb4\x3c\xb7\xf7\xe0\x34\x71\x40\xe1\xaa\x1b\xd0\x53\x31\xdc\x83\x1b\x82\x12\x23\x78\x0f\x00\x50\x8b\x7d\x8e\xf4\x2d\x7e\x03\x35\x3d\x57\x13\x60\xa0\x96\xc9\xa5\xa7\x62\x9e\x14\x62\xab\xcf\xe6\xc2\xf9\x78\x5c\x5e\xaa\x38\x3f\x6f\x50\xdb\x2b\x5a\xe2\x4b\xac\xae\x4e\xa7\x07\xad\xd0\x7f\x79\x79\xa6\x1e\xa6\x98\x9a\xad\xf5\xbc\xc0\x47\x94\x69\x2d\xea\x40\x38\xcc\xb6\xa5\x4e\xc0\x94\x07\x2e\xea\xe2\xda\x0b\x96\x30\x84\xb6\xd0\xcd\x54\x75\xe8\x0b\xaf\x94\xe2\x66\x0f\x82\x64\x2d\x5e\x1c\x1e\xba\x61\x84\x69\xba\x42\x21\x9b\x8f\x14\x09\x43\x00\x9d\xf4\xf5\xc8\x2c\x47\x95\x79\xb5\xd6\x01\xf5\xd4\x31\x75\x76\x1d\x4f\x72\xf9\xf4\x10\x57\x46\xc4\xdb\x4b\x11\xc2\xbb\xd8\x09\x31\x1b\x0a\xf4\xbb\xe1\xd3\x1b\xe7\x8b\x44\x7a\xe2\x85\xb2\xd1\x94\xdc\xdf\xe0\xcc\xbc\xd7\x81\x60\xf0\xef\xfa\xbf\xef\xcb\xa9\xc8\xfb\x7b\x22\x22\x76\x0b\x5e\x4a\x2b\x36\xab\xe3\x96\xab\xfa\x6a\x5d\xa5\x88\x0b\x5f\x42\xb9\xf6\x0a\x6d\x5a\x20\xd4\x63\x5f\x50\x9b\x36\x1f\xfe\x0f\xd5\xa6\x4d\xab\xb6\xa6\xdc\xd7\xbf\xe7\x1a\xae\x42\x1d\x98\x1f\x2f\xd7\xd5\x58\xc9\x9b\xe4\xe8\xf7\x83\xd3\x07\xfc\xc4\x37\x43\xa0\x29\xb8\x3b\xec\x44\x78\x9a\x34\xe4\x37\x0c\x3c\xef\xe1\x54\xc8\xa3\x34\xf9\x78\x27\x4a\xd8\x8f\x8a\xb3\x6e\xf8\xe5\x9b\x7e\x32\x3b\x1c\x85\x82\x8a\xa6\xf4\x3f\x33\x30\xb2\x0e\x0b\x4a\x2b\x3b\x49\xc7\xdb\x12\x9e\x19\xa5\x69\x91\x4a\xbe\xfc\xa3\x64\x6b\x67\x71\x8a\x92\xad\x9d\x27\x2a\xd6\x88\x37\xf6\x38\xf7\x74\xd8\xaf\x89\xc5\x49\xfe\x3d\x05\x73\x7c\x8f\x28\xb3\xaf\x7c\x51\xa0\x33\x63\xc4\x6c\xef\xaa\x75\xa8\x10\x10\x22\x48\xce\x83\x39\x94\x31\x51\xd2\xd3\x81\x8d\x71\xe8\x1e\x8c\x30\xda\xde\x65\x76\x04\x0a\xf3\x2e\x4c\x58\xc1\x0c\x00\x46\x44\x85\xcc\x20\xd1\xdc\x2c\x14\x43\xd7\x3f\xa0\xcc\x84\x12\xf9\x5c\x01\x46\x06\xda\xcc\xc8\x73\x85\xb0\xcf\x19\x91\xe8\x0c\xa3\xd0\x77\xbc\x36\x8a\x82\x51\xd8\x43\x51\x1b\x7d\x6c\xe4\xd2\x4b\x2e\x14\x1c\x8e\x90\x42\xaa\x98\x59\xf9\x44\xa9\x00\x9f\x4c\xcb\xf4\x12\x90\xa9\x3b\x29\xf2\x16\xcd\xb9\x77\xcf\x48\x52\x4b\x7c\xff\x42\x2d\x14\x77\xc5\xe4\xdc\xc3\xa2\x86\x60\x0c\xc3\xf8\x06\x19\x0c\xc3\x59\xd7\x06\xd5\x7a\x47\x44\xf8\xc0\xd6\x08\x1f\x96\x56\xa1\x52\x44\x7e\x2f\xe8\xa3\xbd\x76\x93\xac\x46\x03\x9f\xf0\x55\x71\xcf\x42\x8c\x7c\x08\xb4\x48\xbc\x77\xc4\xf8\xb1\x5f\xc5\xa1\x11\x44\x92\xf8\x6d\x65\x9d\x26\x67\xbc\x45\x67\xfd\x79\x2e\x83\xd9\xe5\xc9\x09\x15\x78\x91\xcc\xec\xe6\xa2\x0e\x07\x08\xe7\xe8\x7c\x87\xa9\xd2\xc8\x7a\x74\x66\xee\x29\x34\x5f\x38\xfb\x54\xaa\x31\x17\x63\x7c\xba\xe4\xab\x90\x15\x9f\xaa\xfa\x56\x1d\x14\x0a\xbe\xb4\xd4\x83\x58\x35\x56\x89\xdc\x2d\xd3\x29\xb3\x49\x14\xcb\x3a\xd4\x91\xcc\x96\xeb\xa3\x3a\x81\x45\x21\x59\xcf\x5c\x78\xe2\xdb\x4c\x7c\x7a\xf2\x10\x48\xd6\xd5\xe9\xb8\x40\x3e\x8f\xb3\x2c\x27\x7d\x9a\x27\x9d\xb8\xad\xa7\x8e\xe4\x44\xf2\x38\xc3\x31\x59\x46\xed\x77\x61\x5d\xb4\xda\xa2\x5a\xb7\xb0\xe6\x93\xd9\x19\x00\xad\x1f\xf8\xa8\x06\x7c\xe1\x33\x8f\x2d\xe2\x99\xbe\x22\x90\xdc\x31\xbd\xf7\xbd\xed\x56\xa2\x1e\x96\xee\x4f\x7f\xa4\xc6\x64\x55\xd2\xb5\x64\xa2\xfc\x5b\x90\x2d\x1f\x13\x3e\x66\x5d\x8c\xc5\x17\x9f\xb8\x72\x65\xcd\xc7\x74\x71\xc5\xb1\x9f\x2f\x72\x26\x39\xe5\xde\x50\x04\xf1\x15\x50\xd4\xc3\x27\x0c\xaf\x80\x8a\x86\x8e\xaf\x00\xa1\x8b\x9e\x80\x89\x1d\xc8\xc5\xba\x44\x26\x4e\x22\x76\xf1\x1b\x1d\x41\x27\x6e\xe4\x1e\xb8\x9e\x8b\xcf\x2d\xe5\xc8\xed\xf7\x91\xaf\x40\xd9\x9f\x27\x53\x1b\xb6\x6c\xe9\x23\x15\xbf\xeb\x7e\x1c\xf1\x58\xaa\x6c\x9c\xf6\x8d\x6a\x29\x7a\x92\x1d\x57\x08\xa0\x61\xe9\xed\x3c\x04\x20\xbb\x0c\xcd\xd7\x76\xef\xda\x5b\x5b\xec\x4a\x1f\x61\x06\x64\x19\x89\x2e\xa1\x11\x5f\x0b\x28\x15\x80\x73\x0a\x10\x61\x27\x28\xc4\x6e\xcf\xf1\xb8\x3f\x57\xa1\xb1\xaa\x90\x29\x6c\x6e\x25\xc3\x39\x95\x0c\xa7\x71\x08\x73\x70\x48\x2f\xef\x73\x9b\x31\xde\xa5\x54\xee\x50\xe2\x2f\x90\x00\x85\x8a\x81\x72\xda\x30\x1b\x80\xc5\x82\x1f\x73\x35\xe7\x4e\x30\x2c\x85\xc9\x7b\xb1\x5c\x43\xa9\x1d\xcf\xe9\x1c\x5e\x12\x9d\x84\x97\xdf\xe1\x6e\x62\x85\xa7\xe2\x19\xa4\x8e\x46\x43\x14\x2a\x7c\xc7\x57\x46\x13\xa5\xd0\x8c\xef\x1f\x96\xb1\x45\x00\x5e\x88\xa6\x32\x1d\xc8\x54\x69\xcd\x68\x2c\xdb\x54\x5d\x39\x06\xe5\xe6\x2c\x2a\x74\x29\x22\x5a\x50\x94\xca\x58\xb2\x65\x59\x09\x1f\xd8\x47\x5d\x61\x4b\x27\xbe\x79\xac\x3c\xf2\x89\x78\x02\x53\x40\xb1\x00\xfe\xde\x4f\x22\x3b\x61\x70\x76\x9e\xa3\x3a\xa4\xbf\xb0\xee\x10\xcd\x60\x9a\xa1\x52\x86\x7d\x76\x2e\x54\x80\x33\xb7\x94\xd1\xf3\x82\xf8\x36\x3b\x0a\x39\xf7\x4a\x43\xc9\x70\xa1\x3e\xb5\xe5\x26\x6e\xa2\x2a\x14\xa6\xe3\x52\xd7\x65\xad\x2b\x07\x5e\x70\xa0\x98\x0a\x59\x59\x2b\x30\x9a\x93\xd7\xfa\xf4\xcd\x58\xf4\xd4\xec\xe1\x66\x70\xec\xb8\xbe\xb8\x2c\x8b\x6e\x45\x4e\x0b\xb7\x24\x58\x9e\x4f\x32\x37\x7f\xb9\x87\x6a\x59\x27\x5d\x83\x2a\xa5\xe1\x51\x44\x7d\x35\x53\xa4\x88\xa0\x02\x42\x35\x8a\x2f\x07\x93\xf6\x29\x6d\x2a\x52\xdf\x72\x3d\xd4\x46\x4e\x1f\x85\x35\x5b\x73\xfa\xfd\xc6\x09\xf2\xa9\x5b\x76\xe4\xa3\x50\x55\x08\x2a\x4a\x8e\x81\x0d\x59\xf7\x87\x28\x1a\x79\x18\x8c\xe1\xa2\x01\x60\x5e\x62\xae\x1d\x98\x27\xec\xab\x76\x9c\x2e\x44\x4e\xdf\x8e\xc4\x35\x81\x12\xaa\x6c\x4f\xd4\x67\x93\x00\x79\x95\x2b\x42\x86\x3b\x18\xc3\x28\x16\xf5\x7d\xf2\x3e\x44\xbe\xaa\xdc\x6e\x74\x14\x88\x8b\xca\xfa\x28\xf4\xac\x5c\xb9\xde\x06\x45\xa5\x20\xdf\x97\x66\x29\x45\x07\x40\x46\xb3\x45\xcb\x72\x0a\x85\x39\x04\x2f\x14\x64\x3c\x48\x6a\x87\xf4\x7d\xba\xba\xe0\xb7\x50\x0a\x77\xf0\xe9\xd0\x5a\xa4\x61\xf6\x66\x05\x14\x73\xf1\x35\x4d\x5f\x5a\xeb\xf1\x98\x2c\xce\xfc\xbe\xfa\x02\xeb\x0b\x26\x6e\xf1\x21\xeb\x44\x91\x3b\xf0\x2f\x2f\xf3\x6f\x36\x30\x6a\xe8\xc6\xd4\xc5\x28\x48\xc8\x6c\x92\x33\xcd\x7d\xd4\x4d\xae\x0e\x59\x70\xfd\x05\x0c\x78\x01\x89\x6e\xe5\x91\x13\xb5\x4e\x7d\xc1\x1d\x98\x16\x23\x11\xb7\x0a\x05\xd5\xde\x0f\xbb\x16\xde\x0f\xbb\xc9\x65\x9f\x63\xe8\x5b\x91\x8a\x55\x63\x89\xde\x34\x40\x5f\x97\xf9\x55\x03\xe5\x55\x49\x71\x25\x7a\xa9\x3b\x06\x82\xdc\x63\x5e\x74\x79\x79\x31\x86\x51\xe6\x0e\x23\xe5\x20\x08\x3c\xe4\xf8\x89\x9a\x32\xa6\x7b\x4c\xae\x3f\xb8\xbc\x8c\x5f\x41\x2d\x62\x5b\x4e\xb2\x4a\xa7\xa1\xe9\x9a\x5e\x72\xbc\xe1\x91\xa3\x19\x86\x22\x5c\x71\x66\xf6\x8f\xa9\x28\x13\xcc\xe0\x54\xca\x4e\x18\x9c\xb8\x7d\xd4\x5f\xe0\x3b\x3c\x0b\x6e\xb4\x40\x84\xc0\x53\x17\x1f\xb9\xfe\x82\xb3\x20\xb2\x51\xc4\xb1\x55\x20\x9f\xa0\xc0\x9e\x75\xe1\x44\xe7\x7e\x8f\x2c\xa7\x1c\xcf\x0b\x4e\x3b\x8e\xeb\x63\x73\xd1\x80\x59\x2d\x17\xe5\x3f\x1e\xd2\xff\x14\x28\xf7\x41\xd3\x58\x42\x15\xc8\x6b\x49\x32\xa1\xdc\x92\x1d\xcc\xf0\x79\x8d\xf9\xdb\x44\x21\x89\x4d\x6d\x7f\xb4\xe9\x86\x1b\x4d\x67\x40\xba\xaf\x63\xba\x5a\x1f\x9d\xb8\x3d\xb4\xe3\x9e\x21\xaf\xed\x60\x37\xb8\xbc\x34\x20\xa6\x46\xc4\x66\xda\x63\x37\x16\xf6\xbe\x70\x14\x21\xc2\x18\x49\x2e\xd2\xbe\x9a\xe9\x4a\x3e\xfd\xa1\xbc\x91\x26\x62\xf8\xb6\x1a\xdf\x42\x33\x5d\xf9\x0c\x89\x87\x3e\xe2\xa1\xfc\x14\x69\x0c\x3d\xb2\xf6\x73\x34\xb6\x57\xc8\x45\x51\xb2\xfa\x0b\xd5\x8b\x31\xec\xd1\xdd\x91\x78\x59\xe5\x8d\x6b\x81\xc6\xcc\xe7\xdb\x7c\x6f\xd1\x8a\xf1\x87\xb6\x86\xce\x86\x41\x88\x23\x2b\x78\x15\x1a\x6b\x12\x7e\x33\xd7\x5f\x53\xd7\x01\x0b\xfb\x99\x8c\x01\x74\x62\x29\xe3\x1e\xaa\xbb\xe7\xc7\x07\x81\xa7\xb9\x18\x85\x0e\x0e\xe8\x38\x66\x08\x4a\x80\x79\xc3\x87\xde\x7a\xb2\xa8\x43\xdf\x5a\x34\x92\xd5\x2a\x0e\xcf\x63\x56\xe2\xc0\xc8\xb2\xf7\x33\xf9\x77\x55\x50\x5b\x54\x43\x4b\x75\xac\x28\xb5\xaa\x25\x2c\x81\xdf\x9c\xe2\xb0\x75\x2d\x80\x8b\x88\x8e\x39\xca\x82\x16\x2d\xea\x70\x98\x2c\xf2\x6a\xc9\xf5\xcb\x3e\x41\xa1\x6e\xd9\xe3\x43\xd7\x77\x3c\xef\x9c\x5e\x39\xbc\x18\x16\x0a\x84\x05\x13\xdc\x93\x37\x15\xc4\x40\xee\xa1\xea\xf3\xc5\x44\x3d\x5e\x10\xe2\x31\xad\x5e\x2d\x77\x2d\xd6\xf4\x4f\x1c\xcf\xed\x2f\x38\x18\xa3\xe3\x21\x5e\xc0\xc1\x42\x1f\x45\x38\x1c\xf5\xf0\x28\x44\x0b\x7e\xe0\x97\x68\x0d\x0f\x3c\x14\xcf\x0c\x84\x43\xd3\xd5\xa2\x7a\x4f\x30\x32\xac\x96\xd7\x28\x6b\x23\x21\x4b\x06\x65\x6d\xe4\xb5\x5c\xa1\x8a\x7c\x14\x4e\xa7\x9a\x7c\xf4\x50\xdb\xb5\xb0\xba\x54\x05\xb0\x47\x3e\x97\x00\xf4\xd8\x1d\x73\x23\xeb\x9e\xea\x49\xdc\xf0\xde\x4b\xa8\xf1\xa5\x7b\x52\xc6\x36\xe4\x1e\xe0\xd7\x22\x64\x0e\x69\xe1\x1e\xd7\xd9\xe3\x27\x67\x58\xec\x53\x43\xf1\xf6\x88\xae\x71\x92\x4d\x70\x9c\xda\xea\x06\x70\x60\x9d\x6a\x42\x44\xe7\x85\x53\xa1\x67\x14\x8f\xff\x29\x3d\x8f\xa9\x04\x20\xbb\x47\x0d\x4c\x4f\xa3\x9a\xaf\x3b\x76\xbb\xb1\xdd\x81\x1b\xd6\x29\x5d\x2d\x5e\x9d\x33\x81\xba\x32\xbb\xbe\x85\x2c\x2b\x07\xef\x81\xe6\x46\x54\x5b\x96\x1d\x67\xaa\x60\x7d\x63\x2a\x04\x67\x33\xcf\xe0\x84\xa7\x0b\xa7\xb7\x44\x6e\x98\x03\xf3\x5d\xa6\x15\x0e\xb6\xb1\x96\xcf\x95\xd7\xa7\x8f\x8f\x73\xef\xc0\xcd\xbb\x55\x37\x7b\xb8\x10\xc5\xfd\x2d\x5a\x57\x47\x5c\x23\x51\xf4\x96\x0d\x8f\x08\x5d\xac\x43\xc1\x45\x1d\xda\x00\x70\xdd\xab\x5b\x81\x8f\x23\xf5\x34\x9b\x5b\x9c\xd9\x88\x96\x39\x0a\x7b\x68\x2b\x20\x32\x27\x15\xfe\xce\xd5\xe9\x3b\x86\x81\x24\xa2\x26\xaa\x65\xa3\xa9\x1e\x03\x43\xd2\x7e\xd2\xfc\xe8\x5b\x61\x6a\x5a\xa8\xf3\xef\x47\x62\x9a\xb0\x94\x3b\x9d\xbb\x5b\x0a\xd5\x78\xe1\x17\x06\x5d\x5e\x2a\xf5\xd6\xe6\xa3\x54\x18\x53\xa3\xa0\x0b\x29\x51\x6d\x7a\x57\x88\x7a\xca\x95\x23\x52\x47\xd7\x88\x3a\x79\x87\xae\x25\xd4\x1b\x7b\x96\x38\x2b\x83\x9e\xc5\xad\x28\xf7\x2c\xaa\x7f\x94\x5c\x40\xc4\x86\xaa\x3a\xa5\x9f\xda\x87\xec\xd0\xcb\xbc\xc7\x67\x59\xcc\x8f\x54\xce\xcc\xa9\xbb\x41\xb0\x76\xb6\x8e\xb5\x33\xd3\x83\xe7\x79\x91\xe7\xeb\x58\x3b\x37\xf7\x20\xc5\x2a\x0f\x80\x46\xac\xf3\x5f\x33\x31\xf4\x74\x01\x64\xf8\xe7\x25\xe2\x6a\x6d\xe2\x45\x4a\xd6\x03\xa9\x29\x3d\xcd\x33\x52\x73\x7a\x9a\x81\xc4\x93\x7a\xc2\x79\xc4\x84\x1e\x73\xa0\x31\x57\x4c\x71\x99\xf6\xc1\x03\x9a\x1c\xa8\xa7\x70\x0f\xb2\xae\x68\xe7\xdc\x54\xcd\x44\xde\x50\xb5\x21\xdd\x49\x46\xfb\x7a\x17\x46\x16\xda\x37\xba\xd0\xb5\xd0\x7e\xb9\xcb\x35\x9a\xa9\x3a\xc2\x76\xd0\x47\x3b\xa4\x5d\x43\xa0\x46\xd0\x85\xf7\x00\x6d\xb4\xb4\x78\x27\x7c\x5a\xd2\x8b\x70\x7a\x42\x58\x9a\xba\xe0\x25\xe7\x4c\xee\x65\xc0\xad\x14\xab\x02\xd0\x15\x43\x65\x56\x15\xc9\x48\xe9\xc9\x1b\x96\xea\x9e\x50\x07\xd8\x9b\x3b\x42\xdc\xcc\x08\xf1\x92\x11\x12\xe5\x8c\x90\xe8\xdd\x8d\x90\x08\xfa\xd0\x25\xd3\x84\xc7\x47\xc8\x86\xe5\x89\x11\x72\xcb\xf2\xd8\x08\x69\x58\x1e\x75\xb0\x70\x68\xe5\x8c\x09\xc9\x7e\xd9\x44\x4c\xa6\xdd\xc5\x41\x88\x4c\xfb\x5d\x0c\x97\x5b\xf3\x86\x4b\xe3\xe5\x87\xcb\xe0\xdd\x0d\x97\x0d\x30\xae\x4d\xc9\x6f\x58\x63\xf2\x33\xc8\xae\x21\xe8\xda\x8a\x47\xce\x72\x53\x96\xb1\x76\x82\x87\x40\xb0\x99\x11\x18\x73\x4d\x9d\xa3\xcc\x92\x48\xe4\x99\x02\xe6\xfd\x7c\x91\xee\x39\x69\x99\xa5\x41\xa1\xe0\x48\xba\x3e\xe9\xaf\x8c\xfa\x22\x3c\x22\xe3\x96\x8d\xb2\x57\x72\x4c\x96\x0c\xda\xb4\xdc\xec\xaa\x58\xad\xe8\xd4\xb2\xc2\x8d\xef\xb6\x73\xa5\xbb\xed\xca\x06\xbb\xdc\xce\xa8\x32\x79\x4c\x5e\x7f\xba\x2f\x21\x71\x49\x08\xe4\x29\x5c\xb1\x3b\x29\xd3\x6b\x21\x76\xf3\x1b\x44\xb0\x5e\x2c\x02\xbe\x44\x8d\x95\x42\x55\x87\xc5\x12\x41\x58\xac\x4c\x54\x1b\x3a\x30\x82\xd4\x0f\x4b\x34\xe6\x77\x51\xee\x2b\xbb\x1b\xed\xe6\x4e\x47\x81\xca\x9d\x86\xbd\xa9\x40\xa5\xd3\xec\x6c\x35\x14\xa8\xb0\x09\x5f\x81\x4a\xbd\x4d\xbe\x76\x3a\xcd\xd6\xb6\xd2\x95\xb4\xa0\xb8\x3c\xe8\x42\x0f\x9e\x26\x7b\x03\x7b\x70\x60\x21\x49\xb5\xaa\x36\xa8\x0d\xac\x3d\x70\xb1\x67\x0d\xa8\x28\xbf\xeb\x1e\x78\xae\x3f\xa8\x31\x1d\xbc\xc1\x6c\x45\x3f\xd2\xa9\x07\xf2\x0e\xca\x06\xd5\xbd\xbc\xbc\x4c\x05\xb2\xa0\x0d\xde\x77\x0a\x85\x4c\x0a\x16\x4c\x13\x82\x81\xd6\x77\xb0\x93\xd5\xdd\x2b\x14\xf0\x8b\xde\x33\x35\x80\x98\x2b\xe9\x2d\x4c\xe3\x46\xf8\x1d\x97\x28\x32\x28\xa6\x62\xae\xc2\x54\x02\x06\xec\x82\x42\xcb\xb2\x7a\xf1\x05\x85\x03\xcd\x0f\xfa\x88\xdd\x50\xc8\x35\x05\xd3\xbd\x62\x00\x31\x69\x0f\x7e\x73\x6f\x5f\x73\xa3\xfb\x6e\xe4\x1e\x78\x48\x05\xe0\x42\xa1\x76\x2d\x84\x03\x0f\x64\x0e\xec\xe4\x18\x70\x00\x75\x00\xfb\xc0\x54\x3a\x8d\x87\x1d\xbb\xdd\xb0\x67\x26\xca\xe8\xd8\x8b\x74\xbb\x8d\x2d\xd2\x7b\x66\xa5\x4a\x29\xd8\xf3\x34\xfd\xec\xad\x88\x85\xc2\x54\x50\xfa\x22\xb2\x45\xcb\x0a\xa6\xdc\x66\x6e\xb7\xb6\x1b\xf4\xda\x8f\x28\xff\x4e\x46\x5a\x1a\xe4\x7b\xbd\xb7\xac\xa4\x86\x8b\x12\xae\xb0\x61\x8d\xd4\x3e\x1c\x50\x2a\x36\x2e\x2f\xef\xa9\x7d\x4e\xf0\x43\xab\x71\x79\x49\xe8\x2a\x8c\x0a\x51\x5f\x05\xeb\xae\x36\x40\xb8\x8d\x1c\x6f\x87\x36\xe3\x2e\x76\x7a\x4f\x5c\x7f\x20\x54\xa6\x80\xe9\xc2\xa3\xcc\x08\xed\xc3\x43\xd8\x00\xb5\x43\x3a\xa1\xa3\x33\xcc\xfb\xde\x11\x80\xb7\x0a\x05\x9b\x22\x79\x44\x87\x16\xdb\xc3\x74\x59\x2f\x0d\x11\x3f\xd7\xed\x4b\x70\x6c\x08\x8e\xb9\x35\xc4\x74\xdf\xdc\xbd\x7f\x7b\xf7\xfe\xed\xfc\xde\x99\x89\xbb\xaa\x7f\xa6\xc0\x19\x45\xee\xcc\xec\x82\x70\x68\x8d\xd4\x3b\x9c\x8a\x43\x42\xc5\x3b\x9c\x8a\xdb\xd6\xf0\xf2\xf2\xce\xbb\xa0\x62\x33\x43\xc5\x3b\x70\x1b\x0e\x41\x6d\x3b\x43\xc5\xe6\x0c\xaa\xdd\xa1\x86\xe7\xa3\xcc\x5e\x5f\x2c\x4d\xbb\x51\x3b\x08\x44\xb7\x54\xc1\xe5\xa5\x9d\x42\xf1\x81\x8b\x8f\x3e\x4c\xad\x3c\x58\x1c\x3f\xd5\x67\x1e\x39\x6e\x18\x0c\x3c\xb6\x91\x24\x55\xba\xbc\x3c\xa5\x45\x8c\xe1\xbd\x7c\x2b\x8f\x34\x05\x58\x0e\xf4\x9e\x41\xaa\x55\x95\xbd\x0b\x2a\x36\xc4\x4a\xd6\x1a\x82\x1f\x90\x09\x86\xb5\x91\xdc\x6e\x71\xab\x24\xd1\x57\x8a\x8d\xd9\x75\xea\xab\x51\x30\x85\xfe\x1f\xa3\x56\x00\x53\x47\xa9\xa9\x21\xd5\x45\x09\x33\xba\x28\x6b\x53\x4e\x67\xff\x95\x3d\x73\xc4\x6b\x0d\x61\x6b\xc0\xfa\x44\xec\xa2\x8e\x8f\x39\x7a\xf3\x39\x0d\xe0\x83\x2d\x0e\xc0\x21\x72\xb0\x1d\x91\x31\x9d\x19\xcd\x56\x38\x4e\x0e\x72\x84\xbe\xc1\x60\xb6\x7f\x9b\xb4\xf7\x48\x86\xc7\x7a\x1a\xc9\xf4\x78\xbc\x26\x01\x6a\x49\xc6\xaa\x70\x72\x98\x9f\x4a\x3e\x73\x9d\xc9\x89\x66\x22\xb7\x28\x95\x79\x79\x79\x05\x05\x28\xf6\x66\x06\xcb\x39\xdc\x2f\x4f\xe9\xd1\x79\xaf\xc7\x66\x92\xf5\xbf\xa2\x75\x0b\x77\xad\xc4\x3e\xb8\x2e\x04\xfe\x77\x36\xf4\xde\xb2\xa1\x65\xb6\x82\x59\x79\x21\x33\xa8\xda\xf4\x11\x19\xc4\xa9\x05\x63\x24\xb9\xc7\x38\x2b\xaa\x48\x3b\x2b\xd9\xda\x19\xb8\x86\xa9\xe7\x50\x15\x69\xe7\xd4\x0f\xf1\x35\x0c\xc6\xd0\x9d\xc7\xe0\xa0\xff\xfe\x5a\x52\x9d\x0f\x91\x55\x9f\x76\xb9\x2a\xfb\x1b\x92\x5d\x02\x71\xf7\xa9\x82\x05\x26\x0e\x55\xad\x30\x0e\xb1\xfc\x1c\xde\x16\x8d\x0e\xfa\xee\x89\x9b\xe3\x09\x51\xd2\x50\x0d\xd4\xa4\xa4\xe9\x42\x99\xfd\x94\x0c\x23\x22\x32\xb8\x10\xc0\xba\x00\x94\x82\xc5\x37\xb5\x3e\xb1\x02\xea\xb3\x13\x91\x0e\x10\xa8\x3e\xac\x93\x57\xd7\x0a\x54\xba\x4a\x4c\x3c\x9d\xad\x4b\x4e\x92\x18\x62\x21\x74\xa0\x0b\x4c\x16\xee\xc2\x08\xd6\xe3\x9c\x65\xa7\x6d\xd4\x2f\xe2\x6c\x46\x9e\xf2\xbd\xd4\x87\xb9\xb8\x4e\x57\x52\xf8\x65\x9a\xe6\x85\xee\x2b\xb2\x30\x4c\x19\xc5\x67\xf4\x52\xfe\xfd\x60\xed\xdf\xf8\xc1\x5a\x9d\x79\x1d\x72\xac\x1c\x91\x2b\x87\xc5\x45\xcc\x8b\x50\x89\xba\x0c\x82\xf4\x35\xed\x4e\x28\xfb\x99\xf6\x2d\x74\x85\xff\x84\x85\x68\xca\xc1\x90\xb0\x26\x9f\xf6\x28\xc4\x9c\x58\x94\x94\x22\x2a\x2a\x25\xe6\xce\x56\x01\xcc\x72\x8f\x7a\x34\xa5\x59\xc5\xe7\x1a\x5c\xa5\x0d\xc0\xd0\xf2\x55\x0c\xa9\xb1\x6b\xc8\x36\xaa\xc3\x7d\xa3\x3b\xa5\x02\x16\xad\xef\xd7\x61\xbd\x6b\xee\xd7\x61\xd4\x7d\x85\xfe\x8a\x36\x9b\xbb\x3b\x5b\xf6\x23\xee\x72\xc6\x80\xf5\xad\xd6\xc6\x6b\x66\x19\x36\xb7\xa9\x5b\xcb\x2a\x6c\xef\x6d\x3f\x6e\x6e\x9b\xab\xf0\xd6\x56\xeb\x81\x69\x2c\xd3\xdf\xc7\xed\x56\xab\x63\x56\xca\xb0\x63\xd7\xb7\x1a\xe6\x72\x15\xde\xda\x6a\x3c\x34\x8d\xf2\x2a\xbc\xdd\x6e\x6e\x9a\xe5\xa5\x65\xd8\xde\xab\x3f\x32\x97\x8c\x32\xdc\xdd\xab\xd3\x40\x43\x2f\x57\x21\xdd\x0d\x68\x76\x1a\x77\xcd\xb2\x5e\x5d\x65\xe9\x1f\xb7\x5b\x0f\x1e\xdf\x6e\xb7\xf6\x76\xcc\xaa\xbe\xb6\xcc\x03\xef\x34\xec\x4d\x7a\xb9\x22\x09\x5f\x35\xd6\x78\x61\x8f\x6f\xb5\x5a\x9d\x38\xdc\x58\xae\xac\x56\x93\x5c\xcc\x4a\x79\x65\x59\xe4\xba\xd1\xd8\xda\x32\x97\x97\x96\x2a\x22\xc7\x8d\xd6\xd6\xde\xdd\x6d\x91\xf2\xc6\x0d\x63\x25\x15\x41\x83\xe2\xc4\x36\xdd\x50\xa3\x61\x6b\xb4\x2e\x8f\xeb\xd4\x11\xcf\x8d\x1b\x65\x9d\x7d\x77\x1a\x0f\x3b\xf4\xdb\x48\xe2\x1f\x6f\xb4\xb6\x3b\x76\x73\xbb\xd1\xa6\x31\xe5\x04\x32\x13\x53\x81\xe4\xbb\xb1\xdd\xd9\xa5\x9f\x55\x4e\xf0\xc7\x8c\xfe\x24\x68\x49\x04\x25\x24\x23\xc1\xcb\x22\x98\x91\x9e\x04\xad\x88\x20\xd6\x08\x37\x6e\x94\x57\x45\x08\x23\xfc\x8d\x1b\xe5\xb5\xb1\xcc\x0d\x53\xab\xea\xcb\x79\x9e\xa7\xbc\xa0\xf7\x44\x76\x3a\x45\xd0\x63\x0e\x80\xd8\xe6\x8d\x14\xc7\x8a\x64\x91\xe1\xc8\x2f\xb9\xbe\xec\xab\x89\x76\x23\xee\x88\xc9\x0b\x4e\x65\x3f\x4c\x5b\xad\x07\x49\x44\x29\x0c\x02\x9c\x89\xa5\xdd\x8d\x81\x50\x39\x4c\x8a\xa6\x54\x10\xa9\xd1\x59\x2a\x61\xe3\x21\x8b\x18\x84\xae\xec\xf7\x89\xd0\x44\x60\x79\x70\x9e\xc2\xb1\xfe\x88\xfb\x83\x1a\x1d\x64\x12\xf1\x4e\xcc\xdd\x23\xb9\x11\x26\x1c\xed\x58\x76\x8f\x24\x5a\x49\xc2\xb3\x14\x06\xa7\x25\xb2\x72\x1f\x66\x31\x4e\xba\xbc\x0c\x7e\x44\x95\xf4\x66\xa4\x90\xc7\x83\x9c\xe8\x30\x08\xf0\xcc\x44\xf2\x60\xc9\x20\x96\x87\x92\x0c\xd2\x43\x9e\x37\x05\x43\xc6\x54\x0a\x28\xf0\x46\xc7\xfe\x8c\xc2\xe5\xf1\x36\x9d\x68\x06\x78\x0a\xd0\xa1\x16\x92\xd3\x90\x6c\x70\x26\x8d\x58\x3a\x48\xfb\xaa\x8a\xc7\xa3\x04\x42\x17\x86\x19\x10\x32\x30\x33\xb9\x94\xe2\x85\x67\x5e\x7e\xc9\x28\xce\xe4\x3c\x3b\x59\x7a\xf0\x73\xe7\x59\x64\xcd\xe8\xe3\x48\x76\x9d\xc5\xd9\x81\x3c\xb8\x4a\xd9\xe1\x27\x33\x89\x14\x60\x5e\x8f\xcc\xb2\x8f\x54\x82\xec\x38\x92\x99\x4a\x0a\x30\x33\xaa\x24\x4e\x93\x02\xcb\x0c\x17\x89\xfd\x64\x3c\x81\xa9\x08\xc4\x2e\xcb\x36\xdd\x68\xe8\x39\xe7\xf9\x3b\x6f\xd2\x4c\xca\xef\x4a\xf7\xa1\xfe\xea\x26\xc2\x5b\x5b\x2d\xbb\x93\x78\x5e\x6b\xdc\xea\x98\x06\xf7\x68\x28\x66\xc3\xc7\xbb\x1d\xbb\xdd\x31\x2b\xe2\xb3\xb1\xbd\x29\x39\xb1\xdb\xd8\xdd\xa5\x1b\x83\xf3\x5c\xaf\x51\x69\x44\xe2\x19\x8d\x5b\xa2\xfb\x51\xa9\x45\xea\x39\xa4\xe0\x14\x81\xa9\x5c\x3d\x4d\x61\x8a\x52\x0a\x10\xf9\x39\x0d\xd1\xd8\xde\x7c\xb5\x1e\xd9\x04\x15\x6e\x05\x3e\xce\x69\xcf\x8b\x44\xf9\xdd\x4c\x19\x36\x08\x1d\x78\x53\x32\x68\x88\x5d\xca\x8b\x40\xea\x5e\x5e\x72\x2e\xcf\xc3\x85\xab\xf9\xc4\xd1\xbc\x39\x87\xf6\xc2\x3f\x22\x27\x43\x55\xd7\x19\xd9\x0e\x02\x2f\x21\xd8\x8a\xae\x8f\xd9\x59\x3b\xad\x4d\xd3\xc7\xaa\x0d\x8d\xe4\x90\xce\x8d\xb6\x9d\x6d\x15\x81\xf5\xaa\xae\x9b\x68\xac\xda\x92\x97\xfb\x57\x70\xd5\x17\x27\xea\x96\xec\xfc\xc3\xca\xf8\xc7\x17\x15\xb3\x2c\xcb\x16\x4b\x12\xb6\x00\xe2\x95\xa0\xbd\x52\xb5\xa7\xeb\xa0\xbf\xf7\x5e\x5f\xe2\xe1\xc4\xf8\x54\xbb\x61\xbf\x16\x3b\xc1\x8c\x4d\x34\x76\x3b\xed\xe6\x46\xc7\x54\x78\x21\xf1\x08\x8a\x8d\xf7\xe6\x0d\x21\x9e\x48\x76\xd5\x48\x72\xfb\xd7\xf1\x81\x29\x96\xa0\x77\x99\xe9\xcd\xbb\xf5\xa7\xfa\x52\xfe\x51\x79\x59\xef\xad\x7b\x54\x66\x3b\xf4\xbe\x79\x47\xb5\x2e\xee\x37\x77\x9b\x44\x7e\xd5\xe1\x9d\xe6\xe6\x66\x63\xdb\x34\xe0\xee\x46\xbb\xb5\xb5\x65\x96\xa1\xbd\xd7\x69\x49\x8e\x2d\x85\x97\xd4\x79\xbd\x82\x1b\x8b\x25\x0d\xce\x72\xe5\xd2\x1c\xd5\x2d\x92\xbb\x0c\x2d\x89\xbb\x0d\x1d\xe1\x40\x76\x19\xba\xd7\x69\xb1\x88\x13\x76\x2e\x9b\xd3\x99\x38\xee\xe3\x57\xe9\x32\x69\x97\x5e\x08\x31\xdd\xa3\xf4\x97\xe9\x51\xd7\x3f\xa2\xee\x17\x4b\xdd\xcb\xd7\xfb\x97\xaf\x6b\xe0\x4f\xae\xbb\xb5\xe9\x12\xa6\xb9\x89\x8f\x28\x2f\xb9\xbc\xa4\x63\xcd\x1f\x24\x5a\xf4\x31\x7f\xa1\xaa\x8a\x89\xb5\x81\xa2\x40\x6c\x2d\x1a\x30\xb4\xf6\xbb\xcc\xf2\x35\xb2\x74\x18\x58\x54\xc5\x21\xb5\x99\x88\xa4\x0b\xc2\xfe\x7f\xf6\xfe\x45\x2b\x71\x65\x6b\x18\x86\x6f\x45\xf3\x3f\x9b\x95\x5a\x94\x08\x88\xdd\x76\xe8\x6a\xfe\x4a\x00\xc5\x03\x8a\x4a\x77\xdb\x34\xdb\x11\xa1\x88\x59\x62\xe2\x4a\x82\xd1\x25\x5c\xc7\x77\x29\xdf\x05\xbc\x37\xf6\x8d\xaa\xca\x99\x70\x52\x5c\x7b\xed\xf7\xe9\x1e\xa3\x2d\x92\x3a\xcf\x9a\x35\x4f\x35\x6b\xa6\x62\x71\x83\x46\x84\x48\x11\x00\x24\x33\xe1\xb9\x42\x58\xf4\x9c\xcd\x02\xa4\xfd\x4c\x60\x2f\x66\xd3\x09\x9a\xf3\x3e\x54\x61\x66\x32\xde\x49\xe2\x0b\xfb\x8a\x87\x64\x42\xef\x33\x1d\x12\xd5\xb6\xc7\xe3\xbc\xf7\x7c\x25\x51\xb5\x9b\x3e\xdf\x0c\x47\x96\x64\x75\x8a\xf4\x61\x02\xa0\xc5\x04\x8f\x1e\x61\xd7\x89\xbd\xd8\x3b\xde\x54\x26\x70\x88\xf2\xe5\xe1\x67\x3f\x8c\x5a\x79\xe8\xdb\x99\x47\x08\x77\x86\xdd\xb2\x87\x94\x23\x0f\x29\x45\x41\x22\x59\x34\x82\x76\x36\x1b\xf9\xb0\x83\x00\xfc\xd7\x5b\x5b\xd1\xd7\x50\x90\xb8\xe2\x2f\xea\x22\x80\x3d\x11\x00\x56\x2c\x5a\x64\xc3\x2f\xa2\x8b\xb1\x4c\x7f\xe1\xa3\x31\xbe\x32\x19\x35\xe7\x10\xdb\x11\x47\xcc\x76\xc4\x4c\xd7\xb4\x4a\x60\xd1\xf1\x7a\x81\x79\xf6\x49\x2b\xff\xbb\x29\xa3\xe1\x50\x32\xde\x0d\xb1\x83\xf0\xb4\x6f\xa3\x94\x29\xb4\x2f\xca\xe9\x3c\x17\x12\xf6\x91\xc5\x6d\xf1\x5e\x75\x2c\xfd\x69\xcc\x93\x9d\x3e\xf8\x29\x8a\xb9\x2c\xf8\x09\xb6\xa1\x19\x86\xe3\x4a\x8d\x9b\xcb\x91\x5b\x67\x0d\x7a\xf9\xe3\x31\xce\xb9\xe4\xe6\x4e\x0f\x43\xed\xd2\x57\xf7\xe6\x5f\xf1\x67\x3b\xf6\x68\x06\x4f\xe1\xf5\xee\xd1\x70\x48\x57\x8b\x43\xfc\x25\xe8\x40\x22\x30\xf8\xed\xc5\x1d\x35\xa3\x03\xe0\xef\x52\x86\x11\x66\x44\x07\x13\x79\x6b\xa7\xbc\x34\x13\xef\xe2\x94\x9f\x13\x84\x69\x22\x10\xf1\x46\x8c\xdc\xb9\xc9\x07\x91\x33\x3a\x04\x92\xee\xc4\xb7\x9c\x25\x2c\x62\x72\xd2\x22\xe6\x57\x0a\x3e\x50\xd1\x9d\x80\x28\xd1\x58\x99\x2e\xf9\xf7\x2d\xef\x99\x19\xd4\x66\xce\x0d\x5e\x8c\x53\x8e\x04\xec\x60\xbe\x53\xe8\x06\x97\x88\x3a\xc5\xae\x3f\x4c\xe8\x1b\xee\xa6\xc7\x95\xf6\xe1\x0c\x3e\x4d\x6b\x41\x13\xcc\xd0\x47\xe9\x0d\xb4\x68\x45\xab\xb3\xcb\x1e\x8b\xec\xef\x4e\xb7\x3b\x89\x0c\xff\xdd\x78\x2f\xe3\x5a\x8d\xe3\xc6\xe5\x55\x2a\xf7\x55\x4e\x8f\x8f\xf1\xd9\x45\x4d\x2a\x06\x8c\xf7\x6b\x78\x1b\xfb\xb5\xac\xb7\x67\x0e\x87\xea\x43\x4c\x37\xf7\x3b\xfa\x4f\x71\xd9\x00\x20\xdf\x4e\xcf\xab\xb3\x44\x54\x1e\xea\x01\x1f\x1f\x4b\x5e\xa4\x07\x75\x38\x14\xe0\x51\xad\x76\xc6\x5f\xde\x11\xf2\xc0\xde\x05\xc0\xfa\xe6\x07\x7f\x58\x1c\xc8\x5d\x8d\x09\x23\x41\x57\x1c\x20\x41\xcb\x61\x09\xbf\xdb\xff\x50\x9c\x77\x6f\x82\xdc\xb1\x26\x2d\x48\x25\x13\xa1\xe8\xd6\xf4\xf0\xfd\x85\xbe\x90\x08\x64\x06\x72\x89\x54\xf2\x52\x5c\x99\x7a\xaf\x25\x75\xc4\xc2\xce\xff\x15\x51\x51\x90\x23\x96\x3e\xce\x99\x49\x24\xca\xc9\x92\x3d\x19\xd1\xc8\x28\x93\xc9\x3b\x5c\x0b\x8f\xb4\x1f\x44\x56\x67\xcf\xa7\x0f\x0f\xa6\xe5\x8c\x0c\xdd\xd1\x89\x8d\x22\x01\x58\xb0\xc3\x31\x8a\xe4\x7a\x01\x88\x2f\x4d\xe5\x56\xb5\xd4\x9e\x43\x2c\x65\xa8\xda\x36\xab\xd1\x36\x74\x5a\xe2\xd2\xd2\x09\x22\xe1\x7e\x39\xfd\x56\xab\x06\xcf\xcd\xd3\xcb\xa9\x77\x27\xb8\x59\xc5\x97\xa7\xe7\x57\xb4\x8b\xa0\xb5\xe3\xda\xe5\x65\xed\xfc\xba\xd9\x3e\x91\x6b\xe7\xd7\x27\xa7\xd5\x46\xbd\x51\x3b\x9f\x73\x70\xf8\xbf\xc7\xe9\xe0\xd7\x69\xe9\x3f\xfc\xb4\x54\xa5\x94\x61\x8f\xbb\xb4\x97\x3e\x51\xbd\x44\xb4\x90\x3d\x3f\x40\xae\xee\xd1\x45\xee\x4f\x3e\x13\xff\x77\xf3\x70\x88\x0a\x79\x38\x42\x85\x1d\xd8\x42\x85\x5d\xe8\xa2\xc2\x47\xd8\x46\x85\x3d\xa8\xa1\xc2\x27\xa8\xa0\x62\x1e\xf6\x51\xb1\x00\xeb\xa8\x58\x84\x35\x54\x2c\xc1\x01\x2a\xee\xc2\x5b\x54\xfc\x00\x0f\x50\xf1\x23\x7c\x40\xc5\x3d\xd8\x44\x3b\x79\xd8\x40\x3b\x45\x78\x84\x76\x76\xe0\x25\xda\x29\xc1\x7b\xb4\xb3\x0b\x1f\xd1\xce\x47\xf8\x8c\x76\xf6\xe0\x0d\xda\xf9\x04\x2f\x50\x29\x0f\x8f\x51\xa9\x08\xaf\xa9\x1c\xee\x6f\xd0\x17\xf9\x88\x4a\x23\xe7\x52\x11\x1e\xd7\xa5\x1d\xa8\x9c\x48\x25\xd8\x3c\x96\x76\xe1\xc5\xbe\xf4\x01\x7e\x3b\x94\x3e\xc2\x1f\xdf\xa4\x3d\xb8\x7f\x2c\x7d\x82\x17\x67\xd2\x10\xfe\xf8\x76\x28\x15\x0a\x50\x2e\x4a\x85\x22\x94\xb1\x34\x82\xb2\x2c\x15\x4a\xf0\xe0\x4a\x6a\x41\x45\x96\x0a\x1f\xa0\x72\x2c\xb9\x50\x39\x93\xda\xb0\xf6\x5d\xd2\x60\xa3\x29\x29\xb0\x79\x21\xf5\xe1\xe9\x99\x54\x87\xad\xb6\x54\xdc\x81\x8d\x0b\xa9\x06\x9b\x6d\x69\x00\xcf\x4e\xa5\x5b\x78\x76\x2e\x1d\xc0\x8b\x2b\xe9\x01\xe2\x86\x54\xfc\x04\xf1\xb1\xd4\x84\xca\xa1\xb4\x53\x80\x35\x59\x6a\xc0\xda\x89\x74\x04\x0f\x8a\xd2\x25\x3c\xd8\x91\xee\xe1\xc1\xb1\xb4\xf3\x01\x36\xaa\xd2\x23\x3c\x3c\x96\x9e\xe1\xe1\x57\xe9\x06\x1e\x5e\x4a\x17\xf0\xbc\x21\x95\x0a\xf0\x02\x4b\xc7\xf0\xfb\x77\xa9\xb4\x33\x81\xd3\x04\x4a\xd8\x14\x00\x4c\xa7\x66\xc2\xff\xf9\x7f\x04\x78\x32\x45\xf8\x84\xff\xf3\xff\x0a\xf0\x34\x41\x1d\x99\x07\xb7\x17\x3c\xc5\xd2\x49\xdd\x32\xef\x65\xd5\x26\x1f\x4a\x40\x0c\xae\x98\x03\x78\x8e\x3a\x4d\xb8\xf3\xa1\x0b\xcf\x50\xa7\x00\x8b\x70\x07\xee\x76\xe1\x77\xd4\x19\xc2\xbd\x2e\xfc\x0b\x75\x0e\xe0\x6d\x17\x3e\xa1\x33\xff\xfb\x45\xdf\x01\xfc\x8a\x3a\xcf\xf0\x06\x5e\xc0\x4b\x78\xdf\x85\x77\xa8\xd3\x82\xa3\x2e\x3c\x5c\x44\xbb\xa7\x85\x85\x64\x50\x82\x2f\x85\x4c\x86\xef\xf7\x4d\x14\x89\x4a\x50\xe8\x56\xa2\x0f\x81\xad\x10\x7a\xc4\xc2\xb3\x33\x84\xf7\xec\x52\x3e\x06\x1d\x04\x7f\x3d\xcd\x69\x84\x19\x40\xf5\x81\xa8\x7e\xe9\x55\x44\xcf\x44\x40\x09\xab\xba\x85\x7a\x40\xf2\x5f\x14\x00\xdc\x2a\x6c\x22\xd4\x09\x04\x41\x2e\xdc\x40\x61\x68\x9a\x36\x11\xba\x81\xa3\x3f\xa5\x31\xbc\xe8\x5e\x31\xbf\x07\xf7\x8a\x85\x02\x2c\x14\x77\x0a\x1f\x60\xa1\x58\x2a\xed\x85\x05\x43\xca\xe7\x99\x3b\x64\x00\x3d\xda\x54\xf8\xc0\x86\x54\x42\x08\xa9\xe3\x71\xa1\xc0\x22\x79\x50\x82\x42\x55\x72\x79\x66\xb5\xa6\x1f\xb8\xdc\xe9\xc8\x5b\x81\xeb\x00\xbb\x88\xf0\x14\x74\x6b\x83\x8a\xe8\xd5\xb4\x58\xb1\xa0\xba\x0d\x80\x24\xa6\x34\x1a\x7e\xe1\x3f\xc8\xdb\x61\x43\xaa\x78\x45\xfc\x35\x60\x6a\x6b\x5f\x7a\x04\x92\x8a\x10\x3a\xae\x04\x2d\x48\xc5\x4f\xd1\xf2\x4d\x20\x95\x76\xd8\x0b\xfc\x05\x15\x76\x0a\xf9\x8f\xc5\x4c\x06\x7f\x46\x85\x4f\x1f\x3e\xe4\x77\xc7\x63\xfa\x96\xfe\xdc\x63\x6f\x8b\x1f\x8a\x85\x52\xc1\xaf\xfb\x08\xa4\xb0\x15\x86\x1f\x3e\x3d\x07\x13\x00\x3b\x16\x74\xa0\xd1\x9d\xc0\xe9\xa0\x91\x7c\xcd\x0d\x64\x51\x16\x9c\xc2\xaf\x2a\x6c\xd1\x70\x00\x27\x03\x48\x18\x21\x64\x00\x9f\xd3\xc8\xc8\x29\xcb\x9f\x83\x20\xd8\x65\x1f\x89\xac\x4e\x36\x2b\xb3\x26\xe9\xac\x09\xf0\xaf\x4e\xb1\x37\x9b\x08\x0d\x01\x13\xee\x27\x94\x1f\x20\xfa\xe8\x37\x68\x23\xa7\x6c\x7f\xc9\x97\xfd\x78\x21\x56\x67\x6b\xcb\x5e\x6a\x6c\x26\x1f\x9b\x19\x34\xa5\x23\xa7\xac\x4f\x8d\xad\xc7\xc6\xa6\xb3\x26\x7b\x53\x63\xeb\xc5\xc7\x66\x46\x1e\xbd\x62\x85\x09\xbc\x9a\x19\x55\x0f\x97\x9d\x2f\xc8\x1f\xbc\x27\xd9\xe8\x03\xd1\x62\xcd\xf8\x08\x53\x76\xb6\xb6\x7c\xec\xc9\x4f\xe0\xb7\xd4\x50\x9e\x1e\x5e\xb3\x60\x21\x5e\xd9\xaa\x17\x12\xd4\xda\x2a\x4c\xc3\xc3\x00\x99\x0c\xbb\x99\x66\x74\xe4\x44\x0d\x15\xc9\x5b\x05\x68\x23\x39\x5b\x80\x26\x22\x1d\xb9\x0b\x75\xa4\x7e\x41\xf9\x0a\xe9\xa8\x5d\x29\x0f\x7b\x88\x74\x38\x8c\x8b\x88\x19\x05\x29\x1e\xf6\xc2\x46\xd8\xc5\x9d\x4d\x84\xce\x22\xb0\xf6\x73\xaf\x53\x72\x7b\x60\xba\xee\xf7\x59\xb9\x7b\x08\xa1\x2b\x51\x86\x24\x78\x7d\x42\x5f\xb3\xfd\xed\x91\x22\x3a\xa3\x4c\x86\xad\xd6\xe3\x78\x4c\x93\x06\x4f\x8e\xe2\x4d\x7d\xa4\xa3\x1f\x8f\x3f\x4e\x8d\xfe\x13\xc3\x8b\xf8\x98\x10\xa2\x24\x7c\x04\x5b\xdd\xc8\xac\x32\x99\x4f\xe9\x53\xef\xb8\xb0\x0d\x35\x58\x83\x0f\xdd\x59\x13\xe1\x93\x40\x08\xd5\x63\xaf\xf7\xc5\xe2\x0e\xac\xc3\xe8\x04\xbd\xf7\xb4\xcd\x2e\xec\xa7\x65\x15\x8a\x90\x32\xe7\x64\x86\x89\x22\x78\xc4\xc0\x54\xdc\xe1\x73\x2e\x4e\x2f\x59\xe1\x03\x7d\x35\x1e\xb3\xd4\x8c\xd5\xe2\x53\x1a\xc1\x16\xec\x47\xa7\x33\x1e\x17\x4a\x53\x90\xda\xa1\xd5\x75\x8f\x7c\xdf\xa5\x60\x40\x30\xb2\x87\x4c\x86\x15\x8e\x0f\x83\xae\x93\xe2\x55\x3f\xf7\x79\xa4\x02\x35\x38\x80\x8f\xb0\x01\x8f\xc0\xac\x26\xbd\x1a\xe1\xf0\x32\x19\xda\xcb\x60\x3c\x4e\xe4\xd0\x65\xa3\xbd\x0c\xa6\x46\x74\xe0\x73\x1d\xd6\x53\x7c\xaa\xa9\x19\x7e\x53\xb7\xf3\x46\x62\xfa\xcc\xec\xaf\xe9\x06\xff\x9a\x2e\x75\x3e\x77\x5f\x30\xf1\x21\x56\x89\x41\xcc\x9f\x65\xa7\x1e\x45\x50\x0a\x03\xd2\xb1\xb3\x85\x2e\x9b\x6e\x6a\x99\x00\x1a\xe3\x31\x03\x97\x0f\x82\x01\x7c\x80\xb5\xee\xfc\xb1\xb0\x32\x90\xa2\x65\xb4\x9c\x4f\xde\x9a\x48\x2e\x37\x43\xf2\x76\x8c\x48\xa7\xc9\xa8\xc6\xf1\x14\xf0\xf9\xf6\x8a\x75\x78\x0c\x38\x1d\x2d\x37\xb7\xb6\x26\xe9\xb3\x8f\xf4\xf5\x84\x82\x6d\x17\x9d\x5a\x45\x95\xe4\xf2\x53\x38\x86\x43\x44\x3a\x4f\x6c\x0c\x87\xcb\x8c\xe1\xd0\x1f\xc3\x13\x1f\xc3\x33\x27\x77\xbc\x2b\x2a\xb1\x51\x79\x2d\x05\x4b\x6e\xe0\x65\x77\x7a\x61\x3b\x37\xf0\x22\xad\xf4\x45\xb4\x11\x7f\x39\x2e\xa6\xc1\xfd\x35\xa5\x49\x25\x0e\x0f\xaf\xc9\xaf\x53\xbb\xe0\x60\x29\x04\x9d\x89\x7a\xb4\x89\xda\x52\xf8\x19\x6c\xd9\x01\x98\x9a\x53\x3d\xd8\x8a\xd3\x65\xfc\x81\xb6\x63\x4d\x96\x0a\x1c\xe2\x2c\xed\x85\x9c\xf3\x1b\x95\xce\xba\xf0\x0f\x54\x28\x7f\xfb\x92\xf7\xf2\x49\x67\x6b\xeb\x5b\xb7\x0c\xfe\xc8\x66\x69\xdd\x3f\xfe\x55\xdc\x44\xf9\xa0\x39\x9f\x83\xd2\x4e\x1a\x7c\x3c\x47\x95\xaa\x74\x32\x81\x7f\x50\x05\x69\xca\x6e\x32\xa5\x9b\xe7\x23\xcc\x9f\x8f\x8e\x7c\x41\xfe\x61\x55\xc8\xde\x38\x63\x3f\x14\x31\x80\x16\x92\xb9\x33\xaa\xc1\x9d\x51\xd5\x98\x33\xea\x37\x76\x23\xd9\x60\xd7\xe3\xe2\x9d\x91\xf1\x58\x24\x28\x12\x5d\x37\x90\x97\xc3\xa0\xba\xfe\xab\x09\x08\x7b\x84\x91\x69\xf8\xbd\xef\x24\x7a\x67\x1e\xb1\x45\x7f\x10\x11\x93\x29\xfb\x1a\x4a\xd0\x7e\x26\x13\x8d\xc1\x1b\xcf\x1b\x8f\x45\x15\xa9\x33\xae\xcf\xfb\x84\xa1\x09\x8f\xa3\x52\x7a\xe5\x51\xc2\x13\x00\x60\xc7\x80\x2a\x0c\xad\xb0\x28\xd6\x70\x25\xe9\x20\x1c\xb9\x64\x41\x32\x19\xdc\x71\xba\x54\xa8\xfd\xf4\x61\x8f\x3f\x7c\x46\xa5\xfc\xa7\xdd\x4f\x13\x1e\xdc\xa5\x3b\x01\xf0\x4f\xba\x94\x33\xad\x63\x69\xc6\x11\x16\x0d\x23\xf9\xad\x17\x68\xa1\x2a\x34\xd0\x1f\xa2\xc3\xaf\x0a\xc8\xa2\x41\x01\x69\x23\x95\x02\xd2\x44\x2a\x05\x64\x0f\xa9\x21\x20\x37\x9c\x34\x1d\x89\x80\x17\x2b\xcb\xbb\x98\xfa\x44\x4c\x96\xa2\x8f\x6f\x32\xd9\x2a\x54\xae\xa5\x6f\xa2\x03\x4d\x68\x43\x92\x2d\xc0\x1e\xa0\x92\xb8\x35\x81\xff\x9c\xab\x22\xd7\xa1\x2e\xea\x5f\x09\xb1\xbc\x88\xe6\xc8\x41\x08\x5d\xc7\xbe\x51\xbd\xe0\x36\xc8\x50\xef\xcd\xb9\x1b\x91\x00\x97\xf7\x3d\x61\xae\xc8\x26\x4f\xd0\xa6\x4c\x66\x91\x38\x7d\x79\xe8\xf8\x1f\x3d\x0e\x3e\x22\x43\xc2\x03\x66\x92\xcd\x02\xa7\x43\xba\x08\x77\x48\xb8\x90\x41\xa8\x3d\xd6\x30\x1d\x88\x88\x3d\x58\x44\x61\xe0\x85\x94\x4e\x5e\x58\x21\x46\x9f\x7d\x7f\xd8\xbb\xa0\x01\xca\x71\xdb\xed\x2a\x28\xe8\xa1\x9f\x81\x64\xd1\xe2\xb1\x57\x0c\xee\xd2\x6e\x50\xf4\x33\x91\xd1\x29\x52\x2c\xf4\x71\x08\x0e\x51\x1e\x8e\x50\xde\x3f\x26\x30\xc8\x93\x93\xf8\xa2\xf4\xe8\x4b\x20\x6c\xbd\xf4\x4d\x83\x59\x97\xcb\xe1\x27\xa3\xab\xe5\xd1\xe7\x5e\x26\x23\x62\x44\x51\xd1\x86\x2a\xcc\x66\x47\xd0\x04\x54\x48\xad\x96\x99\x36\x8d\x37\x11\xaa\x8e\xc7\x23\x4e\x8e\xc3\x93\xca\x3f\x45\x07\x62\x38\x84\xa3\x30\xe0\x02\x1a\xf9\x36\x6c\x02\x79\x67\x05\xdf\x82\x17\x74\x3e\x79\x0f\x2f\x0f\xcf\x92\x9d\x66\xa8\x41\x24\xd7\xbe\x3c\x6f\xd4\x8a\xd7\x8d\x66\xb5\xf6\xfd\xba\x78\x7d\x82\x2f\x8e\xa6\xdf\x32\x17\xd0\xeb\xe3\x5a\x73\xff\xf2\x20\xcc\x3d\x3d\x69\x5c\x5e\xd6\xaa\xd7\xf2\xc9\x99\x57\xb2\x30\x55\xc6\x7f\x7f\x5a\xaf\x5f\xd4\x2e\xc3\xf7\xed\xcb\xfa\xde\x75\x51\x0e\x7a\x48\xd6\x4b\xe6\x27\xeb\x07\x23\x3b\x39\x9b\xaa\x7b\x7c\xa1\x9c\xcd\x6c\xb8\x8a\x2f\x71\x62\x96\xec\x55\xfa\x14\x63\x4d\x25\xc7\x70\x71\xd0\xa8\x5f\x5e\x17\xae\x8b\xc9\x61\xb1\x8c\xa9\x72\xc9\x17\xc5\x5f\x51\xd1\x23\xc6\x62\x79\x1a\x3c\xbb\xec\x5b\x0f\x09\x20\x16\xa8\x2a\x9e\x0a\xef\x22\xd5\xce\xa7\xd7\x46\xdd\x92\xa1\x3e\x7f\x45\xd9\xb5\x8d\x2f\x5f\x64\xaa\xc9\xcf\x46\x8a\xc2\xe7\xcf\x32\x1c\xa6\x61\x52\x6f\xab\x00\x47\xf3\xf1\xaf\x90\x2f\x96\x68\x0f\xad\xb9\x28\xac\x67\x47\xd0\x5d\xb8\x09\x5a\xb0\xbd\x70\x23\xed\x14\x59\xe4\x95\xf4\x5d\xe8\x66\xdb\x50\x59\x6a\x1f\x7b\x90\x51\x61\x7f\x01\x51\x28\x7c\xfe\x6c\xc2\xfa\x0c\x7a\xd2\xdf\x2a\xc0\x1a\x33\xbb\xa7\xd1\xa0\x69\xb3\x2d\x0b\x9d\xd5\x27\x94\xb9\x00\xfe\x7d\xfe\x38\x57\x23\xa0\xc2\x3f\xf6\x65\x0e\x9f\xdb\xba\xe1\xec\x14\xd9\x7b\x20\x12\x7e\x0d\x31\xf2\x4e\x64\x97\xa0\xe6\x57\x2f\x7c\x98\xae\xee\xbd\x13\xd9\xd5\x49\xcb\x63\x6e\x85\x22\xf3\xc5\xd8\x66\x5f\x53\x2e\x32\xf3\xd2\x6e\xb7\xe2\xe7\x8a\xc5\x52\x96\x66\x83\xed\x22\x90\x1c\xef\x65\x18\x99\x29\xcc\x2e\x45\xbe\xbb\x40\xdc\x8d\x9a\x98\xe6\xf4\x21\x43\x95\x7d\x21\x94\x51\xef\xb9\x52\x0f\x2b\xfa\x77\x4a\x3e\xde\xd7\x91\x98\x33\xa7\x2f\xfa\xb0\x90\xc9\xfc\x8d\xc7\xf9\x6f\x75\xed\xf6\x22\x2a\xfc\xd0\x17\xac\x04\x57\x28\x0c\xbf\x31\xfa\xe0\x5d\x19\x65\x1f\x23\x50\x53\x3e\x3d\xa0\x11\x67\x76\xb0\x73\x8f\x8c\x52\x76\xfc\x05\xe5\xb9\x14\xf4\x79\x77\xb7\xf8\xe9\xc3\x78\x8c\xbf\xec\x7e\xd8\x29\x7c\x62\x46\x5f\x8a\xcc\xbb\xbe\x66\x42\x90\x28\x7a\xdf\x2a\x60\x43\xe8\xe0\x2f\x5f\xe4\x2e\xf8\xfc\xd9\x06\x59\x11\x67\x86\x20\x1c\x11\x95\x86\x58\x9b\x0b\x5a\xd0\xb3\x22\xde\x62\xfd\x7e\xf9\x22\x83\x05\x6d\xc5\x61\x14\xb6\xa9\x6d\x29\x59\x11\x7f\xf9\xa2\x02\x18\x6b\x9c\x74\x21\xc9\x22\x3a\xc8\x4c\x1d\x4e\x75\x4d\x16\x8d\xbc\x50\x28\x94\x0a\x85\x02\x88\x86\x4d\x60\x25\x52\x96\x26\xf0\x10\x4a\xac\x6c\x28\xc5\x2d\x10\x52\xc2\xc0\xb6\xc2\x91\x8b\x83\x7f\x0a\x2e\xe1\x46\xd5\xc4\xf8\x0c\x0f\xd8\x23\xff\xd7\xc0\x32\xc6\xfb\xf4\x4f\x4d\xc3\x6d\x2c\x5f\xe1\x7a\x09\xff\xd0\x64\x82\xf7\xaf\xf0\x15\x96\x4d\x7c\x80\x31\xc1\xfc\x79\x80\x95\x1a\x6e\x60\xac\x63\xa5\x85\x0f\x35\x6c\x62\xc5\xc4\x47\x79\xec\xb4\x94\x4f\xf8\xa4\x8d\xbf\x6b\xf2\x7d\xb4\xfe\x5f\xad\xea\x57\xfe\x5c\x3d\xc7\xcd\x3b\xbc\xa3\x55\xef\xf1\xa9\x8b\x3f\xe1\xea\x1e\xc6\x2d\xb9\x8a\x6b\x6d\x7c\x6e\xca\x0d\x6d\x1f\xe3\x86\x86\x0f\xdd\xda\x23\xbe\xec\xc9\x67\x6e\xbd\x8e\xdb\x79\xf9\x12\xd7\xdb\xf8\xab\x2b\xff\xc0\x75\x1b\x7f\x3f\x91\x89\xbb\x4f\xe9\x3e\xd6\xdd\xfd\x4b\xfc\xc3\x96\x4d\x6d\xff\x0e\xab\xae\xec\xe0\xfd\x3d\xdc\x6b\xc8\xcf\xda\xc1\x05\xee\x9b\x72\x09\x1f\x98\x78\x80\xe5\x2c\x3e\xc8\xe2\xd6\x95\x52\xd5\x1a\xdf\xf0\x63\x49\x3e\xd0\x1a\xf7\x58\x2f\x29\x4d\xad\x91\xc5\x77\x6d\xe5\xb2\x75\x78\x89\x87\xb6\x72\xe5\x1e\x5a\xd8\xa8\x29\xa4\x75\x24\xe3\xbb\xbc\xa2\xb7\x8e\xce\xf1\xc3\x9d\x62\xb6\x8e\x4c\x6c\x61\x65\x84\x8f\x31\xb6\x5b\xca\x5f\xb8\xe1\xe2\x66\x4b\xd9\xc1\xc7\x77\xf8\x0f\x8c\x3f\xe2\xe3\x3c\x7e\x74\x15\xdc\x3a\x39\xc4\x4f\xb8\xba\x8f\x4f\x5c\xac\xe0\xea\xa1\x76\x32\xc2\x7f\x5d\x55\xcf\xb4\x53\x8c\x6b\x57\xd5\x0b\xad\x79\x81\x0b\x8d\x6a\x5b\x6b\xaa\xb8\x60\x56\xaf\x70\x53\xc7\xc5\x46\x55\xa3\xcb\xb0\x6f\x56\x35\x2c\x3f\xe3\x9d\xab\xea\x80\x96\x6f\xb4\xe8\xfb\x23\xbc\xdb\xa8\xde\xb3\x67\x8c\x4d\xed\xf4\x4f\x5c\xc2\x98\x95\x6f\x2c\x99\x1e\xed\x55\x1d\x97\xd7\x7f\x74\xcf\x0e\xf0\xde\x5e\xb5\xe0\x9e\x0d\xf0\x33\xae\xee\xba\x67\x36\xde\x6e\x55\xb7\x31\xcf\x97\x71\xeb\x44\x96\x1b\x35\x0d\xe3\x6f\xb2\x5c\xaa\x1d\x6a\xad\x91\x5c\x3d\xa9\x35\xf0\xc9\x47\xb9\x56\xab\x7d\xd7\xe4\x43\x59\xc1\xd5\x76\xeb\xfc\x87\xbc\x5f\xab\xa9\xad\x96\x8b\xab\x18\xf7\x5a\xad\x2c\xfe\x7e\x57\xd3\x5a\x17\x87\xf2\x61\xad\xa6\x61\xe5\x4a\xa6\xe3\xc5\x17\xa6\x7c\xb4\x57\x73\xdc\x96\x8b\x8f\xf7\x6a\x4f\xad\x8b\xe4\xf8\x34\x7c\x92\xa7\xed\x12\x8a\x1f\xb1\xb4\xd9\xae\x7d\xd7\xaa\x3f\xe4\x53\xda\x6f\xf5\x41\x3e\xab\xd5\xb2\xad\x96\x2c\xb7\xee\xea\xb5\x56\xfb\x87\x7c\x51\xab\x1f\xb5\xda\x4f\xf2\x65\xbb\x7e\xd6\xfa\x5a\x97\xdb\x6e\xfd\x2b\xfe\xda\x93\xbf\x96\xf0\x95\xfb\x95\xe0\x7d\xbb\xde\x73\xbf\x7e\x94\xaf\x4e\xea\xba\xfb\xed\x82\xbe\xbf\xd7\xbe\x69\xb2\xda\xab\xc7\xfa\x39\xb2\xeb\xdf\x35\xe5\x59\xbe\xa9\xd5\x47\xda\xb7\x8f\x72\xaf\x51\x77\xb5\xef\x0d\x2f\x6d\xc9\xfd\x56\x7d\x07\x7f\xbf\x93\x89\x5d\xdf\x73\xbf\x7f\x94\x5b\x27\xfb\x8a\x7b\x75\x29\xdf\xda\xfb\x0d\xf7\xca\x92\xff\x38\xd9\x3f\x75\x7f\x10\x5c\xdd\xdb\x3f\x77\x7f\x34\xe5\x61\x09\x7f\xc5\x3f\x6e\x68\x9a\x3a\x2f\x3f\xdd\x3f\xd9\xff\xae\xc9\x7f\xca\x46\x6d\x7f\x4e\xb9\x5d\xd9\xc4\xfb\x25\xf7\x62\x5f\x36\x4b\xfb\x77\xae\x4a\xe1\x56\x3d\xd0\xce\x77\x83\x72\x87\xf6\xbe\x86\xe5\x7d\x8a\x17\xa6\xab\x5a\xb2\x75\xb2\x6f\xbb\xaa\x86\x8f\xed\x7d\xd7\xbd\x39\x96\xff\xc0\x38\xef\xde\xa8\xb2\x63\xee\xef\xb4\x78\x5a\xd4\x82\x74\x28\x8f\xec\xfd\x3d\xf7\xe6\xa3\xac\x9d\x1c\x28\x6e\xef\x52\x7e\xb2\x69\xfa\x87\xfc\x6c\x1f\x9c\xe0\x5e\x41\xfe\xab\x7d\x70\xaa\xf5\x15\xf9\x93\xb9\x7f\xa1\xf5\x2f\xe4\x82\x79\x70\x85\x07\xaa\x3c\x34\x0f\x54\x96\x36\x0e\x22\xed\x85\xe9\x1f\xed\x83\x66\x8b\xd7\xff\x95\xfe\x4a\xd3\xd2\x9b\x56\x9f\xe1\xf9\x2f\x78\xfc\x4a\x7f\xa5\xbf\xd2\x5f\xe9\xaf\xf4\xff\x8e\xb4\x5f\x90\x77\xf2\xef\xdb\x4f\xe9\xe4\xa0\xa8\xa9\x47\xf2\x87\xbd\x5a\xba\xfc\xbf\x77\x30\x74\xfb\x04\x1f\xee\x1d\x3c\xb8\x84\xbd\xb7\x5c\xb2\x23\x17\xa8\xdc\xa8\x6c\xcb\x7b\xed\x83\x67\xad\xe7\xe2\x26\x3e\x28\xe2\x81\x26\x97\x30\xfe\x80\x07\xae\xfc\x57\x49\xce\xe2\x1e\x56\xea\xae\xac\x60\xed\x4c\x91\x7b\x0d\x53\xab\x5d\xe1\xf3\xbd\xc6\xa1\xab\x63\xac\xec\x35\x9a\xae\xb6\xad\x28\xb8\x7a\xee\xde\x9e\x29\xf5\x5e\xe3\xbb\x7b\x6b\x28\x35\xb3\xba\xaf\xf9\xf2\xbd\xfc\xa8\x1c\xf4\x1a\x04\xdf\xee\x2a\x07\x66\x83\xb8\xb7\x7b\xca\x41\xbe\xd1\x77\x6f\x4b\xca\xc1\x5d\x83\x68\xb7\x1f\x95\x03\xb7\x31\x68\xdd\xee\x28\x07\x5a\x83\xb4\x6e\x3f\x28\x07\x76\x63\x80\x6f\x3f\xfd\xaa\xf7\xab\xde\xaf\x7a\x7f\x4f\xbd\x5b\xac\x1f\x2b\x8d\x52\xe3\x04\x63\xa6\xc7\xaf\x35\x3d\xbc\x6a\x0c\x35\xfd\x9b\xb2\xd6\x54\x5b\xff\x38\x7f\xa5\xff\xf5\xe9\x5c\x3e\xb9\x5b\x6a\xb0\xf4\x43\xa3\x51\xd4\xd4\x3f\x95\xe3\x46\x63\xa4\xe9\xdc\x1e\xa6\xfd\xb1\xaf\xcc\xb1\x9f\x3d\xbb\xfa\x01\xbe\xc2\x38\x4f\xf9\x5e\xf3\xae\xb1\xd3\xfa\x63\xa8\x9c\xe6\x1b\x9f\xf0\x1f\x7b\x41\x3d\xdc\x38\x54\xb4\xbb\x0b\xe5\xdc\x3c\x6c\x68\x77\x86\x72\x79\x75\x70\xec\xde\xed\x28\x3f\xde\x03\xff\xf9\xb8\x31\xae\x63\xcf\x88\x84\x71\x0f\xcb\x04\x1f\xb8\xb8\x85\x95\x16\x3e\xc2\xd8\x6a\x29\x9f\xf0\xa1\x67\x1c\xaa\xe5\xf1\x8e\x26\x9f\xe3\x66\x09\x7f\xc4\xd5\x3d\x7c\xe2\xca\xfb\x5a\x0d\xe3\xa3\x9e\xdc\x74\x6b\x75\xdc\x76\xe5\xef\xb8\x5e\x6a\xdd\xdd\x2a\xf7\xb5\x23\x03\x5b\x3d\x45\xc3\x07\x07\xd8\xc6\xf2\x5f\xa5\x63\xd6\xb8\x8b\x0f\x30\xee\x67\x95\x0f\x58\x36\xf1\x7e\x56\xd9\x8e\xbe\xef\x65\xab\xf5\xd2\x09\x7b\xde\x2d\x9d\xec\x68\x2e\xa9\x7e\x2d\x35\x0d\x6d\x87\x54\x55\x56\x5e\xc3\x2b\xa5\x35\x52\xfd\x13\xcb\x5f\xb5\x0f\xdf\x68\x6a\xb6\x3e\x78\xef\x0f\xbe\x57\x1f\x7b\xa7\x4d\x77\x7b\x87\xa6\x9f\xdc\x8f\xeb\x4b\x8d\xde\x59\x64\x3e\xbf\xd2\x5f\xe9\xaf\x74\x1d\xe9\xc7\xde\xd9\x99\x3b\xdc\x57\xda\xa5\xc3\x93\x80\xae\xca\xdf\x94\xaf\xa5\xc3\xab\xd6\x3d\xc6\xfb\x77\x87\x3d\x3c\x2c\x29\xdf\xdd\x43\x0d\xdf\x85\xf4\xbc\xa1\x1d\x6a\x58\x39\x56\x7e\x9c\xd0\xf4\x87\xf2\x63\xef\xd0\x74\xef\x2d\xe5\x0a\x63\xdb\xbd\x73\x3d\xbb\xf7\x1e\x6d\x6f\xe4\xde\x61\xf9\xe4\xe4\xf0\x99\xb6\x77\x52\x3a\xd4\x70\xf5\xab\x72\x19\xf2\x85\x59\x74\xfd\x4f\xf7\xea\x9b\xdc\xbc\x8b\xc8\x3d\xd5\xbe\x42\xf0\xe1\x07\x6c\x8c\x94\xf3\x52\xed\x93\x76\xe7\xe2\xb3\xd2\xa1\xdc\x32\x9b\xca\x1f\x34\x5f\xc1\x58\x6e\x1f\x31\x3e\x20\xe7\x8f\x0e\xb1\x69\x2b\x7f\xb4\x8e\x34\x56\xdf\x3d\x6a\xb9\x7f\x62\x5c\xb3\x8f\x1e\x5b\xf7\x7d\xe5\xeb\xc9\xd1\x37\xd7\x0c\xfb\x3f\xee\xd5\x58\xfd\xfd\x93\x23\x0d\xcb\x16\x6f\x6f\x26\x3f\x23\xf2\x22\x7e\xd7\xb8\xab\x9d\xb5\xea\x7f\x29\x86\x79\xa4\xb7\x2e\x14\xc5\x34\x8f\xee\xf0\x9f\x87\xf2\xa1\x76\x64\xe2\x3f\xef\x14\xf3\xae\xb6\x8f\xf7\x6d\xc5\x6a\x1d\x3d\x62\x4b\xe6\xfd\x55\x0f\x15\xa7\x76\x54\x6f\x1d\xfc\x50\x46\xb5\xa3\x6d\xed\xe0\x41\x79\xac\x1d\x85\xed\x52\xb8\xb8\xb5\x6c\xcb\x74\x29\x7c\xce\xdc\x9a\xac\xfc\x15\xed\x97\xf2\xb9\xbb\xe3\x5a\xcb\xf6\xf3\x7f\x28\xcf\xb5\x63\x0d\xe3\x53\x45\xb9\x3b\x3e\xc1\xf8\x49\xf9\x8b\xa5\xb1\xf1\x72\x16\x54\x3b\x4e\x9d\x47\xed\xee\xf8\xb2\xe5\x7c\x55\x4a\x18\x7f\xc7\xce\x1d\x4d\xf5\xd6\x5d\xea\xbc\x6f\xb0\xf3\xa4\xec\xdc\x1d\x6b\x78\x54\x57\x4a\x36\x6f\xef\xf0\xe4\x78\xe8\x8e\x06\xf1\x71\xae\x90\x36\x56\x3c\x47\x9b\x93\x3e\xb8\x76\x04\x8e\xec\xfd\xa3\x92\x3c\xa7\x3b\xee\x1d\xbf\x56\xbe\x59\x75\x3c\x8f\xee\x08\xe3\x93\xde\xf1\x94\x3c\xa3\x8d\x62\xcf\xf9\x96\xfd\x2e\xf2\xd8\x52\xe3\x6c\xde\x05\xe3\x2b\x61\x7b\xdd\xeb\x75\x48\xf7\xf1\x07\xaf\xdd\x5b\xf7\xc0\xa5\xeb\x91\xc5\x36\xae\x62\xed\xa4\x86\xdd\x35\xcd\x97\xf7\xb7\x8f\xdd\x7e\x55\x69\x9f\xb0\xf7\x4a\xfe\xe4\xbf\xc7\x4e\xe5\xbe\xa9\xfe\x59\xcb\xfd\x1b\xe5\xfc\xd4\x71\x14\x65\xbe\xff\x77\xab\xd5\xb9\xf6\xb8\x7a\xf5\x6f\xd4\x47\x7c\x3c\xbc\x6c\x3d\x5d\x54\xeb\xe6\xc9\x5a\xda\x4d\x39\x1f\xbe\xd2\x9e\x08\xde\x37\x4f\xbe\x6b\xf2\x53\xf5\xe0\xee\x64\xe0\x3e\x11\xdc\x68\x9f\xb0\xfc\x46\xfe\x64\xba\xbe\xf2\xb5\x7a\x18\x7d\xcf\xdb\x79\x68\x3d\x11\x7c\x64\x9f\xd8\xee\xf3\xc7\x6a\xbd\x84\x5d\xed\xf9\x53\xf5\xc4\x3c\x99\x7d\x2e\x5d\x3d\xaf\x36\xef\x4e\x48\x4b\xfe\x53\x21\xf8\x64\x07\x3f\xed\xe1\xd3\xab\x93\x8f\xf8\xaf\x7c\xf5\x4c\x3b\x99\x7b\xee\x1d\x4b\x15\x0d\x63\xdc\x34\x31\x3e\xa8\xb6\x4a\xcd\xba\x96\xff\xbb\xf5\x47\x52\xbd\xb8\x6a\xfe\x57\xe8\xb9\x49\x3a\xa7\x94\x9a\xfe\xfa\x35\xff\x16\xb8\x95\x9a\xe7\x5a\xe1\xb4\xfa\xf5\xaa\xf9\x5d\x2b\xdc\x57\x2f\x31\xbe\x69\xa5\xf7\x9b\xea\x0f\x60\xb4\x9b\x44\xdb\x51\xe4\x2b\xdc\x74\xb5\x6f\xf5\x6a\xdf\xdc\xff\x03\xef\x4c\x97\x8b\xa5\x6a\xbb\xfa\xc3\x6d\x3e\xe0\xa2\x49\xcb\x17\x35\xd5\xad\xde\xf4\x9a\x8f\xee\xce\x01\x7f\xbe\x39\xab\xf6\xaf\x9a\x3b\x78\x67\x50\x25\x57\xcd\xa2\x76\x63\x57\x07\x27\x4d\x56\xff\xd1\x6c\x6e\x6b\x3b\xaa\xac\x5d\x9d\x56\xb5\x8f\x6a\xe0\x8f\x21\x5f\x9d\xb2\x54\x69\xef\x17\xb5\x2b\x52\x1d\x96\xf0\x21\xde\x25\x58\x71\x4f\x8b\x2e\x1f\xcf\x49\xab\xb4\x5b\x8d\x8c\xa3\xd5\xfa\xb8\x60\x9c\xef\x9d\xfe\x38\xac\xfe\xd3\xfc\x29\x0a\xb5\xd3\xa2\x76\xf5\x4f\x3d\x7f\xf9\x31\x05\xaf\x62\xed\xf4\xbf\x85\x2f\xab\xb8\xb4\xfe\x76\x77\xf0\xe9\x7f\x0e\x7f\x57\x4d\x57\xc0\xab\x62\xed\xf4\x3f\xba\x2f\xff\x2b\xe0\x79\xa3\xca\x77\x77\xa7\x04\x7f\xd0\xf0\x11\xc6\x66\x94\x5e\xb3\x67\x45\x8b\xa6\x1a\x2e\xfd\x87\xf9\x5d\x75\x7b\xdb\x6d\x31\x6f\x54\x8c\x93\x69\x9e\x96\xe2\x3f\xb5\xb4\xfc\xb9\xe9\x11\x96\x4f\x70\xdd\xc5\x04\xcb\x36\xde\xd7\x68\xda\xc3\x75\x0d\x5f\x60\xb9\x84\xf7\x5d\x7c\x85\xf1\x1e\xb7\xaa\xd6\x6c\x7c\xe1\xca\xc7\x69\xe9\x3e\xc6\x57\xb4\xfc\x01\xab\x7f\x82\x0f\x34\xb9\x85\xeb\x18\xb7\xf1\xdb\xd2\xba\x86\x6f\xb0\xdc\xf0\xda\x2d\xbd\xb9\x3d\x96\xca\x57\xb8\xda\xc2\xe7\xb4\x3d\x19\xff\x17\xfd\x53\x6c\x7c\xe4\x62\xeb\xbf\x21\x8d\xe3\x59\x7b\x15\x7c\x9c\x93\xde\x51\x7c\x50\x19\x9e\xba\x14\x2f\x4a\xf8\xa0\x85\xfb\x34\xbd\x74\xf1\x77\x9a\x56\x5b\x1c\x4f\xf6\x29\xde\xd4\xf6\xe8\xfb\x53\xba\xee\xbc\x5c\x1e\x5f\xba\xf2\x19\xc5\x6f\x96\xd6\xf6\x70\xfd\x8d\x78\x7a\xe0\xf5\xe7\xe3\xe7\x7a\xd2\xfc\x9a\xdb\xfb\x3b\x52\xba\xaf\x4a\x29\xfb\xf4\xbf\x60\xdc\x6b\xa0\x53\x7f\x5f\x1a\x19\x7f\x1d\x53\x3c\xc6\x1c\xcf\x29\x3e\xb3\xe7\x96\xf7\xbe\x95\x8a\x57\xde\x3e\x38\xd0\xf8\xbe\xa9\x26\xe6\x3f\x6b\x5d\x57\x5d\xc7\xf5\xec\xf7\xbf\x35\x3d\x5c\x86\xfe\x28\x2d\x5a\x2e\x4c\x97\x68\x37\xb6\x5e\x3e\x7c\x18\x9d\x8c\xc0\x7d\x9f\xa6\x11\xfa\x19\x96\x0f\xd6\x9d\x95\x3f\x72\x5f\x87\xe7\xaf\xad\xf7\x8a\x75\xfe\xa7\xed\x73\x6b\x4d\xfb\x8e\xad\x4b\xca\x3e\xb0\xde\x63\x9f\x1f\x31\xb9\x2b\xcf\xf1\x81\xf7\x73\x33\xcd\x57\xff\xbe\xb4\xda\xc2\xb5\x60\xbd\x83\xf4\x84\xa6\xa9\xfc\xff\xab\x26\x7f\xc3\xf5\xab\x37\xa7\xb1\x76\xfd\xf7\x3e\xdc\xe7\xc8\x1f\xb3\xf0\x21\x38\x5d\x0f\xe5\xd5\xb9\xf3\xae\xb9\xb8\x46\xdb\xab\xb9\xf8\xf2\x9d\xe9\xfa\x2b\xd7\x27\x5d\x1e\x67\x29\x9d\x67\x0b\xff\x08\xf8\x31\x6e\xbd\x51\x6e\x3e\x49\x1f\x67\x2a\x1c\x79\xbd\x18\xbe\x44\xde\xcf\xd2\x23\x2e\xdc\x38\x9f\x5b\x96\xef\x30\xfa\xc6\xfa\xfb\x07\xac\x0b\xc3\xc3\x7f\x96\xdc\x30\x77\xbc\x9c\xde\x2c\x96\xeb\xe7\xe8\x7f\x7f\xf7\xb8\x39\x3e\xb2\xf5\xbf\xf2\xf0\x32\x36\xde\xb5\xac\x77\xb2\xff\xc8\x73\x12\x2f\x22\x74\x7a\x31\xbe\x2a\xf6\x3a\xf1\xd2\xa7\x77\xd6\x32\xfc\x6b\x75\x7d\xee\x0d\xfc\x72\xad\xe3\xc0\xd6\x92\xfb\x8f\xac\x97\xff\xbd\x17\x3d\xe1\xf4\x78\xa5\xf1\xa4\xee\x87\x39\xfd\xf1\x72\x4d\x2a\x47\xcc\xa6\xb7\x9c\x6e\xae\xba\x1f\x67\xe1\x45\x28\xd7\xae\xb0\x0f\x53\xcb\x05\xf2\x6e\xa2\x1d\xdf\xbe\x90\x0e\xbf\x08\x9e\xc4\xec\x10\xb3\xf0\x2e\x26\xbf\x24\xf1\x36\xd2\xce\x22\x7e\xc5\xe4\x8a\xf8\xbc\x4e\xb8\xfd\x8c\xd3\xa9\xa4\x5d\x64\x1a\x7e\x29\xe3\x58\x03\xfc\x52\x53\x7f\xde\x71\xf8\x25\xf7\x59\x62\xbc\x29\xf0\x8a\x8d\xd7\x5f\xff\xb8\x1e\xe3\xa7\x73\xf0\xaf\x16\x95\x4b\x64\xbc\x9c\x5d\x69\x36\x5d\x8a\x8c\x67\xad\xf0\x5b\x0e\xff\x62\x70\x4d\xc2\x6f\x59\x3e\xeb\x8f\x67\x29\xfc\xe3\x76\xdb\x54\xba\x9d\x22\x97\xac\x7f\xff\x2e\xb7\xff\xe6\xd0\xf3\x37\xee\xbf\x74\xfa\x35\x07\xbe\xb5\x00\x4f\x53\xf7\x5f\x3a\xff\x8a\xad\x0b\xd7\x03\xad\xb4\x7a\x49\x7a\xb5\xac\x3c\x12\x1b\x5f\x12\x9e\x71\x38\x4e\xcb\x99\x29\x70\x9d\xc3\xcf\x67\xeb\x0b\x81\x9c\x9f\x94\x5b\xec\x29\x7d\x2b\x86\xef\xeb\xda\x87\xa9\xeb\x32\x7f\xdf\xfa\x78\xb3\xec\x3e\x4c\xa5\x2f\xc9\x79\xa4\xc8\x3f\x11\x78\xcf\x86\xdf\xb2\xf2\x13\xd7\x6b\xfe\x7e\xf8\x25\xdb\x89\xec\x87\xb5\xc0\x2f\x85\x2f\xac\x0a\xbf\x69\xf8\xcf\xa1\x8f\xeb\xd2\x2f\x56\x9a\x7f\x9c\x9f\x47\xe8\x45\x6d\x61\x3f\xcb\xee\xbf\x29\x7c\x31\xd3\xe9\xc5\x5c\xfc\x59\x6e\xdf\xac\x4f\xae\x8f\xd0\xc5\x59\xfc\xd4\xc7\xb7\x99\xe7\x44\xad\x20\x7f\xb6\x5e\xbd\x9c\x3e\x1a\x81\x0f\x59\x88\x4f\x75\x76\x78\xd4\x5b\x6f\x8a\xff\x0c\x52\xc5\xc4\x47\x5a\x34\x0d\xfb\xdf\x77\x53\xea\x4f\x95\x67\x29\x99\x37\xdf\x6a\x0b\x37\x13\x74\x87\xb5\xc7\xd2\x59\xcf\x73\xe0\x70\x94\x3a\x2e\x3b\x9e\xcf\x9e\x79\xfd\x64\xfe\x9c\xf9\x5b\x3c\x8d\x8f\x2b\xd9\xee\xd4\xfc\x97\x59\xef\x48\x3b\x6d\x8c\x4f\x31\x2e\xe1\xaa\x86\x4f\xf9\x39\x07\x7d\xbe\xf3\xd2\x3c\x56\x5a\xf8\x92\x8a\xe8\xcc\xae\x27\x9f\xd0\x67\xef\xdc\x3a\x62\xd7\x4e\xf2\xc1\x57\xd9\x3f\xa8\xfe\xd5\xe2\xf6\x31\xde\xee\x37\x2c\xd7\x70\x5d\xc3\xe7\xf3\xf4\xb7\xb7\xdb\x8f\x56\xd6\x9b\x9b\xe9\xcf\x2b\xd8\x91\xde\xcb\x3e\xad\x78\xf8\x9d\x5c\x0f\x0e\xd7\xd4\x73\x0e\x7f\x9d\xab\x89\x7c\x76\x6e\x93\xb2\x4f\xd6\xbf\xff\x3d\x7c\xd6\xd2\xf6\xff\x82\xb4\xee\xce\x93\x77\x99\x3e\x1f\x39\x9f\x9b\xa6\x3b\x91\x76\x92\xe3\x08\xf3\x67\x8d\x6f\x7e\x3b\xaf\x9d\x27\x6b\x6f\xde\xfe\x4d\x94\x4f\xdd\x0f\x49\xb9\x6a\xad\x76\xd6\xb8\x1e\xf1\x8d\xc5\x7b\xd3\xd6\x9c\xde\xe1\x6f\x2d\xf9\xc7\x9a\x53\x15\xd7\x4d\xfc\x4d\x5b\x6f\xba\x94\x7c\x39\x0b\xfe\x31\xfd\x28\xa9\x57\x2e\x92\x4b\x5f\x21\xdf\x2d\x55\x3f\x2e\x8f\xce\x1d\xff\xaa\x72\xcf\x12\xe5\x5f\x2f\x6f\xcd\x94\xdf\x22\xf6\xce\xfc\xda\xfc\x1a\x56\x97\xaf\xe7\xdb\xb9\x67\xd9\x89\x5e\x35\xae\x74\x38\x34\xdf\xd3\xcf\x62\xa5\x7a\x38\xbf\x36\xff\xb4\x5a\x6b\x39\xfb\x3b\xe3\x8b\x8b\xfa\x7d\x95\xfe\x14\x87\xf7\x5c\x3b\xce\x6b\xd7\x37\xe2\xbf\x58\x6d\xad\xeb\xfc\x61\x89\x71\xae\x3a\x7f\x5f\xae\x79\x17\x3d\xe2\x15\xf2\x81\x62\x7a\xf2\x50\x9b\xd6\x6f\x7a\x7e\x6f\x37\x1e\x1f\x5e\x64\x2f\x5b\x1e\xbe\xc9\xf9\xf1\x7d\xcd\xe4\x65\x8e\x77\xe1\x73\xe4\xfc\xf7\x70\x6d\xfd\xaf\x2a\xe7\xce\x5a\xdf\x35\x9e\xe3\xc8\x33\xec\x43\x6f\xa0\xe3\xef\x6a\xdf\x88\xc1\x69\xa9\x73\xeb\x74\xbd\x3c\xf5\x9c\x85\x97\x0f\xe9\x3c\xd3\xa7\xe6\xd9\x37\x56\xdc\x1f\xa9\xfa\xe1\x1b\xf6\x5f\xa4\xfc\xca\x72\xfc\xd2\xe7\x19\xd1\x7e\x98\x3c\xbd\xbe\xf3\x6f\x1f\xde\x72\xe9\x3d\xf4\x11\xeb\x35\x74\x68\x7e\x7b\xf6\x7c\xff\x94\x55\xed\x39\xd1\xf2\x69\x7a\x4b\xba\x9d\x65\x59\x3d\xd3\x7a\x9f\x73\xdf\x14\xbf\x85\x59\xf4\x6b\x91\x7d\x87\xd3\xf9\xa6\xc7\x2f\x67\xcb\x5d\xb3\xe6\xb9\x48\x4e\x8b\x9c\x33\xaf\x95\xfe\x2c\x01\x7f\x56\x6e\x55\xfb\xca\xb2\xeb\x3a\xd7\x3f\x6c\xe5\xf6\x66\xb5\xef\xaf\xcb\xa2\xf3\xf6\x24\xdf\x58\xdd\x1e\xfc\x36\x7c\x9c\x2b\x2f\xbe\xc9\xef\x7f\x96\xff\xe5\x9c\x73\xdc\x03\x6d\x39\xbf\x87\x18\xff\x4d\xae\x57\x8a\x3f\xcc\xac\xf3\xb4\xd7\xa6\xc9\x76\xde\xe4\x8f\x9a\xc2\xdf\x67\xcb\xcf\x11\xbd\xd5\xd7\xab\xdf\xc1\x4f\x76\x25\xff\xa5\x14\xfa\x91\xfa\x3e\xe2\xef\x1c\x99\xe7\xec\x76\x92\xf0\x58\xb6\x9f\x15\xe0\x9d\xda\x3f\xf6\xca\x45\xf6\xaf\x9f\x2a\xe1\x73\x83\xae\xbb\xe2\x06\xfe\xb0\x87\xde\xfb\x13\xcf\xaf\x9e\x78\x2c\xf6\x5b\xc8\x72\xaf\x68\xda\x0f\xef\x73\xf8\x4b\x9a\xf7\x50\x29\xe1\x7f\x9e\x1e\x05\xca\x6f\xb7\x4f\xe5\xfd\xfa\x34\xdd\xbf\xf2\xf4\xc5\xaf\x33\xf2\x93\xe9\x34\x1f\x09\xe6\xdb\x8b\xc3\x6d\x11\xbd\xe6\x74\xec\x6c\x86\x3d\x80\xd9\xb9\xd9\x3d\x84\xe0\x7e\xc2\xde\xd4\x39\x28\xef\xcf\xd3\x77\x57\xb0\x4f\xf0\xfb\x3f\xb1\x54\x4d\x3c\xcf\x4a\xe3\xe5\xb4\x44\xea\x2e\x97\xae\xee\x0f\xba\x2c\xfd\xe4\xe7\x7d\xfe\xfd\x0c\x0e\x4f\x73\xe6\x7a\x5e\x7a\xfe\x0f\xfb\x6e\x8a\xbd\x22\x7e\xef\x23\xbc\x4f\xe0\xb7\x5b\x0f\xef\x8b\x2c\xb2\x1f\xad\x7a\x0f\x28\x32\x8e\xe9\x75\xf7\x9f\x79\x7a\x16\xc5\x8f\x94\x34\x56\x6f\x56\xb9\x99\xf7\xb3\x12\x74\xe5\xd2\x8d\xd0\x3b\x0e\xf7\x7e\xec\x5e\x4c\x2c\x7d\x15\x3d\xec\x7b\xf7\xd2\xe6\x97\x6b\x45\xd6\x25\xa8\x97\x9f\xbe\xff\xe5\x95\x8b\xdc\x77\x4b\xb9\x27\x16\xbb\xd7\x43\xa2\xf7\x7b\xa6\xe6\xa5\x4d\xcd\x2b\x7d\xbe\x8b\xe6\xdf\x4a\xcc\x57\x9b\xf9\x3c\xab\x7e\x7f\x46\xff\xfd\xc4\xbc\x5e\x01\xff\x55\xeb\xe7\xd3\xe6\xb5\xee\xfb\x78\x2b\xe0\xd3\x4a\xf2\x45\x78\x9e\xb8\xdc\xb8\x87\x58\x69\xcf\x6c\x2f\xbd\x9d\x65\xe5\x80\x36\x3e\x6c\xcd\x6f\x3f\x55\xee\x78\xd3\x7d\xd3\x85\xf4\xe3\x55\x69\x3a\x3d\x58\x47\xfa\xea\x71\xb5\x16\xb7\x9f\xdc\x5f\xaf\x18\xdf\xa2\x7d\xb2\x52\x3b\x4b\xb5\x1b\xa1\x4b\x4b\xd1\xdf\x39\xfb\x3b\xf5\xb9\x9f\xd8\x7f\xaf\xa3\xef\xe1\xb8\xd6\xb0\xbf\x4b\xc1\x3e\x39\x4c\xf2\x81\x79\xf3\xe1\xe5\xd9\x38\x58\xbd\x60\xbf\x61\x9e\xae\x41\x0f\x48\xd9\xbf\xcb\xf1\xb3\x55\xd3\x56\x82\x3f\xd1\x7e\x68\xbf\xb1\xf7\x2b\xf5\x3b\x7c\x97\x7b\xd8\x6b\x9e\x77\x64\xdd\x53\xd3\x08\x9e\x0d\x63\xeb\x91\xc8\xe7\xeb\xed\x97\xcb\x07\xf9\x01\x3e\x25\xf6\xcb\xe1\xf4\x3e\x4d\xf6\xcb\xd2\x06\x9e\x6a\x6f\x98\x46\xd7\x7d\xbc\xf3\x43\x2f\xad\x97\x3f\x26\x4d\x97\x25\xee\xa7\x13\xe9\x9f\xf3\x29\xa6\x37\x44\xf8\x5f\xe2\xf9\x2d\xf4\x7f\x49\xbe\xbb\x2e\xbc\x98\x33\x9f\x57\xb4\xb7\x00\x2e\x73\x9e\xdf\x61\x3e\x6b\xdc\x3f\x6b\x68\xef\xed\xf2\xfd\xdb\xed\x25\x73\xe4\xa0\x37\xdc\xe3\x5e\xc9\x3e\xb7\x82\x9c\xb5\xec\x3c\x62\xf7\xbf\xe3\xfd\x9e\x44\xce\xa9\xf1\xe5\x4c\xfb\x63\xea\x39\x58\xd2\xaf\x71\xbe\x5f\xff\xba\xcf\x11\x67\xfb\xb7\x2c\xe7\x1f\x32\xab\xfe\x72\x47\xc3\xd3\xf6\x28\xdf\x5e\x53\xd7\x02\x7f\x38\x56\x3e\x42\x37\x53\xf7\x75\xa4\xfe\x65\xe0\x37\xe0\xdb\x81\xe2\xeb\xc8\x43\x0e\xb5\x02\x3f\xb3\x66\xd0\x5f\x72\x3c\x6f\x90\xdb\x17\xf1\xc1\xe5\xd2\x75\xb5\x33\x9d\xbe\xe3\xf8\x57\x85\xd7\xf2\xed\xe1\x3c\x5d\xef\x73\xfe\x5e\x3e\xc0\xf5\x1e\xfe\xea\xce\xa1\xfb\xbc\x7e\x7a\xbe\x97\xd6\x68\x3f\xac\x1d\xf9\xfb\x54\x3a\x65\xe7\x6a\x47\xf2\x71\xd1\x1b\x87\x5f\xfe\x00\xd7\x7a\x11\xf8\xca\xe7\xf4\x7d\x9b\xe5\xd7\x68\x7e\xe4\x79\x46\x7f\x4b\xa7\xb5\x37\xd6\x4f\x4d\x93\xe3\x8d\xe5\xa7\x8c\xfb\x9c\x96\x8b\x9c\xab\x31\xfb\xec\xb9\xcb\xd7\xa5\xde\x7a\xf7\xf9\x9f\xcf\x1e\xd7\x74\xf9\x58\x39\xb9\x4d\x9f\xd9\x7a\x7d\x4d\xc6\x75\x58\x33\x5c\xf9\xb9\x47\xef\x3d\xd6\x2b\x91\xd2\xf1\xc7\xf0\xf1\xfb\xbc\x7d\xb5\xd6\xf9\x05\xf0\x5b\x9e\xbe\xb4\x5b\x1c\x7f\x16\xa7\xef\x41\xff\xe6\xad\xf3\x1b\xda\x4d\x95\xb7\xe7\xd0\x97\x64\xba\x52\x7f\x6b\x58\xbf\xd7\xe2\xc7\x6b\xe1\xf3\xda\x71\xd6\x56\xc7\xc7\xf5\xf1\xad\xd5\xe4\x2c\x26\x7f\xac\xe6\x27\xb9\xe0\x7c\xfc\x75\xf2\xc7\x52\x72\x79\xdc\xff\x66\x6e\x5c\x81\x64\xfc\xb3\xb7\xa6\xaf\xf2\x5b\x8b\xf8\x03\x47\xe4\xb4\xd7\xcf\x7f\x89\x73\xda\xf4\xf3\xa6\x65\xe6\xf7\xba\xb8\x72\xc9\x73\xe5\x95\xce\x81\x5f\xab\x37\xbd\xd6\x4f\x2f\x76\xaf\x3d\xfd\xfd\x1a\xfc\x69\x52\xfd\xad\x53\xcf\xc1\xf8\x39\xe2\x5a\xfc\x2f\xf9\xbd\x2a\x76\x7f\x6a\xb6\x7f\xc7\x7b\xfb\x11\xa5\xaf\xcb\x92\xfe\x37\xaf\xf5\x0f\x99\xe5\xff\x4e\xc7\x57\x9a\x79\xff\x60\x56\xdc\xd6\x6a\xeb\x7d\xfc\xa9\x16\xd9\x01\xd6\x7a\xaf\x25\xe2\x3f\x96\xdc\x5f\x11\x3d\x32\x16\x2f\x6d\xa9\xf5\x49\xb9\xdf\x74\xa4\xcd\x51\x9a\xe7\xf8\x8f\x25\xfd\x40\x5f\x15\x27\x69\xd1\x79\xfe\xa2\xfd\xbd\x5c\x3c\x03\x9f\x3e\x7b\xf4\x7b\x3d\xf7\xcf\x92\xf7\xbe\x56\xbd\xc7\x1a\xb6\xe3\xfb\x59\xa6\xf4\xe3\xaf\xcf\x5b\xe3\xc7\xc6\xee\xc1\xae\x12\x1f\x2a\xba\x9f\x16\xed\x83\x59\xf1\xfd\x96\xbe\x77\xb2\xd4\xfd\x87\xe5\xed\x47\xaf\x8b\x43\xc6\xe2\xf2\xf9\xf3\x5c\xc1\x7f\xf6\x2b\x96\xbf\xe2\x7a\x1b\x7f\x6d\xbd\x39\x6d\xaf\xa9\x9d\xaf\x8b\xf1\x62\xf5\xfb\x71\x91\xf5\x5e\xeb\xfd\xb8\xc8\xb8\x78\x28\x41\x6d\xbd\xe9\xf2\xfa\xc9\x7a\xf4\xd4\xa4\xbc\xbf\x7a\xdc\xae\x39\x7e\xa4\xf5\x2b\xca\x37\x67\xc7\x79\x94\x4b\x4b\xc4\x83\x8c\xc4\x7f\x8c\x3c\x1f\xb9\x7e\x9c\xc8\x78\x9a\xde\xce\xaa\xf7\xb0\x4a\xef\xe3\xc7\xf0\x0e\x7e\xbd\xcc\x6e\xf7\xd6\xfb\x74\xeb\x8e\xd7\xb6\x94\x7c\x89\xd5\x00\x7e\x2b\xc8\x61\xfb\x18\x9f\x63\xb9\xe6\x6d\x1a\x26\x87\x72\xbb\xe5\x5b\xfc\x7f\xe3\xfa\xee\xa2\xf3\x32\x56\x2e\x62\x47\x8d\xed\x1f\x96\x2f\x33\xfb\x1f\xb3\xfb\xf9\xe7\x97\xc9\xf6\xe6\xd8\xb5\x6f\xa8\xbc\x1e\xd3\xbb\xdf\x74\x1f\x75\x05\xbc\xc0\xcc\x4e\x70\xe9\x8d\xc7\x1f\xc7\x30\x3a\x6f\x7f\x7e\x73\xe9\x0f\xf7\x47\xf5\xe7\x75\xb9\x36\xbb\x9a\x7c\x45\xdb\x3b\x7f\xb3\xdd\x24\x6e\xd7\xfa\x16\xce\xeb\x8a\xdb\xd1\x83\xb4\x1d\xd8\x73\xd3\xed\x70\xef\x64\xb7\xac\xf5\xf0\xf9\x0c\xbb\x6b\xaa\xdd\x94\xef\xb7\x14\xbb\xa7\x3d\x65\xff\x61\xfe\xae\x3e\xfc\xb8\x5f\xab\xb5\x22\x5d\xab\x85\x4e\xcc\xf9\xe5\xe8\xc9\xdb\xe2\x72\x5a\xaf\xc3\xe7\x55\xe3\x69\xac\x16\x77\x6f\x8d\xf1\x07\x62\xf0\xf5\xf5\xa6\xf5\xdd\x93\x8c\xc8\xad\xab\xda\x75\x56\xf9\x1e\xc2\x92\xf1\xf6\x57\x88\x4b\x1e\xd3\x07\xdf\xe1\x7b\x15\xeb\x8e\x87\xbe\xfe\xfb\x9b\x2b\xc4\x47\x5d\x2b\x1f\x58\xeb\xbd\xd4\x77\x88\xcf\x9b\xd4\xef\xd6\xcd\x0f\xd9\x3e\x4c\x5f\x87\xa5\xee\xff\xff\x8d\xf7\x7b\xdf\x14\xcf\xeb\x1d\xe0\xf7\x56\xb9\x77\x91\xfd\xea\xf5\xf2\x67\xe0\x57\x62\xad\x03\x3f\x92\xf1\xd4\xde\x0e\x47\x7e\x8e\xff\xb6\xf8\x11\x33\xe2\x7f\xac\x80\x87\xef\x1a\x1f\x3a\x35\xce\xdf\x3b\xec\x87\xe4\xfe\x5d\x17\x3e\xaf\xe1\x3b\x54\xb3\xe6\x9d\xbc\x6f\x38\x2b\xfe\xf5\x5b\xe3\x44\x2e\xe2\x33\x29\xf4\xb5\xb6\x8a\x7e\x98\xe2\xb7\xd4\x4c\xdf\xb7\xef\x10\x37\x7e\xd6\xfa\xac\x61\xdd\x92\xf6\xdf\x24\xfd\x8f\xcf\xb7\xf5\x9e\x7c\x74\x1a\xbe\x6b\x90\x2b\x96\x3f\x17\x7b\x83\x9c\xf2\x3a\xfb\xe7\xbb\xd8\x55\x96\xe0\x17\x33\xce\x6d\x66\xe9\x49\x2b\xf4\xbf\x4a\xbc\x83\x99\xe7\x6c\x6b\x3b\x37\x0a\xef\x87\xae\xe4\xdf\xf7\x66\x78\x2f\x1f\x1f\xe2\x0d\xe7\x35\x8b\xe2\xe9\x2d\x35\xdf\xd7\xd1\x0b\x12\x3d\x17\x5c\xe4\xb7\x1a\xf1\xcb\x24\xd1\xb8\x0d\x8b\xbf\xbf\xc1\xbf\x73\x17\xea\x8d\xeb\x95\xfb\x5f\x35\xff\x57\xc4\x0f\x4f\x8f\x4b\x19\xfa\xa1\x32\x3f\xe3\x15\xe2\xbb\xad\x25\x6e\x72\x4c\x0f\x5f\x39\x3e\xda\xf2\xe7\xb4\x2b\xd0\x83\xa5\xe2\x6f\xc7\xe4\xac\x95\xe9\x83\x95\x88\x7b\x15\x7b\xdf\x4e\xb3\xb3\xce\xa1\x0b\x29\xed\x4c\x9f\xa7\x2e\x11\xb7\x63\x76\x7c\xa2\x74\x3e\x7c\xa0\xcd\xa7\x2f\xcc\x3f\x26\xc5\xfe\x1c\x89\xd3\x6d\xad\xf8\x3d\x83\x57\xd2\xc7\x99\x70\x99\x85\x3f\xa7\x81\x3f\x77\x24\x6e\x6d\xaa\xdc\x95\x92\xa6\xc6\x4b\xe3\xe7\x89\xcd\x79\xf3\x5e\x7d\xfe\x91\x38\xbc\xb3\xd2\x57\xd8\x6d\x56\xe8\x7f\xf5\x73\xe7\xb7\xc5\x7d\xf6\xdb\x5b\x29\x4e\xd2\xa2\xfd\xcf\xda\x0f\xf8\x94\xb9\xc4\xf7\xb3\x5e\x77\x7e\xf7\x7e\xdf\xc1\x59\xf8\x3d\x9b\xd3\x04\xfe\x9e\x46\xed\x69\x29\xf7\x42\x16\xc7\x13\x4a\xb5\xe7\xae\xe2\xef\x13\xca\x05\x01\xbe\xbe\xf1\xde\xc3\xf2\xf2\xd3\x7a\xec\x31\x2b\xc5\x69\x8e\xc8\x0f\x8b\xe6\xb9\x3a\xfe\xcd\xc4\xc7\x53\xfe\xfd\xae\xd7\x9c\x53\xbd\x26\xae\xd7\x6a\x71\xa2\xe6\xfa\x6f\xac\xd1\x8e\x29\x27\xe2\xe3\xcf\x5e\x27\xce\xa7\x57\xfd\x3e\xdb\xbb\xd8\x1f\x5f\x2b\x1f\x26\xed\x03\xcb\xee\x8f\x35\xee\xbb\xb7\xce\xff\x02\xcb\x0d\x5c\xd3\x70\xcb\x95\xab\xb8\x16\xc3\xdf\x6a\xa8\xdf\xb1\xfc\x46\x22\xff\xad\xfd\x56\x57\x69\xef\x1d\xfc\x12\x5e\x39\x9f\x35\xac\xdb\x72\xf8\xdd\x4c\x93\xd7\xdf\xaa\xbf\xa6\xd0\x9b\xe6\x7a\xf0\x6b\x0e\xdf\x99\x73\x3e\xc7\xf4\xc3\xd7\xca\x47\x6b\xfd\xde\xc0\xdf\x60\xd7\x99\xe5\xff\x30\x17\xfe\xef\xf8\x3d\xdc\x57\x7d\x07\x7f\x19\x7b\x50\x78\xde\xbf\x46\xf9\x62\x09\x3f\xb2\xd5\xdb\x7d\xdd\xfd\xab\x45\xeb\xdb\x7b\x87\x7b\x57\x2b\xd0\xc7\xb5\xd8\x0b\xa7\xf8\x15\x49\xfb\xbe\xc6\x3f\xe2\xfc\x7a\xb5\xfb\x31\x6f\xbf\x37\x92\xfc\x5e\xf8\xa2\x78\xa5\x4b\xa4\xb3\xea\xbf\x61\x9c\x8b\xe3\xa5\xbe\x57\x3c\xa3\xe4\x3d\xfa\x7f\x80\x7f\xc3\xba\xe4\xa7\x37\xc4\x0f\x7d\x7d\xfc\xc9\xb5\x7c\x37\x3e\x6e\xef\x4a\xb5\xa7\x2d\x15\xb7\x61\x4e\xdc\x80\x77\xfc\xde\xfd\xa2\xb8\xa2\x29\xeb\x34\x1d\x47\x30\x66\xef\x4b\xa7\x73\x6f\x8d\x7f\xfa\xd6\xef\xb5\xbc\x9f\xbf\xd2\x2b\xee\xc1\x2d\xfa\x2e\xc6\x5a\xda\x7f\xdb\xfc\x16\xc9\xd3\x6f\x4d\xdf\x24\x5f\xcd\xe2\x17\xab\xc5\xb5\xae\x2d\xe0\x43\x64\x2a\x0e\xea\xeb\xbe\x43\x6d\xbd\xaf\xdc\xf8\x8a\x7e\x52\xbe\xbf\x9a\xd2\xce\x4a\xf6\xf6\x95\xfc\xfe\x57\x38\x7f\x5c\x42\xfe\x58\x00\xc7\xe5\xce\x0f\xd9\x55\xb5\xb5\x7e\x5f\x2d\xfd\x3b\xc1\xc9\xef\x5e\x2e\xf5\xbd\xa2\x59\xdf\x4d\x4e\xfa\x89\x44\xfc\x96\xa6\xbf\x53\x9b\xd2\x7f\xb2\x7c\xf2\xfb\xb5\x29\xe3\x58\xf4\xbd\xa7\xb9\xe7\x6d\x6f\xf5\xf7\x4d\xc5\xab\xb7\xfa\xbd\xaf\x2c\x7f\x2d\x55\x7e\x71\x1c\xb1\xc0\xef\x7d\xd5\x38\x8c\x24\x11\x07\x6e\xf9\x78\x8b\xe9\x71\xe4\x16\xa7\xaf\x8e\x13\x71\x87\x8f\x5a\xf8\xe1\x8d\x69\xac\x5d\x16\x7f\xee\xb5\xe3\x89\xc4\x37\x7d\x6d\xfc\x8b\x24\x1c\xe3\x71\x16\x59\xaa\x79\x71\xef\x62\xe3\xf5\xe3\xe0\xad\x3b\x0e\x51\xa3\x85\x6f\xb1\x52\xf3\xd2\xb0\xff\x64\xfc\xbd\x94\x74\xb5\x7e\x52\xeb\xe1\xe8\x7c\x67\xb5\xaf\xa5\xb5\x93\x84\xd3\x1b\xe0\x40\xbc\x75\x19\x4e\xc7\x4f\xc4\x69\xe5\xc8\xd2\xeb\x9c\x12\x17\x77\x05\x3c\x7b\x55\x7c\xc7\xc3\xd6\xeb\xe2\xe9\xae\x8c\x37\x78\x6a\x5d\x56\xad\x1f\x83\xf3\x1b\xd6\xf1\xb5\x70\x5a\x0c\xf7\x39\x78\x9c\x82\xd7\xda\x9b\xe2\x19\xfa\x47\xbc\x5e\x9c\xfd\x14\xbc\xd1\x5e\xb3\xdf\x96\x83\xff\xea\xf9\xab\xe2\xed\xdc\xb8\xaa\x6f\xc3\xe7\x57\xf5\xff\xd6\x7d\xb7\xc2\x7e\x5a\xe3\x7e\x4c\xd2\xc7\xd4\x7d\xa3\x2d\x59\x3f\x96\xce\xda\xd7\xcb\xa5\x73\xf9\xc4\xbb\xf0\x2d\xff\x1e\xe3\xd1\x9a\xef\x25\xbf\x35\x3e\xd7\xbb\xc4\x5f\x7a\x53\x1c\xa8\x35\x8e\xff\xb5\xf1\x08\xd7\x6b\x8f\xb6\x56\xfc\x0e\xf4\xab\xda\x17\x26\x70\x30\x32\x7a\x8e\x6e\x1a\x22\x86\x04\x3a\xe0\x45\x18\xd9\x64\xc3\x76\x2c\xbd\xe7\x08\xe5\xd3\x9b\x3f\x48\xcf\xc9\xf5\xc9\x40\x37\xc8\x99\x65\x3e\x10\xcb\x79\x16\x09\x14\xae\xaf\x89\x7d\x62\xf6\x47\x43\x22\xc0\x97\x47\x75\x38\x22\xd2\x66\x7e\x02\xca\x8f\xaa\xb5\x61\x21\x47\xfc\x00\xca\x84\x56\x53\x47\x43\x07\xf9\x5d\x6c\x60\x91\x40\x07\x1a\xe0\x65\x33\xda\x2b\x78\xd1\x07\xe2\xa6\x88\x37\x74\xc3\x76\x54\xa3\x47\xcc\xc1\x06\x01\xc0\xb9\xb5\x4c\x77\xc3\x20\xee\xc6\xe5\xf3\x03\xa9\x59\x96\x69\x89\x82\xa2\x1a\x86\xe9\x6c\xf4\xd4\xe1\x70\x43\xdd\xe8\x0d\x55\xdb\xde\x50\xed\x0d\x75\xc3\x6f\x50\x00\x13\xd1\xb9\xd5\x6d\x88\x01\xa4\x69\xce\x79\x7e\x20\xc8\xca\x9d\xe1\xcb\x83\x9c\xd2\x38\x57\x8e\x6b\xfc\xfd\x13\x22\xfc\xc7\x33\x72\xf8\x0f\x4b\xed\xeb\x23\x1b\x19\x93\x77\x01\x0a\x34\x02\x38\x88\xe0\xc5\x22\xce\xc8\x32\x36\xa6\xc0\x80\x2d\x4b\x7d\xce\xe9\x36\x4b\x45\x0c\x80\x57\x10\x97\xf5\x81\x78\xf1\x7c\x7f\x63\x0e\x73\xba\x43\x2c\xd5\x31\xad\x0d\xdd\xd8\xe0\x63\x89\x14\x8c\xb7\x48\x7b\x76\x50\xa7\x0b\x2d\xb4\x99\x87\x06\xda\x2c\x40\x19\x3d\x9a\x7a\x7f\x23\x5f\x76\xac\xe7\x97\x81\x69\x89\xb4\x8c\x0a\x6d\x84\x3b\x89\xf6\xbb\x22\x28\x6f\x8a\x16\x12\x55\x64\xe7\x0c\xf2\xe4\x88\x00\xe4\xfa\xa6\x41\x40\x26\x23\x3a\xb9\x87\x91\x7d\x2b\xaa\x39\x36\x4f\x00\x37\xc9\x78\xec\xe4\x86\xc4\xd0\x9c\xdb\x4d\x84\x08\x28\xd3\x2e\x41\x79\xd2\x53\x9d\xde\xad\x88\xc1\x8b\x41\x87\x20\x23\x3c\x19\xe8\x86\x3a\x1c\x3e\xbf\xd0\x01\x6c\x5a\x99\x8c\x9d\xe3\x63\x0f\x7f\x89\x20\x28\xa4\x0f\x44\xc3\x43\x05\x79\x32\xf1\x26\xe9\x4c\xd8\xf4\xca\xa9\x28\xd2\x30\x1e\xd5\xa1\xde\xdf\x50\x1d\x87\xdc\x3f\x38\x1b\x8e\xb9\xd1\x27\xb6\x63\x8d\x7a\xce\xc8\x22\x1b\x86\x69\x6c\xb1\x19\xde\x0c\x49\x80\x71\x02\x98\x4c\x44\x00\xe5\xe8\x12\x45\xb0\x96\xc1\xd2\x87\x95\x83\xf2\x65\xe7\x33\xf1\xe6\x5a\x76\xb2\x59\x0e\x67\x0b\x91\x8e\xd3\x2d\x5b\x39\x62\x8c\xee\x79\xfb\x28\xfa\x30\x1e\x6f\x16\xa0\x95\xeb\x99\xc6\x40\xd7\x46\x3c\x7f\x33\x0f\x05\x06\x40\x41\x37\x36\xac\x4c\x46\xb4\x72\xae\xa5\x3b\x5e\x1e\x80\xe9\xa8\x86\xa1\x95\xbb\x23\xcf\xd0\x02\x01\x44\x82\x71\xd3\x0d\x66\x05\xf8\xe5\x64\x32\x58\x24\xb9\x07\xcb\x74\x4c\xba\x11\xa0\x03\xa0\xc5\xde\x41\x0b\x40\xc2\x26\xad\x22\x47\x2c\x02\x68\x23\xd1\x11\x8b\xbb\x00\x3a\xe2\x6e\x11\x00\x68\x22\x47\xfc\x04\xa0\x8e\x44\x0b\x99\x20\x93\xb1\x72\x21\x7a\x57\x2c\xe9\xc5\xdb\xdc\x92\x35\x81\x3d\xe4\x88\xbb\x00\x0e\x91\x23\x16\x8a\x1c\xdd\x47\x33\x20\xc9\x76\xd3\xdf\xb9\xfb\x55\x4b\x23\x8e\xbf\xd5\xcd\x07\x5a\xc8\x46\x0e\x24\x39\x8b\x18\x7d\x62\x89\x0e\xf0\x41\x28\x8b\x18\x76\x5e\xee\xc8\xb3\x24\xf0\xbc\xa6\xd9\x27\x02\xe4\xfb\x38\x1c\x31\x78\xc1\x39\xdd\xfe\xaa\xdb\xfa\xcd\x90\x88\x6c\x2b\x30\xe2\x11\x54\x91\xd5\xde\x9d\x66\x99\x23\xa3\x8f\x8d\xbe\x6c\x5a\x7d\x62\xd9\xa2\x3f\x9e\xb0\x98\x62\x1a\x0e\x31\xd8\xd6\x9d\x4c\x60\xb2\x5f\x2f\x37\xad\x7b\x0a\x5e\x82\xd8\x2c\x9d\x28\x94\x29\xf5\xc8\xf5\x6e\xf5\x61\x9f\x36\x60\x7b\xf8\x99\xc9\xc4\x5e\x0e\x4c\xab\xa6\xf6\x6e\xc5\xa0\x9e\xc3\x2a\x3a\x51\xe8\xeb\x3e\xe1\xf6\xf1\xda\xc9\x3d\xa8\x16\x31\x9c\x9c\xed\x3c\x0f\x49\x99\x78\x50\xf5\x26\x73\x49\x9e\x1c\xda\xb8\xe8\xe4\x6e\xe8\xac\x6d\x86\xe4\x43\xd3\x82\x56\x6e\x60\x1a\x0e\xb4\x72\x0e\x79\x72\xaa\xa4\x67\x5a\x2a\xed\xd3\x7b\x71\x71\xab\xf6\x4d\x17\x4c\xc8\xd0\x26\x1b\x41\x9b\x7d\x4b\x75\x2f\x6e\xd5\x07\x22\x3a\x10\xf3\x0e\x79\x6b\x60\x02\x20\xce\xe9\xf7\xaa\x16\xd0\x35\xe2\x2f\x28\x7f\x7d\xe1\x98\x16\xc9\x69\xc4\x11\xfd\x72\x94\x68\x06\xb3\x10\xf3\x50\xcd\xf5\xd4\x61\x6f\x34\x54\x1d\x1f\xc0\xb2\xf9\x04\x44\xec\x0f\xdc\xef\xf0\x41\xed\xf7\x75\x43\x0b\x9e\x6f\xd8\x2a\x02\x68\x20\xc1\x18\xdd\xdf\x10\x4b\x40\x88\x6e\x27\x73\xb0\xe1\xe4\x5c\xbd\x4f\xc1\xec\xfd\xf8\x92\xaf\x78\xbf\x24\x8b\xa7\x50\x4e\xab\x75\x4b\x74\xed\xd6\xa1\xd5\xf8\x2f\x56\x8f\xff\x94\x2c\xef\x47\xd9\xf8\x92\xcf\x64\x64\xfa\x27\x80\x4f\x6f\xa8\x3f\x88\x9d\xf8\x5c\xce\xf8\x70\x65\xf3\xe9\x4c\x75\x6e\xe9\x7c\x7a\x23\xeb\x91\xf4\x65\x36\x2b\xd0\x85\x11\x2c\x89\x01\xba\x41\xa1\x24\x3a\x90\x6e\x33\x35\xc7\x8b\x8b\x79\x98\x87\x06\x94\x01\x25\x2f\x60\x32\x99\x40\x0b\x61\x0a\x55\x65\xa8\x3f\xd0\xf6\x6d\x11\x94\x2d\x0f\xbb\x2a\x91\x4d\xc6\x87\x66\x41\x07\x48\x8e\x98\x86\xd3\x69\x1b\x63\x21\x82\x6f\x06\x6b\x10\xd4\x8e\xfc\x54\x28\x66\xe4\x74\xfb\xd2\x52\x0d\x9b\x23\xa9\x08\xc6\xe3\xb9\x75\xd8\xa4\xbd\xf1\xb3\xb9\x45\xd7\x38\x67\x9b\xf7\x44\x8c\x8e\xc6\x67\xc0\x5e\x81\x0b\x5a\x78\x13\xa1\x61\x4e\x3e\x3d\xaf\xd6\xce\xaf\x2f\x2e\xaf\x8e\x6b\xb9\xe6\x69\xb3\x96\xc9\x6c\xfa\xa5\x52\xc7\x35\x01\x71\x19\x20\x40\xcb\x5e\xb8\x94\x01\x8c\xb4\x33\x55\x37\x1c\xdd\xd0\xb0\x45\xd4\xe4\x92\xc2\xf9\x40\x19\xea\x0f\xa0\xec\x4c\x21\x8d\x15\x43\x84\xd7\xc0\x35\x68\x70\xa0\x0f\x87\xe2\xe2\x16\x40\x40\x67\xe5\x38\xf8\x45\xcc\xb7\x73\x0c\xf4\xd3\xb4\x89\x72\x32\x27\x0a\x78\x94\x0a\x78\x2a\x79\xcc\x81\x3b\x1d\xb7\x37\x0a\x56\x88\xb6\x0b\x13\x7b\x64\x02\x26\x8c\x58\x8c\xc7\x16\x5f\x18\x19\x61\x8f\xea\x55\xfc\x1f\x89\x4d\x20\x75\xba\x65\x79\xe6\x3e\x90\xa1\x01\x24\x2a\xc8\x24\x36\x42\x02\x10\xf3\xf1\xbf\xbc\x04\x22\xdb\x43\xbd\x47\xc4\x3c\xc8\x59\xe4\x91\x58\x36\x11\x41\x2a\x91\x17\x46\xd6\x50\x40\x08\x39\x39\xdb\x1c\x59\x3d\x92\xbb\x27\xce\xad\xd9\xa7\x04\xc8\x7b\xa1\x5a\x9a\xcf\x34\x2a\xd3\xcb\x76\x4e\x1e\x88\xea\x88\x98\x6e\xef\x6d\x8d\x8a\xca\xc4\x70\xb6\xf5\x9c\x43\x6c\x47\x4c\x34\x0a\x28\xea\x25\x1b\xd8\xf7\xea\xb0\x26\x26\x60\x26\x58\x78\x47\xd3\x70\x09\xc5\xd9\x28\x2b\x4f\x52\x7e\x12\x9d\x4d\x27\xdf\x9d\x62\x01\xe9\x7b\xcd\xb4\x75\xda\x5c\x64\xbb\xcd\x81\xfb\xa9\xa5\x6b\xba\x01\x57\xe0\x1a\x33\xfa\xed\x5f\xe8\x7f\x11\xe0\x89\x6c\x50\x9e\x59\xcc\x1f\x1e\xa0\xa2\x9c\xf7\x1b\x1a\xb4\x8e\x3a\xb3\x0e\x07\x23\xe7\x07\x04\xca\xb4\x78\x30\x62\x2a\xec\x9d\xa8\xce\x6d\x8e\x95\x14\x29\x31\x1f\x38\x59\x39\xf7\x44\xa5\xbe\x58\x86\x63\x3e\x64\xe5\xdc\x33\x95\xb4\x43\xfc\xe6\x2b\xe6\x21\x84\x4a\x15\x3a\x68\x43\x73\x0e\xa6\xfb\x4b\x3f\x6f\x51\xff\x33\x4b\x93\x44\x09\x7f\xa4\x29\x4b\x34\x6f\x1d\x53\x17\x88\x72\x42\x28\xa3\x18\x6f\x8d\x00\xd7\xe1\x50\x37\x28\xd4\x63\xaf\x29\xcc\x8d\xdc\x33\x80\xbe\xfc\xe0\x8b\x03\x74\x75\xc4\x3c\xb4\x29\x39\xb2\x83\xa1\x02\x0a\x45\x0f\xeb\xa1\xcc\xf0\xdd\x04\xb6\xab\x53\xad\xcb\x64\xda\x2f\x78\xe9\xa9\x54\x7d\xcd\xed\x9f\xe3\x6a\xa3\xd6\xbc\xbc\xbe\xbc\x3a\xab\xe5\x8e\x1b\xcd\x1a\x3e\xbf\xf6\x5f\x4a\xd3\x4b\x7c\xac\x1b\x44\xb5\x82\x8d\x2b\x43\x13\x94\x6f\x2c\xa2\xde\x95\x53\x1b\xa4\x0f\xf8\x78\x5e\x83\xe7\x6a\x5f\x57\x87\xb1\x06\xa7\xb0\x86\xad\x4c\x1a\xa6\x50\xcd\x21\xda\x64\x28\x29\x32\x69\x88\x01\x85\xe2\x7b\xdd\xf4\x1a\x01\xa2\x03\x09\x80\x31\x9e\x9c\xa4\x3b\x17\x8e\xda\xbb\x5b\x40\x84\xb9\x60\x6d\x1a\x8e\xaa\x1b\xc4\x8a\x0a\xff\x3e\xf2\x32\xf9\xe8\xf4\x41\xed\xe9\xce\xb3\x08\xca\xce\x26\xe2\x44\xea\xda\xe4\xef\x7c\x25\xc1\x1b\xb9\x1d\x16\x8e\xd7\xf4\x94\x04\xbf\x1a\x72\x7c\x83\x4a\xb4\x7f\x8e\xc1\x0e\xe5\x70\x03\xd3\xba\x2f\x1b\xa3\xe1\x70\x13\x21\x2b\xc6\x83\x82\xec\xd8\xd0\xf9\xae\xe0\x88\x67\x85\x65\xf8\xae\xe9\xe4\xbb\x5c\x99\x87\x29\x55\x28\x52\x4e\xd7\x28\xf8\x35\x22\x59\x70\xda\xca\xe1\x33\x03\x06\xec\x50\xef\x99\x00\x29\xa2\x13\x25\x33\xd3\x16\x6a\xa1\x56\xe4\x32\x45\x0b\x51\x35\x78\x97\xee\x6e\xa7\x93\xef\x42\x19\x39\x9d\x42\x97\xea\xb9\x9d\x62\x17\xda\xc8\xe9\xec\x74\xa9\x7a\xdb\x29\x75\xa1\x8e\x5a\xb4\x4a\x0f\x19\xa2\x0e\x8b\x54\x87\xed\xd1\x2a\x23\xd4\xeb\x14\xba\xe5\xa5\x34\xbb\x10\x58\x74\xcb\xda\xa6\xe5\x88\xed\x90\x07\x27\x67\xc8\x56\x78\xb6\x32\x18\x6d\x6c\x94\xd6\x08\x2d\xed\xb5\x61\x2f\xea\xc4\x5c\x54\x60\xb8\xa0\x07\x79\x51\x03\xea\x92\xf3\x4d\x2c\x66\xda\x02\xc6\xb8\x7a\x42\x8e\xcc\x64\xe2\xb4\xa4\xe7\xa8\x86\x36\x24\x62\xac\xce\x53\x4c\xc7\xcf\x3d\xc7\x1f\x39\x29\x8d\xbd\xe2\x54\x15\xce\xeb\x38\xb6\x50\x6c\x3e\x22\xe6\x7b\x92\xd3\x06\x7f\x48\x1a\x71\x2e\xd9\x2f\xaa\x1b\x79\x48\x3f\x99\x74\x01\xc4\x13\x31\x6a\x09\x1d\xb1\xba\x2d\x14\x9d\xb8\x6f\x57\x22\xa8\xd3\x85\x9e\xb1\xce\xd3\xd9\x2d\x62\xf8\x8a\x8a\x81\xf2\x65\xe3\xb3\x55\x36\x7c\x73\x93\x1c\x29\xd4\x31\xa8\x28\xaa\xdb\x0d\x63\xa8\x1b\xe4\x98\x3c\x92\xa1\x08\x2a\x84\x9b\xe8\x64\x20\x39\xfe\x2f\xcf\xd6\xd1\x21\xd0\xe9\x4e\xa0\xbb\x70\x1c\x9d\x2e\x34\xe8\x1f\x99\xfe\x51\x3d\x32\x44\x9e\x1c\x5f\x50\x84\x36\xca\x97\xed\xcf\x6a\xd9\xf6\x87\x65\x46\x0a\x75\xec\x6e\xd9\x8c\x51\x4e\x9f\x51\x92\x3e\x15\xcb\xcd\x29\xaa\xe6\x11\xbe\xcf\x85\x78\xa6\x27\xd0\x53\xf2\x42\x6b\x56\xa6\x2b\xfe\xd5\x30\xfa\xe4\x29\xc7\xf6\xe4\xe7\xbc\x3f\x75\x13\x48\xf3\x8b\x7e\xc9\x57\xac\xa0\xa8\x93\x5a\x49\xb7\xeb\x43\x53\xa5\x9a\x98\x08\x2a\x46\x50\x44\xf6\x7f\x45\x40\x0a\x2d\xaa\x38\x77\x27\xb0\x8d\xe2\x22\x4e\xa0\x43\xce\x1d\x0b\x99\x9b\x5d\x29\x48\xf3\xeb\x7f\x5e\x50\x7f\x2b\xde\x80\x4e\xb3\x62\x7d\xb2\x37\x95\x82\xb4\x55\x58\xb7\x05\x1c\x46\xf8\xd5\x37\x72\x73\xa7\x3b\x71\x49\x00\x5b\x9a\x8d\x48\x5c\xae\x41\x24\x17\x2f\x84\x48\x2e\x2e\x90\xd0\x12\x71\x91\xe3\xfa\xe2\x00\x9f\xd5\x10\x89\x0b\x26\xbe\xc1\x9b\xb3\xd2\x5f\x46\xf8\x7f\xb8\x11\xde\x40\xa2\x2e\x3a\xe2\x0e\x60\xa6\x68\x9a\xc8\x88\xbe\xc8\x03\x6e\xab\x2e\x50\xf5\x45\x17\x55\x6e\xa2\x2e\x81\x72\x60\x5e\xd6\xa3\xf6\x9a\x4c\x06\x47\x2d\xd6\x38\xb4\x58\xe3\xc9\x24\xa8\xd2\x7b\x0f\x13\x34\x5d\xcc\x21\xda\xfe\xb7\xe8\x98\x1b\xa0\x22\x52\x71\x6b\xec\x98\x0f\x63\x8b\xf2\x9b\xf1\x8d\xe9\x38\xe6\x3d\x10\x37\x66\x64\x80\xca\xff\x6c\xeb\x70\x44\xeb\x77\xb2\x5b\xdd\xca\xcf\xfe\xef\x3f\x73\x95\x9f\xfd\x2c\xf8\xd7\xc6\xd4\x1b\x5a\xb4\x85\xb6\xc5\x87\x27\x30\xfe\xd7\x58\xdc\xc8\x03\xfa\xc6\xa5\x95\x07\x96\x79\x3f\x76\xcc\x31\xb3\x9e\x6e\xd9\x8e\xf9\x00\x7e\x8a\x62\x45\x12\x3b\x3f\xfb\xb9\x6e\x16\x88\xff\x02\x15\xf8\xd3\xfe\x1d\x54\xc4\x5c\xb6\x02\x7e\xb2\x9a\x6d\xb4\xfd\xef\x9f\xf6\xef\x62\x4f\xb7\x7a\x43\x32\x26\xc3\xa1\xfe\x60\x13\x50\xa1\xef\xa2\x75\x1f\x9e\xc6\x56\x85\xdc\x8f\xff\x05\x68\x4e\x6a\x06\xa8\x80\x71\x6f\x68\xda\xc4\x76\xb6\x6c\xbd\x4f\x82\x87\x9e\x69\x19\xc4\x1a\x0f\x54\xcb\xb9\x0d\x32\x83\x27\x9e\xcb\x7b\xac\x48\xaa\xe3\xb5\xcf\x60\xd5\x23\x86\x43\x2c\x0e\x2e\x30\x4e\xeb\xf3\xa7\x9d\xa5\xa5\x29\x50\xbd\xc2\x1e\x54\x53\x4b\x83\x8a\x58\x91\x7e\xda\xe3\xff\x01\xdb\x3a\xd4\xa6\xe8\xc6\x4b\x52\x45\xca\xc3\xa4\x8e\x53\x98\x40\x65\x26\x1d\x7a\xe1\xe7\x8d\x52\x1e\xd6\x8e\x8f\x1b\x67\x17\x35\x5a\xbc\x8f\x5e\xe8\x5c\x24\x8a\x57\xb6\x2f\x18\x88\x42\xfe\x5f\x02\x80\x8e\xf9\x90\xfa\x9e\x4f\x25\x99\xb5\xcb\xf2\x18\x30\x92\x59\x85\x3c\xcb\xe3\x73\x4f\xcf\x9c\xc0\xfa\x34\x45\x4d\x9e\xd4\xf4\x52\xce\x52\xb5\xa4\xe6\xc8\xf3\x18\x9a\x5d\x38\xe6\x83\xed\x9f\xb6\xf4\x75\x2a\xa9\xe9\xa6\x81\x9c\x09\xac\x4d\xd3\xf3\xc4\xb1\xb0\x05\x8d\x59\x1d\x26\xc0\x3b\xab\x43\x9b\x6a\x83\xfe\x69\x2e\x87\x19\xb2\x12\x67\xbb\x70\x80\xc4\x24\xa7\x49\xf2\x3a\xef\x34\x8f\xd9\x90\xa0\x81\x7c\xb3\x16\x94\x29\x8f\xb2\xc8\x40\x7f\xf2\x84\x3c\x61\xc8\xc0\xb7\xe5\xdb\xc3\x04\x84\x90\x51\xb9\x15\x2d\xe8\xc0\xcd\x4d\x19\x48\x42\x2c\x27\x93\xf1\x2a\xd0\x27\xab\x93\xef\x56\x6e\xc5\x8e\xe0\x98\x1b\x7c\x9d\x84\x2e\x65\xc6\x3d\xd5\x11\x9f\x45\xcb\xb3\xeb\xed\x00\x4a\x06\xbd\xc6\x2c\x06\xbf\x44\x6f\x07\x22\x86\xc2\x96\xcb\xb8\xea\x16\x7d\x25\x57\x1e\x45\x0b\x48\xcc\x10\x3f\xd5\x3f\x6f\x22\xe8\x9f\x56\x7e\x16\x1f\x83\xee\x0a\xac\x3b\x20\x71\xee\x34\x2d\x05\xf8\xac\xca\x93\x0c\x49\xd9\xf8\x8c\xfd\x83\xd0\x40\x32\x55\x11\xee\x18\x54\xc3\x6a\x71\xeb\xa0\x0a\xa0\x8e\xd4\xdc\x50\xb5\x1d\x26\x8f\x9c\x0e\x44\x61\x43\x60\x4a\x17\x71\x37\xe4\x00\x31\xcd\x8a\x9a\xb3\x47\x37\x54\xc8\x30\x34\x31\x0f\x75\x20\xa9\x54\x23\x33\x2b\x71\x04\x8e\x96\xd2\xb3\x05\x00\x24\x03\x21\x44\x2a\x29\x3b\x87\xe5\xf8\x23\xdc\x2a\x54\x52\x77\x82\x44\x35\xe8\xb2\x27\x07\xbe\x30\xb4\x92\x7a\x90\x12\x4c\x69\x38\x01\x13\x7f\xce\x23\x64\xe5\xee\xd5\x07\x71\x5a\xeb\xc4\xfe\x79\x17\x3b\x4c\x30\x1f\x3c\xec\xf0\x9a\x22\xbc\xa9\x3c\x42\xc8\xa9\xe4\x25\xab\x62\x51\x75\x01\xdf\xd8\xe6\x70\xe4\x90\xaf\x94\x73\x8b\x0e\xd8\x76\xd8\x30\x26\x13\x00\x5d\x34\xa2\xba\x38\xad\x05\xdb\x28\x5f\x6e\x7f\x1e\xf9\x30\x6e\x67\xb3\x80\x32\x63\xae\xf2\xbb\x7c\x00\x1a\x1a\x75\xda\xbc\x7c\xd9\xcb\x44\x08\x69\xe1\x6a\x29\xa8\x5d\xf6\xde\x8e\x3a\x8a\x57\x12\x28\xd9\x6c\xd9\x2f\xd1\x47\xca\x56\x3b\x5b\x80\x75\x24\x06\x25\xb6\x5c\xb0\xdd\x2f\xb7\x3f\x2b\xac\x57\x37\xec\x04\xb9\xd9\x3a\x3f\xb5\x73\x91\xe6\x4b\x03\xa3\x09\x80\xb7\x33\x76\x92\x98\x87\x06\xdf\x72\x98\xaa\x6d\x40\xc4\x9d\x7c\x97\xb2\xf5\x21\x47\x10\xfe\xa8\x22\x79\x3c\xf6\x8d\x19\xe3\xf1\x28\x9a\x67\x23\xb5\x12\xd8\x39\x1e\x44\xa7\x62\x6d\xe5\x76\x7f\x67\x66\xb3\xb3\x86\x64\x41\x02\x24\xb9\xd2\x60\x85\xe9\xef\xa3\xe0\xd7\x83\xe8\x15\x82\x84\x61\x61\xa5\x20\xe5\x61\x8f\x1b\x39\xef\x75\x43\x14\xf3\xd0\xcc\xf5\x75\xce\xf6\x01\x2f\xac\xde\xd8\xa2\x9d\x7b\xca\x83\x6c\xf4\xb1\xe0\x99\xe9\xf8\xe3\x73\x3c\xf7\xb9\x00\x00\x2c\xfe\x4e\x3c\x35\x93\xfe\xf2\x6c\x76\xbe\x3a\x48\x31\xaf\x2e\x0e\x44\x0c\x75\xd8\x03\xd0\x06\x13\x78\x30\x8b\xf0\xd0\xd5\xbf\x67\x12\x5b\x9b\x8a\x43\x56\x26\x23\x0a\x9c\x21\xf3\x8d\x5b\xe8\x8e\xc7\x7c\x87\x52\x78\x74\x76\xba\x99\x0c\x7f\x64\xb9\xbb\x5d\x50\x51\x3c\x57\x17\x49\xc9\x79\xac\x07\xca\xe8\x65\x02\x6d\xf4\x32\x29\xd3\xf6\x12\xd5\x45\x39\xf7\x94\x38\x20\x3d\x66\x18\x57\xb7\xcc\x7b\x86\xa2\xdf\x74\xe7\xb6\x6d\xe8\xcc\xdc\x48\xeb\x40\xab\x53\xea\x82\x14\x4c\xe6\x20\x00\x00\x46\xba\xd8\xe5\x5d\x3c\xaf\xd2\xc5\x2e\xed\xe2\x43\x7a\x17\x1e\x6c\x01\xb4\x3a\x1f\xbb\x15\x3b\xf7\x84\xfa\x1d\xfa\x33\xe7\x98\xc7\xa6\x4b\x2c\x45\xb5\x89\x08\xba\x52\x64\x08\x7b\x74\x08\xf6\x6a\xb3\xdc\xa3\x43\xf8\xd4\x65\xfd\x14\xf2\xb4\xa3\x67\xd6\x51\x21\x3f\xaf\xa7\x42\x81\x77\xb5\xd2\x6c\x0b\x05\xda\x57\xa1\xd8\x05\x80\xdb\x17\x4c\xf4\xf2\x24\x05\xab\x6a\xe7\x9e\xfc\x63\xe5\xed\xa2\x64\xe7\x9e\x66\x03\x1e\x3e\x47\xab\x3d\x07\xa7\xca\xac\xde\xf3\x1c\x68\x4e\xa0\x8e\xee\x45\x2b\x93\xb1\x3a\xc5\xee\x78\x2c\x24\x24\x32\x01\x1a\xd0\x84\x32\x8c\xa3\x74\x4d\x1c\x88\x04\x5a\x6c\x5b\x05\x9b\x4a\xcf\x3d\x41\x3d\xf7\x0c\x00\xab\xa2\x83\x09\x7c\x40\x69\x2a\x91\xbf\x5d\x28\xaf\xf5\x8c\x31\x06\xca\xed\xfe\xee\x40\x99\x26\x16\x54\x51\xb8\x23\x1d\xbe\xdd\x6d\x9d\x12\xde\xc8\xe6\xb3\xf8\xfb\x9e\x69\xd3\xf7\x60\xbb\x08\x6d\x64\x64\x23\x65\x7f\x57\xa1\x89\xe4\xad\x48\xa9\xdf\x55\x9f\x42\x3f\xe5\x25\x1b\x3e\x15\x24\x67\xcb\x86\xcf\x79\xc9\x84\xcf\x05\xc9\xda\x32\x27\x13\xd8\x44\x29\x87\xc0\xbc\x53\xd6\x88\xbf\x18\xdb\x49\x12\xe2\xe5\x40\xec\xc3\x75\xbb\x08\xc0\x04\x36\x12\x10\xf0\x2c\xf4\x98\x1b\xe7\x05\x4f\x02\x90\xd8\x83\x63\x6e\x38\xe6\x83\x20\x79\xbd\x3e\x88\x79\xaa\x67\xb1\x2c\x2a\x3a\x86\xa5\x98\xec\x17\x29\xe7\xd1\xba\xed\x62\x50\xde\x2b\xe1\x57\xe0\xd5\x83\xf2\x3b\xbf\x4f\xd7\x70\xcc\x87\x8d\x68\x2d\xf6\x9b\x8f\xc7\x6f\x85\x0f\x76\x23\x3e\x16\xfa\xe4\x0b\x32\x53\x23\xca\x36\x45\x02\x62\x5d\x44\x2a\xb3\x9a\x69\x1d\x24\x06\xcf\x47\x32\xab\x8b\xad\x58\x17\xd3\x43\x8c\x8d\x2f\x02\xe6\xf4\x5e\xe2\xf0\x4f\x6b\x7a\x1a\x46\x69\x8d\xa7\xc0\x28\xde\x74\xf1\xf7\xd4\xf1\xa7\x80\x43\x90\x02\x97\xab\xc4\xd4\x21\x01\x93\x09\x3c\x4a\xdd\x63\x38\x67\x3f\x0c\x75\x87\x49\x5c\x4c\x7c\x61\x7c\x98\x99\xb4\x18\x6f\x11\x1d\x58\x64\xc7\x54\x94\x61\xaa\xc8\xe8\x14\xba\xd0\x46\xf2\x76\x21\x9f\xf7\xd9\xd9\xb6\xa8\x7a\x8f\x09\x9e\xe6\x0d\x40\x75\x54\x43\xd4\xed\xa6\xda\x14\x6d\x50\x29\x48\xb6\xb7\x3b\x3d\xb4\x9a\xc0\xcb\x04\xa3\x0b\x1d\xd4\x3a\x2f\x4f\x52\x1e\x3e\x4b\xf9\x09\xf4\x7e\xf9\xdb\x86\xbd\xf0\xf7\x92\x5f\x20\x7c\x0e\x8a\x75\x73\x16\xe9\x8f\x7a\x51\x9f\x0d\xaa\x47\x70\x0b\x69\x62\x6b\x92\x2d\x23\xf7\x04\x9d\x2d\x23\xf7\xec\xcf\x41\xb4\x2a\xf2\x67\xcc\xcc\xbf\xf7\xa3\xfb\xaa\x57\x54\x92\xbf\x4c\xbd\x03\x95\x17\xef\x8d\xc2\xe8\xa1\x64\xc0\xa9\x5a\x13\x09\x4f\xe0\x4b\xf2\xb5\x55\x29\x6c\xe7\xa5\xad\xc2\x76\x1e\x26\x5a\xa0\x02\x1f\xc8\xc5\x5e\x4e\xe0\xfd\x14\xb4\xc2\x09\x39\xb9\x27\xa8\x22\x27\xf7\x0c\x6d\x94\x87\x3a\xca\x97\x13\x74\x24\xaa\x70\x0b\x12\x41\x08\xf9\xa2\x40\xc5\x46\x7a\x28\xf7\x04\xe4\x53\x8e\x88\x35\xf2\x96\xe1\x33\x91\xe0\x9d\x1a\xfd\xbd\x65\x04\xac\xd7\x6b\xdb\x93\x2e\x28\xc3\x5b\xba\x71\x2a\x88\x4d\x97\x9d\xd5\x51\xf4\xc8\x51\x88\x9b\x10\x04\x49\x1f\x88\xd1\x39\x82\xd8\x1c\x13\xab\x2f\x43\x15\xc0\xe9\x77\x61\x57\x53\x99\xfe\x88\xd3\x2a\x86\x79\x91\xb1\x96\x99\x54\x1c\x0c\xca\x03\x0e\x5f\xbc\xde\x0a\x73\xde\x5e\x1e\x94\x43\x74\x29\x1a\x50\x86\x2a\xdc\xcc\x83\xb2\x8e\x7a\xbf\x8b\x76\x12\xef\x87\xb9\xa7\x2d\x19\x8a\xc3\xdc\xf3\x96\x0a\xb6\x7b\x00\x4c\x22\x20\x8d\x99\x61\x66\xa2\x8c\xfa\xf4\x8e\x28\xb3\xb8\xf1\x10\x65\xa2\x65\x97\x42\x99\xa4\x18\x33\x07\x67\xd4\xa7\x7f\x18\xce\x8c\x56\x98\xf4\xf6\xf2\xb0\x6c\x85\x38\x53\xa0\x38\x33\x4a\xc1\x99\x16\xc7\x99\x16\xc7\x99\x51\x80\x33\x3e\x0f\xb2\x91\x95\x7b\x1a\x8f\x29\x11\x0a\x65\xdf\xdc\x73\xc5\xca\x3d\x4b\xf6\xc4\x17\xaf\x24\x1b\x3e\x4b\xfa\x64\x02\x1f\xd1\x32\x47\x00\xd3\xaa\xb5\x20\x40\x87\xfe\xb1\xe8\x1f\x83\xfe\x91\x51\x1e\xaa\x68\xfb\xdf\xd3\x16\xc1\xf1\xcf\x7e\x56\xac\x48\xa1\x7d\xaf\x02\x98\x79\x2f\x3b\x6d\x0e\x4c\x29\xca\xcd\xae\x36\xda\xfe\x37\xcd\x8b\xe4\xf0\x36\x12\x2f\x79\x69\x13\xe1\x8e\xec\xeb\x6a\x2a\x28\x9b\x99\x8c\x9c\xcd\x32\xf9\x5d\x8f\x66\x6d\xff\x3b\xd5\xa0\xfa\x6a\xeb\xe8\xd8\x3b\xb4\x19\xf7\xcc\x47\x62\xb1\xb1\x80\xb2\x9e\xc9\x88\x04\xe9\x4c\x3b\x14\x04\x28\x78\x65\xa8\xca\x28\x5a\x48\xe7\x42\xbd\x00\x2a\x16\x4a\x70\x09\x81\xb5\xc2\x54\xcb\x4c\x46\xb4\xd0\xd4\x96\x01\x50\xce\x66\xb9\x5a\xd2\x8b\x4e\xcb\x06\xe5\x5e\x38\xe3\x61\x02\x18\xc3\x30\x6b\x94\xa8\x35\x0a\xb3\x5a\x68\x38\x1e\x9b\xe5\x56\x26\xd3\xea\x30\xc5\xc9\x40\xf4\x47\x56\x64\xeb\xf0\x3f\xdb\xdc\x0a\x40\x5f\x81\x8a\xf0\xf0\x24\x48\x82\x00\x60\xab\x53\x64\x45\xb3\x48\xd8\x10\xb2\xf4\x69\xaa\x7c\x31\x52\xde\x53\xa9\x5c\x34\x1a\x8f\x7b\xbe\xf0\xe2\x66\x32\xa2\x83\x5c\x2a\xf6\xb8\x0c\x66\xa2\x93\x45\xb4\x06\x00\x70\xd3\x18\x8f\xc9\x78\xec\x8c\xc7\x16\x7d\x8f\x0c\x86\x7a\x00\x1a\x6c\x7c\x82\xea\x6c\x08\x59\x03\xc0\x4e\x87\x40\x0b\x3a\xd0\xe8\xe6\x06\xfa\xd0\x21\x56\x8a\xe3\xe8\xe6\x26\x9e\x80\xdc\x1f\xa6\x6e\x30\x11\x2c\x30\xf1\x61\xcf\xe2\x26\x53\xe5\xe0\x19\xa5\x7a\x9c\x26\xad\x4d\x91\x0c\x0a\x48\x17\x4c\x40\xbc\x0c\x33\x22\xe8\x03\x71\x93\x04\x47\x56\x1d\xa7\xeb\xcb\x08\x84\x02\x91\x8b\x09\x03\x2b\x22\x42\x93\x4e\xa9\x9b\x15\x36\xf2\xff\x12\x7c\xd9\x33\x99\xc5\xec\x64\x1e\x07\x0e\x4e\x13\xfc\x42\xc2\xbf\x28\xea\x90\xce\x4e\xb7\xe2\x15\x17\xb2\xa4\x53\xec\x4a\xc1\x13\x15\x1e\x43\xb1\x53\xa4\x99\x20\x2b\xfc\x4b\x98\x30\x37\xc0\xf7\xb8\x80\xb4\x9d\x3c\x28\x11\xfb\x44\x1b\x6b\x96\xda\x1f\xd3\xff\x74\xd8\x60\x5b\x2f\x93\x88\x55\x0a\xa5\xd9\xf5\x38\xa0\x2d\xe6\x55\x15\x88\xd4\xb1\xa9\x14\xba\x20\x84\x6f\x31\x61\x17\xf0\xa0\xdd\x27\x5a\x00\x51\x4f\x32\xfe\xdd\xd9\x2e\xec\xe5\x39\x48\xe9\xb0\x92\xf9\xdb\xc5\x7c\xfe\x77\xc7\xd3\xe1\x22\xd9\xde\x2b\x06\x77\xff\x5d\xa0\x42\xfc\xee\x04\x87\x73\xdc\x96\xb8\xf6\x53\xdc\xde\xd0\x34\xc8\x37\xdd\xe8\x9b\x2e\x22\xb9\xaa\xd9\x1b\xdd\x13\xc3\x51\xe8\x5b\xeb\xd7\x31\xeb\x7f\xd9\x31\xeb\xff\xc2\xbb\x4e\x32\xbf\xeb\xc4\xae\x3c\x7d\x00\xd0\x46\x23\xd1\x11\x77\x77\x81\x7f\x96\x0c\x75\x7e\x95\xa9\xc7\x32\x0a\xbb\x80\xdf\x6a\xda\xfd\x10\x39\x65\x1e\x2d\x7d\xca\xcc\xf9\xdb\xd4\x3e\x99\x79\x33\x8a\xfb\x8f\xfc\xad\xf7\xa3\x2c\x32\x20\x16\x31\x7a\xa4\x36\x24\xf7\xcc\xa7\xc2\x3b\x4a\xeb\x59\xe6\x70\x48\xfa\xde\x6b\x9b\xf9\x04\xf1\x53\xb7\x87\x67\xe6\x8a\x6f\x23\x83\xbf\xd1\x99\xd3\x11\x73\x46\x0f\xde\x0d\x4d\x4d\x0b\x0f\xdf\xc2\x6b\x57\x11\x6f\x2a\x62\x21\xd9\x7f\xe6\xde\xab\xc7\xa6\xda\x27\x16\x8a\x9f\xd1\x50\xa0\xb8\x8c\xe0\x78\x23\x7e\xb0\xc9\xa8\x6f\x7a\x0e\x73\x55\xd5\x51\xd1\x4b\xcf\x1c\x51\xd9\xce\x96\x5e\x26\xf0\xcf\x91\xe9\x90\x2a\x79\x70\x6e\xa5\xfc\xc4\x3b\x87\xf4\xc0\xef\x4f\x91\xcf\x83\xae\x05\xbb\xb6\x44\x72\xa6\x6b\x10\xcb\x5f\xa4\x64\xf1\xe0\x7e\x98\x11\xde\x0f\xe3\x53\xc6\xc3\x21\x9f\xf5\x62\xff\xd1\x29\x40\x65\x32\x38\x62\xa1\x61\xd7\xaa\xce\x2c\xf3\x5e\xb7\x49\x4e\x1d\x0e\xa9\x1a\xa2\x73\xde\x94\xb8\x2f\x00\x44\x27\x79\x03\x00\xcc\x90\x13\x7c\x8f\x7f\xec\x1d\x5f\x32\xa7\xfe\x28\xa4\xa3\x03\x12\x71\xe0\x31\x9f\x73\x6e\x89\x91\x2a\x77\x64\x32\x02\x3f\x76\x0b\x2f\x32\xe1\x9c\x6d\xf5\x2a\xbf\x8d\xac\xa1\x28\xfc\x96\x65\x4f\xd9\xdf\x04\xf0\x9b\x24\x18\xa6\x41\x84\x09\xc8\x71\x9a\x18\x6d\x2e\x3f\x01\x92\x3f\x59\x3a\xa2\xe1\x23\x11\x05\x21\x8b\xbd\xb3\xd5\xac\x3f\xe0\xac\x20\xd2\xb7\xec\x5e\x02\x17\xa0\xa0\x00\xb2\x02\x10\xc0\x04\xa4\x8c\xd2\x3f\xe6\xfb\x52\x60\x24\x3b\xe1\xc9\xc7\xe4\xb7\x29\xd8\x21\x1c\xb6\x3c\x01\x30\xb6\xc9\x0e\x2e\x4f\x8e\x59\x21\x0f\x11\x3c\x27\xc4\xb9\x30\xb4\xad\x5e\x72\x64\x7c\x03\x93\x4c\x66\x41\xe3\xfe\x2d\x13\x8a\x93\x21\x6a\x84\xef\xb8\xaf\xba\xc9\x36\xa0\x72\x71\xc1\xf7\x60\xe0\x0e\xef\xf3\x66\x86\xd1\x9b\x05\x00\xca\x4e\xce\x22\x0f\x43\xb5\x47\x94\x5b\x7d\xd8\x17\x2d\x88\xc1\x64\xd6\x72\x84\xce\xb6\x7c\x3a\x75\xd3\x70\x16\x61\xb5\x87\x14\x51\xac\xe5\x0c\x9d\xca\x96\xfe\xb0\x2e\x6e\x09\x71\xec\xa4\x94\x1a\x71\x0c\xbe\xb5\xc8\xa0\x32\x20\x4c\x7c\x62\x0f\x73\xd0\x8f\xdd\x1a\x14\xa9\xd0\x3b\xab\x48\x9b\xf9\xc2\xb3\x66\x52\xa7\xea\x19\x1d\xbb\x13\x20\xb9\x22\xa1\x10\x01\xf3\xfa\x9b\xb6\x2c\x26\x7c\xf9\xa8\x20\x4f\xc0\x04\x76\xba\xf3\x46\x15\x03\xd1\x2c\xa1\x9e\xc3\x00\xe7\xa8\x7e\xac\x3a\x36\x3b\x00\x9e\x46\xa6\xd8\x7d\xb4\xa1\x79\x33\x17\x1a\x94\x90\x7a\x7d\x27\x54\x04\xce\xc2\xd9\x91\xa4\x3e\x24\xe7\x84\x62\x72\xd9\xca\x51\xee\x64\x99\x16\x72\x20\xfd\x3d\x34\xd5\x7e\xf2\xba\x1a\x46\x16\xdd\x00\xa3\xa1\x53\x66\x77\xb8\x20\x7d\x54\xfb\xd8\xa6\x84\xb8\x7d\x7e\xcc\xbc\xba\x27\x29\x5b\x20\x18\xf5\xc0\x34\x9c\xba\xda\x23\x39\x9b\x38\x01\x93\x17\x6c\xab\x27\x40\x9f\x8a\x10\x46\x41\x00\x14\xfe\xff\xb4\xf0\xd6\x40\xed\x91\x8d\x17\x4a\x09\x82\xba\x3d\xdb\xbe\x24\x4f\x0e\x55\x2e\x68\x77\xd3\x3d\x06\x73\xc4\xb9\x9e\x45\x54\xc7\xdf\x66\xa2\xc0\xd0\x52\x00\x65\x7e\x07\xd5\x63\x23\xc8\xf1\xc8\xc0\x4f\x43\xa0\x62\x6e\x82\x05\xe4\xd4\x87\x07\x62\xf4\xbd\x8d\x14\xbd\xbc\x14\x6b\x9c\xb1\xf7\x25\x79\x41\xc8\x46\x53\x08\x83\xa2\x1a\x8f\xaa\xed\xf3\x9f\x80\x16\xc4\xd9\x54\x62\x5e\xfa\xbd\x26\x00\x26\xe7\xfa\xe2\x10\xc5\x1f\x84\x73\x8e\xe9\xaf\x0d\x80\x4e\x28\xa1\xe6\x27\x13\x2a\x82\x4f\xd1\xa4\xba\xa5\xde\x93\x58\xd7\x0c\x88\x51\xda\x02\x0d\xd4\x64\x77\x40\x6d\xe2\x60\xc7\xb1\xf4\x9b\x91\x43\x44\xa1\xaf\x3a\xea\xd6\xad\x73\x3f\x2c\xf6\xd8\xf8\xb7\x74\xca\x94\x0d\x75\xb8\xa5\x0f\x68\xa3\x5b\x77\xe4\x59\x80\x06\x57\xd1\xd8\xc5\x25\xd9\x63\x71\xfc\x52\x92\x88\x61\x1e\xe6\xd9\x59\xbf\x67\x26\xd3\x91\xea\xdf\x84\xf5\x27\x95\x42\x81\x7b\x6a\xef\x96\x74\x8c\x2e\x3a\x12\x71\x4c\xde\x98\xbd\x33\x48\x20\x83\x88\x18\xbe\xa8\xf6\xb3\xd1\x93\xc2\xcb\xc4\xec\x19\xaa\xc3\xa1\xe9\x5e\xaa\xba\xe1\x44\xb3\x82\x97\x30\xc1\x5f\x24\xe1\xff\x37\x60\xff\x04\xc8\xa7\xcf\xac\xfb\x90\x5d\x4f\xbb\xd4\xef\x89\x39\x8a\xb6\x13\x7d\x0d\xa9\xb0\xa4\x1b\x5a\x24\xdb\x7b\x03\x1f\x2c\xf3\xe9\x39\xf2\x9e\x3d\x43\x8b\xdc\x9b\x8f\xec\xca\x00\xf3\xdb\x8d\xe4\x27\x72\xa0\xdd\x53\x87\x24\x92\xcf\x9e\xe1\xc0\xb4\x88\xae\x19\x5c\xde\x3e\x67\x80\x88\x77\x9f\x5e\x00\x8e\x6c\xa2\x9c\x9e\x5f\x44\x0a\x7a\x6f\x20\xf7\x82\x67\x7e\x66\x3d\x5f\x72\x83\xfc\x12\xb4\x0d\xbd\x4b\xcd\x3a\xf4\x8e\x7a\x3c\x71\xee\x1b\xcb\x4e\x62\xb5\x57\xf9\xab\x4e\xdc\x9c\x6e\x18\xc4\x62\xc5\xbc\x2a\x07\xbc\xa5\x85\x75\x78\x39\xc8\x65\xd8\xef\x73\xcb\x3f\xa8\x1a\xf9\x7e\x3a\x18\xd8\xc4\x2f\x7f\xb5\xb0\xfc\x15\x2f\x3f\x81\xc4\x93\x73\xb9\x1f\xbe\x68\x80\x79\xa4\x2f\x95\x1a\x3b\xe1\xd1\x4e\x7f\xee\xc6\x96\x53\x08\xb2\xbf\x27\x18\x0b\x92\x03\xea\x6d\x40\x99\x6d\x7d\x12\xdb\xfa\x56\x44\x94\xc8\x64\xa2\x4f\x71\x39\x21\x5d\xc6\x98\x0d\x10\x8d\x38\x8a\x79\xff\x30\x72\x48\x9f\x15\x17\x31\x08\xee\x8e\x03\x68\xa5\x12\x19\x56\x30\x22\xf8\xd8\x54\x4a\x08\x7e\x50\xea\x7e\x3e\xa2\x1d\xbf\x70\xb3\x62\xa7\xcb\x6d\x65\xb9\x1e\xe7\xa0\xf1\x52\x90\x5d\x7d\x4d\x32\x6a\x07\xbc\x44\x69\x61\x26\xe3\xf8\x4c\xa3\x82\xb3\xc1\x6f\x09\x7b\x04\xd1\x8a\x90\x06\x6f\x4d\x87\xa6\x26\x0a\x6d\x83\xa9\xce\x8e\xb9\xa1\xf6\x7a\xc4\xb6\x37\xbc\x8a\x1b\x0f\x1e\xeb\x12\xa0\x93\x33\xd4\x7b\x02\x20\x9e\x4c\x20\x95\x31\x47\x49\x72\xe9\xd3\xae\x51\x8c\xe3\x0c\xe1\x68\x12\x8a\x12\xd1\xf2\x21\x73\xf1\xdf\xce\xe6\x29\x38\x67\x98\x7d\x42\x35\x40\x84\x10\x5b\xcc\xcb\xda\xf7\xcb\xeb\xe6\x69\xb5\x56\x49\x20\x54\x10\xa6\x81\xd7\x61\xce\x1f\xde\x05\xac\x69\x2e\xc6\xaf\x51\xcd\x59\x77\x68\xa1\xd8\xb2\x3a\x39\xba\xb0\x5e\x13\x15\x27\x0d\x2d\x38\x41\x34\x56\xad\x07\x05\xe9\x86\x50\x8a\xe4\x39\xea\x41\xf9\x15\x2d\xa8\x03\x87\x58\xbe\xa7\x5f\xba\xe2\x8b\x10\xce\x64\xc8\xcc\x96\xfd\x2b\x7c\x6c\x51\xfa\xe7\x53\x6a\x33\x80\x29\x75\x65\xb3\xff\x1c\xd4\xbf\x15\x09\x08\x1c\xee\x18\xff\x1b\x72\xfe\xa7\x70\xf5\xf5\x9c\xd8\xc4\x01\xa2\x35\x43\xcd\x65\x11\x5a\x68\x1d\x4f\x65\x3a\x8b\x16\xa0\xcc\xd3\x98\x59\x51\x47\x38\x37\xd0\x2d\xdb\x61\x5b\xbc\xac\x97\x75\xa4\x33\x23\xd7\x85\x7e\x33\xd4\x0d\x0d\xe8\x53\x68\x54\x3b\xae\x9d\xd4\x9a\x1c\x93\x32\x19\x51\xb8\x50\xce\x1b\x67\x97\x54\x9d\xe4\x65\x9b\xea\x3d\x19\x8f\xf5\xdc\xad\x6a\xcf\x15\x01\x34\x83\xad\xdc\x78\x2c\x04\x26\x88\x30\x08\x46\xec\x1e\x37\x2b\xe9\x9b\x1b\x3c\x5d\x2b\x3d\x53\xd4\x01\x18\x8f\xa7\xc4\x28\x81\x05\x04\x48\x0e\x91\xc4\x84\xb7\x84\xea\xaf\x03\xff\x54\x63\x2e\x64\xe5\x59\x90\xa5\xe2\x1c\x5f\x47\xf3\xc1\x5b\x45\x1b\x88\xea\xcc\x85\xc0\x73\xd0\x6b\x36\xea\xf9\xb7\x79\x0d\x0f\x2a\x09\xeb\x83\xa8\x30\xeb\xae\x01\x6d\xd8\x07\x00\xca\x73\x4b\xc9\xb0\x07\xeb\x00\xc0\x4d\x6b\x3c\xde\x4c\x80\x70\x3c\x9e\x2f\x0e\x8e\xc7\x69\xcc\xc1\x82\x04\xc0\xd4\x1e\x09\x80\x79\x66\x7f\xe0\x8c\xf5\xd2\x7c\xc8\x64\xa2\x2f\x8e\xc9\xc0\xf1\xd6\x31\x69\x6e\xe2\x06\xd7\x0e\x81\xd1\xb2\x30\xd2\x52\x17\x40\x1c\xac\xb2\x67\x66\x57\x70\xf3\x2b\xbe\x10\xa4\xa9\x69\x69\xdc\x82\x1a\x39\x14\xa6\x54\x12\x9f\xd7\xb0\xe7\x63\x73\x51\x3b\xae\x29\x97\x82\x44\xb8\x85\x17\x61\x9e\x4e\xa6\xae\xf2\xc5\xae\xcc\x85\xda\xa0\x88\x03\x76\x54\x89\x29\xc1\x01\x2b\x93\x3a\x5d\x30\xfb\x90\x88\xea\xb6\x7c\xf3\x29\x17\x17\xb4\x42\xae\x7e\xda\xbc\xbc\xae\x63\xa5\x76\x7d\xde\x3e\xae\x4d\xa6\x6d\x3c\xa1\x85\x76\x8e\xad\xc8\xbf\xee\xae\x85\xba\x16\x77\xfa\x63\x0a\x17\x00\xfe\x0d\xbf\x7c\xd9\xf8\xec\x44\xfd\xb8\xf5\x81\x18\x04\x8c\xe8\x18\xdd\x30\x58\x44\xc7\xc8\x16\xba\x99\x8c\xc0\xd5\x54\x2f\x3f\x5b\xf0\x4b\xf8\xc2\x0c\x49\x4a\x31\x2a\x93\x61\xa8\x66\xce\x1b\xf4\x8c\x4d\x90\xe4\x6e\xcc\xfe\x73\x26\xc3\xd3\xd8\x5e\x95\x7d\x4d\xe1\xc5\xb6\x7a\x12\xaf\x0c\x79\xbf\x92\xd7\xa9\xd7\xca\xc4\x77\xde\x56\x7d\x63\xdd\x8b\xa7\x46\x4b\xd6\x6c\xa0\x6f\xff\xdb\x35\x07\x03\x3f\x84\x85\xaf\x79\x53\xa9\xc5\xd7\x33\x25\x0f\x7e\x93\xc9\xfc\xb5\xf3\x3a\xf3\x00\x38\x01\xd3\x17\x00\xf9\x4a\x05\x1c\x59\xbf\x7f\xe0\x80\x61\xf1\x90\x3c\x58\xd1\xfd\xe6\xb3\x5a\x91\x4a\x12\xd6\x4c\x99\xf0\x86\x22\x2d\xd5\xc0\x18\x40\x09\x83\x93\x31\xb3\x74\xa0\xf2\x7a\x82\x68\x4c\x0e\xc1\xd0\xc9\xdd\x12\xb5\xcf\x23\x11\xa9\xfd\x84\xae\x0b\x1d\x6f\x81\x9c\xe9\x05\x32\x00\x34\xb8\x30\x56\x71\x45\xef\x17\x74\x28\xaa\x4f\xa0\x96\x00\x00\x15\xc6\xf8\x19\x9a\xe7\x54\x86\x7c\x5f\x2e\xdf\xab\x0c\xf9\x2e\x5d\xe5\xc8\x9d\x7a\x85\xdf\x24\x15\x85\x62\x9f\x01\x84\x4c\xbd\x2c\x3b\xec\x06\xa7\xc3\x30\x9e\x52\x59\x91\x89\x00\xe1\x63\x1e\xe6\xe1\x94\x4f\x26\xd3\x34\x25\x2b\x12\x04\x89\x2b\x9f\x93\x50\x41\x9e\x4c\xa0\x92\xea\x89\x45\x55\x78\x26\x4f\x72\x08\x66\x32\xdc\xd4\xb9\x89\x50\xf4\xdd\xd6\xbd\xf9\xd7\x96\x3a\x74\xb6\xbc\x57\xc9\xfc\xb0\x4e\x5f\xb7\x1f\x86\xea\x73\xb8\x75\xe6\xea\xf9\x11\xee\xca\x19\x0c\xe1\x39\x82\xcf\x8c\xa6\x08\xb4\xc3\xe5\xf1\x50\xf2\xb0\x66\x5e\xde\xed\x21\xab\x63\x07\xe7\xc5\xbd\x68\xf4\x88\x61\xee\xec\xa2\xd6\xae\x9e\x5e\x2b\xa7\xcd\x4b\x2a\x19\x34\x2e\x6b\x27\x3c\xee\x43\xe3\x04\xef\xd7\x24\x7e\xce\x4f\x96\xb1\x52\x8c\x98\x7e\x32\x87\x6e\x09\xcc\x12\x94\xed\x71\x32\xcc\x4c\xbe\x9d\x7c\x48\x34\x46\xf1\xdb\xc2\x48\x28\x08\x50\x8e\xa1\xe6\x28\x16\xa8\x62\xce\xd8\x29\x23\x90\xe2\x75\xd3\xa7\x10\x88\xcf\xde\xa0\x40\x78\x1e\x25\xe7\xd8\x49\x0b\xe5\x44\xa8\xc6\x0e\xbc\x07\xcc\x1c\xeb\xbd\xcb\x22\x03\x21\xd4\xaf\xd0\x8c\x9a\xc4\xb3\xf9\x1b\x92\xd3\x0d\x9b\x58\x8e\xcc\xe4\x5b\x51\x86\x24\x22\xa6\x01\x89\x24\xc8\x21\x94\x27\x13\xd8\x47\x81\x3c\x0c\xeb\xc8\x97\x6c\x61\x0d\x09\xd7\xd7\xd7\x11\xe4\xb8\xbe\xbe\x8e\xe1\xc7\xb5\x5f\x69\xb0\xb0\xa4\xd7\xe4\x6d\xec\x44\x9c\x5d\x33\xca\x09\xd9\x5a\xb6\x9f\xfd\xed\xe5\xa7\xb1\xb1\xb1\xb1\xe1\x61\xb3\xb4\x21\x08\x1b\x9b\xfa\xfd\x83\x69\x39\xaa\xe1\x94\x79\xa6\x87\xd6\xd2\x06\xc5\xf4\x78\xf6\x84\x97\x60\xff\x72\xbf\x65\x07\xd9\xfa\xdb\x9b\xfc\x6d\xea\x42\xc5\x92\x86\x33\x9f\x3a\x3a\x9e\xed\xe0\xf2\xe4\x18\x51\xb9\x23\x26\x36\x26\x5c\xd8\x7d\xf5\xcb\x12\x31\xdc\xa1\x9a\x12\xa1\x68\x69\x20\xd2\x29\x74\xa1\x8c\x48\xa7\xd8\x2d\x3b\x11\xc9\x05\x19\xd0\x09\x65\x17\x24\xc7\xdc\xcb\xe3\xde\xe5\x3d\xa2\x0f\xc5\xaa\xea\x90\x9c\x61\xba\x22\xc8\x16\xc8\x47\x7e\xbc\x6f\xa9\x46\xdf\xbc\x17\x01\xc8\x39\xe6\x05\xbf\xfc\x54\xf8\xc0\x1c\xcb\xb7\xff\x4d\xe5\x6e\x89\xd2\xc4\x9f\xdb\x62\x2e\x0b\xca\x22\x65\x10\x1f\x4a\xa0\x02\xc5\xdc\xef\xec\x5e\xe7\x51\x0a\x3d\x4e\x98\xa7\xfd\xa3\x18\xec\x53\x29\x7e\xce\x1f\x18\x43\xa7\x0f\xc6\x38\xad\x74\x22\xba\x33\x33\x50\x55\xd8\xbd\x87\x33\xfa\x13\xf0\x33\x11\x48\x52\x6c\x71\x71\x1f\x8b\x46\x18\x38\xa1\x22\xf0\xe1\x73\xb7\x92\x62\xb7\xc2\xad\x3f\x39\xd5\x31\x6f\xc4\x3e\xe9\x99\x7d\xd2\x3e\x6f\x50\x25\xcf\x34\xe8\x12\x92\xce\x4e\x17\x00\x69\x56\x4e\xe4\xac\x89\xf9\x0f\xcc\x33\xd2\x5c\x26\x6d\x1d\x70\x96\x99\x72\xc6\x84\x1c\x34\x0b\x7c\x65\x27\x67\x3e\x10\x43\xa4\x2c\xd5\xb5\x74\x87\x50\x75\x90\xdb\x57\xef\x45\x9c\x6c\x2e\xb4\xee\x24\xc1\x3e\x09\x00\xe5\xe4\x98\x1f\x97\x08\xa0\x35\x01\x93\x94\x79\x26\x3d\xaf\x23\x43\x4c\x90\x65\x66\xa0\x15\x62\x2d\xfb\x14\x2d\xca\x71\xb6\x82\x60\x01\x02\xf4\xa2\x41\xe6\x1e\x75\x5b\xbf\xd1\x87\x8c\x0e\xdf\xea\xfd\x3e\x31\xc2\x3c\x3f\x16\x12\x12\x06\xfa\x13\xe9\x87\x19\x43\xba\x29\x84\xad\x42\x3e\x9f\xcf\x3f\x3c\x85\xef\x1d\xf3\x01\x09\xb1\x37\x3c\x76\x0f\x12\xf2\xf4\x15\x97\x1c\x3c\x09\x22\xdc\x07\x00\xfa\x97\x58\x82\x8b\x24\xf1\x4c\xbe\xf5\x74\x43\x43\x82\x61\xb2\xb6\x17\x58\xae\xb9\xda\x0a\x05\xc7\x1a\x11\x81\x87\x10\xea\x3f\x57\x44\x3c\x2d\x04\x39\x00\x26\x37\x90\x03\xa6\xd6\x42\x10\x40\xdc\xb1\x3b\x7a\x75\x30\x82\x2d\x94\x94\x84\x18\x33\xcf\x72\xc8\x44\x11\xe2\x5b\x05\xb1\xff\xc3\xc9\x99\x86\x45\xd4\xfe\xb3\xed\xa8\x0e\xe9\xdd\xaa\x86\x46\x92\x87\x38\x04\xd9\xc4\x69\x50\x65\xf5\x51\x1d\x46\x51\xce\x93\xf1\xa6\x62\x88\x7e\xc9\x67\x32\x42\xcf\xa4\x42\xab\x43\x78\x10\x39\xd6\xc7\x05\xed\x23\x93\x11\x7b\x43\xa2\x5a\x41\x83\x04\x40\x8b\x45\x35\x85\xbb\x54\xa0\x02\x13\xf8\x88\xc4\xb8\xeb\xd0\xb4\x58\x05\x65\xff\xee\x28\x9d\x6d\x4b\xe4\x2f\x37\x0b\x54\x76\xb1\x11\x9e\x69\xb3\x35\x53\xf2\x3c\xfb\x6c\x39\xdc\xd3\xd3\xf4\x27\x30\xbb\x1a\x89\x05\xd0\x91\x1c\x2c\x00\xec\xa1\x7b\xd1\x98\xde\x9a\xea\xb4\xbe\xea\x87\xbf\x79\x00\x50\x0e\x28\xbd\xc8\x11\x1d\x32\xbc\x06\x70\x73\x5b\xd4\xcf\xd4\xfe\x58\x3f\xbb\x35\x0d\x32\xd6\xcf\xcc\x3e\xd8\xd6\xb8\xfa\x61\xa8\x8f\xba\xa6\x3a\xa6\x95\x1b\xd9\xc4\xc2\x1a\xa5\xaf\xe3\xb1\xdf\xd4\x15\xa5\x84\xb4\x91\x4c\xc6\x7f\xf5\x9d\xbd\x62\x3e\xb0\x63\x51\x9f\x3a\xb1\x0a\xb7\xd3\x16\x4b\xb2\x02\xdd\x54\xb3\xca\xb1\xed\xb8\xc5\xd3\xf9\x25\xc3\x1d\xad\x7a\xb7\xc8\x04\xe0\x09\xec\xc9\x6d\xd0\x31\xa0\x3a\xc3\x5c\x06\xd5\xc4\x21\x0e\xbb\xe2\x69\xe5\x4c\x83\x95\xf7\x57\x6e\x56\xf5\xa8\x95\x42\x8e\x5a\x4a\xc6\xe3\x65\xaa\xc4\x31\x66\xe5\xea\x51\x73\x63\x8a\x55\xcb\xae\x24\x01\x31\x93\xb6\xdb\xa2\x3e\xcd\x8c\x42\xca\x3f\x01\x92\x93\x46\x48\x02\x32\xad\xfb\x1c\x45\xf7\x38\xca\xa3\x18\x65\xd6\x4c\x7a\xcf\x0a\x9f\x29\x65\xfb\xf2\x79\x9b\x25\x02\x98\xf2\x09\xdc\x8c\xc1\x63\x3c\x26\xcc\x44\x33\x63\xc3\x65\x32\x4e\x6a\xb6\xb7\xe7\xc6\xe3\x78\x56\xb8\x13\xa0\x03\x26\xa2\x93\x60\xae\x36\x34\xe9\xe0\x63\x07\x10\x7a\x4e\xed\x9b\x0f\x5c\xd6\x56\xa7\x64\x8e\x69\xc4\xa4\xaf\x7c\x3e\xd8\xa3\xd4\x26\xcd\x89\xbc\x1c\xba\xb0\x88\x24\x8b\x84\xcf\x9b\xd5\x53\x85\x2a\x00\x1b\x02\xc4\xcc\x80\xcf\x33\xb0\x6f\xcc\xcf\xf9\x87\x97\x17\xa3\x1b\x36\x6d\x9e\x1b\x7f\x4b\xcb\x3d\x8c\x6e\x86\x7a\xaf\xd1\xe7\x25\x7e\x63\x4e\x30\xfe\xbb\xec\x6f\xc2\x6f\x2c\xca\xe9\xb3\xed\x90\xfb\x78\x19\xff\x1d\x2f\x43\xc7\x44\xd7\x86\xc4\x27\xb0\x1e\xa7\xcd\x73\x6f\xab\xb1\x28\x99\x31\x2f\xcd\xff\xbd\x4e\x80\x85\x3c\x0b\x9e\x69\x21\x79\x7e\x68\x73\x9b\x7b\x0a\x86\xde\x7f\xe6\x7b\x05\x8c\xd1\xe7\xf9\x05\x82\x17\x33\xee\xb7\xe7\xbb\xd4\x79\xee\x7a\xd7\x5c\x44\x0e\x1c\xee\x58\x78\x3e\xee\xe8\xa6\x11\x87\x47\xeb\x13\xad\xdc\xd0\xec\x71\x8b\x13\x73\x91\xf1\x1c\xfa\xd4\xde\x2d\x41\x2f\x93\x98\xe3\x9e\xe7\xa9\x77\xcd\x42\x42\xa1\x7c\x8a\x0b\x1c\x95\x36\x96\x89\x60\xeb\x3b\x3c\xdc\xaa\xb6\x8f\x87\x0d\x43\xa1\x7d\x26\x3d\x7e\xb5\xc8\x8b\x70\x64\x1d\xdc\x45\xfd\xc4\xc1\x7e\xec\xf8\x7c\x3c\xce\x03\xc8\x1a\xd8\x54\x44\x0c\x28\x0d\xf7\xd6\x2f\x77\xd1\x3e\x3b\x3b\x3d\xbf\xbc\xbe\xf8\xba\x7f\x5d\x3d\xc7\xdf\x1a\xcd\x7d\xbe\x72\x2c\x16\x43\xb4\xc1\xf0\x5c\x7f\x3c\x76\x59\x2b\xdc\xa2\x6d\x5f\xa8\xf7\xc4\x03\x5f\x62\x74\x6a\xdf\x0f\x65\x0c\x31\xbf\x47\x33\x10\x37\x53\x6b\xd1\x2e\xa7\x1c\xe7\x62\xdd\x33\xb5\x29\x7d\xee\x2c\xe0\xa7\xaf\x4b\x2d\xe9\xde\xd0\x67\x6e\x50\xb3\x80\x35\xf1\xc1\x35\x05\x05\xef\x38\x3f\x93\x99\x06\x21\x7d\x7f\xcd\x0c\x3d\x17\x73\xa0\x40\xe5\xbd\x84\x2b\xd9\x32\x38\xe2\xdf\xc8\x10\x31\xa8\x2c\x5c\x6b\x69\x36\x3a\x55\x62\xa0\x93\xd2\x16\x63\x3c\xf6\x57\x62\x73\xf6\x4a\xf0\x76\x9e\x6e\x2d\x3f\x56\xb5\xf4\xfe\x6b\x12\x80\xcd\xef\x76\x39\x98\xc5\x07\x36\xc3\xc7\xc0\x0b\x69\x6d\xb0\xfc\xef\x27\xc7\x07\x8e\xf3\x70\x4e\xfe\x1c\x11\xdb\x61\x01\x43\x16\xe8\x0c\xfa\x40\x2c\x21\x84\x8c\x88\xd0\x0f\xf4\x81\x58\xcc\xe7\x37\xe9\x5b\x5a\x6b\x64\x03\x4b\x14\xea\xaa\x3e\x24\xfd\x0d\xc7\xe4\xde\x6c\x1b\x6c\x96\x1b\x02\xe5\x76\x91\xb0\x2e\xc5\xdd\x0f\x20\x2b\x6c\xb8\xba\x73\xbb\xc1\xeb\x6e\x50\xc5\x7d\x43\xc8\x06\x6d\xb1\x3b\x71\xde\x6c\x13\x5e\x6a\x84\xa2\x5c\xed\x91\x18\xce\xb1\x6e\x3b\xc4\x20\x96\xc8\x68\x91\x00\xa7\x5c\xd5\x88\xef\xaa\xc6\xe2\x89\xd2\x3d\x0a\xd3\x6a\x33\xaf\x09\x01\xa6\xac\x99\x15\xa9\x17\x77\x73\xa3\xb0\xb0\x1f\x4c\xc3\x66\x37\xaf\xc3\x27\x76\x84\x2a\xdc\x0c\xcd\x1b\x61\xc6\x6a\x47\xcc\xbc\x29\xb9\x65\x23\xe7\xf0\x5f\x48\x86\x74\x5d\xfc\xa7\x69\xf1\xd0\x62\xb2\xe0\xc4\xe0\x32\xa0\xb0\x5f\xbb\x14\xf8\x16\x84\x46\xce\x26\x46\x7f\xae\x6b\xe0\x42\x0a\x11\xc3\xab\x00\x37\x29\xa0\xb9\x73\xda\x6c\xec\xf4\xd4\xee\x08\xff\xc8\x66\x41\x0a\xba\x92\xee\x94\xc6\x80\x19\x87\xf6\xfa\x9a\xde\xe1\x69\x7d\x7a\xed\x06\x57\x10\xd3\xc7\xed\x53\xa9\x59\x61\x85\xbd\xcf\x5c\xd0\x7d\xc5\x37\xca\xb2\xde\x94\x09\xbd\x95\x75\x42\xb7\x94\x3a\xdb\x5d\xc7\x10\x55\x30\x81\x38\x93\xd9\xa4\x9a\x9b\x9a\xeb\x59\xa6\x6d\x73\xfa\x84\x04\xd5\x30\x8d\xe7\x7b\x73\x64\x0b\x00\xaa\x81\x47\x8f\x0c\x55\xee\xd1\x03\x19\xcd\x56\x73\xbe\x2e\x9e\xc9\xd8\xc4\xf1\x16\x2e\xaa\x41\xf0\x3e\x76\xf3\x79\x00\xad\x39\x58\xc8\x54\xae\x34\x2c\x4c\x6f\x35\xf8\x4e\x0a\xb3\x66\xd8\x4c\xb7\x4f\xa7\x43\x6d\x91\x80\x4c\x66\x53\x11\x09\xa8\x4c\xf3\x12\x19\x5f\xd4\x3e\x94\x7c\x8e\x2c\xfa\xba\x39\x8b\x97\x4f\xf1\x17\x87\x2c\x24\x42\xbc\xe7\xac\x7e\x42\xce\xc1\x20\x60\x6c\xec\x45\xd0\x5c\x50\x64\x3e\x6d\xcd\x5d\x0f\x75\xe3\x6e\x3c\x16\xc3\x07\x14\x95\xb2\x72\xb3\x0e\xda\x54\x01\x84\x56\x4c\x7e\x36\xe7\xfb\x23\x23\x9e\x40\x4f\x34\xed\x99\xc3\x2c\xc9\xdd\x9a\xb6\x43\xf5\x8d\x2c\xd5\xab\x2d\x27\x12\x24\x57\xed\x3f\x4f\x8d\xd1\x27\x6b\x4c\x0e\x24\xc8\x93\x94\xef\xc8\xb3\x2d\x86\xd0\x67\xc6\xe8\x59\xee\xd6\x38\xd8\x7a\x33\x7d\xa3\xf9\xc5\xb1\x88\x8e\x19\x75\x5e\x76\xe6\xfb\x1a\xf7\x3c\x97\xea\xb4\xc0\xb7\xba\xe7\x67\x91\xd4\x46\xe6\x7c\x25\x28\x21\xf1\x5e\xd3\x99\x06\xf2\xae\x6f\x3e\xb0\x91\x93\x22\x9c\x6a\xc4\x59\xb4\xc4\xb4\x35\x1e\xf1\xf4\x74\x20\x62\x7f\xba\x5b\x05\x1e\x49\x6c\x34\x1c\x4a\x89\x8e\x3a\xa4\x1b\xba\x01\x0c\x7d\xa3\x3b\xdb\x36\x3f\xb7\xed\x47\xed\x67\xf6\xe9\x7e\xe8\x05\x6e\x8c\x66\xe5\x7e\x2f\x73\x73\x36\xe4\xa1\x1a\x13\x99\x2c\x5a\x63\x0a\x40\xbd\xd8\x69\x38\x71\x98\x1c\xe4\x8f\xc2\x7c\x2d\x25\x9f\xf3\x20\xee\x6c\xc1\x78\xaf\x98\x87\x25\x10\x3f\xd2\x0c\xca\xda\x8f\x5a\xac\xe8\xd6\x0e\x88\xdf\x63\x1c\x8f\x87\x61\x77\xfd\xf4\xe0\xb6\xcb\xc8\x1e\x9c\x3e\x1a\xf3\x7c\x19\x0d\x30\x61\x8c\x8f\x53\x3e\x8b\x32\x33\xab\x87\x30\xa7\x7c\xc6\x42\xca\xc7\x1b\x60\x94\x6f\x66\x99\x18\x03\x85\x04\xac\xff\x16\x2a\x24\xbe\x67\x17\x3f\x64\x27\xa9\xae\x45\x88\x44\xfd\x86\x10\x99\xf6\x06\x43\x24\x77\x79\x7a\x54\x6b\xf2\x70\x94\x64\xe6\x31\xe6\xaf\xab\x97\xff\x65\x57\x2f\x1d\xb1\x50\xe2\x86\x88\x3d\x00\xd5\x79\x2b\xfb\xc2\x4e\xa8\xf3\x90\x1f\xb2\x17\x26\xd0\x8e\x23\xc5\xcb\xc5\xe5\x79\xa3\xb9\x2f\xe5\x21\xbe\xbc\x3c\x6f\xc8\xed\xcb\x9a\x54\x80\xed\xf3\x63\xa9\x08\x95\xd3\x76\xf3\xb2\x76\x2e\xed\xf8\xbf\x2e\xa4\x12\x3c\x3d\xab\x35\x5b\xed\xd3\xcb\x9a\xb4\x0b\x95\xe3\xd3\x8b\x1a\x7f\xf8\x30\x81\x66\x10\x19\x33\x86\x83\xd3\x97\x11\xf1\x78\xbc\x89\x73\xbd\x48\xa1\xf1\x98\x3b\x34\x30\x2a\x12\xcd\x00\xfe\x95\x9b\x72\x68\x4d\x62\x2e\x47\xf1\x62\x5e\x90\xa2\xed\x9f\xf6\xef\xf0\xa7\xfd\xfb\x36\x8b\x48\xe4\xbb\x29\xa8\x28\x5f\x56\x3f\xcb\x65\xd5\x37\x3c\xd9\xc8\xe8\xa8\xdd\xb0\x4e\x76\x1b\x40\x13\x59\xa2\x0d\x8b\x00\xea\xc8\xec\xe4\xbb\xb0\x87\x4c\x16\xc1\x9f\xe3\x8f\x0e\xbc\x10\x05\xc4\xef\xd6\xee\xe8\xdd\xf2\x70\x3c\x16\x13\xef\x50\xa7\x0b\xe0\x90\xd7\x62\xb0\x68\x18\x8e\xd8\x1b\x8f\xf3\xb0\x90\x07\x20\xc4\x0c\x18\xdf\xbc\x71\x20\x85\x73\xc5\xe1\x87\xa6\xf2\x65\xeb\xb3\x53\xb6\xb2\x59\x10\xe9\x10\x77\xac\x6e\x97\xb6\x24\x52\x52\x94\x4e\x26\x92\xa4\x89\x5d\xf0\x1f\x8f\x37\x89\x7f\x74\x11\x81\x7e\xf4\xdd\x94\x0b\x4a\x22\x3f\xac\xe3\xbb\xa0\x44\x64\x00\x4f\x10\x36\xc5\xa0\x46\x6c\x4d\x74\xba\x8a\x23\x24\x08\xb0\x15\xc2\xaf\x61\xf4\x2c\x26\x0a\x51\x2a\xd2\x8a\x38\xb9\xb4\xf8\xba\xb9\xa8\x15\x5f\xb4\x36\xb2\x44\x97\x2e\x9a\x86\xda\x74\xd1\x14\xd4\xee\x14\xba\xb0\xcf\x3c\x65\x3c\x08\x69\xdd\x72\x3f\x93\x11\xfb\x9d\x7e\x10\xc6\xb3\x9b\x45\x41\x88\x3b\xa5\x52\x90\x82\x75\x52\xf8\x22\xf9\xe0\xaf\xa3\x7c\xb9\xfe\x59\x2e\xd7\x7d\xc4\xa9\x21\xa3\x53\x0f\xfc\x5b\x6a\xf1\xaf\xa3\x78\x1b\x69\x94\x45\x35\x4e\x6d\xc6\x63\x41\x88\x7f\xef\x24\xdc\x62\x78\xc6\x89\x40\x26\xe3\x55\xce\x64\xc4\x51\x96\x3b\x31\x85\x27\x8d\x5e\x1e\x60\x81\x38\xe2\x4d\xfb\x7b\x95\x0e\x73\x10\x9d\x7f\x8d\x99\xa4\x69\x8d\x6e\x79\xc0\x5b\x1d\x8a\x9d\x41\x67\x10\x82\xa3\x0b\x05\x01\xd6\x7c\x07\xb6\xf4\x86\x2f\x58\xcb\xb7\xb3\x5a\xbe\xf5\x5b\xbe\x85\xb5\x9c\x36\x1c\x91\x99\xed\x85\xf4\x63\x94\x45\x54\xe4\xdb\xcc\x43\x27\x17\x5e\xbb\x05\xb1\xa7\x6c\x36\x31\x9a\x90\xe2\x44\x8b\x6d\x6d\x41\xbf\xb5\x42\xbc\xb5\x78\x75\x4a\xd7\x46\x99\x8c\xa8\x7b\xc1\x5a\xe9\x02\x4a\x2a\xf3\xe2\xf1\xe4\xbd\xd1\x04\x30\xbc\x04\x30\x51\x86\x11\x50\xaf\x50\x64\x81\x27\xa1\x49\x79\x94\xc9\xcc\x6f\x57\x9f\x24\x19\xfb\x14\x6d\x24\x99\x0c\xd5\x80\x40\x10\x3f\x03\x27\x28\x9f\x15\x92\x04\x8f\x4f\x6e\x16\xa0\x4a\xff\x98\x74\x37\xf5\xe8\x9f\x21\xdf\x5c\xf9\xf2\xe8\xb3\x55\x1e\xf9\xc8\xdb\x62\x1f\x7c\x50\x2d\xec\x88\xa3\x20\xe6\x44\xcb\xf3\x7d\xfd\x8d\x7b\xb2\xfe\x26\xfc\x26\xc9\x15\x33\x8b\x5a\x92\x68\xa0\x4d\x03\xaa\xe3\xb1\x41\x35\x99\xe8\xbc\x7c\x54\xf7\x66\x66\x4e\x00\xeb\x3b\x1e\x36\xe9\xe7\x4f\x41\x92\x2b\x22\x6d\x8a\x8d\x11\x48\x32\xda\xcc\x47\x4b\x88\x82\x64\x78\x5d\xa9\x94\xe7\xf6\x90\xc9\xe7\x40\x87\x1f\x6b\x0b\xb0\xa0\x4b\x06\xa0\x85\x83\x70\x47\x6a\x10\x03\xd1\xcc\x64\x86\xfe\xd7\x14\x60\xcf\x9b\x90\xea\x38\x96\x20\x0d\x23\x27\xd0\x89\x39\x04\x7b\xd1\x9b\xc6\xb0\x93\xef\x4e\xe2\xc1\xc2\x38\xa2\xb3\xce\xc3\x86\x7c\x52\xe4\xb7\xe3\xed\x0f\x48\xf7\x02\x6f\xa4\x3c\x8c\xde\x24\x76\xbd\x7d\x80\x86\x9d\x42\x97\x22\x37\x1b\x85\x1b\x8b\xa1\xe5\x6f\xa9\xd4\xae\xda\xc9\xae\x2e\x66\xf6\xd5\x66\x5b\xcf\xeb\x29\xc8\x29\xb2\x9c\x60\x14\xc5\x70\x14\xed\xd8\x28\x46\xd6\x70\x2e\xc4\xda\xe7\xc7\x31\x58\x4d\x02\xb4\x8b\xb6\x02\x83\x65\x55\x33\x19\x31\x5c\x18\x86\x22\x51\xf0\x6e\x78\xce\xd3\x3f\x9d\xa0\x86\x49\xb7\xa6\xe8\xc0\x44\x71\xff\x3c\x85\x96\x99\x50\xcc\xa2\x2c\x21\x93\x11\x19\x5e\xf9\xbb\xcf\xcc\x64\xbc\xaa\xec\x2c\xae\x83\xbb\xc8\x01\xd0\xa1\xdb\x2e\x3d\x74\xa6\xef\xf6\x6d\x3e\x10\x63\x8b\x51\x0c\x41\xc2\xf1\x19\x07\xb4\x6a\x32\x1d\x45\x6e\x46\x95\x90\x40\x31\xb5\xa0\x37\x23\x46\x2f\xe6\x34\xca\xae\xf8\x3f\x62\x8c\x4d\xea\x08\xbf\xfd\x14\x7e\x13\x20\x4f\xa8\xbc\x53\xfc\x3d\xf4\xe7\xf8\x12\xb8\x60\xb2\x78\x42\xfe\xc3\x56\x11\x40\x32\x1e\x67\xb3\x06\xb4\x3a\x46\xd7\x3f\x16\x15\xb7\xff\xdd\x11\x7e\xeb\x8e\xe9\x9f\xff\xd9\xd6\x20\xd3\x5a\x86\x68\x76\x68\x6e\x1c\x0a\x4e\x82\xe0\x39\x79\x5a\xcc\xc9\xd3\xa6\x58\x21\xaa\x59\xc4\x48\x1f\x80\x6a\x96\xc7\x66\xe6\x76\x0c\x4f\x98\xb9\x24\x4f\x0e\x10\x71\xc7\xee\x46\x9c\x9f\x8e\x75\xdb\x61\x0e\xa5\x54\x02\x06\x22\x15\x1f\xfa\xa4\xa7\xdf\xab\x43\x01\xc0\xc8\x25\x27\x95\xea\xc8\x13\x50\xfe\xff\x02\x00\x00\xff\xff\xe0\xd4\xad\xc2\xfa\x88\x02\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\xfb\x77\xe3\xc8\x75\x20\x8e\xff\xbe\x7f\x85\x84\x8d\x69\xa0\x59\x44\x03\x24\xf5\x02\x1b\xad\x03\x4a\xec\x6e\x7a\xd4\xa2\x9a\xa2\xfa\x61\x0e\xad\x03\x91\x25\x0a\x6e\x08\xa0\x81\xa2\x1e\x96\x78\x8e\xd5\xed\x78\x1d\xdb\x13\xbf\xd7\xf6\x3a\x8e\x63\xaf\xd7\x71\xfc\x58\x3f\xb3\x19\x27\x5e\xef\x3f\xf1\xdd\x93\x9f\x77\x39\xe3\x38\xdf\xcc\xe7\x7f\xf8\x9c\x7a\x01\x85\x07\xa9\xee\xf1\xf4\x24\xe7\xe3\xcc\xb4\x40\xa0\xea\x56\xd5\xad\x5b\x55\xb7\x6e\x55\xdd\x7b\xeb\xe6\x8d\xc5\xff\xb0\x70\x63\xe1\x08\x1d\xbb\xe5\xbe\xed\x9d\xd8\xe1\x82\xae\x6a\xaa\x56\xb2\xdd\xd1\x91\xad\xea\xfa\xc2\xad\x23\x84\x46\xa1\x71\xf3\xa6\x00\xa3\x1e\xc1\x00\x7d\x1c\x7a\x6a\xdf\x3f\xbe\x8d\xd3\x6f\xf8\xa3\xf3\xc0\x19\x1e\xa1\x05\xb9\xaf\x2c\x94\x35\x7d\x75\x61\xdb\x79\xea\xda\xe1\xc2\x89\xef\x2d\xdc\xa3\xd0\x42\x56\xa9\xe4\x6d\xe8\x42\x3b\x84\x83\x85\xb1\x37\x80\xc1\xc2\xfd\x66\x67\x61\xcb\xe9\x43\x2f\x84\xff\x61\xe1\xc6\xcd\xff\xb0\x78\x38\xf6\xfa\xc8\xf1\x3d\xd9\x02\x50\xb9\x90\xfc\x83\x8f\xc2\x3e\x92\x4c\x13\x9d\x8f\xa0\x7f\xb8\x00\xcf\x46\x7e\x80\xc2\x42\x21\x13\x73\xec\x0f\xc6\x2e\x5c\xa7\x3f\x2a\x83\x33\xa1\xac\x18\x12\xcf\x33\x06\x1e\xc0\x43\xc7\x83\x85\x02\xfd\x55\xed\xe3\xc1\x3a\x7d\x95\xbb\x3d\x00\x15\x63\x56\xb9\xeb\xec\x57\x15\x28\x44\xca\xb0\xd2\x21\x13\x19\x1d\x39\x21\x88\xaa\xa3\x5c\x04\x10\x8d\x03\x6f\x21\xae\xa0\x72\x71\x62\x07\x0b\xd0\xbc\x98\xd4\x78\xe0\x02\x92\x03\xe5\xc2\x39\x94\x61\x37\xe8\x29\x2c\x05\x7e\xe7\x15\xaa\xe1\x24\x9e\x89\x83\xcc\x0b\xc7\x08\x80\x6b\x2c\xea\x80\x45\x1a\x17\x93\x49\x8d\x25\xb2\x70\xa2\xbe\xed\xba\xb2\xc7\xd3\x02\x0f\xc4\xef\x48\x01\x9e\xea\x9a\x8b\x5a\x1c\x36\x61\x49\x91\x7a\x6c\x5a\x00\xa9\x7d\x13\x02\xa4\x0e\x4c\xb1\x49\x40\xa0\x5c\x20\xd5\x27\xad\x73\x79\xd9\x22\x54\x52\x29\xe9\x76\x02\x7f\x04\x03\x74\x4e\xc0\x2e\xfa\xbe\x77\xe8\x0c\xc7\x81\x7d\xe0\x42\x82\xa2\x37\x3e\x86\xec\x4b\x03\x43\x88\x8c\x60\xa2\x4c\x00\x52\x3d\x33\x4b\x11\xab\x50\xb0\xd4\xfd\x7d\x18\xde\xa7\x8d\x9a\xa5\xa2\x85\x0b\xb5\xc7\x2e\x9a\x18\x39\x91\x11\x15\x90\x3a\x90\x21\x90\x6c\x09\x40\x05\x40\x5c\x9c\x6f\x26\x7b\x18\x03\x64\x35\x19\x05\x3e\xf2\x71\x93\xab\x47\x76\xd8\x3a\xf5\x78\x9d\x28\x25\x71\x02\x9c\xc7\xc8\x94\x24\x80\x64\xa4\x86\x66\x79\x45\x99\xc8\xdd\x04\x85\x90\x72\x21\x8d\x43\xb8\x10\xa2\xc0\xe9\x23\xa9\x96\x4f\x24\x08\xa4\xb8\x82\x12\xb8\x38\xb1\xdd\x31\x26\xcd\x44\x21\x4d\x1c\x98\xf3\x7a\x0e\x46\xdc\x39\x94\xad\x20\xb0\xcf\x55\x27\x24\xbf\xb2\xa5\xf0\x0e\x63\xd5\x9c\x43\x79\xf7\xfc\xf8\xc0\x77\x55\x07\xc1\xc0\x46\x7e\xb0\xe0\xf0\x4a\x0a\x80\xc9\x1c\x71\xb9\xc8\xec\xf6\x40\x40\xba\x85\xb9\xa8\x83\xba\x79\xe2\x3b\x83\x05\xad\x86\x82\xf3\x8b\x43\x3f\x90\x31\x8c\x0d\x42\xd3\xea\xa6\xf2\xef\xc9\x4a\x6d\x51\x0e\x4c\xd9\x36\x43\xd5\x83\x67\x48\x56\x14\x75\xe0\x7b\x50\x29\x14\x64\xa4\x8e\xc6\xe1\x91\x6c\xab\xa4\x96\x0a\x58\x84\x97\x97\x48\x75\xa1\x37\x44\x47\x8b\xa6\x09\x95\x1a\x2e\x52\xa9\x4d\xfa\x36\xea\x1f\xe1\x7e\xe0\x61\x14\xea\xa6\x35\x39\x74\x3c\xdb\x75\xcf\x2f\x30\x02\x8b\x41\xa1\x10\xaa\x14\xf7\xf8\x4d\x56\x22\x20\xe7\x50\xf6\x14\x74\x14\xf8\xa7\x0b\xf5\x49\xd4\x9d\x27\xa4\x7a\x35\x1a\xee\xc1\xd3\x85\xce\xf9\x08\x36\x82\xc0\x0f\x64\xa9\xe9\x9d\xd8\xae\x33\x58\xb0\x11\x82\xc7\x23\xb4\x80\xfc\x85\x01\x0c\x51\x30\xee\xa3\x71\x00\x17\x3c\xdf\x2b\x91\x1a\x1e\xb8\x70\xc1\xf1\x42\x64\x7b\x7d\x28\x29\x93\x89\xac\x00\x4f\x6c\xa2\x68\x00\x5b\x94\x96\x9c\x56\xc8\xd4\x6a\xe8\x16\x64\x75\xad\xa1\x62\x91\xd2\x39\x30\x61\x17\xf5\x6a\x81\x1a\x8f\x0b\x53\xfc\xb8\xbc\x5c\xd4\x41\xa0\x8a\xa3\x08\x53\x44\x22\x04\x94\x1c\x6f\x21\x28\x14\xe4\x40\x3d\x0d\x1c\xc4\xe2\x14\x30\x6b\x34\x06\xea\x53\x78\x0e\x02\x25\xa2\x48\x84\x37\x04\x08\x0f\x68\x4e\xa8\x42\xc1\x92\x61\x3c\x06\x30\x8f\x08\x48\x18\x08\xf0\xe8\x99\xc8\xb4\x6f\xd6\xcd\x9b\x1f\xf9\x8f\x72\xd7\x2e\x1d\x6a\xa5\xb5\xde\x45\x65\xa2\xfc\xc9\x4d\x07\xd8\x79\xe3\x58\x3d\x26\x0d\x5a\x57\xd8\x80\x5c\x5c\x84\x85\x42\x77\x64\x07\x21\x6c\x7a\x48\x86\x5d\xbd\xd7\xd5\x7a\x45\xf6\x0b\xf4\x65\x05\x24\x23\x75\x16\xa9\xe7\x45\x96\x59\x64\x99\x46\x7a\x63\xd7\xed\x4d\x40\x98\x44\x6f\x99\xa2\xe7\xcf\x41\x2f\x9c\x83\x9e\x1a\x8e\x0f\xf0\x48\xf6\x86\xb2\x06\xca\x4a\x16\x0b\x01\xa0\x0c\xaa\xf3\x01\xaa\x60\x59\x11\x51\x75\xcc\x9b\x1f\x09\x86\x07\xaf\xcb\xaf\x87\x37\xe4\xd7\x07\x17\x3a\xa8\x4c\x94\xd7\xc3\x1b\xe0\x9a\xef\xd7\x95\x3f\xb9\x09\xfa\x73\x6a\xe4\x24\x6b\xb4\x3d\x3e\x3e\x80\x01\xc1\x46\x01\xd1\x47\x59\xfc\xa8\xf4\x22\xac\x5c\x8a\x95\xfd\xd2\x68\xb1\xef\xf5\xd7\xd5\xf5\xd7\x07\xc5\x08\xd1\xf1\x1c\x44\xdd\x18\x51\x19\x16\x0a\x7c\xa0\xdc\xae\x2a\x2f\x8e\x76\xf4\x51\xed\x29\xbd\x09\x78\x90\x28\x8e\xe6\xde\xbd\x6f\xa3\x23\xf5\xd8\xf1\x64\x0b\xf7\xb3\xf2\xd2\x92\x02\x84\x20\x3d\x1b\x54\x66\x41\x16\xc7\xa8\xb2\x6e\x75\x2b\x3d\x83\xd1\xe8\x34\xa7\x4e\xc3\xae\xa5\x22\x7f\xcb\x3f\x85\xc1\x86\x1d\x42\x59\xe9\xf1\x69\x88\x0c\xe7\x09\xd8\x9b\xc1\x31\xa0\x72\xb1\x98\x61\xee\x8b\xb2\x15\x71\x1c\x2c\x80\x28\x4a\x2e\x03\xdb\xb0\x3d\xcf\x47\x0b\x78\x7e\x5a\xb0\x17\xfa\xae\x1d\x86\x0b\x76\xb8\x60\x47\x83\x5c\xe2\xa2\x88\x45\x47\x2f\x32\x93\xd3\x06\x54\xd6\x1f\xc8\x50\x31\x6c\x19\xcf\xe8\x7d\xf2\x1c\x93\xe7\x29\x79\xfa\xe4\xd9\xd5\x00\xfe\x9f\xd4\x1e\x78\x66\x20\x23\xdc\xd7\xeb\xa6\x87\xc9\x19\x9a\x1e\x26\xa1\x63\x7a\x98\x6c\xae\xe9\x75\x2b\xbd\x1a\x2e\x53\x0d\xcc\x3a\x20\x2f\x43\x33\xa4\x2f\x07\xa6\x43\x5f\x6c\xd3\xe5\xfc\x08\x57\xba\x7b\xf1\x14\x9e\x1b\x92\x13\x76\x02\xdb\x0b\x47\x76\x00\x3d\x24\x01\x3a\x2b\x66\xa7\x42\xcd\x34\x4d\x9a\xcb\x64\x02\x68\x4a\xe4\xef\x92\x41\x36\x3b\x11\x46\x7e\x91\xa7\x2b\x14\xf4\xe8\x7d\x5d\xc2\xdd\x5d\x96\x8a\x14\xe7\xa2\x04\xd8\xeb\x30\x7e\x3d\x88\x5f\xed\xa2\xa4\x48\x06\x4e\x73\x6d\x12\x45\x9a\x4c\x7a\x0a\xb0\x30\xeb\x84\x5c\x64\x31\xf7\x48\x43\x0c\xcd\x0b\x14\xd7\xd5\x60\x14\xd6\x7a\xc0\x76\x9d\x3e\x3c\xc0\x75\xe8\x96\xab\x1a\x28\x57\x57\x71\x57\x64\xb4\xb7\x3d\xe4\x7c\x6c\x0c\x4f\x8f\x1c\x84\xe3\x97\x34\x50\xae\x2c\x81\xb2\x1e\xc5\x7f\x6c\x6c\xe3\xbc\x70\x0a\x21\xd5\xc7\xc6\xf6\xb1\x1d\x38\x1e\x34\xba\x7a\x79\x85\xc6\xea\x65\x1e\xfb\xf1\x71\xc0\x0b\x4b\x24\x3b\x80\xce\x90\x44\x2c\x01\xf2\x57\xe6\x3d\xe0\xc0\x09\x3f\x46\xf0\xc3\xe0\xe5\x55\xa0\xaf\x2d\xf3\x18\xd7\xee\x3f\x35\x12\xdd\xe5\xc0\xb5\xbd\xfe\x11\x1c\xd8\xee\xb1\xef\x0d\x58\x22\x8c\xb4\x16\x95\x43\x2a\x8b\x53\x08\x65\xbb\x63\x78\xe2\xf8\x2e\x44\x46\x57\xaf\xac\x82\x6a\x05\x94\xcb\x51\x29\x81\x7f\xea\x19\x5d\x7d\x79\x09\x54\xcb\xf8\x1f\x0b\x1e\x07\xee\xf9\xa9\xef\xe3\x42\xca\x65\xa0\xaf\x56\x81\x5e\xe1\x19\xf6\xed\x01\x44\xb4\xa4\xb5\x25\xa0\x2f\xad\x02\x7d\x99\xa3\xd8\x3f\xb2\x03\x14\xc0\x71\x28\xd0\x27\x8e\xf3\xfb\xbe\x6b\x13\x72\xeb\x1a\xd0\xb5\x25\x50\x89\xe2\xfc\xc0\x76\x69\x8d\x70\xb2\x55\x21\xdc\x3b\x74\x31\x27\xa0\x05\xea\x9a\x06\xf4\xea\x1a\x28\x57\x56\x04\x88\xd0\x71\x9f\x32\x72\xe0\x36\x8e\xa8\xdb\x0f\x9c\xe3\xd0\xf7\x70\x25\x34\x50\xd6\x40\x8c\xe6\xb9\xed\x65\x1b\x77\x60\x07\x4f\x63\x0a\xea\x95\x35\x21\x9c\xa7\xc0\xa1\xc9\x98\xa1\xef\x0e\xa0\x17\x60\x5a\x51\x3a\x55\x81\xae\x8b\xf1\x81\x7d\x8e\x29\xbc\x06\xf8\x9f\x18\x07\x21\xcd\x56\x8b\x9b\x99\x45\xcc\x4c\xf4\xf4\xc8\x7e\xea\xe0\xc2\xd6\x80\xbe\x5a\x01\xba\xb6\x22\x44\x1e\xdb\x43\xe8\x21\x1b\x37\xf5\x5a\xa6\x12\xbe\xeb\x9c\x40\x56\xe6\xea\x12\x49\x59\x15\x13\xfb\x81\xed\x0d\x59\x6f\xd4\xab\x49\x8c\xfc\xa0\x7f\xe4\xe0\x3a\x2e\x55\x00\x1e\x2c\x5a\x55\x88\x0c\xe0\x80\x97\x28\xa6\x09\x49\x4f\x35\xba\xe5\x4a\x05\xe8\x4b\x1a\xd0\xcb\x65\x31\x16\xda\x0c\x17\xbd\x5a\x01\xfa\xea\x2a\xc0\xbf\x42\x3c\xee\x2b\xb4\x3d\x56\xca\x60\x59\x4f\x55\x86\x44\x53\xe2\x56\x57\xc0\xca\x1a\xfe\x97\x89\x85\xf9\xb1\x68\x1c\x7c\x6c\xec\x3b\x21\x69\xea\xb2\xb6\x0c\xca\x9a\x18\x1d\x0d\x97\xea\x2a\x1e\x4a\x71\x73\x42\x38\x1a\x39\x1e\xef\x6b\xb8\x2b\xae\x08\x51\xe1\xd3\x73\xde\x7d\xf4\x35\x5d\xec\x58\xce\x31\xeb\x05\xda\x12\xe0\x7f\x42\x14\xcc\x8f\xf2\x07\x43\xde\xef\x2b\xb8\xac\xaa\x90\xe5\xa1\x13\xc0\x83\xc0\xc1\x2c\x42\x5f\x59\x05\x95\x2a\xfe\xc7\xa2\x5c\x3c\x98\x22\xc6\x86\x7b\x38\x66\x7e\xbc\x61\x0e\xfd\x00\x86\x88\x51\x1e\x77\xd6\xca\x9a\x90\x76\xdc\x3f\x0a\x1d\x9b\xa6\x13\xb9\xc8\xd0\x76\xbc\xf0\xc0\x0f\x7c\x36\x98\xd8\x1f\x8b\x3c\xf2\x43\xc4\x0b\xc4\x23\x30\xc1\x69\xf1\x00\x61\x88\xe8\x31\x37\x10\x86\x4d\x59\xc7\x2c\x64\x09\x54\x78\xef\x60\xc4\xc2\xfc\x90\xfd\xf1\x70\x3e\x5c\xca\xab\x71\x46\x38\xf0\x1c\xba\xae\x7f\x8a\x69\x51\x21\x25\x47\xed\xc2\x88\x9b\xc9\xea\xc8\xf7\xe0\xf9\x00\x9e\x0a\xdc\x3a\xa2\xd0\x91\x8f\xe2\x56\x26\x6d\x12\xf1\x23\xc7\x1b\x38\xb6\x47\xba\x3b\xe6\xba\x6b\x65\xfc\x2f\x8e\x1a\xfa\x46\x77\x65\x89\x8c\xbb\x28\xc5\x89\x1f\x9c\xf3\x76\x10\x4b\x61\xc3\x98\x14\x4f\x9a\x97\x47\xb8\xf6\x09\xf4\x06\x30\xc0\xe3\x86\xc6\xe1\x06\x4c\xc6\x1d\xb8\xe3\xf0\x88\xb3\x3c\x8d\x4c\x2a\x1c\xe0\xd4\xe3\xa3\xaa\x8c\x3b\x4c\x39\x22\x94\x0b\x8f\x7d\xaf\x7f\xe4\x1c\x1e\x92\x31\xc9\x3b\x46\xd4\xdf\x5c\x67\x78\xc4\xf8\x3a\x21\xa3\xbe\x4c\x0a\x17\x22\x39\x97\xae\x6a\x29\x6a\xd2\x58\xc2\x22\xcb\xe5\x6a\x8a\xad\x92\xc8\xa8\xb9\x79\x4b\x91\xb2\xf1\x9f\x9e\x28\x82\x36\x3d\x1e\x72\xfc\x2f\x11\xc9\xd8\x45\x15\x94\x2b\xab\x64\x44\x24\x63\x67\x27\x15\x1a\x74\xb5\x0c\xf4\xb5\x8a\x18\x19\xf1\x29\x1c\xbd\x2c\xf2\x29\x1a\x1d\x31\xaa\x4a\x19\xe0\xd1\xa6\xaf\x24\x70\x8e\xc6\xbd\x4e\x26\xe3\x65\xb1\xbd\x48\x7c\xcc\xa9\x74\x1d\x4f\x1f\xcb\x00\x73\xd1\x2c\x04\x9c\x03\x81\x20\x74\x79\xe3\x2c\x13\x39\xa1\x9c\xc4\x32\x26\x2c\xeb\x69\xe5\x98\x3a\xc7\x90\xcf\x76\x9a\x10\xc6\x2a\xc5\x3a\x81\x80\xb3\x07\x3d\xd6\x40\xac\x73\xd2\x88\x68\x6e\x49\x33\x87\x63\x3b\xf0\x7d\x8f\x0e\xb3\x78\x06\x38\x86\x03\x67\x7c\x9c\x90\x98\xb4\x32\x29\x2a\xa6\x1f\x85\x11\xc4\x96\xa8\x37\xd2\x98\x68\xd6\x59\x5d\x06\xab\x4b\x42\xa3\xd2\xe8\xd1\x38\x18\xb9\x38\xe3\xea\x0a\xd0\xf5\x32\x28\xeb\x6b\x89\xf8\xb8\xe5\x70\xab\xae\xac\x01\x5d\xaf\x24\x01\xe2\x39\x46\x2f\xe3\xb9\x94\xf6\xac\x04\xc8\x08\x4b\xc3\x11\xeb\xc1\x64\xd1\x97\xaa\x09\x10\x61\x3a\x59\x29\x93\xb9\x24\x9e\x1e\x29\x04\x9d\x51\xe8\x34\xb9\xb6\x06\xca\x78\x32\x8b\x30\x71\x06\x5e\x3c\xf4\xca\xb8\xf5\x48\x65\x78\xac\x87\xfa\x01\xb4\x8f\x99\xf8\xc8\x86\x2d\x8f\x0c\xd1\x79\xe0\x87\x82\x04\x59\x2e\x47\x14\xf4\xfb\x7d\x3b\x74\x3c\x41\xba\x5c\xe5\xe4\xf3\xec\x13\xfb\xa3\xbe\x38\x47\x60\x31\x6f\xa5\x12\x47\x9f\x33\x29\x28\x1a\xe3\xbe\x3b\x70\xed\x3e\x01\xaf\x50\x29\x36\xea\x18\x44\xae\x88\xb9\x6c\x22\x78\x10\xd8\x07\xb8\xe5\x57\x80\x5e\x2d\x83\x48\x88\x4c\x88\x1a\xcb\x71\xbf\xa4\xe1\x94\xc1\x2e\x2d\x81\xe5\x35\x21\x86\x76\x05\x32\x5b\x90\xb6\xe6\x24\x1e\xd9\x2e\x14\xa7\x93\xca\x2a\x28\x93\x91\xaa\x89\x00\x8c\x77\x2c\x95\x41\x79\x49\x07\xf8\x37\x8e\x14\x1a\x50\x5f\x59\x02\x34\x87\x55\x01\x40\x68\x3f\xdc\xc7\x70\xf9\xf1\xdc\x3f\xb2\x47\xf6\xb9\x7d\x7a\xe4\x8c\xb8\x4c\x8e\x5b\x98\xd3\x72\x04\xed\xfe\xd1\x68\x7c\x78\xc8\xe7\x40\xdc\x0e\x4b\x51\x64\x30\xa6\x53\x09\xee\x0f\xcb\x51\x9a\x98\x5b\xad\xe1\x0e\x15\x85\xbb\x63\xdc\x0f\x70\xf7\x59\xc6\x13\x30\x6f\xce\x91\x7f\x3a\x88\x44\xe4\x95\x65\x32\xf6\xe3\xe6\x89\x46\x09\x69\x9b\xb8\x45\x03\x78\x00\xfb\x7d\x3b\x8a\xd6\xca\x80\x50\xa6\x12\xc5\x0f\xf8\x58\xe7\x59\x05\x7e\x78\xce\xd7\x0c\x4c\x60\x8b\x85\xb6\xc0\x3f\xb7\x19\x8f\x5a\xa6\x13\x67\xdc\x19\x43\x7b\x30\x70\x21\x4f\x5a\x59\xc3\x2d\x1b\x0d\xd6\x98\xff\xb2\x89\x25\x6a\xda\xd0\xf6\x06\xbc\xc0\x72\xb5\x0a\xf4\xe5\x2a\x88\x96\x48\xf1\xe8\xae\x2e\x13\x31\x66\x75\x25\x8e\x09\x8f\xa0\xeb\xf2\x19\x72\x49\x68\xce\xd0\x81\x9e\x87\x05\xe4\x65\x0d\xac\x96\x41\x34\x73\x86\x8e\x7b\x82\x27\x5d\x4c\x71\xfe\xc7\x62\x32\xfc\x3d\xea\xc6\x22\xff\xd0\x96\xc1\x9a\xc8\xc1\x12\x6c\xbf\x4c\x2b\x16\xcd\x58\x09\x8e\x9f\x89\xf4\x62\x46\x2e\xce\xfe\x19\x56\x44\x57\x4b\x2c\x32\x9e\x21\x56\xa8\x00\x12\x8b\x2d\x88\xcc\xcc\x3a\x0d\x8a\x25\x0d\x04\xf1\x74\x9e\x9e\xcc\xf1\x9a\x1b\xb9\x64\x95\xb6\x4c\x05\x59\x9d\x53\x1c\xf9\xc7\x36\xf2\x29\x6a\x6b\x6b\x60\x85\xf7\x3f\x61\xfc\x2c\x57\x69\xef\xd3\x78\x76\x5c\x98\x26\x33\x36\x11\x68\x78\xcc\xe9\x11\xb4\x11\x63\x6b\x84\xfd\xac\x45\x11\x82\xec\x2a\x8a\x12\x24\x22\x3c\xf6\x9f\x8a\x8b\xe9\xa8\x05\xd3\x33\xa0\x96\x08\x8f\x18\x40\x35\x31\xdd\x4d\x6a\x50\xed\xb4\xad\xed\xdd\x1d\xab\xdd\xd8\xee\x98\x1e\x3c\x5d\xd8\x93\xa3\x4d\x04\x65\x02\xde\xd3\x43\x09\x00\xd5\xbe\xed\xf6\xc7\xb8\xf9\xb7\xc8\x86\xd8\x9d\xc0\x3f\x7e\x88\xe3\x1f\x39\xe8\x68\xcf\x73\x90\x09\xd5\xad\xc6\xf6\xdd\xce\xbd\xfd\xce\x93\x9d\x06\x3f\x38\x20\x9b\xdd\x7f\x94\x7b\xe5\xa0\x6e\x22\xb9\xa2\xd4\xe4\xc0\xac\x2b\x85\x42\x20\x1c\x68\x11\xaa\xd8\x29\x82\x5d\xec\x3c\x36\x34\xb0\xd3\x68\x6f\x34\xb6\x3b\xd6\xdd\x86\xa1\x4f\x40\xf8\xaf\xbc\x63\x48\xb7\xea\x70\x05\x4d\xe9\x03\x92\x69\x9a\x90\xed\x66\xcb\xbc\x99\x4a\xba\xb2\x6e\xab\x02\xd6\xb6\xba\xf3\x98\x6d\x34\x92\x6d\xf0\x3b\xae\x6f\x23\x99\x9c\xbf\x38\x21\x3d\x00\x32\x9d\x70\xdb\xde\x96\x91\xb2\xae\x19\x28\x77\x13\x70\x07\x06\x7d\x2c\xb3\x0d\xe1\xec\xed\xbc\x18\x35\xd3\x14\x31\x88\x76\x04\x87\x10\x59\x07\xa1\xef\x8e\x11\x24\x1d\x35\x93\x95\x95\xcc\x4b\x2c\x56\x56\xd6\xad\x1b\x72\x8c\xf2\x4d\x5d\xd3\x14\x23\xfe\x9e\x4c\x7a\x1c\x5b\x2c\xe5\xa0\x6c\xe6\xf1\xd9\x22\xa6\x3f\x6e\xb2\xbc\xad\xc0\xb0\xf6\x02\x03\x2b\x3d\x92\xc3\x53\x07\xf5\x8f\x64\xa4\x5c\xf4\xed\x10\x4a\xa3\x33\xc9\x20\x2f\x1f\x90\x0c\xa1\xc8\x50\x86\x45\xa4\xd4\x48\x0c\x3c\x66\x20\x01\x7e\xa3\x83\x8a\xc1\xf0\x0d\xf8\x85\x80\xd6\xec\x86\x89\xa1\x4d\xd3\x44\xeb\x42\xfb\x59\x6a\x88\xce\x5d\xa8\x1e\xfa\x1e\x22\x8f\x5d\xe7\xe3\x50\x31\x92\x5d\x92\xb6\x3a\x54\xe9\x8e\x66\x74\x06\xbb\x6e\xc9\x48\x31\xc4\xce\x90\x9b\xd9\x44\xb6\x14\x10\xd4\x18\x65\x92\x35\x91\x34\x49\x99\x4c\xde\x7b\x9e\x46\x90\xaa\xfb\x63\x6f\xb0\x31\x0e\x4e\x60\x68\x0a\xad\xb1\x63\x0f\x06\x8e\x37\xac\xfb\x67\x3b\x36\x3a\x12\x63\xea\x7e\x30\x80\x41\x1c\x41\x72\xc1\xef\x77\xfc\x80\xc6\xf1\xc0\x4d\xbf\x3f\x3e\x86\xb4\x82\x62\x0e\x1b\xbe\x87\xa0\x87\xea\xfe\x59\x7e\x89\xa6\x88\x1a\xc6\x8a\xbd\x88\x4c\xf5\x8f\x91\xa5\x7a\xa6\x2d\x23\x79\x45\xc1\xcc\x15\xbf\x55\xca\x8a\x12\x2b\x4f\xd8\xc2\x88\x4e\xab\x10\x58\xc6\x05\xef\x59\xd6\x64\x82\x69\x20\x90\x75\x06\x93\xc5\xe8\x01\xef\x7d\x65\xb5\x2e\x3c\x44\x26\x64\x6c\xd7\x1f\x99\x88\xbe\x9e\x3a\x03\x74\x64\x06\xf4\xe3\x08\xe2\x65\x97\xe9\x71\x7a\x06\xb2\x45\x64\x02\xce\x90\x0e\x03\xff\x78\xc3\x75\xa0\x87\xda\xb0\x9f\x3d\x44\x49\x52\x9d\x31\x27\x52\x70\x11\x01\x88\x4b\x2d\x06\x00\xd2\x22\x01\x64\xa5\xc5\xcc\x0b\xf8\xa6\x9c\xec\x9d\xe9\x41\xc9\x72\x0e\xd5\x24\x22\xb2\xa5\x0e\x21\x22\x69\x1c\x6f\x28\x84\x2b\x24\xd9\x04\xe4\x8f\x84\x5c\x75\x0d\xca\x15\x2c\x8a\x35\xec\x56\x7a\xea\x01\x19\x77\x8f\x08\xd2\x16\xa9\x04\xec\x6a\xe9\x60\x52\xa7\x12\x3d\x95\x15\x62\x32\x39\x28\xc0\x62\xf5\xc6\xc0\x5a\x1a\xb8\x9c\x04\x4e\xa2\x2e\x0c\xed\x34\x61\xf8\xc8\xd3\x7a\x94\xd5\x02\xcf\x24\xa8\xd0\x8f\xba\x49\x72\xa6\x1f\xb6\x49\x70\x22\x1f\xb5\xbc\x4a\xdb\x45\x94\x5f\xed\xa0\x88\x66\x56\x1c\xa5\x2b\x9e\xce\xa3\x68\x17\x3d\xb1\xf2\xe9\xac\x8a\x28\x55\xf9\x62\x50\xac\x53\x02\x64\xf9\x5d\xde\xa9\xef\x81\x3f\x38\x07\xc8\xb4\xd4\x01\x83\x6c\xb8\x10\xff\xd4\xf0\xa0\xc2\x6c\x07\x09\x23\x89\x8d\x22\x89\xab\xc4\xd0\xe3\x59\xfb\x4c\x8e\x5e\xa0\x1a\xf6\x03\xdf\x75\x69\x3d\x91\xf8\xc5\x4f\x73\x09\x94\x7f\x78\x18\x42\xc4\xa1\x84\xaf\x04\x54\x9f\xf4\x49\x0e\x25\x7c\x29\x98\xf3\xcc\x2e\xfd\x1e\xa1\x56\x54\x3c\xfd\xcc\x29\x3f\x82\x13\x3f\x73\x30\x88\xe0\xc4\x4f\x45\x49\xf6\x03\x2c\xe7\x63\xee\x14\xd1\x3e\x39\x01\x25\x87\x0d\x93\x18\x20\x95\x18\x16\x34\x3e\xbb\xfa\x32\xe9\x34\x5b\xf0\x10\xb5\xc6\x08\x06\x20\xfa\x6c\x7a\x1e\xff\x6c\xe3\xe2\x85\x68\xf2\x4d\xe2\xa9\x74\xb1\xa0\xa7\xb2\x9b\x9d\x00\xe0\x1e\x80\x90\x7f\x9c\x00\x11\x82\xc4\x6c\xcb\x62\xb6\x2f\x90\x2c\x0a\x12\xab\x13\x87\x88\x59\x57\x8c\x94\x98\x11\x17\x31\x27\x31\x98\x4b\x2c\x25\x23\x9f\x60\x36\x4b\xf5\xf5\xba\x91\x2a\x40\x62\xde\xa8\x73\x39\x70\xdd\xa3\x1a\x52\x16\x16\xaf\x07\xce\x89\x33\x80\xb2\xba\x04\x16\x75\x45\x31\x78\x94\x02\xd0\xdc\xb4\x28\x95\x56\x8b\xd3\xe2\x99\x74\x6e\xda\x20\x93\x56\x0d\xe0\x09\x0c\x42\x28\xc7\xb9\xe0\x59\x78\x6e\x2e\x30\x83\x7d\x4e\x2e\x50\x01\xde\x44\x01\x0e\x9e\x45\x66\x48\x54\x39\xfa\x1b\x79\x94\x9f\xd5\x19\xb2\xad\x47\x42\x7a\x33\x66\x98\x6b\x8b\x4c\x0f\x85\x9c\x9e\x9c\xed\x7f\x24\xa4\x37\xc9\x93\x31\xf3\xa7\x05\xd4\x75\xd4\x4e\x6b\x67\x7f\xab\x71\xa7\xd3\xc3\x6c\x37\xbd\x7c\x91\x19\x1b\x27\x0b\xcb\x04\xb0\x9e\x0b\xcc\x26\x6e\x60\x47\xd0\xed\xe6\xdd\x7b\xd7\xe5\x1d\xa6\xa1\xe7\x67\xee\x13\xf0\x7a\xab\xd3\x69\xdd\x7f\xa1\xfc\xdd\x9c\x04\xf3\x8b\x18\x8b\x29\x5e\x80\x3a\x0f\xb2\xf0\xf3\x0b\x38\xc5\xc3\xf3\x94\xf6\x4e\x39\x28\xda\xca\xcd\x28\x2f\x1e\x3a\x2e\xfa\x39\xa1\xf5\xe2\x03\x1c\x1a\xe5\xc3\x82\xc3\xa2\x2b\x04\x93\xb9\x6b\x2f\x9a\x3d\x54\x7b\x34\x72\xcf\xc9\x1c\x02\x4e\x95\xda\xde\x6d\x1d\x4b\xd2\x37\xcd\x3d\x50\xc7\x0f\x1b\x3f\x42\xfc\xf0\xf1\xc3\xc5\x8f\x31\x7e\x3c\xb8\x69\xee\x29\x4c\x6f\x84\xcf\xe7\x36\xd8\x30\xa3\xb9\xda\x05\x83\x28\xc2\x07\x77\xe2\x88\x07\x8c\xf5\x5c\x88\x23\xc8\x08\x6e\x6b\x97\x97\xf5\xdb\xda\x7a\x9f\x49\x14\xb4\x83\x83\x00\xd4\x41\xdc\xb7\x14\x03\x4f\x36\x1e\x1f\xe8\x09\x50\x05\x88\xe3\x23\x9b\xe1\x0b\xcb\x65\xd1\xfc\xa7\x81\xa0\x94\x15\xc5\x84\xe8\x7a\x29\x9d\x58\xb9\x16\xd9\x17\x45\x83\x54\x27\xe6\x1f\x86\x8d\xeb\x13\x8a\xf5\x19\x32\x12\xd9\x20\x04\xc2\x10\x99\x51\x2c\x6b\x0b\x81\x56\x31\xa7\xc8\xc9\x3c\x52\x3d\x1b\x72\x71\x2d\x57\x2a\xcd\x25\xe0\xf0\xf6\xac\x24\xeb\x9a\x61\x67\x48\x0a\xc2\x0c\x19\x5f\xbc\x3e\xa5\xb4\xf0\x3c\x93\x9c\x69\x8e\x6c\xf8\xb8\xd2\xae\x58\xe9\x01\x4b\xbc\x01\x7c\xe0\x82\x24\x5b\x78\x11\xb2\x16\xe3\xc1\x97\x66\xc6\x39\xa5\x45\x24\x1e\x80\xb8\x32\xf9\x24\x8e\x40\x37\x22\x61\x38\xa7\x86\x42\xcf\xf4\x33\x74\x51\x80\x5b\x4a\x2f\x15\x5e\xaa\x8a\xb3\x28\x1d\x0d\xec\xcc\x42\x04\xa4\x66\x3c\x63\x8c\x69\xf0\x20\x33\xc8\x8b\x77\xc0\x18\x3c\x00\x09\x26\x39\x6f\xa4\x67\xc8\x1c\x8f\xfa\x4c\x09\xb3\x86\xdb\x1d\x91\x5a\xe3\x1c\xc2\x3f\x98\x43\xad\x97\x1f\xdd\xb3\x89\x34\x99\x80\x0b\xce\x31\x0c\x0d\x44\xdd\xde\xd0\x81\xd8\x36\x46\x19\x08\x85\x1b\x95\x89\x92\x50\xb8\xa5\xe2\x1d\xb0\xe9\xec\x1d\x9a\x74\x51\x10\x7e\x2c\x40\x72\x59\x29\xe9\xca\xcd\xca\x8d\x2a\x9e\x1c\x6f\x84\xa0\x6f\x06\x37\x42\xe0\x9a\x56\x11\x81\xb1\x09\x8b\x41\x8d\x49\xe3\x36\x93\xc6\x63\x0e\x26\x6e\x7a\x45\xd2\x95\x9c\xaa\x37\x18\x2b\x20\x13\x54\xea\xa7\x03\xdd\x92\x0f\x60\x26\x10\x40\x85\x89\xc0\xc2\x88\x7f\xb1\x62\x33\x99\x59\xc5\xdc\x12\xf2\x70\x01\xe3\xb8\xd8\x04\x95\x5f\xa0\x64\x37\xb7\x1a\xc5\x4c\x21\x18\x9d\x3c\xd2\x64\x4a\x26\x94\xce\xd9\x66\x9c\x8d\x40\x26\x5b\x4c\xdc\x9c\xb2\xf2\xb0\xc2\x14\x7f\xcf\xb7\x2e\xff\xd8\x8f\x55\x34\x2c\xd6\xe6\x1c\xac\xac\x07\xf1\x36\x5f\x30\xc1\xc2\xac\x5c\x25\x42\xaa\xbc\x84\x97\x1c\x48\xd6\xcb\x78\x1c\x23\xb9\x52\x21\xa2\xa8\x5c\xa9\x12\x01\x53\xae\x2c\x11\xc1\x51\xae\x2c\x63\x79\x10\xc9\x95\x15\x05\xec\xe1\xdf\x55\x05\x0c\x4d\x24\xaf\x2a\x60\x03\x7f\xae\x29\x60\x80\x33\xd5\x14\x70\x07\x67\xb7\xaa\x80\x06\xfe\x5d\x51\xc0\x21\xfe\x5d\x53\xc0\x11\xfe\xd5\x15\x70\x0f\xc3\xe9\x0a\x18\x99\x48\x2e\x6b\x0a\xd8\xc6\xdf\x65\x05\x34\xf1\x6f\x45\x01\xaf\xe1\xdf\xaa\x02\x3a\xf8\x77\x49\x01\xc7\x18\x4e\x01\x27\xf8\x47\x57\xc0\x39\xce\xa6\x4a\x5b\xfa\xc0\xec\x4a\xcd\xed\x9d\xbd\x8e\x04\xa4\x4e\xe3\x71\xc7\x6a\x37\x2c\x09\x48\xbb\x8d\xad\xc6\x46\x47\xea\x81\xdd\xeb\x76\x30\xa9\xd9\x06\x3a\x72\xc2\xda\xfb\xb8\x99\x49\xcf\x01\xf8\x1e\x26\xb2\x87\xdb\xf6\x31\x34\x21\x7f\xa3\xc1\x8e\x37\x80\x67\xa6\x47\x3f\xfa\x47\x8e\x3b\xd8\xf6\x07\x30\x34\xbb\x3d\xb6\x23\xea\x84\xa8\x89\xe0\x31\x09\x91\x3c\xa2\xeb\x2f\xd8\xe5\xa9\x21\xb2\x03\x54\x28\xc8\x11\xf0\x2e\x0e\x30\x59\x04\xa5\x5f\x68\x42\xd5\x3f\xf5\x60\xc0\xf7\xa7\xf8\xf0\x7c\xe8\xc0\x53\xb0\x6b\x62\x54\x87\xf0\x71\x8b\x6c\xcb\x80\x7d\xf6\xfd\x84\x7d\x6f\x9a\x21\x5e\x3e\x6c\xf8\xc7\xa3\x31\x82\x83\x5d\x74\xee\x42\x19\x92\x2d\x57\x05\xdc\x37\x65\x0d\xb8\x6c\xf7\xcb\x09\x47\xae\x7d\xae\xc8\x9b\xea\x80\xbd\x82\x96\x29\x05\xf6\xc0\xf1\xe9\xe1\x19\xc6\xfa\xf2\x52\xea\x1f\xc1\xfe\xd3\x03\xff\x2c\x0e\x04\x6d\x9c\xcf\x21\xdb\xc9\xf1\x43\x07\x13\x14\x67\x34\xe2\xef\x35\xe7\x90\xd6\x91\x9c\x9d\x98\x17\x07\x76\xff\xe9\x30\xc0\xcb\x4a\xa3\xb5\x7e\xa2\x92\xee\xb1\x5f\xb7\x36\x5e\xbb\xdb\x6e\xed\x6d\x6f\x1a\x58\x28\x61\x6b\xcf\x08\x52\x91\x37\xf1\x38\xa2\xd3\xa1\x98\xac\xd5\xde\x6c\xb4\x77\x71\x1a\x87\xaf\x57\x31\x88\x22\x6f\x72\xe8\xb6\x3d\x70\xc6\xa1\x21\x27\x76\x00\x42\xf5\x5e\xe7\xfe\x56\xd3\x1b\x8d\xf9\x3e\xde\xe5\x65\x02\x20\x1d\xad\x14\x0a\xad\x75\x59\x03\x27\x98\xa0\x24\xa2\x2e\xe4\xae\xc8\x50\xc1\x38\xf4\x45\x1c\x78\xd4\xa6\x02\xfa\xbe\xeb\x8b\x68\x6f\xb4\xb6\x5a\x6d\x22\x16\xd8\x11\xbf\xdd\x54\x09\x94\x02\x58\x0b\x18\xf7\xc1\xa1\xeb\xdb\x08\xe7\x3b\xa6\xf9\x6e\xec\xee\x92\x73\x28\x4c\x5e\x12\xa7\x80\x43\xdf\x23\x10\x0f\x28\xc4\x1d\xdf\x43\xa4\x44\x17\x22\x04\x83\xdd\x91\xdd\x77\xbc\x21\x06\x38\xa5\x00\x5b\x62\x38\xce\x27\x01\xa8\x00\xda\x0f\xcf\x5d\x68\xdc\x37\x4d\xd3\x55\x37\x9b\xbb\x3b\x5b\xd6\x13\x75\xab\xb9\xdb\xd9\x6f\x76\x1a\xf7\x31\x11\x86\x2c\x2f\x0e\x8b\x4b\x24\xf6\x25\x44\x95\xad\x1e\x40\xfb\x29\x2e\x72\x8f\x83\xb1\x30\x52\x5c\xf4\x01\x8e\xed\x60\xe8\x78\x18\x70\x83\x02\xde\x27\x01\x04\x7d\x1f\xe3\x83\xce\xc5\xb3\xb7\x4d\x95\x05\x2a\xc0\x3f\x81\xc1\xa1\xeb\x9f\x1a\x25\xdd\x34\xcd\x03\x3a\x12\x5b\x87\x72\x34\x40\x15\x8c\xe5\x80\xe6\xda\x62\xc0\xb8\x74\x9e\x50\x31\x06\x6a\xeb\x61\xa3\x7d\x67\xab\xf5\x48\xbd\xd7\xdc\xdc\x6c\x6c\x47\x99\x3e\x0a\xec\x11\x46\xea\x4e\x32\x39\x0e\x16\xb3\xc0\xdf\xeb\xc9\x4f\x63\x53\x3d\xf5\x83\x01\x81\x04\x23\xba\x4d\x83\x73\x6a\xf0\x6d\x4e\x12\x42\xea\xc7\x07\x87\xd1\x06\x08\x9e\xa1\x4d\xd8\xf7\x03\x9b\x04\xc8\x1a\x38\xa2\xf0\x9d\x44\x04\x49\x86\x61\x77\x8f\xec\x81\x7f\x8a\xe1\xee\xc5\x70\x34\x10\xe3\x17\x83\x50\x70\x62\x95\x72\xe8\x07\xc7\x38\xc5\x28\x4e\x11\x85\xf3\x44\x71\x00\x40\x62\x9a\x6d\x96\x46\x80\x57\xc0\x89\x13\x3a\x07\x8e\x8b\x9b\x48\xd6\x40\x93\x82\x3c\x8c\x02\x71\x9e\x31\x88\x02\x30\x59\xa2\x6e\xf1\x1a\x85\x7e\xc4\xc3\x30\x70\x04\xa0\x80\x8f\x37\x71\x6b\x62\xc0\x0e\x05\xfc\x30\x09\x50\xe4\xf6\xa2\x69\x1e\xaa\x3b\xad\xdd\x66\xa7\xd9\xda\x56\x77\x3b\x56\xa7\xb9\xb1\xbe\xa9\xb2\x04\x92\x3d\x46\xbe\xa4\x4c\x18\x73\x0e\x23\x84\xe1\x40\x56\x0a\x85\xe8\xec\x36\xaa\x9c\x29\x1d\xdb\x28\x70\xce\x64\x9d\xa8\x9e\x90\xa7\x22\x61\xc6\x98\xdb\xf1\xe9\x5c\xb4\x83\xb9\xdd\x39\x66\x02\xb8\xf7\xb7\x30\x6b\x56\x08\x77\x23\x6c\x6e\x87\x02\x3d\x36\x77\x62\xee\xcf\xc5\x17\x31\x88\xee\x6d\xe2\x54\xc2\x54\x41\xa6\x13\x62\xbf\x6b\x21\x14\x38\x07\x63\x04\x65\x26\xb3\x28\x85\x42\xce\x04\x42\xe2\xd6\xd9\xaf\xa1\x99\xa6\xf9\x78\x3d\x03\xb6\x13\x4f\x2d\xeb\xc2\xbb\xa1\x1b\x02\x42\xdd\xc7\x25\xbd\x17\x63\x51\xd4\x27\x13\xa9\x79\xff\x2e\xe3\xf2\x74\x4c\x15\x0a\x50\xb5\x07\x83\xc6\x09\xf4\x48\xdd\xa1\x07\x03\x59\x72\x7d\x7b\x20\x89\xc6\xe2\x75\xf5\x80\x1e\xae\xc9\x1a\x38\x16\x4f\xdb\x14\x19\x82\x5d\xb0\xaf\x80\xba\xda\x1f\x07\x27\x70\x50\xcf\x85\xa3\x5b\x8d\x8a\xcc\xf3\x01\x75\xd6\x6e\x94\x9b\xa7\x3e\x19\x8f\x9d\x30\x3a\x3a\xc7\xf6\x10\x9a\x5b\x54\xe8\xa2\xa6\x4c\xb4\x10\xc6\xbb\x03\x88\x1b\xde\xe6\x0c\x9c\xa2\x35\x0b\x51\xc2\xd1\xf3\xab\x40\xa7\xfc\x17\xa8\x85\x80\x03\x88\xe7\x40\x5e\x97\x4c\x08\xaf\x4e\x56\xb3\x04\x4f\xe3\xae\x33\xda\xb1\xd1\x51\x98\xa3\x59\x82\x7b\x9d\x65\x0a\xb2\xcb\xba\xf0\xae\x8a\x89\x65\xc5\x88\xf7\xf4\x05\x04\x38\x23\x5b\x34\x4d\x81\x37\x3e\x6c\xee\x36\xeb\x5b\x8d\x75\x0b\x4b\xd3\x7d\x1b\xc9\x5d\x52\xd1\x19\x9b\xd1\xac\xbe\x22\x61\x94\x9e\x62\x58\x91\x62\x8b\x13\x36\xbd\x3b\xae\x7f\x7a\x8d\x6e\x8c\x13\xb6\x7d\x9f\xcf\xbc\x78\xf0\x2e\xb2\x60\x32\x13\x38\xde\x50\x0c\xe3\x9b\xa3\xee\x39\x97\x3e\xf0\x80\x17\x8a\x24\x6c\xc9\x9d\xad\x8f\xb3\x28\x6b\x20\xc4\xf5\x43\xb6\xe3\xf1\x36\xa3\x44\x61\x53\x31\x88\xd9\xc1\x76\x6b\xbb\xa1\x14\x0a\x22\xe1\xe8\xac\x74\x5b\x4b\x84\xc6\xdc\xcf\x34\xcd\x26\xa5\x63\x73\xab\xd9\x79\xc2\x49\x2a\x20\x98\x57\x83\x6b\x28\x44\x0b\xe1\xb3\x48\x1e\x63\x4c\x60\x93\x0f\xd8\x6e\x6c\x59\x9d\xe6\x43\x11\x95\xf7\x10\x01\x21\x57\xde\x6c\x2f\x94\x27\x11\x6c\x16\x4d\x73\xac\xde\xd9\x6a\x59\x1d\x42\x71\x21\x2f\xa1\x67\xcc\x37\x98\xe4\x86\x96\x74\x0c\x08\x39\x08\x13\xc3\x8b\x99\x5c\xa6\xe6\x8d\x5c\x72\x3d\x72\xd0\x11\x9d\xa8\xae\xed\xdb\x62\x37\xe5\xdd\x98\x16\x41\x67\x32\x15\x4f\x64\x89\x21\x83\x85\xa6\x2d\x78\x02\xdd\x99\x79\xbf\x4c\x17\x6e\x6e\x6f\x35\xb7\x1b\xca\xe5\xe5\xcb\x27\xda\xaf\x6f\xb5\x36\x5e\x7b\x77\x49\xef\x6c\x35\x1e\xbf\xbb\x94\x77\xdb\xcd\xcd\x77\x97\x32\x9e\xbc\xdf\x55\xf2\x8e\x55\xdf\x6a\x28\x99\xa6\xa8\xbb\x7e\xff\x69\x2b\xa0\x1f\x1d\x7b\x1e\x6f\x79\x7f\x49\xcc\xf1\xcd\x6a\xeb\xed\x92\xd5\xe4\x96\x99\xf5\xc4\x21\x2e\x7a\xac\xd9\x6b\x4d\x75\xf7\xe1\xdd\xdd\x87\x77\xa3\xc5\x52\x22\x5d\x22\x8e\x6b\xd3\xe1\xd5\xcd\xe3\xfb\x5b\xbb\x30\x70\x6c\xd7\xf9\x38\x0c\x22\x9b\x72\x15\x0b\x0d\x4d\x3c\x55\xcb\xd2\xc0\x46\xb6\x41\xa6\xed\x9b\xe1\xc9\xb0\x78\x76\xec\x02\xa9\x08\xbd\xbe\x3f\x80\x7b\xed\x26\x5e\xb9\xfa\x1e\x9e\x04\x90\x1a\xf2\x8c\x3a\xcc\x5e\x5a\xb6\x14\x45\x99\xb0\x2d\x49\x2b\x12\xfd\xa9\x6a\x21\x96\x5e\x98\xba\xa0\x95\x57\x70\x80\x67\x29\xcc\x18\x76\x83\xfe\xe5\x65\xa0\x86\x41\x9f\x69\x1c\x6e\x58\xdb\x0f\xad\x5d\x9a\xd8\x4b\x27\xde\x20\x6e\x72\x64\x8f\xc1\x36\xef\xb4\xad\xfb\x0d\x0a\x5b\x37\x89\x9a\x90\x20\xbb\xe1\xba\x95\x04\xef\x3a\x25\xc7\x43\x30\xf0\x6c\xb7\xe4\x1c\x06\xf6\x31\x2c\x3d\x85\xe7\x12\x91\x1b\xeb\xdc\xaf\x49\x7d\x22\xf0\x9f\xf7\x7c\xef\x0d\x46\xfd\x29\x5f\x39\x49\x5b\x34\x65\xab\x00\x89\x66\xc6\xc0\xa1\xcd\x9b\x0f\x19\x6f\x1a\x5b\x37\xac\x22\xbc\x41\xd3\xf4\xfd\xd1\xf9\xc6\xee\x2e\x59\x13\xa6\x8b\x88\x37\xf5\xac\x48\x01\xb7\x86\x6e\x9b\x5a\x0d\x95\x4a\x7c\x5f\xcf\x52\x1d\x04\x8f\x65\xa4\xd4\xa4\x3e\xd5\x46\x92\x16\x4d\x33\xc0\xa2\x27\xed\xfa\x21\x44\x51\x45\x03\x40\x08\xce\xbf\xe9\xe1\x68\xa0\x44\xd2\x13\xc4\x28\xed\xde\xb7\xb6\xb6\xf6\x9b\xf7\xad\xbb\x0d\x53\xec\x6c\x43\xe7\xb0\x76\x60\x87\x70\xb9\x0a\xda\x9a\x7b\xb7\xb5\xe9\x1e\x59\x0f\xac\xba\xd5\xb4\xe8\x7f\x3b\x37\x6f\xde\x3c\xbf\xb7\x54\xb7\x1a\xe4\x73\x8b\x86\xd6\x2d\xf2\xdd\xac\xb7\x2d\x6b\x45\x7a\x55\x5a\x9d\xd1\xae\x07\xe9\xaa\x66\x26\x38\xa1\xd1\x19\x85\xb6\xe1\x08\xda\x28\xa3\xf1\x19\xc5\xf3\x69\x27\x37\x76\xc8\x63\x1d\x6f\x68\x05\xd0\x9e\x01\x64\x3b\x1e\xca\x81\xb8\x1b\xd8\x03\x07\x7a\x28\x2e\x2c\xad\x36\x9a\x89\x89\xf7\x7b\xf6\x5b\xed\xe6\xdd\xe6\x76\x32\x6c\x63\xab\xb9\x93\x0c\xd9\x6d\x7e\xb8\x91\x0c\x69\x37\x76\x1a\x56\x27\xa9\x59\xea\xc8\x48\xd6\x88\xd2\x13\x7e\xd3\x89\xba\x25\x7e\xab\xe0\x57\x9b\xbc\xae\x28\x44\x57\x40\x2e\xd3\xed\x55\x7d\x45\xd0\xc3\x74\x5e\x4a\x0f\xb3\x9f\x8b\xcf\x05\xfd\x35\x34\xb0\xdd\x62\x61\x86\x0e\xe8\xcb\xfe\x63\xa3\xcc\x5f\x9f\x18\x95\x09\x70\x73\x2a\x79\x61\xed\x75\x5a\x86\x06\x36\x5a\xdb\x1d\xab\xb9\x6d\xe8\x60\x03\xcb\xe3\x46\x19\x50\xa5\x7b\x9c\x6e\x9c\x43\xae\x0b\xba\x19\xb6\x5f\x6f\x11\x75\x7c\x6b\x73\xb3\xb9\x7d\x97\x7c\xe9\x24\xaf\xc6\x76\x87\x7c\x95\x27\xe0\x41\x6e\x0b\x8c\x05\xe7\x20\x54\x2f\x9a\x31\xd7\xf7\x65\xe3\x95\x73\x6e\xc6\xa2\x24\xaa\xb3\x1e\xe2\xee\xe2\xaa\x8c\x16\xb5\x83\x00\xda\x4f\x6b\x0c\xee\x04\x06\x69\xa8\x87\x8d\xb6\x08\x43\xb6\x04\x12\x20\x98\xb6\x0c\x82\xb7\xa6\xa0\xde\x9f\x3c\x01\x81\x78\xea\xdf\x4b\xaa\xfb\x24\xfb\x71\xbe\x42\x8c\x06\x3c\x53\x03\xb6\x69\x91\x42\x31\x7f\xb7\xbb\x5a\x8f\x62\x60\xc6\x95\xb9\xbc\x4c\x07\x3f\x6c\xb4\xf9\xb1\x1c\xa2\x47\xa9\x37\x11\x3b\x0e\x04\xbe\xc9\x34\x5b\x6f\x72\xcd\x56\x3e\x33\x85\xb7\xfc\x45\x33\x53\x04\xce\x6b\x3d\x79\x38\xc4\xf2\x04\x3c\x6f\x9f\x9e\x4c\x8a\x00\x34\xe7\x1b\x3e\x40\x91\xfa\x2c\x2b\xc5\x8e\x94\x3f\x0b\x05\x39\x30\xe3\xcf\xac\x82\x0a\xcb\x1f\x8f\xb8\x04\x52\x98\xf6\x85\x82\x4d\x3c\x0b\x89\x61\xeb\x98\x27\xd1\xe2\x8c\xdc\xd8\xe0\x26\xab\xfb\x8d\x24\x1c\x47\xc7\x33\xe3\xcf\x3c\x74\x58\x55\xf2\xf1\x91\x03\xd3\x8b\x68\x7a\x03\x72\x55\x99\x24\x65\xb8\xbe\xe2\x75\x2c\x2f\xcf\x2f\x19\xed\x06\x20\x30\x51\x44\xb3\x75\x34\x87\x7c\x1c\x05\x83\xab\x32\x7b\x26\x8a\xaa\xb7\x8e\xe6\xd4\x34\xd2\x79\x36\x84\xa2\x02\x23\xdd\x61\xf2\xaa\x86\xc3\x4e\x65\xb6\x87\xa6\x80\x61\x7e\xaf\x4f\xce\x00\x73\x35\x35\xc7\xaa\xc0\x8e\x44\x61\x38\x57\x73\x4e\x91\x2d\x76\xd8\x39\x56\x45\xce\x95\x3c\xec\x4c\x66\x90\xde\x7b\xb0\xf0\x70\x7d\xa1\xc9\x6d\x96\xb2\xe3\xac\xfc\x15\xb2\xa1\xc4\x4f\xbf\x2d\x56\xc3\x07\xd9\x1a\x2e\xc0\x1a\x8b\x12\x19\x2e\x3b\xc3\xea\xfa\x51\xd5\x76\x9b\x9b\x8d\x5d\x95\xa8\x78\xcd\x6e\x7f\xa2\xff\x96\x4e\x43\x15\xcf\xe6\x24\x72\x72\x12\x75\x5a\x3b\xf3\x92\xf4\x73\x92\xd0\x13\xe7\x39\xa9\x12\x3a\xbd\xcc\x1c\x41\xf6\xa8\x6a\x43\x1d\x78\x44\x97\xc1\x01\x1e\xd3\x08\xa9\x97\x6c\xe0\x71\xcd\x06\xa7\xc4\x64\xed\x85\x07\x73\x1a\x7b\xc1\x9b\xd1\x9c\xb1\x24\x33\x43\x7f\x3f\x79\xae\x62\xe5\x2a\xdd\x21\xae\xaa\xc2\x89\x60\xe5\xea\xda\xa1\x48\x1b\x23\x62\x22\x33\x90\x12\xc4\xaf\x8c\xb2\x85\x17\x8d\x0e\x4b\x0d\x08\x1c\xeb\x42\x7d\x35\x92\x0b\x98\xee\x66\x12\x77\x22\x66\x93\xec\x19\x69\x99\xea\x0e\x0d\x0a\xa8\xfe\x92\x7a\xae\x50\x76\x35\x27\x5d\xd1\xe3\xf5\x7c\x0f\xd3\x73\xe2\x14\x5f\x22\xa3\x6b\x33\xe8\xd5\x92\x94\x79\x72\x2d\x65\x02\xa6\x4f\xa3\x9e\x25\x32\x27\x5d\x70\x1e\x42\x71\xba\x22\xca\xa9\xdd\x1f\x9e\x9e\x55\xee\x25\x32\x9a\x9b\x41\x44\x99\x58\xae\x7c\x97\xa4\x79\xa1\xf6\xba\xa6\x7a\xef\x69\x1e\x45\x61\x8e\x7e\xd7\x95\x11\x32\xe9\xa5\x8c\xf1\x5e\x6a\x58\x5d\xdb\x5e\x73\x86\xc4\x1f\x96\xf6\x45\x3b\x4c\x2e\xd2\xa9\xce\x32\x99\x64\xd7\x93\xb9\x6b\x79\xe1\x3c\x7e\x83\x1c\x53\xe3\x62\x03\x41\x5b\x2d\x15\xaf\x80\x83\xe4\x02\xd5\x18\x50\x1d\x2b\x01\xce\x75\x46\xc6\x30\x99\xd4\x75\x46\x22\x48\x2b\x70\x86\x8e\x67\x6c\x24\x80\x68\x60\xd2\x1c\x21\x66\x9d\xdc\x68\x94\x4e\xcb\xa5\x03\xff\x2c\xb2\x1a\x4d\x08\x0d\xb5\x68\x19\x01\x3d\x94\x02\x13\xa6\xe5\x49\x14\x18\x4f\xe3\x13\x05\x6c\x98\x2f\x59\xf6\x83\x17\x2b\xfb\x41\x5e\xd9\xa2\x08\x31\x01\xe9\xf6\xa1\xe2\xe3\x61\x82\x44\x84\xe2\x8a\x7a\x6c\x8f\x64\x11\x4f\xe7\x50\x96\xc6\x81\x2b\x99\xa6\x69\xa9\xc7\x10\x1d\xf9\x83\xd8\xaa\x35\xde\xf5\xb2\x54\x3b\x18\x86\x5d\xad\xa7\xd4\xe8\xab\x89\xd6\xbb\xa8\x67\x74\x7b\x93\xc8\x03\xb1\x02\x02\x53\x2c\x91\xcf\xb6\x6a\x38\x72\x1d\x24\x4b\x40\xc2\xcb\x6b\x11\x82\x4e\x7d\x62\x7c\x3d\x11\x8f\x25\x63\x21\x36\x76\x71\x9c\xac\x45\x5c\x65\xb9\xde\x85\xbd\xcb\x4b\x26\x8d\xaa\x28\x70\x8e\x65\x85\xe7\xb0\x20\xd1\xea\xdf\xa1\x9a\x54\x2f\x00\xd9\xe0\x45\x5e\x84\xfe\x38\xe8\x43\xc3\x02\x74\x16\x36\xf2\x9a\x9a\x65\xc2\x5a\xdc\xf3\x4b\x14\x36\x6a\x48\x81\xff\xd6\x98\x65\x32\x8e\x2f\x9d\x45\x86\xca\xf8\x73\x21\x2f\x21\x9f\xec\x13\xe9\xce\x59\xba\x28\xc1\xc2\xac\x74\x4f\xc4\x74\x99\xe8\x49\xfa\x5b\x96\xa8\xf3\xd6\xf8\x2c\xd8\xeb\xc2\xde\x3a\x7e\x18\x1e\xee\x03\x00\xaf\x4b\x0c\xee\xce\xf8\x56\x79\xbd\x8b\x97\x0d\x60\xaf\x67\xd0\x17\xbc\xd4\xe8\xc5\xaa\x0a\xb6\x00\x88\x17\x52\x64\x35\xd5\x33\xf8\xbb\xde\xeb\x4d\x26\xca\x04\xdc\xc9\x31\x49\xa1\xed\x83\x3b\xe7\xfa\x9e\x41\x97\x1a\x96\x32\x01\x8d\x79\x63\x8d\x2a\xec\x72\xa2\x62\xde\x96\x30\x12\x8f\x97\xe9\x92\xae\x69\x1f\x90\xd8\x8e\x2c\x66\x8c\x2c\x0d\xf2\x47\xb3\x52\xc4\xf0\x74\x87\x60\x06\x94\x14\x9f\xc4\x26\x55\x23\x95\x09\x38\xcc\xee\xcb\xd1\xed\xba\xac\xf1\xe0\xcd\x8f\xbc\x1e\xfe\xc9\x4d\xc0\x3c\x54\x77\x7b\xc0\x33\x25\x09\xd4\x4d\xa2\x31\x63\xe3\xf7\xd0\xd4\x80\x6f\x6a\xc0\x31\x33\x67\xba\x92\x54\x23\xce\xa1\x2f\x3e\x28\x7d\x90\xf8\x0b\x60\x6e\x0c\x34\xa0\x2b\x85\x82\x6c\xc7\x21\x3a\xe0\x2d\x54\x2a\xe3\xb5\x6e\xa1\x10\x70\xef\xd5\xac\x4b\xd7\x28\x3e\x5e\xa4\x30\x23\x95\x24\xa0\x2b\x45\xbd\x26\x95\x70\xeb\x78\xc9\xcc\xe1\x6d\xad\x50\x90\x2d\x31\x18\x2a\x49\x47\xb1\xc0\x8b\x63\xa1\xa2\x00\xc9\xf3\x3d\x28\x2d\x9a\xa6\x8c\x23\x12\xa0\x4a\xa1\xc0\xbc\x69\x5f\x8c\x02\x78\xe8\x9c\x19\x16\xa0\x9c\xca\xf0\x00\xe6\x45\xc4\xaf\x3a\xa3\x0f\xa6\x4a\xec\x11\x9e\x0f\x68\x49\x51\x0f\xfd\xa0\x61\x27\xb6\xa4\x08\xf3\xd3\x16\x4d\x33\xbc\xbc\x5c\x84\x2a\x82\x21\x71\x14\x9e\xea\x4e\x1f\x94\x3e\x68\xd4\xd7\xeb\xb8\x0b\x16\x0a\x32\xa5\xbd\x62\xd4\x4d\x4b\xdc\x2e\x92\x25\x83\x6c\xc6\xd3\x20\x9c\xad\x69\x9a\x21\xdf\x9b\x3f\xf1\x9d\x81\x1c\x9a\xba\x52\xf3\x8b\x45\x31\x99\x92\x4e\xa6\x93\x64\x17\x2c\x03\x9f\x67\x80\x5b\x99\xec\x56\x3a\xb2\x52\xf3\x4b\xa5\x89\x90\x07\xb8\xb6\x68\x92\x8a\x67\x5e\x28\x90\x9c\x0b\x85\x45\x8f\xf9\x23\xbe\xf9\x91\x71\xe0\xfe\xc9\x4d\x27\x72\x91\x9e\x6e\x7c\x52\xb4\x8c\x09\xab\x4c\x48\xe6\xeb\x5e\xd1\xb4\x0c\xbb\x68\x5a\x93\x89\x02\x1c\x59\x01\xe8\x15\x9c\x38\xec\x58\x9d\x7b\xe6\xc5\xc3\xc6\x46\xa7\xd5\x36\x34\x50\x6f\x7c\xb8\xd9\x68\xef\x6f\xec\xb5\x1f\x36\x0c\x1d\x6c\x34\xdb\x1b\x5b\x0d\xa3\xfc\x6a\xd4\x8c\x4d\x24\x2f\x8b\xa7\x60\x49\x05\xd3\xf7\xdf\x13\x49\x40\xa8\xa1\x52\x62\xd0\xf0\x33\x6e\x33\x7f\x6e\xbe\xe7\xd4\xe7\x02\x60\xa4\xa7\x67\xa6\x03\x70\x95\x4c\x48\x75\x9c\x76\x3b\x4f\xb6\x1a\xd4\xa1\x4b\x22\x84\x1f\xeb\x27\x37\xda\x89\x5e\xb2\x37\x03\xf2\xa2\xb9\xbd\xdb\xdc\x6c\x18\x1a\x68\xed\x75\xc8\x9b\x3e\x01\xf5\x9c\x82\x2e\xb6\x5b\xdb\x0d\xa3\xa4\x83\xcd\xe6\xee\x86\xa1\xf1\xee\xa0\x83\xdd\x07\x7b\x56\xbb\x61\x94\xc1\x66\x63\xa3\x79\xdf\xda\x32\x2a\x60\xe3\x43\xaf\xed\xf3\xaf\x2a\x0f\xdf\xdf\x6a\x58\x44\xf6\xfa\x70\xa3\xdd\x32\x96\xc0\x56\xeb\x51\xa3\xbd\xdf\x6e\xdd\xb7\xb6\x8d\x65\xb0\xb7\xb3\x13\x7d\xad\xb0\xb8\xbb\xed\x46\xe3\x35\x63\x95\x7d\x59\x5b\x3b\xf7\x2c\x63\x8d\x41\xd2\x2f\x5d\x03\x56\xdb\xaa\x37\x37\xf6\x9b\xdb\x9b\xcd\x0d\x43\xd7\x81\xd5\xbe\xdf\xd8\x6e\x5a\xdb\x86\x5e\x06\xf5\xc6\xf6\x5d\x6b\xab\x69\xe8\x15\xb0\x61\xdd\xaf\xb7\x36\x49\x78\x95\xe0\xd7\xb0\xda\x9d\x7b\x5b\x4f\xf6\xeb\x6d\x6b\x7b\xe3\x9e\xa1\x2f\x91\xd0\x7b\x0d\xeb\x61\x63\x7b\xeb\xc9\xfe\x6e\xa7\x71\xdf\xd0\x97\x49\x60\x73\xb3\xd1\xba\xdb\xb6\x76\xee\xe1\x12\x56\xc0\x66\xe3\xa1\xb5\x6d\xdd\xb5\xda\x4d\x43\x5f\x05\x8d\xce\xbd\x66\x6b\xa7\xb9\xb1\xbf\xbd\x77\xbf\xd1\xc6\x10\x6b\xe0\x6e\xa3\xd5\xbe\x8b\xcb\x2a\x6b\xe0\xee\xde\x87\xac\xb6\xd5\x69\x1a\x65\x1d\xdc\xdd\x6b\xdf\xdf\x7b\xed\x5e\xd3\x28\x97\xc1\xbd\x46\xbd\xdd\x78\x44\xde\x9a\x6d\xeb\xae\xb5\x6d\x19\xe5\x4a\xf4\xbe\xdf\x6c\xb7\xee\x59\x46\xb9\x0a\x3e\x64\xed\x58\xdb\x8d\xdd\xc6\xfe\x9d\x56\x1b\xd3\xb3\xbc\x14\x07\x35\xb7\x79\xe0\x32\x78\xcd\xda\xde\xb6\x36\x2d\xa3\xbc\x02\x5e\xb3\x3a\xd6\x6b\x24\xc3\xd5\xe8\x9d\x67\xb8\x06\x5e\xbb\x77\xbf\xd1\x36\x2a\x1a\x78\xad\xd5\x6e\x58\xdb\xfb\xf7\xac\xed\xbb\x7b\x5b\x3c\xfb\x8a\x2e\x84\x7f\xc8\x8a\x82\xcb\xc9\xe0\xa8\xe4\x4a\x05\x6c\x59\x2d\xa3\x52\xe5\xad\xc4\xc9\x5f\x59\x02\xf7\xad\x2d\xeb\x89\xb5\x65\xdd\x37\x2a\xcb\xe0\x7e\x6b\xfb\x6e\x6b\x8b\xc4\xac\x80\xfb\x4f\xac\xed\xfb\x56\xdb\xa8\xac\x82\x56\xbb\xf9\xc4\x32\x2a\x6b\x60\xa7\xd1\xde\xc5\xd1\x55\x0d\xec\x36\xef\xef\xec\x6f\xdc\x6b\x8a\xf5\xae\xea\xc9\xe0\x08\x83\x6a\x19\x74\xac\xfb\xcd\x2d\xa3\x5a\x01\x9d\xc6\xd6\xde\xdd\x3d\xa3\x5a\x05\x9d\x7b\x56\xd3\xa8\x2e\x81\x4e\xb3\xde\xe8\xe0\x5c\x97\x41\xa7\x6d\x6d\x66\x72\x5d\x49\x06\xc7\xb9\xae\xf2\x8e\xc6\x2b\x54\x5d\x23\x5d\x7f\xab\xb5\xbb\xd7\x6e\xec\xb7\x76\x1a\xdb\xc6\x92\x26\x06\xe1\xdf\xc6\xa6\xb1\xa4\x4f\x80\x9d\x3f\x7c\xe7\x88\x50\x03\x27\xec\x47\xc2\x4d\x5d\xc5\xd9\xb2\x05\x8a\x13\xf4\x5d\x28\x44\xd1\x81\x47\x23\xc3\x8f\x8d\xed\x40\x8c\xa4\x83\x91\x46\x0e\x60\xdf\x39\xb6\x5d\x31\x57\x3a\x12\x59\xc6\x1f\x7d\x5a\xca\x82\x08\x43\x37\x91\x4b\xc9\x85\x36\x59\x4f\x7d\x1c\x06\x7e\x36\xcb\xc4\xe0\x66\xe2\x1d\x96\x27\x4a\x81\x7f\x6c\x7b\x02\xbc\x30\xea\x29\xd8\x78\x34\xca\x01\x13\xd8\x81\x98\xdb\x30\x80\xf0\x69\x26\x37\xc2\x27\x44\x30\x72\xd9\x50\x06\x8c\xb0\x0c\xb1\xd0\x34\x98\xc0\x59\x98\xc4\x19\xd8\x07\x4e\xbf\xe4\x78\x03\x47\x6c\x1c\x91\xe5\x70\xc0\x63\xe8\x39\x89\x1a\xf0\x7e\x43\x01\x0e\xa0\x37\xb4\x5d\x47\x88\x67\xbc\x89\xb5\x85\x7d\x7c\xe0\x0f\x92\x19\x44\x1c\x2b\x6e\x2e\x68\x07\xe8\xc8\x3d\x2f\x1d\x04\xb6\xd7\x3f\x4a\xb5\x5a\x92\xa1\xc5\x89\x8e\xa0\x7d\x02\x3d\xf7\xbc\x14\x22\x78\x9c\x4a\x93\x60\x77\x71\x12\x67\x00\xfd\x61\x60\x8f\x8e\x12\xd5\x4e\xb1\x42\xde\x3d\x4e\x6c\xcf\x1e\xda\x81\x93\xe8\x14\x9c\x43\x32\xcf\x50\xe8\xc8\xf1\x47\x4e\xbf\x44\xec\x7e\x12\x99\xa6\xd9\x27\x4d\x30\x84\x7e\x30\x4c\x92\x83\xf3\x54\x06\x30\xfe\xa8\x1d\xd8\x48\x2c\x94\x33\x5a\x0e\x10\x1c\x8f\x9f\x1e\x25\x01\x28\xf7\xa5\x00\x47\xf0\x20\x80\xa7\x42\x34\x65\xc8\x2c\xd2\x09\xec\xa1\xed\x89\x9d\x83\x73\xe6\x24\x40\xc9\x09\xfc\xa3\x3c\x30\xca\x6f\x29\xf0\x47\xed\x91\xed\xc1\x10\x96\x88\x46\xab\x38\xda\x52\xcc\x3d\x05\xee\x78\xb3\x13\x70\x46\x45\x93\x3c\xb5\x3d\xcf\x1e\x88\x78\xb0\xe9\x80\x47\x23\xfb\x69\xb2\x3a\x7c\x5e\x48\x02\x64\xaa\x93\x9c\x3e\x18\xf0\xd1\x31\x0c\x44\x18\x3c\xa1\xb0\x28\x3f\x80\xb6\x57\x3a\xb2\xbd\xe1\xd8\xcd\x56\x37\x6f\xc6\x49\x27\xfc\xa8\x3d\x2f\x5d\x34\x23\xe5\x24\xcb\x21\x57\xee\x9c\xc5\x38\x85\x2d\xb2\xb1\x2d\x2b\xc1\xb5\x72\xc6\x73\x72\x7a\xa3\xc0\xc7\xb6\x6b\x9f\xdb\xae\x2d\x0e\xab\x68\xd2\x63\x20\xbe\x37\xf4\xdd\x64\x56\xd1\x54\xc8\x40\xce\x6d\xef\xd8\x16\x29\xca\xa6\x47\x1a\xed\x07\xce\xb9\xd8\x24\x64\xc2\xa4\x51\x23\x18\x84\xc9\xac\xd9\x24\xca\x66\x07\xe7\x78\x54\xea\x1f\x39\xf9\x7d\x2f\x67\x92\xcd\x49\x96\x43\xd4\xdc\x69\x98\x26\x45\xf6\xb1\x23\x82\x92\x89\x99\x45\x41\x77\x3c\x1c\x8b\x71\x64\xae\x66\x91\x47\xb6\x38\x52\xf1\xe4\xcd\x22\x9c\x03\x88\x12\x35\x64\x13\x3a\x8b\x0e\xec\xc1\xec\x1a\xe6\x4c\xf8\x39\xc9\x72\x6a\x98\x2b\x12\x24\x66\x8e\x6c\xff\x48\x4a\x0b\xb5\x68\x52\x77\xfd\x70\x1c\xc0\x92\x3f\x82\x5e\x6a\x7e\x17\x24\x89\x0c\x38\xfe\x85\x83\xfc\x04\x54\xce\xa8\xb1\x9d\x28\x0f\x4a\xe9\xd3\xb8\x3a\x57\xc4\x0d\x23\x2f\x5a\xf1\xba\x22\xbb\xe7\x21\x6b\x20\xc8\xdd\x1f\x51\xe4\x1c\xad\x2d\xc9\x75\x42\x54\x22\x2a\x5e\x25\xa2\x9f\x25\x45\x4e\x83\x2e\x5c\x51\xda\x31\xec\xeb\x92\xe3\x85\x96\xa4\x08\x86\x4c\x74\x8f\x9a\x5b\x91\xae\xc3\xae\xd6\xe3\xb6\x4a\x0c\x82\xef\x70\x1a\xe1\x75\x99\xf3\xbd\x30\x49\xb9\x66\x93\xda\xf1\x42\x67\x10\xcb\x50\x9e\x4a\x57\x44\x6c\xf0\x8d\x11\x8d\x4d\x1f\x78\xaa\x6c\xb9\x44\xf6\xd1\x5e\xf1\xd5\x6c\x7f\x2c\x46\xb7\x1e\x33\x62\xad\xe3\xdf\xb2\xc2\x1c\x98\xce\xb1\x3a\x7d\x7f\xb7\x05\xe0\x59\xe4\x35\x2f\x69\x74\xca\x0c\x57\x82\x79\xbe\xf2\x3a\xf0\x0c\x6d\xfb\x83\x1c\x17\x9e\xb1\x32\x92\x2f\x43\x75\x60\x23\x1b\x20\xae\xc7\x9e\xb0\xf5\x12\x8f\xf1\x2d\x39\x00\x08\xc8\x1a\xa8\xc7\x66\x62\xdc\xf0\x05\xc7\x10\x7b\xf0\xac\x6e\xb1\xcd\x2c\x55\x6f\xca\x1f\xb9\x7c\x3d\xbc\x34\x2e\x4b\x97\xaf\xcb\x97\xaf\x2b\x8a\xdc\xb5\x4b\x1f\xef\x29\x37\x87\x20\x7d\x77\x61\x4a\x57\xc4\x53\x3b\x8d\xc7\x9d\x7d\xe2\x15\x18\xf3\x45\x3a\x2f\x6e\x58\xbb\x0d\x23\xda\x02\x4c\xec\x25\xd6\xf2\x93\x6d\x58\x3b\xcd\x8e\xb5\xd5\xfc\xb0\x90\x2e\x80\x23\xd7\xee\x43\x39\x04\xce\xac\x64\x84\xcb\xa6\x4b\xdb\xc3\x3c\x99\x95\x96\x1a\xa7\xd6\x64\x92\x50\x19\x4c\x28\x1f\x44\xd7\x6e\x69\xeb\xb0\x88\x92\x19\x11\x4b\x98\x57\xb3\xcf\x55\xae\x24\xee\xf5\xb3\x12\x17\x4e\x59\x5d\xad\x57\x28\x94\x97\x96\xc8\xbb\xde\xa3\xbb\x87\x56\xb7\x2c\x84\x56\x7a\x13\x50\x37\x2f\x86\x10\x2d\xec\xee\xed\xec\xb4\xda\x9d\xfd\xb6\xb5\x7d\xb7\xb1\x5f\x6f\xed\x6d\x6f\xee\x46\xfb\xd1\xa9\x8d\x57\x4b\xa5\x5e\x64\xdb\xb6\x37\x84\xb1\xb7\x3c\x21\x90\xee\x5a\xc2\x7c\x17\x8a\xb1\x8e\x14\x4d\xc1\x6d\x7e\x24\xd2\xfd\x11\x0c\x91\xa4\xd4\x78\xcf\x65\xee\x23\x25\xbd\x5c\x19\x9d\x49\x51\x87\x66\xea\xf0\xa6\x74\xe0\xfa\xfd\xa7\x12\xa0\xbe\xfa\x54\x7b\x34\x82\xde\x60\xe3\xc8\x71\x07\x32\x52\x00\x54\x43\xe8\xc2\x3e\x19\x2f\x32\xe2\x84\x9b\x81\x96\x1c\xb9\xcd\xe3\x67\xcc\xdc\x27\x12\xa9\x32\xc9\x3f\x80\xc7\xfe\x09\x8c\xf2\xd7\xcb\x15\xd3\x34\x3d\xb6\xfb\xba\xa8\x71\xde\xb5\xa8\x4f\x64\xee\x32\x30\x1a\x6d\xf9\xcd\x5c\x07\x52\x1e\xe9\xa3\x06\xb7\x26\x78\xec\x01\xb1\x89\x76\x1f\xde\xdd\xdf\x6c\x5b\x8f\x9a\xdb\x77\x73\x5b\x88\x6d\xf8\xc3\xd3\x05\x32\x0d\x82\x1c\x4a\x53\xdd\x74\x49\x01\x81\x49\x2d\xc5\x7c\x0f\xb3\x08\x59\x2a\x0f\x24\x3c\xcc\xc3\xa0\x6f\xe6\xa9\xe9\xdf\x0a\x4f\x86\x0b\x67\xc7\xae\x17\x9a\x1f\x3c\x42\x68\x64\xdc\xbc\x79\x7a\x7a\xaa\x9e\x56\x54\x3f\x18\xde\x2c\x6b\x9a\x86\x41\x3f\x78\xfb\x16\xfe\xb9\x2d\x91\x8b\x38\x03\x75\x10\xd8\xa7\xf4\x2c\x12\x12\x7b\x4b\x80\x87\xc8\xa6\x8d\xec\xbd\xf6\x96\xac\xc4\xd7\x68\x46\xc4\x8b\xe8\xf9\x2e\xa8\x28\x50\x67\x1e\x11\xeb\xd6\x6e\x63\xb9\x2a\xd0\x31\x3d\xeb\x44\x84\xcc\x3b\xac\x8c\x89\x1b\xcc\x21\xae\x67\x06\x59\xe2\x0a\xbc\x77\x27\xf0\x8f\x9d\x10\x26\xce\x35\x10\xa1\x3d\x64\x57\x57\x0a\x53\x16\x26\xa5\x27\x90\x12\x51\x52\x06\x39\xa4\x8c\x55\xf6\x2d\x79\x51\x8f\xce\xb3\x2c\x79\x51\x53\x26\x35\xa4\xfa\x9e\xeb\xdb\x03\xb3\x0e\xf0\x2b\xc4\xd3\x58\xce\xfd\xad\x34\x29\x58\x24\x97\xd7\xa9\x7d\xff\x78\xe4\x42\x04\x0b\x85\x10\xa2\x8e\x73\x0c\xfd\x31\x92\x45\x0b\x50\x59\x99\x80\x25\x4d\x53\x26\x4a\xdc\x68\xc0\x7a\xf1\x66\x4b\xb6\x47\xd4\x72\x59\xbc\xe0\x64\x42\xa6\xf9\x44\x6b\xde\x69\xb5\x1b\xcd\xbb\xdb\xad\xfa\x87\x1a\x1b\x9d\xcc\xe0\xc8\xb9\x52\x99\xde\x2a\x88\xe7\xd3\x42\x21\x27\xfa\xd4\xf1\x06\xfe\xa9\x7a\x08\x51\xff\x68\x3d\xcf\x33\xe8\x8c\x26\xaf\x31\xd5\x32\x53\xd7\xb4\xc8\x1b\x2d\xfe\xa8\xf1\x73\xf9\x4c\x7f\x40\xea\xa1\xe3\xba\x54\xa4\x26\xb7\xf4\x69\x60\xa1\xbc\xb4\x04\x16\x34\x05\xb3\x3b\x1c\x49\xb8\x13\x31\x57\xd6\xc8\x1f\xbf\xd8\x34\xee\x85\xb6\x09\xc5\x7e\x50\xab\x93\x5e\xc4\x27\x69\x22\x97\x53\x8c\xef\xf8\x01\x74\x86\x1e\x6d\x8e\xdd\x87\x77\x15\x99\xe5\x49\xcc\xa1\xeb\xc2\x39\xbd\x88\x15\x1c\xcc\x44\x05\x90\xcc\x71\x7f\x8a\x8c\x7e\x06\x24\xdf\x50\x51\xd1\x11\xf4\x64\xd1\xc5\x38\xca\xb0\x02\x56\x13\xc2\x84\x48\x38\xae\x43\xa2\x00\x22\xc8\xd4\x5e\x18\x1f\x56\xe5\x4c\x0b\x0d\x9c\x93\x78\xf0\x45\x06\xb8\xa9\x63\x5c\x69\x1c\xb8\xb2\x54\x24\x57\x26\x82\x30\x3d\x03\x69\x1a\x9e\x81\x3c\xb9\x4e\x3c\x0d\xe4\x56\xfa\x85\x29\x1d\x2a\x8a\xc1\x86\xbf\x1a\x40\x72\xd1\x31\x1e\x6e\x69\x9a\x09\x3e\xdf\x05\xd2\x59\x74\xe8\x7b\xf2\x75\x64\xc3\x19\x52\x96\x90\xcd\x71\x51\x17\x87\xaa\x88\x4d\xe8\xbb\x27\x10\xa3\xf3\xc2\x83\x37\x77\xf8\xcd\xe3\xbe\x1b\xad\xf6\x2e\x35\xd0\x89\x85\x0c\x7a\xd4\x44\x8e\x91\x79\xbf\x56\xd4\x7e\xe0\x87\x21\x55\x11\x7a\x61\x6c\x84\xcc\xe7\xe1\xd0\x6e\xec\xee\xb4\xb6\x77\xe9\xa9\x54\xcc\x2b\x52\xfa\x13\x32\x33\x69\xbb\x87\xd0\xa8\x0d\x3f\x36\x86\x21\x52\x30\x8d\x46\xbe\x17\x92\xd5\xe9\x8b\x4f\xef\x62\x79\xd7\x12\xe7\xf1\xbd\x76\x8c\xd3\xa9\x83\x8e\x36\x02\x38\x80\x1e\x72\x6c\x37\xc4\x2b\xab\x2c\x5a\x2f\x47\x9f\xc7\xf7\xda\x29\x1c\x26\x82\x78\x5f\x7f\x45\xa7\x92\x49\xf7\x16\x26\xa4\x52\xf9\x66\x63\xa3\xd5\xb6\x3a\xcd\xd6\xf6\xfe\x56\x73\xbb\x91\x0d\xce\x01\x24\x07\x8a\xe9\x6b\x3b\x88\xab\xa5\xba\x29\x07\xa6\x37\xd7\xd5\x52\x74\xa3\x45\x7e\xae\x17\xbb\xad\xad\xe6\xa6\xa1\x81\xcd\xd6\x5e\x9d\x1c\x4d\x6e\xb6\x3a\x9d\xc6\xa6\x51\x06\x9b\xd6\xee\xbd\xc6\xa6\x51\x01\x8f\xac\x87\x4f\x8c\xea\x04\x84\x39\xd8\xd2\x13\x4e\x62\xcd\x47\x4c\x38\x72\x2b\x79\xb1\xb7\xbd\xd9\x68\xe3\x57\x43\x07\xad\x87\xec\xb5\x0c\xa8\x51\xe7\xbd\x76\x6b\xef\xee\x3d\xa3\x02\xea\x5b\xcd\xed\xd7\x70\x41\xce\xbc\x43\x9f\xb1\x37\x80\x81\xeb\x78\xf1\xee\x83\xaf\x46\xf9\xb3\x0d\x88\x93\x0c\x04\x2f\x95\x6d\x58\x3a\x1e\x2c\xe1\x25\xee\x78\x78\x24\x00\x89\xf8\x4c\xa2\x50\x82\x16\xee\x31\x79\xcd\x9a\x99\x30\x01\x32\xe9\x06\x93\x69\x9a\x32\x9e\x3e\x93\xfe\x4f\xb6\x1c\x0f\xae\xe7\x05\x1a\xe9\x40\x65\x1d\x53\xd5\x80\x69\x6d\x2f\x27\x96\xab\x98\x15\xf8\x7a\x48\xf6\xae\x8c\x8b\x9c\x5c\x51\xca\xff\x0a\x55\x81\x4c\x97\x45\x42\x53\xd6\x34\xb9\x30\xcc\x0d\x4e\x32\x86\xfa\xd3\x99\x77\x4e\xe7\x8f\x0f\x84\xe3\x38\x5b\xa5\x9d\x8d\x6d\xe0\xf9\x08\x09\xbb\x76\x38\x12\x77\x40\x16\x69\x87\x47\xc9\x48\xd2\x29\x69\xe4\xa9\x7d\x72\x2e\x44\xe1\x6e\x1a\x59\xf3\xa8\xa4\x5f\x4f\x32\xb5\xa0\xfe\x7c\x5e\xe1\x8d\x15\xec\x92\x09\xa6\xf7\x48\x8c\x0d\x84\xcf\xf7\x64\x24\x27\x32\xa3\x03\x50\x03\x74\x1c\xeb\x74\x94\x26\x4a\xbf\xe8\xb4\x76\x0c\x0d\x24\x7d\x29\x12\x6b\x3b\xe2\x3e\x11\xf8\x26\xab\xed\x53\x78\x1e\x62\x59\x26\xad\x7c\x99\xbf\x47\x41\xb4\x5f\xc4\x4a\xe7\x24\xf1\x93\x79\x25\xd6\x14\x62\x4f\xcb\x6e\x4a\x52\x7f\x21\x25\xa9\x08\x8b\x52\x89\x38\x8e\x92\x14\xbc\x84\x9b\xd3\xcb\xe8\xb6\x6e\xd4\x01\xc8\x76\x6e\xb6\x3b\x5c\x53\x14\x91\x83\x24\x62\x61\x99\xb8\x64\xe5\x9a\x64\x44\x12\x16\x36\x75\x69\x24\x1d\x6c\x88\x39\xea\xa2\xc3\x24\x00\x82\xcf\x4b\x83\xde\xb7\xe3\x29\xeb\x9a\xe1\x4d\x26\x59\x47\xe5\x7f\xb8\x7e\x12\xf2\x37\xfc\x01\xdc\xf1\x1d\x0f\x85\x09\xea\xf1\x0d\x51\x48\x1c\xba\x99\x1a\x59\xde\xf1\x5d\xd1\x5b\x41\x8d\x1b\x0d\x59\x6a\xff\xc8\x0e\x70\x26\x16\x92\x51\xb1\x48\xf6\x08\xbc\xdb\xe6\xd2\x52\x79\x6d\xb9\x50\xf0\x6e\x99\x4b\xcb\x15\x7d\xad\x50\x40\xb7\x02\xee\xcf\x2e\x9b\x66\x69\xb9\x52\xd6\x4c\x53\x5e\xae\x2e\xe9\xe5\x42\x5d\x59\x87\xcc\x27\xb3\xac\x6b\xe5\x4a\xc1\x53\x6e\xdd\xd2\x35\xa5\x48\xbf\xea\x4a\x71\x79\x69\xa9\xb2\xac\x18\x32\x03\xf3\x14\x80\x4a\x25\x65\x02\xdd\x10\x2e\x44\x61\x09\x4b\x68\x72\xa7\x05\xaf\xaa\xb8\xc8\x73\x0e\x65\x6a\x50\x9f\x04\xe1\x7a\x64\x79\x71\xcc\x17\x34\x8d\x02\x76\x30\x24\x82\x63\x48\x25\x6e\xcb\x8c\x02\x38\xbd\x9c\x43\x79\xd1\x62\x19\x4a\x52\x2d\x45\xda\x92\x0e\x02\x53\x92\x6a\xc5\x22\xba\x65\x45\x74\x4d\x67\x72\xcb\x44\xeb\x94\x33\x18\x51\x54\x17\xf5\x6a\xde\x2d\x13\x13\x63\x69\x3d\xaa\xb6\x21\x7b\x25\x12\xb6\x0c\x58\x18\x69\x8b\xa2\xec\xdd\xbe\xad\x63\x61\xf9\x03\xba\x56\xae\x16\x09\xc9\x15\x05\xc8\xa8\xa8\x9b\xa6\x69\x5d\x5e\x46\x97\xf8\xeb\xcb\x95\xd5\xaa\x52\x28\xc8\x41\xd1\x14\xeb\xcf\x1a\x2d\x59\x7d\x88\xb9\x1b\x4d\x68\x6a\x11\xcd\x83\x49\x54\xcd\xc0\x94\xac\xfa\xc6\x66\xe3\xce\xdd\x7b\xcd\x0f\xbd\xb6\x75\x7f\xbb\xb5\xf3\xa0\xbd\xdb\xd9\x7b\xf8\xe8\xf1\x93\x0f\xdb\x07\xfd\x01\x3c\x1c\x1e\x39\x1f\x7d\xea\x1e\x7b\xfe\xe8\x63\x41\x88\xc6\x27\xa7\x67\xe7\x1f\xd7\xf4\x72\xa5\xba\xb4\xbc\xb2\xba\x56\xbc\x29\x01\xcf\x24\x33\x3b\xee\xd8\x83\x78\x71\xba\xe7\x78\x68\x95\x2c\x60\xd7\xbb\x3d\xa2\x59\x1b\x87\xc8\xe5\xa5\x65\xcc\x38\xb5\x5a\xfd\x56\xc0\x5b\xa2\x5e\x2c\x2a\x5e\x37\x10\xfb\x5f\x5d\xe9\x99\x75\x22\xf0\xf5\xfd\x41\xde\x59\x8e\xba\xb2\x74\x83\x77\x7d\x10\xdb\xef\x83\x80\x71\x6a\x5c\x06\xb0\xf9\x07\xbf\xeb\x07\xf8\xfc\xc5\xe1\x1c\x5d\x32\x89\x0e\x70\x37\xf6\x00\xd0\x2b\x14\x64\x58\x2a\x81\x4c\x4c\xb9\x57\x28\xc0\x52\x89\xf6\xa8\xbe\x58\xf7\xc5\xc4\xba\xbd\x3e\x3e\x3c\x84\x41\xa1\x90\x07\x10\x93\xa2\x50\x88\x56\x14\x71\x60\x7c\x6e\xa0\x86\xae\xd3\x87\x64\x7e\x17\x32\x95\x21\xb5\x8f\xa5\xc4\x84\x0a\x70\x4d\x9a\xce\x09\x69\x50\x5f\x59\xef\xa7\x69\xde\x57\x48\xb3\x07\xa6\x56\x0b\x6e\xa1\x5a\x50\x34\xab\x8a\x6d\x7a\xdd\xc4\x88\x0f\x94\x1e\x08\x33\x81\x45\x5d\xe9\x01\x3f\x1b\x5c\x56\x7a\xc0\xc9\x06\x57\x94\x1e\x70\xbb\xf5\x62\xb1\x67\xda\xb7\x6e\x95\x2f\xc3\xdb\xb7\xab\x3c\x40\xd6\x97\x0a\xa1\x72\xeb\x56\xf5\xd2\xbf\x7d\xbb\x1c\x85\x56\x0a\xbe\x72\xeb\xd6\xf2\xe5\x72\xa5\xe0\x70\x21\xa9\x4f\xec\x44\x7c\xf7\x1c\x57\x42\x5f\x26\xb5\x98\xc1\x07\x85\x3e\x40\x34\x99\x71\x15\x21\xae\x62\x59\x61\x9a\xbd\x56\x37\x28\xea\xbd\x5b\xb7\x56\x2f\xad\x6e\xd0\x8b\x77\x10\xc4\x32\x2a\xe5\x77\x55\x46\x55\x2c\xa3\xd2\xbb\x75\xab\x5c\xc5\x85\x14\xcb\xbd\x5b\xb7\xf4\xe5\xcb\x99\x25\xbf\x82\xeb\x04\xc9\x9a\x7e\xc3\x1f\x7b\x08\x06\x1d\x72\x80\xa3\x3a\xd4\x47\x0f\xf3\xa7\xc6\x76\x1a\xe8\x16\x4f\xe4\x27\x2e\xad\x40\x59\xc5\x93\xa8\x2f\x23\xb9\x42\xdc\x14\xe0\xb7\x35\xe2\xa5\x80\x38\x6d\x25\x2e\x0a\xaa\x82\x6f\x02\xff\xa5\x7c\x13\x38\x66\x57\x6a\x6d\x49\x40\xda\xc3\x8f\xfb\x8d\xed\x3d\xa9\x07\xfa\xa6\x9c\x42\x29\x6f\x3f\x8b\x5d\x82\x46\xee\xb5\x51\x04\x51\xba\x36\xf0\xf1\x5c\x51\xd2\x17\x4d\xd3\xc9\xf1\xb9\xc8\x61\x61\x0d\x46\x57\xa9\x4d\x4e\x8f\x1c\x17\x0a\x77\xb5\xf1\xec\x71\x8f\xc8\x27\x5a\x9e\x4d\x7d\x68\x72\x07\x20\xd1\xa1\x2d\xc6\x2f\xa4\xb1\xbe\x39\xcf\x71\x4d\xc6\x01\xaa\xc5\x1c\xa0\x3a\x99\x64\xa9\x7d\x22\xc1\x75\xcb\x69\x60\x8f\x46\x30\x90\x22\x23\x60\xba\xbb\x23\xfa\x3b\x51\x64\x1f\x38\x0a\x70\x52\xae\xb1\x4c\xc9\x66\x16\xa5\x52\x14\x47\x4d\x1b\x4c\x6a\x7c\x10\x85\xa6\xcf\x31\x78\x78\xc2\x43\x27\x5e\x3c\x11\xc5\x02\x10\xaa\x99\x03\x6c\x76\x9c\x66\xe7\x29\xe5\xf2\xb3\x65\x23\xce\xf6\x10\xa5\x51\x20\x66\x16\x73\xa9\xe9\x78\x1e\x93\xcd\x4a\x90\x9d\x51\x92\x9c\x4a\xbc\x81\xa8\x57\xcf\x5c\x63\xda\x28\x01\xb5\x7d\x2b\xae\x14\xa5\xd1\x59\x5c\x38\x5e\x88\x58\xae\x33\xf4\x4c\x66\xee\x21\xe8\xd8\xcf\xa8\x13\xd3\x33\x4e\x54\x69\x2e\x5a\x95\x17\x40\x2b\x81\x14\xa5\x48\x8a\x4c\x02\xa6\xc4\xde\x84\x79\x03\x61\xd3\x9d\x6b\xa6\x0a\xcd\xb3\x3f\x4e\x15\x0a\xc6\xa6\xd0\x9e\x64\xc3\x0b\x77\xf0\xb1\x22\x18\x76\x8d\x13\x86\x5d\x0f\xae\xeb\xbd\xce\xf1\x50\x52\x6a\x0f\xc8\xee\xef\x98\xdb\x7d\xc5\x55\xf0\x47\x31\xa5\x90\x3f\x2a\xb9\xc9\x7a\xd3\xad\xeb\x54\xbd\xf9\xf6\x27\x0f\x15\x8f\xd8\x1e\x50\xe1\x93\xe0\x76\x6a\xaa\x4b\x37\xae\xbd\x36\xb1\x36\x07\x97\xe8\x93\x99\x5f\xeb\xea\xd2\x8d\xd3\x3c\x0c\x53\x81\x0c\xc3\x54\x68\x7a\x6f\xd7\x4f\x91\x9a\x60\x9e\xe3\x60\x33\x72\x88\x59\x28\xc8\xfd\x19\xf4\xe6\x67\xf0\xf2\x1d\x59\x48\x20\x8e\xce\xce\xf9\x08\x92\x4b\x8d\x52\x14\xeb\x2b\xd7\xb5\x06\xbf\x82\x25\x5d\xf2\x81\x3f\x38\xaf\xed\x25\x32\x73\x14\xd0\x5f\x97\xa1\xe0\x87\x9a\xce\x96\xd1\x2a\x52\x15\x15\x06\xe4\x3e\x80\x8a\x02\xf6\x12\x87\x98\x8e\xa2\x18\xd9\x0c\x92\x96\x4f\x0e\xb1\x68\xd7\x88\xfa\xcb\x85\xe3\x21\x38\x84\x41\x68\x74\x75\x58\x01\x6b\x9a\x06\x96\x34\x0d\x54\xd9\xd6\xf6\x1a\xfe\x04\x55\xfc\x01\xd6\xc0\x12\xa8\x02\xbd\x47\xf5\x14\x42\xa3\x2b\xdd\x97\x80\xb4\x81\x1f\x9b\xf8\x85\x3c\x24\x20\x3d\xc6\x0f\x3c\x61\x3d\x26\x0f\x09\x48\x4d\xfc\x78\x88\x5f\xc8\x43\xea\x4d\xb0\x1c\x26\x14\xbd\x06\x2b\x60\x15\x56\xc0\x0a\xac\x80\x65\x58\x01\x4b\xb0\x02\xaa\xb0\x02\x2a\xb0\x02\xca\xb0\x02\x38\x6a\xab\x9a\x06\x56\x34\x0d\x2c\x0b\x68\x56\x34\x0d\x94\x63\x74\x57\x31\x04\x58\xe6\x78\x57\x70\x24\xc5\x7e\x15\xac\x80\x65\x52\x87\x0a\x28\x27\xea\xf1\xbf\xbf\x22\x01\xe9\x7f\x7f\x19\x3f\xbe\x84\x1f\x5f\xc4\x8f\x2f\xe0\xc7\xe7\xf1\xe3\xcf\xf1\xe3\x0d\xfc\xf8\x1c\x7e\x7c\x16\x3f\x3e\x83\x1f\x7f\x86\x1f\x9f\xc6\x8f\xff\x84\x1f\x9f\xc2\x8f\x3f\xc5\x8f\x4f\xe2\xc7\x73\xfc\x78\x86\x1f\x57\xf8\xf1\x09\x09\x48\xff\xbf\xff\x85\x1f\xbf\xc5\x8f\xff\x89\x1f\xbf\xc1\x8f\x7f\xc0\x8f\xbf\xc7\x8f\x5f\xe3\xc7\x9b\xf8\xf1\x77\xf8\xf1\x3f\xf0\xe3\x6f\xf1\xe3\x57\xf8\xf1\x4b\xfc\xf8\x05\x7e\xfc\x5c\xea\x4d\xc0\xd8\x4c\xb4\x5d\x15\xbc\x08\x11\x5f\x98\x60\x6b\x40\x5f\x05\xfa\x0a\xd0\x97\x81\xbe\x74\x1d\xfd\xfe\xf1\x1b\xff\x88\x91\xfb\xc7\xaf\xd3\x9f\xaf\xd1\x9f\xff\x4c\x7f\xbe\x4a\x7f\xbe\x42\x7f\xbe\x4c\x7f\xbe\x44\x7f\xbe\x48\x7f\xbe\x40\x7f\x7e\x88\x1f\x7f\x83\x1f\x3f\xc0\x8f\xbf\xc6\x8f\xef\xe3\xc7\xf7\xf0\xe3\xbb\xf8\xf1\x1d\xfc\xf8\x2b\xfc\xf8\x4b\xfc\xf8\x0b\xfc\xf8\x26\x7e\x7c\xe3\x1f\xbf\x4e\x7f\xbe\x46\x7f\xfe\x33\xc5\x87\xfd\x7c\x95\x04\x92\x77\x82\x20\x41\x8f\x20\x47\x50\x23\x88\x11\xb4\x08\x52\x04\x25\x4c\xe2\x07\xef\x86\xc4\xaf\xb0\x9f\xfe\x9f\xe7\xb8\x37\xfc\x9f\xe7\x3f\x23\xcf\x9f\x92\xe7\xaf\xc8\xf3\xbf\x93\xe7\x4f\xc8\xf3\xc7\xe4\xf9\x23\xf2\xfc\x21\x79\xfe\x0d\x79\xfe\x80\x3c\xff\x9a\x3c\xbf\x4f\x9e\xff\x8d\x3c\xbf\x47\x9e\xbf\x24\xcf\xef\x92\xe7\x77\xc8\xf3\xaf\xc8\xf3\xdb\xe4\xf9\x97\xe4\xf9\x2d\xf2\xfc\x05\x79\xfe\x05\x79\x7e\x93\x3c\xff\x0b\x79\x7e\x83\x3c\xbf\x4e\x9e\x5f\x23\xcf\x9f\x93\xe7\x7f\x26\xcf\xaf\x92\xe7\x57\xc8\xf3\xcb\xe4\xf9\x25\xf2\xfc\x22\x79\x12\x72\x9f\xe6\x38\xdd\x00\xf5\x58\x5e\xbe\x05\x2f\x2f\xad\xdb\x68\xfd\x0e\x96\xfe\x40\x3d\xd2\xd1\x51\x8c\x40\xe5\xed\xa4\x06\x70\x30\xee\x0b\x47\xf0\x38\x1f\x8f\x2e\x4e\x6a\xd6\x6d\x13\xd5\x14\xab\x64\x22\x00\x8b\x26\xbb\x71\x38\xec\x7a\x91\x2b\x5d\x38\x01\x92\xa4\x14\xeb\x13\xb0\x37\xd3\xbf\x8c\x24\x61\x19\x1a\x5d\x5e\x5a\xa5\x12\xf0\xcc\x40\xb6\x94\xa2\x07\xac\x9b\x26\x64\x72\xb2\x75\x03\xde\x36\x63\x61\xd9\x9b\x80\x61\xae\x37\x11\x76\x52\x5a\x82\x45\x9d\xc1\xca\xd6\x2d\x6d\x5d\x2a\x49\x06\x46\x42\xde\xa3\xde\x02\xec\x83\x50\xb6\x14\x50\x07\x01\xc8\x6e\x3e\x12\x67\x37\xc9\x1d\x1f\x9a\xea\xd0\xf5\xfd\x40\xb6\x3e\x50\x57\x8a\x50\x99\x28\x45\x4f\x99\x24\xac\xe2\x63\xd5\x87\xf4\x16\xcd\xed\xb2\xb0\xd0\x8e\x37\x69\xca\xbd\x75\xf1\xc3\x90\xd4\x05\x09\x04\x66\xa4\x63\xc8\x6a\x9b\x44\x3a\x00\x8b\x7a\x0e\xd6\x0b\xb0\x9b\x40\x32\x50\x7a\x13\xa5\x88\xd2\xc6\xf3\xb8\xe5\x40\x1d\x50\x23\x4c\xeb\x56\x69\x6d\x6d\x6d\x0d\xf7\x00\xfc\xcb\xd7\x29\xb8\x2f\xd8\x69\x93\x34\xd1\x56\x45\xec\x27\x35\xba\xd0\x10\x31\x74\xcc\x7a\x2d\x6d\xe2\x09\xbb\x5a\xaf\xe8\x44\x3b\x3f\x7d\x53\xab\xf9\xb7\xb5\x42\xa1\x7f\xcb\xac\xd6\xfa\x5c\x97\xd2\x35\xfd\x0f\xe8\x5a\x0d\xa7\x74\x0b\x05\xb6\x94\xe0\x8e\x3e\x43\x62\x7b\x2b\x49\x78\x95\xb5\xee\x98\xb0\xeb\xf6\x8a\x8e\xe1\xde\xd6\x2f\x2f\x75\x9a\x00\xa7\xeb\x47\x5f\xf8\xa7\x9f\x93\x4b\x59\xb9\x16\xa4\xaa\x14\x0a\xd6\x6d\x5d\xd3\x22\xc8\x3e\xb9\xd5\x2d\x0d\xb7\xaa\x70\x44\xe4\xfe\x6d\x6d\x1d\x75\xfb\x25\xbd\x47\x7a\x9a\x63\x44\x09\xb5\x42\x41\x76\x4c\x1a\x57\x74\x14\xc0\x88\x45\x1b\xca\xbf\xa9\x47\x5b\x63\xa4\xab\x7a\x34\xf9\x04\xdc\x31\xf3\x56\xd4\x33\x6e\x1a\x5c\xc7\x5d\xc7\x90\x24\xe0\xe1\xf7\xe9\x27\xae\xc8\x47\x1d\x7f\x00\x12\x51\x4b\x69\x16\x66\xdb\x97\x58\x1a\xb2\x9d\xc8\xff\xfb\x89\xef\x4a\x39\xcb\x0b\xda\x0f\xa8\x29\x22\x87\xfc\xda\xf7\x67\x42\x32\x5b\xc5\x08\xf2\xb7\x33\x21\x73\x8d\x16\xe9\xfa\x76\x28\x5b\xa0\xba\x0a\x96\x56\xc0\xa2\x06\x02\x41\x3b\x81\x6d\x7e\x56\xd7\x25\x4d\x2a\x86\x46\x38\x13\x5f\xc1\x3c\x92\x25\xde\x90\x2d\x20\x4d\x3f\xf1\x9f\xde\x7a\xf3\x13\x6f\xfd\xfd\xe7\xde\x7a\xf3\xcf\xde\xfe\xe6\x37\xdf\xfa\xfb\xaf\xbc\xfd\xa7\x3f\x79\xeb\xcd\xe7\x6f\xff\xe9\x8f\xde\xfa\xf5\xb7\x24\xc0\x5c\x99\xe6\xe4\x28\xda\x52\xb2\x1c\x4f\x65\x0b\xe8\xa0\xb2\xb6\xb6\x06\xfa\x39\x63\x87\x8f\x9b\x40\xc9\x53\xd7\xcc\xc2\x8b\xf6\x99\x2f\x5b\xc2\x7c\xac\xa9\x95\x27\xcb\x13\xd3\x76\xad\xba\x04\xd6\x96\xd7\x30\x53\xb9\x2e\x2d\xb5\x02\x15\xd3\xae\x00\xbd\x5c\x9e\x9f\x54\x34\x20\x15\x92\x2e\x2f\xe1\x09\x7b\x6e\xca\x84\xad\xa9\x90\x54\x5f\xae\x94\x81\xbe\x5c\xd5\x59\x8f\x98\x99\x9c\x99\x12\xce\x47\x8c\x43\x25\xc8\x8c\xb9\x21\x70\xff\x00\x32\xbf\xeb\x6c\x5f\xac\x7f\x70\x53\x5b\x81\x2a\xe5\xa5\x4a\x15\x94\x97\xaa\x95\xf9\x54\x89\x2d\x73\x67\x00\x50\x83\x55\xb1\xa5\x74\xbd\x0c\x96\xf5\xf2\x35\xe4\xce\xb1\xf2\x15\x47\xdb\xdb\x3f\xf9\xc2\x5b\x6f\x7e\xf1\xed\x9f\xfe\xe9\xdb\x6f\xfc\xf4\xf7\xbf\xfd\xd9\xdb\x7f\xf7\xcb\xb7\xdf\xf8\xf4\xef\xfe\xe2\x87\xff\xf4\x95\x5f\xfe\xf3\x9f\xfe\xd9\xef\x3e\xfd\xb9\xb7\xfe\xfe\xbf\xcd\x1b\x73\x59\x73\x61\x31\xf7\x7f\xfa\xca\x2f\xde\xfa\xf5\x37\xde\x7a\xf3\x1b\x6f\xbd\x79\xf5\xbb\x4f\x7f\xe6\xed\xbf\xfb\xf9\xdb\x7f\xff\x5f\x7e\xff\xdb\x6f\xbe\xfd\x5f\x7f\xfc\x4f\xdf\x78\xf3\xba\x7c\x45\x8b\xe3\x19\x60\xf9\x66\xab\x0c\x85\x01\x46\xe1\x9f\xbf\xf9\x3f\xe6\xb2\x13\xe9\xed\x37\xae\xfe\xe9\x1b\xbf\x7d\xfb\x8d\xe7\xbf\xff\x02\x96\x26\x7f\xff\x8b\xbf\x92\x80\x07\xf4\xea\x4c\xd4\xf2\x2c\x68\x53\x25\xbe\xfd\x5f\x7f\xfd\xfb\x5f\xfc\xf2\xed\xcf\x3f\xff\xfd\xb3\x4f\xbd\xf5\x9b\x37\xfe\xf9\x1b\x6f\xfe\xee\xdb\x5f\xfa\xdd\x1b\x9f\xfb\xa7\x3f\xc7\x02\xe2\xef\x3e\xfb\xdb\xb7\xfe\xe7\xcf\xde\xfa\x87\x6f\x27\x4b\x5c\x9a\x59\x62\xbe\xc9\xef\x1f\x54\xcb\x5f\x7d\xfb\x9a\x5a\xe6\x59\x1f\xe7\xd4\xf2\x57\x3f\x7b\xfb\xf3\x57\xbc\x96\x9f\x9a\x57\x4b\x56\xe2\xec\x5a\x66\x0d\xba\xc5\xf2\xae\x9b\x16\xe2\x1a\xbe\xf5\x26\x5e\xa1\x4e\x9f\xff\xe5\xf4\xd9\xf7\xa6\xcf\x3f\x33\x7d\xf6\x6b\x5c\xb0\x76\x7d\xb9\xb3\x6a\xf9\xf3\xb7\x7f\xf3\x85\xb7\x3f\xff\x0c\x97\xfa\x9b\x37\x52\xa5\xfe\xee\xb3\xbf\x9d\x57\xea\xca\xcc\x52\x73\xed\xce\xc5\xa2\xdf\xf9\xfa\xd5\x3b\xdf\xfa\xcd\x3b\xdf\xfa\xd5\x3b\xcf\x7e\xf3\xce\xb3\x1f\xbf\xf3\xf5\xef\xbd\xf3\x17\xdf\x79\xe7\xd7\x7f\xf5\xff\x7c\xee\x2b\xff\xff\xbf\xc5\x14\x7d\xe7\xb3\x3f\xf9\x97\x9f\xfd\xfc\x9d\x5f\xfc\xc5\xbf\xfc\x35\x5e\xab\xff\xcb\x5f\x7f\xfa\x9d\x6f\xfd\xea\x5f\x3e\xf9\xe9\x77\x3e\xf3\xbd\x05\x09\xd4\x5f\xa8\x6c\xd1\x88\xfd\x0f\xe9\x4f\x99\xc2\x67\x93\x3b\xcf\xb0\x7e\xd6\xf0\xc9\x2d\x3a\x22\xf9\xcb\x55\x5a\x70\x58\x20\xb2\xe7\xaa\xb6\x0c\xca\x55\x7d\x69\x3e\x17\x8d\x7c\x19\x24\xe6\x0d\x9d\x4c\x1c\x0f\xde\xd5\x7c\x14\x79\x44\x10\x91\x59\x59\xd3\xf0\x63\xed\x1a\x64\xb8\x03\x05\x31\xe9\xf2\x72\x19\x94\x97\x57\xae\x99\x0d\x98\xbf\x85\x64\x2d\x34\x5c\x8b\xf1\xbb\xaa\x45\xe4\xb5\x21\x21\xc1\x5d\x3d\x9b\x5e\x7d\x72\x7a\xf5\xa9\xe9\xd5\xa7\xa7\x57\x9f\x99\x5e\x7d\x76\x7a\xf5\xc6\xf4\xea\xf3\xd3\xab\x2f\x4e\xaf\xbe\x3c\xbd\xfa\xea\xf4\xea\x6b\xd3\xab\x6f\x4c\xaf\xbe\x39\xbd\xfa\xd6\xf4\xea\xdb\xd3\xab\xef\x4c\xaf\xbe\x37\xbd\xfa\xfe\xf4\xea\x07\xd3\xab\x1f\x4e\xaf\x7e\x34\xbd\xfa\xf1\xf4\xea\x27\xd3\xab\xff\x3e\xbd\xfa\xe9\xf4\xea\x17\xd3\xab\xbf\x9d\x5e\xbd\x39\xbd\xfa\x87\xe9\xd5\x6f\xa7\x57\xff\x6b\xfa\xec\x13\xd3\x67\x57\xd3\x67\xcf\xa6\xcf\x3e\x39\x7d\xf6\xa9\xe9\xb3\x4f\x4f\x9f\xfd\xd9\xf4\xd9\x67\xa6\xcf\x3e\x3b\x7d\xf6\xb9\xe9\xb3\x37\xa6\xcf\x3e\x3f\x7d\xf6\x85\xe9\xb3\x2f\x4e\x9f\x7d\x69\xfa\xec\xcb\xd2\xb5\xe8\x33\xbf\x10\xc9\x4a\x7c\x12\xe7\x84\xcb\xff\x11\x29\xf9\x4d\x82\xdd\x77\x70\x39\x57\x3f\x26\x45\x7d\x09\x97\x73\xf5\x59\x5c\xfe\xd5\xb7\x71\xc9\xb8\x36\xdf\x23\x88\xff\x90\x60\xf4\x09\x4c\x83\x67\x5f\x20\xf5\xf8\x0c\x26\xc0\xb3\x4f\x92\x1a\x7c\x91\x54\xe8\xcb\x84\x3c\xdf\x27\xd4\xfa\x2a\xa6\x10\xae\xca\x15\xae\xdf\xd5\xd7\x30\xee\x57\xbf\xc0\x55\xc4\x44\xfa\xc6\xec\x1a\x70\x87\x17\x42\x57\xa8\x54\xb4\x32\xa8\x54\xf4\x6b\xba\x42\xe4\x1f\x23\x51\xeb\x67\xdf\xc5\xfc\xeb\xd9\xf7\xa7\xcf\x7e\x30\x7d\xf6\xc3\xe9\xb3\x1f\x4d\x9f\xfd\x64\xfa\xec\xa7\xd3\x67\x3f\x9f\x3e\xfb\xe5\xf4\xd9\xdf\x4e\x9f\xfd\xdd\xf4\xd9\xaf\xa7\xcf\xfe\x61\xfa\xec\x7f\x4e\x9f\xfd\xaf\xe9\xf3\xab\xe9\xf3\x4f\x4e\x9f\x7f\x6a\xfa\xfc\xd3\x98\xeb\x3d\xff\xec\xf4\xf9\xe7\xa6\xcf\xdf\x98\x3e\xff\xf3\xe9\xf3\xcf\x4f\x9f\x7f\x69\xfa\xfc\xab\xd3\xe7\x5f\x9f\x3e\xff\x26\xe6\x8c\xcf\xbf\x3d\x7d\xfe\x57\xd3\xe7\xdf\x99\x3e\xff\xee\xf4\xf9\xf7\xa6\xcf\xbf\x3f\x7d\xfe\x83\xe9\xf3\xbf\x99\x3e\xff\xe1\xf4\xf9\x8f\xa6\xcf\x7f\x3c\x7d\xfe\x93\xe9\xf3\x9f\x4e\x9f\xff\x6c\xfa\xfc\xe7\xd3\xe7\xbf\x98\x3e\xff\xe5\x3c\x11\x21\xe5\xd4\x23\x59\x8d\xef\x91\xbc\x3e\x4f\x10\xfa\x26\xc1\xe0\xd3\x04\xd7\x1f\x12\xfc\x7e\x44\x72\xff\x29\xae\xde\xf3\x1f\x90\x6a\xfc\x18\xd7\x07\xd7\xe4\x0d\x52\x8d\xbf\xc1\x88\x3e\xfb\x3e\x41\xe5\xcf\x09\x21\x7e\x4a\x30\xfe\x4b\x4c\x88\xe7\x5f\x25\xb4\xf8\x01\xae\x36\xa6\xd7\xdf\x62\x1a\xe1\xca\x7c\x07\xd7\xf0\xd9\xdf\x11\xec\xbf\x84\x2b\x89\xc9\xf4\xeb\xb9\x4b\x16\xab\x95\x68\xba\x95\xb5\x32\xa8\xac\x6a\xd7\x34\x5d\xec\x45\x24\x21\x0f\x2e\x6b\xf8\x71\x0d\xf3\xe0\x4e\x47\x84\x94\x55\x9c\xb2\x7a\x6d\x4a\xea\xa3\x44\xe4\x39\x6b\xfa\x2a\x28\xaf\x95\x57\xe6\xa7\xe3\x2e\x4d\xc4\xa5\xc2\xca\xca\x32\xd0\x57\x56\xaf\xe1\xba\xd4\xa3\x89\x48\x1f\xad\xba\x0c\x2a\xda\xd2\x75\xe9\xa8\x03\x14\x31\xa1\xbe\x52\x05\x15\x7d\xf5\x1a\x29\x9c\xf8\x4b\x11\x93\x2d\x2f\x57\x41\x65\x79\xe5\xba\x64\xcc\xbd\x8a\x98\x72\x75\x05\xb7\xe4\xea\x35\x2d\xc9\x17\xc0\x29\x83\xbd\xd4\xe2\xfa\x15\x5d\x6a\xfb\xc7\x6a\x5d\xbb\x4c\x8d\x6b\x75\x3d\x63\x5c\x2b\x6c\x15\xf2\x3b\xb4\x99\xea\x14\xd1\x92\xb5\xe8\x8d\x97\xbb\xc8\x1f\x85\xb3\x95\x2a\x43\xe4\x8f\x26\x44\xb7\x51\xbf\x19\xdd\xc4\xad\x03\xa4\xd4\x12\xe9\xf3\x1c\xc3\x91\x0b\xeb\x36\x38\x8c\x1c\xdc\xa0\xb9\xf1\x82\x55\xc4\x6f\x92\x51\x94\x89\x32\x01\xe1\x2c\xb3\xe0\xf7\xd5\x24\x98\x2a\x1c\x98\xf0\xf2\x72\x30\xe3\x64\x97\x5b\x18\x89\xa6\xc1\xcc\x2a\x38\x80\xde\x00\x06\x19\x7b\x60\x4b\xb9\xa0\x79\xa3\x33\x53\x28\x24\x63\x81\x44\x31\xf0\x47\x38\x51\x68\x5a\x22\x42\xec\xbc\x55\xdc\x7c\x65\x3e\xf9\x2d\x35\xec\xdb\x2e\x4c\xa0\xcf\x0f\x62\x13\xe0\xcc\xc5\x7e\x2e\xbc\x78\xa6\xcb\x32\xa6\x67\xb8\x59\x20\x96\x75\x74\xbd\xbd\x00\x86\xce\x68\xde\xb2\x58\x0f\x1a\x04\xb2\x41\x4a\x9c\x8a\x5c\xee\xe5\xda\x08\xca\x25\x4b\x3d\x03\x25\x4b\x3d\x17\x63\xe1\x19\xaa\xdb\x21\x74\x1d\x0f\x9a\xdc\x31\x25\xb0\x54\xd7\x1f\x0e\x61\x80\x7f\x48\x43\x9f\xd8\xe1\x02\x6d\x00\x18\x2c\x38\x9e\x83\x98\x39\xd0\x82\x2c\x15\xa3\x3a\x9d\x49\xc5\x18\xf3\x05\x1b\x2d\xe0\xef\xb3\xa2\x04\xf0\xef\x79\x51\x52\x16\x4e\x1d\x74\xb4\x40\x10\x5c\x90\x8a\x39\x58\x47\xf7\x51\xf5\x5d\x67\x94\x6d\xea\x78\xcc\x91\x5b\x93\xb9\x42\x15\xbf\x68\x98\xd0\xc8\x3e\x81\xb2\x02\xac\xdc\x41\x83\xd4\x91\x8d\x8e\x64\xdc\x1d\x09\x30\x2e\x45\x56\xf0\x08\xa4\x69\x78\x76\x51\x6e\x01\x0c\x91\x1f\x40\xe1\xce\xbd\xc8\x3c\x29\x0f\x3b\xcc\x6d\xa3\xb4\xa2\x21\x13\xd5\xdf\x00\xe4\x34\x1c\xf0\xbb\x0f\x78\x73\x03\x44\x63\x11\x89\x8d\x6f\xb2\xe0\xb7\x54\x88\x45\xef\x1e\xd9\xa3\xdc\xa2\x59\xc1\x51\xfd\x38\x16\xb1\x3d\x19\x14\x78\x42\x32\x5e\xa8\x1e\xfe\x9c\x37\xc4\x84\xfc\xac\x17\xc9\x6f\x08\x51\xc7\x0e\x86\x70\xce\x85\x76\xf3\x06\xad\x1a\xc2\xd8\xa0\x3f\x71\x99\x29\x48\x1b\x72\x09\xd9\xc4\xc5\x63\x72\xe4\x55\x87\xea\x83\x91\x4e\x14\x61\x7e\x00\x87\x8e\xb7\x83\xe9\xa7\x80\xa4\x32\xa4\xa5\xac\xe7\xf5\xa7\x78\xf3\xde\xa2\x3e\x10\x4d\xd3\x13\xbd\x20\xae\x5b\x86\x45\x2f\xbc\x26\xc7\x21\x68\x1d\x92\x72\x8e\xfd\x13\xd8\xf1\xe5\x40\x3d\x03\x81\x7a\x4e\xf4\x12\xd0\x19\xb9\x3c\x58\x08\x05\xe9\x2c\x45\xe7\x92\x85\x02\x64\x18\x7f\xdc\x81\x01\xb9\x8f\xb3\xe3\xcb\xac\x2c\x4c\xbf\xc0\x77\xd5\x33\x90\x0a\x38\x07\x96\x0a\xbd\x81\x18\x2f\x7c\xb2\x58\x1e\xac\x9e\x2b\x13\xc5\x88\x68\x63\x07\x7d\x19\x0f\x65\x4b\x0d\xc8\x35\x9e\x00\x8f\x67\xe1\x83\xbd\x68\xa0\x7c\x83\xb0\xc5\x9d\x26\xc0\xd3\x74\x94\x9e\xb8\x67\xa1\xb4\x8d\xda\x26\x80\x7d\x64\x7b\xc3\x9c\x1b\xe6\x84\xd3\xc0\x9c\x7e\xe7\xcd\xec\x77\xc4\x4a\x92\x9f\x4b\x0a\xe5\x60\xb6\xb5\xe5\x78\xd0\x0e\xf8\xd5\x26\xd7\xb1\x16\x8a\x34\x99\x9a\x92\x09\x65\x8b\x7b\x6a\x1f\x38\xb8\x02\x8e\xef\xa9\x67\x3a\x6e\x2d\xe2\xa8\x3d\x0e\x3c\xd7\x41\x1e\xa8\x96\x07\xaa\x29\x35\x9b\xf8\xb5\xc8\x1b\xb6\x28\xaf\x8e\x94\x61\x90\xac\x00\x63\xbf\xc0\xca\x30\x0c\x5a\xf3\xb6\x3d\x70\x6c\xf7\x45\x6b\xce\x4c\x01\x08\xde\x7d\xe8\x21\x88\x7b\xa4\x67\x72\xac\x59\xd0\x39\xa8\xa7\xe9\x94\x2c\x46\x0e\x80\x07\x34\x72\x54\x0d\x59\xef\x50\xcf\xd8\x7d\x70\xce\xa1\x8c\xab\x5b\xcf\xad\x6e\x5d\x80\x5f\x34\xcd\xe8\xe3\x9c\x6b\x4b\x32\xec\xd4\xa5\x1b\xbc\xe2\x3e\xc3\x8e\x04\x31\x96\xea\x08\x29\x6f\xc6\x39\x82\xbe\xa9\xdf\x74\xe8\x98\x8f\x2e\xbd\x94\x43\xe0\x83\x2e\x65\x2e\x0e\x7e\xf6\x40\x0e\x97\xca\x6d\x81\xfe\x0d\x99\x94\x5d\xf2\x95\xa2\x9f\x69\x89\x1b\x7d\x2c\x7b\x11\xbb\x85\x3f\xb4\x0d\xa9\x5f\xec\xeb\x06\xca\x1c\xee\x9f\x6a\xad\x1d\x1b\x21\x18\x78\x94\x6b\x06\x30\x74\x3e\x0e\xb9\xbd\x32\x52\x00\xf7\xc3\x9d\x2b\x45\xe0\xe2\xd2\xfc\x3e\x57\xda\x08\x40\xc9\x4b\x57\x64\xa6\x5b\x97\x94\x06\x80\x9d\x62\xce\x87\xbe\x87\xcc\x2e\xd3\xb0\xc3\x15\x02\xf4\xfd\xa1\x1d\x38\xb6\x87\xd8\xd7\x23\x3e\x9f\x72\x45\x3c\xf6\x7a\xc7\x3e\x76\xdc\xf3\x9e\xfa\x51\xdf\xf1\x88\x35\xdd\x0c\xf9\x00\xf7\xcc\x79\xb3\xa6\x57\x28\x50\xa3\x32\xee\x8d\x9d\x39\x5e\xf2\xa8\x96\xbd\xac\x29\x6a\x00\x4f\x60\x10\x42\x39\xc7\x9d\x33\x54\x2e\x68\xee\x21\xb9\xc3\x9c\x08\xef\x26\xcc\xc8\xeb\x40\x04\x6a\x1d\x1e\x86\x10\x3d\x36\xa1\xea\xd3\xb7\x1b\x76\x4a\xf6\xcb\x42\x3f\x89\xa0\x9f\xcc\x85\xae\xbb\x63\x5c\xfe\x81\x3b\x0e\x40\x5c\x6d\xdc\x42\xcc\x74\x8e\xb8\x1b\x89\xf4\x4d\xe3\x2f\x3c\xd8\xac\xa4\x16\x23\x9e\x2d\xfe\xe0\x3c\x00\xbb\x99\x36\xe0\x63\x3d\xc8\xb3\x43\xbc\xbc\x84\xb5\x74\x04\x66\xd2\xb9\x04\x4f\x9d\x99\xd7\x73\x8d\x54\x63\x1b\x52\x76\xad\x66\x4c\x35\xdc\x7b\xee\x43\xbc\x76\x26\xc2\x09\x7b\x95\x91\xa2\x1e\x30\xa1\xb9\x66\xab\xd1\x4c\x26\x27\x2b\x2b\x78\x59\x49\xd4\x3b\x50\x62\x3a\xd0\x71\xaf\x83\x50\x11\x55\x82\x67\xe0\x19\xd9\xcf\xbe\x74\x99\xef\xb6\xc4\x84\x99\x2e\x33\x5e\x7a\x01\xe2\x1c\x3b\x83\x81\x7b\x2d\x69\xfa\xd0\x71\x93\x94\xf1\x72\xf1\x24\xd6\x71\x22\x27\x89\xd8\x55\xfe\x6c\x46\x1c\xd9\xd0\xf5\x96\xc9\xaf\x96\xc3\x23\x97\xad\xae\xcc\xe8\x4a\x36\xae\xda\x62\xd5\xc4\xa9\x9f\x8a\xa2\x73\x15\x90\x23\x47\x18\xd1\xec\x40\x8b\x83\x29\xe1\xdd\x14\x64\xfc\x8c\x6c\x9b\xf2\x74\x90\x99\x04\x48\x60\x7a\xb1\x40\x3d\x99\x53\x42\x84\x10\xb5\xe8\x0d\xdd\x73\x45\xf6\xa1\xeb\x1f\xd8\xae\xe5\x8e\x8e\x6c\x33\xbe\xaf\x3c\x9a\xfe\x66\xb1\x62\x21\x07\xb6\xa8\xca\x61\xf2\xe4\x76\x94\x64\x38\x99\x52\xa3\x4b\x16\x00\xea\x96\xf1\xa3\x82\x1f\x55\xfc\x58\xea\xcd\x58\x9c\x82\x12\x54\x40\x20\x96\x23\x2c\xbf\xb2\xbe\xb9\xc2\x7f\xdf\xe9\x7a\x6f\x76\xba\x6a\x74\x5c\xff\x5b\xf1\x1b\x07\x3d\x5c\xf9\x41\xae\x5d\x1c\x75\x58\x53\x28\xb0\x2d\x0f\xb2\xbe\x31\x83\xcb\xcb\x4d\x1b\x41\xd5\xf3\x4f\x79\xe7\x71\x06\x26\xca\xd9\x42\x22\x0a\xe0\x59\x8f\x72\x89\xdb\xd5\x2c\x59\xc4\x02\x88\x25\xc5\x2c\xc8\xf5\xf3\x2e\x7c\x77\x0e\x13\x69\x0b\x05\xe6\x5f\xa7\xef\x7b\xa1\xef\xc2\xf4\xb7\xea\xfa\xc3\xb8\x53\x65\x4d\x4b\x01\x34\xf9\xfa\x13\xd0\x2e\x67\x91\xbe\x86\x3b\x99\x99\xb0\x13\xbd\xc3\x70\x10\xcc\xfe\x0e\x1c\x6f\xa0\x62\xaa\xcb\xd9\x42\x41\x32\x48\x61\x1b\x97\xc9\x50\xd0\x8d\x89\x5a\x8a\x69\x50\x94\x8e\x43\x89\x13\x79\x5d\xb4\x23\x5a\x90\xd9\x96\x8e\x33\x28\x4a\x8a\x21\x19\x62\xa4\x21\xf5\x70\xc6\x7d\x1b\xc9\xdd\x1e\x95\x96\x28\x76\x10\x68\x8a\x42\xb6\xad\x29\x65\x89\x9f\xa6\xf7\x80\xb6\x24\x9f\xf7\x9f\xba\xa4\xd8\x7f\x93\xf4\xcd\x32\x50\xef\x15\x39\x42\x60\x97\x4b\x9a\x30\x79\xef\x62\xd6\xf7\x81\xfe\x62\xbe\x0f\xd2\xf9\x5c\xe3\xd4\x80\xed\xd4\x77\xc9\x25\x39\x80\xd9\x5b\x81\x68\x6b\x93\x9a\x35\xf5\x6a\x29\x64\x73\xf6\xe7\xed\x8c\x07\x03\x81\x4d\xcc\x77\x61\xc0\x2f\xd3\x92\x8a\x90\xec\xbf\xbf\x9a\xa9\x0a\x12\x81\xf0\xce\x56\xeb\xd1\xfe\xa3\xb6\xb5\x63\x5e\x6c\x53\x1d\x09\x0d\xd4\xdb\x0d\xeb\xb5\xfd\x47\xad\xf6\xa6\xa1\x47\xee\x4b\x5a\x27\x30\x38\x74\xfd\xd3\x47\x81\x3d\x9a\x7b\x3b\x11\x96\x0a\x4b\xa7\x7e\x10\x3b\xdf\x08\xd4\x38\x47\xee\x48\x97\xfa\x00\x4e\x1d\x47\x05\x2a\xc5\xe1\x55\x9d\x43\x41\x35\xbe\x89\x63\xb7\x63\x75\x9a\x1b\xb8\x27\x34\xb6\xac\x4e\x93\x5c\xba\x62\xd5\x77\x5b\x5b\x7b\x9d\x86\x51\x06\x77\x9a\x8f\x89\x0b\x9b\xdd\x4e\x73\xe3\xb5\x27\x46\x35\xa2\x43\xce\x1d\x9b\x19\x1a\x04\xd0\xb5\x91\x73\x02\x05\x0a\xf0\x52\x98\x07\x7b\x6e\xf9\x18\x03\xf0\xb2\x29\xc0\xa1\x73\x06\x45\x02\x12\x74\x98\xc3\x68\xe4\xf4\x9f\x9e\x0b\x71\x14\xc5\x89\xf0\x8d\x6b\xf6\xca\x48\x98\xf4\x11\x1a\xb9\x11\x89\x3d\x93\xea\x20\xf6\x1b\x5a\x06\x82\xeb\xd1\x4a\xc2\x17\x4e\xb4\x33\x3b\xd7\x67\xcf\x68\x04\x03\xf2\x16\xd7\x37\xca\x5d\xf0\x21\x9e\x02\x89\x90\xe1\x0e\xff\x47\x0e\x22\x47\x0e\x02\x4c\x8c\xd8\x44\xe8\x7e\xc4\x93\xf3\x7b\xcd\xd8\x02\x48\x9c\x5e\xa3\xa6\x37\x1a\x33\xc7\xb1\x91\x69\xf4\x2e\x71\xbe\x19\x1b\x46\xd3\x50\x4c\x20\x2b\x80\x76\x3a\x9c\xe4\x90\xb0\xa2\x66\x79\x06\x6c\xaf\x6e\x8c\x73\x6e\x6e\xef\xec\x75\xf6\xe3\x7b\xcc\xe3\x20\xe2\xde\x65\x37\xfa\xde\x68\x6d\xb5\xda\x49\xf3\x6b\x97\x59\x5b\x7b\xf4\x26\x1b\x72\x80\x59\x56\x80\x4d\x22\x96\x34\x72\x47\xbc\xcb\x6e\x8b\xf7\xc9\x1b\x31\xe0\x23\x6f\xba\xa2\x80\xbe\x29\x93\x2b\xe4\x89\x53\x61\x80\xe4\xaa\x22\x98\x6a\xbb\x2f\x6c\xaa\x9d\xc4\x10\xf3\x4c\x3f\xe2\x99\xdd\x6a\x19\x90\x7f\x3d\xda\x2b\xc7\xe9\x78\x7d\x79\x09\xb0\xbf\x9e\x02\x1e\xa4\xa3\xcb\xe5\x32\x60\x7f\x3d\x05\x9c\x9a\x17\xa2\x63\x15\x1d\x88\x2e\x58\xc6\x09\x17\x2c\xf5\x84\x07\x1d\xe6\x1a\x86\x5e\x84\x9e\xa4\x6f\xf7\x14\x90\xff\x7b\x20\xa7\x31\x32\xf7\x4a\x3e\xc8\x5c\x1c\xd9\xed\xa5\x2f\x8d\xf4\xd2\xb7\xda\x8b\x97\x2b\x66\xaf\x8f\xf4\xb2\xb7\xd8\x8b\x09\xe8\xb5\xd6\x4e\x7c\xa3\xdb\x92\xf6\x01\x7a\xbb\x75\x77\x0f\xec\xf5\xc0\x86\xd9\x1d\x02\xf2\x7f\x0f\x0c\xcc\x14\x6c\x65\x74\x26\x29\xe0\x8e\xd9\x1d\x80\x41\x0f\x34\xcc\xee\x1d\x40\xfe\xef\x81\x43\x66\x46\x9f\xed\x93\x39\x37\xdf\x05\xf6\xc0\xa1\x57\xdf\x91\xc3\x8a\xf5\x0d\xa3\x11\xdb\xbe\x27\xfa\x79\x66\xf5\x90\x4e\x7b\x79\x29\xf5\x8f\x60\xff\xe9\x81\x7f\x16\x07\x72\x2f\xbc\x38\x02\x0e\x92\xc7\xed\x8e\x97\xb2\x33\x06\x29\xbb\x5a\x2c\xe9\xa4\x0d\x3e\x73\xca\x58\xef\xd2\x5b\x9e\xa3\x8b\xf1\xc5\x6d\x8a\xa2\x5a\x59\xab\x2c\x57\x6e\x20\x20\x5a\xb0\x16\xd5\x95\xb5\x1b\x88\xde\x61\x3a\x33\xa1\xbe\x9c\x49\xb5\xb4\x54\xbd\x3e\x5d\x79\xa5\x52\x5d\xc9\x24\xad\x56\xb5\x15\xfd\xda\xb4\x95\xb5\xe5\xb5\x6a\xb6\xd8\xe5\x17\x28\x76\xa5\xbc\xb6\x9a\xad\x67\xb9\x72\x6d\xc2\xd5\x6c\x81\x95\xaa\xb6\xba\xf4\x02\xc8\xce\xa4\x2c\xf5\xf6\x62\xcf\x48\x89\x6e\x56\x93\x89\x70\x00\xba\x59\xc5\x52\x2e\xd9\x6b\x3f\x94\xc9\x26\x38\xe6\xfc\xc4\xb7\xeb\x2c\x8e\x9c\xec\x94\xb8\xa7\x11\x96\x4f\x13\x6a\x42\xc2\x24\x83\xcf\x3b\x39\xb1\xf8\x9e\x58\xd7\x62\xbe\x98\xe1\x80\x18\x4b\x5f\x5e\x6a\xbd\xda\xa1\x8c\x0a\x05\x44\xb6\x2c\x2f\x2f\x25\x49\xc4\x2c\x6f\x5e\xc9\x55\x15\x21\x7d\xfc\x36\xdf\x1a\x5a\xe7\xe7\x50\x26\xdf\xe9\x2a\x45\x47\x07\x37\xcb\x7c\x27\x29\xd2\x23\x50\x0c\x16\x72\x8b\x87\x14\x0a\xf4\xe0\x82\x64\xc0\x0c\xd1\x19\x0c\xcd\x20\xd2\x44\xe0\x77\x88\xa7\xe7\xd4\xd8\x56\x0f\xe6\x99\x70\x93\x91\xcb\x4d\xcc\x0a\x85\x3a\xdf\xd6\x4f\x03\xbf\x88\x5f\x0a\x59\x03\xfd\xb4\x43\x8a\x74\x3e\x73\xdd\x62\x40\xe6\x16\xc3\x56\x80\x3d\xc7\x87\x85\x2d\xfa\x5a\x40\x89\x4e\x47\x14\x31\x6c\xc1\xa4\x1d\x89\x3d\x90\xc4\x7a\x97\x97\x32\x87\x38\x3d\x72\x10\xdc\x1d\xd9\x7d\x68\x4a\x9e\x8f\x6b\x22\x71\x97\xad\xf9\x04\x88\xac\xd7\x2d\xa5\x66\x27\xac\xdf\x43\x05\xd4\x13\x01\x36\xd1\x5e\x48\x71\xb6\x20\xdf\x16\x3e\x04\x48\xc1\xe9\x45\x5b\x78\x5b\x99\x4c\x14\x70\x94\xe3\x1f\x45\x1a\xd9\x61\x48\xe4\xfe\x98\x3d\xc6\x5e\x82\xd8\xf0\x60\x8d\x5a\xd4\x15\x76\x9c\xf2\x7f\x3f\xf1\x5d\x09\x77\x30\x12\xcb\x37\x44\x35\xb2\xcb\xca\x8e\x47\x2c\x95\xf8\xa9\x3f\xf2\xdd\x01\x0c\xf0\x08\x30\xe0\xab\x72\xc2\x17\xfb\xf5\xc7\x72\x6e\xfc\x91\x59\x7b\x96\x23\xcd\x2e\xe2\x95\x46\xd7\xb0\x54\x24\x07\xa6\x3d\x77\x2d\x0a\x7c\xe6\xba\x86\xfa\xa1\x49\x14\xf1\xaf\x79\x03\xa3\x70\xd5\x02\xbb\x5c\x01\x4d\xa8\x4b\x9c\x34\x55\xd2\x54\x8f\x1d\x79\x69\xe4\xb8\x35\xc7\x2f\xcb\xba\xac\x01\x3f\xe1\x4c\x4e\x91\xad\x59\xae\x02\x09\x6c\xca\xf4\xd6\x52\x26\x8a\x41\x22\xc8\xd2\xf2\x91\x1f\x0c\x70\x16\x00\x52\xdf\xe1\x6c\x3f\xc6\x36\x11\x73\xa0\x83\xbb\xee\xba\xf8\x31\x7b\xac\x53\x9f\x94\x63\xd3\x5e\xb7\xd5\x91\x3d\x84\x8f\xe9\x11\x98\xa1\x81\x07\x51\xd8\x93\x28\xec\xd4\xec\xf6\xc0\x9e\xa9\x81\xa1\xa9\xd5\x86\xb7\xbc\xda\x90\x6f\xdd\x6e\x98\x41\x77\xd8\xa3\xde\xfc\x63\x47\x28\xf1\x01\xd3\xa2\x69\x66\x4e\x48\xc8\x5a\xe3\xf2\x72\x23\x79\x18\x78\x5b\x53\x9c\x43\x39\x9a\xf6\xd4\x3c\xb7\xf7\xca\x69\xec\x80\xc2\x91\x37\x80\x2b\x23\xb0\x07\x36\x38\x25\xc6\xe0\x81\xa2\x28\xb5\xc8\xe7\xc8\xc0\x64\x37\x50\x93\x73\x35\x0e\xa6\xd4\x52\xb9\xf4\x65\xc4\x92\x02\x64\x0e\xe8\x5c\x38\x1f\x8f\xcb\x4b\x19\xe5\xe7\xad\xd4\xf6\x8a\x26\xff\xe2\xab\xab\xd3\xec\xa0\xe5\xfa\x2f\x2f\xcf\xd4\x83\x04\x53\xb3\xd4\xbe\xeb\x7b\x90\x30\xad\x45\x4d\xe1\x0e\xb3\x2d\xa1\x13\x50\xe5\x81\x8b\x3a\xbf\xf6\x82\x26\x0c\x80\xc5\x75\x33\x65\x0d\x78\xdc\x2b\x25\xbf\xd9\x03\x23\x59\x8b\x16\x87\x87\x4e\x10\x22\x92\xae\x50\x48\xe7\x23\x44\x82\x40\x01\x76\xf2\x7a\x64\x9a\xa3\x4c\xbd\x5a\x6b\x0a\xf1\xd4\x91\x39\xbb\x8e\x26\xb9\x7c\x7a\xf0\x2b\x23\xa2\xed\xa5\x10\xa2\x5d\x64\x07\x88\x0e\x05\xf2\xdd\xf0\xc8\x8d\xf3\x45\x2c\x3d\xb1\x42\xe9\x68\x8a\xef\x6f\xb0\x67\xde\xeb\x80\x31\xf8\x77\xfd\xdf\xf7\xe5\x54\xe4\xfd\x3d\x11\xe1\xbb\x05\x2f\xa5\x15\x9b\xd6\x71\xcb\x55\x7d\x35\xaf\x53\xc4\x05\x2f\xa1\x5c\x7b\x8d\x36\xad\xc2\xd5\x63\x5f\x50\x9b\x36\x1f\xfe\x0f\xd5\xa6\x4d\xaa\xb6\x26\xdc\xd7\xbf\xe7\x1a\xae\x5c\x1d\x98\x1d\x2f\xd7\xe5\x48\xc9\x1b\xe7\xe8\x0d\xfc\xd3\x47\xec\xc4\x37\x45\xa0\x0c\xdc\x3d\x7a\x22\x9c\x25\x0d\xfe\x0d\x7c\xd7\x7d\x9c\x09\x79\x92\x24\x1f\xeb\x44\x31\xfb\x91\x51\xda\x0d\xbf\x78\xd3\x4f\x6a\x87\xa3\x50\x90\x61\x46\xff\x33\x05\x23\xea\xb0\xc0\xa4\xb2\x93\x70\xbc\x2d\xe0\x99\x52\x9a\xe6\xa9\xc4\xcb\x3f\x4a\x96\x7a\x16\xa5\x28\x59\xea\x79\xac\x62\x0d\x59\x63\x4f\x72\x4f\x87\xbd\x1a\x5f\x9c\xe4\xdf\x53\x30\xc7\xf7\x88\x34\xfb\xca\x17\x09\xd8\x33\x46\xcc\xf6\xae\x5c\x07\x12\x06\xc1\x82\xe4\x3c\x98\x43\x11\x13\x29\x39\x1d\x58\x08\x05\xce\xc1\x18\xc1\xed\x5d\x6a\x47\x20\x51\xef\xc2\x98\x15\xcc\x00\xa0\x44\x94\xf0\x0c\x12\xce\xcd\x42\xd2\x35\xed\x03\xd2\x4c\x28\x9e\xcf\x35\x60\x78\xa0\xcd\x8c\x3c\x97\x30\xfb\x9c\x11\x09\xcf\x10\x0c\x3c\xdb\x6d\xc3\xd0\x1f\x07\x7d\x18\xb6\xe1\xc7\xc6\x0e\xb9\xe4\x42\x42\xc1\x18\x4a\xb8\x8a\xa9\x95\x4f\x98\x08\xf0\xf0\xb4\x4c\x2e\x01\xc9\xdc\x49\x91\xb7\x68\xce\xbd\x7b\x46\x90\x5a\xa2\xfb\x17\x6a\x01\xbf\x2b\x26\xe7\x1e\x16\x39\x50\x26\x20\x88\x6e\x90\x41\x20\x98\x75\x6d\x50\xad\x7f\x84\x85\x0f\x64\x8e\xd1\x61\x69\x15\x48\x45\xe8\xf5\xfd\x01\xdc\x6b\x37\xf1\x6a\xd4\xf7\x30\x5f\xe5\xf7\x2c\x44\xc8\x07\x8a\x1a\xf2\xf7\x0e\x1f\x3f\xd6\xab\x38\x34\x02\x50\x10\xbf\xcd\xb4\xd3\xe4\x94\xb7\xe8\xb4\x3f\xcf\x65\x65\x76\x79\x62\x42\x09\x5c\xc4\x33\xbb\xb1\xa8\x81\x21\x44\x39\x3a\xdf\x41\xa2\x34\xbc\x1e\x9d\x99\x7b\x02\xcd\x17\xce\x3e\x91\x6a\xc2\xc4\x18\x8f\x2c\xf9\x2a\x78\xc5\x27\xcb\x9e\x59\x57\x0a\x05\x4f\x58\xea\x01\x24\xeb\xab\x58\xee\x16\xe9\x94\xda\x24\x8a\x64\x1d\xe2\x48\x66\xcb\xf1\x60\x1d\xc3\xc2\x00\xaf\x67\x2e\x5c\xfe\x6d\xc4\x3e\x3d\x59\x08\xc0\xeb\xea\x64\x9c\x2f\x9e\xc7\x99\xa6\x9d\x3c\xcd\x13\x4e\xdc\xd6\x13\x47\x72\x3c\x79\x94\xe1\x04\x2f\xa3\xba\x3d\x50\xe7\xad\xb6\x28\xd7\x4d\xa4\x7a\x78\x76\x56\x14\x75\xe0\x7b\xb0\xa6\x78\xdc\x67\x1e\x5d\xc4\x53\x7d\x45\x45\x70\xc7\xf4\xde\xf7\xb6\x3b\xb1\x7a\x58\xb2\x3f\xfd\xf1\x09\x93\x64\xcb\xa1\x8a\xbb\x96\x48\x94\x7f\x0b\xb2\xe5\x3e\xe6\x63\xe6\xc5\x84\x7f\xb1\x89\x2b\x57\xd6\xdc\x27\x8b\x2b\x86\xfd\x7c\x91\x33\xce\x29\xf7\x86\x22\x80\xae\x81\x22\x1e\x3e\x41\x70\x0d\x54\x38\xb2\x3d\x49\xe1\xba\xe8\x31\x18\xdf\x81\x5c\xac\x0b\x64\x62\x24\xa2\x17\xbf\x91\x11\x74\xe2\x84\xce\x81\xe3\x3a\xe8\xdc\x94\x8e\x9c\xc1\x00\x7a\x12\x10\xfd\x79\x52\xb5\x61\xd3\x12\x3e\x12\xf1\xbb\xce\xc7\x21\x8b\x25\xca\xc6\x49\xdf\xa8\xa6\xa4\xc5\xd9\x31\x85\x00\x12\x96\xdc\xce\x83\x0a\xa0\x97\xa1\x79\xea\xee\x7d\x6b\x6b\x8b\x5e\xe9\xc3\xcd\x80\x4c\x3d\xd6\x25\xd4\xa3\x6b\x01\x85\x02\x50\x4e\x01\x3c\xec\x04\x06\xc8\xe9\xdb\x2e\xf3\xe7\xca\x35\x56\x25\x3c\x85\xcd\xad\x64\x30\xa7\x92\x41\x16\x87\x20\x07\x87\xe4\xf2\x3e\xb7\x19\xa3\x5d\x4a\xe9\x1e\x21\xfe\x02\x0e\x90\x88\x18\x28\xa6\x0d\xd2\x01\x88\x2f\xf8\x11\x53\x73\xee\xf8\xa3\x52\x10\xbf\x17\xcb\x35\x98\xd8\xf1\xcc\xe6\xf0\x92\xe8\xc4\xbc\xfc\x1e\x73\x13\xcb\x3d\x15\xcf\x20\x75\x38\x1e\xc1\x40\x62\x3b\xbe\x22\x9a\x30\x81\x26\x1b\x62\xc9\xfd\x59\xa8\x80\x0b\xde\x54\x86\x0d\xa8\x2a\xad\x11\x4e\x44\x9b\xaa\x6b\xc7\xa0\xd8\x9c\x45\x89\x2c\x45\x78\x0b\xf2\x52\x29\x4b\x36\x4d\x33\xe6\x03\x5d\xd8\xe3\xb6\x74\xfc\x9b\xc5\x8a\x23\x1f\x8b\x27\x20\x01\x14\x09\xe0\xef\xfd\x24\xb2\x13\xf8\x67\xe7\x39\xaa\x43\x2f\x78\x6f\x0a\xcf\x20\xcb\x50\x09\xc3\x3e\x3b\xe7\x2a\xc0\xa9\x5b\xca\xc8\x79\x41\x74\x9b\x1d\x81\x9c\x7b\xa5\xa1\x60\xb8\x50\xcf\x6c\xb9\xf1\x9b\xa8\x0a\x85\x6c\x5c\xe2\xba\xac\x75\xe9\xc0\xf5\x0f\x24\x43\xc2\x2b\x6b\x09\x84\x73\xf2\x5a\xcf\xde\x8c\x45\x4e\xcd\x1e\x6f\xfa\xc7\xb6\xe3\xf1\xcb\xb2\xc8\x56\x64\x56\xb8\xc5\xc1\xe2\x7c\x92\xba\xf9\xcb\x39\x94\xcb\x1a\xee\x1a\x44\x29\x0d\x8d\x43\xe2\xab\x99\x20\x85\x05\x15\x25\x90\xc3\xe8\x72\x30\x61\x9f\xd2\x22\x22\xf5\x1d\xc7\x85\x6d\x68\x0f\x60\x50\xb3\x54\x7b\x30\x68\x9c\x40\x8f\xb8\x65\x87\x1e\x0c\x64\x09\xa3\x22\xe5\x18\xd8\xe0\x75\x7f\x00\xc3\xb1\x8b\x94\x09\x58\xd4\x15\x90\x97\x98\x69\x07\xe6\x09\xfb\xb2\x15\xa5\x0b\xa0\x3d\xb0\x42\x7e\x4d\xa0\x80\x2a\xdd\x13\xf5\xe8\x24\x80\x5f\xc5\x8a\xe0\xe1\xae\x4c\x40\x18\x89\xfa\x1e\x7e\x1f\x41\x4f\x96\xee\x36\x3a\x12\x40\x45\x69\x7d\x1c\xb8\x66\xae\x5c\x6f\x29\x45\xa9\x20\xde\x97\x66\x4a\x45\x5b\x01\x94\x66\x8b\xa6\x69\x17\x0a\x73\x08\x5e\x28\x88\x78\xe0\xd4\x36\xee\xfb\x64\x75\xc1\x6e\xa1\xe4\xee\xe0\x93\xa1\xb5\x50\x45\xf4\xcd\xf4\x09\xe6\xfc\x2b\x4b\x5f\x52\xeb\xc9\x04\x2f\xce\xbc\x81\xfc\x02\xeb\x0b\x2a\x6e\xb1\x21\x6b\x87\xa1\x33\xf4\x2e\x2f\xf3\x6f\x36\xd0\x6b\xf0\x56\xe6\x62\x14\xc8\x65\x36\xc1\x99\x66\x17\xf6\xe2\xab\x43\x16\x1c\x6f\x01\x29\xac\x80\x58\xb7\xf2\xc8\x0e\x5b\xa7\x1e\xe7\x0e\x54\x8b\x11\x8b\x5b\x85\x82\x6c\x75\x83\x9e\x89\xba\x41\x2f\xbe\xec\x73\x02\x3c\x33\x94\x91\xac\x2f\x91\x9b\x06\xc8\xeb\x32\xbb\x6a\xa0\xbc\x2a\x28\xae\x84\x2f\x75\xc7\x40\xfa\x56\x67\xc6\x09\x2e\x2f\x2f\x26\x20\x4c\xdd\x61\x24\x1d\xf8\xbe\x0b\x6d\x2f\x56\x53\x46\x64\x8f\xc9\xf1\x86\x97\x97\xd1\xab\x52\x0b\xe9\x96\x93\xa8\xd2\xa9\xab\x9a\xaa\x95\x6c\x77\x74\x64\xab\xba\x2e\x71\x57\x9c\xa9\xfd\x63\x22\xca\xf8\x33\x38\x95\xb4\x13\xf8\x27\xce\x00\x0e\x16\xd8\x0e\xcf\x82\x13\x2e\x60\x21\xf0\xd4\x41\x47\x8e\xb7\x60\x2f\xf0\x6c\x24\x7e\x6c\xe5\x8b\x27\x28\xa0\x6f\x5e\xd8\xe1\xb9\xd7\xc7\xcb\x29\xdb\x75\xfd\xd3\x8e\xed\x78\xc8\x58\xd4\x41\x5a\xcb\x45\xfa\x8f\x87\xe4\x3f\x09\x88\x7d\xd0\xd0\x97\x60\x05\xb0\x5a\xe2\x4c\x08\xb7\xa4\x07\x33\x6c\x5e\xa3\xfe\x36\x61\x80\x63\x13\xdb\x1f\x6d\xb2\xe1\x46\xd2\xe9\x80\xec\xeb\x18\x8e\x3a\x80\x27\x4e\x1f\xee\x38\x67\xd0\x6d\xdb\xc8\xf1\x2f\x2f\x75\x80\x88\x11\xb1\x91\xf4\xd8\x8d\xb8\xbd\x2f\x18\x87\x10\x33\x46\x9c\x8b\xb0\xaf\x66\x38\x82\x4f\x7f\x20\x6e\xa4\xf1\x18\xb6\xad\xc6\xb6\xd0\x0c\x47\x3c\x43\x62\xa1\x4f\x58\x28\x3b\x45\x9a\x00\x17\xaf\xfd\x6c\x95\xee\x15\x32\x51\x14\xaf\xfe\x02\xf9\x62\x02\xfa\x64\x77\x24\x5a\x56\xb9\x93\x9a\xaf\x52\xf3\xf9\x36\xdb\x5b\x34\x23\xfc\x81\xa5\xc2\xb3\x91\x1f\xa0\xd0\xf4\x5f\x85\xc6\x9a\x80\xdf\xcc\xf5\x57\x7a\x65\x13\xd9\xcf\xa4\x0c\xa0\x63\x4b\x19\xe7\x50\xde\x3d\x3f\x3e\xf0\x5d\xd5\x41\x30\xb0\x91\x4f\xc6\x31\x45\x50\x00\xcc\x1b\x3e\xe4\xd6\x93\x45\x0d\x78\xe6\xa2\x1e\xaf\x56\x51\x70\x1e\xb1\x12\x1b\x84\xa6\xd5\x4d\xe5\xdf\x93\x95\xda\xa2\x1c\x98\xb2\x6d\x86\x89\x55\x2d\x66\x09\xec\xe6\x14\x9b\xae\x6b\x15\xb0\x08\xc9\x98\x23\x2c\x68\xd1\x24\x0e\x87\xf1\x22\xaf\x16\x5f\xbf\xec\x61\x14\xea\xa6\x35\x39\x74\x3c\xdb\x75\xcf\xc9\x95\xc3\x8b\x41\xa1\x80\x59\x30\xc6\x3d\x7e\x93\x95\x08\xc8\x39\x94\x3d\xb6\x98\xa8\x47\x0b\x42\x34\x21\xd5\xab\xe5\xae\xc5\x9a\xde\x89\xed\x3a\x83\x05\x1b\x21\x78\x3c\x42\x0b\xc8\x5f\x18\xc0\x10\x05\xe3\x3e\x1a\x07\x70\xc1\xf3\xbd\x12\xa9\xe1\x81\x0b\xa3\x99\x01\x73\x68\xb2\x5a\x94\x1f\x70\x46\x86\xe4\xf2\x1a\x61\x6d\x38\x64\x49\x27\xac\x0d\xbf\x96\x2b\x44\x91\x8f\xc0\x69\x44\x93\x8f\x1c\x6a\x3b\x26\x92\x97\xaa\x0a\xe8\xe3\xcf\x25\x05\xb8\xf4\x8e\xb9\xb1\xf9\x40\x76\x05\x6e\xf8\xe0\x25\xd4\xf8\x92\x3d\x29\x65\x1b\xf2\x40\x61\xd7\x22\xa4\x0e\x69\xc1\x1e\xd3\xd9\x63\x27\x67\x88\xef\x53\x03\xfe\xf6\x84\xac\x71\xe2\x4d\x70\x94\xd8\xea\x56\xc0\xd0\x3c\x55\xb9\x88\xce\x0a\x27\x42\xcf\x38\x1a\xff\x19\x3d\x8f\x4c\x02\x25\xbd\x47\xad\x18\xae\x4a\x34\x5f\x77\xac\x76\x63\xbb\x03\x36\xcc\x53\xb2\x5a\xbc\x3e\x67\x0c\x75\x6d\x76\x03\x13\x9a\x66\x0e\xde\x43\xd5\x09\x89\xb6\x2c\x3d\xce\x94\x95\xf5\x8d\x4c\x08\x4a\x67\x9e\xc2\x29\x13\x4f\x2f\x64\x34\x36\x8c\xa1\xf1\x2e\xd3\x72\x07\xdb\x48\xcd\xe7\xca\xeb\xd9\xe3\xe3\xdc\x3b\x70\xf3\x6e\xd5\x4d\x1f\x2e\x84\x51\x7f\x0b\xd7\xe5\x31\xd3\x48\xe4\xbd\x65\xc3\xc5\x42\x17\xed\x50\x60\x51\x03\x96\xa2\x30\xdd\xab\x3b\xbe\x87\x42\xf9\x34\x9d\x5b\x94\xd9\x98\x94\x39\x0e\xfa\x70\xcb\xc7\x32\x27\x11\xfe\xce\xe5\xec\x1d\xc3\x8a\x20\xa2\xc6\xaa\x65\xe3\x4c\x8f\x01\x01\x6e\x3f\x61\x7e\xf4\xcc\x20\x31\x2d\xd4\xd9\xf7\x13\x3e\x4d\x98\xd2\xbd\xce\xfd\x2d\x89\x68\xbc\xb0\x0b\x83\x2e\x2f\xa5\x7a\x6b\xf3\x49\x22\x8c\xaa\x51\x90\x85\x14\xaf\x36\xb9\x2b\x44\x3e\x65\xca\x11\x89\xa3\x6b\x48\x9c\xbc\x03\xc7\xe4\xea\x8d\x7d\x93\x9f\x95\x01\xd7\x64\x56\x94\x7b\x26\xd1\x3f\x8a\x2f\x20\xa2\x43\x55\xce\xe8\xa7\x0e\x00\x3d\xf4\x32\x1e\xb0\x59\x16\xb1\x23\x95\x33\x23\x73\x37\x08\x52\xcf\xd6\x91\x7a\x66\xb8\xe0\x3c\x2f\xf2\x7c\x1d\xa9\xe7\xc6\x1e\x20\x58\xe5\x01\x90\x88\x75\xf6\x6b\xc4\x86\x9e\x8e\x02\x28\xfe\x79\x89\x98\x5a\x1b\x7f\x11\x92\xf5\x95\xc4\x94\x9e\xe4\x19\x89\x39\x3d\xc9\x40\xa2\x49\x3d\xe6\x3c\x7c\x42\x8f\x38\xd0\x84\x29\xa6\x38\x54\xfb\xe0\x11\x49\xae\xc8\xa7\x60\x0f\xd0\xae\x68\xe5\xdc\x54\x4d\x45\xde\x40\xb6\x00\xd9\x49\x86\x5d\xad\x07\x42\x13\x76\xf5\x1e\x70\x4c\xd8\x2d\xf7\x98\x46\x33\x51\x47\xd8\xf6\x07\x70\x07\xb7\x6b\xa0\xc8\x21\x70\xc0\x03\x85\x34\x5a\x52\xbc\xe3\x3e\x2d\xc9\x45\x38\x7d\x2e\x2c\x65\x2e\x78\xc9\x39\x93\x7b\x19\x70\x33\xc1\xaa\x14\xe0\xf0\xa1\x32\xab\x8a\x78\xa4\xf4\xc5\x0d\x4b\x79\x8f\xab\x03\xec\xcd\x1d\x21\x4e\x6a\x84\xb8\xf1\x08\x09\x73\x46\x48\xf8\xee\x46\x48\x08\x3c\xe0\xe0\x69\xc2\x65\x23\x64\xc3\x74\xf9\x08\xb9\x63\xba\x74\x84\x34\x4c\x97\x38\x58\x38\xcc\xea\x6c\x0f\x80\x60\xbf\x6c\x40\x2a\xd3\xee\x22\x3f\x80\x86\xf5\x2e\x86\xcb\x9d\x79\xc3\xa5\xf1\xf2\xc3\x65\xf8\xee\x86\xcb\x86\x32\xa9\x65\xe4\x37\xa4\x52\xf9\x59\x49\xaf\x21\xc8\xda\x8a\x45\xce\x72\x53\x96\xb2\x76\x02\x87\x0a\x67\x33\x63\x65\xc2\x34\x75\x8e\x52\x4b\x22\x9e\x67\x02\x98\xf5\xf3\x45\xb2\xe7\xa4\xa6\x96\x06\x85\x82\x2d\xe8\xfa\x24\xbf\x52\xea\x8b\xe0\x08\x8f\x5b\x3a\xca\x5e\xc9\x31\x59\x3c\x68\x93\x72\xb3\x23\x23\xb9\xa2\x11\xcb\x0a\x27\xba\xdb\xce\x11\xee\xb6\x2b\xeb\xf4\x72\x3b\xbd\x4a\xe5\x31\x71\xfd\xe9\xbc\x84\xc4\x25\x20\x90\xa7\x70\x45\xef\xa4\x4c\xae\x85\xe8\xcd\x6f\x00\x82\x7a\xb1\xa8\xb0\x25\x6a\xa4\x14\x2a\xdb\x34\x16\x0b\xc2\x7c\x65\x22\x5b\xc0\x06\x21\x20\x7e\x58\xc2\x09\xbb\x8b\xb2\x2b\xed\x6e\xb4\x9b\x3b\x1d\x09\x48\xf7\x1a\xd6\xa6\x04\xa4\x4e\xb3\xb3\xd5\x90\x80\x44\x27\x7c\x09\x48\xf5\x36\xfe\xda\xe9\x34\x5b\xdb\x52\x4f\xd0\x82\x62\xf2\xa0\x03\x5c\x70\x1a\xef\x0d\xec\x81\xa1\x09\x05\xd5\xaa\xda\xb0\x36\x34\xf7\x94\x8b\x3d\x73\x48\x44\xf9\x5d\xe7\xc0\x75\xbc\x61\x8d\xea\xe0\x0d\x67\x2b\xfa\xe1\x4e\x3d\x14\x77\x50\x36\x88\xee\xe5\xe5\x65\x22\x90\x06\x6d\xb0\xbe\x53\x28\xa4\x52\xd0\x60\x92\x50\x19\xaa\x03\x1b\xd9\x69\xdd\xbd\x42\x21\xab\x5b\x3b\xe3\x9e\xa9\x21\x40\x4c\x49\x6f\x21\x8b\x1b\xe6\x77\x4c\xa2\x48\xa1\x98\x88\xb9\x0e\x53\x01\x58\xa1\x17\x14\x9a\xa6\xd9\x8f\x2e\x28\x1c\xaa\x9e\x3f\x80\xf4\x86\x42\xa6\x29\x98\xec\x15\x43\x80\x70\x7b\xb0\x9b\x7b\x07\xaa\x13\x3e\x74\x42\xe7\xc0\x85\xb2\xa2\x5c\x48\xc4\xae\x05\x73\xe0\xa1\xc8\x81\xed\x1c\x03\x0e\x45\x1e\x82\x81\x62\x48\x9d\xc6\xe3\x8e\xd5\x6e\x58\x33\x13\xa5\x74\xec\x79\xba\xdd\xc6\x16\xee\x3d\xb3\x52\x25\x14\xec\x59\x9a\x41\xfa\x56\xc4\x42\x21\x13\x94\xbc\x88\x6c\xd1\x34\xfd\x8c\xdb\xcc\xed\xd6\x76\x83\x5c\xfb\x11\xe6\xdf\xc9\x48\x4a\x03\x6c\xaf\xf7\x8e\x19\xd7\x70\x51\xc0\x15\x34\xcc\xb1\x3c\x00\x43\x42\xc5\xc6\xe5\xe5\x03\x79\xc0\x08\x7e\x68\x36\x2e\x2f\x31\x5d\xb9\x51\x21\x1c\xc8\xca\xba\xa3\x0e\x21\x6a\x43\xdb\xdd\x21\xcd\xb8\x8b\xec\xfe\x53\xc7\x1b\x72\x95\x29\xc5\x70\xc0\x51\x6a\x84\x0e\xc0\x21\x68\x28\xb5\x43\x32\xa1\xc3\x33\xc4\xfa\xde\x91\x02\xee\x14\x0a\x16\x41\xf2\x88\x0c\x2d\xba\x87\xe9\xd0\x5e\x1a\x40\x76\xae\x3b\x10\xe0\xe8\x10\x9c\x30\x6b\x88\x6c\xdf\xdc\x7d\x78\x77\xf7\xe1\xdd\xfc\xde\x99\x8a\xbb\xae\x7f\x26\xc0\x29\x45\xee\xcd\xec\x82\x60\x64\x8e\xe5\x7b\x8c\x8a\x23\x4c\xc5\x7b\x8c\x8a\xdb\xe6\xe8\xf2\xf2\xde\xbb\xa0\x62\x33\x45\xc5\x7b\x60\x1b\x8c\x94\xda\x76\x8a\x8a\xcd\x19\x54\xbb\x47\x0c\xcf\xc7\xa9\xbd\xbe\x48\x9a\x76\xc2\xb6\xef\xf3\x6e\x29\x2b\x97\x97\x56\x02\xc5\x47\x0e\x3a\xfa\x30\xb1\xf2\xa0\x71\xec\x54\x9f\x7a\xe4\xb8\xa5\x53\xf0\xc8\x46\x12\x57\xe9\xf2\xf2\x94\x14\x31\x01\x0f\xf2\xad\x3c\x92\x14\xa0\x39\x90\x7b\x06\x89\x56\x55\xfa\x2e\xa8\xc8\x10\x2b\x5e\x6b\x70\x7e\x80\x27\x18\xda\x46\x62\xbb\x45\xad\x12\x47\x5f\x2b\x36\xa6\xd7\xa9\xaf\x46\xc1\x14\xcc\xd2\xb4\xfc\xff\xb4\x56\x00\x55\x47\xa9\xc9\x01\xd1\x45\x09\x52\xba\x28\x6b\x19\xa7\xb3\xff\xca\x9e\x39\xa2\xb5\x06\xb7\x35\xa0\x7d\x22\x72\x51\xc7\xc6\x1c\xb9\xf9\x9c\x04\xb0\xc1\x16\x05\xa0\x00\xda\xc8\x0a\xf1\x98\x4e\x8d\x66\x33\x98\xc4\x07\x39\x5c\xdf\x60\x38\xdb\xbf\x4d\xd2\x7b\x24\xc5\x63\x3d\x89\x64\x72\x3c\xde\x10\x00\xd5\x38\x63\x99\x3b\x39\xcc\x4f\x25\x9e\xb9\xce\xe4\x44\x33\x91\x5b\x14\xca\xbc\xbc\xbc\x86\x02\x04\x7b\x23\x85\xe5\x1c\xee\x97\xa7\xf4\x68\xbf\xd7\x63\x33\xce\xfa\x5f\xd1\xba\x85\xb9\x56\xa2\x1f\x4c\x17\xe2\x3d\xbf\xfc\xfa\x8f\x9d\x0d\x2d\xd3\x15\xcc\xca\x0b\x99\x41\xd5\xb2\x47\x64\x00\x25\x16\x8c\xa1\xe0\x1e\xe3\xac\x28\x43\xf5\xac\x64\xa9\x67\xca\x0d\x44\x3c\x87\xca\x50\x3d\x27\x7e\x88\x6f\x20\x65\x02\x9c\x79\x0c\x0e\x78\xef\xaf\x25\xd5\xf9\x08\x9a\xf5\xac\xcb\x55\xd1\xdf\x90\xe8\x12\x88\xb9\x4f\xe5\x2c\x30\x76\xa8\x6a\x06\x51\x88\xe9\xe5\xf0\xb6\x70\x7c\x30\x70\x4e\x9c\x1c\x4f\x88\x82\x86\xaa\x2f\xc7\x25\x65\x0b\xa5\xf6\x53\x22\x0c\x8f\x48\xe1\x82\x01\xeb\x1c\x50\x08\xe6\xdf\xc4\xfa\xc4\xf4\x89\xcf\x4e\x88\x3b\x80\x2f\x7b\xa0\x8e\x5f\x1d\xd3\x97\xc9\x2a\x31\xf6\x74\xb6\x2e\x38\x49\xa2\x88\x05\xc0\x06\x8e\x62\xd0\x70\x07\x84\xa0\x1e\xe5\x2c\x3a\x6d\x23\x7e\x11\x67\x33\xf2\x84\xef\xa5\x41\xa6\x0a\x33\x2a\xc9\xfd\x32\x65\x79\xa1\xf3\x8a\x2c\x0c\x13\x46\xf1\x29\xbd\x94\x7f\x3f\x58\xfb\x37\x7e\xb0\x56\xa7\x5e\x87\x6c\x33\x47\xe4\xca\x61\x71\x21\xf5\x22\x54\x22\x2e\x83\x00\x79\x4d\xba\x13\x4a\x7f\x26\x7d\x0b\x5d\xe3\x3f\x61\x21\xcc\x38\x18\xe2\xd6\xe4\x59\x8f\x42\xd4\x89\x45\x49\x2a\xc2\xa2\x54\xa2\xee\x6c\x25\x85\x5a\xee\x11\x8f\xa6\x24\xab\xe8\x5c\x83\xa9\xb4\x29\x20\x30\x3d\x19\x01\x62\xec\x1a\xd0\x8d\xea\xa0\xab\xf7\x32\x2a\x60\xe1\x7a\xb7\x0e\xea\x3d\xa3\x5b\x07\x61\xef\x15\xfa\x2b\xda\x6c\xee\xee\x6c\x59\x4f\x98\xcb\x19\x1d\xd4\xb7\x5a\x1b\xaf\x19\x65\xd0\xdc\x26\x6e\x2d\xab\xa0\xbd\xb7\xbd\xdf\xdc\x36\x56\xc1\x9d\xad\xd6\x23\x43\x5f\x26\xbf\xfb\xed\x56\xab\x63\x54\xca\xa0\x63\xd5\xb7\x1a\xc6\x72\x15\xdc\xd9\x6a\x3c\x36\xf4\xf2\x2a\xb8\xdb\x6e\x6e\x1a\xe5\xa5\x65\xd0\xde\xab\x3f\x31\x96\xf4\x32\xd8\xdd\xab\x93\x40\x5d\x2b\x57\x01\xd9\x0d\x68\x76\x1a\xf7\x8d\xb2\x56\x5d\xa5\xe9\xf7\xdb\xad\x47\xfb\x77\xdb\xad\xbd\x1d\xa3\xaa\xad\x2d\xb3\xc0\x7b\x0d\x6b\x93\x5c\xae\x88\xc3\x57\xf5\x35\x56\xd8\xfe\x9d\x56\xab\x13\x85\xeb\xcb\x95\xd5\x6a\x9c\x8b\x51\x29\xaf\x2c\xf3\x5c\x37\x1a\x5b\x5b\xc6\xf2\xd2\x52\x85\xe7\xb8\xd1\xda\xda\xbb\xbf\xcd\x53\xde\xba\xa5\xaf\x24\x22\x48\x50\x94\xd8\x22\x1b\x6a\x24\x6c\x8d\xd4\x65\xbf\x4e\x1c\xf1\xdc\xba\x55\xd6\xe8\x77\xa7\xf1\xb8\x43\xbe\xf5\x38\x7e\x7f\xa3\xb5\xdd\xb1\x9a\xdb\x8d\x36\x89\x29\xc7\x90\xa9\x98\x0a\xc0\xdf\x8d\xed\xce\x2e\xf9\xac\x32\x82\xef\x53\xfa\xe3\xa0\x25\x1e\x14\x93\x0c\x07\x2f\xf3\x60\x4a\x7a\x1c\xb4\xc2\x83\x68\x23\xdc\xba\x55\x5e\xe5\x21\x94\xf0\xb7\x6e\x95\xd7\x26\x22\x37\x4c\xac\xaa\x2f\xe7\x79\x9e\x72\xfd\xfe\x53\xd1\xe9\x14\x46\x8f\x3a\x00\xa2\x9b\x37\x42\x1c\x2d\x92\x46\x06\x63\xaf\xe4\x78\xa2\xaf\x26\xd2\x8d\x98\x23\x26\xd7\x3f\x15\xfd\x30\x6d\xb5\x1e\xc5\x11\xa5\xc0\xf7\x51\x2a\x96\x74\x37\x0a\x42\xe4\x30\x21\x9a\x50\x81\xa7\x86\x67\x89\x84\x8d\xc7\x34\x62\x18\x38\xa2\xdf\x27\x4c\x13\x8e\xe5\xc1\x79\x02\xc7\xfa\x13\xe6\x0f\x6a\x7c\x90\x4a\xc4\x3a\x31\x73\x8f\xe4\x84\x08\x73\xb4\x63\xd1\x3d\x12\x6f\x25\x01\xcf\x52\xe0\x9f\x96\xf0\xca\x7d\x94\xc6\x38\xee\xf2\x22\xf8\x11\x51\xd2\x9b\x91\x42\x1c\x0f\x62\xa2\x43\xdf\x47\x33\x13\x89\x83\x25\x85\x58\x1e\x4a\x22\x48\x1f\xba\x6e\x06\x06\x8f\xa9\x04\x90\xef\x8e\x8f\xbd\x19\x85\x8b\xe3\x2d\x9b\x68\x06\x78\x02\xd0\x26\x16\x92\x59\x48\x3a\x38\xe3\x46\x2c\x1d\x24\x7d\x55\x45\xe3\x51\x00\x21\x0b\xc3\x14\x08\x1e\x98\xa9\x5c\x4a\xd1\xc2\x33\x2f\xbf\x78\x14\xa7\x72\x9e\x9d\x2c\x39\xf8\x99\xf3\x2c\xbc\x66\xf4\x50\x28\xba\xce\x62\xec\x40\x1c\x5c\xa5\xf4\xf0\x13\x99\x44\x02\x30\xaf\x47\xa6\xd9\x47\x22\x41\x7a\x1c\x89\x4c\x25\x01\x98\x1a\x55\x02\xa7\x49\x80\xa5\x86\x8b\xc0\x7e\x52\x9e\xc0\x64\xa8\x44\x2e\xcb\x36\x9d\x70\xe4\xda\xe7\xf9\x3b\x6f\xc2\x4c\xca\xee\x4a\xf7\x80\xf6\xea\x26\xc2\x3b\x5b\x2d\xab\x13\x7b\x5e\x6b\xdc\xe9\x18\x3a\xf3\x68\xc8\x67\xc3\xfd\xdd\x8e\xd5\xee\x18\x15\xfe\xd9\xd8\xde\x14\x9c\xd8\x6d\xec\xee\x92\x8d\xc1\x79\xae\xd7\x88\x34\x22\xf0\x8c\xc6\x1d\xde\xfd\x88\xd4\x22\xf4\x1c\x5c\x70\x82\xc0\x44\xae\xce\x52\x98\xa0\x94\x00\x84\x5e\x4e\x43\x34\xb6\xd3\xed\xf0\xde\x6f\x4c\x10\x2a\xdc\xf1\x3d\x94\xd3\x9e\x17\xb1\xf2\xbb\x91\x30\x6c\xe0\x3a\xf0\x86\x60\xd0\x10\xb9\x94\xe7\x81\xc4\xbd\xbc\xe0\x5c\x9e\x85\x73\x57\xf3\xb1\xa3\x79\x63\x0e\xed\xb9\x7f\x44\x46\x86\xaa\xa6\x51\xb2\x1d\xf8\x6e\x4c\xb0\x15\x4d\x9b\xd0\xb3\x76\x52\x9b\xa6\x87\x64\x0b\xe8\xf1\x21\x9d\x13\x6e\xdb\xdb\x32\x54\xd6\xab\x9a\x66\xc0\x89\x6c\x09\x5e\xee\x5f\xc1\x55\x5f\x8c\xa8\x5b\xa2\xf3\x8f\x04\x75\x9d\x43\x99\x57\xcc\x34\x4d\x8b\x2f\x49\xe8\x02\x88\x55\x82\xf4\x4a\xd9\xca\xd6\x41\x7b\xef\xbd\xbe\x44\xc3\x89\xf2\xa9\x76\xc3\x7a\x2d\x72\x82\x19\x99\x68\xec\x76\xda\xcd\x8d\x8e\x21\xb1\x42\xa2\x11\x14\x19\xef\xcd\x1b\x42\x2c\x91\xe8\xaa\x11\xe7\xf6\xaf\xe3\x03\x93\x2f\x41\xef\x53\xd3\x9b\x77\xeb\x4f\xf5\xa5\xfc\xa3\xb2\xb2\xde\x5b\xf7\xa8\xd4\x76\xe8\x7d\xf3\x8e\x6a\x5e\x3c\x6c\xee\x36\xb1\xfc\xaa\x81\x7b\xcd\xcd\xcd\xc6\xb6\xa1\x83\xdd\x8d\x76\x6b\x6b\xcb\x28\x03\x6b\xaf\xd3\x12\x1c\x5b\x72\x2f\xa9\xf3\x7a\x05\x33\x16\x8b\x1b\x9c\xe6\xca\xa4\x39\xa2\x5b\x24\x76\x19\x52\x12\x73\x1b\x3a\x46\xbe\xe8\x32\x74\xaf\xd3\xa2\x11\x27\xf4\x5c\x36\xa7\x33\x31\xdc\x5f\x59\x6f\xea\xc0\x33\xb4\x4b\x2e\x84\xc8\xf6\xa8\x17\xb4\xb2\xa1\x3d\xea\xe6\x47\xe4\x6e\xb1\xd4\xbb\x7c\x7d\x70\xf9\xba\xaa\xfc\xc9\x4d\xa7\x96\x2d\x21\xcb\x4d\x3c\x48\x78\xc9\xe5\x25\x19\x6b\xde\x30\xd6\xa2\x8f\xf8\x0b\x51\x55\x8c\xad\x0d\x24\x09\x20\x73\x51\x07\x81\xd9\xed\x51\xcb\xd7\xd0\xd4\x80\xff\xff\xb2\xf7\x2e\x6a\x6d\xe3\xda\xe3\xe8\xab\x80\xcf\x6f\x67\xac\x89\x08\x49\x08\x2d\x75\xaa\xe6\xc8\x4e\x02\xe1\x12\x08\x90\xb6\x34\xcd\xee\x67\x12\x61\x3c\x04\x9b\xb1\x1d\x0c\x43\xf2\x1c\xe7\x51\xce\x03\xfc\x5f\xec\x7c\x92\x7c\xb7\x73\x83\x74\x66\xef\xf3\xeb\x7c\xdf\x54\x58\x97\x25\x69\x69\x69\xdd\xb4\xa4\x20\x16\xe2\x10\x73\x26\x92\xc8\x0f\x84\xd5\x2c\xee\xd0\x88\x30\x29\x02\x80\x64\x26\x22\x57\x08\x7b\x3d\x67\xb3\x04\x69\x3f\x53\x38\x88\xf9\x74\x02\x70\xde\x0f\x55\x98\xb9\x9c\x77\x92\xf8\xc2\x7e\xc5\x43\x32\xa1\xf7\x33\x1d\x12\xb5\xb6\x27\x93\xa2\xf7\x7d\x25\x51\xb3\x9b\x7e\x5f\x8f\xc6\x96\x64\xf5\xca\xf4\x63\x0a\xa0\xc5\x14\x8f\x01\x61\xd7\x89\xbd\xb7\x77\xbc\xa9\x4c\xe1\x08\x15\xab\xa3\x8f\xfe\x33\x6a\xd5\x91\xef\x67\x1e\x23\xdc\x1b\xf5\xab\x1e\x51\x8e\x3d\xa2\x14\x05\x89\xe4\xd1\x18\xda\xf9\x7c\xe4\x87\x1d\x04\xe0\x67\x6f\x6d\x45\xb3\xa1\x20\x71\xc3\x5f\xd4\x45\x00\x07\x22\x00\xac\x5a\xb4\xca\x86\x5f\x45\x17\x63\x85\xfe\xc2\x47\xdf\xf8\xca\xe5\xd4\x82\x43\x6c\x47\x1c\x33\xdf\x11\x73\x5d\xd3\x26\x81\x47\xc7\xeb\x05\x16\xd9\x4f\x5a\xf9\xbf\x9b\x32\x1e\x8d\xa4\x9f\x71\xf5\x98\x93\x5d\xf0\x3c\xed\xdb\x38\x65\x06\xef\x8b\x4a\x3a\x2f\x84\x84\xfd\xc8\xe2\xb6\x78\xaf\x3a\x96\xfe\x34\xe1\xc9\xce\x10\x7c\x17\xc5\x42\x1e\x7c\x07\xdb\xd0\x0c\x9f\xe3\xca\x7c\x37\x97\x13\xb7\xce\x00\x7a\xe5\x93\x09\x2e\xb8\xe4\xfa\x4e\x0f\x9f\xda\xa5\x59\xf7\xe6\x5f\xf1\x6f\x3b\xf6\x69\x06\x5f\xe1\xf5\xee\xf1\x68\x44\x57\x8b\x63\xfc\x25\xe8\x40\x22\x30\xf8\xdb\x7b\x77\xd4\x8c\x0e\x80\xe7\x65\x0c\x23\x2c\x88\x0e\x26\x92\x6b\x67\x64\x9a\x89\xbc\x38\xe7\xe7\x0c\x21\xcd\x04\x22\xd1\x88\x91\x3b\x37\xc5\xe0\xe5\x8c\x1e\x81\xa4\x3f\xf5\x3d\x67\x09\x8f\x98\x9c\xf4\x88\xf9\x8d\x82\x1f\xa8\xe8\x4f\x41\x94\x69\xac\xcc\x97\xfc\xfb\x96\xf7\xcc\x0d\x6a\xb3\xe0\x06\xef\x8d\x53\x4e\x04\xec\x60\xbe\x57\xea\x07\x97\x88\x7a\xe5\xbe\x3f\x4c\xe8\x3b\xee\xd2\xe3\xca\xfa\xe1\x0c\x3e\x4d\x6b\x01\x08\xe6\xe8\xa3\xfc\x06\x5a\xb4\xa1\xd5\xdb\x65\x9f\x65\xf6\xef\x4e\xbf\x3f\x8d\x0c\xff\xa7\xc9\x5e\x26\xb5\x5a\xc7\xad\xcb\xab\x4c\xe9\xab\x9c\x1e\x1f\xe3\xb3\x8b\x86\x54\x0e\x04\xef\xe7\xf0\x36\xf6\x6b\x45\xef\xc0\x1c\x8d\xd4\x87\x98\x6d\xee\x77\xf4\x4f\x49\xd9\x00\x21\x5f\x4e\xcf\xeb\xb3\x54\x54\xfe\xd4\x03\x3e\x3e\x96\xbc\x97\x1e\xd4\xd1\x48\x80\x47\x8d\xc6\x19\xcf\xbc\x23\xe4\x81\xe5\x05\xc8\xfa\xe2\x3f\xfe\xb0\xf8\x21\x77\x35\xa6\x8c\x04\x5d\x71\x84\x04\x90\xc3\x1a\x7e\xb7\xff\xd0\x3b\xef\xde\x04\x79\x60\x4d\xd6\x23\x95\x4c\x85\xa2\x5b\xd3\xa3\xf7\x17\x9a\x21\x11\xc8\x1c\xe4\x12\xa9\x15\xa5\xb8\x31\xf5\xb3\x96\xd4\x11\x4b\x3b\xff\xbf\x78\x15\x05\x39\x62\xe5\xfd\x9c\x99\x44\x5e\x39\x59\xb2\x27\x23\xfa\x32\xca\x74\xfa\x13\xae\x85\x47\xe0\x07\x2f\xab\xb3\xef\xd3\x87\x07\xd3\x72\xc6\x86\xee\xe8\xc4\x46\x91\x07\x58\xb0\xc3\x29\x8a\x14\x06\x01\x8a\x2f\x4d\xe5\x56\xb5\xd4\x81\x43\x2c\x65\xa4\xda\x36\x6b\xd1\x35\x74\x5a\xe3\xd2\xd2\x09\x22\xe1\x7e\x39\xfd\xd2\xa8\x07\xdf\xed\xd3\xcb\x54\xde\x09\x6e\xd7\xf1\xe5\xe9\xf9\x15\xed\x22\x80\x76\xdc\xb8\xbc\x6c\x9c\xff\x68\x77\x4f\xe4\xc6\xf9\x8f\x93\xd3\x7a\xab\xd9\x6a\x9c\xcf\x39\x38\xfc\xdf\x13\x74\xf0\xeb\xb4\xf4\x3f\xfc\xb4\x54\xa5\x9c\x61\x8f\x87\xb4\x57\x3e\x50\xbb\x44\xb4\x90\x3d\xff\x81\x5c\xdd\xe3\x8b\x3c\x9e\x7c\x26\xfd\xef\x16\xe1\x08\x95\x8a\x70\x8c\x4a\x3b\xb0\x83\x4a\xbb\xd0\x45\xa5\xf7\xb0\x8b\x4a\x7b\x50\x43\xa5\x0f\x50\x41\xe5\x22\x1c\xa2\x72\x09\x36\x51\xb9\x0c\x1b\xa8\x5c\x81\x37\xa8\xbc\x0b\x6f\x51\xf9\x1d\x3c\x40\xe5\xf7\xf0\x01\x95\xf7\x60\x1b\xed\x14\x61\x0b\xed\x94\xe1\x11\xda\xd9\x81\x97\x68\xa7\x02\xef\xd1\xce\x2e\x7c\x44\x3b\xef\xe1\x33\xda\xd9\x83\xd7\x68\xe7\x03\xbc\x40\x95\x22\x3c\x46\x95\x32\xfc\x41\xf5\x70\x7f\x83\xbe\xc8\x47\x54\x1b\x39\x97\xca\xf0\xb8\x29\xed\x40\xe5\x44\xaa\xc0\xf6\xb1\xb4\x0b\x2f\xf6\xa5\x77\xf0\xcb\xa1\xf4\x1e\x7e\xfb\x22\xed\xc1\xfd\x63\xe9\x03\xbc\x38\x93\x46\xf0\xdb\x97\x43\xa9\x54\x82\x72\x59\x2a\x95\xa1\x8c\xa5\x31\x94\x65\xa9\x54\x81\x07\x57\x52\x07\x2a\xb2\x54\x7a\x07\x95\x63\xc9\x85\xca\x99\xd4\x85\x8d\xaf\x92\x06\x5b\x6d\x49\x81\xed\x0b\x69\x08\x4f\xcf\xa4\x26\xec\x74\xa5\xf2\x0e\x6c\x5d\x48\x0d\xd8\xee\x4a\x37\xf0\xec\x54\xba\x85\x67\xe7\xd2\x01\xbc\xb8\x92\x1e\x20\x6e\x49\xe5\x0f\x10\x1f\x4b\x6d\xa8\x1c\x4a\x3b\x25\xd8\x90\xa5\x16\x6c\x9c\x48\x47\xf0\xa0\x2c\x5d\xc2\x83\x1d\xe9\x1e\x1e\x1c\x4b\x3b\xef\x60\xab\x2e\x3d\xc2\xc3\x63\xe9\x19\x1e\x7e\x96\xae\xe1\xe1\xa5\x74\x01\xcf\x5b\x52\xa5\x04\x2f\xb0\x74\x0c\xbf\x7e\x95\x2a\x3b\x53\x98\x66\x50\xc2\xa6\x00\x60\x36\x37\x13\xfe\xcf\xff\x23\xc0\x93\x14\xe3\x13\xfe\xcf\xff\x2b\xc0\xd3\x04\x77\x64\x11\xdc\xde\xe3\x29\x96\x4e\x9a\x96\x79\x2f\xab\x36\x79\x57\x01\x62\x70\xc5\x1c\xc0\x73\xd4\x6b\xc3\x9d\x77\x7d\x78\x86\x7a\x25\x58\x86\x3b\x70\xb7\x0f\xbf\xa2\xde\x08\xee\xf5\xe1\x5f\xa8\x77\x00\x6f\xfb\xf0\x09\x9d\xf9\xbf\x5f\xf4\x15\xc0\xcf\xa8\xf7\x0c\xaf\xe1\x05\xbc\x84\xf7\x7d\x78\x87\x7a\x1d\x38\xee\xc3\xc3\x45\xbc\x3b\xad\x2c\x24\x1f\x25\xf8\x54\xca\xe5\xf8\x7e\xdf\x44\x91\x57\x09\x4a\xfd\x5a\xf4\x23\xf0\x15\x42\x8f\x59\x78\x7e\x86\xf0\x9e\x5d\xc6\x8f\x41\x07\x8f\xbf\x9e\x16\x34\xc2\x1c\xa0\xfa\x8d\xa8\x7e\x1a\xd4\x44\xcf\x45\x40\x19\xab\xba\x85\x06\x40\xf2\x33\x4a\x00\x6e\x95\x36\x11\xea\x05\x8a\x20\x57\x6e\xa0\x30\x32\x4d\x9b\x08\xfd\x20\xd0\x9f\xf2\x18\x5e\x75\xaf\x5c\xdc\x83\x7b\xe5\x52\x09\x96\xca\x3b\xa5\x77\xb0\x54\xae\x54\xf6\xc2\x8a\x21\xe7\xf3\xdc\x1d\x32\x80\x1e\x6f\x2a\xbd\x63\x43\xaa\x20\x84\xd4\xc9\xa4\x54\x62\x2f\x79\x50\x86\x42\x4d\x72\x79\x66\xb3\xb6\xff\x70\xb9\xd3\x93\xb7\x82\xd0\x01\x76\x11\xe1\x29\xe8\xd6\x06\x35\xd1\x6b\x69\xb1\x6a\x41\x73\x1b\x00\x49\xcc\x00\x1a\xfe\xc2\x7f\x50\xb6\xc3\x86\x54\xf3\xaa\xf8\x6b\xc0\xcc\xd6\xa1\xf4\x08\x24\x15\x21\x74\x5c\x0b\x20\x48\xe5\x0f\xd1\xfa\x6d\x20\x55\x76\x58\x06\xfe\x84\x4a\x3b\xa5\xe2\xfb\x72\x2e\x87\x3f\xa2\xd2\x87\x77\xef\x8a\xbb\x93\x09\xcd\xa5\x7f\xee\xb1\xdc\xf2\xbb\x72\xa9\x52\xf2\xdb\x3e\x02\x29\x84\xc2\xe8\xc3\xe7\xe7\x60\x0a\x60\xcf\x82\x0e\x34\xfa\x53\x98\x7e\x34\x92\xaf\xb9\x81\x2c\x2a\x82\x33\xe4\x55\x8d\x2d\x1a\x0e\xf0\x64\x00\x09\x23\x84\x0c\xe0\x4b\x1a\x19\x39\x55\xf9\x63\xf0\x08\x76\xd5\x27\x22\xab\x97\xcf\xcb\x0c\x24\x9d\x35\x01\xfe\xd5\x29\x96\xb3\x89\xd0\x08\x30\xe5\x7e\x4a\xe5\x01\xa2\x9f\x3e\x40\x1b\x39\x55\xfb\x53\xb1\xea\xbf\x17\x62\xf5\xb6\xb6\xec\xa5\xc6\x66\xf2\xb1\x99\x01\x28\x1d\x39\x55\x3d\x35\xb6\x01\x1b\x9b\xce\x40\x0e\x52\x63\x1b\xc4\xc7\x66\x46\x3e\xbd\x6a\xa5\x29\xbc\x9a\xf9\xaa\x1e\xae\x3a\x9f\x90\x3f\x78\x4f\xb3\xd1\x6f\x44\x8b\x81\xf1\x09\xa6\xea\x6c\x6d\xf9\xd4\x53\x9c\xc2\x2f\x99\x4f\x79\x7a\x74\xcd\x1e\x0b\xf1\xea\xd6\xbd\x27\x41\xad\xad\x52\x1a\x1f\x06\xc8\xe5\xd8\xcd\x34\xa3\x27\x27\x5a\xa8\x48\xde\x2a\x41\x1b\xc9\xf9\x12\x34\x11\xe9\xc9\x7d\xa8\x23\xf5\x13\x2a\xd6\x48\x4f\xed\x4b\x45\x38\x40\xa4\xc7\x71\x5c\x46\xcc\x29\x48\xe9\x70\x10\x02\x61\x17\x77\x36\x11\x3a\x8b\xe0\xda\x2f\xfd\x91\x51\x3a\x00\xe9\xb6\x5f\x67\x95\xee\x21\x84\xae\x44\x19\x92\x20\xfb\x84\x66\xb3\xfd\xed\xb1\x22\x3a\xa3\x5c\x8e\xad\xd6\xe3\x64\x42\x93\x16\x4f\x8e\xe2\xa0\xde\xd3\xd1\x4f\x26\xef\x53\xa3\xff\xc0\xe8\x22\x3e\x26\x84\x28\x0b\x1f\xc3\x4e\x3f\x32\xab\x5c\xee\x43\xf6\xd4\x7b\x2e\xec\x42\x0d\x36\xe0\x43\x7f\xd6\x44\xf8\x24\x10\x42\xcd\x58\xf6\xbe\x58\xde\x81\x4d\x18\x9d\xa0\x97\x4f\x61\xf6\xe1\x30\xab\xa8\x54\x86\x54\x38\x27\x0b\x4c\x14\xa1\x23\x86\xa6\xf2\x0e\x9f\x73\x39\xbd\x64\xa5\x77\x34\x6b\x32\x61\xa9\x19\x6b\xc5\xa7\x34\x86\x1d\x38\x8c\x4e\x67\x32\x29\x55\x52\x98\xda\xa1\xcd\x75\x8f\x7d\xdf\x65\x50\x40\x30\xb2\x87\x5c\x8e\x55\x8e\x0f\x83\xae\x93\xe2\x35\x3f\xf7\x65\xa4\x02\x35\x78\x03\x1f\x61\x0b\x1e\x81\x59\x20\xbd\x16\xe1\xf0\x72\x39\xda\xcb\xcd\x64\x92\x28\xa1\xcb\x46\x7b\xb9\x49\x8d\xe8\xc0\x97\x3a\xac\xa7\xf8\x54\x33\x0b\x7c\x50\xb7\xf3\x46\x62\xfa\xc2\xec\xaf\x34\xc0\xbf\xd2\xb5\xce\xe7\xee\x0b\xa6\x3e\xc4\x1a\x31\x8c\xf9\xb3\xec\x35\xa3\x04\x4a\x71\x40\x7a\x76\xbe\xd4\x67\xd3\xcd\xac\x13\x60\x63\x32\x61\xe8\xf2\x51\x70\x03\x1f\x60\x63\x26\xf1\x46\xea\x40\x4a\x96\xd1\x7a\x3e\x7b\x6b\x23\xb9\xda\x0e\xd9\xdb\x31\x22\xbd\x36\xe3\x1a\xc7\x29\xe4\xf3\xed\x15\xeb\xf0\x18\x70\x3e\x5a\x6d\x6f\x6d\x4d\xb3\x67\x1f\xe9\xeb\x09\x05\xdb\x2e\x3a\xb5\x9a\x2a\xc9\xd5\xa7\x70\x0c\x87\x88\xf4\x9e\xd8\x18\x0e\x97\x19\xc3\xa1\x3f\x86\x27\x3e\x86\x67\xce\xee\x78\x57\x54\x63\xa3\xfa\x5a\x06\x95\x5c\xc3\xcb\x7e\x7a\x61\x7b\xd7\xf0\x22\xab\xf6\x45\x14\x88\xbf\x1c\x17\x69\x74\x7f\xce\x00\xa9\xc4\xf1\xe1\x81\xfc\x9c\xda\x05\x07\x4b\x11\xe8\x4c\xd2\xa3\x20\x1a\x4b\xd1\x67\xb0\x65\x6f\x40\x6a\x4e\xcd\x60\x2b\xa6\xeb\xf8\x03\xed\xc6\x40\x56\x4a\x1c\xe3\x2c\x1d\x84\x92\xf3\x0b\xd5\xce\xfa\xf0\x0f\x54\xaa\x7e\xf9\x54\xf4\xca\x49\x6f\x6b\xeb\x4b\xbf\x0a\xfe\xc8\xe7\x69\xdb\x3f\xfe\x55\xde\x44\xc5\x00\x9c\x2f\x41\x69\x27\x2d\x3e\x9e\xa3\x5a\x5d\x3a\x99\xc2\x3f\xa8\x81\x94\xf2\x9b\xa4\x6c\xf3\x62\x44\xf8\xf3\xd1\x91\x4f\xc8\x3f\xac\x0a\xc5\x1b\x17\xec\x87\x22\x06\xd0\x42\x32\x0f\x46\x35\x78\x30\xaa\x1a\x0b\x46\xfd\xc2\x6e\x24\x1b\xec\x7a\x5c\xbc\x33\x32\x99\x88\x04\x45\x5e\xd7\x0d\xf4\xe5\xf0\x51\x5d\x3f\x6b\x0a\xc2\x1e\x61\x64\x1a\x7e\xef\x3b\x89\xde\x59\x44\x6c\xd9\x1f\x44\xc4\x65\xca\x7e\x0d\x25\x80\x9f\xcb\x45\xdf\xe0\x8d\x97\x4d\x26\xa2\x8a\xd4\x19\xd7\xe7\x7d\xc6\xd0\x86\xc7\x51\x2d\xbd\xf6\x28\xe1\x29\x00\xb0\x67\x40\x15\x86\x5e\x58\x14\x03\x5c\x4b\x06\x08\x47\x2e\x59\x90\x5c\x0e\xf7\x9c\x3e\x55\x6a\x3f\xbc\xdb\xe3\x1f\x1f\x51\xa5\xf8\x61\xf7\xc3\x94\x3f\xee\xd2\x9f\x02\xf8\x27\x5d\xca\x99\xde\xb1\x2c\xe7\x08\x7b\x0d\x23\xf9\x5b\x2f\xd0\x42\x75\x68\xa0\x3f\x44\x87\x5f\x15\x90\x45\x83\x22\xd2\x46\x2a\x45\xa4\x89\x54\x8a\xc8\x01\x52\x43\x44\x6e\x38\x59\x36\x12\x01\x2f\x56\x9e\x77\x91\xfa\x89\x98\x3c\x25\x1f\xdf\x65\xb2\x55\xaa\xfd\x90\xbe\x88\x0e\x34\xa1\x0d\x49\xbe\x04\x07\x80\x6a\xe2\xd6\x14\xfe\xe7\x5c\x15\xf9\x11\xda\xa2\xfe\x95\x10\xcb\x7b\xd1\x1c\x39\x08\xa1\x1f\xb1\xdf\xa8\x5e\x70\x1b\x64\xa4\x0f\xe6\xdc\x8d\x48\xa0\xcb\xfb\x3d\x61\x6e\xc8\x26\x4f\xd0\x52\x2e\xb3\xc8\x3b\x7d\x45\xe8\xf8\x3f\x7a\x1c\xfc\x88\x0c\x09\x0f\x98\x49\x3e\x0f\x9c\x1e\xe9\x23\xdc\x23\xe1\x42\x06\x4f\xed\x31\xc0\x74\x20\x22\xf6\x70\x11\xc5\x81\xf7\xa4\x74\xf2\xc2\x0a\x31\x86\xec\xf7\x87\xbd\x0b\x1a\xa0\x1a\xf7\xdd\xae\x42\x82\x1e\xf9\x19\x48\x16\x2d\xfe\xf6\x8a\xc1\x43\xda\x0d\x4a\x7e\x26\x32\x7a\x65\x4a\x85\x3e\x0d\xc1\x11\x2a\xc2\x31\x2a\xfa\xc7\x04\x06\x79\x72\x12\xbf\x28\x3d\xfe\x14\x28\x5b\x2f\x43\xd3\x60\xde\xe5\x6a\xf8\x93\xd1\xf5\xea\xf8\xe3\x20\x97\x13\x31\xa2\xa4\x68\x43\x15\xe6\xf3\x63\x68\x02\xaa\xa4\xd6\xab\xcc\x9a\xc6\x9b\x08\xd5\x27\x93\x31\x67\xc7\xe1\x49\xe5\x9f\xa2\x03\x31\x1c\xc1\x71\xf8\xe0\x02\x1a\xfb\x3e\x6c\x02\x79\x67\x25\xdf\x83\x17\x74\x3e\xfd\x19\x51\x1e\x9e\x27\x3b\xcb\x51\x83\x48\xa1\x7b\x79\xde\x6a\x94\x7f\xb4\xda\xf5\xc6\xd7\x1f\xe5\x1f\x27\xf8\xe2\x28\x9d\xcb\x42\x40\x7f\x1c\x37\xda\xfb\x97\x07\x61\xe9\xe9\x49\xeb\xf2\xb2\x51\xff\x21\x9f\x9c\x79\x35\x4b\xa9\x3a\x7e\xfe\x69\xb3\x79\xd1\xb8\x0c\xf3\xbb\x97\xcd\xbd\x1f\x65\x39\xe8\x21\xd9\x2e\x59\x9e\x6c\x1f\x8c\xec\xe4\x2c\xd5\xf6\xf8\x42\x39\x9b\x09\xb8\x8e\x2f\x71\x62\x96\x2c\x2b\x7b\x8a\x31\x50\xc9\x31\x5c\x1c\xb4\x9a\x97\x3f\x4a\x3f\xca\xc9\x61\xb1\x82\x54\xbd\x64\x46\xf9\xd7\xab\xe8\x11\x67\xb1\x9c\x46\xcf\x2e\xfb\xad\x87\x04\x12\x4b\xd4\x14\xcf\xc4\x77\x99\x5a\xe7\xe9\xb5\x51\xb7\x64\xa8\xcf\x5f\x51\x76\x6d\xe3\xd3\x27\x99\x5a\xf2\xb3\x89\xa2\xf4\xf1\xa3\x0c\x47\x59\x94\x34\xd8\x2a\xc1\xf1\x7c\xfa\x2b\x15\xcb\x15\xda\x43\x67\x2e\x09\xeb\xf9\x31\x74\x17\x6e\x82\x0e\xec\x2e\xdc\x48\x3b\x65\xf6\xf2\x4a\xf6\x2e\x74\xf3\x5d\xa8\x2c\xb5\x8f\x3d\xcc\xa8\x70\xb8\x80\x29\x94\x3e\x7e\x34\x61\x73\x06\x3f\x19\x6e\x95\x60\x83\xb9\xdd\xb3\x78\x50\xda\x6d\xcb\x9e\xce\x1a\x12\x2a\x5c\x00\xff\x7d\xfe\xb8\x54\x23\xa0\xc6\x7f\xec\xcb\x1c\x3d\x77\x75\xc3\xd9\x29\xb3\x7c\x20\x12\x7e\x0d\x31\x92\x27\xb2\x4b\x50\xf3\x9b\x97\xde\xa5\x9b\x7b\x79\x22\xbb\x3a\x69\x79\xc2\xad\x54\x66\xb1\x18\xdb\xec\xd7\x94\xcb\xcc\xbd\xb4\xdb\xaf\xf9\xa5\x62\xb9\x92\xa7\xc5\x60\xbb\x0c\x24\xc7\xcb\x0c\x5f\x66\x0a\x8b\x2b\x91\xdf\x5d\x20\xee\x46\x43\xcc\x0a\xfa\x90\xa1\xca\x7e\x21\x94\x71\xef\xb9\x5a\x0f\xab\xfa\x77\x6a\x3e\xde\xaf\x23\xb1\x60\x4e\x5f\xf5\x61\x4f\x26\xf3\x1c\x4f\xf2\xdf\xea\xda\xed\x45\x54\xf9\xa1\x19\xac\x06\x37\x28\x0c\x1f\x18\xfd\xf0\xae\x8c\xb2\x1f\x23\x50\x33\x7e\x7a\x40\x23\xe9\x6b\xf6\x01\xb9\x78\x6c\x94\x8a\xe3\x4f\xa8\xc8\xb5\xa0\x8f\xbb\xbb\xe5\x0f\xef\x26\x13\xfc\x69\xf7\xdd\x4e\xe9\x03\x73\xfa\x52\x62\xde\xf5\x2d\x13\x82\x44\xd1\xfb\xad\x02\x36\x84\x1e\xfe\xf4\x49\xee\x83\x8f\x1f\x6d\x90\x17\x71\x6e\x04\xc2\x11\x51\x6d\x88\xc1\x5c\x00\x41\xcf\x8b\x78\x8b\xf5\xfb\xe9\x93\x0c\x16\xc0\x8a\xe3\x28\x84\xa9\x6d\x29\x79\x11\x7f\xfa\xa4\x02\x18\x03\x4e\xfa\x90\xe4\x11\x1d\x64\xae\x09\x53\x5d\x93\x45\x23\x2f\x95\x4a\x95\x52\xa9\xe4\xf7\x13\xd6\xc8\x58\x9a\x20\x42\x28\xb1\xb2\xa1\x16\xb7\x40\x49\x09\x1f\xb6\x15\x8e\x5c\x1c\xfc\xa7\xe0\x0a\x6e\xd5\x4d\x8c\xcf\xf0\x0d\xfb\xe4\xff\xb5\xb0\x8c\xf1\x3e\xfd\xa7\xa1\xe1\x2e\x96\xaf\x70\xb3\x82\xbf\x69\x32\xc1\xfb\x57\xf8\x0a\xcb\x26\x3e\xc0\x98\x60\xfe\x7d\x83\x95\x06\x6e\x61\xac\x63\xa5\x83\x0f\x35\x6c\x62\xc5\xc4\x47\x45\xec\x74\x94\x0f\xf8\xa4\x8b\xbf\x6a\xf2\x7d\xb4\xfd\x5f\x9d\xfa\x67\xfe\x5d\x3f\xc7\xed\x3b\xbc\xa3\xd5\xef\xf1\xa9\x8b\x3f\xe0\xfa\x1e\xc6\x1d\xb9\x8e\x1b\x5d\x7c\x6e\xca\x2d\x6d\x1f\xe3\x96\x86\x0f\xdd\xc6\x23\xbe\x1c\xc8\x67\x6e\xb3\x89\xbb\x45\xf9\x12\x37\xbb\xf8\xb3\x2b\x7f\xc3\x4d\x1b\x7f\x3d\x91\x89\xbb\x4f\xf9\x3e\xd6\xdd\xfd\x4b\xfc\xcd\x96\x4d\x6d\xff\x0e\xab\xae\xec\xe0\xfd\x3d\x3c\x68\xc9\xcf\xda\xc1\x05\x1e\x9a\x72\x05\x1f\x98\xf8\x06\xcb\x79\x7c\x90\xc7\x9d\x2b\xa5\xae\xb5\xbe\xe0\xc7\x8a\x7c\xa0\xb5\xee\xb1\x5e\x51\xda\x5a\x2b\x8f\xef\xba\xca\x65\xe7\xf0\x12\x8f\x6c\xe5\xca\x3d\xb4\xb0\xd1\x50\x48\xe7\x48\xc6\x77\x45\x45\xef\x1c\x9d\xe3\x87\x3b\xc5\xec\x1c\x99\xd8\xc2\xca\x18\x1f\x63\x6c\x77\x94\xbf\x70\xcb\xc5\xed\x8e\xb2\x83\x8f\xef\xf0\x1f\x18\xbf\xc7\xc7\x45\xfc\xe8\x2a\xb8\x73\x72\x88\x9f\x70\x7d\x1f\x9f\xb8\x58\xc1\xf5\x43\xed\x64\x8c\xff\xba\xaa\x9f\x69\xa7\x18\x37\xae\xea\x17\x5a\xfb\x02\x97\x5a\xf5\xae\xd6\x56\x71\xc9\xac\x5f\xe1\xb6\x8e\xcb\xad\xba\x46\x97\x61\xdf\xac\x6b\x58\x7e\xc6\x3b\x57\xf5\x1b\x5a\xbf\xd5\xa1\xf9\x47\x78\xb7\x55\xbf\x67\xdf\x18\x9b\xda\xe9\x9f\xb8\x82\x31\xab\xdf\x5a\x32\x3d\xda\xab\x3b\x2e\x6f\xff\xe8\x9e\x1d\xe0\xbd\xbd\x7a\xc9\x3d\xbb\xc1\xcf\xb8\xbe\xeb\x9e\xd9\x78\xbb\x53\xdf\xc6\xbc\x5c\xc6\x9d\x13\x59\x6e\x35\x34\x8c\xbf\xc8\x72\xa5\x71\xa8\x75\xc6\x72\xfd\xa4\xd1\xc2\x27\xef\xe5\x46\xa3\xf1\x55\x93\x0f\x65\x05\xd7\xbb\x9d\xf3\x6f\xf2\x7e\xa3\xa1\x76\x3a\x2e\xae\x63\x3c\xe8\x74\xf2\xf8\xeb\x5d\x43\xeb\x5c\x1c\xca\x87\x8d\x86\x86\x95\x2b\x99\x8e\x17\x5f\x98\xf2\xd1\x5e\xc3\x71\x3b\x2e\x3e\xde\x6b\x3c\x75\x2e\x92\xe3\xd3\xf0\x49\x91\xc2\x25\x94\x3e\x62\x69\xbb\xdb\xf8\xaa\xd5\xbf\xc9\xa7\xb4\xdf\xfa\x83\x7c\xd6\x68\xe4\x3b\x1d\x59\xee\xdc\x35\x1b\x9d\xee\x37\xf9\xa2\xd1\x3c\xea\x74\x9f\xe4\xcb\x6e\xf3\xac\xf3\xb9\x29\x77\xdd\xe6\x67\xfc\x79\x20\x7f\xae\xe0\x2b\xf7\x33\xc1\xfb\x76\x73\xe0\x7e\x7e\x2f\x5f\x9d\x34\x75\xf7\xcb\x05\xcd\xbf\xd7\xbe\x68\xb2\x3a\x68\xc6\xfa\x39\xb2\x9b\x5f\x35\xe5\x59\xbe\x6e\x34\xc7\xda\x97\xf7\xf2\xa0\xd5\x74\xb5\xaf\x2d\x2f\xed\xc8\xc3\x4e\x73\x07\x7f\xbd\x93\x89\xdd\xdc\x73\xbf\xbe\x97\x3b\x27\xfb\x8a\x7b\x75\x29\xdf\xda\xfb\x2d\xf7\xca\x92\xff\x38\xd9\x3f\x75\xbf\x11\x5c\xdf\xdb\x3f\x77\xbf\xb5\xe5\x51\x05\x7f\xc6\xdf\xae\x69\x9a\x39\x2f\x3f\xdd\x3f\xd9\xff\xaa\xc9\x7f\xca\x46\x63\x7f\x4e\xbd\x5d\xd9\xc4\xfb\x15\xf7\x62\x5f\x36\x2b\xfb\x77\xae\x4a\xf1\x56\x3f\xd0\xce\x77\x83\x7a\x87\xf6\xbe\x86\xe5\x7d\x4a\x17\xa6\xab\x5a\xb2\x75\xb2\x6f\xbb\xaa\x86\x8f\xed\x7d\xd7\xbd\x3e\x96\xff\xc0\xb8\xe8\x5e\xab\xb2\x63\xee\xef\x74\x78\x5a\xd6\x82\x74\x24\x8f\xed\xfd\x3d\xf7\xfa\xbd\xac\x9d\x1c\x28\xee\xe0\x52\x7e\xb2\x69\xfa\x87\xfc\x6c\x1f\x9c\xe0\x41\x49\xfe\xab\x7b\x70\xaa\x0d\x15\xf9\x83\xb9\x7f\xa1\x0d\x2f\xe4\x92\x79\x70\x85\x6f\x54\x79\x64\x1e\xa8\x2c\x6d\x1d\x44\xe0\x85\xe9\x1f\xdd\x83\x76\x87\xb7\xff\x95\xfe\x4a\xb3\xd2\xeb\xce\x90\xd1\xf9\x3f\x3d\x8e\x5f\xe9\xaf\xf4\x57\xfa\x2b\xfd\x95\xfe\x4a\xd7\x93\x0e\x4b\xf2\x4e\xf1\xe7\xf6\x53\x39\x39\x28\x6b\xea\x91\xfc\x6e\xaf\x91\xad\xff\xef\x1d\x8c\xdc\x21\xc1\x87\x7b\x07\x0f\x2e\x61\xf9\x96\x4b\x76\xe4\x12\xd5\x1b\x95\x6d\x79\xaf\x7b\xf0\xac\x0d\x5c\xdc\xc6\x07\x65\x7c\xa3\xc9\x15\x8c\xdf\xe1\x1b\x57\xfe\xab\x22\xe7\xf1\x00\x2b\x4d\x57\x56\xb0\x76\xa6\xc8\x83\x96\xa9\x35\xae\xf0\xf9\x5e\xeb\xd0\xd5\x31\x56\xf6\x5a\x6d\x57\xdb\x56\x14\x5c\x3f\x77\x6f\xcf\x94\xe6\xa0\xf5\xd5\xbd\x35\x94\x86\x59\xdf\xd7\x7c\xfd\x5e\x7e\x54\x0e\x06\x2d\x82\x6f\x77\x95\x03\xb3\x45\xdc\xdb\x3d\xe5\xa0\xd8\x1a\xba\xb7\x15\xe5\xe0\xae\x45\xb4\xdb\xf7\xca\x81\xdb\xba\xe9\xdc\xee\x28\x07\x5a\x8b\x74\x6e\xdf\x29\x07\x76\xeb\x06\xdf\x7e\xf8\xd5\xee\x57\xbb\x5f\xed\xfe\x9e\x76\xb7\x58\x3f\x56\x5a\x95\xd6\x09\xc6\xcc\x8e\x5f\x6b\x7a\x78\xd5\x1a\x69\xfa\x17\x65\xad\xa9\xb6\xfe\x71\xfe\x4a\xff\xeb\xd3\xb9\x72\x72\xb7\xd2\x62\xe9\xbb\x56\xab\xac\xa9\x7f\x2a\xc7\xad\xd6\x58\xd3\xb9\x3f\x4c\xfb\x63\x5f\x99\xe3\x3f\x7b\x76\xf5\x03\x7c\x85\x71\x91\xca\xbd\xf6\x5d\x6b\xa7\xf3\xc7\x48\x39\x2d\xb6\x3e\xe0\x3f\xf6\x82\x76\xb8\x75\xa8\x68\x77\x17\xca\xb9\x79\xd8\xd2\xee\x0c\xe5\xf2\xea\xe0\xd8\xbd\xdb\x51\xbe\xfd\x0c\xfa\xe7\xe3\xc6\xb8\x89\x3d\x27\x12\xc6\x03\x2c\x13\x7c\xe0\xe2\x0e\x56\x3a\xf8\x08\x63\xab\xa3\x7c\xc0\x87\x9e\x73\xa8\x51\xc4\x3b\x9a\x7c\x8e\xdb\x15\xfc\x1e\xd7\xf7\xf0\x89\x2b\xef\x6b\x0d\x8c\x8f\x06\x72\xdb\x6d\x34\x71\xd7\x95\xbf\xe2\x66\xa5\x73\x77\xab\xdc\x37\x8e\x0c\x6c\x0d\x14\x0d\x1f\x1c\x60\x1b\xcb\x7f\x55\x8e\x19\x70\x17\x1f\x60\x3c\xcc\x2b\xef\xb0\x6c\xe2\xfd\xbc\xb2\x1d\xcd\x1f\xe4\xeb\xcd\xca\x09\xfb\xde\xad\x9c\xec\x68\x2e\xa9\x7f\xae\xb4\x0d\x6d\x87\xd4\x55\x56\x5f\xc3\x2b\xa5\x0d\x52\xff\x13\xcb\x9f\xb5\x77\x5f\x68\x6a\x76\xde\x79\xf9\x07\x5f\xeb\x8f\x83\xd3\xb6\xbb\xbd\x43\xd3\x0f\xee\xfb\xf5\xa5\xc6\xe0\x2c\x32\x9f\x5f\xe9\xaf\xf4\x57\xba\x8e\xf4\xfd\xe0\xec\xcc\x1d\xed\x2b\xdd\xca\xe1\x49\xc0\x57\xe5\x2f\xca\xe7\xca\xe1\x55\xe7\x1e\xe3\xfd\xbb\xc3\x01\x1e\x55\x94\xaf\xee\xa1\x86\xef\x42\x7e\xde\xd2\x0e\x35\xac\x1c\x2b\xdf\x4e\x68\xfa\x4d\xf9\xb6\x77\x68\xba\xf7\x96\x72\x85\xb1\xed\xde\xb9\x9e\xdf\x7b\x8f\xc2\x1b\xbb\x77\x58\x3e\x39\x39\x7c\xa6\xf0\x4e\x2a\x87\x1a\xae\x7f\x56\x2e\x43\xb9\x30\x8b\xaf\xff\xe9\x5e\x7d\x91\xdb\x77\x11\xbd\xa7\x3e\x54\x08\x3e\x7c\x87\x8d\xb1\x72\x5e\x69\x7c\xd0\xee\x5c\x7c\x56\x39\x94\x3b\x66\x5b\xf9\x83\x96\x2b\x18\xcb\xdd\x23\x26\x07\xe4\xe2\xd1\x21\x36\x6d\xe5\x8f\xce\x91\xc6\xda\xbb\x47\x1d\xf7\x4f\x8c\x1b\xf6\xd1\x63\xe7\x7e\xa8\x7c\x3e\x39\xfa\xe2\x9a\x61\xff\xc7\x83\x06\x6b\xbf\x7f\x72\xa4\x61\xd9\xe2\xf0\x66\xca\x33\x22\x2f\x92\x77\xad\xbb\xc6\x59\xa7\xf9\x97\x62\x98\x47\x7a\xe7\x42\x51\x4c\xf3\xe8\x0e\xff\x79\x28\x1f\x6a\x47\x26\xfe\xf3\x4e\x31\xef\x1a\xfb\x78\xdf\x56\xac\xce\xd1\x23\xb6\x64\xde\x5f\xfd\x50\x71\x1a\x47\xcd\xce\xc1\x37\x65\xdc\x38\xda\xd6\x0e\x1e\x94\xc7\xc6\x51\x08\x97\xe2\xc5\x6d\xe4\x3b\xa6\x4b\xf1\x73\xe6\x36\x64\xe5\xaf\x68\xbf\x54\xce\xdd\x1d\x37\x3a\xb6\x5f\xfe\x4d\x79\x6e\x1c\x6b\x18\x9f\x2a\xca\xdd\xf1\x09\xc6\x4f\xca\x5f\x2c\x8d\x8d\x97\x8b\xa0\x46\x2a\x9f\xa5\x8d\xbb\xe3\xcb\x8e\xf3\x59\xa9\x60\xfc\x15\x3b\x77\x34\xd5\x3b\x77\x99\xf3\xbe\xc6\xce\x93\xb2\x73\x77\xac\xe1\x71\x53\xa9\xd8\x1c\xde\xe1\xc9\xf1\xc8\x1d\xdf\xc4\xc7\xb9\x42\xba\xec\xf9\xd9\x12\xe9\x83\x6b\x47\xf0\xc8\xf2\x1f\x95\xe4\x39\xdd\xf1\x20\x1b\x0f\x4b\xa4\xab\x8e\xe7\xd1\x1d\x63\x7c\x32\x38\x4e\xe9\x33\xda\x38\xf6\x5d\xec\xd8\x3f\x45\x1f\x5b\x6a\x9c\xed\xbb\x60\x7c\x15\xbc\xc4\x38\x56\x5b\x97\x43\xba\x8f\xdf\x79\x70\x6f\xdd\x03\x97\xae\x47\x1e\xdb\xb8\x8e\xb5\x93\x06\x76\xd7\x34\x5f\xde\xdf\x3e\x76\x87\x75\xa5\x7b\xc2\xf2\x95\xe2\xc9\x3f\xef\x7f\x5a\x36\x75\xdf\xd4\xfe\xac\xb3\x2e\x3c\x2e\x93\x66\x8e\xa3\x2c\xf3\xfd\xbf\x5b\xcf\x2e\xf7\xfd\x71\xcd\xfa\xdf\x68\x8f\xf8\x74\x78\xd9\x79\xba\xa8\x37\xcd\x93\xb5\xc0\xcd\x38\x1f\xbe\xd2\x9e\x08\xde\x37\x4f\xbe\x6a\xf2\x53\xfd\xe0\xee\xe4\xc6\x7d\x22\xb8\xd5\x3d\x61\xe5\xad\xe2\x49\xba\xbd\xf2\xb9\x7e\x18\xcd\xe7\x70\x1e\x3a\x4f\x04\x1f\xd9\x27\xb6\xfb\xfc\xbe\xde\xac\x60\x57\x7b\xfe\x50\x3f\x31\x4f\x66\x9f\x4b\xd7\xcf\xeb\xed\xbb\x13\xd2\x91\xff\x54\x08\x3e\xd9\xc1\x4f\x7b\xf8\xf4\xea\xe4\x3d\xfe\xab\x58\x3f\xd3\xe6\xb4\x4b\xa6\x8a\x86\x31\x6e\x9b\x18\x1f\xd4\x3b\x95\x76\x53\x2b\xfe\xdd\xf6\x23\xa9\x5f\x5c\xb5\xff\x69\xfb\xf5\x55\xf2\x4a\xa9\xb4\xfd\xf5\x6b\xff\x2d\x78\xab\xb4\xcf\xb5\xd2\x69\xfd\xf3\x55\xfb\xab\x56\xba\xaf\x5f\x62\x7c\xdd\xc9\xee\x37\x33\x1e\xc0\xe8\xb6\x89\xb6\xa3\xc8\x57\xb8\xed\x6a\x5f\x9a\xf5\xa1\xb9\xff\x07\xde\x49\xd7\x8b\xa5\x6a\xb7\xfe\xcd\x6d\x3f\xe0\xb2\x49\xeb\x97\x35\xd5\xad\x5f\x0f\xda\x8f\xee\xce\x01\xff\xbe\x3e\xab\x0f\xaf\xda\x3b\x78\xe7\xa6\x4e\xae\xda\x65\xed\xda\xae\xdf\x9c\xb4\x59\xfb\x47\xb3\xbd\xad\xed\xa8\xb2\x76\x75\x5a\xd7\xde\xab\x41\x3c\x86\x7c\x75\xca\x52\xa5\xbb\x5f\xd6\xae\x48\x7d\x54\xc1\x87\x78\x97\x60\xc5\x3d\x2d\xbb\x7c\x3c\x27\x9d\xca\x6e\x3d\x32\x8e\x4e\xe7\xfd\x82\x71\xfe\xec\xf4\xdb\x61\xfd\x3f\x2d\x9e\xa2\xd4\x38\x2d\x6b\x57\xff\xfc\x38\xb2\xf9\xfd\xb7\x14\xbe\xca\x8d\xd3\x7f\x7e\x5c\xcb\xa5\x2a\xae\xac\x1f\xee\x0e\x3e\xfd\xe7\xe8\x77\xd5\x74\x05\xba\x2a\x37\xfe\xc1\x79\x7d\x3b\xac\xff\x47\xe0\x6b\x89\xf4\xee\xee\x94\xe0\x77\x1a\x3e\xc2\xd8\x8c\xf2\x6b\xf6\xad\x68\xd1\x54\xc3\x95\x7f\x58\xde\xd5\xb7\xb7\xdd\x0e\x8b\x46\xc5\x38\x99\x16\x69\x2d\xfe\xa7\x96\x55\x3e\x37\x3d\xc2\xf2\x09\x6e\xba\x98\x60\xd9\xc6\xfb\x1a\x4d\x07\xb8\xa9\xe1\x0b\x2c\x57\xf0\xbe\x8b\xaf\x30\xde\xe3\x5e\xd5\x86\x8d\x2f\x5c\xf9\x38\x2b\xdd\xc7\xf8\x8a\xd6\x3f\x60\xed\x4f\xf0\x81\x26\x77\x70\x13\xe3\x2e\x7e\x5b\xda\xd4\xf0\x35\x96\x5b\x1e\xdc\xca\x9b\xe1\xb1\x54\xbe\xc2\xf5\x0e\x3e\xa7\xf0\x64\xfc\x5f\xf4\x9f\x62\xe3\x23\x17\x5b\xff\x0d\x69\x9c\xce\xba\xab\xd0\xe3\x9c\xf4\x8e\xd2\x83\xca\xe8\xd4\xa5\x74\x51\xc1\x07\x1d\x3c\xa4\xe9\xa5\x8b\xbf\xd2\xb4\xde\xe1\x74\xb2\x4f\xe9\xa6\xb1\x47\xf3\x4f\xe9\xba\xf3\x7a\x45\x7c\xe9\xca\x67\x94\xbe\x59\xda\xd8\xc3\xcd\x37\xd2\xe9\x81\xd7\x9f\x4f\x9f\xeb\x49\x8b\x6b\x86\xf7\x77\xa4\x74\x5f\x55\x32\xf6\xe9\x3f\x3d\xae\x25\xc6\xbd\x06\x3e\xf5\xf7\xa5\x91\xf1\x37\x31\xa5\x63\xcc\xe9\x9c\xd2\x33\xfb\xee\x78\xf9\x9d\x4c\xba\xf2\xf6\xc1\x81\xc6\xf7\x4d\x3d\x31\xff\x59\xeb\xba\xea\x3a\xae\x67\xbf\xff\xad\xe9\xe1\x32\xfc\x47\xe9\xd0\x7a\x61\xba\x04\xdc\xd8\x7a\xf9\xf8\x61\x7c\x32\x82\xf7\x7d\x9a\x46\xf8\x67\x58\x3f\x58\x77\x56\xff\xc8\x7d\x1d\x9d\xbf\xb6\xdd\x2b\xd6\xf9\x3f\x64\x5f\x07\xa9\xb5\xa6\x7d\xc7\xd6\x25\x63\x1f\xac\x09\x7e\x3c\x3d\x62\x7a\x57\x91\xd3\x03\xef\xe7\x3a\x2d\x57\xff\xbe\xb4\xde\xc1\x8d\x60\xbd\x83\xf4\x84\xa6\x99\xf2\xff\xb3\x26\x7f\xc1\xcd\xab\x37\xa7\x31\xb8\x7e\xbe\x8f\xf7\x39\xfa\xc7\x2c\x7a\x08\x4e\xd7\x43\x7d\x75\xee\xbc\x1b\x2e\x6e\x50\x78\x0d\x17\x5f\xfe\x64\xbe\xfe\xca\xf5\xc9\xd6\xc7\x59\x4a\xe7\xd9\xc1\xdf\x02\x79\x8c\x3b\x6f\xd4\x9b\x4f\xb2\xc7\x99\x89\x47\xde\x2e\x46\x2f\x91\xfc\x59\x76\xc4\x85\x1b\x97\x73\xcb\xca\x1d\xc6\xdf\x58\x7f\xff\x01\xeb\xc2\xe8\xf0\x9f\xd6\x13\xe2\xe9\xdc\xf1\x72\x7e\xb3\x58\xaf\x9f\x63\xff\xfd\xdd\xe3\xe6\xf4\xc8\xd6\xff\xca\xa3\xcb\xd8\x78\xd7\xb2\xde\xc9\xfe\x23\xdf\x49\xba\x88\xf0\xe9\xc5\xf4\xfa\xa6\xf1\xa5\xc6\xe9\xf3\xbb\x05\x72\xe8\xb5\xf6\xdc\x1b\xe4\xe5\x5a\xc7\x81\xad\x25\xf7\x1f\x59\xaf\xfc\xfb\x59\xfc\x84\xf3\xe3\x95\xc6\x93\xb9\x1f\xe6\xf4\xc7\xeb\xb5\xa9\x1e\x31\x9b\xdf\x72\xbe\xb9\xea\x7e\x9c\x45\x17\xa1\x5e\xbb\xc2\x3e\xcc\xac\x17\xe8\xbb\x09\x38\xbe\x7f\x21\x1b\x7f\x11\x3a\x89\xf9\x21\x66\xd1\x5d\x4c\x7f\x49\xd2\x6d\x04\xce\x22\x79\xc5\xf4\x8a\xf8\xbc\x4e\x98\xbe\xe1\xd9\x61\x49\xbf\x48\x1a\x7f\x19\xe3\x58\x03\xfe\x32\x53\x7f\xde\x71\xfc\x25\xf7\x59\x62\xbc\x19\xf8\x8a\x8d\xd7\x5f\xff\xb8\x1d\xe3\xa7\x73\xe8\xaf\x11\xd5\x4b\x66\xe9\x93\x8b\xf1\x97\xc1\x77\xd6\x8a\xbf\xe5\xe8\x2f\x86\xd7\x24\xfe\x96\x95\xb3\xfe\x78\x96\xa2\x3f\xee\xb7\xcd\xe4\xdb\x19\x7a\xc9\xfa\xf7\xef\x72\xfb\x6f\x0e\x3f\x7f\xe3\xfe\xcb\xe6\x5f\x73\xf0\xdb\x08\xe8\x34\x73\xff\x65\xcb\xaf\xd8\xba\x70\x3b\xd0\xca\x6a\x97\xe4\x57\xcb\xea\x23\xb1\xf1\x25\xf1\x19\xc7\x63\x5a\xcf\xcc\xc0\xeb\x1c\x79\x3e\xdb\x5e\xf0\xc7\x93\xd2\x5b\xec\x94\xbd\x15\xa3\xf7\x75\xed\xc3\xcc\x75\x99\xbf\x6f\x7d\xba\x59\x76\x1f\x66\xf2\x97\xe4\x3c\x32\xf4\x9f\x08\xbe\x67\xe3\x6f\x59\xfd\x89\xdb\x35\x7f\x3f\xfe\x92\x70\x22\xfb\x61\x2d\xf8\xcb\x90\x0b\xab\xe2\x2f\x8d\xff\x39\xfc\x71\x0d\xfa\xd8\x6c\xbd\x6a\xd6\xfc\xe3\xf2\x3c\xc2\x2f\x1a\x0b\xfb\x59\x76\xff\xa5\xe8\xc5\xcc\xe6\x17\x73\xe9\x67\xb9\x7d\xf3\x0a\xfd\x75\x76\x3b\x9f\x2f\xce\x92\xa7\x3e\xbd\xcd\x3c\x27\xea\x04\xe5\xb3\xed\xea\xe5\xec\xd1\x08\x7e\xc8\x42\x7a\x6a\xb2\xc3\xa3\xc1\x7a\x53\xfc\x67\x90\x2a\x26\x3e\xd2\xa2\x69\xd8\xff\xbe\x9b\xd1\x3e\x55\x9f\xa5\x64\xde\x7c\xeb\x1d\xdc\x4e\xf0\x1d\x06\x8f\xa5\xb3\xbe\xe7\xe0\xe1\x28\x73\x5c\x76\xbc\x9c\x7d\xf3\xf6\xc9\xf2\x39\xf3\xb7\x78\x1a\x1f\x57\x12\x6e\x6a\xfe\xcb\xac\x77\x04\x4e\x17\xe3\x53\x8c\x2b\xb8\xae\xe1\x53\x7e\xce\x41\xbf\xef\xbc\xb4\x88\x95\x0e\xbe\xa4\x2a\x3a\xf3\xeb\xc9\x27\xf4\xdb\x3b\xb7\x8e\xf8\xb5\x93\x72\xf0\x55\xfe\x0f\x6a\x7f\x75\xb8\x7f\x8c\xc3\xfd\x82\xe5\x06\x6e\x6a\xf8\x7c\x9e\xfd\xf6\x76\xff\xd1\xca\x76\x73\x3b\xfb\x3b\xdb\xfe\x9b\xb5\x3f\x7f\x8a\xff\x59\xf1\xe8\x3b\xb9\x1e\x1c\xaf\x99\xe7\x1c\xfe\x3a\xd7\x13\xe5\xec\xdc\x26\x63\x9f\xac\x7f\xff\x7b\xf4\x9c\xde\xc7\x8b\xd3\xa6\x3b\x4f\xdf\x65\xf6\x7c\xe4\x7c\x2e\xcd\x77\x22\x70\x92\xe3\x08\xcb\x67\x8d\x6f\x3e\x9c\xd7\xce\x93\xc1\x9b\xb7\x7f\x13\xf5\x33\xf7\x43\x52\xaf\x5a\xab\x9f\x35\x6e\x47\x7c\x61\xef\xbd\x69\x6b\x4e\xef\xf0\x97\x8e\xfc\x6d\xcd\xa9\x8a\x9b\x26\xfe\xa2\xad\x37\x5d\x4a\xbf\x9c\x85\xff\x98\x7d\x94\xb4\x2b\x17\xe9\xa5\xaf\xd0\xef\x96\x6a\x1f\xd7\x47\xe7\x8e\x7f\x55\xbd\x67\x89\xfa\xaf\xd7\xb7\x66\xea\x6f\x11\x7f\x67\x56\xbc\xc8\xeb\xe0\xaf\xae\x5f\xcf\xf7\x73\xcf\xf2\x13\xbd\x6a\x5c\xd9\x78\x68\xaf\x0d\xaf\x19\xf3\x5a\xa9\x1d\x2e\xae\xa7\x7f\xf9\x0a\x37\x3a\xcb\xf9\xdf\x99\x5c\x5c\xd4\xef\xab\xec\xa7\x38\xbe\xe7\xfa\x71\x5e\xbb\xbe\x81\x9c\x2f\xd2\x79\xac\xe9\xfc\x61\x89\x71\xae\x3a\x7f\x5f\xaf\xf9\x29\x76\xc4\x2b\xf4\x03\xc5\xf4\xf4\xa1\x2e\x6d\xcf\xf4\xa2\x7a\x07\x5f\x7b\x72\x78\x91\xbf\x6c\x79\xfc\x26\xe7\xc7\xf7\x35\xd3\x97\x39\xdd\x85\xdf\x91\xf3\xdf\xc3\xb5\xf5\xbf\x2c\x9f\x5d\xb4\xbe\x6b\x3c\xc7\x91\x53\x78\x79\x33\x1f\xff\xa9\xfe\x8d\x18\x9e\x96\x3a\xb7\xce\xb6\xcb\x33\xcf\x59\x78\xfd\x90\xcf\x33\x7b\x6a\x9e\x7f\x63\xc5\xfd\x91\x69\x1f\xbe\x61\xff\x45\xea\xaf\xac\xc7\x2f\x7d\x9e\x11\xed\x87\xe9\xd3\x6f\xa4\xb7\xd4\xfa\x30\xb9\xf4\x13\xec\x11\xeb\x35\x7c\x68\x3e\x3c\x7b\x7e\x7c\xca\xaa\xfe\x9c\x68\xfd\x2c\xbb\x25\xdb\xcf\xb2\xac\x9d\x69\xfd\x9c\x73\xdf\x8c\xb8\x85\x59\xfc\x6b\x91\x7f\x87\xf3\xf9\xb6\x27\x2f\x67\xeb\x5d\xb3\xe6\xb9\x48\x4f\x8b\x9c\x33\xaf\x95\xff\x2c\x81\x7f\x56\x6f\x55\xff\xca\xb2\xeb\x9a\xc1\x2f\x32\xf5\xe4\xd7\xf9\x27\xac\x40\x0f\xe5\xeb\xb2\xe8\xbc\x3d\x29\x37\x56\xf7\x07\xbf\x8d\x1e\xe7\xea\x8b\xcb\x9e\x4f\x66\xa6\xb3\xe2\x2f\x33\xea\xfb\xf8\x5b\x14\x7f\x97\xa4\x47\x39\x6b\xfd\xe3\xfb\x2c\x7d\xde\xb7\x06\x3f\x54\x12\xce\x9b\xe2\x51\x33\xe4\xfb\x6c\xfd\x39\x62\xb7\xfa\x76\xf5\x4f\x88\x93\x9d\xb3\x7e\x4b\xc5\x33\x65\xe6\x47\xe2\x9d\x23\xf3\x9c\x0d\x27\x89\x8f\x65\xfb\x59\x01\xdf\x99\xfd\x63\xaf\x5e\x64\xff\xfa\xa9\x12\x7e\xb7\xe8\xba\x2b\x1e\x1d\xd4\x59\xfc\x37\xcb\x3f\xf1\xe2\xea\x89\x27\x62\xbf\x84\x22\xf7\x8a\xa6\xc3\xf0\x3e\x87\xbf\xa4\x45\x8f\x94\x62\x74\x76\x38\xe3\x15\x28\x1f\xee\x90\xea\xfb\xcd\x34\xdf\xbf\xf2\xec\xc5\xcf\x33\xca\x93\x69\x5a\x8e\x04\xf3\x1d\xc4\xf1\xb6\x88\x5f\x73\x3e\x76\x96\xa0\x57\xbf\x3d\xf3\x73\xb3\x7b\x08\xc1\xfd\x84\xbd\x84\x9d\xeb\x8f\xcb\xb3\x77\x97\xe0\x5f\xe1\xb9\x09\xbe\x0e\xef\x01\xb1\x54\x4d\x7c\xcf\x4a\xe3\xf5\xb4\x44\xba\xb8\x3d\x4b\x57\xf5\x5f\x2f\xcf\x3f\xf9\x79\x9f\x7f\x3f\x83\xe3\xd3\x9c\xb9\x9e\x97\x5e\xfc\xc3\xbe\x9b\xe1\xaf\x08\xea\x79\xf4\xe9\xdf\x27\xf0\xe1\x36\xc3\xfb\x22\x8b\xfc\x47\xcb\xef\x37\x1f\x7e\xd0\x3e\xbd\xee\xfe\x37\x4f\xcf\xa2\xf4\x91\x91\xc6\xda\xcd\xaa\x37\x8b\x5e\x92\x7c\xe5\xd2\x8d\xf0\x3b\x8e\xf7\x61\xec\x5e\x4c\x2c\x7d\x15\x3f\xe4\xed\x16\xed\xc3\x4e\x64\x5d\x82\x76\xc5\x70\xbd\x12\xf5\x22\xf7\xdd\x48\x6c\x5d\xc3\xf5\x4d\xb6\xf7\xc7\x31\xcc\xba\xf7\x13\x1f\x6f\xc6\x7c\x17\xcd\xbf\x93\x98\x6f\x72\xfe\x8b\xf0\x14\xc2\x4f\xf6\x3f\x4c\xcc\xeb\x15\xf8\x5f\xb5\x7d\x12\xdf\x73\xca\x5f\x9f\xae\x40\x4f\x2b\xe9\x17\xe1\x79\xe2\x72\xe3\x1e\x61\xa5\x3b\x13\x5e\x36\x9c\x65\xf5\x80\x2e\x3e\xec\xcc\x87\x9f\xa9\x77\xbc\x56\xdf\xf4\xe5\xcf\x7c\xfe\xf1\xaa\x34\x9b\x1f\xac\x23\x7d\xf5\xb8\x3a\x8b\xe1\x27\xf7\xd7\x2b\xc6\xb7\x68\x9f\xac\x04\x67\x29\xb8\x11\xbe\xb4\x14\xff\x9d\xb3\xbf\x33\xbf\x87\x89\xfd\xf7\x3a\xfe\x1e\x8e\x6b\x0d\xfb\xbb\x12\xec\x93\xc3\xa4\x1c\x98\x37\x1f\x5e\x9f\x8d\x83\xb5\x0b\xf6\x1b\xe6\xe9\xdb\xf8\x53\x6c\x5c\x2b\xcb\xb3\x55\xd3\x4e\x42\x3e\xd1\x7e\x68\xbf\xb1\xfc\x95\xfa\x5d\xcb\xfc\x33\xe8\x7d\xad\xf3\x8e\xac\x7b\x66\x1a\xa1\xb3\x51\x6c\x3d\x12\xe5\x7c\xbd\xfd\x7a\xc5\xa0\x3c\xa0\xa7\xc4\x7e\x39\x4c\xef\xd3\x64\xbf\x2c\x6d\xe1\x14\xbc\x51\x16\x5f\xf7\xe9\xce\x7f\x7a\x69\xbd\xf2\x31\xe9\xba\xac\xf0\x38\x9d\x48\xff\x5c\x4e\x31\xbb\x21\x22\xff\x12\xdf\x6f\xe1\xff\x4b\xca\xdd\x75\xd1\xc5\x9c\xf9\xbc\x02\xde\x02\xbc\xcc\xf9\xfe\x09\xf3\x59\xe3\xfe\x59\x03\xbc\xb7\xeb\xf7\x2c\x7d\x93\xbf\x64\x16\xbc\x25\xfc\x1b\x73\xfc\x27\x2b\xf9\xe7\x56\xd0\xb3\x96\x9d\x47\x18\x8f\x90\x84\x1f\x9c\x17\x16\xa9\xdd\x79\x39\xd3\xff\x98\x79\x0e\x96\x8c\x6b\x9c\x99\xbe\xd1\x6f\xbd\xc2\xf9\xf3\xdc\xfb\x22\x49\x7f\x45\x76\xfb\xe5\x8e\x86\xd3\xfe\x28\xdf\x5f\xd3\xd4\x82\x78\x38\x56\x3f\xc2\x37\x33\xf7\x75\xa4\x3d\xbb\xc7\x1c\x3b\x4f\x88\xaf\x23\x7f\x72\xa8\x13\xc4\x99\xb5\x83\xfe\x92\xe3\x79\x83\xde\xbe\x48\x0e\x2e\x97\xae\x0b\x4e\x3a\xfd\x89\xe3\x5f\x15\x5f\xcb\xc3\xc3\x45\xba\xde\xe7\x3c\x5f\x3e\xc0\xcd\x01\xfe\x3c\x83\x1e\xd8\x37\x6f\x9f\x5d\xee\xa5\x0d\xda\x0f\x83\x23\x7f\x4d\xa5\x29\x3f\x57\x37\x52\x8e\xcb\xde\x38\xfc\xfa\x07\xb8\x31\x88\xe0\x57\x3e\xa7\xf9\x5d\x56\xde\xa0\xe5\x91\xef\x19\xfd\x2d\x9d\x36\xde\xd8\x3e\x33\x4d\x8e\x37\x56\x9e\x31\xee\x73\x5a\x2f\x72\xae\xc6\xfc\xb3\xe7\x2e\x5f\x97\x66\xe7\xa7\xcf\x7f\x16\xbc\xf3\xac\xfa\xb1\x7a\x72\x97\x7e\xb3\xf5\xfa\x9c\xa0\xc7\x75\xe3\x95\x9f\x7b\xac\x75\x9d\x66\xa4\x74\xfc\x31\x7a\xfc\x3a\x6f\x5f\xad\x75\x7e\x01\xfe\x96\xe7\x2f\xdd\x0e\xa7\x9f\xc5\xe9\xcf\xe0\x7f\xf3\xd6\xf9\x0d\x70\x33\xf5\xed\x39\xfc\x25\x99\xae\xd4\xdf\x1a\xd6\xef\xb5\xf4\xf1\x5a\xfc\xbc\x76\x9c\x8d\xd5\xe9\x71\x7d\x72\x6b\x35\x3d\x8b\xe9\x1f\xab\xc5\x49\x2e\x38\x1f\x7f\x9d\xfe\xb1\x94\x5e\x1e\x8f\xbf\x99\xfb\xae\x40\xf2\xfd\xb3\xb7\xa6\xaf\x8a\x5b\x8b\xc4\x03\x47\xf4\xb4\xd7\xcf\x7f\x0e\x5e\x32\xfb\x5f\x69\x7e\xcb\xf6\x97\x01\x77\xa5\xf3\xa8\x88\x7d\xf4\x5a\xbb\xe9\xb5\x71\x7a\xb1\x7b\xed\xd9\xf9\x6b\x88\xa7\x09\xe7\x33\x67\x5c\x7c\xbe\x66\xc6\x7c\x5f\x37\x0e\x7e\xaf\x8a\xdd\x9f\x9a\x1d\xdf\xf1\xb3\xe3\x88\xb2\xd7\x65\xc9\xf8\x9b\xd7\xc6\x87\xa4\xec\xbe\x90\x4e\x71\x65\xe6\xfd\x83\x6c\x78\x74\x7f\xfe\x9c\x78\xaa\x45\x7e\x80\xb5\xde\x6b\x89\xc4\x8f\x25\xf7\x57\xc4\x8e\x0c\xf7\xdb\xdc\xf7\x9f\x52\xe7\xe1\x89\xf8\xc5\x39\x46\xf3\x9c\xf8\xb1\x64\x1c\xe8\x2c\xfc\xbe\xe9\x3c\x7f\xd1\xfe\x8e\xc4\x27\x2d\x9a\xff\x41\x60\x6f\xaf\xe7\xfe\x59\xf2\xde\xd7\xaa\xf7\x58\x43\x38\x7e\x9c\x65\x46\x3f\xfe\xfa\xbc\xe9\x3c\x2f\x12\xc7\xbb\x44\xfc\xec\xec\xfd\xb4\x68\x1f\x64\xfb\x7f\x96\x8a\xcb\x5a\xb4\xfe\x4b\xf8\x7f\x5e\xe1\x9f\xca\xa4\x47\xf6\x2e\x9f\x3f\xcf\x15\xe2\x67\x3f\x63\xf9\x33\x6e\x76\xf1\xe7\xce\x9b\xd3\xee\x9a\xe0\x7c\x5e\x4c\x17\xab\xdf\x8f\x8b\xac\xf7\x5a\xef\xc7\x45\xc6\xc5\x9f\x12\xd4\xd6\x9b\x2e\x6f\x9f\xac\xc7\x4e\x4d\xea\xfb\xcb\xfb\x47\xb3\xf7\x53\x7c\xdd\xae\xa8\xdc\x9c\xfd\xce\xa3\x5c\x59\xe2\x3d\xc8\xc8\xfb\x8f\x91\xef\x23\xd7\x7f\x27\x32\x9e\x66\xc3\x59\x51\xce\xbe\xc2\x7f\xbf\x1c\x7f\x5b\xb3\x5e\xd4\xc4\xdc\x6f\xb7\x42\xfd\xe5\xc7\xf1\xe6\xf8\x8c\x45\xf0\xd5\x00\x7f\x2b\xe8\x61\xfb\x18\x9f\x63\xb9\xe1\x6d\x1a\xa6\x87\x72\xbf\xe5\x5b\xe2\x7f\xe3\xf6\xee\xa2\xf3\x32\x56\x2f\xe2\x47\x8d\xed\x1f\x56\x2e\x33\xff\x1f\xf3\xfb\xf9\xe7\x97\x49\x78\x73\xfc\xda\xd7\x54\x5f\x8f\xd9\xdd\x4b\x9c\x37\xbc\x35\xe5\xeb\xc0\xfc\x04\x97\xde\x78\xfc\x71\x8c\xa2\xf3\xf6\xe7\x37\x97\xff\xf0\x78\x54\x7f\x5e\x97\x6b\xf3\xab\xc9\x57\x14\xde\xf9\x9b\xfd\x26\x71\xbf\xd6\x97\x70\x5e\x57\xdc\x8f\x1e\xa4\xdd\xc0\x9f\x9b\xed\x87\xfb\x49\x7e\xcb\xc6\x00\x9f\xcf\xf0\xbb\x66\xfa\x4d\xf9\x7e\xcb\xf0\x7b\xda\x29\xff\x0f\x8b\x77\xf5\xf1\xc7\xe3\x5a\x33\xed\xe3\xb9\xe7\x6d\x41\x10\x73\x71\x39\x7e\xf2\xb6\x77\x39\x5f\x45\xef\xe1\xbb\x5c\x2b\xf4\xb3\xc2\xbb\x71\x6b\x7c\x7f\x20\x86\x5f\xdf\x6e\x7a\xab\x9d\x9e\xa9\xb7\xae\xea\xd7\x59\x21\x5d\xca\x9f\x13\x7f\x07\x7d\xb1\xdf\x26\x32\xee\x37\xd9\x15\xd9\xe9\x1a\xe3\x13\x2a\x81\x7d\xb7\x56\xbe\xbc\xec\x7c\xde\xea\x57\x9a\xa5\xbf\x2d\xeb\xef\x5a\x81\xbe\xdf\x00\x67\xb6\x9f\x63\xdd\xf2\x90\xed\xc3\xec\x75\xc8\xac\x9f\xf4\x6b\xbf\xd6\x6f\xf8\xda\xf5\x7a\xeb\xba\xac\x7b\x3c\x6f\xd0\x7b\x17\xf9\xaf\x5e\xaf\x7f\xfa\xf8\x5f\xc3\x7c\x93\xef\xd5\xad\xe5\x9d\x0f\x7e\x8e\xff\xa6\x71\x45\xf8\xec\x22\x7a\x7c\x15\xfe\xdf\xea\x3f\xce\x7c\xe7\xef\x27\xec\x87\xe4\xfe\x5d\x17\x3d\xaf\xe1\x77\xa8\x66\xcd\x3b\x79\xdf\x30\xc9\xdf\xd3\xf7\x88\x5f\xf7\x4e\xe4\xac\x75\x89\xf9\xef\xe3\xfd\xcf\xf0\xe7\x67\xd3\x45\x46\xdc\x52\x3b\x7b\xdf\xae\x77\xdd\x7d\xfa\x5f\x29\x7f\x85\x34\xe9\xff\x8d\x95\xa7\xe6\x3b\xdb\xff\xf8\x26\xfe\x10\x39\xe7\x88\xf5\xf7\x86\xf5\x3e\x0a\xfd\xce\x4b\x9e\x8b\x2d\x07\x6f\x7d\xf3\xff\x39\x7e\x95\x25\xe4\xc5\x8c\x73\x9b\x59\x76\xd2\x0a\xfd\xaf\xf2\xde\xc1\x8c\xf4\x15\xe7\xc3\xb3\xfc\x1f\xfe\x7c\x56\x8c\xef\x7b\x33\xbe\x97\x7f\x1f\x62\xd6\x7e\x5c\xe2\xbc\x66\xd1\x7b\x7a\x4b\xcd\xf7\x75\xfc\x82\x44\xcf\x05\x33\xed\xe8\x48\xfd\x48\x5c\x26\x89\xbe\xdb\xc0\xea\xcf\x7d\x1f\x81\xff\xce\x5d\x68\x37\xae\x41\xce\xbd\x75\xfe\xaf\x78\x3f\x3c\x23\x8d\xc5\xa1\xb2\x38\xe3\x15\xde\x77\x5b\x7e\xde\xf3\xf6\x4d\xf1\x0d\xfc\x6b\x85\x73\xda\x15\xf8\x41\xec\xfd\x89\x39\xfc\x32\xe4\xcb\x2b\xf3\x87\xb0\x9f\xb8\xbf\x27\xd4\x9f\x93\x74\x3c\x87\x2f\x64\xc0\x49\x9f\xa7\x2e\xf1\x6e\x47\xc6\xfc\xd3\xe7\xf2\x11\xb9\x78\xa0\xcd\xe7\x2f\x2c\x3e\x26\xc3\xff\x1c\xea\x0b\xd9\xfd\xaf\xff\x7d\xab\x99\x78\x99\x45\x3f\xa7\x41\x3c\x77\xe4\xdd\xda\x4c\xbd\x2b\x23\x4d\xf6\xeb\xcf\xdf\xe7\x3f\x8b\xe4\xed\x0a\xf1\x15\xe1\x3b\xbc\xb3\xd2\x57\xf8\x6d\x56\xe8\x7f\xf9\x74\x3d\xef\x3e\xfb\xf0\x56\x7a\x27\x69\xd1\xfe\x67\xf0\x03\x39\x65\x2e\xfc\x3d\x92\xd5\xf5\xa7\x45\xf2\xf4\xad\x7a\x79\xf6\xbb\x2e\x31\x7a\x8e\xd3\xef\x69\xd4\x9f\x96\xe6\xbf\xf3\xf9\x6a\x26\x1f\x5c\x4e\xde\x24\xf5\x3c\xa6\x17\x04\xf4\xfa\xc6\x7b\x0f\xcb\xeb\x4f\xeb\xf1\xc7\xcc\xd2\x87\x66\xbd\xb3\xb3\xec\xfd\x8e\xd5\xe9\x6f\x26\x3d\x9e\xf2\xdf\xef\x7a\x85\x9e\xb2\xdc\x3a\x2e\x5f\x6f\x05\x3b\x67\x55\xfd\x62\x89\xfd\x10\x93\xa3\xb3\xd7\x89\xcb\xe9\xcc\x75\x59\x41\x7f\x78\x2b\x5d\x85\x7a\xc5\x2b\xf4\xc3\xa4\x7f\x60\xd9\xfd\xb1\xc6\x7d\xf7\xd6\xf9\x5f\x60\xb9\x85\x1b\x1a\xee\xb8\x72\x1d\x37\x62\xf4\x5b\x0f\xea\xf1\xf2\x56\xa2\xfc\xad\xfd\x26\xfb\x7b\xbd\x3e\xff\xba\xf5\x7b\xe5\x7c\xd6\xb0\x6e\xcb\xd1\x77\x3b\x4b\x5f\x7f\xab\xfd\x9a\xc1\x6f\xe6\xd2\xed\xdb\xec\x83\x62\xf6\x7b\xf7\x91\x76\xcc\x3e\x7c\xad\x7e\xb4\xaa\xfd\xb3\xc2\xba\xfe\x54\xba\x58\xa1\xdd\xeb\x7f\x4f\xf5\x0d\xf1\x9f\x73\xed\x94\x25\xf0\x11\x39\xef\x5f\xa3\x7e\xb1\x44\x1c\xd9\xea\x70\x5f\x77\xff\x6a\xd1\xfa\xae\xf9\x5e\xd9\x12\xfb\x7b\x55\xfe\xb7\x12\xff\xe0\xf5\x48\xe8\xc7\x58\x32\x3e\x7b\xb5\xf4\xf5\xe7\xd5\x73\xe0\xce\x3a\x87\x5f\xc3\xf9\x78\x23\xea\xd7\x62\xf9\x6f\xd8\x8f\xb3\xda\xbf\x61\x9c\xe9\xf1\xfd\xac\x38\xc0\x64\x9a\xbc\x47\xff\x4f\xd3\xc7\x9c\xf9\xbc\x4a\x5f\x5f\x6e\xfe\xaf\xa2\xe3\x75\xc5\x6f\x24\xef\x29\x74\x13\xfe\xae\x70\x5f\xc7\xf7\xf9\x62\x3c\xce\x79\x37\xe0\xa7\x8c\x3b\x82\xf7\x15\xec\xcb\xa3\xac\x77\x04\x63\xfe\xbe\x6c\x3e\xb7\xd2\xf8\xd6\xf3\xfb\xc7\x7f\x53\xbc\xd2\x9c\x74\xd1\xf8\xde\xba\x9e\x3f\x71\x7e\x8b\xf4\xe9\xb7\xa6\x6f\xd2\xaf\x66\xc9\x8b\x25\xea\xc7\xf8\xf8\x7c\x39\x94\xf4\x97\x2e\xcf\x6f\x5f\xe7\x5f\x78\xa5\xde\xf8\x8a\x7e\x92\xfe\xfb\x6c\x38\x2b\xf9\xdb\x97\xb5\x9f\xe6\xea\x51\x8b\xce\x3f\xb2\xf5\x8f\x05\x78\x5c\xee\xfc\x90\x5d\x55\x5b\x8b\xbd\x33\x8b\x8f\xc6\xe3\x7f\x96\xff\x1d\xce\xf8\xfb\xce\x49\x7d\x34\x86\xe7\x48\xdc\x52\xfa\x77\x6a\x33\xfa\x4f\xd6\x4f\xfe\x7e\x6d\xc6\x38\xe6\xda\x85\xb3\xc6\xbd\xd4\x3c\x97\x48\x33\xe9\xea\xad\x71\xef\x2b\xeb\x5f\x4b\xd5\x5f\xfc\x8e\x58\x10\xf7\xbe\xea\x3b\x8c\x24\xf1\x0e\xdc\xf2\xef\x2d\x66\xbf\x23\xb7\x38\x7d\xf5\x3b\x11\x77\xf8\xa8\x83\x1f\xde\x98\xc6\xe0\xb2\xf7\xe7\x5e\x3b\x1e\xbe\x7e\x6f\x7a\xff\x22\x89\xc7\xf8\x3b\x8b\x2c\xd5\xbc\x77\xef\x62\xe3\xf5\xdf\xc1\x5b\xf7\x3b\x44\xad\x0e\xbe\xc5\x4a\xc3\x4b\xc3\xfe\x93\xef\xef\x65\xa4\xab\xf5\x93\xd9\x0e\x47\xe7\x3b\x0b\xbe\x96\x05\x27\x89\xa7\x37\xe0\x81\x78\xeb\x12\x7b\x0f\x31\x32\xbe\x64\xbd\xe4\x7a\xcd\x5e\xe7\xb8\x5e\xb0\x2a\x9d\x65\xea\x15\x4b\xcd\x67\x69\xbb\xe6\x0d\x74\x83\x53\xeb\xb2\x6a\xfb\x18\x9e\xdf\xb0\x8e\xaf\xc5\xd3\x62\xbc\xcf\xa1\xe3\x0c\xba\xd6\xde\xa2\x8f\x07\x47\xbc\xde\x3b\xfb\x19\x74\xa3\xbd\x66\xbf\x2d\x87\xff\xd5\xcb\x57\xa5\xdb\x39\xe9\x5b\xe9\xf9\x55\xfd\xbf\x75\xdf\xad\xb0\x9f\xd6\xb8\x1f\x93\xfc\x31\x73\xdf\xcc\xa1\x93\xd9\xfc\x7c\xd6\xbe\x5e\x2e\x9d\x2b\x27\x7e\x8a\xdc\xe2\xe9\x92\xfe\xe7\x15\xee\x25\xfb\xe9\xba\xe1\xb1\x74\xdd\xf7\xf7\x96\xc2\xd3\x1a\xc7\xff\xba\xd4\x5a\xb3\x3f\x7a\x96\xdd\xb9\xe2\xb9\xfb\xfc\x54\x98\xc2\x9b\xb1\x31\x70\x74\xd3\x10\x31\x24\xd0\x01\x2f\xc2\xd8\x26\x1b\xb6\x63\xe9\x03\x47\xa8\x9e\x5e\xff\x41\x06\x4e\x61\x48\x6e\x74\x83\x9c\x59\xe6\x03\xb1\x9c\x67\x91\x40\xe1\xc7\x0f\x62\x9f\x98\xc3\xf1\x88\x08\xf0\xe5\x51\x1d\x8d\x89\xb4\x59\x9c\x82\xea\xa3\x6a\x6d\x58\xc8\x11\xdf\x81\x2a\xa1\xcd\xd4\xf1\xc8\x41\x7e\x17\x1b\x58\x24\xd0\x81\x06\x78\xd9\x8c\xf6\x0a\x5e\xf4\x1b\x71\x53\xc4\x1b\xba\x61\x3b\xaa\x31\x20\xe6\xcd\x06\x01\xc0\xb9\xb5\x4c\x77\xc3\x20\xee\xc6\xe5\xf3\x03\x69\x58\x96\x69\x89\x82\xa2\x1a\x86\xe9\x6c\x0c\xd4\xd1\x68\x43\xdd\x18\x8c\x54\xdb\xde\x50\xed\x0d\x75\xc3\x07\x28\x80\xa9\xe8\xdc\xea\x36\xc4\x00\xd2\xb4\xe0\x3c\x3f\x10\x64\x15\xce\xf0\xe5\x41\x41\x69\x9d\x2b\xc7\x0d\x9e\xff\x84\x08\xff\xe3\x19\x39\xfc\x0f\x4b\x1d\xea\x63\x1b\x19\xd3\x9f\x82\x14\x68\x04\x78\x10\xc1\x8b\x45\x9c\xb1\x65\x6c\xa4\xd0\x80\x2d\x4b\x7d\x2e\xe8\x36\x4b\x45\x0c\x80\x57\x11\x57\xf5\x1b\xf1\xe2\xf9\xfe\xda\x1c\x15\x74\x87\x58\xaa\x63\x5a\x1b\xba\xb1\xc1\xc7\x12\xa9\x18\x87\x48\x7b\x76\x50\xaf\x0f\x2d\xb4\x59\x84\x06\xda\x2c\x41\x19\x3d\x9a\xfa\x70\xa3\x58\x75\xac\xe7\x97\x1b\xd3\x12\x69\x1d\x15\xda\x08\xf7\x12\xf0\xfb\x22\xa8\x6e\x8a\x16\x12\x55\x64\x17\x0c\xf2\xe4\x88\x00\x14\x86\xa6\x41\x40\x2e\x27\x3a\x85\x87\xb1\x7d\x2b\xaa\x05\x36\x4f\x00\x37\xc9\x64\xe2\x14\x46\xc4\xd0\x9c\xdb\x4d\x84\x08\xa8\xd2\x2e\x41\x75\x3a\x50\x9d\xc1\xad\x88\xc1\x8b\x41\x87\x20\x23\x3c\xbd\xd1\x0d\x75\x34\x7a\x7e\xa1\x03\xd8\xb4\x72\x39\xbb\xc0\xc7\x1e\xfe\x25\x82\xa0\x92\x7e\x23\x1a\x1e\x29\xc8\xd3\xa9\x37\x49\x67\xca\xa6\x57\xcd\x24\x91\x96\xf1\xa8\x8e\xf4\xe1\x86\xea\x38\xe4\xfe\xc1\xd9\x70\xcc\x8d\x21\xb1\x1d\x6b\x3c\x70\xc6\x16\xd9\x30\x4c\x63\x8b\xcd\xf0\x7a\x44\x02\x8a\x13\xc0\x74\x2a\x02\x28\x47\x97\x28\x42\xb5\x0c\x97\x3e\xae\x1c\x54\xac\x3a\x1f\x89\x37\xd7\xaa\x93\xcf\x73\x3c\x5b\x88\xf4\x9c\x7e\xd5\x2a\x10\x63\x7c\xcf\xe1\xa3\xe8\xc7\x64\xb2\x59\x82\x56\x61\x60\x1a\x37\xba\x36\xe6\xe5\x9b\x45\x28\x30\x04\x0a\xba\xb1\x61\xe5\x72\xa2\x55\x70\x2d\xdd\xf1\xca\x00\xcc\x26\x35\x0c\xad\xc2\x1d\x79\x86\x16\x08\x30\x12\x8c\x9b\x6e\x30\x2b\xa0\x2f\x27\x97\xc3\x22\x29\x3c\x58\xa6\x63\xd2\x8d\x00\x1d\x00\x2d\x96\x07\x2d\x00\x09\x9b\xb4\x8a\x1c\xb1\x0c\xa0\x8d\x44\x47\x2c\xef\x02\xe8\x88\xbb\x65\x00\xa0\x89\x1c\xf1\x03\x80\x3a\x12\x2d\x64\x82\x5c\xce\x2a\x84\xe4\x5d\xb3\xa4\x17\x6f\x73\x4b\xd6\x14\x0e\x90\x23\xee\x02\x38\x42\x8e\x58\x2a\x73\x72\x1f\xcf\xc0\x24\xdb\x4d\x7f\xe7\xee\x57\x2d\x8d\x38\xfe\x56\x37\x1f\x68\x25\x1b\x39\x90\x14\x2c\x62\x0c\x89\x25\x3a\xc0\x47\xa1\x2c\x62\xd8\x7b\xb9\x23\xcf\x92\xc0\xcb\xda\xe6\x90\x08\x90\xef\xe3\x70\xc4\xe0\x05\x17\x74\xfb\xb3\x6e\xeb\xd7\x23\x22\xb2\xad\xc0\x98\x47\xd0\x44\x56\x07\x77\x9a\x65\x8e\x8d\x21\x36\x86\xb2\x69\x0d\x89\x65\x8b\xfe\x78\xc2\x6a\x8a\x69\x38\xc4\x60\x5b\x77\x3a\x85\xc9\x7e\xbd\xd2\xac\xee\x29\x7a\x09\x62\xb3\x74\xa2\x58\xa6\xdc\xa3\x30\xb8\xd5\x47\x43\x0a\xc0\xf6\xe8\x33\x97\x8b\x65\xde\x98\x56\x43\x1d\xdc\x8a\x41\x3b\x87\x35\x74\xa2\xd8\xd7\x7d\xc6\xed\xd3\xb5\x53\x78\x50\x2d\x62\x38\x05\xdb\x79\x1e\x91\x2a\xf1\xb0\xea\x4d\xe6\x92\x3c\x39\x14\xb8\xe8\x14\xae\xe9\xac\x6d\x46\xe4\x23\xd3\x82\x56\xe1\xc6\x34\x1c\x68\x15\x1c\xf2\xe4\xd4\xc9\xc0\xb4\x54\xda\xa7\x97\x71\x71\xab\x0e\x4d\x17\x4c\xc9\xc8\x26\x1b\x01\xcc\xa1\xa5\xba\x17\xb7\xea\x03\x11\x1d\x88\x79\x87\x1c\x1a\x98\x02\x88\x0b\xfa\xbd\xaa\x05\x7c\x8d\xf8\x0b\xca\xb3\x2f\x1c\xd3\x22\x05\x8d\x38\xa2\x5f\x8f\x32\xcd\x60\x16\x62\x11\xaa\x85\x81\x3a\x1a\x8c\x47\xaa\xe3\x23\x58\x36\x9f\x80\x88\xfd\x81\xfb\x1d\x3e\xa8\xc3\xa1\x6e\x68\xc1\xf7\x35\x5b\x45\x00\x0d\x24\x18\xe3\xfb\x6b\x62\x09\x08\xd1\xed\x64\xde\x6c\x38\x05\x57\x1f\x52\x34\x7b\x7f\x7c\x2a\xd6\xbc\xbf\x24\x8b\xa7\x50\xce\x6a\x75\x4b\x74\xed\xd6\xa1\xcd\xf8\x5f\xac\x1d\xff\x53\xb2\xbc\x3f\xaa\xc6\xa7\x62\x2e\x27\xd3\x7f\x02\xfc\x0c\x46\xfa\x83\xd8\x8b\xcf\xe5\x8c\x0f\x57\x36\x9f\xce\x54\xe7\x96\xce\x67\x30\xb6\x1e\xc9\x50\x66\xb3\x02\x7d\x18\xa1\x92\x18\xa2\x5b\x14\x4b\xa2\x03\xe9\x36\x53\x0b\xbc\xba\x58\x84\x45\x68\x40\x19\x50\xf6\x02\xa6\xd3\x29\xb4\x10\xa6\x58\x55\x46\xfa\x03\x85\x6f\x8b\xa0\x6a\x79\xd4\x55\x8b\x6c\x32\x3e\x34\x0b\x3a\x40\x72\xc4\x2c\x9a\xce\xda\x18\x0b\x09\x7c\x33\x58\x83\xa0\x75\xe4\x4f\x85\x52\x46\x41\xb7\x2f\x2d\xd5\xb0\x39\x91\x8a\x60\x32\x99\xdb\x86\x4d\xda\x1b\x3f\x9b\x5b\x74\x8d\x0b\xb6\x79\x4f\xc4\xe8\x68\x7c\x01\xec\x55\xb8\xa0\x95\x37\x11\x1a\x15\xe4\xd3\xf3\x7a\xe3\xfc\xc7\xc5\xe5\xd5\x71\xa3\xd0\x3e\x6d\x37\x72\xb9\x4d\xbf\x56\xe6\xb8\xa6\x20\xae\x03\x04\x64\x39\x08\x97\x32\xc0\x91\x76\xa6\xea\x86\xa3\x1b\x1a\xb6\x88\x9a\x5c\x52\x38\x1f\x29\x23\xfd\x01\x54\x9d\x14\xd1\x58\x31\x42\x78\x0d\x5e\x03\x80\x37\xfa\x68\x24\x2e\x86\x00\x02\x3e\x2b\xc7\xd1\x2f\x62\xbe\x9d\x63\xa8\x4f\xf3\x26\x2a\xc9\x9c\x28\xe2\x51\x26\xe2\xa9\xe6\x31\x07\xef\x74\xdc\xde\x28\x58\x25\x0a\x17\x26\xf6\xc8\x14\x4c\x19\xb3\x98\x4c\x2c\xbe\x30\x32\xc2\x1e\xd7\xab\xf9\x7f\x24\x36\x81\xd4\xeb\x57\xe5\x99\xfb\x40\x86\x06\x90\xa8\x22\x93\xd8\x08\x09\x44\xcc\xa7\xff\xea\x12\x84\x6c\x8f\xf4\x01\x11\x8b\xa0\x60\x91\x47\x62\xd9\x44\x04\x99\x4c\x5e\x18\x5b\x23\x01\x21\xe4\x14\x6c\x73\x6c\x0d\x48\xe1\x9e\x38\xb7\xe6\x90\x32\x20\x2f\x43\xb5\x34\x5f\x68\xd4\xd2\xcb\x76\x4e\x1e\x88\xea\x88\x98\x6e\xef\x6d\x8d\xaa\xca\xc4\x70\xb6\xf5\x82\x43\x6c\x47\x4c\x00\x05\x94\xf4\x92\x00\xf6\xbd\x36\x0c\xc4\x34\xc9\x1f\x92\x1d\xa5\xf1\x12\xaa\xb3\x51\x51\x9e\xe4\xfc\x24\x3a\x9b\x5e\xb1\x9f\x12\x01\xd9\x7b\xcd\xb4\x75\x0a\x2e\xb2\xdd\xe6\xe0\xfd\xd4\xd2\x35\xdd\x80\x2b\x48\x8d\x19\xfd\x0e\x2f\xf4\xbf\x08\xf0\x54\x36\x28\xcf\xac\xe6\x0f\x0f\x50\x55\xce\xfb\x1b\x1a\xb4\x8d\x3a\xb3\x0d\x47\x23\x97\x07\x04\xca\xb4\x7a\x30\x62\xaa\xec\x9d\xa8\xce\x6d\x81\xd5\x14\x29\x33\xbf\x71\xf2\x72\xe1\x89\x6a\x7d\xb1\x02\xc7\x7c\xc8\xcb\x85\x67\xaa\x69\x87\xf4\xcd\x57\xcc\x23\x08\x95\x1a\x74\xd0\x86\xe6\x1c\x4a\xf7\x97\x7e\xde\xa2\xfe\x33\x4b\x93\x24\x09\x7f\xa4\x19\x4b\x34\x6f\x1d\x33\x17\x88\x4a\x42\x28\xa3\x98\x6c\x8d\x20\xd7\xe1\x58\x37\x28\xd6\x63\xd9\x14\xe7\x46\xe1\x19\x40\x5f\x7f\xf0\xd5\x01\xba\x3a\x62\x11\xda\x94\x1d\xd9\xc1\x50\x01\xc5\xa2\x47\xf5\x50\x66\xf4\x6e\x02\xdb\xd5\xa9\xd5\x65\x32\xeb\x17\xbc\x0c\x54\x6a\xbe\x16\xf6\xcf\x71\xbd\xd5\x68\x5f\xfe\xb8\xbc\x3a\x6b\x14\x8e\x5b\xed\x06\x3e\xff\xe1\x67\x4a\xe9\x25\x3e\xd6\x0d\xa2\x5a\xc1\xc6\x95\xa1\x09\xaa\xd7\x16\x51\xef\xaa\x99\x00\xe9\x07\x3e\x9e\x07\xf0\x5c\x1d\xea\xea\x28\x06\x30\x45\x35\x6c\x65\xb2\x28\x85\x5a\x0e\x51\x90\xa1\xa6\xc8\xb4\x21\x86\x14\x4a\xef\x4d\xd3\x03\x02\x44\x07\x12\x00\x63\x32\x39\xc9\x77\x2e\x1c\x75\x70\xb7\x80\x09\x73\xc5\xda\x34\x1c\x55\x37\x88\x15\x55\xfe\x7d\xe2\x65\xfa\xd1\xe9\x83\x3a\xd0\x9d\x67\x11\x54\x9d\x4d\xc4\x99\xd4\x0f\x93\xe7\xf9\x46\x82\x37\x72\x3b\xac\x1c\x6f\xe9\x19\x09\x7e\x33\xe4\xf8\x0e\x95\x68\xff\x9c\x82\x1d\x2a\xe1\x6e\x4c\xeb\xbe\x6a\x8c\x47\xa3\x4d\x84\xac\x98\x0c\x0a\x8a\x63\x43\xe7\xbb\x82\x13\x9e\x15\xd6\xe1\xbb\xa6\x57\xec\x73\x63\x1e\x66\x34\xa1\x44\x99\x6e\x51\xf2\x5b\x44\x8a\x60\xda\xcb\xe1\x0b\x03\x86\xec\xd0\xee\x99\x02\x29\x62\x13\x25\x0b\xb3\x16\x6a\xa1\x55\xe4\x32\x43\x0b\x51\x33\x78\x97\xee\x6e\xa7\x57\xec\x43\x19\x39\xbd\x52\x9f\xda\xb9\xbd\x72\x1f\xda\xc8\xe9\xed\xf4\xa9\x79\xdb\xab\xf4\xa1\x8e\x3a\xb4\xc9\x00\x19\xa2\x0e\xcb\xd4\x86\x1d\xd0\x26\x63\x34\xe8\x95\xfa\xd5\xa5\x2c\xbb\x10\x59\x74\xcb\xda\xa6\xe5\x88\xdd\x50\x06\x27\x67\xc8\x56\x78\xb6\x31\x18\x05\x36\xce\x02\x42\x6b\x7b\x30\xec\x45\x9d\x98\x8b\x2a\x8c\x16\xf4\x20\x2f\x02\xa0\x2e\x39\xdf\xc4\x62\x66\x2d\x60\x4c\xaa\x27\xf4\xc8\x5c\x2e\xce\x4b\x06\x8e\x6a\x68\x23\x22\xc6\xda\x3c\xc5\x6c\xfc\xc2\x73\xfc\x93\xb3\xd2\x58\x16\xe7\xaa\x70\x5e\xc7\xb1\x85\x62\xf3\x11\x31\xdf\x93\x9c\x37\xf8\x43\xd2\x88\x73\xc9\xfe\xa2\xb6\x91\x47\xf4\xd3\x69\x1f\x40\x3c\x15\xa3\x9e\xd0\x31\x6b\xdb\x41\xd1\x89\xfb\x7e\x25\x82\x7a\x7d\xe8\x39\xeb\x3c\x9b\xdd\x22\x86\x6f\xa8\x18\xa8\x58\x35\x3e\x5a\x55\xc3\x77\x37\xc9\x91\x4a\x3d\x83\xaa\xa2\xba\xdd\x32\x46\xba\x41\x8e\xc9\x23\x19\x89\xa0\x46\xb8\x8b\x4e\x06\x92\xe3\xff\xe5\xf9\x3a\x7a\x04\x3a\xfd\x29\x74\x17\x8e\xa3\xd7\x87\x06\xfd\x47\xa6\xff\xa8\x1e\x1b\x22\x4f\x8e\xaf\x28\x42\x1b\x15\xab\xf6\x47\xb5\x6a\xfb\xc3\x32\x23\x95\x7a\x76\xbf\x6a\xc6\x38\xa7\x2f\x28\xc9\x90\xaa\xe5\x66\x8a\xab\x79\x8c\xef\x63\x29\x5e\xe8\x29\xf4\x94\xbd\xd0\x96\xb5\x74\xc3\xbf\x5a\xc6\x90\x3c\x15\xd8\x9e\xfc\x58\xf4\xa7\x6e\x02\x69\x7e\xd5\x4f\xc5\x9a\x15\x54\x75\x32\x1b\xe9\x76\x73\x64\xaa\xd4\x12\x13\x41\xcd\x08\xaa\xc8\xfe\x5f\x11\x94\x42\x8b\x1a\xce\xfd\x29\xec\xa2\xb8\x8a\x13\xd8\x90\x73\xc7\x42\xe6\x16\xd7\x4a\xd2\xfc\xf6\x1f\x17\xb4\xdf\x8a\x03\xd0\x69\x51\xac\x4f\x96\x53\x2b\x49\x5b\xa5\x75\x7b\xc0\x61\x44\x5e\x7d\x21\xd7\x77\xba\x13\xd7\x04\xb0\xa5\xd9\x88\xc4\xf5\x1a\x44\x0a\xf1\x4a\x88\x14\xe2\x0a\x09\xad\x11\x57\x39\x7e\x5c\x1c\xe0\xb3\x06\x22\x71\xc5\xc4\x77\x78\x73\x51\xfa\xcb\x09\xff\x1f\xee\x84\x37\x90\xa8\x8b\x8e\xb8\x03\x98\x2b\x9a\x26\x32\xa2\x19\x45\xc0\x7d\xd5\x25\x6a\xbe\xe8\xa2\xca\x5d\xd4\x15\x50\x0d\xdc\xcb\x7a\xd4\x5f\x93\xcb\xe1\xa8\xc7\x1a\x87\x1e\x6b\x3c\x9d\x06\x4d\x06\x3f\xc3\x05\x4d\x17\x73\x84\xb6\xff\x2d\x3a\xe6\x06\xa8\x89\x54\xdd\x9a\x38\xe6\xc3\xc4\xa2\xf2\x66\x72\x6d\x3a\x8e\x79\x0f\xc4\x8d\x19\x05\xa0\xf6\x3f\xdb\x3a\x1c\xd3\xf6\xbd\xfc\x56\xbf\xf6\x7d\xf8\xfb\xf7\x42\xed\xfb\x30\x0f\xfe\xb5\x91\xca\xa1\x55\x3b\x68\x5b\x7c\x78\x02\x93\x7f\x4d\xc4\x8d\x22\xa0\x39\x2e\x6d\x7c\x63\x99\xf7\x13\xc7\x9c\x30\xef\xe9\x96\xed\x98\x0f\xe0\xbb\x28\xd6\x24\xb1\xf7\x7d\x58\xe8\xe7\x81\xf8\x2f\x50\x83\xdf\xed\xdf\x41\x4d\x2c\xe4\x6b\xe0\x3b\x6b\xd9\x45\xdb\xff\xfe\x6e\xff\x2e\x0e\x74\x6b\x30\x22\x13\x32\x1a\xe9\x0f\x36\x01\x35\x9a\x17\x6d\xfb\xf0\x34\xb1\x6a\xe4\x7e\xf2\x2f\x40\x4b\x32\x0b\x40\x0d\x4c\x06\x23\xd3\x26\xb6\xb3\x65\xeb\x43\x12\x7c\x0c\x4c\xcb\x20\xd6\xe4\x46\xb5\x9c\xdb\xa0\x30\xf8\xe2\xa5\xbc\xc7\x9a\xa4\x3a\x1e\x7c\x86\xab\x01\x31\x1c\x62\x71\x74\x81\x49\x56\x9f\xdf\xed\x3c\xad\x4d\x91\xea\x55\xf6\xb0\x9a\x59\x1b\xd4\xc4\x9a\xf4\xdd\x9e\xfc\x0f\xd8\xd6\xa1\x96\xe2\x1b\x2f\x49\x13\xa9\x08\x93\x36\x4e\x69\x0a\x95\x99\x7c\xe8\x85\x9f\x37\x4a\x45\xd8\x38\x3e\x6e\x9d\x5d\x34\x68\xf5\x21\x7a\xa1\x73\x91\x28\x5d\xd9\xbe\x62\x20\x0a\xc5\x7f\x09\x00\x3a\xe6\x43\x66\x3e\x9f\x4a\xb2\x68\x97\x95\x31\x64\x24\x8b\x4a\x45\x56\xc6\xe7\x9e\x5d\x38\x85\xcd\x34\x47\x4d\x9e\xd4\x0c\x32\xce\x52\xb5\xa4\xe5\xc8\xcb\x18\x99\x5d\x38\xe6\x83\xed\x9f\xb6\x0c\x75\xaa\xa9\xe9\xa6\x81\x9c\x29\x6c\xa4\xf9\x79\xe2\x58\xd8\x82\xc6\xac\x0e\x13\xe8\x9d\xd5\xa1\x4d\xad\x41\xff\x34\x97\xe3\x0c\x59\x89\xb3\x5d\x78\x83\xc4\xa4\xa4\x49\xca\x3a\xef\x34\x8f\xf9\x90\xa0\x81\x7c\xb7\x16\x94\xa9\x8c\xb2\xc8\x8d\xfe\xe4\x29\x79\xc2\x88\xa1\x6f\xcb\xf7\x87\x09\x08\x21\xa3\x76\x2b\x5a\xd0\x81\x9b\x9b\x32\x90\x84\x58\x49\x2e\xe7\x35\xa0\x5f\x56\xaf\xd8\xaf\xdd\x8a\x3d\xc1\x31\x37\xf8\x3a\x09\x7d\x2a\x8c\x07\xaa\x23\x3e\x8b\x96\xe7\xd7\xdb\x01\x94\x0d\x7a\xc0\x2c\x86\xbf\x44\x6f\x07\x22\x86\xc2\x96\xcb\xa4\xea\x16\xcd\x92\x6b\x8f\xa2\x05\x24\xe6\x88\x4f\xf5\xcf\x41\x04\xfd\xd3\xc6\xcf\xe2\x63\xd0\x5d\x89\x75\x07\x24\x2e\x9d\xd2\x5a\x80\x2f\xaa\x3c\xcd\x90\x54\x8d\x8f\xd8\x3f\x08\x0d\x34\x53\x15\xe1\x9e\x41\x2d\xac\x0e\xf7\x0e\xaa\x00\xea\x48\x2d\x8c\x54\xdb\x61\xfa\xc8\xe9\x8d\x28\x6c\x08\xcc\xe8\x22\xee\x86\x1c\x10\xa6\x59\x53\x0b\xf6\xf8\x9a\x2a\x19\x86\x26\x16\xa1\x0e\x24\x95\x5a\x64\x66\x2d\x4e\xc0\xd1\x5a\x7a\xbe\x04\x80\x64\x20\x84\x48\x2d\x63\xe7\xb0\x12\x7f\x84\x5b\xa5\x64\x15\xbe\x13\x24\x6a\x41\x57\x3d\x3d\xf0\x85\x91\x95\x34\x80\x94\x61\x4a\xa3\x29\x98\xfa\x73\x1e\x23\xab\x70\xaf\x3e\x88\x69\xab\x13\xfb\xe7\x5d\xec\x30\xc1\x7c\xf0\xa8\xc3\x03\x45\x38\xa8\x22\x42\xc8\xa9\x15\x25\xab\x66\x51\x73\x01\x5f\xdb\xe6\x68\xec\x90\xcf\x54\x72\x8b\x0e\xd8\x76\xd8\x30\xa6\x53\x00\x5d\x34\xa6\xb6\x38\x6d\x05\xbb\xa8\x58\xed\x7e\x1c\xfb\x38\xee\xe6\xf3\x80\x0a\x63\x6e\xf2\xbb\x7c\x00\x1a\x1a\xf7\xba\xbc\x7e\xd5\x2b\x44\x08\x69\xe1\x6a\x29\xa8\x5b\xf5\x72\xc7\x3d\xc5\xab\x09\x94\x7c\xbe\xea\xd7\x18\x22\x65\xab\x9b\x2f\xc1\x26\x12\x83\x1a\x5b\x2e\xd8\x1e\x56\xbb\x1f\x15\xd6\xab\x1b\x76\x82\xdc\x7c\x93\x9f\xda\xb9\x48\xf3\xb5\x81\xf1\x14\xc0\xdb\x19\x3b\x49\x2c\x42\x83\x6f\x39\x4c\xcd\x36\x20\xe2\x5e\xb1\x4f\xc5\xfa\x88\x13\x08\xff\x54\x91\x3c\x99\xf8\xce\x8c\xc9\x64\x1c\x2d\xb3\x91\x5a\x0b\xfc\x1c\x0f\xa2\x53\xb3\xb6\x0a\xbb\xbf\x33\xb7\xd9\x59\x4b\xb2\x20\x01\x92\x5c\x6b\xb1\xca\xf4\xef\xa3\xe0\xaf\x07\xd1\xab\x04\x09\xa3\xc2\x5a\x49\x2a\xc2\x01\x77\x72\xde\xeb\x86\x28\x16\xa1\x59\x18\xea\x5c\xec\x03\x5e\x59\xbd\xb6\x45\xbb\xf0\x54\x04\xf9\xe8\x67\xc9\x73\xd3\xf1\xcf\xe7\x78\xe9\x73\x09\x00\x58\xfe\x9d\x78\x66\x26\xfd\xcb\xf3\xd9\xf9\xe6\x20\xa5\xbc\xa6\x78\x23\x62\xa8\xc3\x01\x80\x36\x98\xc2\x83\x59\x8c\x87\xae\xfe\x3d\xd3\xd8\xba\x54\x1d\xb2\x72\x39\x51\xe0\x02\x99\x6f\xdc\x52\x7f\x32\xe1\x3b\x94\xe2\xa3\xb7\xd3\xcf\xe5\xf8\x27\x2b\xdd\xed\x83\x9a\xe2\x85\xba\x48\x4a\xc1\x13\x3d\x50\x46\x2f\x53\x68\xa3\x97\x69\x95\xc2\x4b\x34\x17\xe5\xc2\x53\xe2\x80\xf4\x98\x51\x5c\xd3\x32\xef\x19\x89\x7e\xd1\x9d\xdb\xae\xa1\x33\x77\x23\x6d\x03\xad\x5e\xa5\x0f\x32\x28\x99\xa3\x00\x00\x18\xe9\x62\x97\x77\xf1\xbc\x4a\x17\xbb\xb4\x8b\x77\xd9\x5d\x78\xb8\x05\xd0\xea\xbd\xef\xd7\xec\xc2\x13\x1a\xf6\xe8\x9f\x05\xc7\x3c\x36\x5d\x62\x29\xaa\x4d\x44\xd0\x97\x22\x43\xd8\xa3\x43\xb0\x57\x9b\xe5\x1e\x1d\xc2\x87\x3e\xeb\xa7\x54\xa4\x1d\x3d\xb3\x8e\x4a\xc5\x79\x3d\x95\x4a\xbc\xab\x95\x66\x5b\x2a\xd1\xbe\x4a\xe5\x3e\x00\xdc\xbf\x60\xa2\x97\x27\x29\x58\x55\xbb\xf0\xe4\x1f\x2b\x6f\x97\x25\xbb\xf0\x34\x1b\xf1\xf0\x39\xda\xec\x39\x38\x55\x66\xed\x9e\xe7\x60\x73\x0a\x75\x74\x2f\x5a\xb9\x9c\xd5\x2b\xf7\x27\x13\x21\xa1\x91\x09\xd0\x80\x26\x94\x61\x9c\xa4\x1b\xe2\x8d\x48\xa0\xc5\xb6\x55\xb0\xa9\xf4\xc2\x13\xd4\x0b\xcf\x00\xb0\x26\x3a\x98\xc2\x07\x94\x65\x12\xf9\xdb\x85\xca\x5a\xcf\x19\x63\xa0\xc2\xee\xef\x0e\x94\x69\x62\x41\x15\x85\x3b\xd2\xe1\xdb\xdd\xd6\x29\xe3\x8d\x6c\x3e\x8b\xe7\x0f\x4c\x9b\xe6\x83\xed\x32\xb4\x91\x91\x8f\xd4\xfd\x5d\x85\x26\x92\xb7\x22\xb5\x7e\x57\x7d\x0e\xfd\x54\x94\x6c\xf8\x54\x92\x9c\x2d\x1b\x3e\x17\x25\x13\x3e\x97\x24\x6b\xcb\x9c\x4e\x61\x1b\x65\x1c\x02\xf3\x4e\x19\x10\x7f\x31\xb6\x93\x2c\xc4\x2b\x81\xd8\xc7\xeb\x76\x19\x80\x29\x6c\x25\x30\xe0\x79\xe8\x31\x77\xce\x0b\x9e\x06\x20\xb1\x0f\xc7\xdc\x70\xcc\x07\x41\xf2\x7a\x7d\x10\x8b\xd4\xce\x62\x45\x54\x75\x0c\x6b\x31\xdd\x2f\x52\xcf\xe3\x75\xdb\xe5\xa0\xbe\x57\xc3\x6f\xc0\x9b\x07\xf5\x77\x7e\x4f\xb7\x70\xcc\x87\x8d\x68\x2b\xf6\x37\x1f\x8f\x0f\x85\x0f\x76\x23\x3e\x16\xfa\xe5\x2b\x32\xa9\x11\xe5\xdb\x22\x01\xb1\x2e\x22\x8d\x59\xcb\xac\x0e\x12\x83\xe7\x23\x99\xd5\xc5\x56\xac\x8b\xf4\x10\x63\xe3\x8b\xa0\x39\xbb\x97\x38\xfe\xb3\x40\xa7\x71\x94\x05\x3c\x03\x47\x71\xd0\xe5\xdf\x33\xc7\x9f\x81\x0e\x41\x0a\x42\xae\x12\x53\x87\x04\x4c\xa7\xf0\x28\x73\x8f\xe1\x82\xfd\x30\xd2\x1d\xa6\x71\x31\xf5\x85\xc9\x61\xe6\xd2\x62\xb2\x45\x74\x60\x99\x1d\x53\x51\x81\xa9\x22\xa3\x57\xea\x43\x1b\xc9\xdb\xa5\x62\xd1\x17\x67\xdb\xa2\xea\x7d\x26\x64\x9a\x37\x00\xd5\x51\x0d\x51\xb7\xdb\x6a\x5b\xb4\x41\xad\x24\xd9\xde\xee\xf4\xc8\x6a\x0a\x2f\x13\x82\x2e\x0c\x50\xeb\xbd\x3c\x49\x45\xf8\x2c\x15\xa7\xd0\xfb\xcb\xdf\x36\x2c\xc3\xdf\x4b\x7e\x85\xf0\x3b\xa8\xd6\x2f\x58\x64\x38\x1e\x44\x63\x36\xa8\x1d\xc1\x3d\xa4\x89\xad\x49\xb6\x8c\xc2\x13\x74\xb6\x8c\xc2\xb3\x3f\x07\xd1\xaa\xc9\x1f\x31\x73\xff\xde\x8f\xef\xeb\x5e\x55\x49\xfe\x94\xca\x03\xb5\x17\x2f\x47\x61\xfc\x50\x32\x60\xaa\xd5\x54\xc2\x53\xf8\x92\xcc\xb6\x6a\xa5\xed\xa2\xb4\x55\xda\x2e\xc2\x04\x04\xaa\xf0\x81\x42\x2c\x73\x0a\xef\x53\xd8\x0a\x27\xe4\x14\x9e\xa0\x8a\x9c\xc2\x33\xb4\x51\x11\xea\xa8\x58\x4d\xf0\x91\xa8\xc1\x2d\x48\x04\x21\xe4\xab\x02\x35\x1b\xe9\xa1\xde\x13\xb0\x4f\x39\xa2\xd6\xc8\x5b\x86\x2f\x44\x82\x3c\x35\xfa\xf7\x96\x11\x88\x5e\x0f\xb6\xa7\x5d\x50\x81\xb7\x34\x70\xaa\x88\xa5\xeb\xce\xea\x28\x7a\xe4\x28\xc4\x5d\x08\x82\xa4\xdf\x88\xd1\x39\x82\xd8\x1c\x13\xab\x2f\x43\x15\xc0\x74\x5e\xd8\x55\xaa\xd0\x1f\x71\x56\xc3\xb0\x2c\x32\xd6\x2a\xd3\x8a\x83\x41\x79\xc8\xe1\x8b\x37\x58\x61\xce\xdb\xcb\xa3\x72\x84\x2e\x45\x03\xca\x50\x85\x9b\x45\x50\xd5\xd1\xe0\x77\xd1\x4e\xd2\xfd\xa8\xf0\xb4\x25\x43\x71\x54\x78\xde\x52\xc1\xf6\x00\x80\x69\x04\xa5\x31\x37\xcc\x4c\x92\x51\x9f\x7e\x22\xc9\x2c\x06\x1e\x92\x4c\xb4\xee\x52\x24\x93\x54\x63\xe6\xd0\x8c\xfa\xf4\x1f\x46\x33\xe3\x15\x26\xbd\xbd\x3c\x2e\x3b\x21\xcd\x94\x28\xcd\x8c\x33\x68\xa6\xc3\x69\xa6\xc3\x69\x66\x1c\xd0\x8c\x2f\x83\x6c\x64\x15\x9e\x26\x13\xca\x84\x42\xdd\xb7\xf0\x5c\xb3\x0a\xcf\x92\x3d\xf5\xd5\x2b\xc9\x86\xcf\x92\x3e\x9d\xc2\x47\xb4\xcc\x11\x40\xda\xb4\x16\x04\xe8\xd0\x7f\x2c\xfa\x8f\x41\xff\x91\x51\x11\xaa\x68\xfb\xdf\x69\x8f\xe0\xe4\xfb\x30\x2f\xd6\xa4\xd0\xbf\x57\x03\xcc\xbd\x97\x4f\xbb\x03\x33\xaa\x72\xb7\xab\x8d\xb6\xff\x4d\xcb\x22\x25\x1c\x46\x22\x93\xd7\x36\x11\xee\xc9\xbe\xad\xa6\x82\xaa\x99\xcb\xc9\xf9\x3c\xd3\xdf\xf5\x68\xd1\xf6\xbf\x33\x1d\xaa\xaf\xf6\x8e\x4e\xbc\x43\x9b\xc9\xc0\x7c\x24\x16\x1b\x0b\xa8\xea\xb9\x9c\x48\x90\xce\xac\x43\x41\x80\x82\x57\x87\x9a\x8c\xa2\x85\x74\xae\xd4\x0b\xa0\x66\xa1\x84\x94\x10\x18\x14\x66\x5a\xe6\x72\xa2\x85\x52\x5b\x06\x40\x39\x9f\xe7\x66\xc9\x20\x3a\x2d\x1b\x54\x07\xe1\x8c\x47\x09\x64\x8c\xc2\xa2\x71\xa2\xd5\x38\x2c\xea\xa0\xd1\x64\x62\x56\x3b\xb9\x5c\xa7\xc7\x0c\x27\x03\xd1\x3f\xf2\x22\x5b\x87\xff\xd9\xe6\x5e\x00\x9a\x05\x6a\xc2\xc3\x93\x20\x09\x02\x80\x9d\x5e\x99\x55\xcd\x23\x61\x43\xc8\xd3\xaf\x54\xfd\x72\xa4\xbe\x67\x52\xb9\x68\x3c\x99\x0c\x7c\xe5\xc5\xcd\xe5\x44\x07\xb9\x54\xed\x71\x19\xce\x44\x27\x8f\x68\x0b\x00\xe0\xa6\x31\x99\x90\xc9\xc4\x99\x4c\x2c\x9a\x8f\x0c\x46\x7a\x00\x1a\x6c\x7c\x82\xea\x6c\x08\x79\x03\xc0\x5e\x8f\x40\x0b\x3a\xd0\xe8\x17\x6e\xf4\x91\x43\xac\x8c\xc0\xd1\xcd\x4d\x3c\x05\x85\x3f\x4c\xdd\x60\x2a\x58\xe0\xe2\xc3\x9e\xc7\x4d\xa6\xc6\xc1\x73\x96\xb1\x81\x53\xde\xa6\x48\x01\x45\xa4\x0b\xa6\x20\x5e\x87\x39\x11\xf4\x1b\x71\x93\x04\x47\x56\x3d\xa7\xef\xeb\x08\x84\x22\x91\xab\x09\x37\x56\x44\x85\x26\xbd\x4a\x3f\x2f\x6c\x14\xff\x25\xf8\xba\x67\xb2\x88\xf9\xc9\x3c\x09\x1c\x9c\x26\xf8\x95\x84\x7f\x51\xd2\x21\xbd\x9d\x7e\xcd\xab\x2e\xe4\x49\xaf\xdc\x97\x82\x2f\xaa\x3c\x86\x6a\xa7\x48\x0b\x41\x5e\xf8\x97\x30\x65\x61\x80\x3f\xe3\x02\xd2\x76\xf2\xa0\x44\x1c\x12\x6d\xa2\x59\xea\x70\x42\xff\xa7\xc3\x06\xdb\x7a\x95\x44\xbc\x52\x19\xcc\xc7\x47\xb4\xc5\xa2\xaa\x02\x95\x3a\x36\x95\x52\x1f\x84\xf8\x2d\x27\xfc\x02\x1e\xb6\x87\x44\x0b\x30\xea\x69\xc6\xbf\x3b\xdb\xa5\xbd\x22\x47\x29\x1d\x56\xb2\x7c\xbb\x5c\x2c\xfe\xee\x78\x36\x5c\xa4\xd8\xcb\x62\x78\xf7\xf3\x02\x13\xe2\x77\x27\x38\x9c\xe3\xbe\xc4\xb5\x9f\xe2\x0e\x46\xa6\x41\xbe\xe8\xc6\xd0\x74\x11\x29\xd4\xcd\xc1\xf8\x9e\x18\x8e\x42\x73\xad\x5f\xc7\xac\xff\x65\xc7\xac\xff\x0b\xef\x3a\xc9\xfc\xae\x13\xbb\xf2\xf4\x0e\x40\x1b\x8d\x45\x47\xdc\xdd\x05\xfe\x59\x32\xd4\xf9\x55\xa6\x01\x2b\x28\xed\x02\x7e\xab\x69\xf7\x5d\xe4\x94\x79\xbc\xf4\x29\x33\x97\x6f\xa9\x7d\x32\xf3\x66\x14\x8f\x1f\xf9\x5b\xef\x47\x59\xe4\x86\x58\xc4\x18\x90\xc6\x88\xdc\xb3\x98\x0a\xef\x28\x6d\x60\x99\xa3\x11\x19\x7a\xd9\x36\x8b\x09\xe2\xa7\x6e\x0f\xcf\x2c\x14\xdf\x46\x06\xcf\xd1\x59\xd0\x11\x0b\x46\x0f\xf2\x46\xa6\xa6\x85\x87\x6f\xe1\xb5\xab\x48\x34\x15\xb1\x90\xec\x7f\xf3\xe8\xd5\x63\x53\x1d\x12\x0b\xc5\xcf\x68\x28\x52\x5c\xc6\x70\xbc\x11\x3f\xd8\x64\x3c\x34\xbd\x80\xb9\xba\xea\xa8\xe8\x65\x60\x8e\xa9\x6e\x67\x4b\x2f\x53\xf8\xe7\xd8\x74\x48\x9d\x3c\x38\xb7\x52\x71\xea\x9d\x43\x7a\xe8\xf7\xa7\xc8\xe7\x41\xd7\x82\x5d\x5b\x22\x05\xd3\x35\x88\xe5\x2f\x52\xb2\x7a\x70\x3f\xcc\x08\xef\x87\xf1\x29\xe3\xd1\x88\xcf\x7a\x71\xfc\x68\x0a\x51\xb9\x1c\x8e\x78\x68\xd8\xb5\xaa\x33\xcb\xbc\xd7\x6d\x52\x50\x47\x23\x6a\x86\xe8\x5c\x36\x25\xee\x0b\x00\xd1\x49\xde\x00\x00\x33\xf4\x04\x3f\xe2\x1f\x7b\xc7\x97\x2c\xa8\x3f\x8a\xe9\xe8\x80\x44\x1c\x44\xcc\x17\x9c\x5b\x62\x64\xea\x1d\xb9\x9c\xc0\x8f\xdd\xc2\x8b\x4c\xb8\x60\x5b\x83\xda\x6f\x63\x6b\x24\x0a\xbf\xe5\xd9\x57\xfe\x37\x01\xfc\x26\x09\x86\x69\x10\x61\x0a\x0a\x9c\x27\x46\xc1\x15\xa7\x40\xf2\x27\x4b\x47\x34\x7a\x24\xa2\x20\xe4\xb1\x77\xb6\x9a\xf7\x07\x9c\x17\x44\x9a\xcb\xee\x25\x70\x05\x0a\x0a\x20\x2f\x00\x01\x4c\x41\xc6\x28\xfd\x63\xbe\x4f\x25\xc6\xb2\x13\x91\x7c\x4c\x7f\x4b\xe1\x0e\xe1\x10\xf2\x14\xc0\xd8\x26\x3b\xb8\x3c\x39\x66\x95\x3c\x42\xf0\x82\x10\xe7\xe2\xd0\xb6\x06\xc9\x91\xf1\x0d\x4c\x72\xb9\x05\xc0\xfd\x5b\x26\x94\x26\x43\xd2\x08\xf3\x78\xac\xba\xc9\x36\xa0\x72\x71\xc1\xf7\x60\x10\x0e\xef\xcb\x66\x46\xd1\x9b\x25\x00\xaa\x4e\xc1\x22\x0f\x23\x75\x40\x94\x5b\x7d\x34\x14\x2d\x88\xc1\x74\xd6\x72\x84\xc1\xb6\x7c\x3a\x4d\xd3\x70\x16\x51\xb5\x47\x14\x51\xaa\xe5\x02\x9d\xea\x96\xfe\xb0\x2e\x6e\x09\x71\xec\xa4\x96\x1a\x09\x0c\xbe\xb5\xc8\x4d\xed\x86\x30\xf5\x89\x7d\xcc\x21\x3f\x76\x6b\x50\xa4\x4a\xef\xac\x2a\x5d\x16\x0b\xcf\xc0\x64\x4e\xd5\x73\x3a\xf6\xa7\x40\x72\x45\x42\x31\x92\x45\x48\x41\x7f\x69\xcf\x62\x22\x96\x8f\x2a\xf2\x04\x4c\x61\xaf\x3f\x6f\x54\x31\x14\xcd\x52\xea\x39\x0e\x70\x81\xda\xc7\xaa\x63\xb3\x03\xe0\x34\x31\xc5\xee\xa3\x8d\xcc\xeb\xb9\xd8\xa0\x8c\xd4\xeb\x3b\x61\x22\x70\x11\xce\x8e\x24\xf5\x11\x39\x27\x94\x92\xab\x56\x81\x4a\x27\xcb\xb4\x90\x03\xe9\xdf\x23\x53\x1d\x26\xaf\xab\x61\x64\xd1\x0d\x30\x1e\x39\x55\x76\x87\x0b\xd2\x4f\x75\x88\x6d\xca\x88\xbb\xe7\xc7\x2c\xaa\x3b\x35\xa4\x28\xd6\x6e\x4c\xc3\x69\xaa\x03\x52\xb0\x89\x13\x08\x79\xc1\xb6\x06\x02\xf4\xb9\x08\x61\x1c\x04\x40\xe1\xff\xa6\x95\xb7\x6e\xd4\x01\xd9\x78\xa1\x9c\x20\x68\x3b\xb0\xed\x4b\xf2\xe4\x50\xe3\x82\x76\x97\xee\x31\x98\x23\x2e\x0c\x2c\xa2\x3a\xfe\x36\x13\x05\x46\x96\x02\xa8\xf2\x3b\xa8\x9e\x18\x41\x8e\xc7\x06\xbe\x1b\x02\x55\x73\x13\x22\xa0\xa0\x3e\x3c\x10\x63\xe8\x6d\xa4\xe8\xe5\xa5\x18\x70\x26\xde\x97\x94\x05\xa1\x18\xcd\x60\x0c\x8a\x6a\x3c\xaa\xb6\x2f\x7f\x02\x5e\x10\x17\x53\x89\x79\xe9\xf7\x9a\x00\x98\x9e\xeb\xab\x43\x94\x7e\x10\x2e\x38\xa6\xbf\x36\x00\x3a\xa1\x86\x5a\x9c\x4e\xa9\x0a\x9e\xe2\x49\x4d\x4b\xbd\x27\xb1\xae\x19\x12\xa3\xbc\x05\x1a\xa8\xcd\xee\x80\xda\xc4\xc1\x8e\x63\xe9\xd7\x63\x87\x88\xc2\x50\x75\xd4\xad\x5b\xe7\x7e\x54\x1e\xb0\xf1\x6f\xe9\x54\x28\x1b\xea\x68\x4b\xbf\xa1\x40\xb7\xee\xc8\xb3\x00\x0d\x6e\xa2\xb1\x8b\x4b\xb2\x27\xe2\xf8\xa5\x24\x11\xc3\x22\x2c\xb2\xb3\x7e\xcf\x4d\xa6\x23\xd5\xbf\x09\xeb\x4f\x2a\x83\x03\x0f\xd4\xc1\x2d\xe9\x19\x7d\x74\x24\xe2\x98\xbe\x31\x7b\x67\x90\x40\x07\x11\x31\x7c\x51\xed\x67\x63\x20\x85\x97\x89\xd9\x37\x54\x47\x23\xd3\xbd\x54\x75\xc3\x89\x16\x05\x99\x30\x21\x5f\x24\xe1\xff\xba\x61\xff\x09\x90\x4f\x9f\x79\xf7\x21\xbb\x9e\x76\xa9\xdf\x13\x73\x1c\x85\x13\xcd\x86\x54\x59\xd2\x0d\x2d\x52\xec\xe5\xc0\x07\xcb\x7c\x7a\x8e\xe4\xb3\x6f\x68\x91\x7b\xf3\x91\x5d\x19\x60\x71\xbb\x91\xf2\x44\x09\xb4\x07\xea\x88\x44\xca\xd9\x37\xbc\x31\x2d\xa2\x6b\x06\xd7\xb7\xcf\x19\x22\xe2\xdd\x67\x57\x80\x63\x9b\x28\xa7\xe7\x17\x91\x8a\x5e\x0e\xe4\x51\xf0\x2c\xce\x6c\xe0\x6b\x6e\x90\x5f\x82\xb6\xa1\x77\xa9\x59\x87\xde\x51\x8f\xa7\xce\x7d\x61\xc5\x49\xaa\xf6\x1a\x7f\xd6\x89\x5b\xd0\x0d\x83\x58\xac\x9a\xd7\xe4\x80\x43\x5a\xd8\x86\xd7\x83\x5c\x87\xfd\x3a\xb7\xfe\x83\xaa\x91\xaf\xa7\x37\x37\x36\xf1\xeb\x5f\x2d\xac\x7f\xc5\xeb\x4f\x21\xf1\xf4\x5c\x1e\x87\x2f\x1a\x19\x8c\x88\xcc\xe7\xc6\x4e\x78\xb4\x33\x9c\xbb\xb1\xe5\x0c\x86\xec\xef\x09\x26\x82\xe4\x80\x7b\x1b\x50\x66\x5b\x9f\xc4\xb6\xbe\x15\x51\x25\x72\xb9\xe8\x57\x5c\x4f\xc8\xd6\x31\x66\x23\x44\x23\x8e\x62\xde\x3f\x8c\x1d\x32\x64\xd5\x45\x0c\x82\xbb\xe3\x00\x5a\x99\x4c\x86\x55\x8c\x28\x3e\x36\xd5\x12\x82\x3f\x28\x77\x3f\x1f\xd3\x8e\x5f\xb8\x5b\xb1\xd7\xe7\xbe\xb2\xc2\x80\x4b\xd0\x78\x2d\xc8\xae\xbe\x26\x05\xb5\x03\x5e\xa2\xbc\x30\x97\x73\x7c\xa1\x51\xc3\xf9\xe0\x6f\x09\x7b\x0c\xd1\x8a\xb0\x06\x6f\x4d\x47\xa6\x26\x0a\x5d\x83\x99\xce\x8e\xb9\xa1\x0e\x06\xc4\xb6\x37\xbc\x86\x1b\x0f\x9e\xe8\x12\xa0\x53\x30\xd4\x7b\x02\x20\x9e\x4e\x21\xd5\x31\xc7\x49\x76\xe9\xf3\xae\x71\x4c\xe2\x8c\xe0\x78\x1a\xaa\x12\xd1\xfa\xa1\x70\xf1\x73\x67\xcb\x14\x5c\x30\xcc\x21\xa1\x16\x20\x42\x88\x2d\xe6\x65\xe3\xeb\xe5\x8f\xf6\x69\xbd\x51\x4b\x10\x54\xf0\x4c\x03\x6f\xc3\x82\x3f\xbc\x0b\x58\x69\x29\xc6\xaf\x51\xcd\x59\x77\x68\xa1\xd8\xb2\x3a\x05\xba\xb0\x1e\x88\x9a\x93\x45\x16\x9c\x21\x1a\xab\xb6\x83\x82\x74\x4d\x28\x47\xf2\x02\xf5\xa0\xfc\x0a\x08\xea\x8d\x43\x2c\x3f\xd2\x2f\xdb\xf0\x45\x08\xe7\x72\x64\x26\x64\xff\x0a\x1f\x5b\x94\xe1\x79\xca\x6c\x06\x30\xa3\xad\x6c\x0e\x9f\x83\xf6\xb7\x22\x01\x41\xc0\x1d\x93\x7f\x23\x2e\xff\x14\x6e\xbe\x9e\x13\x9b\x38\x40\xb4\x66\x98\xb9\xec\x85\x16\xda\xc6\x33\x99\xce\xa2\x15\xa8\xf0\x34\x66\x36\xd4\x11\x2e\xdc\xe8\x96\xed\xb0\x2d\x5e\xd5\xab\x3a\xd2\x99\x93\xeb\x42\xbf\x1e\xe9\x86\x06\xf4\x14\x19\x35\x8e\x1b\x27\x8d\x36\xa7\xa4\x5c\x4e\x14\x2e\x94\xf3\xd6\xd9\x25\x35\x27\x79\xdd\xb6\x7a\x4f\x26\x13\xbd\x70\xab\xda\x73\x55\x00\xcd\x60\x2b\x37\x99\x08\x81\x0b\x22\x7c\x04\x23\x76\x8f\x9b\xd5\xf4\xdd\x0d\x9e\xad\x95\x5d\x28\xea\x00\x4c\x26\x29\x35\x4a\x60\x0f\x02\x24\x87\x48\x62\xca\x5b\xc2\xf4\xd7\x81\x7f\xaa\x31\x17\xb3\xf2\x2c\xcc\x52\x75\x8e\xaf\xa3\xf9\xe0\xad\xa2\x0d\x44\x75\xe6\x42\xcc\x26\xdc\x79\xa4\xe7\xdf\xe6\x35\x3c\xac\x24\xbc\x0f\xa2\xc2\xbc\xbb\x06\xb4\xe1\x10\x00\x28\xcf\xad\x25\xc3\x01\x6c\x02\x00\x37\xad\xc9\x64\x33\x81\xc2\xc9\x64\xbe\x3a\x38\x99\x64\x09\x07\x0b\x12\x00\x33\x7b\x24\x00\x16\x99\xff\x81\x0b\xd6\x4b\xf3\x21\x97\x8b\x66\x1c\x93\x1b\xc7\x5b\xc7\xa4\xbb\x89\x3b\x5c\x7b\x04\x46\xeb\xc2\x08\xa4\x3e\x80\x38\x58\x65\xcf\xcd\xae\xe0\xf6\x67\x7c\x21\x48\xa9\x69\x69\xdc\x83\x1a\x39\x14\xa6\x5c\x12\x9f\x37\xb0\x17\x63\x73\xd1\x38\x6e\x28\x97\x82\x44\xb8\x87\x17\x61\x9e\x4e\x53\x57\xf9\x62\x57\xe6\x42\x6b\x50\xc4\x81\x38\xaa\xc5\x8c\xe0\x40\x94\x49\xbd\x3e\x98\x7d\x48\x44\x6d\x5b\xbe\xf9\x94\x8b\x0b\xda\xa0\xd0\x3c\x6d\x5f\xfe\x68\x62\xa5\xf1\xe3\xbc\x7b\xdc\x48\x9e\xf3\xe0\xa8\x87\x76\x8e\xaf\xc8\xbf\xee\xae\x85\xb6\x16\x0f\xfa\x63\x06\x17\x00\xfe\x0d\xbf\x62\xd5\xf8\xe8\x44\xe3\xb8\xf5\x1b\x31\x78\x30\xa2\x67\xf4\xc3\xc7\x22\x7a\x46\xbe\xd4\xcf\xe5\x04\x6e\xa6\x7a\xe5\xf9\x92\x5f\xc3\x57\x66\x48\x52\x8b\x51\x99\x0e\x43\x2d\x73\x0e\xd0\x73\x36\x41\x52\xb8\x36\x87\xcf\xb9\x1c\x4f\x63\x7b\x55\xf6\x2d\x85\x17\xdb\x1a\x48\xbc\x31\xe4\xfd\x4a\x5e\xa7\x1e\x94\xa9\x1f\xbc\xad\xfa\xce\xba\x17\xcf\x8c\x96\xac\xd9\x48\xdf\xfe\xb7\x6b\xde\xdc\xf8\x4f\x58\xf8\x96\x37\xd5\x5a\x7c\x3b\x53\xf2\xf0\x37\x9d\xce\x5f\x3b\xaf\x33\x0f\x81\x53\x90\xbe\x00\xc8\x57\x2a\x90\xc8\xfa\xfd\x03\x47\x0c\x7b\x0f\xc9\xc3\x15\xdd\x6f\xbe\xa8\x15\xa9\x26\x61\xcd\xd4\x09\xaf\x29\xd1\x52\x0b\x8c\x21\x94\x30\x3c\x19\x33\x6b\x07\x26\xaf\xa7\x88\xc6\xf4\x10\x0c\x9d\xc2\x2d\x51\x87\xfc\x25\x22\x75\x98\xb0\x75\xa1\xe3\x2d\x90\x93\x5e\x20\x03\x40\x83\x2b\x63\x35\x57\xf4\xfe\x82\x0e\x25\xf5\x29\xd4\x12\x08\xa0\xca\x18\x3f\x43\xf3\x82\xca\x90\x1f\xcb\xe5\x47\x95\x21\x3f\xa4\xab\x1a\xb9\x53\xaf\xf0\x9b\xa4\xa2\x50\x1e\x32\x84\x90\x54\x66\xd5\x61\x37\x38\x1d\x46\xf1\x94\xcb\x8a\x4c\x05\x08\x3f\x8b\xb0\x08\x53\x31\x99\xcc\xd2\x94\xac\xc8\x23\x48\xdc\xf8\x9c\x86\x06\xf2\x74\x0a\x95\xcc\x48\x2c\x6a\xc2\x33\x7d\x92\x63\x30\x97\xe3\xae\xce\x4d\x84\xa2\x79\x5b\xf7\xe6\x5f\x5b\xea\xc8\xd9\xf2\xb2\x92\xe5\x61\x9b\xa1\x6e\x3f\x8c\xd4\xe7\x70\xeb\xcc\xb5\xf3\x23\xd2\x95\x0b\x18\xc2\x4b\x04\x5f\x18\xa5\x18\xb4\xc3\xf5\xf1\x50\xf3\xb0\x66\x5e\xde\x1d\x20\xab\x67\x07\xe7\xc5\x83\xe8\xeb\x11\xa3\xc2\xd9\x45\xa3\x5b\x3f\xfd\xa1\x9c\xb6\x2f\xa9\x66\xd0\xba\x6c\x9c\xf0\x77\x1f\x5a\x27\x78\xbf\x21\xf1\x73\xfe\x05\xa3\xe7\xc6\xcc\x98\xd9\x27\x73\xf8\x96\xc0\x3c\x41\xf9\x01\x67\xc3\xcc\xe5\xdb\x2b\x86\x4c\x63\x1c\xbf\x2d\x8c\x84\x92\x00\xe5\x18\x69\x8e\x63\x0f\x55\xcc\x19\x3b\x15\x04\x52\xbc\x6d\xf6\x14\x02\xf5\xd9\x1b\x14\x08\xcf\xa3\xe4\x02\x3b\x69\xa1\x92\x08\x35\xd8\x81\xf7\x0d\x73\xc7\x7a\x79\x79\x64\x20\x84\x86\x35\x5a\xd0\x90\x78\x31\xcf\x21\x05\xdd\xb0\x89\xe5\xc8\x4c\xbf\x15\x65\x48\x22\x6a\x1a\x90\x48\x82\x1d\x42\x79\x3a\x85\x43\x14\xe8\xc3\xb0\x89\x7c\xcd\x16\x36\x90\xf0\xe3\xc7\x8f\x08\x71\xfc\xf8\xf1\x23\x46\x1f\x3f\xfc\x46\x37\x0b\x6b\x7a\x20\x6f\x63\x27\xe2\xec\x9a\x51\x41\xc8\x37\xf2\xc3\xfc\x6f\x2f\xdf\x8d\x8d\x8d\x8d\x0d\x8f\x9a\xa5\x0d\x41\xd8\xd8\xd4\xef\x1f\x4c\xcb\x51\x0d\xa7\xca\x0b\x3d\xb2\x96\x36\x28\xa5\xc7\x8b\xa7\xbc\x06\xfb\xaf\xf0\x5b\xfe\x26\xdf\x7c\x3b\xc8\xdf\x52\x17\x2a\x96\x74\x9c\xf9\xdc\xd1\xf1\x7c\x07\x97\x27\xc7\x88\xea\x1d\x31\xb5\x31\x11\xc2\xee\x9b\x5f\x96\x88\xe1\x0e\xb5\x94\x08\x25\x4b\x03\x91\x5e\xa9\x0f\x65\x44\x7a\xe5\x7e\xd5\x89\x68\x2e\xc8\x80\x4e\xa8\xbb\x20\x39\x16\x5e\x1e\x8f\x2e\x1f\x10\x7d\x24\xd6\x55\x87\x14\x0c\xd3\x15\x41\xbe\x44\xde\xf3\xe3\x7d\x4b\x35\x86\xe6\xbd\x08\x40\xc1\x31\x2f\xf8\xe5\xa7\xd2\x3b\x16\x58\xbe\xfd\x6f\xaa\x77\x4b\x94\x27\x7e\xdf\x16\x0b\x79\x50\x15\xa9\x80\x78\x57\x01\x35\x28\x16\x7e\x67\xf7\x3a\x93\xc1\xc1\x11\xe3\x38\x79\x14\x83\x7d\x2e\xc5\xcf\xf9\x03\x67\x68\xfa\x60\x8c\xf3\x4a\x27\x62\x3b\x33\x07\x55\x8d\xdd\x7b\x38\xa3\x7f\x02\x7e\x26\x02\x49\x86\x2f\x2e\x1e\x63\xd1\x0a\x1f\x4e\xa8\x09\x7c\xf8\x3c\xac\xa4\xdc\xaf\x71\xef\x4f\x41\x75\xcc\x6b\x71\x48\x06\xe6\x90\x74\xcf\x5b\xd4\xc8\x33\x0d\xba\x84\xa4\xb7\xd3\x07\x40\x9a\x55\x12\x39\x6b\x62\xf1\x03\xf3\x9c\x34\x97\x49\x5f\x07\x9c\xe5\xa6\x9c\x31\x21\x07\xcd\x42\x5f\xd5\x29\x98\x0f\xc4\x10\xa9\x48\x75\x2d\xdd\x21\xd4\x1c\xe4\xfe\xd5\x7b\x11\x27\xc1\x85\xde\x9d\x24\xda\xa7\x01\xa2\x9c\x02\x8b\xe3\x12\x01\xb4\xa6\x60\x9a\x31\xcf\x64\xe4\x75\x64\x88\x09\xb6\xcc\x1c\xb4\x42\x0c\xb2\xcf\xd1\xa2\x12\x67\x2b\x78\x2c\x40\x80\xde\x6b\x90\x85\x47\xdd\xd6\xaf\xf5\x11\xe3\xc3\xb7\xfa\x70\x48\x8c\xb0\xcc\x7f\x0b\x09\x09\x37\xfa\x13\x19\x86\x05\x23\xba\x29\x84\xad\x52\xb1\x58\x2c\x3e\x3c\x85\xf9\x8e\xf9\x80\x84\x58\x0e\x7f\xbb\x07\x09\x45\x9a\xc5\x35\x07\x4f\x83\x08\xf7\x01\x80\xfe\x25\x96\xe0\x22\x49\xbc\x90\x6f\x3d\xdd\xd0\x90\x60\x98\x0c\xf6\x02\xcf\x35\x37\x5b\xa1\xe0\x58\x63\x22\xf0\x27\x84\x86\xcf\x35\x11\xa7\x95\x20\x07\xc0\xe4\x06\x72\x40\x6a\x2d\x04\x01\xc4\x03\xbb\xa3\x57\x07\x23\xd4\x42\x59\x49\x48\x31\xf3\x3c\x87\x4c\x15\x21\xbe\x57\x10\xfb\x7f\x38\x05\xd3\xb0\x88\x3a\x7c\xb6\x1d\xd5\x21\x83\x5b\xd5\xd0\x48\xf2\x10\x87\x20\x9b\x38\x2d\x6a\xac\x3e\xaa\xa3\x28\xc9\x79\x3a\x5e\xea\x0d\xd1\x4f\xc5\x5c\x4e\x18\x98\x54\x69\x75\x08\x7f\x44\x8e\xf5\x71\x41\xfb\xc8\xe5\xc4\xc1\x88\xa8\x56\x00\x90\x00\x68\xb1\x57\x4d\xe1\x2e\x55\xa8\xc0\x14\x3e\x22\x31\x1e\x3a\x94\x56\xab\xa0\xec\xdf\x1d\xa5\xb3\xed\x88\x3c\x73\xb3\x44\x75\x17\x1b\xe1\x99\x3e\x5b\x33\xa3\xcc\xf3\xcf\x56\xc3\x3d\x9d\xe6\x3f\x81\xdb\xd5\x48\x2c\x80\x8e\xe4\x60\x01\xe0\x00\xdd\x8b\x46\x7a\x6b\xaa\x69\x7b\xd5\x7f\xfe\xe6\x01\x40\x39\xe0\xf4\x22\x27\x74\xc8\xe8\x1a\xc0\xcd\x6d\x51\x3f\x53\x87\x13\xfd\xec\xd6\x34\xc8\x44\x3f\x33\x87\x60\x5b\xe3\xe6\x87\xa1\x3e\xea\x9a\xea\x98\x56\x61\x6c\x13\x0b\x6b\x94\xbf\x4e\x26\x3e\xa8\x2b\xca\x09\x29\x90\x5c\xce\xcf\xfa\xca\xb2\x58\x0c\xec\x44\xd4\x53\x27\x56\xe1\x76\xda\x62\x49\x5e\xa0\x9b\x6a\x56\x3d\xb6\x1d\xb7\x78\x3a\xbf\x66\xb8\xa3\x55\xef\x16\x99\x00\x3c\x85\x3d\xb9\x0d\x7a\x06\x54\x67\xb8\xcb\xa0\x9a\x38\xc4\x61\x57\x3c\xad\x82\x69\xb0\xfa\xfe\xca\xcd\x6a\x1e\xf5\x52\xc8\x51\x4f\xc9\x64\xb2\x4c\x93\x38\xc5\xac\xdc\x3c\xea\x6e\xcc\xf0\x6a\xd9\xb5\x24\x22\x66\xf2\x76\x5b\xd4\xd3\xc2\x28\xe4\xfc\x53\x20\x39\x59\x8c\x24\x60\xd3\xba\x2f\x51\x74\x4f\xa2\x3c\x8a\x51\x61\xcd\xb4\xf7\xbc\xf0\x91\x72\xb6\x4f\x1f\xb7\x59\x22\x80\x54\x4c\xe0\x66\x0c\x1f\x93\x09\x61\x2e\x9a\x19\x1b\x2e\x97\x73\x32\x8b\xbd\x3d\x37\x99\xc4\x8b\xc2\x9d\x00\x1d\x30\x15\x9d\x84\x70\xb5\xa1\x49\x07\x1f\x3b\x80\xd0\x0b\xea\xd0\x7c\xe0\xba\xb6\x9a\xd2\x39\xd2\x84\x49\xb3\x7c\x39\x38\xa0\xdc\x26\x2b\x88\xbc\x1a\x86\xb0\x88\x24\x8f\x84\x8f\x9b\xf5\x53\x85\x1a\x00\x1b\x02\xc4\xcc\x81\xcf\x0b\xb0\xef\xcc\x2f\xf8\x87\x97\x17\xe3\x6b\x36\x6d\x5e\x1a\xcf\xa5\xf5\x1e\xc6\xd7\x23\x7d\xd0\x1a\xf2\x1a\xbf\xb1\x20\x18\x3f\x2f\xff\x9b\xf0\x1b\x7b\xe5\xf4\xd9\x76\xc8\x7d\xbc\x8e\x9f\xc7\xeb\xd0\x31\xd1\xb5\x21\xf1\x09\xac\x27\x68\xf3\xdc\xdb\x6a\xec\x95\xcc\x58\x94\xe6\xff\xde\x20\xc0\x52\x91\x3d\x9e\x69\x21\x79\xfe\xd3\xe6\x36\x8f\x14\x0c\xa3\xff\xcc\x9f\xf5\x60\x8c\x3e\x2f\x2e\x10\xbc\x98\xf1\xb8\x3d\x3f\xa4\xce\x0b\xd7\xfb\xc1\x55\xe4\x20\xe0\x8e\x3d\xcf\xc7\x03\xdd\x34\xe2\xf0\xd7\xfa\x44\xab\x30\x32\x07\xdc\xe3\xc4\x42\x64\xbc\x80\x3e\x75\x70\x4b\xd0\xcb\x34\x16\xb8\xe7\x45\xea\xfd\x60\x4f\x42\xa1\x62\x46\x08\x1c\xd5\x36\x96\x79\xc1\xd6\x0f\x78\xb8\x55\x6d\x9f\x0e\x5b\x86\x42\xfb\x4c\x46\xfc\x6a\x91\x8c\x70\x64\x3d\xdc\x47\xc3\xc4\xc1\x7e\xec\xf8\x7c\x32\x29\x02\xc8\x00\x6c\x2a\x22\x06\x94\x87\x7b\xeb\x57\xb8\xe8\x9e\x9d\x9d\x9e\x5f\xfe\xb8\xf8\xbc\xff\xa3\x7e\x8e\xbf\xb4\xda\xfb\x7c\xe5\xd8\x5b\x0c\x51\x80\xe1\xb9\xfe\x64\xe2\x32\x28\xdc\xa3\x6d\x5f\xa8\xf7\xc4\x43\x5f\x62\x74\xea\xd0\x7f\xca\x18\x62\x7e\x8f\xe6\x46\xdc\xcc\x6c\x45\xbb\x4c\x05\xce\xc5\xba\x67\x66\x53\xf6\xdc\xd9\x83\x9f\xbe\x2d\xb5\x64\x78\xc3\x90\x85\x41\xcd\x42\xd6\xd4\x47\x57\x0a\x0b\xde\x71\x7e\x2e\x97\x46\x21\xcd\xff\xc1\x1c\x3d\x17\x73\xb0\x40\xf5\xbd\x44\x28\xd9\x32\x34\xe2\xdf\xc8\x10\x31\xa8\x2d\x5c\x6b\x69\x36\x39\xd5\x62\xa8\x93\xb2\x16\x63\x32\xf1\x57\x62\x73\xf6\x4a\x70\x38\x4f\xb7\x96\xff\x56\xb5\xf4\xf3\xd7\x24\x40\x9b\xdf\xed\x72\x38\x8b\x0f\x6c\x46\x8c\x81\xf7\xa4\xb5\xc1\xca\xbf\x9e\x1c\x1f\x38\xce\xc3\x39\xf9\x73\x4c\x6c\x87\x3d\x18\xb2\xc0\x66\xd0\x6f\xc4\x0a\x42\xc8\x88\x28\xfd\x40\xbf\x11\xcb\xc5\xe2\x26\xcd\xa5\xad\xc6\x36\xb0\x44\xa1\xa9\xea\x23\x32\xdc\x70\x4c\x1e\xcd\xb6\xc1\x66\xb9\x21\x50\x69\x17\x79\xd6\xa5\xbc\xfb\x0e\xe4\x85\x0d\x57\x77\x6e\x37\x78\xdb\x0d\x6a\xb8\x6f\x08\xf9\x00\x16\xbb\x13\xe7\xcd\x36\x11\xa5\x46\x28\xc9\x35\x1e\x89\xe1\x1c\xeb\xb6\x43\x0c\x62\x89\x8c\x17\x09\x30\x15\xaa\x46\xfc\x50\x35\xf6\x9e\x28\xdd\xa3\x30\xab\x35\x8b\x9a\x10\x60\xc6\x9a\x59\x91\x76\xf1\x30\x37\x8a\x0b\xfb\xc1\x34\x6c\x76\xf3\x3a\xfc\x62\x47\xa8\xc2\xf5\xc8\xbc\x16\x66\xac\x76\xc4\xcd\x9b\x51\x5a\x35\x0a\x0e\xff\x0b\xc9\x90\xae\x8b\xff\x95\x56\x0f\x2d\xa6\x0b\x4e\x0d\xae\x03\x0a\xfb\x8d\x4b\x81\x6f\x41\x68\x14\x6c\x62\x0c\xe7\x86\x06\x2e\xe4\x10\x31\xba\x0a\x68\x93\x22\x9a\x07\xa7\xcd\xa6\x4e\xcf\xec\x8e\xc8\x8f\x7c\x1e\x64\x90\x2b\xe9\xa7\x2c\x06\xcc\x24\xb4\xd7\x57\x7a\x87\x67\xf5\xe9\xc1\x0d\xae\x20\x66\x8f\xdb\xe7\x52\xb3\x9e\x15\xf6\x7e\xe6\x82\xee\x2b\xbe\x51\x96\x8d\xa6\x4c\xd8\xad\xac\x13\xba\xa5\xd4\xd9\xe1\x3a\x86\xa8\x82\x29\xc4\xb9\xdc\x26\xb5\xdc\xd4\xc2\xc0\x32\x6d\x9b\xf3\x27\x24\xa8\x86\x69\x3c\xdf\x9b\x63\x5b\x00\x50\x0d\x22\x7a\x64\xa8\xf2\x88\x1e\xc8\x78\xb6\x5a\xf0\x6d\xf1\x5c\xce\x26\x8e\xb7\x70\x51\x0b\x82\xf7\xb1\x5b\x2c\x02\x68\xcd\xa1\x42\x66\x72\x65\x51\x61\x36\xd4\xe0\x77\x52\x98\x37\xc3\x66\xb6\x7d\x36\x1f\xea\x8a\x04\xe4\x72\x9b\x8a\x48\x40\x2d\x2d\x4b\x64\x7c\xd1\x78\x57\xf1\x25\xb2\xe8\xdb\xe6\xec\xbd\x7c\x4a\xbf\x38\x14\x21\x11\xe6\x3d\x67\xf5\x13\x7a\x0e\x06\x81\x60\x63\x19\x01\xb8\xa0\xca\x7c\xde\x5a\xf8\x31\xd2\x8d\xbb\xc9\x44\x0c\x3f\x50\x54\xcb\x2a\xcc\x3a\x68\x53\x05\x10\x7a\x31\xf9\xd9\x9c\x1f\x8f\x8c\x78\x02\x3d\xd5\x74\x60\x8e\xf2\xa4\x70\x6b\xda\x0e\xb5\x37\xf2\xd4\xae\xb6\x9c\xc8\x23\xb9\xea\xf0\x39\x35\x46\x9f\xad\x31\x3d\x90\x20\x4f\x53\xbe\x23\xcf\xb6\x18\x62\x9f\x39\xa3\x67\x85\x5b\xe3\x60\xeb\xcd\x8c\x8d\xe6\x17\xc7\x22\x36\x66\x34\x78\xd9\x99\x1f\x6b\x3c\xf0\x42\xaa\xb3\x1e\xbe\xd5\xbd\x38\x8b\xa4\x35\x32\x53\xe7\x4d\x69\xbc\x3f\xe8\x4c\x03\x7d\xd7\x77\x1f\xd8\xc8\xc9\x50\x4e\x35\xb2\xe0\x97\x73\x38\x34\xfe\xe2\xe9\xe9\x8d\x88\xfd\xe9\x6e\x95\xf8\x4b\x62\xe3\xd1\x48\x4a\x74\xd4\x23\xfd\x30\x0c\x60\xe4\x3b\xdd\xd9\xb6\xf9\xbe\x6d\x3f\x6a\xdf\xf3\x4f\xf7\x23\xef\xe1\xc6\x68\x51\xe1\xf7\x2a\x77\x67\x43\xfe\x54\x63\xa2\x90\xbd\xd6\x98\x81\x50\xef\xed\x34\x9c\x38\x4c\x0e\xca\xc7\x61\xb9\x96\x51\xce\x65\x10\x0f\xb6\x60\xb2\x57\x2c\xc2\x0a\x88\x1f\x69\x06\x75\xed\x47\x2d\x56\x75\x6b\x07\xc4\xef\x31\x4e\x26\xa3\xb0\xbb\x61\xf6\xe3\xb6\xcb\xe8\x1e\x9c\x3f\x1a\xf3\x62\x19\x0d\x30\x65\x82\x8f\x73\x3e\x8b\x0a\x33\x6b\x80\x30\xe7\x7c\xc6\x42\xce\xc7\x01\x30\xce\x37\xb3\x4e\x4c\x80\x42\x02\xd6\x7f\x0b\x15\x12\x3f\xb2\x8b\x1f\xb2\x93\xcc\xd0\x22\x44\xa2\x71\x43\x88\xa4\xa3\xc1\x10\x29\x5c\x9e\x1e\x35\xda\xfc\x39\x4a\x32\xf3\x18\xf3\xd7\xd5\xcb\xff\xb2\xab\x97\x8e\x58\xaa\x70\x47\xc4\x1e\x80\xea\xbc\x95\x7d\x61\x27\xd4\x45\xc8\x0f\xd9\x4b\x53\x68\xc7\x89\xe2\xe5\xe2\xf2\xbc\xd5\xde\x97\x8a\x10\x5f\x5e\x9e\xb7\xe4\xee\x65\x43\x2a\xc1\xee\xf9\xb1\x54\x86\xca\x69\xb7\x7d\xd9\x38\x97\x76\xfc\xbf\x2e\xa4\x0a\x3c\x3d\x6b\xb4\x3b\xdd\xd3\xcb\x86\xb4\x0b\x95\xe3\xd3\x8b\x06\xff\x78\x37\x85\x66\xf0\x32\x66\x8c\x06\xd3\x97\x11\xf1\x64\xb2\x89\x0b\x83\x48\xa5\xc9\x84\x07\x34\x30\x2e\x12\x2d\x00\xfe\x95\x9b\x6a\xe8\x4d\x62\x21\x47\xf1\x6a\xde\x23\x45\xdb\xdf\xed\xdf\xe1\x77\xfb\xf7\x6d\xf6\x22\x91\x1f\xa6\xa0\xa2\x62\x55\xfd\x28\x57\x55\xdf\xf1\x64\x23\xa3\xa7\xf6\xc3\x36\xf9\x6d\x00\x4d\x64\x89\x36\x2c\x03\xa8\x23\xb3\x57\xec\xc3\x01\x32\xd9\x0b\xfe\x9c\x7e\x74\xe0\x3d\x51\x40\xfc\x6e\xed\x9e\xde\xaf\x8e\x26\x13\x31\x91\x87\x7a\x7d\x00\x47\xbc\x15\xc3\x45\xcb\x70\xc4\xc1\x64\x52\x84\xa5\x22\x00\x21\x65\xc0\xf8\xe6\x8d\x23\x29\x9c\x2b\x0e\x7f\x68\xaa\x58\xb5\x3e\x3a\x55\x2b\x9f\x07\x91\x0e\x71\xcf\xea\xf7\x29\x24\x91\xb2\xa2\x6c\x36\x91\x64\x4d\xec\x82\xff\x64\xb2\x49\xfc\xa3\x8b\x08\xf6\xa3\x79\xa9\x10\x94\x44\x79\xd8\xc6\x0f\x41\x89\xe8\x00\x9e\x22\x6c\x8a\x41\x8b\xd8\x9a\xe8\x74\x15\xc7\x48\x10\x60\x27\xc4\x5f\xcb\x18\x58\x4c\x15\xa2\x5c\xa4\x13\x09\x72\xe9\xf0\x75\x73\x51\x27\xbe\x68\x5d\x64\x89\x2e\x5d\x34\x0d\x75\xe9\xa2\x29\xa8\xdb\x2b\xf5\xe1\x90\x45\xca\x78\x18\xd2\xfa\xd5\x61\x2e\x27\x0e\x7b\xc3\xe0\x19\xcf\x7e\x1e\x05\x4f\xdc\x29\xb5\x92\x14\xac\x93\xc2\x17\xc9\x47\x7f\x13\x15\xab\xcd\x8f\x72\xb5\xe9\x13\x4e\x03\x19\xbd\x66\x10\xdf\xd2\x88\xff\x3a\x8a\xb7\x91\xc6\x79\xd4\xe0\xdc\x66\x32\x11\x84\xf8\xef\x9d\x84\x5b\x2c\x15\x29\x19\xc4\x71\x7a\x8d\x73\x39\x71\x9c\xe7\x41\x4c\xe1\x49\xa3\x57\x06\xd8\x43\x1c\x71\xd0\xfe\x5e\xa5\xc3\xbc\x89\xce\xbf\xc1\x5c\xd2\xb4\x45\xbf\x7a\xc3\xa1\x8e\xc4\xde\x4d\xef\x26\x44\x47\x1f\x0a\x02\x6c\xf8\x01\x6c\xd9\x80\x2f\x18\xe4\xdb\x59\x90\x6f\x7d\xc8\xb7\xb0\x51\xd0\x46\x63\x32\x13\x5e\xc8\x3f\xc6\x79\x44\x55\xbe\xcd\x22\x74\x0a\xe1\xb5\x5b\x10\xfb\xca\xe7\x13\xa3\x09\x39\x4e\xb4\xda\xd6\x16\xf4\xa1\x95\xe2\xd0\xe2\xcd\x29\x5f\x1b\xe7\x72\xa2\xee\x3d\xd6\x4a\x17\x50\x52\x59\x14\x8f\xa7\xef\x8d\xa7\x80\xd1\x25\x80\x89\x3a\x8c\x81\x7a\x95\x22\x0b\x3c\x0d\x5d\xca\xe3\x5c\x6e\x3e\x5c\x7d\x9a\x14\xec\x29\xde\x48\x72\x39\x6a\x01\x81\xe0\xfd\x0c\x9c\xe0\x7c\x56\xc8\x12\x3c\x39\xb9\x59\x82\x2a\xfd\xc7\xa4\xbb\x69\x40\xff\x19\xf1\xcd\x55\xac\x8e\x3f\x5a\xd5\xb1\x4f\xbc\x1d\xf6\x83\x0f\xaa\x85\x1d\x71\x1c\xbc\x39\xd1\xf1\x62\x5f\x7f\xe3\x91\xac\xbf\x09\xbf\x49\x72\xcd\xcc\xa3\x8e\x24\x1a\x68\xd3\x80\xea\x64\x62\x50\x4b\x26\x3a\x2f\x9f\xd4\xbd\x99\x99\x53\xc0\xfa\x8e\x3f\x9b\xf4\xfd\xbb\x20\xc9\x35\x91\x82\x62\x63\x04\x92\x8c\x36\x8b\xd1\x1a\xa2\x20\x19\x5e\x57\x2a\x95\xb9\x03\x64\xf2\x39\xd0\xe1\xc7\x60\x01\xf6\xe8\x92\x01\x68\xe5\xe0\xb9\x23\x35\x78\x03\xd1\xcc\xe5\x46\xfe\xaf\x29\xc0\x81\x37\x21\xd5\x71\x2c\x41\x1a\x45\x4e\xa0\x13\x73\x08\xf6\xa2\x37\x8d\x51\xaf\xd8\x9f\xc6\x1f\x0b\xe3\x84\xce\x3a\x0f\x01\xf9\xac\xc8\x87\xe3\xed\x0f\x48\xf7\x02\x07\x52\x1d\x45\x6f\x12\xbb\xde\x3e\x40\xa3\x5e\xa9\x4f\x89\x9b\x8d\xc2\x8d\xbd\xa1\xe5\x6f\xa9\xcc\xae\xba\xc9\xae\x2e\x66\xf6\xd5\x65\x5b\xcf\xeb\x29\x28\x29\xb3\x92\x60\x14\xe5\x70\x14\xdd\xd8\x28\xc6\xd6\x68\x2e\xc6\xba\xe7\xc7\x31\x5c\x4d\x03\xb2\x8b\x42\x81\xc1\xb2\xaa\xb9\x9c\x18\x2e\x0c\x23\x91\x28\x7a\x37\xbc\xe0\xe9\xef\x4e\xd0\xc2\xa4\x5b\x53\x74\x60\xa2\xba\x7f\x9e\x42\xeb\x4c\x29\x65\x51\x91\x90\xcb\x89\x8c\xae\xfc\xdd\x67\xe6\x72\x5e\x53\x76\x16\xd7\xc3\x7d\xe4\x00\xe8\xd0\x6d\x97\xfd\x74\xa6\x1f\xf6\x6d\x3e\x10\x63\x8b\x71\x0c\x41\xc2\xf1\x19\x07\xbc\x6a\x9a\x7e\x45\x6e\x46\x93\x90\x41\x31\xb3\x60\x30\xe3\x8d\x5e\xcc\x79\x94\x5d\xf3\xff\x88\x09\x36\xa9\x27\xfc\xf6\x5d\xf8\x4d\x80\x3c\xa1\xfa\x4e\xf9\xf7\x30\x9e\xe3\x53\x10\x82\xc9\xde\x13\xf2\x3f\xb6\xca\x00\x92\xc9\x24\x9f\x37\xa0\xd5\x33\xfa\xfe\xb1\xa8\xb8\xfd\xef\x9e\xf0\x5b\x7f\x42\xff\xf9\x9f\x6d\x0d\x32\xab\x65\x94\x1a\x57\xf8\x34\x37\x0e\x15\x27\x41\xf0\x82\x3c\x2d\x16\xe4\x69\x53\xaa\x10\xd5\x3c\x62\xac\x0f\x40\x35\xcf\xdf\x66\xe6\x7e\x0c\x4f\x99\xb9\x24\x4f\x0e\x10\x71\xcf\xee\x47\x82\x9f\x8e\x75\xdb\x61\x01\xa5\x54\x03\x06\x22\x55\x1f\x86\x64\xa0\xdf\xab\x23\x01\xc0\xc8\x25\x27\x95\xda\xc8\x53\x50\xfd\xff\x02\x00\x00\xff\xff\xe0\xd4\xad\xc2\xfa\x88\x02\x00"), }, "/plot.html.tpl": &vfsgen۰CompressedFileInfo{ name: "plot.html.tpl", - modTime: time.Date(2022, 10, 16, 17, 51, 16, 603109078, time.UTC), + modTime: time.Date(2018, 8, 13, 15, 32, 56, 947476959, time.UTC), uncompressedSize: 958, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x74\x53\x5b\x6b\xdb\x4c\x10\x7d\xfe\xfc\x2b\xe6\xdb\x12\x2c\x83\x2d\xb9\x79\x28\xc5\x96\x0c\x6d\x12\x7a\x21\xbd\xd0\xa4\x4f\x6d\x03\xe3\xdd\x91\xb4\x44\xde\x15\xab\x91\x53\x63\xfc\xdf\xcb\xee\xfa\x96\x42\x5f\xa4\xe1\xcc\x9c\x33\x67\x8f\x56\xf9\xff\xca\x4a\xde\xb4\x04\x35\xaf\x9a\xc5\x20\x3f\xbc\x08\xd5\x62\x00\x90\xb3\xe6\x86\x16\xdb\x6d\x7a\xef\x8b\xdd\x2e\xcf\x22\xe2\x7b\x2b\x62\x04\x59\xa3\xeb\x88\x0b\xd1\x73\x39\x79\x2d\x42\xa3\xe3\x4d\x24\x5d\x6f\x2a\x87\x6d\xdd\x5d\xdd\xdd\x79\x6a\xc4\x07\x79\x16\xe5\xf3\xa5\x55\x9b\x40\x50\x7a\x0d\x5a\x15\xa2\x41\x26\x23\x35\x75\x02\xc2\x6c\x21\x4a\x6b\x78\x52\xe2\x4a\x37\x9b\x19\x5c\xd9\xde\x69\x72\x73\x78\xd2\x8a\xeb\x19\xbc\x9c\x4e\x2f\x2e\xe6\x50\x93\xae\x6a\x9e\xc1\xab\xe9\xb4\xfd\x2d\x16\x79\xa6\xf4\x3a\xc8\x2e\x7b\x66\x6b\x82\xb2\xb2\x4f\xa6\xb1\xa8\xc4\xe2\x7a\x5f\x01\x76\xf0\xf5\xf3\xbb\x3c\x8b\x53\x8b\xc1\x7f\x79\x27\x9d\x6e\xd9\x1b\x7f\x7f\xff\xe9\xf6\xf2\x0a\xcd\x1a\xbb\x8f\xd1\x7a\x6c\x3d\x1b\x3a\x9c\xee\xf9\x84\x3f\xff\xb1\x54\x56\xf6\x2b\x32\x9c\x56\xc4\x37\x0d\xf9\xf2\xed\xe6\x83\x4a\x4e\x7e\x46\x29\x2a\x75\xb3\x26\xc3\xb7\xba\x63\x32\xe4\x12\x21\x1b\x2d\x1f\xc5\x18\xca\xde\x48\xd6\xd6\x24\x34\x82\xed\x00\x00\xc2\x57\xba\x94\xc1\x57\x72\xd4\xf6\x31\x8e\x61\xbb\x44\xf9\x58\x39\xdb\x1b\x35\x03\xf1\xa2\x2c\x4b\xb1\x1b\xa5\x5c\x93\x49\x8e\x3a\x91\x79\x10\x03\x58\xa3\x83\xde\x35\x50\x40\xec\xa4\x6c\xaf\x91\xf1\xfb\xb7\xdb\x64\xa8\x57\x58\x51\xd6\x9a\x6a\x38\x4a\x1d\xb5\x0d\x4a\x4a\xb2\x07\x85\x8c\xb3\xd0\xfa\x99\xfd\x78\x98\xff\xca\xc6\x30\x0c\x18\xb6\x6d\xa3\x25\xfa\x35\x99\x95\x4c\x3c\xe9\xd8\x11\xae\x86\xa3\xf9\xd9\x32\x84\xe2\x94\x89\x74\x84\x4c\xfb\x58\x12\x81\xe2\x38\x8a\x69\x47\xfc\x86\xd9\xe9\x65\xcf\x74\x96\xd6\x18\xc4\x9a\x2a\x62\x9c\xb4\x8d\xe5\xb4\x35\xd5\xbf\x49\xb5\xa3\x52\x8c\xfd\xf9\xce\x46\x42\xb4\xc9\x1e\xd8\x85\xb7\x7f\x0e\xa2\x3d\x69\x0d\xa3\x36\xe4\xce\x6d\xfe\xfd\xe9\x4e\x97\x34\xd0\x3d\xcf\xb6\xdc\x41\x01\xdb\x6d\xfa\xa5\xe5\x6e\xb7\x3b\xe0\x3e\x99\x88\xfb\x58\x4f\xb8\x37\x0f\x05\x18\x7a\x82\xfd\x25\x4a\x8e\xab\xc7\x81\x35\x0e\x9a\x61\xc1\xe9\x6a\xe5\x59\xfc\x63\xf2\x2c\xfe\xa6\x7f\x02\x00\x00\xff\xff\x1b\x44\x5a\x92\xbe\x03\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x53\x5b\x6b\xdb\x4c\x10\x7d\xfe\xfc\x2b\xe6\xdb\x12\x2c\x83\x2d\xb9\x79\x28\xc5\x96\x0c\x6d\x12\x7a\x21\xbd\xd0\xa4\x4f\x6d\x03\xe3\xdd\x91\xb4\x44\xde\x15\xab\x91\x53\x63\xfc\xdf\xcb\xee\xfa\x96\x42\x5f\xa4\xe1\xcc\x9c\x33\x67\x8f\x56\xf9\xff\xca\x4a\xde\xb4\x04\x35\xaf\x9a\xc5\x20\x3f\xbc\x08\xd5\x62\x00\x90\xb3\xe6\x86\x16\xdb\x6d\x7a\xef\x8b\xdd\x2e\xcf\x22\xe2\x7b\x2b\x62\x04\x59\xa3\xeb\x88\x0b\xd1\x73\x39\x79\x2d\x42\xa3\xe3\x4d\x24\x5d\x6f\x2a\x87\x6d\xdd\x5d\xdd\xdd\x79\x6a\xc4\x07\x79\x16\xe5\xf3\xa5\x55\x9b\x40\x50\x7a\x0d\x5a\x15\xa2\x41\x26\x23\x35\x75\x02\xc2\x6c\x21\x4a\x6b\x78\x52\xe2\x4a\x37\x9b\x19\x5c\xd9\xde\x69\x72\x73\x78\xd2\x8a\xeb\x19\xbc\x9c\x4e\x2f\x2e\xe6\x50\x93\xae\x6a\x9e\xc1\xab\xe9\xb4\xfd\x2d\x16\x79\xa6\xf4\x3a\xc8\x2e\x7b\x66\x6b\x82\xb2\xb2\x4f\xa6\xb1\xa8\xc4\xe2\x7a\x5f\x01\x76\xf0\xf5\xf3\xbb\x3c\x8b\x53\x8b\xc1\x7f\x79\x27\x9d\x6e\xd9\x1b\x7f\x7f\xff\xe9\xf6\xf2\x0a\xcd\x1a\xbb\x8f\xd1\x7a\x6c\x3d\x1b\x3a\x9c\xee\xf9\x84\x3f\xff\xb1\x54\x56\xf6\x2b\x32\x9c\x56\xc4\x37\x0d\xf9\xf2\xed\xe6\x83\x4a\x4e\x7e\x46\x29\x2a\x75\xb3\x26\xc3\xb7\xba\x63\x32\xe4\x12\x21\x1b\x2d\x1f\xc5\x18\xca\xde\x48\xd6\xd6\x24\x34\x82\xed\x00\x00\xc2\x57\xba\x94\xc1\x57\x72\xd4\xf6\x31\x8e\x61\xbb\x44\xf9\x58\x39\xdb\x1b\x35\x03\xf1\xa2\x2c\x4b\xb1\x1b\xa5\x5c\x93\x49\x8e\x3a\x91\x79\x10\x03\x58\xa3\x83\xde\x35\x50\x40\xec\xa4\x6c\xaf\x91\xf1\xfb\xb7\xdb\x64\xa8\x57\x58\x51\xd6\x9a\x6a\x38\x4a\x1d\xb5\x0d\x4a\x4a\xb2\x07\x85\x8c\xb3\xd0\xfa\x99\xfd\x78\x98\xff\xca\xc6\x30\x0c\x18\xb6\x6d\xa3\x25\xfa\x35\x99\x95\x4c\x3c\xe9\xd8\x11\xae\x86\xa3\xf9\xd9\x32\x84\xe2\x94\x89\x74\x84\x4c\xfb\x58\x12\x81\xe2\x38\x8a\x69\x47\xfc\x86\xd9\xe9\x65\xcf\x74\x96\xd6\x18\xc4\x9a\x2a\x62\x9c\xb4\x8d\xe5\xb4\x35\xd5\xbf\x49\xb5\xa3\x52\x8c\xfd\xf9\xce\x46\x42\xb4\xc9\x1e\xd8\x85\xb7\x7f\x0e\xa2\x3d\x69\x0d\xa3\x36\xe4\xce\x6d\xfe\xfd\xe9\x4e\x97\x34\xd0\x3d\xcf\xb6\xdc\x41\x01\xdb\x6d\xfa\xa5\xe5\x6e\xb7\x3b\xe0\x3e\x99\x88\xfb\x58\x4f\xb8\x37\x0f\x05\x18\x7a\x82\xfd\x25\x4a\x8e\xab\xc7\x81\x35\x0e\x9a\x61\xc1\xe9\x6a\xe5\x59\xfc\x63\xf2\x2c\xfe\xa6\x7f\x02\x00\x00\xff\xff\x1b\x44\x5a\x92\xbe\x03\x00\x00"), }, } fs["/"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ @@ -145,7 +146,7 @@ func (f *vfsgen۰CompressedFile) Read(p []byte) (n int, err error) { } if f.grPos < f.seekPos { // Fast-forward. - _, err = io.CopyN(io.Discard, f.gr, f.seekPos-f.grPos) + _, err = io.CopyN(ioutil.Discard, f.gr, f.seekPos-f.grPos) if err != nil { return 0, err } diff --git a/vendor/github.com/tsenart/vegeta/v12/lib/plot/plot.go b/vendor/github.com/tsenart/vegeta/v12/lib/plot/plot.go index 0a9e7d9a518c..a4abafb480dc 100644 --- a/vendor/github.com/tsenart/vegeta/v12/lib/plot/plot.go +++ b/vendor/github.com/tsenart/vegeta/v12/lib/plot/plot.go @@ -7,6 +7,7 @@ import ( "fmt" "html/template" "io" + "io/ioutil" "math" "sort" "strconv" @@ -166,7 +167,7 @@ func (p *Plot) Close() { } // WriteTo writes the HTML plot to the give io.Writer. -func (p *Plot) WriteTo(w io.Writer) (n int64, err error) { +func (p Plot) WriteTo(w io.Writer) (n int64, err error) { type dygraphsOpts struct { Title string `json:"title"` Labels []string `json:"labels,omitempty"` @@ -240,7 +241,7 @@ func (p *Plot) WriteTo(w io.Writer) (n int64, err error) { } var ( - failures = []string{ + reds = []string{ "#EE7860", "#DD624E", "#CA4E3E", @@ -249,29 +250,29 @@ var ( "#881618", "#6F050E", } - successes = []string{ - "#E9D758", - "#297373", - "#39393A", - "#A1CDF4", - "#593C8F", - "#171738", - "#A1674A", + greens = []string{ + "#A6DA83", + "#84C068", + "#64A550", + "#488A3A", + "#2F7027", + "#185717", + "#053E0A", } ) func labelColors(labels []string) []string { colors := make([]string, 0, len(labels)) - var failure, success int + var red, green int for _, label := range labels { var color string if strings.Contains(label, "ERROR") { - color = failures[failure%len(failures)] - failure++ + color = reds[red%len(reds)] + red++ } else { - color = successes[success%len(successes)] - success++ + color = greens[green%len(greens)] + green++ } colors = append(colors, color) } @@ -337,7 +338,7 @@ func asset(path string) ([]byte, error) { if err != nil { return nil, err } - return io.ReadAll(file) + return ioutil.ReadAll(file) } type countingWriter struct { diff --git a/vendor/github.com/tsenart/vegeta/v12/lib/prom/grafana.json b/vendor/github.com/tsenart/vegeta/v12/lib/prom/grafana.json deleted file mode 100644 index 331edc5a40e5..000000000000 --- a/vendor/github.com/tsenart/vegeta/v12/lib/prom/grafana.json +++ /dev/null @@ -1,645 +0,0 @@ -{ - "__inputs": [ - { - "name": "DS_PROMETHEUS", - "label": "prometheus", - "description": "", - "type": "datasource", - "pluginId": "prometheus", - "pluginName": "Prometheus" - } - ], - "__requires": [ - { - "type": "grafana", - "id": "grafana", - "name": "Grafana", - "version": "5.2.4" - }, - { - "type": "panel", - "id": "graph", - "name": "Graph", - "version": "5.0.0" - }, - { - "type": "datasource", - "id": "prometheus", - "name": "Prometheus", - "version": "5.0.0" - } - ], - "annotations": { - "list": [ - { - "builtIn": 1, - "datasource": "-- Grafana --", - "enable": true, - "hide": true, - "iconColor": "rgba(0, 211, 255, 1)", - "name": "Annotations & Alerts", - "type": "dashboard" - } - ] - }, - "editable": true, - "gnetId": null, - "graphTooltip": 0, - "id": null, - "links": [], - "panels": [ - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": "${DS_PROMETHEUS}", - "fill": 1, - "gridPos": { - "h": 4, - "w": 12, - "x": 0, - "y": 0 - }, - "id": 12, - "legend": { - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "percentage": false, - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "expr": "rate(request_seconds_count{status=~\"2..\"}[1m])/rate(request_seconds_count[1m])", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "status {{status}} {{url}}", - "refId": "A" - }, - { - "expr": "rate(request_seconds_count{status=~\"3..\"}[1m])/rate(request_seconds_count[1m])", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "status {{status}} {{url}}", - "refId": "B" - }, - { - "expr": "rate(request_seconds_count{status=~\"4..\"}[1m])/rate(request_seconds_count[1m])", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "status {{status}} {{url}}", - "refId": "C" - }, - { - "expr": "rate(request_seconds_count{status=~\"5..\"}[1m])/rate(request_seconds_count[1m])", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "status {{status}} {{url}}", - "refId": "D" - } - ], - "thresholds": [], - "timeFrom": null, - "timeShift": null, - "title": "Request Status", - "tooltip": { - "shared": true, - "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": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ], - "yaxis": { - "align": false, - "alignLevel": null - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": "${DS_PROMETHEUS}", - "fill": 1, - "gridPos": { - "h": 4, - "w": 12, - "x": 12, - "y": 0 - }, - "id": 6, - "legend": { - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "percentage": false, - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "expr": "histogram_quantile(0.50, sum(rate(request_seconds_bucket[1m])) by (le, status))", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "P50 {{status}}", - "refId": "A" - }, - { - "expr": "histogram_quantile(0.90, sum(rate(request_seconds_bucket[1m])) by (le, status))", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "P90 {{status}}", - "refId": "B" - }, - { - "expr": "histogram_quantile(0.99, sum(rate(request_seconds_bucket[1m])) by (le, status))", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "P99 {{status}}", - "refId": "C" - } - ], - "thresholds": [], - "timeFrom": null, - "timeShift": null, - "title": "Average Request Latency", - "tooltip": { - "shared": true, - "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": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ], - "yaxis": { - "align": false, - "alignLevel": null - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": "${DS_PROMETHEUS}", - "fill": 1, - "gridPos": { - "h": 5, - "w": 12, - "x": 0, - "y": 4 - }, - "id": 4, - "legend": { - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "percentage": false, - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "expr": "rate(request_seconds_count[1m])", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "throughtput {{url}} {{status}}", - "refId": "A" - } - ], - "thresholds": [], - "timeFrom": null, - "timeShift": null, - "title": "Requests per second", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "buckets": null, - "mode": "time", - "name": null, - "show": true, - "values": [] - }, - "yaxes": [ - { - "format": "reqps", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ], - "yaxis": { - "align": false, - "alignLevel": null - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": "${DS_PROMETHEUS}", - "fill": 1, - "gridPos": { - "h": 5, - "w": 12, - "x": 12, - "y": 4 - }, - "id": 8, - "legend": { - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "percentage": false, - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "expr": "go_threads{job=\"vegeta\"} ", - "format": "time_series", - "hide": false, - "intervalFactor": 1, - "legendFormat": "Vegeta Go threads", - "refId": "A" - }, - { - "expr": "go_goroutines{job=\"vegeta\"} ", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "Vegeta Go routines", - "refId": "B" - } - ], - "thresholds": [], - "timeFrom": null, - "timeShift": null, - "title": "Vegeta threads", - "tooltip": { - "shared": true, - "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": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ], - "yaxis": { - "align": false, - "alignLevel": null - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": "${DS_PROMETHEUS}", - "fill": 1, - "gridPos": { - "h": 5, - "w": 12, - "x": 0, - "y": 9 - }, - "id": 2, - "legend": { - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "percentage": false, - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "expr": "rate(request_bytes_in[1m])", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "bytes_out {{url}} {{status}}", - "refId": "A" - }, - { - "expr": "rate(request_bytes_out[1m])", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "bytes_out {{url}} {{status}}", - "refId": "B" - } - ], - "thresholds": [], - "timeFrom": null, - "timeShift": null, - "title": "Data throughput", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "buckets": null, - "mode": "time", - "name": null, - "show": true, - "values": [] - }, - "yaxes": [ - { - "format": "Bps", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ], - "yaxis": { - "align": false, - "alignLevel": null - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": "${DS_PROMETHEUS}", - "fill": 1, - "gridPos": { - "h": 5, - "w": 12, - "x": 12, - "y": 9 - }, - "id": 10, - "legend": { - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "percentage": false, - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "expr": "go_memstats_alloc_bytes{job=\"vegeta\"}", - "format": "time_series", - "intervalFactor": 1, - "refId": "A" - } - ], - "thresholds": [], - "timeFrom": null, - "timeShift": null, - "title": "Vegeta Heap Size", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "buckets": null, - "mode": "time", - "name": null, - "show": true, - "values": [] - }, - "yaxes": [ - { - "format": "decbytes", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ], - "yaxis": { - "align": false, - "alignLevel": null - } - } - ], - "refresh": false, - "schemaVersion": 16, - "style": "dark", - "tags": [], - "templating": { - "list": [] - }, - "time": { - "from": "2023-07-23T13:28:35.330Z", - "to": "2023-07-23T13:33:18.000Z" - }, - "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": "Vegeta", - "uid": "6GNY5DGGk", - "version": 3 -} \ No newline at end of file diff --git a/vendor/github.com/tsenart/vegeta/v12/lib/prom/prom.go b/vendor/github.com/tsenart/vegeta/v12/lib/prom/prom.go deleted file mode 100644 index fb885f685e5e..000000000000 --- a/vendor/github.com/tsenart/vegeta/v12/lib/prom/prom.go +++ /dev/null @@ -1,82 +0,0 @@ -package prom - -import ( - "fmt" - "net/http" - "strconv" - "time" - - "github.com/prometheus/client_golang/prometheus" - "github.com/prometheus/client_golang/prometheus/promhttp" - - vegeta "github.com/tsenart/vegeta/v12/lib" -) - -// Metrics encapsulates Prometheus metrics of an attack. -type Metrics struct { - requestLatencyHistogram *prometheus.HistogramVec - requestBytesInCounter *prometheus.CounterVec - requestBytesOutCounter *prometheus.CounterVec - requestFailCounter *prometheus.CounterVec -} - -// NewMetrics returns a new Metrics instance that must be -// registered in a Prometheus registry with Register. -func NewMetrics() *Metrics { - baseLabels := []string{"method", "url", "status"} - return &Metrics{ - requestLatencyHistogram: prometheus.NewHistogramVec(prometheus.HistogramOpts{ - Name: "request_seconds", - Help: "Request latency", - Buckets: prometheus.DefBuckets, - }, baseLabels), - requestBytesInCounter: prometheus.NewCounterVec(prometheus.CounterOpts{ - Name: "request_bytes_in", - Help: "Bytes received from servers as response to requests", - }, baseLabels), - requestBytesOutCounter: prometheus.NewCounterVec(prometheus.CounterOpts{ - Name: "request_bytes_out", - Help: "Bytes sent to servers during requests", - }, baseLabels), - requestFailCounter: prometheus.NewCounterVec(prometheus.CounterOpts{ - Name: "request_fail_count", - Help: "Count of failed requests", - }, append(baseLabels[:len(baseLabels):len(baseLabels)], "message")), - } -} - -// Register registers all Prometheus metrics in r. -func (pm *Metrics) Register(r prometheus.Registerer) error { - for _, c := range []prometheus.Collector{ - pm.requestLatencyHistogram, - pm.requestBytesInCounter, - pm.requestBytesOutCounter, - pm.requestFailCounter, - } { - if err := r.Register(c); err != nil { - return fmt.Errorf("failed to register metric %v: %w", c, err) - } - } - return nil -} - -// Observe metrics given a vegeta.Result. -func (pm *Metrics) Observe(res *vegeta.Result) { - code := strconv.FormatUint(uint64(res.Code), 10) - pm.requestBytesInCounter.WithLabelValues(res.Method, res.URL, code).Add(float64(res.BytesIn)) - pm.requestBytesOutCounter.WithLabelValues(res.Method, res.URL, code).Add(float64(res.BytesOut)) - pm.requestLatencyHistogram.WithLabelValues(res.Method, res.URL, code).Observe(res.Latency.Seconds()) - if res.Error != "" { - pm.requestFailCounter.WithLabelValues(res.Method, res.URL, code, res.Error) - } -} - -// NewHandler returns a new http.Handler that exposes Prometheus -// metrics registed in r in the OpenMetrics format. -func NewHandler(r *prometheus.Registry, startTime time.Time) http.Handler { - return promhttp.HandlerFor(r, promhttp.HandlerOpts{ - Registry: r, - EnableOpenMetrics: true, - ProcessStartTime: startTime, - }) -} diff --git a/vendor/github.com/tsenart/vegeta/v12/lib/prom/prometheus-sample.png b/vendor/github.com/tsenart/vegeta/v12/lib/prom/prometheus-sample.png deleted file mode 100644 index d4e834a018a8176c08121ac30168483ee1c241e6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 431921 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 @$#oyK|U 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

DkeQz?>vUVD@}{jo5OLkP*5GG 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 diff --git a/vendor/github.com/tsenart/vegeta/v12/lib/results_easyjson.go b/vendor/github.com/tsenart/vegeta/v12/lib/results_easyjson.go index 844e3b95e902..3beb22f7d839 100644 --- a/vendor/github.com/tsenart/vegeta/v12/lib/results_easyjson.go +++ b/vendor/github.com/tsenart/vegeta/v12/lib/results_easyjson.go @@ -4,12 +4,11 @@ package vegeta import ( json "encoding/json" - http "net/http" - time "time" - easyjson "github.com/mailru/easyjson" jlexer "github.com/mailru/easyjson/jlexer" jwriter "github.com/mailru/easyjson/jwriter" + http "net/http" + time "time" ) // suppress unused package warning @@ -31,7 +30,7 @@ func easyjsonBd1621b8DecodeGithubComTsenartVegetaV12Lib(in *jlexer.Lexer, out *j } in.Delim('{') for !in.IsDelim('}') { - key := in.UnsafeFieldName(false) + key := in.UnsafeString() in.WantColon() if in.IsNull() { in.Skip() @@ -73,7 +72,11 @@ func easyjsonBd1621b8DecodeGithubComTsenartVegetaV12Lib(in *jlexer.Lexer, out *j in.Skip() } else { in.Delim('{') - out.Headers = make(http.Header) + if !in.IsDelim('}') { + out.Headers = make(http.Header) + } else { + out.Headers = nil + } for !in.IsDelim('}') { key := string(in.String()) in.WantColon() diff --git a/vendor/github.com/tsenart/vegeta/v12/lib/results_fuzz.go b/vendor/github.com/tsenart/vegeta/v12/lib/results_fuzz.go index 8c392e1831eb..fced203da4a9 100644 --- a/vendor/github.com/tsenart/vegeta/v12/lib/results_fuzz.go +++ b/vendor/github.com/tsenart/vegeta/v12/lib/results_fuzz.go @@ -1,4 +1,3 @@ -//go:build gofuzz // +build gofuzz package vegeta diff --git a/vendor/github.com/tsenart/vegeta/v12/lib/target.schema.json b/vendor/github.com/tsenart/vegeta/v12/lib/target.schema.json index 525282dffabd..00286725295b 100644 --- a/vendor/github.com/tsenart/vegeta/v12/lib/target.schema.json +++ b/vendor/github.com/tsenart/vegeta/v12/lib/target.schema.json @@ -8,12 +8,6 @@ "url" ], "properties": { - "method": { - "type": "string" - }, - "url": { - "type": "string" - }, "body": { "type": "string", "media": { @@ -30,6 +24,12 @@ } }, "type": "object" + }, + "method": { + "type": "string" + }, + "url": { + "type": "string" } }, "additionalProperties": false, diff --git a/vendor/github.com/tsenart/vegeta/v12/lib/targets.go b/vendor/github.com/tsenart/vegeta/v12/lib/targets.go index fee3f383bbdf..2cb5dc2cfb5a 100644 --- a/vendor/github.com/tsenart/vegeta/v12/lib/targets.go +++ b/vendor/github.com/tsenart/vegeta/v12/lib/targets.go @@ -6,9 +6,9 @@ import ( "errors" "fmt" "io" + "io/ioutil" "net/http" "net/url" - "os" "regexp" "strings" "sync" @@ -31,25 +31,17 @@ type Target struct { // Request creates an *http.Request out of Target and returns it along with an // error in case of failure. func (t *Target) Request() (*http.Request, error) { - var body io.Reader - if len(t.Body) != 0 { - body = bytes.NewReader(t.Body) - } - - req, err := http.NewRequest(t.Method, t.URL, body) + req, err := http.NewRequest(t.Method, t.URL, bytes.NewReader(t.Body)) if err != nil { return nil, err } - for k, vs := range t.Header { req.Header[k] = make([]string, len(vs)) copy(req.Header[k], vs) } - if host := req.Header.Get("Host"); host != "" { req.Host = host } - return req, nil } @@ -124,11 +116,12 @@ func (tr Targeter) Decode(t *Target) error { // The method and url fields are required. If present, the body field must be base64 encoded. // The generated [JSON Schema](lib/target.schema.json) defines the format in detail. // -// {"method":"POST", "url":"https://goku/1", "header":{"Content-Type":["text/plain"], "body": "Rk9P"} -// {"method":"GET", "url":"https://goku/2"} +// {"method":"POST", "url":"https://goku/1", "header":{"Content-Type":["text/plain"], "body": "Rk9P"} +// {"method":"GET", "url":"https://goku/2"} // -// body will be set as the Target's body if no body is provided in each target definition. +// body will be set as the Target's body if no body is provided in each target definiton. // hdr will be merged with the each Target's headers. +// func NewJSONTargeter(src io.Reader, body []byte, header http.Header) Targeter { type reader struct { *bufio.Reader @@ -200,7 +193,7 @@ func (enc TargetEncoder) Encode(t *Target) error { return enc(t) } -// NewJSONTargetEncoder returns a TargetEncoder that encodes Targets in the JSON format. +// NewJSONTargetEncoder returns a TargetEncoder that encods Targets in the JSON format. func NewJSONTargetEncoder(w io.Writer) TargetEncoder { var jw jwriter.Writer return func(t *Target) error { @@ -249,13 +242,13 @@ func ReadAllTargets(t Targeter) (tgts []Target, err error) { // NewHTTPTargeter returns a new Targeter that decodes one Target from the // given io.Reader on every invocation. The format is as follows: // -// GET https://foo.bar/a/b/c -// Header-X: 123 -// Header-Y: 321 -// @/path/to/body/file +// GET https://foo.bar/a/b/c +// Header-X: 123 +// Header-Y: 321 +// @/path/to/body/file // -// POST https://foo.bar/b/c/a -// Header-X: 123 +// POST https://foo.bar/b/c/a +// Header-X: 123 // // body will be set as the Target's body if no body is provided. // hdr will be merged with the each Target's headers. @@ -310,7 +303,7 @@ func NewHTTPTargeter(src io.Reader, body []byte, hdr http.Header) Targeter { } else if strings.HasPrefix(line, "#") { continue } else if strings.HasPrefix(line, "@") { - if tgt.Body, err = os.ReadFile(line[1:]); err != nil { + if tgt.Body, err = ioutil.ReadFile(line[1:]); err != nil { return fmt.Errorf("bad body: %s", err) } break diff --git a/vendor/github.com/tsenart/vegeta/v12/lib/targets_fuzz.go b/vendor/github.com/tsenart/vegeta/v12/lib/targets_fuzz.go index 37ffae8d8873..87a925fe1b20 100644 --- a/vendor/github.com/tsenart/vegeta/v12/lib/targets_fuzz.go +++ b/vendor/github.com/tsenart/vegeta/v12/lib/targets_fuzz.go @@ -1,4 +1,3 @@ -//go:build gofuzz // +build gofuzz package vegeta diff --git a/vendor/github.com/tsenart/vegeta/v12/lib/util_fuzz.go b/vendor/github.com/tsenart/vegeta/v12/lib/util_fuzz.go index 780a28d217d7..60c758feac1a 100644 --- a/vendor/github.com/tsenart/vegeta/v12/lib/util_fuzz.go +++ b/vendor/github.com/tsenart/vegeta/v12/lib/util_fuzz.go @@ -1,4 +1,3 @@ -//go:build gofuzz // +build gofuzz package vegeta diff --git a/vendor/github.com/tsenart/vegeta/v12/main.go b/vendor/github.com/tsenart/vegeta/v12/main.go index a10c927f6255..816505396096 100644 --- a/vendor/github.com/tsenart/vegeta/v12/main.go +++ b/vendor/github.com/tsenart/vegeta/v12/main.go @@ -44,7 +44,7 @@ func main() { } } - fmt.Fprintf(fs.Output(), "%s\n", examples) + fmt.Fprintln(fs.Output(), examples) } fs.Parse(os.Args[1:]) diff --git a/vendor/github.com/tsenart/vegeta/v12/plot.go b/vendor/github.com/tsenart/vegeta/v12/plot.go index e9731ff87d00..4325d9edf9f6 100644 --- a/vendor/github.com/tsenart/vegeta/v12/plot.go +++ b/vendor/github.com/tsenart/vegeta/v12/plot.go @@ -47,7 +47,7 @@ func plotCmd() command { output := fs.String("output", "stdout", "Output file") fs.Usage = func() { - fmt.Fprintf(os.Stderr, "%s\n", plotUsage) + fmt.Fprintln(os.Stderr, plotUsage) } return command{fs, func(args []string) error { diff --git a/vendor/github.com/tsenart/vegeta/v12/report.go b/vendor/github.com/tsenart/vegeta/v12/report.go index bab02c7f71c8..94074b7f30b9 100644 --- a/vendor/github.com/tsenart/vegeta/v12/report.go +++ b/vendor/github.com/tsenart/vegeta/v12/report.go @@ -33,7 +33,6 @@ Options: Examples: echo "GET http://:80" | vegeta attack -rate=10/s > results.gob echo "GET http://:80" | vegeta attack -rate=100/s | vegeta encode > results.json - vegeta report < results.gob | rg -vU 'Error Set:.*' # Don't show errors vegeta report results.* ` @@ -45,7 +44,7 @@ func reportCmd() command { buckets := fs.String("buckets", "", "Histogram buckets, e.g.: \"[0,1ms,10ms]\"") fs.Usage = func() { - fmt.Fprintf(os.Stderr, "%s\n", reportUsage) + fmt.Fprintln(os.Stderr, reportUsage) } return command{fs, func(args []string) error { diff --git a/vendor/github.com/tsenart/vegeta/v12/report_nonwindows.go b/vendor/github.com/tsenart/vegeta/v12/report_nonwindows.go index bcc5d1ffa759..48e8ceb10fb2 100644 --- a/vendor/github.com/tsenart/vegeta/v12/report_nonwindows.go +++ b/vendor/github.com/tsenart/vegeta/v12/report_nonwindows.go @@ -1,4 +1,3 @@ -//go:build !windows // +build !windows package main diff --git a/vendor/github.com/tsenart/vegeta/v12/report_windows.go b/vendor/github.com/tsenart/vegeta/v12/report_windows.go index c52de265a07c..cf1db6d70501 100644 --- a/vendor/github.com/tsenart/vegeta/v12/report_windows.go +++ b/vendor/github.com/tsenart/vegeta/v12/report_windows.go @@ -1,4 +1,3 @@ -//go:build windows // +build windows package main diff --git a/vendor/golang.org/x/sync/singleflight/singleflight.go b/vendor/golang.org/x/sync/singleflight/singleflight.go deleted file mode 100644 index 8473fb7922c1..000000000000 --- a/vendor/golang.org/x/sync/singleflight/singleflight.go +++ /dev/null @@ -1,205 +0,0 @@ -// Copyright 2013 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// Package singleflight provides a duplicate function call suppression -// mechanism. -package singleflight // import "golang.org/x/sync/singleflight" - -import ( - "bytes" - "errors" - "fmt" - "runtime" - "runtime/debug" - "sync" -) - -// errGoexit indicates the runtime.Goexit was called in -// the user given function. -var errGoexit = errors.New("runtime.Goexit was called") - -// A panicError is an arbitrary value recovered from a panic -// with the stack trace during the execution of given function. -type panicError struct { - value interface{} - stack []byte -} - -// Error implements error interface. -func (p *panicError) Error() string { - return fmt.Sprintf("%v\n\n%s", p.value, p.stack) -} - -func newPanicError(v interface{}) error { - stack := debug.Stack() - - // The first line of the stack trace is of the form "goroutine N [status]:" - // but by the time the panic reaches Do the goroutine may no longer exist - // and its status will have changed. Trim out the misleading line. - if line := bytes.IndexByte(stack[:], '\n'); line >= 0 { - stack = stack[line+1:] - } - return &panicError{value: v, stack: stack} -} - -// call is an in-flight or completed singleflight.Do call -type call struct { - wg sync.WaitGroup - - // These fields are written once before the WaitGroup is done - // and are only read after the WaitGroup is done. - val interface{} - err error - - // These fields are read and written with the singleflight - // mutex held before the WaitGroup is done, and are read but - // not written after the WaitGroup is done. - dups int - chans []chan<- Result -} - -// Group represents a class of work and forms a namespace in -// which units of work can be executed with duplicate suppression. -type Group struct { - mu sync.Mutex // protects m - m map[string]*call // lazily initialized -} - -// Result holds the results of Do, so they can be passed -// on a channel. -type Result struct { - Val interface{} - Err error - Shared bool -} - -// Do executes and returns the results of the given function, making -// sure that only one execution is in-flight for a given key at a -// time. If a duplicate comes in, the duplicate caller waits for the -// original to complete and receives the same results. -// The return value shared indicates whether v was given to multiple callers. -func (g *Group) Do(key string, fn func() (interface{}, error)) (v interface{}, err error, shared bool) { - g.mu.Lock() - if g.m == nil { - g.m = make(map[string]*call) - } - if c, ok := g.m[key]; ok { - c.dups++ - g.mu.Unlock() - c.wg.Wait() - - if e, ok := c.err.(*panicError); ok { - panic(e) - } else if c.err == errGoexit { - runtime.Goexit() - } - return c.val, c.err, true - } - c := new(call) - c.wg.Add(1) - g.m[key] = c - g.mu.Unlock() - - g.doCall(c, key, fn) - return c.val, c.err, c.dups > 0 -} - -// DoChan is like Do but returns a channel that will receive the -// results when they are ready. -// -// The returned channel will not be closed. -func (g *Group) DoChan(key string, fn func() (interface{}, error)) <-chan Result { - ch := make(chan Result, 1) - g.mu.Lock() - if g.m == nil { - g.m = make(map[string]*call) - } - if c, ok := g.m[key]; ok { - c.dups++ - c.chans = append(c.chans, ch) - g.mu.Unlock() - return ch - } - c := &call{chans: []chan<- Result{ch}} - c.wg.Add(1) - g.m[key] = c - g.mu.Unlock() - - go g.doCall(c, key, fn) - - return ch -} - -// doCall handles the single call for a key. -func (g *Group) doCall(c *call, key string, fn func() (interface{}, error)) { - normalReturn := false - recovered := false - - // use double-defer to distinguish panic from runtime.Goexit, - // more details see https://golang.org/cl/134395 - defer func() { - // the given function invoked runtime.Goexit - if !normalReturn && !recovered { - c.err = errGoexit - } - - g.mu.Lock() - defer g.mu.Unlock() - c.wg.Done() - if g.m[key] == c { - delete(g.m, key) - } - - if e, ok := c.err.(*panicError); ok { - // In order to prevent the waiting channels from being blocked forever, - // needs to ensure that this panic cannot be recovered. - if len(c.chans) > 0 { - go panic(e) - select {} // Keep this goroutine around so that it will appear in the crash dump. - } else { - panic(e) - } - } else if c.err == errGoexit { - // Already in the process of goexit, no need to call again - } else { - // Normal return - for _, ch := range c.chans { - ch <- Result{c.val, c.err, c.dups > 0} - } - } - }() - - func() { - defer func() { - if !normalReturn { - // Ideally, we would wait to take a stack trace until we've determined - // whether this is a panic or a runtime.Goexit. - // - // Unfortunately, the only way we can distinguish the two is to see - // whether the recover stopped the goroutine from terminating, and by - // the time we know that, the part of the stack trace relevant to the - // panic has been discarded. - if r := recover(); r != nil { - c.err = newPanicError(r) - } - } - }() - - c.val, c.err = fn() - normalReturn = true - }() - - if !normalReturn { - recovered = true - } -} - -// Forget tells the singleflight to forget about a key. Future calls -// to Do for this key will call the function rather than waiting for -// an earlier call to complete. -func (g *Group) Forget(key string) { - g.mu.Lock() - delete(g.m, key) - g.mu.Unlock() -} diff --git a/vendor/modules.txt b/vendor/modules.txt index d92b22c91826..87aefecaa7c5 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -483,9 +483,6 @@ github.com/prometheus/procfs/internal/util ## explicit; go 1.13 github.com/prometheus/statsd_exporter/pkg/mapper github.com/prometheus/statsd_exporter/pkg/mapper/fsm -# github.com/rs/dnscache v0.0.0-20211102005908-e0241e321417 -## explicit; go 1.12 -github.com/rs/dnscache # github.com/russross/blackfriday/v2 v2.1.0 ## explicit github.com/russross/blackfriday/v2 @@ -499,14 +496,13 @@ github.com/spf13/pflag ## explicit github.com/tsenart/go-tsz github.com/tsenart/go-tsz/testdata -# github.com/tsenart/vegeta/v12 v12.11.0 -## explicit; go 1.20 +# github.com/tsenart/vegeta/v12 v12.11.0 => github.com/tsenart/vegeta/v12 v12.8.4 +## explicit; go 1.13 github.com/tsenart/vegeta/v12 github.com/tsenart/vegeta/v12/internal/resolver github.com/tsenart/vegeta/v12/lib github.com/tsenart/vegeta/v12/lib/lttb github.com/tsenart/vegeta/v12/lib/plot -github.com/tsenart/vegeta/v12/lib/prom # github.com/vbatts/tar-split v0.11.2 ## explicit; go 1.15 github.com/vbatts/tar-split/archive/tar @@ -600,7 +596,6 @@ golang.org/x/oauth2/jwt ## explicit; go 1.17 golang.org/x/sync/errgroup golang.org/x/sync/semaphore -golang.org/x/sync/singleflight # golang.org/x/sys v0.11.0 ## explicit; go 1.17 golang.org/x/sys/cpu @@ -1490,3 +1485,4 @@ sigs.k8s.io/structured-merge-diff/v4/value # sigs.k8s.io/yaml v1.3.0 ## explicit; go 1.12 sigs.k8s.io/yaml +# github.com/tsenart/vegeta/v12 => github.com/tsenart/vegeta/v12 v12.8.4

0gJ- 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�v}m5+&Y_h#IN9@5>MiKt1R6#KN|I?eH7J+^1Nl#(t@=H z^j9LF7P3(s9A>{&=S}xtXUnm*-J(O-clkr*z9r5mX zUQ_BwB_fSAGRMvTTD>W_7zKuQidfdG&b_r_OO^2|vHUOY@oA+zg zcCbenQhpm^kqlNK)Ud8C{_M}87|3bSmIXY!RaVtFM+tqamD=C3m#6y2 zTqmx=gT=|#Hw-WyOCu7#c4_*ea;r9enPHz5{tA07>!aGyW90ky1ryr6#bopjTU7#B zHovs8z$%UdM*Y$#H0UVP22VFXbUKU{qF{O*S;*f(@<=K$B)+~6^V_ae}EoR-;n&z8LqV_@U%D=&f$3MOvh3(DHHt@B_*X~ zG8f$%Rcf7kj?7ixsBLBvYQeSeE}*$yS$#Y(Y6L2aM4w}<&&vAUyt93ZedY6*0dPUH zrN?+a-2^@oat#J2)T_ZS;BW1k=_`B6ECw^Ln?FG1q`J6K>DK3w_Z}D~Os`GlWL-G9 ze`5XJ{O&=ODf)^Qu+j;b+Mbt9aBQ2==+H-rME|I?Wm&$H-$Fq1GnE0B*~N-0C#FhG z<$~q_^Pz*?y!jE-44`cel^58Camlh)_>i318Fmb@B04VHnJYDiWZMnX@=6-0TZm4G zX3=P0rKL& zaIb9+jquV=|Co&}HR4ZXUvB@d(^Bf~gVR0lk)e%vY@_qWcU%3+u+53-_pT`{|9Mx5 zwu!Vv=UP=-?s;KPt;B$%&ERp5XZYJW0E*kR(VfqbJ=G};GfXq8`;p&FN}?B@Z`!zd z(68!WFr2=aLrKvGI(@k-Wt(8FO*qmN|IuKLu%mS+$LzEtN~UhJ!|&YWJN*|%P=tr* z0`^~jObXC#fUTyquV;#AYdRXK5uJ6@bpcW6W&%RsPLdLgumxeOMPV!b@ z$kB}wB^b1yU#zNpxBw9yu0EGVPjF}cjpyy9+oh^${~nMe>X)~|FgWP_8nF#}fuOU} zs+P0Kz^K6HQg4%D_-(IWs^5+zZ+_VEEfq5?&3O+6+kk2-45zL|_()E;Y~~R2?P*&1 zD;pfMJ!2bmcU024n7T&Df>AnPDnvM+M35o|ADT1|4L6t+wEU@Os)pEZU=aVNSVz}4 z`DHzwrwmk(i-(g-g_+Bs&Op3R5>1f-7jj*=n1&sx)^k=D2K6TiPe)1R$JQIoZ}v8* z%M<%jD8d)%o=?9v}g{!XKpn}TF#cp$DK5CZMJKc5Nt0v}v z!_%R@Z05D$thH;*!PpFff)hjbM_3PBK$>Fo{p%CfUiiSQssB=dVozRoHoODG~#OeUL6=6_7)*{5F_Ox zH(p$HwOiCSyAUU9#VIe=bXdt3&X&by2jo6HN} zd_RbkGv;MtXVM0|qz##*xw9?}&>(Car@b)m*n43%ToZf>%b?|5VEhACD+|r5Igq!) z%%r+@)1jz9zGP&2Xt{&{a;zrUW54g!zWlaN!@N2rm&jhPc#!2Ptre3UiayFkpR?`) z+wna%7;-_z(0zD4^?W8*E*1|oL_lTM&X41~Gi)$I1+6g}-moR}0orj2)jN5ERaHy3 z%HMeL{DN&fG^S(@t_e%=<{C4B^z93OrNhNm265rT3Z4ZhdKMY@j=^!V$i}hCE|*OQj2|=*+5HOgm8k)ZSEI@J!s-eH z?;E39_j7o74E$z-(G-ya-c8*QoZ7w**lnlR(uv?*zlRxf-QWrPn|@b1nWx>+Kcuq= zoPN_iZhFXS6l()tD2XWDCb@k~mXKR*6V0<1Dg8&Da|i*T5F7~q&R!B= z!`>K&f^lSy%iaW*mX-~hC@P2T_+90vPnk;ykh*>F858Fs>8aewaCU|sy=s!-Fkj(| z;ur;IBJzS7LKOvQsl3aE3wNXZD={39!;K52=kcaW!oH2JmdP%c&&O(2PaK9!?BK|w z;uj^g-a8*v`LDtt-=us#cc=Q0brqTpT@Yy5yw4CHx&4OW0RB^9?QevbHv!BC!ZF*c ztKB|#%&2a_ab3TD-6)!%*-M<>wL-t|b+K+MuHqxzmg{gBUONVt`KOu;YLi$&*;qcw z<>Th+>cloai2ogS6(;qv7GrHh@#lK2S&}5!7xK>+(H{n zSFC}3g98DQW!TPgO%8e+eRHkPL4oTM9D4hP|ND*GOEHS8TYg`G*y9?S94niYtE*8@ z;(MDE*V;ktSX{n!SZEck%PY;qHJ1}QJrA+hwLQvkhnOA>Z-wqS_m{*7)(w!ASF7EU zpHmOAxj-WdrGmhOfNi8|BXuBvmO?AIMC>+xJWF4Mr;(pk=w@K@+Q`a0he}XWhEWJJ zZ;|nA*b?PdA5@*zp}^nIYp?mNmQC9fH^(~K?GI`lmR9^aAOW7?C}mR{Xx&v}g-L2v zy~Yxl*Bn+h*y0i1UY+P(YWL+E>H}#vZFIG2x-FvASdbAhM^)xV(e^ z_w#mh_8J`=ik%3Td6Of zhAl;#Z#gT);k1`BcVC%RW!$M<1Tk-P+zd4q`SxhUIE801{7GmzL6t}0pZNIVd??#C z8QR^4IG>rvNcPy$WGz17A~IC9q0=cDwqqH>zl*mrXX=uowuGMop8R5}3`{QkxlIJ2 z{;B|}%8CN1rR>wS1e*JJSOO|D8{xHg^SVwK_Z6mY*8*M5RPQxWGKoUT1{u}o_Qg0d z-r`vvSOU+UTg*zlN(-L&3bgDZ4)&4)Wv%vOSYp4J;F5eR_vmJKHdTW@qxv;xR(2w` zxu%d-&%03koLJ9%Z4`Zp$h)KtB}?QnHFBcQ)9+oDJ)(qJ@`C$)Z_z#&g+lIZj#vOm zrO!hs6|d!cuA*Q(l4%UE>WZ&30$Q;~M|+D(QC_{*7wD|1#5EIY_UA}wYzT2eI1GP? zWL8mUCu{xii(u~qxQkslZ2Pt8JZ^qyv?uzEn~*kI ze3@cPCR4$VKu9cAbIF=YOe=S1C`t1f9lmq-(tNQbH7sONyvoqqxtSKN&Y-$tl0$kgr;!T-Bod1DX9E&i2=yNGBpFU+~pjMjw2{315C z^dGj~ZFmMGM&h#K-EudzE3QRlAxd5})u^Knk80DBL?{-MCos6Q$f@pz+M`<43Q3N% z?FYS*sFqcIZk>XARlnf=>!G`xPU$>5L$5-YbAK?w3h;31leDksw|mHQsMsF2YNGE9 znf%F`WdJVo^e@dNNubG@#11F*hR zIW2C0DYGLECr^sqpwlbgyk%8OvTkDLNuG4CfsEpY(6a(i<%S5z!cB4F=^26 zPVcK+S;M&3P8oQ0QC>MFQq(YFZcErfZ?J1YXUNDw^-Hkao9$hP^!U{$QGS}?$A>X` zWG|%QLXR$>sL8?Sc@u}(X^^99<__LPuQ&@ElCnNC*q8tq@`T;QRv*sLRTU5f-iOt} zt9@6)oXIwLMSDKNU`N4u>r}TFF%JV%!aS`_ADG<0Zu>Wjad;sY*|k ziA|i@t+7MLHJ55lMQ0|$<>Gts#T96%O^rz`QMvBble>HRw)u8S@x83wXk*kWw;Lr` zm2ah8U!ozap{BuwG?Ex2KrK_g%jmCHn@XVD;$6Sp4R5M@jMj`h5b_&0tZk|3I9BovZ639!S-8V{SWY#u|R4dI)rk-N0`uN@jC)&;E4B*ngz`YFA3mOsg zEbReA@4quFVOl z2C)TRH(dC!45{>ftav&i4{UwRNwa}UqgiRY_%f<-Y-goc1FS9L|B&|3UL3tJxAx=% zY+e_{4%XO|NG=xJS!NWRq~W)u`tnugYCWn|Rurar6$cEPGbyLus@x@fk`8dgG>3V~ zCccG++#ik9weyTP#@j3Sj6ry|$2$w1J_o)pms7&Eo<6U%@n=JB=L1SwxA7Bu$h1rP zpS$V}x}QG#d(0_R;r|Y7`rGbcKgS?rBd?o~UG3u0ko^3mEyPQx$&b|Z+T*&32C!C8 z(U*`ZV8e2mT>d~V+Aj2<_W3Cb+;*wSpQOM3V7G{GMo*Da9)idq;c$f{C9oqsu_@V&UrUOt1TWZFT zZx_Gq8>KQXL+TwEVzmL!t*P7Fb%*34+vx8h@NYoiRi|uPhv*YClk)0o-tJ)othEC# zx-|+y&DR@GDEgL5$H-o-hFDSTFryWh*(|G@M`tcc5LJZAuVi*x6)iUfezhm@EI8aIsc_IR%+bMq)z~59jHgwfDX0Dy3MhOV2OWTjxJh)Km zbc>`ui&s|GJOk#$07OSamhhD3bILI`L~p@cPwl*8-G5DesSmPTvS>D9>L^jYKgUMX zRHGZ}6+h$6Z_i`4Tu}@U4HQ(+(M3yz-=%u2@^GSHcC}BAw{kqFA*cihJ-rB3?`+45 z%26+Vdj0x7+`x402y6iLlVFOFyp4~aaTRk&JIwIv*nFI`*{#&ptU)5|*QE1L{vOb7j#UBdraR>N*C{K(h}YH-S3cX&Qj7if;ocUK;Dq@La*( z-1o@@vQ+0WSqOH1r^?Q9C!u?Us1jvWpkf#Io{s~l*gNa8Y>NaGT~Bhb*mnH&MmP(= z=-0aKK3$eoHzQVpin@AcZjF)B`+D#2`}?QMuC>Z>E*pmLO-)le?7_BI=qSgKoO7zH zpzjO1&kdtL1P)h{e2T{=NtVapQRX#hoULV5Lw+-wkBkSDoY(3+;b0|p_S*nT_^@#v zzyCuym?-({(GOmq8Kj<2eB^7P#VTs8xA<0^o!y~{UXbHWjm&wcG&wog<@W<^=i}|c zIagVK?HKO1p9nPB`{*DCFkb+ER>SiY1aFWm0WeDd+(8;KYeX!!=&Bn3H2nv9G1J)BDTcn`_+EcC{i*``w`p@83 zn|is%KLFW+?Y)FXVLSS{p9helboOhY(V)fj_@I?Y*W*KJ&#PPoAjH2pKsjE}V5}mW zA_7T|B#yJVnD3WEK;X~ri&coIrjq-kEQOz(jd$L2fl?shw1L?!Km6BzV0yXLd{a>j zyKTTum!`|aN2m#Ii2p~mYq)3$Y{s8D{-UW1o`XUe2CN$L&6Uzm)Ab$azd$9+icI{C z`b+#H^5}m_Vt=K&J%|XM=bf(f=g6vB*6(>hq15?g*05FeWF4zm7fhhj6{xHuF}>-= z6OIh0Wbyh1Pu6{E)71|FGW305*LkxNDew%8u~A(R`Lm8nN%n{Cxr9mj;!E#IA0 z+mvs42mnhv3L#4K)dV3*qtX3f@eg0+o+29GBiGmwm&4`I$Z^o3%wr~XQG03{Y6{dc z)Smvq$tua5Hzn~m)6TodmcCzs@^|V=w1X#@^h+E4!s2@<>lna*#T%zYN8EoC$hsA~ zM|fOdGJygSLZ3=*z%WgCnu!7+-j51O0JR~Tzxcte^9Oas4Gd`k>MfVVHHT;I>s7|+ z1h4qqiVdS;i|MADqsqmA5TWeda{nRlU6qJ^Xikuf#XD%gLQEZ(}TC$ zI~wL`dK>^BA>mCV{R2$t`?)=Cq|H9QfC*!_*dQ=oe#ePyhhn(f0|>S5kY#$c3oWU8 zhR7Sc9$;#d1zLQ+gY1};EiCd!3iN!{s~w6FI^}&ITNOLZ$C6Q!U*_PI?az4|1@iB% z1&pTcM!-QvyuGpX2SyuYe?B|g+`1>Zz#H<#RVf`SBe}L$K-&>EQYBRkK@GE4?c|Kc zAxkKsaKgkmw}XGk!MqcSp+O9y_*7qL_M#*1HJ%>dxeNWs(WZ zOg9#^F5m*Dne&0#-{Sj!f8P5SZ|Ot#!R*2;|M_A2=+8s}W3qb_;w6EImU1TGkv!G= z9CrLi$*22|l27Im z7KTD|YK8wTTL~_%nd0@yv5Y4Ob`bDrkau~J3xj32479}E@IEc70a^9~{I3TWKK`G- zu*CawZ=|@OWk}8kQTFk=@z1}$II%wDbCE=MD+w*hz0Mrt|F`H>&IQbOptpJQl6RyA z974_@>NK3*4(XpkWTgZqTN5fz$4s{YvIrJ zGk+xkYXRv}LE@SA5_jZ(P_0|WStCJuwM3}1id`wua1tza5tuTnMJ+C6C1cQ1oF662Y6ueph40z$MdRTGHTedhU}MeE?W=iOv$PoGipK&VAN6!jlQbMaD$ z>3lLa``B|X3?^Ng3oP?r1f)M0RkH%-A#(vIm;j@ds?HRvXi@wHpCvuQu7e+U3V_H7)DfByBKwBq{t zxcS<7@qTKs$~T#u*;RY`bNIQC?WeKpCNHSoQKmmKOeNYB!_Y}U^`b<|R;ci){+<=@ zp8f~}5F4M$xO?|BY!Ip~(Te%uC%67^|2P)2%V#jBxw17}X=Sj&zgZakj}%)ez2BwF#jYUZTvNK$ur?dz5cF}2)X*!C+9!`F z#<(9Vo3{v$7a~gZU@&wDhhdQa%Hm(UQ2*YwhlKq_Sm-*Ev;B3ONIFvw(u5F7$o0!k z%#|RAvkt?Ch`P6K18tx36{Kf^mmSbMQe-(4Bnnu;EBqp)|MEmHeu4xS zQrfF~HuJ`BnbQgFcHeLp8xE@MD5$9Dm$DS~dI`Nu5VZS{ROcH)&PFQZ)BUc6qhSmi z>(j;yQx9L^Z9P$3alR%QEAfq`CTRK6=fi1s3TMkl!>;$|_XEzHMW{s8V%HT3HzDtOp8y4!=pwR%OW#r=>|HNwkkUMk zTK8{y7<3Ux8P0@kf@OA=U$>f+XBBw1W@XEy}kFAt3g<|T%ui5L0-VS^6^v;A7034vowl` zv{@tmE$ug&E7~y>8EwiVe2N8`kjQVVET3$-#rI)Ymt939?3TMo#@G)TT_1AJjq zb;s&P`p3JIy9!dMR$S;tSZdQ$zhqJFlo;<*O* zY(YVRR|Zvt?=|pPwsW+es!NgbzKyRvnq@&FnV+5Q0W>8^)6wFD3Txj5(1=I?S`@u2 zW0iO%g#?^NeO{5Arj&&{E2H8hZJf`1rv7mWR(L|i0va+(S!p|)<43Zy)osmC2fxViW-KTh^WH&GQ4TR{B8Bl+>GrrMPGn>H4 z1Y76W2-ZN?Vp!d^VwyHM^b6j!*V0wPOOJ~ZVPkhlmi?!`e)vj;ny`f1R|IZS#+^?d zR<(y?tLYlMW^bpw{nHByLYNmE41YEO{1ov!rk!_xv;e?B)!S$=15eqY(Fgz0d~3PF zemGk=E6t2vx$e()UX{UwKH5! zk7*;>>>0qaUQt~OrGr*(d8wZMCKk>gK@`GCZNW&Fcy=B{IQcC`ar?9k9(ghdO$#8^ z?MUKb#mvHbjL(%HP}kk>Zy{15PJD@}3Vm&aq+{CCxD~XGVMFSq>rsVJ@jp;8^dyR+ z0}*Z`p345=1|529(2uo%zFDc_PGI`wwc{NVjY-BQ0@id#+8YmKC#bQLD~>f*i~D>! zIe=>~BzUGa=X75;h#d||m5VYO05hF}m7@lYHnl+FnSv)*QF;b)MmuUK$?a^j=RtO= zA4tL#JMOTV)50L(@z28|ZV_p#9J-UxSmxsZ92Eb{0? z#~$lbtGKwpKvhAclYq9;gf|R|C9rqJdZ|yLBtpp zTH0RO9+Q&DQ>rU+GXazAvCvq>_Ln{{m*}1EN&xtkq82293dpe5TlI6D`eW09f&pS< z7Q8VQV(1agybz2#d>s!0oru_UQJ?=TMo(eOYbm+(%)-$?)RmmR(>g`U`p527STRTh zWR^mlgSkDajA;t~9H3{p5Z|Sq3x)$_#jX#J1H>Jw8l2Q!39Is+`?Zh0)aVcv8x5++ zl>r@YlPQTATBIe^u%VR)FrA(s073IRLbSVQ4W}NAo_q1g{L>l~HA+lU+^*jEfbm`N z$bAFwU&HJR4Fmxi})%V?yv zlG6zI^h#zu)r*aK+8MP&>@)6KrNN*_#?mLAwrK}o5cIo=#O&6hD$NZ{Vxels-A|I^ zDc+@drBpBn_(GbOt*6efr-QyM3S*vQqdupf{Ky66=JF?f-)j#n!n5)c86BQeTvujr zJv}+zS}N@B+0biOCRn*7#hjExMO2PY-{2yjo)<1HfI1en-6DD6fFfr%loF zMS#TtN;-EfS@-_3sDHljlKi?rB+>CivE>nuPty9p^y{kI&{-9rZIWrQstZY1$x-k5 z|A>3*uqxNBeG~)5vkn1xe`!3F)%vF2SHhB}4%Mk&qAxX;4a9LO>KmI;24w z&Uh!f)?VxE?~m`CbDiHG`&yTCt?hj0`;2GAJ??Rjm#w5WS%i{8$%a44yz|Y9RhAwB z?Vq8CE@LT@o8ZdTyPB}Kl?kC;#+&yQN-qu-G3W8JQSce5!W>g;@^iq)ax5C|eWs9g z-kV7YRPS1?TCUAPMvWb5yS(gog%DN=nT-6BA55rtIrf#Qb$C4A+5K*w)%rNAkw+2z zzvMIJ5RNa&yo2?$i<+cNPjs9~Q>?fFHQ|r`D17$xfAO!3w?mPffSFluxmEPt3$wA2 zhN&UqT%T_xg{I(3QhwO4Xiq85sw&0`Toxm$JTuPp*5sv4K{i`zqv>^H>lED9#fi+O zLxuFyTYO8kW98qZmwi~i-fhz}Ru64|&G}Ld7YeU$wM)OcRAO0E7(!KJ z9hx5Ha=P$Bk&!^ft?yDvBA!yKTF+sWm;-3da;NgjAD-0bF8T1^Dho4~Yo|{rH1R!Z z647Qi;D4B&PGayQCyc1AwLA<&q>`!bzaFy`_-|Gydx8_oa(hipQb}bunrxf_cauqZ z_zWEsJT~L@)%uW--@W;`hQmTJd%j46HMBC_K%?^4u#-&|NQq>1OCM?Uqg^pGk(HM} zOcdvk*DpJjw*8<|zMK2(sKVi=G&n~@K>uVLHQ_Hfl;oRHnpgs!nMUm6i-9>$eB zdtQFOCQ6`db7d)3QR-L0cj1G{9`6KGpNgTgb-mm_zt>4`*37FsO%b^z#dEc?gWKvt z$AiMG)I(;T0E;4{d)WUajaVT;C&%2FA{Q07LFXCjB5;$W8>iKhc6FGE;lFq!8Ac_z zLJv&46tb$dorUN_QHddeZ1%j-g=ezaTt2_jL64-j{u0LIOK(N?QR?tQG52|*WuYd= zR#=aA+#y`x^4drR6VMmletQ&6zE0eT%U7OGA_dNIebTWTwh%o@5K*lvT# zp0BTa-{NYFpJ<7B-2FYUE(`{16!x~36XvR`CB$IVU~2u>qPYF{+M2ZrF$P6Cy)3cM zS_VYfrh7QWA=rdLxH$G#&}s|v9g5!IoLJe!VN`Pb`_C1V3(^NK2ajS{Ppi0updHeE zJS}b&7lu1IUWff4nB`ZPTbv40zb{fYh|6Y1*DuzZ~7NY?faa6LmS*Q2W%yL6>LdhG0+bZg7W z(u|=W$$_Sm!16+2-7D#DZpD833_$Z2kX)T46}ad!nZHrkeV7^Eu{VA$BIoAF*{9Ry zW}rzD2bl_wahc!6MG~j%)+TYwxcK;iml4mMfFEgEgl81{P5JuXuf>b+0=Pvzaq0(M zTLvm>wYPl=d}WsM7;00*%epq>ro#(wjqYO{Z1iauKZT`M>EvAcpPsYLyt;0{<_T<# z2_>6xptX<*U-y#b)YD?a3WhoC)^9K%`00HJwpG6j1r6BbPH;uP)_AHH*W#aR8j4f%I zg@GDM;X-mgo&<4GBv3l6@PuTvxsUm&1yqdR!xEf_^Fm;@RMe6Nc{!!eXqyc)&1 zH!IU)xF_h+MGX_|71=*$xvK`GK*q#z&+>4jYU^bPcJ#jER_)$$hHLjC_u+jTzRfv0 zTCTVLH;UvwH{wp@>`-^g{gTiQF<(;{kqY-%Dq(w&Yfwo4xzK!B>AshWN{~74HUohu zAoFCDoL-4&ej^Rd4gIg>(Q3_jOtODkoLF%uJVU5cND*wZ>ORVEXvd_hyMI<7#e$jc z7|zI@(or{0Dg^FywkyFvk@&sFoS9;!? z8(%$EF?c}axlcAH8q;OU*G%!Nh1wi*y(~M$oi{ij%Cg}suQAG``C9)5LgbkYtvfpO zT~?(PJQ*xRqPcvzV$Jl0D}s}-4Y&?H2xRHM&ob9NYf@!4RueMS5C4CmL#~B`0;Ev8 zo(OTJdS|ZDeLLx3=sM&d?)_*^W=1@oZpL*1k}yhr05K)fP&Qjf{i5E_k3v`VeHTjy z?HA3>GL;{*wQclLCiLv@tWUYBg=*H-jJh^58lX-lZzn^D)jBRmRNA(M8)_56oP9l>SdQI-Y|KD<{n0C zK7H`)a-~W&m7;ZxmqR1dc&su{>cl0#Rl*53ahkKjC$i%fFhyBgzHdHgpQ>b={Iz>V z*pWT3q{ekd{j2oDt{Zm@YX)&wwAvjLI-<_hZS1<74tkAijdrRm!Wt6mjv^hF9o~onK0TU8<*6uWvfI!U&eur*30&@Z_-@E z^qoJ$n5Yu70zrb+=92rlCK3VXpx4o3^;gdXtarYfeq@L#Y%_0-Z6KbFhL7=W3Y@V7FfN;31O zJR_Yi714DMJfdlQ2Ex#4XWZYi4p=6jE$4j{=RVwK#)H*mi&%>?^~IQZ;*kNXO$yxw z7^K+2Nkm|T+q~JhO+U-r5g^Td&AwUy;ut`S5t`i|M6!C_1+Af)-=2x>M$5BttG+dZ zAo8jp!Gybbsba=#ShMWCG3_R;2F~aFuTyRlY9jYOAAv)hE4zA2WZm&>sE=uuFvL?U0#D>Q7 zWbZ~OwU`E2&n28G38yRt6tXy~&~m4@ez&3O4KoT9=HlMK?!GPL6}-mm_9{aujQJz` zzw$-e9{b~b5hMNFyYW-^_(XZP7;utTv;WE#&mq}jg6k8Fr#njWIPSnh(27ZsoD4O5 z?grDgJ(r5E^xXRps%wIYYVHmp@u1QyA2M)<2zuO|Ol}Xup&fMCUJ5BDvAZm}c zxioTh8sR?(t@jvdE4j-y+;clR*y_#6O5tp`?evQT;ybO+I~csjmW{f zroVcPwF~T0yq&V9>OMGF$+CLY=jY&9;tLZM%ZWJyHs_By)q_>j*~{K7>RD8j`n?>SA^(Q0!ZS@+F%M|IrGE6GPzEx z%43DuFAmzJ)N(1mg8u_e=4h0DS-|p=A?K!F)9e#-8bgDkh~W|^E=p5<{rF!^8FI_S z_0gK2i;XyCv%yVzfFu@b}%^UN>bxBjJ^sv>h{18Y5a?(dl z-8Ox|sUlvkwXT8JYqX#!wf_7*;h9UY=<_Z&&2haRArZa2)?O*EFVY8l&>HK?CNqZm zZA_(SR%5+IM!X(#Hjh}Gn4dZ!%YOe-#$Fy6rrii;qRc(WA_OsM8myDi{3I7x>oEl` zqt&J`eImfmxD!-ceFEEuZEY=Dvoi^p>2^|QE3QM5f<-`OF97(6B>~X{lRz_Z#;Lco zXTeV8uJz>G;f(o?3cmVqnT`cM3Ax=<$_B8{6t1AfBLY&m(?qft@rU0pB}WGjC0F(^ z6|&STPL#rI2d^9tpyPUy#Zp54G^O@EcQ`pYXM3;kMtm*zNEQ>iF;C{$TcWH)Or6&z z`viA_try5J6J@0o_;g~Sl_uZhZBHM^_hO?Cac&;N^BS*GeV4qAOK!&+H501flv=gK zxT)1SbqF}6+S<+rV}u;-eGk~3Z6I{m-Jot1m(6kdvXhAfh(n>e+sI%&`St0jyW!?C9H-8D2dV z5%5k;t?^Zxw7_L5u8Iv;AVuM+v^;SIzN?jy)1A*4nw|!-lzO$|HLeCjdq0E~W@`0Y z!pfD0(9XspVV%-p26=6?S2up1KCzv$buan+6+2w`gxh>$DF6(z;=4j(+WN5_b`^U# zVxnOD8*T-rd@G~xT^vtBtLUCFw2Ioii`NPn7ijhF*KT)Hy2;SS&NRKw-(GIsUY(fi zXFh4vI?(sxlE2v06CH=GCCQD?21l8oH)yS0uASK9YqA6oNyRZQV2p^-VYSTmhDhNOP0TJiLKhpag8149DPeygkC#&SAor0Xw+AfhR-T`EG`&ay8-uI?>j;M$2WHmzo+*MSlj3uQd=We zsFIQdFB6VJ^g-;SJqhmg;B$*IAI(cL=4QdnIxD-;n$a?svQprgp3JD;!_9gM5x5VZ zY{dH!JX4C$8P;S4IE74N*2*<*)H6M?Q&U1Zd5`$TPBHcS093u!R|Zh^a1sR`2KwV; zqrZFyTMZ(eurPN#IV7?4cQL7x!1+2k8gg@mgBv*&W+#B^7fw+d)L$kg3L@e}rzM-h zMEC2S34L1hkp+`6ROJLt(=cfek%}*=RWJtHZi%9Kmkj=S_D4+>s{c|wLz?I;1im`` zDI?oE@JCYbenx$6W`%>f&ikHsx?^5}r>lp29nL zFGzdZEPEd(d5&HCo)WgKr<}y)_=u7Y^3BP|<=DFZS|0#*!7%AM2>TsI$AsSD#l0?h zj+0=ZrxdY$(6mM`!JsWQj)5t|NPxcSg3hE%EAw&S9-5!&868U|Ww=F;(PWD*z+nz2 zlHe)Jg44x(7!i?wsXlvK{_VEHsVPn@ZC%}Q%TtLoI4sDsTS~EiPKEQ^e8;b!_#Do! zl{)R-D7?zvueFAzj>kVHXVt}u2W3)BlFFLW>Ele!n{*JDNap1pm57Kv$XIQ=EtGP` zpY^pX^oop{V%}e3WIi^3>i1EX-YUU!$Zu1LWx#_`H$}bw*9XZ1?@`UOhXVn6c07Q(T%El@P>JE@=nCy?Z_FC7$yXK~W1ozxI7)k-xp z;6UWHRUd=2eZD9f89g1T{iMze=i*?k%6$@ZoJf<8l1R1*J@onwcu}SN=O`Y9f?eS< zk~u-NFNoqOddLC~sEk%oJ~YS37^=y8LF!e!035lt!rkyBtbVo#FCLaPMN!o0yGI9oDr6%-51|;d|nU2v4~N!8y6se>Akzh97lK zKJ*maO(GRn3@dLA;$u?}ZI6pXnRrw+DV)d$hNNR9_F}PmL0?)@zb_^l=5b53TmV z1bJszQ&*s?LllF$x197$lM7&I1rg_pqOIZAv_d*ViDdQMVeTx5zf<^FGc~|?4T?`A zKjyn@&>2Nc&FC9TieRRwzO&o=lk;8@=~en!D+ zewANv=*2Dc%y#i`=*89i#{c@D?_$!a6T54tdcWjDN+fLP(1)$^Mrh!q;2 zPbZB*tZ)LWal=U!tbm63GB(Yzm+>A<{O#c;6EH96{(PlBMEpDb$b@rdC&FPyd7D!W zcS7&MTcV*MzY-2cKu?M%Ak2bhKKLoyP+Jw8Z=#_@?3^1Bku1ALIXdgpP`HxHXlaJN z5U&SE8x60)GR068bdp?qHSqiSoe@o$N~lN|clJD`zAIAHv?}aLFoouRi=z9}5=^3@ zXg`6Dhw>OtPM)GKMZT~%&rla1zK}}uVdgpTbn&)L>6S!6g)KqjvD~Qsuy-Tz`OZ+} z`yOE5y(j~j>&0u<-25DHL%aDm zOGLx9Mx(}_M!uz(X&+WtnN*C8*BIxG_QEeE{ODWlCQ~x0|E+%ITx2G==Cs%7@l9Dxlx-00tQ=Sh-?&`wXgtd{G*3( z)=cyUl*a#=tiR08Zv0Gp{vwgmWjMskZkq9Um@AU0c>2vWkBK3yP%}MQP=~iW!V|ff zDSP~OPw{vTXd$hoTl1H+dp%zg9bJ=DG4WS=^h-ez39f+tUI6qrIpuMt5um@^!7XnX zA6`0sLVVd4O(P~W^X^j~_(><>m2=CqJp9)O8hsB@jbJ66m>(n86ti#BD|tVLvmY%v zW1B1mhmT4dOyS~t4|*he!-_(jIQr<>rmx2ydbBhH>DXIG{;Gv;aIPf647sF+Fhg=I zinxj19Q!__7h_ugbTlW8jFA}YpwG>T1(^swJAJDQis_?Bi{7USsYQ0Emu4ac@_H~7 znn@m$!0X{StNRIw6iH{O+OLEK`LNv~;yhau-?)?>^~<{nUWO!M{{M%bz}0Dx zu-f-F8&vgIH2eM{3~By_4?b^II>rarjiTPW>@?bm+?!W?Rl)3CmNCyaq-`DHhfo)! ziNq$f2xz%X_1?=p{%+2_>~eDrmjSv0tH*WXII(OkFI?qHLy`q0fPzvYiQ3%Zmm`*$TYc zlSy*0NqT)ni3xEXW$x@gu|7CM*BGsN2L6{n zTpBk7>9xrNLY+1tq_ycVPDO|*0M)$-*opTqD*j@4(5F*TJ#QhyPLcdYb@5*x2-6v% z7)Zj4oVLC{amc|fNh-h{h@r;sQxk_AD~papY=aS=O~PJC^ zMx&|v73mBJpy1ivwvqpn=kMo^v23t-7wW(NLlzi)GBbGdzUL)K{a(EKEA@NvC-sZS zpqv`PNqG;kw>IwvrbYmn!w$<5x}N!y+f`n3XbJ0H>34qM{c4$bElB_WnfLpf&Q^f3 z!-DCc)?k^lh#jVfyfp!kXvgG@z(8UoTx}$Vd&0k&yJ?ZfM~*t;Y+d_`;%J0xv;QLC za-%rn1ev5BvDaFbbo1d>n-@JZE_LE+g+bDa$BeddS|=a|XO#0(;aJ~2j=@~p{PtLo z;0xlMk+X>dzx;Ze-|Jr=I0==bVz6VsMs+j%1@zRDzG3h@W^XB`=aEcb{1UmpPZaV= zG1c_5oA8L4&)9d@kFUxT%6!V_#m9b-pmtow=rjG#;}d{%w*QSG1&-nI&E?iy$^K`^ zyTi=`k5($gML`|{kA_7SV|@|Dn`4d+a$p6}L049Sy#pQma5p-$RhTl8l93T}+9P2C zDJC*6ABPDNUITp>BnbB?+^>ElV>EU1FJ8|7??Ko;)xZE|)3wh47Mze4|Cbr29Med` zGw60YRVqh522>t+Q}^I*SL7sABSQ=^0O}EQU`PMS z1K(c^ojyy7G}<31qudNRDWQPyS#WPr{BwSnbF%Hp?tcl4^3fj4${K8Pz23c>)phgE!-p8W@>(-_1n#U8Lyq=k9sz38z10`qg53 z4oP2qMAIp69ajL}gVCrYkXT$6mx(O8xftQALjB=n%#DwEoUX8w;?fHNgg6NHs1F6E z4;hKIy$Yny5U2Cl;jOW=q_iHBZS73ZN!4T^1Y_RTd_szZU{c%WvyYL&7pYk^!1NZ? zB2T`OIX1l$+zI;5i0OS%P-F__B$Z_co+A? z0?g8qen)~1jNiS4bAT)Y-VX)&t;u8KKNApS#QMLh5|L7D@VeVaO4;o2k$xJ*i7z(U zHdP;F16S}BLlW4eW$nbmpD^_Xe*(g1?9^EvS9!@lu5S-x*tbcrD2Cm+LDD zLBj9*b*3q1DIn4PuPQkj%*b%_+tncxXVbRtC%cfNY>xk=>S;_8uq;k~h9~nHklF5j zrQ%YB+nhZasVR30aeX(;^LT}iU0=UfMNvG;^*u~s$!5@6jZSKmb|jJJ7kfaLHV{FV zHVg)#P}e&A99mZcpRBGCeWW@r&zm1wz2JtIY=tTsoZVd!JH}Q#dFCMT;-yAh z9pDUb+TZF8>2Yw5Yt8bIB_u_;O0}Q^{|v`mg8Njs0B&6ao{EcPv`QT1=6t1ssTGm; zk%a5wf_$fI`>5fK>+n@g(|5joL+pHMh=wcbxL-h?8vFGMs?MzYQ+a{0Be@nBJK!~V znB2$JKLxv2|06&rt`u8p@xzs~lDQNg56@woL>>_i?F@R1aK*RBpboKOy$~sqUNX^> zO`{=RASkw|@g?E~!g0ujkdDPPR`Z(n*%zZ>@EL9b7uQ9k*0!IZHFq96$dx>SRz^KxV@s(X^3_SvJ4<#iv5&+ex%EGLekWD%-@PV*){3z{eGKJ=C4j z0u|-kN&>C-`9tqQQ@fu!@+XM$dczH zj5~C=ZuBlH_lp$WD5aUII#4cBECTfrsRI zCz-`ok#>c|O&Qg?W_bU({IYH@(0?0S)UmN;xaRu=dlJU!JoC6=!vH(>JoaS8qo63s zjO8yPBYGfr91^gJ-j*U6aq|;HB@%FMEJ2!ir@{AJc-1HiZ=#S5eRA9qRclrZZ6_MH zA*W4E&grNEHxh}LxfJjqxp(p6phRYRa!;Y@QLY-w+vx!&?EtK{#wFP(0!zhg0mS-K z%Mj}yC^4kMNj$bcRuYMSIoFS$o`5|fgAQ6?hgwP!kAI+w?e6jutU!hi)x;fp!On(w zdbW;8dDg%22|z1Rr*&NKoHXRkA4k6aZB+CQ)0DvJ=6n}7*-wiYBvvfEkr&o!L zczXp5`X6hI(`#;Ti;a^CAy)+k^?l>jE$DSQYhtFy#Pb8F?Y=AfiaWEF zF$l?J>ziv1&=OnCC$pl=ufII<^`t{k@TrPF?Bs>zk#{i{p4?E%xiQfkH8=TK{TN>@cxs$Enps76senFU)F#6)`#W) z!K|8@B*z{t{D#4#Yr9`Bm~l;!-A>hgw6HtlN5g%cWUy6 znW1z$PjI7E?evLJu3%0`w{;0pAkPHJT){Iar>>i2)aG8qtlO5Y+0z8(?Na1?zBCen zlN8Qd5hWmS(iGN*4O+y%O+4Ta!al}QB(CL&>bQwvk=PBr{GuS9adRxB-V9)u^tSv{ z;QqglB2?~9FE0fpTxIQ*5~~)EBB$OW+fj4#11`ypPa7{o6i=mTJ9th%<#CuV$+1O< zzWV$W5lMN2UCC38AGn<8oGwb6`^=qlTjvpJPpE;v!i^r6pW#J*W-Nd1MRL^j)$3!-UQ&T@QPIntsEY+ftyIVx{wGdI zrexfA&5{~AdAj#xtf&l*Go^}QRa~|iV5R;T!#x$%b#n8>0zm?(TA*q3Qe47`3wSMk z*mzxRvtP%ih0EMb*>$=jQ^olwErYAb-f9a%)O?!F|rnkRsGCfDV*%0;zN9g!kj?SwdSm#1vr1xr}KSvHI&F2=D z)ISr;Iwvtj8mJ_XLK9$}0O1i{L zUd%7h2gn(MK2SWLZEOOo;k`icDqbIgK*{)JJ6={WALJ^O!0XH+w^I-=#zM!S{r+&3 zgm_!&9Qc!iW1RR=kGsWrA|*D&eJGRqd&fdX9%%Fuu8Zzy8rs1PvXfjF8$5*jrdQTDI9&bB*dz0s6_9% z(t*KMb+IIBQXqif$yusiJ;cexT|EDk`?x1y(~9OmHGp)YIB4ijshqI6?>S*FQH3dd z1GX;ho)*7#XyT1ekC#yCxvb2sq&*0X6jg98Nvgl*M(%?*d>w8%nlGD8D82vC_}xvO z1=HWG=iJWUBty&hSG>I|M9T^+O7CjUJa;9Cf_=EZY8vJwwMmWvZV7RKvB6xX7_HqFPr+R?NJM}95e?!D z7NZr80pto*AMg_|V?h!ri1sCo={RY8_~X+J1*8_&`bO1p7fPgM*^Fx{)Zk2YA<>pe zfU2_12J5}s+utZI`Mv{nKk_b=Y3Q6jU@0~G;CxSzrJIW>WaQ=f`N_yGXLtkyHO2c(aB=H zAeY9t&Ma@Fmb4#fD|z8cJp6|-)1Ap0eq=L9XBk*A5B*(#oF4ox(~(taFjDFM`YX%K z0w{=SDl6v<)hw{>{VndYh<==k>8sH|dnMjT@`le7RPjdA+ z&%qOr*bmcl5t3*IZZr^*{UEMD8XG2MQUhIJNOu^5&|(pQx2raX_2UQd3j+8-wF`BFa-Fd2A5I^SOxJn;r;pDddz2~Vd$r6FIGw=hdp`e1{>VHGc;^Q|t!b_9uKwywj; z1#-&4xQ^`@0@&?SXlB)qg-!@T(f6Zaq9f97a0(@ik_48^5|fohuJGB1T(!0C3;Gql z&QaGY@{0Z*Ml?aS^-YS`Kxim}K{Hv7E!pkSeh=l*N^4ilb9K=lUSf+SW6@t$Dc*Un z6K=o`rbe##ohTaNbeR5V%qv#g$5~tt3{;0)hrd1cDK+8=?g=V5^Pz7lO5>z`b7Jo3 z@J518Hx+aFGe~Hc$_Q-}sE-TTjuj6}GE^h?6+O#2R0}P1_aVz-)UVpg;J3Lo{R%&K zKTu+G-VR2CR$4Q5!1}ZApKiSSPO}>$vrPpO!AFW#Es<9^i0sH^O?!$d-4};}w?o4y zK1rA6WyfASj|2?^?#B}cS21@K@EI=6CswbmCA;Z;A0yB+*_xA~$I>ptJ{nlF7y!U?5mE1BP z&p^*V$hA96-`K;`BiSOuft?$qM-8&wIL6MOmLz~6s%X&T%) zLf?t07c>29;BJ_>ZJ96qX)%2!3@!0G=F{FEW6+_K@)OPFHfuKZ{H|QL`?+wOyxs56 zd0@q&fpnm#Sr>TY4AhbT`B;e+eU$ zjn3_~(k&zh@;_sFQkV@@y5?SNzrKkoT`D69VB+>|o9SOzd0apP0j+3|&(<7|`1DAs zS-_mlFc+pYJO^Kn`@(=gV0(Q2+E9gc##Ia-KTK0^?~C~+n*uw2Qace>q|BlVAv|eA zc$!>?ElpQoVDVGLl?0sk52cr)HECZ|A672doH-QTot52jQk5DggrPKnz~7U9wsZm8 zHKOCoZM6p4Ha3~x;=-3>6G$warLgI|Yi`x-Q1D!>eeMw^+&>ADyxK!$i& zLV@INNo>Xb=%{Rs7i7{G(|tAg3jq%*3`>HO?(Ec9--mx)$}5hjI0samZei`Fhdv*38@3fRl0qz*>ctI*Sq>t zQ`i|Mf&vuQ-_$c3OpdW1X+M#-EEhmZX~wZf)T31Ae8H^0SjEH&!VE)-(I^$qzdo3w z?VMwLarJM)^SMfx?h9I~T)(-~u^Pgb;&*2|=9%B>l3I0y4(H(h$@OfQRTA(J@LKtl zsJ4A%VI-3<8%{2wwduW;tL6Fa=BWZ;tuck%&$0X_i1bSFgPYG6oP(NfFbRva9q9%M z0GeNc@O}z}@L1!33kcnyZ2S<7iQ5Pgs{YyDT$5zzwwK7?y|@>eP5;5W3ODbG{m)TG z%dONQhb5(yMJmn&I@dtIR~Z`7ta~#fA$RJA9!s{5gnsDNBbO-ICbulA#%`a?;F9XH zcg9jnJ$(4QJ#vn)4^~EIOqcp}a&lbo32fMN1KIM+aaRQ`Pj0~0NnK+5=RB`LRMx5F z7hhp7GVA3t7twBixWBXZrGO~>3@9#R^cU$Ue(8?$-|dAd;3-$wMcJsoEjYFQiK$^W zg0J>r_o~$PV0wbtK%AJz&&%KR544|PJoQ5{#mA%W?gRe^Veqa}r(Gt5G)D6013eZt zsGqxVgg1cOG1w4oDDMJU@MPpS;|3Z`Rhn)kisc7dza<9VhF=@qujmIIsfvt2n*=jn z&jk~jkG+(*yw9V7+z%7R)bt}TLbPzOaa{av&Wp$c)`dqLvoBT(_cR2XUZ3y~lQm&Azg@YNvd2D9XUAn`%yi;* zY1on6_vQHjTs9)U7w>NW=yU5RY9U#k-#QiaYKl33h_B^QC+3;*rSpqq=1hf6NGx5hNe3;vZx8WA11He)U4)uvI)}f6AnNe zw;o_i^;1DK#Y;u!FPg~|UVYa-*Zk}z{_7*qtn0n;j()DYfGGFPn};cZKQ4lM#=#@m z^^-!zj4EFDJvw(~Hs_?q{is5cYAG`|ykbM{OpnLoYp`J`iavnl<76@@bMj}j+`|@PdYLu*(?CsOtt{v_TQProcR0;&i`8jFeQ4>(^ZV<3ymODt-07QQ$Z2=+dkMeH&6z&C$@Ug<~LNkOK(& z1en)F+wv)`_A6_X|HG)MePD+mQ-%LA;m73t3aU1c_|HL8x<8`>OFOgQDg;N4>iwrf zy-w2(O=SG&--KZ|d1l4Y+(*vKaE9N;VE18K>e2Yj+Z%Zq^DxCVPC&ysCKdQSFi0XG zruaADlMbUZFCe5f-RKfmk-RvgoNHc}V#Fr!rd4rz1V%b+FVa6hhoWk^#0&a#OFqZc@HIOVN1)l?r3@O)dVRSGGf>U|=<7XrL-`uv}-6hLij?Gr-Y2)h2lSZCX?OZTR zpZdU2Bw%0Ek!w6^|L8D>R&o#)f$hi@Wk+*U-zQ{v1$#t41!G`ySM))qYLb`Sy9`*Jrk0xbTH)5>Su69aI!P?gFHm9@Iisr z7uioj8aPQbNe&Ab-M5xUB`vdFN%s_YOE^)0G=R*$v1^)Y44ruNXu!gaV(tNqh*}s* zP_ug{CVqX8lRyf#-?j)@>^Ht)Ubox~uHGO;z;GG~KQ3kYY^uyHzWe?v&NAUujP!1z zy7YmN&+Uy6U2PJwfCIpcpR9&lzO4h`)}F|BzsIa<&sD3%FBEhjIV11`llG9I1OE%} zBL$$VNh7yJ*S)r*s>3 z=!6<}X9F;WUVvV^2xc{x|6oP?Be5KG9Jp|B!{E%FBN$GT!LbF+$;I z^eMAVHSklHN>AIyn?dHVv3B{^5;BESc;kFAWVnS{33jZ$t}rJFMETgL{ll|G7@ybI z%ByuPiS(KJlRdx5UoG2btm^LOd!eH)dDmxSRvkR@6K}*z9sGFpjPx`^ah}KGux^z{ zexl7sRrMF3!uYnAQ2IKtb7txz5t-9OpCV-(9CFCK)(AYM_lfpzJ+Zyg=pw_&5lpHM zz7(oHzfY8MabOeD z_qV-3Qp67eUBrqLH8G%s^M@3EAs=sHxb*eV$Q(E4)w2rP-t|HxE3-#A@{Zt_UC={Nt{gze$PiBx1!fG8;OKjL2Xzt zW?jr%S0!rU3UAPb?Z#)#&KS>}rO_HTI#ri%DUMl7`*?@2gIfQbb0KT+V|6j*vZ1mY z&pZNgvRO~*c59tzYHDh%T3BWHu>Bpw#D|nh%CdZ0YlXul7LP*WoQK4|((=iy@=B{1 zN&N@mPJJnozPGh6hj(bI@tyd2w7-mQ4iehQW)TgJGK})SUsBo45ryhYchwUR>&lCC zjZ6oT7b(ZSg8ZKuAn$t9+&+sq_;*{K^4xK+6Ft`H0Z3u}tqa0pslt!wf_(j>3!;b` ze7(f+AA_&0pvi;4#1BA|Cs-6-ah&M2hxv4H>pWPS?u;XZQ1p=Ni;!ED3UW}8!5EYz z0TrS3@$}P2uX|B$sP^V5dh!Gw7Sw>Iz0c7B;p|e?Qgl*t^^R+fR))fO%roB{jb$mV zsn4D8a;Qw*dgR|4eXlj>E5H<2e0er>ckyIh=G9wt9DBawVQjNg3Htg@D%_!B(}`H0 z9Yfj_ah?MRAn-mAN7QSjKK6t}uuL@3nDp+dGzyK? zW^+;bj2TEV_ov(78Qt2P7v6{#wfw9$7#c>J9dNMgqJno+{&3W1fk#A*&&l=TQu)M7 zBFC+zk+Qp*&~hUbzTW?^_9%cgL zx{sx!tIDqoX1h2kz^E9nX@H{K{nK%s@wMfV)7`1J7SGNVch6+pxpU{`rY6&cV1S!G z-hq1DY3qK_5SIckPAF-%LE)3_suWMmu|UGxbWHW)Xt4VHTZh+Vtm52q;lYS%i%+7| z1k>)9?f}+^fkPXf&XfbMJV&GUXM$VGu7e3if_6RTN4xJzIy1}53x-U&w=q_e#RFd+ z9oz~W-u0-=P>`)}Ts|f4xkPsK#K5;)r^)#pq4e6DFE{%aJwF8=t}_Ul_F?lC=g$rI zNC{#N9qoL_sJ(D=UqCR#l8op!HDrX=TUGTo?aE?wqx==QxttD?e0rz>pu0V0v{CQS zAvc`Lx&gUii7*cZ)(KYheT$~c!PuP;Q-np%$J>E7ea61>;v$$o!ZrXxwma$F8G1mQ zA=S-{j<>@2jej?k=)p4Tu=X9}Di5B{#DK||C$^an?i z7@Ar>F2c!?adb<6?kYE?i(o$pTHsL*kUvpRXwpu8+JDv+aep0`tQMeyQ@9$>2 zkN#G3ZG$28f~WtF<;#aRRR@J_+N{MEeimDMR#!1CyUfNdG?JcCX6lcTeoN$NSDFPG zpkiOI4c|R=I$WYU2HNatt#@Hqn*v`iFUUUi#d$*%ek3`z5W#n$(#|pw7svV`#JsnA zrVroeSZ0f20{x?r`hr851kJL)vyhn+ZBzo8KCd3c&V;t4z|K#uU;l`$Ru`R7J)2WTPQB$gF+8i=G%-gzK|&k!i$wL(-O-p`TsoZHhb8&+j~ ztI1i8Gq_9V>Dpc6*_V@bAzqOV5l4Py0mHNkBHz41RBwGPi<|Cvst9OR{E&O@15k3} z9)8Z*4%3}-#kNwmWf7a#$YF1gr2bD8^8LWkJ9mcrVek{t=x`i5zpco2*x=JmZ_qf8 z<^7M0i{ZO!tSo!M&L0_=uYhoTBa%Q%r;yr5V&12P52dRe`z zke9u^dpb&p8CCkN6<8p%iRY|J3iSXE!8tBb{%}gO_{qYV+ab4gtdj+5Hno5kuq;7pMRuqLqt?mXt-AGC9ncm$rmk>3k1Z zSWG;f|D6F?o}K`Y&EY$AfErQM`5rx0K(Ct`?{v`qd3QfxzV?r{B1|0_t`i$DJbGCp zN>j+9sbBGI7+3+zJ_#6tFx*EVBcH%HCUDGsN}$H-Q-)zKpW)baxdgb{RsH7^^@qV4 z`=ZI{DuD&DXqL`sYilT(x}V=z#a6q~+ioFv&B7Uk zMQqHjuD+`QEvz=XQS?>mRP3f2JW5G9>FcAk0|jDMp~8`mw|Dpg)a$l)x^3njo#WHq zDKPD?`8qXj-yrzF`}+5?D5=9qE8|iZ_l}XIJjIDcP&Fy|>3gp9#@G1y!9uoZz!%JK zeq&#JG|T?}tKx`)RD&W2f26fANS{3c`>&-;LBPS~CWHSzf00aqRaW#yyZParB#~RZ zqw;GG#cz6s4a_q|8pXpZf4;pjy6;vw9?q2=D>|K*oy{AUkPx9mRhxA#BH|irESK&D4L$Z z@fd$`&-m9rv&AEl=RX(n9f{KD*|&~Kzqmjin0*MV?`A>bru4~}7HkKUox3KVm&OXU z97Ae~9!}GVN6-p-7B^T^6;1Coc1bXw9+`H(z4ZZ)4}Vejg)x0aAR>lyu-$Y5HyUoTPFHeeEZes@hEqBzhV@R~{X%=X{=1-KW(=XB5vq%S|Z z#Nk**!O7H5ZCCQ*%&khMrCraT+p#z67B7sCurL=&AMB7nZAzbusB#mI@HUf>uB|=X zbsFB8P`B(c%v+FSimqLczBV%dc4{l>7`)@Lbmv(&wD#OG^=#o$ytIVWTAnvz;ux4v zha~o)(MbcT3f9hdtwJeB{zqVl9npvgt|vYos9{!Jd5P48DIQI^>2RGho-!(GAYkia zxSl*DPKtu7D$#wY>F8=phK@eitQqP8QVJ12iGg_I_Y10`tK;m|4VG;6=BYHD_Zy zO5^2ErC|}$tD5pv3>n|`+TxO<6~6jfpGPpYNz-7n#<(lWQ<7Fo0{`{1aL|JaR=P|-)jrk6``Jd^s@V|zG!@1GW=;Xqq2-+$F5$y|5fA)e&g3bXBjHA>M^v5&mfkvr(As540o^JPA6 zOR*!7nLeI(-)LFGweFm`SzpB=wYi})O~kzdYh0o$)=BYR8aBQxxTw*UM$ToXt?ZpD zU?Y(1{>x|$cBtt0l4{Uiq>mQtVF)nkX zM$*ZOKC0!($*sL9!(%eS{^;{F(kxc(RR+9<=ew`3BSLa)Gacuq>n~LN*j>nRD1K$T z^ShVPDMSx!a`tUB9HJc5;OxTbf6`0s`8-00gXq$#7mNrxX~ktPVp5FU35xhl2eT$q zZTc4pD)A9B)Gg81i;4?@VEWp0`M@RLx$t?X-XI zWLTsB3i*P4y|rbsTcm|L>-c-lP|M(9$Yh%M1AH4CH>=axOg%?RZAUu;%kOS~lml>z zjwhyX!frI}wZ<~nT+q{9G63Gwgq+5w(ADy`jnwA){4%eNy^(iYuNt!gSkbqvz=cXzy6_ zG`mJ4yz3S^wDyGGvwZG22%gm1 zp0b>^o_ZStF_}(OTUB89H=j}kul_ZLM7EP z4!dfr<#f!Q^R7)cwG4uOV_V14TGa~ksmDc&LpjWn(BHG&12x8Aq}w3aNjP)3Z&I;G zCVe#39r%h)JYZ7MgpmLY+CR=}YSOTaSL6NFuK6?1jZ&-s;XVTerw(@o>ta62fd=zZN#Bb6<*C;FlgW^AJ2!>4jc`2Rk%irRfT z{-FAttR^X0*GiY1f8kFq&#^GJ(8`q$cn*ypf4H0jW{t7ZF- zXs1)WY96V+5zEg=;xG4Az?NxXGwIOI9PJm?#c6U5*~)Y~K5vt>`L8}lQ+$ES5)|gu zR!ViRLq42W&pI0#e!XF_A8Gzf_xPFe)v{by%(A}jFU62=T+@5KTamdIiZf81F_;_i z9K1{SJ-fMq4l@s_ihAo^3y_&^0Biq5qzY!;r{FDw5rucncGSS8em)kTMnK}#cWuSw z82bdgYkx@8Pukg>3A1<8L%%j%!7hKkM|!L?EnV+$lakZGK}#!|Avf$&{Fp<3z-TKz$_WfY%Y1B?4ztm0c6e7p5di4G(jax=2rpD}r zV&}$&&j$ss0>&9?5BI(o&c;8x6_!n$><21;t0K5{+*E=-+%@Z6;yrPf)diTy7}^JG z6h&MIUnV9$=t#mza}-dh-g(IxS~>UX+3ecQgw~rt*Y0*`Tp@OY{iwiqa{A~E8UREITkzMp5m@Ar-UYyWTz#-#(VbDeX|IOZ{r*xe|ZcFu#}8;ESZSz(9)3dQy#@RoB8)x`{ZB<0r|1#nL5KPlav zGKe}r?=;^iKz{I}v^tV=N92Sm00B*8tAoJmu{*6&_omnp8eP`vBa$0UPyxy&B1AJ7 zr|Qq?Tlu*z>Jyta&D0{paO1<65WwG?cV>!~dcda)Xi0Ojvd@xvhX{4bKpsZUiBJ6d>2Kpgz{4btr*2x0H z{Dvjs*Li9#2=(X$F5+5;?A@d9r0K;Y2EmA}bFeEwMen(+anRw2wB3`AP5j?U{jY&e zV~hVOx#9Mt|Lz3I?BV5}Q9>uUB>D#Z?gXj93EKBBT&;3DT^7z5x){!36$22P6HsNf zSXD%@r_L6o$nrr0UEZ`DOk)WCZF?W1o;@=D9FThpz}7K|UyBiLV)R?P8jx1-oO_S1 z@{SclfJ_g8a_l1$aGO(j50x#aONy+kO^+GDZa1d$Cd*@)zM-MSp(btoy=mO7C2ExO zb+Hz}zkT8Dp>Lt#*b$|)YD`7e;B-!kM*4hgAf3;I2qLnW5@Aq0pv3V4OO^sgz`jv{ zGMN}V6{-_y`kLeaf396nwEs$-IVCOmH$qA)e6;dk;Uf&*JK-Z?Ncc#AEc1LF<%I5a z-(lQ}+qaCIQFUAg>pQ-t^S`5bB5gG21jbfith_A!WyL2R5c2HXD75*(o!^lQL+AqI zKhbdAa8u(H6nk$!uw}f-`DY!2n;&965^Mzswz#P%4vxWq*u6Z%hYQ?l2D=d-mvD}| znv@154t|-tNwvGqRFnIm#ngz2vJJ=&6;be+QN7LR=I6doyZz~narze68m|R7P34Ri zn&CgzfazytQ?<$sCEc*?4=Q>=ZC*$$_Rk^MfNnk*D>|GofaD#~u!2R&yFY4QT9dB<3W>3kl3sv>LkYDrg?xd=vD2kZZU0&? z24gGKJ?xH7HPHB;k7+slEWGn-tG_;i^jX5Z&n2m&-sYRdY~d019un$Uh)5Sn%&mvJ zhz<)+iIeuvTT_GZtpdRtE=<3vRP6)6pG=6^JvS{xu z@*qvM9qHjLSy1`vS`x@H?tnA5kP1WB1#_gkDjm6O%n;87A$t2|*30T*5cVLo8i0Rc z_T>eA`^q5+A#ute-WO}vhGcl&@B+WswO5_*MeE%Zs6ypCr2)AX$tH6N_WEN7sl3sm|( zIq!Pw?X+8;zM^x_=qDCv|CyHN_T^EQp6=x<0J$|(6AbY})14%)5190!?Bhxhs1`MC z;6Px53Mff10x{Tz?pmmGE66TDPCt0(25U+RFQvEN(FGH;Xe&9%o?p+kqzDR z0vz69up&_L;?J_;A6vOKl$f~b($IdOaV$#A?L)bhf52|KO<=hoL@&N{0jVGNjVCJG z+w1Z*sxtyDSk4mS&yxk9O&<~{v}u?%-glD*+&ckyg zv8|O{Afhs((ca>9^r-<5TBS3+FN$<-H-4n5e%3Hkefd3xQ~;aww&0>ouoj}4XrFXj z8r=^Db*(N3>OkcWApxo71WFt!Q}F-qG7jVmz0gPtYZbX~1QEBbwF?25eSyU*i6Fav z@T*L&0d+igFoA;hBjsGvxF!e4N4M9w?&)zF{C;q_-dczp z#Bs(WUL(kY`31VmU`)7P=582rMHk~Ak-NcHIA@u{WGB5+2IuvYsL=t zMo|8bG#dXF1Iv>9!>QYbpZWLFI{*8*>sw`|6$WO8zI`}Av{XL03||p+)64bhgd}%J z?(sJsKa##O&yq|AbakbbMTULFJhw6@^CwQ9L2iPJJnIbjjuUh3nwfwO{OZZu3E;5i z8u4oW1$ua1(%-x(xZ}Y`ZL|H>eVyc92H}9On4_H;0gLX{lk7c!&~5qprqe2BJl6gG zv4fulxZaqjcwn(1m*8`&nmozB6@c#s8kEi<>pBeVa_16ZIU)Y7{#%=3(2`ro; zFRzzW4L;gx1W0BAlTS=a`uLbYi|t6~%Qwq^71Wy;$8IloZc(n$Xn5d!q<+uE(?(=M z=)Qr%Rz9&^wq48lxZGg}7~!Fb94a}A32!|>YiQf;Xm zauV!c2q;;aNbOg*!k&9DbW-*^mzf#qXd{E$gNQ37>S9#%Z`u~~Z=E0bi^9XS_{B)K zJpX1ud@1B;!$EsVgi4FVM(~9lHg@~g@%P-?mUSsr2t^#Xl_Pr9v+`mOOBWXxQ&%xp zMdwpHq0IE%&9b+fp6HG8$BG3k=Sy9NC@+%hWi?i{67+m`xI8X4%>LvlOC@75=sh`k znjjxG(<9t;duH>{gwF2z;78$5U2nuG_GNMib9rORPMu>18n=>`7R7Ypc1~4Q>~rCB z9D7O}Aqq^0_~J%I-x%ZPMGJ;NTILh2C{lWe-4R39xluK5drhy!`Ps`kbp&T$e*VIh z;hobD-yeh32Vc1U7#@e3f*i=}Rd%!Ije2pO)@^XwC?f>EqkM#RnE8cAMpTVWlBBEL zzC!Ioc-|Q=w%mr4Pb6{?BDENU54mBneR_x{IX;FhU&sT)InlvRwQd@}|9;Ri7#HrB zA>fTdmSgrVLP-)^!nYozL24|8Mso2;zxTXso4-A~X3}KKY|mobnY*Oq;;tny{Ru^X zkWzgGt9tmR$Ko7Xb>ynem2uS-lEs*R{5ZO~B+s2qc=boD+$fqqp-GSR7fDebwG?_Z z*0C`^U}IE>6)phID3GOJz*fg&(iG{B(vtKPzA~S+K{N_fDlIL|wt4vy8T&JHmZ3g7 zslZ!|NFYzva>sj^fQMtyr!zMSkw?Edth4*I%IUCV?czhjc5h0+$YofoF z+Kl+|DPaOuahyrOrnqFG95NrY(g)p{DIWor9sW-TU>370$?>Ikz$?iL2}LuQ#w#hm zTuf4Km&4&A!ID7sS5v~5ewh`=k`jhguq3Wl8HFPo`B+gxTxE#}TUMe=Jtjg;IR+Qs zpu$QnZKoH*a4yESEB7&`NC})JgXu4)Z-6BK(Wn4mcw=DhaTK_ zC)4SkNBtez52rt1F{r*n2ZLvEFG#~J{6$b<&ffwJLsXpiin955;Y>=0uZFT6Xy0vG zZ|1+?-?AtamUcgPk6Swq$>G))mMq5=FZ0w&pY+_G?JskmWWS+)CbyBzK${X4RwT)x z_?@qUuqY@QiID{BO{8(!$Lyj>CbjL?Z<88QJPO}m|2>*@Ij0!kS$aB|%nZ}%Q3F3b z&jOy)WglmIAmM?bp!U0ZE4vda3b6U?kXiCMB%j<}A+C7x#IN=6D;3PS96V*5ceB+Ak#xTCS1xy&#hnga@bEG}vv$J5y)Ve3h%!H&JvM3X zZJD~Xt62D&zqe0sX%XX5(o)ygw-iBoe(9hm+%mxb*pt8S<|tvCqj7ima(Vd>f7h_7 z_nLi0Ny)8!jS*L>xs0a^AGqMhum_8<5E4<@Byc%t;el5;mB$%s;$Q4u5QA?0IWHjv zy<#PuP7&L)+p}pqX>EAuoXdxd*V29^#*+wJxho`>>Ky}1?ou`b2BT;FPnj!magAXs zkK~EaTWL`oe5rjo)&1<^xAfxP>F>uTxI}cNJPTv5ok(^}Vav&4Y#3UE)%!x6)dgVq z2Wb5?xl`FLUIjid)Wub7L$5-n82>?Qt#?}y?q@X4O8a_2deMic5^?GD;Xo?92O>-? zI5!gx1E+EUn5*ZR;%ZSi)4!8@+y6#oQ71-Wcsks9L@31WvgUF+oK4@ zl0UdpeK5DCe!kG=#}X--`L6wiix@WK*m^yyG#v@p+@I3nnm!2;MZKGKV#N3lSbY>9 z)@cjCjp}>qgIe|gI*m4Dz%v48U=oQ*S_jFiv0yxq)5pBKN>khv1K=XXMbtbm=WMd6 z!zRq)pjrP3)HZm>Dw6P!Ix##nr3va*M>ugcrIfV)w(UOEF7L zce%J}x!AcmK8+yajlz@PfMrY&4MQ&Aj1E2sZ{kcgsXb7a8~5#_8~q~^^Tq0mYe;Bz z5?e7NRfOdRHertVDm`t~<{lyE?2Q_~cu9fGqvLIb2Nkxi80|M|;JvHT1bVp8`Dxac zKm4HwEgWpAfa#Y4E`h5Z)@&ELLc2$eqo&@!63eoOymuW9UqeGpfEk-1Z538!Hblh& z|E+)T>zAy`_mCf{e7j7&)cI=fM8{+f-v)_yr4M~eb3TBtWeU@Zhf#&QJr|Df=NZ9 zMeHQUEO=?=<{Z4%I!EhnYof+J<9ERtzXNlU^stV^!D^ zTB61ofwxM+|DZ!#5q%1 z_967jVVqElNbVhnL)ptIimC|_mFG{&vU`!L(@g?^m|j#we|T4ykT-_Z2}i25m&A#a zG0ja7KMAkp_LCbS#_-Q289YW(H6}*6-kKz_@f{^Jc3s4OZ8DEA?8q(f>skBTF@s4dDin;w0ppI-b5)?4e%UNj)`_DCnr+*2>pRR%)!+lE)ks1VeaTwWC{n z)ADnr-uYQ#C8SKX%936fL|Fjenx7@n69#Ss_flys|k}4ne;S0$}rz=Du z3*^!r3~C54)!=>SB?uct9)shW_gE!R76jLzXboG_m>E=3B|x-p>2@Ow~cK#Q=NbzCVb7~I>vu6L;4E!p+ zw~l0q2Mc7jgB7FZiz!-agOwu3?Dj)g2?)ijbCQ;y_xegygTFE`CA8D~FyX+m$1sPX zOGGR7fAbqhE$$7mpd1r(2li}!1@RY@#NGF66z#wp59_8@C zbT({~$=GJ)K_or(qacCUCACI;4`RZ~-|kr344QwBJA!W-P!Qru-%G7B@$ z68D*u9L@W@G7u~ubM4w>UH_^cbEr$d@I)Nl`?<&rZg&ocq&y4rG-u%z5Ilo_2ajPX6o-0#EbYiAZh`WL<*P*5<}9U_+dV`IrqW?-K#; z=LY9s%W#&Y=I?=Y=yj$0^prrlL6)2takEn3aZb-ko{`Dkxp1z8NZqm|D5H63Q@x6@ zhw2Ih9-fK@L-OHSQC(j}D1!XF>OkU;*au(Wm0CN+m_O29T~%nP;D^|tg;(gBGN}kx zJ?^6Llc<))zsW1Q7l)>HG*wNdH$eH~xkm#}aZ=t;?l8Emyv3jMUg1k|9U9e6+A5y# z&SO;wk&(_iJ_he1wkfneLh8YPKk#n0xC`Qp z;Al>v(Q$8~o`|0NY$npgD3Q^$+~2s*-z4Bsz~^8-^Is{yvZFUQH|2oz%|k4DmXi%n zo=W^-FAS;uAM-L>5+|glug7{ZF0&hyZe zliHD+QZ6PGwcuVo&W7hQ8<@Xa_vp?a6@IYE;r?E3R{$iwmF2v;B~;uI+~wS!OE-Hl z3TCi}kv3{yN>)m8o&Ge~Q)+*MwS`>qI~xu-aME=(xu=vMFA`&_TNeSZ{gRK%1?z45 zF>1@rw~1Fr@o}LO!kXUoP&D60K~8AQ05Pfz17-rQZNYsa_`w4v zq%_t5MIFqpK;Wz4#zwn2B-lmOCX}xyhiWF4$vZu|ZAD(BLVz;T7@6CJDYYO#GmFOms~>`@#)c#@SUK}ij;-f8gj;zP|CZRnE(VaXv#*TZ2C zPV<8&>_IZb1H7bCMS)`T7>kX(-b=ThxA*}{$&a1P0mYPLQ&SEF-Vmub7)<#Xe(Fpg z)YN&Y&V(}dHINAfr(bT&t1$B9x;eqb-_oo-^`>r`KIJ7vYcKz60`)ZO)vS2Oz{r?w;{KR~ zEWaZdeK>}i>p(@OXQe-JH126UsKEAAjf_-fY?QvgzPE>pS-OXsc!evf7K_tbYP_r> zFRn$4y`xS1r+>9|D(x5%{|;M$Z#pMqSOPi9IDJi?-peeO2*Ygp%t-}14m1q3aONXK z&*0D?P9o!}rfF?{P1+)g{%tOL4jHsBJK(P#O60S)RFmBjq6aZ$Vj#l9P$T_5ZNS1A z4km>%x8F3A=J3FcVBt892H!csmF{waUz)%m2>Y>{r=o$0%nX@*nRJ6b8Nv~q4hQ$* zCTY<)vV_V5$DbNi5lZ|qpa}AbvU#PmJ$m|f>(k%Bp;ru17dIc4)QZY)&-53v zeb0h@2`2Kv%9)!eYf>vZoM3!M&+>|m^lLY%KV!` zk1X%A&d8IVBMDr!V|EZqi{E+S#%i4up!0nx4T>VOHqtJqL>V)Gy%~45fLb4)!NcK? zvoQW4JX{&S2QufL?3y+i^ z<>s1Oen4LS3j>3T3|>x{p1-^)C|Og17-+FHNH?-ysZ>1$&T8PIOMHv?=`27ge0(Xm z-YcQN<3Pe;?-cxBCOigyO4i2`0eRSE6zuswCaLD492O@&+k7aKi$6 zx>7)q37VeLyd`)=&LQf#liMElcj4h{3*hq&AA!mPTMnUiPUHb$*1-M&9LBs<4@s5R z?BFSA*XTDcZY__8;)`9MaJS}N?)e(bKJOuGe7D=YH*cN}`u#dbPlR>Ga4s!uY^Yh9 z!b-6{Gcz;oyEl$j%DuFZCI|I=(T`7G2s|E=4y=U2qs(cyaZU9!(2p;++_8>9VBq1A zb0#Or>)_wopr3inDsYe)_-OY%+EYyW1Kf}Z<@jfPMPEw-#5y^|(N0vpBJjn~*s_MT%+i_d=mY@L-)wlv@BSk4o+4r2Q*7lzkQh@i*$tGKtmcYQCHo(M<}NRoLtcecEdE@ZM%lV-&wjgC#g4 z&HN2v3pc_+-doB=>h#u=lxxQ>Z+BcMunAF>gAyp}uu-ZJVw;={59i1;J&Q{`Kslt6 zVs%IP<4(4M9~qMUs7|^#*}tpQ-#hrDFY|CwXQu zBhO^f_EA+0F9m7S#59WJbV8qFV*-DT{9v)h2>2M%Wf?hRSP+$vA3XJ%x%1aJE<$p$ zkmBRh95IPt$Z~`E@J3}I*J1&BIS(QH*I%J4ZiMzOF_s}t=Rkv^kW=<_O4G>Ss72td z|EUm@mnRc_ZXTas3whWLc{+8V>G!*RaHGW8Tc7vb%>hhM{x_Kt5)xlm;uD`fZ&c+I zqo21hF`*GW#r6(woNII$jpX)uwy0TgY};~Bvizhx}M3dsFGRr3ma9+*bm1Iu+db?+GpV` zyo)ybK-7pvUMUl~MLR1e_Mmkl*6*814~XsjgLz3xkHINEF|d9+b$5!^nDA`&V!$uU zhalmSD1fL(x@#cEN&`O03qX!1frjHB^5d(@Cf_*#1{32x_4`88%BneU(dL_ibz~xx zurl7|c9vf6mSp3OsV+^YAGFX>TU?MuXXCMkPp7mTQZt4>b1~NDl$;KaHBWYZa^ezq zEpZa@2bVK?o}65mWNKL%HLZ~3QCNj{i^^P32y^zQpA*D(Eed+&i8p(<*Mi=AWqT&p z$v9&6ELXuOY3SraVy|@F)!V_k@rJnP){_*w``gNaas=@}rGVRKE72~j!qUoWsNx1yblP+;( zF_NxI+3%>T=TxIO*s|YuPO@Q(uqtrM8HKi8PnC=to3Z?H`dM%p6AZQTfbq9_`g!nQ z6qUaac8CF3@`n(=8Q*d`!*^DL5XzXZ&;GdrR2xRglPfaYRKEkZ2(e3DpVW~@mH3}s z!!%O(r&F*60ed(4@cUgqfOMPsNuoCHm6$<-3dvU2_f92Qs@&&cxgl|_lu%{(Y9dFLfBuZ>4p zU@lR%cFyPX`eo$A!Y3&*cc%fKtM<>WZW1ABK8ITiKjAP0c!~$Xe7)#rjdCJq=9<3? zw`;8%V0&|DbATf@GDr+-k+W#yaYhDAR3-2VpB}>Dpa&ND*o99%DnBmQ+%4>+B8pswpP{7s<13wy?2o+fLcgbqsec(`=}m8anNpRS-2#8TfM zKM8M}-x~<)9TT@9Pjv5!Pqjnolee79Uqxf%l8rCuzC1OyL6ogicYiQ=;;+~0> znzj-T@+>>??RR2_+L`tIN+o8Ula7p(cL-VE2h&yAsdhJI^gZE~#l?6d9l~Ckvs=5n z`E;3+a#yE62s4G>5Av>A4|BJ=ui(BK0eNV)9-n?JouWbk-zEp_%8H4ah6XLXgR}E- znSqMXgkn{6s?2Djn#%V$!%fT0yr5IV+dpmaYzj~A20^%Iq^&*{xsGN$I4CIOmS@B0u7Xtv!#f>B z05$go*|Q1c-b5eU%ZFiqg^@a;ZdwB3;61y_gVZsK?k-G((HUh{PFYbTfBdOo(eiij zEyjOpl?c~~8L@_cwE(t@)fqPi8+S=+jatqc7n=^J`Y&$mx4MAMr@J&@YVJ!MeETNK zcX((PY3X?jcRGBq(jVw&(czB&b6HWKuakA^?g4=eT9ER6AR7>GqzhC2AEmCrC3R$J!GkJ~~MEm?n&PDW`;$_5;C_{5O^pqnB{G-fJKgXs$ zd*nICX1?B=06bZZ6LG|#pP#m2bA7$U)p7(X=F^$ZyEqi*EQl)m9*W&yGED062UZ|Y z3}s_|=^>w{du=h8RY%R6o3ZpjCZ)}W}2 zaNSwz3g6%d*Q2-nut4}aRL^WG*=289UN(^>E7h((8P?yA;K=u8&3Ao}f0t;&Pm^-2 zel1OEYrHfkGL;3_#!ZqwgD}iDEG%q2{#9+rHP3?YEnLIR=ZV-^TGpv?x9m3`Su?(G zg5`*0G=?A5je3@5R`<76E66jnHlz4$@e?gAEjJph%5&!D^^{kW^H&Gc83&`uZ1Q(^ z%O>-mrXLE&d0h&7sn98@s89tc!NI{r;fci$GUXTb!>V-$C`tIkZdz;RQpS0DM<;K=|B(e6YM5BIP-2_f99{1S z933UPh~J(bn9j#tfqFeT-=G)s-TX6`a6i&7dB$XEf8Q@$dinI}zW^X@b-i&2z~l`H z5KDY-ACwAPUDqLYf;HcGPBu0+M;FB9p(kG2ye-Wnx7M>?W1d^{D5im3=-k6Kn>I&> ziTYHTLy4T!I72edT`R9bo?lrV{4so8X^gDvv@g+Fd%Bznjnk9)ZX*N7*mBk-yZ#P^ z_0!_wo0#}8@?~L_fUfdG<`W_!qK#)+bqo-dsjOGHTBB5Q(1H-670fzo`oJC zABQvPDZnZHVa!eLXRz2U-stR75myaWU?0@L4?+w^Ynrn^H(Do{yF(XoKo9BFBrn?!C0N@~=L{@f0;h48 z7E@M0S2tPrwOnVCf)H~oH`LFdS2%(J0jRJq{sWiF0FX}RscTyj$vtkd(hGx#de@4h zwX`~f1+6&J|F+_&!aqz3%iKOTX)(dz$I{+3zbf2M%vmbd(~skx1Lw#=UGHfFP>r zxw)o5Jh2I`8f^`NuHa1AZi2R5Rc6&Wa*4!xL-}_|J!$iECGd=yf zVn@%)%H>@l`}-v^kohdOhoZ2=AHse$IA)>^ND%{#_OYok`RYCLylL0e!e+|r2&0#j zOF_&?aTO7sdE2L|zP{w31wGkrN*ys^roD+P*H_T~{i?vvB&;tQOA0iFak>!R>#(V} zZK7fXY6ca;(1sA@-t3BAr;&P6x6`wH*o;KVL%a-%V8ikzkZb$iI)Nq`xN8k{f*c>V zU&TS4Ajv$Pu1SeD)6g017q#GWZCwhk;$0Krf75Dwy1T^qA(z%vOI0han&)TX96gW62Njj7N2g1e_0|goXh3SE znE}pIB%paTI*oj%3-w{)xfR=7U&mYv$5S7Efg${4u)KMdZyKmi@hF~jJu^t(KX-;W z*VuOb5*k+>Rm$Fr?cp5LM66Sqbs1>@$bS0~XfW0JnX;7T7DxZcDnjY&95;x(e7(_D z^V(8qc97$@NK=deRhnlHNWQ`B7Dl|zky>xfDC6&?!Vqaom6w#*lKZGC2*XA(t$s}i zdix9VzKJ-}6-J3HaU&AS?1Z^VN(>R(%AsGhU4Ddu>+?R?-x}&VFuH!5WCC?$m0#j= zz5~|JSWq3%04Vd3hLa_hB?o;m zaHs_1kZY446Vgy3o9CO91e^}Ne;RGea~EyzPlqE2p8-Pu>Cc_oIU!TOnZ3G50Q^x` z>ZZGFHn5)>u|9b$wtqP!bcrgT%op#bQQ& zCdzQHy*7$jN3&i$?5ZD-{53zXfUox#!Jhdh93|uI#93EYw`6W{-G=2|!`ghK#reU? z(sZn%Z9X%rUFdvIs5@xu1gZuo#XG`r+WnGC@kRy3%$y?BufFLpM)=@)^X+tZ#x-LricH{&AGRe}P_Kr!lN;*zsgV(g1oX9Hu)p8F?@3geC4VNngG=_ki z^dG`T)>+v0Mz4&uHt8d&C?fvQ)}g*7hR<{$K-er2%wd15Rn$PQN@&6@zwh2G_L6-# zXkkKmadxewRCmYL@D_e)Upz2zacnjm|4R4iwuPl7M56q7a~3T8c!73z{&F|}{BSMY z)2{g#Pw?s|Mo%?=GGjuqRLuU8QZ1SG92|r@XLw0b!CX3TVvV)tsQBM>)&s{ z1S`gmB;MGT!}Qeb!!^e>)W7VRz-fJ{!YnpK?}v46cS>nCBtkGf3%!*+2x|V}SQG&qDs zt63n@=W<=YaQD5bR6YA0_KR>i*R?iyi+*q%Ew>BEBdx-}>1~rD8X-Obi?30Q5i-vk zUEA%Fw+QefkZC}}iSEEO95NKybB^v!W5ldL2BjV`+r3FyP+H~!9d2BzTU&p4+zoD# z^c(u?(9(UiP+XdA5lMQ-*}p$KFt8S=6nrG{1dbVXb?2PEo#Tf@$W|(38-Y=ta?eru zg?vS?1MF?(oHl#VQz4>4RQG&E5zP*KLA10X6PDWODB@q2(!|+|6{Ut&P zCIRb_SfLyYUp3&ut-2-H`MVx-y&5$WI^0l(rCKD3H%E`B8ulXK$eU-UGL1WD%&TD3DL7}y;IP4j!aCQaVSiYNpWhs-=rNf10Pi|dU-TM#T%9fl~l{%-_q?ds(qJS^9U;Q2kM`U3hrF7NVJ!;lytH!lS?J6}~}qrfh10y__kP{JN{P(}m6%k?=v6LWEK zc1JJ<)=+?P&(Iy(XqsJib8`nae$5BWQBj~jWQLNQ?)1CO$J**6o}dv!e=tfTQkGjy zGSs>LsJc4xwfIpV>w(IszXo4#r3k6un51`lFRY22F;6*uZIifD#u{6W6UZM&X@V|X z0NJzl^O}Kc1N`jcEdbXN6N)R~i81Ro1njn4da7xvaUu?YIZ~Nu;gim!tx%Ru(-8%y z%-i=RDJicT)^WN!Q>%Oe^m?Y!Dg#OXc(0!>)jNbUCiM>7i`AU~Px3M;mG9KvgDr z;`N6{e%m^G0v|Wj&huj-C?FR~o*_6qX7nVsHB z338ElC-CIMhrH)=?w1vRSdXgu{R8OszIbbH$`AVXGxey5X3}lU6}wK9V@b#1q2t^t z|G=vLs5!DfOa;P6u@!~LboDm@9_H^a%D~DRuIIT`TD!g&?8CDNZy2bQr9}T)zeIlj zxTH6DVdkqnHrMm#-(`7TLk;6_u*Jg!dD22xK`Vr9-~@`T%_!{tOc0hqBf{wl{|_f} z?rESB;0mAny6OrWc6)@B!MrT>wW%(6(nLK5?CT_wS(Qmjl3o?;)WB2<0}rhP(upcz z=JPY1l$OGGwDEY#DA+=z23ns0*+Iols#QhqO+*SP=^rc0UwrA40guXPVN{|6;IXxj zLfthVL1{m?Ax8hqu)Byb3v?^)5_@FhRBpTcMBf&Pw4o&SbTaQFtQZ;w0@M*Lv$9OK z&rT(nmjC#P&9IHpg5k)8D@0Pq0SEh?oamDgu2=f_&C%FakZ(dWi^yhyX)Nh4lEqBm zg|;>+{H0p`fClbbWma&F0_9yAU0E)bhbdDZp=6bWX~_>d!I4a{&lI8=bN zqlPPnd;X|X!!2CVl&Y``mvfT4vr?pb;Pk8XM4M84pquP+!Vv8;8E86#Y*a*eYe7_teEF|4fZ%mj)Q{1EUi}@_B%0B zWO>|rzD8r$XYF7bP3!cRev_DlHHy&9ZKqkeu#{f+FodFO!4q}R%ZeO3^O}77#wG>P zUX*t`jX5AXHR8{oo%Z*B;>5YM0jxSCpU2wm9(TKYdElvVO4f1UtV9p^DvLU6SO1 z!J>nO6fu9qDRCBVcF*xM@Y(b{Hr9@gR28FPRh5)P%A0Rc?00Hg&za`{VwJPogAa64 z1g{51JF8yo@9YC;(!&d%J{9Wf!~)6V739JumI46*f^`D$n7rNbNzy@3Hi}7-!VApp zj?ZqZu7Tuis7C<^?EaxU}MvIaGj*5_+{Jn4Vmit@THQjdM zmrD`4YsuPwG9s^%N=QtZxrE3*gGBH~Q&z*+WS+%AKOvCv%7>o5`{Z1vOPO3YZ3zYJ zYexp;)U1z~3`1LQv_3I}n)#T3Kn!MaZl@w^)7iWAz1|q2hJ!FhscNZjUXYgr z>jDbpMY^1Mt3$u>(LoKyP`$3S5oiGx-&duHqJPZb_zRAh1(}^1#>bB>)Pcv*_Q#ai zUnj;r;1+kjp&JKO+F2(X@^XkJzr#&`=cfWCEDU1wzAMHl&0a*zI{e`btB8fQrO`w} zmRaxlH;bzCUp#eT>(+y=^{}3vfA#l?%pLJCGY7$slx5MtrP;9Xu$9%k>p+&lGQ^0j`fHuQFxHT4R?+ z4Ds-cz|zLc$4WN3gDp?q)Tcv9h}qsZ7i#FD!%G~!as4L=@lbh`CE$K8BQK_%cizt5 zA=rzQ7pLuDhYCpIr!Y(pV5*=l4v?uCE$++F`UE+x{zVtis*f^xZ<*CH2veo}$u}7L zEpXJqjaZ|y{=iWqNEa?40q-SMhZQRg0g|L*g*fjh%fhh1{*(+?bX}Jz6T^J{=H1Un z-yV{8|43QS%WM_*X^jT3p2cz=anEdYGiaoSHIsP`Ryhk^^yVCO6Wev`b=ONk&KQX^ zNIAhzX3L>Z?A@EFyS-An5y%P<#SrQ^Gu~I5+gr9Kfl5}Il7*xIDp=^{`0fD4lwred zMMWq9utb$8R!F5!DX*_13g!$FNf|8wA=t)$Lgr!3I0u&6XR)saVd;>SW~Y0@&qRVM zm^+BtLpc*L!M(}9i5Ve*UIk@zMNaS{3*2!IUjo`|Mg(dZf8>1_DrDcn-`^r6jO&QGt3;B%a6h9S zt8FM9t>)9TMh8a5jBf6n(M5^%33WWK@ZP8Kq7PnrnB+Pa6D3lFs! z=78iak~Zu{4J2=`em(ore;28Mw~B~Dna{+2Cgy!om6=zr=bPSkJh$hScym(Q8ZCOd z$*T8;RW{swq2=1?_*EI1qwtB?_PAT>b6tgFXXlFAu5<6x1;$P#ost@#YhKQu3&Qz> zZun>6pFsy>zxek&4?GwxW!!!K{5c0@ZyOJnJqmo@YdM5MVf8A)mm$l(RT_9#-|lzt=lMesedOVhU^|PnUW|zs322>Hz@$Q4F9jH zq*nqkwVixmi9kkX-L^R8Sfz>V#7ZXCq z24p>bua8B6WgK6IKaB=Nj2jZQ#*1$l zWJJ!wEg!-#H^)?kr6%-TOU*A1hH8HTOIdCttld8L2)+Fc4g)BJ4u6R<*>ac;_ZtZL z6hDLX*SQ|3_+i~%wZeIcv_-<34yL`-(VQLcuI;vRriLAuT7h@FI=n?cGh1l!W-0LB zXp9HBghT(rI|DZ9tDcwSkXHq%-$P&(VO%d(RsKmQT>nicNTNu%Tps&o#&@Y}D5h0V z_j8c_pNNuxe7*TSk>5u+_qP2nNF=U~uc`j^Q(t6|)IsM4aFH zr7F$u1WnflOa^t|0@a~V!mP8a^13AlzRR>Kgs?mK^m^wu*Z;=nBGLC8|KftXg%(eZ zpTBYa3T;g>gb`$pTgIK7Z90KHMZwQWbbZEV~KsI5@} zcF&wQ>4?}C=V#tAFpq3C% zHkj5 zmgoSJI$(OKz0As(13_nJS9CIy;ofByNp?yLg2Lzw6(u}uy#;IpD3(x#MHS`^TheCtva6m0%#wWi?l+y7yxSwMS_2UHjhkx&;)w3UF2 z*c91H!~n{YBZnTkrh|3@{n{nLv$T8OsHLGs@wk!(QZ;S)lP2#v;PTX|>7-n6@h^`M z=pu;l}^PV}^*$AUjKE2_UNS!D`Kj5#_z>(80MNtwh-9 zG`X?k$}?m)lkevF)JTvC4MP2js;khcT*bBs=lY{k5fsc`XfVg2pFC#`8Ulb4;ac~(=V(p-Pga1k0)xU3ylT5cJS5w%Bz<)wfkC9g<0B`!6{Ee0srdZ4^(^k=qF z*FVp~L0yuThSi6vx2_5;Y%kit*EAu8p`KVNsUo8G_p5-+HG$5fiX43N?X_o`)&lo1 z#lCgvrt)2muYs04!Xt+Spoyn34q7xwSvsq4R#=%#qvpJ1T|+vr#*n<4 z6BT3&1}^3|ZwkH5(D=f?0gYP&1s=+v3o#D^k zP@P1s|4rrazM2>?vUV8)-%-Qj2GEMQ1C&gq{C-@p-qR*$-|pj1jmE@tYM}q`Zp!fg zy_*vKpKc1~T@Ag!s`B3=IwllgW9-SMN`_2CBDr5lU(9eI+CJkwU-%oZLu9f+xqKwpPO)~eU4!m?g>)gXA#HsuO8Uw)E z)n3;rP5HxDY9%^Spv!&FgPe8IGW!laFr94rw@Zfq)P{)u|DzPf$YKm#mm1O4AJ*`c zZRdXnrhxy?2^T6|%CR^EldosFyqs%w8)}+5BFw=v8^2HZif_LpUo<|9Poa*0fl+|` z+@cLYhp7=~#Q*?=r)ZRMU-}P(7y~f=?@(F>Kc1KP3%(t3u?RwMdI?!lM|3t)653Odl zJ>*&4l7uQibxO6Ea=(0a^`A@8LwU&n#eIM+$n^|s49p#k)s_E>L}E8fg-%&KwGPfS z1@Q1~sdSu5alk1?g!Cs0f}B>P*d#Un=ah29jXEU= z|G}6H*CFpQ8N5x+v&g`g89PK~s!R~!+j1Cx9W*S`#s>w09wO=@XzdW!HSFh-`}3?! zXpG5u${6r^`TwEqE1P4k2IHK2eD}Nd+H1`<=UkXTkje}Gfc+C#%Xw9!SzAA| zx4#9lC=Z9M^K}(ktY??Jk3DsRh0TNy0&p0%9b0^*^_JKS33v7OP?UJj)R06AZ$=XZ*Xe2{FMV+u&%WGsubv7tZ_<;YXpi+k|;vls~c_&}UZzCSHa3>rMi)0YkAU-gg) z2PYCWYxh8}iK$YL@CD zCZLHkXO~pVg5a*48qU6kLa~@8%E3AmjuUl&O7M z!)aI9UQ984O>*8%N(C%W{YRTJ=<##vCmCScpd-6u_=4HSFT8vtA1k2z3-S4J4H^B! zyziSmK>WY>P?QflK*CMc!!OFf2u0}W(aV>fS1pRC08(cdCBV^w@1H0q0UXT{`-@=4 zpX!F5?AhsKiR`Du+?5Pa1+&UC3d2XJW~RCHNmo8kC&wv<=DzFmOrsVzzzmo3BV?pUh+47 zp9XD}?)onBHx2g{Z_l#Yh`k&NG`P|m;FQTc5~>kbQ7r_2gg53bezo|R+L+4FZQlSWN9kJAynbP=+B$$AR^2fy99@iM6$52@UY^i^de zE!eEX3gy305-lLjdp6}I__`$y_xFwT__rG=+^`2GZCaamOJ3<7+Rq8?RM&zb!UBdp z&q4dHWb-B-tGvIVaYSjLVfbj3_Vvq+t5De>^}G2TjD?apL>vt8K)OueMl&&iCMf@5 zqt6;18ASg5)&+3cSeGso{_Qq9pyMf<>W}l53!)U8yOS zW!?tulhWmTgFW(T{L-~Tu*^2XX@XS{jq9H4*<`@X0-6^IQ^-&}oKi#|=}Cv$H`}rM ztCpmxt@Rsw7y1XvTobpk0a1VwN=gptTMx7Lz+7Ws&Tsqx8uS)z8MwOrF3K{O_6IG1 z)ZHRcNfriuCmZBXO$FiH&s|L;Bu8*XGYf4D;yA$TR0G{&q7 zS*4wfpE%TtdEyjfUZu}4QG@J%wlTl~JMQ6)=1Kt0zopMB_Hh0}c;6t@G-+MDV6LK8A zxm<6c=QM%|z$%H(7sU4tG*<_i<@{*vDd;soR&Zto7xI05NOcRm>>^m(AM61Dd>EcZ z4zR7EEkD1$)t~;(Gz4U{(y%m8y7QL4YwfUNkgy%x6Ce_2^3oj~-b*6a)C5@8#O$Mf zLB?>PSsi{?Ig9y6{6wWP9b;^W+DQI){nMz1bWn-{@9}-Dn&(6bu)qVaBiwVK1<4E# z507L@;;_8Uq^0^`)!ET`08pdp%5{IMi3edY%M74PlbraksEJ(=pDcc2RHEtmD9(t7 ze`!-uUico%IxlnlFkHpf@KIEB6gU`ur@ibu(8;P|@O6Dd09tsgRHODpP=zlc@!jY~ z_>a&TPoNyeO~h8H-o6vQ+|mH2kgu~uuUy+vK%3ytEgV})1PE{Amw;uc_W0SCN@4nJAL6fjgb3_=~us}X9L5-GWu1& z(#?iUz0NSeau5!!aG{@^*8eQIKZ7fF@-_2AoB$8XT9icz3QVAax&l zx;!$e(?Boa@9fWe4>+kXRdWGIY|it={*cB%&46Nv6F)aMt?Jw3W2#1cud_MRl`NJE zb}gDQ={lU%KLg`$xgl%+CdA!NFBl%?oNdY*zC{k#T6^wgs+IHI}+tH9=Ivx=VH= z3U^92wMJ^KXTc#r^Lp67HP%3~1KNvD(u^F)2?TnI^Pzd&e%GUPH#j1=dQ7brGDsk@ z0GyASfv-s})szZogNy{aKRw*Gk~?d@Tso-GwlNxuathpmX28zVjsfkrIJzp*_&leG zW=~x7w?zPpo1J$p|5KZ#$l;VX%l5|BJPjZlqL=-a&)ShR?iY~IeXdZROCi*Ad7JEh zz+;=dY`ObH@q1U?r_l-*^6&fl^@7R-I&3~KD<4LD>|r6C_|dH|@ZKLdG!ztu02>2; zm>-vuy9g8$2plzKMBpsC@7}Oy0|fuxJEX+pq2M((!FpXyg!lV34*Z|I#!+qL;0=FYa2tMB;~hmNmZw2{+;ZK*}&628LM+3p>1^D5;*Le zuxTXKW^&V0RTb0Lb9Ehz_E-VDC&{R&sJ%(WJ*G`ao5MAI)NOWILi3l3me`%ot*5d( zfi?48e0+F#f-e2|HJZ6wzoHaBR<|jdYNjqK8GKBs(RRz(JkM}&(YRg?yaR#+tzApr znQc}rGJ{v&`FNuHlX!mZ*y(0G-?J&*3#VPHsjFGJd{y$JJ~zo%r$5^vpPd)G-juPm z-B580k@WK+sTgSY!fug{LWDd{Co(xMU+{y!ffx-ZTq;&tL zeLB4TqJsTszeD^oMIF*UW4=ueodej%RB60+bPHtwd( zWHy3b9CO4JU(TKsr&ZY%>W?jgPIJ$#$9VU`(u zqoLv9{)L#8rotlxo2s8~Cwr!X-4)Fwsr#k{5smVf2R8bt_Pu;DRot>(Ztm_Y$4mOD z8WnYvEI(r@5iZah?et#WE=&@KP(_jEdlp4o>DMP#vrQDKkWu{KAIwJ+GDsu*@VA8c z6>}CNiufg)Cpa%KuYnt^vvCqsa|MvHQoR9gh8Vfa0~VkZ(UiYCmm_hNwPZMYKa(*) z2l@aOnh6OQRQJ%VO5?9ekq(QU)-d2p3)0pcFGng3Eb7YqW+0a%Puv-FoHraon1Oc| z&}9QfI7Ax-OBHS?uR3k32)aJommx z00g?^QCV*C0AUE;VaiR-Oo^2oAkAilmN~};r`$~Y+929k@1d%`;0Kp^ z4v+{Wz-i&4S%dbhV7=;+YX)Y;z76PYF|&?LK1Zf~r++{g`!vHsB7S~78%{u-iRDVAS#- z^r1Q~uB}VGslfbPd#~F@&$T7WVO}aMJElj&(9n=~2&O+GWX#$vXid*_{8fjZo;h`M zQINN^HppTc_WV`0PvjyYYNU!e#phDz{U=7EM!?PFCek{Dk4YANS(F23$d=~M=>$~J zmEg^@r-mxu`Xorp|uT3Q%jXbzbvU_Q-Wm4X-T;SMa+QU6D^3}mpd z;!qCtQ5xAKfHMpHBXxhb=6LYdJP6j(Qt5;*DL?aCd2n__940?={5GnEh>vwc4(=y5 zCSe0sAEl5AxOsbcRJUc+L55;pLiqSbryiL#n7GN4SWLOQ zPiNS8?P{~Lvu`850PWJ0dDeivkZU;bmNxrs)X*n*{OufjQnE9Kg%E=)(HVi{R2jIz zD1yZkL)?X*PaC&MxcX7ZJ?=P5vIriXqnMACW~ypvNXEcwJXDipnX7%7&zg|`rU7YO zFYO$4a$O4CVe37M^*R_x5#P#mYr0gbd5jSiQ}ovRKuj>HSiV*E zz0VWR)F*gBQ%gm}E1J&Az~EEJwvV+C{1f~jSe4N!u`<@Ii&+2QHj|tA@2eLto79n8f zu-B2N{gox@aOU!5;pOW7{mO5amX?_;IxcUs+ZvOPx7pZXBcZjph~ z!y%+0HVJK?6kEJpOmg@(t8{g8b8<4*3hTq&-1l3olg%wQC#z@42JyrQu*S{ zXXB*l2&lAR7F!5;u>1t){Vz@gf-2~|AR~UDm4V)_ zoJFEhqX$r@{voVH6=L#2o-pe09!67sx@sFDZN%8asVzhevY`B;oJsraj_?Y{)!!o}}CwOFRmUvkGggOa+IPF*4&4#!nV8svd5`(k4X0 z1^a+W(u21&b8#SFR^Uc*ezp+PzO?(G8?}W^Mc4M2ARY5Ep1(Rano(1PP}c)jOkoFm{}D*p70_fn$>(~7S`=;CJtFyPS0PU^mw zfSvN>v5!`x!Kb+1?22`Lbj3KrRLwTUv@wP(CD5&shE1t{I;G{4GO~Ih#y$$we$AhD`I6+n?QUsAaJv^vz?wJGI zg7F*MyRly>VeQZS^$H*$z8oyS2K6T-g&o|*WGsc8P=`xer7QqUDkIfbby zhTOor?GuL3|C>eG>dHytuMrEd{!n{fp$sXvm@x>7B0nS1Q#gd&1^x*TJ1Oz9!~i2($|jx>Dgp z725j_oSG)0nEeC<0UR)YMZ%!CLX=pqnS|Fo1m;=;=H{05KEEm`2t^8RdxC11PR6tx zvKkQ~21{n5$n)NLekxfqvSVa_4?C7 zy=3=W2i(cDv5=3yGY-6M;E31L&?#-vSa)&-f;>j3vjZZdw>TElb;nkn^^#(>|IkH3 z#8G9h<0WlqkMJ!2lT1fxy+2+6pdRx8FJW!fCcY9*B4Al={Y*%1JcyWXlx98YLg%?T*joad zdnK}rH{)(=`>4KdVQF?}%lpzjnq$R%TTLPgtSxi#GfnaI|0tIv!=DE>xsmrhYGWi! zFZnc*(p-A67a~}SD>CJDT2SV+q1D$LQ+UD(xMoU;omQ$F8ygNkk@ay#W*e)1V&R}La`0n8>7 zt0Zj;YFoNZida)#ILtPnY;?^Jg4v4g4dNd_XNbghLm5b1!GJ=>Rx->e84k1M7@so% zFc98|(XNd#2mrZ%YmMpL$FMTPX4muqpveil*vk@%ApQ}`rjW(rz0f&3P9@~wJMA*p zt$a9#{>@j(G|7=#cRw>vLe2Yd%6Vl?|5Rd6>!S!Q^RU}?7K@UXm!O}>|4px$PQ>;R z-S9S{>^Ccwx}N?_+2zyAeNW|cuStBCqSXnHMW(uP$e#{j)pc9i8AR@3?4y zGe;n!k}gxdf9Z?P5CYM(G&XIJG$;CD4|$;xK1OO<5ED2+*b3*JBnbS03SAUH?D}t4 zy9!+_=o;ANU@H2%+BG88RV#l(cJZ@0{Yi4cO8CT9YUBCFR=P(AUDo%@lLPNJBWnbR z8M|CM+&_n3faB7M+#6qO#PR$_^a2;3Q1n}`m`FBI|DSZkG*af_%}{SwfsLfQy)(jR zX`$Xw8!>aT=pDEV)d)i)9^$BpJpxPos~hr+!(&w|D%3Y7D8}#dySyPg`O;iw+DjJy z$e!ABiI1!A?0C1OK7jn>Uj6>C_Uxp*z6V2lM>PU8Z3RUyKfoc=6{ugGEZcCX?kZ&b zuw=)E8vl5b6F{)|T66AkBZTe$4-6kx$zCTg3RZ*WCOb$AFni&;vs!pG{qM+i6HSk5 zfXQYGMALU=(DOkDlb@pAjym1>E4e0ZT59&{Zd7na@uPmNsOHAY)0pL5Q!haatlr$O zLOON#!QzJl?)sBemgkRF9s$UNt7_$=%>a$y@y$NYK6OWM_1|F;SARJ@n|%-yym5Gx z*{vw>n9Z~&Jwk9?c0|Whw||j8W6&rUOzjA%lZ0Ft$FBn2>Q#!7s}4a z3BN}oFANS0OYW23C5TG}Q&IWmAD~73h#=Nh0otv~usj1Z$YkW|K>>i|M623EcG>?p z-YN}cWk>Ou1mi7w=k-UW#J?Z%Unu$Q(74^MnKUC8qQE`dL@}C-Bn5wqT!+gED_gu;Eqa7HUKNv7_OuzdTZU8J=bKLqL?EmrSFNXW` zH?QZmLTYco&@*ut+{s&SfLykBHJezsq}DfRPY1M1JJ)$9sO2t0*YDBY2p@aGs)e