From d76d251f9ba44ff6e43132c2805521289ee17dd9 Mon Sep 17 00:00:00 2001 From: Pasquale Congiusti Date: Fri, 14 May 2021 10:51:46 +0200 Subject: [PATCH 1/5] chore(example): complete set of user config Ref #2003 --- examples/README.md | 3 +- examples/basic/README.md | 3 -- examples/basic/props.js | 25 --------------- examples/cron/README.md | 3 ++ examples/{basic => cron}/cron.groovy | 0 examples/kafka/README.md | 6 ++++ examples/user-config/README.md | 3 ++ examples/user-config/configmap-route.groovy | 30 ++++++++++++++++++ examples/user-config/my.properties | 2 ++ .../user-config/property-file-route.groovy | 27 ++++++++++++++++ examples/user-config/property-route.groovy | 27 ++++++++++++++++ .../resources-base64-encoded-route.groovy | 28 ++++++++++++++++ .../user-config/resources-binary-route.groovy | 27 ++++++++++++++++ .../{basic => user-config}/resources-data.txt | 0 examples/user-config/resources-data.zip | Bin 0 -> 199 bytes .../resources-route.groovy | 5 ++- examples/user-config/secret-route.groovy | 30 ++++++++++++++++++ 17 files changed, 187 insertions(+), 32 deletions(-) delete mode 100644 examples/basic/README.md delete mode 100644 examples/basic/props.js create mode 100644 examples/cron/README.md rename examples/{basic => cron}/cron.groovy (100%) create mode 100644 examples/user-config/README.md create mode 100644 examples/user-config/configmap-route.groovy create mode 100644 examples/user-config/my.properties create mode 100644 examples/user-config/property-file-route.groovy create mode 100644 examples/user-config/property-route.groovy create mode 100644 examples/user-config/resources-base64-encoded-route.groovy create mode 100644 examples/user-config/resources-binary-route.groovy rename examples/{basic => user-config}/resources-data.txt (100%) create mode 100644 examples/user-config/resources-data.zip rename examples/{basic => user-config}/resources-route.groovy (88%) create mode 100644 examples/user-config/secret-route.groovy diff --git a/examples/README.md b/examples/README.md index 239916c116..a7db7090fe 100644 --- a/examples/README.md +++ b/examples/README.md @@ -9,7 +9,8 @@ In this section you will find the most basic examples. Useful to start learning | Type | Description | Link | |---|---|---| | Languages | Simple integrations developed in various supported languages | [see examples](./languages/)| -| Basic | Basic features such as `cron`, `properties` or `resource`s | [see examples](./basic/)| +| Cron | How to create a `cront` integration | [see examples](./cron/)| +| User Config | Explore how to include a `property`, `secret`, `configmap` or file `resource` in your integration | [see examples](./user-config/)| | Processor | Show how to include `Processor`s logic | [see examples](./processor/)| | Open API | `Open API` support | [see examples](./openapi/)| | Rest | Produce/Consume `REST`ful services | [see examples](./rest/)| diff --git a/examples/basic/README.md b/examples/basic/README.md deleted file mode 100644 index 721f701d17..0000000000 --- a/examples/basic/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# Basic Camel K examples - -Find useful examples about how to use certain basic features of Camel K. \ No newline at end of file diff --git a/examples/basic/props.js b/examples/basic/props.js deleted file mode 100644 index 6670b79966..0000000000 --- a/examples/basic/props.js +++ /dev/null @@ -1,25 +0,0 @@ -// camel-k: language=js -// 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. - -// -// To run this integrations use: -// -// kamel run -p my.message=test-props examples/props.js -// - -from('timer:props?period=1000') - .routeId('props') - .log('{{my.message}}') diff --git a/examples/cron/README.md b/examples/cron/README.md new file mode 100644 index 0000000000..ff46201127 --- /dev/null +++ b/examples/cron/README.md @@ -0,0 +1,3 @@ +# Camel K cron examples + +Find useful examples about how to create a cron route in Camel K. \ No newline at end of file diff --git a/examples/basic/cron.groovy b/examples/cron/cron.groovy similarity index 100% rename from examples/basic/cron.groovy rename to examples/cron/cron.groovy diff --git a/examples/kafka/README.md b/examples/kafka/README.md index d92fbca1f4..77b2435ec1 100644 --- a/examples/kafka/README.md +++ b/examples/kafka/README.md @@ -2,6 +2,12 @@ This example shows how Camel K can be used to connect to a Kafka broker. +## Authentication to Kafka + +We have a dedicated section to show [how to authenticate Camel K to Kafka](./sasl_ssl/). + +## Simple usage + To run this example first set-up Kafka on your k8s cluster. A convenient way to do so is by using the Strimzi project, if you are using minikube follow these instructions at https://strimzi.io/quickstarts/minikube/ diff --git a/examples/user-config/README.md b/examples/user-config/README.md new file mode 100644 index 0000000000..4af0fd8d20 --- /dev/null +++ b/examples/user-config/README.md @@ -0,0 +1,3 @@ +# Camel K user configuration examples + +Find useful examples about how to include a configuration property or a configuration file in Camel K. \ No newline at end of file diff --git a/examples/user-config/configmap-route.groovy b/examples/user-config/configmap-route.groovy new file mode 100644 index 0000000000..5a61c56b0f --- /dev/null +++ b/examples/user-config/configmap-route.groovy @@ -0,0 +1,30 @@ +// camel-k: language=groovy +/* + * 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. + */ + +// +// To run this integrations use: +// +// kubectl create configmap my-cm --from-literal=my-configmap-key="configmap content" +// kamel run --configmap my-cm configmap-route.groovy --dev +// + +from('timer:configmap') + .routeId('configmap') + .setBody() + .simple("resource:classpath:my-configmap-key") + .log('configmap content is: ${body}') diff --git a/examples/user-config/my.properties b/examples/user-config/my.properties new file mode 100644 index 0000000000..3ab90369f1 --- /dev/null +++ b/examples/user-config/my.properties @@ -0,0 +1,2 @@ +my.key.1=hello +my.key.2=world \ No newline at end of file diff --git a/examples/user-config/property-file-route.groovy b/examples/user-config/property-file-route.groovy new file mode 100644 index 0000000000..13a09fce84 --- /dev/null +++ b/examples/user-config/property-file-route.groovy @@ -0,0 +1,27 @@ +// camel-k: language=groovy +/* + * 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. + */ + +// +// To run this integrations use: +// +// kamel run --property-file my.properties property-file-route.groovy --dev +// + +from('timer:property-file') + .routeId('property-file') + .log('property file content is: {{my.key.1}} {{my.key.2}}') diff --git a/examples/user-config/property-route.groovy b/examples/user-config/property-route.groovy new file mode 100644 index 0000000000..705eca6dbf --- /dev/null +++ b/examples/user-config/property-route.groovy @@ -0,0 +1,27 @@ +// camel-k: language=groovy +/* + * 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. + */ + +// +// To run this integrations use: +// +// kamel run -p my.message=test-property property-route.groovy --dev +// + +from('timer:property') + .routeId('property') + .log('property content is: {{my.message}}') diff --git a/examples/user-config/resources-base64-encoded-route.groovy b/examples/user-config/resources-base64-encoded-route.groovy new file mode 100644 index 0000000000..02559f0bf8 --- /dev/null +++ b/examples/user-config/resources-base64-encoded-route.groovy @@ -0,0 +1,28 @@ +// camel-k: language=groovy +/* + * 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. + */ + +// +// To run this integrations use: +// kamel run --resource resources-data.txt --compression=true resources-base64-encoded-route.groovy --dev +// + +from('timer:resources-bas64') + .routeId('resources-base64') + .setBody() + .simple("resource:classpath:resources-data.txt") + .log('resource file base64 content is: ${body}') diff --git a/examples/user-config/resources-binary-route.groovy b/examples/user-config/resources-binary-route.groovy new file mode 100644 index 0000000000..8b0878bf97 --- /dev/null +++ b/examples/user-config/resources-binary-route.groovy @@ -0,0 +1,27 @@ +// camel-k: language=groovy +/* + * 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. + */ + +// +// To run this integrations use: +// kamel run --resource resources-data.zip resources-binary-route.groovy -d camel-zipfile --dev +// + +from('file:/etc/camel/resources/?fileName=resources-data.zip&noop=true&idempotent=false') + .routeId('resources-zip') + .unmarshal().zipFile() + .log('resource file unzipped content is: ${body}') diff --git a/examples/basic/resources-data.txt b/examples/user-config/resources-data.txt similarity index 100% rename from examples/basic/resources-data.txt rename to examples/user-config/resources-data.txt diff --git a/examples/user-config/resources-data.zip b/examples/user-config/resources-data.zip new file mode 100644 index 0000000000000000000000000000000000000000..667d0b0db27e91fbae3263cbe562f42cb7e8109c GIT binary patch literal 199 zcmWIWW@h1H0D*?6$w3Q>(|+*+*&r;$Aj43UTAW{6l$=_uo03?Ps8>=^5*otEz-;eb zn=te3oP^Q}ZU#n{7t9O{V4@@=RUs`iCsiRSKczCjn~_P58JE!#AR8GNfp|+Jh=t7} YR)|GtmIQdSvVn9k0$~J@js$TS03XyWhyVZp literal 0 HcmV?d00001 diff --git a/examples/basic/resources-route.groovy b/examples/user-config/resources-route.groovy similarity index 88% rename from examples/basic/resources-route.groovy rename to examples/user-config/resources-route.groovy index 6f8be4490c..6f572853c4 100644 --- a/examples/basic/resources-route.groovy +++ b/examples/user-config/resources-route.groovy @@ -18,12 +18,11 @@ // // To run this integrations use: -// -// kamel run --resource examples/resources-data.txt examples/resources-route.groovy +// kamel run --resource resources-data.txt resources-route.groovy --dev // from('timer:resources') .routeId('resources') .setBody() .simple("resource:classpath:resources-data.txt") - .log('file content is: ${body}') + .log('resource file content is: ${body}') diff --git a/examples/user-config/secret-route.groovy b/examples/user-config/secret-route.groovy new file mode 100644 index 0000000000..49966aed6b --- /dev/null +++ b/examples/user-config/secret-route.groovy @@ -0,0 +1,30 @@ +// camel-k: language=groovy +/* + * 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. + */ + +// +// To run this integrations use: +// +// kubectl create secret generic my-sec --from-literal=my-secret-key="very top secret" +// kamel run --secret my-sec secret-route.groovy --dev +// + +from('timer:secret') + .routeId('secret') + .setBody() + .simple("resource:classpath:my-secret-key") + .log('secret content is: ${body}') From 5852bea978e69c379c063a6ebab034175362eb42 Mon Sep 17 00:00:00 2001 From: Pasquale Congiusti Date: Fri, 14 May 2021 14:33:23 +0200 Subject: [PATCH 2/5] chore(e2e): resource test refactory * Changed Java test with Groovy test * Covered all resources cases (base encoded) Ref #2003 --- .gitignore | 1 + .../resources-base64-encoded-route.groovy} | 32 +++----- .../files/resources-binary-route.groovy | 27 +++++++ .../files/resources-data.txt | 0 .../files/resources-data.zip | Bin .../files/resources-route.groovy} | 21 +++-- e2e/config/resources_test.go | 73 ++++++++++++++++++ e2e/resources/resources_test.go | 56 -------------- pkg/cmd/util.go | 9 +-- pkg/resources/resources.go | 4 +- script/Makefile | 4 +- 11 files changed, 128 insertions(+), 99 deletions(-) rename e2e/{resources/files/ResourcesBinary.java => config/files/resources-base64-encoded-route.groovy} (56%) create mode 100644 e2e/config/files/resources-binary-route.groovy rename e2e/{resources => config}/files/resources-data.txt (100%) rename e2e/{resources => config}/files/resources-data.zip (100%) rename e2e/{resources/files/ResourcesText.java => config/files/resources-route.groovy} (71%) create mode 100644 e2e/config/resources_test.go delete mode 100644 e2e/resources/resources_test.go diff --git a/.gitignore b/.gitignore index 46982078ff..94ad8cb095 100644 --- a/.gitignore +++ b/.gitignore @@ -32,6 +32,7 @@ build/_output build/_test build/_maven_output +build/_maven_overlay build/_kamelets /api_* diff --git a/e2e/resources/files/ResourcesBinary.java b/e2e/config/files/resources-base64-encoded-route.groovy similarity index 56% rename from e2e/resources/files/ResourcesBinary.java rename to e2e/config/files/resources-base64-encoded-route.groovy index e1dbb552a9..02559f0bf8 100644 --- a/e2e/resources/files/ResourcesBinary.java +++ b/e2e/config/files/resources-base64-encoded-route.groovy @@ -1,3 +1,4 @@ +// camel-k: language=groovy /* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with @@ -14,27 +15,14 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - -import org.apache.camel.Exchange; -import org.apache.camel.Processor; -public class ResourcesBinary extends org.apache.camel.builder.RouteBuilder { +// +// To run this integrations use: +// kamel run --resource resources-data.txt --compression=true resources-base64-encoded-route.groovy --dev +// - @Override - public void configure() throws Exception { - from("file:/etc/camel/resources/i-resource-000/?noop=true") - .unmarshal().zipFile() - .convertBodyTo(String.class) - .process(new ZipEntryProcessor()); - } - -} - -class ZipEntryProcessor implements Processor { - - @Override - public void process(Exchange exchange) throws Exception { - System.out.println(exchange.getIn().getBody().toString()); - } - -} \ No newline at end of file +from('timer:resources-bas64') + .routeId('resources-base64') + .setBody() + .simple("resource:classpath:resources-data.txt") + .log('resource file base64 content is: ${body}') diff --git a/e2e/config/files/resources-binary-route.groovy b/e2e/config/files/resources-binary-route.groovy new file mode 100644 index 0000000000..8b0878bf97 --- /dev/null +++ b/e2e/config/files/resources-binary-route.groovy @@ -0,0 +1,27 @@ +// camel-k: language=groovy +/* + * 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. + */ + +// +// To run this integrations use: +// kamel run --resource resources-data.zip resources-binary-route.groovy -d camel-zipfile --dev +// + +from('file:/etc/camel/resources/?fileName=resources-data.zip&noop=true&idempotent=false') + .routeId('resources-zip') + .unmarshal().zipFile() + .log('resource file unzipped content is: ${body}') diff --git a/e2e/resources/files/resources-data.txt b/e2e/config/files/resources-data.txt similarity index 100% rename from e2e/resources/files/resources-data.txt rename to e2e/config/files/resources-data.txt diff --git a/e2e/resources/files/resources-data.zip b/e2e/config/files/resources-data.zip similarity index 100% rename from e2e/resources/files/resources-data.zip rename to e2e/config/files/resources-data.zip diff --git a/e2e/resources/files/ResourcesText.java b/e2e/config/files/resources-route.groovy similarity index 71% rename from e2e/resources/files/ResourcesText.java rename to e2e/config/files/resources-route.groovy index 8ae314fd78..6f572853c4 100644 --- a/e2e/resources/files/ResourcesText.java +++ b/e2e/config/files/resources-route.groovy @@ -1,3 +1,4 @@ +// camel-k: language=groovy /* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with @@ -14,16 +15,14 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - -import org.apache.camel.Exchange; -import org.apache.camel.Processor; -public class ResourcesText extends org.apache.camel.builder.RouteBuilder { +// +// To run this integrations use: +// kamel run --resource resources-data.txt resources-route.groovy --dev +// - @Override - public void configure() throws Exception { - from("file:/etc/camel/resources/i-resource-000/?noop=true") - .log("${body}"); - } - -} \ No newline at end of file +from('timer:resources') + .routeId('resources') + .setBody() + .simple("resource:classpath:resources-data.txt") + .log('resource file content is: ${body}') diff --git a/e2e/config/resources_test.go b/e2e/config/resources_test.go new file mode 100644 index 0000000000..404b7a2abe --- /dev/null +++ b/e2e/config/resources_test.go @@ -0,0 +1,73 @@ +// +build integration + +// 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 resources + +import ( + "testing" + + . "github.com/onsi/gomega" + "github.com/stretchr/testify/assert" + + v1 "k8s.io/api/core/v1" + + "io/ioutil" + + . "github.com/apache/camel-k/e2e/support" + camelv1 "github.com/apache/camel-k/pkg/apis/camel/v1" + "github.com/apache/camel-k/pkg/util/gzip" +) + +func TestRunResourceExamples(t *testing.T) { + WithNewTestNamespace(t, func(ns string) { + Expect(Kamel("install", "-n", ns).Execute()).To(Succeed()) + + t.Run("Plain text resource file", func(t *testing.T) { + Expect(Kamel("run", "-n", ns, "./files/resources-route.groovy", "--resource", "./files/resources-data.txt").Execute()).To(Succeed()) + Eventually(IntegrationPodPhase(ns, "resources-route"), TestTimeoutMedium).Should(Equal(v1.PodRunning)) + Eventually(IntegrationCondition(ns, "resources-route", camelv1.IntegrationConditionReady), TestTimeoutShort).Should(Equal(v1.ConditionTrue)) + Eventually(IntegrationLogs(ns, "resources-route"), TestTimeoutShort).Should(ContainSubstring("the file body")) + Expect(Kamel("delete", "--all", "-n", ns).Execute()).To(Succeed()) + }) + + t.Run("Binary (zip) resource file", func(t *testing.T) { + Expect(Kamel("run", "-n", ns, "./files/resources-binary-route.groovy", "--resource", "./files/resources-data.zip", "-d", "camel-zipfile").Execute()).To(Succeed()) + Eventually(IntegrationPodPhase(ns, "resources-binary-route"), TestTimeoutMedium).Should(Equal(v1.PodRunning)) + Eventually(IntegrationCondition(ns, "resources-binary-route", camelv1.IntegrationConditionReady), TestTimeoutShort).Should(Equal(v1.ConditionTrue)) + Eventually(IntegrationLogs(ns, "resources-binary-route"), TestTimeoutShort).Should(ContainSubstring("the file body")) + Expect(Kamel("delete", "--all", "-n", ns).Execute()).To(Succeed()) + }) + + t.Run("Base64 compressed binary resource file", func(t *testing.T) { + // We calculate the expected content + source, err := ioutil.ReadFile("./files/resources-data.txt") + assert.Nil(t, err) + expectedBytes, err := gzip.CompressBase64([]byte(source)) + assert.Nil(t, err) + + Expect(Kamel("run", "-n", ns, "./files/resources-base64-encoded-route.groovy", "--resource", "./files/resources-data.txt", "--compression=true").Execute()).To(Succeed()) + Eventually(IntegrationPodPhase(ns, "resources-base64-encoded-route"), TestTimeoutMedium).Should(Equal(v1.PodRunning)) + Eventually(IntegrationCondition(ns, "resources-base64-encoded-route", camelv1.IntegrationConditionReady), TestTimeoutShort).Should(Equal(v1.ConditionTrue)) + Eventually(IntegrationLogs(ns, "resources-base64-encoded-route"), TestTimeoutShort).Should(ContainSubstring(string(expectedBytes))) + Expect(Kamel("delete", "--all", "-n", ns).Execute()).To(Succeed()) + }) + }) +} diff --git a/e2e/resources/resources_test.go b/e2e/resources/resources_test.go deleted file mode 100644 index c7b08ba886..0000000000 --- a/e2e/resources/resources_test.go +++ /dev/null @@ -1,56 +0,0 @@ -// +build integration - -// 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 resources - -import ( - "testing" - - . "github.com/onsi/gomega" - - v1 "k8s.io/api/core/v1" - - . "github.com/apache/camel-k/e2e/support" - camelv1 "github.com/apache/camel-k/pkg/apis/camel/v1" -) - -func TestRunResourceExamples(t *testing.T) { - WithNewTestNamespace(t, func(ns string) { - Expect(Kamel("install", "-n", ns).Execute()).To(Succeed()) - - t.Run("run java", func(t *testing.T) { - Expect(Kamel("run", "-n", ns, "./files/ResourcesText.java", "--resource", "./files/resources-data.txt").Execute()).To(Succeed()) - Eventually(IntegrationPodPhase(ns, "resources-text"), TestTimeoutMedium).Should(Equal(v1.PodRunning)) - Eventually(IntegrationCondition(ns, "resources-text", camelv1.IntegrationConditionReady), TestTimeoutShort).Should(Equal(v1.ConditionTrue)) - Eventually(IntegrationLogs(ns, "resources-text"), TestTimeoutShort).Should(ContainSubstring("the file body")) - Expect(Kamel("delete", "--all", "-n", ns).Execute()).To(Succeed()) - }) - - t.Run("run java", func(t *testing.T) { - Expect(Kamel("run", "-n", ns, "./files/ResourcesBinary.java", - "--resource", "./files/resources-data.zip", "-d", "camel-zipfile").Execute()).To(Succeed()) - Eventually(IntegrationPodPhase(ns, "resources-binary"), TestTimeoutMedium).Should(Equal(v1.PodRunning)) - Eventually(IntegrationCondition(ns, "resources-binary", camelv1.IntegrationConditionReady), TestTimeoutShort).Should(Equal(v1.ConditionTrue)) - Eventually(IntegrationLogs(ns, "resources-binary"), TestTimeoutShort).Should(ContainSubstring("the file body")) - Expect(Kamel("delete", "--all", "-n", ns).Execute()).To(Succeed()) - }) - }) -} diff --git a/pkg/cmd/util.go b/pkg/cmd/util.go index 3e364a6219..b2875298fc 100644 --- a/pkg/cmd/util.go +++ b/pkg/cmd/util.go @@ -18,9 +18,7 @@ limitations under the License. package cmd import ( - "bytes" "context" - "encoding/base64" "encoding/csv" "encoding/json" "fmt" @@ -243,11 +241,10 @@ func fieldByMapstructureTagName(target reflect.Value, tagName string) (reflect.S } func compressToString(content []byte) (string, error) { - var b bytes.Buffer - - if err := gzip.Compress(&b, content); err != nil { + bytes, err := gzip.CompressBase64(content) + if err != nil { return "", err } - return base64.StdEncoding.EncodeToString(b.Bytes()), nil + return string(bytes), nil } diff --git a/pkg/resources/resources.go b/pkg/resources/resources.go index 1005db3369..93f34e079e 100644 --- a/pkg/resources/resources.go +++ b/pkg/resources/resources.go @@ -467,9 +467,9 @@ var assets = func() http.FileSystem { "/traits.yaml": &vfsgen۰CompressedFileInfo{ name: "traits.yaml", modTime: time.Time{}, - uncompressedSize: 38387, + uncompressedSize: 38635, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x6d\x6f\x1c\x37\xd2\xe0\x77\xff\x0a\x42\xcf\x01\x7a\xc1\x4c\x4b\xce\x22\xbb\x39\xdd\xf9\x16\x8a\xed\xec\x2a\x89\x6d\x9d\xe5\xcd\xe2\xe0\x0b\x76\x38\xdd\x35\x33\xb4\xd8\x64\x2f\xc9\x96\x3c\x39\xdc\x7f\x3f\xb0\x8a\x6f\x3d\xd3\x92\x46\x4e\x14\x44\x87\x67\xf7\x43\x2c\xa9\xbb\x58\x2c\x16\xeb\xbd\xaa\x9d\xe1\xc2\xd9\xd3\x67\x53\xa6\x78\x0b\xa7\x8c\x2f\x16\x42\x09\xb7\x7e\xc6\x58\x27\xb9\x5b\x68\xd3\x9e\xb2\x05\x97\x16\xfc\x6f\x8c\x5e\x08\x09\xf6\xf4\x19\x63\x53\xf6\x43\x3f\x07\xa3\xc0\x81\xa5\x1f\x15\x77\xe2\x1a\xf0\xdf\xef\x3a\x50\x97\x2b\xb1\x70\xcf\x18\x6b\xc0\xd6\x46\x74\x4e\x68\x75\xca\xce\xa4\xd4\x37\x96\xd5\x5a\x59\xbf\xb2\x12\x6a\xc9\x6e\x56\xa2\x5e\x31\xa5\x1b\xb0\xcc\xad\x80\x09\xe5\x60\x69\xb8\x7f\x81\x75\xba\x39\xb0\x87\x8c\x1b\x60\x20\xc5\x52\xcc\xa5\x5f\x80\x31\xa7\xd9\x1c\x98\xad\x57\xd0\xf4\x12\x1a\xa6\xd5\x84\xcd\xb9\xc5\x7f\x31\xc9\xe7\x20\xad\xff\x97\x07\xe7\x01\x4f\x98\x36\xec\x46\xb8\x15\x02\x37\xd3\x4e\x37\x69\xa7\x8c\xab\x06\x61\x72\xe5\xc4\x34\xfe\x76\x14\x5c\xa7\x1b\x8f\x22\x77\x88\x10\x97\x06\x78\xb3\x66\xa6\x57\xb8\x8f\x62\x3d\x5b\x21\xc4\x73\xb7\x6f\x59\x23\x2c\x9f\x7b\x1c\xe7\x6b\xd6\xc0\x82\xf7\xd2\x55\x44\xcb\x0e\x8c\x13\x91\x9a\x44\x7e\x50\xf8\x2c\xed\x71\xdd\xc1\x29\x9b\x6b\x2d\xf1\xc7\x01\x1d\x5f\x72\xe5\x09\xd0\x7b\x14\x9d\x0e\xaf\xf9\x4d\x86\xd5\x18\x67\x78\xb2\x95\xa7\x38\xfd\xd3\x32\xbb\xf2\x68\xbb\x95\xf0\x07\xd0\xb6\x5a\x21\xdc\x84\xca\xba\x2a\x10\xe9\x74\x33\x2d\x78\xe1\x6e\x6c\xce\xe4\x0d\x5f\x7b\xa0\x53\xa9\x6b\xee\xc0\xb2\xb6\x97\x4e\x74\x12\x98\x81\x4e\x8a\x9a\x5b\xa6\x17\x5b\x87\x2b\x88\x60\x96\xb7\x10\x30\xf1\xb4\x63\x07\x81\x4a\xec\x08\xf9\xee\xe8\x70\x0b\xaf\xf2\xa0\xee\x45\xee\x2d\x5c\x83\xf9\x5d\x70\xf3\x4f\x24\xbc\xa6\xc4\x36\x05\x7a\xfb\x1f\x7f\xb6\xce\x08\xb5\xdc\xdf\x46\xf2\x15\x2c\x84\x02\xcb\x38\xb3\xe0\x3c\x3e\x3b\x5f\x07\xba\x0a\x01\xc7\x9d\x2f\xc4\x6d\x47\xfd\x2b\xb1\xc6\x0b\x72\xe0\xc1\xca\x35\x73\x2b\x6d\x81\xb5\xdc\xd5\x2b\x7f\x3d\xfc\xd2\x08\x9d\x59\x90\x50\x3b\x6d\x26\x01\x6b\x03\x12\x45\x87\xdf\x8a\x7f\x6a\x29\xae\x41\x21\x72\xb6\xe3\x35\x1c\xd2\x95\x73\x2b\x18\x21\x85\x5d\xe9\x5e\x36\xfe\x2e\xa4\x13\x6e\x02\x58\x7f\xdf\xef\x64\x9d\xa7\xba\x59\xa5\xdd\x1d\x1b\x8e\xdb\x9d\xf7\x42\x36\x60\x06\x82\xdc\x99\xfe\xb7\x91\xe3\x1f\x56\x10\x17\x20\xe9\xc2\x84\x25\xd9\xaa\xb8\x94\xeb\x24\x98\x1a\x70\x60\x5a\xa1\x00\xf7\x3a\x07\xeb\x98\x17\xfc\x0e\x96\xeb\x24\xc7\x3d\x18\x2f\x84\xbd\x56\x58\x88\x65\x6f\x80\x9d\xe7\xbd\xff\x20\x9c\x7d\x02\xf2\xf2\x1a\xcc\x5c\x5b\xb8\x17\x91\xd7\xb4\x72\x78\x9c\x49\xbd\x5c\x06\xdd\x41\x74\xa8\x75\xdb\x69\x05\xca\x05\x45\x63\xfb\xae\xd3\xc6\x31\xe1\xd8\x01\x54\xcb\x2a\xa0\xf0\x03\x57\xe2\x2a\xd2\xae\xd3\xcd\x61\x3e\xf7\xda\x33\xe4\xe3\x9d\xfa\x4b\x0f\x3e\x9c\x79\x3d\xa4\x6a\x3e\xbf\x6b\x30\x56\x68\x85\x92\xf5\xac\xe3\x75\x7a\xef\x07\xc4\xdf\xf4\xca\x89\x16\xf0\xd0\xf1\x3e\x40\xc3\xa4\x98\x1b\x6e\x04\xd8\x09\x23\xc8\x81\xcb\xa3\xfa\x7c\x02\x3c\x10\xb6\x35\x0d\xbb\x2f\x10\x22\xa1\xb2\x8d\x92\x27\x28\x9e\xd7\xf4\x6a\x1a\x89\x12\xde\xf6\x28\xf6\x16\xd8\x42\x9b\x4d\x35\x50\xb1\x73\xc7\xf4\x35\x18\x23\x1a\xb0\x01\x21\xff\x4c\x54\x4e\x11\x84\x17\x54\x41\x91\x15\x37\x8a\x5d\x04\xce\x28\x78\x46\x2b\xc7\x85\x7a\x4c\x69\xf1\x32\x2e\x71\x1f\xef\xe4\x43\x8e\x7a\xb9\xc4\x8e\xb1\x9b\x15\x18\xd8\xd2\x8c\x37\x42\x4a\x7f\x00\x48\x1b\x2e\xad\xf6\x70\xae\x3d\x7d\x12\x68\x7a\xd0\xd3\xf3\x12\xcc\xb5\xa8\xbd\x2c\xb7\x56\xd7\x22\x89\xd0\x20\x92\xd3\x7a\x4f\x80\xe7\x78\xef\xf4\xbd\x58\xec\xed\x95\x5c\x0a\xff\xee\xc1\xba\x69\xdd\xf5\x3b\x72\x68\x2b\x94\x68\xfb\x96\xf1\x56\xf7\x0a\x55\xdf\xcb\x8b\x7f\x20\x1c\x61\xe8\x62\x6e\xc2\x6e\xa1\xd5\x66\xfd\xc5\xe0\xe9\xf5\xd1\x15\xa4\x68\xc5\x83\x70\xe7\x9f\x77\xc4\x9d\x20\x3f\x0c\xf3\x2d\xe0\x77\x60\x0e\x9f\xbb\x5d\x14\xc4\x28\xc7\x1c\x47\x76\x41\x20\x28\x61\x05\x67\x57\xe9\x2a\x46\x8e\x1e\x9a\x3b\xc6\x15\xab\x09\xe5\x46\x36\x51\x5e\x3c\xce\x1a\xb1\x58\x80\x01\xe5\xf0\xe5\x80\x31\x3a\x2e\x83\x6b\x91\xad\xe0\xd9\x37\x27\xdf\x9c\xcc\x0e\x37\x97\x9d\xaa\x68\x36\xdf\x43\xc3\x3b\x97\xf7\x40\x92\xf8\xbb\x13\xa1\x70\x3f\x32\x5a\x2b\xe7\xba\x21\x5a\x96\x08\x34\x7d\x30\x55\x7a\xe5\x6d\x1c\xf2\x51\x03\x10\x42\x66\x48\x12\x52\xd2\x76\x60\x8d\x47\x74\x4b\x72\xdd\x8e\xd5\x17\x11\xed\x56\xec\x90\x78\xa3\x28\x46\x7d\x81\x1e\xf4\x36\x8a\xdb\xa4\xdb\x15\x2f\xbc\x10\x42\x15\x2b\xfa\x37\x2b\xf2\x82\xfd\x3f\x1b\x36\x2b\x44\xf6\x6c\xc3\x21\x4e\x0c\x64\xf4\x1c\xec\x74\x57\x09\x7b\x81\x8f\x93\x59\xd5\x6c\x5e\x17\x82\x15\x1d\x9f\x31\x06\x46\x37\x6e\x76\xb8\xb9\xfe\xb4\xe3\x6e\xb5\xc3\xa6\x2f\xb8\x5b\x79\x52\xf2\xba\x06\x9b\x16\x42\x10\xec\x20\xe9\xe3\xd9\xf1\x0a\xb8\x74\xab\xd9\x61\xc5\xde\x6a\x07\xd1\xc6\x4f\x87\x11\x25\xbb\xe7\x20\x6f\xf7\x04\xab\x0f\x1a\xad\xd8\xbf\x7b\x6e\xae\x7a\x3b\x30\x9a\x2c\x38\xe7\xcd\x46\xe1\x82\xe2\x03\xeb\xd7\x21\x5d\x1f\x60\x96\xda\x71\xc1\x85\x44\xb7\x44\x33\xeb\xb8\x71\x43\xb9\x77\x0d\x0a\xac\x9d\x7a\x9f\x48\x70\x39\x6d\x40\xf2\xf5\xf0\x8e\xfc\xe9\xab\x11\xbf\xba\x6f\xe7\x60\xbc\xd0\xb3\x50\x6b\xd5\x58\xc6\x17\x0e\xcc\x06\xa5\x57\xdc\xd2\x92\xfe\xda\xc2\x42\x1b\x48\x0b\xe6\xbd\xfb\x33\xf2\x2a\x8f\x30\x70\x9b\x72\x39\xe0\xe7\x77\xaf\x7b\xf7\xe5\x98\xd1\x35\xc9\x07\xe4\x01\x5a\xa6\x7b\xaf\x7d\xbb\x4e\x7a\x8b\x83\x2c\x80\x80\x59\x5c\x99\x1e\x1f\xc5\xa9\x03\x23\x74\x73\x3f\x4a\x7f\xd7\x37\x4c\x2f\x1c\xa0\x59\xd7\x81\xf1\x06\x56\xc6\x64\x73\xfd\x5d\x56\xb6\x3d\xb2\xdc\xd4\xad\x0c\xd8\x95\x96\x3b\x20\xf1\x26\x28\xda\x5a\x2b\x0b\x75\x8f\x5e\x68\x00\x03\x36\x4b\x5a\xa2\x8d\x26\x17\x53\x59\xd1\x80\x81\x26\x3e\xb8\xe8\x65\xa0\x0e\xd1\x74\xc5\xaf\x3d\x63\x79\x06\x83\xa6\x7a\xf8\x36\xfc\x8b\xbd\x81\x5f\xbb\x8d\x00\xe6\xde\x5d\x10\x9e\x63\x3b\xc0\xfd\x41\xf3\x90\x4d\x18\xe0\x8d\xf8\x5d\xaf\x4e\x5a\x71\xc7\xbb\x93\x31\xfc\xdd\x2f\x4f\x5a\xfa\x2e\xba\x3d\xd2\xf5\xd9\x69\xed\xa7\x70\x81\x76\xda\xc8\x1f\xff\x0a\x6d\x6d\x23\xf9\x9d\x06\x9d\x9b\xc7\xc8\x34\xec\xa3\xd3\x69\xbc\x46\x1e\xf5\x37\x7b\xeb\x74\x2b\x7e\x89\x81\x29\xbf\x05\xdd\x23\xdf\x13\x53\x8a\x9a\xc8\x28\x5a\x30\xc7\x1e\xcf\x10\x4e\x2d\xd4\xaa\xad\xd8\x3f\x57\x42\x02\x53\xda\xb4\x18\xf6\xe2\x6a\xa0\x76\x83\x1b\x60\x19\x67\x9d\xf6\xcb\x22\xc8\x39\x30\x4e\x01\xf3\xbe\xa3\x10\x08\x25\x10\x26\xcc\xea\x16\xd2\xf2\xcc\x71\x7b\x65\x27\x9e\xaa\x2b\xc6\x2d\x9b\x73\x57\xaf\xd8\x27\x3d\xb7\x93\x08\xb8\x84\x58\x3b\x71\x8d\x81\x14\xee\x98\xed\xa0\x16\x0b\x51\xb3\x95\xee\x4d\x72\xa3\x1b\xbe\x4e\x69\x10\x9e\x97\x41\x99\x85\xbe\x8b\x50\xbd\x8b\xa9\x8b\xef\xb4\xa1\x95\x03\x16\x28\x9a\x86\xd4\x6c\xb9\x03\x23\xb8\x8c\x44\x2c\x77\xce\xfd\x9e\x07\xc7\xc6\xf0\x30\xbe\xd7\x73\x26\x94\x75\xc0\x1b\xbf\x24\xf7\x02\x4e\x35\xdc\x34\xac\x81\x4e\xea\x75\x0b\xca\x4d\xbc\x1d\xa3\x0d\x86\x16\x35\xb3\xfc\xda\x33\x90\xd5\xbd\xf1\x1e\xfb\xcd\x0a\xb2\x91\x53\xae\xd8\x68\x20\xdb\x49\x01\x9d\x30\x5a\xb7\x9e\xb9\xa1\xa9\xca\xf0\x47\x0c\xac\x79\xc9\xca\x16\x46\x93\x20\x59\x68\x29\xf5\x4d\xb4\xf1\x8a\x28\x1c\xc6\xda\xaf\xb9\xec\x91\xb8\xd1\xf3\x48\x94\x38\x65\x33\x64\x91\xd9\x84\xcd\xfc\x6f\xfd\x7f\xbd\xc5\xe6\x7e\x99\x55\x68\x12\x9b\x5e\x86\xfd\xfb\x7b\xd5\x5b\x7f\x51\x4a\xd2\x24\xb2\xf0\x10\xd5\x48\x98\x9c\xb2\x69\x04\x7e\x4a\xfb\xa6\x33\xb3\x9e\xfa\xf1\xdc\x6f\x8c\x70\x5e\x2e\x72\x4b\x48\xc1\xe7\xce\x80\xb5\xc4\x9d\xaf\xab\x65\x15\x40\x9c\x3a\x51\x5f\xfd\x95\x00\xbc\xf8\xf3\xc9\xc9\xc9\xc9\xac\xf2\xf0\x37\x70\x3e\x8d\x21\x16\x95\xf7\x99\x41\x66\x22\x07\x2d\x95\x74\xc4\x41\x90\x19\x7b\xe1\x17\x7b\xac\xe3\xe4\x10\x59\x70\x31\xb6\x72\x72\x18\x51\xf2\x70\x4f\x1d\x9f\xff\x35\x26\x2c\x5e\x9c\x1c\x7f\xf5\x5f\xfe\x4f\x27\x7b\xfb\x7f\x8f\xc6\xfe\xf3\xd7\x99\x67\xdd\x80\xe5\xa9\x33\x62\xb9\x04\xf3\x57\x0f\xe6\xc5\x09\x3d\x71\x72\xfc\xd5\x9d\xef\x57\xfb\x7f\xfc\x60\x4e\xa4\xc6\x8e\xde\x56\xe4\x9c\xf8\x5a\x92\xdc\x37\x2b\x2d\x37\x23\x86\x8b\x22\xef\xa5\x7b\x97\xe2\x86\x1e\xbb\x06\x6a\xc9\x0d\x34\x78\xcd\xd7\xac\xed\xad\xf3\x32\x1d\x52\x0a\x6c\x73\x09\x61\x5b\xa8\x57\x5c\x09\xdb\x7a\x4a\xdc\x68\x73\xc5\x6a\x6d\x0c\xd4\x4e\x0e\x76\x94\x2f\xd2\x0e\x7b\xda\x3f\x43\x12\x71\x66\xa1\xe3\x26\x44\x85\xad\x8b\xf2\x8b\x22\xc8\x9b\x01\xf2\xe2\xba\x27\x99\xde\x24\x17\x28\xc8\x91\x40\x98\x8c\x6c\xe2\xf0\xb4\x31\xef\xbb\x13\x5b\x79\x37\xf2\x73\xca\x64\xcc\xd7\xc5\x65\xad\xce\x62\xa2\x2d\x4a\xd8\xb4\xa6\xf1\x10\xb2\x14\xf6\x2b\x02\xf7\x5e\x39\x3d\x09\x45\x68\x3f\xdc\x82\x80\x54\x80\x18\x6e\x7a\x7e\x8a\x64\x2e\x5e\x95\x69\xfc\x5b\xb9\x58\x5e\xeb\x40\xb8\xfd\x7d\xaf\x5b\xc1\x82\xf2\x5e\x60\x11\x12\x9e\x69\xb3\xac\x38\x86\xe0\x2b\x8c\x34\x57\x57\xa7\x31\xe2\x8c\x77\x3f\x04\xde\xd7\x87\xd5\x65\x74\x3a\x37\xc5\x5f\xdd\x1b\x03\xca\xc9\xf5\x69\xc4\x35\x4a\x8d\x80\x97\x57\x62\x49\xea\xed\x17\xc7\xbf\xe0\x52\xce\x79\x7d\x75\xef\xd5\xfa\x87\x85\x41\x04\x9b\xce\x5a\xb4\x9d\x04\xaf\x12\x48\xc4\x07\x3e\xa0\xd5\x19\xa8\xa6\xd3\x42\x39\x76\x10\x97\x3e\x4c\xc7\x9e\x14\x8c\x33\xeb\xe0\xf7\xde\xa1\xad\xb8\x1d\x91\xc7\x43\x2e\x56\x44\x83\x7a\x3d\xed\xb4\x14\xf5\x2e\x01\xc2\xfd\xcb\x70\xf2\x96\xad\xf4\x0d\x9a\x42\x06\xb8\xcb\xc0\x5c\xd0\x4f\x31\x51\xc2\x99\x5f\xf6\x27\x2e\x45\xc3\xbc\xc2\x29\xaf\xe8\xe9\x94\xed\x61\xed\xc4\xde\x29\xe3\x54\x43\x11\xf0\x44\x23\xcb\xf4\xaa\x80\x2b\xd7\xff\x6d\xca\xf6\xbe\xd3\x66\x2e\x9a\xbd\x14\xeb\x38\x3c\xf5\x1c\x37\x17\x4d\x04\x5b\x20\x62\x7a\xe5\x2d\x8d\x2b\xd1\x75\x9e\x5c\x0a\x3e\xe3\xef\x98\x58\x78\xae\xf2\x96\x11\xc6\x1f\xbc\x4b\xa2\xf6\xf7\x1d\x5b\x08\x25\xec\x0a\x1a\xb6\x06\xe7\xd7\x7a\x0f\x9d\xe4\x35\xec\x45\x06\xa9\xb9\xaa\x41\xda\xcc\x39\xa9\x48\xe2\x93\xd7\x74\x98\xf6\xc1\x37\x2c\x85\x30\xd0\x22\x51\x70\xc3\xb4\x82\xfd\x87\x46\xb7\xcf\x7a\xa7\x5b\xee\x44\x8d\xf7\x95\xec\x88\x31\x83\x24\x8a\x4b\xbc\xfb\x5c\xca\x20\x07\x3d\x79\x41\xb8\x55\x0a\x23\xa2\x65\x80\x36\xb9\x37\x0e\x0a\x4b\xc9\x1b\xc1\x7d\x0b\x86\x1d\x68\x25\xd7\x77\xde\x02\xbc\x37\x29\x8a\x13\x19\x53\x1b\x0f\x8e\x5b\xeb\xed\xed\x0c\x0d\x50\x27\x36\xc2\x8b\xcf\x19\x8a\x91\xad\x87\x0e\x2b\x8c\xa2\xc5\xb8\x32\x8a\xbe\xc8\x1d\x52\x6e\xa3\x68\x37\xe4\x37\x3d\x80\x28\x66\x5b\x38\x28\x76\x6f\x33\xda\x68\x8a\xb3\xa2\x8a\x20\x62\xf6\xbc\x9d\x8d\xbe\x32\x3b\x39\x7e\xce\x8e\xe8\xff\xb3\xc9\x0d\x9a\xc2\xb3\x3f\x7d\xdd\x92\xae\xfe\xfa\xc4\xce\x42\x1e\xaf\xc8\x4e\x36\xd0\x81\x6a\x40\xd5\x02\xd9\xfb\x91\x92\x4d\xaf\x8a\x55\xee\xcc\x4f\xf3\x01\xef\xf0\xa6\x89\x61\xb6\xc0\x66\x05\x98\x54\x4d\xb1\xc9\x5a\x31\x61\xef\x81\x1a\x76\xc3\x51\x35\xe1\x9d\xdc\xc8\x1f\xb1\x8f\x3f\x97\x74\x90\x7a\xfd\x98\x09\xb7\xb8\xc2\xb8\xff\x03\x9f\x3b\x29\x6a\xe1\xaf\x26\x55\x28\xe0\x0e\xae\x84\x42\xb1\xb9\x12\x4b\x8a\x7e\x4a\xb8\x06\x99\xcc\x6f\xda\x2a\x46\x1c\xc7\xaf\xd9\x13\x48\x98\xf9\x2d\xee\x20\xbd\x43\xa1\xda\xad\x94\x6a\xc0\xe2\x45\xcc\x6e\x0b\x11\x6f\x0e\xee\x06\x40\xb1\x59\xfe\xc3\x6c\x52\xaa\xcd\xe9\x27\x3d\xa7\x0b\x72\x45\x27\x39\x0d\x71\xfb\x19\x09\xa6\xda\x2b\x89\x58\x42\x92\xfd\x1e\x6f\x2c\x44\x19\x3a\x1a\xe3\xad\x36\x58\xcb\xaf\xfc\xa8\x17\x2c\x6e\x3b\x5d\x2f\x03\xb6\xd3\xca\x62\x51\x92\x47\x77\x09\x0a\x4c\xde\x4b\xa1\x62\x07\x18\xb2\x82\xab\x5a\x7e\xe5\xc5\xe6\x1d\xf9\xdd\x98\xcf\xae\x65\x6f\xdd\x56\x86\xb6\xbc\x61\xa0\xae\x85\xd1\xea\x71\xe9\x50\x2c\x92\x09\xd1\xc7\x38\x41\x10\x36\x4e\x33\xa1\x3e\x79\xce\x49\xde\xee\x10\x39\xc6\xae\xb9\x11\x9e\xbd\x6d\xdc\x5f\xb9\xf7\x14\x12\xcc\xc1\x80\xd9\xdb\xb3\x37\xaf\x2f\x2f\xce\x5e\xbe\xf6\x0a\xe8\xe2\xdd\xab\x7f\xf9\x5f\x90\x0e\xd2\x5e\x97\x3d\x85\x9a\x99\xb4\xaf\x69\x0b\x8e\xef\x58\x3a\x63\x03\x2d\x83\x41\x58\x10\x82\x14\x70\xa6\x45\x79\x36\x89\xbe\x5b\xa9\x42\xcf\x0e\xb3\xc3\xcc\x35\xc6\x68\x33\x5d\x71\xd5\xc8\xc7\x14\xce\x83\x65\x82\xca\x0f\x2b\x05\x3e\x8a\x64\x0f\x9c\xf3\xda\xbf\xc0\xfe\x9e\xf0\x62\x2c\x88\x64\xa1\x42\x90\x6d\x10\x78\x22\x25\xf6\x04\x78\xc0\xc0\x62\x47\x6f\x17\x49\xc6\x22\xc9\x0c\x2c\x28\xc7\x19\xca\x3c\x1a\x8f\xd4\x42\xf7\xde\xc0\x51\x8c\x77\x58\xd9\x49\xb5\x73\x89\x00\xe9\x90\x97\xf5\x23\x05\x1d\x3d\x9e\x7f\x7b\xc9\x3e\xe0\x09\x2e\xb9\x99\xf3\x25\x4c\x6b\x2d\xbd\xda\xb0\x64\x73\x26\x89\x9e\xea\x88\x95\x66\x52\xab\x25\x18\xa6\xa0\x06\x6b\x79\xa8\x3f\xe8\x3b\x3d\x0c\x27\xf6\x5d\xc3\x43\x80\xee\x0f\x7e\xaa\x8d\xb0\xb5\xbe\x06\xb3\x9e\xd6\xde\xf3\x2c\x10\xaa\x8e\xbb\xab\xe5\x31\x41\x4f\x4f\xbd\xf4\x0f\x7d\x58\x77\xb0\x8d\xea\xab\xf8\x0c\xab\xa5\xf0\x37\x19\x01\x06\x87\xdf\x6f\x60\xc2\xc8\x78\xf7\x06\x34\x55\x8a\x79\x89\xd8\x08\x7b\x45\x5a\x96\x2a\x32\x66\x5b\xf7\x3e\xfc\x3e\xdf\x7c\xa1\x96\x86\x32\x2b\x0f\xe2\x8c\xad\xf3\x3f\x27\x38\xb7\x9a\x5d\x3a\xb8\xba\x31\x5d\x9f\x6b\x90\xd0\x11\x7a\x16\x3d\xf7\x81\x89\x49\x57\x5c\xf7\xce\x8a\x06\xd8\x8d\x36\xb2\x89\x6e\x53\xa1\x57\xc3\xd2\x21\xe5\x1e\xb8\x81\xcd\xd7\x81\xac\xb4\x73\x6f\x65\x60\x49\x34\x8f\x55\x23\x28\x7f\x9a\x86\x30\xdc\x5c\xfa\xc0\xad\x8c\xee\x97\x94\xfa\x99\x45\x5b\x85\xb0\xf4\x3b\x3c\x7c\x02\xec\xb8\xd2\xd6\xed\xe2\xb1\x1f\x1d\xbd\x0f\x0e\xd6\xd1\x51\x35\x2c\xb4\xf0\xbb\xf7\x60\x36\x6b\x50\x02\xd7\x54\x0f\xf6\x5a\x3f\x8c\x39\x1f\x98\x3f\x20\xf6\x49\xc7\xb4\x79\x20\xbd\xc5\x84\xc2\xdf\x3f\x7c\xb8\x88\x75\x26\x31\x12\x12\xbd\xbf\x6c\x0b\x0a\xeb\x84\x7e\x44\x61\x77\xee\xe1\x07\x56\xe7\xc9\x64\x1e\x2d\xe6\x8b\x85\x9e\x81\xc7\xce\x03\x66\x2c\x5d\x84\x16\xec\x2a\x5b\x38\x9e\xd1\x6b\x6e\x0a\x6d\x8f\xb6\x4d\xef\xe6\x28\xe4\xcf\x2f\x98\xe1\x6a\xf9\x24\xa4\x21\x12\x66\x07\xfe\x7b\x19\xc9\xe6\xcf\xf7\x00\x43\xa1\xd3\x14\x0a\x3d\x4c\xb1\xd0\x97\xe7\xaf\xde\x33\xdb\xcf\x15\xa4\x22\xe1\x54\x17\x1e\xb0\x98\x13\xcb\x98\x1a\xba\x22\x6b\x41\x87\xd5\x19\xfd\x79\xcd\x0e\x66\xcf\x4f\x2a\xfc\xff\xf1\x37\x93\xe7\x7f\xf9\xaa\x7a\xfe\x67\xfc\xe1\xf9\x57\x93\xe7\xff\xd5\xff\xf4\x0d\xfd\xf8\xe7\x28\x39\x73\xb1\xce\xa0\x38\x88\x8e\xe7\x5e\x1a\x7f\xa7\x83\xce\x03\x0a\x6d\xa1\x83\x10\xda\x12\x66\xe1\xa8\x2b\x64\xd6\x4a\xe8\x63\x02\x3a\xab\xd8\xb7\x69\xd1\x22\xa4\x49\x75\xf5\x94\x5a\xf0\x07\x46\x26\x9c\xf7\xcc\x0b\x67\xcc\x33\x0b\x56\xd2\x80\xf3\x7f\x09\x0c\x9d\xeb\xe4\x22\xfe\x9f\xb4\xd4\x57\x82\x3f\xe2\x15\xf9\x9e\x56\x88\x97\x24\x44\x6d\xed\xb0\xe2\x9d\x48\x13\x1f\xfd\x9e\x5f\x73\xc6\x97\xa0\x1c\x25\xe3\x2e\x01\xd8\xca\xb9\xce\x9e\x1e\x1f\x07\x84\x2b\x6d\x96\xc7\x06\xb0\x5e\xae\x86\xe3\x95\x6b\xe5\x31\xbe\x61\x2b\xff\xef\x3f\xfe\xa5\xa8\xf9\xb4\x06\xb3\x8b\x58\xf6\x44\xbc\x78\xfd\x86\x81\xaa\xb5\x57\x52\x2f\xcf\x98\x7f\x53\x2c\xa2\x85\xe7\x0f\x89\x75\xdc\xad\x26\x09\xdf\x6b\x30\x62\x11\x6d\x86\x18\x94\x4c\x2f\x81\x9d\x04\x0b\xd1\xef\x04\xdd\xee\x59\x67\xb4\xd3\xb5\x96\x18\x80\xc3\x2a\x38\x1b\x3c\x8a\xde\xc2\xd4\x5a\x39\x25\x60\x53\xde\xbb\x15\x28\x17\x16\x8f\xd7\xc3\xbf\x84\x7c\x98\x2d\x8c\xe3\x6b\x6e\x8e\x4d\xaf\x8e\x2d\xd4\x06\x9c\x3d\xce\xf5\x9a\x9e\xc9\x83\xd8\xe3\x75\xad\x7b\xe5\xe2\x8f\xd3\x9a\x57\xb5\x71\x11\xac\xbf\x26\x89\xbb\x06\x17\x2f\x60\xd3\x19\xa1\x6a\xd1\x71\x59\x10\xf2\xae\x2e\x96\x0f\x98\xd8\x0f\xef\x1c\xd8\xc3\x50\xd7\x81\x29\x9f\x79\xec\x46\xf1\x16\x74\xb2\xb7\x32\xd5\x30\x60\x96\x64\x19\x8b\x45\x6f\x41\xa0\x47\xe6\x8d\xda\xe8\xf7\x20\x31\x3d\x7f\x11\xf7\xf3\xa2\x56\x2f\xec\xda\x3a\x68\x4f\x5b\x6e\xb1\xd1\xcf\x0b\x3b\xcc\xcd\xaa\x17\x2b\x7e\xe3\x84\x9e\x6a\x25\x85\x82\x8a\x7e\xaa\xec\x75\x1d\xe1\x23\x26\xb5\x7a\xb1\xf0\xd8\x78\x55\xaa\x25\x54\xfe\x07\x7c\xe8\x8e\xa3\xc8\xd6\xee\xae\xb7\xeb\x47\x61\x1d\x50\x2d\x3a\x66\xe5\x6a\x6e\x5d\x2c\x9e\xb6\x77\x56\x27\xc2\x67\x07\xaa\x81\x26\x92\xaa\x5e\xc1\x0e\xe9\x95\x37\x5c\x35\x78\x80\x18\x39\xd9\x3a\xd7\xe0\x88\xdb\x7c\xea\x0b\xc9\x97\x31\x14\x11\x97\x0c\x64\xba\x82\x35\xeb\x2d\x5f\x7a\x0b\x16\x15\xf3\xef\x71\xd0\x24\xe2\x6f\x3f\x82\x1d\x2d\x3c\xcf\xfd\x7f\xf7\x56\x1c\x6f\x1a\x13\x78\x37\x17\x36\x45\x0e\x46\x39\x9a\x3a\xcb\x84\xf2\x12\x05\x33\xa8\xb3\xbd\xff\x7d\xb4\x37\xcb\xc1\xfc\xd9\x5e\xd0\xa1\x7b\xb8\x53\xbc\x3c\x93\x68\xdb\x83\xb1\xf8\x32\x05\x11\xd1\x85\x51\xe0\x30\xfb\x88\xba\x79\xc1\xeb\xdc\x4f\x18\x23\x84\x7b\x47\x7b\x1b\xe5\xd4\xdc\xda\x1b\x6d\x76\x09\x59\xe2\xd5\x0e\x8f\x93\x20\xf4\xf4\x1a\x92\x78\xc2\x36\x0f\x0b\xcd\xfa\xde\x82\x49\xfb\xea\xa8\x01\x12\xf5\xeb\x83\x0b\xca\x47\x04\x01\x15\x1e\x17\x45\xd0\x7f\xf9\xcb\x37\x1b\x9b\x0c\xfc\xb2\xeb\x26\xc3\xe3\xa1\x45\x26\x7b\x80\x58\xbb\x8c\x07\x13\x78\x6e\x58\xd6\x6c\x91\x83\xc2\x36\x33\x1f\x15\x88\x78\x3a\xec\x88\x04\x06\xfb\xb3\x1b\x3a\x42\xeb\x21\xdc\xdb\xd9\xfe\xde\xdb\xfb\xcf\x15\xe0\xfe\xb6\x6f\xae\x2d\xfa\x1f\x6f\xc1\x62\x8b\xc5\xee\xbb\x4a\x74\xfe\xbb\x76\x45\x9e\x25\xb3\x94\x37\x8d\xc0\x6c\xaa\x4c\x1c\x10\x40\x79\x73\xbe\xc1\xee\xc9\x46\xa8\x07\x1a\x32\xff\x81\xff\x9e\x7e\xba\x6e\xa7\x64\x2c\x7d\xfc\xfe\xa7\x37\x51\x60\xe3\x3d\x1d\xb6\xf7\x84\x25\x73\x18\xf8\xd3\x75\xfb\x78\x61\xbc\xef\x7f\x7a\xb3\x11\xf6\x75\x9b\x4e\x23\x3e\xe2\x8d\x74\xd3\xab\xad\x86\xde\x27\xe0\xbc\x34\x30\xef\x97\xf7\xe7\x60\x93\x59\x6b\xa0\xd5\x0e\xe8\xb5\x65\xa8\x6a\x0b\xb1\xae\xf0\x4b\xcf\xc9\x84\x35\x77\x8e\xd7\x2b\x48\x95\x71\x2c\x52\x6c\xc2\xa0\x5a\x56\x93\x50\x2e\x85\xdd\x11\x0b\x6d\x6e\xb8\x69\xe8\x3e\x0e\x90\x9b\xda\xde\x76\xa0\xee\xa7\xd5\x25\x3d\x47\xa7\xe0\xb8\x59\x82\xc3\xe3\x11\x6d\x0b\x8d\xe0\x0e\xe4\x3a\x16\xda\xba\xd4\xcc\x20\xb9\xb5\xfe\x74\xa5\xe6\xa4\x03\xb3\xd0\x12\x5e\xff\x7a\x2f\x6d\x87\xb5\xbd\x8d\xe2\x6c\xa8\xf0\xc5\x57\xc2\x99\x79\x6d\x81\xa5\x68\x91\x59\xc4\x66\xb3\x82\xd4\x4b\x3b\x7e\x8b\x0f\xb7\x48\x11\xf4\xda\x2e\x32\xcc\x70\x65\x51\x32\x47\x5d\xc8\x5d\xd4\x85\x1a\x2f\x75\x30\x50\xb0\x65\x1c\x6e\xe4\x9a\x49\xde\x2b\x3c\x2e\x8f\xe6\x26\x42\x47\xa7\x5f\x9f\x9c\x7c\x3d\x40\xe9\x4b\x25\x89\x07\x1f\xdf\x4d\x69\x3b\xde\x82\x04\xf7\x88\x39\xe3\xb8\x42\xbe\xd0\xf7\xc5\xe4\x7f\x88\x6f\x08\x15\x03\x3e\x4f\x36\x0e\xff\x05\x95\x16\x81\x0a\x14\xd5\x0e\xf2\xbb\xc9\x44\xf1\x2c\xee\x56\x20\x4c\x8a\x3c\x0e\x24\x75\x0c\xc8\xe6\x28\x65\x8a\x2f\x0c\xfa\x04\x76\xb2\xeb\x5e\xde\x52\x36\x16\x90\xa1\xf6\x7a\xe4\x6b\xcd\x9b\x9c\x32\x89\xe5\x2f\xc5\x91\x65\x86\x1b\x66\x67\x77\x09\x10\x24\x4e\xdb\xe2\xad\x8d\xf0\xc3\x1d\x01\xb3\xa8\x32\xd1\x36\x0b\x09\xdf\x51\xd6\xe2\x36\x41\x8d\x01\xb4\xf1\xc2\xda\x22\x3e\x9c\xb3\xb6\x14\x57\x78\x1f\x12\xca\x65\x4d\x73\x09\x38\xf7\xc9\x36\x8d\x45\x16\x99\xda\x9a\x63\x27\xd1\x01\xb6\x21\xd1\x0f\x53\xa7\xa7\xbf\x80\xd1\x54\xe6\xb2\x00\xee\x7a\x03\x76\xc2\xe6\xbd\x0b\x73\x11\xe2\xef\x30\xdf\x81\xc5\x33\x2d\x70\xbf\xf4\xa2\x97\xd9\x0c\x0d\xf5\x38\xbd\x85\x10\xdf\x4c\x26\x24\x02\xce\xd1\xcd\x27\x71\x9b\x22\x71\x50\x83\x3c\x2c\xfa\xe7\x0a\x96\x29\x40\x05\x65\x94\x9a\xc5\xa8\x3c\xc7\x69\x0c\x72\xcd\x56\x1d\xaf\x8a\x87\xab\xc0\xc0\x55\x03\xd7\xa5\xcb\x72\x75\xc7\x63\xe5\x62\x87\xd5\x7b\x7f\xa9\xa3\x77\x1f\xd1\x69\x74\xdd\xa7\x8a\xbc\x22\x48\xd1\x6a\xec\x41\xf1\xf7\x23\x59\x36\x63\xd4\x68\xc1\x99\x58\x5a\xff\x6b\xc9\x41\xb0\x6e\xa3\x47\x51\xb4\x97\x62\x98\x54\xc2\x63\xd8\xac\xee\xfa\x59\xf8\xf1\x81\x7b\x4e\xbb\x4d\x25\x18\xf7\xee\x99\x4c\x8d\xfb\x5c\xa7\x4b\x08\xf6\x01\x8a\x05\xac\xc2\x4c\x1b\x08\x75\x38\xda\x60\xf7\x72\x07\xa6\xf6\xe8\x2c\xd1\x7f\xf4\x26\x0d\x8d\x90\x28\x6c\xa8\x6d\x32\x1d\xe6\x92\xd4\x0b\xdd\xec\xb8\xd1\x00\xf1\xae\xc3\x6d\x85\x42\xa1\x00\xbb\xb8\x86\xb1\xd5\x5b\xa5\x26\xa3\x8b\x34\x52\x29\x7b\x32\xb1\xce\xc5\xdb\x8c\x6a\x8d\x2d\x18\x05\x32\x23\xc3\x10\xf6\x2d\x3b\x3a\xf2\x12\xe8\xe8\xa8\xd0\x23\x93\x28\x64\x10\xfe\xd6\x80\x1f\x8b\xe2\x2b\x85\x35\x1a\x7d\x83\x79\x36\x0f\x86\x44\x92\xd2\xae\x70\xaa\xb2\x8c\x6e\x8a\x7e\x6f\xd4\xee\x63\xb4\x4c\x50\xc7\x58\xe7\x56\x5a\xf2\xcf\xbb\xd1\xf2\x4c\xb1\xbe\xeb\xc0\x30\x4a\x86\x24\x33\x6d\x84\xac\xc1\xd4\x36\x49\xd4\x33\xaf\x24\xa5\x04\x59\xdc\xde\x4d\x9a\x46\x86\x58\x71\xcb\xbc\xec\xf3\xb4\xa9\x79\x17\x62\xf7\x08\x97\x18\xcf\xe6\x82\x38\xeb\xb8\x94\xf4\x3a\x12\x24\x1e\xd7\x2e\x77\xe9\xae\x5b\xf4\x40\xab\xe4\xf6\xfa\xcf\x4d\x75\x19\xeb\x40\x63\x78\x58\x2b\x72\x60\x2d\x5b\x69\xd9\x9c\x1e\x0d\x66\x66\xa0\x7f\x97\x4a\x99\x02\xa4\xa0\xff\x8f\x50\x4d\xe4\x6a\x52\x76\x67\x39\x29\x2a\x36\x12\x3d\xa9\x04\x74\xc7\xc2\xd0\xe8\xf7\x6e\x97\x87\x6e\x9a\x2d\xbf\x8d\xb9\x12\xcc\x94\x21\x7d\x43\xb0\xd3\x46\xbf\x81\xe6\x74\xc4\x57\x52\x7d\x03\xe2\x8a\xf5\xa6\x64\x26\x62\xf9\x7d\xb2\xbc\xcc\xb6\xe5\x41\xed\x32\x8b\x5e\xca\x04\x6c\xe8\xda\x87\xfd\x13\x3c\xac\xb0\xa2\xb6\x80\xb3\x37\xaf\x7f\xfc\xd7\x0f\x6f\xcf\x3e\x9c\xff\xf4\xfa\x5f\x2f\xdf\xbd\xfd\xee\xfc\x6f\xff\x78\x7f\xf6\xe1\xfc\xdd\x5b\xff\xc8\xf7\x97\xef\xde\x32\x62\xae\xaa\x18\x60\x53\x5e\xd3\x54\xee\x4e\x55\x66\xce\xf3\x45\x1f\xb2\xf4\x88\xcf\x10\x8f\x2d\x17\x9f\x4e\x9e\xa0\x23\xc9\x08\xcf\x32\x03\x3f\xc8\xbe\x8f\xf1\x50\xea\x1e\x78\x0a\xce\xc2\xb6\x21\x7f\x8f\x2e\x1f\x22\x14\x1d\x87\xe2\x9c\xdb\x4e\x82\xdb\x3a\xf0\xe1\xe9\x95\x08\xac\xb8\x52\x20\xa7\x25\xaf\xdd\xef\x61\xfe\x18\xbc\x82\xf0\x76\x88\xd8\x70\x1b\x4b\xa9\xf4\x62\xe8\xbc\xd1\xb1\x7a\xe4\x83\x33\x1e\x6f\x34\xf6\x25\x44\x30\xc1\xb9\xd0\x86\x78\x85\xd8\xeb\x1f\xef\xcf\xed\x28\xc2\x42\x5d\xfd\x6a\x74\x1b\xb0\x4e\xa8\xd4\x13\xf1\x58\x38\x47\xe3\xfb\x77\xa1\xf2\xe8\xba\x5f\x40\xac\xf8\xf2\x6f\x42\xad\x14\xc1\xde\x89\x5c\xd7\xf0\xc5\xb4\xc2\x77\xf1\x79\x9b\xcb\xc9\xb7\xca\x5f\xe7\xc0\x6c\x3f\xf7\xaf\xcf\xf1\x22\x79\xc4\xb3\xf2\xa2\x7e\xbc\x80\x78\x01\x6f\x1b\x6b\x76\x10\x66\x4b\xf1\xdc\xc7\x34\x37\xfa\x0a\x4c\x1e\xc1\x12\x8d\x03\xaf\xb3\xf6\x82\xf0\xda\x3b\x1c\xd9\xef\x97\x9c\xd1\x4e\xbb\xed\x8c\x6e\xfa\x1a\xee\x38\x9d\x2f\xdc\xe4\x60\x17\x0b\x21\x1d\x98\x70\x6c\xd3\xc8\xb3\xf7\x8a\xd8\x58\x8b\x4a\xaf\x87\x09\x6e\x88\xd0\x46\xa3\xc0\x0a\x78\x03\x86\xed\xd5\x30\x0d\xaa\x79\x25\xac\xd3\x66\xbd\x17\x47\xb9\x5d\x0a\x55\x07\xc1\x1b\x1e\xf6\x56\xd7\x1c\xbc\xff\x0f\xad\xbe\x26\x4d\xa7\xe0\x06\x4c\x39\x57\x2d\xc8\xce\x49\x81\x42\x32\x10\x6e\x19\x39\x3a\x98\x10\x97\xb6\xac\xdb\x8e\xdf\x5f\xc0\x11\x37\x1c\x45\x36\x12\xfa\x92\x6e\x74\x67\x80\x9d\x54\xcf\xbf\x66\x04\x4b\xcc\x85\x14\x6e\xcd\x16\xe2\x33\x58\x76\x10\x58\x37\xa0\x56\x6c\x69\xd1\xbb\x72\x56\xdc\x70\x30\x8e\x50\x57\xd3\xb9\x50\x4d\x0a\x7f\xdc\x39\x7e\x14\xe3\x28\xe1\xf1\xb1\xe2\x39\x8e\x00\x71\x68\x52\xd6\x3a\x97\x42\x5d\x7d\x5b\x2c\xc1\x92\xf1\x52\x7d\x40\x35\x58\x68\xad\xa4\xb6\x07\x80\xd1\xaf\xb3\x04\x7d\x29\x01\x17\xa9\xca\xda\xbb\xe8\x77\x8e\xe8\xff\x7b\x01\x1d\xc0\xe7\x1a\xba\xf1\x37\x72\xa2\x54\xdf\x28\x3a\xe7\xbc\x2f\xda\xc3\xe1\x83\xed\xe8\x30\x9a\x30\x99\x7b\x39\xaf\x8d\x11\xa5\x68\x2a\x14\xc6\x49\x2e\xa3\x09\x73\x0c\x1f\xad\x8c\x46\xd8\xd1\x3c\x8b\x33\x5a\xe6\x19\x8a\x21\x74\x76\x10\x4b\xc8\x6a\x2d\xb5\x39\x7c\x0a\xe6\x94\xd4\xe6\x7e\x34\xfc\x53\xb1\x7b\x51\xea\x25\xd3\xbd\xeb\x70\xa2\x47\x3a\x04\xb8\x86\x5d\x72\xa8\x67\xcd\xa7\xde\xba\x04\x87\x62\x0b\x23\x6e\x60\xce\x3a\x60\x90\xf2\xfc\xed\x77\xef\xca\xd8\xec\x27\xbb\x43\xee\xf2\x1d\x22\x99\xd6\x12\x0a\x5f\x0b\x26\xdd\x06\xb0\x69\x67\xc0\xb9\x35\xd6\xb4\xec\x2a\x91\xd8\x1e\xbd\x44\xe9\x18\xa1\x96\x7b\xb1\x4d\x14\xd7\x91\x7a\xf9\x2c\x7b\xd7\xd6\x6d\xd4\xf4\xff\xc6\xe3\x26\xde\xe0\x0a\x77\x44\x77\xc7\x44\x53\xe9\x5d\xe1\x2e\xfd\x79\x18\xbe\x1c\x74\xcc\x0c\x1b\x81\x1a\xed\xf9\x5d\x92\xb6\xc0\x9e\xa4\x58\x1f\x99\x9c\xcd\x23\xda\xed\x11\x42\x0c\xae\x29\x06\x5e\xb5\xc2\x04\xb2\x37\x16\xd0\x67\x57\x35\x50\xc1\xf0\x7e\xd9\xbe\x3c\xf4\xf9\x6e\xc8\x23\x2a\x7b\x8f\x08\x7c\xb6\x90\xb0\x64\x08\xd7\xa1\xdc\x1d\x9b\x79\xd3\xe1\x60\x8f\x9e\x3b\x95\xba\xbe\xc2\x53\x70\x20\xfd\xee\xdb\xd3\xb9\x76\x76\xef\xb0\xaa\xaa\x59\xc5\xde\xbe\xfb\xf0\xfa\x34\x44\xb9\xd3\x4d\xc7\x98\x33\xaa\x6e\x8e\x0d\x8e\xad\xa0\xb1\x06\x63\x45\xca\xa9\x96\x9a\x8a\xa9\x52\xe3\xf7\xb3\x10\x81\x30\xc0\x9b\xe3\x1b\x23\x92\x8b\xd1\xf2\xce\x86\x3e\x54\x8e\x03\x54\x13\x0d\x0c\xf8\xfb\x8a\x05\x2f\x2c\x59\x10\x79\x32\x5d\x4e\x07\xb0\xb4\x9a\x5b\x71\x95\x8d\xa4\x41\xe8\x7e\x2b\xb2\xf2\x04\xa6\x10\x3c\x40\x59\xd8\x42\x5b\x6c\xe4\xe1\xe9\x12\x12\x26\x83\x7a\xd1\x5a\xf6\x0d\x4c\x1b\xcf\x07\xdc\xf9\x7f\x0c\x1a\x42\xef\xad\x84\x50\xb4\x0b\x2a\x50\x8a\x3e\x33\xf5\xca\xfb\xad\x70\xa7\x0d\xe3\x8a\xcb\xf5\x2f\x21\x72\x1c\xdc\x8e\x5a\x37\x90\xf3\xcc\xbc\x69\x86\xdd\x9d\xa9\xb3\x16\x75\x35\xe1\x96\x9d\x89\x0a\x1b\xf6\x8b\x6b\x30\xdb\xe2\x6b\x1a\x02\x92\x63\x94\x8a\xcd\xd0\xce\x0a\x7f\x41\x5c\x37\xeb\xbd\x73\x35\x74\x18\x29\x5d\xa2\x74\xb7\x21\xb1\xed\x8e\xb7\xbc\xdb\x41\xf6\xef\xbf\xe5\x2d\x14\x83\x55\xe9\xc5\xa2\x05\xaf\x60\x2d\x6f\xa7\x46\x75\x53\x5f\x55\xec\x55\x50\x06\x39\xb2\xb7\xf7\xdf\x0b\xde\xc6\x01\x86\xff\x63\xea\x9f\xdd\xab\x5e\x41\x67\x00\x87\x53\x9f\xc6\x5e\x6f\xa4\xed\x5e\x94\x64\xf8\xf4\xde\xa0\x6e\x7e\xf0\xa7\x1d\xf6\x32\xba\x95\x63\x09\xdc\xc2\x58\xcb\xea\xd8\xce\xc2\x56\x86\xfb\xbb\x7b\x67\x63\x08\xbb\xd8\xbb\x72\x4f\xce\x7d\xdd\x21\xc2\x23\x82\xbd\x1c\xf7\xeb\xd7\xc1\x1c\xdb\x1e\x25\x41\xde\xf0\x6e\xcf\x5f\xf0\xbd\x1f\xfd\xd6\xc8\x0b\xf3\xff\x1b\xe0\x4b\x7f\x1b\xcc\x58\xe3\x73\x90\xd3\x2b\xd8\x65\x58\xc1\x8f\x58\x53\x3d\x4a\x2b\xd1\x80\x72\x62\xb1\xa6\x46\x73\x1c\x3f\xa3\x95\x83\x6c\x6b\x23\xf1\xc6\x50\xa2\x79\x13\x61\xf8\x84\x36\xcb\xe3\x82\xa4\x23\x98\x62\x70\x79\x67\x5c\x8b\x50\xf4\x43\x31\xbe\xf5\xd0\x37\xd5\x0a\xce\xaf\x7c\x96\xcb\x19\x40\xf1\x4e\x3c\x5e\x05\x82\xff\xe3\xd9\xc5\x39\x7b\x75\xf9\xe3\xdd\x4d\xeb\xde\xb2\xc8\x8d\xc2\xa5\xc5\xf6\x2c\x39\xed\x3c\x81\xf3\x3a\x74\xb3\x4d\xa2\x6c\x94\xf5\x2e\xc4\x23\xb6\x3a\xbe\xbb\xc9\x43\x9f\x41\xd9\x90\xd1\xe3\x54\x38\x80\x9b\x80\xa6\xb0\x6f\xe6\x20\x35\x4d\xec\x18\xf3\x79\xe6\x80\x79\xd0\xf0\x16\x96\x18\x18\xae\xec\x02\xe3\xd1\x4a\x69\x17\x93\xd8\xaa\xd9\xf8\xea\x41\x79\xae\x3a\x84\xa1\xc3\x38\x5e\xf2\xa1\x12\x0a\x4f\x20\x00\x4b\x0e\xe3\xb4\xd8\xf1\x8e\x21\x98\x0f\x59\xd7\x94\xe4\xa2\x3a\xc6\x48\x4a\x33\xa8\x73\x0a\x6b\x3d\xe8\x5b\x09\xc5\x32\xe1\x14\xb6\x57\x48\x75\x54\xcd\xfc\x11\xbb\x2f\x2e\x5e\x7d\x7b\x8f\x3d\x7e\xa1\x9b\x57\xc2\x9a\x1e\x5f\xfa\xb6\x6f\x96\xe0\x12\x2f\xd0\x75\x0a\x9e\xd1\xf9\xf0\x83\x0c\x4f\x81\x4f\x5a\xa1\xa6\xfc\x9a\x0b\xc9\xe7\x3b\x4f\x95\xca\x49\x44\x14\x9d\x63\xbb\xc7\xeb\x8b\x2d\x03\xd6\x05\xd9\x3b\x5c\x25\x0e\x06\xe4\x8a\xc1\xb5\x40\xf7\xa4\x3a\xcf\x73\x47\xa8\x5c\x97\x2b\xc6\xe7\x56\xcb\xde\xe5\x45\x0d\xcd\x5b\x09\xe9\xed\xea\x1d\x79\x2c\x11\xa8\x5e\xb0\xd9\x60\x4b\xa1\xaa\xbc\xe5\x9f\xa7\xbd\x2a\x7e\x1b\x16\x4a\xb3\x97\x36\x93\xac\xc5\xc3\xbf\x31\x55\x62\xd0\x28\x2f\x40\xa4\x88\x64\xf9\x75\x04\x29\x0a\x9a\x9f\xa7\x6a\xf9\x6d\xa2\x78\x5b\x53\x5a\x1d\x1b\xa0\x0e\x13\x1d\x89\x82\x9b\xd4\x22\x1a\x0e\x40\xc4\xb0\xf2\x16\x1d\xd3\xad\x0d\xf7\xf5\xf1\xf4\xc6\x46\xed\x1d\xd6\xe3\xcd\xbd\x69\x47\x3f\x23\xb5\x8b\x68\x10\xb7\x56\x2c\xd5\xc6\x04\x46\xdc\x46\x06\xa4\x37\xfe\x5c\xb1\x73\xc5\x6a\x1e\x52\x7d\xe9\x39\x61\x19\x3a\x9b\x6a\x39\xc9\x4e\x0c\x11\x15\x2b\x33\xa2\x57\x49\x6a\x08\xeb\x5a\xe9\x50\x22\x84\x8a\x22\x56\xa1\xea\x09\x33\x81\xc1\x91\x25\x2d\xbe\xe8\x25\x0b\x83\xb2\xe1\xb3\xb3\xf4\x49\x83\xe0\xff\x82\x81\x7d\xcb\x94\x4e\x83\xcd\x42\x83\x3b\xe3\x61\xfc\xd7\xc8\xf7\x0c\x06\xd8\x53\xd6\x58\xab\x01\x75\x87\xdf\x87\x08\xe3\xa3\x2d\xce\x42\x9b\x30\x1b\x22\xd0\xb4\xb4\x67\xd1\x76\x0e\xe8\x9d\xe4\x22\x54\xd1\x7a\xf6\x33\xb0\x14\xd6\x99\xf5\x53\x68\xfa\xa5\xd3\x99\x96\x65\xaa\xf7\xf4\xe3\x6e\x9d\xe7\x01\xb4\x9d\x5b\x1f\x66\xda\xa6\x58\xec\x08\xaf\x94\x6b\x2f\xa5\x9e\x0f\x5a\xb2\xc6\xd7\x3c\x57\x4d\x28\xe3\x17\x8b\x21\xd8\xe2\xb3\x46\xc1\xd6\x21\x90\x58\x76\x49\x0e\x0f\xb7\x85\x58\xa4\xbf\x66\x0f\x38\xc9\x09\x7f\x25\x1f\x1e\x0a\xde\x6a\x4e\x6e\xc0\x41\x5d\x8c\xcb\x2c\x67\x6b\x88\xc5\xc8\x15\x18\x0a\x90\xb8\x89\x03\x91\xad\xf5\xf8\xbb\x92\x53\x31\x44\x55\x4c\x8b\xea\x70\x38\xf0\x63\xd9\x06\x38\x93\x75\x60\x1b\xac\xf2\x10\xc1\x41\x18\x63\x4b\xf5\xb3\x73\xe2\x28\x1e\x07\xdd\xae\x80\xcd\x2e\x74\x73\xd9\x41\xfd\x01\x5a\x8f\x31\xcc\xbc\x42\xe9\xeb\x34\x2c\x33\x97\x2c\x94\xe0\x66\x95\x17\x0d\x55\xa7\x9b\xf4\x1e\x59\x1d\x02\x64\x33\xc9\x15\x13\xe5\x3b\x45\x9f\x2b\x15\xfa\x84\x37\x63\xc1\x7c\xf8\xc4\x92\xa8\x59\x0b\x66\x89\xbd\x91\xf5\x8a\x5c\xb4\xad\xcc\xc6\xd6\x2c\xdc\x7c\xe7\xe9\x4b\x2b\x94\x52\x0b\x21\xc4\x30\x51\x75\xe2\x5d\x79\x5c\x2b\xc9\x96\xe1\x68\xff\x8d\x6f\x00\xdc\xee\x7c\x74\x46\xb7\xe0\x56\xd0\x3f\x78\xf0\xc2\x43\x02\xb3\x17\x69\x95\x38\x96\xa1\x6c\xb5\xce\x7f\x9d\xc6\x0c\x56\x91\xfc\x8d\x9f\xf2\x23\x95\x4a\x5c\xeb\xdf\xf2\xc7\xfd\x46\x2b\xe1\xb4\x99\x25\x83\x31\x77\x3b\xd0\x2d\x89\x8d\xf9\x41\x8f\xd6\x86\x77\x9b\xd1\x55\x8a\x19\x0d\x43\xac\x25\xc2\xf1\x4e\x53\x7d\x09\x15\xf3\x85\x32\xa3\x30\x8a\x80\x5e\x7b\x23\x6a\xa3\x2f\x88\x5e\x08\xf2\x0d\x3d\x5a\xb1\x7f\x9e\xbd\x7f\x7b\xfe\xf6\x6f\xe1\x73\x43\xe8\x36\x16\xd3\x14\xc7\xb6\x91\x27\x17\x63\x0e\x33\x74\xec\x2c\x85\x5b\xf5\xf3\xaa\xd6\xed\x71\xad\x0d\x68\x7b\x9c\x4f\x6f\x1a\xd1\xfc\x78\x51\x9e\x28\xf6\x59\xe1\xef\x7f\x8e\xea\x2b\xad\x81\x2d\x41\x22\xc6\xc1\xe7\xa9\x86\x0c\x9a\x8a\xfd\x2f\xdd\x23\xd1\xb0\x92\xb3\xd3\xcd\xb4\x0d\x28\x46\xdd\x1b\x5a\x23\x93\xfa\xdb\x3a\xe1\x34\xe9\x53\xb8\x95\x0e\x19\x88\xe2\xa1\x77\x25\x55\x11\xe8\x16\x04\x31\xfe\xed\xc6\x27\x10\xc1\x2d\x08\xb6\x4b\x48\x95\x8c\xcf\x5b\x38\xc1\xaf\x17\xa5\xf7\xc6\xd0\xa4\x5b\x96\x7c\xb8\xab\x38\xbe\x32\x81\xd9\xee\x58\x1c\xf0\x43\x4e\x7a\x13\x52\x85\xee\xe8\xa5\x9c\x52\xeb\xf5\x63\xfa\x97\xbd\x94\xec\x12\x57\x09\x6c\x63\x29\x93\xeb\x97\x67\xb4\x7c\xfa\x2c\x88\x6e\x26\x39\x7e\xb3\x31\x1d\x1b\xb3\x14\xce\x08\xb8\xde\x14\xc3\x64\x7a\x51\x50\x47\xa5\xd1\xb4\xc9\x16\x23\xb9\x50\x2e\x57\x8c\x87\xce\xd3\x67\x5b\xae\x7a\x54\xe5\xda\xe0\x80\x6d\x34\x7b\xd7\xba\xdf\x2f\xea\xec\x48\x34\x95\xcd\x83\x58\xfa\x9a\x17\x45\xb0\x19\xb3\x88\x42\xdc\xe0\xac\x50\x52\xf1\x23\x63\x33\xb2\xa1\x69\x8a\x30\xe1\x57\x58\xed\x1e\x6d\x04\x8a\x9b\xdc\x9e\x5c\xb3\x3d\xb5\x66\xed\x25\x43\xfe\x68\xd0\x97\xa0\x8b\x42\xda\x6b\x7d\x6b\xfb\x36\x46\xa3\x36\xe9\x2a\x42\x2d\x67\x67\x30\x25\x86\xfd\xbf\x6b\xdd\xd3\x85\x4a\x1b\x1f\x4e\x1d\x1f\xc1\xc6\x6f\x10\x83\x74\xb8\xbf\x09\xa1\xcf\x55\xba\xea\xe9\x23\x30\x29\x53\xf2\x07\x97\x2d\x74\x86\x3b\x7f\xac\x68\x83\x35\x71\x64\x57\xa8\xd0\x0f\x4c\x73\xa1\x1b\x24\xae\x84\x85\x63\x68\x70\x13\x26\x9b\x09\x93\x98\x75\xe0\x57\xa0\xb2\x21\x3a\xca\x72\xf9\x7c\x06\xbe\xd2\x20\x0f\xe5\xcf\x63\xea\x51\x03\x13\x93\x51\x3b\xf6\xe2\xaa\x34\xc5\x7d\xd3\xea\x0e\x13\x99\x90\x9c\x4d\x12\x39\x13\xda\x0f\x1d\x45\x2a\xd1\x49\x4b\x26\x45\x1c\x26\x17\x94\x98\xcd\xe2\x9c\x43\x66\xb4\x3f\x46\x35\xcc\x73\xa9\xf8\xd5\xd0\x9c\x91\xb9\x27\x33\xfa\x2b\x8b\xab\x37\xe6\x95\x24\x77\x25\xd1\x7b\x4b\xe0\xe5\x20\x05\x69\x54\xbf\xd9\x75\x07\x6c\x36\x1c\x86\xd1\xe8\xfa\x0a\x0c\x81\xff\x64\xb5\x2a\xe4\x78\xf8\xfe\xd1\xe3\x05\x1a\xfe\x67\xf8\xc0\xd2\xe6\x80\x16\x57\xfc\x2d\x36\xf2\xdd\x26\x9f\x9e\xc0\xc5\x2d\x0a\x9e\xef\x74\xfd\xb6\x77\x4d\x27\x76\x60\x00\xc7\x1a\x50\xbb\x41\x28\xde\xea\x2d\xe4\xda\x73\xf4\x11\x76\xd0\xb5\x77\x9e\xc6\x7b\x0f\xe4\xbe\x6f\x44\xba\x0d\x43\x76\x18\xea\x08\xbe\xca\x58\x63\xc3\x1f\xff\x98\x76\x9d\x64\xb1\xcb\x70\x32\x24\xc4\x20\x6f\x20\xed\x94\x3e\xc8\xbb\x6b\xe9\xb6\x3f\x92\x0f\x3f\x5e\xb2\xe2\x2d\x7c\x63\xc2\xa4\xb8\x02\x36\x83\x66\x09\xb3\x09\x9b\x75\xdc\xda\x30\x29\x8e\x26\x30\x18\x00\x55\x9b\x75\xe7\x66\x63\xed\x20\xd9\xe3\xdf\x6e\x08\x29\x06\x09\xdc\xd2\x16\xe2\xb7\x51\x4c\x41\x78\xc0\x36\x36\xa7\x9e\xe0\x9c\x81\x41\xff\xce\x2d\x98\x05\xf4\x77\xc7\x6f\xb7\xbc\xeb\x18\x5e\x57\xb0\x7e\x64\xdc\xc2\xec\xa5\x2f\x23\x1f\x5a\x39\xda\x08\xb7\x7e\x08\x35\xa3\xda\xfb\xc2\xd3\x2e\x8a\xb8\xbf\x0c\xfb\xb2\x0a\x7c\x30\x40\x0a\xf2\x87\x62\xa3\xd9\x8d\x55\xbc\xb1\xae\x80\xb3\xcd\xc5\x58\xfc\xdb\x42\x78\xac\x0b\xc8\x15\x2b\xed\x83\x74\x03\x06\x77\x07\x03\xc3\x42\x42\x08\xf1\xc5\xc2\x8e\x62\x90\x69\xf9\xf5\x1b\x9c\xe2\x8e\xd7\xd8\x50\x63\xac\x70\x48\x35\xfa\x9e\x20\xc3\xe9\x3f\x29\xc5\x69\xa1\xee\x53\x5f\x62\xad\x95\x82\x90\x68\x58\xc4\x65\x41\x36\xe9\x13\x83\xd1\x33\x98\x64\x51\x61\x58\xcb\xd7\x29\xe0\x1c\x1b\xbf\x8a\x0d\x06\xd8\x2f\xcf\x30\x67\x10\x3f\xc4\xe5\x45\x0f\x1a\x76\xd7\x5c\x8a\x26\x4e\x29\x14\x6a\x89\x48\xad\xb4\x49\x65\x53\x64\xff\x1d\x84\x9f\xaa\x64\xbf\x54\xf6\xba\x3e\x8c\xc5\x33\x34\x84\x20\x84\xe4\x84\x5a\x18\x4e\x71\x34\x2f\xe9\xc2\x4c\x69\x68\x86\x53\x50\x36\xeb\xe8\x68\xfc\xd7\xe3\x08\x1e\xa1\x88\xce\x53\x2f\xfa\x4a\x69\xba\xfb\xa7\x21\x06\xc2\x3b\x7c\x1c\xa2\x01\x2e\xc9\x80\x8c\x0b\x78\xed\xb1\x58\x88\x3a\x16\xd4\x61\x99\xb3\x97\xb5\xaf\x48\xd5\x94\x5d\xbd\xef\x21\x76\x89\x85\x97\x76\x12\x1c\x77\xee\x3a\x1b\xfc\x34\x98\x2c\x57\x63\x3f\x5a\x98\x2e\xb6\xc7\x7f\x1b\x2b\xb9\xcb\xe0\x6c\x6f\xfd\x1d\x20\x33\x40\x61\x47\x99\x66\x17\x9e\x55\xad\xd0\x0a\x9a\xd4\xac\x4e\x71\x59\x95\x7e\x11\x80\xe1\x64\xed\x8c\xd9\xe9\x58\x54\xeb\xea\x1b\x3b\xdd\xd8\xae\x3d\xf6\x17\xe5\x3f\xb6\x89\xc0\xd8\x59\xa8\x2f\x0b\xdd\x05\xb9\xad\x14\x73\xa2\x70\xad\xe5\x35\x85\xf3\xc8\x99\xb1\xfd\xfc\x53\x40\xbb\x5e\x71\xb5\x84\x27\x10\x48\xda\x24\xc6\x8e\x31\x9d\xd8\xe8\x31\x76\x3c\xb7\x1d\x0d\x0a\x54\x2f\x4d\x3e\x7e\xe4\x9d\x58\x1a\xdd\x77\xc7\x3f\x87\xde\x80\xd3\x9f\xaf\x84\x6a\x4e\x3f\x26\x79\x71\xfc\x33\xfa\x9f\x1b\x68\x3e\x9c\x35\xef\xb4\x44\x87\xc3\x1a\xc8\xb4\xda\x9a\xe0\x13\x7d\xbe\xf8\x70\x8a\x5e\xd9\x38\x11\x84\xbb\xe2\x93\x1b\x34\x32\x8f\x2c\x34\x4d\x71\xb7\x3c\xaa\x9a\x3e\xa3\x55\x96\xf3\x1c\x46\xca\x60\xf8\x24\x8b\xcb\x10\x92\x1e\x0f\x95\x84\x5c\x92\x18\x26\x0c\x62\xb3\x2e\xdf\xfc\x8e\x52\xca\x5b\x23\xd0\x30\xa0\x78\x63\xfe\xc2\x13\xb0\x9b\x7f\x9b\xbc\x16\x56\x89\x62\x42\x2b\x1e\xa8\x02\x68\x62\xf9\x4a\x08\x84\x0e\xbc\x2a\xdd\x6c\x7d\x54\xfa\xce\x7a\xf5\xc4\x55\x83\xef\x2f\x73\xcb\xde\xea\x06\x2e\x3c\xa0\x08\xfa\x4f\xb1\x15\xfc\xb1\x62\x97\xb4\xc0\xb8\xaf\x35\x24\x53\xcc\x8c\x96\x25\x43\xf1\x0b\x34\x14\xcd\x8c\xb0\x74\xea\x1a\x41\x7a\x66\x7d\x9d\x02\x11\xaa\xa1\xcf\x3c\x78\xc9\x9e\x6a\x24\xbc\x22\x3a\xbb\x38\x67\x2d\x57\x7c\x09\x79\x42\xc9\x16\x9a\xb7\x04\xe5\xff\x3f\xe1\xcf\x2f\xad\xaa\xb6\xf5\x0a\x76\x8e\xc7\xd1\xc3\xb1\xe0\x34\x34\xd2\xf0\xf0\x5d\x93\x78\x4c\x9b\x1f\x04\x2f\x43\xfd\xbb\x7d\x1a\x9b\xc6\x11\xba\x55\x48\x23\x7a\xe0\xfe\x84\x85\x65\x5d\x3f\x97\xf4\xf9\xa8\x62\x58\xea\x70\x89\x1d\x47\x0d\xe2\xfc\xaa\x0c\xdf\xe6\x79\xe6\xe3\xdf\x5e\x1f\xcc\xcb\x4a\xb0\x76\xfd\xd8\xf7\xc8\x8e\xfc\xfd\x9a\xc6\x22\xcb\x81\x15\x30\xba\xc9\x50\x42\x5a\x61\x88\x2b\x07\x4e\x9c\x96\x90\x0a\x56\x1e\xc9\xba\x4a\x7d\x15\x98\x9f\xf8\x90\x56\xb4\x0c\x2f\xeb\x76\x86\xbb\x7c\x24\x4f\x7d\x3d\x98\xf7\xde\x88\x44\x17\x22\x24\x09\x0f\x63\xac\x0f\xc5\x64\xfa\x78\x14\x16\x59\x7a\xf1\x68\x49\x47\xb6\xdc\xd5\x2b\x34\x88\x38\x96\xd4\xb3\x4b\x20\x8e\x8d\x86\xd8\x56\x44\xd0\x1e\xd7\x5a\xd5\xd0\x39\x7b\x1c\xa0\x0a\xb5\x9c\xc6\xfa\xa9\x63\x84\x33\xe5\xaa\x99\x66\xfa\x1d\x3f\x63\xe5\x40\x9a\x06\x1c\x17\x32\xb6\xe6\xa7\xa7\x8a\xf2\x8a\xfc\x41\x2b\xec\x60\xb1\xa2\x15\x92\x7b\x3f\x48\x61\xd5\x6a\x14\x72\xfe\xe2\x21\xda\x13\x26\x2a\xa8\x26\x6c\xf6\x03\xac\x3f\xbe\xf8\x89\xcb\x1e\x7e\x3e\x7d\xbd\x58\x40\xed\x3e\x9e\x5e\xd2\xc7\x2f\x7f\x9e\x4d\x02\x8b\xd0\x67\xdc\x3c\x68\xfb\xef\xde\xcb\x8a\xb9\xe1\xf5\x15\x84\x12\x7a\x9e\xe6\x3d\x71\x59\xe1\x17\x57\xe1\x33\x6f\x3b\x7f\xd2\x6c\xca\x66\xa8\x5a\x8c\x96\x50\x0d\x29\x13\x5a\x0f\xde\xea\xcb\x40\xea\x59\x7c\x7a\xe3\xc1\x30\x6e\xb4\x2c\xf6\x3a\x7d\xab\x5f\x53\x0a\xff\xf4\x4f\x27\x27\x27\xe4\x42\x4c\xe9\x7b\x09\x9e\xf9\x5f\x58\xdb\x9c\x5e\xe0\x38\xaf\x12\x3e\xb5\xc6\x3c\xd1\x6c\x28\x1d\xdc\x03\xd2\x91\xe9\xa3\x93\x5c\x84\x6f\x79\x05\xd6\x81\xc9\xc0\x52\xbd\x9b\x07\xf2\xed\x36\xbc\x7e\xcc\xde\x48\x60\x1f\x68\x85\x5d\x34\x79\x10\x4b\x11\xa9\xd2\xe5\x8b\x69\x48\x4e\x05\x39\x11\x68\x51\x12\x11\xbe\x64\x12\x6b\x11\x72\x5d\xdc\x9c\x54\xff\xf8\xa4\x90\x54\x22\x12\xd7\x4c\x65\x11\x59\xff\x07\xb2\x26\x0b\x97\x1d\x84\x8f\xe7\x59\x76\x74\xf4\x3d\x87\x25\x98\xa3\xa3\xc3\xaa\xdc\x6d\xce\x9a\xfd\xa7\x51\x90\x8c\x82\x49\x68\xb0\xc2\xfc\x54\x7c\x3e\xc6\xde\xca\x76\xde\xb1\xf3\x18\xf3\xfc\x1e\x90\xe7\x53\x45\x3b\x4e\xd4\xc4\xe8\x5b\x44\x55\x68\xd3\x8a\x0d\x77\x7c\xd0\x5c\x1a\x83\x34\x23\x0d\x18\x87\x23\xa3\x21\x76\xc4\x28\xcc\xf8\x4c\xfc\x16\x90\x2b\xb9\x3b\xd9\x3b\xe3\xbc\x3b\xd2\x79\x55\xe2\x63\x51\x5c\x9b\x9d\xfb\x7f\xc8\x93\xf3\xaf\x84\x9c\x4a\x34\x0d\xf6\x6a\xad\xac\xdb\x1b\x83\xdd\x71\xc3\xdb\x07\x02\x4f\x13\x0f\xf0\xe5\x62\x99\xe7\x7b\x87\xcf\xfe\x5f\x00\x00\x00\xff\xff\xc4\xa7\x3d\x20\xf3\x95\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x6d\x6f\x1c\x37\xd2\xe0\x77\xff\x0a\x42\xcf\x01\x7a\xc1\x4c\x4b\xce\x22\xbb\x39\xdd\xf9\x16\x8a\xed\xec\x2a\x89\x6d\x9d\xe5\xcd\xe2\xe0\x0b\x76\x38\xdd\x35\x33\xb4\xd8\x64\x2f\xc9\x96\x3c\x39\xdc\x7f\x3f\xb0\x8a\x6f\x3d\xd3\x92\x46\x4e\x14\x44\x87\x67\xf7\x43\x2c\xa9\xbb\x58\x2c\x16\xeb\xbd\xaa\x9d\xe1\xc2\xd9\xd3\x67\x53\xa6\x78\x0b\xa7\x8c\x2f\x16\x42\x09\xb7\x7e\xc6\x58\x27\xb9\x5b\x68\xd3\x9e\xb2\x05\x97\x16\xfc\x6f\x8c\x5e\x08\x09\xf6\xf4\x19\x63\x53\xf6\x43\x3f\x07\xa3\xc0\x81\xa5\x1f\x15\x77\xe2\x1a\xf0\xdf\xef\x3a\x50\x97\x2b\xb1\x70\xcf\x18\x6b\xc0\xd6\x46\x74\x4e\x68\x75\xca\xce\xa4\xd4\x37\x96\xd5\x5a\x59\xbf\xb2\x12\x6a\xc9\x6e\x56\xa2\x5e\x31\xa5\x1b\xb0\xcc\xad\x80\x09\xe5\x60\x69\xb8\x7f\x81\x75\xba\x39\xb0\x87\x8c\x1b\x60\x20\xc5\x52\xcc\xa5\x5f\x80\x31\xa7\xd9\x1c\x98\xad\x57\xd0\xf4\x12\x1a\xa6\xd5\x84\xcd\xb9\xc5\x7f\x31\xc9\xe7\x20\xad\xff\x97\x07\xe7\x01\x4f\x98\x36\xec\x46\xb8\x15\x02\x37\xd3\x4e\x37\x69\xa7\x8c\xab\x06\x61\x72\xe5\xc4\x34\xfe\x76\x14\x5c\xa7\x1b\x8f\x22\x77\x88\x10\x97\x06\x78\xb3\x66\xa6\x57\xb8\x8f\x62\x3d\x5b\x21\xc4\x73\xb7\x6f\x59\x23\x2c\x9f\x7b\x1c\xe7\x6b\xd6\xc0\x82\xf7\xd2\x55\x44\xcb\x0e\x8c\x13\x91\x9a\x44\x7e\x50\xf8\x2c\xed\x71\xdd\xc1\x29\x9b\x6b\x2d\xf1\xc7\x01\x1d\x5f\x72\xe5\x09\xd0\x7b\x14\x9d\x0e\xaf\xf9\x4d\x86\xd5\x18\x67\x78\xb2\x95\xa7\x38\xfd\xd3\x32\xbb\xf2\x68\xbb\x95\xf0\x07\xd0\xb6\x5a\x21\xdc\x84\xca\xba\x2a\x10\xe9\x74\x33\x2d\x78\xe1\x6e\x6c\xce\xe4\x0d\x5f\x7b\xa0\x53\xa9\x6b\xee\xc0\xb2\xb6\x97\x4e\x74\x12\x98\x81\x4e\x8a\x9a\x5b\xa6\x17\x5b\x87\x2b\x88\x60\x96\xb7\x10\x30\xf1\xb4\x63\x07\x81\x4a\xec\x08\xf9\xee\xe8\x70\x0b\xaf\xf2\xa0\xee\x45\xee\x2d\x5c\x83\xf9\x5d\x70\xf3\x4f\x24\xbc\xa6\xc4\x36\x05\x7a\xfb\x1f\x7f\xb6\xce\x08\xb5\xdc\xdf\x46\xf2\x15\x2c\x84\x02\xcb\x38\xb3\xe0\x3c\x3e\x3b\x5f\x07\xba\x0a\x01\xc7\x9d\x2f\xc4\x6d\x47\xfd\x2b\xb1\xc6\x0b\x72\xe0\xc1\xca\x35\x73\x2b\x6d\x81\xb5\xdc\xd5\x2b\x7f\x3d\xfc\xd2\x08\x9d\x59\x90\x50\x3b\x6d\x26\x01\x6b\x03\x12\x45\x87\xdf\x8a\x7f\x6a\x29\xae\x41\x21\x72\xb6\xe3\x35\x1c\xd2\x95\x73\x2b\x18\x21\x85\x5d\xe9\x5e\x36\xfe\x2e\xa4\x13\x6e\x02\x58\x7f\xdf\xef\x64\x9d\xa7\xba\x59\xa5\xdd\x1d\x1b\x8e\xdb\x9d\xf7\x42\x36\x60\x06\x82\xdc\x99\xfe\xb7\x91\xe3\x1f\x56\x10\x17\x20\xe9\xc2\x84\x25\xd9\xaa\xb8\x94\xeb\x24\x98\x1a\x70\x60\x5a\xa1\x00\xf7\x3a\x07\xeb\x98\x17\xfc\x0e\x96\xeb\x24\xc7\x3d\x18\x2f\x84\xbd\x56\x58\x88\x65\x6f\x80\x9d\xe7\xbd\xff\x20\x9c\x7d\x02\xf2\xf2\x1a\xcc\x5c\x5b\xb8\x17\x91\xd7\xb4\x72\x78\x9c\x49\xbd\x5c\x06\xdd\x41\x74\xa8\x75\xdb\x69\x05\xca\x05\x45\x63\xfb\xae\xd3\xc6\x31\xe1\xd8\x01\x54\xcb\x2a\xa0\xf0\x03\x57\xe2\x2a\xd2\xae\xd3\xcd\x61\x3e\xf7\xda\x33\xe4\xe3\x9d\xfa\x4b\x0f\x3e\x9c\x79\x3d\xa4\x6a\x3e\xbf\x6b\x30\x56\x68\x85\x92\xf5\xac\xe3\x75\x7a\xef\x07\xc4\xdf\xf4\xca\x89\x16\xf0\xd0\xf1\x3e\x40\xc3\xa4\x98\x1b\x6e\x04\xd8\x09\x23\xc8\x81\xcb\xa3\xfa\x7c\x02\x3c\x10\xb6\x35\x0d\xbb\x2f\x10\x22\xa1\xb2\x8d\x92\x27\x28\x9e\xd7\xf4\x6a\x1a\x89\x12\xde\xf6\x28\xf6\x16\xd8\x42\x9b\x4d\x35\x50\xb1\x73\xc7\xf4\x35\x18\x23\x1a\xb0\x01\x21\xff\x4c\x54\x4e\x11\x84\x17\x54\x41\x91\x15\x37\x8a\x5d\x04\xce\x28\x78\x46\x2b\xc7\x85\x7a\x4c\x69\xf1\x32\x2e\x71\x1f\xef\xe4\x43\x8e\x7a\xb9\xc4\x8e\xb1\x9b\x15\x18\xd8\xd2\x8c\x37\x42\x4a\x7f\x00\x48\x1b\x2e\xad\xf6\x70\xae\x3d\x7d\x12\x68\x7a\xd0\xd3\xf3\x12\xcc\xb5\xa8\xbd\x2c\xb7\x56\xd7\x22\x89\xd0\x20\x92\xd3\x7a\x4f\x80\xe7\x78\xef\xf4\xbd\x58\xec\xed\x95\x5c\x0a\xff\xee\xc1\xba\x69\xdd\xf5\x3b\x72\x68\x2b\x94\x68\xfb\x96\xf1\x56\xf7\x0a\x55\xdf\xcb\x8b\x7f\x20\x1c\x61\xe8\x62\x6e\xc2\x6e\xa1\xd5\x66\xfd\xc5\xe0\xe9\xf5\xd1\x15\xa4\x68\xc5\x83\x70\xe7\x9f\x77\xc4\x9d\x20\x3f\x0c\xf3\x2d\xe0\x77\x60\x0e\x9f\xbb\x5d\x14\xc4\x28\xc7\x1c\x47\x76\x41\x20\x28\x61\x05\x67\x57\xe9\x2a\x46\x8e\x1e\x9a\x3b\xc6\x15\xab\x09\xe5\x46\x36\x51\x5e\x3c\xce\x1a\xb1\x58\x80\x01\xe5\xf0\xe5\x80\x31\x3a\x2e\x83\x6b\x91\xad\xe0\xd9\x37\x27\xdf\x9c\xcc\x0e\x37\x97\x9d\xaa\x68\x36\xdf\x43\xc3\x3b\x97\xf7\x40\x92\xf8\xbb\x13\xa1\x70\x3f\x32\x5a\x2b\xe7\xba\x21\x5a\x96\x08\x34\x7d\x30\x55\x7a\xe5\x6d\x1c\xf2\x51\x03\x10\x42\x66\x48\x12\x52\xd2\x76\x60\x8d\x47\x74\x4b\x72\xdd\x8e\xd5\x17\x11\xed\x56\xec\x90\x78\xa3\x28\x46\x7d\x81\x1e\xf4\x36\x8a\xdb\xa4\xdb\x15\x2f\xbc\x10\x42\x15\x2b\xfa\x37\x2b\xf2\x82\xfd\x3f\x1b\x36\x2b\x44\xf6\x6c\xc3\x21\x4e\x0c\x64\xf4\x1c\xec\x74\x57\x09\x7b\x81\x8f\x93\x59\xd5\x6c\x5e\x17\x82\x15\x1d\x9f\x31\x06\x46\x37\x6e\x76\xb8\xb9\xfe\xb4\xe3\x6e\xb5\xc3\xa6\x2f\xb8\x5b\x79\x52\xf2\xba\x06\x9b\x16\x42\x10\xec\x20\xe9\xe3\xd9\xf1\x0a\xb8\x74\xab\xd9\x61\xc5\xde\x6a\x07\xd1\xc6\x4f\x87\x11\x25\xbb\xe7\x20\x6f\xf7\x04\xab\x0f\x1a\xad\xd8\xbf\x7b\x6e\xae\x7a\x3b\x30\x9a\x2c\x38\xe7\xcd\x46\xe1\x82\xe2\x03\xeb\xd7\x21\x5d\x1f\x60\x96\xda\x71\xc1\x85\x44\xb7\x44\x33\xeb\xb8\x71\x43\xb9\x77\x0d\x0a\xac\x9d\x7a\x9f\x48\x70\x39\x6d\x40\xf2\xf5\xf0\x8e\xfc\xe9\xab\x11\xbf\xba\x6f\xe7\x60\xbc\xd0\xb3\x50\x6b\xd5\x58\xc6\x17\x0e\xcc\x06\xa5\x57\xdc\xd2\x92\xfe\xda\xc2\x42\x1b\x48\x0b\xe6\xbd\xfb\x33\xf2\x2a\x8f\x30\x70\x9b\x72\x39\xe0\xe7\x77\xaf\x7b\xf7\xe5\x98\xd1\x35\xc9\x07\xe4\x01\x5a\xa6\x7b\xaf\x7d\xbb\x4e\x7a\x8b\x83\x2c\x80\x80\x59\x5c\x99\x1e\x1f\xc5\xa9\x03\x23\x74\x73\x3f\x4a\x7f\xd7\x37\x4c\x2f\x1c\xa0\x59\xd7\x81\xf1\x06\x56\xc6\x64\x73\xfd\x5d\x56\xb6\x3d\xb2\xdc\xd4\xad\x0c\xd8\x95\x96\x3b\x20\xf1\x26\x28\xda\x5a\x2b\x0b\x75\x8f\x5e\x68\x00\x03\x36\x4b\x5a\xa2\x8d\x26\x17\x53\x59\xd1\x80\x81\x26\x3e\xb8\xe8\x65\xa0\x0e\xd1\x74\xc5\xaf\x3d\x63\x79\x06\x83\xa6\x7a\xf8\x36\xfc\x8b\xbd\x81\x5f\xbb\x8d\x00\xe6\xde\x5d\x10\x9e\x63\x3b\xc0\xfd\x41\xf3\x90\x4d\x18\xe0\x8d\xf8\x5d\xaf\x4e\x5a\x71\xc7\xbb\x93\x31\xfc\xdd\x2f\x4f\x5a\xfa\x2e\xba\x3d\xd2\xf5\xd9\x69\xed\xa7\x70\x81\x76\xda\xc8\x1f\xff\x0a\x6d\x6d\x23\xf9\x9d\x06\x9d\x9b\xc7\xc8\x34\xec\xa3\xd3\x69\xbc\x46\x1e\xf5\x37\x7b\xeb\x74\x2b\x7e\x89\x81\x29\xbf\x05\xdd\x23\xdf\x13\x53\x8a\x9a\xc8\x28\x5a\x30\xc7\x1e\xcf\x10\x4e\x2d\xd4\xaa\xad\xd8\x3f\x57\x42\x02\x53\xda\xb4\x18\xf6\xe2\x6a\xa0\x76\x83\x1b\x60\x19\x67\x9d\xf6\xcb\x22\xc8\x39\x30\x4e\x01\xf3\xbe\xa3\x10\x08\x25\x10\x26\xcc\xea\x16\xd2\xf2\xcc\x71\x7b\x65\x27\x9e\xaa\x2b\xc6\x2d\x9b\x73\x57\xaf\xd8\x27\x3d\xb7\x93\x08\xb8\x84\x58\x3b\x71\x8d\x81\x14\xee\x98\xed\xa0\x16\x0b\x51\xb3\x95\xee\x4d\x72\xa3\x1b\xbe\x4e\x69\x10\x9e\x97\x41\x99\x85\xbe\x8b\x50\xbd\x8b\xa9\x8b\xef\xb4\xa1\x95\x03\x16\x28\x9a\x86\xd4\x6c\xb9\x03\x23\xb8\x8c\x44\x2c\x77\xce\xfd\x9e\x07\xc7\xc6\xf0\x30\xbe\xd7\x73\x26\x94\x75\xc0\x1b\xbf\x24\xf7\x02\x4e\x35\xdc\x34\xac\x81\x4e\xea\x75\x0b\xca\x4d\xbc\x1d\xa3\x0d\x86\x16\x35\xb3\xfc\xda\x33\x90\xd5\xbd\xf1\x1e\xfb\xcd\x0a\xb2\x91\x53\xae\xd8\x68\x20\xdb\x49\x01\x9d\x30\x5a\xb7\x9e\xb9\xa1\xa9\xca\xf0\x47\x0c\xac\x79\xc9\xca\x16\x46\x93\x20\x59\x68\x29\xf5\x4d\xb4\xf1\x8a\x28\x1c\xc6\xda\xaf\xb9\xec\x91\xb8\xd1\xf3\x48\x94\x38\x65\x33\x64\x91\xd9\x84\xcd\xfc\x6f\xfd\x7f\xbd\xc5\xe6\x7e\x99\x55\x68\x12\x9b\x5e\x86\xfd\xfb\x7b\xd5\x5b\x7f\x51\x4a\xd2\x24\xb2\xf0\x10\xd5\x48\x98\x9c\xb2\x69\x04\x7e\x4a\xfb\xa6\x33\xb3\x9e\xfa\xf1\xdc\x6f\x8c\x70\x5e\x2e\x72\x4b\x48\xc1\xe7\xce\x80\xb5\xc4\x9d\xaf\xab\x65\x15\x40\x9c\x3a\x51\x5f\xfd\x95\x00\xbc\xf8\xf3\xc9\xc9\xc9\xc9\xac\xf2\xf0\x37\x70\x3e\x8d\x21\x16\x95\xf7\x99\x41\x66\x22\x07\x2d\x95\x74\xc4\x41\x90\x19\x7b\xe1\x17\x7b\xac\xe3\xe4\x10\x59\x70\x31\xb6\x72\x72\x18\x51\xf2\x70\x4f\x1d\x9f\xff\x35\x26\x2c\x5e\x9c\x1c\x7f\xf5\x5f\xfe\x4f\x27\x7b\xfb\x7f\x8f\xc6\xfe\xf3\xd7\x99\x67\xdd\x80\xe5\xa9\x33\x62\xb9\x04\xf3\x57\x0f\xe6\xc5\x09\x3d\x71\x72\xfc\xd5\x9d\xef\x57\xfb\x7f\xfc\x60\x4e\xa4\xc6\x8e\xde\x56\xe4\x9c\xf8\x5a\x92\xdc\x37\x2b\x2d\x37\x23\x86\x8b\x22\xef\xa5\x7b\x97\xe2\x86\x1e\xbb\x06\x6a\xc9\x0d\x34\x78\xcd\xd7\xac\xed\xad\xf3\x32\x1d\x52\x0a\x6c\x73\x09\x61\x5b\xa8\x57\x5c\x09\xdb\x7a\x4a\xdc\x68\x73\xc5\x6a\x6d\x0c\xd4\x4e\x0e\x76\x94\x2f\xd2\x0e\x7b\xda\x3f\x43\x12\x71\x66\xa1\xe3\x26\x44\x85\xad\x8b\xf2\x8b\x22\xc8\x9b\x01\xf2\xe2\xba\x27\x99\xde\x24\x17\x28\xc8\x91\x40\x98\x8c\x6c\xe2\xf0\xb4\x31\xef\xbb\x13\x5b\x79\x37\xf2\x73\xca\x64\xcc\xd7\xc5\x65\xad\xce\x62\xa2\x2d\x4a\xd8\xb4\xa6\xf1\x10\xb2\x14\xf6\x2b\x02\xf7\x5e\x39\x3d\x09\x45\x68\x3f\xdc\x82\x80\x54\x80\x18\x6e\x7a\x7e\x8a\x64\x2e\x5e\x95\x69\xfc\x5b\xb9\x58\x5e\xeb\x40\xb8\xfd\x7d\xaf\x5b\xc1\x82\xf2\x5e\x60\x11\x12\x9e\x69\xb3\xac\x38\x86\xe0\x2b\x8c\x34\x57\x57\xa7\x31\xe2\x8c\x77\x3f\x04\xde\xd7\x87\xd5\x65\x74\x3a\x37\xc5\x5f\xdd\x1b\x03\xca\xc9\xf5\x69\xc4\x35\x4a\x8d\x80\x97\x57\x62\x49\xea\xed\x17\xc7\xbf\xe0\x52\xce\x79\x7d\x75\xef\xd5\xfa\x87\x85\x41\x04\x9b\xce\x5a\xb4\x9d\x04\xaf\x12\x48\xc4\x07\x3e\xa0\xd5\x19\xa8\xa6\xd3\x42\x39\x76\x10\x97\x3e\x4c\xc7\x9e\x14\x8c\x33\xeb\xe0\xf7\xde\xa1\xad\xb8\x1d\x91\xc7\x43\x2e\x56\x44\x83\x7a\x3d\xed\xb4\x14\xf5\x2e\x01\xc2\xfd\xcb\x70\xf2\x96\xad\xf4\x0d\x9a\x42\x06\xb8\xcb\xc0\x5c\xd0\x4f\x31\x51\xc2\x99\x5f\xf6\x27\x2e\x45\xc3\xbc\xc2\x29\xaf\xe8\xe9\x94\xed\x61\xed\xc4\xde\x29\xe3\x54\x43\x11\xf0\x44\x23\xcb\xf4\xaa\x80\x2b\xd7\xff\x6d\xca\xf6\xbe\xd3\x66\x2e\x9a\xbd\x14\xeb\x38\x3c\xf5\x1c\x37\x17\x4d\x04\x5b\x20\x62\x7a\xe5\x2d\x8d\x2b\xd1\x75\x9e\x5c\x0a\x3e\xe3\xef\x98\x58\x78\xae\xf2\x96\x11\xc6\x1f\xbc\x4b\xa2\xf6\xf7\x1d\x5b\x08\x25\xec\x0a\x1a\xb6\x06\xe7\xd7\x7a\x0f\x9d\xe4\x35\xec\x45\x06\xa9\xb9\xaa\x41\xda\xcc\x39\xa9\x48\xe2\x93\xd7\x74\x98\xf6\xc1\x37\x2c\x85\x30\xd0\x22\x51\x70\xc3\xb4\x82\xfd\x87\x46\xb7\xcf\x7a\xa7\x5b\xee\x44\x8d\xf7\x95\xec\x88\x31\x83\x24\x8a\x4b\xbc\xfb\x5c\xca\x20\x07\x3d\x79\x41\xb8\x55\x0a\x23\xa2\x65\x80\x36\xb9\x37\x0e\x0a\x4b\xc9\x1b\xc1\x7d\x0b\x86\x1d\x68\x25\xd7\x77\xde\x02\xbc\x37\x29\x8a\x13\x19\x53\x1b\x0f\x8e\x5b\xeb\xed\xed\x0c\x0d\x50\x27\x36\xc2\x8b\xcf\x19\x8a\x91\xad\x87\x0e\x2b\x8c\xa2\xc5\xb8\x32\x8a\xbe\xc8\x1d\x52\x6e\xa3\x68\x37\xe4\x37\x3d\x80\x28\x66\x5b\x38\x28\x76\x6f\x33\xda\x68\x8a\xb3\xa2\x8a\x20\x62\xf6\xbc\x9d\x8d\xbe\x32\x3b\x39\x7e\xce\x8e\xe8\xff\xb3\xc9\x0d\x9a\xc2\xb3\x3f\x7d\xdd\x92\xae\xfe\xfa\xc4\xce\x42\x1e\xaf\xc8\x4e\x36\xd0\x81\x6a\x40\xd5\x02\xd9\xfb\x91\x92\x4d\xaf\x8a\x55\xee\xcc\x4f\xf3\x01\xef\xf0\xa6\x89\x61\xb6\xc0\x66\x05\x98\x54\x4d\xb1\xc9\x5a\x31\x61\xef\x81\x1a\x76\xc3\x51\x35\xe1\x9d\xdc\xc8\x1f\xb1\x8f\x3f\x97\x74\x90\x7a\xfd\x98\x09\xb7\xb8\xc2\xb8\xff\x03\x9f\x3b\x29\x6a\xe1\xaf\x26\x55\x28\xe0\x0e\xae\x84\x42\xb1\xb9\x12\x4b\x8a\x7e\x4a\xb8\x06\x99\xcc\x6f\xda\x2a\x46\x1c\xc7\xaf\xd9\x13\x48\x98\xf9\x2d\xee\x20\xbd\x43\xa1\xda\xad\x94\x6a\xc0\xe2\x45\xcc\x6e\x0b\x11\x6f\x0e\xee\x06\x40\xb1\x59\xfe\xc3\x6c\x52\xaa\xcd\xe9\x27\x3d\xa7\x0b\x72\x45\x27\x39\x0d\x71\xfb\x19\x09\xa6\xda\x2b\x89\x58\x42\x92\xfd\x1e\x6f\x2c\x44\x19\x3a\x1a\xe3\xad\x36\x58\xcb\xaf\xfc\xa8\x17\x2c\x6e\x3b\x5d\x2f\x03\xb6\xd3\xca\x62\x51\x92\x47\x77\x09\x0a\x4c\xde\x4b\xa1\x62\x07\x18\xb2\x82\xab\x5a\x7e\xe5\xc5\xe6\x1d\xf9\xdd\x98\xcf\xae\x65\x6f\xdd\x56\x86\xb6\xbc\x61\xa0\xae\x85\xd1\xea\x71\xe9\x50\x2c\x92\x09\xd1\xc7\x38\x41\x10\x36\x4e\x33\xa1\x3e\x79\xce\x49\xde\xee\x10\x39\xc6\xae\xb9\x11\x9e\xbd\x6d\xdc\x5f\xb9\xf7\x14\x12\xcc\xc1\x80\xd9\xdb\xb3\x37\xaf\x2f\x2f\xce\x5e\xbe\xf6\x0a\xe8\xe2\xdd\xab\x7f\xf9\x5f\x90\x0e\xd2\x5e\x97\x3d\x85\x9a\x99\xb4\xaf\x69\x0b\x8e\xef\x58\x3a\x63\x03\x2d\x83\x41\x58\x10\x82\x14\x70\xa6\x45\x79\x36\x89\xbe\x5b\xa9\x42\xcf\x0e\xb3\xc3\xcc\x35\xc6\x68\x33\x5d\x71\xd5\xc8\xc7\x14\xce\x83\x65\x82\xca\x0f\x2b\x05\x3e\x8a\x64\x0f\x9c\xf3\xda\xbf\xc0\xfe\x9e\xf0\x62\x2c\x88\x64\xa1\x42\x90\x6d\x10\x78\x22\x25\xf6\x04\x78\xc0\xc0\x62\x47\x6f\x17\x49\xc6\x22\xc9\x0c\x2c\x28\xc7\x19\xca\x3c\x1a\x8f\xd4\x42\xf7\xde\xc0\x51\x8c\x77\x58\xd9\x49\xb5\x73\x89\x00\xe9\x90\x97\xf5\x23\x05\x1d\x3d\x9e\x7f\x7b\xc9\x3e\xe0\x09\x2e\xb9\x99\xf3\x25\x4c\x6b\x2d\xbd\xda\xb0\x64\x73\x26\x89\x9e\xea\x88\x95\x66\x52\xab\x25\x18\xa6\xa0\x06\x6b\x79\xa8\x3f\xe8\x3b\x3d\x0c\x27\xf6\x5d\xc3\x43\x80\xee\x0f\x7e\xaa\x8d\xb0\xb5\xbe\x06\xb3\x9e\xd6\xde\xf3\x2c\x10\xaa\x8e\xbb\xab\xe5\x31\x41\x4f\x4f\xbd\xf4\x0f\x7d\x58\x77\xb0\x8d\xea\xab\xf8\x0c\xab\xa5\xf0\x37\x19\x01\x06\x87\xdf\x6f\x60\xc2\xc8\x78\xf7\x06\x34\x55\x8a\x79\x89\xd8\x08\x7b\x45\x5a\x96\x2a\x32\x66\x5b\xf7\x3e\xfc\x3e\xdf\x7c\xa1\x96\x86\x32\x2b\x0f\xe2\x8c\xad\xf3\x3f\x27\x38\xb7\x9a\x5d\x3a\xb8\xba\x31\x5d\x9f\x6b\x90\xd0\x11\x7a\x16\x3d\xf7\x81\x89\x49\x57\x5c\xf7\xce\x8a\x06\xd8\x8d\x36\xb2\x89\x6e\x53\xa1\x57\xc3\xd2\x21\xe5\x1e\xb8\x81\xcd\xd7\x81\xac\xb4\x73\x6f\x65\x60\x49\x34\x8f\x55\x23\x28\x7f\x9a\x86\x30\xdc\x5c\xfa\xc0\xad\x8c\xee\x97\x94\xfa\x99\x45\x5b\x85\xb0\xf4\x3b\x3c\x7c\x02\xec\xb8\xd2\xd6\xed\xe2\xb1\x1f\x1d\xbd\x0f\x0e\xd6\xd1\x51\x35\x2c\xb4\xf0\xbb\xf7\x60\x36\x6b\x50\x02\xd7\x54\x0f\xf6\x5a\x3f\x8c\x39\x1f\x98\x3f\x20\xf6\x49\xc7\xb4\x79\x20\xbd\xc5\x84\xc2\xdf\x3f\x7c\xb8\x88\x75\x26\x31\x12\x12\xbd\xbf\x6c\x0b\x0a\xeb\x84\x7e\x44\x61\x77\xee\xe1\x07\x56\xe7\xc9\x64\x1e\x2d\xe6\x8b\x85\x9e\x81\xc7\xce\x03\x66\x2c\x5d\x84\x16\xec\x2a\x5b\x38\x9e\xd1\x6b\x6e\x0a\x6d\x8f\xb6\x4d\xef\xe6\x28\xe4\xcf\x2f\x98\xe1\x6a\xf9\x24\xa4\x21\x12\x66\x07\xfe\x7b\x19\xc9\xe6\xcf\xf7\x00\x43\xa1\xd3\x14\x0a\x3d\x4c\xb1\xd0\x97\xe7\xaf\xde\x33\xdb\xcf\x15\xa4\x22\xe1\x54\x17\x1e\xb0\x98\x13\xcb\x98\x1a\xba\x22\x6b\x41\x87\xd5\x19\xfd\x79\xcd\x0e\x66\xcf\x4f\x2a\xfc\xff\xf1\x37\x93\xe7\x7f\xf9\xaa\x7a\xfe\x67\xfc\xe1\xf9\x57\x93\xe7\xff\xd5\xff\xf4\x0d\xfd\xf8\xe7\x28\x39\x73\xb1\xce\xa0\x38\x88\x8e\xe7\x5e\x1a\x7f\xa7\x83\xce\x03\x0a\x6d\xa1\x83\x10\xda\x12\x66\xe1\xa8\x2b\x64\xd6\x4a\xe8\x63\x02\x3a\xab\xd8\xb7\x69\xd1\x22\xa4\x49\x75\xf5\x94\x5a\xf0\x07\x46\x26\x9c\xf7\xcc\x0b\x67\xcc\x33\x0b\x56\xd2\x80\xf3\x7f\x09\x0c\x9d\xeb\xe4\x22\xfe\x9f\xb4\xd4\x57\x82\x3f\xe2\x15\xf9\x9e\x56\x88\x97\x24\x44\x6d\xed\xb0\xe2\x9d\x48\x13\x1f\xfd\x9e\x5f\x73\xc6\x97\xa0\x1c\x25\xe3\x2e\x01\xd8\xca\xb9\xce\x9e\x1e\x1f\x07\x84\x2b\x6d\x96\xc7\x06\xb0\x5e\xae\x86\xe3\x95\x6b\xe5\x31\xbe\x61\x2b\xff\xef\x3f\xfe\xa5\xa8\xf9\xb4\x06\xb3\x8b\x58\xf6\x44\xbc\x78\xfd\x86\x81\xaa\xb5\x57\x52\x2f\xcf\x98\x7f\x53\x2c\xa2\x85\xe7\x0f\x89\x75\xdc\xad\x26\x09\xdf\x6b\x30\x62\x11\x6d\x86\x18\x94\x4c\x2f\x81\x9d\x04\x0b\xd1\xef\x04\xdd\xee\x59\x67\xb4\xd3\xb5\x96\x18\x80\xc3\x2a\x38\x1b\x3c\x8a\xde\xc2\xd4\x5a\x39\x25\x60\x53\xde\xbb\x15\x28\x17\x16\x8f\xd7\xc3\xbf\x84\x7c\x98\x2d\x8c\xe3\x6b\x6e\x8e\x4d\xaf\x8e\x2d\xd4\x06\x9c\x3d\xce\xf5\x9a\x9e\xc9\x83\xd8\xe3\x75\xad\x7b\xe5\xe2\x8f\xd3\x9a\x57\xb5\x71\x11\xac\xbf\x26\x89\xbb\x06\x17\x2f\x60\xd3\x19\xa1\x6a\xd1\x71\x59\x10\xf2\xae\x2e\x96\x0f\x98\xd8\x0f\xef\x1c\xd8\xc3\x50\xd7\x81\x29\x9f\x79\xec\x46\xf1\x16\x74\xb2\xb7\x32\xd5\x30\x60\x96\x64\x19\x8b\x45\x6f\x41\xa0\x47\xe6\x8d\xda\xe8\xf7\x20\x31\x3d\x7f\x11\xf7\xf3\xa2\x56\x2f\xec\xda\x3a\x68\x4f\x5b\x6e\xb1\xd1\xcf\x0b\x3b\xcc\xcd\xaa\x17\x2b\x7e\xe3\x84\x9e\x6a\x25\x85\x82\x8a\x7e\xaa\xec\x75\x1d\xe1\x23\x26\xb5\x7a\xb1\xf0\xd8\x78\x55\xaa\x25\x54\xfe\x07\x7c\xe8\x8e\xa3\xc8\xd6\xee\xae\xb7\xeb\x47\x61\x1d\x50\x2d\x3a\x66\xe5\x6a\x6e\x5d\x2c\x9e\xb6\x77\x56\x27\xc2\x67\x07\xaa\x81\x26\x92\xaa\x5e\xc1\x0e\xe9\x95\x37\x5c\x35\x78\x80\x18\x39\xd9\x3a\xd7\xe0\x88\xdb\x7c\xea\x0b\xc9\x97\x31\x14\x11\x97\x0c\x64\xba\x82\x35\xeb\x2d\x5f\x7a\x0b\x16\x15\xf3\xef\x71\xd0\x24\xe2\x6f\x3f\x82\x1d\x2d\x3c\xcf\xfd\x7f\xf7\x56\x1c\x6f\x1a\x13\x78\x37\x17\x36\x45\x0e\x46\x39\x9a\x3a\xcb\x84\xf2\x12\x05\x33\xa8\xb3\xbd\xff\x7d\xb4\x37\xcb\xc1\xfc\xd9\x5e\xd0\xa1\x7b\xb8\x53\xbc\x3c\x93\x68\xdb\x83\xb1\xf8\x32\x05\x11\xd1\x85\x51\xe0\x30\xfb\x88\xba\x79\xc1\xeb\xdc\x4f\x18\x23\x84\x7b\x47\x7b\x1b\xe5\xd4\xdc\xda\x1b\x6d\x76\x09\x59\xe2\xd5\x0e\x8f\x93\x20\xf4\xf4\x1a\x92\x78\xc2\x36\x0f\x0b\xcd\xfa\xde\x82\x49\xfb\xea\xa8\x01\x12\xf5\xeb\x83\x0b\xca\x47\x04\x01\x15\x1e\x17\x45\xd0\x7f\xf9\xcb\x37\x1b\x9b\x0c\xfc\xb2\xeb\x26\xc3\xe3\xa1\x45\x26\x7b\x80\x58\xbb\x8c\x07\x13\x78\x6e\x58\xd6\x6c\x91\x83\xc2\x36\x33\x1f\x15\x88\x78\x3a\xec\x88\x04\x06\xfb\xb3\x1b\x3a\x42\xeb\x21\xdc\xdb\xd9\xfe\xde\xdb\xfb\xcf\x15\xe0\xfe\xb6\x6f\xae\x2d\xfa\x1f\x6f\xc1\x62\x8b\xc5\xee\xbb\x4a\x74\xfe\xbb\x76\x45\x9e\x25\xb3\x94\x37\x8d\xc0\x6c\xaa\x4c\x1c\x10\x40\x79\x73\xbe\xc1\xee\xc9\x46\xa8\x07\x1a\x32\xff\x81\xff\x9e\x7e\xba\x6e\xa7\x64\x2c\x7d\xfc\xfe\xa7\x37\x51\x60\xe3\x3d\x1d\xb6\xf7\x84\x25\x73\x18\xf8\xd3\x75\xfb\x78\x61\xbc\xef\x7f\x7a\xb3\x11\xf6\x75\x9b\x4e\x23\x3e\xe2\x8d\x74\xd3\xab\xad\x86\xde\x27\xe0\xbc\x34\x30\xef\x97\xf7\xe7\x60\x93\x59\x6b\xa0\xd5\x0e\xe8\xb5\x65\xa8\x6a\x0b\xb1\xae\xf0\x4b\xcf\xc9\x84\x35\x77\x8e\xd7\x2b\x48\x95\x71\x2c\x52\x6c\xc2\xa0\x5a\x56\x93\x50\x2e\x85\xdd\x11\x0b\x6d\x6e\xb8\x69\xe8\x3e\x0e\x90\x9b\xda\xde\x76\xa0\xee\xa7\xd5\x25\x3d\x47\xa7\xe0\xb8\x59\x82\xc3\xe3\x11\x6d\x0b\x8d\xe0\x0e\xe4\x3a\x16\xda\xba\xd4\xcc\x20\xb9\xb5\xfe\x74\xa5\xe6\xa4\x03\xb3\xd0\x12\x5e\xff\x7a\x2f\x6d\x87\xb5\xbd\x8d\xe2\x6c\xa8\xf0\xc5\x57\xc2\x99\x79\x6d\x81\xa5\x68\x91\x59\xc4\x66\xb3\x82\xd4\x4b\x3b\x7e\x8b\x0f\xb7\x48\x11\xf4\xda\x2e\x32\xcc\x70\x65\x51\x32\x47\x5d\xc8\x5d\xd4\x85\x1a\x2f\x75\x30\x50\xb0\x65\x1c\x6e\xe4\x9a\x49\xde\x2b\x3c\x2e\x8f\xe6\x26\x42\x47\xa7\x5f\x9f\x9c\x7c\x3d\x40\xe9\x4b\x25\x89\x07\x1f\xdf\x4d\x69\x3b\xde\x82\x04\xf7\x88\x39\xe3\xb8\x42\xbe\xd0\xf7\xc5\xe4\x7f\x88\x6f\x08\x15\x03\x3e\x4f\x36\x0e\xff\x05\x95\x16\x81\x0a\x14\xd5\x0e\xf2\xbb\xc9\x44\xf1\x2c\xee\x56\x20\x4c\x8a\x3c\x0e\x24\x75\x0c\xc8\xe6\x28\x65\x8a\x2f\x0c\xfa\x04\x76\xb2\xeb\x5e\xde\x52\x36\x16\x90\xa1\xf6\x7a\xe4\x6b\xcd\x9b\x9c\x32\x89\xe5\x2f\xc5\x91\x65\x86\x1b\x66\x67\x77\x09\x10\x24\x4e\xdb\xe2\xad\x8d\xf0\xc3\x1d\x01\xb3\xa8\x32\xd1\x36\x0b\x09\xdf\x51\xd6\xe2\x36\x41\x8d\x01\xb4\xf1\xc2\xda\x22\x3e\x9c\xb3\xb6\x14\x57\x78\x1f\x12\xca\x65\x4d\x73\x09\x38\xf7\xc9\x36\x8d\x45\x16\x99\xda\x9a\x63\x27\xd1\x01\xb6\x21\xd1\x0f\x53\xa7\xa7\xbf\x80\xd1\x54\xe6\xb2\x00\xee\x7a\x03\x76\xc2\xe6\xbd\x0b\x73\x11\xe2\xef\x30\xdf\x81\xc5\x33\x2d\x70\xbf\xf4\xa2\x97\xd9\x0c\x0d\xf5\x38\xbd\x85\x10\xdf\x4c\x26\x24\x02\xce\xd1\xcd\x27\x71\x9b\x22\x71\x50\x83\x3c\x2c\xfa\xe7\x0a\x96\x29\x40\x05\x65\x94\x9a\xc5\xa8\x3c\xc7\x69\x0c\x72\xcd\x56\x1d\xaf\x8a\x87\xab\xc0\xc0\x55\x03\xd7\xa5\xcb\x72\x75\xc7\x63\xe5\x62\x87\xd5\x7b\x7f\xa9\xa3\x77\x1f\xd1\x69\x74\xdd\xa7\x8a\xbc\x22\x48\xd1\x6a\xec\x41\xf1\xf7\x23\x59\x36\x63\xd4\x68\xc1\x99\x58\x5a\xff\x6b\xc9\x41\xb0\x6e\xa3\x47\x51\xb4\x97\x62\x98\x54\xc2\x63\xd8\xac\xee\xfa\x59\xf8\xf1\x81\x7b\x4e\xbb\x4d\x25\x18\xf7\xee\x99\x4c\x8d\xfb\x5c\xa7\x4b\x08\xf6\x01\x8a\x05\xac\xc2\x4c\x1b\x08\x75\x38\xda\x60\xf7\x72\x07\xa6\xf6\xe8\x2c\xd1\x7f\xf4\x26\x0d\x8d\x90\x28\x6c\xa8\x6d\x32\x1d\xe6\x92\xd4\x0b\xdd\xec\xb8\xd1\x00\xf1\xae\xc3\x6d\x85\x42\xa1\x00\xbb\xb8\x86\xb1\xd5\x5b\xa5\x26\xa3\x8b\x34\x52\x29\x7b\x32\xb1\xce\xc5\xdb\x8c\x6a\x8d\x2d\x18\x05\x32\x23\xc3\x10\xf6\x2d\x3b\x3a\xf2\x12\xe8\xe8\xa8\xd0\x23\x93\x28\x64\x10\xfe\xd6\x80\x1f\x8b\xe2\x2b\x85\x35\x1a\x7d\x83\x79\x36\x0f\x86\x44\x92\xd2\xae\x70\xaa\xb2\x8c\x6e\x8a\x7e\x6f\xd4\xee\x63\xb4\x4c\x50\xc7\x58\xe7\x56\x5a\xf2\xcf\xbb\xd1\xf2\x4c\xb1\xbe\xeb\xc0\x30\x4a\x86\x24\x33\x6d\x84\xac\xc1\xd4\x36\x49\xd4\x33\xaf\x24\xa5\x04\x59\xdc\xde\x4d\x9a\x46\x86\x58\x71\xcb\xbc\xec\xf3\xb4\xa9\x79\x17\x62\xf7\x08\x97\x18\xcf\xe6\x82\x38\xeb\xb8\x94\xf4\x3a\x12\x24\x1e\xd7\x2e\x77\xe9\xae\x5b\xf4\x40\xab\xe4\xf6\xfa\xcf\x4d\x75\x19\xeb\x40\x63\x78\x58\x2b\x72\x60\x2d\x5b\x69\xd9\x9c\x1e\x0d\x66\x66\xa0\x7f\x97\x4a\x99\x02\xa4\xa0\xff\x8f\x50\x4d\xe4\x6a\x52\x76\x67\x39\x29\x2a\x36\x12\x3d\xa9\x04\x74\xc7\xc2\xd0\xe8\xf7\x6e\x97\x87\x6e\x9a\x2d\xbf\x8d\xb9\x12\xcc\x94\x21\x7d\x43\xb0\xd3\x46\xbf\x81\xe6\x74\xc4\x57\x52\x7d\x03\xe2\x8a\xf5\xa6\x64\x26\x62\xf9\x7d\xb2\xbc\xcc\xb6\xe5\x41\xed\x32\x8b\x5e\xca\x04\x6c\xe8\xda\x87\xfd\x13\x3c\xac\xb0\xa2\xb6\x80\xb3\x37\xaf\x7f\xfc\xd7\x0f\x6f\xcf\x3e\x9c\xff\xf4\xfa\x5f\x2f\xdf\xbd\xfd\xee\xfc\x6f\xff\x78\x7f\xf6\xe1\xfc\xdd\x5b\xff\xc8\xf7\x97\xef\xde\x32\x62\xae\xaa\x18\x60\x53\x5e\xd3\x54\xee\x4e\x55\x66\xce\xf3\x45\x1f\xb2\xf4\x88\xcf\x10\x8f\x2d\x17\x9f\x4e\x9e\xa0\x23\xc9\x08\xcf\x32\x03\x3f\xc8\xbe\x8f\xf1\x50\xea\x1e\x78\x0a\xce\xc2\xb6\x21\x7f\x8f\x2e\x1f\x22\x14\x1d\x87\xe2\x9c\xdb\x4e\x82\xdb\x3a\xf0\xe1\xe9\x95\x08\xac\xb8\x52\x20\xa7\x25\xaf\xdd\xef\x61\xfe\x18\xbc\x82\xf0\x76\x88\xd8\x70\x1b\x4b\xa9\xf4\x62\xe8\xbc\xd1\xb1\x7a\xe4\x83\x33\x1e\x6f\x34\xf6\x25\x44\x30\xc1\xb9\xd0\x86\x78\x85\xd8\xeb\x1f\xef\xcf\xed\x28\xc2\x42\x5d\xfd\x6a\x74\x1b\xb0\x4e\xa8\xd4\x13\xf1\x58\x38\x47\xe3\xfb\x77\xa1\xf2\xe8\xba\x5f\x40\xac\xf8\xf2\x6f\x42\xad\x14\xc1\xde\x89\x5c\xd7\xf0\xc5\xb4\xc2\x77\xf1\x79\x9b\xcb\xc9\xb7\xca\x5f\xe7\xc0\x6c\x3f\xf7\xaf\xcf\xf1\x22\x79\xc4\xb3\xf2\xa2\x7e\xbc\x80\x78\x01\x6f\x1b\x6b\x76\x10\x66\x4b\xf1\xdc\xc7\x34\x37\xfa\x0a\x4c\x1e\xc1\x12\x8d\x03\xaf\xb3\xf6\x82\xf0\xda\x3b\x1c\xd9\xef\x97\x9c\xd1\x4e\xbb\xed\x8c\x6e\xfa\x1a\xee\x38\x9d\x2f\xdc\xe4\x60\x17\x0b\x21\x1d\x98\x70\x6c\xd3\xc8\xb3\xf7\x8a\xd8\x58\x8b\x4a\xaf\x87\x09\x6e\x88\xd0\x46\xa3\xc0\x0a\x78\x03\x86\xed\xd5\x30\x0d\xaa\x79\x25\xac\xd3\x66\xbd\x17\x47\xb9\x5d\x0a\x55\x07\xc1\x1b\x1e\xf6\x56\xd7\x1c\xbc\xff\x0f\xad\xbe\x26\x4d\xa7\xe0\x06\x4c\x39\x57\x2d\xc8\xce\x49\x81\x42\x32\x10\x6e\x19\x39\x3a\x98\x10\x97\xb6\xac\xdb\x8e\xdf\x5f\xc0\x11\x37\x1c\x45\x36\x12\xfa\x92\x6e\x74\x67\x80\x9d\x54\xcf\xbf\x66\x04\x4b\xcc\x85\x14\x6e\xcd\x16\xe2\x33\x58\x76\x10\x58\x37\xa0\x56\x6c\x69\xd1\xbb\x72\x56\xdc\x70\x30\x8e\x50\x57\xd3\xb9\x50\x4d\x0a\x7f\xdc\x39\x7e\x14\xe3\x28\xe1\xf1\xb1\xe2\x39\x8e\x00\x71\x68\x52\xd6\x3a\x97\x42\x5d\x7d\x5b\x2c\xc1\x92\xf1\x52\x7d\x40\x35\x58\x68\xad\xa4\xb6\x07\x80\xd1\xaf\xb3\x04\x7d\x29\x01\x17\xa9\xca\xda\xbb\xe8\x77\x8e\xe8\xff\x7b\x01\x1d\xc0\xe7\x1a\xba\xf1\x37\x72\xa2\x54\xdf\x28\x3a\xe7\xbc\x2f\xda\xc3\xe1\x83\xed\xe8\x30\x9a\x30\x99\x7b\x39\xaf\x8d\x11\xa5\x68\x2a\x14\xc6\x49\x2e\xa3\x09\x73\x0c\x1f\xad\x8c\x46\xd8\xd1\x3c\x8b\x33\x5a\xe6\x19\x8a\x21\x74\x76\x10\x4b\xc8\x6a\x2d\xbd\x61\x4d\x71\xc8\x67\xc1\xd7\x69\xb9\x3b\x24\x53\x2d\xbe\x37\xe7\xf5\x15\x78\x43\xd5\xe6\x62\xe2\xf9\x9a\xfd\xcf\x30\x77\xa7\xac\xd3\x09\xad\xe6\xe0\xb8\x90\xb9\xa9\xdb\xad\x84\x5a\x5a\x26\xc5\x15\xd9\x83\x8e\x80\x87\xd5\x22\x1f\x51\x71\xb2\xce\x09\xb0\x30\xd8\xa7\x12\xfa\x78\xd9\x8b\x06\xec\x71\x41\xc5\x3f\xba\x01\x28\xb5\xb9\x1f\x0d\xff\x54\xec\xb7\xf4\x04\xd1\xbd\xeb\x70\x06\x49\x92\xbe\x48\xa1\x1d\x2c\xc8\x1f\xf5\x92\xb5\x60\xb1\xec\x20\xbd\x94\x98\x0f\xae\x61\x97\xdc\xf1\x59\xf3\xa9\xb7\x2e\x61\x43\x31\x95\x11\xf7\x37\x67\x5b\x30\x38\x7b\xfe\xf6\xbb\x77\x65\x4c\xfa\x93\xdd\x21\x67\xfb\x0e\xb7\x9a\xd6\x12\x0a\x5f\xdb\xc6\xdd\xff\x76\xda\x19\x70\x6e\x8d\xb5\x3c\xbb\x4a\x62\xb6\x47\x2f\x51\x1a\x4a\xa8\xe5\x5e\x6c\x8f\xc5\x75\xa4\x5e\x3e\xcb\x51\x05\xeb\x36\x7a\x19\x7e\xe3\x31\x1b\x6f\x70\x85\x3b\xa2\xda\x63\x22\xb9\xf4\x2a\x71\x97\xfe\x3c\x8c\x3f\xe0\x22\x62\x3d\x6c\x80\x6a\xb4\xbf\xaf\x92\xb4\x24\xf6\x62\xc5\xba\xd0\xe4\x64\x1f\xd1\x6e\x8f\x10\x62\x70\xc9\x31\xe0\xac\x15\x26\xce\xbd\x91\x84\xb1\x0a\x55\x03\x15\x4a\xef\x97\x6d\xdb\x43\x5f\xf7\x86\x3c\xc1\xb2\xe7\x8a\xc0\x67\xcb\x10\x4b\xa5\x70\x1d\xca\x59\xb2\x99\x37\x99\x0e\xf6\xe8\xb9\x53\xa9\xeb\x2b\x3c\x05\x07\xd2\xef\xbe\x3d\x9d\x6b\x67\xf7\x0e\xab\xaa\x9a\x55\xec\xed\xbb\x0f\xaf\x4f\x43\x74\x3f\x49\x38\x8c\xb5\xa3\xc9\xc2\xb1\xb1\xb3\x15\x34\xce\x61\xac\x38\x3b\xd5\x90\x53\x11\x59\x6a\x78\x7f\x16\x22\x2f\x06\x78\x73\x7c\x63\x44\x72\xad\x5a\xde\xd9\xd0\x7f\xcb\x71\x70\x6c\xa2\x81\x01\x7f\xeb\xb1\xd0\x87\x25\xcb\x29\x4f\xe4\xcb\x69\x10\x96\x56\x73\x2b\xae\xb2\x71\x38\x48\x59\x6c\x45\x94\x9e\xc0\xf4\x85\x07\x28\x49\x5b\x68\xc9\x8d\xfa\x03\xba\x84\x84\xc9\xa0\x4e\xb6\x96\x7d\x03\xd3\xc6\xf3\x01\x77\xfe\x1f\x83\x46\xd8\x7b\x2b\x40\x14\xed\x82\x0a\xb3\x62\xac\x80\x66\x04\xf8\xad\x70\x87\xaa\x8e\xcb\xf5\x2f\x21\x62\x1e\xdc\xad\x5a\x37\x90\xf3\xeb\xbc\x69\x86\x5d\xad\xa9\xa3\x18\x6d\x14\xc2\x2d\x3b\x51\x15\x0e\x2a\x28\xae\xc1\x6c\x8b\xaf\x69\xf8\x49\x8e\xcd\x2a\x36\x43\xfb\x32\xfc\x05\x71\xdd\xac\x73\xcf\x55\xe0\x61\x94\x76\x89\xd2\xdd\x06\xd4\x76\x18\xa2\xe5\xdd\x0e\xb2\x7f\xff\x2d\x6f\xa1\x18\x28\x4b\x2f\x16\xad\x87\x05\x6b\x79\xfb\x3c\x2a\xad\xfa\xaa\x62\xaf\x82\x32\xc8\x11\xcd\xbd\xff\x5e\xf0\x36\x0e\x6e\xfc\x1f\x53\xff\xec\x5e\xf5\x0a\x3a\x03\x38\x94\xfb\x34\xf6\xb8\x23\x6d\xf7\xa2\x24\xc3\xa7\xf7\x06\xfd\x02\x83\x3f\xed\xb0\x97\xd1\xad\x1c\x4b\xe0\x16\xc6\x5a\x75\xc7\x76\x16\xb6\x32\xdc\xdf\xdd\x3b\x1b\x43\xd8\xc5\x9e\x9d\x7b\x6a\x0d\xd6\x1d\x22\x3c\x22\xd8\xcb\x31\xc7\x7e\x1d\xcc\x2d\xee\x51\xf2\xe7\x0d\xef\xf6\xfc\x05\xdf\xfb\xd1\x6f\x8d\xbc\x4f\xff\xbf\x01\xbe\xf4\xb7\xc1\x6c\x39\x3e\x07\x39\xbd\x82\x5d\x86\x34\xfc\x88\xb5\xe4\xa3\xb4\x12\x0d\x28\x27\x16\x6b\x6a\xb0\xc7\xb1\x3b\x5a\x39\xc8\x3e\x06\x12\x6f\x0c\x25\x9a\xb3\x11\x86\x6e\x68\xb3\x3c\x2e\x48\x3a\x82\x29\x06\xd5\x77\xc6\xb5\x08\xc1\x3f\x14\xe3\x5b\x0f\x7d\x53\xad\xe0\xdc\xce\x67\xb9\x8c\x03\x14\xef\xc4\xe3\x55\x5e\xf8\x3f\x9e\x5d\x9c\xb3\x57\x97\x3f\xde\xdd\xac\xef\x2d\x8b\xdc\x20\x5d\x5a\x6c\xcf\x52\xb0\x82\x27\x70\x5e\x87\x6e\xb6\x87\x94\x0d\xc2\xde\x75\x7a\xc4\x16\xcf\x77\x37\x79\xd8\x35\x28\x1b\x32\x99\x9c\x0a\x26\x70\x13\xd0\x14\xf6\xcd\x1c\xa4\xa6\x49\x25\x63\xbe\xde\x1c\x30\xff\x1b\xde\x42\x97\xc6\x70\x65\x17\x18\x87\x57\x4a\xbb\x98\xbc\x57\xcd\xc6\xd7\x1e\xca\x73\xd5\x21\xfc\x1e\xc6\x10\x93\xef\x98\x50\x78\x02\x81\x67\x72\x94\xa7\xc5\x8e\x77\x0c\x3d\x7d\xc8\xba\xa6\x24\x17\xd5\x6f\x46\x52\x9a\x41\x7d\x57\x58\xeb\x41\xdf\x88\x28\x96\x09\xa7\xb0\xbd\x42\xaa\x1f\x6b\xe6\x8f\xd8\x75\x72\xf1\xea\xdb\x7b\xec\xf1\x0b\xdd\xbc\x12\xd6\xf4\xf8\xd2\xb7\x7d\xb3\x04\x97\x78\xa1\x70\x6d\x87\xa3\xe3\xd1\x62\xfc\xe3\xf3\x49\x2b\xd4\x94\x5f\x73\x21\xf9\x7c\xe7\x69\x5a\x39\x79\x8a\xa2\x73\x6c\xf7\x78\x7d\xb1\x55\xc2\xba\x20\x7b\x87\xab\xc4\x81\x88\x5c\x31\xb8\x16\xe8\x9e\x54\xe7\x79\xde\x0a\x95\x29\x73\xc5\xf8\xdc\x6a\xd9\xbb\xbc\xa8\xa1\x39\x33\x21\xad\x5f\xbd\x23\x8f\x25\x02\xd5\x0b\x36\x1b\x6c\x29\x54\xd3\xb7\xfc\xf3\xb4\x57\xc5\x6f\xc3\x42\x69\xe6\xd4\x66\x72\xb9\x78\xf8\x37\xa6\x4a\x0c\x96\xe5\x05\x88\x14\x91\x2c\xbf\x8e\x20\x45\x21\xf7\xf3\xd4\x25\xb0\x4d\x14\x6f\x6b\x4a\xab\x63\xe3\xd7\x61\xa2\x23\x51\x70\x93\x5a\x44\xc3\x01\x88\x18\x4e\xdf\xa2\x63\xba\xb5\xe1\xbe\x3e\x9e\xde\xd8\xa8\x39\xc4\x3a\xc4\xb9\x37\xed\xe8\x67\xa4\x76\x11\x05\xe3\xd6\x8a\xa5\xda\x98\x3c\x89\xdb\xc8\x80\xf4\xc6\x9f\x2b\x76\xae\x58\xcd\x43\x8a\x33\x3d\x27\x2c\x43\x67\x53\x2d\x27\xd9\x89\x21\xa2\x62\x45\x4a\xf4\x2a\x49\x0d\x61\x3d\x2f\x1d\x4a\x84\x50\x51\xa4\x2e\x54\x7b\x61\x06\x34\x38\xb2\xa4\xc5\x17\xbd\x64\x61\x40\x38\x7c\x76\x96\x3e\xe5\x10\xfc\x5f\x30\xb0\x6f\x99\xd2\x69\xa0\x5b\x88\xc5\x31\x1e\xc6\x9e\x8d\x7c\xc7\x61\x80\x3d\x65\xcb\xb5\x1a\x50\x77\xf8\x5d\x8c\x30\x36\xdb\xe2\x0c\xb8\x09\xb3\x21\xf2\x4e\x4b\x7b\x16\x6d\xe7\x80\xde\x49\x2e\xbe\x15\xad\x67\x3f\x03\x4b\x61\x9d\x59\x3f\x85\x66\x67\x3a\x9d\x69\x59\x9e\x7b\x4f\x1f\xf2\xd6\x79\x1e\x40\xdb\xb9\xf5\x61\xa6\x6d\x8a\x41\x8f\xf0\x4a\xb9\xf6\x52\xea\xf9\xa0\x15\x6d\x7c\xcd\x73\xd5\x84\xf6\x05\xb1\x18\x82\x2d\x3e\xe7\x14\x6c\x1d\x02\x89\xe5\xa6\xe4\xf0\x70\x5b\x88\x45\xfa\x6b\xf6\x80\x93\x9c\xf0\x57\xf2\xe1\x21\xf0\xad\xa6\xec\x06\x1c\xd4\xc5\x98\xd0\x72\xa6\x88\x58\x8c\x5c\x81\xa1\x00\x89\x9b\x38\x10\xd9\x5a\x8f\xbf\x2b\x39\x15\x43\x54\xc5\x94\xac\x0e\x87\x22\x3f\x96\x6d\x80\xb3\x68\x07\xb6\xc1\x2a\x0f\x4f\x1c\x84\x31\xb6\x54\x3f\x3b\x27\x8e\xe2\x71\xc0\xef\x0a\xd8\xec\x42\x37\x97\x1d\xd4\x1f\xa0\xf5\x18\xc3\xcc\x2b\x94\xbe\x4e\x43\x42\x73\xa9\x46\x09\x6e\x56\x79\xd1\x50\x75\xba\x49\xef\x91\xd5\x21\x40\x36\x93\x5c\x29\x52\xbe\x53\xf4\xf7\x52\x81\x53\x78\x33\x36\x0a\x84\x4f\x4b\x89\x9a\xb5\x60\x96\xd8\x13\x5a\xaf\xc8\x45\xdb\xca\xe8\x6c\xcd\x00\xce\x77\x9e\xbe\x30\x43\xa9\xc4\x10\x42\x0c\x93\x64\x27\xde\x95\xc7\xb5\x92\x6c\x19\x7e\xd2\x60\xe3\xdb\x07\xb7\x3b\x1f\x9d\xd1\x2d\xb8\x15\xf4\x0f\x1e\x38\xf1\x90\xc0\xec\x45\x5a\x25\x8e\xa3\x28\x5b\xcc\xf3\x5f\xa7\x31\x73\x57\x24\xbd\xe3\x27\x0c\x49\xa5\x12\xd7\xfa\xb7\xfc\x71\xbf\xd1\x4a\x38\x6d\x66\xc9\x60\xcc\x5d\x1e\x74\x4b\xe2\x40\x82\xa0\x47\x6b\xc3\xbb\xcd\xe8\x2a\xc5\x8c\x86\x21\xd6\x12\xe1\x78\xa7\x29\x59\x43\x45\x8c\xa1\xbc\x2a\x8c\x60\xa0\xd7\xde\x88\xda\xe8\x0b\xa2\x17\x82\x7c\x43\x8f\x56\xec\x9f\x67\xef\xdf\x9e\xbf\xfd\x5b\xf8\xcc\x12\xba\x8d\xc5\x14\xc9\xb1\x6d\xe4\x89\xcd\x98\xbb\x0d\x89\x9a\xa5\x70\xab\x7e\x5e\xd5\xba\x3d\xae\xb5\x01\x6d\x8f\xf3\xe9\x4d\x23\x9a\x1f\x2f\xca\x13\xc5\xfe\x32\xfc\xfd\xcf\x51\x7d\xa5\x35\xb0\x15\x4a\xc4\x38\xf8\x3c\xd5\xce\x41\x53\xb1\xff\xa5\x7b\x24\x1a\x56\xb0\x76\xba\x99\xb6\x01\xc5\xa8\x7b\x43\x4b\x68\x52\x7f\x5b\x27\x9c\x26\x9c\x0a\xb7\xd2\x21\x03\x51\x3c\xf4\xae\xa4\x2a\x02\xdd\x82\x20\xc6\xbf\x59\xf9\x04\x22\xb8\x05\xc1\x76\x09\xa9\x92\xf1\x79\x0b\x27\xf8\xf5\xa2\xf4\xde\x18\x16\x75\xcb\x92\x0f\x77\x15\xc7\x57\x26\x30\xdb\x9d\x9a\x03\x7e\xc8\xc9\x7e\x42\xaa\xd0\x1d\xbd\x94\x53\x6a\x39\x7f\x4c\xff\xb2\x97\x92\x5d\xe2\x2a\x81\x6d\x2c\x65\xb0\xfd\xf2\x8c\x96\x4f\x9f\x43\xd1\xcd\x24\xc7\x6f\x36\xa6\x82\x63\x96\xc2\x19\x01\xd7\x9b\x62\x98\x4c\x2f\x0a\xea\xa8\x34\x92\x37\xd9\x62\x24\x17\xca\xe5\x8a\xb1\xd8\x79\xea\x6e\xcb\x55\x8f\xaa\x5c\x1b\x1c\x2c\x8e\x66\xef\x5a\xf7\xfb\x45\x7d\x21\x89\xa6\xb2\x69\x12\x4b\x7e\xf3\xa2\x08\x36\x63\x16\x51\x88\x1b\x9c\x15\x4a\x2a\x7e\x5c\x6d\x46\x36\x34\x4d\x4f\x26\xfc\x0a\xab\xdd\xa3\x8d\x40\x71\x93\xdb\x13\x7b\xb6\xa7\xf5\xac\xbd\x64\xc8\x1f\x4b\xfa\x12\x74\x51\x48\x7b\xad\x6f\x6d\xdf\xc6\x68\xd4\x26\x5d\x45\xa8\x61\xed\x0c\xa6\xc4\xb0\xef\x79\xad\x7b\xba\x50\x69\xe3\xc3\x69\xeb\x23\xd8\xf8\x0d\x62\x90\x0e\xf7\x37\x21\xf4\xb9\x4a\x57\x3d\x7d\xfc\x26\x65\x4a\xfe\xe0\xb2\x85\xce\x70\xe7\x8f\x34\x6d\xb0\x26\x8e\x2a\x0b\x9d\x09\x81\x69\x2e\x74\x83\xc4\x95\xb0\x70\x0c\x0d\x6e\xc2\x64\x33\x61\x12\xb3\x0e\xfc\x0a\x54\x36\x44\x47\x59\x2e\x9f\xcf\xc0\x57\x1a\xe4\xa1\xfc\x79\x4c\x3d\x6a\x60\x62\x32\x6a\xc7\x1e\x64\x95\xa6\xd7\x6f\x5a\xdd\x61\x12\x15\x92\xb3\x49\x22\x67\x42\xfb\xa1\xa3\x48\xa5\x49\x69\xc9\xa4\x88\xc3\xc4\x86\x12\xb3\x59\x9c\xef\xc8\x8c\xf6\xc7\xa8\x86\x79\x2e\x15\xbf\x96\x9a\x33\x32\xf7\x64\x46\x7f\x65\x51\xf9\xc6\x9c\x96\xe4\xae\x24\x7a\x6f\x09\xbc\x1c\xa4\x20\x8d\xea\x37\xbb\xee\x80\xcd\x86\x43\x40\x1a\x5d\x5f\x81\x21\xf0\x9f\xac\x56\x85\x1c\x0f\xe5\x21\x8f\x17\x68\x88\x05\x2e\x9b\x83\x69\x5c\xf1\xb7\xd8\xc0\x78\x9b\x7c\x7a\x02\x17\xb7\x28\xf4\xbe\xd3\xf5\xdb\xde\x35\x9d\xd8\x81\x01\x1c\xe7\x40\x6d\x16\xa1\x68\xad\xb7\x90\x6b\xee\xd1\x47\xd8\x41\xd7\xde\x79\x1a\xef\x3d\x90\xfb\xbe\x8d\xe9\x36\x0c\xd9\x61\xa8\x23\xf8\x2a\x63\x0d\x1d\x7f\xfc\x63\xda\x75\x82\xc7\x2e\x43\xd9\x90\x10\x83\xbc\x81\xb4\x53\xfa\x10\xf1\xae\x25\xeb\xfe\x48\x3e\xfc\x78\xc9\x8a\xb7\xf0\x8d\x09\x95\x79\xcd\xa0\x59\xc2\x6c\xc2\x66\x1d\xb7\x36\x4c\xc8\xa3\xc9\x13\x06\x40\xd5\x66\xdd\xb9\xd9\x58\x1b\x4c\xf6\xf8\xb7\x1b\x61\x8a\x01\x0a\xb7\xb4\xc3\xf8\x6d\x14\xd3\x1f\x1e\xb0\x8d\xcd\x69\x2f\x38\x5f\x61\xd0\xb7\x74\x0b\x66\x01\xfd\xdd\xf1\xdb\x2d\xef\x3a\x86\xd7\x15\xac\x1f\x19\xb7\x30\x73\xea\xcb\xc8\x87\x56\x8e\x36\xc2\xad\x1f\x42\xcd\xa8\xf6\xbe\xf0\xb4\x8b\xe2\xf5\x2f\xc3\xbe\xac\x7e\x1f\x0c\xce\x82\xfc\x81\xdc\x68\x76\x63\xf5\x72\xac\x2b\xe0\x6c\x73\x31\x16\xff\xb6\x10\x1e\xeb\x02\x72\xc5\x4a\xfb\x20\xdd\x80\xc1\xdd\xc1\xc0\xb0\x90\x10\x42\x7c\xb1\xb0\xa3\x18\xe0\x5a\x7e\xf5\x07\xa7\xd7\xe3\x35\x36\xd4\x10\x2c\x1c\x52\x8d\xbe\xa3\xc8\x70\xea\x51\x4a\x71\x5a\xa8\xfb\xd4\x8f\x59\x6b\xa5\x20\x24\x1a\x16\x71\x59\x90\x4d\xfa\xb4\x62\xf4\x0c\x26\x59\x54\x18\xd6\xf2\x75\x0a\x38\xc7\x86\xb7\x62\x83\x01\xf6\xcb\x33\xcc\x19\xc4\x0f\x90\x79\xd1\x83\x86\xdd\x35\x97\xa2\x89\xd3\x19\x85\x5a\x22\x52\x2b\x6d\x52\xd9\x14\xd9\x7f\x07\xe1\xa7\x2a\xd9\x2f\x95\xbd\xae\x0f\x63\xf1\x0c\x0d\x5f\x08\x21\x39\xa1\x16\x86\x53\x1c\xcd\x4b\xba\x30\x4b\x1b\x9a\xe1\xf4\x97\xcd\x3a\x3a\x1a\x7b\xf6\x38\x82\x47\x28\xa2\xf3\xd4\x8b\xbe\x52\x9a\xee\xfe\x49\x8c\x81\xf0\x0e\x1f\xc5\x68\x80\x4b\x32\x20\xe3\x02\x5e\x7b\x2c\x16\xa2\x8e\x05\x75\x58\xde\xed\x65\xed\x2b\x52\x35\x65\x37\xf3\x7b\x88\xdd\x71\xe1\xa5\x9d\x04\xc7\x9d\xbb\xce\x06\x3f\x0d\x64\xcb\x55\xe8\x8f\x16\xa6\x8b\x63\x01\xbe\x8d\x15\xec\x65\x70\xb6\xb7\xfe\x0e\x90\x19\xa0\xb0\x93\x4e\xb3\x0b\xcf\xaa\x56\x68\x05\x4d\x6a\xd2\xa7\xb8\xac\x4a\xbf\x08\xc0\x70\xa2\x78\xc6\xec\x74\x2c\xaa\x75\xf5\x8d\x9d\x6e\x6c\xd7\x1e\xfb\x8b\xf2\x1f\xdb\x44\x60\xec\x2c\xd4\x97\x85\xae\x8a\xdc\x4e\x8b\x39\x51\xb8\xd6\xf2\x9a\xc2\x79\xe4\xcc\xd8\x7e\xfe\x29\xa0\x5d\xaf\xb8\x5a\xc2\x13\x08\x24\x6d\x12\x63\xc7\x98\x4e\x6c\x70\x19\x3b\x9e\xdb\x8e\x06\x05\xaa\x97\x26\x1f\x3f\xf2\x4e\x2c\x8d\xee\xbb\xe3\x9f\x43\x4f\xc4\xe9\xcf\x57\x42\x35\xa7\x1f\x93\xbc\x38\xfe\x19\xfd\xcf\x0d\x34\x1f\xce\x9a\x77\x5a\xa2\xc3\x21\x15\x64\x5a\x6d\x4d\x2e\x8a\x3e\x5f\x7c\x38\x45\xaf\x6c\x9c\x84\xc2\x5d\xf1\xa9\x11\x1a\x15\x48\x16\x9a\xa6\xb8\x5b\x1e\xd1\x4d\x9f\x0f\x2b\xcb\x79\x0e\x23\x65\x30\x7c\x92\xc5\x65\x08\x49\x8f\x87\x4a\x42\x2e\x49\x0c\x13\x06\xb1\x49\x99\x6f\x7e\x3f\x2a\xe5\xad\x11\x68\x18\xcc\xbc\x31\x77\xe2\x09\xd8\xcd\xbf\x4d\x5e\x0b\xab\x44\x31\xa1\x15\x0f\x54\x01\x34\xb1\x7c\x25\x04\x42\x07\x5e\x95\x6e\xb6\x3e\xa6\x7d\x67\xbd\x7a\xe2\xaa\xc1\x77\xa7\xb9\x65\x6f\x75\x03\x17\x1e\x50\x04\xfd\xa7\xd8\x02\xff\x58\xb1\x4b\x5a\x60\xdc\xd7\x1a\x92\x29\x66\x46\xcb\x92\xa1\xf8\xe5\x1d\x8a\x66\x46\x58\x3a\x75\xcb\x20\x3d\xb3\xbe\x4e\x81\x08\xd5\xd0\xe7\x2d\xbc\x64\x4f\x35\x12\x5e\x11\x9d\x5d\x9c\xb3\x96\x2b\xbe\x84\x3c\x99\x65\x0b\xcd\x5b\x82\xf2\xff\x9f\xf0\xe7\x97\x56\x55\xdb\x7a\x05\x3b\xc7\xe3\xe8\xe1\x58\x70\x1a\x1a\x88\x78\xf8\x9e\x4b\x3c\xa6\xcd\x0f\xa1\x97\xa1\xfe\xdd\x3e\x09\x4e\x63\x18\xdd\x2a\xa4\x11\x3d\x70\x7f\xc2\xc2\xb2\xae\x9f\x4b\xfa\x6c\x56\x31\x24\x76\xb8\xc4\x8e\x23\x16\x71\x6e\x57\x86\x6f\xf3\x1c\xf7\xf1\x6f\xce\x0f\xe6\x84\x25\x58\xbb\x7e\xe4\x7c\x64\x47\xfe\x7e\x4d\x63\x91\xe5\xc0\x0a\x18\xdd\x64\x28\x21\xad\x30\xc4\x95\x03\x27\x4e\x4b\x48\x05\x2b\x8f\x64\x5d\xa5\xbe\x0a\xcc\x4f\x7c\x48\x2b\x5a\x86\x97\x75\x3b\xc3\x5d\x3e\x92\xa7\xdd\x1e\xcc\x7b\x6f\x44\xa2\x0b\x11\x92\x84\x87\x31\xd6\x87\x62\x32\x7d\x34\x0b\x8b\x2c\xbd\x78\xb4\xa4\x23\x5b\xee\xea\x15\x1a\x44\x1c\x4b\xea\xd9\x25\x10\xc7\x46\x43\x6c\x2b\x22\x68\x8f\x6b\xad\x6a\xe8\x9c\x3d\x0e\x50\x85\x5a\x4e\x63\xfd\xd4\x31\xc2\x99\x72\xd5\x4c\x33\xfd\x8e\x9f\xb1\x72\x10\x4f\xe8\x50\x0b\x23\x09\xd2\x53\x45\x79\x45\xfe\x90\x17\x76\xb0\x58\xd1\x0a\xc9\xbd\x1f\xa4\xb0\x6a\x35\x0a\x39\x7f\xf1\x10\xed\x09\x13\x15\x54\x13\x36\xfb\x01\xd6\x1f\x5f\xfc\xc4\x65\x0f\x3f\x9f\xbe\x5e\x2c\xa0\x76\x1f\x4f\x2f\xe9\xa3\x9f\x3f\xcf\x26\x81\x45\xe8\xf3\x75\x1e\xb4\xfd\x77\xef\x65\xc5\xdc\xf0\xfa\x0a\x42\x09\x3d\x4f\x73\xae\xb8\xac\xf0\x4b\xb3\xf0\x99\xb7\x9d\x3f\x69\x36\x65\x33\x54\x2d\x46\x4b\xa8\x86\x94\x09\xad\x07\x6f\xf5\x65\x20\xf5\x2c\x3e\xbd\xf1\x60\x18\xb3\x5a\x16\x7b\x9d\xbe\xd5\xaf\x29\x85\x7f\xfa\xa7\x93\x93\x13\x72\x21\xa6\xf4\x9d\x08\xcf\xfc\x2f\xac\x6d\x4e\x2f\x70\x8c\x59\x09\x9f\x5a\x63\x9e\x68\x36\x94\x0e\xee\x01\xe9\xc8\xf4\xb1\x4d\x2e\xc2\x37\xcc\x02\xeb\xc0\x64\x60\xa9\xde\xcd\x03\xf9\x76\x1b\x5e\x3f\x66\x4f\x28\xb0\x0f\xb4\xc2\x2e\x9a\x3c\x88\xa5\x88\x54\xe9\xf2\xc5\x34\x24\xa7\x82\x9c\x08\xb4\x28\x89\x08\x5f\x70\x89\xb5\x08\xb9\x2e\x6e\x4e\xaa\x7f\x7c\x42\x4a\x2a\x11\x89\x6b\xa6\xb2\x88\xac\xff\x03\x59\x93\x85\xcb\x0e\xc2\x47\x03\x2d\x3b\x3a\xfa\x9e\xc3\x12\xcc\xd1\x51\xe8\x57\xfd\x90\xe8\xc9\xfe\xd3\x28\xd8\x30\x0a\x26\xa1\xc1\x0a\xf3\x53\xf1\xf9\x18\x7b\x2b\xdb\x98\xc7\xce\x63\xcc\xf3\x7b\x40\x9e\x4f\x15\xed\x38\x51\x13\xa3\x6f\x11\x55\xa1\x4d\x2b\x36\xdc\xf1\x41\x73\x69\x0c\xd2\x8c\x34\x60\x1c\x8e\x8c\xc4\xd8\x11\xa3\x30\xdb\x34\xf1\x5b\x40\xae\xe4\xee\x64\xef\x8c\xf3\xee\x48\xe7\x55\x89\x8f\x45\x71\x6d\x76\xee\xff\x21\x4f\xce\xbf\x12\x72\x2a\xd1\x34\xd8\xab\xb5\xb2\x6e\x6f\x0c\x76\xc7\x0d\x6f\x1f\x08\x3c\x4d\x7a\xc0\x97\x8b\x65\x9e\xef\x1d\x3e\xfb\x7f\x01\x00\x00\xff\xff\xc8\x41\x8b\x65\xeb\x96\x00\x00"), }, } fs["/"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ diff --git a/script/Makefile b/script/Makefile index b19990f02e..fcfc9b5ed0 100644 --- a/script/Makefile +++ b/script/Makefile @@ -168,8 +168,8 @@ test-local: build #go test -timeout 60m -v ./e2e/local -tags=integration test-resources: build - STAGING_RUNTIME_REPO="$(STAGING_RUNTIME_REPO)" go test -timeout 60m -v ./e2e/resources -tags=integration - #go test -timeout 60m -v ./e2e/resources -tags=integration + STAGING_RUNTIME_REPO="$(STAGING_RUNTIME_REPO)" go test -timeout 60m -v ./e2e/config -tags=integration + #go test -timeout 60m -v ./e2e/config -tags=integration test-kamel-cli: build STAGING_RUNTIME_REPO="$(STAGING_RUNTIME_REPO)" go test -timeout 60m -v ./e2e/common/cli -tags=integration From f0140d7a46e2db9a6300a5f1b745950f310b30a6 Mon Sep 17 00:00:00 2001 From: Pasquale Congiusti Date: Fri, 14 May 2021 14:33:46 +0200 Subject: [PATCH 3/5] feat(e2e): property test Ref #2003 --- e2e/config/files/my.properties | 2 + e2e/config/files/property-file-route.groovy | 27 ++++++++++ e2e/config/files/property-route.groovy | 27 ++++++++++ e2e/config/properties_test.go | 55 +++++++++++++++++++++ 4 files changed, 111 insertions(+) create mode 100644 e2e/config/files/my.properties create mode 100644 e2e/config/files/property-file-route.groovy create mode 100644 e2e/config/files/property-route.groovy create mode 100644 e2e/config/properties_test.go diff --git a/e2e/config/files/my.properties b/e2e/config/files/my.properties new file mode 100644 index 0000000000..3ab90369f1 --- /dev/null +++ b/e2e/config/files/my.properties @@ -0,0 +1,2 @@ +my.key.1=hello +my.key.2=world \ No newline at end of file diff --git a/e2e/config/files/property-file-route.groovy b/e2e/config/files/property-file-route.groovy new file mode 100644 index 0000000000..13a09fce84 --- /dev/null +++ b/e2e/config/files/property-file-route.groovy @@ -0,0 +1,27 @@ +// camel-k: language=groovy +/* + * 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. + */ + +// +// To run this integrations use: +// +// kamel run --property-file my.properties property-file-route.groovy --dev +// + +from('timer:property-file') + .routeId('property-file') + .log('property file content is: {{my.key.1}} {{my.key.2}}') diff --git a/e2e/config/files/property-route.groovy b/e2e/config/files/property-route.groovy new file mode 100644 index 0000000000..705eca6dbf --- /dev/null +++ b/e2e/config/files/property-route.groovy @@ -0,0 +1,27 @@ +// camel-k: language=groovy +/* + * 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. + */ + +// +// To run this integrations use: +// +// kamel run -p my.message=test-property property-route.groovy --dev +// + +from('timer:property') + .routeId('property') + .log('property content is: {{my.message}}') diff --git a/e2e/config/properties_test.go b/e2e/config/properties_test.go new file mode 100644 index 0000000000..479bb6a9a9 --- /dev/null +++ b/e2e/config/properties_test.go @@ -0,0 +1,55 @@ +// +build integration + +// 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 resources + +import ( + "testing" + + . "github.com/onsi/gomega" + + v1 "k8s.io/api/core/v1" + + . "github.com/apache/camel-k/e2e/support" + camelv1 "github.com/apache/camel-k/pkg/apis/camel/v1" +) + +func TestRunPropertyExamples(t *testing.T) { + WithNewTestNamespace(t, func(ns string) { + Expect(Kamel("install", "-n", ns).Execute()).To(Succeed()) + + t.Run("Simple property", func(t *testing.T) { + Expect(Kamel("run", "-n", ns, "./files/property-route.groovy", "-p", "my.message=test-property").Execute()).To(Succeed()) + Eventually(IntegrationPodPhase(ns, "property-route"), TestTimeoutMedium).Should(Equal(v1.PodRunning)) + Eventually(IntegrationCondition(ns, "property-route", camelv1.IntegrationConditionReady), TestTimeoutShort).Should(Equal(v1.ConditionTrue)) + Eventually(IntegrationLogs(ns, "property-route"), TestTimeoutShort).Should(ContainSubstring("test-property")) + Expect(Kamel("delete", "--all", "-n", ns).Execute()).To(Succeed()) + }) + + t.Run("Property file", func(t *testing.T) { + Expect(Kamel("run", "-n", ns, "./files/property-file-route.groovy", "--property-file", "./files/my.properties").Execute()).To(Succeed()) + Eventually(IntegrationPodPhase(ns, "property-file-route"), TestTimeoutMedium).Should(Equal(v1.PodRunning)) + Eventually(IntegrationCondition(ns, "property-file-route", camelv1.IntegrationConditionReady), TestTimeoutShort).Should(Equal(v1.ConditionTrue)) + Eventually(IntegrationLogs(ns, "property-file-route"), TestTimeoutShort).Should(ContainSubstring("hello world")) + Expect(Kamel("delete", "--all", "-n", ns).Execute()).To(Succeed()) + }) + }) +} From 0f06b4c324928cae9d5f345c5f865fa45b0b0f2f Mon Sep 17 00:00:00 2001 From: Pasquale Congiusti Date: Fri, 14 May 2021 15:40:54 +0200 Subject: [PATCH 4/5] chore(e2e): support configmap and secret creation --- e2e/support/test_support.go | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/e2e/support/test_support.go b/e2e/support/test_support.go index cdc099833e..e952a6ab0d 100644 --- a/e2e/support/test_support.go +++ b/e2e/support/test_support.go @@ -653,6 +653,36 @@ func Configmap(ns string, name string) func() *corev1.ConfigMap { } } +func NewPlainTextConfigmap(ns string, name string, data map[string]string) error { + cm := corev1.ConfigMap{ + TypeMeta: metav1.TypeMeta{ + Kind: "ConfigMap", + APIVersion: corev1.SchemeGroupVersion.String(), + }, + ObjectMeta: metav1.ObjectMeta{ + Namespace: ns, + Name: name, + }, + Data: data, + } + return TestClient().Create(TestContext, &cm) +} + +func NewPlainTextSecret(ns string, name string, data map[string]string) error { + sec := corev1.Secret{ + TypeMeta: metav1.TypeMeta{ + Kind: "Secret", + APIVersion: corev1.SchemeGroupVersion.String(), + }, + ObjectMeta: metav1.ObjectMeta{ + Namespace: ns, + Name: name, + }, + StringData: data, + } + return TestClient().Create(TestContext, &sec) +} + func KnativeService(ns string, name string) func() *servingv1.Service { return func() *servingv1.Service { answer := servingv1.Service{ From 841dc34063f69f3f4bca1dcc607ea151c8fc63d8 Mon Sep 17 00:00:00 2001 From: Pasquale Congiusti Date: Fri, 14 May 2021 15:54:42 +0200 Subject: [PATCH 5/5] chore(e2e): complete config integration test * Added configmap and secret integration tests * Refactored to be included and run under /common dir Ref #2003 --- .../config/config_test.go} | 56 +++++++++++++++++- .../config/files/configmap-route.groovy | 30 ++++++++++ e2e/{ => common}/config/files/my.properties | 0 .../config/files/property-file-route.groovy | 0 .../config/files/property-route.groovy | 0 .../resources-base64-encoded-route.groovy | 0 .../files/resources-binary-route.groovy | 0 .../config/files/resources-data.txt | 0 .../config/files/resources-data.zip | Bin .../config/files/resources-route.groovy | 0 e2e/common/config/files/secret-route.groovy | 30 ++++++++++ e2e/config/properties_test.go | 55 ----------------- script/Makefile | 5 +- 13 files changed, 114 insertions(+), 62 deletions(-) rename e2e/{config/resources_test.go => common/config/config_test.go} (55%) create mode 100644 e2e/common/config/files/configmap-route.groovy rename e2e/{ => common}/config/files/my.properties (100%) rename e2e/{ => common}/config/files/property-file-route.groovy (100%) rename e2e/{ => common}/config/files/property-route.groovy (100%) rename e2e/{ => common}/config/files/resources-base64-encoded-route.groovy (100%) rename e2e/{ => common}/config/files/resources-binary-route.groovy (100%) rename e2e/{ => common}/config/files/resources-data.txt (100%) rename e2e/{ => common}/config/files/resources-data.zip (100%) rename e2e/{ => common}/config/files/resources-route.groovy (100%) create mode 100644 e2e/common/config/files/secret-route.groovy delete mode 100644 e2e/config/properties_test.go diff --git a/e2e/config/resources_test.go b/e2e/common/config/config_test.go similarity index 55% rename from e2e/config/resources_test.go rename to e2e/common/config/config_test.go index 404b7a2abe..03a0add95f 100644 --- a/e2e/config/resources_test.go +++ b/e2e/common/config/config_test.go @@ -22,6 +22,7 @@ limitations under the License. package resources import ( + "io/ioutil" "testing" . "github.com/onsi/gomega" @@ -29,17 +30,65 @@ import ( v1 "k8s.io/api/core/v1" - "io/ioutil" - . "github.com/apache/camel-k/e2e/support" camelv1 "github.com/apache/camel-k/pkg/apis/camel/v1" "github.com/apache/camel-k/pkg/util/gzip" ) -func TestRunResourceExamples(t *testing.T) { +func TestRunConfigExamples(t *testing.T) { WithNewTestNamespace(t, func(ns string) { Expect(Kamel("install", "-n", ns).Execute()).To(Succeed()) + // Properties + + t.Run("Simple property", func(t *testing.T) { + Expect(Kamel("run", "-n", ns, "./files/property-route.groovy", "-p", "my.message=test-property").Execute()).To(Succeed()) + Eventually(IntegrationPodPhase(ns, "property-route"), TestTimeoutMedium).Should(Equal(v1.PodRunning)) + Eventually(IntegrationCondition(ns, "property-route", camelv1.IntegrationConditionReady), TestTimeoutShort).Should(Equal(v1.ConditionTrue)) + Eventually(IntegrationLogs(ns, "property-route"), TestTimeoutShort).Should(ContainSubstring("test-property")) + Expect(Kamel("delete", "--all", "-n", ns).Execute()).To(Succeed()) + }) + + t.Run("Property file", func(t *testing.T) { + Expect(Kamel("run", "-n", ns, "./files/property-file-route.groovy", "--property-file", "./files/my.properties").Execute()).To(Succeed()) + Eventually(IntegrationPodPhase(ns, "property-file-route"), TestTimeoutMedium).Should(Equal(v1.PodRunning)) + Eventually(IntegrationCondition(ns, "property-file-route", camelv1.IntegrationConditionReady), TestTimeoutShort).Should(Equal(v1.ConditionTrue)) + Eventually(IntegrationLogs(ns, "property-file-route"), TestTimeoutShort).Should(ContainSubstring("hello world")) + Expect(Kamel("delete", "--all", "-n", ns).Execute()).To(Succeed()) + }) + + // Configmap + + t.Run("Textplain configmap", func(t *testing.T) { + // Store a configmap on the cluster + var cmData = make(map[string]string) + cmData["my-configmap-key"] = "my-configmap-content" + NewPlainTextConfigmap(ns, "my-cm", cmData) + + Expect(Kamel("run", "-n", ns, "./files/configmap-route.groovy", "--configmap", "my-cm").Execute()).To(Succeed()) + Eventually(IntegrationPodPhase(ns, "configmap-route"), TestTimeoutMedium).Should(Equal(v1.PodRunning)) + Eventually(IntegrationCondition(ns, "configmap-route", camelv1.IntegrationConditionReady), TestTimeoutShort).Should(Equal(v1.ConditionTrue)) + Eventually(IntegrationLogs(ns, "configmap-route"), TestTimeoutShort).Should(ContainSubstring(cmData["my-configmap-key"])) + Expect(Kamel("delete", "--all", "-n", ns).Execute()).To(Succeed()) + }) + + // Secret + + t.Run("Textplain secret", func(t *testing.T) { + // Store a secret on the cluster + var secData = make(map[string]string) + secData["my-secret-key"] = "very top secret" + NewPlainTextSecret(ns, "my-sec", secData) + + Expect(Kamel("run", "-n", ns, "./files/secret-route.groovy", "--secret", "my-sec").Execute()).To(Succeed()) + Eventually(IntegrationPodPhase(ns, "secret-route"), TestTimeoutMedium).Should(Equal(v1.PodRunning)) + Eventually(IntegrationCondition(ns, "secret-route", camelv1.IntegrationConditionReady), TestTimeoutShort).Should(Equal(v1.ConditionTrue)) + Eventually(IntegrationLogs(ns, "secret-route"), TestTimeoutShort).Should(ContainSubstring(secData["my-secret-key"])) + Expect(Kamel("delete", "--all", "-n", ns).Execute()).To(Succeed()) + }) + + // Resources + t.Run("Plain text resource file", func(t *testing.T) { Expect(Kamel("run", "-n", ns, "./files/resources-route.groovy", "--resource", "./files/resources-data.txt").Execute()).To(Succeed()) Eventually(IntegrationPodPhase(ns, "resources-route"), TestTimeoutMedium).Should(Equal(v1.PodRunning)) @@ -69,5 +118,6 @@ func TestRunResourceExamples(t *testing.T) { Eventually(IntegrationLogs(ns, "resources-base64-encoded-route"), TestTimeoutShort).Should(ContainSubstring(string(expectedBytes))) Expect(Kamel("delete", "--all", "-n", ns).Execute()).To(Succeed()) }) + }) } diff --git a/e2e/common/config/files/configmap-route.groovy b/e2e/common/config/files/configmap-route.groovy new file mode 100644 index 0000000000..5a61c56b0f --- /dev/null +++ b/e2e/common/config/files/configmap-route.groovy @@ -0,0 +1,30 @@ +// camel-k: language=groovy +/* + * 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. + */ + +// +// To run this integrations use: +// +// kubectl create configmap my-cm --from-literal=my-configmap-key="configmap content" +// kamel run --configmap my-cm configmap-route.groovy --dev +// + +from('timer:configmap') + .routeId('configmap') + .setBody() + .simple("resource:classpath:my-configmap-key") + .log('configmap content is: ${body}') diff --git a/e2e/config/files/my.properties b/e2e/common/config/files/my.properties similarity index 100% rename from e2e/config/files/my.properties rename to e2e/common/config/files/my.properties diff --git a/e2e/config/files/property-file-route.groovy b/e2e/common/config/files/property-file-route.groovy similarity index 100% rename from e2e/config/files/property-file-route.groovy rename to e2e/common/config/files/property-file-route.groovy diff --git a/e2e/config/files/property-route.groovy b/e2e/common/config/files/property-route.groovy similarity index 100% rename from e2e/config/files/property-route.groovy rename to e2e/common/config/files/property-route.groovy diff --git a/e2e/config/files/resources-base64-encoded-route.groovy b/e2e/common/config/files/resources-base64-encoded-route.groovy similarity index 100% rename from e2e/config/files/resources-base64-encoded-route.groovy rename to e2e/common/config/files/resources-base64-encoded-route.groovy diff --git a/e2e/config/files/resources-binary-route.groovy b/e2e/common/config/files/resources-binary-route.groovy similarity index 100% rename from e2e/config/files/resources-binary-route.groovy rename to e2e/common/config/files/resources-binary-route.groovy diff --git a/e2e/config/files/resources-data.txt b/e2e/common/config/files/resources-data.txt similarity index 100% rename from e2e/config/files/resources-data.txt rename to e2e/common/config/files/resources-data.txt diff --git a/e2e/config/files/resources-data.zip b/e2e/common/config/files/resources-data.zip similarity index 100% rename from e2e/config/files/resources-data.zip rename to e2e/common/config/files/resources-data.zip diff --git a/e2e/config/files/resources-route.groovy b/e2e/common/config/files/resources-route.groovy similarity index 100% rename from e2e/config/files/resources-route.groovy rename to e2e/common/config/files/resources-route.groovy diff --git a/e2e/common/config/files/secret-route.groovy b/e2e/common/config/files/secret-route.groovy new file mode 100644 index 0000000000..49966aed6b --- /dev/null +++ b/e2e/common/config/files/secret-route.groovy @@ -0,0 +1,30 @@ +// camel-k: language=groovy +/* + * 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. + */ + +// +// To run this integrations use: +// +// kubectl create secret generic my-sec --from-literal=my-secret-key="very top secret" +// kamel run --secret my-sec secret-route.groovy --dev +// + +from('timer:secret') + .routeId('secret') + .setBody() + .simple("resource:classpath:my-secret-key") + .log('secret content is: ${body}') diff --git a/e2e/config/properties_test.go b/e2e/config/properties_test.go deleted file mode 100644 index 479bb6a9a9..0000000000 --- a/e2e/config/properties_test.go +++ /dev/null @@ -1,55 +0,0 @@ -// +build integration - -// 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 resources - -import ( - "testing" - - . "github.com/onsi/gomega" - - v1 "k8s.io/api/core/v1" - - . "github.com/apache/camel-k/e2e/support" - camelv1 "github.com/apache/camel-k/pkg/apis/camel/v1" -) - -func TestRunPropertyExamples(t *testing.T) { - WithNewTestNamespace(t, func(ns string) { - Expect(Kamel("install", "-n", ns).Execute()).To(Succeed()) - - t.Run("Simple property", func(t *testing.T) { - Expect(Kamel("run", "-n", ns, "./files/property-route.groovy", "-p", "my.message=test-property").Execute()).To(Succeed()) - Eventually(IntegrationPodPhase(ns, "property-route"), TestTimeoutMedium).Should(Equal(v1.PodRunning)) - Eventually(IntegrationCondition(ns, "property-route", camelv1.IntegrationConditionReady), TestTimeoutShort).Should(Equal(v1.ConditionTrue)) - Eventually(IntegrationLogs(ns, "property-route"), TestTimeoutShort).Should(ContainSubstring("test-property")) - Expect(Kamel("delete", "--all", "-n", ns).Execute()).To(Succeed()) - }) - - t.Run("Property file", func(t *testing.T) { - Expect(Kamel("run", "-n", ns, "./files/property-file-route.groovy", "--property-file", "./files/my.properties").Execute()).To(Succeed()) - Eventually(IntegrationPodPhase(ns, "property-file-route"), TestTimeoutMedium).Should(Equal(v1.PodRunning)) - Eventually(IntegrationCondition(ns, "property-file-route", camelv1.IntegrationConditionReady), TestTimeoutShort).Should(Equal(v1.ConditionTrue)) - Eventually(IntegrationLogs(ns, "property-file-route"), TestTimeoutShort).Should(ContainSubstring("hello world")) - Expect(Kamel("delete", "--all", "-n", ns).Execute()).To(Succeed()) - }) - }) -} diff --git a/script/Makefile b/script/Makefile index fcfc9b5ed0..a7760660c6 100644 --- a/script/Makefile +++ b/script/Makefile @@ -152,6 +152,7 @@ test-integration: build go test -timeout 60m -v ./e2e/common -tags=integration && \ go test -timeout 60m -v ./e2e/common/build -tags=integration && \ go test -timeout 60m -v ./e2e/common/cli -tags=integration && \ + go test -timeout 60m -v ./e2e/common/config -tags=integration && \ go test -timeout 60m -v ./e2e/common/languages -tags=integration && \ go test -timeout 60m -v ./e2e/common/traits -tags=integration @@ -167,10 +168,6 @@ test-local: build STAGING_RUNTIME_REPO="$(STAGING_RUNTIME_REPO)" go test -timeout 60m -v ./e2e/local -tags=integration #go test -timeout 60m -v ./e2e/local -tags=integration -test-resources: build - STAGING_RUNTIME_REPO="$(STAGING_RUNTIME_REPO)" go test -timeout 60m -v ./e2e/config -tags=integration - #go test -timeout 60m -v ./e2e/config -tags=integration - test-kamel-cli: build STAGING_RUNTIME_REPO="$(STAGING_RUNTIME_REPO)" go test -timeout 60m -v ./e2e/common/cli -tags=integration #go test -timeout 60m -v ./e2e/common/cli -tags=integration