From 839aceb1436f3e95c82f263e9bb288d790086146 Mon Sep 17 00:00:00 2001 From: Nicolas Filotto Date: Mon, 13 Feb 2023 20:17:00 +0100 Subject: [PATCH] Ref #3023: Add native compilation with sources --- .github/actions/e2e-install-native/action.yml | 8 +- .../actions/e2e-install-native/exec-tests.sh | 19 ++- .../kamel-build-binary/build-binary.sh | 6 +- .../kamel-config-cluster-kind/action.yml | 3 +- .../kamel-preflight-test/preflight-test.sh | 2 +- .github/actions/kamel-prepare-env/action.yml | 20 ++- .github/workflows/native.yml | 118 ++++++++++++++++++ config/crd/bases/camel.apache.org_builds.yaml | 61 +++++++++ .../bases/camel.apache.org_camelcatalogs.yaml | 5 + .../camel.apache.org_integrationkits.yaml | 57 +++++++++ .../ROOT/partials/apis/camel-k-crds.adoc | 31 ++++- docs/modules/traits/pages/quarkus.adoc | 8 +- e2e/namespace/native/files/Groovy.groovy | 21 ++++ e2e/namespace/native/files/Java.java | 20 +-- e2e/namespace/native/files/JavaScript.js | 21 ++++ e2e/namespace/native/files/Kotlin.kts | 21 ++++ e2e/namespace/native/files/Xml.xml | 33 +++++ e2e/namespace/native/native_binding_test.go | 9 +- e2e/namespace/native/native_test.go | 35 ++++-- .../native/native_with_sources_test.go | 103 +++++++++++++++ e2e/support/test_support.go | 4 +- helm/camel-k/crds/crd-build.yaml | 61 +++++++++ helm/camel-k/crds/crd-camel-catalog.yaml | 5 + helm/camel-k/crds/crd-integration-kit.yaml | 57 +++++++++ pkg/apis/camel/v1/build_types.go | 2 + pkg/apis/camel/v1/camelcatalog_types.go | 2 + pkg/apis/camel/v1/common_types.go | 3 + pkg/apis/camel/v1/integrationkit_types.go | 2 + pkg/apis/camel/v1/trait/quarkus.go | 8 +- pkg/apis/camel/v1/zz_generated.deepcopy.go | 21 ++++ pkg/builder/quarkus.go | 53 +++++++- .../camel/v1/buildertask.go | 14 +++ .../camel/v1/camelloader.go | 15 +++ .../camel/v1/integrationkitspec.go | 14 +++ pkg/resources/resources.go | 16 +-- pkg/trait/camel.go | 2 +- pkg/trait/camel_test.go | 79 ++++++++++-- pkg/trait/quarkus.go | 81 +++++++++++- pkg/trait/quarkus_test.go | 90 +++++++++++++ pkg/trait/trait_test.go | 104 +++++++++++++++ pkg/trait/trait_types.go | 44 +++++-- pkg/util/source/inspector.go | 6 + resources/traits.yaml | 1 - script/Makefile | 4 + 44 files changed, 1206 insertions(+), 83 deletions(-) create mode 100644 .github/workflows/native.yml create mode 100644 e2e/namespace/native/files/Groovy.groovy create mode 100644 e2e/namespace/native/files/JavaScript.js create mode 100644 e2e/namespace/native/files/Kotlin.kts create mode 100644 e2e/namespace/native/files/Xml.xml create mode 100644 e2e/namespace/native/native_with_sources_test.go diff --git a/.github/actions/e2e-install-native/action.yml b/.github/actions/e2e-install-native/action.yml index 37b6334627..70b4556f2f 100644 --- a/.github/actions/e2e-install-native/action.yml +++ b/.github/actions/e2e-install-native/action.yml @@ -25,6 +25,10 @@ inputs: cluster-kube-config-data: description: 'Base16 encoded kube config - required for custom cluster type only' required: false + high-memory: + description: 'Indicates whether the high memory integration tests should be launched (default false)' + default: 'false' + required: false runs: using: "composite" @@ -90,7 +94,7 @@ runs: name: List Tests Marked As Problematic uses: ./.github/actions/kamel-report-problematic with: - test-suite: namespace/install + test-suite: namespace/native - id: run-it name: Run IT @@ -104,6 +108,8 @@ runs: -n "${{ steps.build-kamel.outputs.build-binary-local-image-name }}" \ -s "${{steps.config-cluster.outputs.cluster-image-registry-insecure }}" \ -v "${{ steps.build-kamel.outputs.build-binary-local-image-version }}" \ + -t "${{ inputs.high-memory }}" \ + -q "${{ env.CAMEL_K_LOG_LEVEL }}" \ -x "${{ env.CAMEL_K_TEST_SAVE_FAILED_TEST_NAMESPACE }}" - name: Cleanup diff --git a/.github/actions/e2e-install-native/exec-tests.sh b/.github/actions/e2e-install-native/exec-tests.sh index db67931c1c..2d9192fd58 100755 --- a/.github/actions/e2e-install-native/exec-tests.sh +++ b/.github/actions/e2e-install-native/exec-tests.sh @@ -25,7 +25,7 @@ set -e -while getopts ":b:c:i:l:n:s:v:x:" opt; do +while getopts ":b:c:i:l:n:q:s:t:v:x:" opt; do case "${opt}" in b) BUILD_CATALOG_SOURCE_NAME=${OPTARG} @@ -42,9 +42,15 @@ while getopts ":b:c:i:l:n:s:v:x:" opt; do n) IMAGE_NAME=${OPTARG} ;; + q) + LOG_LEVEL=${OPTARG} + ;; s) REGISTRY_INSECURE=${OPTARG} ;; + t) + HIGH_MEMORY=${OPTARG} + ;; v) IMAGE_VERSION=${OPTARG} ;; @@ -116,5 +122,14 @@ export CAMEL_K_TEST_IMAGE_NAME=${CUSTOM_IMAGE} export CAMEL_K_TEST_IMAGE_VERSION=${CUSTOM_VERSION} export CAMEL_K_TEST_SAVE_FAILED_TEST_NAMESPACE=${SAVE_FAILED_TEST_NS} +export CAMEL_K_TEST_LOG_LEVEL="${LOG_LEVEL}" +if [ "${LOG_LEVEL}" == "debug" ]; then + export CAMEL_K_TEST_MAVEN_CLI_OPTIONS="-X ${CAMEL_K_TEST_MAVEN_CLI_OPTIONS}" +fi + # Then run integration tests -DO_TEST_PREBUILD=false make test-quarkus-native +if [ "${HIGH_MEMORY}" == "true" ]; then + DO_TEST_PREBUILD=false make test-quarkus-native-high-memory +else + DO_TEST_PREBUILD=false make test-quarkus-native +fi diff --git a/.github/actions/kamel-build-binary/build-binary.sh b/.github/actions/kamel-build-binary/build-binary.sh index cbf64e3522..435149301e 100755 --- a/.github/actions/kamel-build-binary/build-binary.sh +++ b/.github/actions/kamel-build-binary/build-binary.sh @@ -97,7 +97,11 @@ fi echo "Moving kamel binary to be visible on PATH" -${SUDO} mv ./kamel /usr/bin +if [ "$RUNNER_OS" == "macOS" ]; then + ${SUDO} mv ./kamel /usr/local/bin +else + ${SUDO} mv ./kamel /usr/bin +fi echo "Kamel version installed: $(kamel version)" # diff --git a/.github/actions/kamel-config-cluster-kind/action.yml b/.github/actions/kamel-config-cluster-kind/action.yml index 0f81599a2d..c1f7f48315 100644 --- a/.github/actions/kamel-config-cluster-kind/action.yml +++ b/.github/actions/kamel-config-cluster-kind/action.yml @@ -23,11 +23,12 @@ runs: steps: - id: install-cluster name: Install Cluster - uses: container-tools/kind-action@v1 + uses: container-tools/kind-action@61f1afd4807b0dac84f3232ec99e45c63701d220 if: ${{ env.CLUSTER_KIND_CONFIGURED != 'true' }} with: version: v0.14.0 node_image: kindest/node:v1.23.6@sha256:b1fa224cc6c7ff32455e0b1fd9cbfd3d3bc87ecaa8fcb06961ed1afb3db0f9ae + cpu: 3 - id: info name: Info diff --git a/.github/actions/kamel-preflight-test/preflight-test.sh b/.github/actions/kamel-preflight-test/preflight-test.sh index f2779b9f8f..9089e4ed36 100755 --- a/.github/actions/kamel-preflight-test/preflight-test.sh +++ b/.github/actions/kamel-preflight-test/preflight-test.sh @@ -38,7 +38,7 @@ waitForOperator() { # # Wait for the operator to be running # - local timeout=180 + local timeout=360 local i=1 local command="kubectl get pods -n ${NAMESPACE} 2> /dev/null | grep camel-k | grep Running &> /dev/null" diff --git a/.github/actions/kamel-prepare-env/action.yml b/.github/actions/kamel-prepare-env/action.yml index d23345a04d..271d2074ef 100644 --- a/.github/actions/kamel-prepare-env/action.yml +++ b/.github/actions/kamel-prepare-env/action.yml @@ -24,7 +24,7 @@ runs: - name: Set Env Vars shell: bash run: | - if [ "$RUNNER_OS" == "Linux" ]; then + if [ "$RUNNER_OS" == "Linux" ] || [ "$RUNNER_OS" == "macOS" ]; then SUDO=sudo fi @@ -54,10 +54,11 @@ runs: ${{ env.SUDO }} rm -rf "/usr/local/share/boost" ${{ env.SUDO }} rm -rf "$AGENT_TOOLSDIRECTORY" fi - - df -kh - docker rmi $(docker image ls -aq) || true # Don't fail if image is not present - df -kh + if [ -x "$(command -v docker)" ]; then + df -kh + docker rmi $(docker image ls -aq) || true # Don't fail if image is not present + df -kh + fi echo "Final status:" df -h @@ -101,6 +102,15 @@ runs: with: version: 'latest' + - id: install-realpath + shell: bash + if: ${{ env.KAMEL_PREPARE_ENV != 'true' }} + run : | + if [ "$RUNNER_OS" == "macOS" ] && ! [ -x "$(command -v realpath)" ]; then + echo 'Installing realpath...' + brew install coreutils + fi + - id: complete-action name: Environment Prepared shell: bash diff --git a/.github/workflows/native.yml b/.github/workflows/native.yml new file mode 100644 index 0000000000..2b7b2ed6af --- /dev/null +++ b/.github/workflows/native.yml @@ -0,0 +1,118 @@ +# --------------------------------------------------------------------------- +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You 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. +# --------------------------------------------------------------------------- + +name: native + +env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + +on: + pull_request: + branches: + - main + - "release-*" + paths-ignore: + - 'docs/**' + - 'proposals/**' + - '**.adoc' + - '**.md' + - 'KEYS' + - 'LICENSE' + - 'NOTICE' + push: + branches: + - main + - "release-*" + paths-ignore: + - 'docs/**' + - 'proposals/**' + - '**.adoc' + - '**.md' + - 'KEYS' + - 'LICENSE' + - 'NOTICE' + workflow_dispatch: + inputs: + log-level: + description: 'Set the operator log level (info or debug)' + required: false + pre-built-kamel-image: + description: 'Kamel image url for skipping building of kamel stages. Used for debugging' + required: false + skip-problematic: + description: 'Whether tests marked as problematic should be skipped - false by default (sets CAMEL_K_TEST_SKIP_PROBLEMATIC)' + required: false + default: false + test-filters: + description: | + Filter the tests in this test suite by assigning the test pattern to TEST_NATIVE_RUN, + eg. TEST_NATIVE_RUN=TestBasic will only run tests prefixed with 'TestBasic' + required: false + +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} + cancel-in-progress: true + +jobs: + install-native-high-memory: + + runs-on: macos-12 + + steps: + - name: Checkout code + uses: actions/checkout@v2 + with: + persist-credentials: false + submodules: recursive + - name: Convert input parameters to env vars + shell: bash + run: | + ./.github/workflows/manual-exec-process-inputs.sh \ + -i "${{ github.event.inputs.pre-built-kamel-image }}" \ + -p "${{ github.event.inputs.skip-problematic }}" \ + -q "${{ github.event.inputs.log-level }}" \ + -t "${{ github.event.inputs.test-filters }}" + - name: Native smoke tests + uses: ./.github/actions/e2e-install-native + with: + cluster-config-data: ${{ secrets.E2E_CLUSTER_CONFIG }} + cluster-kube-config-data: ${{ secrets.E2E_KUBE_CONFIG }} + high-memory: 'true' + + install-native: + + runs-on: macos-12 + + steps: + - name: Checkout code + uses: actions/checkout@v2 + with: + persist-credentials: false + submodules: recursive + - name: Convert input parameters to env vars + shell: bash + run: | + ./.github/workflows/manual-exec-process-inputs.sh \ + -i "${{ github.event.inputs.pre-built-kamel-image }}" \ + -p "${{ github.event.inputs.skip-problematic }}" \ + -q "${{ github.event.inputs.log-level }}" \ + -t "${{ github.event.inputs.test-filters }}" + - name: Native smoke tests + uses: ./.github/actions/e2e-install-native + with: + cluster-config-data: ${{ secrets.E2E_CLUSTER_CONFIG }} + cluster-kube-config-data: ${{ secrets.E2E_KUBE_CONFIG }} diff --git a/config/crd/bases/camel.apache.org_builds.yaml b/config/crd/bases/camel.apache.org_builds.yaml index 8821ffd06d..4b530895f8 100644 --- a/config/crd/bases/camel.apache.org_builds.yaml +++ b/config/crd/bases/camel.apache.org_builds.yaml @@ -475,6 +475,67 @@ spec: - provider - version type: object + sources: + description: the sources to add at build time + items: + description: SourceSpec defines the configuration for + one or more routes to be executed in a certain Camel + DSL language + properties: + compression: + description: if the content is compressed (base64 + encrypted) + type: boolean + content: + description: the source code (plain text) + type: string + contentKey: + description: the confimap key holding the source content + type: string + contentRef: + description: the confimap reference holding the source + content + type: string + contentType: + description: the content type (tipically text or binary) + type: string + interceptors: + description: Interceptors are optional identifiers + the org.apache.camel.k.RoutesLoader uses to pre/post + process sources + items: + type: string + type: array + language: + description: specify which is the language (Camel + DSL) used to interpret this source code + type: string + loader: + description: Loader is an optional id of the org.apache.camel.k.RoutesLoader + that will interpret this source at runtime + type: string + name: + description: the name of the specification + type: string + path: + description: the path where the file is stored + type: string + property-names: + description: List of property names defined in the + source (e.g. if type is "template") + items: + type: string + type: array + rawContent: + description: the source code (binary) + format: byte + type: string + type: + description: Type defines the kind of source described + by this object + type: string + type: object + type: array steps: description: the list of steps to execute (see pkg/builder/) items: diff --git a/config/crd/bases/camel.apache.org_camelcatalogs.yaml b/config/crd/bases/camel.apache.org_camelcatalogs.yaml index 6fb000e75a..91805a7b12 100644 --- a/config/crd/bases/camel.apache.org_camelcatalogs.yaml +++ b/config/crd/bases/camel.apache.org_camelcatalogs.yaml @@ -305,6 +305,11 @@ spec: items: type: string type: array + metadata: + additionalProperties: + type: string + description: the metadata of the loader + type: object version: description: Maven Version type: string diff --git a/config/crd/bases/camel.apache.org_integrationkits.yaml b/config/crd/bases/camel.apache.org_integrationkits.yaml index 918cd6afe9..b37b152b4b 100644 --- a/config/crd/bases/camel.apache.org_integrationkits.yaml +++ b/config/crd/bases/camel.apache.org_integrationkits.yaml @@ -114,6 +114,63 @@ spec: items: type: string type: array + sources: + description: the sources to add at build time + items: + description: SourceSpec defines the configuration for one or more + routes to be executed in a certain Camel DSL language + properties: + compression: + description: if the content is compressed (base64 encrypted) + type: boolean + content: + description: the source code (plain text) + type: string + contentKey: + description: the confimap key holding the source content + type: string + contentRef: + description: the confimap reference holding the source content + type: string + contentType: + description: the content type (tipically text or binary) + type: string + interceptors: + description: Interceptors are optional identifiers the org.apache.camel.k.RoutesLoader + uses to pre/post process sources + items: + type: string + type: array + language: + description: specify which is the language (Camel DSL) used + to interpret this source code + type: string + loader: + description: Loader is an optional id of the org.apache.camel.k.RoutesLoader + that will interpret this source at runtime + type: string + name: + description: the name of the specification + type: string + path: + description: the path where the file is stored + type: string + property-names: + description: List of property names defined in the source (e.g. + if type is "template") + items: + type: string + type: array + rawContent: + description: the source code (binary) + format: byte + type: string + type: + description: Type defines the kind of source described by this + object + type: string + type: object + type: array traits: description: traits that the kit will execute properties: diff --git a/docs/modules/ROOT/partials/apis/camel-k-crds.adoc b/docs/modules/ROOT/partials/apis/camel-k-crds.adoc index 4b9e182a05..1b9414e5a5 100644 --- a/docs/modules/ROOT/partials/apis/camel-k-crds.adoc +++ b/docs/modules/ROOT/partials/apis/camel-k-crds.adoc @@ -665,6 +665,13 @@ string workspace directory to use +|`sources` + +*xref:#_camel_apache_org_v1_SourceSpec[[\]SourceSpec]* +| + + +the sources to add at build time + |=== @@ -873,6 +880,13 @@ a list of DSLs supported a list of additional dependencies required beside the base one +|`metadata` + +map[string]string +| + + +the metadata of the loader + |=== @@ -1491,6 +1505,13 @@ configuration used by the kit Maven repositories that can be used by the kit +|`sources` + +*xref:#_camel_apache_org_v1_SourceSpec[[\]SourceSpec]* +| + + +the sources to add at build time + |=== @@ -3107,6 +3128,8 @@ string *Appears on:* +* <<#_camel_apache_org_v1_BuilderTask, BuilderTask>> +* <<#_camel_apache_org_v1_IntegrationKitSpec, IntegrationKitSpec>> * <<#_camel_apache_org_v1_IntegrationSpec, IntegrationSpec>> * <<#_camel_apache_org_v1_IntegrationStatus, IntegrationStatus>> @@ -5406,11 +5429,9 @@ The Quarkus trait configures the Quarkus runtime. It's enabled by default. -NOTE: Compiling to a native executable, i.e. when using `package-type=native`, is only supported -for kamelets, as well as YAML and XML integrations. -It also requires at least 4GiB of memory, so the Pod running the native build, that is either -the operator Pod, or the build Pod (depending on the build strategy configured for the platform), -must have enough memory available. +NOTE: Compiling to a native executable, i.e. when using `package-type=native`, requires at least +4GiB of memory, so the Pod running the native build, that is either the operator Pod, or the build +Pod (depending on the build strategy configured for the platform), must have enough memory available. [cols="2,2a",options="header"] diff --git a/docs/modules/traits/pages/quarkus.adoc b/docs/modules/traits/pages/quarkus.adoc index 595572dd60..e0201cc132 100755 --- a/docs/modules/traits/pages/quarkus.adoc +++ b/docs/modules/traits/pages/quarkus.adoc @@ -5,11 +5,9 @@ The Quarkus trait configures the Quarkus runtime. It's enabled by default. -NOTE: Compiling to a native executable, i.e. when using `package-type=native`, is only supported -for kamelets, as well as YAML and XML integrations. -It also requires at least 4GiB of memory, so the Pod running the native build, that is either -the operator Pod, or the build Pod (depending on the build strategy configured for the platform), -must have enough memory available. +NOTE: Compiling to a native executable, i.e. when using `package-type=native`, requires at least +4GiB of memory, so the Pod running the native build, that is either the operator Pod, or the build +Pod (depending on the build strategy configured for the platform), must have enough memory available. This trait is available in the following profiles: **Kubernetes, Knative, OpenShift**. diff --git a/e2e/namespace/native/files/Groovy.groovy b/e2e/namespace/native/files/Groovy.groovy new file mode 100644 index 0000000000..baeaa9c0ce --- /dev/null +++ b/e2e/namespace/native/files/Groovy.groovy @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ + +from('timer:tick') + .setHeader('m').constant('string!') + .setBody().simple('Magic${header.m}') + .log('Groovy ${body}') diff --git a/e2e/namespace/native/files/Java.java b/e2e/namespace/native/files/Java.java index 66fef5fe86..d87ff1692c 100644 --- a/e2e/namespace/native/files/Java.java +++ b/e2e/namespace/native/files/Java.java @@ -15,14 +15,14 @@ * limitations under the License. */ -import org.apache.camel.builder.RouteBuilder; + import org.apache.camel.builder.RouteBuilder; -public class Java extends RouteBuilder { - @Override - public void configure() throws Exception { - from("timer:tick") - .setHeader("m").constant("string!") - .setBody().simple("Magic${header.m}") - .log("${body}"); - } -} + public class Java extends RouteBuilder { + @Override + public void configure() throws Exception { + from("timer:tick") + .setHeader("m").constant("string!") + .setBody().simple("Magic${header.m}") + .log("Java ${body}"); + } + } diff --git a/e2e/namespace/native/files/JavaScript.js b/e2e/namespace/native/files/JavaScript.js new file mode 100644 index 0000000000..0d3194e586 --- /dev/null +++ b/e2e/namespace/native/files/JavaScript.js @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ + +from('timer:tick') + .setHeader('m').constant('string!') + .setBody().simple('Magic${header.m}') + .log('JavaScript ${body}') diff --git a/e2e/namespace/native/files/Kotlin.kts b/e2e/namespace/native/files/Kotlin.kts new file mode 100644 index 0000000000..1af1c544f7 --- /dev/null +++ b/e2e/namespace/native/files/Kotlin.kts @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ + +from("timer:tick") + .setHeader("m").constant("string!") + .setBody().simple("Magic\${header.m}") + .log("Kotlin \${body}"); diff --git a/e2e/namespace/native/files/Xml.xml b/e2e/namespace/native/files/Xml.xml new file mode 100644 index 0000000000..7b55c2d62e --- /dev/null +++ b/e2e/namespace/native/files/Xml.xml @@ -0,0 +1,33 @@ + + + + + + + + string! + + + Magic${header.m} + + + + + diff --git a/e2e/namespace/native/native_binding_test.go b/e2e/namespace/native/native_binding_test.go index 27dc5756a1..e9a749df05 100644 --- a/e2e/namespace/native/native_binding_test.go +++ b/e2e/namespace/native/native_binding_test.go @@ -1,5 +1,5 @@ -//go:build integration -// +build integration +//go:build integration && !high_memory +// +build integration,!high_memory // To enable compilation of this file in Goland, go to "Settings -> Go -> Vendoring & Build Tags -> Custom Tags" and add "integration" @@ -40,8 +40,8 @@ func TestNativeBinding(t *testing.T) { operatorID := "camel-k-native-binding" Expect(KamelInstallWithIDAndKameletCatalog(operatorID, ns, "--build-timeout", "90m0s", - "--operator-resources", "limits.memory=4.5Gi", - "--maven-cli-option", "-Dquarkus.native.native-image-xmx=3g", + "--operator-resources", "limits.memory=6.5Gi", + "--maven-cli-option", "-Dquarkus.native.native-image-xmx=6g", ).Execute()).To(Succeed()) Eventually(PlatformPhase(ns), TestTimeoutMedium).Should(Equal(v1.IntegrationPlatformPhaseReady)) @@ -98,6 +98,7 @@ func TestNativeBinding(t *testing.T) { // Clean up Expect(Kamel("delete", bindingName, "-n", ns).Execute()).To(Succeed()) + Expect(DeleteKits(ns)).To(Succeed()) }) // Clean up diff --git a/e2e/namespace/native/native_test.go b/e2e/namespace/native/native_test.go index 6ea8855b0e..f1686f737a 100644 --- a/e2e/namespace/native/native_test.go +++ b/e2e/namespace/native/native_test.go @@ -1,5 +1,5 @@ -//go:build integration -// +build integration +//go:build integration && !high_memory +// +build integration,!high_memory // To enable compilation of this file in Goland, go to "Settings -> Go -> Vendoring & Build Tags -> Custom Tags" and add "integration" @@ -38,14 +38,14 @@ func TestNativeIntegrations(t *testing.T) { operatorID := "camel-k-quarkus-native" Expect(KamelInstallWithID(operatorID, ns, "--build-timeout", "90m0s", - "--operator-resources", "limits.memory=4.5Gi", - "--maven-cli-option", "-Dquarkus.native.native-image-xmx=3g", + "--operator-resources", "limits.memory=6.5Gi", + "--maven-cli-option", "-Dquarkus.native.native-image-xmx=6g", ).Execute()).To(Succeed()) Eventually(PlatformPhase(ns), TestTimeoutMedium).Should(Equal(v1.IntegrationPlatformPhaseReady)) t.Run("unsupported integration source language", func(t *testing.T) { - name := "unsupported-java" - Expect(KamelRunWithID(operatorID, ns, "files/Java.java", "--name", name, + name := "unsupported-js" + Expect(KamelRunWithID(operatorID, ns, "files/JavaScript.js", "--name", name, "-t", "quarkus.package-type=native", ).Execute()).To(Succeed()) @@ -57,6 +57,24 @@ func TestNativeIntegrations(t *testing.T) { Expect(Kamel("delete", name, "-n", ns).Execute()).To(Succeed()) }) + t.Run("xml native support", func(t *testing.T) { + name := "xml-native" + Expect(KamelRunWithID(operatorID, ns, "files/Xml.xml", "--name", name, + "-t", "quarkus.package-type=native", + ).Execute()).To(Succeed()) + + Eventually(IntegrationPodPhase(ns, name), TestTimeoutVeryLong).Should(Equal(corev1.PodRunning)) + Eventually(IntegrationPod(ns, name), TestTimeoutShort). + Should(WithTransform(getContainerCommand(), MatchRegexp(".*camel-k-integration-\\d+\\.\\d+\\.\\d+[-A-Za-z]*-runner.*"))) + Eventually(IntegrationConditionStatus(ns, name, v1.IntegrationConditionReady), TestTimeoutShort). + Should(Equal(corev1.ConditionTrue)) + + Eventually(IntegrationLogs(ns, name), TestTimeoutShort).Should(ContainSubstring("XML Magicstring!")) + + // Clean up + Expect(Kamel("delete", name, "-n", ns).Execute()).To(Succeed()) + }) + t.Run("warm up before native build testing", func(t *testing.T) { // The following native build test is under tight time constraints, so here it runs // a warm up testing to make sure necessary jars are already downloaded. @@ -117,13 +135,16 @@ func TestNativeIntegrations(t *testing.T) { Eventually(IntegrationPodImage(ns, name)).Should(Equal(nativeKit.Status.Image)) // Check the Integration is still ready - Eventually(IntegrationPodPhase(ns, name), TestTimeoutLong).Should(Equal(corev1.PodRunning)) + Eventually(IntegrationPodPhase(ns, name), TestTimeoutVeryLong).Should(Equal(corev1.PodRunning)) Eventually(IntegrationPod(ns, name), TestTimeoutShort). Should(WithTransform(getContainerCommand(), MatchRegexp(".*camel-k-integration-\\d+\\.\\d+\\.\\d+[-A-Za-z]*-runner.*"))) Eventually(IntegrationConditionStatus(ns, name, v1.IntegrationConditionReady), TestTimeoutShort). Should(Equal(corev1.ConditionTrue)) Eventually(IntegrationLogs(ns, name), TestTimeoutShort).Should(ContainSubstring("Magicstring!")) + + // Clean up + Expect(Kamel("delete", name, "-n", ns).Execute()).To(Succeed()) }) // Clean up diff --git a/e2e/namespace/native/native_with_sources_test.go b/e2e/namespace/native/native_with_sources_test.go new file mode 100644 index 0000000000..fc39ace542 --- /dev/null +++ b/e2e/namespace/native/native_with_sources_test.go @@ -0,0 +1,103 @@ +//go:build integration && high_memory +// +build integration,high_memory + +// To enable compilation of this file in Goland, go to "Settings -> Go -> Vendoring & Build Tags -> Custom Tags" and add "integration" + +/* +Licensed to the Apache Software Foundation (ASF) under one or more +contributor license agreements. See the NOTICE file distributed with +this work for additional information regarding copyright ownership. +The ASF licenses this file to You 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. +*/ + +package native + +import ( + "testing" + + . "github.com/onsi/gomega" + + corev1 "k8s.io/api/core/v1" + + . "github.com/apache/camel-k/e2e/support" + v1 "github.com/apache/camel-k/pkg/apis/camel/v1" +) + +func TestNativeHighMemoryIntegrations(t *testing.T) { + WithNewTestNamespace(t, func(ns string) { + operatorID := "camel-k-quarkus-high-memory-native" + Expect(KamelInstallWithID(operatorID, ns, + "--build-timeout", "90m0s", + "--operator-resources", "limits.memory=9.5Gi", + "--maven-cli-option", "-Dquarkus.native.native-image-xmx=9g", + ).Execute()).To(Succeed()) + Eventually(PlatformPhase(ns), TestTimeoutMedium).Should(Equal(v1.IntegrationPlatformPhaseReady)) + + t.Run("java native support", func(t *testing.T) { + name := "java-native" + Expect(KamelRunWithID(operatorID, ns, "files/Java.java", "--name", name, + "-t", "quarkus.package-type=native", + ).Execute()).To(Succeed()) + + Eventually(IntegrationPodPhase(ns, name), TestTimeoutVeryLong).Should(Equal(corev1.PodRunning)) + Eventually(IntegrationPod(ns, name), TestTimeoutShort). + Should(WithTransform(getContainerCommand(), MatchRegexp(".*camel-k-integration-\\d+\\.\\d+\\.\\d+[-A-Za-z]*-runner.*"))) + Eventually(IntegrationConditionStatus(ns, name, v1.IntegrationConditionReady), TestTimeoutShort). + Should(Equal(corev1.ConditionTrue)) + + Eventually(IntegrationLogs(ns, name), TestTimeoutShort).Should(ContainSubstring("Java Magicstring!")) + + // Clean up + Expect(Kamel("delete", name, "-n", ns).Execute()).To(Succeed()) + }) + + t.Run("groovy native support", func(t *testing.T) { + name := "groovy-native" + Expect(KamelRunWithID(operatorID, ns, "files/Groovy.groovy", "--name", name, + "-t", "quarkus.package-type=native", + ).Execute()).To(Succeed()) + + Eventually(IntegrationPodPhase(ns, name), TestTimeoutVeryLong).Should(Equal(corev1.PodRunning)) + Eventually(IntegrationPod(ns, name), TestTimeoutShort). + Should(WithTransform(getContainerCommand(), MatchRegexp(".*camel-k-integration-\\d+\\.\\d+\\.\\d+[-A-Za-z]*-runner.*"))) + Eventually(IntegrationConditionStatus(ns, name, v1.IntegrationConditionReady), TestTimeoutShort). + Should(Equal(corev1.ConditionTrue)) + + Eventually(IntegrationLogs(ns, name), TestTimeoutShort).Should(ContainSubstring("Groovy Magicstring!")) + + // Clean up + Expect(Kamel("delete", name, "-n", ns).Execute()).To(Succeed()) + }) + + t.Run("kotlin native support", func(t *testing.T) { + name := "kotlin-native" + Expect(KamelRunWithID(operatorID, ns, "files/Kotlin.kts", "--name", name, + "-t", "quarkus.package-type=native", + ).Execute()).To(Succeed()) + + Eventually(IntegrationPodPhase(ns, name), TestTimeoutVeryLong).Should(Equal(corev1.PodRunning)) + Eventually(IntegrationPod(ns, name), TestTimeoutShort). + Should(WithTransform(getContainerCommand(), MatchRegexp(".*camel-k-integration-\\d+\\.\\d+\\.\\d+[-A-Za-z]*-runner.*"))) + Eventually(IntegrationConditionStatus(ns, name, v1.IntegrationConditionReady), TestTimeoutShort). + Should(Equal(corev1.ConditionTrue)) + + Eventually(IntegrationLogs(ns, name), TestTimeoutShort).Should(ContainSubstring("Kotlin Magicstring!")) + + // Clean up + Expect(Kamel("delete", name, "-n", ns).Execute()).To(Succeed()) + }) + + // Clean up + Expect(Kamel("delete", "--all", "-n", ns).Execute()).To(Succeed()) + }) +} diff --git a/e2e/support/test_support.go b/e2e/support/test_support.go index 7bcbb29ad6..66a24ed452 100644 --- a/e2e/support/test_support.go +++ b/e2e/support/test_support.go @@ -93,10 +93,10 @@ const kubeConfigEnvVar = "KUBECONFIG" var TestTimeoutShort = 1 * time.Minute var TestTimeoutMedium = 5 * time.Minute -var TestTimeoutLong = 10 * time.Minute +var TestTimeoutLong = 15 * time.Minute // TestTimeoutVeryLong should be used only for testing native builds. -var TestTimeoutVeryLong = 90 * time.Minute +var TestTimeoutVeryLong = 60 * time.Minute var NoOlmOperatorImage string diff --git a/helm/camel-k/crds/crd-build.yaml b/helm/camel-k/crds/crd-build.yaml index 8821ffd06d..4b530895f8 100644 --- a/helm/camel-k/crds/crd-build.yaml +++ b/helm/camel-k/crds/crd-build.yaml @@ -475,6 +475,67 @@ spec: - provider - version type: object + sources: + description: the sources to add at build time + items: + description: SourceSpec defines the configuration for + one or more routes to be executed in a certain Camel + DSL language + properties: + compression: + description: if the content is compressed (base64 + encrypted) + type: boolean + content: + description: the source code (plain text) + type: string + contentKey: + description: the confimap key holding the source content + type: string + contentRef: + description: the confimap reference holding the source + content + type: string + contentType: + description: the content type (tipically text or binary) + type: string + interceptors: + description: Interceptors are optional identifiers + the org.apache.camel.k.RoutesLoader uses to pre/post + process sources + items: + type: string + type: array + language: + description: specify which is the language (Camel + DSL) used to interpret this source code + type: string + loader: + description: Loader is an optional id of the org.apache.camel.k.RoutesLoader + that will interpret this source at runtime + type: string + name: + description: the name of the specification + type: string + path: + description: the path where the file is stored + type: string + property-names: + description: List of property names defined in the + source (e.g. if type is "template") + items: + type: string + type: array + rawContent: + description: the source code (binary) + format: byte + type: string + type: + description: Type defines the kind of source described + by this object + type: string + type: object + type: array steps: description: the list of steps to execute (see pkg/builder/) items: diff --git a/helm/camel-k/crds/crd-camel-catalog.yaml b/helm/camel-k/crds/crd-camel-catalog.yaml index 6fb000e75a..91805a7b12 100644 --- a/helm/camel-k/crds/crd-camel-catalog.yaml +++ b/helm/camel-k/crds/crd-camel-catalog.yaml @@ -305,6 +305,11 @@ spec: items: type: string type: array + metadata: + additionalProperties: + type: string + description: the metadata of the loader + type: object version: description: Maven Version type: string diff --git a/helm/camel-k/crds/crd-integration-kit.yaml b/helm/camel-k/crds/crd-integration-kit.yaml index 918cd6afe9..b37b152b4b 100644 --- a/helm/camel-k/crds/crd-integration-kit.yaml +++ b/helm/camel-k/crds/crd-integration-kit.yaml @@ -114,6 +114,63 @@ spec: items: type: string type: array + sources: + description: the sources to add at build time + items: + description: SourceSpec defines the configuration for one or more + routes to be executed in a certain Camel DSL language + properties: + compression: + description: if the content is compressed (base64 encrypted) + type: boolean + content: + description: the source code (plain text) + type: string + contentKey: + description: the confimap key holding the source content + type: string + contentRef: + description: the confimap reference holding the source content + type: string + contentType: + description: the content type (tipically text or binary) + type: string + interceptors: + description: Interceptors are optional identifiers the org.apache.camel.k.RoutesLoader + uses to pre/post process sources + items: + type: string + type: array + language: + description: specify which is the language (Camel DSL) used + to interpret this source code + type: string + loader: + description: Loader is an optional id of the org.apache.camel.k.RoutesLoader + that will interpret this source at runtime + type: string + name: + description: the name of the specification + type: string + path: + description: the path where the file is stored + type: string + property-names: + description: List of property names defined in the source (e.g. + if type is "template") + items: + type: string + type: array + rawContent: + description: the source code (binary) + format: byte + type: string + type: + description: Type defines the kind of source described by this + object + type: string + type: object + type: array traits: description: traits that the kit will execute properties: diff --git a/pkg/apis/camel/v1/build_types.go b/pkg/apis/camel/v1/build_types.go index 675472984d..de1101864b 100644 --- a/pkg/apis/camel/v1/build_types.go +++ b/pkg/apis/camel/v1/build_types.go @@ -74,6 +74,8 @@ type BuilderTask struct { Maven MavenBuildSpec `json:"maven,omitempty"` // workspace directory to use BuildDir string `json:"buildDir,omitempty"` + // the sources to add at build time + Sources []SourceSpec `json:"sources,omitempty"` } // MavenBuildSpec defines the Maven configuration plus additional repositories to use diff --git a/pkg/apis/camel/v1/camelcatalog_types.go b/pkg/apis/camel/v1/camelcatalog_types.go index 09f1fb1e3c..222fba0c36 100644 --- a/pkg/apis/camel/v1/camelcatalog_types.go +++ b/pkg/apis/camel/v1/camelcatalog_types.go @@ -128,4 +128,6 @@ type CamelLoader struct { Languages []string `json:"languages,omitempty" yaml:"languages,omitempty"` // a list of additional dependencies required beside the base one Dependencies []MavenArtifact `json:"dependencies,omitempty" yaml:"dependencies,omitempty"` + // the metadata of the loader + Metadata map[string]string `json:"metadata,omitempty" yaml:"metadata,omitempty"` } diff --git a/pkg/apis/camel/v1/common_types.go b/pkg/apis/camel/v1/common_types.go index f79ce47fc5..1fffa94b1d 100644 --- a/pkg/apis/camel/v1/common_types.go +++ b/pkg/apis/camel/v1/common_types.go @@ -426,6 +426,8 @@ const ( LanguageYaml Language = "yaml" // LanguageKamelet used for Kamelets LanguageKamelet Language = "kamelet" + // LanguageJavaShell used for Java Shell + LanguageJavaShell Language = "jsh" ) // Languages is the list of all supported languages @@ -437,4 +439,5 @@ var Languages = []Language{ LanguageKotlin, LanguageYaml, LanguageKamelet, + LanguageJavaShell, } diff --git a/pkg/apis/camel/v1/integrationkit_types.go b/pkg/apis/camel/v1/integrationkit_types.go index a94506388a..5510561a66 100644 --- a/pkg/apis/camel/v1/integrationkit_types.go +++ b/pkg/apis/camel/v1/integrationkit_types.go @@ -69,6 +69,8 @@ type IntegrationKitSpec struct { Configuration []ConfigurationSpec `json:"configuration,omitempty"` // Maven repositories that can be used by the kit Repositories []string `json:"repositories,omitempty"` + // the sources to add at build time + Sources []SourceSpec `json:"sources,omitempty"` } // IntegrationKitTraits defines traits assigned to an `IntegrationKit` diff --git a/pkg/apis/camel/v1/trait/quarkus.go b/pkg/apis/camel/v1/trait/quarkus.go index dcbd079d6d..571ad62069 100644 --- a/pkg/apis/camel/v1/trait/quarkus.go +++ b/pkg/apis/camel/v1/trait/quarkus.go @@ -21,11 +21,9 @@ package trait // // It's enabled by default. // -// NOTE: Compiling to a native executable, i.e. when using `package-type=native`, is only supported -// for kamelets, as well as YAML and XML integrations. -// It also requires at least 4GiB of memory, so the Pod running the native build, that is either -// the operator Pod, or the build Pod (depending on the build strategy configured for the platform), -// must have enough memory available. +// NOTE: Compiling to a native executable, i.e. when using `package-type=native`, requires at least +// 4GiB of memory, so the Pod running the native build, that is either the operator Pod, or the build +// Pod (depending on the build strategy configured for the platform), must have enough memory available. // // +camel-k:trait=quarkus. type QuarkusTrait struct { diff --git a/pkg/apis/camel/v1/zz_generated.deepcopy.go b/pkg/apis/camel/v1/zz_generated.deepcopy.go index 6d4e1d5f0e..dfb1dcde60 100644 --- a/pkg/apis/camel/v1/zz_generated.deepcopy.go +++ b/pkg/apis/camel/v1/zz_generated.deepcopy.go @@ -235,6 +235,13 @@ func (in *BuilderTask) DeepCopyInto(out *BuilderTask) { copy(*out, *in) } in.Maven.DeepCopyInto(&out.Maven) + if in.Sources != nil { + in, out := &in.Sources, &out.Sources + *out = make([]SourceSpec, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BuilderTask. @@ -446,6 +453,13 @@ func (in *CamelLoader) DeepCopyInto(out *CamelLoader) { *out = make([]MavenArtifact, len(*in)) copy(*out, *in) } + if in.Metadata != nil { + in, out := &in.Metadata, &out.Metadata + *out = make(map[string]string, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CamelLoader. @@ -797,6 +811,13 @@ func (in *IntegrationKitSpec) DeepCopyInto(out *IntegrationKitSpec) { *out = make([]string, len(*in)) copy(*out, *in) } + if in.Sources != nil { + in, out := &in.Sources, &out.Sources + *out = make([]SourceSpec, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IntegrationKitSpec. diff --git a/pkg/builder/quarkus.go b/pkg/builder/quarkus.go index 91d6bfa33b..0fe32c832b 100644 --- a/pkg/builder/quarkus.go +++ b/pkg/builder/quarkus.go @@ -30,7 +30,9 @@ import ( "github.com/apache/camel-k/pkg/util/camel" "github.com/apache/camel-k/pkg/util/defaults" "github.com/apache/camel-k/pkg/util/digest" + "github.com/apache/camel-k/pkg/util/kubernetes" "github.com/apache/camel-k/pkg/util/maven" + corev1 "k8s.io/api/core/v1" ) func init() { @@ -48,6 +50,7 @@ type quarkusSteps struct { GenerateQuarkusProject Step BuildQuarkusRunner Step ComputeQuarkusDependencies Step + PrepareProjectWithSources Step CommonSteps []Step } @@ -55,10 +58,58 @@ type quarkusSteps struct { var Quarkus = quarkusSteps{ LoadCamelQuarkusCatalog: NewStep(InitPhase, loadCamelQuarkusCatalog), GenerateQuarkusProject: NewStep(ProjectGenerationPhase, generateQuarkusProject), + PrepareProjectWithSources: NewStep(ProjectBuildPhase-1, prepareProjectWithSources), BuildQuarkusRunner: NewStep(ProjectBuildPhase, buildQuarkusRunner), ComputeQuarkusDependencies: NewStep(ProjectBuildPhase+1, computeQuarkusDependencies), } +func resolveBuildSources(ctx *builderContext) ([]v1.SourceSpec, error) { + resources := kubernetes.NewCollection() + return kubernetes.ResolveSources(ctx.Build.Sources, func(name string) (*corev1.ConfigMap, error) { + // the config map could be part of the resources created + // by traits + cm := resources.GetConfigMap(func(m *corev1.ConfigMap) bool { + return m.Name == name + }) + + if cm != nil { + return cm, nil + } + + return kubernetes.GetConfigMap(ctx.C, ctx.Client, name, ctx.Namespace) + }) +} + +func prepareProjectWithSources(ctx *builderContext) error { + sources, err := resolveBuildSources(ctx) + if err != nil { + return err + } + sourcesPath := filepath.Join(ctx.Path, "maven", "src", "main", "resources", "routes") + if err := os.MkdirAll(sourcesPath, os.ModePerm); err != nil { + return errors.Wrap(err, "failure while creating resource folder") + } + + sourceList := "" + for _, source := range sources { + if sourceList != "" { + sourceList += "," + } + sourceList += "classpath:routes/" + source.Name + if err := os.WriteFile(filepath.Join(sourcesPath, source.Name), []byte(source.Content), os.ModePerm); err != nil { + return errors.Wrapf(err, "failure while writing %s", source.Name) + } + } + + if sourceList != "" { + routesIncludedPattern := "camel.main.routes-include-pattern = " + sourceList + if err := os.WriteFile(filepath.Join(filepath.Dir(sourcesPath), "application.properties"), []byte(routesIncludedPattern), os.ModePerm); err != nil { + return errors.Wrapf(err, "failure while writing the configuration application.properties") + } + } + return nil +} + func loadCamelQuarkusCatalog(ctx *builderContext) error { catalog, err := camel.LoadCatalog(ctx.C, ctx.Client, ctx.Namespace, ctx.Build.Runtime) if err != nil { @@ -196,7 +247,7 @@ func BuildQuarkusRunnerCommon(ctx context.Context, mc maven.Context, project mav // may fail the build. // In the future there should be a way to provide build information from secrets, // configmap, etc. - if _, err := os.Create(filepath.Join(resourcesPath, "application.properties")); err != nil { + if _, err := os.OpenFile(filepath.Join(resourcesPath, "application.properties"), os.O_RDWR|os.O_CREATE, 0666); err != nil { return errors.Wrap(err, "failure while creating application.properties") } diff --git a/pkg/client/camel/applyconfiguration/camel/v1/buildertask.go b/pkg/client/camel/applyconfiguration/camel/v1/buildertask.go index 2cbaa72bd1..ceea83625b 100644 --- a/pkg/client/camel/applyconfiguration/camel/v1/buildertask.go +++ b/pkg/client/camel/applyconfiguration/camel/v1/buildertask.go @@ -29,6 +29,7 @@ type BuilderTaskApplyConfiguration struct { Steps []string `json:"steps,omitempty"` Maven *MavenBuildSpecApplyConfiguration `json:"maven,omitempty"` BuildDir *string `json:"buildDir,omitempty"` + Sources []SourceSpecApplyConfiguration `json:"sources,omitempty"` } // BuilderTaskApplyConfiguration constructs an declarative configuration of the BuilderTask type for use with @@ -96,3 +97,16 @@ func (b *BuilderTaskApplyConfiguration) WithBuildDir(value string) *BuilderTaskA b.BuildDir = &value return b } + +// WithSources adds the given value to the Sources field in the declarative configuration +// and returns the receiver, so that objects can be build by chaining "With" function invocations. +// If called multiple times, values provided by each call will be appended to the Sources field. +func (b *BuilderTaskApplyConfiguration) WithSources(values ...*SourceSpecApplyConfiguration) *BuilderTaskApplyConfiguration { + for i := range values { + if values[i] == nil { + panic("nil value passed to WithSources") + } + b.Sources = append(b.Sources, *values[i]) + } + return b +} diff --git a/pkg/client/camel/applyconfiguration/camel/v1/camelloader.go b/pkg/client/camel/applyconfiguration/camel/v1/camelloader.go index 2867b58d45..9ebf7d1e45 100644 --- a/pkg/client/camel/applyconfiguration/camel/v1/camelloader.go +++ b/pkg/client/camel/applyconfiguration/camel/v1/camelloader.go @@ -25,6 +25,7 @@ type CamelLoaderApplyConfiguration struct { MavenArtifactApplyConfiguration `json:",inline"` Languages []string `json:"languages,omitempty"` Dependencies []MavenArtifactApplyConfiguration `json:"dependencies,omitempty"` + Metadata map[string]string `json:"metadata,omitempty"` } // CamelLoaderApplyConfiguration constructs an declarative configuration of the CamelLoader type for use with @@ -79,3 +80,17 @@ func (b *CamelLoaderApplyConfiguration) WithDependencies(values ...*MavenArtifac } return b } + +// WithMetadata puts the entries into the Metadata field in the declarative configuration +// and returns the receiver, so that objects can be build by chaining "With" function invocations. +// If called multiple times, the entries provided by each call will be put on the Metadata field, +// overwriting an existing map entries in Metadata field with the same key. +func (b *CamelLoaderApplyConfiguration) WithMetadata(entries map[string]string) *CamelLoaderApplyConfiguration { + if b.Metadata == nil && len(entries) > 0 { + b.Metadata = make(map[string]string, len(entries)) + } + for k, v := range entries { + b.Metadata[k] = v + } + return b +} diff --git a/pkg/client/camel/applyconfiguration/camel/v1/integrationkitspec.go b/pkg/client/camel/applyconfiguration/camel/v1/integrationkitspec.go index 08d6ae1535..9b408fe8d3 100644 --- a/pkg/client/camel/applyconfiguration/camel/v1/integrationkitspec.go +++ b/pkg/client/camel/applyconfiguration/camel/v1/integrationkitspec.go @@ -32,6 +32,7 @@ type IntegrationKitSpecApplyConfiguration struct { Traits *IntegrationKitTraitsApplyConfiguration `json:"traits,omitempty"` Configuration []ConfigurationSpecApplyConfiguration `json:"configuration,omitempty"` Repositories []string `json:"repositories,omitempty"` + Sources []SourceSpecApplyConfiguration `json:"sources,omitempty"` } // IntegrationKitSpecApplyConfiguration constructs an declarative configuration of the IntegrationKitSpec type for use with @@ -96,3 +97,16 @@ func (b *IntegrationKitSpecApplyConfiguration) WithRepositories(values ...string } return b } + +// WithSources adds the given value to the Sources field in the declarative configuration +// and returns the receiver, so that objects can be build by chaining "With" function invocations. +// If called multiple times, values provided by each call will be appended to the Sources field. +func (b *IntegrationKitSpecApplyConfiguration) WithSources(values ...*SourceSpecApplyConfiguration) *IntegrationKitSpecApplyConfiguration { + for i := range values { + if values[i] == nil { + panic("nil value passed to WithSources") + } + b.Sources = append(b.Sources, *values[i]) + } + return b +} diff --git a/pkg/resources/resources.go b/pkg/resources/resources.go index 6386882612..6a9d81f166 100644 --- a/pkg/resources/resources.go +++ b/pkg/resources/resources.go @@ -117,23 +117,23 @@ var assets = func() http.FileSystem { "/crd/bases/camel.apache.org_builds.yaml": &vfsgen۰CompressedFileInfo{ name: "camel.apache.org_builds.yaml", modTime: time.Time{}, - uncompressedSize: 35823, + uncompressedSize: 39199, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x3d\x5d\x93\xdb\x36\x92\xef\xfa\x15\x5d\x99\x07\x8f\xab\xf4\x91\xaf\xcd\xe5\xe6\xea\xea\x4a\x3b\x8e\xb3\x73\x8e\x3d\x3e\x6b\xe2\x24\x6f\x03\x91\x2d\x09\x11\x09\xf0\x00\x70\x64\xed\xd5\xfd\xf7\x2b\x34\x40\x8a\x92\xf8\x01\xce\x68\xe2\xbd\x8d\xf0\x62\x0f\x05\x36\x1a\xfd\x8d\x46\x13\xb8\x80\xd1\xe9\xda\xe0\x02\x7e\xe2\x11\x0a\x8d\x31\x18\x09\x66\x85\x30\xcd\x58\xb4\x42\x98\xc9\x85\xd9\x30\x85\xf0\x5a\xe6\x22\x66\x86\x4b\x01\x97\xd3\xd9\xeb\x97\x90\x8b\x18\x15\x48\x81\x20\x15\xa4\x52\xe1\xe0\x02\x22\x29\x8c\xe2\xf3\xdc\x48\x05\x89\x03\x08\x6c\xa9\x10\x53\x14\x46\x8f\x01\x66\x88\x04\xfd\xdd\xed\xdd\xcd\xf5\x0f\xb0\xe0\x09\x42\xcc\xb5\x7b\x09\x63\xd8\x70\xb3\x1a\x5c\x80\x59\x71\x0d\x1b\xa9\xd6\xb0\x90\x0a\x58\x1c\x73\x3b\x30\x4b\x80\x8b\x85\x54\xa9\x43\x43\xe1\x92\xa9\x98\x8b\x25\x44\x32\xdb\x2a\xbe\x5c\x19\x90\x1b\x81\x4a\xaf\x78\x36\x1e\x5c\xc0\x9d\x9d\xc6\xec\x75\x81\x89\x76\x60\x69\x4c\x23\xe1\x37\x99\xfb\x39\x54\xa6\xeb\xa9\x30\x84\x8f\xa8\xb4\x1d\xe4\xeb\xf1\x97\x83\x0b\xb8\xb4\x5d\xbe\xf0\x3f\x7e\xf1\xf2\xdf\x60\x2b\x73\x48\xd9\x16\x84\x34\x90\x6b\xac\x40\xc6\x4f\x11\x66\x06\xb8\x80\x48\xa6\x59\xc2\x99\x88\x70\x37\xad\x72\x84\x31\x10\x02\x16\x86\x9c\x1b\xc6\x05\x30\x9a\x06\xc8\x45\xb5\x1b\x30\x33\xb8\x18\x5c\x00\xb5\x95\x31\xd9\xd5\x64\xb2\xd9\x6c\xc6\x8c\xd0\x1d\x4b\xb5\x9c\x14\xb3\x9b\xfc\x74\x73\xfd\xc3\xbb\xd9\x0f\x23\x42\x79\x70\x01\x3f\x8b\x04\xb5\x06\x85\xff\x9d\x73\x85\x31\xcc\xb7\xc0\xb2\x2c\xe1\x11\x9b\x27\x08\x09\xdb\x58\xc6\x11\x77\x88\xe9\x5c\xc0\x46\x71\xc3\xc5\x72\x08\xda\x73\x7d\x70\xb1\xc7\x9d\x1d\xb9\x0a\xf4\xb8\xde\xeb\x20\x05\x30\x01\x5f\x4c\x67\x70\x33\xfb\x02\xfe\x3a\x9d\xdd\xcc\x86\x83\x0b\xf8\xe5\xe6\xee\x6f\xb7\x3f\xdf\xc1\x2f\xd3\x0f\x1f\xa6\xef\xee\x6e\x7e\x98\xc1\xed\x07\xb8\xbe\x7d\xf7\xea\xe6\xee\xe6\xf6\xdd\x0c\x6e\x5f\xc3\xf4\xdd\x6f\xf0\xe6\xe6\xdd\xab\x21\x20\x37\x2b\x54\x80\x9f\x32\x65\xf1\x97\x0a\xb8\x25\x24\xc6\x96\xa7\x85\x00\x15\x08\x58\xf9\xb0\x7f\xeb\x0c\x23\xbe\xe0\x11\x24\x4c\x2c\x73\xb6\x44\x58\xca\x07\x54\xc2\x8a\x47\x86\x2a\xe5\xda\xb2\x53\x03\x13\xf1\xe0\x02\x12\x9e\x72\x43\x52\xa4\x8f\x27\x65\x87\x39\xa5\x6e\x0d\x58\xc6\xbd\x38\x5d\x01\xcb\x38\x7e\x32\x28\x08\x9b\xf1\xfa\x7b\x3d\xe6\x72\xf2\xf0\xd5\x60\xcd\x45\x7c\x05\xd7\xb9\x36\x32\xfd\x80\x5a\xe6\x2a\xc2\x57\xb8\xe0\x82\x24\x7f\x90\xa2\x61\x31\x33\xec\x6a\x00\xc0\x84\x90\x1e\x79\xfb\x27\x38\xad\x93\x49\x82\x6a\xb4\x44\x31\x5e\xe7\x73\x9c\xe7\x3c\x89\x51\x11\xf0\x62\xe8\x87\x2f\xc7\xdf\x8d\xbf\x1a\x00\x44\x0a\xe9\xf5\x3b\x9e\xa2\x36\x2c\xcd\xae\x40\xe4\x49\x32\x00\x48\xd8\x1c\x13\x0f\x95\x65\xd9\x15\x44\x2c\xc5\x64\xb4\x1e\x00\x08\x96\xe2\x15\x10\x5c\x3d\xa6\xc7\x15\x21\x1c\x58\xf2\xdb\xd7\x96\x4a\xe6\xc5\x6b\xd5\xdf\xdd\xfb\x05\xbe\xcc\xe0\x52\x2a\x5e\xfc\x3d\x82\xb5\xed\xef\xff\x1f\x95\xff\x77\x34\xf9\xab\x1d\x92\xfe\x4e\xb8\x36\x6f\x76\xcf\x7e\xe2\xda\xd0\xf3\x2c\xc9\x15\x4b\x0a\xe4\xe8\x91\x5e\x49\x65\xde\xed\x86\x1c\x01\x5f\xcf\xdd\x2f\x5c\x2c\xf3\x84\x29\xdf\x7d\x00\xa0\x23\x99\xe1\x15\x50\xef\x8c\x45\x68\x9f\x79\xa2\xd1\xdb\xa3\x8a\x01\x7a\xaf\xb8\x30\xa8\xae\x65\x92\xa7\xa2\x84\x1d\xa3\x8e\x14\xcf\x0c\x91\xd9\x5a\x1d\x02\x0d\xd9\x8a\x69\x1c\x38\xdd\xfd\x5d\x4b\xf1\x9e\x99\xd5\x15\x8c\xb5\x61\x26\xd7\xe3\xea\xaf\x8e\xb8\xef\x2b\x4f\xcc\xd6\xe2\x64\x35\x4b\x2c\x9b\x46\x31\x3c\xb5\x06\x02\x36\x2b\x1e\xad\x48\x82\xdd\xb8\x1b\xa6\x1d\x8f\x31\x3e\x1e\xbd\x90\xa4\xf1\x91\x14\xec\xe1\x32\x5d\xee\x63\x12\x33\x83\x8f\xc1\x23\x61\xda\xc0\xa5\xc2\xd1\x4b\x6d\x98\xaa\xc5\xc8\xd3\xc3\xff\x3e\x35\x7b\x78\xcc\xf6\xde\xea\xc6\xc5\x8d\x4c\xa3\xe2\x27\x8c\x72\xf2\x14\x71\xae\x68\xaa\x8d\x63\x1f\x74\x70\x43\xbf\xda\x7f\x18\xc2\x11\x91\xa7\x73\xeb\x14\x17\x95\xc1\x99\x31\x98\x66\x46\x37\x0e\xbe\x60\x3c\xc9\x15\x8e\x15\x46\xd6\x64\x6d\xc7\xfe\x8d\x7d\x7e\xec\x43\x71\xc8\x58\x59\x5c\xa2\x1a\xec\xba\x3d\x7c\xe5\x84\x3c\x5a\x61\xca\xae\x7c\x67\x99\xa1\x98\xbe\xbf\xf9\xf8\xcd\x6c\xef\x31\xec\xe3\x4f\x3a\x65\x0d\xba\x65\xa0\xeb\x59\x5a\x57\xa7\x59\x30\x7d\x7f\x53\xbe\x9b\x29\x99\xa1\x32\xa5\x12\xbb\x56\x31\x75\x95\xa7\x07\x23\xbd\xb0\xc8\x78\xff\x1a\x5b\x1b\x87\x6e\x50\xaf\x74\x18\x7b\xfc\x9d\x2f\xe4\xd6\x85\x59\x57\x80\xc2\x54\xf9\x51\x34\xb9\xb0\x3e\x47\xce\x7f\xc7\xc8\x8c\x61\x86\xca\x82\xb1\x06\x20\x4f\x62\x6b\x1a\x1f\x50\x19\xb0\xb4\x5d\x0a\xfe\xf7\x12\xb6\x2e\xe2\x9c\x84\x19\xd4\xe6\x00\x26\x29\xb9\x8d\x37\x1e\x58\x92\xe3\xd0\x7a\x0d\x72\xd5\x0a\xed\x28\x90\x8b\x0a\x3c\xea\xa2\xc7\xf0\x56\x2a\xa4\xf8\xe4\x8a\x1c\xb5\xbe\x9a\x4c\x96\xdc\x14\x26\x3e\x92\x69\x9a\x0b\x6e\xb6\x93\x4a\x8c\xa4\x27\x31\x3e\x60\x32\xd1\x7c\x39\x62\x2a\x5a\x71\x83\x91\xc9\x15\x4e\x58\xc6\x47\x84\xba\x20\x33\x3f\x4e\xe3\x0b\xe5\x9d\x82\x7e\xb1\x87\xeb\x91\x54\xba\x46\xa6\xb3\x85\x03\xd6\x8c\x5a\x5e\x33\xff\xaa\x9b\xc5\x8e\xd0\xf6\x91\xa5\xce\x87\x1f\x66\x77\x50\x0c\x4d\xcc\x38\xa4\x3e\xd1\x7d\xf7\xa2\xde\xb1\xc0\x12\x8c\x8b\x05\x39\x57\x1b\x1d\x29\x99\x12\x4c\x14\x71\x26\xb9\x30\xf4\x47\x94\x70\x14\x87\xe4\xd7\xf9\x3c\xe5\xc6\x85\x2e\xa8\x8d\xe5\xd5\x18\xae\xc9\xef\xc1\x1c\x21\xcf\xac\x05\x88\xc7\x70\x23\xe0\xda\x7a\x8b\x6b\x66\x03\xaa\x67\x66\x80\xa5\xb4\x1e\x59\xc2\x86\xb1\xa0\xea\xb2\x0f\x3b\x3b\xaa\x55\x7e\x28\xfc\x67\x03\xbf\x48\x37\x67\x19\x46\x7b\xfa\xe2\x34\xd6\xaa\xa1\x0b\x88\x8d\xb4\xd4\x71\x96\xa7\x34\x99\xae\xd5\x6b\x2b\x8d\x6c\x94\x75\xc7\xdb\xc3\xe7\x70\x6c\xdd\x8a\xae\x60\x56\xcc\x14\x1a\x66\xf9\xe1\x97\x0d\x19\x2a\x1b\x9d\xef\x70\x1b\x1f\xc1\x44\x91\xa7\xc7\x23\x8d\x40\xc9\xdc\x70\x81\x35\xbf\x64\x32\x3e\x7a\xda\x40\x71\xfa\x89\xe9\xf5\xd1\x1c\xeb\xe6\x62\x45\xcb\x86\xe6\x72\xe1\xe9\x48\x6f\x7a\x1a\xfa\x99\x60\x0c\x4c\x43\xc6\x94\x01\xb9\x38\x82\x09\x15\x26\x94\xe6\xfe\x78\xca\xdc\x60\x5a\x83\xd1\x21\x4e\x4c\xaf\x2b\x5a\x44\xa0\xd9\xdc\x52\x3c\x32\x84\xda\x18\x6e\x45\xb2\x75\xeb\x2d\x5a\x22\xd4\x40\x74\xd3\xaf\x70\x26\x92\x62\xc1\x97\xb9\x72\xfc\x29\xc1\xef\x47\xcc\xf4\x4e\xb4\x92\x1a\x6b\xb0\x6f\x13\x1d\xd7\xc8\x37\xb0\x55\xfd\x8f\x07\xb3\x64\x8e\x5c\x6c\x65\xa7\x3b\x24\xf7\xe2\x1f\x94\xc2\xd5\x00\xa6\x0b\x0b\xc2\x84\x69\xbc\x49\xd9\x12\x9b\xbb\x1c\xe0\x63\xdf\x00\x6e\x5f\x81\x84\x6d\xbd\x27\xad\x6f\x2d\x32\xb7\x6b\xd6\xb4\xe0\x27\xf3\x8a\xab\x60\x14\x22\x26\xbc\x0e\x2d\xf2\xc4\x72\x49\xaf\x98\xb7\x63\xb4\x6c\x04\x49\xab\x21\x92\xce\xa7\xa2\xe7\xa4\x54\xaa\x7e\x44\x8a\x65\xb4\x46\xe5\xc9\x64\xa4\x45\xf5\xa9\x88\xf0\x5e\x08\x2c\x38\x2d\xfd\x69\x7c\x1b\xe6\x3c\x75\x74\x0a\x95\x42\x07\xb7\x9d\x8b\x45\xb9\x65\xc2\x53\x07\xcf\x12\x66\xac\x6d\x09\x46\xc0\x5a\xab\xe2\x25\x8b\x88\x8b\x70\x89\x1a\x4f\xc5\x45\xe1\xd2\x2e\xde\x6b\x6c\x7f\x03\x2e\x9b\x15\x2a\x92\x81\x2c\x9f\x27\x5c\xbb\x60\xbf\xc2\x9e\x16\x38\x21\x0a\x6c\x1b\x8b\x63\xbb\xec\x6f\xef\x74\x80\x96\xc5\xe2\xe7\x0f\x37\x16\x31\x16\x45\xa8\xdb\x14\x05\x42\x89\x03\xb4\x52\xed\x8d\x87\x33\xb9\x29\xcb\xfc\x72\x48\x1b\xa9\xbc\xbf\xbe\xb6\xf3\x5f\xf0\xa8\x58\xbe\xb4\xb5\x69\x6e\x56\x52\x71\xd3\x64\x0f\x7b\x4f\x85\x0b\x8d\x51\xae\x5a\x05\xff\x68\x42\x7c\x51\xcc\xc9\x30\x2e\x50\x95\x12\x63\x63\xc7\x02\x22\x5c\x72\x1c\x76\x4e\xc8\x86\x64\x20\x45\xb2\x7d\x19\x34\xa3\xb9\x94\x09\xb2\xc3\x58\x7f\xbf\x49\xb5\x64\x82\xff\x9d\x82\x9f\xde\x7c\x2a\x67\x52\x85\x72\x2a\x62\x6b\x8c\x14\x9a\xde\x38\xb9\xd7\xbc\x96\x45\x0a\x63\x1b\x7e\xb2\x44\x83\xf5\x08\x24\x48\xc7\xb1\xd0\xa3\x30\x6c\x88\x42\xf7\xdb\x03\xaa\xb9\xd4\xe1\x96\x32\x91\x4b\xca\x03\x57\x93\xb4\x9d\x38\xb4\xf3\xb9\x13\x4f\x9f\xe7\xea\x13\x7c\xa0\xa2\x58\xeb\x92\x7c\xbf\xb5\xe8\x4d\x02\xf9\x3c\x21\x07\x2d\xa7\x4f\x1c\x76\x10\x15\xfa\x04\x1d\x1b\xa9\xd6\x94\xeb\x82\x98\x2b\x8c\x8c\x54\xdb\x13\x79\xf6\x18\x33\x14\x31\x8a\xa8\xc3\xd0\x1f\xd1\x24\xe1\xda\x46\xd9\x7b\x00\x3c\x4e\x3e\x0d\xc1\x75\x99\xb2\x6b\x6a\x8d\xb1\x76\xcf\x59\x14\xdd\x98\x52\xac\xd9\x02\xa7\xec\x01\x5b\x0d\x4f\x83\x73\xf0\x79\xa5\xbd\xcc\xfc\x5b\x0b\xab\xc8\xb7\xb4\x3b\x48\x97\xc3\x27\x08\xc7\x79\xc6\xba\x16\xea\x7a\x23\x36\x23\x03\xd4\xcf\xf9\xda\xf8\xc4\xbf\xe7\x82\x25\x26\x62\x58\xe3\x76\x58\xb8\x0d\x9f\x4b\xe8\xf4\x10\xd7\x53\x88\x76\x1e\xf2\x52\xbf\x2c\x17\x96\x91\x14\x02\xed\x3a\xc8\xae\x61\x52\x69\xd0\x91\xab\x13\xa2\xc2\x4c\x6a\x6e\x28\xd5\x3c\x86\x1b\x43\xc1\xb6\xc7\x0a\x7e\x1d\xff\xe5\xcb\x7f\xad\x8e\xa8\x29\xcf\xd3\x09\xf4\xfd\x9b\xeb\xd9\xc5\xbf\x80\x33\x71\x06\xe3\x2a\x08\x88\x56\x8c\x0b\x3d\x86\x29\xfc\xe7\x9b\xd9\xae\x4f\x27\xd0\x35\x6e\xc9\xbe\x53\x4e\x26\x37\xd2\x5a\xcf\x88\x25\xc9\xb6\x48\xe4\xd2\xca\x80\x7a\x50\x24\x31\xed\x84\xb8\x4f\x4a\x97\xc2\xda\x5f\x0e\x16\x2b\x77\xa6\x81\x81\x51\xb9\x0e\x41\xf4\x80\x43\xf3\x2d\xe1\xe3\xa4\x37\x92\x69\xca\x44\xac\xc7\xf0\xce\xf2\x88\xb2\x04\x21\x8c\x57\x52\x9a\x03\xee\x3b\x97\xc7\x12\x2d\x81\xa7\x99\x54\x96\x02\x5c\xf8\x94\xdd\x7e\x6e\xbb\x9b\xa8\x75\xab\xda\x6a\x0b\xb0\x1a\x70\x28\xf5\x4e\xe2\xdf\xe0\x76\x86\x09\x19\x50\xd0\xf4\x1f\x4b\xcb\x35\xd2\x36\x1e\xeb\x84\x08\x1e\x4c\x17\x82\xe1\x2a\xec\xda\x1a\x5b\x43\xfa\x86\x29\x59\x45\xf6\xa8\x57\x82\x11\x2b\x77\x34\x33\x4a\xe0\x8d\x01\xde\xe6\x47\xe9\xd2\xa6\x36\x47\x60\xf0\xc0\x12\x1e\x17\xd0\xd6\xb8\xed\x9e\x2c\xf4\x09\xb5\x5c\xeb\x5a\xd2\xed\xda\x7e\x1e\xf4\x5d\x65\x75\xa7\x70\x81\x0a\x85\xa9\x66\x12\x03\x27\x5a\xe4\x1b\xd7\xf9\x1c\x95\x40\x83\x94\x72\x8c\x65\xa4\x27\x91\x14\x11\x66\x46\x4f\xe4\x03\xaa\x07\x8e\x9b\x89\x75\xbe\x5c\x2c\x47\x76\x75\x3f\x72\xb1\x8d\x9e\xd0\xf6\xd8\xe4\x82\xfe\x09\x1c\xf4\xee\xf6\xd5\xed\x15\x4c\xe3\xd8\xa7\x08\x7c\x0a\x61\xc1\x31\xb1\x3a\xb8\x4b\xc5\x0f\x29\x1d\xdc\x1d\xa2\xbb\x96\xf3\xf8\x3f\x5e\x3c\x07\x8f\x64\xe6\xf6\xd0\x1e\xc1\xa7\x19\xe5\xaa\xb6\x36\x32\x76\xd9\x90\xd2\xe7\xd0\xf6\xb0\x09\x25\x99\x15\xef\x34\xd7\x94\x45\x76\x99\xd4\x6e\x2b\x02\xbd\xd6\x24\x40\x6e\xc7\xf9\xf5\xee\x89\x8e\x2c\x46\x9d\xbd\x82\xa2\xf5\x6a\xd7\xf6\xb0\xc5\xb6\x28\xe1\xb7\x59\x65\x0b\xb9\xb9\x1d\x99\x88\xeb\x9f\x6e\x3c\x2b\xb5\x33\xf1\x64\xa9\x33\x8a\xda\x8a\xea\x91\xce\x29\x15\xd1\x1e\x53\xcb\x9c\x6a\x43\x28\xf4\xd9\x77\x23\x43\xc0\xf1\x72\x3c\x84\xfb\xd1\xc7\xe1\x68\x24\xe4\xc8\x28\x26\xf4\x02\xd5\x28\x53\x72\xa9\x50\xeb\xe1\xe8\x95\x36\xdb\x04\xc7\x91\x4c\xa4\xfa\x77\x81\x0f\xa8\xee\xbb\xed\xcb\x0c\xb1\xd4\x58\x8a\xe1\xaa\xe5\x14\x0a\x17\x93\x6f\xc6\xdf\x8f\xbf\x75\x3f\x8d\x30\x9d\x63\x1c\xa3\x9a\x44\x09\x1f\xaf\x4c\x9a\x9c\xc8\x9b\xf4\x50\x9e\x50\xa6\x96\x85\x05\xbd\x79\xea\x08\x3f\xf7\xa9\xec\xb2\x3c\xa1\x9d\x52\xcb\x9c\xc7\xa8\x27\x29\x17\xdc\xfd\x7f\x94\x6b\x6b\xd7\x2a\x00\x4e\x48\xaf\x3d\x9c\x09\xdf\xa9\x8d\x16\x58\x64\xca\x3d\x11\x06\x3f\x4e\x3f\xc2\xe5\x8f\x54\x83\x50\xfc\x7a\xe5\x8d\x60\x57\xda\xc1\x36\x47\x06\xe6\xdf\x3c\xb1\x53\x2e\xc0\xde\x04\xd8\x85\xfa\x09\xc3\x34\x14\x33\xe8\x6f\x9d\xa9\x72\xe3\x09\xb8\x11\xd5\x9f\x03\xb1\x87\xba\xfd\xe4\x1e\x88\x79\xfe\x9f\x1e\xb5\x3e\x66\x7e\xc7\xfc\x80\xce\x9e\x15\x9f\xc3\x2f\x24\x32\x62\xc9\x87\x62\xd9\xd4\x19\x45\x1e\x27\xaa\x99\x59\x15\xf1\x14\xc1\xf2\x4c\x28\x57\x62\x9d\xe1\x5f\x30\x0b\xc2\xb5\xaf\x5a\xbe\x13\xae\xb1\x3d\x64\xa1\xc1\x9e\xee\x30\x0c\x9b\x74\x00\x27\xab\x2b\xda\x5e\xcc\xa9\xd4\x50\x56\x61\x3c\x83\x6d\xde\x49\x4f\xc5\x30\x1f\x4a\xc1\x89\x6d\x2b\x7f\x8c\xdd\xe2\x94\x5e\x5d\x70\x9f\x9d\xef\x81\x1c\xfc\x61\x0b\x14\xb1\xb7\x3e\x79\x4e\x04\x15\x26\xc8\x74\x18\xb9\x6b\xb6\x30\x73\x8d\xa0\x0d\x55\x96\x16\x90\x82\x00\xf5\xe3\xb3\x6d\xd1\x0a\xa3\xb5\xce\xd3\xf7\x32\xe1\x51\xe0\x3a\xf7\x08\xe5\x5f\x56\x28\xbc\x50\xc6\x98\x25\x72\xeb\xaa\x77\x75\x68\xfc\xba\x6b\x3b\xae\x0c\x81\x1b\x97\xb2\x28\x40\x46\x52\x29\xd4\x99\x14\x71\x18\x0f\x0e\xa7\xe8\x70\x1a\xc3\x6f\x32\x57\x65\xcc\xcd\xdc\x0e\xdc\x3d\x5f\x0a\xa9\xf0\x3e\x74\x59\x67\xdb\xfd\x82\xf1\xe4\x7e\x68\xd7\x4c\xf7\x1b\xa6\xc4\x3d\x48\x01\x54\x1a\x2b\x96\xb4\x90\x12\x84\x71\x60\x80\xb1\x8f\x6b\xa7\x8d\xdb\xb5\x9e\x92\x09\x54\x37\x62\x45\x2b\x50\xcb\xe1\x48\xd3\x9d\x86\x67\x24\x31\xc0\x22\xc3\x1f\x28\xa7\x26\x15\x08\x19\x3e\xd9\x7e\xab\x40\xd7\x5c\xad\xd2\x93\x64\xf5\xc5\xdd\x8a\x6b\xc0\x84\x8a\xe8\x8b\xb2\x0d\xd4\xb0\x92\x1b\x90\x0b\x13\x90\x07\x3d\x44\xa7\x2c\x8f\xf3\x95\x86\x56\x9e\x64\x14\xe5\x6a\xec\x75\x62\xc3\x93\xa4\x8f\x0c\xc8\x34\x63\x3e\x35\xe9\xbc\xfe\xfb\xdb\xb7\x2f\x5e\x68\xaa\x0c\xa5\xda\x52\xb8\x0c\xda\xbe\xaa\x36\x2a\x89\xdf\x69\x97\x05\xe7\x56\x64\x45\x61\x15\x69\x47\x48\x58\x5f\x34\x9f\x3e\x74\x29\xe4\x31\x39\xea\x68\x25\x79\xe4\xb2\x8d\x57\x70\xcf\x92\x0d\xdb\xea\x7e\x2a\x15\x33\x9e\x6c\xef\xe1\x32\xc6\x05\xcb\x13\xf3\x72\x08\xf7\x54\x3d\xf8\xc0\x92\xab\x5f\xef\xe1\xd2\x6d\xe6\xfd\xda\x67\xe2\x1a\x98\x28\x6a\x3b\x2d\x19\x52\x2e\x72\x83\xfa\x25\xe9\xad\x5b\xe4\x86\x25\x68\xe0\x31\xca\x16\x1e\xd6\x02\x45\xab\x5e\x35\x7b\xf8\xa4\xa0\x88\xd5\x36\x2d\x58\xa6\x57\xb2\x7b\x43\xc2\xb5\x7a\xa7\xe4\x61\x9c\xbd\xd1\xd9\x1b\xd5\xb6\xb3\x37\xea\x85\xfd\xd9\x1b\x9d\xbd\xd1\x9f\xd3\x1b\xe5\xea\x31\x5b\x17\x56\x02\x69\xaf\xfe\x0f\x58\xc5\xf5\xc9\x48\xf1\x90\x4c\x54\xae\xba\x15\xef\x19\xb2\x50\xda\x7d\x41\xd0\x2b\xc1\x51\x7c\x75\x70\xc9\x72\xb3\xea\xd2\xc3\xc0\xbc\x46\xbf\x70\x60\xaf\xb8\x23\x4c\x52\x1e\x97\x99\x72\xad\xb7\x2a\xf5\x14\xf7\xd0\x9c\x4a\x4f\x3c\x32\xa6\xf5\x46\xaa\xe7\x01\x9e\x6b\x54\xe1\x99\x96\x5e\xc0\x9f\x45\xcc\x8d\xe1\x62\xd9\x4f\xce\xa7\xc5\x3e\x75\x84\x85\x0b\xb9\x26\xc1\x7b\xcb\x32\x6b\x92\xdd\xb6\x68\xe7\x74\xd6\xe8\x3f\xe3\xf0\xe5\x30\xba\x52\xc7\x51\xe0\xd5\x15\x43\xf5\x51\x8f\xa8\xc0\xf1\x0d\x6e\x3f\xe0\x22\x84\x41\x07\xea\x7d\x58\x5d\xb1\x9b\x76\x48\xac\xd7\x37\xb2\x0f\x2e\xa1\x68\x28\xa2\x28\xcb\x26\x42\x03\xd1\xde\xea\x1c\x2e\xe7\xcf\x54\xf4\xf0\x99\xca\x1e\xfa\x14\x3e\x04\x83\xa4\x02\x89\x1e\xa5\x0f\x8f\xe0\x57\xbf\xf2\x87\x80\x02\x88\xaa\xda\x07\x4f\x94\x1b\xfd\xe8\x2a\x88\xfe\x6b\x8e\x3e\xd1\x5b\x58\x2d\x44\x4f\x37\xa6\x8b\x32\xad\x13\xd9\x1c\x1d\x58\xaf\xf5\xc7\x1b\x9c\x86\xaa\xad\x60\xc1\xa8\x54\x77\x3d\xa5\x6e\xeb\x6c\xc8\xce\x86\xec\xa0\x3d\x4b\x25\xd7\xe3\x6b\xb9\xfe\xdf\x59\xb1\xe0\xae\x45\xdc\x36\xc3\x28\x57\xdc\xf4\xdb\xbd\x7f\xd6\xb8\x52\x7b\x8c\x0a\x65\x3d\xc7\x99\x45\x3b\xc7\x99\x01\xed\x6c\x9e\xcf\x71\x66\x6b\x3b\xc7\x99\xe7\x38\xb3\xb3\x9d\x0d\xd9\x9f\xdc\x90\x9d\xe3\xcc\x53\x74\x0d\xea\xf6\x59\x8f\x58\x50\xb9\x30\xbc\xc7\xf8\x2d\x5f\x66\x16\x07\x60\x79\x90\xad\x14\xac\x7c\x98\xd9\xd2\x2f\xf8\x1c\x84\x1d\xb4\xeb\x84\xf5\x3c\x10\xa1\xfa\x8d\x28\x0a\xa3\xb6\xe0\x4e\x5c\xba\x4c\x19\x17\x2f\xdb\x0e\x0a\x3a\x6e\x3d\x0e\x4b\xc8\xd8\x9c\x27\xfc\xf9\x4a\x72\xf7\xe6\x78\x5d\x0c\xb7\x75\x07\x59\x65\x4c\x19\x1e\xe5\x09\x53\xb0\x40\x66\x72\x85\xee\x04\x86\x70\xc5\xb3\x50\x36\x98\x24\xb0\x16\x72\x43\xcb\x93\xc3\x0f\x92\x4f\xbc\x63\x14\xfa\xb1\xf4\xae\x05\x6e\x5c\x15\xe0\x9f\xff\x93\x09\xd7\x7a\x7e\x38\xe1\x5a\xff\x62\x9b\xfe\x1f\x51\xb8\xf6\xd4\x4f\x29\x5c\x7b\x44\xa1\x48\xcf\xcf\x2a\x1a\xb1\x0d\xff\xb8\xe2\x09\xa8\xf6\xfa\xd0\xa2\x11\xd5\x3e\x9f\x5b\x3c\x1a\xd9\x7e\x55\x01\x3d\x3f\xc0\x28\x5e\x09\xfd\x0c\xc3\xb5\x9e\xbb\xab\xe1\xbb\x84\xd0\x73\x63\xbf\x97\xbd\xea\x81\xf5\xfe\x91\x4c\xce\xc2\x6a\x90\x0b\x1b\x0e\xc7\xee\x43\x70\xae\x83\x1c\x65\x8f\x61\xfb\x58\xc8\xfd\xb2\x8b\xba\xe3\x24\x04\xa2\xff\x46\x51\xe5\x22\xa8\xb2\x2e\xcc\xa7\xc3\xf9\x33\xb6\x1e\x13\x3e\x7f\xc6\xf6\x18\xc4\xce\x9f\xb1\xf5\xb0\x99\xf5\x67\x6f\x1e\xb7\x3f\xf6\xcb\x30\x1f\x50\x16\xc8\x9d\xca\x46\x66\x4a\x3e\xf0\x96\x43\x90\x6a\x71\xa1\x73\x53\x21\xa5\x83\xe7\x2b\x8b\x85\x02\xd6\x10\x38\x0e\x5d\xa7\x4e\x72\xfc\x57\xce\xd4\x3a\x3f\xd9\x99\x6b\x81\x8a\x52\x33\x9b\x37\xf0\xc1\x79\x9f\x02\xc6\x69\x50\x0a\x51\x90\xd1\xd1\x7a\xad\xb5\x73\xa0\x8f\x1e\x95\xfc\x68\xed\xd4\x3d\xdb\x20\x59\xd2\x06\xb3\xc7\x9d\xd9\x44\x6f\x5a\xb7\xea\x97\x94\x70\xa9\x11\x21\x5b\x2f\x27\xfe\x7c\xae\x49\x9b\xdb\xfa\x23\x0f\x6d\xea\x24\xc4\x9a\x09\xbe\x6e\xcc\xe8\x1d\x9c\x27\xf6\x86\x3a\xef\xce\x32\x75\x7f\xff\x93\x1c\x65\xca\xa2\x55\xf8\xe8\xb9\x46\x60\xee\x9d\x13\xe4\x3e\x02\xeb\xeb\xf7\xe5\x51\xe5\x08\x7c\x51\x60\x01\x5c\x07\xd6\x02\x87\x67\xe9\x32\xab\x67\xda\xa0\x30\x1f\x65\x92\xa7\x78\x9d\x30\xde\x7a\x8e\xe7\x31\x92\x2b\x84\xf7\x1f\xaf\xcb\x83\xad\x76\x27\x3a\x75\x91\x0e\x4e\x7c\xb8\xdf\xf9\xa4\xda\xf3\x49\xb5\xe7\xd3\x61\x6b\xdb\xf9\x74\xd8\xc0\x09\x9d\x4f\x87\xad\x41\xed\x7c\x3a\x6c\xfd\x0c\x3e\xc7\xe9\xb0\xfa\x6b\x1e\x18\xc9\xcd\xbe\xe6\xbb\x30\x6e\xf6\xf5\xcd\x29\x62\xb8\x7f\x70\x17\xfb\x59\x7d\x8b\x61\xcb\x3e\xb1\x65\x5c\x1c\x34\x49\xf1\xc0\xcc\x28\x64\xe9\xd3\x50\xe8\x96\x9d\x0c\x23\xa3\xea\x6e\xab\xa8\x41\x91\xd1\x7e\xb3\xed\x5e\x91\x22\xff\xe4\x9f\x64\x39\xf0\x8f\x2d\xcc\xe7\x30\xed\x1c\xa6\x35\xb5\x73\x98\x76\x0e\xd3\x8e\x50\xfb\x73\x84\x69\x1d\x5d\x5a\x7f\x6e\x4e\xa6\x19\x9e\xa2\xcc\x6b\x28\xb3\x5f\x30\xe8\x7a\xd5\xdc\x58\x95\xb2\x4f\x3c\xcd\xd3\x9a\x0b\xfa\xea\x6a\xff\xee\xca\xf7\x62\x64\x71\xc2\x05\xe5\x76\xb4\x2b\x3e\xdc\x01\xa5\xeb\x03\xdd\x55\x84\x59\x92\xbb\xe1\x3c\x0a\x35\x40\xcb\x01\xe1\x66\x51\x01\x52\x1d\x01\x3f\x45\xb4\x5d\x38\xac\xfc\xee\xbd\x20\x1c\x5d\x83\x06\x64\x67\x44\x84\x89\x7d\x81\x89\x98\x0a\x60\xe9\x60\xf6\x02\x55\x82\x40\x57\x3c\xbe\x66\x3c\xc1\x9a\xcb\xb1\x5c\x5c\x7c\x75\x78\x5d\xe1\x21\x4b\x6a\x04\xa3\x81\x91\xee\x82\xc1\x7d\x3e\xd5\xdc\x2b\x46\xbd\xf6\xf8\x24\xe7\xf4\x09\x36\x51\xd5\xec\xee\xc8\xda\x03\xd4\xec\x0b\x8a\x5d\xa2\xae\x7b\xb8\x58\xe5\x18\x58\xff\x46\x69\xa5\x62\xe0\x62\x77\xf5\xe0\x11\x9c\xb0\x4b\xb5\xca\xad\xd5\xca\xc5\x5a\x0c\x52\x66\x50\x71\x96\xd0\xed\x7d\xc5\xc8\x70\xc9\xe0\x77\x56\x1f\x26\x95\xd9\xfa\xad\x3b\x96\x04\x96\x28\x50\xb1\x04\xdc\xa1\x0f\x7b\x01\x2a\xa1\x5b\x67\x1d\xbb\x5c\x67\x71\x72\x49\x60\xbc\x59\x1e\xca\x72\x39\xfb\xdb\xf4\xab\x97\x45\x40\x41\x02\x7a\x74\x9f\x5e\xd1\x3a\x0d\x4b\xf3\x37\xdf\x47\x66\xae\x38\x3d\xcf\x6f\x1c\x5d\xfe\x38\xfd\x48\x61\x6f\x5a\x1c\x63\xd3\xbd\xc1\x21\x95\xa3\x1f\x45\x44\xf6\x5d\x17\x10\xba\x0b\x9a\xb7\x19\xea\x26\x2f\xd3\x39\x8f\xe2\xd0\x85\xa0\xd9\x38\x4b\xcd\xad\x56\xbb\x17\x0f\x84\x0f\x15\xdc\xbf\x97\xf1\xfd\x63\x91\x31\x4c\x2d\x9b\xfd\xc8\x11\x61\xf1\x93\x5d\x38\x60\xbc\x3b\x39\xc2\x23\xd3\x5e\x5a\xd1\x81\x46\xdb\x26\x56\xc3\x61\x10\x8f\xf4\x0e\x2d\x6b\x95\xb6\x8b\x50\x48\x89\x3a\x2e\xfa\x68\x99\x63\x24\x85\xdb\xca\x0d\x37\x3a\xbb\x57\xdc\x71\x33\x0a\x63\x6b\x7a\x8b\xab\x2f\x9f\x62\x78\xc8\x5a\x5e\x17\xf0\xfd\x6f\x73\x6f\x5c\x4b\x9b\xca\x76\x37\x6b\xb2\x7a\x95\x65\x74\x27\x02\xe3\xc2\xd5\x6f\x3e\xe6\x7a\xbe\x84\x69\x73\xa7\x98\xd0\x84\xca\x5d\x4b\x5d\xec\xde\x0c\x7e\x62\xda\x7b\x53\x6f\x56\xfc\x54\x4c\x09\xca\xb2\x4b\xc9\x94\x6e\x24\x74\x8e\xa6\x79\xb5\x2f\x81\x09\x52\xee\xa6\xe2\xfe\xd2\xf5\x31\x83\xa3\xc7\x4b\xb9\x9b\xee\xcf\x74\xac\x50\xf0\x54\xef\xe8\x16\xd8\xdd\x74\xb9\xae\xcc\x77\xc3\x74\x79\xdf\xe8\x73\xe3\x9e\xa2\xd6\x2d\xcb\xd8\x83\xcf\xf5\x56\x79\xca\xc4\x48\x21\x8b\xe9\xd4\x4d\xff\x32\x70\x11\x93\x4d\x16\x4b\x88\xd1\x30\x6e\x03\xcf\x79\x7d\x10\xe4\xd1\xb2\xeb\xd0\x92\xab\x4d\x93\xec\x44\x5e\x21\xd3\x81\x06\xf7\x8e\x22\x77\xdb\xbd\xac\xaf\x2e\x09\xfe\xc2\x5f\x19\x7d\x02\x8c\xea\xa2\x9f\x06\x8c\x7c\x08\xb4\x73\xa2\x0e\x99\x61\x71\xdd\xe6\x9d\xca\x71\x08\xaf\x59\xa2\x71\x08\x3f\x0b\xaa\x0f\x7e\x34\x5e\xd4\x21\x88\x4e\xdb\x8c\x46\xa7\xc3\x97\x7c\x65\x7a\x89\xdb\x23\x87\x6f\xf7\x03\x8d\x7a\x3c\x22\xb8\xa7\x73\x12\x31\x5f\xa2\xee\x5a\x41\x58\x5e\xb8\x8e\xce\xd2\xd4\x67\x27\x5a\x26\x1c\x37\x1e\xc6\xb3\x37\xce\x4a\x6e\x20\x91\x62\x69\x63\x00\x23\xe5\x7a\xff\xda\x6b\xb8\x5e\x31\xe1\xf6\x13\x8b\x1b\xc1\x61\x02\x37\xb3\xdb\x1a\x6a\x7c\xff\xdd\x97\x5f\xd9\x78\x42\xc0\xf5\x87\x57\xd6\xa5\x69\xb8\x75\x97\x6f\x53\x3e\x11\x1e\xbe\xa9\x5e\x4d\xbc\xca\xe7\xe3\x48\xa6\x93\xdb\xe9\xcd\xc4\x77\x1b\xcd\xfc\xad\xac\x34\xce\x84\x6b\x9d\xa3\x9e\x7c\xff\xed\x5f\xfa\x4c\x1b\x95\x92\x35\x69\xba\xe3\x48\xc3\xf6\xab\x3e\x86\x4b\xbe\x00\x26\x6a\x56\xf7\x2d\xa3\xf9\xeb\xcb\x03\xc6\xf3\x3a\xef\xb5\xcc\xbf\xd7\x3c\x66\xbb\x67\x6b\xb3\x37\x07\x0e\x5f\xaf\xa4\x5d\x1a\xda\x85\x9b\x3b\xaf\x6e\x5b\xf8\x78\x07\xa4\x59\x4b\xdb\xf4\xc8\x5d\xd6\x1e\x80\x80\x1b\xc8\x75\x2f\xce\xb8\xab\xc6\x3a\x9e\x10\xb5\x80\xba\x13\x6e\x1e\x60\x73\x9a\x62\x9f\x18\xfe\x88\x3d\x77\x51\x7d\xb3\x4f\xa0\xc9\x57\xaf\x97\x6f\x1c\xf8\x2d\xfb\x14\x38\x76\xb1\xec\xdf\x5d\x92\x7f\x70\x35\xfe\x93\xf0\x68\x73\xf7\x87\x0c\xe1\xbb\x0c\x6c\x41\x90\x32\x17\xd1\x08\x22\xd4\xcd\x07\xf9\xca\xb6\x8a\xb2\x51\x81\x54\xfb\xaf\x6f\xd9\xa7\x16\xc1\x6d\xce\xf9\x34\xd2\xe9\x48\x68\x89\x4e\x64\xcd\xaa\xfa\xba\x62\x1a\x56\x74\xdf\x4b\x43\x22\x2b\x8c\x50\xad\x44\x6a\x26\xd0\xa8\x49\x67\x47\xa5\x8e\xd5\xfc\x54\x8b\x45\x0b\xa1\x1a\xb6\x13\x8e\x17\xc1\xe5\x16\x02\xf9\x8a\x26\x0f\x58\x3b\xcb\x22\xc7\xf2\x23\x25\x13\x02\xdc\xd4\xed\xd1\x0b\xc5\x51\xa2\xa9\xd4\xc6\x4e\x1f\x85\xf1\xb9\x09\xfa\xb5\x18\xa1\x86\xfe\xa5\xf1\x69\xb8\xa7\xbd\xe0\x21\x17\xe6\xbb\x6f\x1b\x66\x55\xaf\x96\x94\xf3\xea\x98\xc9\xfe\x7a\xa8\xfe\xfa\xc2\x16\xca\x51\xaa\x0f\xe3\x69\x48\xfc\xb0\x93\x61\x6e\x8a\x17\x9b\x13\x6f\x8d\x12\xdb\x2f\xf3\x76\xf4\xd0\xf1\xc1\x15\xa9\xb9\x07\x46\x2a\x2b\x62\x95\x27\xf9\xbc\x58\x0d\x96\xb6\xde\x47\xb0\xf0\x3f\xff\x3b\xf8\xbf\x00\x00\x00\xff\xff\x63\xfe\x84\x2e\xef\x8b\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x3d\x6b\x73\x23\x29\x92\xdf\xfd\x2b\x32\xc6\x1f\xda\x1d\x61\x49\x33\xb3\x8f\x9b\xf3\xc5\xc5\x85\xd6\x3d\x33\xeb\xeb\x87\xfb\x5a\x9e\xde\xdd\x6f\x46\x55\x29\x89\x55\x15\xd4\x01\x65\xb5\xf6\xe2\xfe\xfb\x05\x09\x94\x4a\x52\x3d\x28\x3f\xa6\xf7\x76\xc5\x97\x6e\x97\x20\x49\xc8\x24\x5f\x24\x70\x0e\xa3\xe7\x2b\x67\xe7\xf0\x8e\x27\x28\x34\xa6\x60\x24\x98\x15\xc2\xb4\x60\xc9\x0a\x61\x26\x17\x66\xc3\x14\xc2\x4f\xb2\x14\x29\x33\x5c\x0a\xb8\x98\xce\x7e\x7a\x0d\xa5\x48\x51\x81\x14\x08\x52\x41\x2e\x15\x9e\x9d\x43\x22\x85\x51\x7c\x5e\x1a\xa9\x20\x73\x00\x81\x2d\x15\x62\x8e\xc2\xe8\x31\xc0\x0c\x91\xa0\x7f\xb8\xbd\xbb\xb9\xfe\x11\x16\x3c\x43\x48\xb9\x76\x8d\x30\x85\x0d\x37\xab\xb3\x73\x30\x2b\xae\x61\x23\xd5\x1a\x16\x52\x01\x4b\x53\x6e\x3b\x66\x19\x70\xb1\x90\x2a\x77\x68\x28\x5c\x32\x95\x72\xb1\x84\x44\x16\x5b\xc5\x97\x2b\x03\x72\x23\x50\xe9\x15\x2f\xc6\x67\xe7\x70\x67\x87\x31\xfb\x29\x60\xa2\x1d\x58\xea\xd3\x48\xf8\x8b\x2c\xfd\x18\x6a\xc3\xf5\xb3\x70\x09\x9f\x51\x69\xdb\xc9\xf7\xe3\x6f\xcf\xce\xe1\xc2\x56\xf9\xc6\xff\xf8\xcd\xeb\x7f\x83\xad\x2c\x21\x67\x5b\x10\xd2\x40\xa9\xb1\x06\x19\xbf\x24\x58\x18\xe0\x02\x12\x99\x17\x19\x67\x22\xc1\xdd\xb0\xaa\x1e\xc6\x40\x08\x58\x18\x72\x6e\x18\x17\xc0\x68\x18\x20\x17\xf5\x6a\xc0\xcc\xd9\xf9\xd9\x39\x50\x59\x19\x53\x5c\x4d\x26\x9b\xcd\x66\xcc\x08\xdd\xb1\x54\xcb\x49\x18\xdd\xe4\xdd\xcd\xf5\x8f\x1f\x66\x3f\x8e\x08\xe5\xb3\x73\xf8\x45\x64\xa8\x35\x28\xfc\xef\x92\x2b\x4c\x61\xbe\x05\x56\x14\x19\x4f\xd8\x3c\x43\xc8\xd8\xc6\x12\x8e\xa8\x43\x44\xe7\x02\x36\x8a\x1b\x2e\x96\x97\xa0\x3d\xd5\xcf\xce\xf7\xa8\xb3\x9b\xae\x80\x1e\xd7\x7b\x15\xa4\x00\x26\xe0\x9b\xe9\x0c\x6e\x66\xdf\xc0\x1f\xa6\xb3\x9b\xd9\xe5\xd9\x39\xfc\xe9\xe6\xee\x8f\xb7\xbf\xdc\xc1\x9f\xa6\x9f\x3e\x4d\x3f\xdc\xdd\xfc\x38\x83\xdb\x4f\x70\x7d\xfb\xe1\xcd\xcd\xdd\xcd\xed\x87\x19\xdc\xfe\x04\xd3\x0f\x7f\x81\xb7\x37\x1f\xde\x5c\x02\x72\xb3\x42\x05\xf8\xa5\x50\x16\x7f\xa9\x80\xdb\x89\xc4\xd4\xd2\x34\x30\x50\x40\xc0\xf2\x87\xfd\x5b\x17\x98\xf0\x05\x4f\x20\x63\x62\x59\xb2\x25\xc2\x52\x3e\xa0\x12\x96\x3d\x0a\x54\x39\xd7\x96\x9c\x1a\x98\x48\xcf\xce\x21\xe3\x39\x37\xc4\x45\xfa\x78\x50\xb6\x9b\xe7\x5c\x5b\x67\xac\xe0\x9e\x9d\xae\x80\x15\x1c\xbf\x18\x14\x84\xcd\x78\xfd\x83\x1e\x73\x39\x79\xf8\xee\x6c\xcd\x45\x7a\x05\xd7\xa5\x36\x32\xff\x84\x5a\x96\x2a\xc1\x37\xb8\xe0\x82\x38\xff\x2c\x47\xc3\x52\x66\xd8\xd5\x19\x00\x13\x42\x7a\xe4\xed\x9f\xe0\x56\x9d\xcc\x32\x54\xa3\x25\x8a\xf1\xba\x9c\xe3\xbc\xe4\x59\x8a\x8a\x80\x87\xae\x1f\xbe\x1d\xff\x7e\xfc\xdd\x19\x40\xa2\x90\x9a\xdf\xf1\x1c\xb5\x61\x79\x71\x05\xa2\xcc\xb2\x33\x80\x8c\xcd\x31\xf3\x50\x59\x51\x5c\x41\xc2\x72\xcc\x46\xeb\x33\x00\xc1\x72\xbc\x02\x82\xab\xc7\xf4\xb9\xc6\x84\x67\x76\xfa\x6d\xb3\xa5\x92\x65\x68\x56\xff\xdd\xb5\x0f\xf8\x32\x83\x4b\xa9\x78\xf8\x7b\x04\x6b\x5b\xdf\xff\x3f\xa9\xfe\xef\xe6\xe4\x0f\xb6\x4b\xfa\x3b\xe3\xda\xbc\xdd\x7d\x7b\xc7\xb5\xa1\xef\x45\x56\x2a\x96\x05\xe4\xe8\x93\x5e\x49\x65\x3e\xec\xba\x1c\x01\x5f\xcf\xdd\x2f\x5c\x2c\xcb\x8c\x29\x5f\xfd\x0c\x40\x27\xb2\xc0\x2b\xa0\xda\x05\x4b\xd0\x7e\xf3\x93\x46\xad\x47\x35\x01\xf4\x51\x71\x61\x50\x5d\xcb\xac\xcc\x45\x05\x3b\x45\x9d\x28\x5e\x18\x9a\x66\x2b\x75\x08\x34\x14\x2b\xa6\xf1\xcc\xad\xdd\xbf\x6a\x29\x3e\x32\xb3\xba\x82\xb1\x36\xcc\x94\x7a\x5c\xff\xd5\x4d\xee\xc7\xda\x17\xb3\xb5\x38\xd9\x95\x25\x96\x6d\xbd\x18\x9e\x5b\x01\x01\x9b\x15\x4f\x56\xc4\xc1\xae\xdf\x0d\xd3\x8e\xc6\x98\x1e\xf7\x1e\x38\x69\x7c\xc4\x05\x7b\xb8\x4c\x97\xfb\x98\xa4\xcc\xe0\x63\xf0\xc8\x98\x36\x70\xa1\x70\xf4\x5a\x1b\xa6\x1a\x31\xf2\xf3\xe1\x7f\x9f\x9a\x3d\x3c\x66\x7b\xad\xfa\x71\x71\x3d\x53\xaf\xf8\x05\x93\x92\x34\x45\x5a\x2a\x1a\x6a\x6b\xdf\x07\x15\x5c\xd7\x6f\xf6\x3f\xc6\x50\x44\x94\xf9\xdc\x2a\xc5\x45\xad\x73\x66\x0c\xe6\x85\xd1\xad\x9d\x2f\x18\xcf\x4a\x85\x63\x85\x89\x15\x59\xdb\xb1\x6f\xb1\x4f\x8f\x7d\x28\x0e\x19\xcb\x8b\x4b\x54\x67\xbb\x6a\x0f\xdf\x39\x26\x4f\x56\x98\xb3\x2b\x5f\x59\x16\x28\xa6\x1f\x6f\x3e\xff\x66\xb6\xf7\x19\xf6\xf1\xa7\x35\x65\x05\xba\x25\xa0\xab\x59\x49\x57\xb7\xb2\x60\xfa\xf1\xa6\x6a\x5b\x28\x59\xa0\x32\xd5\x22\x76\xa5\x26\xea\x6a\x5f\x0f\x7a\x7a\x65\x91\xf1\xfa\x35\xb5\x32\x0e\x5d\xa7\x7e\xd1\x61\xea\xf1\x77\xba\x90\x5b\x15\x66\x55\x01\x0a\x53\xa7\x47\x28\x72\x61\x75\x8e\x9c\xff\x15\x13\x33\x86\x19\x2a\x0b\xc6\x0a\x80\x32\x4b\xad\x68\x7c\x40\x65\xc0\xce\xed\x52\xf0\xbf\x55\xb0\x75\xb0\x73\x32\x66\x50\x9b\x03\x98\xb4\xc8\xad\xbd\xf1\xc0\xb2\x12\x2f\xad\xd6\x20\x55\xad\xd0\xf6\x02\xa5\xa8\xc1\xa3\x2a\x7a\x0c\xef\xa5\x42\xb2\x4f\xae\x48\x51\xeb\xab\xc9\x64\xc9\x4d\x10\xf1\x89\xcc\xf3\x52\x70\xb3\x9d\xd4\x6c\x24\x3d\x49\xf1\x01\xb3\x89\xe6\xcb\x11\x53\xc9\x8a\x1b\x4c\x4c\xa9\x70\xc2\x0a\x3e\x22\xd4\x05\x89\xf9\x71\x9e\x9e\x2b\xaf\x14\xf4\xab\x3d\x5c\x8f\xb8\xd2\x15\x12\x9d\x1d\x14\xb0\x62\xd4\xd2\x9a\xf9\xa6\x6e\x14\xbb\x89\xb6\x9f\xec\xec\x7c\xfa\x71\x76\x07\xa1\x6b\x22\xc6\xe1\xec\xd3\xbc\xef\x1a\xea\x1d\x09\xec\x84\x71\xb1\x20\xe5\x6a\xad\x23\x25\x73\x82\x89\x22\x2d\x24\x17\x86\xfe\x48\x32\x8e\xe2\x70\xfa\x75\x39\xcf\xb9\x71\xa6\x0b\x6a\x63\x69\x35\x86\x6b\xd2\x7b\x30\x47\x28\x0b\x2b\x01\xd2\x31\xdc\x08\xb8\xb6\xda\xe2\x9a\x59\x83\xea\x85\x09\x60\x67\x5a\x8f\xec\xc4\xc6\x91\xa0\xae\xb2\x0f\x2b\xbb\x59\xab\xfd\x10\xf4\x67\x0b\xbd\x68\x6d\xce\x0a\x4c\xf6\xd6\x8b\x5b\xb1\x76\x19\x3a\x83\xd8\x48\x3b\x3b\x4e\xf2\x54\x22\xd3\x95\xe6\xd5\x4a\x3d\x1b\x65\xd5\xf1\xf6\xf0\x3b\x1c\x4b\xb7\x50\x15\xcc\x8a\x99\xb0\xc2\x2c\x3d\xbc\xdb\x50\xa0\xb2\xd6\xf9\x0e\xb7\xf1\x11\x4c\x14\x65\x7e\xdc\xd3\x08\x94\x2c\x0d\x17\xd8\xf0\x4b\x21\xd3\xa3\xaf\x2d\x33\x4e\x3f\x31\xbd\x3e\x1a\x63\xd3\x58\x2c\x6b\x59\xd3\x5c\x2e\xfc\x3c\x52\x4b\x3f\x87\x7e\x24\x98\x02\xd3\x50\x30\x65\x40\x2e\x8e\x60\x42\x8d\x08\x95\xb8\x3f\x1e\x32\x37\x98\x37\x60\x74\x88\x13\xd3\xeb\xda\x2a\x22\xd0\x6c\x6e\x67\x3c\x31\x84\xda\x18\x6e\x45\xb6\x75\xfe\x16\xb9\x08\x0d\x10\xdd\xf0\x6b\x94\x49\xa4\x58\xf0\x65\xa9\x1c\x7d\x2a\xf0\xfb\x16\x33\xb5\x49\x56\x52\x63\x03\xf6\x5d\xac\xe3\x0a\xe9\x06\xb6\x6a\xfe\xf1\x60\x94\xcc\x4d\x17\x5b\xd9\xe1\x5e\x92\x7a\xf1\x1f\x2a\xe6\x6a\x01\xd3\x87\x05\x61\xc2\x34\xde\xe4\x6c\x89\xed\x55\x0e\xf0\xb1\x2d\x80\xdb\x26\x90\xb1\xad\xd7\xa4\xcd\xa5\x83\xe7\x76\xc5\x8a\x16\xfc\x62\xde\x70\x15\x8d\x42\xc2\x84\x5f\x43\x8b\x32\xb3\x54\xd2\x2b\xe6\xe5\x18\xb9\x8d\x20\xc9\x1b\x22\xee\x7c\x2a\x7a\x8e\x4b\xa5\x1a\x36\x49\xa9\x4c\xd6\xa8\xfc\x34\x19\x69\x51\x7d\x2a\x22\x7c\x10\x02\x0b\x4e\xae\x3f\xf5\x6f\xcd\x9c\xa7\xf6\x4e\xa6\x52\x6c\xe7\xb6\x72\x70\xca\x2d\x11\x9e\xda\x79\x91\x31\x63\x65\x4b\x34\x02\x56\x5a\x85\x46\x16\x11\x67\xe1\xd2\x6c\x3c\x15\x17\x85\x4b\xeb\xbc\x37\xc8\xfe\x16\x5c\x36\x2b\x54\xc4\x03\x45\x39\xcf\xb8\x76\xc6\x7e\x8d\x3c\x1d\x70\x62\x16\xb0\x2d\x2c\x4d\xad\xdb\xdf\x5d\xe9\x00\x2d\x8b\xc5\x2f\x9f\x6e\x2c\x62\x2c\x49\x50\x77\x2d\x14\x88\x9d\x1c\x20\x4f\x75\x30\x1e\x4e\xe4\xe6\xac\xf0\xee\x90\x36\x52\x79\x7d\x7d\x6d\xc7\xbf\xe0\x49\x70\x5f\xba\xca\xb4\x34\x2b\xa9\xb8\x69\x93\x87\x83\x87\xc2\x85\xc6\xa4\x54\x9d\x8c\x7f\x34\x20\xbe\x08\x63\x32\x8c\x0b\x54\x15\xc7\x58\xdb\x31\x40\x84\x0b\x8e\x97\xbd\x03\xb2\x26\x19\x48\x91\x6d\x5f\x47\x8d\x68\x2e\x65\x86\xec\xd0\xd6\xdf\x2f\x52\x2d\x99\xe0\x7f\x23\xe3\x67\x30\x9d\xaa\x91\xd4\xa1\x3c\xd7\x64\x6b\x4c\x14\x9a\xc1\x38\xb9\x66\x7e\x95\x25\x0a\x53\x6b\x7e\xb2\x4c\x83\xd5\x08\xc4\x48\xc7\xb6\xd0\xa3\x30\x6c\xb1\x42\xf7\xcb\x03\xaa\xb9\xd4\xf1\x92\x32\x93\x4b\x8a\x03\xd7\x83\xb4\xbd\x38\x74\xd3\xb9\x17\x4f\x1f\xe7\x1a\x62\x7c\xa0\x22\x5b\xeb\x82\x74\xbf\x95\xe8\x6d\x0c\xf9\x32\x26\x07\xb9\xd3\xcf\x6c\x76\xd0\x2c\x0c\x31\x3a\x36\x52\xad\x29\xd6\x05\x29\x57\x98\x18\xa9\xb6\xcf\xa4\xd9\x53\x2c\x50\xa4\x28\x92\x1e\x41\x7f\x34\x27\x19\xd7\xd6\xca\xde\x03\xe0\x71\xf2\x61\x08\xae\xab\x90\x5d\x5b\x69\xb5\xb5\x07\x8e\x22\x54\x63\x4a\xb1\x76\x09\x9c\xb3\x07\xec\x14\x3c\x2d\xca\xc1\xc7\x95\xf6\x22\xf3\xef\x2d\xac\x10\x6f\xe9\x56\x90\x2e\x86\x4f\x10\x8e\xe3\x8c\x4d\x25\x56\xf5\x26\x6c\x46\x02\x68\x98\xf2\xb5\xf6\x89\x6f\xe7\x8c\x25\x26\x52\x58\xe3\xf6\x32\xa8\x0d\x1f\x4b\xe8\xd5\x10\xd7\x53\x48\x76\x1a\xf2\x42\xbf\xae\x1c\xcb\x44\x0a\x81\xd6\x0f\xb2\x3e\x4c\x2e\x0d\xba\xe9\xea\x85\xa8\xb0\x90\x9a\x1b\x0a\x35\x8f\xe1\xc6\x90\xb1\xed\xb1\x82\x3f\x8f\x7f\xf7\xed\xbf\xd6\x7b\xd4\x14\xe7\xe9\x05\xfa\xf1\xed\xf5\xec\xfc\x5f\xc0\x89\x38\x83\x69\x1d\x04\x24\x2b\xc6\x85\x1e\xc3\x14\xfe\xf3\xed\x6c\x57\xa7\x17\xe8\x1a\xb7\x24\xdf\x29\x26\x53\x1a\x69\xa5\x67\xc2\xb2\x6c\x1b\x02\xb9\xe4\x19\x50\x0d\xb2\x24\xa6\xbd\x10\xf7\xa7\xd2\x85\xb0\xf6\xdd\xc1\xe0\xb9\x33\x0d\x0c\x8c\x2a\x75\x0c\xa2\x07\x14\x9a\x6f\x09\x1f\xc7\xbd\x89\xcc\x73\x26\x52\x3d\x86\x0f\x96\x46\x14\x25\x88\x21\xbc\x92\xd2\x1c\x50\xdf\xa9\x3c\x96\x69\x09\x3c\x2f\xa4\xb2\x33\xc0\x85\x0f\xd9\xed\xc7\xb6\xfb\x27\xb5\xc9\xab\xad\x97\x08\xa9\x01\x87\x5c\xef\x38\xfe\x2d\x6e\x67\x98\x91\x00\x05\x4d\xff\xb1\x73\xb9\x46\xda\xc6\x63\xbd\x10\xc1\x83\xe9\x43\x30\x7e\x09\xbb\xb2\xc6\x4e\x93\xbe\x65\x48\x76\x21\x7b\xd4\x6b\xc6\x88\xe5\x3b\x1a\x19\x05\xf0\xc6\x00\xef\xcb\xa3\x70\x69\x5b\x99\x23\x30\x78\x60\x19\x4f\x03\xb4\x35\x6e\xfb\x07\x0b\x43\x4c\x2d\x57\xfa\x5c\xba\x5d\xd9\x8f\x83\x7e\xa8\x79\x77\x0a\x17\xa8\x50\x98\x7a\x24\x31\x72\xa0\x21\xde\xb8\x2e\xe7\xa8\x04\x1a\xa4\x90\x63\x2a\x13\x3d\x49\xa4\x48\xb0\x30\x7a\x22\x1f\x50\x3d\x70\xdc\x4c\xac\xf2\xe5\x62\x39\xb2\xde\xfd\xc8\xd9\x36\x7a\x42\xdb\x63\x93\x73\xfa\x27\xb2\xd3\xbb\xdb\x37\xb7\x57\x30\x4d\x53\x1f\x22\xf0\x21\x84\x05\xc7\xcc\xae\xc1\x5d\x28\xfe\x92\xc2\xc1\xfd\x26\xba\x2b\x25\x4f\xff\xe3\xd5\x4b\xd0\x48\x16\x6e\x0f\xed\x11\x74\x9a\x51\xac\x6a\x6b\x2d\x63\x17\x0d\xa9\x74\x0e\x6d\x0f\x9b\xd8\x29\xb3\xec\x9d\x97\x9a\xa2\xc8\x2e\x92\xda\x2f\x45\x60\x90\x4f\x02\xa4\x76\x9c\x5e\xef\x1f\xe8\xc8\x62\xd4\x5b\x2b\xca\x5a\xaf\x57\xed\x36\x5b\x6c\x49\x32\x7e\x5b\xd4\xb6\x90\xdb\xcb\x91\x88\xb8\x7e\x77\xe3\x49\xa9\x9d\x88\x27\x49\x5d\x90\xd5\x16\xb2\x47\x7a\x87\x14\xac\x3d\xa6\x96\x25\xe5\x86\x90\xe9\xb3\xaf\x46\x2e\x01\xc7\xcb\xf1\x25\xdc\x8f\x3e\x5f\x8e\x46\x42\x8e\x8c\x62\x42\x2f\x50\x8d\x0a\x25\x97\x0a\xb5\xbe\x1c\xbd\xd1\x66\x9b\xe1\x38\x91\x99\x54\xff\x2e\xf0\x01\xd5\x7d\xbf\x7c\x99\x21\x56\x2b\x96\x6c\xb8\x7a\x3a\x85\xc2\xc5\xe4\x37\xe3\x1f\xc6\xbf\x75\x3f\x8d\x30\x9f\x63\x9a\xa2\x9a\x24\x19\x1f\xaf\x4c\x9e\x3d\x93\x36\x19\xb0\x78\x62\x89\x5a\x25\x16\x0c\xa6\xa9\x9b\xf8\xb9\x0f\x65\x57\xe9\x09\xdd\x33\xb5\x2c\x79\x8a\x7a\x92\x73\xc1\xdd\xff\x47\xa5\xb6\x72\xad\x06\xe0\x19\xe7\x6b\x0f\x67\xc2\x77\x6a\xad\x05\x96\x98\x6a\x4f\x84\xc1\xcf\xd3\xcf\x70\xf1\x33\xe5\x20\x84\x5f\xaf\xbc\x10\xec\x0b\x3b\xd8\xe2\xa6\x81\xf9\x96\xcf\xac\x94\x03\xd8\x9b\x08\xb9\xd0\x3c\x60\x98\xc6\x62\x06\xc3\xa5\x33\x65\x6e\x3c\x01\x37\x9a\xf5\x97\x40\xec\xa1\x69\x3f\x79\x00\x62\x9e\xfe\xcf\x8f\xda\x10\x31\xbf\x23\x7e\x44\x65\x4f\x8a\xaf\xa1\x17\x32\x99\xb0\xec\x53\x70\x9b\x7a\xad\xc8\xe3\x40\x35\x33\xab\x60\x4f\x11\x2c\x4f\x84\xca\x13\xeb\x35\xff\xa2\x49\x10\xbf\xfa\xea\xe9\x3b\xf1\x2b\x76\x00\x2f\xb4\xc8\xd3\x1d\x86\x71\x83\x8e\xa0\x64\xdd\xa3\x1d\x44\x9c\x5a\x0e\x65\x1d\xc6\x0b\xc8\xe6\x1d\xf7\xd4\x04\xf3\x21\x17\x3c\xb3\x6c\xe5\x8f\x91\x5b\x9c\xc2\xab\x0b\xee\xa3\xf3\x03\x90\x83\x5f\xcd\x41\x11\x7b\xfe\xc9\x4b\x22\xa8\x30\x43\xa6\xe3\xa6\xbb\x61\x0b\xb3\xd4\x08\xda\x50\x66\x69\x80\x14\x05\x68\x18\x9d\x6d\x49\x56\x98\xac\x75\x99\x7f\x94\x19\x4f\x22\xfd\xdc\x23\x94\xff\xb4\x42\xe1\x99\x32\xc5\x22\x93\x5b\x97\xbd\xab\x63\xed\xd7\x5d\xd9\x51\xe5\x12\xb8\x71\x21\x8b\x00\x32\x91\x4a\xa1\x2e\xa4\x48\xe3\x68\x70\x38\x44\x87\xd3\x18\xfe\x22\x4b\x55\xd9\xdc\xcc\xed\xc0\xdd\xf3\xa5\x90\x0a\xef\x63\xdd\x3a\x5b\xee\x17\x8c\x67\xf7\x97\xd6\x67\xba\xdf\x30\x25\xee\x41\x0a\xa0\xd4\x58\xb1\x24\x47\x4a\x10\xc6\x91\x06\xc6\x3e\xae\xbd\x32\x6e\x57\x06\x72\x26\x50\xde\x88\x65\xad\xc8\x55\x0e\x47\x2b\xdd\xad\xf0\x82\x38\x06\x58\x62\xf8\x03\xc5\xd4\xa4\x02\x21\xe3\x07\x3b\xcc\x0b\x74\xc5\xe5\x2a\x3d\x89\x57\x5f\xdd\xad\xb8\x06\xcc\x28\x89\x3e\xa4\x6d\xa0\x86\x95\xdc\x80\x5c\x98\x88\x38\xe8\x21\x3a\x55\x7a\x9c\xcf\x34\xb4\xfc\x24\x93\xa4\x54\x63\xbf\x26\x36\x3c\xcb\x86\xf0\x80\xcc\x0b\xe6\x43\x93\x4e\xeb\x7f\xbc\x7d\xff\xea\x95\xa6\xcc\x50\xca\x2d\x85\x8b\xa8\xed\xab\x7a\xa1\x94\xf8\xdd\xea\xb2\xe0\x9c\x47\x16\x12\xab\x68\x75\xc4\x98\xf5\xa1\xf8\xf0\xa1\x0b\x21\x8f\x49\x51\x27\x2b\xc9\x13\x17\x6d\xbc\x82\x7b\x96\x6d\xd8\x56\x0f\x5b\x52\x29\xe3\xd9\xf6\x1e\x2e\x52\x5c\xb0\x32\x33\xaf\x2f\xe1\x9e\xb2\x07\x1f\x58\x76\xf5\xe7\x7b\xb8\x70\x9b\x79\x7f\x1e\x32\x70\x0d\x4c\x84\xdc\x4e\x3b\x0d\x39\x17\xa5\x41\xfd\x9a\xd6\xad\x73\x72\xe3\x02\x34\xf0\x98\xc5\x16\x6f\xd6\x02\x59\xab\x7e\x69\x0e\xd0\x49\x51\x16\xab\x2d\x5a\xb0\x42\xaf\x64\xff\x86\x84\x2b\xcd\x4a\xc9\xc3\x38\x69\xa3\x93\x36\x6a\x2c\x27\x6d\x34\x08\xfb\x93\x36\x3a\x69\xa3\x7f\x4e\x6d\x54\xaa\xc7\x6c\x5d\x58\x0e\xa4\xbd\xfa\x5f\xc1\x8b\x1b\x12\x91\xe2\x31\x91\xa8\x52\xf5\x2f\xbc\x17\x88\x42\x69\x77\x82\x60\x50\x80\x23\x9c\x3a\xb8\x60\xa5\x59\xf5\xad\xc3\xc8\xb8\xc6\x30\x73\x60\x2f\xb9\x23\x8e\x53\x1e\x17\x99\x72\x65\xf0\x52\x1a\xc8\xee\xb1\x31\x95\x81\x78\x14\x4c\xeb\x8d\x54\x2f\x03\xbc\xd4\xa8\xe2\x23\x2d\x83\x80\xbf\x08\x9b\x1b\xc3\xc5\x72\x18\x9f\x4f\xc3\x3e\x75\x82\x41\x85\x5c\x13\xe3\xbd\x67\x85\x15\xc9\x6e\x5b\xb4\x77\x38\x6b\xf4\xc7\x38\x7c\x3a\x8c\xae\xe5\x71\x04\xbc\xfa\x6c\xa8\x21\xcb\x23\x09\x38\xbe\xc5\xed\x27\x5c\xc4\x10\xe8\x60\x79\x1f\x66\x57\xec\x86\x1d\x63\xeb\x0d\xb5\xec\xa3\x53\x28\x5a\x92\x28\xaa\xb4\x89\x58\x43\x74\xf0\x72\x8e\xe7\xf3\x17\x4a\x7a\xf8\x4a\x69\x0f\x43\x12\x1f\xa2\x41\x52\x82\xc4\x80\xd4\x87\x47\xd0\x6b\x58\xfa\x43\x44\x02\x44\x7d\xd9\x47\x0f\x94\x1b\xfd\xe8\x2c\x88\xe1\x3e\xc7\x10\xeb\x2d\x2e\x17\x62\xa0\x1a\xd3\x21\x4d\xeb\x99\x64\x8e\x8e\xcc\xd7\xfa\xf5\x05\x4e\x4b\xd6\x56\x34\x63\xd4\xb2\xbb\x9e\x92\xb7\x75\x12\x64\x27\x41\x76\x50\x5e\x24\x93\xeb\xf1\xb9\x5c\xff\xef\xa4\x58\x74\xd5\x60\xb7\xcd\x30\x29\x15\x37\xc3\x76\xef\x5f\xd4\xae\xd4\x1e\xa3\xb0\x58\x4f\x76\x66\x28\x27\x3b\x33\xa2\x9c\xc4\xf3\xc9\xce\xec\x2c\x27\x3b\xf3\x64\x67\xf6\x96\x93\x20\xfb\x27\x17\x64\x27\x3b\xf3\x39\xaa\x46\x55\xfb\xaa\x57\x2c\xa8\x52\x18\x3e\xa0\xff\x8e\x93\x99\xe1\x02\x2c\x0f\xb2\x73\x06\x6b\x07\x33\x3b\xea\x45\xdf\x83\xb0\x83\x76\x9d\xb1\x81\x17\x22\xd4\xcf\x88\xa2\x30\x6a\x0b\xee\xc6\xa5\x8b\x9c\x71\xf1\xba\xeb\xa2\xa0\xe3\x32\xe0\xb2\x84\x82\xcd\x79\xc6\x5f\x2e\x25\x77\x6f\x8c\xd7\xa1\xbb\xad\xbb\xc8\xaa\x60\xca\xf0\xa4\xcc\x98\x82\x05\x32\x53\x2a\x74\x37\x30\xc4\x2f\x3c\x0b\x65\x83\x59\x06\x6b\x21\x37\xe4\x9e\x1c\x1e\x48\x7e\xe6\x1d\xa3\xd8\xc3\xd2\xbb\x12\xb9\x71\x15\xc0\xbf\xfc\x91\x09\x57\x06\x1e\x9c\x70\x65\x78\xb2\xcd\xf0\x43\x14\xae\x3c\xf5\x28\x85\x2b\x8f\x48\x14\x19\x78\xac\xa2\x15\xdb\xf8\xc3\x15\x4f\x40\x75\xd0\x41\x8b\x56\x54\x87\x1c\xb7\x78\x34\xb2\xc3\xb2\x02\x06\x1e\xc0\x08\x4d\x62\x8f\x61\xb8\x32\x70\x77\x35\x7e\x97\x10\x06\x6e\xec\x0f\x92\x57\x03\xb0\xde\xbf\x92\xc9\x49\x58\x0d\x72\x61\xcd\xe1\xd4\x1d\x04\xe7\x3a\x4a\x51\x0e\xe8\x76\x88\x84\xdc\x4f\xbb\x68\xba\x4e\x42\x20\xfa\x33\x8a\xaa\x14\x51\x99\x75\x71\x3a\x1d\x4e\xc7\xd8\x06\x0c\xf8\x74\x8c\xed\x31\x88\x9d\x8e\xb1\x0d\x90\x99\xcd\x77\x6f\x1e\x97\x5f\xf7\x64\x98\x37\x28\x03\x72\xcf\x25\x23\x0b\x25\x1f\x78\xc7\x25\x48\x8d\xb8\xd0\xbd\xa9\x90\xd3\xc5\xf3\x35\x67\x21\xc0\xba\x04\x8e\x97\xae\x52\xef\x74\xfc\x57\xc9\xd4\xba\x7c\xb6\x3b\xd7\x22\x17\x4a\xc3\x68\xde\xc2\x27\xa7\x7d\x02\x8c\xe7\x41\x29\x66\x81\x8c\x8e\xfc\xb5\xce\xca\x91\x3a\x7a\x54\xd1\xa3\xb3\x52\xff\x68\xa3\x78\xc9\xdf\x2f\x3c\xc8\x6d\xf6\x6d\xe8\xe6\xbd\x34\x05\x66\xfc\x21\xf2\x1e\x1b\x20\x42\x59\xee\x47\x73\xa8\x9b\xa3\x0b\x70\xf7\x9d\xf6\x45\x6f\x78\xba\xf6\x58\x05\xdd\x38\x8b\xfa\xc0\x15\x76\x69\xbe\x09\x2a\xba\x21\x28\x86\xfd\xdf\xcc\xde\x55\x4f\x0e\xf4\xad\xd2\x48\x01\x93\xc8\x9c\x5e\x3e\x88\xd2\x16\x6d\xd7\xf5\xa1\x30\xd6\x2d\x0e\xb0\x30\x75\x17\x9e\xfd\xfe\xb7\x11\x0a\x04\x45\xa2\xb6\x85\xc1\xb4\xdf\xd8\x18\x12\xe2\xf2\x68\x0d\x1c\xd3\x8e\xcb\x20\x91\x29\xc2\x45\x91\x59\xda\x18\xfc\x62\x62\xd1\x8b\x92\xd4\x1e\xbb\xb7\x31\xe1\xf1\xe6\xe8\x51\xce\x0a\x0a\x16\xae\x64\x96\x86\xfb\xb3\x2b\xcc\x09\xf8\x0b\xe0\x1b\xb5\xdf\xd0\x8e\xef\x6e\xcf\xf7\x18\xeb\x08\x4e\x79\xb9\x71\xdd\xd9\x16\x8f\x1a\x18\xb1\xbe\xed\x10\x2e\x0c\x2f\xfc\x2d\x5a\x96\x5d\xec\xd2\x9f\x73\xc1\x54\xef\x15\x94\x83\x10\xa6\xfc\xfa\x04\x0b\x23\xfb\x33\x96\x0f\x30\xbe\xa9\x35\xa5\x93\x34\x21\xe4\xbd\x3b\x9b\xac\x62\x02\xd5\x76\xe4\x52\x2d\xc3\xe5\x1c\xee\xf5\x8d\xf5\xf8\x13\x89\xb8\x77\x92\xa5\x2e\xe6\x4f\xd2\xae\x50\x38\x29\x64\xd4\x15\x4e\x85\x92\x09\x6a\x1d\x84\x7c\x6f\x8b\xe8\xe0\xd4\x23\x12\x6f\x63\xfc\xe4\x20\x87\x07\x52\x41\x57\x5b\x05\x3c\x59\x85\xd3\x39\xd5\x33\x32\x17\x71\x46\x10\x69\x82\xdd\x8d\x75\xc4\x14\x05\xed\x90\x59\xaf\xb8\x26\xc0\x9e\x93\xf5\x32\x22\xed\xc0\xe1\x7a\x7e\x70\xe7\x3a\x6a\x0c\x17\x22\xf0\x3d\x8c\x14\xc5\x8e\xcc\xd0\xa1\x9d\x96\x69\x60\x26\x32\x4c\x30\x68\x32\xe2\xb6\xf7\x8e\x24\x46\x7d\xf3\x21\x5c\x89\x1e\xe3\xef\x0f\xc2\xad\x60\xa6\xf5\x82\xf4\x0e\xdc\xe8\x36\x0d\x7f\xe7\x32\x5d\xb4\x9c\xd1\x05\x81\x91\x87\x97\x86\xe0\xe7\x8c\x93\xed\xa8\xf6\x4a\x4f\x34\xa6\xef\x7c\xa8\x25\x00\x71\x4f\xfd\x84\xbd\x32\x6b\x52\xc5\x9d\x61\xf4\xdc\x71\x81\xe3\xe5\x98\x4c\x19\x2b\xc3\xb9\x86\x6f\x0c\xe6\x45\xc6\x0c\x7e\xd3\x2f\xb7\xbf\xb6\x08\x52\x6c\x73\xfd\x3c\x66\x4e\xac\xa6\x72\x77\x4c\x5e\xc1\x7c\x1b\x71\xab\xf4\xd0\x4b\xa7\x86\x8d\xc1\xea\xec\x3d\xfb\x7c\xcd\x05\x89\x15\x3f\x30\x57\x79\x1e\xb5\x7f\x1a\xe2\x89\x91\x01\xd5\xe8\x81\x0d\xda\xe4\xec\xa6\xb8\x36\x58\x3c\xee\x8e\x5b\x6a\x69\xd5\x84\xf7\x3b\xe0\x42\x23\x42\xb1\x5e\x4e\xfc\x7d\xc6\x93\x2e\xba\xff\x9a\x97\xdc\xf6\x4e\xd7\x9a\x09\xbe\x6e\xcd\x80\x38\xb8\x7f\xf9\x2d\x55\xde\xbd\xfd\xe0\xfe\xfe\x07\x79\xfa\xc1\x6a\xcc\xe8\xde\x4b\x8d\xd6\xd1\xb4\x6d\x3a\x9a\xc4\xfa\x8c\x91\xe7\x91\xf7\xf9\x51\x95\x68\xa5\xac\xc7\xc2\x0a\xda\xb8\xb3\x93\xf1\x2e\x5f\x81\x4a\x73\x6d\x85\xe1\x67\x99\x95\x39\x5e\x67\x8c\x77\xbe\x7b\x70\x8c\xe4\x0a\xe1\xe3\xe7\xeb\xca\xac\xda\xdd\x80\xdb\x37\x75\xf0\xcc\x97\xa1\x9f\x5e\xf6\x38\xbd\xec\x71\x7a\x4d\xa3\xb1\x9c\x5e\xd3\x88\x1c\xd0\xe9\x35\x8d\x06\xd4\x4e\xaf\x69\x34\x8f\xe0\x6b\xbc\xa6\xa1\xbf\xe7\x91\x96\xdc\xec\x7b\xbe\x33\xe3\x66\xdf\xdf\x3c\x87\x0d\xf7\x77\xae\x62\xbf\xaa\x6e\x31\x6c\x39\xc4\xb6\x4c\xc3\xc5\xfc\x64\x0f\xcc\x8c\x42\x96\x3f\x0d\x85\x7e\xde\x29\x30\x31\xaa\xe9\x75\xbf\x06\x14\x19\xe5\xe7\xda\xea\x35\x2e\xf2\x5f\xfe\x41\xdc\x81\xbf\x6f\x66\x3e\x99\x69\x27\x33\xad\xad\x9c\xcc\xb4\x93\x99\x76\x84\xda\x3f\x87\x99\xd6\x53\xa5\xf3\xe7\xf6\x60\x9a\xe1\x39\xca\xb2\x61\x66\xf6\xa3\xa7\xae\x56\xc3\x0b\xbf\x39\xfb\xc2\xf3\x32\x6f\x78\xd0\xbc\xe9\xac\xd4\x5d\xd5\x2e\x45\x96\x66\x5c\xb8\x3d\x03\x77\x58\x6b\x07\x94\x9e\x5b\x77\x4f\xb7\x17\x59\xe9\xba\xf3\x28\x34\x00\xad\x3a\x84\x9b\x45\x0d\x48\xbd\x07\xfc\x92\x50\x7a\xe5\x65\xed\x77\xaf\x05\xe1\xe8\xd9\x68\x20\x39\x23\x12\xcc\x6c\x03\x26\x52\x3a\x30\x48\x0f\x59\x05\x54\x09\x02\x3d\x89\xff\x13\xe3\x19\x36\x3c\x26\x1c\x42\xdf\x07\xaf\xb7\x1f\x92\xa4\x81\x31\x5a\x08\xe9\x1e\x64\xdf\xa7\xd3\x1e\x8d\xdc\x3b\xcc\x54\x6b\x8f\x4e\x72\x4e\x57\x56\xd1\xac\x9a\xdd\x9b\xc2\x7b\x80\xda\x75\x41\xc8\xaa\xeb\x7b\xb7\x98\xd5\x9e\xcd\xf0\x2d\x2a\x29\x15\xf6\x59\x5a\x9e\x48\x8b\x7b\x84\xb8\x4a\x45\xad\x3d\x44\xcc\x20\x67\x06\x15\x67\x19\xbd\x76\x1e\x7a\x86\x0b\x06\x7f\x65\xcd\x66\x52\x95\xdd\xb4\x75\xd7\x38\xc2\x12\x05\x2a\x96\x81\xbb\x24\x6f\xcf\x40\x25\x74\x9b\xa4\x63\x9f\xea\x0c\x37\x3d\x46\xda\x9b\xd5\x25\x96\x17\xb3\x3f\x4e\xbf\x7b\x1d\x0c\x8a\xee\x04\x86\x5e\xc1\xd2\x7e\x47\xd6\x91\x98\x0b\x3b\xfa\x3e\xd1\xee\xe2\xe7\xe9\x67\x32\x7b\xf3\x70\xed\x67\x7f\x42\x98\x54\x6e\xfe\xc8\x22\xb2\x6d\x9d\x41\x48\xdf\x2c\xaa\xba\x4d\xcb\xf4\x8e\x23\x5c\x52\x17\x35\x1a\x27\xa9\x39\xe5\x17\x51\xc3\x03\xe6\x43\x05\xf7\x1f\x65\x7a\xff\x58\x64\x0c\x53\xcb\x76\x3d\x72\x34\xb1\xf8\xc5\x3a\x0e\x98\xee\x6e\xda\xf3\xc8\x74\xef\x31\xf7\xa0\xd1\x95\xf4\xd7\x72\x79\xde\x23\xb5\x43\x87\xaf\xd2\xf5\x70\x24\x2d\xa2\x9e\x87\x11\x3b\xc6\x98\x48\xe1\x52\x5f\xe3\x85\xce\xae\x89\xbb\x9e\x53\x61\x6a\x45\x6f\x48\x1a\x7a\x8a\xe0\x21\x69\x79\x1d\xe0\x57\x1b\x85\xfe\xf2\x88\x20\x53\x19\x28\xac\x52\x08\x1a\xc9\xba\xcb\xdd\xa3\xf3\x6e\x8f\x79\xce\x3c\x63\xda\xdc\x29\x26\x34\xa1\x72\xd7\x71\x8e\x70\x7f\x13\x9c\x69\xaf\x4d\xbd\x58\xf1\x43\x31\x15\x28\x4b\x2e\x25\x73\x4a\x42\x74\x8a\xa6\xdd\xdb\x97\xc0\x04\x2d\xee\xb6\xc3\xd0\x95\xea\x63\x06\x47\x8f\xe7\x72\x37\xdc\x5f\xe8\x1a\xd6\xe8\xa1\xde\x51\x7a\xcc\x6e\xb8\x94\x66\x18\xc6\xbb\x61\xda\x5f\xeb\xda\xa0\xb0\x9f\x19\xf7\x1c\xb5\xee\x70\x63\x0f\xae\x37\x59\x95\x39\x13\x23\x85\x2c\xa5\x57\x0a\x7c\x63\xe0\x22\x25\x99\x2c\x96\x90\xa2\x61\xdc\x1a\x9e\xf3\x66\x23\xc8\xa3\x65\xfd\xd0\x8a\xaa\x6d\x83\xec\x45\x5e\x21\xd3\x91\x02\xf7\x8e\x2c\x77\x5b\xbd\x3a\x8f\x5a\x4d\xf8\x2b\xed\x69\xf1\x74\x8c\x9a\xac\x9f\x16\x8c\xbc\x09\xb4\x53\xa2\x0e\x99\x4b\x97\x61\xbb\x80\x3b\x55\xe2\x25\xfc\xc4\x32\x8d\x97\xf0\x8b\xa0\xf3\x94\x8f\xc6\xab\x2b\x13\xe1\x38\xff\x40\x2e\xdc\x65\xb5\x3e\x29\xb8\xc2\xed\x91\xdd\x77\xeb\x81\xd6\x75\x3c\x22\xb8\xcf\xa7\x24\x52\xbe\x44\xdd\xe7\x41\x58\x5a\xb8\x8a\x4e\xd2\x34\x47\x27\x3a\x06\x9c\xb6\x5e\x5e\xba\xd7\xcf\x4a\x6e\x20\x93\x62\x69\x6d\x00\x23\xe5\xba\xe2\x4a\x97\xfb\x7d\xbd\x62\xc2\xed\x27\xbe\x09\xa9\xd9\x13\xb8\x99\xdd\x36\xcc\xc6\x0f\xbf\xff\xf6\x3b\x6b\x4f\x08\xb8\xfe\xf4\xc6\xa5\x28\xde\x16\x28\xa6\x1f\x6f\x28\x9e\x08\x0f\xbf\xa9\xae\x4c\x58\x72\xb3\x2a\xe7\xe3\x44\xe6\x93\xdb\xe9\xcd\xc4\x57\x1b\xcd\xea\x29\x5b\x13\xae\x75\x89\x7a\xf2\xc3\x6f\x7f\x37\x64\xd8\xa8\x94\x6c\x08\xd3\x1d\x5b\x1a\xb6\x5e\xfd\x33\x5c\xf0\x05\x30\xd1\xe0\xdd\x77\xf4\xb6\x60\x3c\x6b\x0c\x49\x34\x78\xeb\xb4\xe6\xfd\x2a\xf3\xed\xda\xfb\xec\xd6\x6c\x5d\xf2\xe6\x40\xe1\xeb\x95\xb4\xae\xa1\x75\xdc\x7c\x6e\x64\xd0\xf1\x0e\x48\xfb\x2a\xed\x5a\x47\x89\x7c\xc0\xb6\xa8\x5b\xc3\xd0\x5d\xf5\x70\x27\x78\xdd\xd6\xf1\x13\xd1\x08\xa8\x3f\xe0\xe6\x01\xb6\x87\x29\xf6\x27\xc3\x5f\x49\x2e\xca\x7c\xde\x11\x14\x76\x83\xf7\x97\x64\x77\x77\xfc\x9e\x7d\x89\xec\x3b\xb8\xfd\xae\x6f\x32\x80\x1c\x88\x0e\xc3\x21\x1e\x8f\x2e\x75\x7f\x48\x10\xbe\x8b\xc0\x86\x09\xa9\x62\x11\xad\x20\x62\xd5\x7c\x94\xae\xec\x3a\x81\x33\x0a\x48\x75\xff\xfa\x9e\x7d\xe9\x60\xdc\xf6\x98\x4f\xeb\x3c\x1d\x31\x2d\xcd\x13\x49\xb3\xfa\x7a\x5d\x31\x0d\x2b\x7a\x1f\xb3\x25\x90\x15\x37\x51\x9d\x93\xd4\x3e\x41\xa3\xb6\x35\x3b\xaa\xd6\x58\xc3\x4f\x8d\x58\x74\x4c\x54\xcb\x76\xc2\xb1\x13\x5c\x6d\x21\x90\xae\x68\xd3\x80\x8d\xa3\x0c\x31\x96\x9f\x29\x98\x10\xa1\xa6\x6e\x8f\x1a\x84\xe4\xee\x5c\x6a\x63\x87\x8f\xc2\xf8\xd8\x04\xfd\x1a\x7a\x68\x98\xff\x4a\xf8\x90\xa7\xd2\x1e\x8a\xe2\xc2\x34\x1c\xb1\xe9\x5a\x96\x14\xf3\xea\x19\xc9\xbe\x3f\xd4\xfc\xdc\x7b\xc7\xcc\x51\xa8\x0f\xd3\x69\x8c\xfd\xb0\xe3\x61\x6e\x42\xc3\xf6\xc0\x5b\x2b\xc7\x0e\x8b\xbc\x1d\x7d\x74\x74\x70\x49\x6a\xee\x83\x91\xca\xb2\x58\xed\x4b\x39\x0f\xde\x60\x25\xeb\xbd\x05\x0b\xff\xf3\xbf\x67\xff\x17\x00\x00\xff\xff\x24\x21\xa3\x61\x1f\x99\x00\x00"), }, "/crd/bases/camel.apache.org_camelcatalogs.yaml": &vfsgen۰CompressedFileInfo{ name: "camel.apache.org_camelcatalogs.yaml", modTime: time.Time{}, - uncompressedSize: 17698, + uncompressedSize: 17906, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5c\x4f\x73\xdb\xb8\x15\xbf\xf3\x53\xbc\x89\x0e\x49\x66\x24\x6a\xd3\xce\x74\x3a\xea\xc9\xb5\x9d\x5d\x35\x5e\x3b\xb5\x94\xec\xec\x11\x22\x9f\x28\xc4\x24\xc0\x02\xa0\x64\x6d\xa7\xdf\xbd\x03\x80\x14\x49\x89\x7f\x40\xd9\x9e\xec\xce\x1a\x27\x8b\x00\x1e\x7e\x78\xff\x1f\x48\x78\x04\x93\xe7\x6b\xde\x08\x6e\x68\x80\x4c\x62\x08\x8a\x83\xda\x20\x5c\xa4\x24\xd8\x20\x2c\xf8\x5a\xed\x88\x40\xf8\xc8\x33\x16\x12\x45\x39\x83\x77\x17\x8b\x8f\xef\x21\x63\x21\x0a\xe0\x0c\x81\x0b\x48\xb8\x40\x6f\x04\x01\x67\x4a\xd0\x55\xa6\xb8\x80\xd8\x12\x04\x12\x09\xc4\x04\x99\x92\x3e\xc0\x02\xd1\x50\xbf\xbd\x5b\xce\x2f\xaf\x61\x4d\x63\x84\x90\x4a\x3b\x09\x43\xd8\x51\xb5\xf1\x46\xa0\x36\x54\xc2\x8e\x8b\x07\x58\x73\x01\x24\x0c\xa9\x5e\x98\xc4\x40\xd9\x9a\x8b\xc4\xc2\x10\x18\x11\x11\x52\x16\x41\xc0\xd3\xbd\xa0\xd1\x46\x01\xdf\x31\x14\x72\x43\x53\xdf\x1b\xc1\x52\x6f\x63\xf1\xb1\x40\x22\x2d\x59\xb3\xa6\xe2\xf0\x2b\xcf\xf2\x3d\x54\xb6\x9b\x73\x61\x0c\x5f\x51\x48\xbd\xc8\x5f\xfc\x1f\xbc\x11\xbc\xd3\x43\xde\xe4\x9d\x6f\xde\xff\x03\xf6\x3c\x83\x84\xec\x81\x71\x05\x99\xc4\x0a\x65\x7c\x0c\x30\x55\x40\x19\x04\x3c\x49\x63\x4a\x58\x80\xe5\xb6\x0e\x2b\xf8\x60\x00\x68\x1a\x7c\xa5\x08\x65\x40\xcc\x36\x80\xaf\xab\xc3\x80\x28\x6f\xe4\x8d\xc0\xb4\x8d\x52\xe9\x6c\x3a\xdd\xed\x76\x3e\x31\x70\x7d\x2e\xa2\x69\xb1\xbb\xe9\xcd\xfc\xf2\xfa\x76\x71\x3d\x31\x90\xbd\x11\x7c\x61\x31\x4a\x09\x02\xff\x93\x51\x81\x21\xac\xf6\x40\xd2\x34\xa6\x01\x59\xc5\x08\x31\xd9\x69\xc1\x19\xe9\x18\xa1\x53\x06\x3b\x41\x15\x65\xd1\x18\x64\x2e\x75\x6f\x54\x93\x4e\xc9\xae\x02\x1e\x95\xb5\x01\x9c\x01\x61\xf0\xe6\x62\x01\xf3\xc5\x1b\xf8\xe7\xc5\x62\xbe\x18\x7b\x23\xf8\x65\xbe\xfc\xe9\xee\xcb\x12\x7e\xb9\xb8\xbf\xbf\xb8\x5d\xce\xaf\x17\x70\x77\x0f\x97\x77\xb7\x57\xf3\xe5\xfc\xee\x76\x01\x77\x1f\xe1\xe2\xf6\x57\xf8\x34\xbf\xbd\x1a\x03\x52\xb5\x41\x01\xf8\x98\x0a\x8d\x9f\x0b\xa0\x9a\x91\x18\x6a\x99\x16\x0a\x54\x00\xd0\xfa\xa1\x7f\xcb\x14\x03\xba\xa6\x01\xc4\x84\x45\x19\x89\x10\x22\xbe\x45\xc1\xb4\x7a\xa4\x28\x12\x2a\xb5\x38\x25\x10\x16\x7a\x23\x88\x69\x42\x95\xd1\x22\x79\xba\x29\xbd\xcc\x73\xda\x96\x47\x52\x9a\xab\xd3\x0c\x48\x4a\xf1\x51\x21\x33\x68\xfc\x87\xbf\x4b\x9f\xf2\xe9\xf6\x83\xf7\x40\x59\x38\x83\xcb\x4c\x2a\x9e\xdc\xa3\xe4\x99\x08\xf0\x0a\xd7\x94\x19\xcd\xf7\x12\x54\x24\x24\x8a\xcc\x3c\x00\xc2\x18\xcf\xc1\xeb\x9f\x60\xad\x8e\xc7\x31\x8a\x49\x84\xcc\x7f\xc8\x56\xb8\xca\x68\x1c\xa2\x30\xc4\x8b\xa5\xb7\x3f\xf8\x7f\xf3\x3f\x78\x00\x81\x40\x33\x7d\x49\x13\x94\x8a\x24\xe9\x0c\x58\x16\xc7\x1e\x40\x4c\x56\x18\xe7\x54\x49\x9a\xce\x20\x20\x09\xc6\x93\x07\x0f\x80\x91\x04\xf3\xdf\x01\x51\x24\xe6\x91\xf4\xcd\xaf\x8a\x2e\x7a\x5a\x0a\x7a\x76\x24\x78\x56\xcc\xae\xf6\x5b\x32\x05\x6c\xa2\x30\xe2\x82\x16\xbf\x27\xf0\xa0\xc7\xe7\x7f\x07\x87\xbf\x73\xd6\xe8\xdf\x97\x76\x65\xf3\x38\xa6\x52\x7d\x3a\xe9\xba\xa1\x52\x99\xee\x34\xce\x04\x89\x8f\x10\x9b\x1e\xb9\xe1\x42\xdd\x96\x38\x26\x10\x04\xb6\x83\xb2\x28\x8b\x89\xa8\x4f\xf2\x00\x64\xc0\x53\x9c\x81\x99\x93\x92\x00\x43\x0f\x20\x67\xab\xa1\x31\xa9\xb8\xa8\xcf\x82\x32\x85\xe2\x92\xc7\x59\xc2\x0e\x2b\x84\x28\x03\x41\x53\x65\x04\xa1\xfd\x92\xc1\x0c\x9f\xe0\x3e\x63\x8a\x26\x58\x90\xf3\xac\xa5\x7f\x93\x9c\x7d\x26\x6a\x33\x03\x5f\xb3\xd4\x17\x76\x94\x5f\x1f\x65\x45\x52\x50\xf8\x5a\xeb\x53\x7b\x8d\x58\x5b\x26\x8b\x5c\x31\xa4\x82\x6f\x69\x88\xa2\x07\xc4\xd1\xb0\x3a\x8a\xcf\xf5\xce\x13\x18\x76\xf4\xf6\x83\x65\x78\xb0\xc1\x84\xcc\xf2\xb1\x3c\x45\x76\xf1\x79\xfe\xf5\xaf\x8b\xda\x63\xa8\x03\xaf\x0a\x1b\x04\x6a\x1f\xa1\x63\x8b\x31\xe0\xc2\xf6\xe5\xd8\x38\x5f\xce\x74\xcf\x18\xb4\xe1\x80\x8d\x1b\xf2\x40\x54\xdb\x51\x08\x01\x49\xc9\x8a\xc6\x54\x51\x94\x80\x4c\x7b\x46\xeb\xc5\x20\xa2\x5b\x64\x20\x8e\x58\xe3\x1b\xc6\xe5\x9a\x61\xbc\xf7\x0a\x2b\x24\xa5\xb6\xcb\x80\xc4\xf1\x1e\x22\x64\x28\x88\xd2\x5e\xab\xe8\x4d\x05\x4f\x51\xa8\x83\xc2\xe7\x30\x4a\xef\x50\x79\x7a\xb4\xeb\xb7\x9a\x31\x79\x48\x0a\xb5\x5b\x40\xbb\xe3\x5c\x21\x30\xcc\x79\x69\xc3\x07\x95\x25\x67\x8c\xa5\xd7\x08\x83\x1e\x44\x18\xf0\xd5\x37\x0c\x94\x0f\x0b\x14\x9a\x8c\xb6\x8b\x2c\x0e\xb5\x37\xd9\xa2\x50\x20\x30\xe0\x11\xa3\xbf\x1d\x68\xcb\x22\x35\x88\x89\xc2\xdc\xca\xca\x66\xb4\x5e\x87\xe8\x2d\x89\x33\x1c\x1b\xee\x6a\xfe\x08\xd4\xab\x40\xc6\x2a\xf4\xcc\x10\xe9\xc3\xcf\x5c\xa0\x09\xe9\x33\x13\xdb\xe4\x6c\x3a\x8d\xa8\x2a\xbc\x62\xc0\x93\x24\x63\x54\xed\xa7\x95\xb4\x42\x4e\x43\xdc\x62\x3c\x95\x34\x9a\x10\x11\x6c\xa8\xc2\x40\x65\x02\xa7\x24\xa5\x13\x03\x9d\x19\xcf\xe8\x27\xe1\x48\xe4\x7e\x54\xbe\xad\x61\x3d\xd1\x49\xdb\x8c\x9b\xe9\x90\x80\xf6\x35\x3a\xde\x91\x7c\xaa\xdd\x45\xc9\x68\xfd\x48\x73\xe7\xfe\x7a\xb1\x84\x62\x69\x23\x8c\x63\xee\x1b\xbe\x57\x74\xb7\x14\x81\x66\x18\x65\x6b\x13\x8f\x74\x42\x21\x78\x62\x68\x22\x0b\x53\x4e\x99\x32\x3f\x82\x98\x22\x3b\x66\xbf\xcc\x56\x09\x55\x36\xda\xa3\xd4\xf6\xc0\x7d\xb8\x34\xa1\x02\x56\x08\x59\x1a\x1a\x5d\x84\x39\x2b\x2c\x48\xe7\x20\x2f\x2c\x00\xcd\x69\x39\xd1\x8c\x75\x13\x41\x35\xca\x1d\x0f\xb6\x5c\xab\xda\x5a\x1e\x6b\x5a\xe4\xa5\x39\x15\xa2\x34\x99\x8f\x36\x4b\x2c\x32\xab\xa0\x12\x43\x8a\xd6\x6c\x99\xba\x11\xa1\xe8\x9a\x04\xea\xa4\x03\x6a\x3e\xbf\x6d\xfa\x09\x2c\xc3\xfc\x8b\x9c\x68\xa9\x03\x16\x19\x67\x6b\x1a\x65\xc2\xa6\xb7\x26\xf3\x85\x35\x12\xcd\xdd\x06\xb2\xda\x8c\xd7\x98\x27\x76\x97\x87\x68\x59\x6f\xed\x1b\xab\x6f\x6f\x1e\x36\xf7\x1f\xa1\xff\x99\x68\xa7\x58\xc0\x6f\x99\xd1\x22\xdc\x0a\x49\xa2\x48\xee\x8e\x9d\x56\x25\x81\x4e\xa9\x31\x6c\x73\xe4\xd5\x46\x15\x26\xad\x54\x1d\xb0\x15\x43\x88\x10\x64\xdf\x8c\x1e\x53\x64\x21\xb2\xa0\x95\xa9\x47\xf0\x0f\x09\x78\x75\xe6\x79\xf0\xdb\x55\xe9\xaa\xa0\xbd\xaf\x28\x15\x81\x44\x0b\xec\xad\x2c\x97\x6e\xde\x13\x38\xa8\x8a\x6d\xfd\x0a\xd3\x80\xd4\x49\x6d\x6c\x73\x10\x90\x6e\xf8\x18\xc4\x99\x2c\x53\x60\x27\x18\x79\x10\x07\x62\x72\x47\x13\x05\x0b\xeb\xd6\xa1\xcd\xd0\x0c\x4d\x49\xd1\x49\x13\xac\x73\x76\x60\x29\xf4\x4b\xb4\x01\x66\x4d\xae\xd7\xc5\x46\xab\xb9\x0e\x61\x25\x03\x7a\x28\x03\x04\x31\xc9\x64\xb3\x03\x29\x9b\x9b\xf0\x6d\x73\x55\x81\x86\xad\x0d\x50\x04\xdb\x1c\xd5\xc1\x36\x53\x75\x9c\x8d\xea\x47\x3d\xfb\x79\x21\x15\x96\xdf\x87\x68\x52\xe1\x69\xef\xd0\x7c\x97\x7d\x2a\xda\x1c\x34\xdb\x06\xb6\xbb\x3b\xdb\x9c\x58\x7b\x16\x53\x1d\xd9\xb9\x6d\x4a\x91\x1d\x00\xd4\xab\xa2\x27\x40\xe8\x97\xa5\x93\x14\xfb\xe5\xe7\x20\xb9\x3e\x99\xf5\x7b\xc7\x33\xfd\x62\x53\x3a\x5b\x25\xda\xe3\x11\xcf\x8e\x6e\x4f\xf1\x82\x3d\xfe\xef\x0f\x15\xf6\xbe\xb3\x19\xfe\x91\x6c\xa0\x87\x55\x03\x99\xd4\xcb\x9e\x6f\x64\x4b\x96\xba\xdc\x71\x5a\x50\x67\xfb\xff\x22\x5b\x62\xe8\x4a\xc8\xa4\xcd\xe2\xf5\xe3\x82\x7f\x45\xe6\x0f\xef\x28\x8e\x5b\x19\x75\x38\xe6\xa8\x9d\x72\x8c\xc1\xf7\xfd\xf7\xdf\x2d\x43\x3e\x1c\xc3\x0c\xcb\xee\x0f\xd3\xbe\x1b\x70\x73\xce\x31\x14\xf6\x97\xfb\x79\x31\xf1\xb9\xdc\x9e\x39\x00\xc3\xe3\xd3\x2d\xbb\x88\x55\x16\xc5\x81\x86\xba\xd2\x5e\x77\x45\x6d\x52\xea\x07\x98\x37\x0c\x1a\xab\xd6\x27\x50\x34\x41\x61\x9f\x99\x3f\x67\x8f\xfb\xdf\x0e\xa7\x0c\x1d\x14\xbf\xdc\xcf\xdb\xf4\xca\xd5\x95\x06\x9c\xc9\x4c\x2f\xe9\xee\xc4\x0e\x15\x94\x39\x88\x35\x81\xa8\xa0\xd2\x49\xc4\x3d\xab\x75\x29\xea\x5a\xc0\x15\x31\xb3\x4a\x02\x18\x62\x88\x61\x7f\xc8\x2c\x9b\xd9\x5a\xef\x38\xa7\x6a\xe2\x04\xa2\x43\xa5\xe8\x40\x12\x86\x54\x93\x65\x1b\x52\x5a\xc0\xe0\xf2\x02\x9e\x5c\x62\xc0\xd0\x32\x03\x06\xd4\x9f\x2d\x20\xbb\x33\x2e\x47\x8a\x70\x92\x99\x0d\x13\x0c\x0c\xd1\xa7\x86\x4d\xf4\x66\x68\xce\x64\xa1\x96\xcb\xb9\x55\xac\x65\x1b\xaa\x60\xf9\x8a\x83\xd5\xcc\xb6\xa7\x2b\x9b\x6d\x83\x55\xce\xb6\x01\x35\x6e\x27\x66\xd7\x6a\xf7\x89\x80\x5d\x2b\xe0\xb2\x0d\xa8\x85\xab\x93\xdc\xaa\xe2\xb2\x39\xd7\xc7\xc7\x53\xfa\x2a\xe5\xb2\x0d\x14\xd5\x13\x85\x34\x58\x3c\x4e\x15\x75\x27\x3c\x97\xda\xfa\x6c\x80\x43\x34\x67\xa0\xce\x0c\xd1\x96\x41\x7a\xe2\xaa\x21\x8e\x44\xcd\xf7\x1e\xee\x59\x92\x79\x37\xf5\xd3\x72\xf9\x19\x56\x44\x16\x6f\xed\xba\xdd\xa8\x05\xb2\xe2\x3c\x46\xd2\x25\x47\x3a\xa4\xe4\xd4\xb9\xea\xfc\xaa\x23\xcf\xec\x4c\x22\xc1\x5d\x55\x52\x22\x25\xdd\xe2\x50\x16\xe5\xd3\x9e\x93\x3f\xa9\xe0\x61\x16\x3c\x35\xa7\x2d\xa8\x74\x07\xce\xd7\xa4\xf6\x35\xa9\x75\x6a\xaf\x49\xed\x19\x9b\x78\x4d\x6a\x5f\x93\xda\xbe\xf6\x9a\xd4\xbe\x26\xb5\xe7\x01\xfc\xd3\x27\xb5\x2e\x6f\x10\x74\xda\xdb\xd1\x4d\xbb\x5e\x2c\xe4\xb9\xdd\x4b\xbe\x58\xe8\x51\xb1\xc1\x2a\xd5\xa3\x42\x5d\x1c\xeb\x51\x91\x2e\x95\xe8\x64\x44\xfd\xa0\xfb\x10\xc4\xab\x5f\x92\x9b\xc8\xdc\xf4\x29\x55\x0f\xf1\x98\x93\x10\xc5\xb3\x7e\x4d\x75\x63\x48\x1e\x9f\x96\xd7\x3f\xa6\x3a\x40\x6f\x49\x44\x34\x2c\x20\x70\xb5\xb8\x69\xe8\xfe\x7d\x7e\x44\x35\xf4\x33\xa4\x4a\x5a\x56\xde\xa7\xa8\xe5\xf7\xa5\x7c\x51\xd2\xb0\xc3\x88\x36\x68\x4a\x4c\xe0\xac\x6d\xd0\x90\x57\x1e\x86\x1f\x87\x4f\xe2\x8a\xaf\x5b\x09\xfc\x78\xf1\x15\xde\x99\x68\x31\x2b\x7a\x67\xb9\x29\x75\x95\x8f\x96\xbd\xa4\x2f\x7d\x79\x7d\xef\x3b\x04\xc0\xeb\xe7\x17\x27\x43\x7e\x37\xaf\x9e\x07\xbe\x6e\x3d\xb8\x81\xab\xc5\x8d\x04\x99\xa5\x29\x17\x0a\xdb\x18\xf2\xf2\x2f\x5d\xff\x6c\xf1\x34\x8f\x80\xcf\x12\x4d\xf3\xeb\x09\xa7\x7b\x39\x39\x90\x2b\x2e\x32\x28\x22\x22\x54\x87\x53\x9c\xe6\xcf\xa1\xa1\xd7\x3f\xe6\x17\xc9\x34\xfd\xcb\x98\xc8\x16\x0d\xa9\x2b\x5e\x39\x05\x90\x29\xb1\x07\xfb\x49\xfb\xbb\x84\x50\xf6\x1e\x14\x87\x15\x02\x3e\x62\x90\xb5\x69\x63\x8f\x64\xab\x77\x39\x5a\x02\xb5\x63\x8e\x71\x82\xfd\xb2\x20\xbd\x2f\x8e\x10\x85\xa2\x41\x16\x13\x71\xf8\x4c\x63\xb7\xa1\xc1\xa6\x10\x6a\xfb\x29\x01\x81\x1d\xc6\x31\x3c\x30\xbe\x63\x20\xf1\xe4\x90\xad\x65\xa2\x4b\xb4\x72\x3d\xee\x73\x38\x1e\x79\xc9\xf8\x0c\xee\x31\xda\x75\xe7\xb6\x0d\x39\xfc\x78\xca\x81\xc7\x80\x9a\xcf\xb9\x5a\x3e\xbb\x4e\x1e\x00\xc6\xb9\x36\x7e\x42\x55\xec\x0c\xc7\xad\x12\x76\xae\x81\xdd\xaa\x5f\xc7\xba\xb7\xbf\xe2\xed\x43\x3f\x71\xb1\xe9\x5e\x34\x35\x39\xe4\x7e\x46\x56\x6f\x7d\xd8\x9b\x5e\xd6\xb3\x77\x78\xcc\xd6\x25\xfa\x3d\x86\xf3\x4b\x01\xc5\x35\x10\xfb\x05\x5b\xe9\xe8\x1b\x69\x76\xfa\x9f\x97\xf3\x3c\x4e\x3e\xc7\xc5\xdb\xb8\xf9\x99\xf3\x3c\x8c\x93\xfd\x38\x78\x95\x33\xfc\x89\xd3\xd2\x0e\x3e\xe4\x2c\xef\xe1\xb0\x78\xbf\xcd\xf5\xfa\x8a\x3e\x2f\xd1\x6b\x91\xdd\x9e\xa1\xf9\xfa\x5a\xd1\x86\x24\x1f\x0e\xd5\x7f\x85\xc9\x79\x1a\x51\x2c\x7f\x8e\x27\x28\xee\xb7\x3a\x78\x01\x7b\x6b\x38\x31\xff\xb2\xa0\x92\xd2\x15\x14\xc6\x40\x71\x9c\x0f\xfa\x77\x46\xc4\x43\xd6\xec\xff\x7a\xb6\xd8\xa9\x68\x0d\x78\xda\x6e\x52\x0f\x58\xb4\x5d\xc1\x26\x27\xf9\x6e\xc3\x90\x4e\x8f\x3f\x39\xbe\x5c\x5d\xed\x6a\x43\xdc\x2a\xb3\x66\xa4\xa5\x01\xc8\xa3\xe7\x79\xc9\x71\xf4\xb4\x29\x70\xb4\xdd\xb5\x54\x44\x65\xb2\xe7\xb6\x25\x09\x54\x46\xe2\xfe\xcb\x96\x8d\x6b\x9c\x3c\x94\x28\xb6\x18\xce\x40\x89\xcc\x42\x94\x8a\x0b\x12\x61\xf5\x49\xb6\x3a\x5c\xf1\x2d\xb0\xe5\x48\xe1\xbf\xff\xf3\xfe\x1f\x00\x00\xff\xff\x82\x08\xbe\xd5\x22\x45\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5c\x4f\x73\xdb\xb8\x15\xbf\xf3\x53\xbc\x89\x0e\x49\x66\x24\x6a\xd3\xce\x74\x3a\xea\xc9\xb5\x9d\x5d\x35\x5e\x3b\xb5\x94\xec\xec\x11\x22\x9f\x28\xc4\x24\xc0\x02\xa0\x64\x6d\xa7\xdf\xbd\x03\x80\x14\x49\x89\x7f\x40\xd9\x9e\xec\xce\x1a\x27\x8b\x00\x1e\x7e\x78\xff\x1f\x08\x7a\x04\x93\xe7\x6b\xde\x08\x6e\x68\x80\x4c\x62\x08\x8a\x83\xda\x20\x5c\xa4\x24\xd8\x20\x2c\xf8\x5a\xed\x88\x40\xf8\xc8\x33\x16\x12\x45\x39\x83\x77\x17\x8b\x8f\xef\x21\x63\x21\x0a\xe0\x0c\x81\x0b\x48\xb8\x40\x6f\x04\x01\x67\x4a\xd0\x55\xa6\xb8\x80\xd8\x12\x04\x12\x09\xc4\x04\x99\x92\x3e\xc0\x02\xd1\x50\xbf\xbd\x5b\xce\x2f\xaf\x61\x4d\x63\x84\x90\x4a\x3b\x09\x43\xd8\x51\xb5\xf1\x46\xa0\x36\x54\xc2\x8e\x8b\x07\x58\x73\x01\x24\x0c\xa9\x5e\x98\xc4\x40\xd9\x9a\x8b\xc4\xc2\x10\x18\x11\x11\x52\x16\x41\xc0\xd3\xbd\xa0\xd1\x46\x01\xdf\x31\x14\x72\x43\x53\xdf\x1b\xc1\x52\x6f\x63\xf1\xb1\x40\x22\x2d\x59\xb3\xa6\xe2\xf0\x2b\xcf\xf2\x3d\x54\xb6\x9b\x73\x61\x0c\x5f\x51\x48\xbd\xc8\x5f\xfc\x1f\xbc\x11\xbc\xd3\x43\xde\xe4\x9d\x6f\xde\xff\x03\xf6\x3c\x83\x84\xec\x81\x71\x05\x99\xc4\x0a\x65\x7c\x0c\x30\x55\x40\x19\x04\x3c\x49\x63\x4a\x58\x80\xe5\xb6\x0e\x2b\xf8\x60\x00\x68\x1a\x7c\xa5\x08\x65\x40\xcc\x36\x80\xaf\xab\xc3\x80\x28\x6f\xe4\x8d\xc0\xb4\x8d\x52\xe9\x6c\x3a\xdd\xed\x76\x3e\x31\x70\x7d\x2e\xa2\x69\xb1\xbb\xe9\xcd\xfc\xf2\xfa\x76\x71\x3d\x31\x90\xbd\x11\x7c\x61\x31\x4a\x09\x02\xff\x93\x51\x81\x21\xac\xf6\x40\xd2\x34\xa6\x01\x59\xc5\x08\x31\xd9\x69\xc1\x19\xe9\x18\xa1\x53\x06\x3b\x41\x15\x65\xd1\x18\x64\x2e\x75\x6f\x54\x93\x4e\xc9\xae\x02\x1e\x95\xb5\x01\x9c\x01\x61\xf0\xe6\x62\x01\xf3\xc5\x1b\xf8\xe7\xc5\x62\xbe\x18\x7b\x23\xf8\x65\xbe\xfc\xe9\xee\xcb\x12\x7e\xb9\xb8\xbf\xbf\xb8\x5d\xce\xaf\x17\x70\x77\x0f\x97\x77\xb7\x57\xf3\xe5\xfc\xee\x76\x01\x77\x1f\xe1\xe2\xf6\x57\xf8\x34\xbf\xbd\x1a\x03\x52\xb5\x41\x01\xf8\x98\x0a\x8d\x9f\x0b\xa0\x9a\x91\x18\x6a\x99\x16\x0a\x54\x00\xd0\xfa\xa1\x7f\xcb\x14\x03\xba\xa6\x01\xc4\x84\x45\x19\x89\x10\x22\xbe\x45\xc1\xb4\x7a\xa4\x28\x12\x2a\xb5\x38\x25\x10\x16\x7a\x23\x88\x69\x42\x95\xd1\x22\x79\xba\x29\xbd\xcc\x73\xda\x96\x47\x52\x9a\xab\xd3\x0c\x48\x4a\xf1\x51\x21\x33\x68\xfc\x87\xbf\x4b\x9f\xf2\xe9\xf6\x83\xf7\x40\x59\x38\x83\xcb\x4c\x2a\x9e\xdc\xa3\xe4\x99\x08\xf0\x0a\xd7\x94\x19\xcd\xf7\x12\x54\x24\x24\x8a\xcc\x3c\x00\xc2\x18\xcf\xc1\xeb\x9f\x60\xad\x8e\xc7\x31\x8a\x49\x84\xcc\x7f\xc8\x56\xb8\xca\x68\x1c\xa2\x30\xc4\x8b\xa5\xb7\x3f\xf8\x7f\xf3\x3f\x78\x00\x81\x40\x33\x7d\x49\x13\x94\x8a\x24\xe9\x0c\x58\x16\xc7\x1e\x40\x4c\x56\x18\xe7\x54\x49\x9a\xce\x20\x20\x09\xc6\x93\x07\x0f\x80\x91\x04\xf3\xdf\x01\x51\x24\xe6\x91\xf4\xcd\xaf\x8a\x2e\x7a\x5a\x0a\x7a\x76\x24\x78\x56\xcc\xae\xf6\x5b\x32\x05\x6c\xa2\x30\xe2\x82\x16\xbf\x27\xf0\xa0\xc7\xe7\x7f\x07\x87\xbf\x73\xd6\xe8\xdf\x97\x76\x65\xf3\x38\xa6\x52\x7d\x3a\xe9\xba\xa1\x52\x99\xee\x34\xce\x04\x89\x8f\x10\x9b\x1e\xb9\xe1\x42\xdd\x96\x38\x26\x10\x04\xb6\x83\xb2\x28\x8b\x89\xa8\x4f\xf2\x00\x64\xc0\x53\x9c\x81\x99\x93\x92\x00\x43\x0f\x20\x67\xab\xa1\x31\xa9\xb8\xa8\xcf\x82\x32\x85\xe2\x92\xc7\x59\xc2\x0e\x2b\x84\x28\x03\x41\x53\x65\x04\xa1\xfd\x92\xc1\x0c\x9f\xe0\x3e\x63\x8a\x26\x58\x90\xf3\xac\xa5\x7f\x93\x9c\x7d\x26\x6a\x33\x03\x5f\xb3\xd4\x17\x76\x94\x5f\x1f\x65\x45\x52\x50\xf8\x5a\xeb\x53\x7b\x8d\x58\x5b\x26\x8b\x5c\x31\xa4\x82\x6f\x69\x88\xa2\x07\xc4\xd1\xb0\x3a\x8a\xcf\xf5\xce\x13\x18\x76\xf4\xf6\x83\x65\x78\xb0\xc1\x84\xcc\xf2\xb1\x3c\x45\x76\xf1\x79\xfe\xf5\xaf\x8b\xda\x63\xa8\x03\xaf\x0a\x1b\x04\x6a\x1f\xa1\x63\x8b\x31\xe0\xc2\xf6\xe5\xd8\x38\x5f\xce\x74\xcf\x18\xb4\xe1\x80\x8d\x1b\xf2\x40\x54\xdb\x51\x08\x01\x49\xc9\x8a\xc6\x54\x51\x94\x80\x4c\x7b\x46\xeb\xc5\x20\xa2\x5b\x64\x20\x8e\x58\xe3\x1b\xc6\xe5\x9a\x61\xbc\xf7\x0a\x2b\x24\xa5\xb6\xcb\x80\xc4\xf1\x1e\x22\x64\x28\x88\xd2\x5e\xab\xe8\x4d\x05\x4f\x51\xa8\x83\xc2\xe7\x30\x4a\xef\x50\x79\x7a\xb4\xeb\xb7\x9a\x31\x79\x48\x0a\xb5\x5b\x40\xbb\xe3\x5c\x21\x30\xcc\x79\x69\xc3\x07\x95\x25\x67\x8c\xa5\xd7\x08\x83\x1e\x44\x18\xf0\xd5\x37\x0c\x94\x0f\x0b\x14\x9a\x8c\xb6\x8b\x2c\x0e\xb5\x37\xd9\xa2\x50\x20\x30\xe0\x11\xa3\xbf\x1d\x68\xcb\x22\x35\x88\x89\xc2\xdc\xca\xca\x66\xb4\x5e\x87\xe8\x2d\x89\x33\x1c\x1b\xee\x6a\xfe\x08\xd4\xab\x40\xc6\x2a\xf4\xcc\x10\xe9\xc3\xcf\x5c\xa0\x09\xe9\x33\x13\xdb\xe4\x6c\x3a\x8d\xa8\x2a\xbc\x62\xc0\x93\x24\x63\x54\xed\xa7\x95\xb4\x42\x4e\x43\xdc\x62\x3c\x95\x34\x9a\x10\x11\x6c\xa8\xc2\x40\x65\x02\xa7\x24\xa5\x13\x03\x9d\x19\xcf\xe8\x27\xe1\x48\xe4\x7e\x54\xbe\xad\x61\x3d\xd1\x49\xdb\x8c\x9b\xe9\x90\x80\xf6\x35\x3a\xde\x91\x7c\xaa\xdd\x45\xc9\x68\xfd\x48\x73\xe7\xfe\x7a\xb1\x84\x62\x69\x23\x8c\x63\xee\x1b\xbe\x57\x74\xb7\x14\x81\x66\x18\x65\x6b\x13\x8f\x74\x42\x21\x78\x62\x68\x22\x0b\x53\x4e\x99\x32\x3f\x82\x98\x22\x3b\x66\xbf\xcc\x56\x09\x55\x36\xda\xa3\xd4\xf6\xc0\x7d\xb8\x34\xa1\x02\x56\x08\x59\x1a\x1a\x5d\x84\x39\x2b\x2c\x48\xe7\x20\x2f\x2c\x00\xcd\x69\x39\xd1\x8c\x75\x13\x41\x35\xca\x1d\x0f\xb6\x5c\xab\xda\x5a\x1e\x6b\x5a\xe4\xa5\x39\x15\xa2\x34\x99\x8f\x36\x4b\x2c\x32\xab\xa0\x12\x43\x8a\xd6\x6c\x99\xba\x11\xa1\xe8\x9a\x04\xea\xa4\x03\x6a\x3e\xbf\x6d\xfa\x09\x2c\xc3\xfc\x8b\x9c\x68\xa9\x03\x16\x19\x67\x6b\x1a\x65\xc2\xa6\xb7\x26\xf3\x85\x35\x12\xcd\xdd\x06\xb2\xda\x8c\xd7\x98\x27\x76\x97\x87\x68\x59\x6f\xed\x1b\xab\x6f\x6f\x1e\x36\xf7\x1f\xa1\xff\x99\x68\xa7\x58\xc0\x6f\x99\xd1\x22\xdc\x0a\x49\xa2\x48\xee\x8e\x9d\x56\x25\x81\x4e\xa9\x31\x6c\x73\xe4\xd5\x46\x15\x26\xad\x54\x1d\xb0\x15\x43\x88\x10\x64\xdf\x8c\x1e\x53\x64\x21\xb2\xa0\x95\xa9\x47\xf0\x0f\x09\x78\x75\xe6\x79\xf0\xdb\x55\xe9\xaa\xa0\xbd\xaf\x28\x15\x81\x44\x0b\xec\xad\x2c\x97\x6e\xde\x13\x38\xa8\x8a\x6d\xfd\x0a\xd3\x80\xd4\x49\x6d\x6c\x73\x10\x90\x6e\xf8\x18\xc4\x99\x2c\x53\x60\x27\x18\x79\x10\x07\x62\x72\x47\x13\x05\x0b\xeb\xd6\xa1\xcd\xd0\x0c\x4d\x49\xd1\x49\x13\xac\x73\x76\x60\x29\xf4\x4b\xb4\x01\x66\x4d\xae\xd7\xc5\x46\xab\xb9\x0e\x61\x25\x03\x7a\x28\x03\x04\x31\xc9\x64\xb3\x03\x29\x9b\x9b\xf0\x6d\x73\x55\x81\x86\xad\x0d\x50\x04\xdb\x1c\xd5\xc1\x36\x53\x75\x9c\x8d\xea\x47\x3d\xfb\x79\x21\x15\x96\xdf\x87\x68\x52\xe1\x69\xef\xd0\x7c\x97\x7d\x2a\xda\x1c\x34\xdb\x06\xb6\xbb\x3b\xdb\x9c\x58\x7b\x16\x53\x1d\xd9\xb9\x6d\x4a\x91\x1d\x00\xd4\xab\xa2\x27\x40\xe8\x97\xa5\x93\x14\xfb\xe5\xe7\x20\xb9\x3e\x99\xf5\x7b\xc7\x33\xfd\x62\x53\x3a\x5b\x25\xda\xe3\x11\xcf\x8e\x6e\x4f\xf1\x82\x3d\xfe\xef\x0f\x15\xf6\xbe\xb3\x19\xfe\x91\x6c\xa0\x87\x55\x03\x99\xd4\xcb\x9e\x6f\x64\x4b\x96\xba\xdc\x71\x5a\x50\x67\xfb\xff\x22\x5b\x62\xe8\x4a\xc8\xa4\xcd\xe2\xf5\xe3\x82\x7f\x45\xe6\x0f\xef\x28\x8e\x5b\x19\x75\x38\xe6\xa8\x9d\x72\x8c\xc1\xf7\xfd\xf7\xdf\x2d\x43\x3e\x1c\xc3\x0c\xcb\xee\x0f\xd3\xbe\x1b\x70\x73\xce\x31\x14\xf6\x97\xfb\x79\x31\xf1\xb9\xdc\x9e\x39\x00\xc3\xe3\xd3\x2d\xbb\x88\x55\x16\xc5\x81\x86\xba\xd2\x5e\x77\x45\x6d\x52\xea\x07\x98\x37\x0c\x1a\xab\xd6\x27\x50\x34\x41\x61\x9f\x99\x3f\x67\x8f\xfb\xdf\x0e\xa7\x0c\x1d\x14\xbf\xdc\xcf\xdb\xf4\xca\xd5\x95\x06\x9c\xc9\x4c\x2f\xe9\xee\xc4\x0e\x15\x94\x39\x88\x35\x81\xa8\xa0\xd2\x49\xc4\x3d\xab\x75\x29\xea\x5a\xc0\x15\x31\xb3\x4a\x02\x18\x62\x88\x61\x7f\xc8\x2c\x9b\xd9\x5a\xef\x38\xa7\x6a\xe2\x04\xa2\x43\xa5\xe8\x40\x12\x86\x54\x93\x65\x1b\x52\x5a\xc0\xe0\xf2\x02\x9e\x5c\x62\xc0\xd0\x32\x03\x06\xd4\x9f\x2d\x20\xbb\x33\x2e\x47\x8a\x70\x92\x99\x0d\x13\x0c\x0c\xd1\xa7\x86\x4d\xf4\x66\x68\xce\x64\xa1\x96\xcb\xb9\x55\xac\x65\x1b\xaa\x60\xf9\x8a\x83\xd5\xcc\xb6\xa7\x2b\x9b\x6d\x83\x55\xce\xb6\x01\x35\x6e\x27\x66\xd7\x6a\xf7\x89\x80\x5d\x2b\xe0\xb2\x0d\xa8\x85\xab\x93\xdc\xaa\xe2\xb2\x39\xd7\xc7\xc7\x53\xfa\x2a\xe5\xb2\x0d\x14\xd5\x13\x85\x34\x58\x3c\x4e\x15\x75\x27\x3c\x97\xda\xfa\x6c\x80\x43\x34\x67\xa0\xce\x0c\xd1\x96\x41\x7a\xe2\xaa\x21\x8e\x44\xcd\x7d\x0f\xf7\x2c\xc9\xbc\x9b\xfa\x69\xb9\xfc\x0c\x2b\x22\x8b\xb7\x76\xdd\x6e\xd4\x02\x59\x71\x1e\x23\xe9\x92\x23\x1d\x52\x72\xea\x5c\x75\x7e\xd5\x91\x67\x76\x26\x91\xe0\xae\x2a\x29\x91\x92\x6e\x71\x28\x8b\xf2\x69\xcf\xc9\x9f\x54\xf0\x30\x0b\x9e\x9a\xd3\x16\x54\xba\x03\xe7\x6b\x52\xfb\x9a\xd4\x3a\xb5\xd7\xa4\xf6\x8c\x4d\xbc\x26\xb5\xaf\x49\x6d\x5f\x7b\x4d\x6a\x5f\x93\xda\xf3\x00\xfe\xe9\x93\x5a\x97\x37\x08\x3a\xed\xed\xe8\xa6\x5d\x2f\x16\xf2\xdc\xee\x25\x5f\x2c\xf4\xa8\xd8\x60\x95\xea\x51\xa1\x2e\x8e\xf5\xa8\x48\x97\x4a\x74\x32\xa2\x7e\xd0\x7d\x08\xe2\xd5\x9b\xe4\x26\x32\x37\x5d\xa5\xea\x21\x1e\x73\x12\xa2\x78\xd6\xdb\x54\x37\x86\xe4\xf1\x69\x79\xfd\x32\xd5\x01\x7a\x4b\x22\xa2\x61\x01\x81\xab\xc5\x4d\x43\xf7\xef\xf3\x12\xd5\xd0\x6b\x48\x95\xb4\xac\xfc\x9e\xa2\x96\xdf\x97\xf2\x45\x49\xc3\x0e\x23\xda\xa0\x29\x31\x81\xb3\xb6\x41\x43\x5e\x79\x18\x7e\x1c\xae\xc4\x15\xb7\x5b\x09\xfc\x78\xf1\x15\xde\x99\x68\x31\x2b\x7a\x67\xb9\x29\x75\x95\x8f\x96\xbd\xa4\x2f\x7d\x79\x7d\xef\x3b\x04\xc0\xeb\xf5\x8b\x93\x21\xbf\x9b\x57\xcf\x03\x5f\xb7\x1e\xdc\xc0\xd5\xe2\x46\x82\xcc\xd2\x94\x0b\x85\x6d\x0c\x79\xf9\x97\xae\xcd\x97\x7e\xcb\xe6\x1a\x18\x9c\x01\x9d\x1c\x56\x15\x08\x8a\x1b\xc2\x36\x46\x75\x6e\xa7\x43\x3f\xfe\x6c\xf9\x41\x1e\xd1\x9f\x25\x3b\xc8\x3f\xb7\x38\xdd\xcb\x89\xcc\x8a\x0f\x33\x14\x11\x11\xaa\xc3\xa9\x54\xf3\xf5\x6e\xe8\xf5\xf7\xf9\x87\x71\x9a\xfe\x65\x4c\x64\x8b\x82\xd5\x0d\xa9\x9c\x02\xc8\x94\xd8\x83\xbd\xa2\xff\x2e\x21\x94\xbd\x07\xc5\x61\x85\x80\x8f\x18\x64\x6d\xd6\xd5\x23\xd9\xea\xb7\x29\x2d\x89\xc7\x00\xd3\x38\xca\x9b\x72\xd2\xfb\xe2\x48\x54\x28\x1a\x64\x31\x11\x87\x6b\x27\xbb\x0d\x0d\x36\x85\x50\xdb\x4f\x3d\x08\xec\x30\x8e\xe1\x81\xf1\x1d\x03\x89\x27\x87\x86\x2d\x13\x5d\xa2\xaf\xeb\xf1\xa5\xc3\x71\xcf\x4b\xe6\x1b\xe0\x9e\x73\xb8\xee\xdc\xb6\x21\x87\x39\x4f\x39\xc0\x19\x50\xc3\x3a\x57\xff\x67\xd7\xfd\x03\xc0\x38\xd7\xfa\x4f\xa8\xf2\x9d\xe1\xb8\x55\xf6\xce\x35\xbd\x5b\x35\xef\x58\xc7\xf7\x57\xf0\x7d\xe8\x27\x2e\x36\xdd\x8b\xa6\x26\x87\xdc\xcf\xc8\xea\x57\x2c\xf6\xcb\x35\xeb\xd9\x3b\x3c\x66\xeb\x12\xfd\x1e\xc3\xf9\x25\x87\xe2\x1a\x88\xbd\x91\x57\x3a\xfa\x46\x9a\x9d\xfe\xe7\xe5\x3c\x8f\x93\xcf\x71\xf1\x36\x6e\x7e\xe6\x3c\x0f\xe3\x64\x3f\x0e\x5e\xe5\x0c\x7f\xe2\xb4\xb4\x83\x0f\x39\xcb\x7b\x38\x2c\xde\x6f\x73\xbd\xbe\xa2\xcf\x4b\xf4\x5a\x64\xb7\x67\xe8\xce\xcc\x87\x24\x1f\x0e\xa7\x19\x15\x26\xe7\x69\x44\xb1\xfc\x39\x9e\xa0\xf8\x5e\xd7\xc1\x0b\xd8\xaf\xa0\x13\xf3\x2f\x18\x2a\x29\x5d\x41\x61\x0c\x14\xc7\xf9\xa0\x7f\x67\x44\x3c\x64\xcd\xfe\xaf\x67\x8b\x9d\x8a\xd6\x80\xa7\xed\xcb\xf0\x01\x8b\xb6\x2b\xd8\xe4\x24\xdf\x6d\x18\xd2\xe9\xf1\x27\xc7\x1f\x8b\x57\xbb\xda\x10\xb7\xca\xac\x19\x69\x69\x00\xf2\xe8\x79\x5e\x72\x1c\x3d\x6d\x0a\x1c\x6d\xdf\x8e\x2a\xa2\x32\xd9\xf3\xf5\x28\x09\x54\x46\xe2\xfe\x8f\x47\x1b\xd7\x38\x79\x28\x51\x6c\x31\x9c\x81\x12\x99\x85\x28\x15\x17\x24\xc2\xea\x93\x6c\x75\xf8\x64\xb9\xc0\x96\x23\x85\xff\xfe\xcf\xfb\x7f\x00\x00\x00\xff\xff\xce\x36\x74\xa7\xf2\x45\x00\x00"), }, "/crd/bases/camel.apache.org_integrationkits.yaml": &vfsgen۰CompressedFileInfo{ name: "camel.apache.org_integrationkits.yaml", modTime: time.Time{}, - uncompressedSize: 16165, + uncompressedSize: 18839, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5b\x4f\x73\xdb\xb8\x92\xbf\xeb\x53\x74\x8d\x0f\x49\xaa\x24\xfa\xcd\xee\xab\x57\x5b\xde\xda\x83\x9f\x27\x99\xe7\x4a\xe2\x64\x63\x67\xde\x4e\x55\x0e\x6e\x91\x2d\x0a\x23\x12\xe0\x00\xa0\x64\xed\xd6\x7e\xf7\xad\x6e\x80\x14\x25\x91\x94\xc6\x99\xec\x29\xbc\x24\x26\x81\x46\xff\xfd\x75\x37\x00\x5d\xc0\xec\xcf\x7b\x26\x17\xf0\x4e\xa5\xa4\x1d\x65\xe0\x0d\xf8\x25\xc1\x75\x85\xe9\x92\xe0\xde\x2c\xfc\x06\x2d\xc1\x1b\x53\xeb\x0c\xbd\x32\x1a\x5e\x5e\xdf\xbf\x79\x05\xb5\xce\xc8\x82\xd1\x04\xc6\x42\x69\x2c\x4d\x2e\x20\x35\xda\x5b\x35\xaf\xbd\xb1\x50\x04\x82\x80\xb9\x25\x2a\x49\x7b\x97\x00\xdc\x13\x09\xf5\xbb\x0f\x0f\xb7\x37\xaf\x61\xa1\x0a\x82\x4c\xb9\x30\x89\x32\xd8\x28\xbf\x9c\x5c\x80\x5f\x2a\x07\x1b\x63\x57\xb0\x30\x16\x30\xcb\x14\x2f\x8c\x05\x28\xbd\x30\xb6\x0c\x6c\x58\xca\xd1\x66\x4a\xe7\x90\x9a\x6a\x6b\x55\xbe\xf4\x60\x36\x9a\xac\x5b\xaa\x2a\x99\x5c\xc0\x03\x8b\x71\xff\xa6\xe1\xc4\x05\xb2\xb2\xa6\x37\xf0\xab\xa9\xa3\x0c\x1d\x71\xa3\x16\xa6\xf0\x0b\x59\xc7\x8b\xfc\x4b\xf2\x97\xc9\x05\xbc\xe4\x21\x3f\xc4\x8f\x3f\xbc\xfa\x77\xd8\x9a\x1a\x4a\xdc\x82\x36\x1e\x6a\x47\x1d\xca\xf4\x94\x52\xe5\x41\x69\x48\x4d\x59\x15\x0a\x75\x4a\x3b\xb1\xda\x15\x12\x10\x06\x98\x86\x99\x7b\x54\x1a\x50\xc4\x00\xb3\xe8\x0e\x03\xf4\x93\x8b\xc9\x05\xc8\xb3\xf4\xbe\xba\xba\xbc\xdc\x6c\x36\x09\x0a\xbb\x89\xb1\xf9\x65\x23\xdd\xe5\xbb\xdb\x9b\xd7\x77\xf7\xaf\x67\xc2\xf2\xe4\x02\x3e\xeb\x82\x9c\x03\x4b\xbf\xd7\xca\x52\x06\xf3\x2d\x60\x55\x15\x2a\xc5\x79\x41\x50\xe0\x86\x0d\x27\xd6\x11\xa3\x2b\x0d\x1b\xab\xbc\xd2\xf9\x14\x5c\xb4\xfa\xe4\x62\xcf\x3a\x3b\x75\x35\xec\x29\xb7\x37\xc0\x68\x40\x0d\x3f\x5c\xdf\xc3\xed\xfd\x0f\xf0\xf7\xeb\xfb\xdb\xfb\xe9\xe4\x02\xfe\x79\xfb\xf0\x8f\x0f\x9f\x1f\xe0\x9f\xd7\x9f\x3e\x5d\xdf\x3d\xdc\xbe\xbe\x87\x0f\x9f\xe0\xe6\xc3\xdd\x4f\xb7\x0f\xb7\x1f\xee\xee\xe1\xc3\x1b\xb8\xbe\xfb\x15\xde\xde\xde\xfd\x34\x05\x52\x7e\x49\x16\xe8\xa9\xb2\xcc\xbf\xb1\xa0\x58\x91\x94\xb1\x4d\x1b\x07\x6a\x18\x60\xff\xe0\xbf\x5d\x45\xa9\x5a\xa8\x14\x0a\xd4\x79\x8d\x39\x41\x6e\xd6\x64\x35\xbb\x47\x45\xb6\x54\x8e\xcd\xe9\x00\x75\x36\xb9\x80\x42\x95\xca\x8b\x17\xb9\x63\xa1\x78\x99\x3f\x33\xb6\x26\x58\xa9\xe8\x4e\x57\x80\x95\xa2\x27\x4f\x5a\xb8\x49\x56\xff\xe6\x12\x65\x2e\xd7\x3f\x4e\x56\x4a\x67\x57\x70\x53\x3b\x6f\xca\x4f\xe4\x4c\x6d\x53\xfa\x89\x16\x4a\x8b\xe7\x4f\x4a\xf2\x98\xa1\xc7\xab\x09\x00\x6a\x6d\x22\xf3\xfc\x27\x84\xa8\x33\x45\x41\x76\x96\x93\x4e\x56\xf5\x9c\xe6\xb5\x2a\x32\xb2\x42\xbc\x59\x7a\xfd\x97\xe4\x6f\xc9\x8f\x13\x80\xd4\x92\x4c\x7f\x50\x25\x39\x8f\x65\x75\x05\xba\x2e\x8a\x09\x40\x81\x73\x2a\x22\x55\xac\xaa\x2b\x48\xb1\xa4\x62\xb6\x9a\x00\x68\x2c\xe9\x0a\x94\xf6\x94\x5b\x99\xbd\x52\xde\x25\xf2\xbd\xe3\x8d\x13\xb6\x03\xcf\xcf\xad\xa9\x9b\xf9\xdd\xef\x81\x50\xc3\x38\x7a\xca\x8d\x55\xcd\xdf\x33\x58\xf1\xf8\xf8\xff\xb4\xfd\x7f\x50\xce\xed\x6e\xed\xb7\xca\xcb\x87\x42\x39\xff\xb6\xe7\xe3\x3b\xe5\xc2\x80\xaa\xa8\x2d\x16\x47\x7c\xcb\x37\xb7\x34\xd6\xdf\xed\xb8\x99\x81\x5a\x85\x0f\x4a\xe7\x75\x81\xf6\x70\xda\x04\xc0\xa5\xa6\xa2\x2b\x90\x59\x15\xa6\x94\x4d\x00\xa2\x82\x85\xca\xac\x03\x56\x1f\x2d\x4f\xb7\x37\xa6\xa8\x4b\xdd\xae\x91\x91\x4b\xad\xaa\xbc\x98\x84\x11\xaa\xb3\x06\xac\x94\x87\x6a\x89\x8e\x26\x21\xe2\x7f\x73\x46\x7f\x44\xbf\xbc\x82\xc4\x79\xf4\xb5\x4b\xba\x5f\x83\x49\x3e\x76\xde\xf8\x2d\x73\xc7\xf1\xa8\xf3\x73\xd7\xe3\x39\xc7\xcb\x35\x0e\x97\x04\x97\x08\x86\xfe\x12\x2d\xf9\x85\x4d\xf9\xe5\x72\xa5\xfc\x97\xa4\x33\x3d\xf0\xf3\xb0\x7b\xf1\x1c\x76\x54\x89\xf9\xb0\xf8\xdd\xaf\x61\xb9\xdb\xce\x9b\xa3\xf5\xc2\x90\xf5\x8f\xc1\xac\xe9\x92\x4a\xbc\x8a\x63\x4d\x45\xfa\xfa\xe3\xed\x2f\xff\x7a\xbf\xf7\x1a\xf6\x39\xdc\x77\x2b\xc8\x38\x22\xc9\x09\x56\x6b\x46\x6d\xb2\x81\x61\xc6\x95\x6e\x9e\x4a\x8d\x5e\xa8\xbc\x0e\x33\x5b\xd2\x00\x9a\x28\x0b\x70\x6b\x6b\xc1\xca\xc7\xce\x0a\x8f\x09\x5c\xef\xbf\x79\xab\xfc\x23\x63\x2c\x42\x4e\x9a\xac\x4a\xe3\x6a\xf2\x17\x16\xc5\xb6\x43\x9a\x43\xde\xc3\xc2\x9a\x52\xc0\x2c\xc2\xbe\x24\x5e\x4e\x2a\x87\x6b\x4d\x61\x5e\x7b\xc0\x5c\x1b\xe7\x55\x2a\x09\xc0\x4f\x41\x75\x99\x35\x56\x90\xd1\xc0\x9c\xc9\xd5\x2e\xe6\x10\xbd\x05\x23\x08\xbd\x47\x0f\x36\x4b\x95\x2e\x61\x89\x2e\xe0\x31\x96\x2d\x0f\x59\x87\xa6\x23\xcf\xdc\xa4\x58\xe1\x5c\x15\xca\x2b\x72\xfd\x52\x73\x66\x9c\x13\xc8\xaa\x0c\xf2\x61\x49\x0e\x5e\x40\x07\xd8\x15\x1c\x1d\x75\xec\x51\xe0\x96\xec\x14\x36\x4b\xd2\xc2\xc9\xa3\xd2\x69\xd0\x03\x16\x8f\xa2\xa5\x0c\x8c\x98\x97\x35\x4b\x9a\xb3\x61\x96\xb4\xf4\x2a\x6b\x2a\xb2\xbe\xc5\xa4\xf0\x74\x20\xbc\xf3\xf6\xc0\x59\x5e\xb0\x3f\xc5\xba\xa1\xf1\x14\xe6\x20\x02\x04\x65\xd1\x05\x43\x8e\x57\x9c\x9a\x39\xc5\x31\x67\x07\x6e\x22\xda\x17\x9b\x99\xf9\x6f\x94\xfa\x04\xee\xc9\x32\x19\x06\xad\xba\xc8\x58\xdc\x35\x59\x0f\x96\x52\x93\x6b\xf5\xdf\x2d\x6d\xd7\xd4\x6f\x05\x7a\x8a\x20\xb8\x7b\x04\x90\xd8\x3f\xd7\x58\xd4\x34\x15\xaf\x65\x45\x5b\xe2\x55\xa0\xd6\x1d\x7a\x32\xc4\x25\xf0\xde\x58\x92\xba\xeb\x4a\x0a\x10\x77\x75\x79\x99\x2b\xdf\xa4\xae\xd4\x94\x65\xad\x95\xdf\x5e\x76\x6a\x3f\x77\x99\xd1\x9a\x8a\x4b\xa7\xf2\x19\xda\x74\xa9\x3c\xa5\xbe\xb6\x74\x89\x95\x9a\x09\xeb\x5a\xd2\x57\x52\x66\x17\x36\x26\x3b\xf7\x62\x8f\xd7\xa3\x50\x0e\x8f\x64\x82\x11\x0b\x70\x32\x08\x01\x13\xa6\x06\x29\x76\x8a\xe6\x57\xac\x9d\x4f\xaf\xef\x1f\xa0\x59\x5a\x8c\x71\xa8\x7d\xd1\xfb\x6e\xa2\xdb\x99\x80\x15\xa6\xf4\x42\x8a\x06\xae\xfa\x9a\x88\x23\x9d\x55\x46\x69\x2f\x7f\xa4\x85\x22\x7d\xa8\x7e\x57\xcf\x4b\x76\x60\x8e\x0b\x72\x9e\x6d\x95\xc0\x8d\xe4\x73\xf1\xf5\x2a\x43\x4f\x59\x02\xb7\x1a\x6e\x18\x6f\x6f\x90\x0b\xc5\x6f\x6c\x00\xd6\xb4\x9b\xb1\x62\xcf\x33\x41\xb7\x14\x39\x1c\x1c\xb4\xd6\x0d\xf7\x58\x0e\x0c\xd8\x8b\x35\x95\x91\x93\xf2\x74\x08\x32\x87\x42\x12\x42\xe5\xb3\x9b\x73\xf8\xf1\xd0\x37\x7e\x62\x5b\x72\xc9\x91\x5d\xc1\x67\x86\x0c\x56\x31\x78\x8b\xca\xc3\xcb\x50\xa8\xec\x56\x7a\xc5\x71\x54\xa2\xde\x25\x97\x7e\x8e\x84\x52\x69\x6a\x36\x7b\xa0\x24\x7f\x24\x81\xb3\x2e\x99\xc8\xac\xcc\xe8\x21\xd9\x43\xa3\x0d\x8d\x2e\x95\xf6\xe5\xe1\xca\x3d\x34\x23\x9d\x35\x57\x20\xfb\x54\xe2\xab\x7d\x05\x42\x03\xf1\x6c\x96\x95\xf2\x2f\x8e\x48\x2a\x4f\xe5\x91\x11\x8e\x34\x7d\xd3\x25\x7a\x5f\x51\xda\x09\xa3\x4e\x2a\x1b\x36\x78\xf3\x34\x45\xfd\xd0\x88\x61\xc7\x08\x8f\x38\x65\xef\x97\x43\xdf\xe8\x30\xc8\xc2\xf3\x44\x49\x53\x5d\x16\xa7\xa0\xe8\xaa\x59\x73\x3b\x1d\xa0\xdb\x38\x65\x89\xd5\x14\x1c\xa5\x96\xfc\x14\x92\x24\x39\x56\x66\x87\xc7\xe3\x28\xdb\x3d\x82\x60\x67\x49\x21\xb9\x46\xf0\xce\x1b\x40\xe7\x54\xae\x9b\x6c\xb0\x6f\xe7\x97\x6e\xab\x3d\x3e\x0d\x4a\xc0\x08\xb7\x46\xbb\x85\x8c\x2a\xd2\xd2\x62\x9b\x98\x4c\xb9\xba\x7b\x7c\xf5\x3c\x59\x9a\x72\xa0\x4f\x98\x59\xb7\x0e\xdd\xff\x20\x22\xf5\x7c\x19\x80\x9c\xee\x47\xb4\x16\xb7\x93\x43\x95\xb1\x4c\xa4\xd3\x5e\xb7\xd9\x53\x28\x4a\x83\xc1\x8e\x20\x70\xdc\x4c\xe5\x99\x9d\x58\x51\x0e\x56\x3d\xe1\x37\x18\x2b\xa3\x5a\x1a\xe6\x5b\x2a\xbf\x13\x0c\x47\x53\xef\x57\xa6\x0e\x54\xc6\x78\xbf\x50\x94\x71\x97\xbf\x3f\xc8\x52\xce\x0d\xfc\xe1\x6a\xa3\x6c\x56\xd6\x2c\x54\x71\x0e\x33\x71\x64\x2c\x0e\xb9\xde\x7a\xaa\x28\xf5\x27\x54\x37\xb2\xb4\xa5\xca\x38\xe5\x3b\x4d\xe3\xe0\xfa\xef\x71\x4d\x7a\x6f\x02\xf8\x25\x7a\x48\x51\xb7\x95\xe5\x0e\xec\xbe\xb9\xfd\x04\xa4\x4f\xf1\x1c\x06\x05\x3e\x23\x63\xb0\x51\x45\x01\xf4\x44\x69\xed\x8f\xc3\x60\x1c\x02\x31\xcb\xda\x5d\x82\x9e\x6f\x6d\xa3\x3a\x0e\xa3\x07\x3c\x5e\x33\xd1\x07\x49\x54\x07\xb0\xb9\x8f\x32\xa1\x80\x15\x16\x06\x91\x66\x28\x73\xc1\xa9\xf8\x0e\xcf\xd3\x6c\x55\xcf\xc9\x6a\xf2\xe4\x66\xc2\x8a\x5d\xd3\xac\xd6\x2b\x6d\x36\x7a\xb6\x50\x54\x64\x8e\x95\xda\x8b\x1f\x70\xdc\x8c\xa6\xa6\x28\x28\x6d\xb9\x67\xd6\x63\x4a\xde\x13\xed\xb0\x58\x3c\x8b\xdf\xb8\x25\xd3\xaf\xe2\x23\x4e\xe2\xe8\xb8\xba\x72\x6d\xe9\x5e\x6c\x83\xe7\x7a\x03\x19\x79\xb2\xa5\xd2\xfd\xc2\x81\x98\x64\x4e\xce\xb3\xaf\xa2\xa7\x7c\x2b\xbd\x9c\x34\x40\x5c\xf8\x37\x22\xd1\x41\x97\xeb\x92\x5e\x7a\xa7\x92\xed\xc9\x6a\xac\x57\xd6\x17\xef\x28\xc7\x74\xdb\xa7\x65\xa8\xd0\x62\xc9\x32\xba\x04\x3a\xc5\xdb\x20\x61\x90\x46\x71\x8e\xe9\x6a\x83\x36\x93\xfd\x57\xf4\x4a\xda\xcc\xed\x60\xfe\x3d\xcb\xcf\xbe\xda\xd3\xa0\x69\x34\xcf\x54\xcb\x4d\x07\xa3\xbc\x89\x93\xc1\x58\xc8\x94\x93\xff\x62\xd0\x58\x02\xd7\x45\x31\xa2\x90\x88\x27\x6e\x89\x36\x6e\x52\x73\xbf\xc0\xba\x8d\x65\x4c\xbf\xad\x77\x6a\x99\x1b\x53\x10\x0e\x05\xf0\x69\x9f\x38\xc4\x8e\x36\xa3\x76\x4a\xe8\xb0\xc3\x50\x59\xb3\x56\xd9\xee\x00\x42\x1c\x75\x4c\x34\x74\xab\xc1\xcf\x83\xe0\xbd\x2f\xdd\x48\xd9\x05\xa3\x60\xde\x3c\x6b\xb2\x73\xe3\x06\xcb\xb3\x03\xe9\x5f\x07\x33\xc6\x49\x50\x98\x3c\x8f\xb5\x55\x88\x4a\xf6\x58\xa3\x23\x9c\xe2\xb0\x33\x72\x27\x59\x55\xc6\x7a\xe0\x66\x81\x92\x3c\x81\xb7\xa8\xd5\xaa\x89\xee\xca\x64\xaf\xbe\xc6\xb0\x27\x22\x42\x7a\xa5\x33\x71\xec\xa6\xd3\x64\x39\xf2\x0e\xea\x2a\xbe\xdb\x8b\xf5\xef\x90\x73\xfc\x7c\x87\x9c\xbe\xe7\x5b\x42\x4e\x27\x0f\x8e\x08\x68\x6b\xed\x55\x39\xa4\xf4\xff\x3f\xec\x89\x7c\xf4\xee\x4b\x0e\x6a\x43\xaa\x9c\x70\xa8\x33\x8b\x04\x9a\xfd\x49\xd6\x42\xdd\x39\x52\xeb\xec\xcc\x0f\x9b\x0c\xe0\xd6\x83\x59\x93\xb5\x2a\x8b\xdb\x9d\x19\x2d\xb0\x2e\x7c\x4b\xd6\x91\x6f\xda\x8e\xf3\x14\xfc\xb1\x40\xbf\x30\xb6\x3c\xe5\x28\x23\x1a\x3c\x11\x60\xbf\xd7\x68\x57\xf5\x80\x91\xf6\xc1\x82\x15\xf6\x9f\x61\xf8\x01\x62\x44\x71\x9b\x8f\x51\x9b\x43\x4c\xdf\xfa\x17\x2f\xda\xed\x66\xee\x3b\xa2\x9a\x12\xb8\xfb\xf0\xf0\xfa\x0a\x6e\x4c\x59\xa9\x42\xf6\x27\x0d\x20\x68\xf4\x6a\x4d\xb1\xec\xe7\x39\x43\xfb\x0d\x2a\xa1\x24\x6c\x76\xd7\x8e\x67\x3f\x56\x98\xae\x30\xa7\x19\xab\xe0\x3f\x02\x99\xc7\x29\x57\x90\x46\x17\xdb\x26\x71\x84\x4d\xf5\x01\x92\x72\x08\x47\xde\x4d\xb9\x77\xdc\x50\x51\xf0\xbf\xbf\x5e\xbf\x7f\x27\x65\xe3\x7f\xbd\x7f\xd7\x75\x0d\x97\xb0\x07\x60\xe1\x4c\xd3\xdf\xf7\x57\xc7\x00\xe8\xa1\x20\x74\x1e\xfe\xfa\xb3\xfa\x3b\xc7\x63\x49\xa5\xb1\xdb\x29\xb8\x10\x7d\x1f\x4d\xc6\x4a\xd4\xcd\x1e\x6d\x54\x81\xa4\xb4\x21\xe9\xa5\x51\xe2\xb6\x32\x9c\x19\xf3\x34\x8e\x71\xf4\xc6\x32\xbd\x29\x44\x5f\x0e\x79\x91\x57\x78\xd9\xee\x69\x0c\x90\x8c\x3b\x1d\x61\x46\x5b\x39\xb7\x46\xcf\xda\xf8\xa8\xa2\x9b\xbe\x9a\x42\x59\x3b\x0f\x4b\x5c\x0f\x23\xb1\xa9\xf3\x65\x14\x18\x70\x8d\xaa\x60\x9b\x0e\x64\x88\xef\x69\xef\x7b\xda\x3b\x7c\x62\x54\x3f\x6c\xab\xb3\x13\x5f\x17\xb9\xe2\x74\x59\xca\xb5\x57\x2c\x1e\x17\xe8\xfc\xec\x37\xb4\x8f\x23\x82\x19\x0b\x8f\x11\x46\x38\x78\x02\xb6\xef\x66\xbe\x92\xe3\x8a\x14\x1d\xc1\xdc\xf8\xe5\x79\x34\x19\x47\x5a\xa2\xac\xb0\xb8\xd3\x4b\xd9\x14\xfc\xc6\x1c\x9f\x06\xb6\xbb\xde\x63\x44\x2d\x85\xab\x0d\x4c\x65\xa3\xfc\x32\xec\x58\x36\xcb\xac\x94\x84\xa8\x5c\x08\xb1\x94\x52\x46\x3a\x25\x49\x5d\x63\x56\x65\x0a\xad\x44\xe1\xb6\x13\x4f\xb3\x84\xd9\x36\x11\x15\x87\x53\x52\xa5\x17\x45\xcd\x14\x25\x29\x8c\x55\x0f\xe4\x4c\x51\x37\x5b\x0c\xb2\x6b\x52\x5b\x4b\xda\x0b\x83\x7d\xb9\x57\x56\xe9\xdb\xa1\xda\x3d\xa9\xb1\x96\x5c\x65\xc2\x5e\x6d\xac\x66\x16\xca\x3a\xbf\x67\xf9\xb0\x95\x34\xa7\xb8\x39\x4c\xa3\xed\x95\x39\x64\x44\xee\x34\xb1\x9d\xb5\x01\x7a\x52\x4e\x0e\xd3\xe4\x06\x01\x83\x70\x89\x3e\x5d\x8e\xda\xe7\x90\x9c\xd0\x18\xd8\x6c\x80\x73\xea\xa8\x3d\x6f\xef\xf3\xf4\xb1\xb2\x85\x74\x5d\x8e\x11\x9f\x41\x63\xf6\xd1\x41\xc1\xbb\xbe\x75\xb1\x77\x02\x38\x9b\x3d\xdc\x33\x7b\xb2\x4f\x71\xf8\x41\x5b\x16\xf6\x4b\x63\x11\x28\xd5\x5a\xd9\x7f\xfa\xd5\x5d\x52\x0e\xe3\x0f\xb7\x5a\x07\xb0\xee\x7b\x5e\xfb\x9e\xd7\xfe\x80\xe2\x06\x3f\x0e\x9d\x35\xcb\x15\xa1\x13\xa7\xcd\x98\xfa\x1a\x8b\x38\x76\x6f\xe8\xb0\x77\xa2\xf5\x6a\x81\xe9\xc9\xcd\xfb\xa6\xcf\x6c\xc7\x3f\xff\x8c\x61\xbf\x83\x8d\xf4\xf6\x8f\x51\x4b\xf4\x64\x15\x16\x72\x59\xa3\x59\x12\x5e\x22\x0c\x41\x56\x7b\xf0\xb5\x95\x3b\x95\xba\xb9\x45\x04\x18\x6e\xae\x76\x99\x95\xea\xb7\xef\x98\xef\x54\x0c\xa7\x4b\x4a\x57\x6e\x18\x5a\x0f\xce\xd7\x9a\xe1\xf0\xf2\xfe\x1f\xd7\x3f\xbe\x6a\x53\xa2\xd1\xfe\xf8\xfa\x44\xf3\x9c\x84\x54\x35\x18\x24\x47\xfe\xd0\x1c\x8d\xa5\xf1\x64\xf4\xe7\xeb\x5f\x04\x03\x4a\x41\xb4\xee\x59\xe1\xa0\x9b\x1b\x1b\xf4\xa7\xb1\xa4\xce\x55\xa5\x70\xcf\x98\xeb\xad\x67\x1e\x97\x02\x14\x26\x1d\x45\xc2\x3d\x69\x36\x4b\xb2\x04\xe1\xb0\x40\x26\xee\x4e\xfb\x9a\xc3\x84\xc7\x8f\x26\x1b\x2a\xcb\x4e\xb7\xd4\x68\x73\xf2\x67\x2b\xb6\x3d\xe8\x6b\x84\x68\x98\x19\xdf\x3e\xf9\xaa\x23\x64\xd5\x57\xd0\x3c\xf3\x98\x78\x8e\x8e\x6e\xcf\x38\x72\x95\xdb\x67\xe1\xa4\xf5\x54\xb4\x8f\xc8\x96\x72\xe9\xd6\xb9\xd2\x3b\xb8\xdc\xee\x48\x7a\x37\xa5\xbd\x7a\x57\x55\xa4\x3b\x0d\x2a\xad\x05\x2a\x2c\x15\xec\x0c\x7d\xaa\xf9\x2a\x58\xda\xaf\xd1\x6f\x1a\x76\xe2\xa0\x79\xdc\x1e\x61\xa4\x95\xbb\x14\xd8\x16\xf1\xbd\xa6\x47\xcf\x70\x40\x56\xee\xc2\xcb\x3d\xaa\xbe\xc4\x72\x0a\x7e\x0a\x74\xfe\xc1\xa2\x76\xaa\xb9\xe0\x7c\x96\xc3\xbe\x43\xe7\x41\xf6\xc2\x22\xfa\x44\x51\x7c\x4b\x8a\xd5\x6a\x4d\x29\x1d\x40\x4f\xf2\xd8\xd3\xaa\x01\xd4\x82\x01\x43\xa9\x31\xfc\x86\xe1\x0a\x32\xf4\x34\x7b\x7e\x30\x04\x71\x3f\xcb\xad\xb1\xb3\x45\x7d\x90\xbb\x81\x3b\x71\x25\xa1\x37\xf2\x6e\xd0\xb5\xb7\xd0\xbe\x35\xef\x25\x39\xd7\x1b\x5e\x3d\x4c\x5f\xc3\xb2\x2e\x51\xcf\xb8\xed\x92\xe2\x25\x4e\x06\xa5\x33\x81\x6e\x9d\x43\x46\x1e\x55\xe1\x00\xe7\xa6\x1e\xae\xc2\xe4\x76\x4f\x6b\xd5\x21\x21\x4f\x32\x6f\x09\xdd\x99\xb8\xfc\x20\x97\x71\x79\x78\x1b\x98\xad\xc2\x5f\xb8\x68\x8b\xaf\xe7\xa8\xaf\xfa\x19\xe0\xe8\x5e\x86\x76\x72\x6d\x60\x66\x1a\xda\xdb\x05\x3c\xd8\x9a\xa6\xf0\x06\x0b\x47\x53\xf8\x1c\x0a\xd4\x67\xf3\x75\xf6\x1d\xac\x87\x78\xe7\xaa\xdb\x22\xb6\xbc\x3d\x73\xf9\xf1\x74\x31\x18\xc7\x83\x97\x91\x9e\x7b\xe5\x48\xe5\xe4\x7a\x52\xe7\x3e\xb2\x87\xca\x34\xa4\x92\x30\xa3\x31\xd1\x1f\x4c\x26\x0b\x54\x45\x6d\x4f\x25\xae\x38\xaa\xf1\xcd\x97\x6a\x01\xa8\xb7\xc7\xb5\xca\x38\xe4\x8e\x05\xc2\x41\xe2\x92\xdf\x5b\x80\xa7\x27\x1f\xb7\x7b\xb6\xcd\x4e\x6f\x20\x32\xd2\x21\x8c\x18\x38\x35\x6b\x3a\xab\xf3\x0d\x0b\x85\xe1\x80\xde\x53\x59\xf9\x36\x59\x2a\xd7\xe8\xe3\x99\x9d\x6b\x24\x78\x66\x73\x16\x47\x83\xae\xcb\xf9\xc8\xfe\x53\x10\x5e\x02\x62\x70\x54\x24\xf5\x1e\x9f\xce\x5c\xbb\xc4\x27\x55\xd6\x65\x5c\x5b\x32\x73\x20\x31\x92\xd1\xce\xe7\x63\x2c\x0f\x1d\x1a\x84\x13\x50\xf4\xf0\x46\x21\xe1\xbc\x63\xec\x78\xe8\xdc\xfc\x73\x16\x88\x0f\xa3\x83\xfc\x94\x27\x30\x35\xfe\xf5\xfd\xc0\x3d\xca\x13\x7b\x02\x7e\x50\x4f\x47\x4e\x2b\x7a\x6a\x7f\xce\xd0\x84\xed\x12\x5d\x5b\xf1\xf5\xd2\x39\x4f\x51\xa3\x4a\x1a\x56\xd0\x6c\x28\x66\x67\x6d\x8c\xf5\x7c\xea\xe5\x62\x44\x51\xe7\x5c\x79\xdc\x83\x4d\x69\xc1\x9e\x07\x9a\x66\x2e\x1b\x32\xd9\xcf\xd2\x14\x9f\x71\x9f\xfc\xc3\xd1\x04\xee\xbc\x78\xe5\xd2\x38\xf9\x65\x06\x69\x1f\x7b\xec\xb0\xdd\x1b\x27\xf4\xd8\xa1\x05\xa1\xfd\x9a\xfa\x38\xeb\x35\x46\x55\xda\xff\xed\xaf\x03\xe2\xf5\xc7\xa9\xfc\x70\xec\x84\x48\x32\xe6\x99\xfa\x6b\x4e\xc3\xce\xb9\x14\x1a\x87\x8a\xd8\xa1\x77\x69\xae\x82\x4a\x05\xba\x3b\x6b\xfb\x23\x0c\xc4\xbe\xf2\x63\x38\xd3\xef\xb9\x67\x77\x9c\x0d\xe2\xf9\x77\xbc\x06\x60\xbf\x09\x3f\x83\xc7\xf3\x83\xec\x34\xe7\xe6\x7f\x2a\x37\xeb\xb3\xd9\x08\xb7\x73\xde\xee\xce\x51\xbf\x01\x3f\xbd\x31\x7f\xf4\x32\x84\x4b\x67\x4f\xd4\x79\x63\x19\x11\x3a\x6f\xea\x79\x7b\x34\xd4\xc8\x16\x2b\x61\xf8\x9f\xff\x9d\xfc\x5f\x00\x00\x00\xff\xff\x57\x05\xdb\x51\x25\x3f\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x3c\x4d\x73\xdb\xb8\x92\x77\xfd\x8a\xae\xf8\x10\xbb\x4a\xa2\xdf\xec\xbe\x9a\xda\xf2\xd6\x1e\xfc\x9c\x64\x9e\x2b\x8e\x93\x8d\x9c\x79\x3b\x55\x73\x70\x8b\x6c\x49\x18\x91\x00\x1f\x00\x4a\xd6\x6e\xed\x7f\xdf\x42\x03\xa0\x28\x89\xa4\x18\x7b\xbc\xa7\xf0\x32\xb1\x08\x34\xfa\xfb\x03\xdd\x9c\x33\x98\xfc\x79\xcf\xe8\x0c\xee\x44\x4a\xd2\x50\x06\x56\x81\x5d\x12\x5c\x97\x98\x2e\x09\xa6\x6a\x6e\x37\xa8\x09\x3e\xa8\x4a\x66\x68\x85\x92\x70\x7e\x3d\xfd\x70\x01\x95\xcc\x48\x83\x92\x04\x4a\x43\xa1\x34\x8d\xce\x20\x55\xd2\x6a\x31\xab\xac\xd2\x90\x7b\x80\x80\x0b\x4d\x54\x90\xb4\x26\x01\x98\x12\x31\xf4\xfb\xcf\x0f\xb7\x37\xef\x61\x2e\x72\x82\x4c\x18\xbf\x89\x32\xd8\x08\xbb\x1c\x9d\x81\x5d\x0a\x03\x1b\xa5\x57\x30\x57\x1a\x30\xcb\x84\x3b\x18\x73\x10\x72\xae\x74\xe1\xd1\xd0\xb4\x40\x9d\x09\xb9\x80\x54\x95\x5b\x2d\x16\x4b\x0b\x6a\x23\x49\x9b\xa5\x28\x93\xd1\x19\x3c\x38\x32\xa6\x1f\x22\x26\xc6\x83\xe5\x33\xad\x82\xdf\x54\x15\x68\x68\x90\x1b\xb8\x30\x86\x5f\x49\x1b\x77\xc8\xbf\x24\x7f\x19\x9d\xc1\xb9\x5b\xf2\x26\xbc\x7c\x73\xf1\xef\xb0\x55\x15\x14\xb8\x05\xa9\x2c\x54\x86\x1a\x90\xe9\x29\xa5\xd2\x82\x90\x90\xaa\xa2\xcc\x05\xca\x94\x76\x64\xd5\x27\x24\xc0\x08\x38\x18\x6a\x66\x51\x48\x40\x26\x03\xd4\xbc\xb9\x0c\xd0\x8e\xce\x46\x67\xc0\xcf\xd2\xda\xf2\xea\xf2\x72\xb3\xd9\x24\xc8\xe8\x26\x4a\x2f\x2e\x23\x75\x97\x77\xb7\x37\xef\xef\xa7\xef\x27\x8c\xf2\xe8\x0c\xbe\xc9\x9c\x8c\x01\x4d\xff\xac\x84\xa6\x0c\x66\x5b\xc0\xb2\xcc\x45\x8a\xb3\x9c\x20\xc7\x8d\x13\x1c\x4b\x87\x85\x2e\x24\x6c\xb4\xb0\x42\x2e\xc6\x60\x82\xd4\x47\x67\x7b\xd2\xd9\xb1\x2b\xa2\x27\xcc\xde\x02\x25\x01\x25\xbc\xb9\x9e\xc2\xed\xf4\x0d\xfc\xed\x7a\x7a\x3b\x1d\x8f\xce\xe0\x1f\xb7\x0f\x7f\xff\xfc\xed\x01\xfe\x71\xfd\xf5\xeb\xf5\xfd\xc3\xed\xfb\x29\x7c\xfe\x0a\x37\x9f\xef\xdf\xdd\x3e\xdc\x7e\xbe\x9f\xc2\xe7\x0f\x70\x7d\xff\x1b\x7c\xbc\xbd\x7f\x37\x06\x12\x76\x49\x1a\xe8\xa9\xd4\x0e\x7f\xa5\x41\x38\x46\x52\xe6\x64\x1a\x15\x28\x22\xe0\xf4\xc3\xfd\x6d\x4a\x4a\xc5\x5c\xa4\x90\xa3\x5c\x54\xb8\x20\x58\xa8\x35\x69\xe9\xd4\xa3\x24\x5d\x08\xe3\xc4\x69\x00\x65\x36\x3a\x83\x5c\x14\xc2\xb2\x16\x99\x63\xa2\xdc\x31\x7f\xa6\x6d\x8d\xb0\x14\x41\x9d\xae\x00\x4b\x41\x4f\x96\x24\x63\x93\xac\xfe\xcd\x24\x42\x5d\xae\x7f\x1a\xad\x84\xcc\xae\xe0\xa6\x32\x56\x15\x5f\xc9\xa8\x4a\xa7\xf4\x8e\xe6\x42\xb2\xe6\x8f\x0a\xb2\x98\xa1\xc5\xab\x11\x00\x4a\xa9\x02\xf2\xee\x4f\xf0\x56\xa7\xf2\x9c\xf4\x64\x41\x32\x59\x55\x33\x9a\x55\x22\xcf\x48\x33\xf0\x78\xf4\xfa\x2f\xc9\xcf\xc9\x4f\x23\x80\x54\x13\x6f\x7f\x10\x05\x19\x8b\x45\x79\x05\xb2\xca\xf3\x11\x40\x8e\x33\xca\x03\x54\x2c\xcb\x2b\x48\xb1\xa0\x7c\xb2\x1a\x01\x48\x2c\xe8\x0a\x84\xb4\xb4\xd0\xbc\x7b\x25\xac\x49\xf8\x7d\x43\x1b\x47\x4e\x0e\x6e\xff\x42\xab\x2a\xee\x6f\xbe\xf7\x80\x22\xe2\x68\x69\xa1\xb4\x88\x7f\x4f\x60\xe5\xd6\x87\x7f\xa7\xf5\xbf\x3d\x73\x6e\x77\x67\x7f\x14\x96\x5f\xe4\xc2\xd8\x8f\x2d\x2f\xef\x84\xf1\x0b\xca\xbc\xd2\x98\x1f\xe1\xcd\xef\xcc\x52\x69\x7b\xbf\xc3\x66\x02\x62\xe5\x5f\x08\xb9\xa8\x72\xd4\x87\xdb\x46\x00\x26\x55\x25\x5d\x01\xef\x2a\x31\xa5\x6c\x04\x10\x18\xcc\x50\x26\x0d\x67\xf5\x45\xbb\xed\xfa\x46\xe5\x55\x21\xeb\x33\x32\x32\xa9\x16\xa5\x65\x91\x38\x0f\xd5\x38\x03\x56\xc2\x42\xb9\x44\x43\x23\x6f\xf1\x7f\x18\x25\xbf\xa0\x5d\x5e\x41\x62\x2c\xda\xca\x24\xcd\xb7\x5e\x24\x5f\x1a\xbf\xd8\xad\xc3\xce\xd9\xa3\x5c\x0c\x3d\xcf\xed\x39\x3e\x2e\x2a\x5c\xe2\x55\xc2\x0b\xfa\xf7\x20\xc9\xdf\x9d\x28\x7f\xbf\x5c\x09\xfb\x7b\xd2\xd8\xee\xf1\x79\xd8\xfd\xf0\x1c\x74\x44\x81\x8b\x6e\xf2\x9b\x6f\xfd\x71\xb7\x8d\x5f\x8e\xce\xf3\x4b\xd6\x3f\x79\xb1\xa6\x4b\x2a\xf0\x2a\xac\x55\x25\xc9\xeb\x2f\xb7\xbf\xfe\xeb\x74\xef\x67\xd8\xc7\x70\x5f\xad\x20\x73\x16\x49\x86\x7d\xb5\x74\x5e\x9b\xb4\x47\xd8\xf9\x95\x66\x9c\x4a\x95\x9c\x8b\x45\xe5\x77\xd6\xa0\x01\x24\x51\xe6\xdd\xad\xae\xd8\x57\x3e\x36\x4e\x78\x4c\xe0\x7a\xff\x97\x8f\xc2\x3e\x3a\x1f\x8b\xb0\x20\x49\x5a\xa4\xe1\x34\xfe\x0b\xf3\x7c\xdb\x00\xed\x4c\xde\xc2\x5c\xab\x82\x9d\x59\x70\xfb\x1c\x78\x5d\x50\x39\x3c\x6b\x0c\xb3\xca\x02\x2e\xa4\x32\x56\xa4\x1c\x00\xec\x18\x44\x13\x59\xa5\xd9\x33\x2a\x98\x39\x70\x95\x09\x31\x44\x6e\x41\xb1\x87\xde\x83\x07\x9b\xa5\x48\x97\xb0\x44\xe3\xfd\x31\x16\x35\x0e\x59\x03\xa6\x21\xeb\xb0\x49\xb1\xc4\x99\xc8\x85\x15\x64\xda\xa9\x76\x91\x71\x46\xc0\xa7\x3a\x27\xef\x8f\x74\xc6\x0b\x68\x00\x9b\x84\xa3\xa1\x86\x3c\x72\xdc\x92\x1e\xc3\x66\x49\x92\x31\x79\x14\x32\xf5\x7c\xc0\xfc\x91\xb9\x94\x81\x62\xf1\x3a\xce\x92\x74\xd1\x30\x4b\x6a\x78\xa5\x56\x25\x69\x5b\xfb\x24\xff\x34\x5c\x78\xe3\xd7\x03\x65\x79\xeb\xf4\x29\xe4\x0d\x51\x53\x1c\x06\xc1\x41\x50\x16\x54\xd0\xc7\x78\xe1\x42\xb3\x0b\x71\x0e\xb3\x03\x35\x61\xee\xb3\xcc\xd4\xec\x0f\x4a\x6d\x02\x53\xd2\x0e\x8c\x73\x5a\x55\x9e\x39\x72\xd7\xa4\x2d\x68\x4a\xd5\x42\x8a\xff\xae\x61\x9b\x98\xbf\xe5\x68\x29\x38\xc1\xdd\xc3\x0e\xc9\xe9\xe7\x1a\xf3\x8a\xc6\xac\xb5\x8e\xd1\x9a\xdc\x29\x50\xc9\x06\x3c\x5e\x62\x12\xf8\xa4\x34\x71\xde\x75\xc5\x09\x88\xb9\xba\xbc\x5c\x08\x1b\x43\x57\xaa\x8a\xa2\x92\xc2\x6e\x2f\x1b\xb9\x9f\xb9\xcc\x68\x4d\xf9\xa5\x11\x8b\x09\xea\x74\x29\x2c\xa5\xb6\xd2\x74\x89\xa5\x98\x30\xea\x92\xc3\x57\x52\x64\x67\x3a\x04\x3b\xf3\x76\x0f\xd7\x23\x53\xf6\x0f\x47\x82\x1e\x09\xb8\x60\xe0\x0d\xc6\x6f\xf5\x54\xec\x18\xed\x7e\x72\xdc\xf9\xfa\x7e\xfa\x00\xf1\x68\x16\xc6\x21\xf7\x99\xef\xbb\x8d\x66\x27\x02\xc7\x30\x21\xe7\x9c\x34\xb8\xac\x2f\x5a\x1c\xc9\xac\x54\x42\x5a\xfe\x23\xcd\x05\xc9\x43\xf6\x9b\x6a\x56\x38\x05\x76\x76\x41\xc6\x3a\x59\x25\x70\xc3\xf1\x9c\x75\xbd\xcc\xd0\x52\x96\xc0\xad\x84\x1b\xe7\x6f\x6f\xd0\x25\x8a\xaf\x2c\x00\xc7\x69\x33\x71\x8c\x1d\x26\x82\x66\x2a\x72\xb8\xd8\x73\xad\x69\xee\x21\x1d\xe8\x90\x97\xe3\x54\x46\x86\xd3\xd3\x2e\x97\xd9\x65\x92\xe0\x33\x9f\xdd\x9e\xc3\x97\x87\xba\xf1\xce\xc9\xd2\xa5\x1c\xd9\x15\x7c\x73\x2e\xc3\xb1\x18\xac\x46\x61\xe1\xdc\x27\x2a\xbb\x93\x2e\x9c\x1d\x15\x28\x77\xc1\xa5\x1d\x23\x86\x54\xa8\xca\x89\xdd\x43\xe2\x3f\x12\x8f\x59\x13\x4c\x40\x96\x77\xb4\x80\x6c\x81\x51\x9b\x46\x13\x4a\xfd\xe3\xe1\xc9\x2d\x30\x03\x9c\xb5\xcb\x40\xf6\xa1\x84\x9f\xf6\x19\x08\xd1\xc5\x3b\xb1\xac\x84\x7d\x7b\x04\x52\x58\x2a\x8e\x84\x70\xc4\xe9\x9b\x26\xd0\x69\x49\x69\xc3\x8c\x1a\xa1\xac\x5b\xe0\xf1\x89\x49\x7d\xd7\x8a\x6e\xc5\xf0\x0f\x2b\x65\xeb\x9b\x43\xdd\x68\x20\xe8\x88\x77\x1b\x39\x4c\x35\x51\x1c\x83\xa0\xab\x78\xe6\x76\xdc\x01\x37\x2a\x65\x81\xe5\x18\x0c\xa5\x9a\xec\x18\x92\x24\x39\x66\x66\x03\xc7\x63\x2b\xdb\x3d\xec\xc1\x06\x51\xc1\xb1\x86\xfd\x9d\x55\x80\xc6\x88\x85\x8c\xd1\x60\x5f\xce\xe7\x66\x2b\x2d\x3e\x75\x52\xe0\x3c\xdc\x1a\xf5\x16\x32\x2a\x49\x72\x89\xad\x42\x30\x75\xd9\xdd\xe3\xc5\xf3\x68\x89\xe9\x40\x1b\x31\x93\x66\x1e\xba\xff\x82\x49\x6a\x79\xd3\xe1\x72\x9a\x2f\x51\x6b\xdc\x8e\x0e\x59\xe6\x68\x22\x99\xb6\xaa\xcd\x1e\x43\x91\x0b\x0c\xa7\x08\xec\x8e\xe3\x56\xb7\xb3\x61\x2b\xc2\xc0\xaa\xc5\xfc\x3a\x6d\xa5\x97\x4b\xdd\x78\x73\xe6\x77\x02\xe1\x20\xea\xfd\xcc\xd4\x80\xc8\x9c\xbf\x9f\x0b\xca\x5c\x95\xbf\xbf\x48\xd3\xc2\x15\xf0\x87\xa7\xf5\xa2\x59\x6a\x35\x17\xf9\x10\x64\xc2\xca\x90\x1c\xba\x7c\xeb\xa9\xa4\xd4\x9e\x60\x5d\xcf\xd1\x9a\x4a\x65\x84\x6d\x14\x8d\x9d\xe7\x7f\xc2\x35\xc9\xbd\x0d\x60\x97\x68\x21\x45\x59\x67\x96\x3b\x67\xf7\xea\xf2\x0b\x6e\x7b\x00\xd3\xa2\x83\x77\x56\x9c\x65\x80\x36\x64\xad\x56\x14\xc7\x76\x30\xcc\x25\x4f\x19\x24\xfb\xe2\x66\x66\xba\xef\x16\x38\xcd\x6e\xdc\xe7\x1d\xc3\x04\xd0\xaa\xb2\x1e\xb5\x19\x01\x3d\x51\xca\xf7\x3e\xfe\xfa\x8a\x34\x5f\x64\x79\x5b\x79\x37\xbd\xab\xef\x62\x9e\xe1\xba\x53\x55\xf0\xf5\x4f\x6b\x5c\x6f\x21\x50\xcc\x6b\xbd\x26\x69\x9d\xa6\x45\x08\x94\xc1\xb9\x2b\x11\x7e\xfe\x2b\x90\x4c\xf5\xb6\xb4\x94\xf5\x3b\xb0\x99\x52\x39\x61\x7b\x48\x0a\x07\x0c\xf6\xc7\x21\xc3\x4c\x55\x46\x70\x5e\xe6\x8e\x3f\x96\x9e\xec\x33\x3d\x68\x7d\xfe\x47\xda\x0e\x46\x81\x85\x5c\x60\x09\x2b\xda\xc2\x52\xe5\x59\x4c\x82\x6b\xdc\x18\xe4\x0b\x31\xfa\x4a\xf3\xef\xc7\x48\xd3\x9c\x34\xc9\x94\x5e\x0f\xaf\x87\xa1\x39\x40\x53\x7d\x38\xfe\x9f\x5b\x51\x8a\xd4\x55\xd9\x2c\x32\x67\x16\x33\x21\x51\x6f\x9f\x2d\x3c\x2e\xbf\x52\x2a\x5d\x86\x3e\x08\xa7\xdb\xc6\x06\x40\x4d\xa1\x70\xc5\x7c\xe7\xd2\xb5\xb7\x64\xa5\x17\xf1\x9a\xcd\xa7\xb2\xab\xe4\x2b\x9b\xea\x9d\xc2\x8c\x74\x67\xa8\xaf\x8c\xb7\xe6\x52\xd3\x65\xa9\x8c\x75\x86\x99\x92\x31\xd1\x09\x75\x6c\xec\xf4\x3a\x03\x39\xd1\xe7\x28\xfd\x13\x7d\xc7\x20\x3e\xf9\x44\x71\xbb\x0b\x33\xbe\x02\x0e\x37\xc1\xe7\xb5\x47\xba\x60\xaf\xdf\x8d\xb6\xf2\x22\x2a\x35\x59\x1f\x9d\x1a\xe6\xfb\x5c\xa1\xe7\x2c\x80\x41\x64\x78\x59\x71\xfd\x2a\x9b\xa2\x8e\x4d\x81\xe7\x0a\x99\xc3\xde\x46\xe4\x79\x07\x79\x68\x41\x57\xb2\x35\xbc\x0c\x24\x92\x2f\xda\x86\x5a\x99\x5b\x1c\x49\x3a\x95\xe2\x0f\x3a\xbd\x44\xbb\x1c\x7c\xba\x5b\x0c\x9b\x25\x69\xdf\x48\xe0\xf4\xc4\xb1\xc2\x2a\xdd\xa9\x1a\xa7\x31\x08\x55\xc1\xa4\x71\xbb\x7d\x02\x97\xbb\x90\x5a\xc6\xad\xfe\x62\x3c\x84\xe7\x3a\x51\x0b\x12\x3a\xa7\x64\x91\x74\xca\xd7\x05\x3f\xe7\xb1\x84\x81\x37\x96\x8a\x32\x47\x4b\x6f\xba\xbc\xd4\xeb\x9b\xae\xc6\xcd\xcd\x4b\xc2\x64\xbf\x97\xf5\x0d\xc0\x2b\x98\x6d\xed\xb3\xd5\x75\x70\x61\xe8\xa2\xc7\x5e\xc6\xb4\x12\x92\xcd\x31\x20\xec\x17\xcf\x76\xf9\x6c\x27\x5f\x3b\xea\x94\x41\x08\x3f\xb3\xd2\xe1\x6b\x81\x93\x09\x27\x2f\xf2\x2e\x22\xa4\xc2\xde\x55\x84\xe4\xee\x68\x77\x7f\xe6\x86\x59\x56\xf7\xa5\x5a\xde\xd5\xad\x91\xfe\xec\xef\x00\xc7\x6b\x07\xf4\x81\xaf\x46\x0e\x0a\xf5\xfd\x04\xd6\x5f\x99\x32\x0a\xdd\xfa\xdd\x71\x57\x02\xa7\xf8\xec\x9f\xa7\xc9\xaa\x9a\x91\x96\x64\xc9\x4c\x18\x15\xbd\xa6\x49\x25\x57\x52\x6d\xe4\x64\x2e\x28\xcf\x8c\x63\x6a\x6b\xc5\x7a\xa8\x5c\x4c\x40\x9e\x53\x5a\x63\xef\x50\x0f\x97\x40\x7b\xa4\xb5\xeb\xd5\x09\x7c\x43\x13\xb0\x9d\xc5\x47\x98\x84\xd5\xe1\x74\x61\xea\xcb\xe2\x7c\xeb\x6b\x25\xab\x20\x23\x4b\xba\x10\xb2\xd3\xf0\x1c\x1c\x32\xd6\xa9\x32\x5a\x5a\x6c\xb9\x50\xe0\xe2\x05\xe5\xee\x8a\x8f\x0e\xfa\x2a\xa6\xdd\xb5\x9d\xaa\x11\x4e\xde\xff\xb5\xd2\xfa\xf6\x8e\x16\x98\x6e\xdb\xb8\x0c\x25\x6a\x2c\x1c\x8d\x26\x81\xc6\x75\x61\x27\x60\xf6\x46\x30\xc3\x74\xb5\x41\x9d\x71\xc9\x81\x56\x70\x63\x63\xdb\x79\xe3\x33\x48\xcf\x5e\xac\x69\x10\x5b\x1b\x03\xd9\x72\xd3\xa8\x8a\xad\x0a\x9b\x5d\xce\x9b\x09\xc3\xff\x44\xcf\xb1\x04\xae\xf3\xbc\x87\x21\xc1\x9f\x98\x25\xea\x30\x16\x91\xaa\xa2\x70\xbc\x0d\x71\xae\x3b\x8c\x9d\xae\xbe\x86\xe8\xc4\xa1\xef\xa8\xef\x70\x1a\x97\xb6\xbe\x7c\x2d\xb5\x5a\x8b\x6c\x37\xf2\xc2\x8a\xda\x47\x1a\x9a\x55\x77\x0c\xee\x0f\xab\x83\x02\xeb\xe9\xd0\xca\xdd\xe6\x99\x32\x9d\xd1\xeb\x80\xfa\xf7\x5e\x8c\x61\x13\xe4\x6a\xb1\x08\xb7\x79\xde\x2a\x9d\xc6\x2a\x19\xdc\x29\x76\x2b\x23\x80\xa9\xca\x52\x69\x0b\xc2\xfa\x64\x04\x3e\xa2\x14\xab\x68\xdd\xa5\xca\x2e\x5e\x22\xd8\x13\x16\xc1\xd9\xee\x40\x3f\x76\xd3\xb8\xd6\x37\x64\x0d\x54\x65\xf8\x6d\xcf\xd6\x7f\xb8\x9c\xe3\xe7\x87\xcb\x69\x7b\x5e\xd3\xe5\x34\xe2\x60\x0f\x81\xfd\xc5\xd9\xff\x9f\xef\x09\x78\xb4\x76\xc2\x3b\xb9\xc1\x59\x8e\x1f\x23\x9a\x04\x00\xb1\x23\xee\xb8\x50\x35\x86\xb8\x1a\xb3\x20\xdd\x22\x03\xb8\xb5\xa0\xd6\xa4\xb5\xc8\x42\x52\x9e\xd1\x1c\xab\xdc\xd6\x60\x0d\xd9\x58\x3f\x0d\x63\xf0\x97\x1c\xad\xab\x2b\x4e\x29\xca\xa9\x92\xa2\xdb\xc0\xfe\x59\xa1\x5e\x55\x1d\x42\xda\x77\x16\x8e\x61\xff\xe9\x97\x1f\x78\x8c\x40\x6e\x7c\x19\xb8\xd9\x85\xf4\xad\x7d\xfb\xb6\x1e\x70\x70\xf5\x49\x60\x53\x02\xf7\x9f\x1f\xde\x5f\xc1\x8d\x2a\x4a\x91\xf3\xa5\x9b\x02\x04\x89\x56\xac\xe3\x9d\xae\xdb\xd3\xd5\xe1\x12\x09\x25\x7e\xbc\xa2\x32\x6e\xf7\x63\x89\xe9\x0a\x17\x34\x71\x2c\xf8\x0f\x0f\xe6\x71\xec\x32\x48\x25\xf3\x6d\x0c\x1c\x7e\x8c\xa3\x03\x24\x8f\x7d\x91\x35\x63\x40\x03\x1b\xca\x73\xf7\xdf\xdf\xae\x3f\xdd\x71\xda\xf8\x5f\x9f\xee\x9a\xaa\x61\x12\xa7\x01\x98\x1b\x15\x3b\x4a\x5d\x55\x17\x5a\xc8\x09\x8d\x85\xbf\xfe\x22\xfe\xe6\xec\xb1\xa0\x42\xe9\xed\x18\x8c\xb7\xbe\x2f\x2a\x73\x4c\x94\xf1\xe2\x31\xb0\x80\x43\x5a\x17\xf5\x5c\x28\x09\x13\xa7\x14\xf9\x5a\xa6\x24\x8d\x56\x69\x07\x6f\x0c\x41\x97\x7d\x5c\x74\x27\x9c\xd7\x5d\xb4\x0e\x90\xa1\xb7\xe6\x77\xd4\x99\x73\x2d\xf4\xac\xb6\x8f\x32\xa8\xe9\xc5\x18\x8a\xca\x58\x58\xe2\xba\xdb\x13\xab\x6a\xb1\x0c\x04\x03\xae\x51\xe4\x4e\xa6\x1d\x11\xe2\x47\xd8\xfb\x11\xf6\x0e\x9f\x60\xd5\x0f\xdb\x72\x70\xe0\x6b\x7a\xae\xb0\x9d\x8f\x32\xf5\x50\xef\xe3\x1c\x8d\x9d\xfc\x81\xfa\xb1\x87\x30\xa5\xe1\x31\xb8\x11\x67\x3c\xde\xb7\xef\x76\x5e\xf0\x80\x4c\x8a\x86\x60\xa6\xec\x72\x18\x4c\xe7\x47\x6a\xa0\x8e\x61\xe1\xe2\x91\xb2\x31\xd8\x8d\x3a\x9e\x3f\xab\xe7\x2c\xfa\x80\x6a\xf2\xc3\xb4\x0e\xca\x46\xd8\xa5\xef\x91\xc7\x63\x56\x82\x4d\x94\x47\x90\x35\xa5\x94\x71\xa7\xc3\x85\xae\x3e\xa9\x3a\x08\x35\x45\xbe\x1f\xe7\xb6\x69\xc2\x6c\x9b\x30\x8b\xfd\x5c\x9e\x90\xf3\xbc\x72\x10\x39\x28\xf4\x65\x0f\x64\x54\x5e\xc5\x2b\x06\xbe\x35\xa9\xb4\x26\x69\x19\xc1\xb6\xd8\xcb\xa7\xb4\xf5\x44\x77\x4f\xaa\xb4\x26\x53\x2a\x3f\x1d\x10\xb2\x99\xb9\xd0\xc6\xee\x49\xde\x5f\x25\xcd\x28\x8c\x23\xf4\xdc\xbd\x43\x04\xd2\x1c\x08\x15\x41\xce\x52\x01\x3d\x09\xc3\xe3\x5b\x3c\xb3\xea\x9c\x70\x81\x36\x5d\xf6\xca\xe7\x10\x1c\xc3\xe8\xb8\x6c\x80\x21\x79\xd4\x9e\xb6\xb7\x69\x7a\x5f\xda\x42\xb2\x2a\xfa\x80\x4f\x20\x8a\xbd\x77\x91\xd7\xae\xd7\x4e\xf6\x4e\x38\xce\x38\x35\x30\xb0\x26\xfb\x1a\x96\x1f\x94\x65\xbe\x43\x1f\x92\x40\xce\xd6\x8a\xf6\x6e\x71\xf3\x48\x1e\xff\x3c\x6c\xee\x77\xf8\xba\x1f\x71\xed\x47\x5c\xfb\x0e\xc6\x75\xbe\xec\x9a\x6e\xe4\xa1\xf4\x13\xf3\x8d\x98\xda\x0a\xf3\xb0\x76\x6f\x69\xb7\x76\xa2\xb6\x62\x8e\xe9\xc9\xcb\xfb\x58\x67\xd6\xeb\x9f\x3f\xd5\xb2\x5f\xc1\x06\x78\xfb\x83\x7b\x05\x5a\xd2\x02\x73\x1e\x0f\x8e\x47\xc2\x39\x42\x97\xcb\xaa\x47\xad\xb6\xfc\x15\x8f\x8c\x73\xeb\x80\xbe\xed\xd6\x44\x96\xb3\xdf\xb6\x9e\xcf\xc9\x49\x91\x25\xa5\x2b\xd3\xed\x5a\x0f\x26\xba\xe2\x72\x38\x9f\xfe\xfd\xfa\xa7\x8b\x3a\x24\xbe\x6c\xd8\x40\x74\x1a\xc9\x91\x3e\xc4\xce\x7d\x1a\x66\xf1\x7e\xb9\xfe\x95\x7d\x40\xc1\x1e\xad\x39\x9d\xd6\xa9\xe6\x4a\x7b\xfe\x71\x23\x75\x37\x1c\xef\xbf\x6c\x73\xf9\xd6\xb3\x27\x14\x72\x95\xf6\x7a\xc2\x3d\x6a\x7c\x13\xd5\x37\x0b\x78\xe3\xae\x6d\x19\x9b\x09\x8f\x5f\x54\xd6\x95\x96\x9d\x2e\xa9\x51\x2f\x68\x78\x0f\xb1\x1e\x2d\x8b\x44\x44\x64\x5e\xd4\xdb\xee\x1f\x5a\x14\x6d\x09\xcd\x33\xdb\x75\x33\x34\x74\x3b\x60\xc8\x8f\xbf\x77\xf0\xb3\x7d\xa7\xac\xbd\x87\xb6\xd4\xa5\x6e\x8d\x8f\xc8\x3a\x8f\xdb\x0d\x41\xee\xb6\xd4\x1f\x7b\x94\x25\xc9\x46\x81\x4a\x6b\x76\x15\x9a\x72\xa7\x0c\x6d\xac\x79\x91\x5b\xda\xcf\xd1\x6f\x22\x3a\x75\x17\x36\x7c\x7a\x62\xd1\xf2\x7c\x01\xd6\x49\x7c\xab\xe8\xd1\x36\x86\xd6\x78\x72\xbf\x2d\xb0\x9c\x72\x3f\x39\x1a\xfb\xa0\x51\x1a\x11\x3f\xa9\x1b\xd6\xfd\x47\x63\x79\xa0\x2f\x7a\x9f\x40\x8a\xad\x41\x39\xb6\x6a\x55\x70\x05\xd0\x12\x3c\xf6\xb8\xaa\x00\x25\xfb\x80\xae\xd0\x18\x9b\xe6\x19\x5a\x9a\xbc\x64\xd0\xc3\x91\xfb\x8d\xbf\x53\x18\x4c\xea\x03\xcf\xe2\xec\xc8\xe5\x80\x1e\xe9\xdd\xa0\xa9\xbf\x7b\x78\x6d\xdc\x0b\x32\x66\xe8\x44\xd1\x35\x2c\xab\x02\xe5\xc4\x95\x5d\x9c\xbc\x84\xcd\x20\x64\xc6\xae\x5b\x2e\x20\x23\x8b\x22\x37\x80\x33\x55\x75\x67\x61\x3c\x4f\x5e\x4b\xb5\x8b\xc8\x93\xc8\x6b\x42\x33\xd0\x2f\x3f\xf0\xe7\x5f\x6e\x79\x6d\x98\x35\xc3\xdf\x9a\x20\x8b\x97\x63\xd4\x96\xfd\x74\x60\x34\xe5\xa5\x8d\x58\xeb\x91\x19\xfb\xf2\x76\x0e\x0f\xba\xa2\x31\x7c\xc0\xdc\xd0\x18\xbe\xf9\x04\xf5\xd9\x78\x7d\xdf\x70\x87\x9a\xef\x95\x88\x35\x6e\xcf\x3c\xbe\x3f\x5c\x74\xda\x71\xe7\xf8\xfb\x73\x87\xdc\xc5\x82\x4c\x4b\xe8\xdc\xf7\xec\x3e\x33\xf5\xa1\xc4\xef\x88\x22\xfa\xce\x60\x32\x47\x91\x57\xfa\x54\xe0\x0a\xab\xa2\x6e\x9e\x8b\x39\xa0\x6c\x99\xf3\xe9\x77\xb9\x7d\x86\x70\x10\xb8\xf8\x0b\x5f\x3f\xbc\x19\x26\x04\xe3\x4d\xaf\x07\xd2\x53\x21\xf4\x08\x38\x55\x6b\x1a\x54\xf9\xfa\x83\xfc\x72\x40\x6b\xa9\x28\x6d\x1d\x2c\x85\x89\xfc\x78\x66\xe5\x1a\x00\x0e\x2c\xce\xc2\x6a\x90\x55\x31\xeb\x9b\x14\x64\xe2\xd9\x20\x3a\x57\x05\x50\x9f\xf0\x69\xe0\xd9\x05\x3e\x89\xa2\x2a\xc2\xd9\x1c\x99\x3d\x88\x9e\x88\x36\x1c\x8f\xbe\x38\x74\x28\x10\xb1\x1b\x3c\x8c\x0c\xf1\xfd\x8e\xbe\xf6\xd0\xd0\xf8\x33\xc8\x89\x77\x7b\x07\xfe\x78\xdc\x23\xd5\xff\xf6\x53\xc7\x97\x3b\x27\xee\x04\x6c\x27\x9f\x8e\x94\x96\xf9\x54\x7f\x40\x1b\xcd\x76\x89\xa6\xce\xf8\x5a\xe1\x0c\x63\x54\x2f\x93\xba\x19\x34\xe9\xb2\xd9\x49\x6d\x63\x2d\xaf\x5a\xb1\xe8\x61\xd4\x90\x8f\x6c\xf6\xdc\x66\x73\x96\xf5\x3b\x9d\xa6\x9a\xf1\x85\x4c\xf6\x0b\x17\xc5\x03\xbe\x60\xfc\x7c\xb4\x21\x8e\x3a\x17\xca\xf0\xb7\xc0\x24\x6d\xa8\xb1\xfd\x75\x6f\xd8\xd0\x22\x87\xda\x09\xed\xe7\xd4\xc7\x51\x2f\x0a\x55\x48\xfb\xf3\x5f\x3b\xc8\x6b\xb7\x53\xfe\x5f\x15\x9c\x20\x89\xd7\x3c\x93\x7f\xb1\x1b\x36\xe4\x33\xa4\xb0\x94\xc9\xf6\xb5\x4b\xfc\xf8\x88\x33\xd0\x5d\xaf\xed\x7b\x10\x08\x75\xe5\x17\xdf\xd3\x6f\x99\xb3\x3b\x8e\x06\xa1\xff\x1d\xc6\x00\xf4\xab\xe0\xd3\xd9\x9e\xef\x44\x27\xf6\xcd\xff\x54\x6c\xd6\x83\xd1\xf0\xd3\x39\x1f\x77\x7d\xd4\x57\xc0\xa7\xd5\xe6\x8f\x7e\xf4\xe6\xd2\xb8\x13\x35\x56\x69\xe7\x11\x1a\xbf\x54\xb3\xba\x35\x14\x69\x0b\x99\x30\xfc\xcf\xff\x8e\xfe\x2f\x00\x00\xff\xff\x41\x8e\xa2\x25\x97\x49\x00\x00"), }, "/crd/bases/camel.apache.org_integrationplatforms.yaml": &vfsgen۰CompressedFileInfo{ name: "camel.apache.org_integrationplatforms.yaml", @@ -611,9 +611,9 @@ var assets = func() http.FileSystem { "/traits.yaml": &vfsgen۰CompressedFileInfo{ name: "traits.yaml", modTime: time.Time{}, - uncompressedSize: 64160, + uncompressedSize: 64078, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\xfd\x77\x1b\x37\x92\xe0\xef\xfe\x2b\xf0\xb8\xb7\x4f\x92\x4f\xa4\x94\xcc\x66\x36\xab\x3b\xef\x9c\xe2\x38\x33\x4a\xfc\xa1\xb3\x94\xcc\xce\xf3\xf9\x0d\xc1\x6e\x90\x84\xd9\x04\x3a\x00\x5a\x32\x73\x73\xff\xfb\x3d\x54\x15\x3e\xba\xd9\x14\x49\x5b\xca\x8e\x76\xb2\xfb\xde\xc4\x92\x1a\x85\x42\xa1\x50\x28\xd4\xa7\x33\x5c\x3a\x7b\xf6\x64\xc8\x14\x5f\x8a\x33\xf6\x3b\x5b\xf0\x4a\x3c\x61\xac\xae\xb8\x9b\x6a\xb3\x3c\x63\x53\x5e\x59\xf8\x8d\xd1\x53\x59\x09\x7b\xf6\x84\xb1\x21\xfb\xa1\x99\x08\xa3\x84\x13\x16\x7f\x54\xdc\xc9\x1b\x01\xff\x7e\x53\x0b\x75\x35\x97\x53\xf7\x84\xb1\x52\xd8\xc2\xc8\xda\x49\xad\xce\xd8\xf5\x5c\xd0\x04\x0c\xe6\x65\x05\x57\x6c\x22\x58\x63\x45\xc9\x9c\x66\xbc\x71\x7a\xc9\x9d\x2c\x78\x55\xad\x58\x61\x04\x77\x82\x71\xa5\xb4\xe3\x1e\x80\x65\x6e\xce\x3d\x50\xc6\x78\x55\xe9\xdb\x08\x4b\xb3\x52\xda\x42\xdf\x08\xc3\xdc\x5c\xb0\x99\x50\xc2\x70\x27\x4a\x66\x85\xb9\x91\x85\x87\x51\xb2\x25\x5f\x08\x26\x1d\xe3\x37\x5c\x56\x7c\x52\x09\x36\xd5\x86\x9d\x5f\x5e\xb0\x25\x57\x7c\x26\x96\x42\xb9\x11\x00\x5f\x43\x53\x5a\x3f\x81\x1f\x53\xb2\xc9\x8a\x95\x62\xca\x9b\x0a\x3e\xae\x8d\xae\x85\x71\x32\x50\x05\x89\x28\x14\x7c\x0b\xc0\xdc\xaa\x16\x67\x6c\xa2\x75\x05\x3f\xb6\xe8\xf1\xbc\xbd\x7c\x1c\xc6\xb4\x09\xb3\x31\x8e\x08\x8c\xd8\x79\x55\xe1\x3f\x2d\xb3\x73\x6e\x04\x73\x73\x69\x59\xa1\x97\x4b\xad\x00\x6e\x44\x65\x35\xca\x10\xf1\x04\xdd\x8a\xc5\x0b\x98\xd6\x26\xea\xb3\x42\xab\xa9\x9c\x35\x06\xa8\xce\xf4\x14\xa8\x8a\x98\x64\xc0\x6d\x31\x17\x4b\x91\x81\xb7\xce\x48\x35\x5b\x9f\xc0\xd3\x13\x3f\xf6\xab\x6c\x2c\xfc\xa7\xd0\xca\xf1\xc2\x01\xe8\xb0\x4d\x87\x44\x59\x36\x9e\x3b\x57\x8f\x8f\xb2\xc9\x6a\xee\xe6\x3b\x4e\xe5\x3f\x65\xb7\x73\x01\x54\x12\xb0\xc3\xd2\xb2\xba\x99\x54\xd2\xce\x45\x99\xcd\x72\xd2\x9e\x42\x1b\x97\x4d\x21\x95\xdb\x00\x5f\x1b\x97\xc1\x0f\xc8\x4b\xcb\xc4\xc7\x5a\xdb\xd6\x0c\x5f\x9f\xb6\xa6\xc8\x60\x0d\x3f\x7d\x45\xfe\x7c\x0d\xfd\xb2\x6c\x2d\x0a\x39\x95\x05\xee\xd3\xa6\x45\xea\x5a\x28\x5e\xcb\xd1\x07\xab\xd5\xf8\x28\x9e\x74\x3e\x9d\x4a\x25\xdd\xea\x81\xce\xfa\xb9\x3f\xa1\x9e\x45\x95\xf5\x9c\xa3\xa4\x9a\xb1\xdb\xb9\x2c\xe6\x4c\xe9\x52\x58\x58\x88\x54\x4e\xcc\x88\xcb\x6a\x5d\x1e\xda\x23\xe6\x79\x5b\x54\x72\x26\x27\x15\xb1\x96\xf6\x47\xc4\xb3\x4f\xd9\xf8\xf3\xa7\xd5\x31\x9b\x70\x0b\xff\x62\x15\x9f\x88\xca\xfa\x7f\x79\x70\x1e\xf0\xb1\x3f\x3e\xb7\xd2\xcd\x01\xb8\x19\xd6\xba\x8c\x2b\xf5\x62\x00\xa5\x87\x72\x72\x18\x7e\xdb\x0b\xae\xd6\x25\x4a\x1b\x40\x88\x57\x46\xf0\x72\xc5\x4c\xa3\x60\x1d\xd9\x7c\x16\x45\xc6\x85\x3b\x78\xac\x32\xa2\xd6\xe5\x30\xe3\x85\xbb\xb1\x39\xaf\x6e\xf9\xca\x03\x1d\x56\xba\xe0\x4e\x58\xb6\x6c\x2a\x27\xeb\x4a\x30\x23\xea\x4a\x16\xdc\x06\x79\x91\x6f\xae\x44\x82\x59\x4e\xf2\x82\x01\xed\x12\x93\x3e\x05\xbe\x7b\x7a\xb4\x86\x57\xbe\x51\x5b\x91\x7b\x2d\xfc\x0d\xf0\x6b\xe0\xe6\xbf\x88\x78\x0d\x91\x6d\x32\xf4\x0e\xde\xbd\xc7\xe3\x7c\xb0\x8e\xe4\xb7\x62\x2a\x95\x97\xb6\xcc\x0a\xe7\xf1\xd9\xf9\x38\xe0\x51\x20\x1c\x77\x3e\x10\x9b\xb6\xfa\x33\xb1\x86\x03\x72\xe8\xc1\x56\x2b\xe6\xe6\xda\x0a\xb6\xe4\xae\x98\xfb\xe3\xe1\xa7\x06\xe8\xcc\x8a\x4a\x14\x4e\x9b\x63\xc2\xda\x88\x0a\x44\x87\x5f\x0a\xdc\xd4\xf2\x46\x28\x40\xce\xd6\xbc\x10\x47\x78\xe4\x36\xd0\xc2\xce\x75\x53\x95\xfe\x30\xc4\x2d\x2e\x09\xae\x3f\xf0\x77\xf2\xce\xa3\x5d\xad\xd2\xee\x8e\x15\x47\x59\x7e\x6b\x87\x56\x14\x46\x38\x3b\x44\x6d\xc6\x3c\x90\x58\x3f\xf0\xf7\xd1\x15\x4e\xc5\x5e\xe1\x54\xfd\xca\x9c\xbf\xe7\x09\x27\x36\x35\x7a\xc9\xce\xff\x7c\x15\x46\xc2\x22\xc2\x68\x0f\x31\xfb\x5b\x07\xea\x06\xdd\x8b\x7d\xa7\x0d\x5b\x6a\xe3\x69\xe7\xd7\x08\xb4\x43\xe1\x3e\xd1\x8d\x63\x73\x7d\xbb\x0d\x89\x34\x91\xd7\x0c\x39\xab\xb4\x5e\x30\xda\x90\x42\x2f\x6b\xad\x84\x22\x54\x4b\x5d\xd8\x33\xf6\xd1\x88\xe9\x59\xfa\xcb\xd9\x59\x0f\xd9\x87\xf1\xef\x23\x5e\xea\xe2\x5d\xcf\x7c\x00\x31\x7e\xf6\x9e\x9d\x7b\xd9\xe3\xa5\x94\xf8\x28\x8a\x26\xa9\x5c\xd2\x22\x09\x8e\xd9\x2d\xb0\x82\x11\x3f\x37\x92\x54\x80\xa9\xf6\xd7\x2b\xb0\x9f\xff\x04\x40\x6a\xd8\x22\x7b\xc6\x86\xae\x8f\x21\x46\x74\xe3\x3c\x73\xa6\x11\x9b\xbe\xe1\x45\x21\xac\x1d\x2e\xc4\xea\xd9\xc0\xff\x3d\xfd\x3c\x80\x39\x36\x0c\xc3\x9f\xd3\xb0\xf4\xf3\x60\xd3\x10\x23\x66\x52\x2b\xfc\x1c\xff\x8d\x33\x5c\xc7\x3b\xce\xaf\xb3\xa5\x93\x3a\xf1\xd1\xf9\x43\xa5\x39\xc8\xba\xb0\xaf\x4d\x5d\x82\xb4\x5f\xe9\x26\x9c\x9a\x12\x0e\xb0\x87\x00\x30\x3b\xd4\xfa\x2f\x42\xa9\x0d\x9f\x13\xa1\x86\x48\xa8\x61\x58\xcb\xc0\x2f\xe6\x8e\x39\xa6\x46\xd8\x79\xe7\xeb\xbb\xa6\x09\x23\x6a\x61\xa4\x2e\x9f\x0d\x7e\x77\x7a\x7a\x7a\xba\x11\x3e\xfd\xfc\x6c\xe0\x84\x75\x4f\x07\x07\x7f\xff\x6a\xd1\x83\x3e\x9d\x12\xb3\x1c\xeb\xa5\x74\x62\x59\xb7\xd4\x9b\xbb\xde\x02\x5e\xa0\x9c\xc3\x70\xf6\x83\x58\x91\x8c\xcb\x5f\x65\x91\xa1\x3e\x09\x34\xca\xaa\x7e\xd0\xc8\x7c\x9f\x04\xf6\x2d\x0c\x5d\x07\xd9\x58\x31\x24\x91\x3e\x2c\x8c\x28\x85\x72\x92\x57\x76\x58\x1b\x7d\x23\x4b\x61\x7a\x27\xeb\xdf\x0b\xbc\xb4\x99\x9c\xb2\x5b\xc1\x6e\xb9\x72\xf1\xb1\x39\x17\xfe\x8f\xa0\xcc\x3d\x4f\x73\xb0\x4b\x9a\x83\x15\x73\x2e\x15\xe3\x96\xb8\x81\x37\x6e\xee\xbf\xa1\x67\xd5\x52\xb8\xb9\x2e\x33\x9c\xfb\x0f\xd8\x7d\x61\xfa\xdc\x2b\x19\xec\x39\x49\xbb\xb7\x28\xed\xa6\x82\xbb\xc6\x00\x7f\x2b\xed\x5a\x5b\xd2\x3a\xb7\xf7\x85\xc4\x5b\x04\xcb\xbe\xa3\x79\xa7\xda\x04\x71\xdb\x33\x39\x8a\x80\xbd\xf8\xe2\x62\x1a\xe7\xf0\xef\x66\xc2\x1e\x8f\x66\x49\xda\x57\x50\x8c\xcc\x0d\xaf\xc0\x62\x30\x17\xc5\x02\x7e\x4b\x13\xd3\x7e\x89\x1b\xa1\xfa\x68\x72\x9f\x68\xf9\x39\x67\x4d\xc5\x8d\x7f\xe3\x1b\x61\xad\xe7\x0c\x23\xfc\x3f\x3d\xab\x90\x1a\x68\x33\xed\x86\xe5\x74\x75\x86\x17\x8b\xa4\xad\xfd\xd2\x18\xe1\x4f\xe8\xf0\xc6\x33\xe5\x43\x6a\x6a\xe7\x7e\x2a\x38\xcd\x3f\x01\xff\xef\xa8\xa9\x85\x51\xb0\x12\x1c\x19\xcc\x1c\x9b\xa1\xde\xb7\xa6\xd6\x99\x24\x6a\x4c\x9f\xa1\xaf\xb5\x09\xbf\xa6\xab\x6d\x9a\xf1\x3d\x00\xbd\x07\x3d\x2d\xd7\x3c\x90\x04\x6d\x8c\xd6\x35\x8f\xce\xdf\x9d\x50\x5c\xb9\xa1\xf4\x37\x74\xf8\xe7\xa0\xef\xc3\xa2\x92\x82\x3e\x8c\xff\x4c\xf7\x79\xff\xc7\x48\xfe\x38\x00\x7f\xec\x85\x8e\xe4\xf3\xdc\xfc\x6c\x90\xfe\xfd\x9f\xa4\xc0\xdd\x07\x09\xb7\x50\xa6\x4d\xc6\xbd\x49\xb8\x09\xfa\x06\x32\xf6\xc2\xbf\x4b\xab\xdb\x04\xbf\x5f\xab\xbb\xeb\xcb\xb6\x36\xb7\x09\x6e\x47\x9b\xeb\xdd\x05\x2f\x94\xe7\xcd\x64\x58\x68\xa5\x44\x01\x16\x4f\x94\xba\xcf\x06\x6b\xbf\xda\x38\xd1\xa4\xd2\x13\xaf\x59\xeb\x46\x05\x3a\xe5\x3f\x0d\x36\x0f\x02\xf3\xb2\x54\xc2\xd0\xb0\xf6\xcf\x30\xb0\xf7\x00\x86\x19\x93\x6e\x9f\xcf\xf7\x8f\xae\xb7\xc6\x03\xb3\xbf\x12\x08\xb2\xf5\x1a\xc6\xb3\x8b\x12\x34\x0a\x24\xb3\x3f\xd5\x51\xe6\xe6\x6a\x56\x38\x6f\x9f\x38\xd7\x73\x18\xbf\xd7\x5c\xc8\xd7\x9f\x37\x1f\x29\xd0\xdb\xe7\x4c\x07\xfe\x13\x27\xc4\x4b\xea\x35\x5f\x8a\x5d\x56\xf8\x9b\xd2\xfa\x9b\xd2\xfa\x29\x4a\xeb\x43\xa3\x98\x2e\x03\x76\x05\xa3\xfd\xd4\xb5\x96\x84\xc3\x5c\xb0\x17\x74\x95\x04\xcb\x37\x29\xa2\x41\x84\x02\x9a\x41\x87\x78\x70\x74\xe9\x3a\x80\x39\xd0\x81\x0c\x67\xf1\xca\x69\xc3\x67\x82\x7d\x53\xe9\x49\xc0\x90\xf0\x0d\x78\x5a\x7e\x23\x90\x1d\x70\x75\xb7\x73\x59\xc1\xf2\x6d\xb3\xf4\xcb\x06\xa5\x37\x5b\xeb\x83\xaf\x43\x58\xcb\x16\x62\xf5\x98\x57\x11\x6f\xf5\xbb\xf6\x63\x03\xdf\xec\xb7\x92\xb0\x8e\x49\x23\xab\xb2\x63\x5d\xf7\x5a\xd5\xbd\xc5\x47\xd0\x04\xe9\x4d\x05\xd2\x44\x41\x44\x44\x40\xbd\x14\x4e\x98\x25\x29\xc8\x6c\x22\xac\xf3\xc4\xe3\x4e\xcc\x56\xd1\x67\xea\xc1\x40\xdc\x43\xb8\xd9\x05\xbb\x48\x5e\x86\x1f\xa4\xb3\x8f\xc0\x37\x79\x23\xcc\x44\x5b\xb1\xa3\x3e\x13\x3e\x67\x95\x9e\xcd\xc8\x4f\x8b\x74\x48\x8f\x40\xf4\xb9\xd8\xa6\x06\x2f\xbe\x74\xec\x50\x8c\x66\x23\x42\xe1\x07\xae\xe4\x22\xd0\xae\xd6\x65\xdb\x1f\x19\x49\xb5\xa3\x17\xe9\x9c\x55\xd2\xa2\xfb\x28\x0e\x25\x77\x36\x99\xb7\xca\x20\xe2\x70\x46\xc7\x6d\x32\x12\x14\xfe\x4a\x7d\x38\x36\xc3\x1b\xbb\xd7\x1c\x90\x18\xe6\x46\x18\x0b\x71\x37\x7a\xca\xce\x6b\x5e\xc4\x71\x3f\xc0\x6a\x4d\xa3\x9c\x5c\x62\x74\x0d\xf8\xba\x44\xc9\x2a\x39\x31\xdc\x48\x61\x8f\x19\x42\x26\x07\x56\xb0\x0c\x3c\x02\xa6\xa3\x65\x0d\x69\xf5\x3b\xea\x64\xb0\x5f\xc3\xc5\x30\x10\x85\x46\x07\x05\xc5\x8b\xa6\x8e\xa7\x6f\xc4\x2e\x1c\xd3\x37\xc2\x18\x59\x8a\x70\xff\xfa\x6f\x82\xe7\x39\x80\xb0\xc2\x05\x2f\x75\x76\x84\xd9\x25\x71\xc6\xaf\xc5\xa4\xf9\xdc\xb4\xca\x27\xb9\x7a\x09\x82\xf8\x01\x39\x36\xca\xfa\x2d\x5c\x9b\x2d\x84\xde\x31\x39\x76\x2c\x0b\xa4\xc9\xdd\xae\xb7\xb2\xaa\xfc\xb2\x60\x57\x78\x65\x75\x58\xbf\xed\xbc\x8d\xfc\x4e\x5e\xe1\x5d\x62\x19\xb7\x56\x17\x32\xfa\x65\x89\x52\x71\xbe\x47\xc0\xed\x3b\xbd\x17\xaf\xbb\xb1\x79\x99\x85\x27\x38\x20\xd3\x4d\xff\x73\x23\xac\x1b\x16\x75\xb3\xe3\xd1\x59\x4a\x25\x97\xcd\x92\xf1\x25\xa8\x56\x7a\xca\x9e\x5f\xfe\x18\xcc\x68\xe5\xa8\x07\xf6\x52\x2c\xb5\xd9\xf5\xb5\xb4\x0e\x1e\x87\xf7\xce\x50\xc9\xa5\xdc\x0b\x77\xfe\x71\x47\xdc\x11\xf2\x7e\x98\xaf\x01\xbf\x03\x73\x0c\x3e\xfb\x34\x86\x3a\x09\xdc\x04\x40\x40\xf4\x4b\xce\x16\xf1\xa4\x06\x86\x1f\xed\x1b\x2e\x97\x9f\x4b\xce\x4a\x39\x9d\x0a\xe3\x5f\xc9\x70\xfb\x86\x70\xb9\xc9\xaa\xa3\xcc\xe5\xf1\x73\x5f\x9f\x8e\x8f\xba\xd3\xc2\xab\x79\x17\x1a\xde\x39\x7d\x54\x19\x5d\x08\xea\xdb\x84\x50\xd0\x0f\x2e\x5c\x90\xcd\x20\x23\x31\x4a\x91\x69\x55\xad\xbc\x50\x41\x09\x3d\x46\x20\x63\x56\x73\xc3\x97\x5e\x51\x63\x60\x20\x6e\x5a\xc4\x23\x65\x74\xb8\x37\x11\x1b\xe5\x95\x43\x0c\xa4\x0b\x1a\x2d\xe0\xde\xa6\x20\x6a\x37\xb6\x15\x32\xd4\x1f\x9d\xb8\x09\xab\x4f\xa2\xf1\x46\xec\x80\xd6\xbd\x28\x86\x7b\x0f\xae\x9c\x75\x14\x31\x10\xb4\x15\x7b\xb5\x23\x5e\x70\x7e\xa4\xea\xbc\x11\x46\x18\xaa\xe7\xff\x59\xb2\x71\x76\x01\x8c\x3b\x51\x7b\x61\x3a\xb9\xe4\xb3\x4f\x9c\x2f\x0c\x6d\x81\x1a\xd6\x4d\x55\x0d\x6b\x5d\xc9\x22\x17\x03\x97\x4d\x55\x5d\xa6\x5f\xae\x7b\x72\xfc\x30\x86\xc3\x42\x18\xde\xdf\x20\xe0\xed\x6f\x17\xd3\xd7\xda\x5d\xe2\xa3\xfe\x20\xdd\xc8\x06\xc4\xfe\x83\x79\x96\x9e\x1b\xaf\xdc\xf4\xde\xc4\x8d\x75\x7a\x29\x7f\x09\xaf\x93\x39\xbf\x91\xba\x31\xa0\x63\xc0\xeb\x4f\x16\xb8\x70\xb9\x14\xe6\xc4\xe3\x49\xf1\x6b\xd9\x6e\xd8\x11\xfb\x33\xbc\xc7\x94\x36\x4b\xb8\x71\xb8\x6a\x5d\xd7\x24\x01\x2d\xe3\x5e\x51\x67\x74\x87\x4d\x04\xe3\x18\xa1\xd8\xd4\xa8\x96\x62\xc4\xe6\x31\xb3\x7a\x29\xe2\xf4\xa0\x69\xdb\x63\x66\x9b\x62\xce\xb8\x65\x13\xee\x8a\x39\xfb\xa0\x27\xf6\x38\x79\x6f\x12\xc4\xc2\xc9\x1b\x50\x6e\xfd\xcb\x81\x42\x6e\xd9\x5c\x37\x26\x2a\x18\x25\x5f\xc5\xb8\x53\x9e\xa6\x29\x45\xe5\xff\x30\xf5\x57\x50\xe3\x42\xac\xe8\x77\xda\xe0\xcc\x84\x05\x1c\x8b\x36\x35\x97\xdc\x09\x23\x79\x15\x88\x98\xaf\x9c\xfb\x35\xb7\xb6\x8d\xc1\x66\x7c\xaf\x27\x4c\x2a\xeb\x04\x2f\xfd\x94\x9c\x59\xc7\x55\xc9\x4d\xc9\x4a\x51\x57\x7a\xb5\x14\xca\x1d\x7b\x3d\x52\x1b\x78\x5f\xd2\x0b\xd8\x08\xab\x1b\xe3\x75\x99\x20\xc2\x00\x62\x3e\x63\xa9\x85\x85\x40\x34\x25\x70\x87\x27\xc1\x07\x26\xca\x51\xae\x16\x86\xd7\x95\xe3\xc6\xe1\xfb\xb9\xe5\x03\x03\xc0\xd9\x53\x0c\x82\x1b\x6f\x78\xd5\x00\x71\x83\xd0\x8d\x94\x38\x63\x63\x60\x91\xf1\x31\x1b\xfb\xdf\xfa\xff\xfe\xdc\x70\xe3\x7e\x19\x8f\xe0\xb8\x99\xa6\xa2\xf5\x7b\x29\xde\x80\xed\x33\x27\x4d\x24\x0b\xef\x7a\xe3\xce\xd8\x30\x00\x3f\xc3\x75\xe3\x9e\x59\x4f\xfd\xb0\xef\xb7\x46\x3a\x27\x80\xe0\x80\x54\x32\xa2\xd9\x11\x7b\x31\x9a\x8d\x08\xc4\x99\x93\xc5\xe2\x0f\xe4\x39\xf9\xfd\xe9\xe9\xe9\xe9\x78\xe4\xe1\x77\x70\x3e\x0b\xca\xa7\x4a\xeb\xcc\xec\x72\x91\xc8\x24\x3f\x98\x15\x85\x56\xa5\x65\x87\x74\x43\x0d\xe8\x17\x03\x7f\xb3\x80\x70\xb7\xc2\x05\xad\xf3\xf4\x28\xa0\xe4\xe1\x9e\x39\x3e\xf9\x43\x88\x10\x7d\x76\x7a\xf2\xe5\x7f\xfb\xbf\x75\xd5\xd8\xff\xf7\xb4\xef\x3f\x7f\x18\x7b\xd6\x25\x2c\xcf\x9c\x91\xb3\x99\x30\x7f\xf0\x60\x9e\x9d\xe2\x17\xa7\x27\x5f\xde\x39\x7e\xf4\x08\xdc\x22\x81\x1a\x3b\x4a\xf2\xc0\x39\x61\x58\xd4\x13\x6e\xe7\xba\xea\xbe\xe2\xa6\x59\xa0\xb1\x6e\x5c\x7c\xcb\x79\xec\x4a\x51\x54\xdc\x90\xbd\x6a\xc5\x96\x8d\x75\x6c\xee\xcf\x5d\x88\x39\xee\x4e\x21\x2d\x5b\x8a\x62\xce\x95\xb4\x4b\x4f\x8a\x5b\x6d\x16\xac\xd0\xc6\x88\xc2\x55\xad\x25\x75\x7c\xde\x77\x2f\xea\xe0\x1c\x68\xc4\x99\x15\x5e\x31\xc1\xa7\x3a\x3e\xfc\x92\x01\xbf\x6b\x26\xc9\xce\x7b\x14\xea\x21\x00\x35\x0a\x12\xa2\x4c\x42\x36\xb2\x78\x5c\x19\x28\x40\xc0\x57\xa2\x64\xe2\x63\xb4\x67\x4d\x56\xd9\x69\x0d\x4a\xd6\x79\x92\xb1\x71\x52\xd0\xa1\x92\x1c\xf6\x53\x0a\xee\x75\x0c\xfc\x52\x64\x16\x1e\x3a\x07\x84\x15\xc1\xa4\xb3\x9e\xbe\x42\xa9\x0b\x87\x65\x18\xfe\xb6\x61\xb2\x43\xe9\x0e\x0e\x2c\x23\xab\x39\x93\x2a\x7b\xa9\x8f\xb5\x99\x8d\x38\x58\x46\x46\x60\x00\x18\x2d\xce\x82\x21\x00\x8e\x3f\xd9\x43\x56\x47\x23\xc6\xae\xd0\xe8\x24\xca\xae\x0c\x2c\x1a\xe3\xb5\xd2\x6a\x75\x16\xd0\x0d\xa2\x83\x50\xf3\x37\x59\x14\x7d\x07\x19\x0b\x4c\x79\x55\x4d\xd0\x4a\x7f\xf7\xf9\xfa\x91\x7c\x24\x41\xaf\xc2\xfd\x96\xcb\xba\x82\xbc\xa7\x96\xd7\x0f\x67\x67\x42\x95\x68\x18\x3d\x0c\x53\x1f\xc5\xad\x8f\xb7\x8c\x33\x2b\x32\xd9\x6f\xb9\xb2\xd6\xa5\x72\x9b\x95\x15\x12\xa1\x58\xad\xab\x46\x1b\x59\xfa\x8a\x76\xdf\x86\x18\x12\x67\x04\x77\x09\x98\x4b\x91\x1a\x16\xaf\x44\x3f\x2d\xfb\x89\x57\xb2\x64\xfe\xde\xc9\x4f\xaa\xbf\x12\x06\x90\xb4\x32\x38\xc3\xf4\xb2\x88\x29\xa8\xd1\xa6\x51\x19\xe4\x6a\xf5\x3f\xfc\xf7\xdf\x69\x33\x91\xe5\x20\xea\xab\x47\x67\x9e\xf1\x26\xb2\x0c\x80\x33\x5c\x4c\xa3\xbc\xca\xb1\x90\x75\xed\x49\xa6\x20\x16\xa2\x51\x4c\x4e\x3d\x6f\x79\x15\xc9\xc2\xcf\x73\x6e\xd5\xc1\x81\x63\x53\xa9\x30\x95\x67\x25\x1c\x4c\xf6\x56\xd4\x15\x2f\xc4\x20\x70\x49\xc1\x55\x21\x2a\x9b\xd8\x27\xe6\xa7\x7c\xf0\x77\x1e\x18\xe5\x60\x84\x65\xd2\x05\xdd\x44\x89\x5b\xa6\x95\x38\xd8\xd7\x02\x70\xde\x7a\xfe\xa3\x46\xd1\xb7\xcf\x41\x70\x82\x10\xe0\x55\x45\x12\xd1\x53\x38\x3c\x43\xa4\x9b\x0b\x83\x4a\x42\xb4\xb3\x67\x4a\x13\x5a\xe0\xfd\x2b\x10\x1e\x56\x77\x9d\x85\x4c\xce\xda\x70\xb8\x8e\xfc\xad\xc1\x59\xcd\xad\x95\x37\x22\x83\x26\xe0\x7a\x2c\xa5\x17\xa4\x63\x38\xe2\x6b\x1f\xf9\x53\xea\x9f\x07\x04\x37\xbc\xb2\x29\x11\xc8\xeb\xdf\x5d\x24\x6d\x47\x98\x93\x7b\x03\xb0\x4c\x9a\x31\x5d\xf3\x51\x76\x06\x8d\x22\x0a\x48\x42\xee\x8b\xe5\x78\x6d\x88\xff\x78\x7c\x7a\xf2\x05\x7b\x8a\xff\x3f\x3e\x26\x4f\xc5\xf8\x77\x5f\x2d\xfd\xd5\x1d\x64\xc6\x57\xa7\x76\x4c\x06\xd7\xf6\xa3\x8e\x08\x3d\x2c\x05\x2f\x2b\xa9\xc4\x90\x14\x89\xf6\xbb\xf3\xf7\xff\xb2\xbe\xe9\x6f\xe0\xbf\xbc\x62\x61\x28\xcb\xf4\x12\x70\xaf\x86\x4d\xf4\x04\xf0\x5c\x27\xa7\x7e\xd9\x4b\x69\xad\xb0\x29\x47\x25\x48\x4c\x19\x5c\xd5\x6a\xc5\x8c\xe0\xd6\xdf\x9e\xec\x95\x84\x65\x7a\xed\x3b\x3f\xaf\x60\x8f\x83\xcc\x87\x46\x39\x24\xc3\x94\x4b\x4c\x78\xc1\xcb\x22\x05\xd3\xfa\x27\xcb\x27\x2c\x2f\xc9\x0f\x10\x8d\x4d\x4a\x08\x22\x10\xc7\x6b\x29\x1c\xa8\xda\xfa\x85\x1c\xa7\x64\x54\x16\x97\xbf\xe4\x2b\xc4\x59\x39\xa9\x1a\xdd\x58\xff\x70\x01\xf4\xd8\x44\x4c\x21\x06\x0e\x34\x37\xcf\x3e\xb2\x84\xeb\x10\xaf\x57\x5c\x9a\x7f\x9c\x12\xc4\xdc\xce\xf0\xfb\xd3\xd6\x7a\xbd\xc0\xd7\xd3\xe9\x10\x0c\x4a\xed\x55\xfe\xee\xcb\x6d\xab\x54\xcd\x72\x22\xe0\x2d\x66\x84\x33\xfe\xb7\x84\xd8\x92\x9b\x45\xbe\x93\x77\x62\xf4\x65\x4a\x3d\x29\x45\x2d\x54\x29\x54\x81\x36\xe7\x07\x32\xfe\x7e\x9b\xcd\x72\xa7\x6b\xac\x6d\xa6\xe4\x65\x19\x4d\xd5\xb8\x86\x0c\x4c\x4c\x9a\xea\x8a\xb1\x98\x96\xd3\x58\x61\xc0\x1d\x1e\x6e\x80\x8e\x3d\x97\xbd\x7b\x9f\xd3\xa1\xd2\xab\x87\x34\x80\x87\x19\xd2\xfa\x8d\xb0\xb5\xe7\xa4\x90\xcc\x8c\x5f\x84\x5d\x4c\x2f\x3b\x7d\xab\xe8\x10\x4e\xd6\x84\x36\xca\xaa\xce\x13\x5e\x7c\xac\x2b\x59\x48\x7f\xa7\x60\x52\x13\x92\x43\x95\xc2\x54\x00\xdf\x73\xb8\xd1\x55\x45\x26\x75\xa0\x18\x9c\x58\x0c\xf8\xef\x4b\x6a\x7a\x0c\xfe\xc6\x85\x54\xe5\x0e\x9a\x07\xe5\xb6\x6e\x24\x54\x29\x2c\xdc\x1b\xe9\xe1\x0d\x90\xd9\x44\xb8\x5b\x21\x14\x1b\xa7\x3f\x8c\x8f\x73\x9d\x6f\xf8\x41\x4f\xf0\x39\xb6\x40\xae\x18\x92\x15\x6d\x8c\x17\x2a\xa4\xc4\xaf\xef\xaf\xdf\xfb\x70\xf7\x27\xa5\x37\x7f\xa4\x74\x42\xee\xad\xe5\x3b\xa9\x8c\x7e\x76\x61\x86\x5e\x56\x31\x5e\xd7\x15\x26\x05\x40\xa8\x05\xa0\x00\x8c\x95\x21\x92\xec\x76\x9e\xf3\xd1\x6e\xe7\xff\xef\xb5\x86\x01\x1c\x3c\xae\xed\x23\xea\x55\x58\x0b\x32\x0d\x6c\x47\x14\x88\xe5\x27\xac\x29\xc3\xee\xd8\xdf\x2a\x57\x57\xe7\x9e\xe3\x31\x90\x08\xee\xd0\x90\xc6\x7f\xcc\xfc\xe5\x79\xec\x0f\xb2\xae\xca\x5c\xd1\x2c\xaa\xc6\x3a\x61\xec\xa8\x73\x48\x97\x18\x7a\xf3\x70\xa2\x2a\x6c\xfa\xc6\x83\x4a\x15\x0a\xc2\x4e\x66\x38\xb7\x30\x6c\x1f\xac\x85\xd7\x72\xee\xf0\x5c\x05\x1f\x21\x2d\xfb\x11\x1c\xb7\xda\xe8\x99\xd7\x72\xb6\xdc\xdd\x7d\xb7\x5a\xee\x1e\x01\xbd\xa2\xa3\x99\xb8\x28\x30\x71\x27\x34\x12\x30\xcc\x48\xb7\x5e\x38\x29\xdb\x2e\xe5\xbb\xae\xe3\x76\xe4\x05\xe0\x9c\x58\xe0\x8a\xfe\x78\xbd\xaa\x45\xff\x22\x32\x24\x03\xa4\xac\x4a\x02\x69\xf0\x4c\x7c\x94\x16\xd8\x05\x32\x51\x41\x97\x57\xe2\x96\xd0\xef\x2a\x44\x5e\x30\x7b\x85\x0f\x0f\xea\x70\xc9\x3f\x0e\x1b\x15\xcf\xcb\x36\x77\xc3\x41\x4e\xda\xa4\x2e\xa4\x8c\xf8\x70\x57\x24\x90\x5e\x77\x0a\xbc\x8c\x93\x86\x83\xff\x93\x7f\x65\x85\x11\x5c\x31\x3e\xb1\xba\x6a\x5c\xd4\x43\x0e\xc5\xc7\x33\xf6\x55\xd0\xd9\x85\x29\xfc\x63\x74\x26\xfc\x84\x41\x88\x62\xee\xad\xf8\x18\x9e\x3d\x5f\x9c\xfe\xf3\xd1\x88\x9d\x77\x00\xf9\xfd\xe3\x55\xd1\x60\x14\x02\xbc\x29\x32\x70\x93\x95\x7f\x87\xa8\xd2\x23\x59\xea\x5b\x35\x62\xd7\xc0\xa0\x3c\x70\x27\x45\x29\x9c\x7a\x51\xf3\x8a\x7f\xbc\x6a\xcc\x0c\xcc\x16\xa7\xa3\x90\x3a\x84\x7a\xcf\x57\xff\xdc\x7a\x7f\xf7\x50\xda\xfa\xa1\xf7\x45\xe3\x94\xe5\xcd\x27\xfa\x46\xe4\x97\x4b\x40\xbc\x35\x78\x74\x0f\x04\x0f\xe7\x35\x90\x9d\x08\x1e\x08\xd6\x25\xd5\x8f\x19\x1b\x20\xc1\xd6\xb7\x26\x3e\x58\x77\xda\xa0\xa6\xee\x23\x7a\x12\x5e\x37\xd2\x68\xf5\xb0\x32\x3c\x9b\x24\x09\xf1\x26\xf8\x28\x48\xe5\x74\x9a\x49\xf5\xc1\xdf\xf9\xd1\xd2\xde\x46\x8e\xb1\x1b\x6e\x24\x46\x5a\xcb\x75\x35\x33\x3a\x8a\x92\x23\x62\xfc\xfa\xfc\xd5\x8b\xab\xcb\xf3\xe7\x2f\xfc\x8b\xf7\xf2\xcd\xb7\x7f\xf5\xbf\xc0\x47\xaf\xf6\xcf\xe6\xc7\xa0\x44\xa5\x50\xfb\xa5\x70\xdb\xf5\x8c\x10\x8b\x8e\xb4\x24\x3b\x54\x46\x08\x7c\xf1\x27\x5a\xe4\x7b\x13\xe9\x4b\xe8\x74\xf5\x8f\x0c\xab\xb9\x73\xf5\xb0\x36\xfa\xe3\xf6\x28\xe3\x4b\xa3\x6b\x3e\x83\x94\x14\xb0\x87\xfd\xe9\xfa\xfa\xf2\xaf\x97\x6f\xdf\xfc\xc7\x5f\xfc\xae\xf8\x9f\xae\xe8\x47\xc4\xed\xf5\x9b\xf0\x63\x77\xff\x73\x0e\xb8\x03\xb7\x1b\x6e\xf6\x8f\xd7\xe9\xa5\x03\xdd\x5c\xbc\xcc\xe2\x76\x7a\x79\x2e\x08\x68\xa8\xcd\xb3\x52\x8e\x7f\xf4\x2c\xfe\xc3\x8b\xbf\x3c\xfb\xe9\xfc\xe5\x8f\x2f\x82\x52\x35\x7e\xf5\x97\xbf\xfe\x74\xfe\xf6\xd9\x60\xb9\x42\x8b\xd9\x00\x7d\x2f\xfe\x76\xc2\xfb\x54\x14\xc2\x3f\xa8\x04\x44\x32\x65\xcf\xe1\x60\xd3\x02\x6b\xd1\x54\x7a\x3d\xb1\x17\xe3\xa4\x9c\x09\x63\xb4\x19\xce\xb9\x2a\xab\x87\x7c\x46\xb5\xa6\x21\x3b\x10\xcd\x44\x67\x3d\x1c\x0d\x3a\xdd\x2f\xfc\x00\xf6\xa7\x88\x17\x63\xa8\xee\x7a\xc2\xae\x53\x98\x9e\x9b\x8f\xe0\x9c\x1a\x31\xdd\xd1\x1b\x02\x24\x63\x81\x64\x46\x4c\xd1\x9f\x1f\x03\xc4\xb4\x61\x53\x2f\xbd\xbd\x94\xf3\xcf\x84\x90\x3a\x9b\x45\xa3\x85\x49\x67\xc5\x03\xd6\x16\xfb\xe3\x73\x76\x0d\x3b\x38\xe3\x66\xc2\x67\x62\x58\xf8\x27\x6a\xe1\x2c\x5a\x22\xe3\x33\x25\x16\xf6\x51\x9a\x55\x5a\xcd\x84\x61\x4a\x14\xc2\x5a\x4e\xa1\x39\x4d\xad\xdb\xee\x66\x0a\x2f\x7f\x04\xbb\x1a\x2a\xa1\xad\x86\x05\x2f\xe6\xb9\x26\x32\x93\x6e\xde\x4c\x46\x85\x5e\x9e\xa0\xcb\xe2\x84\x5c\x15\x27\xf5\x62\x76\xc2\x6b\x69\xf1\x17\x27\x37\x5f\x9c\x20\x0e\xdf\x06\x58\xcf\xfd\xe7\xfd\x3a\xec\x41\xfc\x88\x1e\x6f\x0c\xe6\x25\x41\xe4\xd7\x79\x1c\x4c\xbe\xe3\x10\x04\xea\xc5\x68\x29\xed\x22\x37\x5f\x62\x64\xd3\x38\x13\x93\xf4\x9b\x23\xaf\x0d\x78\x39\xe3\x15\x87\x33\x82\x6b\xc4\x52\xdf\x04\x3d\x82\xfc\xe6\x79\x94\x5e\xa6\x30\xcc\x8a\x3a\x54\x59\xf8\x15\x4a\xa3\xfc\x51\xeb\x59\x15\x2a\xa4\xec\x59\x20\x05\xc7\x02\x41\x3a\xe3\xb7\x41\xde\x96\x7a\x4b\x2e\xfd\x98\x7e\xbb\x25\xf5\x76\xc3\x54\xad\xb4\xdb\x27\x41\xd0\x67\xce\xac\x0d\x69\xb7\x33\x00\xd7\xd9\x84\x9e\x42\x29\xd9\xca\x53\x71\x96\xcf\x2b\x94\x42\xd1\x01\x9b\xb3\x47\x67\x75\xd1\x41\x6c\x2d\x81\xb4\xe7\x93\xda\x68\x7f\x35\x40\x5e\x68\xfa\x77\x4c\x63\xec\x19\x11\x42\xab\x42\x3a\x21\xe4\x16\x7a\x86\x3b\xa3\xbf\xd0\x1f\xa0\x4a\xdb\x20\x25\xd1\x46\x32\x7f\x76\x22\x6d\x27\x0e\xe3\xd1\x90\xc2\x03\x59\x3b\xc2\x23\xdb\x4c\x52\x29\x3d\x4c\xf1\xac\x9b\x89\x6d\x26\x43\xdb\x4c\xd2\xec\xeb\x03\xb7\x96\x47\xe9\x19\x73\x77\x75\x94\x3b\x06\xac\x17\x47\xe9\x5b\xca\x6f\xb5\x51\x3a\x46\x21\x62\xa2\xbd\xf3\x22\x2f\x71\x28\xe4\x7c\x66\x72\xec\x79\xa5\x9b\xb2\x27\xcc\x31\x63\xc0\xfd\xa7\xe2\x6e\x0e\xfe\x86\x54\x63\x94\x32\xc3\x7e\x10\x2b\xf6\x9d\xac\xc4\x36\x11\xdf\x15\xf2\x1b\xaa\xa2\x48\xe5\x5f\x97\x45\x7f\x92\xe8\x67\x54\x42\xb9\x20\xb8\x5e\x61\x33\x9a\x17\xf3\x76\x12\x69\xa6\xc9\xf7\xdf\x06\x29\x3d\xec\xb7\x14\xd3\xdf\x52\x4c\xff\x8e\x53\x4c\x3b\x94\xcb\x2f\x0e\x0a\x4b\xd6\x99\xd3\x84\x98\xfd\xb2\x99\x5c\x35\x13\xe6\x74\x2d\x8b\x28\x48\x17\x42\xd4\x94\x6e\xaa\xa7\x31\xe3\x34\x1a\x18\xb8\x9d\xcb\x42\x9b\xfa\xe1\xab\xba\xfc\x29\x4c\xb5\x57\x55\x97\x38\xea\x09\x8b\x55\x5d\x36\x43\xdb\xa7\x9a\x0b\xaa\x93\x00\x76\x93\x4a\x99\x26\xb9\xc1\x49\xee\xaa\xe1\xb2\x49\x91\xec\x90\xb8\xab\x42\xf6\x2d\xf0\xbe\xea\xec\x6d\xd0\x99\x3a\x18\xad\x29\x4c\xdd\xbf\x3b\xbd\x10\xea\xd9\x00\xfe\x13\x15\x88\xee\x47\xb5\x36\xee\xd9\xc0\xff\xef\xa0\x7f\x8e\x99\x54\xe2\xd9\x00\xff\xdb\xfb\x49\x06\x61\xd3\x24\x58\x90\xf9\xd9\x00\xff\xfb\x0f\xaf\x75\xcc\xb5\xdd\xbf\xf0\xc3\x9f\xb4\x75\xeb\x35\xcd\x3c\xd9\xf7\xd7\x27\x20\x87\xa3\x0b\x0a\xb7\x78\x7f\xbc\xe2\x61\x43\x00\xeb\x80\x81\x01\xf7\x86\x0b\xa3\x40\xeb\xc1\xec\xf1\x8e\xe4\xe8\x84\xdb\x7e\x42\x61\x8b\x54\x25\x7c\xc3\x0c\x71\xbb\x04\xaf\xa0\x7c\xf6\x43\x99\x92\x70\x82\xcd\x1e\xdc\xc0\x55\xe1\x8a\xa3\xef\x6b\xa3\x27\xc2\xb2\x90\x35\xba\xd1\xfa\xfa\x98\x0b\x46\x57\xf2\x46\x28\x61\xa1\x48\xdf\x44\x0c\x77\xc6\x2b\x64\x09\xe1\x3d\x1c\xa0\x20\xc9\xfa\xf2\x63\x7b\x12\xc2\x82\xb1\x08\xf6\xba\x9d\x16\x14\xb1\xda\xb9\x2c\xfd\x55\xab\x24\x3d\xc6\x57\x50\x31\x0a\x0c\x69\xed\x41\x33\x59\xa7\xfe\x74\x7d\x7d\xb9\x01\x03\xa9\xa4\x93\xbc\x1a\x42\xfa\xc7\x76\x57\xf6\xeb\xe8\xc2\x0b\x0e\x6c\x3e\x75\xd4\xca\x20\x91\x60\xce\x2d\x46\x9f\x79\x76\xc1\x90\xad\x1c\xbf\xb4\x5f\x13\x81\xa1\x51\x1e\x07\xd7\x4d\x41\x24\x0c\x9d\x5c\x8a\x70\x63\x7f\x12\x6e\x98\xe2\xd5\x43\x20\x0f\xd9\x32\xdd\xb8\x7e\x8e\x01\xbd\x6e\xfb\xb4\x7f\xd2\xb7\x4c\x4f\x1d\x0a\x9b\x5a\x18\x34\xce\xaf\xcd\xd6\xbf\xff\x0d\x56\x6f\x72\x73\xaf\x0c\xea\x6a\x87\xe9\x5e\x51\x86\x68\xa1\x95\x05\xd5\xe0\xc6\xeb\x89\x00\x46\xa4\x70\x82\xee\x4a\x35\x85\xfa\x51\xd0\x00\xed\x00\x8d\x9b\x36\x15\x91\x6a\xce\x6f\x20\xcc\x15\x83\x09\xfa\x30\xf6\x7f\x6a\x8c\xf8\x5c\x8c\x09\xcc\xbe\x08\x53\x54\x65\x0b\x59\x58\x84\x28\xbb\xc9\xb7\xbc\x94\x9f\x7f\xf0\x23\x98\x4f\x3a\xf9\x29\xae\x68\x1d\xad\xfb\x3d\xf9\x5d\x3c\xef\x3a\xfa\x09\x87\x5f\xf3\xec\xc7\x59\x77\x3a\xfc\x09\xc7\x7b\x3c\xfd\x5d\x22\xf5\x1e\xff\x8c\x71\x3e\xf7\xfc\x77\xe6\xdb\xc0\x07\x0f\x25\x01\xd6\x56\xfb\xb9\x22\x20\xe1\xfc\x50\x32\x60\x47\x94\xb7\x08\x81\x98\xc1\xaa\x20\x7a\x6a\x5f\xbd\x6b\x4d\xbb\xba\x40\x38\xfd\x0f\x57\x4c\x02\x26\xc3\x01\xd9\xd6\x62\x99\x05\x88\x7d\xea\x55\xae\xe8\xd8\xea\xc6\x41\xf4\xe0\xad\x36\x55\x19\xb2\x1e\xb2\x00\x3b\x9a\x9a\x34\x30\x92\x61\x6c\x12\xd2\x6e\xf1\x88\x7b\x91\x00\xcd\x24\x78\xc8\x7c\x07\x47\xf1\x26\xaf\xfa\xa1\x9b\x1b\xdd\xcc\xf0\x48\x8c\x43\xc8\x66\x7a\x32\x1e\x3d\x02\xad\xce\x3f\x80\x76\xd1\xd2\xf3\x74\x6f\x50\x7c\xfd\x1b\xa8\x93\x38\x4f\x6c\xf2\xf9\x65\x26\x78\x59\x62\xe2\x2f\xb2\x4b\xdc\x96\xee\x06\x34\xfe\x94\xc6\x60\x2e\x2f\x9f\x53\xfa\x52\x48\xd5\xc8\xb8\xd8\x3a\xa9\x1f\xf0\xed\x70\xe1\xe1\x13\x6f\xf3\xd8\x06\x27\x3e\x17\xb2\xfa\x24\xa1\x6a\x4e\xa8\xb0\x42\x88\xa5\x62\x55\x4b\x61\xe7\x29\x3c\xc8\x33\x76\xc1\x4d\x16\x2a\x03\x81\x41\x8d\x9b\x80\xf7\xfd\xe2\x92\x19\xae\x66\x8f\xc2\x4d\x0d\x74\xd9\x81\xdf\x32\xe5\x81\xb3\x43\x48\x61\x1c\xc6\x14\xc6\xa3\x18\x0c\xf3\xfc\xe2\xdb\xb7\xcc\x36\x13\x25\x62\x89\xa7\xd8\x3f\x83\xb0\x98\x90\xd5\xb4\x10\x75\x96\x6e\x8c\x7b\x05\x71\x41\xec\x70\xfc\xc5\xe9\x08\xfe\xff\xe4\xeb\xe3\x2f\xfe\xf5\xcb\xd1\x17\xbf\x87\x1f\xbe\xf8\xf2\xf8\x8b\x7f\xf3\x3f\x7d\x8d\x3f\xfe\x3e\x24\x1e\xa5\x67\x5b\x4b\x1b\xc0\xed\xd9\x4a\xe3\xef\x34\x05\x23\x08\x0c\xad\x01\x99\x4d\x0d\x5c\xc6\xb4\xd5\x23\xe0\xd5\x91\xd4\x27\x08\x74\x3c\x62\xdf\xc4\x49\x33\x1b\x3d\x36\x20\xc1\x9c\x60\x28\x4d\x01\x7a\x12\xd3\x2a\x8f\x2f\xf5\xcc\xa2\xb4\xc3\xa6\x26\x2a\xf0\x73\xaa\xed\x11\xf0\xff\xa0\x2b\xbd\x90\xfc\x01\x4f\xc8\xf7\x38\x43\x38\x23\x94\x6b\x69\xdb\xf5\xca\x90\x34\xe1\xd3\xef\xf9\x0d\x67\x7c\x16\x9b\xb4\x5d\x09\x01\x31\x5d\xf6\xec\xe4\x84\x10\x1e\x69\x33\x3b\x31\x02\x6a\x7c\x14\xe2\x64\xee\x96\xd5\x09\x8c\xb0\x23\xff\xef\xbf\xff\x43\x51\xf0\x61\x21\xcc\x4e\x62\x78\x2e\xd8\xe5\x8b\x57\x4c\xa8\x42\xfb\x4b\xe9\xf9\x39\xf3\x23\x53\x33\x30\xbf\x49\xd0\x37\xec\x38\xe2\x7b\x23\x8c\x9c\x86\x28\x0d\xc2\x22\x0d\x12\xf6\x38\xc4\xee\xf8\xa5\x80\x52\x3c\xae\x8d\x76\xba\xd0\x15\xe4\xcb\x41\x2d\x0e\x4b\x31\x6f\x98\x45\x50\x0d\x29\x60\xbf\x5d\x33\x3f\x9c\x0f\x3f\x08\x19\x31\x6b\x47\x76\xc3\xcd\x89\x69\xd4\x09\x99\x87\x4f\x52\x95\x19\xcf\xe6\x6d\x17\x70\xf8\x71\x58\xf0\x51\x61\x5c\x80\xeb\x0f\x4a\xe4\xaf\xd6\xd1\x23\x74\x6a\x23\x55\x21\x6b\x5e\x65\xa4\xbc\x2b\xaa\x0e\x0a\x6c\x84\x31\x87\xf6\x88\x34\x5c\xc8\xd6\x9e\x84\xc6\x3d\x52\x31\x1e\x63\x5c\x12\xdd\xc0\x5a\x15\xa5\x19\x0b\x96\x2b\x12\xe9\x81\x7d\xc3\x75\xf4\xeb\x10\x19\x07\x5c\x86\x15\x3d\x2b\xd4\x33\xbb\xb2\x4e\x2c\xcf\x96\xdc\x42\x5b\x34\x2f\xf0\xa0\xb0\x82\x7a\x36\xe7\xb7\x4e\xea\xa1\x56\x95\x54\x62\x84\x3f\x8d\xec\x4d\x11\xd3\x2b\x3d\x2a\x85\x7a\x36\xf5\xe8\xf8\xdb\x54\x57\x62\xe4\x7f\x80\x8f\xee\xd8\x8c\x14\x8a\xb4\xeb\x09\x7b\x29\xad\x57\xfa\x3d\x48\x48\xa9\x2f\xb8\x75\xa1\xe8\x53\x1e\x41\x49\xf6\x9f\x56\xf5\x23\x27\x54\x29\xca\x40\x2b\x70\x8a\x6d\x9d\xef\x15\x57\x31\x97\xa5\x67\x67\xe9\x05\x66\xd3\xbe\x4f\x2b\x3e\x0b\xb1\xbc\x61\x4a\x22\xd3\x42\xac\x58\x63\xf9\x0c\x1c\x1f\x94\x59\xf5\x2b\x6c\x35\xfe\xbc\x79\x13\x76\xd5\xeb\x82\x39\x9b\x97\xa5\x21\xfe\x4d\xcf\xbc\xc0\xc5\x20\x4d\x63\x23\x2e\xa9\xbc\x5c\x81\x02\x08\xe3\xc1\xff\x79\x3a\x08\x68\x6a\xc3\xc6\x03\xba\x49\x07\xb0\x54\x38\x40\xc7\x51\xa5\x17\xc6\xc2\x68\x4c\xa1\x82\xd8\x31\x25\x1c\x14\x0f\x80\x2b\x7a\xca\xb3\x66\x90\xe1\xe5\x3f\x78\x3a\xe8\x54\x82\xe2\xd6\xde\x6a\xb3\x4b\xc2\x16\x36\x51\xc4\xcf\x51\x1e\x82\xb3\xbb\x45\xe4\xf5\xed\x02\x6d\xbe\xb1\xc2\xc4\x85\xa1\xd7\x10\xaf\xd9\xbd\x6b\x61\xf5\x48\x03\x2c\x82\x94\x15\x64\xfa\xd7\x7f\xfd\x7a\xdc\xad\x3a\x09\x1c\xb3\xeb\x22\xe9\x73\xb2\x6d\xa4\xd0\x3b\x2a\x55\x65\x22\xd7\xb5\x4b\x2c\x59\x60\x21\x5a\x66\x62\xa4\x76\x4c\x82\xd9\x11\x09\x48\x9b\x4c\xf1\x7f\x3d\xb4\x5e\x4b\x47\xdb\xc0\xf8\x5b\x0f\xf0\x9f\xe7\x02\xd6\xb7\x7e\x78\x6d\xd6\x2f\x6e\x03\x16\xfd\xc6\xa5\x3b\xce\x12\x79\xfe\x76\xbc\x54\x52\xa8\x36\x2f\x4b\x49\x99\xd4\x81\x03\x08\x94\xd7\xea\x43\x78\xb4\x54\x7b\x2a\x34\xff\x04\xff\x1e\x7e\xb8\x59\x0e\x51\x69\x7a\xf7\xfd\x4f\xaf\x82\xd0\x86\x93\xda\xf1\x7d\xe1\x9c\x29\x67\xf5\xc3\xcd\xf2\xe1\xe2\xac\xbf\xff\xe9\x55\x27\x77\xc2\x75\xdf\x8e\xf0\x89\x57\xd6\x4d\xa3\xd6\x5a\x20\x3e\x82\x47\x4c\x29\x26\xcd\x6c\x2b\x1a\xe7\x51\xbd\x35\x62\xa9\x9d\xc0\x61\x33\x2a\x4b\x45\xc1\xc8\xf4\x4b\xcf\xca\x94\xbb\xe3\x1c\x2f\xe6\x22\x96\xb6\x62\x81\x62\x21\x34\x1f\xeb\x1d\x41\xa9\xb6\xa9\x36\xb7\xdc\x94\x78\x20\x5b\xc8\x0d\x6d\x63\x6b\xa1\xb6\xd3\xea\x0a\xbf\xc3\x5d\x70\xdc\xcc\x84\x83\xed\x91\xcb\xa5\x28\x25\x77\xa2\x5a\xe5\xa6\x47\xac\x74\x56\x71\x6b\xfd\xee\x56\x9a\xe3\x3d\x98\xa4\x96\x54\xe0\x9e\x5f\xf2\x1d\xe6\xf6\x7a\x8a\xb3\x21\x06\xc0\x0f\xa1\x3d\x4b\x09\xf7\xc4\x2c\x21\xc3\x31\x5a\x46\x2b\x3d\xb3\x1b\x6c\xc4\x6b\xa4\xa0\x9b\x6d\x17\x21\x66\xb8\xb2\x20\x9a\xc3\x6d\xc8\x5d\xb8\x0d\x35\x9c\x6a\x52\x52\x20\xa3\x5e\xdc\x56\x2b\x56\xf1\x46\xc1\x76\x79\x34\xbb\x08\x3d\x3d\xfb\xea\xf4\xf4\xab\x16\x4a\x9f\x2a\x4a\x3c\xf8\x34\x36\xa9\xbd\xdc\xda\x1d\x1b\x0a\x9f\x67\xc2\xe8\xa7\x57\x69\x28\x3b\x6c\xac\x60\xe3\x97\x52\x35\x1f\xc7\xd9\xaf\xe9\xb5\xad\x4d\x6a\x1d\xbc\xe0\x4b\x51\x61\x40\xcf\x03\x09\x8f\x30\x43\x92\x20\xdb\xb2\x34\x7e\x08\x23\xa4\x0a\x96\xa6\x47\x9b\x99\xf1\x09\x15\x59\x88\x0a\x98\xe7\x40\x17\x46\x99\x88\xe2\xcf\x94\x9b\x0b\x69\xa2\x89\xb3\x75\x35\x10\x2e\x87\xc9\x1c\x1a\x0d\x1b\x2d\x87\xd5\x4e\xaa\xe4\xf3\x0d\x75\xa6\x08\x19\x00\x06\x9a\x1f\x84\xf0\xc5\x24\x9a\x50\x27\x27\xdb\xb2\xc4\x70\xa2\x7c\x48\x73\xc4\x0f\x2f\xbe\x3d\xef\xb1\x45\x93\xc6\x40\x71\x24\xed\x94\x6b\x37\xc7\x51\xfe\xef\xd0\x2a\xde\xd8\xd4\x3c\xbe\x05\x8a\x34\xb0\x25\x57\x0d\xb6\xb5\x0f\x57\x60\x49\x22\x1c\xd4\x4c\xaa\x8f\x65\xc7\x41\xc9\xcc\xe7\xf6\xe3\x00\x78\x36\xf6\x46\x72\xa8\xd9\xe1\x75\x69\x12\x8b\x61\xb7\x31\x48\x2b\x8f\xcf\xd2\x2a\x0f\xcc\x02\xc4\x73\x66\x8f\x6c\x02\xeb\x72\x2d\x8a\x1c\x23\x3f\xf9\xb1\x10\x8f\xf5\xf6\xcd\x9b\xeb\xb3\x70\x3c\x4f\xc2\x3f\x86\x5e\xe7\x83\x28\xac\x7f\xa2\x5f\x0d\xfd\x9e\xc1\xaf\xdf\x85\xe8\x3a\x00\x4a\x8f\xa3\x2e\xce\xa8\x34\xce\x1a\x59\x8a\xf7\xf0\xa2\x58\xe9\x26\x86\x09\x42\xd9\x83\xec\xdb\x58\x79\x25\xd4\xca\x03\xc8\x4b\xe1\x78\xc9\x1d\xdf\x11\xe3\x52\xdc\xf4\x20\x5c\x8a\x9b\xdd\xf0\x2d\xc5\x8d\xa8\x74\x0d\x86\xb5\x80\x76\x87\x97\xda\x21\x74\xb9\x83\xe1\xbf\x8a\x0c\xda\x2b\xda\x2a\x96\xcd\x88\x27\x24\xaa\x36\x52\xf9\x0d\x23\xd2\xe1\x41\x48\xf5\x23\x23\x5b\xe7\xaf\x5a\x5e\x2c\x86\xa9\x08\xc9\x30\x34\xf8\xde\xae\xe7\x08\xd4\x26\x6c\x2d\x8a\xe1\xbf\xc7\xbe\xe0\x53\x29\xaa\x58\x0b\xc6\xe9\x9a\x55\x7e\x7b\xb3\x32\x27\x60\xe5\x51\xb1\xde\x07\xe1\x8d\x76\x5b\x39\x85\x8a\x47\xa0\xd0\x05\x63\x10\x2d\x46\x33\x23\x0a\x3d\x53\xf2\x17\x28\xfd\x03\xb5\x3b\xbd\xb8\x80\x2d\x0a\x09\x69\xed\x97\x24\x66\x94\x87\x00\xdf\xed\x6e\xc0\x8b\x10\x0a\x7c\x48\x4e\xda\xa3\x14\x14\x0c\x45\xf2\x88\xa2\xac\x5d\x06\xa4\xd0\xba\x2a\xf5\xad\xda\xd9\x27\xeb\x99\xfb\xd6\xef\x1a\x0e\x88\xc5\x4c\xd0\xfc\x6c\x5d\x28\x74\x14\xa6\x33\x82\xaa\xdd\xf9\xbb\xc7\xaf\xb9\x1d\x55\x1e\x16\x1f\x4b\x7f\x9c\xb6\x4c\xe8\x65\x25\xc2\xa6\x0e\xc1\x14\xb8\x1d\x41\x60\x46\x14\xa8\xd2\x46\x9e\x0e\x1e\x98\xb0\x1f\x20\xac\xdb\x18\x78\x32\xb4\xd5\xec\x54\x57\x30\xaf\x97\x84\xbc\x92\xa3\xb9\x94\x6a\x5f\x2c\x83\xd7\x76\x0b\x60\xfe\x71\x6f\xc0\x6b\xe5\x04\xfa\x00\x87\xe3\xd5\x56\x3c\x37\xa7\x06\xf2\xb2\xd4\xca\x9e\x78\xd9\x38\xf2\xff\x73\x8d\xe3\x37\x35\x4d\x97\xf1\xd8\x87\x63\xcc\x8b\x42\xc3\xd3\x24\x58\x44\x61\x23\xf0\x6a\x1a\xb1\x17\x19\x83\x12\xfd\xc1\xe8\x1a\x04\xfb\xd8\xa3\x38\xa6\xe3\x09\x55\x30\x6d\xad\x55\x0e\x0e\x42\xb8\xa1\xb8\x5f\xe7\x3e\x66\xe1\xe9\xc1\x18\x67\x0b\xb1\x3a\xc1\xc3\xba\xe4\x75\xa8\xfe\x1c\x2e\x8c\x71\x98\x0e\xbc\xde\xa1\xf8\x64\x3c\x36\xa8\x6d\x8f\xd8\x79\x78\x41\xd3\xa9\x64\x6c\xdc\xb6\x27\x50\x62\x4f\xac\xe1\x16\x6a\x7f\xfa\x13\x13\xc1\x91\x26\xc6\x3c\x77\x7a\xad\x1a\xcb\xb7\x54\x52\x2d\x08\x28\x9c\x59\xa1\x9c\x59\x05\xf1\x89\x60\x31\xdb\x24\x2c\x32\x37\x63\xc4\x4a\xe3\xc9\x85\xb3\x88\xaa\xcf\x56\x9d\x29\x7e\xb9\xae\x16\x91\x83\x88\xbc\x34\xed\x0a\x80\x64\xdb\xb5\xe1\x89\x84\xdd\x16\xc2\x90\x98\x6b\x0b\x8b\x82\x6a\x78\xa8\xa0\x42\xa5\xd0\xa8\xf3\x85\xa2\x45\xad\x7a\xaa\x7e\xea\x69\x53\x55\x11\x58\xfb\x4e\xa1\x72\x12\x08\x0f\xcd\x26\x90\x1f\x72\xfe\xea\xc5\xcb\xbf\xfe\xf0\xfa\xfc\xfa\xe2\xa7\x17\x7f\x7d\xfe\xe6\xf5\x77\x17\x7f\xfc\xf1\xed\xf9\xf5\xc5\x9b\xd7\xfe\x93\xef\xaf\xde\xbc\x8e\x5c\x97\x1a\xa0\xa4\xd5\x67\x95\x89\x71\x4b\x3c\x89\x63\xe2\x07\xe0\xd3\xc6\x63\xcd\x9a\x81\x95\x0e\x47\x49\x03\x7c\x42\x36\xdb\x75\xad\x3a\xd9\x17\xc3\x1a\x69\x53\x62\xe9\xd1\xc7\xf0\x4c\x59\x7f\x42\x6c\x79\x18\xb4\x11\x0a\x4f\x96\x6c\x9f\x97\x75\x25\xdc\xda\x86\xb7\x77\x2f\x47\x60\xce\x95\x12\xd5\x30\xe7\xb5\xed\x8f\xe9\x97\xf4\x1e\xa1\xd1\x64\x9c\xe2\x36\xa4\xf5\xeb\x69\xfb\xd9\x48\xdb\xea\xb1\x27\x39\x41\x34\xb1\x50\x3f\x35\xc0\xa1\x77\x8d\x36\xc8\x2c\xc8\x5f\x3f\xbe\xbd\xb0\xbd\x18\x4b\xb5\xf8\x6c\x7c\x4b\x61\x9d\x54\x51\xd3\x7a\x30\xa4\x83\xb5\xfa\x57\xa1\x73\xef\xbc\x9f\x40\xad\x30\x78\x5f\x72\x05\xc7\x68\xa8\xc2\x8d\xe4\x8a\x06\xfb\x9d\xe8\x75\x23\x3e\x99\x58\x30\x16\xbe\xb7\xa9\x0e\xe1\x5a\xb5\xaf\x49\xcc\x63\x9a\x08\xf4\xc1\x6c\xc6\x3c\x03\xb8\x8e\x36\x3b\xa4\x37\x21\x4f\x17\xdf\xc4\xe8\x85\x30\xa9\x5b\x46\x70\xba\x7a\x7d\x7c\x40\x02\x6c\x70\xd4\xb3\xe0\x4f\xd9\xa5\x9d\x96\x5b\x1b\x5d\x36\x85\xb8\x83\x9d\x3f\x75\x95\xad\x65\x4c\x65\xe5\x84\xa1\x8d\x1b\x06\xb6\xdd\xf9\x11\x84\xc3\xa9\xef\x18\x20\xd4\xa9\x31\x39\x17\xbc\x14\x86\x0d\x0a\x31\xa4\xfb\x79\x2e\xad\xd3\x66\x35\x08\xd5\x58\xae\xa4\x2a\x48\xfa\xd2\xc7\x73\x6e\xd9\xc4\xab\xd9\xa1\xe2\x81\x54\x4c\x89\x5b\x61\x5a\xcd\xb9\x48\x82\x1e\x67\x38\xc4\xaa\x4b\x1b\x92\x0c\x62\xa6\x86\x54\x8b\xe1\x44\xaa\x32\x26\x39\xdd\x65\x73\x42\x5d\x9a\x3e\xef\x0b\xc1\xe3\x00\x10\xac\x13\x49\xb0\x5f\x49\xb5\xf8\x26\x9b\x82\xa5\xa7\x4f\xaa\x2b\x15\x6e\x86\x78\x35\xb6\x20\x83\x45\xda\x22\xf8\x59\x25\x60\x96\x51\x5e\xac\xf7\xae\x4b\x76\x2b\x24\x76\x28\x3e\x16\xa2\x76\xed\x1e\x08\xed\x2e\x08\x92\xea\x68\xfa\x19\xd2\xd2\x70\x19\x47\x9f\xf8\x72\xce\x1e\xce\xd1\x59\x0e\xca\x6c\xb8\x90\x33\x15\x60\x4d\xb9\x1b\xa6\x14\xdc\x7b\x50\xf2\x42\x9c\xe3\xc6\xb0\xb5\xe0\xb1\x02\x12\x75\xab\x4d\x5e\xac\x35\xa8\x08\xf4\x41\xb0\xc7\x1b\x5a\x53\x64\x81\x99\xa9\x68\x1e\x9e\x86\xb7\x34\x05\x57\x9b\xa1\x07\xa4\x45\x66\x87\x18\xd2\x5b\x93\x1d\x66\x0f\xcf\xa1\xd3\xc3\x5f\x84\xd1\x47\x58\x6e\x73\xd2\x78\x49\xa3\xad\x08\x19\xc4\x58\x88\x1d\x0a\x4e\x1b\x51\x89\x1b\xae\x32\xf6\x41\x41\x02\x77\xc4\xa1\x3d\xf2\x5c\xea\xff\xc3\x55\x3b\xd0\x30\x18\xa4\x28\xd8\xf0\xef\x5e\x7b\x0b\x2f\x25\x4f\x1d\xb0\xf6\xef\x64\xda\x6d\xc5\x66\x85\x6d\xc8\x40\x91\x53\x28\xbe\xbe\xb1\xb2\xb5\x7f\x77\x0b\xc7\xc6\xf3\x9a\x8f\xb2\x8f\x47\xc4\xc9\xa3\x52\xdc\xe4\xc1\x03\x8b\x3b\x3e\xcb\x27\x3b\x1a\x31\xf6\x36\xd8\xfa\x72\x84\x4a\x5d\x34\xb1\xae\x7d\xb8\xbf\x7a\x12\x57\x37\xd1\x63\x29\x9c\x09\x5d\x6a\x3e\x97\x20\x08\x6b\x13\x45\xb2\xca\xf7\x31\xaa\x10\xef\x0c\xc3\xc6\x45\xdd\x8c\xe9\xc7\xbd\x57\x1d\xd7\x9b\x4c\x6c\xdb\x56\x8d\xa2\x71\x5b\x1c\xc3\x95\x20\x5f\x1d\xc8\x08\xe8\x66\x10\x97\x40\x66\x33\x6d\xa0\x0b\x5a\x56\xdf\xef\x10\x2b\x2f\xe3\xe5\x98\x19\x5a\xd6\x09\x75\x94\xba\x3b\x5c\xea\x72\xe7\xa5\x06\xe3\xc1\x1d\x1b\xbc\x94\x0a\x64\xc3\xd6\xea\x8c\x79\xd3\xb8\x64\x4d\xb9\x8c\xc5\x19\x53\x60\x41\x10\x83\xdc\x41\x4d\xf3\x50\xe0\x3c\x5b\x60\xa7\xdf\xe3\x81\x65\x4f\x9f\x7a\x41\xf4\xf4\x69\x76\x53\x1d\xb3\xa5\xe0\x24\x4f\x7b\x74\x20\x69\xd1\x6a\x15\xcc\x19\x64\xaf\x62\x1e\x0e\x4a\x29\xa5\x5d\xe6\xb2\xc8\xdd\x04\xa9\x75\x1c\xf8\xbe\xfa\xc9\x19\xe1\xf6\xf1\xcf\x46\x72\xf2\x8f\xbb\x91\xf3\x5c\xb1\xa6\xae\x85\x61\x18\xa5\x1c\xfd\xa6\x3d\x94\x25\x3d\x20\x99\x05\xc0\xb6\x51\x55\xa2\xca\x0e\xf1\x1a\x59\x03\x53\x78\x5d\xc9\x4b\x41\x4f\x9e\x82\xd7\x64\x9d\x05\xc0\xc8\x7e\x36\x55\xfb\xb6\x8e\x57\x15\x8d\x47\x9a\x84\x4d\xdb\xe5\x4c\x6d\xa2\x89\xd1\x55\xa5\x1b\x37\x2c\x77\x7f\x14\x07\xed\xd1\x69\x36\x33\xbc\x44\x1f\x91\x9d\xcb\x29\x24\xe2\x4f\xc1\x12\x45\xa9\x88\xdc\x09\xeb\xd8\x5b\x71\x23\x6d\x88\xfd\xb6\xa9\xac\x02\x9a\x20\x60\xfe\x58\xcb\x7e\x73\x9e\x29\x8c\x0e\xf1\x8d\xad\x66\x03\x9c\xfd\x51\x57\x3c\x6a\x6a\xd0\x77\x61\xf4\x6d\x13\xba\xa4\xe1\x3a\x52\x8d\x07\x8a\x9d\x82\xea\x9d\x54\x82\x9d\xb2\x85\xa0\x38\x20\xa0\xda\x6a\xe9\x2b\xad\x9c\xc8\x4a\xee\x94\x13\x7c\x25\x1c\xa4\x64\x8d\xa9\xa6\xf1\xb0\xd2\x05\xaf\xc6\xc7\x5d\xf5\x82\x4d\x44\xa1\x97\xd8\x0d\xcc\x40\xb0\x45\xf8\x4b\xd4\xac\x49\xef\xf7\xe4\xa5\xaa\x10\xe4\x68\x83\xa8\xaf\x50\xea\x91\xc2\xd0\x3a\x97\xce\x49\x42\x7a\x8c\xa1\xd6\x89\x59\x3a\x98\xec\x27\x9b\xef\x92\xca\x5b\x35\x84\x83\x5d\x7b\x72\x74\x89\x15\x7a\x73\xa4\x07\x23\x46\x04\x58\x36\xd7\x55\x79\xc6\xd8\xd3\x96\xc6\x05\xe1\x3b\xb1\x54\x75\xc7\x5e\xf5\x14\xd4\x8f\x1d\x9b\x7c\x90\xc6\x84\x37\x5a\xec\xcc\xb1\x4b\xbf\x8e\x70\x89\xf5\x76\xed\x48\xb5\xde\xa8\xf1\xf3\x03\xba\x8a\x5f\x52\x6b\xe9\x3b\x22\x9b\x7a\xfa\xe4\x66\x88\xb1\xa8\x48\x1f\x86\xb4\x8e\x42\x57\x1a\x0d\xc3\xc8\x0c\x47\x68\x43\x0c\x5d\xac\x27\xbc\x58\x08\x55\x32\x74\x6a\x60\xc5\xc5\xc9\x8a\xfd\xef\x86\x9b\x45\x63\x51\xa1\xbd\x05\x65\xb6\x6b\x28\x8d\x5c\x87\xbd\xeb\x42\x74\xd9\xcf\x38\x72\x24\xf5\x09\x78\x2e\xed\x09\x4d\xf5\x08\xb4\x56\xa0\xd5\x76\x34\xfc\x57\xa1\x13\x51\xa5\x67\x4c\x37\xae\x6e\xf2\x02\x05\x48\xe9\x1d\x44\xd0\x4b\x3d\xb3\x6c\x29\x2c\x44\xf6\xc6\x51\x91\xe1\xbc\xbe\xb3\x03\x94\xf3\xf2\x83\x97\xb5\x2e\xdb\x56\x54\x95\x0e\xf3\xca\xe2\x17\xaf\xbf\x7b\x93\x07\x5c\x7c\xb0\x3b\x84\x40\xbe\x81\xa5\x05\xd0\x36\x98\x4b\x3b\x60\x86\xb5\x11\xce\xad\x20\x32\x7e\x7b\x6a\x0a\xbd\x4e\x07\x38\x08\xc3\xb9\xa4\x9a\x0d\x82\x47\x02\xec\xb1\x7e\xb6\x27\x49\x1b\xf0\xf2\xf9\x21\x8b\xde\xbc\x82\x19\xda\xef\xd3\x35\x1b\x7c\xd7\x1a\xb1\x16\x41\xe1\xa9\x6e\xfc\x56\x66\x2f\xcf\x76\x23\x85\x52\xe3\xee\x80\xf9\x05\x7a\x3a\xc4\xcb\x36\x48\xb3\xa7\xb8\xda\xa7\x00\x91\x64\x1f\xbc\x1d\xb5\x82\x10\x54\x2e\x15\x0b\x75\xbb\x30\xd3\xf0\x20\xef\x28\xd6\xf6\xa4\xdc\xa2\x9f\x21\x7f\x4d\x23\xf8\x64\x74\x84\xcc\x03\x98\x07\x83\xff\xd8\xd8\xcb\xd3\xc3\x01\x7e\x77\x56\xe9\x62\x01\xbb\xe0\x44\xe5\x57\xbf\x3c\x9b\x68\x67\x07\x47\xa3\xd1\x68\x3c\x62\xaf\xdf\x5c\xbf\xc0\xda\xe9\xa9\xd4\x0d\xe3\x65\x69\xd1\x16\xc6\xa1\xab\x11\xf8\xaf\xa1\x81\xe3\x7a\x76\x63\xb7\xc0\x59\xe8\xfc\xf6\x84\x6e\x40\x23\x78\x79\x72\x6b\x64\x34\xdc\x2f\x79\x6d\xa9\xff\x14\x2f\xa9\x2e\x39\xd2\xc0\xf8\x6b\x7a\x29\x82\xa6\x80\x26\xb9\xd4\x96\x37\x19\x34\x58\x9c\xcd\xcd\xb9\x4a\x66\xc7\x35\xeb\x43\x4b\x13\xfc\x47\x2f\x62\x23\x55\x51\x35\xa5\x18\x96\x9e\x0f\xb8\xf3\xff\x68\x35\xe7\xd9\x1a\x4b\xad\x70\x15\x98\xe5\x10\x3c\x51\xc7\x6d\x7f\x25\x57\xbc\x5a\xfd\x12\xaa\x69\xa1\x29\xbf\xd0\xa5\x48\x1e\x74\x5e\x96\xed\x4e\x3b\xb1\x91\x16\xe8\x9f\x88\x5b\x32\xd0\x53\xc7\xbe\xec\x1c\x8c\xd7\x18\x1b\xfb\x80\x26\x4d\x57\xb1\x31\x78\xa8\xe9\x2f\x80\x6c\x37\x73\x34\xe5\x55\x42\xc2\xdb\xb4\x85\x53\x3b\xff\x37\xbc\xbc\x7b\x2d\xa4\x41\x3c\xec\xda\x11\xf9\x35\x79\xa4\x29\x52\x15\x0f\x44\xd6\xc9\x23\xe3\x2f\xeb\x62\x1d\x0f\x5d\x2c\x52\xd9\xfb\xa4\x5e\x0e\xfe\x67\xc6\xe0\x80\xc1\xbf\x7b\x25\x78\x31\x18\xf5\xcf\x73\x52\x09\x6e\xb3\xd8\x86\x38\x6d\x58\xe2\xf6\xc9\xef\x9e\xb6\x8f\x30\x2e\x54\x06\xde\x12\x56\xbb\xaa\x01\xe1\x1e\xd1\x1b\xa4\x01\xa4\x40\xea\x02\x3a\x51\x1d\x0e\xd0\xba\xf2\x8a\xd7\x03\x7f\x04\x07\x2f\xfd\xd2\x06\xb1\xa9\x4c\x0b\x5f\xfc\x5b\xab\xbc\x86\xd7\xd3\x87\x0b\xb1\xcb\x3b\xe3\x25\xa4\x4f\xf6\x6e\x91\x2c\x85\x72\x72\xba\xc2\xfe\x6f\xd0\x22\x56\x2b\x27\x92\x01\x1c\x88\xd7\x87\x12\x36\x84\xa4\xee\x90\xda\xcc\x4e\x32\x92\xf6\x60\x0a\xaf\xd5\x9d\x71\xcd\xde\xb6\xfb\x62\x4c\xb8\xae\x6f\x7a\x57\xf0\x7b\xec\x92\xd5\x79\x49\x61\x28\x0f\x14\xf1\xfb\x0a\xa5\x7d\x6f\x43\xe9\x78\xc5\xdf\xe8\xaa\xf1\xcf\xbc\x25\x35\x85\xa3\xe7\x7c\xa6\x71\xc3\xe2\x2e\x1f\x47\xb7\x29\x5c\xd7\xae\x2e\xb3\x83\x14\x04\xde\xbe\x0d\x40\x8a\x52\x44\x4c\x92\x03\x18\x34\x82\x2f\x89\xbe\x58\x5f\x68\xbe\xfc\xb1\xc6\x18\x0a\x4c\xd6\xf9\xf1\xfa\xbb\xe1\xd7\x99\x36\xc4\x41\xc6\xaf\xe0\xd3\xda\xe8\x02\x4d\x04\x93\x55\x7c\xd5\xb4\x6a\x72\x06\xb8\xaa\x64\xce\xc8\x08\xb4\xe6\x86\x0c\x0b\xd1\x02\x0a\xdc\x02\x98\x21\x6c\x5e\x59\xcd\x96\xbc\x14\xa9\xa9\x13\xed\x6c\x78\xa1\xc6\x60\xf4\xbc\x7d\x35\x08\x3a\x0c\x6a\xc6\xbc\x3b\x7c\x2b\x56\xab\x14\x3a\xf8\xd6\xeb\x4c\x23\x76\x05\x0d\x0e\xce\xd8\xbb\x48\x9e\xbf\x21\x79\xde\x9f\xf9\x9d\x78\x77\xb2\x10\xab\xf7\xe1\x76\xb9\x9d\x0b\x43\x61\x45\xd1\xc8\x61\xdb\x01\x63\xf0\x47\xbf\xd0\x85\x58\xc5\x98\x20\x70\x1d\xf4\x7e\x4f\x80\xfd\xc7\xd4\x58\x08\xbc\x74\xa2\x3c\xe8\x11\xa6\x9f\xc0\x0e\x59\xff\x2d\x28\x8e\xaa\x0d\x9b\x48\xc5\xcd\x8a\x0e\xbe\x3b\xba\x9b\x47\x08\xbf\xeb\x56\x4f\xb1\x1e\xfe\xc0\xb6\x8d\x41\x60\x7b\x61\xbe\x69\xbe\x1c\x64\xee\x76\x87\x3d\x6c\xc7\x45\xf3\x68\x91\xaa\x34\xc5\x33\x51\x87\x48\xcc\x3e\x08\x91\x78\xe9\x8a\x76\x94\x62\xb6\xe3\xbe\xbe\xfb\x5f\x1e\xd0\xfb\xe3\xfe\x8d\xcd\x8d\x67\xf9\xf6\x1e\xef\xb8\xb7\x3d\xbb\x9a\x1d\x04\x58\x42\x67\x64\x97\x1e\x39\x13\x90\x7c\xdb\x9f\x05\x2e\x85\xb1\x90\x96\xe2\xd8\x4f\x00\x83\x3d\xaf\xb8\x5c\x86\x7e\x20\x24\x2f\x33\x8a\xd5\x37\x05\x4c\x79\x12\x73\x69\x4e\x80\x4c\xc9\x96\xa2\x6b\xa1\x78\x2d\x1f\x4e\xe2\xfb\x3f\x9e\x5f\x5e\xb0\x6f\xaf\x5e\xde\xdd\xd2\x11\xe2\x69\x63\xeb\xbb\xec\x86\xa2\xe6\xef\xd8\x40\x36\x80\xf3\x1c\xf3\x78\xa4\xbf\x7f\x2b\xed\xb8\xdd\xd7\xf3\xd6\x03\x6b\xae\xab\xa8\x83\xf8\x35\x07\x55\x90\xe8\x90\xf6\xf1\x56\x3d\x64\x3b\x95\x37\x1e\x3c\xed\x9f\x50\x96\x5c\x61\xd4\x2f\x17\x03\xf7\xf3\x0e\x81\x13\x51\xe9\x14\xbc\x29\x3b\x17\xf7\x44\x80\x0b\x91\x46\xe1\x55\xc2\x95\x9d\x42\x9c\xa1\x52\x1a\xcd\xa7\xf8\xb8\xa4\x4a\x19\x3d\xfd\x3b\x35\x85\x17\x5a\x94\xbc\x9d\x26\x85\x8f\x80\x35\xd0\x11\x37\xcc\x56\xbc\x07\x8b\xd0\x63\x27\x27\x17\x0a\x81\x40\x4a\xd3\x4a\xd5\xa3\xb9\x90\x9a\xfb\x4f\x43\xbb\xb0\x3e\x43\x0c\x68\x2f\x27\x0f\x68\x8e\xbd\xfc\xf6\x9b\x2d\x16\xa1\x4b\x5d\x7e\x2b\xad\x69\x60\xd0\x37\x4d\x39\x13\xae\x7d\x31\x07\x97\xd2\xc5\xe3\x6b\x57\xba\x94\x6a\xd8\xd7\xd7\xef\xae\xe4\xec\x4e\xb7\xb9\xbe\xd5\xc3\xf1\x05\xdf\x90\x75\xf4\xb6\x68\xcf\xc2\xa8\x50\x18\x57\x4c\xdc\xc8\x22\x78\x9a\xba\x37\xfb\x7a\xf7\xb9\x4e\xd7\xb9\x11\x7b\xa3\xc8\x2e\x07\x5d\x0c\xa1\xf3\x57\x6b\x51\x54\x1d\xa1\xd3\xc2\x30\x46\x58\x47\xed\xa0\xeb\x98\xec\xef\x77\x78\x1f\x74\xe9\xe9\x7e\x08\xc4\x88\xb7\xfe\xe7\x91\x24\xcb\xcb\xff\x22\x7a\x3d\xd6\xa9\x22\x2d\x6a\xcd\x54\xce\xe7\x08\x29\x99\x68\xd8\xa5\x17\x52\xb1\x05\x23\xe8\xd6\x6b\x94\x8c\x27\x97\xce\xec\xc3\xdd\x1d\x9d\x8c\x4e\xf0\xee\x4c\x40\xab\xc7\xf4\x20\x68\x18\x9b\x5c\x2c\xdc\x5a\x39\x53\x58\x10\xac\x7d\x6f\x24\x40\xba\xf3\xe7\x11\xbb\x50\xac\xa0\x97\x42\xfa\x4e\xda\x2c\x65\x27\xe6\x23\x01\x55\x21\xa8\x21\xd8\x36\x29\xf3\x2c\x29\xa9\x01\x02\x05\xae\x85\x06\x04\xd2\x32\x41\xe6\x54\xd4\x5c\xa6\x4d\xe5\x1f\x2b\xd4\x13\xc1\xa2\xf2\x49\x56\x58\x61\xc4\x81\x65\x4a\x33\x25\x70\x61\xe4\xd6\x61\x9c\x15\x8d\x75\x7a\xd9\x79\xe0\x05\x5e\x8c\xd8\xa3\x6f\x4c\xab\x16\x75\x19\x69\x97\x88\xa7\x45\xcf\xa9\x65\xb7\xda\x2c\x8e\x99\xa5\xc0\x42\x9c\xda\x33\xe9\x72\x22\xc0\x44\x96\x72\xa9\xe5\xd2\xf3\x9f\x11\x33\x69\x9d\x59\x3d\x86\x9a\x75\xb8\x3b\xc3\x3c\xdb\x7a\x4b\x79\xb9\xb5\xfd\x3c\x84\xf2\xd4\x47\x89\xb6\x31\xea\xab\x87\x57\xf2\xb9\x67\x95\x9e\xb4\xd2\xb3\xfa\xe7\xbc\x50\x25\x95\xa3\x90\xd3\x36\xd8\x14\x45\x12\xf4\x1d\x04\x09\xc9\xbc\x68\xd4\xe3\x36\xc8\x5b\x3d\xa5\xbf\x26\x3b\x6c\x14\x14\xfe\x48\xee\x1f\x80\xb8\x56\x6b\xaf\x14\x4e\x14\x2e\xbd\x9d\xf3\x6e\x7d\x72\xda\x73\x04\xda\x02\x24\x2c\xe2\x50\x26\x8b\x54\xf8\x5d\xce\xa9\xe0\x28\x39\xca\xa4\x0c\xe4\x9e\x3d\x94\x7e\x50\xeb\xb2\xa3\x1f\x40\xa6\xb1\x3f\x64\xf2\x97\x96\x31\x7d\xed\xfa\x0f\x9d\xef\x5b\xf1\x01\x97\xba\xbc\xaa\x45\x71\x2d\x96\x1e\x63\x01\xe1\x10\x4d\x11\xf3\x95\x52\x3a\x4a\x0e\x6e\x3c\xf2\xa2\x61\x54\xeb\x32\x8e\x43\xcd\x43\x8a\xaa\x3c\x4e\xd9\x30\xf9\x98\xac\x6c\x1b\x86\xc7\xd0\xc8\x50\xf7\x81\x7a\x05\xcb\x82\x2d\x85\x99\x51\xb3\xec\x90\x81\xdc\x89\xa8\xf5\x72\x8c\x96\x2c\x3a\xf5\x13\xf0\x4d\x9c\x05\x38\x5a\xea\x8e\x20\x8e\xfd\x53\xbb\x89\xad\x60\x60\xf5\x99\x5c\x1d\x67\x40\xd0\x4e\xb8\xb1\x33\x7e\x6d\xf4\x52\xb8\xb9\x68\xf6\xae\x1b\xba\x8f\x7b\xf0\x32\xce\xd2\xe9\x07\x07\x51\x21\xe9\xaf\xd0\x34\x82\x3b\x28\xe4\x1e\x5c\x10\x48\xb7\x0b\x87\x77\x2a\x72\xad\x1f\xe5\xb7\xfb\x95\x56\xd2\x69\x33\x8e\x4a\x63\x2a\xda\x81\xa7\x24\x94\x99\x0c\x1d\x7b\x0d\xaf\xbb\x3e\xbe\xe0\xa3\xcf\x1d\x7d\x39\xc2\xe1\x4c\xa3\xb5\x0e\xe3\xe0\xa2\x05\x06\x0a\x6b\xe2\xb0\x57\xb2\x30\xfa\x12\xe9\x05\x20\x5f\xe1\xa7\x23\xf6\xe7\xf3\xb7\xaf\x2f\x5e\xff\x91\x1e\x89\xf0\x54\x4e\xac\xdd\xbb\x8c\xe0\x94\x41\xc6\x0e\xa1\x01\x59\x22\x60\xa1\x8d\xd0\xf6\x24\xed\xde\x30\xa0\xf9\xee\x32\xdf\x51\xa8\x17\x04\xbf\x7f\x1f\xae\xaf\x94\x59\x99\x72\x02\xf1\x85\x40\x81\x57\xa2\x1c\xb1\xbf\xe8\x06\x88\x06\x61\x90\xb5\x2e\x87\x4b\x42\x31\xdc\xbd\x54\xe5\x2b\x5e\x7f\x6b\x3b\xec\x34\xdc\x6e\x90\xb5\xae\xc9\x05\x9e\x7d\xf4\x26\xa7\x2a\xda\x85\xbb\x10\x36\x34\x39\x79\x04\x7e\xc4\x8c\x60\xbb\x38\xf6\xc8\xd4\xd6\xcf\x09\x7e\xbe\x20\xbd\x7b\x1a\xf8\xf7\x4c\xb9\xff\x73\xb1\x7f\x66\x04\xd3\x57\x28\x2d\xe3\x87\x94\xca\x80\x48\x65\x77\x47\x53\x55\x94\x74\xf9\x90\x6f\xcc\xa6\xaa\x42\xf7\x2b\x64\x1b\x8b\x09\x04\x7e\xfa\x90\x9c\x49\x66\x88\x5a\x97\x79\x0e\x78\x3e\x23\xf9\xca\x9d\x91\xe2\xa6\x2b\x86\x51\xf5\x0a\x41\x52\xe2\x23\xda\xc0\xa2\x2e\x86\x72\x21\x9f\x2e\x74\x2e\xcf\x35\xf7\x54\x62\x42\x9b\x63\x50\x3e\xbd\xda\xbb\xd2\xcd\x41\x96\x43\x89\xa2\x29\xcf\x1e\x85\x90\xd1\x34\x29\x80\x4d\x98\x05\x14\xc2\x02\xc7\xd9\x25\x75\x49\x04\x1f\x53\x65\x37\xbe\x8c\xb9\xaa\x99\xd6\xee\xd1\x06\xa0\xb0\xc8\xf5\xc2\xcb\xeb\x45\x97\x57\x5e\x32\xc4\x47\xfc\x27\xa1\x0b\x42\x1a\x12\xee\x2d\x38\x8c\x40\x5e\x77\xe9\x2a\xc9\xcc\x4d\x21\x83\xa1\xec\x04\x1e\xa8\xb8\xf0\x52\x0b\x0b\xef\x2c\xd0\xd6\x7b\xb0\xf1\x0b\x04\xc3\x24\xac\xef\x18\xd1\xe7\x2a\x1e\x75\x7f\xa0\x71\xff\x83\xbf\xfe\xef\x5c\xb6\x50\x7f\xc2\x1d\xdd\xdd\x5d\xd6\x54\xd4\x53\xcb\xa6\x53\x01\x81\xdc\x17\x53\x56\x89\xa9\x63\xa0\x70\x23\x26\x5d\xaf\x7d\x30\xc6\xf3\x85\x50\x49\x11\xed\x65\xb9\xb4\x3f\xed\xbe\xaf\x79\x34\x84\xdf\x8f\xa1\x47\x4d\x98\x10\x12\xb1\x63\x4d\xb9\x70\x4f\xf3\x35\xad\x9b\x0a\x8a\x03\x39\xcb\x28\x72\x28\xa2\x94\xd2\x50\x68\x19\x69\xca\x78\x11\x53\x11\xce\x1c\xb3\x31\xa3\xd8\x56\x66\x74\xf4\x7b\xa5\xf9\x20\xdf\xb0\xe6\xd1\x89\xb4\x3d\x3e\xe7\x33\x0b\x09\x75\xca\xef\xc6\xe7\x4a\xa4\xf7\x9a\xc0\x4b\x56\x0a\xbc\x51\xfd\x62\x57\xb5\x60\xe3\x76\x65\xd7\x52\x17\x0b\x61\x10\xfc\x07\xab\x55\x26\xc7\x29\x20\xf1\x61\x0c\x0d\xa0\x1d\x52\xb0\xe4\xba\x6a\xe8\xb2\x3f\x86\x02\x51\x14\xac\xd4\x5f\x1b\x9e\x02\xaa\xd8\x73\xbd\xac\x65\x45\x2e\x35\xce\x28\x2c\x16\x95\x67\x3f\xee\x98\xc9\x91\x68\x47\xb5\xd4\xbc\x58\xf8\x8d\xf7\xd4\x79\x86\x03\x28\xa6\x45\x52\xfc\x98\x6d\x6a\x2a\x9a\xe1\x05\x4b\x28\x55\x73\xcc\xb8\x65\xb7\xa2\xaa\xfc\x7f\xff\x72\xfe\xea\x25\x98\x73\xfe\xe3\xd5\xcb\x96\x2f\x64\x14\x14\x58\x12\x5f\xa4\xdd\x71\xc7\x2a\xc1\xad\x63\xff\xf2\x47\xf9\x8d\xdf\x1b\x6c\xab\x4c\x5a\x2c\x9c\xcd\x56\x3c\x15\x2d\x64\xd2\xc8\x0a\xda\xe7\x81\x09\x06\x40\x92\x0d\xab\xc5\x9e\x97\xfe\xbe\x23\xfd\x0c\x86\x00\xbc\x56\xb6\x47\xf6\x37\x7a\xb4\xe4\x35\x90\x5a\x26\xd8\xb0\xfb\x47\xc7\x68\x7e\x9c\x73\x4f\x52\x05\xa5\xf5\x11\xed\x64\x88\x7c\x14\x4a\x5a\xb6\xe1\x6d\x5d\x69\xff\x5e\xdc\xc4\xa4\x97\x08\xf2\x7a\x55\x8b\x0d\x9a\x56\xe0\x66\x9a\x1c\x93\x62\x53\x21\xd0\x29\xb7\x6e\xf8\x81\x1b\x2c\x06\x4a\x5c\xd8\xd3\x60\x89\xbe\x3a\x4a\x06\xb4\x89\x76\xf3\x7c\x3c\xd8\x14\x03\x00\x4f\x94\xa8\x89\x1c\x33\x77\xab\x5b\x72\xfb\x07\x19\x63\xb8\xdb\x2e\x66\x52\x3c\x8f\x53\xe9\xa9\x08\x72\x21\x5d\x68\x45\x51\x1b\x51\x88\x52\xa8\x42\x30\x1d\xea\xff\x27\x4c\x72\x03\xb2\x2a\xb0\xe7\x05\xe9\x4c\x18\x2c\x20\xd5\xb4\x6a\xfc\xe8\xe4\xbb\xad\x9a\x5c\x30\x87\xda\x63\x7e\x4a\x62\xc6\x20\xd5\xba\x95\x29\x16\x20\x3f\x7a\x0a\x91\x4c\xa5\xb1\xae\x45\xf5\x68\x07\x41\xc3\x65\xf4\x0c\xf7\xc8\xf0\xa0\xad\x29\xcd\xc4\x47\x69\xc1\xd1\xb9\x08\x26\xd0\xa5\x7f\xdb\x8b\xb5\x02\x99\xf8\x65\x96\x17\x1a\x44\xf4\x03\xea\xc2\x6f\xc3\x2d\x90\x29\xc2\x4d\xcd\x5e\xf1\x1b\xec\xd5\x12\xea\x65\x5c\xb4\x6c\x89\x98\x56\x02\x1f\x91\x70\xaa\xb5\xf5\xba\xfd\xea\x0e\xb3\x81\x11\x5e\x75\x7b\x48\x93\xc1\x5b\x98\xa1\x3f\xe6\x08\x9b\x33\xb7\x0b\xd2\x13\x4a\xd1\xf6\x22\x6c\x66\x70\xc9\x2c\xc1\x4b\x41\x75\xcb\xf0\x15\xf0\x73\x23\x8b\x45\x18\xab\xa7\x21\x94\x06\x42\xfb\x57\xa1\x0e\x49\x8a\x17\x7e\x92\xfc\x2b\x10\x7d\x03\x42\x90\x52\xc0\xa9\x09\x10\x19\x9f\xa5\xa5\x92\x54\xc2\x48\xc8\x2d\xa9\x18\x64\xc3\xa7\x3c\x93\x90\x7e\x1e\x4d\x38\x74\xc1\xb4\x03\x6d\x42\x18\x4f\xef\x0a\xd9\x1a\xa5\xb2\x47\x33\xbe\x41\xb2\xee\xa0\xd7\xa1\x36\x68\x0a\xea\x8d\x7a\x5c\x07\x37\x3f\xb1\x46\x82\xe1\x2d\x03\x97\x6e\xe8\xd7\xa0\x84\xa7\x11\x37\x18\x5c\x21\x55\xa8\x06\x1a\xf0\x4a\x5d\x9a\xd2\x13\x49\x5a\x66\x9d\xa8\xe3\xb1\x2b\xbd\x44\x58\x57\x30\x13\xd1\x8f\x89\xce\x20\x10\x6e\xc2\x0d\x18\xf2\x33\x6a\x6e\x6d\x8a\x21\x0d\x37\xc1\x5a\x13\xd1\x27\x64\x9f\xcd\x1b\x89\x66\xf9\x32\x7c\xba\xe0\x31\x85\xe3\x10\xe0\x07\x4f\x4d\xba\xed\xc9\x98\xb4\xd4\x9e\x3c\x94\xa3\x7c\x47\x33\xd2\x9e\x46\xa4\xb8\x71\x6b\xfd\x47\xe9\xd7\xf8\x9f\x61\xcd\xdd\xfc\x19\x5e\x34\xfe\xfc\x0c\x63\xf6\xd8\xda\x97\x58\xa5\xfb\xd9\x80\x8a\xfb\x0c\xf5\x74\xe8\x5f\x46\xc3\x85\x5f\xce\xd9\xbf\x9d\xfe\xdb\x97\xff\xf0\x1d\x43\x03\xa5\x48\xa7\xd9\xbf\x99\x26\x45\xc3\xd2\x8d\x94\x1d\xbb\x15\x5b\xeb\xd7\x99\x6d\xe0\xde\x13\x41\x10\x52\x93\xb5\xe7\xe9\xce\x76\x18\x1e\x63\xa9\xf6\x95\xce\x3e\x24\x02\x27\xe4\x56\xb5\x38\xea\x21\x04\xb0\xcc\xde\xd8\x85\x0a\xbb\x1d\x4a\x00\xb0\x70\xa3\x1c\xc6\xb2\xe6\x27\x1d\x29\x12\x70\x23\xc4\x73\xb4\x0a\xaf\x56\x79\x3e\xaf\x86\xb5\xae\x64\xb1\xdf\x0e\x1d\x20\x6e\xbc\x86\x8a\x20\x81\x2e\x08\xa8\xd5\x38\xce\x4f\x10\x0e\x3b\x4c\x09\x75\x74\xcf\x08\x31\x48\x23\x96\xbf\xf8\x0f\x4e\xd8\x92\x7f\xa4\x1f\x8e\x46\xec\x79\xec\xda\x9d\xea\x4e\xb5\x93\x04\xe5\x94\x35\x10\x50\x93\x62\xb2\xc0\x44\xbf\xc3\x95\xb8\xe5\xde\xf3\x50\xb6\x85\xda\xba\x8e\x21\xb9\xed\x6a\x24\x5f\x41\x6f\x3a\x2e\x98\xa0\xb3\x2e\x0a\x21\x50\x92\x82\x03\x2d\x5b\xf2\x15\x18\xae\x40\x0d\x2c\x49\x33\x4d\xa1\x5c\x14\x54\xcd\x2b\x0c\x14\x85\x27\x33\x83\x82\xa6\x14\xe5\x85\x7e\xa4\x71\xa8\xb6\xa6\x27\x1f\x44\x41\x77\x0f\x54\x11\xf5\xf0\x1b\x1b\xbd\xad\xa9\x3e\x9a\x7f\xd3\x95\x94\x58\x3c\x8e\xd5\xda\x0e\xc5\x47\x10\xe9\x67\x6c\xec\x2a\x3b\xcc\x50\x0f\x9f\x1c\xa1\xe9\x8e\xca\xea\xe2\x05\xdd\x5a\x22\x84\xd2\x97\x88\x61\xc0\x6b\xc4\x2e\xef\x9e\x17\x2e\xf6\xb9\x9c\x85\xc5\xd7\x46\x6a\x23\xa1\x2f\x14\x16\x4c\x4b\x7e\x6b\x30\xad\x01\xcd\xd3\x62\xa8\x0d\xc1\x31\xe6\xcb\xb7\x96\xb0\x10\xab\x30\x0b\x22\xeb\x35\x75\xfa\x03\x1a\xeb\xd4\xda\x87\xc1\x64\x37\xa2\x38\xd0\x94\xa8\xc3\xeb\xda\x68\x8e\xb5\xaf\xad\x48\xae\x66\xbf\xa7\xa0\x1f\xe5\x45\xf7\xa5\x0d\xa7\x83\xe8\x60\xc7\xad\x5c\x03\x69\x12\x1f\x50\xa1\xef\xa8\x6d\xa7\xfb\x2d\xdb\xb1\x9c\xf2\xfe\xcb\xe5\xe6\x6d\x3a\x5e\x5b\x14\xde\xa4\xf8\x3d\xbf\x63\x48\x16\x93\xb9\xe1\x43\xe8\x37\x04\x0e\x1f\xa4\x34\xde\x9b\xa1\x38\x6c\x72\x06\x45\x4d\xa0\x86\x57\x80\xa7\x58\x68\x65\xe7\x9a\x3a\x16\x13\x7c\x04\x97\xe7\x7d\x36\x84\x03\xd6\x6d\x45\xb8\x55\x76\xe8\x84\x59\x12\xd1\x77\xbc\x2b\xae\x5f\x5e\xb1\x6c\x14\x8c\x38\x66\x95\x5c\x08\x36\x16\xe5\x4c\xf8\xed\xf4\x5a\x1b\xb5\xe3\xc3\x27\xae\x11\x42\x15\x66\x55\xfb\x13\xd9\x97\xe9\x9f\x24\x0a\x1e\xb0\xf5\x4c\xed\xac\x7d\xc3\x86\x7c\xed\x0e\x43\xee\xb1\x9c\x6e\xbb\x19\x68\xee\xd0\xc9\x21\xbf\x13\x43\x5a\xcc\x27\xe1\x99\x7c\x27\x3b\x35\xe7\xce\xec\xbb\x41\xa6\x67\x47\x13\x71\xed\xac\x89\xaa\x39\xa6\x64\x5b\xb0\x75\x0d\x32\x0b\x33\x04\x69\xc3\xbf\xde\x0f\xd0\x8f\x80\xa9\x2d\x9d\xa8\xe9\x6c\xf2\x63\x0a\xa5\x48\xa5\x4d\x6c\xd2\xa9\x3d\x52\xe4\x82\x0f\xae\x88\x14\x8f\x60\x04\x2f\x8f\x99\xf6\x63\x6f\x25\xfa\x46\xa2\x0b\x12\x6a\x84\xb2\x68\xf3\x66\x59\x01\x73\xb2\xf9\x0e\x4e\x06\x7b\xed\x4c\x67\x4f\xa2\x41\x61\xe3\xce\xec\x96\xab\xd4\xc7\x39\xf9\xf5\xfa\xb0\xdc\x93\x84\xeb\x03\x72\x8d\xff\x28\x79\x6d\x19\xf1\xcf\xfd\x70\x4e\x38\xfc\x10\xf8\x70\x3f\x9c\x43\x20\x03\xff\xdc\x0f\xe7\x10\xd0\x1d\xcf\x34\xff\x44\xf1\xd3\xea\x1b\xf7\xab\x49\xa0\xbe\x1b\xf6\xbe\xd9\xa9\xbd\xb2\xdf\xb8\x69\x0f\x6e\xda\xac\x0d\xed\xb8\x49\x79\x8a\x4b\x87\xc3\x28\xd4\xd1\x46\x07\x38\x50\x36\x98\x61\x5b\x5a\x75\x30\xeb\x4e\xc9\xbc\xea\xb1\xce\x20\x8f\x58\xee\xa9\x8b\xb7\x7c\x5b\x41\x00\xcb\x9c\xac\x04\x45\xdb\x11\xc8\x89\x48\x95\x34\xf2\x8c\x32\xd0\xc8\x81\x82\x06\x94\x61\x46\xe6\xe0\xb9\xe0\x95\x9b\x63\x4d\xf5\x98\x71\x60\x45\xd1\xc4\x2b\x28\xb4\x0f\x87\x80\xd3\x69\x98\x57\x54\x50\xb5\x03\x82\x74\x33\xdb\x78\x50\x88\xf0\xa5\x12\x82\x3f\x43\xe5\xa2\x6c\x89\x04\xfc\xf9\x39\x26\x13\x51\x1f\x6c\xaf\x60\x01\x67\xdc\xf0\x4a\x96\xb8\xd0\x64\x70\xb2\x73\x6d\x62\x26\x3d\x72\xd0\x61\xa8\x4d\x13\x9d\x89\x23\x7b\x53\x1c\xa5\x84\x37\x59\xcc\x43\x7c\x9c\x54\x53\xc3\x31\xa8\xcd\x2b\x74\x33\xa1\x04\x32\x5f\x4b\xcb\xef\x96\x56\xa0\xde\x92\x0f\xab\x60\x6d\x55\xd2\xef\x53\x84\x6c\x66\xe1\x3c\xb7\xed\xde\x44\x49\xf2\xa1\xde\x9f\x28\x09\x67\xfe\x1e\x45\xc9\xde\xa2\x5e\x2a\x3c\x26\x43\xaf\x9e\xe7\x1a\x3f\xd9\x64\xf6\x7d\x60\x50\x17\x93\x52\xf0\x0a\xd7\x10\x26\x08\xc5\xb2\x42\x81\x0c\xa8\x54\xea\xdf\x03\xdf\xe2\x73\x28\x2f\x2f\xf8\x56\x50\x55\xa1\x30\xe8\xbe\xd5\xba\x14\x48\xb1\x73\x81\xce\x4f\xf4\xc7\xb4\xab\x76\xe2\xab\x6b\xdd\x51\x44\xbb\x1d\x3e\x8e\xe1\x57\x36\x34\x4a\x02\xf3\x7b\xec\x3c\x56\xa4\x4c\x5f\x8d\x81\x63\x18\x9e\x85\x66\xf1\x43\x30\xc5\x24\xbf\xf3\x51\x64\x4e\xcf\x62\x49\xc4\x00\xe8\x4d\xb1\x3e\x14\x0c\x2d\xdb\x11\xaf\xa1\x44\x1b\x27\x03\x7d\xb2\x8c\x85\xd4\x0b\x74\x44\x63\x83\x78\xde\xae\xbf\xf9\x08\x02\x6b\xee\x27\x30\x1b\x8a\x6d\x40\x44\x76\xd8\x50\x25\x44\x19\x72\xb0\xc8\xa1\x9a\x4f\xab\x74\x29\x86\x9d\x16\x95\x1b\x4a\x8a\x51\xe1\x9f\xc8\x56\x9a\xca\xc3\x69\xca\xe1\x7e\xad\x4b\x71\xd9\xee\x59\x49\xbd\x58\x47\xec\x5b\x2f\xde\xbc\x84\x2c\x83\xf5\xf3\x47\x9b\x8a\x8e\x81\xb9\x9b\x8a\xc0\x8e\xf2\x9c\xd7\x8e\x73\x7c\x7f\xcf\x38\x21\x7b\x1d\xe0\x6c\xb4\xb4\xdb\xd6\xaa\xfc\x36\x47\xb7\xf8\xc1\x73\x0c\xc2\xb9\xb8\x3c\x38\x66\x07\x61\x95\x07\x2c\x6a\x4e\x07\x2f\x35\x2f\xbf\xe1\x15\x57\x85\x30\x07\x6b\x47\x3c\xab\xa0\xfc\x60\xee\xca\xb0\x29\xdf\x84\xea\xcb\x79\x5c\x7b\x63\xc9\x58\x46\x9a\x88\xff\x27\x0d\x80\x92\x50\x69\x56\xdc\x9c\x9e\x80\xdf\xc5\xd7\x76\xd8\x59\x8e\x3d\xf1\x7a\xcb\x3f\x75\x7e\xcb\xce\xe9\x02\x0b\x35\xf5\xe2\xd5\x00\x1e\x38\x7f\x33\x89\x9b\xe8\x50\x23\xd7\x42\x33\xf9\x40\x68\x15\x73\xae\x66\x8f\x22\x7e\x83\xd6\xbd\x6f\x51\xf3\x9c\xee\x8e\xb4\x04\xf6\xee\x1d\xaf\xe5\xcc\xe8\xa6\x3e\x79\x4f\xa5\xbb\xcf\xde\x2f\xa4\x2a\xcf\xde\x45\x99\x79\xf2\x1e\xec\x0f\xf1\x64\x88\x4a\x2c\xc5\xc3\x39\xf4\x81\xab\xae\xc3\x24\xfd\x0e\x81\xb6\x28\xaa\x9b\x49\x25\xed\xdc\x7f\x5a\xa0\x3d\x3b\xde\x7a\x4f\x48\xe3\xe3\x8a\xbd\xb9\x7e\x79\xc9\xb2\x30\xfb\x42\x57\x95\x28\x62\x7c\x7b\xca\xb5\x82\xe8\xc8\x35\x71\x47\x85\xb0\xa3\x59\x38\x92\x01\x01\xc7\x88\xfb\xe4\xc3\x26\x3a\x47\x3a\xb2\x43\x72\xad\x5a\xf6\xf4\xe9\xf7\x5c\x98\x99\x30\x4f\x9f\xfa\xcf\x88\xf2\x00\xf7\x8b\xd1\xef\xbe\xfa\xef\x54\x6b\xaf\x4b\x85\x0d\x81\xe1\xed\x38\xfb\xce\x20\x00\x5a\x70\x75\x70\x80\x45\x35\xe9\xd6\x23\xdb\x30\xdc\x8e\x50\x35\x03\xcb\x6a\xb0\x6b\xa2\x21\xb2\xe8\x23\x38\x0d\xf7\xee\x4d\x3d\xa6\x82\x55\x10\x69\x19\xbe\x27\x04\x5a\xe5\xd0\x61\x44\x24\x76\x7e\xe1\x77\xc5\xf0\x1e\x31\xab\x2a\x2b\x9f\x14\x6f\x06\xaf\x66\x10\x93\x7b\x3d\x2a\xce\x59\x72\xc7\x5b\xb5\xfa\xd2\xc3\x7f\xad\x64\x4e\xab\x2d\x79\x5e\x1c\x7c\x07\x9f\x30\x36\x5e\x8d\x2c\x4e\xe8\x25\x46\x0b\x88\x1e\xf6\x9f\x99\x9e\x4a\x56\x39\x36\x18\xba\xb0\x6b\x1b\x67\xfa\x7a\x7d\x03\x62\xa5\xe1\x20\x06\xa2\x32\x30\xd0\x6a\xd0\x33\xe1\x10\xa8\xb3\xe7\xb4\x30\x66\xfb\xe4\x3d\xb3\xd5\xdc\x08\xe5\x86\x10\xfc\xb2\x5d\xdd\xda\x6b\xa5\xe0\xd8\x81\xb0\x16\x0c\xad\xe9\xc4\xcd\x0d\x9c\x69\xc4\x20\x35\x4a\x75\xba\x12\x31\x4d\xf5\x81\x44\x78\xac\xe9\x07\xc1\x58\xd7\x71\x46\x8b\xa1\x72\xeb\x79\x6d\xf9\x27\xa0\x3d\x00\xf2\x87\x93\xc6\xb1\x12\x33\x8a\x29\xe8\xe4\x28\x44\xf8\x82\x62\x61\x8b\xb9\x28\x1b\x88\x18\x72\x1a\x74\x4a\xea\x17\x09\xe1\x69\x20\xc9\x38\x96\x73\xbb\x12\xa2\xa5\x63\xac\xc5\x01\xdb\x93\x42\xab\x42\xd4\xce\x9e\x10\x54\xa9\x66\xc3\x90\x37\x7d\x02\x70\x86\x5c\x95\xc3\x44\xbf\x93\x27\x2c\xaf\xe1\x5e\x0a\xc7\x65\x15\x9a\x2d\xc5\xaf\xb2\xa4\xca\x54\xd3\x18\xbc\xb2\x56\x2e\x65\xc5\xa1\x0d\x27\xd4\xab\x08\x1d\x24\xfd\x96\x03\xda\x18\xaf\x7b\xcc\xc6\x3f\x88\xd5\xbb\x67\x3f\xf9\x07\xfb\xfb\xb3\x17\xd3\xa9\x28\xdc\xbb\xb3\x2b\xec\xac\xf7\x7e\x1c\xaa\xc8\xc0\x83\x1e\x2e\x78\xfb\x73\xe3\x45\xe8\xc4\xf0\x62\x11\xc2\x69\xa0\x97\x00\x95\x8e\xc1\x66\x9c\xc1\x6b\x78\xc6\x86\x6c\x0c\xfa\xb8\xd1\x95\x18\xb5\x29\x43\x55\xef\x5e\xeb\x2b\x22\xf5\x38\x7c\xdd\xf9\x90\xaa\x14\xe7\x29\xde\x67\xaf\xf5\x0b\x4c\xdc\x3b\xfb\xdd\xe9\xe9\x29\x3e\x77\x87\x6c\x5c\x4a\xbb\x80\x78\x63\x6b\xcb\xb3\x4b\x30\x73\xe4\xf0\x31\xd2\xf9\x91\xe6\x40\xe1\xc6\xed\xa8\x9c\x41\x45\x5d\x52\xd0\x70\x20\xbc\xf6\x91\x75\xa0\x3f\x45\xd2\xd5\xee\xe6\x81\x74\xba\xa3\x04\x7a\x90\xa3\xdd\xd6\x35\x72\x6d\x21\x75\x85\x79\xfa\xb4\x8c\xaf\x2e\xd4\x70\xa6\xfc\x46\x07\x49\x06\x54\x80\x1e\xa8\x48\xdd\xb3\x28\xd9\xa0\xf3\xe9\xbb\x78\xaf\xbc\x0f\x3b\xb1\x3e\x55\x5b\x1f\x44\xf6\xde\x55\x27\x0c\xfa\x60\x2d\x54\x00\xda\xab\x16\x3e\x61\xad\xc6\xb9\x3b\xa9\x86\x71\xbe\x5e\x7d\x30\x06\x29\x6c\xd4\x09\x41\x25\x3c\xea\x5b\xf1\x06\xdd\x0f\x40\xde\xb1\x27\x7b\x68\x7e\x99\x5e\xcf\x7e\xd3\xff\x76\xd4\xff\x3a\xdb\xfd\x2b\x68\x7f\x34\xe3\x7f\xae\xee\x97\x1f\x9e\x7b\xd1\xfe\x76\xae\xd6\x99\x29\x46\x58\xec\x2d\x6a\x79\x85\x56\xd6\xf5\x2a\x7a\x10\xb8\xb3\x27\xf0\x14\x5d\xe7\x07\x67\xd3\x7c\x31\x38\x7a\xf2\xff\x03\x00\x00\xff\xff\x19\x02\xf7\xf1\xa0\xfa\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\xff\x77\x1b\x37\x92\x20\xfe\xbb\xff\x0a\x3c\xee\x67\x9f\x24\x7f\x44\x4a\xc9\x6c\x66\xb3\xba\xf3\xce\x29\x8e\x33\xa3\x24\xb6\x75\x96\x92\xb9\x79\x3e\xbf\x21\xd8\x0d\x92\x30\x9b\x40\x0f\x80\x96\xcc\xdc\xde\xff\x7e\x0f\x55\x85\x2f\xdd\x6c\x8a\xa4\x2c\x65\x47\x3b\xd9\x7d\x6f\x62\x49\x8d\x42\xa1\x50\x28\x14\xea\xab\x33\x5c\x3a\x7b\xf6\x6c\xc8\x14\x5f\x8a\x33\xf6\x3b\x5b\xf0\x4a\x3c\x63\xac\xae\xb8\x9b\x6a\xb3\x3c\x63\x53\x5e\x59\xf8\x8d\xd1\x53\x59\x09\x7b\xf6\x8c\xb1\x21\xfb\xa1\x99\x08\xa3\x84\x13\x16\x7f\x54\xdc\xc9\x1b\x01\xff\x7e\x5b\x0b\x75\x35\x97\x53\xf7\x8c\xb1\x52\xd8\xc2\xc8\xda\x49\xad\xce\xd8\xf5\x5c\xd0\x04\x0c\xe6\x65\x05\x57\x6c\x22\x58\x63\x45\xc9\x9c\x66\xbc\x71\x7a\xc9\x9d\x2c\x78\x55\xad\x58\x61\x04\x77\x82\x71\xa5\xb4\xe3\x1e\x80\x65\x6e\xce\x3d\x50\xc6\x78\x55\xe9\xdb\x08\x4b\xb3\x52\xda\x42\xdf\x08\xc3\xdc\x5c\xb0\x99\x50\xc2\x70\x27\x4a\x66\x85\xb9\x91\x85\x87\x51\xb2\x25\x5f\x08\x26\x1d\xe3\x37\x5c\x56\x7c\x52\x09\x36\xd5\x86\x9d\x5f\x5e\xb0\x25\x57\x7c\x26\x96\x42\xb9\x11\x00\x5f\x43\x53\x5a\x3f\x81\x1f\x53\xb2\xc9\x8a\x95\x62\xca\x9b\x0a\x3e\xae\x8d\xae\x85\x71\x32\x50\x05\x89\x28\x14\x7c\x0b\xc0\xdc\xaa\x16\x67\x6c\xa2\x75\x05\x3f\xb6\xe8\xf1\xb2\xbd\x7c\x1c\xc6\xb4\x09\xb3\x31\x8e\x08\x8c\xd8\x79\x55\xe1\x3f\x2d\xb3\x73\x6e\x04\x73\x73\x69\x59\xa1\x97\x4b\xad\x00\x6e\x44\x65\x35\xca\x10\xf1\x04\xdd\x8a\xc5\x2b\x98\xd6\x26\xea\xb3\x42\xab\xa9\x9c\x35\x06\xa8\xce\xf4\x14\xa8\x8a\x98\x64\xc0\x6d\x31\x17\x4b\x91\x81\xb7\xce\x48\x35\x5b\x9f\xc0\xd3\x13\x3f\xf6\xab\x6c\x2c\xfc\xa7\xd0\xca\xf1\xc2\x01\xe8\xb0\x4d\x87\x44\x59\x36\x9e\x3b\x57\x8f\x8f\xb2\xc9\x6a\xee\xe6\x3b\x4e\xe5\x3f\x65\xb7\x73\x01\x54\x12\xb0\xc3\xd2\xb2\xba\x99\x54\xd2\xce\x45\x99\xcd\x72\xd2\x9e\x42\x1b\x97\x4d\x21\x95\xdb\x00\x5f\x1b\x97\xc1\x0f\xc8\x4b\xcb\xc4\xa7\x5a\xdb\xd6\x0c\x5f\x9f\xb6\xa6\xc8\x60\x0d\xef\xbf\x22\x7f\xbe\x86\x7e\x59\xb6\x16\x85\x9c\xca\x02\xf7\x69\xd3\x22\x75\x2d\x14\xaf\xe5\xe8\xa3\xd5\x6a\x7c\x14\x4f\x3a\x9f\x4e\xa5\x92\x6e\xf5\x48\x67\xfd\xdc\x9f\x50\xcf\xa2\xca\x7a\xce\x51\x52\xcd\xd8\xed\x5c\x16\x73\xa6\x74\x29\x2c\x2c\x44\x2a\x27\x66\xc4\x65\xb5\x2e\x0f\xed\x11\xf3\xbc\x2d\x2a\x39\x93\x93\x8a\x58\x4b\xfb\x23\xe2\xd9\xa7\x6c\xfc\xf9\xd3\xea\x98\x4d\xb8\x85\x7f\xb1\x8a\x4f\x44\x65\xfd\xbf\x3c\x38\x0f\xf8\xd8\x1f\x9f\x5b\xe9\xe6\x00\xdc\x0c\x6b\x5d\xc6\x95\x7a\x31\x80\xd2\x43\x39\x39\x0c\xbf\xed\x05\x57\xeb\x12\xa5\x0d\x20\xc4\x2b\x23\x78\xb9\x62\xa6\x51\xb0\x8e\x6c\x3e\x8b\x22\xe3\xc2\x1d\x3c\x55\x19\x51\xeb\x72\x98\xf1\xc2\xdd\xd8\x9c\x57\xb7\x7c\xe5\x81\x0e\x2b\x5d\x70\x27\x2c\x5b\x36\x95\x93\x75\x25\x98\x11\x75\x25\x0b\x6e\x83\xbc\xc8\x37\x57\x22\xc1\x2c\x27\x79\xc1\x80\x76\x89\x49\x9f\x03\xdf\x3d\x3f\x5a\xc3\x2b\xdf\xa8\xad\xc8\xbd\x11\xfe\x06\xf8\x35\x70\xf3\x5f\x44\xbc\x86\xc8\x36\x19\x7a\x07\xef\x3f\xe0\x71\x3e\x58\x47\xf2\x5b\x31\x95\xca\x4b\x5b\x66\x85\xf3\xf8\xec\x7c\x1c\xf0\x28\x10\x8e\x3b\x1f\x88\x4d\x5b\xfd\x99\x58\xc3\x01\x39\xf4\x60\xab\x15\x73\x73\x6d\x05\x5b\x72\x57\xcc\xfd\xf1\xf0\x53\x03\x74\x66\x45\x25\x0a\xa7\xcd\x31\x61\x6d\x44\x05\xa2\xc3\x2f\x05\x6e\x6a\x79\x23\x14\x20\x67\x6b\x5e\x88\x23\x3c\x72\x1b\x68\x61\xe7\xba\xa9\x4a\x7f\x18\xe2\x16\x97\x04\xd7\x1f\xf8\x3b\x79\xe7\xc9\xae\x56\x69\x77\xc7\x8a\xa3\x2c\xbf\xb5\x43\x2b\x0a\x23\x9c\x1d\xa2\x36\x63\x1e\x49\xac\x1f\xf8\xfb\xe8\x0a\xa7\x62\xaf\x71\xaa\x7e\x65\xce\xdf\xf3\x84\x13\x9b\x1a\xbd\x64\xe7\x7f\xbe\x0a\x23\x61\x11\x61\xb4\x87\x98\xfd\xad\x03\x75\x83\xee\xc5\xbe\xd3\x86\x2d\xb5\xf1\xb4\xf3\x6b\x04\xda\xa1\x70\x9f\xe8\xc6\xb1\xb9\xbe\xdd\x86\x44\x9a\xc8\x6b\x86\x9c\x55\x5a\x2f\x18\x6d\x48\xa1\x97\xb5\x56\x42\x11\xaa\xa5\x2e\xec\x19\xfb\x64\xc4\xf4\x2c\xfd\xe5\xec\xac\x87\xec\xc3\xf8\xf7\x11\x2f\x75\xf1\xbe\x67\x3e\x80\x18\x3f\xfb\xc0\xce\xbd\xec\xf1\x52\x4a\x7c\x12\x45\x93\x54\x2e\x69\x91\x04\xc7\xec\x16\x58\xc1\x88\xbf\x35\x92\x54\x80\xa9\xf6\xd7\x2b\xb0\x9f\xff\x04\x40\x6a\xd8\x22\x7b\xc6\x86\xae\x8f\x21\x46\x74\xe3\xbc\x70\xa6\x11\x9b\xbe\xe1\x45\x21\xac\x1d\x2e\xc4\xea\xc5\xc0\xff\x3d\xfd\x3c\x80\x39\x36\x0c\xc3\x9f\xd3\xb0\xf4\xf3\x60\xd3\x10\x23\x66\x52\x2b\xfc\x1c\xff\x8d\x33\x5c\xc7\x3b\xce\xaf\xb3\xa5\x93\x3a\xf1\xc9\xf9\x43\xa5\x39\xc8\xba\xb0\xaf\x4d\x5d\x82\xb4\x5f\xe9\x26\x9c\x9a\x12\x0e\xb0\x87\x00\x30\x3b\xd4\xfa\x2f\x42\xa9\x0d\x9f\x13\xa1\x86\x48\xa8\x61\x58\xcb\xc0\x2f\xe6\x8e\x39\xa6\x46\xd8\x79\xe7\xeb\xbb\xa6\x09\x23\x6a\x61\xa4\x2e\x5f\x0c\x7e\x77\x7a\x7a\x7a\xba\x11\x3e\xfd\xfc\x62\xe0\x84\x75\xcf\x07\x07\x7f\xff\x6a\xd1\xa3\x3e\x9d\x12\xb3\x1c\xeb\xa5\x74\x62\x59\xb7\xd4\x9b\xbb\xde\x02\x5e\xa0\x9c\xc3\x70\xf6\x83\x58\x91\x8c\xcb\x5f\x65\x91\xa1\xee\x05\x1a\x65\x55\x3f\x68\x64\xbe\x7b\x81\x7d\x07\x43\xd7\x41\x36\x56\x0c\x49\xa4\x0f\x0b\x23\x4a\xa1\x9c\xe4\x95\x1d\xd6\x46\xdf\xc8\x52\x98\xde\xc9\xfa\xf7\x02\x2f\x6d\x26\xa7\xec\x56\xb0\x5b\xae\x5c\x7c\x6c\xce\x85\xff\x23\x28\x73\x2f\xd3\x1c\xec\x92\xe6\x60\xc5\x9c\x4b\xc5\xb8\x25\x6e\xe0\x8d\x9b\xfb\x6f\xe8\x59\xb5\x14\x6e\xae\xcb\x0c\xe7\xfe\x03\xf6\x50\x98\xbe\xf4\x4a\x06\x7b\x49\xd2\xee\x1d\x4a\xbb\xa9\xe0\xae\x31\xc0\xdf\x4a\xbb\xd6\x96\xb4\xce\xed\x43\x21\xf1\x0e\xc1\xb2\xef\x68\xde\xa9\x36\x41\xdc\xf6\x4c\x8e\x22\x60\x2f\xbe\xb8\x98\xc6\x39\xfc\xbb\x99\xb0\xc7\xa3\x59\x92\xf6\x15\x14\x23\x73\xc3\x2b\xb0\x18\xcc\x45\xb1\x80\xdf\xd2\xc4\xb4\x5f\xe2\x46\xa8\x3e\x9a\x3c\x24\x5a\x7e\xce\x59\x53\x71\xe3\xdf\xf8\x46\x58\xeb\x39\xc3\x08\xff\x4f\xcf\x2a\xa4\x06\xda\x4c\xbb\x61\x39\x5d\x9d\xe1\xc5\x22\x69\x6b\xbf\x34\x46\xf8\x13\x3a\xbc\xf1\x4c\xf9\x98\x9a\xda\xb9\x9f\x0a\x4e\xf3\xcf\xc0\xff\x3b\x6a\x6a\x61\x14\xac\x04\x47\x06\x33\xc7\x66\xa8\x0f\xad\xa9\x75\x26\x89\x1a\xd3\x67\xe8\x6b\x6d\xc2\xaf\xe9\x6a\x9b\x66\xfc\x00\x40\x1f\x40\x4f\xcb\x35\x0f\x24\x41\x1b\xa3\x75\xcd\xa3\xf3\x77\x27\x14\x57\x6e\x28\xfd\x0d\x1d\xfe\x39\xe8\xfb\xb0\xa8\xa4\xa0\x0f\xe3\x3f\xd3\x7d\xde\xff\x31\x92\x3f\x0e\xc0\x1f\x7b\xa1\x23\xf9\x3c\x37\xbf\x18\xa4\x7f\xff\x27\x29\x70\x0f\x41\xc2\x2d\x94\x69\x93\x71\x6f\x12\x6e\x82\xbe\x81\x8c\xbd\xf0\xef\xd2\xea\x36\xc1\xef\xd7\xea\xee\xfa\xb2\xad\xcd\x6d\x82\xdb\xd1\xe6\x7a\x77\xc1\x0b\xe5\x79\x33\x19\x16\x5a\x29\x51\x80\xc5\x13\xa5\xee\x8b\xc1\xda\xaf\x36\x4e\x34\xa9\xf4\xc4\x6b\xd6\xba\x51\x81\x4e\xf9\x4f\x83\xcd\x83\xc0\xbc\x2c\x95\x30\x34\xac\xfd\x33\x0c\xec\x3d\x80\x61\xc6\xa4\xdb\xe7\xf3\xfd\xa3\xeb\xad\xf1\xc0\xec\xaf\x04\x82\x6c\xbd\x86\xf1\xec\xa2\x04\x8d\x02\xc9\xec\x4f\x75\x94\xb9\xb9\x9a\x15\xce\xdb\x3d\xe7\x7a\x09\xe3\xf7\x9a\x0b\xf9\xfa\xf3\xe6\x23\x05\x7a\xfb\x9c\xe9\xc0\xdf\x73\x42\xbc\xa4\xde\xf0\xa5\xd8\x65\x85\xbf\x29\xad\xbf\x29\xad\xf7\x51\x5a\x1f\x1b\xc5\x74\x19\xb0\x2b\x18\xed\xa7\xae\xb5\x24\x1c\xe6\x82\xbd\xa2\xab\x24\x58\xbe\x49\x11\x0d\x22\x14\xd0\x0c\x3a\xc4\xa3\xa3\x4b\xd7\x01\xcc\x81\x0e\x64\x38\x8b\x57\x4e\x1b\x3e\x13\xec\x9b\x4a\x4f\x02\x86\x84\x6f\xc0\xd3\xf2\x1b\x81\xec\x80\xab\xbb\x9d\xcb\x0a\x96\x6f\x9b\xa5\x5f\x36\x28\xbd\xd9\x5a\x1f\x7d\x1d\xc2\x5a\xb6\x10\xab\xa7\xbc\x8a\x78\xab\xdf\xb5\x1f\x1b\xf8\x66\xbf\x95\x84\x75\x4c\x1a\x59\x95\x1d\xeb\xba\xd7\xaa\x1e\x2c\x3e\x82\x26\x48\x6f\x2a\x90\x26\x0a\x22\x22\x02\xea\xa5\x70\xc2\x2c\x49\x41\x66\x13\x61\x9d\x27\x1e\x77\x62\xb6\x8a\x3e\x53\x0f\x06\xe2\x1e\xc2\xcd\x2e\xd8\x45\xf2\x32\xfc\x20\x9d\x7d\x02\xbe\xc9\x1b\x61\x26\xda\x8a\x1d\xf5\x99\xf0\x39\xab\xf4\x6c\x46\x7e\x5a\xa4\x43\x7a\x04\xa2\xcf\xc5\x36\x35\x78\xf1\xa5\x63\x87\x62\x34\x1b\x11\x0a\x3f\x70\x25\x17\x81\x76\xb5\x2e\xdb\xfe\xc8\x48\xaa\x1d\xbd\x48\xe7\xac\x92\x16\xdd\x47\x71\x28\xb9\xb3\xc9\xbc\x55\x06\x11\x87\x33\x3a\x6e\x93\x91\xa0\xf0\x57\xea\xe3\xb1\x19\xde\xd8\xbd\xe6\x80\xc4\x30\x37\xc2\x58\x88\xbb\xd1\x53\x76\x5e\xf3\x22\x8e\xfb\x01\x56\x6b\x1a\xe5\xe4\x12\xa3\x6b\xc0\xd7\x25\x4a\x56\xc9\x89\xe1\x46\x0a\x7b\xcc\x10\x32\x39\xb0\x82\x65\xe0\x09\x30\x1d\x2d\x6b\x48\xab\xdf\x51\x27\x83\xfd\x1a\x2e\x86\x81\x28\x34\x3a\x28\x28\x5e\x34\x75\x3c\x7d\x23\x76\xe1\x98\xbe\x11\xc6\xc8\x52\x84\xfb\xd7\x7f\x13\x3c\xcf\x01\x84\x15\x2e\x78\xa9\xb3\x23\xcc\x2e\x89\x33\x7e\x2d\x26\xcd\xe7\xa6\x55\x3e\xcb\xd5\x4b\x10\xc4\x8f\xc8\xb1\x51\xd6\x6f\xe1\xda\x6c\x21\xf4\x8e\xc9\xb1\x63\x59\x20\x4d\xee\x76\xbd\x95\x55\xe5\x97\x05\xbb\xc2\x2b\xab\xc3\xfa\x6d\xe7\x6d\xe4\x77\xf2\x0a\xef\x12\xcb\xb8\xb5\xba\x90\xd1\x2f\x4b\x94\x8a\xf3\x3d\x01\x6e\xdf\xe9\xbd\x78\xdd\x8d\xcd\xcb\x2c\x3c\xc1\x01\x99\x6e\xfa\xbf\x35\xc2\xba\x61\x51\x37\x3b\x1e\x9d\xa5\x54\x72\xd9\x2c\x19\x5f\x82\x6a\xa5\xa7\xec\xe5\xe5\x4f\xc1\x8c\x56\x8e\x7a\x60\x2f\xc5\x52\x9b\x5d\x5f\x4b\xeb\xe0\x71\x78\xef\x0c\x95\x5c\xca\xbd\x70\xe7\x9f\x76\xc4\x1d\x21\xef\x87\xf9\x1a\xf0\x3b\x30\xc7\xe0\xb3\xfb\x31\xd4\x49\xe0\x26\x00\x02\xa2\x5f\x72\xb6\x88\x27\x35\x30\xfc\x68\xdf\x70\xb9\xfc\x5c\x72\x56\xca\xe9\x54\x18\xff\x4a\x86\xdb\x37\x84\xcb\x4d\x56\x1d\x65\x2e\x8f\x9f\xfb\xfa\x74\x7c\xd4\x9d\x16\x5e\xcd\xbb\xd0\xf0\xce\xe9\xa3\xca\xe8\x42\x50\xdf\x26\x84\x82\x7e\x70\xe1\x82\x6c\x06\x19\x89\x51\x8a\x4c\xab\x6a\xe5\x85\x0a\x4a\xe8\x31\x02\x19\xb3\x9a\x1b\xbe\xf4\x8a\x1a\x03\x03\x71\xd3\x22\x1e\x29\xa3\xc3\xbd\x89\xd8\x28\xaf\x1c\x62\x20\x5d\xd0\x68\x01\xf7\x36\x05\x51\xbb\xb1\xad\x90\xa1\xfe\xe8\xc4\x4d\x58\xdd\x8b\xc6\x1b\xb1\x03\x5a\xf7\xa2\x18\xee\x3d\xb8\x72\xd6\x51\xc4\x40\xd0\x56\xec\xd5\x8e\x78\xc1\xf9\x91\xaa\xf3\x46\x18\x61\xa8\x9e\xff\x67\xc9\xc6\xd9\x05\x30\xee\x44\xed\x85\xe9\xe4\x92\xcf\xee\x39\x5f\x18\xda\x02\x35\xac\x9b\xaa\x1a\xd6\xba\x92\x45\x2e\x06\x2e\x9b\xaa\xba\x4c\xbf\x5c\xf7\xe4\xf8\x61\x0c\x87\x85\x30\xbc\xff\x80\x80\xb7\xff\xb8\x98\xbe\xd1\xee\x12\x1f\xf5\x07\xe9\x46\x36\x20\xf6\x1f\xcd\xb3\xf4\xd2\x78\xe5\xa6\xf7\x26\x6e\xac\xd3\x4b\xf9\x4b\x78\x9d\xcc\xf9\x8d\xd4\x8d\x01\x1d\x03\x5e\x7f\xb2\xc0\x85\xcb\xa5\x30\x27\x1e\x4f\x8a\x5f\xcb\x76\xc3\x8e\xd8\x9f\xe1\x3d\xa6\xb4\x59\xc2\x8d\xc3\x55\xeb\xba\x26\x09\x68\x19\xf7\x8a\x3a\xa3\x3b\x6c\x22\x18\xc7\x08\xc5\xa6\x46\xb5\x14\x23\x36\x8f\x99\xd5\x4b\x11\xa7\x07\x4d\xdb\x1e\x33\xdb\x14\x73\xc6\x2d\x9b\x70\x57\xcc\xd9\x47\x3d\xb1\xc7\xc9\x7b\x93\x20\x16\x4e\xde\x80\x72\xeb\x5f\x0e\x14\x72\xcb\xe6\xba\x31\x51\xc1\x28\xf9\x2a\xc6\x9d\xf2\x34\x4d\x29\x2a\xff\x87\xa9\xbf\x82\x1a\x17\x62\x45\xbf\xd3\x06\x67\x26\x2c\xe0\x58\xb4\xa9\xb9\xe4\x4e\x18\xc9\xab\x40\xc4\x7c\xe5\xdc\xaf\xb9\xb5\x6d\x0c\x36\xe3\x7b\x3d\x61\x52\x59\x27\x78\xe9\xa7\xe4\xcc\x3a\xae\x4a\x6e\x4a\x56\x8a\xba\xd2\xab\xa5\x50\xee\xd8\xeb\x91\xda\xc0\xfb\x92\x5e\xc0\x46\x58\xdd\x18\xaf\xcb\x04\x11\x06\x10\xf3\x19\x4b\x2d\x2c\x04\xa2\x29\x81\x3b\x3c\x09\x3e\x30\x51\x8e\x72\xb5\x30\xbc\xae\x1c\x37\x0e\xdf\xcf\x2d\x1f\x18\x00\xce\x9e\x62\x10\xdc\x78\xc3\xab\x06\x88\x1b\x84\x6e\xa4\xc4\x19\x1b\x03\x8b\x8c\x8f\xd9\xd8\xff\xd6\xff\xf7\x6f\x0d\x37\xee\x97\xf1\x08\x8e\x9b\x69\x2a\x5a\xbf\x97\xe2\x0d\xd8\x3e\x73\xd2\x44\xb2\xf0\xae\x37\xee\x8c\x0d\x03\xf0\x33\x5c\x37\xee\x99\xf5\xd4\x0f\xfb\x7e\x6b\xa4\x73\x02\x08\x0e\x48\x25\x23\x9a\x1d\xb1\x57\xa3\xd9\x88\x40\x9c\x39\x59\x2c\xfe\x40\x9e\x93\xdf\x9f\x9e\x9e\x9e\x8e\x47\x1e\x7e\x07\xe7\xb3\xa0\x7c\xaa\xb4\xce\xcc\x2e\x17\x89\x4c\xf2\x83\x59\x51\x68\x55\x5a\x76\x48\x37\xd4\x80\x7e\x31\xf0\x37\x0b\x08\x77\x2b\x5c\xd0\x3a\x4f\x8f\x02\x4a\x1e\xee\x99\xe3\x93\x3f\x84\x08\xd1\x17\xa7\x27\x5f\xfe\x7f\xff\xa7\xae\x1a\xfb\x7f\x9f\xf7\xfd\xe7\x0f\x63\xcf\xba\x84\xe5\x99\x33\x72\x36\x13\xe6\x0f\x1e\xcc\x8b\x53\xfc\xe2\xf4\xe4\xcb\x3b\xc7\x8f\x9e\x80\x5b\x24\x50\x63\x47\x49\x1e\x38\x27\x0c\x8b\x7a\xc2\xed\x5c\x57\xdd\x57\xdc\x34\x0b\x34\xd6\x8d\x8b\x6f\x39\x8f\x5d\x29\x8a\x8a\x1b\xb2\x57\xad\xd8\xb2\xb1\x8e\xcd\xfd\xb9\x0b\x31\xc7\xdd\x29\xa4\x65\x4b\x51\xcc\xb9\x92\x76\xe9\x49\x71\xab\xcd\x82\x15\xda\x18\x51\xb8\xaa\xb5\xa4\x8e\xcf\xfb\xee\x45\x1d\x9c\x03\x8d\x38\xb3\xc2\x2b\x26\xf8\x54\xc7\x87\x5f\x32\xe0\x77\xcd\x24\xd9\x79\x8f\x42\x3d\x04\xa0\x46\x41\x42\x94\x49\xc8\x46\x16\x8f\x2b\x03\x05\x08\xf8\x4a\x94\x4c\x7c\x8a\xf6\xac\xc9\x2a\x3b\xad\x41\xc9\x3a\x4f\x32\x36\x4e\x0a\x3a\x54\x92\xc3\x7e\x4a\xc1\xbd\x8e\x81\x5f\x8a\xcc\xc2\x43\xe7\x80\xb0\x22\x98\x74\xd6\xd3\x57\x28\x75\xe1\xb0\x0c\xc3\xdf\x36\x4c\x76\x28\xdd\xc1\x81\x65\x64\x35\x67\x52\x65\x2f\xf5\xb1\x36\xb3\x11\x07\xcb\xc8\x08\x0c\x00\xa3\xc5\x59\x30\x04\xc0\xf1\x27\x7b\xc8\xea\x68\xc4\xd8\x15\x1a\x9d\x44\xd9\x95\x81\x45\x63\xbc\x56\x5a\xad\xce\x02\xba\x41\x74\x10\x6a\xfe\x26\x8b\xa2\xef\x20\x63\x81\x29\xaf\xaa\x09\x5a\xe9\xef\x3e\x5f\x3f\x91\x8f\x24\xe8\x55\xb8\xdf\x72\x59\x57\x90\xf7\xd4\xf2\xfa\xe1\xec\x4c\xa8\x12\x0d\xa3\x87\x61\xea\xa3\xb8\xf5\xf1\x96\x71\x66\x45\x26\xfb\x2d\x57\xd6\xba\x54\x6e\xb3\xb2\x42\x22\x14\xab\x75\xd5\x68\x23\x4b\x5f\xd1\xee\xdb\x10\x43\xe2\x8c\xe0\x2e\x01\x73\x29\x52\xc3\xe2\x95\xe8\xa7\x65\x3f\xf3\x4a\x96\xcc\xdf\x3b\xf9\x49\xf5\x57\xc2\x00\x92\x56\x06\x67\x98\x5e\x16\x31\x05\x35\xda\x34\x2a\x83\x5c\xad\xfe\x9b\xff\xfe\x3b\x6d\x26\xb2\x1c\x44\x7d\xf5\xe8\xcc\x33\xde\x44\x96\x01\x70\x86\x8b\x69\x94\x57\x39\x16\xb2\xae\x3d\xc9\x14\xc4\x42\x34\x8a\xc9\xa9\xe7\x2d\xaf\x22\x59\xf8\x79\xce\xad\x3a\x38\x70\x6c\x2a\x15\xa6\xf2\xac\x84\x83\xc9\xde\x89\xba\xe2\x85\x18\x04\x2e\x29\xb8\x2a\x44\x65\x13\xfb\xc4\xfc\x94\x8f\xfe\xce\x03\xa3\x1c\x8c\xb0\x4c\xba\xa0\x9b\x28\x71\xcb\xb4\x12\x07\xfb\x5a\x00\xce\x5b\xcf\x7f\xd4\x28\xfa\xf6\x39\x08\x4e\x10\x02\xbc\xaa\x48\x22\x7a\x0a\x87\x67\x88\x74\x73\x61\x50\x49\x88\x76\xf6\x4c\x69\x42\x0b\xbc\x7f\x05\xc2\xc3\xea\xae\xb3\x90\xc9\x59\x1b\x0e\xd7\x91\xbf\x35\x38\xab\xb9\xb5\xf2\x46\x64\xd0\x04\x5c\x8f\xa5\xf4\x82\x74\x0c\x47\x7c\xed\x23\x7f\x4a\xfd\xf3\x80\xe0\x86\x57\x36\x25\x02\x79\xfd\xbb\x8b\xa4\xed\x08\x73\x72\x6f\x00\x96\x49\x33\xa6\x6b\x3e\xca\xce\xa0\x51\x44\x01\x49\xc8\x7d\xb1\x1c\xaf\x0d\xf1\x1f\x8f\x4f\x4f\xbe\x60\xcf\xf1\xff\xc7\xc7\xe4\xa9\x18\xff\xee\xab\xa5\xbf\xba\x83\xcc\xf8\xea\xd4\x8e\xc9\xe0\xda\x7e\xd4\x11\xa1\x87\xa5\xe0\x65\x25\x95\x18\x92\x22\xd1\x7e\x77\xfe\xfe\x5f\xd6\x37\xfd\x2d\xfc\x97\x57\x2c\x0c\x65\x99\x5e\x02\xee\xd5\xb0\x89\x9e\x00\x9e\xeb\xe4\xd4\x2f\x7b\x29\xad\x15\x36\xe5\xa8\x04\x89\x29\x83\xab\x5a\xad\x98\x11\xdc\xfa\xdb\x93\xbd\x96\xb0\x4c\xaf\x7d\xe7\xe7\x15\xec\x71\x90\xf9\xd0\x28\x87\x64\x98\x72\x89\x09\x2f\x78\x59\xa4\x60\x5a\xff\x64\xb9\xc7\xf2\x92\xfc\x00\xd1\xd8\xa4\x84\x20\x02\x71\xbc\x96\xc2\x81\xaa\xad\x5f\xc8\x71\x4a\x46\x65\x71\xf9\x4b\xbe\x42\x9c\x95\x93\xaa\xd1\x8d\xf5\x0f\x17\x40\x8f\x4d\xc4\x14\x62\xe0\x40\x73\xf3\xec\x23\x4b\xb8\x0e\xf1\x7a\xc5\xa5\xf9\xc7\x29\x41\xcc\xed\x0c\xbf\x3f\x6d\xad\xd7\x0b\x7c\x3d\x9d\x0e\xc1\xa0\xd4\x5e\xe5\xef\xbe\xdc\xb6\x4a\xd5\x2c\x27\x02\xde\x62\x46\x38\xe3\x7f\x4b\x88\x2d\xb9\x59\xe4\x3b\x79\x27\x46\x5f\xa6\xd4\x93\x52\xd4\x42\x95\x42\x15\x68\x73\x7e\x24\xe3\xef\xb7\xd9\x2c\x77\xba\xc6\xda\x66\x4a\x5e\x96\xd1\x54\x8d\x6b\xc8\xc0\xc4\xa4\xa9\xae\x18\x8b\x69\x39\x8d\x15\x06\xdc\xe1\xe1\x06\xe8\xd8\x73\xd9\xfb\x0f\x39\x1d\x2a\xbd\x7a\x4c\x03\x78\x98\x21\xad\xdf\x08\x5b\x7b\x4e\x0a\xc9\xcc\xf8\x45\xd8\xc5\xf4\xb2\xd3\xb7\x8a\x0e\xe1\x64\x4d\x68\xa3\xac\xea\x3c\xe1\xc5\xa7\xba\x92\x85\xf4\x77\x0a\x26\x35\x21\x39\x54\x29\x4c\x05\xf0\x3d\x87\x1b\x5d\x55\x64\x52\x07\x8a\xc1\x89\xc5\x80\xff\xbe\xa4\xa6\xa7\xe0\x6f\x5c\x48\x55\xee\xa0\x79\x50\x6e\xeb\x46\x42\x95\xc2\xc2\xbd\x91\x1e\xde\x00\x99\x4d\x84\xbb\x15\x42\xb1\x71\xfa\xc3\xf8\x38\xd7\xf9\x86\x1f\xf5\x04\x9f\x63\x0b\xe4\x8a\x21\x59\xd1\xc6\x78\xa1\x42\x4a\xfc\xfa\xfe\xfa\xbd\x0f\x77\x7f\x52\x7a\xf3\x47\x4a\x27\xe4\xde\x5a\xbe\x93\xca\xe8\x67\x17\x66\xe8\x65\x15\xe3\x75\x5d\x61\x52\x00\x84\x5a\x00\x0a\xc0\x58\x19\x22\xc9\x6e\xe7\x39\x1f\xed\x76\xfe\xff\xde\x68\x18\xc0\xc1\xe3\xda\x3e\xa2\x5e\x85\xb5\x20\xd3\xc0\x76\x44\x81\x58\x7e\xc2\x9a\x32\xec\x8e\xfd\xad\x72\x75\x75\xee\x39\x1e\x03\x89\xe0\x0e\x0d\x69\xfc\xc7\xcc\x5f\x9e\xc7\xfe\x20\xeb\xaa\xcc\x15\xcd\xa2\x6a\xac\x13\xc6\x8e\x3a\x87\x74\x89\xa1\x37\x8f\x27\xaa\xc2\xa6\x6f\x3c\xa8\x54\xa1\x20\xec\x64\x86\x73\x0b\xc3\xf6\xc1\x5a\x78\x2d\xe7\x0e\xcf\x55\xf0\x11\xd2\xb2\x9f\xc0\x71\xab\x8d\x9e\x79\x2d\x67\xcb\xdd\xdd\x77\xab\xe5\xee\x11\xd0\x2b\x3a\x9a\x89\x8b\x02\x13\x77\x42\x23\x01\xc3\x8c\x74\xeb\x85\x93\xb2\xed\x52\xbe\xeb\x3a\x6e\x47\x5e\x00\xce\x89\x05\xae\xe8\x8f\xd7\xab\x5a\xf4\x2f\x22\x43\x32\x40\xca\xaa\x24\x90\x06\xcf\xc4\x27\x69\x81\x5d\x20\x13\x15\x74\x79\x25\x6e\x09\xfd\xae\x42\xe4\x05\xb3\x57\xf8\xf0\xa0\x0e\x97\xfc\xd3\xb0\x51\xf1\xbc\x6c\x73\x37\x1c\xe4\xa4\x4d\xea\x42\xca\x88\x0f\x77\x45\x02\xe9\x75\xa7\xc0\xcb\x38\x69\x38\xf8\x3f\xfb\x57\x56\x18\xc1\x15\xe3\x13\xab\xab\xc6\x45\x3d\xe4\x50\x7c\x3a\x63\x5f\x05\x9d\x5d\x98\xc2\x3f\x46\x67\xc2\x4f\x18\x84\x28\xe6\xde\x8a\x4f\xe1\xd9\xf3\xc5\xe9\x3f\x1f\x8d\xd8\x79\x07\x90\xdf\x3f\x5e\x15\x0d\x46\x21\xc0\x9b\x22\x03\x37\x59\xf9\x77\x88\x2a\x3d\x92\xa5\xbe\x55\x23\x76\x0d\x0c\xca\x03\x77\x52\x94\xc2\xa9\x17\x35\xaf\xf9\xa7\xab\xc6\xcc\xc0\x6c\x71\x3a\x0a\xa9\x43\xa8\xf7\x7c\xf5\xcf\xad\xf7\x77\x0f\xa5\xad\x1f\xfa\x50\x34\x4e\x59\xde\x7c\xa2\x6f\x44\x7e\xb9\x04\xc4\x5b\x83\x47\x0f\x40\xf0\x70\x5e\x03\xd9\x89\xe0\x81\x60\x5d\x52\xfd\x94\xb1\x01\x12\x6c\x7d\x6b\xe2\x83\x75\xa7\x0d\x6a\xea\x3e\xa2\x27\xe1\x75\x23\x8d\x56\x8f\x2b\xc3\xb3\x49\x92\x10\x6f\x82\x8f\x82\x54\x4e\xa7\x99\x54\x1f\xfd\x9d\x1f\x2d\xed\x6d\xe4\x18\xbb\xe1\x46\x62\xa4\xb5\x5c\x57\x33\xa3\xa3\x28\x39\x22\xc6\x6f\xce\x5f\xbf\xba\xba\x3c\x7f\xf9\xca\xbf\x78\x2f\xdf\x7e\xfb\x57\xff\x0b\x7c\xf4\x6a\xff\x6c\x7e\x0a\x4a\x54\x0a\xb5\x5f\x0a\xb7\x5d\xcf\x08\xb1\xe8\x48\x4b\xb2\x43\x65\x84\xc0\x17\x7f\xa2\x45\xbe\x37\x91\xbe\x84\x4e\x57\xff\xc8\xb0\x9a\x3b\x57\x0f\x6b\xa3\x3f\x6d\x8f\x32\xbe\x34\xba\xe6\x33\x48\x49\x01\x7b\xd8\x9f\xae\xaf\x2f\xff\x7a\xf9\xee\xed\xff\xfa\x8b\xdf\x15\xff\xd3\x15\xfd\x88\xb8\xbd\x79\x1b\x7e\xec\xee\x7f\xce\x01\x77\xe0\x76\xc3\xcd\xfe\xf1\x3a\xbd\x74\xa0\x9b\x8b\x97\x59\xdc\x4e\x2f\xcf\x05\x01\x0d\xb5\x79\x56\xca\xf1\x4f\x9e\xc5\x7f\x78\xf5\x97\x17\x3f\x9f\xff\xf8\xd3\xab\xa0\x54\x8d\x5f\xff\xe5\xaf\x3f\x9f\xbf\x7b\x31\x58\xae\xd0\x62\x36\x40\xdf\x8b\xbf\x9d\xf0\x3e\x15\x85\xf0\x0f\x2a\x01\x91\x4c\xd9\x73\x38\xd8\xb4\xc0\x5a\x34\x95\x5e\x4f\xec\xc5\x38\x29\x67\xc2\x18\x6d\x86\x73\xae\xca\xea\x31\x9f\x51\xad\x69\xc8\x0e\x44\x33\xd1\x59\x0f\x47\x83\x4e\xf7\x2b\x3f\x80\xfd\x29\xe2\xc5\x18\xaa\xbb\x9e\xb0\xeb\x14\xa6\xe7\xe6\x13\x38\xa7\x46\x4c\x77\xf4\x86\x00\xc9\x58\x20\x99\x11\x53\xf4\xe7\xc7\x00\x31\x6d\xd8\xd4\x4b\x6f\x2f\xe5\xfc\x33\x21\xa4\xce\x66\xd1\x68\x61\xd2\x59\xf1\x88\xb5\xc5\xfe\xf8\x92\x5d\xc3\x0e\xce\xb8\x99\xf0\x99\x18\x16\xfe\x89\x5a\x38\x8b\x96\xc8\xf8\x4c\x89\x85\x7d\x94\x66\x95\x56\x33\x61\x98\x12\x85\xb0\x96\x53\x68\x4e\x53\xeb\xb6\xbb\x99\xc2\xcb\x9f\xc0\xae\x86\x4a\x68\xab\x61\xc1\x8b\x79\xae\x89\xcc\xa4\x9b\x37\x93\x51\xa1\x97\x27\xe8\xb2\x38\x21\x57\xc5\x49\xbd\x98\x9d\xf0\x5a\x5a\xfc\xc5\xc9\xcd\x17\x27\x88\xc3\xb7\x01\xd6\x4b\xff\x79\xbf\x0e\x7b\x10\x3f\xa2\xc7\x1b\x83\x79\x49\x10\xf9\x75\x1e\x07\x93\xef\x38\x04\x81\x7a\x31\x5a\x4a\xbb\xc8\xcd\x97\x18\xd9\x34\xce\xc4\x24\xfd\xe6\xc8\x6b\x03\x5e\xce\x78\xc5\xe1\x8c\xe0\x1a\xb1\xd4\x37\x41\x8f\x20\xbf\x79\x1e\xa5\x97\x29\x0c\xb3\xa2\x0e\x55\x16\x7e\x85\xd2\x28\x7f\xd4\x7a\x56\x85\x0a\x29\x7b\x16\x48\xc1\xb1\x40\x90\xce\xf8\x6d\x90\xb7\xa5\xde\x92\x4b\x3f\xa6\xdf\x6e\x49\xbd\xdd\x30\x55\x2b\xed\xf6\x59\x10\xf4\x99\x33\x6b\x43\xda\xed\x0c\xc0\x75\x36\xa1\xa7\x50\x4a\xb6\xf2\x54\x9c\xe5\xf3\x0a\xa5\x50\x74\xc0\xe6\xec\xd1\x59\x5d\x74\x10\x5b\x4b\x20\xed\xf9\xa4\x36\xda\x5f\x0d\x90\x17\x9a\xfe\x1d\xd3\x18\x7b\x46\x84\xd0\xaa\x90\x4e\x08\xb9\x85\x9e\xe1\xce\xe8\x2f\xf4\x07\xa8\xd2\x36\x48\x49\xb4\x91\xcc\x9f\x9d\x48\xdb\x89\xc3\x78\x32\xa4\xf0\x40\xd6\x8e\xf0\xc8\x36\x93\x54\x4a\x0f\x53\x3c\xeb\x66\x62\x9b\xc9\xd0\x36\x93\x34\xfb\xfa\xc0\xad\xe5\x51\x7a\xc6\xdc\x5d\x1d\xe5\x8e\x01\xeb\xc5\x51\xfa\x96\xf2\x5b\x6d\x94\x8e\x51\x88\x98\x68\xef\xbc\xc8\x4b\x1c\x0a\x39\x9f\x99\x1c\x7b\x59\xe9\xa6\xec\x09\x73\xcc\x18\x70\xff\xa9\xb8\x9b\x83\xbf\x21\xd5\x18\xa5\xcc\xb0\x1f\xc4\x8a\x7d\x27\x2b\xb1\x4d\xc4\x77\x85\xfc\x86\xaa\x28\x52\xf9\xd7\x65\xd1\x9f\x24\xfa\x19\x95\x50\x2e\x08\xae\x57\xd8\x8c\xe6\xc5\xbc\x9d\x44\x9a\x69\xf2\xfd\xb7\x41\x4a\x0f\xfb\x2d\xc5\xf4\xb7\x14\xd3\xbf\xe3\x14\xd3\x0e\xe5\xf2\x8b\x83\xc2\x92\x75\xe6\x34\x21\x66\xbf\x6c\x26\x57\xcd\x84\x39\x5d\xcb\x22\x0a\xd2\x85\x10\x35\xa5\x9b\xea\x69\xcc\x38\x8d\x06\x06\x6e\xe7\xb2\xd0\xa6\x7e\xfc\xaa\x2e\x7f\x0a\x53\xed\x55\xd5\x25\x8e\x7a\xc6\x62\x55\x97\xcd\xd0\xf6\xa9\xe6\x82\xea\x24\x80\xdd\xa4\x52\xa6\x49\x6e\x70\x92\xbb\x6a\xb8\x6c\x52\x24\x3b\x24\xee\xaa\x90\x7d\x0b\x7c\xa8\x3a\x7b\x1b\x74\xa6\x0e\x46\x6b\x0a\x53\xf7\xef\x4e\x2f\x84\x7a\x31\x80\xff\x44\x05\xa2\xfb\x51\xad\x8d\x7b\x31\xf0\xff\x3b\xe8\x9f\x63\x26\x95\x78\x31\xc0\xff\xf6\x7e\x92\x41\xd8\x34\x09\x16\x64\x7e\x31\xc0\xff\xfe\xc3\x6b\x1d\x73\x6d\xf7\x2f\xfc\xf0\x27\x6d\xdd\x7a\x4d\x33\x4f\xf6\xfd\xf5\x09\xc8\xe1\xe8\x82\xc2\x2d\xde\x1f\xaf\x78\xd8\x10\xc0\x3a\x60\x60\xc0\xbd\xe1\xc2\x28\xd0\x7a\x30\x7b\xbc\x23\x39\x3a\xe1\xb6\xf7\x28\x6c\x91\xaa\x84\x6f\x98\x21\x6e\x97\xe0\x15\x94\xcf\x7e\x2c\x53\x12\x4e\xb0\xd9\x83\x1b\xb8\x2a\x5c\x71\xf4\x7d\x6d\xf4\x44\x58\x16\xb2\x46\x37\x5a\x5f\x9f\x72\xc1\xe8\x4a\xde\x08\x25\x2c\x14\xe9\x9b\x88\xe1\xce\x78\x85\x2c\x21\xbc\x87\x03\x14\x24\x59\x5f\x7e\x6c\x4f\x42\x58\x30\x16\xc1\x5e\xb7\xd3\x82\x22\x56\x3b\x97\xa5\xbf\x6a\x95\xa4\xc7\xf8\x0a\x2a\x46\x81\x21\xad\x3d\x68\x26\xeb\xd4\x9f\xae\xaf\x2f\x37\x60\x20\x95\x74\x92\x57\x43\x48\xff\xd8\xee\xca\x7e\x13\x5d\x78\xc1\x81\xcd\xa7\x8e\x5a\x19\x24\x12\xcc\xb9\xc5\xe8\x33\xcf\x2e\x18\xb2\x95\xe3\x97\xf6\x6b\x22\x30\x34\xca\xe3\xe0\xba\x29\x88\x84\xa1\x93\x4b\x11\x6e\xec\x7b\xe1\x86\x29\x5e\x3d\x04\xf2\x90\x2d\xd3\x8d\xeb\xe7\x18\xd0\xeb\xb6\x4f\xfb\x27\x7d\xcb\xf4\xd4\xa1\xb0\xa9\x85\x41\xe3\xfc\xda\x6c\xfd\xfb\xdf\x60\xf5\x26\x37\xf7\xca\xa0\xae\x76\x98\xee\x35\x65\x88\x16\x5a\x59\x50\x0d\x6e\xbc\x9e\x08\x60\x44\x0a\x27\xe8\xae\x54\x53\xa8\x1f\x05\x0d\xd0\x0e\xd0\xb8\x69\x53\x11\xa9\xe6\xfc\x06\xc2\x5c\x31\x98\xa0\x0f\x63\xff\xa7\xc6\x88\xcf\xc5\x98\xc0\xec\x8b\x30\x45\x55\xb6\x90\x85\x45\x88\xb2\x9b\x7c\xcb\x4b\xf9\xf9\x07\x3f\x82\xb9\xd7\xc9\x4f\x71\x45\xeb\x68\x3d\xec\xc9\xef\xe2\x79\xd7\xd1\x4f\x38\xfc\x9a\x67\x3f\xce\xba\xd3\xe1\x4f\x38\x3e\xe0\xe9\xef\x12\xa9\xf7\xf8\x67\x8c\xf3\xb9\xe7\xbf\x33\xdf\x06\x3e\x78\x2c\x09\xb0\xb6\xda\xcf\x15\x01\x09\xe7\xc7\x92\x01\x3b\xa2\xbc\x45\x08\xc4\x0c\x56\x05\xd1\x53\xfb\xea\x5d\x6b\xda\xd5\x05\xc2\xe9\x7f\xb8\x62\x12\x30\x19\x0e\xc8\xb6\x16\xcb\x2c\x40\xec\x53\xaf\x72\x45\xc7\x56\x37\x0e\xa2\x07\x6f\xb5\xa9\xca\x90\xf5\x90\x05\xd8\xd1\xd4\xa4\x81\x91\x0c\x63\x93\x90\x76\x8b\x47\xdc\x8b\x04\x68\x26\xc1\x43\xe6\x3b\x38\x8a\x37\x79\xd5\x0f\xdd\xdc\xe8\x66\x86\x47\x62\x1c\x42\x36\xd3\x93\xf1\xe8\x09\x68\x75\xfe\x01\xb4\x8b\x96\x9e\xa7\x7b\x83\xe2\xeb\xdf\x40\x9d\xc4\x79\x62\x93\xcf\x2f\x33\xc1\xcb\x12\x13\x7f\x91\x5d\xe2\xb6\x74\x37\xa0\xf1\xa7\x34\x06\x73\x79\xf9\x9c\xd2\x97\x42\xaa\x46\xc6\xc5\xd6\x49\xfd\x88\x6f\x87\x0b\x0f\x9f\x78\x9b\xc7\x36\x38\xf1\xb9\x90\xd5\x27\x09\x55\x73\x42\x85\x15\x42\x2c\x15\xab\x5a\x0a\x3b\x4f\xe1\x41\x9e\xb1\x0b\x6e\xb2\x50\x19\x08\x0c\x6a\xdc\x04\xbc\xef\x17\x97\xcc\x70\x35\x7b\x12\x6e\x6a\xa0\xcb\x0e\xfc\x96\x29\x0f\x9c\x1d\x42\x0a\xe3\x30\xa6\x30\x1e\xc5\x60\x98\x97\x17\xdf\xbe\x63\xb6\x99\x28\x11\x4b\x3c\xc5\xfe\x19\x84\xc5\x84\xac\xa6\x85\xa8\xb3\x74\x63\xdc\x2b\x88\x0b\x62\x87\xe3\x2f\x4e\x47\xf0\xff\x27\x5f\x1f\x7f\xf1\xaf\x5f\x8e\xbe\xf8\x3d\xfc\xf0\xc5\x97\xc7\x5f\xfc\x9b\xff\xe9\x6b\xfc\xf1\xf7\x21\xf1\x28\x3d\xdb\x5a\xda\x00\x6e\xcf\x56\x1a\x7f\xa7\x29\x18\x41\x60\x68\x0d\xc8\x6c\x6a\xe0\x32\xa6\xad\x1e\x01\xaf\x8e\xa4\x3e\x41\xa0\xe3\x11\xfb\x26\x4e\x9a\xd9\xe8\xb1\x01\x09\xe6\x04\x43\x69\x0a\xd0\x93\x98\x56\x79\x7c\xa9\x67\x16\xa5\x1d\x36\x35\x51\x81\x9f\x53\x6d\x8f\x80\xff\x47\x5d\xe9\x85\xe4\x8f\x78\x42\xbe\xc7\x19\xc2\x19\xa1\x5c\x4b\xdb\xae\x57\x86\xa4\x09\x9f\x7e\xcf\x6f\x38\xe3\xb3\xd8\xa4\xed\x4a\x08\x88\xe9\xb2\x67\x27\x27\x84\xf0\x48\x9b\xd9\x89\x11\x50\xe3\xa3\x10\x27\x73\xb7\xac\x4e\x60\x84\x1d\xf9\x7f\xff\xfd\x1f\x8a\x82\x0f\x0b\x61\x76\x12\xc3\x73\xc1\x2e\x5f\xbd\x66\x42\x15\xda\x5f\x4a\x2f\xcf\x99\x1f\x99\x9a\x81\xf9\x4d\x82\xbe\x61\xc7\x11\xdf\x1b\x61\xe4\x34\x44\x69\x10\x16\x69\x90\xb0\xc7\x21\x76\xc7\x2f\x05\x94\xe2\x71\x6d\xb4\xd3\x85\xae\x20\x5f\x0e\x6a\x71\x58\x8a\x79\xc3\x2c\x82\x6a\x48\x01\xfb\xed\x9a\xf9\xe1\x7c\xf8\x41\xc8\x88\x59\x3b\xb2\x1b\x6e\x4e\x4c\xa3\x4e\xc8\x3c\x7c\x92\xaa\xcc\x78\x36\x6f\xbb\x80\xc3\x8f\xc3\x82\x8f\x0a\xe3\x02\x5c\x7f\x50\x22\x7f\xb5\x8e\x1e\xa1\x53\x1b\xa9\x0a\x59\xf3\x2a\x23\xe5\x5d\x51\x75\x50\x60\x23\x8c\x39\xb4\x47\xa4\xe1\x42\xb6\xf6\x24\x34\xee\x91\x8a\xf1\x18\xe3\x92\xe8\x06\xd6\xaa\x28\xcd\x58\xb0\x5c\x91\x48\x0f\xec\x1b\xae\xa3\x5f\x87\xc8\x38\xe0\x32\xac\xe8\x45\xa1\x5e\xd8\x95\x75\x62\x79\xb6\xe4\x16\xda\xa2\x79\x81\x07\x85\x15\xd4\x8b\x39\xbf\x75\x52\x0f\xb5\xaa\xa4\x12\x23\xfc\x69\x64\x6f\x8a\x98\x5e\xe9\x51\x29\xd4\x8b\xa9\x47\xc7\xdf\xa6\xba\x12\x23\xff\x03\x7c\x74\xc7\x66\xa4\x50\xa4\x5d\x4f\xd8\x8f\xd2\x7a\xa5\xdf\x83\x84\x94\xfa\x82\x5b\x17\x8a\x3e\xe5\x11\x94\x64\xff\x69\x55\x3f\x72\x42\x95\xa2\x0c\xb4\x02\xa7\xd8\xd6\xf9\x5e\x73\x15\x73\x59\x7a\x76\x96\x5e\x60\x36\xed\xfb\xb4\xe2\xb3\x10\xcb\x1b\xa6\x24\x32\x2d\xc4\x8a\x35\x96\xcf\xc0\xf1\x41\x99\x55\xbf\xc2\x56\xe3\xcf\x9b\x37\x61\x57\xbd\x2e\x98\xb3\x79\x59\x1a\xe2\xdf\xf4\xcc\x0b\x5c\x0c\xd2\x34\x36\xe2\x92\xca\xcb\x15\x28\x80\x30\x1e\xfc\xef\xe7\x83\x80\xa6\x36\x6c\x3c\xa0\x9b\x74\x00\x4b\x85\x03\x74\x1c\x55\x7a\x61\x2c\x8c\xc6\x14\x2a\x88\x1d\x53\xc2\x41\xf1\x00\xb8\xa2\xa7\x3c\x6b\x06\x19\x5e\xfe\x83\xe7\x83\x4e\x25\x28\x6e\xed\xad\x36\xbb\x24\x6c\x61\x13\x45\xfc\x1c\xe5\x21\x38\xbb\x5b\x44\x5e\xdf\x2e\xd0\xe6\x1b\x2b\x4c\x5c\x18\x7a\x0d\xf1\x9a\xdd\xbb\x16\x56\x8f\x34\xc0\x22\x48\x59\x41\xa6\x7f\xfd\xd7\xaf\xc7\xdd\xaa\x93\xc0\x31\xbb\x2e\x92\x3e\x27\xdb\x46\x0a\xbd\xa3\x52\x55\x26\x72\x5d\xbb\xc4\x92\x05\x16\xa2\x65\x26\x46\x6a\xc7\x24\x98\x1d\x91\x80\xb4\xc9\x14\xff\xd7\x43\xeb\xb5\x74\xb4\x0d\x8c\xbf\xf5\x00\xff\x79\x2e\x60\x7d\xeb\x87\xd7\x66\xfd\xe2\x36\x60\xd1\x6f\x5c\xba\xe3\x2c\x91\xe7\x6f\xc7\x4b\x25\x85\x6a\xf3\xb2\x94\x94\x49\x1d\x38\x80\x40\x79\xad\x3e\x84\x47\x4b\xb5\xa7\x42\xf3\x4f\xf0\xef\xe1\xc7\x9b\xe5\x10\x95\xa6\xf7\xdf\xff\xfc\x3a\x08\x6d\x38\xa9\x1d\xdf\x17\xce\x99\x72\x56\x3f\xde\x2c\x1f\x2f\xce\xfa\xfb\x9f\x5f\x77\x72\x27\x5c\xf7\xed\x08\x9f\x78\x65\xdd\x34\x6a\xad\x05\xe2\x13\x78\xc4\x94\x62\xd2\xcc\xb6\xa2\x71\x1e\xd5\x5b\x23\x96\xda\x09\x1c\x36\xa3\xb2\x54\x14\x8c\x4c\xbf\xf4\xac\x4c\xb9\x3b\xce\xf1\x62\x2e\x62\x69\x2b\x16\x28\x16\x42\xf3\xb1\xde\x11\x94\x6a\x9b\x6a\x73\xcb\x4d\x89\x07\xb2\x85\xdc\xd0\x36\xb6\x16\x6a\x3b\xad\xae\xf0\x3b\xdc\x05\xc7\xcd\x4c\x38\xd8\x1e\xb9\x5c\x8a\x52\x72\x27\xaa\x55\x6e\x7a\xc4\x4a\x67\x15\xb7\xd6\xef\x6e\xa5\x39\xde\x83\x49\x6a\x49\x05\xee\xf9\x25\xdf\x61\x6e\xaf\xa7\x38\x1b\x62\x00\xfc\x10\xda\xb3\x94\x70\x4f\xcc\x12\x32\x1c\xa3\x65\xb4\xd2\x33\xbb\xc1\x46\xbc\x46\x0a\xba\xd9\x76\x11\x62\x86\x2b\x0b\xa2\x39\xdc\x86\xdc\x85\xdb\x50\xc3\xa9\x26\x25\x05\x32\xea\xc5\x6d\xb5\x62\x15\x6f\x14\x6c\x97\x47\xb3\x8b\xd0\xf3\xb3\xaf\x4e\x4f\xbf\x6a\xa1\x74\x5f\x51\xe2\xc1\xa7\xb1\x49\xed\xe5\xd6\xee\xd8\x50\xf8\x3c\x13\x46\x3f\xbf\x4e\x43\xd9\x61\x63\x05\x1b\xff\x28\x55\xf3\x69\x9c\xfd\x9a\x5e\xdb\xda\xa4\xd6\xc1\x0b\xbe\x14\x15\x06\xf4\x3c\x92\xf0\x08\x33\x24\x09\xb2\x2d\x4b\xe3\x87\x30\x42\xaa\x60\x69\x7a\xb2\x99\x19\xf7\xa8\xc8\x42\x54\xc0\x3c\x07\xba\x30\xca\x44\x14\x7f\xa6\xdc\x5c\x48\x13\x4d\x9c\xad\xab\x81\x70\x39\x4c\xe6\xd0\x68\xd8\x68\x39\xac\x76\x52\x25\x5f\x6e\xa8\x33\x45\xc8\x00\x30\xd0\xfc\x20\x84\x2f\x26\xd1\x84\x3a\x39\xd9\x96\x25\x86\x13\xe5\x63\x9a\x23\x7e\x78\xf5\xed\x79\x8f\x2d\x9a\x34\x06\x8a\x23\x69\xa7\x5c\xbb\x39\x8e\xf2\x7f\x87\x56\xf1\xc6\xa6\xe6\xf1\x2d\x50\xa4\x81\x2d\xb9\x6a\xb0\xad\x7d\xb8\x02\x4b\x12\xe1\xa0\x66\x52\x7d\x2c\x3b\x0e\x4a\x66\x3e\xb7\x1f\x07\xc0\xb3\xb1\x37\x92\x43\xcd\x0e\xaf\x4b\x93\x58\x0c\xbb\x8d\x41\x5a\x79\x7c\x96\x56\x79\x60\x16\x20\x9e\x33\x7b\x64\x13\x58\x97\x6b\x51\xe4\x18\xf9\xc9\x8f\x85\x78\xac\x77\x6f\xdf\x5e\x9f\x85\xe3\x79\x12\xfe\x31\xf4\x3a\x1f\x44\x61\xfd\x13\xfd\x6a\xe8\xf7\x0c\x7e\xfd\x3e\x44\xd7\x01\x50\x7a\x1c\x75\x71\x46\xa5\x71\xd6\xc8\x52\x7c\x80\x17\xc5\x4a\x37\x31\x4c\x10\xca\x1e\x64\xdf\xc6\xca\x2b\xa1\x56\x1e\x40\x5e\x0a\xc7\x4b\xee\xf8\x8e\x18\x97\xe2\xa6\x07\xe1\x52\xdc\xec\x86\x6f\x29\x6e\x44\xa5\x6b\x30\xac\x05\xb4\x3b\xbc\xd4\x0e\xa1\xcb\x1d\x0c\xff\x55\x64\xd0\x5e\xd1\x56\xb1\x6c\x46\x3c\x21\x51\xb5\x91\xca\x6f\x18\x91\x0e\x0f\x42\xaa\x1f\x19\xd9\x3a\x7f\xd5\xf2\x62\x31\x4c\x45\x48\x86\xa1\xc1\xf7\x76\x3d\x47\xa0\x36\x61\x6b\x51\x0c\xff\x3d\xf6\x05\x9f\x4a\x51\xc5\x5a\x30\x4e\xd7\xac\xf2\xdb\x9b\x95\x39\x01\x2b\x8f\x8a\xf5\x3e\x08\x6f\xb4\xdb\xca\x29\x54\x3c\x02\x85\x2e\x18\x83\x68\x31\x9a\x19\x51\xe8\x99\x92\xbf\x40\xe9\x1f\xa8\xdd\xe9\xc5\x05\x6c\x51\x48\x48\x6b\xbf\x24\x31\xa3\x3c\x04\xf8\x6e\x77\x03\x5e\x84\x50\xe0\x43\x72\xd2\x1e\xa5\xa0\x60\x28\x92\x47\x14\x65\xed\x32\x20\x85\xd6\x55\xa9\x6f\xd5\xce\x3e\x59\xcf\xdc\xb7\x7e\xd7\x70\x40\x2c\x66\x82\xe6\x67\xeb\x42\xa1\xa3\x30\x9d\x11\x54\xed\xce\xdf\x3d\x7e\xcd\xed\xa8\xf2\xb0\xf8\x58\xfa\xe3\xb4\x65\x42\x2f\x2b\x11\x36\x75\x08\xa6\xc0\xed\x08\x02\x33\xa2\x40\x95\x36\xf2\x74\xf0\xc0\x84\xfd\x00\x61\xdd\xc6\xc0\x93\xa1\xad\x66\xa7\xba\x82\x79\xbd\x24\xe4\x95\x1c\xcd\xa5\x54\xfb\x62\x19\xbc\xb6\x5b\x00\xf3\x4f\x7b\x03\x5e\x2b\x27\xd0\x07\x38\x1c\xaf\xb6\xe2\xb9\x39\x35\x90\x97\xa5\x56\xf6\xc4\xcb\xc6\x91\xff\x9f\x6b\x1c\xbf\xa9\x69\xba\x8c\xc7\x3e\x1c\x63\x5e\x14\x1a\x9e\x26\xc1\x22\x0a\x1b\x81\x57\xd3\x88\xbd\xca\x18\x94\xe8\x0f\x46\xd7\x20\xd8\xc7\x1e\xc5\x31\x1d\x4f\xa8\x82\x69\x6b\xad\x72\x70\x10\xc2\x0d\xc5\xfd\x3a\xf7\x31\x0b\x4f\x0f\xc6\x38\x5b\x88\xd5\x09\x1e\xd6\x25\xaf\x43\xf5\xe7\x70\x61\x8c\xc3\x74\xe0\xf5\x0e\xc5\x27\xe3\xb1\x41\x6d\x7b\xc4\xce\xc3\x0b\x9a\x4e\x25\x63\xe3\xb6\x3d\x81\x12\x7b\x62\x0d\xb7\x50\xfb\xd3\x9f\x98\x08\x8e\x34\x31\xe6\xb9\xd3\x6b\xd5\x58\xbe\xa5\x92\x6a\x41\x40\xe1\xcc\x0a\xe5\xcc\x2a\x88\x4f\x04\x8b\xd9\x26\x61\x91\xb9\x19\x23\x56\x1a\x4f\x2e\x9c\x45\x54\x7d\xb6\xea\x4c\xf1\xcb\x75\xb5\x88\x1c\x44\xe4\xa5\x69\x57\x00\x24\xdb\xae\x0d\x4f\x24\xec\xb6\x10\x86\xc4\x5c\x5b\x58\x14\x54\xc3\x43\x05\x15\x2a\x85\x46\x9d\x2f\x14\x2d\x6a\xd5\x53\xf5\x53\x4f\x9b\xaa\x8a\xc0\xda\x77\x0a\x95\x93\x40\x78\x68\x36\x81\xfc\x90\xf3\xd7\xaf\x7e\xfc\xeb\x0f\x6f\xce\xaf\x2f\x7e\x7e\xf5\xd7\x97\x6f\xdf\x7c\x77\xf1\xc7\x9f\xde\x9d\x5f\x5f\xbc\x7d\xe3\x3f\xf9\xfe\xea\xed\x9b\xc8\x75\xa9\x01\x4a\x5a\x7d\x56\x99\x18\xb7\xc4\x93\x38\x26\x7e\x00\x3e\x6d\x3c\xd6\xac\x19\x58\xe9\x70\x94\x34\xc0\x67\x64\xb3\x5d\xd7\xaa\x93\x7d\x31\xac\x91\x36\x25\x96\x1e\x7d\x0a\xcf\x94\xf5\x27\xc4\x96\x87\x41\x1b\xa1\xf0\x64\xc9\xf6\x79\x59\x57\xc2\xad\x6d\x78\x7b\xf7\x72\x04\xe6\x5c\x29\x51\x0d\x73\x5e\xdb\xfe\x98\xfe\x91\xde\x23\x34\x9a\x8c\x53\xdc\x86\xb4\x7e\x3d\x6d\x3f\x1b\x69\x5b\x3d\xf6\x24\x27\x88\x26\x16\xea\xa7\x06\x38\xf4\xae\xd1\x06\x99\x05\xf9\xeb\xa7\x77\x17\xb6\x17\x63\xa9\x16\x9f\x8d\x6f\x29\xac\x93\x2a\x6a\x5a\x8f\x86\x74\xb0\x56\xff\x2a\x74\xee\x9d\xf7\x1e\xd4\x0a\x83\xf7\x25\x57\x70\x8c\x86\x2a\xdc\x48\xae\x68\xb0\xdf\x89\x5e\x37\xe2\xde\xc4\x82\xb1\xf0\xbd\x4d\x75\x08\xd7\xaa\x7d\x4d\x62\x1e\xd3\x44\xa0\x0f\x66\x33\xe6\x19\xc0\x75\xb4\xd9\x21\xbd\x09\x79\xba\xf8\x26\x46\x2f\x84\x49\xdd\x32\x82\xd3\xd5\xeb\xe3\x03\x12\x60\x83\xa3\x9e\x05\xdf\x67\x97\x76\x5a\x6e\x6d\x74\xd9\x14\xe2\x0e\x76\xbe\xef\x2a\x5b\xcb\x98\xca\xca\x09\x43\x1b\x37\x0c\x6c\xbb\xf3\x23\x08\x87\x53\xdf\x31\x40\xa8\x53\x63\x72\x2e\x78\x29\x0c\x1b\x14\x62\x48\xf7\xf3\x5c\x5a\xa7\xcd\x6a\x10\xaa\xb1\x5c\x49\x55\x90\xf4\xa5\x8f\xe7\xdc\xb2\x89\x57\xb3\x43\xc5\x03\xa9\x98\x12\xb7\xc2\xb4\x9a\x73\x91\x04\x3d\xce\x70\x88\x55\x97\x36\x24\x19\xc4\x4c\x0d\xa9\x16\xc3\x89\x54\x65\x4c\x72\xba\xcb\xe6\x84\xba\x34\x7d\xde\x17\x82\xc7\x01\x20\x58\x27\x92\x60\xbf\x92\x6a\xf1\x4d\x36\x05\x4b\x4f\x9f\x54\x57\x2a\xdc\x0c\xf1\x6a\x6c\x41\x06\x8b\xb4\x45\xf0\xb3\x4a\xc0\x2c\xa3\xbc\x58\xef\x5d\x97\xec\x56\x48\xec\x50\x7c\x2a\x44\xed\xda\x3d\x10\xda\x5d\x10\x24\xd5\xd1\xf4\x33\xa4\xa5\xe1\x32\x8e\xee\xf9\x72\xce\x1e\xce\xd1\x59\x0e\xca\x6c\xb8\x90\x33\x15\x60\x4d\xb9\x1b\xa6\x14\xdc\x07\x50\xf2\x42\x9c\xe3\xc6\xb0\xb5\xe0\xb1\x02\x12\x75\xab\x4d\x5e\xac\x35\xa8\x08\xf4\x41\xb0\xc7\x1b\x5a\x53\x64\x81\x99\xa9\x68\x1e\x9e\x86\x77\x34\x05\x57\x9b\xa1\x07\xa4\x45\x66\x87\x18\xd2\x5b\x93\x1d\x66\x0f\xcf\xa1\xd3\xc3\x5f\x84\xd1\x47\x58\x6e\x73\xd2\x78\x49\xa3\xad\x08\x19\xc4\x58\x88\x1d\x0a\x4e\x1b\x51\x89\x1b\xae\x32\xf6\x41\x41\x02\x77\xc4\xa1\x3d\xf2\x5c\xea\xff\xc3\x55\x3b\xd0\x30\x18\xa4\x28\xd8\xf0\xef\x5e\x7b\x0b\x2f\x25\x4f\x1d\xb0\xf6\xef\x64\xda\x6d\xc5\x66\x85\x6d\xc8\x40\x91\x53\x28\xbe\xbe\xb1\xb2\xb5\x7f\x77\x0b\xc7\xc6\xf3\x9a\x8f\xb2\x8f\x47\xc4\xc9\xa3\x52\xdc\xe4\xc1\x03\x8b\x3b\x3e\xcb\x27\x3b\x1a\x31\xf6\x2e\xd8\xfa\x72\x84\x4a\x5d\x34\xb1\xae\x7d\xb8\xbf\x7a\x12\x57\x37\xd1\x63\x29\x9c\x09\x5d\x6a\x3e\x97\x20\x08\x6b\x13\x45\xb2\xca\xf7\x31\xaa\x10\xef\x0c\xc3\xc6\x45\xdd\x8c\xe9\xc7\xbd\x57\x1d\xd7\x9b\x4c\x6c\xdb\x56\x8d\xa2\x71\x5b\x1c\xc3\x95\x20\x5f\x1d\xc8\x08\xe8\x66\x10\x97\x40\x66\x33\x6d\xa0\x0b\x5a\x56\xdf\xef\x10\x2b\x2f\xe3\xe5\x98\x19\x5a\xd6\x09\x75\x94\xba\x3b\x5c\xea\x72\xe7\xa5\x06\xe3\xc1\x1d\x1b\xbc\x94\x0a\x64\xc3\xd6\xea\x8c\x79\xd3\xb8\x64\x4d\xb9\x8c\xc5\x19\x53\x60\x41\x10\x83\xdc\x41\x4d\xf3\x50\xe0\x3c\x5b\x60\xa7\xdf\xe3\x81\x65\xcf\x9f\x7b\x41\xf4\xfc\x79\x76\x53\x1d\xb3\xa5\xe0\x24\x4f\x7b\x74\x20\x69\xd1\x6a\x15\xcc\x19\x64\xaf\x62\x1e\x0e\x4a\x29\xa5\x5d\xe6\xb2\xc8\xdd\x04\xa9\x75\x1c\xf8\xbe\xfa\xc9\x19\xe1\xf6\xf1\xcf\x46\x72\xf2\x4f\xbb\x91\xf3\x5c\xb1\xa6\xae\x85\x61\x18\xa5\x1c\xfd\xa6\x3d\x94\x25\x3d\x20\x99\x05\xc0\xb6\x51\x55\xa2\xca\x0e\xf1\x1a\x59\x03\x53\x78\x5d\xc9\x4b\x41\x4f\x9e\x82\xd7\x64\x9d\x05\xc0\xc8\x7e\x36\x55\xfb\xb6\x8e\x57\x15\x8d\x47\x9a\x84\x4d\xdb\xe5\x4c\x6d\xa2\x89\xd1\x55\xa5\x1b\x37\x2c\x77\x7f\x14\x07\xed\xd1\x69\x36\x33\xbc\x44\x1f\x91\x9d\xcb\x29\x24\xe2\x4f\xc1\x12\x45\xa9\x88\xdc\x09\xeb\xd8\x3b\x71\x23\x6d\x88\xfd\xb6\xa9\xac\x02\x9a\x20\x60\xfe\x58\xcb\x7e\x73\x9e\x29\x8c\x0e\xf1\x8d\xad\x66\x03\x9c\xfd\x51\x57\x3c\x6a\x6a\xd0\x77\x61\xf4\x6d\x13\xba\xa4\xe1\x3a\x52\x8d\x07\x8a\x9d\x82\xea\x9d\x54\x82\x9d\xb2\x85\xa0\x38\x20\xa0\xda\x6a\xe9\x2b\xad\x9c\xc8\x4a\xee\x94\x13\x7c\x25\x1c\xa4\x64\x8d\xa9\xa6\xf1\xb0\xd2\x05\xaf\xc6\xc7\x5d\xf5\x82\x4d\x44\xa1\x97\xd8\x0d\xcc\x40\xb0\x45\xf8\x4b\xd4\xac\x49\xef\xf7\xe4\xa5\xaa\x10\xe4\x68\x83\xa8\xaf\x50\xea\x91\xc2\xd0\x3a\x97\xce\x49\x42\x7a\x8c\xa1\xd6\x89\x59\x3a\x98\xec\x27\x9b\xef\x92\xca\x5b\x35\x84\x83\x5d\x7b\x72\x74\x89\x15\x7a\x73\xa4\x07\x23\x46\x04\x58\x36\xd7\x55\x79\xc6\xd8\xf3\x96\xc6\x05\xe1\x3b\xb1\x54\x75\xc7\x5e\xf5\x1c\xd4\x8f\x1d\x9b\x7c\x90\xc6\x84\x37\x5a\xec\xcc\xb1\x4b\xbf\x8e\x70\x89\xf5\x76\xed\x48\xb5\xde\xa8\xf1\xf3\x23\xba\x8a\x7f\xa4\xd6\xd2\x77\x44\x36\xf5\xf4\xc9\xcd\x10\x63\x51\x91\x3e\x0c\x69\x1d\x85\xae\x34\x1a\x86\x91\x19\x8e\xd0\x86\x18\xba\x58\x4f\x78\xb1\x10\xaa\x64\xe8\xd4\xc0\x8a\x8b\x93\x15\xfb\x9f\x0d\x37\x8b\xc6\xa2\x42\x7b\x0b\xca\x6c\xd7\x50\x1a\xb9\x0e\x7b\xd7\x85\xe8\xb2\xbf\xe1\xc8\x91\xd4\x27\xe0\xb9\xb4\x27\x34\xd5\x13\xd0\x5a\x81\x56\xdb\xd1\xf0\x5f\x85\x4e\x44\x95\x9e\x31\xdd\xb8\xba\xc9\x0b\x14\x20\xa5\x77\x10\x41\x3f\xea\x99\x65\x4b\x61\x21\xb2\x37\x8e\x8a\x0c\xe7\xf5\x9d\x1d\xa0\x9c\x97\x1f\xbd\xac\x75\xd9\xb6\xa2\xaa\x74\x98\x57\x16\xbf\x78\xf3\xdd\xdb\x3c\xe0\xe2\xa3\xdd\x21\x04\xf2\x2d\x2c\x2d\x80\xb6\xc1\x5c\xda\x01\x33\xac\x8d\x70\x6e\x05\x91\xf1\xdb\x53\x53\xe8\x75\x3a\xc0\x41\x18\xce\x25\xd5\x6c\x10\x3c\x12\x60\x8f\xf5\xb3\x3d\x4b\xda\x80\x97\xcf\x8f\x59\xf4\xe6\x35\xcc\xd0\x7e\x9f\xae\xd9\xe0\xbb\xd6\x88\xb5\x08\x0a\x4f\x75\xe3\xb7\x32\x7b\x79\xb6\x1b\x29\x94\x1a\x77\x07\xcc\x2f\xd0\xd3\x21\x5e\xb6\x41\x9a\x3d\xc7\xd5\x3e\x07\x88\x24\xfb\xe0\xed\xa8\x15\x84\xa0\x72\xa9\x58\xa8\xdb\x85\x99\x86\x07\x79\x47\xb1\xb6\x27\xe5\x16\xfd\x0c\xf9\x6b\x1a\xc1\x27\xa3\x23\x64\x1e\xc0\x3c\x18\xfc\xc7\xc6\x5e\x9e\x1e\x0e\xf0\xbb\xb3\x4a\x17\x0b\xd8\x05\x27\x2a\xbf\xfa\xe5\xd9\x44\x3b\x3b\x38\x1a\x8d\x46\xe3\x11\x7b\xf3\xf6\xfa\x15\xd6\x4e\x4f\xa5\x6e\x18\x2f\x4b\x8b\xb6\x30\x0e\x5d\x8d\xc0\x7f\x0d\x0d\x1c\xd7\xb3\x1b\xbb\x05\xce\x42\xe7\xb7\x67\x74\x03\x1a\xc1\xcb\x93\x5b\x23\xa3\xe1\x7e\xc9\x6b\x4b\xfd\xa7\x78\x49\x75\xc9\x91\x06\xc6\x5f\xd3\x4b\x11\x34\x05\x34\xc9\xa5\xb6\xbc\xc9\xa0\xc1\xe2\x6c\x6e\xce\x55\x32\x3b\xae\x59\x1f\x5a\x9a\xe0\x3f\x7a\x11\x1b\xa9\x8a\xaa\x29\xc5\xb0\xf4\x7c\xc0\x9d\xff\x47\xab\x39\xcf\xd6\x58\x6a\x85\xab\xc0\x2c\x87\xe0\x89\x3a\x6e\xfb\x2b\xb9\xe2\xd5\xea\x97\x50\x4d\x0b\x4d\xf9\x85\x2e\x45\xf2\xa0\xf3\xb2\x6c\x77\xda\x89\x8d\xb4\x40\xff\x44\xdc\x92\x81\x9e\x3a\xf6\x65\xe7\x60\xbc\xc6\xd8\xd8\x07\x34\x69\xba\x8a\x8d\xc1\x43\x4d\x7f\x01\x64\xbb\x99\xa3\x29\xaf\x12\x12\xde\xa6\x2d\x9c\xda\xf9\xbf\xe1\xe5\xdd\x6b\x21\x0d\xe2\x61\xd7\x8e\xc8\x6f\xc8\x23\x4d\x91\xaa\x78\x20\xb2\x4e\x1e\x19\x7f\x59\x17\xeb\x78\xe8\x62\x91\xca\xde\x27\xf5\x72\xf0\xdf\x33\x06\x07\x0c\xfe\xdd\x2b\xc1\x8b\xc1\xa8\x7f\x9e\x93\x4a\x70\x9b\xc5\x36\xc4\x69\xc3\x12\xb7\x4f\x7e\xf7\xb4\x7d\x84\x71\xa1\x32\xf0\x96\xb0\xda\x55\x0d\x08\xf7\x88\xde\x20\x0d\x20\x05\x52\x17\xd0\x89\xea\x70\x80\xd6\x95\xd7\xbc\x1e\xf8\x23\x38\xf8\xd1\x2f\x6d\x10\x9b\xca\xb4\xf0\xc5\xbf\xb5\xca\x6b\x78\x3d\x7d\xb8\x10\xbb\xbc\x33\x7e\x84\xf4\xc9\xde\x2d\x92\xa5\x50\x4e\x4e\x57\xd8\xff\x0d\x5a\xc4\x6a\xe5\x44\x32\x80\x03\xf1\xfa\x50\xc2\x86\x90\xd4\x1d\x52\x9b\xd9\x49\x46\xd2\x1e\x4c\xe1\xb5\xba\x33\xae\xd9\xdb\x76\x5f\x8c\x09\xd7\xf5\x4d\xef\x0a\x7e\x8f\x5d\xb2\x3a\x2f\x29\x0c\xe5\x91\x22\x7e\x5f\xa3\xb4\xef\x6d\x28\x1d\xaf\xf8\x1b\x5d\x35\xfe\x99\xb7\xa4\xa6\x70\xf4\x9c\xcf\x34\x6e\x58\xdc\xe5\xd3\xe8\x36\x85\xeb\xda\xd5\x65\x76\x90\x82\xc0\xdb\xb7\x01\x48\x51\x8a\x88\x49\x72\x00\x83\x46\xf0\x25\xd1\x17\xeb\x0b\xcd\x97\x3f\xd5\x18\x43\x81\xc9\x3a\x3f\x5d\x7f\x37\xfc\x3a\xd3\x86\x38\xc8\xf8\x15\x7c\x5a\x1b\x5d\xa0\x89\x60\xb2\x8a\xaf\x9a\x56\x4d\xce\x00\x57\x95\xcc\x19\x19\x81\xd6\xdc\x90\x61\x21\x5a\x40\x81\x5b\x00\x33\x84\xcd\x2b\xab\xd9\x92\x97\x22\x35\x75\xa2\x9d\x0d\x2f\xd4\x18\x8c\x9e\xb7\xaf\x06\x41\x87\x41\xcd\x98\x77\x87\x6f\xc5\x6a\x95\x42\x07\xdf\x79\x9d\x69\xc4\xae\xa0\xc1\xc1\x19\x7b\x1f\xc9\xf3\x1f\x48\x9e\x0f\x67\x7e\x27\xde\x9f\x2c\xc4\xea\x43\xb8\x5d\x6e\xe7\xc2\x50\x58\x51\x34\x72\xd8\x76\xc0\x18\xfc\xd1\x2f\x74\x21\x56\x31\x26\x08\x5c\x07\xbd\xdf\x13\x60\xff\x31\x35\x16\x02\x2f\x9d\x28\x0f\x7a\x84\xe9\x3d\xd8\x21\xeb\xbf\x05\xc5\x51\xb5\x61\x13\xa9\xb8\x59\xd1\xc1\x77\x47\x77\xf3\x08\xe1\x77\xdd\xea\x29\xd6\xc3\x1f\xd8\xb6\x31\x08\x6c\x2f\xcc\x37\xcd\x97\x83\xcc\xdd\xee\xb0\x87\xed\xb8\x68\x1e\x2d\x52\x95\xa6\x78\x26\xea\x10\x89\xd9\x07\x21\x12\x2f\x5d\xd1\x8e\x52\xcc\x76\xdc\xd7\xf7\xff\xc3\x03\xfa\x70\xdc\xbf\xb1\xb9\xf1\x2c\xdf\xde\xe3\x1d\xf7\xb6\x67\x57\xb3\x83\x00\x4b\xe8\x8c\xec\xd2\x23\x67\x02\x92\x6f\xfb\xb3\xc0\xa5\x30\x16\xd2\x52\x1c\xfb\x19\x60\xb0\x97\x15\x97\xcb\xd0\x0f\x84\xe4\x65\x46\xb1\xfa\xa6\x80\x29\x4f\x62\x2e\xcd\x09\x90\x29\xd9\x52\x74\x2d\x14\xaf\xe5\xe3\x49\x7c\xff\xc7\xf3\xcb\x0b\xf6\xed\xd5\x8f\x77\xb7\x74\x84\x78\xda\xd8\xfa\x2e\xbb\xa1\xa8\xf9\x3b\x36\x90\x0d\xe0\x3c\xc7\x3c\x1d\xe9\xef\xdf\x4a\x3b\x6e\xf7\xf5\xbc\xf5\xc0\x9a\xeb\x2a\xea\x20\x7e\xcd\x41\x15\x24\x3a\xa4\x7d\xbc\x55\x8f\xd9\x4e\xe5\xad\x07\x4f\xfb\x27\x94\x25\x57\x18\xf5\xcb\xc5\xc0\xfd\xbc\x43\xe0\x44\x54\x3a\x05\x6f\xca\xce\xc5\x3d\x11\xe0\x42\xa4\x51\x78\x95\x70\x65\xa7\x10\x67\xa8\x94\x46\xf3\x29\x3e\x2e\xa9\x52\x46\x4f\xff\x4e\x4d\xe1\x85\x16\x25\x6f\xa7\x49\xe1\x13\x60\x0d\x74\xc4\x0d\xb3\x15\xef\xc1\x22\xf4\xd8\xc9\xc9\x85\x42\x20\x90\xd2\xb4\x52\xf5\x68\x2e\xa4\xe6\xfe\xd3\xd0\x2e\xac\xcf\x10\x03\xda\xcb\xc9\x23\x9a\x63\x2f\xbf\xfd\x66\x8b\x45\xe8\x52\x97\xdf\x4a\x6b\x1a\x18\xf4\x4d\x53\xce\x84\x6b\x5f\xcc\xc1\xa5\x74\xf1\xf4\xda\x95\x2e\xa5\x1a\xf6\xf5\xf5\xbb\x2b\x39\xbb\xd3\x6d\xae\x6f\xf5\x70\x7c\xc1\x37\x64\x1d\xbd\x2d\xda\xb3\x30\x2a\x14\xc6\x15\x13\x37\xb2\x08\x9e\xa6\xee\xcd\xbe\xde\x7d\xae\xd3\x75\x6e\xc4\xde\x2a\xb2\xcb\x41\x17\x43\xe8\xfc\xd5\x5a\x14\x55\x47\xe8\xb4\x30\x8c\x11\xd6\x51\x3b\xe8\x3a\x26\xfb\xfb\x1d\x3e\x04\x5d\x7a\xba\x1f\x02\x31\xe2\xad\xff\x79\x24\xc9\xf2\xf2\xbf\x88\x5e\x8f\x75\xaa\x48\x8b\x5a\x33\x95\xf3\x39\x42\x4a\x26\x1a\x76\xe9\x85\x54\x6c\xc1\x08\xba\xf5\x1a\x25\xe3\xc9\xa5\x33\xfb\x78\x77\x47\x27\xa3\x13\xbc\x3b\x13\xd0\xea\x31\x3d\x08\x1a\xc6\x26\x17\x0b\xb7\x56\xce\x14\x16\x04\x6b\xdf\x1b\x09\x90\xee\xfc\x79\xc4\x2e\x14\x2b\xe8\xa5\x90\xbe\x93\x36\x4b\xd9\x89\xf9\x48\x40\x55\x08\x6a\x08\xb6\x4d\xca\x3c\x4b\x4a\x6a\x80\x40\x81\x6b\xa1\x01\x81\xb4\x4c\x90\x39\x15\x35\x97\x69\x53\xf9\xc7\x0a\xf5\x44\xb0\xa8\x7c\x92\x15\x56\x18\x71\x60\x99\xd2\x4c\x09\x5c\x18\xb9\x75\x18\x67\x45\x63\x9d\x5e\x76\x1e\x78\x81\x17\x23\xf6\xe8\x1b\xd3\xaa\x45\x5d\x46\xda\x25\xe2\x69\xd1\x73\x6a\xd9\xad\x36\x8b\x63\x66\x29\xb0\x10\xa7\xf6\x4c\xba\x9c\x08\x30\x91\xa5\x5c\x6a\xb9\xf4\xfc\x67\xc4\x4c\x5a\x67\x56\x4f\xa1\x66\x1d\xee\xce\x30\xcf\xb6\xde\x52\x5e\x6e\x6d\x3f\x0f\xa1\x3c\xf5\x51\xa2\x6d\x8c\xfa\xea\xe1\x95\x7c\xee\x59\xa5\x27\xad\xf4\xac\xfe\x39\x2f\x54\x49\xe5\x28\xe4\xb4\x0d\x36\x45\x91\x04\x7d\x07\x41\x42\x32\x2f\x1a\xf5\xb8\x0d\xf2\x56\x4f\xe9\xaf\xc9\x0e\x1b\x05\x85\x3f\x92\xfb\x07\x20\xae\xd5\xda\x2b\x85\x13\x85\x4b\x6f\xe7\xbc\x5b\x9f\x9c\xf6\x1c\x81\xb6\x00\x09\x8b\x38\x94\xc9\x22\x15\x7e\x97\x73\x2a\x38\x4a\x8e\x32\x29\x03\xb9\x67\x8f\xa5\x1f\xd4\xba\xec\xe8\x07\x90\x69\xec\x0f\x99\xfc\xa5\x65\x4c\x5f\xbb\xfe\x43\xe7\xfb\x56\x7c\xc0\xa5\x2e\xaf\x6a\x51\x5c\x8b\xa5\xc7\x58\x40\x38\x44\x53\xc4\x7c\xa5\x94\x8e\x92\x83\x1b\x8f\xbc\x68\x18\xd5\xba\x8c\xe3\x50\xf3\x90\xa2\x2a\x8f\x53\x36\x4c\x3e\x26\x2b\xdb\x86\xe1\x31\x34\x32\xd4\x7d\xa0\x5e\xc1\xb2\x60\x4b\x61\x66\xd4\x2c\x3b\x64\x20\x77\x22\x6a\xbd\x1c\xa3\x25\x8b\x4e\xfd\x04\x7c\x13\x67\x01\x8e\x96\xba\x23\x88\x63\xff\xd4\x6e\x62\x2b\x18\x58\x7d\x26\x57\xc7\x19\x10\xb4\x13\x6e\xec\x8c\x5f\x1b\xbd\x14\x6e\x2e\x9a\xbd\xeb\x86\xee\xe3\x1e\xbc\x8c\xb3\x74\xfa\xc1\x41\x54\x48\xfa\x2b\x34\x8d\xe0\x0e\x0a\xb9\x07\x17\x04\xd2\xed\xc2\xe1\x9d\x8a\x5c\xeb\x47\xf9\xed\x7e\xad\x95\x74\xda\x8c\xa3\xd2\x98\x8a\x76\xe0\x29\x09\x65\x26\x43\xc7\x5e\xc3\xeb\xae\x8f\x2f\xf8\xe8\x73\x47\x5f\x8e\x70\x38\xd3\x68\xad\xc3\x38\xb8\x68\x81\x81\xc2\x9a\x38\xec\xb5\x2c\x8c\xbe\x44\x7a\x01\xc8\xd7\xf8\xe9\x88\xfd\xf9\xfc\xdd\x9b\x8b\x37\x7f\xa4\x47\x22\x3c\x95\x13\x6b\xf7\x2e\x23\x38\x65\x90\xb1\x43\x68\x40\x96\x08\x58\x68\x23\xb4\x3d\x49\xbb\x37\x0c\x68\xbe\xbf\xcc\x77\x14\xea\x05\xc1\xef\x3f\x84\xeb\x2b\x65\x56\xa6\x9c\x40\x7c\x21\x50\xe0\x95\x28\x47\xec\x2f\xba\x01\xa2\x41\x18\x64\xad\xcb\xe1\x92\x50\x0c\x77\x2f\x55\xf9\x8a\xd7\xdf\xda\x0e\x3b\x0d\xb7\x1b\x64\xad\x6b\x72\x81\x67\x1f\xbd\xcd\xa9\x8a\x76\xe1\x2e\x84\x0d\x4d\x4e\x9e\x80\x1f\x31\x23\xd8\x2e\x8e\x3d\x32\xb5\xf5\x73\x82\x9f\x2f\x48\xef\x9e\x06\xfe\x3d\x53\xee\xff\x5c\xec\x9f\x19\xc1\xf4\x15\x4a\xcb\xf8\x21\xa5\x32\x20\x52\xd9\xdd\xd1\x54\x15\x25\x5d\x3e\xe6\x1b\xb3\xa9\xaa\xd0\xfd\x0a\xd9\xc6\x62\x02\x81\x9f\x3e\x24\x67\x92\x19\xa2\xd6\x65\x9e\x03\x9e\xcf\x48\xbe\x72\x67\xa4\xb8\xe9\x8a\x61\x54\xbd\x42\x90\x94\xf8\x84\x36\xb0\xa8\x8b\xa1\x5c\xc8\xa7\x0b\x9d\xcb\x73\xcd\x3d\x95\x98\xd0\xe6\x18\x94\x4f\xaf\xf6\xae\x74\x73\x90\xe5\x50\xa2\x68\xca\xb3\x47\x21\x64\x34\x4d\x0a\x60\x13\x66\x01\x85\xb0\xc0\x71\x76\x49\x5d\x12\xc1\xc7\x54\xd9\x8d\x2f\x63\xae\x6a\xa6\xb5\x7b\xb4\x01\x28\x2c\x72\xbd\xf0\xf2\x7a\xd1\xe5\x95\x97\x0c\xf1\x11\x7f\x2f\x74\x41\x48\x43\xc2\xbd\x05\x87\x11\xc8\xeb\x2e\x5d\x25\x99\xb9\x29\x64\x30\x94\x9d\xc0\x03\x15\x17\x5e\x6a\x61\xe1\x9d\x05\xda\x7a\x0f\x36\x7e\x81\x60\x98\x84\xf5\x1d\x23\xfa\x5c\xc5\xa3\xee\x0f\x34\xee\x7f\xf0\xd7\xff\x9d\xcb\x16\xea\x4f\xb8\xa3\xbb\xbb\xcb\x9a\x8a\x7a\x6a\xd9\x74\x2a\x20\x90\xfb\x62\xca\x2a\x31\x75\x0c\x14\x6e\xc4\xa4\xeb\xb5\x0f\xc6\x78\xbe\x10\x2a\x29\xa2\xbd\x2c\x97\xf6\xa7\xdd\xf7\x35\x8f\x86\xf0\xfb\x31\xf4\xa8\x09\x13\x42\x22\x76\xac\x29\x17\xee\x69\xbe\xa6\x75\x53\x41\x71\x20\x67\x19\x45\x0e\x45\x94\x52\x1a\x0a\x2d\x23\x4d\x19\x2f\x62\x2a\xc2\x99\x63\x36\x66\x14\xdb\xca\x8c\x8e\x7e\xaf\x34\x1f\xe4\x1b\xd6\x3c\x3a\x91\xb6\xc7\xe7\x7c\x66\x21\xa1\x4e\xf9\xdd\xf8\x5c\x89\xf4\x5e\x13\x78\xc9\x4a\x81\x37\xaa\x5f\xec\xaa\x16\x6c\xdc\xae\xec\x5a\xea\x62\x21\x0c\x82\xff\x68\xb5\xca\xe4\x38\x05\x24\x3e\x8e\xa1\x01\xb4\x43\x0a\x96\x5c\x57\x0d\x5d\xf6\xc7\x50\x20\x8a\x82\x95\xfa\x6b\xc3\x53\x40\x15\x7b\xa9\x97\xb5\xac\xc8\xa5\xc6\x19\x85\xc5\xa2\xf2\xec\xc7\x1d\x33\x39\x12\xed\xa8\x96\x9a\x17\x0b\xbf\xf1\x9e\x3a\x2f\x70\x00\xc5\xb4\x44\x5d\x8c\x3b\x56\x09\x6e\x1d\xfb\x97\x3f\xca\x6f\x3c\x25\xb1\x09\x32\xe9\x9c\x70\x92\x5a\xd1\x4f\x34\xed\xa4\x91\x15\x34\xbb\x03\x83\x09\x80\x24\x8b\x53\x8b\x99\x2e\xfd\xed\x44\xda\x14\x0c\x01\x78\xad\xdc\x8c\xec\x6f\xf4\xc4\xc8\x2b\x16\xb5\x0c\xa6\x61\xaf\x8e\x8e\xd1\x58\x38\xe7\x9e\x00\x0a\x0a\xe1\x23\xda\xc9\x6c\xf8\x24\x54\xaa\x6c\x7b\xda\x9a\xcd\xfe\x9d\xb3\x89\xa5\x2e\x11\xe4\xf5\xaa\x16\x1b\xf4\xa2\xc0\x7b\x34\x39\xa6\xb0\xa6\xb2\x9d\x53\x6e\xdd\xf0\x23\x37\x58\xba\x93\x78\xa6\xa7\x1d\x12\x7d\x75\x94\xcc\x5d\x13\xed\xe6\xf9\x78\xb0\x00\x06\x00\x9e\x28\x51\x6f\x38\x66\xee\x56\xb7\xa4\xec\x0f\x32\x46\x5c\xb7\x1d\xc2\xa4\x26\x1e\xa7\x42\x51\x11\xe4\x42\xba\xd0\x38\xa2\x36\xa2\x10\xa5\x50\x85\x60\x3a\x54\xeb\x4f\x98\xe4\xe6\x5e\x55\x60\x87\x0a\xd2\x70\xd0\xb5\x2f\xd5\xb4\x6a\xfc\xe8\xe4\x69\xad\x9a\x5c\x8c\x86\x4a\x61\x7e\x4a\x62\xc6\x20\x83\xba\x75\x24\x16\x70\xda\x7b\xca\x86\x4c\xa5\xb1\xae\x45\xf5\x68\xb5\x40\x33\x63\xf4\xe3\xf6\x48\xdc\xa0\x5b\x29\xcd\xc4\x27\x69\xc1\x2d\xb9\x08\x06\xcb\xa5\x7f\x89\x8b\xb5\x72\x96\xf8\x65\x96\xc5\x19\x04\xea\x23\x6a\xae\xef\x82\xcc\xce\xd4\xd6\xa6\x66\xaf\xf9\x0d\x76\x56\x09\xd5\x2d\x2e\x5a\x96\x3f\x4c\x02\x81\x8f\x48\x38\xd5\xda\x7a\x4d\x7c\x75\xc7\x23\xdf\x08\xaf\x68\x3d\xe6\x03\xff\x1d\xcc\xd0\x1f\x21\x84\xad\x94\xdb\xe5\xe3\x09\xa5\x68\x29\x11\x36\x33\x8f\x64\x76\xdb\xa5\xa0\x2a\x63\xa8\xb3\xff\xad\x91\xc5\x22\x8c\xd5\xd3\x10\xf8\x02\x81\xf8\xab\x50\x35\x24\x45\xf7\x3e\x4b\xde\x10\x88\x95\x01\x21\x48\x09\xdb\xd4\xb2\x87\x4c\xc5\xd2\x52\x01\x29\x61\x24\x64\x82\x54\x0c\x72\xd7\x53\x56\x48\x48\x16\x8f\x06\x17\xdb\xd4\x58\x85\x32\x0f\x8b\x09\x41\x37\xbd\x2b\x64\x6b\x94\xca\x9e\xb8\xf8\x62\xc8\x7a\x79\x5e\x87\x4a\x9e\x29\x04\x37\x6a\x5d\x1d\xdc\xfc\xc4\x1a\x09\x86\xb7\x0c\x5c\x91\xa1\xbb\x82\x12\x9e\x46\xdc\x60\x28\x84\x54\xa1\x76\x67\xc0\x2b\xf5\x54\x4a\x0f\x1a\x69\x99\x75\xa2\x8e\xc7\xae\xf4\x12\x61\x5d\x1d\x4c\x44\x3f\x26\x3a\x83\x40\xb8\x09\x37\x60\xc8\xa6\xa8\xb9\xb5\x29\xe2\x33\xdc\x04\x6b\x2d\x3f\x9f\x91\x35\x35\x6f\xfb\x99\x65\xb7\xf0\xe9\x82\xc7\x84\x8b\x43\x80\x1f\xfc\x2a\xb4\x19\x98\x4a\xe1\xff\xb2\xd4\x9e\x3c\x94\x51\x7c\x47\xeb\xd0\x9e\xb6\xa1\xb8\x71\x6b\xdd\x42\xe9\xd7\xf8\x9f\x61\xcd\xdd\xfc\x05\x5e\x34\xfe\xfc\x0c\x63\xae\xd7\xda\x97\x58\x53\xfb\xc5\x80\x4a\xf1\x0c\xf5\x74\xe8\xdf\x31\xc3\x85\x5f\xce\xd9\xbf\x9d\xfe\xdb\x97\xff\xf0\xfd\x3d\x03\xa5\x48\xa7\xd9\xbf\xf5\x25\xc5\xae\xd2\x8d\x94\x1d\xbb\x15\x5b\xeb\xae\x99\x6d\xe0\xde\x13\x41\xc8\x50\x93\x35\xd3\xe9\xce\x76\x18\x9e\x4e\xa9\x52\x95\xce\x3e\x24\x02\x27\xe4\x56\xb5\x38\xea\x21\x04\xb0\xcc\xde\xd8\x85\x7a\xb8\x1d\x4a\x00\xb0\x70\xa3\x1c\xc6\x22\xe4\x27\x1d\x29\x12\x70\x23\xc4\x73\xb4\x0a\xaf\x56\x79\x3e\xaf\x86\xb5\xae\x64\xb1\xdf\x0e\x1d\x20\x6e\xbc\x86\xfa\x1d\x81\x2e\x08\xa8\xd5\xe6\xcd\x4f\x10\x0e\x3b\x4c\x09\x55\x6f\xcf\x08\x31\x48\xfa\x95\xbf\xf8\x0f\x4e\xd8\x92\x7f\xa2\x1f\x8e\x46\xec\x65\xec\xb1\x9d\xaa\x44\xb5\x53\xfa\xe4\x94\x35\x10\xfe\x92\x22\xa8\xc0\xa0\xbe\xc3\x95\xb8\xe5\xde\xf3\x50\xb6\x05\xc6\xba\x8e\xd9\xb7\xed\x18\x24\xcb\x7e\x6f\xf2\x2c\x18\x8c\xb3\x9e\x07\x21\xac\x91\x42\xf9\x2c\x5b\xf2\x15\x98\x99\x40\x0d\x2c\x49\x33\x4d\x81\x57\x14\x02\xcd\x2b\x0c\xeb\x84\x07\x2e\x83\xf2\xa3\x14\x93\x85\x5e\x9f\x71\xa8\x8d\xa6\x27\x1f\x45\x41\x77\x0f\xd4\xfc\xf4\xf0\x1b\x1b\x7d\xa3\xa9\x9a\x99\x7f\x81\x95\x94\x06\x3c\x8e\xb5\xd5\x0e\xc5\x27\x10\xe9\x67\x6c\xec\x2a\x3b\xcc\x50\x0f\x9f\x1c\xa1\xa1\x8d\x8a\xe0\xe2\x05\xdd\x5a\x22\x04\xbe\x97\x88\x61\xc0\x6b\xc4\x2e\xef\x9e\x17\x2e\xf6\xb9\x9c\x85\xc5\xd7\x46\x6a\x23\xa1\x8b\x13\x96\x37\x4b\x5e\x66\x30\x84\x01\xcd\xd3\x62\xa8\x69\xc0\x31\x66\xb7\xb7\x96\xb0\x10\xab\x30\x0b\x22\xeb\x35\x75\xfa\x03\x9a\xd6\xd4\xda\x87\xc1\xc0\x36\xa2\xa8\xcd\x94\x56\x13\xdb\xf9\xa3\x09\x26\x92\xd5\xef\x29\xe8\x47\x79\x89\x7c\x69\xc3\xe9\x20\x3a\xd8\x71\x2b\x33\x40\x9a\xc4\x07\x54\x96\x3b\x6a\xdb\xe9\x7e\xcb\x76\x2c\xa7\xbc\xff\x72\xb9\x79\x9b\x8e\xd7\x16\x85\x37\x29\x7e\xcf\xef\x18\x92\x45\x50\x6e\xf8\x10\xba\x03\x81\x7b\x06\x29\x8d\xf7\x66\x28\xe5\x9a\x5c\x37\x51\x13\xa8\xe1\x15\xe0\x29\x16\x1a\xcf\xb9\xa6\x8e\xa5\xff\x9e\xc0\xe5\xf9\x90\xed\xdb\x80\x75\x5b\xf1\x68\x95\x1d\x3a\x61\x96\x44\xf4\x1d\xef\x8a\xeb\x1f\xaf\x58\x36\x0a\x46\x1c\xb3\x4a\x2e\x04\x1b\x8b\x72\x26\xfc\x76\x7a\xad\x8d\x9a\xe7\xe1\x13\xd7\x08\xa1\x0a\xb3\xaa\xfd\x89\xec\xcb\xcb\x4f\x12\x05\x0f\xd8\x7a\x5e\x75\xd6\x6c\x61\x43\x76\x75\x87\x21\xf7\x58\x4e\xb7\x39\x0c\xb4\x62\xe8\x64\x7c\xdf\x89\x21\x2d\xe6\x5e\x78\x26\x4f\xc7\x4e\xad\xb4\x33\x6b\x6c\x90\xe9\xd9\xd1\x44\x5c\x3b\x6b\xa2\xda\x8b\x29\x35\x16\x32\xae\x07\x99\x3d\x18\x42\xaa\xe1\x5f\x1f\x06\x68\xf5\xc7\x44\x94\x4e\x8c\x73\x36\xf9\x31\x05\x3e\xa4\x42\x24\x36\xe9\xd4\x1e\x29\x72\x98\x07\xc7\x41\x8a\x1e\x30\x82\x97\xc7\x4c\xfb\xb1\xb7\x12\x3d\x19\xd1\x61\x08\x15\x3d\x59\xb4\x50\xb3\xac\xdc\x38\x59\x68\x07\x27\x83\xbd\x76\xa6\xb3\x27\xd1\xa0\xb0\x71\x67\x76\xcb\x2c\xea\xe3\x9c\xfc\x7a\x7d\x5c\xee\x49\xc2\xf5\x11\xb9\xc6\x7f\x94\x7c\xac\x8c\xf8\xe7\x61\x38\x27\x1c\x7e\x08\x53\x78\x18\xce\x21\x90\x81\x7f\x1e\x86\x73\x08\xe8\x8e\x67\x9a\xdf\x53\xfc\xb4\xba\xbc\xfd\x6a\x12\xa8\xef\x86\x7d\x68\x76\x6a\xaf\xec\x37\x6e\xda\x83\x9b\x36\x6b\x43\x3b\x6e\x52\x9e\x90\xd2\xe1\x30\x0a\x4c\xb4\xd1\x5d\x0d\x94\x0d\x66\xd8\x96\x56\x1d\xcc\xba\x53\x32\xaf\x7a\xac\x33\xc8\x23\x96\xfb\xd5\xe2\x2d\xdf\x56\x10\xc0\x32\x27\x2b\x41\xb1\x71\x04\x72\x22\x52\xdd\x8b\x3c\xff\x0b\x34\x72\xa0\xa0\x01\x65\x98\x91\x39\x78\x2e\x78\xe5\xe6\x58\x01\x3d\xe6\x07\x58\x51\x34\xf1\x0a\x0a\xcd\xbe\x21\x3c\x74\x1a\xe6\x15\x15\xd4\xd8\x80\x90\xda\xcc\x36\x1e\x14\x22\x7c\xa9\x84\x50\xcd\x50\x67\x28\x5b\x22\x01\x7f\x79\x8e\xa9\x3f\xd4\xb5\xda\x2b\x58\xc0\x19\x37\xbc\x92\x25\x2e\x34\x19\x9c\xec\x5c\x9b\x98\xf7\x8e\x1c\x74\x18\x2a\xc9\x44\xd7\xdf\xc8\xde\x14\x47\x29\x3d\x4d\x16\xf3\x10\xcd\x26\xd5\xd4\x70\x0c\x41\xf3\x0a\xdd\x4c\x28\x81\xcc\xd7\xd2\xf2\xbb\x85\x10\xa8\x13\xe4\xe3\x2a\x58\x5b\x95\xf4\x87\x14\x21\x9b\x59\x38\xcf\x44\x7b\x30\x51\x92\x3c\x9e\x0f\x27\x4a\xc2\x99\x7f\x40\x51\xb2\xb7\xa8\x97\x0a\x8f\xc9\xd0\xab\xe7\xb9\xc6\x4f\x36\x99\x7d\x1f\x18\xd4\x73\xa4\x14\xbc\xc2\x35\x84\x09\x42\x69\xab\x50\xce\x02\xea\x8a\xfa\xf7\xc0\xb7\xf8\x1c\xca\x8b\x01\xbe\x13\x54\x03\x28\x0c\x7a\x68\xb5\x2e\x85\x3d\xec\x5c\x4e\xf3\x9e\xfe\x98\x76\x8d\x4d\x7c\x75\xad\x3b\x8a\x68\xb7\xc3\xc7\x31\x58\xca\x86\xb6\x46\x60\x7e\x8f\x7d\xc2\x8a\x94\x97\xab\x31\xcc\x0b\x83\xa9\xd0\x2c\x7e\x08\xa6\x98\x94\x31\x77\x14\x99\xd3\xb3\x58\x12\x31\x00\x7a\x53\x64\x0e\x85\x2e\xcb\x76\x7c\x6a\x28\xa8\xc6\xc9\x40\x9f\x2c\x63\x21\x51\x02\x1d\xd1\xd8\xce\x9d\xb7\xab\x65\x3e\x81\x30\x98\x87\x09\xa3\x86\xd2\x18\x10\x3f\x1d\x36\x54\x09\x51\x86\x8c\x29\x72\xa8\xe6\xd3\x2a\x5d\x8a\x61\xa7\xa1\xe4\x86\x02\x60\x54\xa6\x27\xb2\x95\xa6\x62\x6e\x9a\x32\xae\xdf\xe8\x52\x5c\xb6\x3b\x4c\x52\xe7\xd4\x11\xfb\xd6\x8b\x37\x2f\x21\xcb\x60\xfd\xfc\xc9\xa6\x12\x61\x60\xee\xa6\x92\xad\xa3\x3c\x43\xb5\xe3\x1c\xdf\xdf\x33\x4e\xc8\x5e\x07\x38\x1b\x2d\xed\xb6\xb5\x2a\xbf\xcd\xd1\x2d\x7e\xf0\x12\x43\x66\x2e\x2e\x0f\x8e\xd9\x41\x58\xe5\x01\x8b\x9a\xd3\xc1\x8f\x9a\x97\xdf\xf0\x8a\xab\x42\x98\x83\xb5\x23\x9e\xd5\x3b\x7e\x34\x77\x65\xd8\x94\x6f\x42\xad\xe4\x3c\x0a\xbd\xb1\x64\x2c\x23\x4d\xc4\xff\x93\x06\x40\x01\xa7\x34\x2b\x6e\x4e\x4f\x78\xee\xe2\x6b\x3b\xec\x2c\xc7\x9e\x78\xbd\xe5\x9f\x3a\xbf\x65\xe7\x74\x81\x85\x0a\x78\xf1\x6a\x00\x0f\x9c\xbf\x99\xc4\x4d\x74\xa8\x91\x6b\xa1\x99\x7c\x24\xb4\x8a\x39\x57\xb3\x27\x11\xbf\x41\xeb\xde\xb7\x04\x79\x4e\x77\x47\x5a\x02\x7b\xff\x9e\xd7\x72\x66\x74\x53\x9f\x7c\xa0\x42\xdb\x67\x1f\x16\x52\x95\x67\xef\xa3\xcc\x3c\xf9\x00\xf6\x87\x78\x32\x44\x25\x96\xe2\xf1\x1c\xfa\xc0\x55\xd7\x61\x92\x7e\x87\x40\x5b\x14\xd5\xcd\xa4\x92\x76\xee\x3f\x2d\xd0\x9e\x1d\x6f\xbd\x67\xa4\xf1\x71\xc5\xde\x5e\xff\x78\xc9\xb2\xa0\xf8\x42\x57\x95\x28\x62\x34\x7a\xca\x8c\x82\x58\xc6\x35\x71\x47\x65\xab\xa3\x59\x38\x92\x01\x01\xc7\xf8\xf8\xe4\xc3\x26\x3a\x47\x3a\xb2\x43\x72\xad\x5a\xf6\xfc\xf9\xf7\x5c\x98\x99\x30\xcf\x9f\xfb\xcf\x88\xf2\x00\xf7\x8b\xd1\xef\xbe\xfa\xff\xa9\x32\x5e\x97\x0a\x1b\xc2\xb8\xdb\x51\xf1\x9d\x41\x00\xb4\xe0\xea\xe0\x00\x4b\x60\xd2\xad\x47\xb6\x61\xb8\x1d\xa1\xc6\x05\x16\xc1\x60\xd7\x44\x43\x64\xd1\x27\x70\x1a\x1e\xdc\x9b\x7a\x4c\xe5\xa5\x20\x2e\x32\x7c\x4f\x08\xb4\x8a\x97\xc3\x88\x48\xec\xfc\xc2\xef\x8a\xe1\x3d\x22\x4c\x55\x56\xec\x28\xde\x0c\x5e\xcd\x20\x26\xf7\x7a\x54\x9c\xb3\xe4\x8e\xb7\x2a\xeb\xa5\x87\xff\x5a\x81\x9b\x56\x13\xf1\xbc\x94\xf7\x0e\x3e\x61\x6c\x93\x1a\x59\x9c\xd0\x4b\x8c\x16\x10\x3d\xec\x3f\x33\x3d\x75\xa7\x72\x6c\x30\x74\x61\xd7\xa6\xcb\xf4\xf5\xfa\x06\xc4\xba\xc0\x41\x0c\x44\x65\x60\xa0\xd5\xa0\x67\xc2\x21\x50\x67\xcf\x69\x61\xcc\xf6\xc9\x7b\x66\xab\xb9\x11\xca\x0d\x21\xf8\x65\xbb\xba\xb5\xd7\x4a\xc1\xb1\x03\x61\x2d\x18\x5a\xd3\x89\x9b\x1b\x38\xd3\x88\x41\x6a\x6b\xea\x74\x25\x62\x52\xe9\x23\x89\xf0\x58\x81\x0f\x82\xb1\xae\xe3\x8c\x16\x43\xe5\xd6\xb3\xd0\xf2\x4f\x40\x7b\x00\xe4\x0f\x27\x8d\x63\x25\xe6\xff\x52\xd0\xc9\x51\x88\xc7\x05\xc5\xc2\x16\x73\x51\x36\x10\x31\xe4\x34\xe8\x94\xd4\xdd\x11\xc2\xd3\x40\x92\x71\x2c\xbe\x76\x25\x44\x4b\xc7\x58\x8b\xda\xb5\x27\x85\x56\x85\xa8\x9d\x3d\x21\xa8\x52\xcd\x86\x21\xcb\xf9\x04\xe0\x0c\xb9\x2a\x87\x89\x7e\x27\xcf\x58\x5e\x71\xbd\x14\x8e\xcb\x2a\xb4\x46\x8a\x5f\x65\x29\x90\xa9\x02\x31\x78\x65\xad\x5c\xca\x8a\x43\xd3\x4c\xa8\x2e\x11\xfa\x3d\xfa\x2d\x07\xb4\x31\xba\xf6\x98\x8d\x7f\x10\xab\xf7\x2f\x7e\xf6\x0f\xf6\x0f\x67\xaf\xa6\x53\x51\xb8\xf7\x67\x57\xd8\x07\xef\xc3\x38\xd4\x7c\x81\x07\x3d\x5c\xf0\xf6\x6f\x8d\x17\xa1\x13\xc3\x8b\x45\x08\xa7\x81\xca\xff\x54\xe8\x05\x5b\x67\x06\xaf\xe1\x19\x1b\xb2\x31\xe8\xe3\x46\x57\x62\xd4\xa6\x0c\xd5\xa8\x7b\xa3\xaf\x88\xd4\xe3\xf0\x75\xe7\x43\xaa\x29\x9c\x27\x64\x9f\xbd\xd1\xaf\x30\xcd\xee\xec\x77\xa7\xa7\xa7\xf8\xdc\x1d\xb2\x71\x29\xed\x02\xa2\x83\xad\x2d\xcf\x2e\xc1\xcc\x91\xc3\xc7\xb8\xe4\x27\x9a\xb1\x84\x1b\xb7\xa3\x72\x06\xf5\x6f\x49\x41\xc3\x81\xf0\xda\x47\xd6\x81\x6e\x12\x49\x57\xbb\x9b\x07\xd2\xe9\x8e\x12\xe8\x51\x8e\x76\x5b\xd7\xc8\xb5\x85\xd4\xc3\xe5\xf9\xf3\x32\xbe\xba\x50\xc3\x99\xf2\x1b\x1d\x24\x19\x50\x01\x3a\x96\x22\x75\xcf\xa2\x64\x83\x3e\xa5\xef\xe3\xbd\xf2\x21\xec\xc4\xfa\x54\x6d\x7d\x10\xd9\x7b\x57\x9d\x30\xe8\x83\xb5\x50\x01\x68\xaf\x5a\xf8\x8c\xb5\xda\xdc\xee\xa4\x1a\xc6\xf9\x7a\xf5\xc1\x18\xa4\xb0\x51\x27\x04\x95\xf0\xa8\x6f\xc5\x1b\x74\x3f\x00\x79\xc7\x9e\xec\xa1\xf9\x65\x7a\x3d\xfb\x4d\xff\xdb\x51\xff\xeb\x6c\xf7\xaf\xa0\xfd\xd1\x8c\xff\xb9\xba\x5f\x7e\x78\x1e\x44\xfb\xdb\xb9\xb6\x66\xa6\x18\x61\x69\xb6\xa8\xe5\x15\x5a\x59\xd7\xab\xe8\x41\xe0\xce\x9e\xc0\x53\x74\x9d\x1f\x9c\x4d\xf3\xc5\xe0\xe8\xd9\xff\x0b\x00\x00\xff\xff\x74\xdc\xbf\xab\x4e\xfa\x00\x00"), }, } fs["/"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ diff --git a/pkg/trait/camel.go b/pkg/trait/camel.go index 26d87c589b..50348255ce 100644 --- a/pkg/trait/camel.go +++ b/pkg/trait/camel.go @@ -217,7 +217,7 @@ func (t *camelTrait) computeConfigMaps(e *Environment) []ctrl.Object { } for i, s := range sources { - if s.ContentRef != "" { + if s.ContentRef != "" || e.isEmbedded(s) { continue } diff --git a/pkg/trait/camel_test.go b/pkg/trait/camel_test.go index 80fd1d43ba..de4e767b03 100644 --- a/pkg/trait/camel_test.go +++ b/pkg/trait/camel_test.go @@ -34,7 +34,7 @@ import ( ) func TestConfigureEnabledCamelTraitSucceeds(t *testing.T) { - trait, environment := createNominalCamelTest() + trait, environment := createNominalCamelTest(false) configured, err := trait.Configure(environment) assert.Nil(t, err) @@ -42,7 +42,7 @@ func TestConfigureEnabledCamelTraitSucceeds(t *testing.T) { } func TestConfigureDisabledCamelTraitFails(t *testing.T) { - trait, environment := createNominalCamelTest() + trait, environment := createNominalCamelTest(false) trait.Enabled = pointer.Bool(false) configured, err := trait.Configure(environment) @@ -51,7 +51,7 @@ func TestConfigureDisabledCamelTraitFails(t *testing.T) { } func TestApplyCamelTraitSucceeds(t *testing.T) { - trait, environment := createNominalCamelTest() + trait, environment := createNominalCamelTest(false) configured, err := trait.Configure(environment) assert.Nil(t, err) @@ -65,7 +65,7 @@ func TestApplyCamelTraitSucceeds(t *testing.T) { } func TestApplyCamelTraitWithoutEnvironmentCatalogAndUnmatchableVersionFails(t *testing.T) { - trait, environment := createNominalCamelTest() + trait, environment := createNominalCamelTest(false) environment.CamelCatalog = nil environment.Integration.Status.RuntimeVersion = "Unmatchable version" environment.Integration.Status.RuntimeProvider = v1.RuntimeProviderQuarkus @@ -79,15 +79,50 @@ func TestApplyCamelTraitWithoutEnvironmentCatalogAndUnmatchableVersionFails(t *t assert.Equal(t, "unable to find catalog matching version requirement: runtime=Unmatchable version, provider=quarkus", err.Error()) } -func createNominalCamelTest() (*camelTrait, *Environment) { +func createNominalCamelTest(withSources bool) (*camelTrait, *Environment) { client, _ := test.NewFakeClient() trait, _ := newCamelTrait().(*camelTrait) trait.Enabled = pointer.Bool(true) - + var sources []v1.SourceSpec + if withSources { + sources = []v1.SourceSpec{ + { + DataSpec: v1.DataSpec{ + Name: "source1.java", + Content: "Java Source Code", + }, + Type: "data", + }, + { + DataSpec: v1.DataSpec{ + Name: "source2.xml", + Content: "XML Source Code", + }, + Type: "data", + }, + { + DataSpec: v1.DataSpec{ + Name: "source3.xml", + ContentRef: "my-cm1", + }, + Type: "data", + }, + } + } else { + sources = []v1.SourceSpec{} + } environment := &Environment{ CamelCatalog: &camel.RuntimeCatalog{ CamelCatalogSpec: v1.CamelCatalogSpec{ + Loaders: map[string]v1.CamelLoader{ + "java": { + Metadata: map[string]string{ + "native": "true", + "sources-required-at-build-time": "true", + }, + }, + }, Runtime: v1.RuntimeSpec{ Version: "0.0.1", Provider: v1.RuntimeProviderQuarkus, @@ -99,10 +134,12 @@ func createNominalCamelTest() (*camelTrait, *Environment) { Client: client, Integration: &v1.Integration{ ObjectMeta: metav1.ObjectMeta{ + Name: "some-integration", Namespace: "namespace", }, Spec: v1.IntegrationSpec{ - Traits: v1.Traits{}, + Traits: v1.Traits{}, + Sources: sources, }, Status: v1.IntegrationStatus{ RuntimeVersion: "0.0.1", @@ -110,6 +147,12 @@ func createNominalCamelTest() (*camelTrait, *Environment) { }, }, IntegrationKit: &v1.IntegrationKit{ + ObjectMeta: metav1.ObjectMeta{ + Labels: map[string]string{ + v1.IntegrationKitLayoutLabel: v1.IntegrationKitLayoutNative, + }, + Namespace: "namespace", + }, Status: v1.IntegrationKitStatus{ Phase: v1.IntegrationKitPhaseReady, }, @@ -127,7 +170,7 @@ func createNominalCamelTest() (*camelTrait, *Environment) { } func TestApplyCamelTraitWithProperties(t *testing.T) { - trait, environment := createNominalCamelTest() + trait, environment := createNominalCamelTest(false) trait.Properties = []string{"a=b", "c=d"} configured, err := trait.Configure(environment) @@ -145,3 +188,23 @@ func TestApplyCamelTraitWithProperties(t *testing.T) { "application.properties": "a=b\nc=d\n", }, userPropertiesCm.Data) } + +func TestApplyCamelTraitWithSources(t *testing.T) { + trait, environment := createNominalCamelTest(true) + + configured, err := trait.Configure(environment) + assert.Nil(t, err) + assert.True(t, configured) + + err = trait.Apply(environment) + assert.Nil(t, err) + + assert.Equal(t, 1, environment.Resources.Size()) + sourceCm := environment.Resources.GetConfigMap(func(cm *corev1.ConfigMap) bool { + return cm.Name == "some-integration-source-001" && cm.Annotations["camel.apache.org/source.language"] == "xml" && cm.Annotations["camel.apache.org/source.name"] == "source2.xml" + }) + assert.NotNil(t, sourceCm) + assert.Equal(t, map[string]string{ + "content": "XML Source Code", + }, sourceCm.Data) +} diff --git a/pkg/trait/quarkus.go b/pkg/trait/quarkus.go index ff3decb316..8187dbdacf 100644 --- a/pkg/trait/quarkus.go +++ b/pkg/trait/quarkus.go @@ -32,6 +32,7 @@ import ( "github.com/apache/camel-k/pkg/builder" "github.com/apache/camel-k/pkg/util/defaults" "github.com/apache/camel-k/pkg/util/kubernetes" + "github.com/apache/camel-k/pkg/util/log" ) const ( @@ -47,6 +48,47 @@ type quarkusTrait struct { BaseTrait traitv1.QuarkusTrait `property:",squash"` } +type languageSettings struct { + // indicates whether the native mode is supported + native bool + // indicates whether the sources are required at build time for native compilation + sourcesRequiredAtBuildTime bool +} + +var ( + // settings for an unknown language. + defaultSettings = languageSettings{false, false} + // settings for languages supporting native mode for old catalogs. + nativeSupportSettings = languageSettings{true, false} +) + +// Retrieves the settings of the given language from the Camel catalog. +func getLanguageSettings(e *Environment, language v1.Language) languageSettings { + if loader, ok := e.CamelCatalog.Loaders[string(language)]; ok { + native, nExists := loader.Metadata["native"] + if !nExists { + log.Debug("The metadata 'native' is absent from the Camel catalog, the legacy language settings are applied") + return getLegacyLanguageSettings(language) + } + sourcesRequiredAtBuildTime, sExists := loader.Metadata["sources-required-at-build-time"] + return languageSettings{ + native: native == "true", + sourcesRequiredAtBuildTime: sExists && sourcesRequiredAtBuildTime == "true", + } + } + log.Debugf("No loader could be found for the language %q, the legacy language settings are applied", string(language)) + return getLegacyLanguageSettings(language) +} + +// Provides the legacy settings of a given language. +func getLegacyLanguageSettings(language v1.Language) languageSettings { + switch language { + case v1.LanguageXML, v1.LanguageYaml, v1.LanguageKamelet: + return nativeSupportSettings + default: + return defaultSettings + } +} func newQuarkusTrait() Trait { return &quarkusTrait{ @@ -161,9 +203,7 @@ func (t *quarkusTrait) applyWhileBuildingKit(e *Environment) { func (t *quarkusTrait) validateNativeSupport(e *Environment) bool { for _, source := range e.Integration.Sources() { - if language := source.InferLanguage(); language != v1.LanguageKamelet && - language != v1.LanguageYaml && - language != v1.LanguageXML { + if language := source.InferLanguage(); !getLanguageSettings(e, language).native { t.L.ForIntegration(e.Integration).Infof("Integration %s/%s contains a %s source that cannot be compiled to native executable", e.Integration.Namespace, e.Integration.Name, language) e.Integration.Status.Phase = v1.IntegrationPhaseError e.Integration.Status.SetCondition( @@ -216,6 +256,9 @@ func (t *quarkusTrait) newIntegrationKit(e *Environment, packageType traitv1.Qua Traits: propagateKitTraits(e), } + if packageType == traitv1.NativePackageType { + kit.Spec.Sources = propagateSourcesRequiredAtBuildTime(e) + } return kit } @@ -265,6 +308,10 @@ func (t *quarkusTrait) applyWhenBuildSubmitted(e *Environment) error { if native { build.Maven.Properties["quarkus.package.type"] = string(traitv1.NativePackageType) + if len(e.IntegrationKit.Spec.Sources) > 0 { + build.Sources = e.IntegrationKit.Spec.Sources + steps = append(steps, builder.Quarkus.PrepareProjectWithSources) + } steps = append(steps, builder.Image.NativeImageContext) // Spectrum does not rely on Dockerfile to assemble the image if e.Platform.Status.Build.PublishStrategy != v1.IntegrationPlatformBuildPublishStrategySpectrum { @@ -319,6 +366,17 @@ func (t *quarkusTrait) isNativeIntegration(e *Environment) bool { return e.IntegrationKit.Labels[v1.IntegrationKitLayoutLabel] == v1.IntegrationKitLayoutNative } +// Indicates whether the given source code is embedded into the final binary. +func (t *quarkusTrait) isEmbedded(e *Environment, source v1.SourceSpec) bool { + if e.IntegrationInRunningPhases() { + return e.IntegrationKit != nil && t.isNativeIntegration(e) && sourcesRequiredAtBuildTime(e, source) + } else if e.IntegrationKitInPhase(v1.IntegrationKitPhaseBuildSubmitted) { + native, _ := t.isNativeKit(e) + return native && sourcesRequiredAtBuildTime(e, source) + } + return false +} + func containsPackageType(types []traitv1.QuarkusPackageType, t traitv1.QuarkusPackageType) bool { for _, ti := range types { if t == ti { @@ -327,3 +385,20 @@ func containsPackageType(types []traitv1.QuarkusPackageType, t traitv1.QuarkusPa } return false } + +// Indicates whether the given source file is required at build time for native compilation. +func sourcesRequiredAtBuildTime(e *Environment, source v1.SourceSpec) bool { + settings := getLanguageSettings(e, source.InferLanguage()) + return settings.native && settings.sourcesRequiredAtBuildTime +} + +// Propagates the sources that are required at build time for native compilation. +func propagateSourcesRequiredAtBuildTime(e *Environment) []v1.SourceSpec { + array := make([]v1.SourceSpec, 0) + for _, source := range e.Integration.Sources() { + if sourcesRequiredAtBuildTime(e, source) { + array = append(array, source) + } + } + return array +} diff --git a/pkg/trait/quarkus_test.go b/pkg/trait/quarkus_test.go index ef9b587fd9..3e2a2faee3 100644 --- a/pkg/trait/quarkus_test.go +++ b/pkg/trait/quarkus_test.go @@ -115,3 +115,93 @@ func createNominalQuarkusTest() (*quarkusTrait, *Environment) { return trait, environment } + +func TestGetLanguageSettingsWithoutLoaders(t *testing.T) { + environment := &Environment{ + CamelCatalog: &camel.RuntimeCatalog{ + CamelCatalogSpec: v1.CamelCatalogSpec{ + Loaders: map[string]v1.CamelLoader{}, + }, + }, + } + assert.Equal(t, languageSettings{native: false, sourcesRequiredAtBuildTime: false}, getLanguageSettings(environment, v1.LanguageJavaSource)) + assert.Equal(t, languageSettings{native: false, sourcesRequiredAtBuildTime: false}, getLanguageSettings(environment, v1.LanguageGroovy)) + assert.Equal(t, languageSettings{native: false, sourcesRequiredAtBuildTime: false}, getLanguageSettings(environment, v1.LanguageJavaScript)) + assert.Equal(t, languageSettings{native: false, sourcesRequiredAtBuildTime: false}, getLanguageSettings(environment, v1.LanguageKotlin)) + assert.Equal(t, languageSettings{native: false, sourcesRequiredAtBuildTime: false}, getLanguageSettings(environment, v1.LanguageJavaShell)) + assert.Equal(t, languageSettings{native: true, sourcesRequiredAtBuildTime: false}, getLanguageSettings(environment, v1.LanguageKamelet)) + assert.Equal(t, languageSettings{native: true, sourcesRequiredAtBuildTime: false}, getLanguageSettings(environment, v1.LanguageXML)) + assert.Equal(t, languageSettings{native: true, sourcesRequiredAtBuildTime: false}, getLanguageSettings(environment, v1.LanguageYaml)) +} + +func TestGetLanguageSettingsWithoutMetadata(t *testing.T) { + environment := &Environment{ + CamelCatalog: &camel.RuntimeCatalog{ + CamelCatalogSpec: v1.CamelCatalogSpec{ + Loaders: map[string]v1.CamelLoader{ + "java": {}, + "groovy": {}, + "js": {}, + "kts": {}, + "jsh": {}, + "kamelet": {}, + "xml": {}, + "yaml": {}, + }, + }, + }, + } + assert.Equal(t, languageSettings{native: false, sourcesRequiredAtBuildTime: false}, getLanguageSettings(environment, v1.LanguageJavaSource)) + assert.Equal(t, languageSettings{native: false, sourcesRequiredAtBuildTime: false}, getLanguageSettings(environment, v1.LanguageGroovy)) + assert.Equal(t, languageSettings{native: false, sourcesRequiredAtBuildTime: false}, getLanguageSettings(environment, v1.LanguageJavaScript)) + assert.Equal(t, languageSettings{native: false, sourcesRequiredAtBuildTime: false}, getLanguageSettings(environment, v1.LanguageKotlin)) + assert.Equal(t, languageSettings{native: false, sourcesRequiredAtBuildTime: false}, getLanguageSettings(environment, v1.LanguageJavaShell)) + assert.Equal(t, languageSettings{native: true, sourcesRequiredAtBuildTime: false}, getLanguageSettings(environment, v1.LanguageKamelet)) + assert.Equal(t, languageSettings{native: true, sourcesRequiredAtBuildTime: false}, getLanguageSettings(environment, v1.LanguageXML)) + assert.Equal(t, languageSettings{native: true, sourcesRequiredAtBuildTime: false}, getLanguageSettings(environment, v1.LanguageYaml)) +} + +func TestGetLanguageSettingsWithLoaders(t *testing.T) { + environment := &Environment{ + CamelCatalog: &camel.RuntimeCatalog{ + CamelCatalogSpec: v1.CamelCatalogSpec{ + Loaders: map[string]v1.CamelLoader{ + "java": { + Metadata: map[string]string{ + "native": "true", + "sources-required-at-build-time": "true", + }, + }, + "groovy": { + Metadata: map[string]string{ + "native": "false", + "sources-required-at-build-time": "false", + }, + }, + "js": { + Metadata: map[string]string{ + "native": "true", + "sources-required-at-build-time": "false", + }, + }, + "kts": { + Metadata: map[string]string{ + "native": "false", + "sources-required-at-build-time": "true", + }, + }, + "jsh": { + Metadata: map[string]string{ + "native": "true", + }, + }, + }, + }, + }, + } + assert.Equal(t, languageSettings{native: true, sourcesRequiredAtBuildTime: true}, getLanguageSettings(environment, v1.LanguageJavaSource)) + assert.Equal(t, languageSettings{native: false, sourcesRequiredAtBuildTime: false}, getLanguageSettings(environment, v1.LanguageGroovy)) + assert.Equal(t, languageSettings{native: true, sourcesRequiredAtBuildTime: false}, getLanguageSettings(environment, v1.LanguageJavaScript)) + assert.Equal(t, languageSettings{native: false, sourcesRequiredAtBuildTime: true}, getLanguageSettings(environment, v1.LanguageKotlin)) + assert.Equal(t, languageSettings{native: true, sourcesRequiredAtBuildTime: false}, getLanguageSettings(environment, v1.LanguageJavaShell)) +} diff --git a/pkg/trait/trait_test.go b/pkg/trait/trait_test.go index 63fcb07d0b..837cc3c425 100644 --- a/pkg/trait/trait_test.go +++ b/pkg/trait/trait_test.go @@ -283,6 +283,7 @@ func TestConfigureVolumesAndMountsSources(t *testing.T) { }, }, }, + Catalog: &Catalog{}, } vols := make([]corev1.Volume, 0) @@ -312,6 +313,109 @@ func TestConfigureVolumesAndMountsSources(t *testing.T) { assert.NotNil(t, m) } +func TestConfigureVolumesAndMountsSourcesInNativeMode(t *testing.T) { + traitList := make([]Trait, 0, len(FactoryList)) + trait, ok := newQuarkusTrait().(*quarkusTrait) + assert.True(t, ok, "A Quarkus trait was expected") + trait.PackageTypes = []traitv1.QuarkusPackageType{traitv1.NativePackageType} + traitList = append(traitList, trait) + env := Environment{ + Resources: kubernetes.NewCollection(), + Integration: &v1.Integration{ + ObjectMeta: metav1.ObjectMeta{ + Name: TestDeploymentName, + Namespace: "ns", + }, + Spec: v1.IntegrationSpec{ + Sources: []v1.SourceSpec{ + { + DataSpec: v1.DataSpec{ + Name: "source1.xml", + ContentRef: "my-cm1", + ContentKey: "source1.xml", + }, + Type: "data", + }, + { + DataSpec: v1.DataSpec{ + Name: "source2.java", + ContentRef: "my-cm2", + }, + Type: "data", + }, + { + DataSpec: v1.DataSpec{ + Name: "source1.java", + ContentRef: "my-cm3", + ContentKey: "source1.java", + }, + Type: "data", + }, + { + DataSpec: v1.DataSpec{ + Name: "source2.xml", + ContentRef: "my-cm4", + }, + Type: "data", + }, + }, + }, + Status: v1.IntegrationStatus{ + Phase: v1.IntegrationPhaseRunning, + }, + }, + IntegrationKit: &v1.IntegrationKit{ + ObjectMeta: metav1.ObjectMeta{ + Labels: map[string]string{ + v1.IntegrationKitLayoutLabel: v1.IntegrationKitLayoutNative, + }, + Namespace: "ns", + }, + }, + Catalog: &Catalog{ + traits: traitList, + }, + CamelCatalog: &camel.RuntimeCatalog{ + CamelCatalogSpec: v1.CamelCatalogSpec{ + Loaders: map[string]v1.CamelLoader{ + "java": { + Metadata: map[string]string{ + "native": "true", + "sources-required-at-build-time": "true", + }, + }, + }, + }, + }, + } + + vols := make([]corev1.Volume, 0) + mnts := make([]corev1.VolumeMount, 0) + + env.configureVolumesAndMounts(&vols, &mnts) + + assert.Len(t, vols, 2) + assert.Len(t, mnts, 2) + + v := findVolume(vols, func(v corev1.Volume) bool { return v.ConfigMap.Name == "my-cm1" }) + assert.NotNil(t, v) + assert.NotNil(t, v.VolumeSource.ConfigMap) + assert.Len(t, v.VolumeSource.ConfigMap.Items, 1) + assert.Equal(t, "source1.xml", v.VolumeSource.ConfigMap.Items[0].Key) + + m := findVVolumeMount(mnts, func(m corev1.VolumeMount) bool { return m.Name == v.Name }) + assert.NotNil(t, m) + + v = findVolume(vols, func(v corev1.Volume) bool { return v.ConfigMap.Name == "my-cm4" }) + assert.NotNil(t, v) + assert.NotNil(t, v.VolumeSource.ConfigMap) + assert.Len(t, v.VolumeSource.ConfigMap.Items, 1) + assert.Equal(t, "content", v.VolumeSource.ConfigMap.Items[0].Key) + + m = findVVolumeMount(mnts, func(m corev1.VolumeMount) bool { return m.Name == v.Name }) + assert.NotNil(t, m) +} + func TestOnlySomeTraitsInfluenceBuild(t *testing.T) { c := NewTraitTestCatalog() buildTraits := []string{"builder", "camel", "quarkus", "registry"} diff --git a/pkg/trait/trait_types.go b/pkg/trait/trait_types.go index b38b9a7d85..f32714d70c 100644 --- a/pkg/trait/trait_types.go +++ b/pkg/trait/trait_types.go @@ -405,32 +405,36 @@ func (e *Environment) addSourcesProperties() { if e.ApplicationProperties == nil { e.ApplicationProperties = make(map[string]string) } - for i, s := range e.Integration.Sources() { + idx := 0 + for _, s := range e.Integration.Sources() { + if e.isEmbedded(s) { + continue + } srcName := strings.TrimPrefix(filepath.ToSlash(s.Name), "/") src := "file:" + path.Join(filepath.ToSlash(camel.SourcesMountPath), srcName) - e.ApplicationProperties[fmt.Sprintf("camel.k.sources[%d].location", i)] = src + e.ApplicationProperties[fmt.Sprintf("camel.k.sources[%d].location", idx)] = src simpleName := srcName if strings.Contains(srcName, ".") { simpleName = srcName[0:strings.Index(srcName, ".")] } - e.ApplicationProperties[fmt.Sprintf("camel.k.sources[%d].name", i)] = simpleName + e.ApplicationProperties[fmt.Sprintf("camel.k.sources[%d].name", idx)] = simpleName for pid, p := range s.PropertyNames { - e.ApplicationProperties[fmt.Sprintf("camel.k.sources[%d].property-names[%d]", i, pid)] = p + e.ApplicationProperties[fmt.Sprintf("camel.k.sources[%d].property-names[%d]", idx, pid)] = p } if s.Type != "" { - e.ApplicationProperties[fmt.Sprintf("camel.k.sources[%d].type", i)] = string(s.Type) + e.ApplicationProperties[fmt.Sprintf("camel.k.sources[%d].type", idx)] = string(s.Type) } if s.InferLanguage() != "" { - e.ApplicationProperties[fmt.Sprintf("camel.k.sources[%d].language", i)] = string(s.InferLanguage()) + e.ApplicationProperties[fmt.Sprintf("camel.k.sources[%d].language", idx)] = string(s.InferLanguage()) } if s.Loader != "" { - e.ApplicationProperties[fmt.Sprintf("camel.k.sources[%d].loader", i)] = s.Loader + e.ApplicationProperties[fmt.Sprintf("camel.k.sources[%d].loader", idx)] = s.Loader } if s.Compression { - e.ApplicationProperties[fmt.Sprintf("camel.k.sources[%d].compressed", i)] = "true" + e.ApplicationProperties[fmt.Sprintf("camel.k.sources[%d].compressed", idx)] = "true" } interceptors := make([]string, 0, len(s.Interceptors)) @@ -441,8 +445,9 @@ func (e *Environment) addSourcesProperties() { interceptors = append(interceptors, e.Interceptors...) } for intID, interceptor := range interceptors { - e.ApplicationProperties[fmt.Sprintf("camel.k.sources[%d].interceptors[%d]", i, intID)] = interceptor + e.ApplicationProperties[fmt.Sprintf("camel.k.sources[%d].interceptors[%d]", idx, intID)] = interceptor } + idx++ } } @@ -450,8 +455,12 @@ func (e *Environment) configureVolumesAndMounts(vols *[]corev1.Volume, mnts *[]c // // Volumes :: Sources // - for i, s := range e.Integration.Sources() { - cmName := fmt.Sprintf("%s-source-%03d", e.Integration.Name, i) + idx := 0 + for _, s := range e.Integration.Sources() { + if e.isEmbedded(s) { + continue + } + cmName := fmt.Sprintf("%s-source-%03d", e.Integration.Name, idx) if s.ContentRef != "" { cmName = s.ContentRef } @@ -460,13 +469,14 @@ func (e *Environment) configureVolumesAndMounts(vols *[]corev1.Volume, mnts *[]c cmKey = s.ContentKey } resName := strings.TrimPrefix(s.Name, "/") - refName := fmt.Sprintf("i-source-%03d", i) + refName := fmt.Sprintf("i-source-%03d", idx) resPath := filepath.Join(camel.SourcesMountPath, resName) vol := getVolume(refName, "configmap", cmName, cmKey, resName) mnt := getMount(refName, resPath, resName, true) *vols = append(*vols, *vol) *mnts = append(*mnts, *mnt) + idx++ } if e.Resources != nil { @@ -651,6 +661,16 @@ func (e *Environment) GetIntegrationContainerName() string { return containerName } +// Indicates whether the given source is embedded in the final binary. +func (e *Environment) isEmbedded(source v1.SourceSpec) bool { + if dt := e.Catalog.GetTrait(quarkusTraitID); dt != nil { + if qt, ok := dt.(*quarkusTrait); ok { + return qt.isEmbedded(e, source) + } + } + return false +} + func (e *Environment) GetIntegrationContainer() *corev1.Container { containerName := e.GetIntegrationContainerName() return e.Resources.GetContainerByName(containerName) diff --git a/pkg/util/source/inspector.go b/pkg/util/source/inspector.go index 33fa7b2b79..7be1eaf545 100644 --- a/pkg/util/source/inspector.go +++ b/pkg/util/source/inspector.go @@ -207,6 +207,12 @@ func InspectorForLanguage(catalog *camel.RuntimeCatalog, language v1.Language) I catalog: catalog, }, } + case v1.LanguageJavaShell: + return &JavaSourceInspector{ + baseInspector: baseInspector{ + catalog: catalog, + }, + } } return &baseInspector{} } diff --git a/resources/traits.yaml b/resources/traits.yaml index 05c383ad80..697d8c5230 100755 --- a/resources/traits.yaml +++ b/resources/traits.yaml @@ -1216,7 +1216,6 @@ traits: - OpenShift description: 'The Quarkus trait configures the Quarkus runtime. It''s enabled by default. NOTE: Compiling to a native executable, i.e. when using `package-type=native`, - is only supported for kamelets, as well as YAML and XML integrations. It also requires at least 4GiB of memory, so the Pod running the native build, that is either the operator Pod, or the build Pod (depending on the build strategy configured for the platform), must have enough memory available.' diff --git a/script/Makefile b/script/Makefile index 57802320a8..87be984e55 100644 --- a/script/Makefile +++ b/script/Makefile @@ -321,6 +321,10 @@ test-quarkus-native: do-build STAGING_RUNTIME_REPO="$(STAGING_RUNTIME_REPO)" \ go test -timeout 180m -v ./e2e/namespace/native -tags=integration $(TEST_QUARKUS_RUN) -json 2>&1 | gotestfmt +test-quarkus-native-high-memory: do-build + STAGING_RUNTIME_REPO="$(STAGING_RUNTIME_REPO)" \ + go test -timeout 180m -v ./e2e/namespace/native -tags=integration,high_memory $(TEST_QUARKUS_RUN) -json 2>&1 | gotestfmt + test-upgrade: do-build STAGING_RUNTIME_REPO="$(STAGING_RUNTIME_REPO)" \ go test -timeout 90m -v ./e2e/namespace/upgrade -tags=integration $(TEST_UPGRADE_RUN) -json 2>&1 | gotestfmt