diff --git a/addons/addons_test.go b/addons/addons_test.go index 786172ee84..b33e880f96 100644 --- a/addons/addons_test.go +++ b/addons/addons_test.go @@ -23,7 +23,7 @@ import ( metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "github.com/apache/camel-k/addons/master" - "github.com/apache/camel-k/addons/tracing" + "github.com/apache/camel-k/addons/telemetry" v1 "github.com/apache/camel-k/pkg/apis/camel/v1" "github.com/apache/camel-k/pkg/trait" @@ -44,7 +44,7 @@ func TestTraitConfiguration(t *testing.T) { "labelKey": "test-label", "labelValue": "test-value", }), - "tracing": trait.ToAddonTrait(t, map[string]interface{}{ + "telemetry": trait.ToAddonTrait(t, map[string]interface{}{ "enabled": true, }), }, @@ -63,10 +63,10 @@ func TestTraitConfiguration(t *testing.T) { assert.Equal(t, "test-label", *master.LabelKey) assert.Equal(t, "test-value", *master.LabelValue) - require.NotNil(t, c.GetTrait("tracing")) - tracing, ok := c.GetTrait("tracing").(*tracing.TestTracingTrait) + require.NotNil(t, c.GetTrait("telemetry")) + telemetry, ok := c.GetTrait("telemetry").(*telemetry.TestTelemetryTrait) require.True(t, ok) - assert.True(t, *tracing.Enabled) + assert.True(t, *telemetry.Enabled) } func TestTraitConfigurationFromAnnotations(t *testing.T) { @@ -78,7 +78,7 @@ func TestTraitConfigurationFromAnnotations(t *testing.T) { "trait.camel.apache.org/master.resource-name": "test-lock", "trait.camel.apache.org/master.label-key": "test-label", "trait.camel.apache.org/master.label-value": "test-value", - "trait.camel.apache.org/tracing.enabled": "true", + "trait.camel.apache.org/telemetry.enabled": "true", }, }, Spec: v1.IntegrationSpec{ @@ -97,8 +97,8 @@ func TestTraitConfigurationFromAnnotations(t *testing.T) { assert.Equal(t, "test-label", *master.LabelKey) assert.Equal(t, "test-value", *master.LabelValue) - require.NotNil(t, c.GetTrait("tracing")) - tracing, ok := c.GetTrait("tracing").(*tracing.TestTracingTrait) + require.NotNil(t, c.GetTrait("telemetry")) + telemetry, ok := c.GetTrait("telemetry").(*telemetry.TestTelemetryTrait) require.True(t, ok) - assert.True(t, *tracing.Enabled) + assert.True(t, *telemetry.Enabled) } diff --git a/addons/register_telemetry.go b/addons/register_telemetry.go new file mode 100644 index 0000000000..9e29615223 --- /dev/null +++ b/addons/register_telemetry.go @@ -0,0 +1,27 @@ +/* +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 addons + +import ( + "github.com/apache/camel-k/addons/telemetry" + "github.com/apache/camel-k/pkg/trait" +) + +func init() { + trait.AddToTraits(telemetry.NewTelemetryTrait) +} diff --git a/addons/telemetry/discovery/jaeger.go b/addons/telemetry/discovery/jaeger.go new file mode 100644 index 0000000000..2eebd14b3e --- /dev/null +++ b/addons/telemetry/discovery/jaeger.go @@ -0,0 +1,73 @@ +/* +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 discovery + +import ( + "context" + "fmt" + "sort" + "strings" + + "github.com/apache/camel-k/pkg/client" + "github.com/apache/camel-k/pkg/trait" + "github.com/apache/camel-k/pkg/util/log" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" +) + +type JaegerTelemetryLocator struct { + allowHeadless bool +} + +const ( + jaegerPortName = "grpc-otlp" +) + +func (loc *JaegerTelemetryLocator) FindEndpoint(ctx context.Context, c client.Client, l log.Logger, e *trait.Environment) (string, error) { + opts := metav1.ListOptions{ + LabelSelector: "app.kubernetes.io/part-of=jaeger,app.kubernetes.io/component=service-collector", + } + lst, err := c.CoreV1().Services(e.Integration.Namespace).List(ctx, opts) + if err != nil { + return "", err + } + var candidates []string + for _, svc := range lst.Items { + if !loc.allowHeadless && strings.HasSuffix(svc.Name, "-headless") { + continue + } + + for _, port := range svc.Spec.Ports { + if port.Name == jaegerPortName && port.Port > 0 { + candidates = append(candidates, fmt.Sprintf("http://%s.%s.svc.cluster.local:%d", svc.Name, svc.Namespace, port.Port)) + } + } + } + sort.Strings(candidates) + if len(candidates) > 0 { + for _, endpoint := range candidates { + l.Infof("Detected Jaeger endpoint at: %s", endpoint) + } + return candidates[0], nil + } + return "", nil +} + +// registering the locator. +func init() { + TelemetryLocators = append(TelemetryLocators, &JaegerTelemetryLocator{}, &JaegerTelemetryLocator{allowHeadless: true}) +} diff --git a/addons/telemetry/discovery/locator.go b/addons/telemetry/discovery/locator.go new file mode 100644 index 0000000000..42563791e1 --- /dev/null +++ b/addons/telemetry/discovery/locator.go @@ -0,0 +1,34 @@ +/* +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 discovery + +import ( + "context" + + "github.com/apache/camel-k/pkg/client" + "github.com/apache/camel-k/pkg/trait" + "github.com/apache/camel-k/pkg/util/log" +) + +// TelemetryLocators contains available telemetry OTLP locators. +var TelemetryLocators []TelemetryLocator + +// TelemetryLocator is able to find the address of an available telemetry OTLP endpoint. +type TelemetryLocator interface { + FindEndpoint(context.Context, client.Client, log.Logger, *trait.Environment) (string, error) +} diff --git a/addons/telemetry/telemetry.go b/addons/telemetry/telemetry.go new file mode 100644 index 0000000000..b3687296c2 --- /dev/null +++ b/addons/telemetry/telemetry.go @@ -0,0 +1,158 @@ +/* +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 telemetry + +import ( + "k8s.io/utils/pointer" + + "github.com/apache/camel-k/addons/telemetry/discovery" + v1 "github.com/apache/camel-k/pkg/apis/camel/v1" + traitv1 "github.com/apache/camel-k/pkg/apis/camel/v1/trait" + "github.com/apache/camel-k/pkg/trait" + "github.com/apache/camel-k/pkg/util" +) + +// The Telemetry trait can be used to automatically publish tracing information to an OTLP compatible collector. +// +// The trait is able to automatically discover the telemetry OTLP endpoint available in the namespace (supports **Jaerger** in version 1.35+). +// +// The Telemetry trait is disabled by default. +// +// WARNING: The Telemetry trait can't be enabled at the same time as the Tracing trait. +// +// +camel-k:trait=telemetry. +type Trait struct { + traitv1.Trait `property:",squash" json:",inline"` + // Enables automatic configuration of the trait, including automatic discovery of the telemetry endpoint. + Auto *bool `property:"auto" json:"auto,omitempty"` + // The name of the service that publishes telemetry data (defaults to the integration name) + ServiceName string `property:"service-name" json:"serviceName,omitempty"` + // The target endpoint of the Telemetry service (automatically discovered by default) + Endpoint string `property:"endpoint" json:"endpoint,omitempty"` + // The sampler of the telemetry used for tracing (default "on") + Sampler string `property:"sampler" json:"sampler,omitempty"` + // The sampler ratio of the telemetry used for tracing + SamplerRatio string `property:"sampler-ratio" json:"sampler-ratio,omitempty"` + // The sampler of the telemetry used for tracing is parent based (default "true") + SamplerParentBased *bool `property:"sampler-parent-based" json:"sampler-parent-based,omitempty"` +} + +type telemetryTrait struct { + trait.BaseTrait + Trait `property:",squash"` +} + +const ( + propEnabled = "propEnabled" + propEndpoint = "propEndpoint" + propServiceName = "propServiceName" + propSampler = "propSampler" + propSamplerRatio = "propSamplerRatio" + propSamplerParentBased = "propSamplerParentBased" +) + +var ( + telemetryProperties = map[v1.RuntimeProvider]map[string]string{ + v1.RuntimeProviderQuarkus: { + propEndpoint: "quarkus.opentelemetry.tracer.exporter.otlp.endpoint", + propServiceName: "quarkus.opentelemetry.tracer.resource-attributes", + propSampler: "quarkus.opentelemetry.tracer.sampler", + propSamplerRatio: "quarkus.opentelemetry.tracer.sampler.ratio", + propSamplerParentBased: "quarkus.opentelemetry.tracer.sampler.parent-based", + }, + } +) + +// NewTelemetryTrait instance the telemetry trait as a BaseTrait capable to inject quarkus properties. +func NewTelemetryTrait() trait.Trait { + return &telemetryTrait{ + BaseTrait: trait.NewBaseTrait("telemetry", trait.TraitOrderBeforeControllerCreation), + } +} + +func (t *telemetryTrait) Configure(e *trait.Environment) (bool, error) { + if e.Integration == nil || !pointer.BoolDeref(t.Enabled, false) { + return false, nil + } + + if pointer.BoolDeref(t.Auto, true) { + if t.Endpoint == "" { + for _, locator := range discovery.TelemetryLocators { + endpoint, err := locator.FindEndpoint(e.Ctx, t.Client, t.L, e) + if err != nil { + return false, err + } + if endpoint != "" { + t.L.Infof("Using tracing endpoint: %s", endpoint) + t.Endpoint = endpoint + break + } + } + } + + if t.ServiceName == "" { + t.ServiceName = e.Integration.Name + } + + if t.Sampler == "" { + t.Sampler = "on" + } + } + + return true, nil +} + +func (t *telemetryTrait) Apply(e *trait.Environment) error { + util.StringSliceUniqueAdd(&e.Integration.Status.Capabilities, v1.CapabilityTelemetry) + + if e.CamelCatalog != nil { + provider := e.CamelCatalog.CamelCatalogSpec.Runtime.Provider + properties := telemetryProperties[provider] + + if appPropEnabled := properties[propEnabled]; appPropEnabled != "" { + e.ApplicationProperties[appPropEnabled] = "true" + } + + if appPropEndpoint := properties[propEndpoint]; appPropEndpoint != "" && t.Endpoint != "" { + e.ApplicationProperties[appPropEndpoint] = t.Endpoint + } + + if appPropServiceName := properties[propServiceName]; appPropServiceName != "" && t.ServiceName != "" { + e.ApplicationProperties[appPropServiceName] = "service.name=" + t.ServiceName + } + + if appPropSampler := properties[propSampler]; appPropSampler != "" && t.Sampler != "" { + e.ApplicationProperties[appPropSampler] = t.Sampler + } + + if appPropSamplerRatio := properties[propSamplerRatio]; appPropSamplerRatio != "" && t.SamplerRatio != "" { + e.ApplicationProperties[appPropSamplerRatio] = t.SamplerRatio + } + + if appPropSamplerParentBased := properties[propSamplerParentBased]; appPropSamplerParentBased != "" { + if pointer.BoolDeref(t.SamplerParentBased, true) { + e.ApplicationProperties[appPropSamplerParentBased] = "true" + } else { + e.ApplicationProperties[appPropSamplerParentBased] = "false" + } + } + + } + + return nil +} diff --git a/addons/telemetry/telemetry_test.go b/addons/telemetry/telemetry_test.go new file mode 100644 index 0000000000..02070f8b2c --- /dev/null +++ b/addons/telemetry/telemetry_test.go @@ -0,0 +1,100 @@ +/* +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 telemetry + +import ( + "testing" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + "k8s.io/utils/pointer" + + v1 "github.com/apache/camel-k/pkg/apis/camel/v1" + "github.com/apache/camel-k/pkg/trait" + "github.com/apache/camel-k/pkg/util/camel" + + "github.com/stretchr/testify/assert" +) + +func TestTelemetryTraitOnDefaultQuarkus(t *testing.T) { + e := createEnvironment(t, camel.QuarkusCatalog) + telemetry := NewTelemetryTrait() + tt, _ := telemetry.(*telemetryTrait) + tt.Enabled = pointer.Bool(true) + tt.Endpoint = "http://endpoint3" + ok, err := telemetry.Configure(e) + assert.Nil(t, err) + assert.True(t, ok) + + err = telemetry.Apply(e) + assert.Nil(t, err) + + assert.Empty(t, e.ApplicationProperties["quarkus.opentelemetry.enabled"]) + assert.Equal(t, "http://endpoint3", e.ApplicationProperties["quarkus.opentelemetry.tracer.exporter.otlp.endpoint"]) + assert.Equal(t, "service.name=test", e.ApplicationProperties["quarkus.opentelemetry.tracer.resource-attributes"]) + assert.Equal(t, "on", e.ApplicationProperties["quarkus.opentelemetry.tracer.sampler"]) + assert.Empty(t, e.ApplicationProperties["quarkus.opentelemetry.tracer.sampler.ratio"]) + assert.Equal(t, "true", e.ApplicationProperties["quarkus.opentelemetry.tracer.sampler.parent-based"]) +} + +func TestTelemetryTraitWithValues(t *testing.T) { + e := createEnvironment(t, camel.QuarkusCatalog) + telemetry := NewTelemetryTrait() + tt, _ := telemetry.(*telemetryTrait) + tt.Enabled = pointer.Bool(true) + tt.Endpoint = "http://endpoint3" + tt.ServiceName = "Test" + tt.Sampler = "ratio" + tt.SamplerRatio = "0.001" + tt.SamplerParentBased = pointer.Bool(false) + ok, err := telemetry.Configure(e) + assert.Nil(t, err) + assert.True(t, ok) + + err = telemetry.Apply(e) + assert.Nil(t, err) + + assert.Empty(t, e.ApplicationProperties["quarkus.opentelemetry.enabled"]) + assert.Equal(t, "http://endpoint3", e.ApplicationProperties["quarkus.opentelemetry.tracer.exporter.otlp.endpoint"]) + assert.Equal(t, "service.name=Test", e.ApplicationProperties["quarkus.opentelemetry.tracer.resource-attributes"]) + assert.Equal(t, "ratio", e.ApplicationProperties["quarkus.opentelemetry.tracer.sampler"]) + assert.Equal(t, "0.001", e.ApplicationProperties["quarkus.opentelemetry.tracer.sampler.ratio"]) + assert.Equal(t, "false", e.ApplicationProperties["quarkus.opentelemetry.tracer.sampler.parent-based"]) +} + +func createEnvironment(t *testing.T, catalogGen func() (*camel.RuntimeCatalog, error)) *trait.Environment { + t.Helper() + + catalog, err := catalogGen() + assert.Nil(t, err) + + e := trait.Environment{ + CamelCatalog: catalog, + ApplicationProperties: make(map[string]string), + } + + it := v1.Integration{ + ObjectMeta: metav1.ObjectMeta{ + Name: "test", + }, + Status: v1.IntegrationStatus{ + Phase: v1.IntegrationPhaseDeploying, + }, + } + e.Integration = &it + return &e +} diff --git a/addons/telemetry/test_support.go b/addons/telemetry/test_support.go new file mode 100644 index 0000000000..10ecf724c2 --- /dev/null +++ b/addons/telemetry/test_support.go @@ -0,0 +1,21 @@ +/* +Licensed to the Apache Software Foundation (ASF) under one or more +contributor license agreements. See the NOTICE file distributed with +this work for additional information regarding copyright ownership. +The ASF licenses this file to You under the Apache License, Version 2.0 +(the "License"); you may not use this file except in compliance with +the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package telemetry + +// Expose telemetryTrait type for testing. +type TestTelemetryTrait = telemetryTrait diff --git a/addons/telemetry/zz_desc_generated.go b/addons/telemetry/zz_desc_generated.go new file mode 100644 index 0000000000..073f40d23f --- /dev/null +++ b/addons/telemetry/zz_desc_generated.go @@ -0,0 +1 @@ +package telemetry diff --git a/addons/telemetry/zz_generated_doc.go b/addons/telemetry/zz_generated_doc.go new file mode 100644 index 0000000000..073f40d23f --- /dev/null +++ b/addons/telemetry/zz_generated_doc.go @@ -0,0 +1 @@ +package telemetry diff --git a/addons/tracing/tracing.go b/addons/tracing/tracing.go index 7423eb9fb2..667240fe23 100644 --- a/addons/tracing/tracing.go +++ b/addons/tracing/tracing.go @@ -27,13 +27,17 @@ import ( "github.com/apache/camel-k/pkg/util" ) -// The Tracing trait can be used to automatically publish tracing information to an -// OpenTracing compatible collector. +// +// WARNING: The Tracing trait has been **deprecated** in favor of the xref:traits:telemetry.adoc[Telemetry] trait. +// +// The Tracing trait can be used to automatically publish tracing information to an OpenTracing compatible collector. // // The trait is able to automatically discover the tracing endpoint available in the namespace (supports **Jaeger**). // // The Tracing trait is disabled by default. // +// WARNING: The Tracing trait can't be enabled at the same time as the Telemetry trait. +// // +camel-k:trait=tracing. type Trait struct { traitv1.Trait `property:",squash" json:",inline"` diff --git a/docs/modules/ROOT/nav.adoc b/docs/modules/ROOT/nav.adoc index 61a1a98a40..a9919e50a0 100644 --- a/docs/modules/ROOT/nav.adoc +++ b/docs/modules/ROOT/nav.adoc @@ -52,7 +52,7 @@ ** xref:scaling/binding.adoc[Binding] * xref:traits:traits.adoc[Traits] // Start of autogenerated code - DO NOT EDIT! (trait-nav) -** xref:traits:3scale.adoc[3scale] +** xref:traits:3scale.adoc[3Scale] ** xref:traits:affinity.adoc[Affinity] ** xref:traits:aws-secrets-manager.adoc[Aws Secrets Manager] ** xref:traits:azure-key-vault.adoc[Azure Key Vault] @@ -92,6 +92,7 @@ ** xref:traits:route.adoc[Route] ** xref:traits:service-binding.adoc[Service Binding] ** xref:traits:service.adoc[Service] +** xref:traits:telemetry.adoc[Telemetry] ** xref:traits:toleration.adoc[Toleration] ** xref:traits:tracing.adoc[Tracing] // End of autogenerated code - DO NOT EDIT! (trait-nav) diff --git a/docs/modules/traits/pages/telemetry.adoc b/docs/modules/traits/pages/telemetry.adoc new file mode 100644 index 0000000000..6adacbaa83 --- /dev/null +++ b/docs/modules/traits/pages/telemetry.adoc @@ -0,0 +1,82 @@ += Telemetry Trait + +// Start of autogenerated code - DO NOT EDIT! (description) +The Telemetry trait can be used to automatically publish tracing information to an OTLP compatible collector. + +The trait is able to automatically discover the telemetry OTLP endpoint available in the namespace (supports **Jaerger** in version 1.35+). + +The Telemetry trait is disabled by default. + +WARNING: The Telemetry trait can't be enabled at the same time as the Tracing trait. + + +This trait is available in the following profiles: **Kubernetes, Knative, OpenShift**. + +// End of autogenerated code - DO NOT EDIT! (description) +// Start of autogenerated code - DO NOT EDIT! (configuration) +== Configuration + +Trait properties can be specified when running any integration with the CLI: +[source,console] +---- +$ kamel run --trait telemetry.[key]=[value] --trait telemetry.[key2]=[value2] integration.groovy +---- +The following configuration options are available: + +[cols="2m,1m,5a"] +|=== +|Property | Type | Description + +| telemetry.enabled +| bool +| Can be used to enable or disable a trait. All traits share this common property. + +| telemetry.auto +| bool +| Enables automatic configuration of the trait, including automatic discovery of the telemetry endpoint. + +| telemetry.service-name +| string +| The name of the service that publishes telemetry data (defaults to the integration name) + +| telemetry.endpoint +| string +| The target endpoint of the Telemetry service (automatically discovered by default) + +| telemetry.sampler +| string +| The sampler of the telemetry used for tracing (default "on") + +| telemetry.sampler-ratio +| string +| The sampler ratio of the telemetry used for tracing + +| telemetry.sampler-parent-based +| bool +| The sampler of the telemetry used for tracing is parent based (default "true") + +|=== + +// End of autogenerated code - DO NOT EDIT! (configuration) + +== Examples + +* To activate tracing to a deployed OTLP API Jaeger through discovery: ++ +[source,console] +$ kamel run -t telemetry.enable=true ... + +* To define a specific deployed OTLP gRPC reciever: ++ +[source,console] +$ kamel run -t telemetry.enable=true -t telemetry.endpoint=http://instance-collector:4317 ... + +* To define another sampler service name: ++ +[source,console] +$ kamel run -t telemetry.enable=true -t telemetry.service-name=tracer_myintegration ... + +* To use a ratio sampler with a sampling ratio of 1 to every 1,000 : ++ +[source,console] +$ kamel run -t telemetry.enable=true -t telemetry.sampler=ratio -t telemetry.sampler-ratio=0.001 ... diff --git a/docs/modules/traits/pages/tracing.adoc b/docs/modules/traits/pages/tracing.adoc index 735f624d4b..549910fedd 100755 --- a/docs/modules/traits/pages/tracing.adoc +++ b/docs/modules/traits/pages/tracing.adoc @@ -1,13 +1,16 @@ = Tracing Trait // Start of autogenerated code - DO NOT EDIT! (description) -The Tracing trait can be used to automatically publish tracing information to an -OpenTracing compatible collector. +WARNING: The Tracing trait has been **deprecated** in favor of the xref:traits:telemetry.adoc[Telemetry] trait. + +The Tracing trait can be used to automatically publish tracing information to an OpenTracing compatible collector. The trait is able to automatically discover the tracing endpoint available in the namespace (supports **Jaeger**). The Tracing trait is disabled by default. +WARNING: The Tracing trait can't be enabled at the same time as the Telemetry trait. + This trait is available in the following profiles: **Kubernetes, Knative, OpenShift**. diff --git a/e2e/namespace/install/cli/duplicate_parameters_test.go b/e2e/namespace/install/cli/duplicate_parameters_test.go index b3a114e1bf..7e03e1d486 100644 --- a/e2e/namespace/install/cli/duplicate_parameters_test.go +++ b/e2e/namespace/install/cli/duplicate_parameters_test.go @@ -39,10 +39,10 @@ func TestDuplicateParameters(t *testing.T) { defer cancel() // run kamel to output the traits/configuration structure in json format to check the processed values - // the tracing.enabled is false inside JavaDuplicateParams.java, so we can check the output of this trait as true. + // the telemetry.enabled is false inside JavaDuplicateParams.java, so we can check the output of this trait as true. cmdParams := []string{"kamel", "run", "files/JavaDuplicateParams.java", "-o", "json", - "-t", "tracing.enabled=true", "--trait", "pull-secret.enabled=true", + "-t", "telemetry.enabled=true", "--trait", "pull-secret.enabled=true", "--property", "prop1=true", "-p", "prop2=true", "--force"} comm, _, _ := cmd.NewKamelWithModelineCommand(ctx, cmdParams) @@ -51,6 +51,6 @@ func TestDuplicateParameters(t *testing.T) { commOutput := GetOutputString(comm) outParams := - `"traits":{"affinity":{"enabled":true},"camel":{"properties":["prop1 = true","prop2 = true","foo = bar"]},"pull-secret":{"enabled":true},"addons":{"tracing":{"enabled":true}}}` + `"traits":{"affinity":{"enabled":true},"camel":{"properties":["prop1 = true","prop2 = true","foo = bar"]},"pull-secret":{"enabled":true},"addons":{"telemetry":{"enabled":true}}}` Expect(commOutput).To(ContainSubstring(outParams)) } diff --git a/e2e/namespace/install/cli/files/JavaDuplicateParams.java b/e2e/namespace/install/cli/files/JavaDuplicateParams.java index 95b73b1ac9..ef267c31ab 100644 --- a/e2e/namespace/install/cli/files/JavaDuplicateParams.java +++ b/e2e/namespace/install/cli/files/JavaDuplicateParams.java @@ -1,4 +1,4 @@ -// camel-k: language=java trait=tracing.enabled=false trait=affinity.enabled=true property=prop1=false property=foo=bar +// camel-k: language=java trait=telemetry.enabled=false trait=affinity.enabled=true property=prop1=false property=foo=bar /* * Licensed to the Apache Software Foundation (ASF) under one or more diff --git a/pkg/apis/camel/v1/common_types.go b/pkg/apis/camel/v1/common_types.go index c30be28de4..33eec9f892 100644 --- a/pkg/apis/camel/v1/common_types.go +++ b/pkg/apis/camel/v1/common_types.go @@ -294,6 +294,8 @@ const ( CapabilityCircuitBreaker = "circuit-breaker" // CapabilityTracing defines the tracing (opentracing) capability CapabilityTracing = "tracing" + // CapabilityTelemetry defines the telemetry (opentelemetry) capability + CapabilityTelemetry = "telemetry" // CapabilityMaster defines the master capability CapabilityMaster = "master" // CapabilityResumeKafka defines the resume capability diff --git a/pkg/apis/camel/v1/common_types_support_test.go b/pkg/apis/camel/v1/common_types_support_test.go index e464554930..dd424a33da 100644 --- a/pkg/apis/camel/v1/common_types_support_test.go +++ b/pkg/apis/camel/v1/common_types_support_test.go @@ -47,7 +47,7 @@ func TestTraitsMerge(t *testing.T) { "master": toAddonTrait(t, map[string]interface{}{ "resourceName": "test-lock", }), - "tracing": toAddonTrait(t, map[string]interface{}{ + "telemetry": toAddonTrait(t, map[string]interface{}{ "enabled": true, }), }, @@ -66,7 +66,7 @@ func TestTraitsMerge(t *testing.T) { Level: "DEBUG", }, Addons: map[string]AddonTrait{ - "tracing": toAddonTrait(t, map[string]interface{}{ + "telemetry": toAddonTrait(t, map[string]interface{}{ "serviceName": "test-integration", }), }, @@ -103,7 +103,7 @@ func TestTraitsMerge(t *testing.T) { "enabled": true, "serviceName": "test-integration", }), - t1.Addons["tracing"]) + t1.Addons["telemetry"]) } func configurationFromMap(t *testing.T, configMap map[string]interface{}) *trait.Configuration { diff --git a/pkg/resources/resources.go b/pkg/resources/resources.go index 61fa2f5b91..1216039066 100644 --- a/pkg/resources/resources.go +++ b/pkg/resources/resources.go @@ -611,9 +611,9 @@ var assets = func() http.FileSystem { "/traits.yaml": &vfsgen۰CompressedFileInfo{ name: "traits.yaml", modTime: time.Time{}, - uncompressedSize: 56648, + uncompressedSize: 58334, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x7b\x73\x1b\x39\x92\x20\xfe\x7f\x7f\x0a\x84\xf6\xb7\x21\xc9\x41\x52\xee\x9e\x9d\xd9\x5e\xfd\xce\x3b\xa7\xb6\xdd\x33\xea\xf6\x43\x67\xa9\x7b\x76\xc2\xe7\x18\x82\x55\x20\x09\xb3\x0a\xa8\x06\x50\x92\xd8\x37\xf7\xdd\x2f\x90\x99\x78\x54\xb1\x28\x52\xb6\xd5\x31\xba\xb9\xe9\x88\xb1\x48\x56\x25\x12\x89\x44\x22\x91\x4f\x67\xb8\x74\xf6\xf4\xab\x31\x53\xbc\x16\xa7\xec\x77\xb6\xe0\x95\xf8\x8a\xb1\xa6\xe2\x6e\xae\x4d\x7d\xca\xe6\xbc\xb2\xf0\x8d\xd1\x73\x59\x09\x7b\xfa\x15\x63\x63\xf6\x63\x3b\x13\x46\x09\x27\x2c\x7e\x54\xdc\xc9\x6b\x01\x7f\xbf\x6d\x84\xba\x5c\xca\xb9\xfb\x8a\xb1\x52\xd8\xc2\xc8\xc6\x49\xad\x4e\xd9\xd5\x52\xd0\x00\x0c\xc6\x65\x05\x57\x6c\x26\x58\x6b\x45\xc9\x9c\x66\xbc\x75\xba\xe6\x4e\x16\xbc\xaa\xd6\xac\x30\x82\x3b\xc1\xb8\x52\xda\x71\x0f\xc0\x32\xb7\xe4\x1e\x28\x63\xbc\xaa\xf4\x4d\x84\xa5\x59\x29\x6d\xa1\xaf\x85\x61\x6e\x29\xd8\x42\x28\x61\xb8\x13\x25\xb3\xc2\x5c\xcb\xc2\xc3\x28\x59\xcd\x57\x82\x49\xc7\xf8\x35\x97\x15\x9f\x55\x82\xcd\xb5\x61\x67\x17\xe7\xac\xe6\x8a\x2f\x44\x2d\x94\x9b\x00\xf0\x0d\x34\xa5\xf5\x03\xf8\x77\x4a\x36\x5b\xb3\x52\xcc\x79\x5b\xc1\xc3\x8d\xd1\x8d\x30\x4e\x06\xaa\x20\x11\x85\x82\x67\x01\x98\x5b\x37\xe2\x94\xcd\xb4\xae\xe0\x63\x87\x1e\xcf\xbb\xd3\xc7\xd7\x98\x36\x61\x34\xc6\x11\x81\x09\x3b\xab\x2a\xfc\xd3\x32\xbb\xe4\x46\x30\xb7\x94\x96\x15\xba\xae\xb5\x02\xb8\x11\x95\xf5\x24\x43\xc4\x13\x74\x27\x16\x2f\x61\x58\x9b\xa8\xcf\x0a\xad\xe6\x72\xd1\x1a\xa0\x3a\xd3\x73\xa0\x2a\x62\x92\x01\xb7\xc5\x52\xd4\x22\x03\x6f\x9d\x91\x6a\xb1\x39\x80\xa7\x27\x3e\xec\x67\xd9\x5a\xf8\xa7\xd0\xca\xf1\xc2\x01\xe8\xb0\x4c\x47\x44\x59\x36\x5d\x3a\xd7\x4c\x8f\xb3\xc1\x1a\xee\x96\x7b\x0e\xe5\x1f\x65\x37\x4b\x01\x54\x12\xb0\xc2\xd2\xb2\xa6\x9d\x55\xd2\x2e\x45\x99\x8d\x72\xd2\x1d\x42\x1b\x97\x0d\x21\x95\xdb\x02\x5f\x1b\x97\xc1\x0f\xc8\x4b\xcb\xc4\x6d\xa3\x6d\x67\x84\x6f\x9f\x76\x86\xc8\x60\x8d\x3f\x7d\x46\x7e\x7f\x8d\xfd\xb4\x6c\x23\x0a\x39\x97\x05\xae\xd3\xb6\x49\xea\x46\x28\xde\xc8\xc9\x47\xab\xd5\xf4\x38\xee\x74\x3e\x9f\x4b\x25\xdd\xfa\x81\xf6\xfa\x99\xdf\xa1\x9e\x45\x95\xf5\x9c\xa3\xa4\x5a\xb0\x9b\xa5\x2c\x96\x4c\xe9\x52\x58\x98\x88\x54\x4e\x2c\x88\xcb\x1a\x5d\x1e\xd9\x63\xe6\x79\x5b\x54\x72\x21\x67\x15\xb1\x96\xf6\x5b\xc4\xb3\x4f\xd9\xfa\xfd\xa7\xd5\x88\xcd\xb8\x85\xbf\x58\xc5\x67\xa2\xb2\xfe\x2f\x0f\xce\x03\x1e\xf9\xed\x73\x23\xdd\x12\x80\x9b\x71\xa3\xcb\x38\x53\x2f\x06\x50\x7a\x28\x27\xc7\xe1\xdb\x41\x70\x8d\x2e\x51\xda\x00\x42\xbc\x32\x82\x97\x6b\x66\x5a\x05\xf3\xc8\xc6\xb3\x28\x32\xce\xdd\xe1\x63\x95\x11\x8d\x2e\xc7\x19\x2f\xdc\x8d\xcd\x59\x75\xc3\xd7\x1e\xe8\xb8\xd2\x05\x77\xc2\xb2\xba\xad\x9c\x6c\x2a\xc1\x8c\x68\x2a\x59\x70\x1b\xe4\x45\xbe\xb8\x12\x09\x66\x39\xc9\x0b\x06\xb4\x4b\x4c\xfa\x04\xf8\xee\xc9\xf1\x06\x5e\xf9\x42\xed\x44\xee\x8d\xf0\x27\xc0\x6f\x81\x9b\x7f\x22\xe2\x35\x46\xb6\xc9\xd0\x3b\x7c\xff\x01\xb7\xf3\xe1\x26\x92\x2f\xc4\x5c\x2a\x2f\x6d\x99\x15\xce\xe3\xb3\xf7\x76\xc0\xad\x40\x38\xee\xbd\x21\xb6\x2d\xf5\x67\x62\x0d\x1b\xe4\xc8\x83\xad\xd6\xcc\x2d\xb5\x15\xac\xe6\xae\x58\xfa\xed\xe1\x87\x06\xe8\xcc\x8a\x4a\x14\x4e\x9b\x11\x61\x6d\x44\x05\xa2\xc3\x4f\x05\x4e\x6a\x79\x2d\x14\x20\x67\x1b\x5e\x88\x63\xdc\x72\x5b\x68\x61\x97\xba\xad\x4a\xbf\x19\xe2\x12\x97\x04\xd7\x6f\xf8\x3b\x79\xe7\xd1\xce\x56\x69\x77\xc7\x8c\xa3\x2c\xbf\xb1\x63\x2b\x0a\x23\x9c\x1d\xa3\x36\x63\x1e\x48\xac\x1f\xfa\xf3\xe8\x12\x87\x62\xaf\x71\xa8\x61\x65\xce\x9f\xf3\x84\x13\x9b\x1b\x5d\xb3\xb3\xbf\x5c\x86\x37\x61\x12\xe1\x6d\x0f\x31\xfb\xad\x07\x75\x8b\xee\xc5\xbe\xd7\x86\xd5\xda\x78\xda\xf9\x39\x02\xed\x50\xb8\xcf\x74\xeb\xd8\x52\xdf\xec\x42\x22\x0d\xe4\x35\x43\xce\x2a\xad\x57\x8c\x16\xa4\xd0\x75\xa3\x95\x50\x84\x6a\xa9\x0b\x7b\xca\x6e\x8d\x98\x9f\xa6\x5f\x4e\x4f\x07\xc8\x3e\x8e\xbf\x4f\x78\xa9\x8b\xf7\x03\xe3\x01\xc4\xf8\xd8\x07\x76\xe6\x65\x8f\x97\x52\xe2\x56\x14\x6d\x52\xb9\xa4\x45\x12\x8c\xd8\x0d\xb0\x82\x11\xbf\xb4\x92\x54\x80\xb9\xf6\xc7\x2b\xb0\x9f\x7f\x04\x40\x6a\x58\x22\x7b\xca\xc6\x6e\x88\x21\x26\x74\xe2\x3c\x73\xa6\x15\xdb\x9e\xe1\x45\x21\xac\x1d\xaf\xc4\xfa\xd9\x81\xff\x3d\x7d\x3e\x80\x31\xb6\xbc\x86\x9f\xd3\x6b\xe9\xf3\xc1\xb6\x57\x8c\x58\x48\xad\xf0\x71\xfc\xfb\xe0\xf0\x1f\xff\xb0\x7c\x50\x85\x3a\x11\x7b\xa4\x6b\xe9\x44\xdd\x74\x0e\xbd\xbb\x34\x44\xcf\x66\x67\xf0\x3a\xfb\x51\xac\x89\xf3\x73\x5d\x3d\x2e\xc8\x27\x81\x46\x0e\x1e\x06\x8d\x8b\xf7\x49\x60\xdf\xc1\xab\x9b\x20\x5b\x2b\xc6\xb4\xd1\xc7\x85\x11\xa5\x50\x4e\xf2\xca\x8e\x1b\xa3\xaf\x65\x29\xcc\xe0\x60\xc3\x6b\x81\xa2\x9c\xc9\x39\xbb\x11\xec\x86\x2b\x17\xaf\x20\x4b\xe1\x7f\x84\x23\xfe\x79\x1a\x83\x5d\xd0\x18\xac\x58\x72\xa9\x18\xb7\xc4\x0d\xbc\x75\x4b\xff\x0c\x29\xdb\xb5\x70\x4b\x5d\x26\x01\xfc\x6b\x6b\x84\x27\xef\xf8\xda\x43\x7c\x48\xe1\x7b\xe6\x87\x82\xa5\xf8\x19\x90\xdf\x53\xf8\x86\xb7\x60\x3a\xf8\x66\xb8\xb9\x6c\x87\xfa\xa5\x85\x6f\x6f\x90\x28\x04\x3f\x43\x04\x77\x09\xbf\x21\x7e\xb7\x8d\xf8\x01\x80\x7e\x01\xd1\x9b\x8b\x5d\x24\x41\x17\xa3\x4d\xb1\xdb\xfb\xdd\x09\xc5\x95\x1b\xcb\xf2\xd9\x41\xfc\xf3\x60\xe8\xc1\xa2\x92\x82\x1e\x8c\x7f\x26\xa9\x3c\xfc\x30\x92\x3f\xbe\x80\x1f\x07\xa1\x23\xf9\x3c\x37\x3f\x3b\x48\x7f\xff\xd3\xcb\xe4\xb8\x24\xf7\x17\x70\xc0\x7a\x57\xf0\x3e\x3b\x2f\xc1\xda\x84\x12\xde\xf3\x4e\x64\xc9\x6c\xac\xb8\xaa\x9f\x38\xd6\x73\x78\xff\x5e\x63\x21\x43\x7c\xde\x78\x74\x38\xec\x1e\x33\xb1\xd5\x27\x0e\x88\x7b\xf8\x0d\xaf\xc5\xd6\xd1\xc2\x58\xb3\x56\x56\x65\x4f\x0b\xf6\x3b\xf0\x8b\xd9\x31\x69\x80\x24\x28\xc1\xde\xa0\xc0\x72\x19\x78\xbd\x14\x4e\x98\xda\x9f\x3f\x9e\xb7\x66\xc2\x3a\x3f\x49\xee\xc4\x62\x1d\x6d\x1b\x1e\x0c\xd8\x27\x03\x3f\x0a\x76\x9e\x6e\x03\x3f\x4a\x67\x1f\x81\x0d\xe1\x5a\x98\x99\xb6\x62\xcf\x5d\x18\x1e\x67\x95\x5e\x2c\xc8\x9e\x82\x74\x48\x92\x1d\xef\x46\xb6\x6d\xc0\xda\x26\x1d\x3b\x12\x93\xc5\x84\x50\xf8\x91\x2b\xb9\x0a\xb4\x6b\x74\xd9\xb5\x1b\x44\x52\xed\x79\xdb\x3b\x63\x95\xb4\x78\xcd\x8b\xaf\x92\xd9\x89\x14\x8e\x32\xdc\xe0\x70\x44\xc7\xed\x2a\x32\x5a\xe1\x2f\x85\x0f\xc7\x66\xcf\x3d\xf8\xe1\x33\x3e\x31\xcc\xb5\x30\x16\xec\xe3\x7a\xce\xce\x1a\x5e\xc4\xf7\x7e\x84\xd9\x9a\x56\x39\x59\xa3\x15\x1c\xee\xa4\xa2\x64\x95\x9c\x19\x6e\xa4\xb0\x23\x86\x90\xe9\xa2\x19\x8e\xfb\x47\xc0\x74\x34\xad\x31\xcd\x7e\x4f\x49\x02\xeb\x35\x5e\x8d\x03\x51\xe8\xed\xa0\xaf\x78\xb9\xd2\xbb\x91\x4f\xd8\xb9\x63\xfa\x5a\x18\x23\x4b\x11\xd4\x41\xff\x4c\xb0\x10\x05\x10\x56\xb8\x60\x4d\xca\xb6\x30\xbb\x20\xce\xf8\xad\x98\x34\x1f\x9b\x66\x99\xb8\x55\x2b\xc7\xa5\x7a\x48\xc1\xf8\x3c\x0c\xb1\x8b\x6b\xb3\x89\xd0\xe9\x9b\x63\xc7\x32\x83\x77\x6e\x1e\xb9\x91\x55\xe5\xa7\x05\xab\xc2\x2b\xab\xc3\xfc\x6d\xef\x44\xf7\x2b\x79\x89\x1a\xae\x65\xdc\x5a\x5d\xc8\x68\x3f\x21\x4a\xc5\xf1\x1e\x01\xb7\xef\xa5\xe5\x5c\xf5\x7d\x68\x84\x47\x54\x6d\x3a\xf7\xb6\x5f\x5a\x61\xdd\xb8\x68\xda\x3d\xb7\x4e\x2d\x95\xac\xdb\x9a\xf1\x5a\xb7\x0a\x78\xf1\xf9\xc5\x4f\x41\x37\x2e\x27\x03\xb0\x6b\x51\x6b\xb3\xef\x19\xbf\x09\x1e\x5f\x1f\x1c\xa1\x92\xb5\xbc\x17\xee\xfc\x76\x4f\xdc\x11\xf2\xfd\x30\xdf\x00\x7e\x07\xe6\xe8\x24\xfa\x34\x86\x3a\x09\xdc\x04\x40\x40\xf4\x4b\xce\x56\x71\xa7\x06\x86\x9f\xdc\xd7\xad\x95\xef\x4b\xce\x4a\x39\x9f\x0b\xe3\x75\x3b\x38\x7d\x83\x5b\x6b\xb6\xee\xee\x9a\x8e\x9f\xeb\xdb\xa7\xd3\xe3\xfe\xb0\xa0\xeb\xed\x43\xc3\x3b\x87\x57\x41\xdf\x73\xc1\xf9\xb6\x0d\xa1\xa0\x1f\x9c\xbb\x20\x9b\x41\x46\xa2\x37\x91\x69\x55\xad\xbd\x50\x41\x09\x3d\x45\x20\x53\xd6\x70\xc3\x6b\xaf\xa8\x31\xb8\xf5\xb5\x1d\xe2\xd1\x15\x79\x7c\x6f\x22\xb6\xca\x2b\x87\xe8\xf0\x0a\xf7\x6c\xc0\xbd\x4b\x41\xd4\x6e\x6c\xc7\xb4\x3f\xec\x45\xdc\x86\xd5\x27\xd1\x78\x2b\x76\x40\xeb\x41\x14\xc3\xb9\x07\x47\xce\x26\x8a\xe8\xb0\xed\xf8\x48\xf6\xc4\x0b\xf6\x8f\x54\xd9\x88\xfe\xcd\x09\xba\xd4\xfc\x9f\x25\x9b\x66\x07\xc0\xb4\xe7\x5d\x0b\xc3\xc9\x9a\x2f\x3e\x71\xbc\xf0\x6a\x07\xd4\xb8\x69\xab\x6a\xdc\xe8\x4a\x16\xb9\x18\xb8\x68\xab\xea\x22\x7d\xb9\x69\x9e\xf1\xaf\x31\x7c\x2d\xb8\xcb\xfe\x0e\x8e\xa9\xbf\x9f\xcf\xdf\x68\x77\x61\x84\x15\xca\x1d\xa6\x13\xd9\x80\xd8\x7f\x30\x73\xd1\x73\xe3\x95\x9b\xc1\x93\xb8\xb5\x4e\xd7\xf2\xd7\x70\x3b\x59\xf2\x6b\xa9\x5b\x03\x3a\x86\x30\x52\x97\xb2\xc0\x89\xcb\x5a\x98\x13\x8f\x27\xf9\x99\xb2\xd5\xb0\x13\xf6\x97\xa5\xac\x04\x53\xda\xd4\x70\xe2\x70\xd5\x39\xae\x49\x02\x5a\xc6\xbd\xa2\xce\xe8\x0c\x9b\x09\xc6\xd1\x93\xd8\x36\xa8\x96\xa2\x67\x75\xc4\xac\xae\x45\x1c\x1e\x34\x6d\x3b\x62\xb6\x2d\x96\x8c\x5b\x36\xe3\xae\x58\xb2\x8f\x7a\x66\x47\xc9\x24\x93\x20\x16\x4e\x5e\x83\x72\xeb\x6f\x0e\xe4\x1a\x67\x4b\xdd\x9a\xa8\x60\x94\x7c\x1d\xfd\xc3\x3c\x0d\x53\x8a\xca\xff\x30\xf7\x47\x50\xeb\x82\x4f\xf7\x7b\x6d\x70\x64\xc2\x02\xb6\x45\x97\x9a\x35\x77\xc2\x48\x5e\x05\x22\xe6\x33\xe7\x7e\xce\x9d\x65\x63\xb0\x18\x3f\xe8\x19\x93\xca\x3a\xc1\x4b\x3f\x24\x67\xd6\x71\x55\x72\x53\xb2\x52\x34\x95\x5e\xd7\x42\xb9\x91\xd7\x23\xb5\x81\xfb\xa5\x66\x96\x5f\x0b\x66\x84\xd5\xad\xf1\xba\x4c\x10\x61\x00\x31\x1f\xb1\xd4\xc2\x82\xc3\x48\x09\x5c\xe1\x59\x30\x6c\x89\x72\x92\xab\x85\xe1\x76\xe5\xb8\x71\x68\x99\xeb\x18\xb6\xba\x0e\x0a\x8b\x4e\xc8\x6b\x5e\xb5\x40\xdc\x20\x74\x23\x25\x4e\xd9\x14\x58\x64\x3a\x62\x53\xff\xad\xff\xf7\x97\x96\x1b\xf7\xeb\x74\x02\xdb\xcd\xb4\x15\xcd\xdf\x4b\xf1\x16\x6e\xec\x39\x69\x22\x59\x78\xdf\xc4\x76\xca\xc6\x01\xf8\x29\xce\x1b\xd7\xcc\x7a\xea\x87\x75\xbf\x31\xd2\x39\x01\x04\x07\xa4\xc4\x6d\x63\x84\xb5\xc8\x9d\x2f\x27\x8b\x09\x81\x38\x75\xb2\x58\xfd\x11\x01\x3c\xfb\xc3\xd3\xa7\x4f\x9f\x4e\x27\x1e\x7e\x0f\xe7\xd3\xa0\x7c\xaa\x34\xcf\x04\x32\x11\x99\xe4\x07\xb3\xa2\xd0\xaa\xb4\xec\x88\x4e\xa8\x03\xfa\xe2\xc0\x9f\x2c\x20\xdc\xad\x70\x41\xeb\x7c\x7a\x1c\x50\xf2\x70\x4f\x1d\x9f\xfd\x31\x78\x72\x9f\x3d\x3d\xf9\xe6\xff\xfb\x5f\x4d\xd5\xda\xff\xfd\x64\xe8\x9f\x3f\x4e\x3d\xeb\x12\x96\xa7\xce\xc8\xc5\x42\x98\x3f\x7a\x30\xcf\x9e\xe2\x13\x4f\x4f\xbe\xb9\xf3\xfd\xc9\x23\x30\xe6\x05\x6a\xec\x29\xc9\x03\xe7\x84\xd7\xa2\x9e\x70\xb3\xd4\x55\xff\x16\x37\xcf\x02\x02\x74\xeb\xe2\x5d\xce\x63\x57\x8a\xa2\xe2\x46\x94\xb0\xcd\xd7\xac\x6e\xad\x63\x4b\xbf\xef\x42\x6c\x40\x7f\x08\x69\x59\x2d\x8a\x25\x57\xd2\xd6\x9e\x14\x37\xda\xac\x58\xa1\x8d\x11\x85\xab\x3a\x53\xea\x19\xb2\xef\x9e\xd4\xe1\x19\xd0\x88\x33\x2b\xbc\x62\x82\x57\x75\xbc\xf8\xb9\x78\xad\xef\x9b\x49\xb2\xfd\x1e\x85\x7a\x70\x14\x47\x41\x42\x94\x49\xc8\x46\x16\x8f\x33\x03\x05\x08\xf8\x4a\x94\x4c\xdc\x46\x7b\xd6\x6c\x9d\xed\xd6\xa0\x64\x9d\x25\x19\x1b\x07\x05\x1d\x2a\xc9\x61\x3f\xa4\xe0\x5e\xc7\xc0\x27\x45\x66\xe1\xa1\x7d\x40\x58\x11\x4c\xda\xeb\xe9\x29\x94\xba\xb0\x59\xc6\xe1\xb7\x2d\x83\x1d\x49\x77\x78\x68\x59\x83\x07\x2c\x93\x2a\xbb\xa9\x4f\xb5\x59\x4c\x38\x58\x46\x26\x60\x00\x98\xac\x4e\x83\x21\x00\xb6\x3f\xd9\x43\xd6\xc7\x13\xc6\x2e\xd1\xe8\x24\xca\xbe\x0c\x2c\x5a\xe3\xb5\xd2\x6a\x7d\x1a\xd0\x0d\xa2\x83\x50\xf3\x27\x59\x14\x7d\x87\x19\x0b\xcc\x79\x55\xcd\x78\xb1\xda\xb9\xbf\x7e\x22\xcf\x54\xd0\xab\x70\xbd\x65\xdd\x54\x10\x9f\xd8\xb1\x55\xe3\xe8\x4c\xa8\xb2\xd1\x52\x39\x76\x14\x86\x3e\x8e\x4b\x1f\x4f\x19\x67\xd6\xe0\xb1\xd0\xbb\x8e\xac\x4d\xa9\xdc\x65\x65\x85\x44\x28\xd6\x9b\xaa\xd1\x56\x96\xbe\xa4\xd5\xb7\xc1\x31\xe4\x8c\xe0\x2e\x01\x73\xc9\xfd\x62\xf1\x48\xf4\xc3\xb2\x9f\x79\x25\x4b\xe6\xcf\x9d\x7c\xa7\xfa\x23\xe1\x00\x82\xcb\x0e\x4e\x31\x0c\x34\x62\x0a\x6a\xb4\x69\x55\x06\xb9\x5a\xff\xff\xfe\xf9\xef\xb5\x99\xc9\xf2\x20\xea\xab\xc7\xa7\x9e\xf1\x66\xb2\x0c\x80\x33\x5c\x4c\xab\xbc\xca\xb1\x92\x4d\xe3\x49\xa6\xc4\x2d\x7c\xc7\xe4\xdc\xf3\x96\x57\x91\x2c\x7c\x5e\x72\xab\x0e\x0f\x1d\x9b\x4b\x85\x21\x77\x6b\xe1\x60\xb0\x77\xa2\xa9\x78\x21\x0e\x02\x97\x14\x5c\x15\xa2\xb2\x89\x7d\x62\x1c\xd9\x47\x7f\xe6\x81\x51\x0e\xde\xb0\x4c\xba\xa0\x9b\x28\x71\xc3\xb4\x12\x87\xf7\xb5\x00\x9c\x75\xae\xff\xa8\x51\x0c\xad\x73\x10\x9c\x20\x04\x78\x55\x91\x44\xf4\x14\x0e\xd7\x10\xe9\x96\xc2\xa0\x92\xe0\x91\x05\x3d\x21\x53\x9a\x0a\xad\x6c\x5b\xfb\x5b\x20\x5c\xac\xee\xda\x0b\x99\x9c\xb5\x61\x73\x1d\xfb\x53\x83\xb3\x86\x5b\x2b\xaf\x45\x06\x4d\xc0\xf1\x58\x4a\x2f\x48\xa7\xb0\xc5\x37\x1e\xf2\xbb\xd4\x5f\x0f\x08\x6e\xb8\x65\x53\xc0\x9e\xd7\xbf\xfb\x48\xda\x9e\x30\xc7\x07\x46\x80\x65\xd2\x8c\xe9\x98\x8f\xb2\x33\x68\x14\x51\x40\x12\x72\x5f\xd7\xd3\x8d\x57\xfc\xc3\xd3\xa7\x27\x5f\xb3\x27\xf8\xdf\x74\xe4\xef\x57\x95\x60\xd3\xdf\xfd\xbe\xf6\x47\x77\x90\x19\xbf\x7f\x6a\xa7\x64\x70\xed\x5e\xea\x88\xd0\xe3\x52\xf0\xb2\x92\x4a\x8c\x49\x91\xe8\xde\x3b\xff\xf0\x6f\x9b\x8b\xfe\x16\xfe\xe5\x15\x0b\xaf\xb2\x4c\x2f\xf1\x12\x36\x2e\xa2\x27\x80\xe7\x3a\x39\xf7\xd3\xae\xa5\xb5\xc2\xa6\x58\xb2\x20\x31\x65\x70\xb0\xa8\x35\x33\x82\x5b\x7f\x7a\xb2\xd7\x12\xa6\xe9\xb5\xef\x7c\xbf\x82\x3d\x0e\x22\x94\x5a\xe5\x90\x0c\x73\x2e\x31\x30\x0d\x0f\x8b\x14\xde\xe0\xaf\x2c\x9f\x30\xbd\x24\x3f\x40\x34\xb6\x29\x70\x8f\x40\x8c\x36\x42\xad\x50\xb5\xf5\x13\x19\xa5\xa0\x71\x16\xa7\x5f\xf3\x35\xe2\xac\x9c\x54\xad\x6e\xad\xbf\xb8\x00\x7a\x6c\x26\xe6\xe0\xd8\x06\xcd\xcd\xb3\x8f\x2c\xe1\x38\xc4\xe3\x15\xa7\xe6\x2f\xa7\x04\x31\xb7\x33\xfc\xe1\x69\x67\xbe\x5e\xe0\xeb\xf9\x7c\x0c\x06\xa5\xee\x2c\x7f\xf7\xcd\xae\x59\xaa\xb6\x9e\x09\xb8\x8b\x19\xe1\x8c\xff\x96\x10\xab\xb9\x59\xe5\x2b\x79\x27\x46\xdf\xa4\x10\xb1\x52\x34\x42\x95\x42\x15\x68\x73\x7e\x20\xe3\xef\x8b\x6c\x94\x3b\x5d\x63\x5d\x33\x25\x2f\xcb\x68\xaa\xc6\x39\x64\x60\x62\x70\x63\x5f\x8c\xc5\xf0\xb9\xd6\x0a\x03\xc1\x1d\xe1\x04\xe8\xd9\x73\xd9\xfb\x0f\x39\x1d\x2a\xbd\x7e\x48\x03\x78\x18\x21\xcd\xdf\x08\xdb\x78\x4e\x0a\x49\x07\xf8\x44\x58\xc5\x74\xb3\xd3\x37\x8a\x36\xe1\x6c\x43\x68\xa3\xac\xea\x5d\xe1\xc5\x6d\x53\xc9\x42\xfa\x33\x05\x83\x0f\x91\x1c\xaa\x14\xa6\x02\xf8\x9e\xc3\x8d\xae\x2a\x32\xa9\x03\xc5\x60\xc7\x62\x18\xd6\x50\xf0\xe1\x63\xf0\x37\xae\xa4\x2a\xf7\xd0\x3c\x28\x06\x7d\x2b\xa1\x4a\x61\xe1\xdc\x48\x17\x6f\x80\xcc\x66\xc2\xdd\x08\xa1\xd8\x34\xfd\x30\x1d\xe5\x3a\xdf\xf8\xa3\x9e\xe1\x75\x6c\x85\x5c\x31\x26\x2b\xda\x14\x0f\x54\x48\x5d\xd9\x5c\x5f\xbf\xf6\xe1\xec\x4f\x4a\x6f\x7e\x49\xe9\x05\x41\x59\xcb\xf7\x52\x19\xfd\xe8\xc2\x8c\xbd\xac\x62\xbc\x69\x2a\x0c\xd3\x6a\x4a\xee\x70\x89\x81\xb1\x32\x44\x92\xdd\xce\x73\x3e\xda\xed\xfc\xff\xde\x68\x78\x81\x83\xc7\xb5\xbb\x45\xbd\x0a\x6b\x41\xa6\x81\xed\x88\xc2\x07\xfc\x80\x0d\x45\xc2\x8e\xfc\xa9\x72\x79\x79\xe6\x39\x5e\xe9\x20\x8e\x62\xba\xcd\x88\xf9\xc3\x73\xe4\x37\xb2\xae\xca\x5c\xd1\x2c\xaa\xd6\x3a\x61\xec\xa4\xb7\x49\x3d\xdd\x1f\x54\x54\x85\x45\xdf\xba\x51\x29\x93\x28\xac\x64\x86\x73\x07\xc3\xee\xc6\x5a\x79\x2d\xe7\x0e\xcf\x55\xf0\x11\xd2\xb4\x1f\xc1\x76\x6b\x8c\x5e\x78\x2d\x67\xc7\xd9\x3d\x74\xaa\xe5\xee\x11\xd0\x2b\x7a\x9a\x89\x8b\x02\x13\x57\x42\x23\x01\xc3\x88\x74\xea\x85\x9d\xb2\xeb\x50\xbe\xeb\x38\xee\x46\x5e\x00\xce\x89\x05\x2e\xe9\xc7\xab\x75\x23\x86\x27\x91\x21\x19\x20\x65\xd9\x4c\xa4\xc1\x33\x71\x2b\x2d\xb0\x0b\x44\x8c\x83\x2e\xaf\xc4\x0d\xa1\xdf\x57\x88\xbc\x60\xf6\x0a\x1f\x6e\xd4\x71\xcd\x6f\xc7\xad\x8a\xfb\x65\x97\xbb\xe1\x30\x27\x6d\x52\x17\x52\xe6\x4a\x38\x2b\x12\x48\xaf\x3b\x05\x5e\xc6\x41\xc3\xc6\xff\xd9\xdf\xb2\xc2\x1b\x5c\x31\x3e\xb3\xba\x6a\x5d\xd4\x43\x8e\xc4\xed\x29\xfb\x7d\xd0\xd9\x85\x29\xfc\x65\x74\x21\xfc\x80\x41\x88\x62\x8c\xbc\xb8\x0d\xd7\x9e\xaf\x9f\xfe\xeb\xf1\x84\x9d\xf5\x00\xf9\xf5\xe3\x55\xd1\x62\x14\x02\xdc\x29\x32\x70\xb3\xb5\xbf\x87\xa8\xd2\x23\x59\xea\x1b\x35\x61\x57\xc0\xa0\x3c\x70\x27\x45\x29\x3c\xf5\xa2\xe6\x35\xbf\xbd\x6c\xcd\x02\xcc\x16\x4f\x27\x21\x98\x13\xf5\x9e\xdf\xff\x6b\xe7\xfe\x3d\x40\x69\xeb\x5f\xfd\x52\x34\x4e\xd9\x18\x7c\xa6\xaf\x45\x7e\xb8\x04\xc4\x3b\x2f\x4f\xbe\x00\xc1\xc3\x7e\x0d\x64\x27\x82\x07\x82\xf5\x49\xf5\x53\xc6\x06\x48\xb0\xcd\xa5\x89\x17\xd6\xbd\x16\xa8\x6d\x86\x88\x9e\x84\xd7\xb5\x34\x5a\x3d\xac\x0c\xcf\x06\x49\x42\xbc\x0d\x3e\x0a\x52\x39\x9d\x66\x52\x7d\xf4\x67\x7e\xb4\xb4\x77\x91\x63\xec\x9a\x1b\x89\xf1\x81\x72\x53\xcd\x8c\x8e\xa2\xe4\x88\x98\xbe\x39\x7b\xfd\xf2\xf2\xe2\xec\xf9\x4b\x7f\xe3\xbd\x78\xfb\xe2\x6f\xfe\x0b\xbc\xf4\x6a\x7f\x6d\x7e\x0c\x4a\x54\x9c\xd7\xb8\x16\x6e\xb7\x9e\x11\x22\x28\x91\x96\x64\x87\xca\x08\x81\x37\xfe\x44\x8b\x7c\x6d\x22\x7d\x09\x9d\xbe\xfe\x91\x61\xb5\x74\xae\x19\x37\x46\xdf\xee\x8e\xed\xbe\x30\xba\xe1\x0b\xc8\xf4\x02\x7b\xd8\x9f\xaf\xae\x2e\xfe\x76\xf1\xee\xed\x7f\xfd\xd5\xaf\x8a\xff\x74\x49\x1f\x11\xb7\x37\x6f\xc3\xc7\xfe\xfa\xe7\x1c\x70\x07\x6e\xd7\xdc\xdc\x3f\x5e\x67\x90\x0e\x74\x72\xf1\x32\x8b\xdb\x19\xe4\xb9\x20\xa0\x21\x87\x76\xad\x1c\xbf\xf5\x2c\xfe\xe3\xcb\xbf\x3e\xfb\xf9\xec\xd5\x4f\x2f\x83\x52\x35\x7d\xfd\xd7\xbf\xfd\x7c\xf6\xee\xd9\x41\xbd\x46\x8b\xd9\x01\xfa\x5e\xfc\xe9\x84\xe7\xa9\x28\x84\xbf\x50\x09\x88\x64\xca\xae\xc3\xc1\xa6\x05\xd6\xa2\xb9\xf4\x7a\xe2\x20\xc6\x49\x39\x13\xc6\x68\x33\x5e\x72\x55\x56\x0f\x79\x8d\xea\x0c\x43\x76\x20\x1a\x89\xf6\x7a\xd8\x1a\xb4\xbb\x5f\xfa\x17\xd8\x9f\x23\x5e\x8c\xa1\xba\xeb\x09\xbb\x49\x61\xba\x6e\x3e\x82\x7d\x6a\xc4\x7c\x4f\x6f\x08\x90\x8c\x05\x92\x19\x31\x47\x7f\x7e\x0c\x10\xd3\x86\xcd\xbd\xf4\xf6\x52\xce\x5f\x13\x42\x32\x43\x16\x8d\x16\x06\x5d\x14\x0f\x58\x03\xe0\x4f\xcf\xd9\x15\xac\xe0\x82\x9b\x19\x5f\x88\x71\xe1\xaf\xa8\x85\xb3\x68\x89\x8c\xd7\x94\x98\x80\xab\x34\xab\xb4\x5a\x08\xc3\x94\x28\x84\xb5\x9c\x42\x73\xda\x46\x77\xdd\xcd\x78\xc0\x3f\x06\xe9\x1b\x2a\x16\xac\xc7\x05\x2f\x96\xb9\x26\xb2\x90\x6e\xd9\xce\x26\x85\xae\x4f\xd0\x65\x71\x42\xae\x8a\x93\x66\xb5\x38\xe1\x8d\xb4\xf8\xc5\xc9\xf5\xd7\x27\x88\xc3\x8b\x00\xeb\xb9\x7f\x7c\x58\x87\x3d\x8c\x0f\xd1\xe5\x8d\xc1\xb8\x24\x88\xfc\x3c\x47\xc1\xe4\x3b\x0d\x41\xa0\x5e\x8c\x96\xd2\xae\x72\xf3\x25\x46\x36\x4d\x33\x31\x49\xdf\x1c\x7b\x6d\xc0\xcb\x19\xaf\x38\x9c\x12\x5c\x23\x6a\x7d\x1d\xf4\x08\xf2\x9b\xe7\x51\x7a\x99\xc2\xb0\x28\x9a\x90\x37\xf6\x1b\xa4\x30\xfe\x49\xeb\x45\x15\x32\x19\xef\x99\xc8\x88\xef\x02\x41\x7a\xef\xef\x82\xbc\x2b\x9f\x86\x5c\xfa\x31\xa7\x66\x47\x3e\xcd\x96\xa1\x3a\xb9\x34\x5f\x05\x41\x9f\x39\xb3\xb6\xe4\xd2\x2c\x00\x5c\x6f\x11\x06\x12\x1a\xb3\x99\xa7\x24\xca\xcf\x4b\x68\xa4\xe8\x80\xad\x99\x35\x6c\xd1\x14\x3d\xc4\x36\x12\x6b\x06\x1e\x69\x8c\xf6\x47\x03\xe4\xcc\xa4\xbf\x63\xd2\xcc\xc0\x1b\x21\xb4\x8a\x17\x60\xd0\xc6\x94\x46\xcf\x70\xa7\xf4\x0b\xfd\x00\xd5\x14\xfe\xe9\xb3\x63\x12\x4d\xef\x9d\xd1\x71\x81\xaf\x42\xb6\x4a\xc6\xcb\xcf\x2b\xdd\x96\x03\xa1\x6e\xd9\x7a\xdc\x7f\x28\xee\x96\x60\x73\x4e\xf5\x60\x10\x1a\xe4\x8d\x7c\x2f\x2b\xb1\x6b\x9b\xf7\x37\xfa\x96\x5c\x45\xa9\xfc\x0d\xa3\x18\x4e\x6f\xf9\x8c\xfc\xc4\x73\x82\xeb\x0f\x6d\xa3\x79\xb1\xec\xa6\xbf\x64\xda\xdc\xb0\x44\xa0\x69\x47\x51\xbb\x14\xbc\x82\xe2\x23\x0f\x75\xc0\xe3\x00\xdb\xed\x6a\x81\xbb\x82\x31\x82\x9e\x6f\x8c\x9e\x09\xcb\x42\x2c\xff\x56\x9d\xf8\x31\x97\xdb\xa8\xe4\xb5\x50\xc2\x42\x32\xeb\x4c\x8c\xf7\xc6\x2b\xc4\x6e\xe2\x5d\x27\x40\x41\x92\x0d\x65\x2d\x0c\x84\xe9\x86\x23\x1c\xd6\xba\x1b\xac\x19\xb1\xda\xbb\xa8\xcf\x65\xa7\xa0\x0f\x5a\xbd\xb5\x52\xfe\x6a\x88\x81\x06\x03\x68\x26\x9d\xc1\x5f\xce\xb6\x60\x20\x95\x74\x92\x57\x63\x08\xca\xdb\x6d\x60\x7c\x13\x0d\x2b\xc1\xac\xc8\xe7\x8e\x0a\x41\x25\x12\x2c\xb9\x45\x9f\xa0\x67\x17\x74\xa4\xe5\xf8\xa5\xf5\x9a\x09\x74\x58\x79\x1c\x5c\x3f\x30\x9c\x30\xf4\xf7\x06\xdd\xee\xe1\xd2\xdb\x86\x1b\x06\xde\x0e\x10\xc8\x43\xb6\x4c\xb7\x6e\x98\x63\xc0\x69\xbd\x7b\xd8\x3f\xeb\x1b\xa6\xe7\x4e\x40\x52\x4b\x23\x0c\x5e\x99\x36\x46\x1b\x5e\xff\x16\x93\xd0\xdd\xd2\x08\xbb\xd4\xd5\x1e\xc3\xbd\xa6\xb8\xfd\x42\x2b\x0b\xe7\xfd\xb5\x60\x04\x46\x24\x23\x6f\x7f\xa6\x9a\x1c\xb0\x64\xca\xa5\x15\xa0\xf7\xe6\x6d\x45\xa4\x5a\xf2\x6b\x08\x3e\x40\x13\xef\x10\xc6\xfe\xa7\xd6\x88\xcf\xc5\x98\xc0\xdc\x17\x61\xf2\x75\x77\x90\x85\x49\x88\xb2\x9f\x12\xc1\x4b\xf9\xf9\x1b\x3f\x82\xf9\xa4\x9d\x9f\xbc\x3d\x9b\x68\x7d\xd9\x9d\xdf\xc7\xf3\xae\xad\x9f\x70\xf8\x2d\xf7\x7e\x1c\x75\xaf\xcd\x9f\x70\xfc\x82\xbb\xbf\x4f\xa4\xc1\xed\x9f\x31\xce\xe7\xee\xff\xde\x78\x5b\xf8\xe0\xa1\x24\xc0\xc6\x6c\x3f\x57\x04\x24\x9c\x1f\x4a\x06\xec\x89\xf2\x0e\x21\x10\xf3\x0a\x14\xf8\xb4\xee\xab\x77\x6d\x68\x57\xe7\x08\x67\xf8\xb6\x8a\xa9\x19\x9d\xca\x74\x29\xf9\x0d\x3c\x52\x83\xca\x15\x6d\x5b\xdd\x3a\xf0\xe9\xde\x68\x53\x95\x21\x16\x2d\x73\x7b\xd2\xd0\xa4\x81\x91\x0c\x63\xb3\x90\x0c\x81\x5b\xdc\x8b\x04\x28\xc5\xc5\x43\x3e\x12\x98\xef\xb6\xd9\x3a\x8f\xdc\xd2\xe8\x76\x81\x5b\x62\x1a\x1c\xe9\x88\xa5\x9f\xe1\xf1\x23\xd0\xea\x96\xda\xba\x7d\x6e\x23\x79\x12\x0e\x28\xbe\xda\x6e\xa4\x33\x11\x9b\x7c\x7e\xf2\x1f\x2f\x4b\x4c\xc7\x40\x76\x89\xcb\xd2\x5f\x80\xd6\xef\xd2\xe8\x62\xf3\xf2\x39\x05\x95\x86\x00\xba\x8c\x8b\xad\x93\xfa\x01\xef\x0e\xe7\x1e\x3e\xf1\x36\x8f\x45\x04\xe3\x75\x21\xcb\x1a\x0d\xb9\xcc\x21\xef\x95\x10\x63\x91\xf1\x6b\x61\x97\xc9\x69\xe3\x19\xbb\xe0\x26\x73\x60\x80\xbb\xa6\x75\x33\xb0\x89\x9e\x5f\x30\xc3\xd5\xe2\x51\x18\x0f\x81\x2e\x7b\xf0\x5b\xa6\x3c\x70\x76\x04\x81\xe5\xe3\x18\x58\x7e\x1c\x5d\x14\xcf\xcf\x5f\xbc\x63\xb6\x9d\x29\x11\x13\xef\x63\xf5\x31\xc2\x62\x86\x2c\x63\x0a\xd1\x64\x49\x20\xb8\x56\xe0\xad\x61\x47\xd3\xaf\x9f\x4e\xe0\xbf\x93\x6f\x47\x5f\xff\xfb\x37\x93\xaf\xff\x00\x1f\xbe\xfe\x66\xf4\xf5\x7f\xf8\x4f\xdf\xe2\xc7\x3f\x84\x70\xd0\x74\x6d\xeb\x68\x03\xb8\x3c\x3b\x69\xfc\xbd\x26\x13\xb1\x40\x87\x07\xc8\x6c\x2a\x7f\x37\xa5\xa5\x9e\x00\xaf\x4e\xa4\x3e\x41\xa0\xd3\x09\xfb\x2e\x0e\x9a\xdd\x9a\xb1\x7c\x1b\x66\x6a\x40\xc2\x20\xe8\x49\x4c\xab\xdc\xeb\xef\x99\x45\x69\x87\x25\xe1\x54\xe0\xe7\x94\x71\x19\xf0\xff\xa8\x2b\xbd\x92\xfc\x01\x77\xc8\x0f\x38\x42\xd8\x23\x14\x01\x6f\xbb\x55\x24\x90\x34\xe1\xd1\x1f\xf8\x35\x67\x7c\x11\x4b\xdc\x5e\x0a\x01\x9e\x36\x7b\x7a\x72\x42\x08\x4f\xb4\x59\x9c\x18\x01\x99\x97\x85\x38\x59\xba\xba\x3a\x81\x37\xec\xc4\xff\xfd\x8f\xbf\x29\x0a\x3e\x2e\x84\xd9\x4b\x0c\x2f\x05\xbb\x78\xf9\x9a\x09\x55\x68\x7f\x28\x3d\x3f\x63\xfe\xcd\x54\x4a\xd5\x2f\x12\x54\x5d\x1d\x45\x7c\xaf\x85\x91\xf3\x60\x3b\x0f\x8e\xf2\xf8\x92\xb0\xa3\xe0\x51\xf1\x53\x01\xa5\x78\xda\x18\xed\x74\xa1\x2b\x88\x62\x86\x0c\x49\x4b\x9e\x48\x8c\xed\xaa\xc6\x14\x46\xd5\xad\x2d\x15\xf6\x87\x7f\x09\x19\x31\x2b\xe6\x7a\xcd\xcd\x89\x69\xd5\x09\x59\xaa\x4e\x52\xee\xaf\x67\xf3\xae\x8d\x32\x7c\x1c\x17\x7c\x52\x18\x17\xe0\xfa\x8d\x12\xf9\xab\xb3\xf5\x08\x9d\xc6\x48\x55\xc8\x86\x57\x7b\xfa\x3a\x21\xed\x31\xbc\x73\x64\x8f\x49\xc3\x85\x1c\x9a\x59\x28\x7b\x28\x15\xe3\xd1\xf3\x90\xe8\x06\x76\xb9\x28\xcd\x18\x19\xb5\x82\x48\x0f\xec\x1b\x8e\xa3\xdf\x86\xc8\xf8\xc2\x45\x98\xd1\xb3\x42\x3d\xb3\x6b\xeb\x44\x7d\x5a\x73\x0b\x45\x65\xbd\xc0\x83\x74\x37\xf5\x6c\xc9\x6f\x9c\xd4\x63\xad\x2a\xa9\xc4\x04\x3f\x4d\xec\x75\x11\x83\xde\x3d\x2a\x85\x7a\x36\xf7\xe8\xf8\xd3\x54\x57\x62\xe2\x3f\xc0\x43\x77\x2c\x46\x72\x10\xed\xbb\xc3\x5e\x49\xeb\x95\x7e\x0f\x12\x12\x9d\x0a\x6e\x5d\x48\xc5\xcf\xfd\xda\x64\xff\xe9\xe4\xa4\x3b\xa1\x4a\x51\x06\x5a\x15\x4b\xb1\x47\xb2\xca\x6b\xae\x62\x84\xe1\xc0\xca\xd2\x0d\xcc\xa6\x75\x9f\x57\x7c\x11\x22\x2c\xc2\x90\x44\xa6\x95\x58\xb3\xd6\xf2\x05\xd8\x60\x29\xde\xf5\x37\x58\x6a\xfc\xbc\x7d\x11\xf6\xd5\xeb\x96\x82\xfd\xd9\xab\x72\xbc\x2c\x0d\xf1\x6f\xba\xe6\x05\x2e\x06\x69\x1a\xcb\x98\x4a\xe5\xe5\x0a\xa4\xa5\x4d\x0f\xfe\xe7\x93\x83\x80\xa6\x36\x6c\x7a\x40\x27\xe9\x01\x4c\x15\x36\xd0\x28\xaa\xf4\xc2\x58\x78\x1b\x03\x5b\xc1\xa3\xa7\x84\x83\x94\x2e\x38\xa2\xe7\x3c\x2b\xa5\x1d\x6e\xfe\x07\x4f\x0e\x7a\xf9\xf9\xdc\xda\x1b\x6d\xf6\x09\xa3\xc5\x12\xd4\xf8\x38\xca\x43\x30\x3f\x77\x88\xbc\xb9\x5c\xa0\xcd\xb7\x56\x98\x38\xb1\xc6\x51\x99\x6a\x2b\xdc\xbd\x2b\x14\x0c\x48\x03\x4c\x4d\xcf\xd2\xe4\xff\xfd\xdf\xbf\x9d\xf6\x6b\x01\x01\xc7\xec\x3b\x49\x7a\x9c\x6c\x1b\xc9\x21\x4a\x05\x04\x4c\xe4\xba\x6e\xe2\xbb\x05\x16\xa2\x69\x26\x46\xea\x7a\x09\xcc\x9e\x48\x40\x30\x7b\xf2\xca\x0e\xd0\x7a\x23\x48\x78\x0b\xe3\xef\xdc\xc0\x7f\x59\x0a\x98\xdf\xe6\xe6\xb5\x59\xb5\xdd\x2d\x58\x0c\x1b\x97\xee\xd8\x4b\xe4\xce\xdb\xf3\x50\x49\x01\x34\xbc\x2c\x25\xe5\xb7\x04\x0e\x20\x50\x5e\xab\x0f\x41\x2b\x52\xdd\x53\xa1\xf9\x17\xf8\x7b\xfc\xf1\xba\x1e\xa3\xd2\xf4\xfe\x87\x9f\x5f\x07\xa1\x0d\x3b\xb5\xe7\x03\xc3\x31\x53\x26\xc1\xc7\xeb\xfa\xe1\xa2\x5f\x7e\xf8\xf9\x75\x2f\xa2\xcd\xf5\xef\x8e\xf0\x88\x57\xd6\x4d\xab\x36\x0a\x48\x3f\x82\x4b\x4c\x29\x66\xed\x62\x27\x1a\x67\x51\xbd\x35\xa2\xd6\x4e\xe0\x6b\x0b\x2a\x16\x40\x21\x22\xf4\xa5\x67\x65\x8a\xa8\x74\x8e\x17\x4b\x11\x0b\x0e\xb0\x40\xb1\x10\x30\x85\x59\xe8\x50\x40\x63\xae\xcd\x0d\x37\x25\x6e\xc8\x0e\x72\x63\xdb\xda\x46\xa8\xdd\xb4\xba\xc4\xe7\x70\x15\x1c\x37\x0b\xe1\x60\x79\x64\x5d\x8b\x52\x72\x27\xaa\x75\x6e\x7a\xc4\xfa\x13\x15\xb7\xd6\xaf\x6e\xa5\x39\x9e\x83\x49\x6a\x49\x05\x95\x2c\x6b\xbe\xc7\xd8\x5e\x4f\x71\x36\xb8\xf8\xfd\x2b\xb4\x66\x29\x0d\x8a\x98\x25\xc4\x9d\x47\xcb\x68\xa5\x17\x76\x8b\x8d\x78\x83\x14\x74\xb2\xed\x23\xc4\x0c\x57\x16\x44\x73\x38\x0d\xb9\x0b\xa7\xa1\x86\x5d\x4d\x4a\x0a\xe4\x39\x89\x9b\x6a\xcd\x2a\xde\x2a\x58\x2e\x8f\x66\x1f\xa1\x27\xa7\xbf\x7f\xfa\xf4\xf7\x1d\x94\x3e\x55\x94\x78\xf0\xe9\xdd\xa4\xf6\x72\x6b\xf7\x6c\xc7\x70\x96\x09\xa3\x9f\x5f\xa7\x57\xd9\x51\x6b\x05\x9b\xbe\x92\xaa\xbd\x9d\x66\x5f\xd3\x6d\x5b\x9b\xd4\x78\x61\xc5\x6b\x51\x61\x11\xec\x07\x12\x1e\x61\x84\x24\x41\x76\xc5\xce\xfd\x18\xde\x90\x2a\x58\x9a\x1e\x6d\xbc\xdc\x27\xe4\xc9\x12\x15\x30\xfa\x8c\x0e\x8c\x32\x11\xc5\xef\x29\xb7\x14\xd2\x44\x13\x67\xe7\x68\x20\x5c\x8e\x92\x39\x34\x1a\x36\x3a\x0e\xab\xbd\x54\xc9\xe7\x5b\xb2\xff\x09\x19\x00\x06\x9a\x9f\x17\x1b\x29\xb4\x31\x64\x2f\x67\x4b\x96\x18\x4e\x94\x0f\x69\x8e\xf8\xf1\xe5\x8b\xb3\x01\x5b\x34\x69\x0c\x14\x4f\xd2\x4d\x84\x71\x4b\x7c\xcb\xff\x0e\x8d\x76\x8c\x4d\xad\x77\x3a\xa0\x48\x03\xab\xb9\x6a\xb1\x29\x50\x38\x02\x4b\x12\xe1\xa0\x66\x52\xd5\x02\x3b\x0d\x4a\x66\x3e\xb6\x7f\x0f\x80\x67\xef\x5e\x4b\x0e\x99\x94\x5e\x97\x26\xb1\x18\x56\x1b\xa3\xb1\xf2\x20\x2c\xad\xf2\x08\x2c\x40\x3c\x67\xf6\xc8\x26\x30\x2f\xd7\xa1\xc8\x08\xf9\xc9\xbf\x0b\xe1\x56\xef\xde\xbe\xbd\x3a\x0d\xdb\xf3\x24\xfc\x31\xf6\x3a\x1f\x84\x57\xfd\x0b\x7d\x35\xf6\x6b\x06\x5f\xbf\x0f\xd1\x51\x00\x94\x2e\x47\x7d\x9c\x51\x69\x5c\xb4\xb2\x14\x1f\xe0\x46\xb1\xd6\x6d\x8c\x26\xa1\x3e\x4a\xf1\xd9\x98\x0f\x1b\x2a\x98\x00\xe4\x5a\x38\x5e\x72\xc7\xf7\xc4\xb8\x14\xd7\x03\x08\x97\xe2\x7a\x3f\x7c\x4b\x71\x2d\x2a\xdd\x80\x61\x2d\xa0\xdd\xe3\xa5\x6e\xac\x5c\xee\x60\xf8\xbf\x45\x06\xdd\x2b\xea\x2a\x26\x33\xc6\x1d\x12\x55\x1b\xa9\xfc\x82\x11\xe9\x70\x23\xa4\xaa\x3e\x91\xad\xf3\x5b\x2d\x2f\x56\xe3\x94\x1a\x3a\x0e\xed\x51\x76\xeb\x39\x82\x1a\x36\x35\xa2\x18\xff\x67\xec\xaa\x32\x97\xa2\x8a\x19\xba\x4e\x37\xac\xf2\xcb\x9b\x25\x9f\x82\x95\x47\xc5\x2c\x4c\xc2\x1b\xed\xb6\x72\x0e\x79\xe8\xa0\xd0\x05\x63\x10\x4d\x46\x33\x23\x0a\xbd\x50\xf2\x57\xec\xdc\x05\x1d\x39\x0a\x8e\x49\x2c\x21\x4c\xb8\x7b\x93\xc4\x3c\x1f\xb8\x07\x5f\x77\x0c\x58\x5b\xdc\x80\xe7\xf4\x24\x3b\x22\x27\xed\x31\x6c\x99\xa5\x28\x56\x58\xba\x84\x28\xca\xba\xc9\x99\x85\xd6\x55\xa9\x6f\xd4\xde\x3e\x59\xcf\xdc\x37\x7e\xd5\xf0\x85\x98\x62\x8a\xe6\x67\xeb\x42\xfa\x79\x18\xce\x08\xaa\x41\xe2\xcf\x1e\x3f\xe7\x6e\x9c\x57\x98\x7c\x4c\xc8\x7c\xda\x31\xa1\x97\x95\x08\x8b\x3a\x06\x53\xe0\x6e\x04\x81\x19\x51\xa0\x4a\x1b\x79\x3a\x78\x60\xc2\x7a\x50\x57\xb4\x1c\x03\x4f\x86\xae\x9a\x9d\xaa\xbd\xe4\x59\xec\xc8\x2b\x39\x9a\xb5\x54\xf7\xc5\x32\x78\x6d\x77\x00\xe6\xb7\xf7\x06\xbc\x91\xe4\x35\x04\x38\x6c\xaf\xae\xe2\xb9\x3d\x60\x9b\x97\xa5\x56\xf6\xc4\xcb\xc6\x89\xff\xbf\x2b\x7c\x7f\x5b\xcb\x19\x19\xb7\x7d\xd8\xc6\xbc\x28\x34\x5c\x4d\x82\x45\x14\x16\x02\x8f\xa6\x09\x7b\x99\x31\x28\xd1\x1f\x8c\xae\x41\xb0\x4f\x3d\x8a\x53\xda\x9e\x50\x9b\xc8\x36\x5a\xe5\xe0\x20\x3f\x00\x4a\xae\xf4\xce\xe3\xd8\x2b\x8b\x31\xce\x56\x62\x7d\x82\x9b\xb5\xe6\x4d\xa8\xc9\x17\x0e\x8c\x69\x18\x0e\xbc\xde\xa1\x24\x50\xdc\x36\xa8\x6d\x4f\xd8\x59\xb8\x41\xd3\xae\x64\x6c\xda\xb5\x27\x50\x24\x6e\xac\xac\x11\x2a\x32\xf9\x1d\x13\xc1\x91\x26\xc6\x3c\x77\x7a\xad\x1a\x93\x6a\x2b\xa9\x56\x04\x14\xf6\xac\x50\xce\xac\x83\xf8\x44\xb0\x18\xff\x19\x26\x99\x9b\x31\x62\xfd\xc7\xe4\xc2\x59\x45\xd5\x67\xa7\xce\x14\x9f\xdc\x54\x8b\xc8\x41\x44\x5e\x9a\x6e\x5d\x16\xb2\xed\xda\x70\x45\xc2\x1a\xb8\xe1\x95\x98\x01\x01\x93\x82\x1a\x25\xa8\xa0\x42\xfd\xa6\xa8\xf3\x85\x54\xf2\x4e\x95\x2b\x3f\xf4\xbc\xad\xaa\x08\xac\x7b\xa6\x50\x92\x1f\xc2\x43\xb3\x09\xd4\x95\x3a\x7b\xfd\xf2\xd5\xdf\x7e\x7c\x73\x76\x75\xfe\xf3\xcb\xbf\x3d\x7f\xfb\xe6\xfb\xf3\x3f\xfd\xf4\xee\xec\xea\xfc\xed\x1b\xff\xc8\x0f\x97\x6f\xdf\x44\xae\x4b\x65\xa9\xd3\xec\xb3\x7a\x71\xb8\x24\x9e\xc4\x31\x8e\x15\xf0\xe9\xe2\xb1\x61\xcd\xc0\xfa\x33\x93\xa4\x01\x7e\x45\x36\xdb\x4d\xad\x3a\xd9\x17\xc3\x1c\x69\x51\x62\x41\xa8\xc7\x70\x4d\xd9\xbc\x42\xec\xb8\x18\x74\x11\x0a\x57\x96\x6c\x9d\xeb\xa6\x12\x6e\x63\xc1\xbb\xab\x97\x23\xb0\xe4\x4a\x89\x6a\x9c\xf3\xda\xee\xcb\xf4\x2b\xba\x8f\xd0\xdb\x64\x9c\xe2\x36\x24\x5b\xe9\x79\xf7\xda\x48\xcb\xea\xb1\x27\x39\x41\x34\xb1\x50\xd5\x2a\xc0\xa1\x7b\x8d\x36\xc8\x2c\xc8\x5f\x3f\xbd\x3b\xb7\x83\x18\x4b\xb5\xfa\x6c\x7c\x4b\x61\x9d\x54\x51\xd3\x7a\x30\xa4\x83\xb5\xfa\x37\xa1\xf3\xe0\xb8\x9f\x40\xad\xf0\xf2\x7d\xc9\x15\x1c\xa3\xa1\x36\x22\x92\x2b\x1a\xec\xf7\xa2\xd7\xb5\xf8\x64\x62\xc1\xbb\xf0\xbc\x1d\x6e\xae\x16\xaa\x15\xd9\x76\xe6\x5f\x9f\x09\xf4\xc1\x6c\xc7\x3c\x03\xb8\x89\x36\x3b\xa2\x3b\x21\x4f\x07\xdf\xcc\xe8\x95\x30\xa9\x86\x71\x70\xba\x7a\x7d\xfc\x80\x04\xd8\xc1\xf1\xc0\x84\x3f\x65\x95\xf6\x9a\x6e\x63\x74\xd9\x16\xe2\x0e\x76\xfe\xd4\x59\x76\xa6\x31\x97\x95\x13\x86\x16\x6e\x1c\xd8\x76\xef\x4b\x10\xbe\x4e\xdd\x20\x00\xa1\x5e\xe5\x9f\xa5\xe0\xa5\x30\xec\xa0\x10\x63\x3a\x9f\x97\xd2\x3a\x6d\xd6\x07\x21\x47\xf6\x52\xaa\x82\xa4\x2f\x3d\xbc\xe4\x96\xcd\xbc\x9a\x1d\xf2\xd0\xa4\x62\x4a\xdc\x08\xd3\x69\x99\x40\x12\x74\x94\xe1\x10\x73\xe1\xb7\x24\x19\xc4\xf4\x14\xa9\x56\xe3\x99\x54\x65\x10\xd9\x77\xda\x9c\x50\x97\xa6\xc7\x87\x42\xf0\x38\x00\x04\xeb\x44\x12\xec\x97\x52\xad\xbe\xcb\x86\x60\xe9\xea\x93\xb2\xfd\xc3\xc9\x10\x8f\xc6\x0e\x64\xb0\x48\x5b\x04\xbf\xa8\x04\x8c\x32\xc9\x4b\xa8\xdd\x75\xc8\xee\x84\xc4\x8e\xc4\x6d\x21\x1a\xd7\xad\x4c\xdb\xad\x4d\x2b\xa9\xba\x91\x1f\x21\x4d\x0d\xa7\x71\xfc\x89\x37\xe7\xec\xe2\x1c\x9d\xe5\xa0\xcc\x86\x03\x39\x53\x01\x36\x94\xbb\x50\xb1\xe7\xcb\x28\x79\x21\xce\x71\x6b\xd8\x5a\xf0\x58\x01\x89\xfa\x35\x80\xce\x37\xca\x06\x07\xfa\x20\xd8\xd1\x96\x82\xc1\x59\x60\x66\x2a\x65\x82\xbb\xe1\x1d\x0d\xc1\xd5\x76\xe8\x01\x69\x91\xd9\x21\xc6\x74\xd7\x64\x47\xd9\xc5\x73\xec\xf4\xf8\x57\x61\xf4\x31\x16\x41\x9a\xb5\x8e\x9a\x60\xce\x05\x77\x18\x5d\x66\x04\xd6\x57\x37\xa2\x12\xd7\x5c\x65\xec\x83\x82\x04\xce\x88\x23\x7b\xec\xb9\x14\x1a\x9b\xaa\x6e\xa0\x61\x30\x48\x51\xb0\xe1\x3f\xbc\xf6\x16\x6e\x4a\x9e\x3a\x60\xed\xdf\xcb\xb4\xdb\x89\xcd\x0a\xcb\x90\x81\x22\xa7\x50\xbc\x7d\x63\xbd\x41\x7f\xef\x16\x8e\x4d\x97\x0d\x9f\x64\x0f\x4f\x88\x93\x27\xa5\xb8\xce\x83\x07\x56\x77\x3c\x96\x0f\x76\x3c\x61\xec\x5d\xb0\xf5\xe5\x08\x95\xba\x68\x63\xb5\xd1\x70\x7e\x0d\x74\x7c\xdb\x46\x8f\x5a\x38\x13\x6a\x87\x7f\x2e\x41\x10\xd6\x36\x8a\x64\xf5\x48\x63\x54\x21\x9e\x19\x86\x4d\x8b\xa6\x9d\xd2\xc7\x7b\xcf\x3a\xce\x37\x99\xd8\x76\xcd\x1a\x45\xe3\xae\x38\x86\x4b\x41\xbe\x3a\x90\x11\x50\x63\x36\x4e\x81\xcc\x66\xda\x40\x6f\x8a\xac\xea\xca\x11\xd6\xc3\xc3\xc3\x31\x33\xb4\x6c\x12\xea\x38\xd5\xdc\xbd\xd0\xe5\xde\x53\x0d\xc6\x83\x3b\x16\xb8\x96\x0a\x64\xc3\xce\x9a\x39\x79\x2b\x8f\x64\x4d\xb9\x88\x25\x73\x52\x60\x41\x10\x83\xdc\x41\xa5\xc9\x50\x76\x32\x9b\x60\xaf\x0b\xcf\xa1\x65\x4f\x9e\x78\x41\xf4\xe4\x49\x76\x52\x8d\x58\x2d\x38\xc9\xd3\x01\x1d\x48\x5a\xb4\x5a\x05\x73\x06\xd9\xab\x98\x87\x83\x52\x4a\x69\x97\xb9\x2c\x72\x37\x41\x6a\xe8\x01\xbe\xaf\x61\x72\x46\xb8\x43\xfc\xb3\x95\x9c\xfc\x76\x3f\x72\x9e\x29\xd6\x36\x8d\x30\x0c\xa3\x94\xa3\xdf\x74\x80\xb2\xa4\x07\x24\xb3\x00\xd8\x36\xaa\x4a\x54\xd9\x26\xde\x20\x6b\x60\x0a\xaf\x2b\x79\x29\xe8\xc9\x53\xf0\x86\xac\xb3\x00\x18\xd9\xcf\xa6\x1a\x8c\xd6\xf1\xaa\xa2\xf7\x91\x26\x61\xd1\xf6\xd9\x53\xdb\x68\x62\x74\x55\xe9\xd6\x8d\xcb\xfd\x2f\xc5\x41\x7b\x74\x9a\x2d\x0c\x2f\xd1\x47\x64\x97\x72\x0e\xf5\x80\xe6\x60\x89\xa2\x54\x44\xee\x84\x75\xec\x9d\xb8\x96\x36\xc4\x7e\xdb\xd0\x8a\x98\x8c\xaa\x38\x7e\xac\x30\xba\x3d\xcf\x14\xde\x0e\xf1\x8d\x9d\x12\xb0\x9c\xfd\x49\x57\x3c\x6a\x6a\x50\x0d\x77\xf2\xa2\x0d\xbd\x2b\x70\x1e\xcc\x08\x2a\x53\x4d\xb1\x53\x50\x53\x89\x0a\x63\x52\xb6\x10\x94\x6c\x01\x54\x3b\x8d\xd6\xa4\x95\x33\x59\xc9\xbd\x72\x9f\x2f\x85\x83\x94\xac\x29\x55\x9a\x83\x16\xd2\xd5\x74\xd4\x57\x2f\xd8\x4c\x14\xba\xc6\x1e\x0d\x06\x82\x2d\xc2\x2f\x51\xb3\x26\xbd\xdf\x93\x77\x84\x27\x24\x39\xda\x20\xea\x2b\x14\xe0\xa1\x30\xb4\xde\xa1\x73\x92\x90\x9e\x62\xa8\x75\x62\x96\x1e\x26\xf7\x93\xcd\x77\x49\xe5\x9d\x1a\xc2\xe1\xbe\x95\x92\xfb\xc4\x0a\x15\x93\xd3\x85\x11\x23\x02\x2c\x5b\xea\xaa\x3c\x65\xec\x49\x47\xe3\x82\xf0\x9d\x58\x40\xb0\x67\xaf\x7a\x02\xea\xc7\x9e\xa5\x97\x49\x63\xc2\x13\x2d\xd6\x4b\xde\xa7\x8a\x72\x38\xc4\x06\x6b\x29\xa7\x0a\x1c\xd4\x8e\xef\x01\x5d\xc5\xaf\xa8\xe1\xdf\x1d\x91\x4d\x03\xdd\xcb\x32\xc4\x62\x97\x6b\x76\x14\xd2\x3a\x0a\x5d\x69\x34\x0c\x23\x33\x1c\xa3\x0d\x31\xf4\x16\x9c\xf1\x62\x25\x54\xc9\xd0\xa9\x81\x75\x70\x66\x6b\xf6\x3f\x5a\x6e\x56\xad\x45\x85\xf6\x06\x94\xd9\xbe\xa1\x34\x72\x1d\x76\x14\x09\xd1\x65\xbf\xe0\x9b\x13\xa9\x4f\xc0\x73\x69\x4f\x68\xa8\x47\xa0\xb5\x02\xad\x76\xa3\xe1\x9f\x0a\xf5\xe1\x2b\xbd\x60\xba\x75\x4d\x9b\xf7\x0e\x43\x4a\xef\x21\x82\x5e\xe9\x85\x65\xb5\xb0\x10\xd9\x1b\xdf\x8a\x0c\xe7\xf5\x9d\x3d\xa0\x9c\x95\x1f\xbd\xac\x75\xd9\xb2\xa2\xaa\x74\x94\xd7\x7b\x3c\x7f\xf3\xfd\xdb\x3c\xe0\xe2\xa3\xdd\x23\x04\xf2\x2d\x4c\x2d\x80\xb6\xc1\x5c\xda\x03\x33\x6e\x8c\x70\x6e\x0d\x91\xf1\xbb\x53\x53\xe8\x76\x7a\x80\x2f\x61\x38\x97\x54\x8b\x83\xe0\x91\x00\x7b\xac\x1f\xed\xab\xa4\x0d\x78\xf9\xfc\x90\xf5\x6e\x5e\xc3\x08\xdd\xfb\xe9\x86\x0d\xbe\x6f\x8d\xd8\x88\xa0\xf0\x54\x37\x7e\x29\xb3\x9b\x67\xb7\xbc\x6d\xa9\x71\x75\xc0\xfc\x02\x95\x76\xe3\x61\x1b\xa4\xd9\x13\x9c\xed\x13\x80\x48\xb2\x0f\xee\x8e\x5a\x41\x08\x2a\x97\x8a\x85\x4a\x1a\x98\x69\x78\x98\xf7\x79\xe8\x7a\x52\x6e\xd0\xcf\x90\xdf\xa6\x11\x7c\x32\x3a\x42\xe6\x01\x8c\x83\xc1\x7f\x6c\xea\xe5\xe9\xd1\x01\x3e\x77\x5a\xe9\x62\x05\xab\xe0\x44\xe5\x67\x5f\x9f\xce\xb4\xb3\x07\xc7\x93\xc9\x64\x3a\x61\x6f\xde\x5e\xbd\xc4\x8a\x96\xa9\x7e\x0d\xe3\x65\x69\xd1\x16\xc6\xa1\xd6\x3c\xf8\xaf\xa1\xad\xce\x66\x76\x63\xbf\xe4\x48\xe8\xc7\xf1\x15\x9d\x80\x46\xf0\xf2\xe4\xc6\xc8\x68\xb8\xaf\x79\x63\xa9\x2b\x00\x2f\xa9\x5a\x24\xd2\xc0\xf8\x63\xba\x16\x41\x53\x40\x93\x5c\x6a\x96\x96\x0c\x1a\x2c\x8e\xe6\x96\x5c\x25\xb3\xe3\x86\xf5\xa1\xa3\x09\xfe\xb3\x17\xb3\x91\xaa\xa8\xda\x52\x8c\x4b\xcf\x07\xdc\xf9\x3f\x3a\x25\xd3\x77\xc6\x52\x2b\x9c\x05\x66\x39\x04\x4f\xd4\xa8\xeb\xaf\xe4\x8a\x57\xeb\x5f\x49\x61\x22\x53\x7e\xa1\x4b\x91\x3c\xe8\xbc\x2c\xbb\xf5\xcf\x63\x7b\x03\xd0\x3f\x11\xb7\x64\xa0\xa7\x3e\x2a\xd9\x3e\x98\x6e\x30\x36\x76\x67\x4a\x9a\xae\x62\x53\xf0\x50\xd3\x2f\x80\x6c\x3f\x73\x34\xe5\x55\x42\xc2\xdb\xbc\x83\x53\x37\xff\x37\xdc\xbc\x07\x2d\xa4\x41\x3c\xec\xdb\xa7\xee\x0d\x79\xa4\x29\x52\x15\x37\x44\x56\x5f\x39\xe3\x2f\xeb\x62\x1d\x0f\x5d\xac\x52\x31\xd2\xa4\x5e\x1e\xfc\xb7\x8c\xc1\x01\x83\xff\xf4\x4a\xf0\xea\x60\x32\x3c\xce\x49\x25\xb8\xcd\x62\x1b\xe2\xb0\x61\x8a\xbb\x07\xbf\x7b\xd8\x21\xc2\xb8\x50\xaf\x6d\x47\x58\xed\xba\x01\x84\x07\x44\x2f\xcb\x9a\xd7\xfa\x71\xc0\x7e\x77\x80\xd6\x95\xd7\xbc\x39\xf0\x5b\xf0\xe0\x95\x9f\xda\x41\x2c\xf5\xdd\xc1\x17\x7f\xeb\x94\xd7\xf0\x7a\xfa\x78\x25\xf6\xb9\x67\xbc\x82\xf4\xc9\xc1\x25\x92\xa5\x50\x4e\xce\xd7\xd8\x95\x03\x1a\x77\x69\xe5\x44\x32\x80\x03\xf1\x86\x50\xc2\x36\x3d\xd4\xb3\x47\x9b\xc5\x49\x46\xd2\x01\x4c\xe1\xb6\xba\x37\xae\xd9\xdd\xf6\xbe\x18\x13\xae\x9b\x8b\xde\x17\xfc\x1e\xbb\x64\x75\xae\x29\x0c\xe5\x81\x22\x7e\x5f\xa3\xb4\xdf\xd1\x26\x5a\x57\xad\xbf\xe6\xd5\xd4\xaa\x43\x6f\xf4\x2a\x86\xc9\x5d\x3c\x8e\x1e\x00\x38\xaf\x7d\x5d\x66\x87\x29\x08\xbc\x7b\x1a\x80\x14\xa5\x88\x98\x24\x07\x30\x68\x04\x6f\x12\x43\xb1\xbe\xd0\x12\xef\xb6\xc1\x18\x0a\x4c\xd6\xf9\xe9\xea\xfb\xf1\xb7\x99\x36\xc4\x41\xc6\xaf\xe1\xd1\xc6\xe8\x02\x4d\x04\xb3\x75\xbc\xd5\xa0\x61\xfc\xb9\xe7\xae\xdb\x58\x2d\x5f\x95\xcc\x19\x19\x81\x36\xdc\x90\x61\x21\x5a\x40\x81\x5b\x00\x33\x84\x0d\x3d\x90\x6b\x5e\x8a\x54\x6a\x9f\x56\x36\xdc\x50\x63\x30\x7a\xde\x54\x10\x04\x1d\x06\x35\x63\xde\x1d\xde\x15\xab\x75\x0a\x1d\x7c\xe7\x75\xa6\x09\xbb\x84\xb2\xb3\xa7\xec\x7d\x24\xcf\xdf\x91\x3c\x1f\x4e\xfd\x4a\xbc\x3f\x59\x89\xf5\x87\x70\xba\x60\xd3\x66\x08\x2b\x8a\x46\x0e\xdb\x0d\x18\x83\x1f\xfd\x44\x57\x62\x1d\x63\x82\xc0\x75\x30\xf8\x3c\x01\xf6\x0f\x53\xb9\x77\xf0\xd2\x89\xf2\x70\x40\x98\x7e\x02\x3b\x64\x5d\x11\xfc\x42\x78\x16\x9d\x49\xc5\xcd\x9a\x36\xbe\x3b\xbe\x9b\x47\x08\xbf\xab\x4e\xa7\x87\x01\xfe\xc0\x66\x3a\x41\x60\x7b\x61\xbe\x6d\xbc\x1c\x64\xee\x76\x87\x35\xec\xc6\x45\xf3\x68\x91\xaa\x34\xc5\x33\x51\xdf\x1e\xcc\x3e\x08\x91\x78\xe9\x88\x76\x94\x62\xb6\xe7\xba\xbe\xff\xef\x1e\xd0\x87\xd1\xf0\xc2\xe6\xc6\xb3\x7c\x79\x47\x7b\xae\xed\xc0\xaa\x66\x1b\x01\xa6\xd0\x7b\xb3\x4f\x8f\x9c\x09\x48\xbe\xdd\x9f\x05\x2e\x84\xb1\x90\x96\xe2\xd8\xcf\x00\x83\x3d\xaf\xb8\xac\x43\x95\x66\x92\x97\x19\xc5\x9a\xeb\x02\x86\x3c\x89\xb9\x34\x27\x40\xa6\x64\x4b\xd1\x8d\x50\xbc\x91\x0f\x27\xf1\xfd\x8f\x67\x17\xe7\xec\xc5\xe5\xab\xbb\x1b\xed\x40\x3c\x6d\x6c\x48\x92\xf7\x6e\x05\x9a\x50\x5b\xaf\x00\xce\x73\xcc\xe3\x91\xfe\xfe\xae\xb4\xe7\x72\x5f\x2d\x3b\x17\xac\xa5\xae\xa2\x0e\xe2\xe7\x1c\x54\x41\xa2\x43\x5a\xc7\x9b\x07\x6d\x96\xff\xf6\x26\x35\xca\x17\xca\x92\x2b\x8c\xba\x98\x61\xe0\x7e\xde\xb7\x65\x26\x2a\x9d\x82\x37\x65\xef\xe0\x9e\x09\x70\x21\xd2\x5b\x78\x94\x70\x65\xe7\x10\x67\xa8\x94\x76\xd4\xfc\xd5\xff\x42\x95\x32\x06\xba\x2a\x69\x0a\x2f\xa4\x1e\xe5\xbd\xd6\x31\x8f\x80\x35\xd0\x11\x37\xce\x66\x7c\x0f\x16\xa1\xcb\x4e\x4e\x2e\x14\x02\x81\x94\xa6\x93\xaa\x47\x63\x21\x35\xef\x3f\x0c\xad\xc2\xe6\x08\x31\xa0\xbd\x9c\x3d\xa0\x39\xf6\xe2\xc5\x77\x3b\x2c\x42\x17\xba\x7c\x21\xad\x69\xe1\xa5\xef\xda\x72\x21\x5c\xf7\x60\x0e\x2e\xa5\xf3\xc7\xd7\x44\xaa\x96\x6a\x3c\xd4\x6d\xe5\xae\xe4\xec\x5e\x0f\x90\xa1\xd9\xc3\xf6\x05\xdf\x90\x75\x74\xb7\xe8\x8e\xc2\xa8\x50\x18\x57\x4c\x5c\xcb\x22\x78\x9a\xfa\x27\xfb\x66\x4f\x90\x5e\x2f\x90\x09\x7b\xab\xc8\x2e\x07\xbd\x65\xa0\x1f\x43\x67\x52\x54\x1d\xa1\xd7\x58\x26\x46\x58\x47\xed\xa0\xef\x98\x1c\xee\x42\xf3\x25\xe8\x32\xd0\x93\x06\x88\x11\x4f\xfd\xcf\x23\x49\x96\x97\xff\x75\xf4\x7a\x6c\x52\x45\x5a\xd4\x9a\xa9\x9c\xcf\x31\x52\x32\xd1\xb0\x4f\x2f\xa4\x62\x07\x46\xd0\xad\x37\x28\x19\x77\x2e\xed\xd9\x87\x3b\x3b\x7a\x19\x9d\xe0\xdd\x99\x81\x56\x8f\xe9\x41\xd0\xc6\x2b\xb9\x58\xb8\xb5\x72\xa1\x7a\xfd\xd9\x61\x1a\x09\x90\xee\xfd\x3c\x61\xe7\x8a\x15\x74\x53\x48\xcf\x49\x9b\xa5\xec\xc4\x7c\x24\xa0\x2a\x04\x35\x04\xdb\x26\x65\x9e\x25\x25\x35\x40\xa0\xc0\x35\x0a\x1f\x82\x28\x6f\x32\xa7\xa2\xe6\x32\x6f\x2b\x46\x2d\xfa\xc5\xad\xb3\xa8\x7c\x92\x15\x56\x18\x71\x68\x99\xd2\xb1\xeb\x31\xb9\x75\x18\xa7\xd6\xc0\xbd\x0b\x5e\xe0\xc5\x88\x3d\xfa\xc6\xb4\xea\x50\x97\x91\x76\x89\x78\x5a\xf4\x9c\x5a\x68\x94\x3c\x62\x96\x02\x0b\x71\x68\xcf\xa4\xf5\x4c\x80\x89\x2c\xe5\x52\xcb\xda\xf3\x9f\x11\x0b\x69\x9d\x59\x3f\x86\x9a\x75\xb8\x3a\xe3\x3c\xdb\x7a\x47\x79\xb9\x8d\xf5\x3c\x82\x22\xd7\xc7\x89\xb6\x31\xea\x6b\x80\x57\xf2\xb1\x17\x95\x9e\x75\xd2\xb3\x86\xc7\x3c\x57\x25\x95\xa3\x90\xf3\x2e\xd8\x14\x45\x12\xf4\x1d\x04\x09\xc9\xbc\x68\xd4\xe3\x36\xc8\x5b\x3d\xa7\x5f\x93\x1d\x36\x0a\x0a\xbf\x25\xef\x1f\x80\xb8\x51\x6b\xaf\x14\x4e\x14\x59\x33\xfd\xbc\x87\x8a\x9c\x0f\x6c\x81\xae\x00\x09\x93\x38\x92\xc9\x22\x15\xbe\xcb\x39\x15\x1c\x25\xc7\x99\x94\x81\xdc\xb3\x87\xd2\x0f\x1a\x5d\xf6\xf4\x83\x65\xea\x30\xde\x31\xa6\x6f\x1c\xff\xa1\x1f\x69\x27\x3e\xe0\x42\x97\x97\x8d\x28\xae\x44\xed\x31\x16\x10\x0e\xd1\x16\x31\x5f\x29\xa5\xa3\xe4\xe0\xa6\x13\x2f\x1a\x26\x8d\x2e\xe3\x7b\xa8\x79\x48\x51\x95\xa3\x94\x0d\x93\xbf\x93\x95\x6d\xc3\xf0\x18\x7a\x33\xd4\x7d\xa0\x0e\x6e\xb2\x60\xb5\x30\x0b\x6a\x61\x18\x32\x90\x7b\x11\xb5\x5e\x8e\x85\x96\xe3\xbd\xfa\x09\x78\x27\xce\x02\x1c\x43\x67\x5c\x31\xf2\x57\xed\x36\x16\x67\x87\xd9\x67\x72\x75\x9a\x01\x41\x3b\xe1\xd6\x7e\xa5\x8d\xd1\xb5\x70\x4b\xd1\xde\xbb\x6e\xe8\x7d\xdc\x83\x17\x71\x94\x5e\x97\x0e\x88\x0a\x49\xbf\x42\x37\x08\xee\xa0\x90\x7b\x70\x41\x20\xdd\xce\x1d\x9e\xa9\xc8\xb5\xfe\x2d\xbf\xdc\xaf\xb5\x92\x4e\x9b\x69\x54\x1a\x53\xd1\x0e\xdc\x25\xa1\xcc\x64\xe8\xa3\x66\x78\xd3\xf7\xf1\x05\x1f\x7d\xee\xe8\xcb\x11\x0e\x7b\x1a\xad\x75\x18\x07\x17\x2d\x30\x50\x58\x13\x5f\x7b\x2d\x0b\xa3\x2f\x90\x5e\x00\xf2\x35\x3e\x3a\x61\x7f\x39\x7b\xf7\xe6\xfc\xcd\x9f\xe8\x92\x08\x57\xe5\xac\xcd\xfa\xd0\x34\x82\x53\x06\x19\x3b\x84\x06\x64\x89\x80\x85\x36\x42\xdb\x93\xb4\x7a\xe3\x80\xe6\xfb\x8b\x7c\x45\xa1\x5e\x10\x7c\xff\x21\x1c\x5f\x29\xb3\x32\xe5\x04\xe2\x0d\x81\x02\xaf\x44\x39\x61\x7f\xd5\x2d\x10\x0d\xc2\x20\x1b\x5d\x8e\x6b\x42\x31\x9c\xbd\x54\xe5\x2b\x1e\x7f\x1b\x2b\xec\x34\x9c\x6e\x90\xb5\xae\xc9\x05\x9e\x3d\xf4\x36\xa7\x2a\xda\x85\xfb\x10\xb6\x74\x33\x79\x04\x7e\xc4\x8c\x60\xfb\x38\xf6\xc8\xd4\x36\xcc\x09\x7e\xbc\x20\xbd\x07\xda\xaa\x0e\x0c\x79\xff\xeb\xe2\xf0\xc8\x08\x66\xa8\x50\x5a\xc6\x0f\x29\x95\x01\x91\xca\xce\x8e\xb6\xaa\x28\xe9\xf2\x21\xef\x98\x6d\x55\x85\x7e\x14\xc8\x36\x16\x13\x08\xfc\xf0\x21\x39\x93\xcc\x10\x8d\x2e\xf3\x1c\xf0\x7c\x44\xf2\x95\x3b\x23\xc5\x75\x5f\x0c\xa3\xea\x15\x82\xa4\xc4\x2d\xda\xc0\xa2\x2e\x86\x72\x21\x1f\x2e\xf4\x93\xcc\x35\xf7\x54\x62\x42\x9b\x11\x28\x9f\x5e\xed\x5d\xeb\xf6\x30\xcb\xa1\x44\xd1\x94\x67\x8f\x62\x9b\xf4\x38\x28\x80\x4d\x98\x05\x14\xc2\x04\xa7\xd9\x21\x75\x41\x04\x9f\x52\x65\x37\x5e\xc7\x5c\xd5\x4c\x6b\xf7\x68\x03\x50\x98\xe4\x66\xe1\xe5\xcd\xa2\xcb\x6b\x2f\x19\xe2\x25\xfe\x93\xd0\x05\x21\x0d\x09\xf7\x16\x1c\x46\x20\xaf\xfb\x74\x95\x64\xe6\xa6\x90\xc1\x50\x76\x02\x37\x54\x9c\x78\xa9\x05\x74\x03\x46\x6d\x7d\x00\x1b\x3f\x41\x30\x4c\xc2\xfc\x46\x88\x3e\x57\x71\xab\xfb\x0d\x8d\xeb\x1f\xfc\xf5\xff\xe0\xb2\x85\x1a\x0a\xed\xe9\xee\xee\xb3\x26\x18\xd8\x29\xbc\x9d\x98\x06\x02\xb9\xcf\xe7\xac\x12\x73\xc7\x40\xe1\x46\x4c\xfa\x5e\xfb\x60\x8c\xe7\x2b\xa1\x92\x22\x3a\xc8\x72\x69\x7d\xba\xdd\xb8\xf2\x68\x08\xbf\x1e\x63\x8f\x9a\x30\x21\x24\x62\xcf\x9a\x72\xe1\x9c\xe6\x1b\x5a\x37\x15\x14\x07\x72\x96\x51\xe4\x50\x44\x29\xa5\xa1\xd0\x34\xd2\x90\xf1\x20\xa6\x22\x9c\x39\x66\xd3\xd0\x45\x99\x19\x1d\xfd\x5e\x69\x3c\xc8\x37\x6c\x78\x74\x22\xed\x8e\xcf\xf9\xcc\x42\x42\xbd\xf2\xbb\xf1\xba\x12\xe9\xbd\x21\xf0\x92\x95\x02\x4f\x54\x3f\xd9\x75\x23\xd8\xb4\x5b\xd9\xb5\xd4\xc5\x4a\x18\x04\xff\xd1\x6a\x95\xc9\x71\x0a\x48\x7c\x18\x43\x03\x68\x87\x14\x2c\xb9\xa9\x1a\xba\xec\xc7\x50\x20\x8a\x82\x95\x86\x6b\xc3\x53\x40\x15\x7b\xae\xeb\x46\x56\xe4\x52\xe3\x8c\xc2\x62\x51\x79\xc6\x66\xe1\x72\x22\xba\x51\x2d\x0d\x2f\x56\x7e\xe1\x3d\x75\x9e\xe1\x0b\x14\xd3\x22\x29\x7e\xcc\xb6\x0d\x15\xcd\xf0\x82\x25\x94\xaa\x19\x31\x6e\xd9\x8d\xa8\x2a\xff\xef\x5f\xcf\x5e\xbf\x02\x73\xce\x7f\xbd\x7e\xd5\xf1\x85\x4c\x82\x02\x4b\xe2\x8b\xb4\x3b\xee\x58\x25\xb8\x75\xec\xdf\xfe\x24\xbf\xf3\x6b\x83\xcd\xee\x48\x8b\x85\xbd\xd9\x89\xa7\xa2\x89\xcc\x5a\xe9\xef\x26\x64\x82\x01\x90\x64\xc3\xea\xb0\xe7\x85\x3f\xef\x48\x3f\x83\x57\x00\x5e\x27\xdb\x23\xfb\x2d\xb6\x9d\x4e\xa7\x51\xc7\x04\x1b\x56\xff\x78\x84\xe6\xc7\x25\xf7\x24\x55\x50\x5a\x1f\xd1\x4e\x86\xc8\x47\xa1\xa4\x65\x0b\xde\xd5\x95\xee\xdf\x21\x91\x98\xf4\x02\x41\x5e\xad\x1b\xb1\x45\xd3\x0a\xdc\x4c\x83\x63\x52\x6c\x2a\x04\x3a\xe7\xd6\x8d\x3f\x72\x83\xc5\x40\x89\x0b\x07\x1a\x2c\xd1\x53\xc7\xc9\x80\x36\xd3\x6e\x99\xbf\x0f\x36\xc5\x00\xc0\x13\x25\x6a\x22\x23\xe6\x6e\x74\x47\x6e\xff\x28\x63\x0c\x77\xd7\xc5\x4c\x8a\xe7\x28\x95\x9e\x8a\x20\x57\xd2\x85\x56\x14\xbd\xe6\xaf\xf8\x5c\xc4\x24\x37\x20\xab\x02\x7b\x5e\x90\xce\x84\xc1\x02\x52\xcd\xab\xd6\xbf\x9d\x7c\xb7\x55\x9b\x0b\xe6\x50\x7b\xcc\x0f\x49\xcc\x18\xa4\x5a\xbf\x32\xc5\x0a\xe4\xc7\x40\x21\x92\xb9\x34\xd6\x75\xa8\x1e\xed\x20\x68\xb8\x8c\x9e\xe1\x01\x19\x1e\xb4\x35\xa5\x53\x03\xf6\x55\x30\x81\xd6\xfe\x6e\x2f\x36\x0a\x64\xe2\x93\x59\x5e\x68\x10\xd1\x0f\xa8\x0b\xbf\x0b\xa7\x40\xa6\x08\xb7\x0d\x7b\xcd\xaf\xb1\x57\x4b\xa8\x97\x71\xde\xb1\x25\x62\x5a\x09\x3c\x44\xc2\xa9\xd1\xd6\xeb\xf6\xeb\x3b\xcc\x06\x46\x78\xd5\xed\x21\x4d\x06\xef\x60\x84\xe1\x98\x23\xec\xa6\xd8\x2d\x48\x4f\x28\x45\xdb\x8b\xb0\x99\xc1\x25\xb3\x04\xd7\x82\xea\x96\xe1\x2d\xe0\x97\x56\x16\xab\xf0\xae\x9e\x87\x50\x1a\x08\xed\x5f\x87\x3a\x24\x29\x5e\xf8\xab\xe4\x5f\x81\xe8\x1b\x10\x82\x94\x02\x4e\x4d\x80\xc8\xf8\x2c\x2d\x95\xa4\x12\x46\x42\x6e\x49\xc5\x20\x1b\x3e\xe5\x99\x84\xf4\xf3\x68\xc2\xa1\x03\xa6\x1b\x68\x13\xc2\x78\x06\x67\xc8\x36\x28\x95\x5d\x9a\xf1\x0e\x92\xb5\x01\xbd\x0a\xb5\x41\x53\x50\x6f\xd4\xe3\x7a\xb8\xf9\x81\x35\x12\x0c\x4f\x19\x38\x74\x43\xbf\x86\xd8\x25\x17\x0c\x07\x52\x85\x6a\xa0\x01\xaf\xd4\xa5\x29\x5d\x91\xa4\x65\xd6\x89\x26\x6e\xbb\xd2\x4b\x84\x4d\x05\x33\x11\x7d\x44\x74\x06\x81\x70\x1d\x4e\xc0\x90\x9f\xd1\x70\x6b\x53\x0c\x69\x38\x09\x36\x3a\x83\x7e\x45\xf6\xd9\xbc\x3b\x68\x96\x2f\xc3\xe7\x2b\x1e\x53\x38\x8e\x00\x7e\xf0\xd4\xa4\xd3\x9e\x8c\x49\xb5\xf6\xe4\xa1\x1c\xe5\x8d\x0e\xa3\x77\x76\x17\xc5\x85\xdb\xe8\x28\x4a\x5f\xe3\x3f\xe3\x86\xbb\xe5\x33\x3c\x68\xfc\xfe\x19\xc7\xec\xb1\x8d\x27\xb1\x4a\xf7\xb3\x03\x2a\xee\x33\xd6\xf3\xb1\xbf\x19\x8d\x57\x7e\x3a\xa7\xff\xf1\xf4\x3f\xbe\xf9\xa7\xef\x1c\x1a\x28\x45\x3a\xcd\xbd\x7b\x7a\x3a\x8a\x86\xa5\x13\x29\xdb\x76\x6b\x92\xa4\x9b\x83\x41\x43\x87\xfb\x0e\x04\x41\x48\x6d\xd6\x9e\xa7\x3f\xda\x51\xb8\x8c\xa5\xda\x57\x3a\x7b\x90\x08\x9c\x90\x5b\x37\xe2\x78\x80\x10\xc0\x32\xf7\xc6\x2e\x54\xd8\xed\x51\x02\x80\x85\x13\xe5\x28\x96\x35\x3f\xe9\x49\x91\x80\x1b\x21\x9e\xa3\x05\xcd\xa1\x3d\x9f\x57\xe3\x46\x57\xb2\xb8\xdf\x0a\x1d\x22\x6e\xbc\x81\x8a\x20\x81\x2e\x08\xa8\xd3\x38\xce\x0f\x10\x36\x3b\xf6\xa3\x3e\x6a\xad\x38\x25\xc4\x20\x8d\x58\xfe\xea\x1f\x38\x61\x35\xbf\xa5\x0f\xc7\x13\xf6\x1c\x0a\xf4\xb9\xbc\xad\x71\x2f\x49\x50\xce\x59\x0b\x01\x35\x29\x26\x0b\x4c\xf4\x7b\x1c\x89\x3b\xce\x3d\x0f\x65\x57\xa8\xad\xeb\x19\x92\xbb\xae\x46\xf2\x15\x0c\xa6\xe3\x82\x09\x3a\xeb\xa2\x10\x02\x25\x29\x38\xd0\xb2\x9a\xaf\xc1\x70\x05\x6a\x60\x49\x9a\x69\x0a\xe5\xa2\xa0\x6a\x5e\x61\xa0\x28\x5c\x99\x19\x14\x34\xa5\x28\x2f\xf4\x23\x4d\x43\xb5\x35\x3d\xfb\x28\x0a\x3a\x7b\xa0\x8a\xa8\x87\xdf\xda\xe8\x6d\x4d\xf5\xd1\xfc\x9d\xae\xa4\xc4\xe2\x69\xac\xd6\x76\x24\x6e\x41\xa4\x9f\xb2\xa9\xab\xec\x38\x43\x3d\x3c\x72\x8c\xa6\x3b\x2a\xab\x8b\x07\x74\x67\x8a\x10\x4a\x8f\x4d\xe9\x23\x5e\x13\x76\x71\xf7\xb8\x70\xb0\x2f\xe5\x22\x4c\xbe\x31\x52\x1b\x09\x7d\xa1\xb0\x60\x5a\xf2\x5b\x83\x69\x0d\x68\x9e\x26\x43\x6d\x08\x46\x98\x2f\xdf\x99\xc2\x4a\xac\xc3\x28\x88\xac\xd7\xd4\xe9\x07\x34\xd6\xa9\x8d\x07\x83\xc9\x6e\x42\x71\xa0\x29\x51\x27\xb6\xec\x45\xa3\x4e\x24\xab\x5f\x53\xd0\x8f\xf2\xa2\xfb\xd2\x86\xdd\x41\x74\xb0\xd3\x4e\xae\x81\x34\x89\x0f\xa8\xd0\x37\xdb\xec\x9e\x9d\xad\x58\x4e\x79\xff\x64\xbd\x7d\x99\x46\x1b\x93\xc2\x93\x14\x9f\xe7\x77\xbc\x92\xc5\x64\x6e\x79\x10\xfa\x0d\x81\xc3\x07\x29\x8d\xe7\x66\x28\x0e\x9b\x9c\x41\x51\x13\x68\xe0\x16\xe0\x29\x16\x5a\xd9\xb9\xb6\x89\xc5\x04\x1f\xc1\xe1\xf9\x25\x1b\xc2\x01\xeb\x76\x22\xdc\x2a\x3b\x76\xc2\xd4\x44\xf4\x3d\xcf\x8a\xab\x57\x97\x2c\x7b\x0b\xde\x18\xb1\x4a\xae\x04\x9b\x8a\x72\x21\xfc\x72\x7a\xad\x8d\xda\xf1\xe1\x15\xd7\x08\xa1\x0a\xb3\x6e\xfc\x8e\x1c\xca\xf4\x4f\x12\x05\x37\xd8\x66\xa6\x76\xd6\xbe\x61\x4b\xbe\x76\x8f\x21\xef\x31\x9d\x7e\xbb\x19\x68\xee\xd0\xcb\x21\xbf\x13\x43\x9a\xcc\x27\xe1\x99\x7c\x27\xfb\xa0\x9b\xdb\x77\x83\x4c\xcf\xb6\x26\xe2\xda\x9b\x13\x55\x73\x4c\xc9\xb6\x60\xeb\x3a\xc8\x2c\xcc\x10\xa4\x0d\x7f\x7d\x38\x40\x3f\x02\xa6\xb6\xf4\xa2\xa6\xb3\xc1\x47\x14\x4a\x91\x4a\x9b\xd8\xa4\x53\x7b\xa4\xc8\x05\x1f\x5c\x11\x29\x1e\xc1\x08\x5e\x8e\x98\xf6\xef\xde\x48\xf4\x8d\x44\x17\x24\xd4\x08\x65\xd1\xe6\xcd\xb2\x02\xe6\x64\xf3\x3d\x38\x39\xb8\xd7\xca\xf4\xd6\x24\x1a\x14\xb6\xae\xcc\x7e\xb9\x4a\x43\x9c\x93\x1f\xaf\x0f\xcb\x3d\x49\xb8\x3e\x20\xd7\xf8\x87\x92\xd7\x96\x11\xff\x7c\x19\xce\x09\x9b\x1f\x02\x1f\xbe\x0c\xe7\x10\xc8\xc0\x3f\x5f\x86\x73\x08\xe8\x9e\x7b\x9a\x7f\xa2\xf8\xe9\xf4\x8d\xfb\xcd\x24\xd0\xd0\x09\xfb\xa5\xd9\xa9\x3b\xb3\xff\xc7\x4d\xf7\xe0\xa6\xed\xda\xd0\x9e\x8b\x94\xa7\xb8\xf4\x38\x8c\x42\x1d\x6d\x74\x80\x03\x65\x83\x19\xb6\xa3\x55\x07\xb3\xee\x9c\xcc\xab\x1e\xeb\x0c\xf2\x84\xe5\x9e\xba\x78\xca\x77\x15\x04\xb0\xcc\xc9\x4a\x50\xb4\x1d\x81\x9c\x89\x54\x49\x23\xcf\x28\x03\x8d\x1c\x28\x68\x40\x19\x66\x64\x0e\x5e\x0a\x5e\xb9\x25\xd6\x54\x8f\x19\x07\x56\x14\x6d\x3c\x82\x42\xfb\x70\x08\x38\x9d\x87\x71\x45\x05\x55\x3b\x20\x48\x37\xb3\x8d\x07\x85\x08\x6f\x2a\x21\xf8\x33\x54\x2e\xca\xa6\x48\xc0\x9f\x9f\x61\x32\x11\xf5\xc1\xf6\x0a\x16\x70\xc6\x35\xaf\x64\x89\x13\x4d\x06\x27\xbb\xd4\x26\x66\xd2\x23\x07\x1d\x85\xda\x34\xd1\x99\x38\xb1\xd7\xc5\x71\x4a\x78\x93\xc5\x32\xc4\xc7\x49\x35\x37\x1c\x83\xda\xbc\x42\xb7\x10\x4a\x20\xf3\x75\xb4\xfc\x7e\x69\x05\xea\x2d\xf9\xb0\x0a\xd6\x4e\x25\xfd\x4b\x8a\x90\xed\x2c\x9c\xe7\xb6\x7d\x31\x51\x92\x7c\xa8\x5f\x4e\x94\x84\x3d\xff\x05\x45\xc9\xbd\x45\xbd\x54\xb8\x4d\xc6\x5e\x3d\xcf\x35\x7e\xb2\xc9\xdc\xf7\x82\x41\x5d\x4c\x4a\xc1\x2b\x9c\x43\x18\x20\x14\xcb\x0a\x05\x32\xa0\x52\xa9\xbf\x0f\xbc\xc0\xeb\x50\x5e\x5e\xf0\x9d\xa0\xaa\x42\xe1\xa5\x2f\xad\xd6\xa5\x40\x8a\xbd\x0b\x74\x7e\xa2\x3f\xa6\x5b\xb5\x13\x6f\x5d\x9b\x8e\x22\x5a\xed\xf0\x70\x0c\xbf\xb2\xa1\x51\x12\x98\xdf\x63\xe7\xb1\x22\x65\xfa\x6a\x0c\x1c\xc3\xf0\x2c\x34\x8b\x1f\x81\x29\x26\xf9\x9d\x8f\x23\x73\x7a\x16\x4b\x22\x06\x40\x6f\x8b\xf5\xa1\x60\x68\xd9\x8d\x78\x0d\x25\xda\x38\x19\xe8\x93\x65\x2c\xa4\x5e\xa0\x23\x1a\x1b\xc4\xf3\x6e\xfd\xcd\x47\x10\x58\xf3\x65\x02\xb3\xa1\xd8\x06\x44\x64\x87\x05\x55\x42\x94\x21\x07\x8b\x1c\xaa\xf9\xb0\x4a\x97\x62\xdc\x6b\x51\xb9\xa5\xa4\x18\x15\xfe\x89\x6c\xa5\xa9\x3c\x9c\xa6\x1c\xee\x37\xba\x14\x17\xdd\x9e\x95\xd4\x8b\x75\xc2\x5e\x78\xf1\xe6\x25\x64\x19\xac\x9f\x3f\xd9\x54\x74\x0c\xcc\xdd\x54\x04\x76\x92\xe7\xbc\xf6\x9c\xe3\xf7\xf7\x8c\x13\xb2\x57\x01\xce\x56\x4b\xbb\xed\xcc\xca\x2f\x73\x74\x8b\x1f\x3e\xc7\x20\x9c\xf3\x8b\xc3\x11\x3b\x0c\xb3\x3c\x64\x51\x73\x3a\x7c\xa5\x79\xf9\x1d\xaf\xb8\x2a\x84\x39\xdc\xd8\xe2\x59\x05\xe5\x07\x73\x57\x86\x45\xf9\x2e\x54\x5f\xce\xe3\xda\x5b\x4b\xc6\x32\xd2\x44\xfc\x9f\xf4\x02\x94\x84\x4a\xa3\xe2\xe2\x0c\x04\xfc\xae\xbe\xb5\xe3\xde\x74\xec\x89\xd7\x5b\xfe\xa5\xf7\x2d\x3b\xa3\x03\x2c\xd4\xd4\x8b\x47\x03\x78\xe0\xfc\xc9\x24\xae\xa3\x43\x8d\x5c\x0b\xed\xec\x23\xa1\x55\x2c\xb9\x5a\x3c\x8a\xf8\x0d\x9a\xf7\x7d\x8b\x9a\xe7\x74\x77\xa4\x25\xb0\xf7\xef\x79\x23\x17\x46\xb7\xcd\xc9\x07\x2a\xdd\x7d\xfa\x61\x25\x55\x79\xfa\x3e\xca\xcc\x93\x0f\x60\x7f\x88\x3b\x43\x57\x22\x26\x39\x3d\x10\x5b\xc5\x8a\x50\xe0\xca\xbf\x8a\x23\x5a\x0c\xb4\xd8\xcc\x8a\xc8\x1f\x49\x6d\xaf\x8f\x66\xad\x63\x25\xe6\xa3\x91\xcb\xf2\x38\xc4\x87\x59\x6c\xbb\xb3\x14\x65\x0b\xfe\x66\xa7\x41\x22\x51\xb7\x31\x08\x6e\x00\x4e\xe1\x58\x0c\xe8\x52\x88\x0e\x87\x6e\x44\x91\xd9\x93\x42\xab\x42\x34\xce\x9e\x10\x54\xa9\x16\xe3\x90\x75\x77\x02\x70\xc6\x5c\x95\xe3\x44\xbf\x93\x18\x66\x04\x55\x17\x4b\xe1\xb8\xac\x42\xab\x8e\xf8\x54\x96\x92\x93\x2a\x62\x82\x4d\xdf\xca\x5a\x56\x1c\x9a\xb8\x41\xb6\x73\xe8\x3f\xe6\xef\x26\x80\x36\x46\x7b\x8d\xd8\xf4\x47\xb1\x7e\xff\xec\x67\xaf\xee\x7d\x38\x7d\x39\x9f\x8b\xc2\xbd\x3f\xbd\xc4\xbe\x4c\x1f\xa6\xa1\x06\x01\xa8\x83\xc0\x1e\xf6\x97\xd6\xb3\xe3\xcc\xf0\x62\x15\x9c\xb1\x50\x89\x9a\x0a\x0f\x60\x2b\xb7\x60\x73\x3e\x65\x63\x36\x05\x69\x6e\x74\x25\x26\x5d\xca\x50\xcd\xa4\x37\xfa\x92\x48\x3d\x0d\x4f\xf7\x1e\xa4\x1a\x97\x79\x82\xe0\xe9\x1b\xfd\x12\xd3\x3e\x4e\x7f\xf7\xf4\xe9\x53\x54\x96\xc6\x6c\x5a\x4a\xbb\x82\x68\x35\x6b\xcb\xd3\x0b\x50\x92\x73\xf8\x18\x27\xf7\x48\x23\xe8\x71\xe1\xf6\xdc\xda\x50\x8f\x91\xb6\x37\xbe\x08\xba\x22\xb2\x0e\x54\x37\x4f\x3b\xfd\x6e\x1e\x48\xbb\xdb\xf0\xe2\x61\x6b\x55\x5e\xe1\x08\xc3\x9e\xbe\xae\x8e\xd1\xb4\xb3\x4a\xda\x65\x40\x2a\x57\x67\xbf\xa2\xab\x1c\xc7\x24\xae\x00\x34\x4b\xa3\x29\x74\x55\x89\x22\xe6\xaf\xa4\x5c\x4a\x88\x7e\xde\x50\x67\xa8\xd0\x7d\xf4\x23\x85\x31\x63\x2a\x4d\x0a\x4e\x21\xb2\x46\x01\xc9\x8e\x28\x66\xc2\xb2\x27\x4f\x7e\xe0\x62\x21\xcc\x93\x27\x54\x2e\xf3\x2a\xd2\x93\xdd\x9d\xdd\xf1\x8f\xcf\x9a\x5f\x3c\x6e\x61\x44\xa5\xe1\x20\xa6\x39\x3c\x4f\x08\x74\x1a\x0f\x0c\xad\xc7\xc0\x89\x78\x9f\xd8\x70\x95\x95\x29\x8b\x1a\x98\x57\xe7\x89\xe7\x84\x8d\x23\x96\xdc\xf1\x4e\x45\xcc\x64\x5e\xdb\x28\x4c\xd5\x69\xfe\x9f\x97\xe0\xdf\x23\xf2\x02\xdb\x1b\x47\x7e\xcb\x0a\x67\x04\xee\x0e\x88\x1e\x0d\xf3\xee\x40\xc5\xb8\x1c\x1f\x0c\x11\x32\x7b\xd7\x45\xc3\xcb\x53\x03\x6d\x06\xa1\xac\x4e\x50\xae\x0f\x0a\xad\xac\x3b\x18\x82\x0d\x2e\xd2\x7b\x02\x4f\x71\x0c\xfe\xe5\x6c\x98\xaf\x0f\x8e\xbf\xfa\x3f\x01\x00\x00\xff\xff\x89\x32\xbf\x5b\x48\xdd\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\xfd\x73\x1c\x37\x92\x20\xfa\xbb\xfe\x0a\x04\xf7\x6d\x90\xd4\xeb\x6e\xca\x9e\xf5\xac\x97\xef\x69\xe7\x68\x59\x9e\xa1\xad\x0f\x9e\x48\x7b\x76\x42\xa7\x98\x46\x57\xa1\xbb\xa1\xae\x02\x6a\x00\x14\xc9\xf6\xed\xfd\xef\x17\xc8\x4c\x7c\x54\x75\x35\xbb\x29\x89\xbe\xe1\xcd\xee\x44\xac\x45\xb2\x90\x48\x24\x12\x89\x44\x7e\x3a\xc3\xa5\xb3\xa7\x4f\xc6\x4c\xf1\x5a\x9c\xb2\xdf\xd9\x82\x57\xe2\x09\x63\x4d\xc5\xdd\x5c\x9b\xfa\x94\xcd\x79\x65\xe1\x37\x46\xcf\x65\x25\xec\xe9\x13\xc6\xc6\xec\xa7\x76\x26\x8c\x12\x4e\x58\xfc\x51\x71\x27\xaf\x05\xfc\xfb\x6d\x23\xd4\xe5\x52\xce\xdd\x13\xc6\x4a\x61\x0b\x23\x1b\x27\xb5\x3a\x65\x57\x4b\x41\x13\x30\x98\x97\x15\x5c\xb1\x99\x60\xad\x15\x25\x73\x9a\xf1\xd6\xe9\x9a\x3b\x59\xf0\xaa\x5a\xb3\xc2\x08\xee\x04\xe3\x4a\x69\xc7\x3d\x00\xcb\xdc\x92\x7b\xa0\x8c\xf1\xaa\xd2\x37\x11\x96\x66\xa5\xb4\x85\xbe\x16\x86\xb9\xa5\x60\x0b\xa1\x84\xe1\x4e\x94\xcc\x0a\x73\x2d\x0b\x0f\xa3\x64\x35\x5f\x09\x26\x1d\xe3\xd7\x5c\x56\x7c\x56\x09\x36\xd7\x86\x9d\x5d\x9c\xb3\x9a\x2b\xbe\x10\xb5\x50\x6e\x02\xc0\x37\xd0\x94\xd6\x4f\xe0\xc7\x94\x6c\xb6\x66\xa5\x98\xf3\xb6\x82\x8f\x1b\xa3\x1b\x61\x9c\x0c\x54\x41\x22\x0a\x05\xdf\x02\x30\xb7\x6e\xc4\x29\x9b\x69\x5d\xc1\x8f\x1d\x7a\xbc\xe8\x2e\x1f\x87\x31\x6d\xc2\x6c\x8c\x23\x02\x13\x76\x56\x55\xf8\x4f\xcb\xec\x92\x1b\xc1\xdc\x52\x5a\x56\xe8\xba\xd6\x0a\xe0\x46\x54\xd6\x93\x0c\x11\x4f\xd0\x9d\x58\xbc\x84\x69\x6d\xa2\x3e\x2b\xb4\x9a\xcb\x45\x6b\x80\xea\x4c\xcf\x81\xaa\x88\x49\x06\xdc\x16\x4b\x51\x8b\x0c\xbc\x75\x46\xaa\xc5\xe6\x04\x9e\x9e\xf8\xb1\x5f\x65\x6b\xe1\x3f\x85\x56\x8e\x17\x0e\x40\x87\x6d\x3a\x22\xca\xb2\xe9\xd2\xb9\x66\x7a\x9c\x4d\xd6\x70\xb7\xdc\x73\x2a\xff\x29\xbb\x59\x0a\xa0\x92\x80\x1d\x96\x96\x35\xed\xac\x92\x76\x29\xca\x6c\x96\x93\xee\x14\xda\xb8\x6c\x0a\xa9\xdc\x16\xf8\xda\xb8\x0c\x7e\x40\x5e\x5a\x26\x6e\x1b\x6d\x3b\x33\x7c\xfb\xac\x33\x45\x06\x6b\xfc\xe9\x2b\xf2\xe7\x6b\xec\x97\x65\x1b\x51\xc8\xb9\x2c\x70\x9f\xb6\x2d\x52\x37\x42\xf1\x46\x4e\x3e\x5a\xad\xa6\xc7\xf1\xa4\xf3\xf9\x5c\x2a\xe9\xd6\x0f\x74\xd6\xcf\xfc\x09\xf5\x2c\xaa\xac\xe7\x1c\x25\xd5\x82\xdd\x2c\x65\xb1\x64\x4a\x97\xc2\xc2\x42\xa4\x72\x62\x41\x5c\xd6\xe8\xf2\xc8\x1e\x33\xcf\xdb\xa2\x92\x0b\x39\xab\x88\xb5\xb4\x3f\x22\x9e\x7d\xca\xd6\x9f\x3f\xad\x46\x6c\xc6\x2d\xfc\x8b\x55\x7c\x26\x2a\xeb\xff\xe5\xc1\x79\xc0\x23\x7f\x7c\x6e\xa4\x5b\x02\x70\x33\x6e\x74\x19\x57\xea\xc5\x00\x4a\x0f\xe5\xe4\x38\xfc\x76\x10\x5c\xa3\x4b\x94\x36\x80\x10\xaf\x8c\xe0\xe5\x9a\x99\x56\xc1\x3a\xb2\xf9\x2c\x8a\x8c\x73\x77\xf8\x58\x65\x44\xa3\xcb\x71\xc6\x0b\x77\x63\x73\x56\xdd\xf0\xb5\x07\x3a\xae\x74\xc1\x9d\xb0\xac\x6e\x2b\x27\x9b\x4a\x30\x23\x9a\x4a\x16\xdc\x06\x79\x91\x6f\xae\x44\x82\x59\x4e\xf2\x82\x01\xed\x12\x93\x3e\x05\xbe\x7b\x7a\xbc\x81\x57\xbe\x51\x3b\x91\x7b\x23\xfc\x0d\xf0\x5b\xe0\xe6\xbf\x88\x78\x8d\x91\x6d\x32\xf4\x0e\xdf\x7f\xc0\xe3\x7c\xb8\x89\xe4\xf7\x62\x2e\x95\x97\xb6\xcc\x0a\xe7\xf1\xd9\xfb\x38\xe0\x51\x20\x1c\xf7\x3e\x10\xdb\xb6\xfa\x33\xb1\x86\x03\x72\xe4\xc1\x56\x6b\xe6\x96\xda\x0a\x56\x73\x57\x2c\xfd\xf1\xf0\x53\x03\x74\x66\x45\x25\x0a\xa7\xcd\x88\xb0\x36\xa2\x02\xd1\xe1\x97\x02\x37\xb5\xbc\x16\x0a\x90\xb3\x0d\x2f\xc4\x31\x1e\xb9\x2d\xb4\xb0\x4b\xdd\x56\xa5\x3f\x0c\x71\x8b\x4b\x82\xeb\x0f\xfc\x9d\xbc\xf3\x68\x57\xab\xb4\xbb\x63\xc5\x51\x96\xdf\xd8\xb1\x15\x85\x11\xce\x8e\x51\x9b\x31\x0f\x24\xd6\x0f\xfd\x7d\x74\x89\x53\xb1\xd7\x38\xd5\xb0\x32\xe7\xef\x79\xc2\x89\xcd\x8d\xae\xd9\xd9\x9f\x2f\xc3\x48\x58\x44\x18\xed\x21\x66\x7f\xeb\x41\xdd\xa2\x7b\xb1\x1f\xb4\x61\xb5\x36\x9e\x76\x7e\x8d\x40\x3b\x14\xee\x33\xdd\x3a\xb6\xd4\x37\xbb\x90\x48\x13\x79\xcd\x90\xb3\x4a\xeb\x15\xa3\x0d\x29\x74\xdd\x68\x25\x14\xa1\x5a\xea\xc2\x9e\xb2\x5b\x23\xe6\xa7\xe9\x2f\xa7\xa7\x03\x64\x1f\xc7\xbf\x4f\x78\xa9\x8b\xf7\x03\xf3\x01\xc4\xf8\xd9\x07\x76\xe6\x65\x8f\x97\x52\xe2\x56\x14\x6d\x52\xb9\xa4\x45\x12\x8c\xd8\x0d\xb0\x82\x11\x7f\x6b\x25\xa9\x00\x73\xed\xaf\x57\x60\x3f\xff\x09\x80\xd4\xb0\x45\xf6\x94\x8d\xdd\x10\x43\x4c\xe8\xc6\x79\xee\x4c\x2b\xb6\x7d\xc3\x8b\x42\x58\x3b\x5e\x89\xf5\xf3\x03\xff\xf7\xf4\xf3\x01\xcc\xb1\x65\x18\xfe\x9c\x86\xa5\x9f\x0f\xb6\x0d\x31\x62\x21\xb5\xc2\xcf\xf1\xdf\x07\x87\x7f\xff\x97\xe5\x83\x2a\xd4\x89\xd8\x23\x5d\x4b\x27\xea\xa6\x73\xe9\xdd\xa5\x21\x7a\x36\x3b\x83\xe1\xec\x27\xb1\x26\xce\xcf\x75\xf5\xb8\x21\x9f\x04\x1a\x39\x78\x18\x34\x6e\xde\x27\x81\x7d\x07\x43\x37\x41\xb6\x56\x8c\xe9\xa0\x8f\x0b\x23\x4a\xa1\x9c\xe4\x95\x1d\x37\x46\x5f\xcb\x52\x98\xc1\xc9\x86\xf7\x02\x45\x39\x93\x73\x76\x23\xd8\x0d\x57\x2e\x3e\x41\x96\xc2\xff\x11\xae\xf8\x17\x69\x0e\x76\x41\x73\xb0\x62\xc9\xa5\x62\xdc\x12\x37\xf0\xd6\x2d\xfd\x37\xa4\x6c\xd7\xc2\x2d\x75\x99\x04\xf0\xaf\xad\x11\x9e\xbc\xe3\x6b\x0f\xf1\x21\x85\xef\x99\x9f\x0a\xb6\xe2\x17\x40\x7e\x4f\xe1\x1b\x46\xc1\x72\x70\x64\x78\xb9\x6c\x87\xfa\xa5\x85\x6f\x6f\x92\x28\x04\x3f\x43\x04\x77\x09\xbf\x21\x7e\xb7\xcd\xf8\x01\x80\x7e\x01\xd1\x9b\x8b\x5d\x24\x41\x17\xa3\x4d\xb1\xdb\xfb\xbb\x13\x8a\x2b\x37\x96\xe5\xf3\x83\xf8\xcf\x83\xa1\x0f\x8b\x4a\x0a\xfa\x30\xfe\x33\x49\xe5\xe1\x8f\x91\xfc\x71\x00\xfe\x38\x08\x1d\xc9\xe7\xb9\xf9\xf9\x41\xfa\xf7\x3f\xbc\x4c\x8e\x5b\x72\x7f\x01\x07\xac\x77\x05\xe3\xd9\x79\x09\xd6\x26\x94\xf0\x9e\x77\x22\x4b\x66\x73\xc5\x5d\xfd\xc4\xb9\x5e\xc0\xf8\x7b\xcd\x85\x0c\xf1\x79\xf3\xd1\xe5\xb0\x7b\xce\xc4\x56\x9f\x38\x21\x9e\xe1\x37\xbc\x16\x5b\x67\x0b\x73\xcd\x5a\x59\x95\x3d\x2d\xd8\x9f\xc0\x2f\x66\xc7\xa4\x09\x92\xa0\x04\x7b\x83\x02\xcb\x65\xe0\xf5\x52\x38\x61\x6a\x7f\xff\x78\xde\x9a\x09\xeb\xfc\x22\xb9\x13\x8b\x75\xb4\x6d\x78\x30\x60\x9f\x0c\xfc\x28\xd8\x79\x7a\x0d\xfc\x24\x9d\x7d\x04\x36\x84\x6b\x61\x66\xda\x8a\x3d\x4f\x61\xf8\x9c\x55\x7a\xb1\x20\x7b\x0a\xd2\x21\x49\x76\x7c\x1b\xd9\xb6\x01\x6b\x9b\x74\xec\x48\x4c\x16\x13\x42\xe1\x27\xae\xe4\x2a\xd0\xae\xd1\x65\xd7\x6e\x10\x49\xb5\xe7\x6b\xef\x8c\x55\xd2\xe2\x33\x2f\x0e\x25\xb3\x13\x29\x1c\x65\x78\xc1\xe1\x8c\x8e\xdb\x55\x64\xb4\xc2\x3f\x0a\x1f\x8e\xcd\x5e\x78\xf0\xc3\x77\x7c\x62\x98\x6b\x61\x2c\xd8\xc7\xf5\x9c\x9d\x35\xbc\x88\xe3\x7e\x82\xd5\x9a\x56\x39\x59\xa3\x15\x1c\xde\xa4\xa2\x64\x95\x9c\x19\x6e\xa4\xb0\x23\x86\x90\xe9\xa1\x19\xae\xfb\x47\xc0\x74\xb4\xac\x31\xad\x7e\x4f\x49\x02\xfb\x35\x5e\x8d\x03\x51\x68\x74\xd0\x57\xbc\x5c\xe9\xbd\xc8\x27\xec\xdc\x31\x7d\x2d\x8c\x91\xa5\x08\xea\xa0\xff\x26\x58\x88\x02\x08\x2b\x5c\xb0\x26\x65\x47\x98\x5d\x10\x67\xfc\x56\x4c\x9a\xcf\x4d\xab\x4c\xdc\xaa\x95\xe3\x52\x3d\xa4\x60\x7c\x11\xa6\xd8\xc5\xb5\xd9\x42\xe8\xf6\xcd\xb1\x63\x99\xc1\x3b\x37\x8f\xdc\xc8\xaa\xf2\xcb\x82\x5d\xe1\x95\xd5\x61\xfd\xb6\x77\xa3\xfb\x9d\xbc\x44\x0d\xd7\x32\x6e\xad\x2e\x64\xb4\x9f\x10\xa5\xe2\x7c\x8f\x80\xdb\xf7\xd2\x72\xae\xfa\x3e\x34\xc2\x23\xaa\x36\x9d\x77\xdb\xdf\x5a\x61\xdd\xb8\x68\xda\x3d\x8f\x4e\x2d\x95\xac\xdb\x9a\xf1\x5a\xb7\x0a\x78\xf1\xc5\xc5\xcf\x41\x37\x2e\x27\x03\xb0\x6b\x51\x6b\xb3\xef\x1d\xbf\x09\x1e\x87\x0f\xce\x50\xc9\x5a\xde\x0b\x77\x7e\xbb\x27\xee\x08\xf9\x7e\x98\x6f\x00\xbf\x03\x73\x74\x12\x7d\x1a\x43\x9d\x04\x6e\x02\x20\x20\xfa\x25\x67\xab\x78\x52\x03\xc3\x4f\xee\xeb\xd6\xca\xcf\x25\x67\xa5\x9c\xcf\x85\xf1\xba\x1d\xdc\xbe\xc1\xad\x35\x5b\x77\x4f\x4d\xc7\xcf\xf5\xed\xb3\xe9\x71\x7f\x5a\xd0\xf5\xf6\xa1\xe1\x9d\xd3\xab\xa0\xef\xb9\xe0\x7c\xdb\x86\x50\xd0\x0f\xce\x5d\x90\xcd\x20\x23\xd1\x9b\xc8\xb4\xaa\xd6\x5e\xa8\xa0\x84\x9e\x22\x90\x29\x6b\xb8\xe1\xb5\x57\xd4\x18\xbc\xfa\xda\x0e\xf1\xe8\x89\x3c\xbe\x37\x11\x5b\xe5\x95\x43\x74\x78\x85\x77\x36\xe0\xde\xa5\x20\x6a\x37\xb6\x63\xda\x1f\xf6\x22\x6e\xc3\xea\x93\x68\xbc\x15\x3b\xa0\xf5\x20\x8a\xe1\xde\x83\x2b\x67\x13\x45\x74\xd8\x76\x7c\x24\x7b\xe2\x05\xe7\x47\xaa\x6c\x46\x3f\x72\x82\x2e\x35\xff\xcf\x92\x4d\xb3\x0b\x60\xda\xf3\xae\x85\xe9\x64\xcd\x17\x9f\x38\x5f\x18\xda\x01\x35\x6e\xda\xaa\x1a\x37\xba\x92\x45\x2e\x06\x2e\xda\xaa\xba\x48\xbf\xdc\x34\xcf\xf8\x61\x0c\x87\x05\x77\xd9\x7f\x82\x63\xea\x3f\xcf\xe7\x6f\xb4\xbb\x30\xc2\x0a\xe5\x0e\xd3\x8d\x6c\x40\xec\x3f\x98\xb9\xe8\x85\xf1\xca\xcd\xe0\x4d\xdc\x5a\xa7\x6b\xf9\x6b\x78\x9d\x2c\xf9\xb5\xd4\xad\x01\x1d\x43\x18\xa9\x4b\x59\xe0\xc2\x65\x2d\xcc\x89\xc7\x93\xfc\x4c\xd9\x6e\xd8\x09\xfb\xf3\x52\x56\x82\x29\x6d\x6a\xb8\x71\xb8\xea\x5c\xd7\x24\x01\x2d\xe3\x5e\x51\x67\x74\x87\xcd\x04\xe3\xe8\x49\x6c\x1b\x54\x4b\xd1\xb3\x3a\x62\x56\xd7\x22\x4e\x0f\x9a\xb6\x1d\x31\xdb\x16\x4b\xc6\x2d\x9b\x71\x57\x2c\xd9\x47\x3d\xb3\xa3\x64\x92\x49\x10\x0b\x27\xaf\x41\xb9\xf5\x2f\x07\x72\x8d\xb3\xa5\x6e\x4d\x54\x30\x4a\xbe\x8e\xfe\x61\x9e\xa6\x29\x45\xe5\xff\x30\xf7\x57\x50\xeb\x82\x4f\xf7\x07\x6d\x70\x66\xc2\x02\x8e\x45\x97\x9a\x35\x77\xc2\x48\x5e\x05\x22\xe6\x2b\xe7\x7e\xcd\x9d\x6d\x63\xb0\x19\x3f\xea\x19\x93\xca\x3a\xc1\x4b\x3f\x25\x67\xd6\x71\x55\x72\x53\xb2\x52\x34\x95\x5e\xd7\x42\xb9\x91\xd7\x23\xb5\x81\xf7\xa5\x66\x96\x5f\x0b\x66\x84\xd5\xad\xf1\xba\x4c\x10\x61\x00\x31\x9f\xb1\xd4\xc2\x82\xc3\x48\x09\xdc\xe1\x59\x30\x6c\x89\x72\x92\xab\x85\xe1\x75\xe5\xb8\x71\x68\x99\xeb\x18\xb6\xba\x0e\x0a\x8b\x4e\xc8\x6b\x5e\xb5\x40\xdc\x20\x74\x23\x25\x4e\xd9\x14\x58\x64\x3a\x62\x53\xff\x5b\xff\xdf\xbf\xb5\xdc\xb8\x5f\xa7\x13\x38\x6e\xa6\xad\x68\xfd\x5e\x8a\xb7\xf0\x62\xcf\x49\x13\xc9\xc2\xfb\x26\xb6\x53\x36\x0e\xc0\x4f\x71\xdd\xb8\x67\xd6\x53\x3f\xec\xfb\x8d\x91\xce\x09\x20\x38\x20\x25\x6e\x1b\x23\xac\x45\xee\x7c\x39\x59\x4c\x08\xc4\xa9\x93\xc5\xea\x0f\x08\xe0\xf9\xef\x9f\x3d\x7b\xf6\x6c\x3a\xf1\xf0\x7b\x38\x9f\x06\xe5\x53\xa5\x75\x26\x90\x89\xc8\x24\x3f\x98\x15\x85\x56\xa5\x65\x47\x74\x43\x1d\xd0\x2f\x0e\xfc\xcd\x02\xc2\xdd\x0a\x17\xb4\xce\x67\xc7\x01\x25\x0f\xf7\xd4\xf1\xd9\x1f\x82\x27\xf7\xf9\xb3\x93\xaf\xff\x9f\xff\xd9\x54\xad\xfd\x5f\x4f\x87\xfe\xf3\x87\xa9\x67\x5d\xc2\xf2\xd4\x19\xb9\x58\x08\xf3\x07\x0f\xe6\xf9\x33\xfc\xe2\xd9\xc9\xd7\x77\x8e\x9f\x3c\x02\x63\x5e\xa0\xc6\x9e\x92\x3c\x70\x4e\x18\x16\xf5\x84\x9b\xa5\xae\xfa\xaf\xb8\x79\x16\x10\xa0\x5b\x17\xdf\x72\x1e\xbb\x52\x14\x15\x37\xa2\x84\x63\xbe\x66\x75\x6b\x1d\x5b\xfa\x73\x17\x62\x03\xfa\x53\x48\xcb\x6a\x51\x2c\xb9\x92\xb6\xf6\xa4\xb8\xd1\x66\xc5\x0a\x6d\x8c\x28\x5c\xd5\x59\x52\xcf\x90\x7d\xf7\xa2\x0e\xcf\x80\x46\x9c\x59\xe1\x15\x13\x7c\xaa\xe3\xc3\xcf\xc5\x67\x7d\xdf\x4c\x92\x9d\xf7\x28\xd4\x83\xa3\x38\x0a\x12\xa2\x4c\x42\x36\xb2\x78\x5c\x19\x28\x40\xc0\x57\xa2\x64\xe2\x36\xda\xb3\x66\xeb\xec\xb4\x06\x25\xeb\x2c\xc9\xd8\x38\x29\xe8\x50\x49\x0e\xfb\x29\x05\xf7\x3a\x06\x7e\x29\x32\x0b\x0f\x9d\x03\xc2\x8a\x60\xd2\x59\x4f\x5f\xa1\xd4\x85\xc3\x32\x0e\x7f\xdb\x32\xd9\x91\x74\x87\x87\x96\x35\x78\xc1\x32\xa9\xb2\x97\xfa\x54\x9b\xc5\x84\x83\x65\x64\x02\x06\x80\xc9\xea\x34\x18\x02\xe0\xf8\x93\x3d\x64\x7d\x3c\x61\xec\x12\x8d\x4e\xa2\xec\xcb\xc0\xa2\x35\x5e\x2b\xad\xd6\xa7\x01\xdd\x20\x3a\x08\x35\x7f\x93\x45\xd1\x77\x98\xb1\xc0\x9c\x57\xd5\x8c\x17\xab\x9d\xe7\xeb\x67\xf2\x4c\x05\xbd\x0a\xf7\x5b\xd6\x4d\x05\xf1\x89\x1d\x5b\x35\xce\xce\x84\x2a\x1b\x2d\x95\x63\x47\x61\xea\xe3\xb8\xf5\xf1\x96\x71\x66\x0d\x1e\x0b\xbd\xeb\xca\xda\x94\xca\x5d\x56\x56\x48\x84\x62\xbd\xa9\x1a\x6d\x65\xe9\x4b\xda\x7d\x1b\x1c\x43\xce\x08\xee\x12\x30\x97\xdc\x2f\x16\xaf\x44\x3f\x2d\xfb\x85\x57\xb2\x64\xfe\xde\xc9\x4f\xaa\xbf\x12\x0e\x20\xb8\xec\xe0\x14\xc3\x40\x23\xa6\xa0\x46\x9b\x56\x65\x90\xab\xf5\xff\xe7\xbf\xff\x41\x9b\x99\x2c\x0f\xa2\xbe\x7a\x7c\xea\x19\x6f\x26\xcb\x00\x38\xc3\xc5\xb4\xca\xab\x1c\x2b\xd9\x34\x9e\x64\x4a\xdc\xc2\xef\x98\x9c\x7b\xde\xf2\x2a\x92\x85\x9f\x97\xdc\xaa\xc3\x43\xc7\xe6\x52\x61\xc8\xdd\x5a\x38\x98\xec\x9d\x68\x2a\x5e\x88\x83\xc0\x25\x05\x57\x85\xa8\x6c\x62\x9f\x18\x47\xf6\xd1\xdf\x79\x60\x94\x83\x11\x96\x49\x17\x74\x13\x25\x6e\x98\x56\xe2\xf0\xbe\x16\x80\xb3\xce\xf3\x1f\x35\x8a\xa1\x7d\x0e\x82\x13\x84\x00\xaf\x2a\x92\x88\x9e\xc2\xe1\x19\x22\xdd\x52\x18\x54\x12\x3c\xb2\xa0\x27\x64\x4a\x53\xa1\x95\x6d\x6b\xff\x0a\x84\x87\xd5\x5d\x67\x21\x93\xb3\x36\x1c\xae\x63\x7f\x6b\x70\xd6\x70\x6b\xe5\xb5\xc8\xa0\x09\xb8\x1e\x4b\xe9\x05\xe9\x14\x8e\xf8\xc6\x47\xfe\x94\xfa\xe7\x01\xc1\x0d\xaf\x6c\x0a\xd8\xf3\xfa\x77\x1f\x49\xdb\x13\xe6\xf8\xc1\x08\xb0\x4c\x9a\x31\x5d\xf3\x51\x76\x06\x8d\x22\x0a\x48\x42\xee\xab\x7a\xba\x31\xc4\x7f\x3c\x7d\x76\xf2\x15\x7b\x8a\xff\x9b\x8e\xfc\xfb\xaa\x12\x6c\xfa\xbb\x6f\x6a\x7f\x75\x07\x99\xf1\xcd\x33\x3b\x25\x83\x6b\xf7\x51\x47\x84\x1e\x97\x82\x97\x95\x54\x62\x4c\x8a\x44\xf7\xdd\xf9\xfb\x7f\xd9\xdc\xf4\xb7\xf0\x5f\x5e\xb1\x30\x94\x65\x7a\x89\x97\xb0\x71\x13\x3d\x01\x3c\xd7\xc9\xb9\x5f\x76\x2d\xad\x15\x36\xc5\x92\x05\x89\x29\x83\x83\x45\xad\x99\x11\xdc\xfa\xdb\x93\xbd\x96\xb0\x4c\xaf\x7d\xe7\xe7\x15\xec\x71\x10\xa1\xd4\x2a\x87\x64\x98\x73\x89\x81\x69\x78\x59\xa4\xf0\x06\xff\x64\xf9\x84\xe5\x25\xf9\x01\xa2\xb1\x4d\x81\x7b\x04\x62\xb4\x11\x6a\x85\xaa\xad\x5f\xc8\x28\x05\x8d\xb3\xb8\xfc\x9a\xaf\x11\x67\xe5\xa4\x6a\x75\x6b\xfd\xc3\x05\xd0\x63\x33\x31\x07\xc7\x36\x68\x6e\x9e\x7d\x64\x09\xd7\x21\x5e\xaf\xb8\x34\xff\x38\x25\x88\xb9\x9d\xe1\xf7\xcf\x3a\xeb\xf5\x02\x5f\xcf\xe7\x63\x30\x28\x75\x57\xf9\xbb\xaf\x77\xad\x52\xb5\xf5\x4c\xc0\x5b\xcc\x08\x67\xfc\x6f\x09\xb1\x9a\x9b\x55\xbe\x93\x77\x62\xf4\x75\x0a\x11\x2b\x45\x23\x54\x29\x54\x81\x36\xe7\x07\x32\xfe\x7e\x9f\xcd\x72\xa7\x6b\xac\x6b\xa6\xe4\x65\x19\x4d\xd5\xb8\x86\x0c\x4c\x0c\x6e\xec\x8b\xb1\x18\x3e\xd7\x5a\x61\x20\xb8\x23\xdc\x00\x3d\x7b\x2e\x7b\xff\x21\xa7\x43\xa5\xd7\x0f\x69\x00\x0f\x33\xa4\xf5\x1b\x61\x1b\xcf\x49\x21\xe9\x00\xbf\x08\xbb\x98\x5e\x76\xfa\x46\xd1\x21\x9c\x6d\x08\x6d\x94\x55\xbd\x27\xbc\xb8\x6d\x2a\x59\x48\x7f\xa7\x60\xf0\x21\x92\x43\x95\xc2\x54\x00\xdf\x73\xb8\xd1\x55\x45\x26\x75\xa0\x18\x9c\x58\x0c\xc3\x1a\x0a\x3e\x7c\x0c\xfe\xc6\x95\x54\xe5\x1e\x9a\x07\xc5\xa0\x6f\x25\x54\x29\x2c\xdc\x1b\xe9\xe1\x0d\x90\xd9\x4c\xb8\x1b\x21\x14\x9b\xa6\x3f\x4c\x47\xb9\xce\x37\xfe\xa8\x67\xf8\x1c\x5b\x21\x57\x8c\xc9\x8a\x36\xc5\x0b\x15\x52\x57\x36\xf7\xd7\xef\x7d\xb8\xfb\x93\xd2\x9b\x3f\x52\x7a\x41\x50\xd6\xf2\xbd\x54\x46\x3f\xbb\x30\x63\x2f\xab\x18\x6f\x9a\x0a\xc3\xb4\x9a\x92\x3b\xdc\x62\x60\xac\x0c\x91\x64\xb7\xf3\x9c\x8f\x76\x3b\xff\x7f\x6f\x34\x0c\xe0\xe0\x71\xed\x1e\x51\xaf\xc2\x5a\x90\x69\x60\x3b\xa2\xf0\x01\x3f\x61\x43\x91\xb0\x23\x7f\xab\x5c\x5e\x9e\x79\x8e\x57\x3a\x88\xa3\x98\x6e\x33\x62\xfe\xf2\x1c\xf9\x83\xac\xab\x32\x57\x34\x8b\xaa\xb5\x4e\x18\x3b\xe9\x1d\x52\x4f\xf7\x07\x15\x55\x61\xd3\xb7\x1e\x54\xca\x24\x0a\x3b\x99\xe1\xdc\xc1\xb0\x7b\xb0\x56\x5e\xcb\xb9\xc3\x73\x15\x7c\x84\xb4\xec\x47\x70\xdc\x1a\xa3\x17\x5e\xcb\xd9\x71\x77\x0f\xdd\x6a\xb9\x7b\x04\xf4\x8a\x9e\x66\xe2\xa2\xc0\xc4\x9d\xd0\x48\xc0\x30\x23\xdd\x7a\xe1\xa4\xec\xba\x94\xef\xba\x8e\xbb\x91\x17\x80\x73\x62\x81\x4b\xfa\xe3\xd5\xba\x11\xc3\x8b\xc8\x90\x0c\x90\xb2\x6c\x26\xd2\xe0\x99\xb8\x95\x16\xd8\x05\x22\xc6\x41\x97\x57\xe2\x86\xd0\xef\x2b\x44\x5e\x30\x7b\x85\x0f\x0f\xea\xb8\xe6\xb7\xe3\x56\xc5\xf3\xb2\xcb\xdd\x70\x98\x93\x36\xa9\x0b\x29\x73\x25\xdc\x15\x09\xa4\xd7\x9d\x02\x2f\xe3\xa4\xe1\xe0\xff\xe2\x5f\x59\x61\x04\x57\x8c\xcf\xac\xae\x5a\x17\xf5\x90\x23\x71\x7b\xca\xbe\x09\x3a\xbb\x30\x85\x7f\x8c\x2e\x84\x9f\x30\x08\x51\x8c\x91\x17\xb7\xe1\xd9\xf3\xd5\xb3\x7f\x3e\x9e\xb0\xb3\x1e\x20\xbf\x7f\xbc\x2a\x5a\x8c\x42\x80\x37\x45\x06\x6e\xb6\xf6\xef\x10\x55\x7a\x24\x4b\x7d\xa3\x26\xec\x0a\x18\x94\x07\xee\xa4\x28\x85\x67\x5e\xd4\xbc\xe6\xb7\x97\xad\x59\x80\xd9\xe2\xd9\x24\x04\x73\xa2\xde\xf3\xcd\x3f\x77\xde\xdf\x03\x94\xb6\x7e\xe8\x97\xa2\x71\xca\xc6\xe0\x33\x7d\x2d\xf2\xcb\x25\x20\xde\x19\x3c\xf9\x02\x04\x0f\xe7\x35\x90\x9d\x08\x1e\x08\xd6\x27\xd5\xcf\x19\x1b\x20\xc1\x36\xb7\x26\x3e\x58\xf7\xda\xa0\xb6\x19\x22\x7a\x12\x5e\xd7\xd2\x68\xf5\xb0\x32\x3c\x9b\x24\x09\xf1\x36\xf8\x28\x48\xe5\x74\x9a\x49\xf5\xd1\xdf\xf9\xd1\xd2\xde\x45\x8e\xb1\x6b\x6e\x24\xc6\x07\xca\x4d\x35\x33\x3a\x8a\x92\x23\x62\xfa\xe6\xec\xf5\xcb\xcb\x8b\xb3\x17\x2f\xfd\x8b\xf7\xe2\xed\xf7\x7f\xf5\xbf\xc0\x47\xaf\xf6\xcf\xe6\xc7\xa0\x44\xc5\x75\x8d\x6b\xe1\x76\xeb\x19\x21\x82\x12\x69\x49\x76\xa8\x8c\x10\xf8\xe2\x4f\xb4\xc8\xf7\x26\xd2\x97\xd0\xe9\xeb\x1f\x19\x56\x4b\xe7\x9a\x71\x63\xf4\xed\xee\xd8\xee\x0b\xa3\x1b\xbe\x80\x4c\x2f\xb0\x87\xfd\xe9\xea\xea\xe2\xaf\x17\xef\xde\xfe\xc7\x5f\xfc\xae\xf8\x9f\x2e\xe9\x47\xc4\xed\xcd\xdb\xf0\x63\x7f\xff\x73\x0e\xb8\x03\xb7\x6b\x6e\xee\x1f\xaf\x33\x48\x07\xba\xb9\x78\x99\xc5\xed\x0c\xf2\x5c\x10\xd0\x90\x43\xbb\x56\x8e\xdf\x7a\x16\xff\xe9\xe5\x5f\x9e\xff\x72\xf6\xea\xe7\x97\x41\xa9\x9a\xbe\xfe\xcb\x5f\x7f\x39\x7b\xf7\xfc\xa0\x5e\xa3\xc5\xec\x00\x7d\x2f\xfe\x76\xc2\xfb\x54\x14\xc2\x3f\xa8\x04\x44\x32\x65\xcf\xe1\x60\xd3\x02\x6b\xd1\x5c\x7a\x3d\x71\x10\xe3\xa4\x9c\x09\x63\xb4\x19\x2f\xb9\x2a\xab\x87\x7c\x46\x75\xa6\x21\x3b\x10\xcd\x44\x67\x3d\x1c\x0d\x3a\xdd\x2f\xfd\x00\xf6\xa7\x88\x17\x63\xa8\xee\x7a\xc2\x6e\x52\x98\x9e\x9b\x8f\xe0\x9c\x1a\x31\xdf\xd3\x1b\x02\x24\x63\x81\x64\x46\xcc\xd1\x9f\x1f\x03\xc4\xb4\x61\x73\x2f\xbd\xbd\x94\xf3\xcf\x84\x90\xcc\x90\x45\xa3\x85\x49\x17\xc5\x03\xd6\x00\xf8\xe3\x0b\x76\x05\x3b\xb8\xe0\x66\xc6\x17\x62\x5c\xf8\x27\x6a\xe1\x2c\x5a\x22\xe3\x33\x25\x26\xe0\x2a\xcd\x2a\xad\x16\xc2\x30\x25\x0a\x61\x2d\xa7\xd0\x9c\xb6\xd1\x5d\x77\x33\x5e\xf0\x8f\x41\xfa\x86\x8a\x05\xeb\x71\xc1\x8b\x65\xae\x89\x2c\xa4\x5b\xb6\xb3\x49\xa1\xeb\x13\x74\x59\x9c\x90\xab\xe2\xa4\x59\x2d\x4e\x78\x23\x2d\xfe\xe2\xe4\xfa\xab\x13\xc4\xe1\xfb\x00\xeb\x85\xff\x7c\x58\x87\x3d\x8c\x1f\xd1\xe3\x8d\xc1\xbc\x24\x88\xfc\x3a\x47\xc1\xe4\x3b\x0d\x41\xa0\x5e\x8c\x96\xd2\xae\x72\xf3\x25\x46\x36\x4d\x33\x31\x49\xbf\x39\xf6\xda\x80\x97\x33\x5e\x71\x38\x25\xb8\x46\xd4\xfa\x3a\xe8\x11\xe4\x37\xcf\xa3\xf4\x32\x85\x61\x51\x34\x21\x6f\xec\x37\x48\x61\xfc\xa3\xd6\x8b\x2a\x64\x32\xde\x33\x91\x11\xc7\x02\x41\x7a\xe3\x77\x41\xde\x95\x4f\x43\x2e\xfd\x98\x53\xb3\x23\x9f\x66\xcb\x54\x9d\x5c\x9a\x27\x41\xd0\x67\xce\xac\x2d\xb9\x34\x0b\x00\xd7\xdb\x84\x81\x84\xc6\x6c\xe5\x29\x89\xf2\xf3\x12\x1a\x29\x3a\x60\x6b\x66\x0d\x5b\x34\x45\x0f\xb1\x8d\xc4\x9a\x81\x4f\x1a\xa3\xfd\xd5\x00\x39\x33\xe9\xdf\x31\x69\x66\x60\x44\x08\xad\xe2\x05\x18\xb4\x31\xa5\xd1\x33\xdc\x29\xfd\x85\xfe\x00\xd5\x14\xfe\xe1\xb3\x63\x12\x4d\xef\x9d\xd1\x71\x81\x43\x21\x5b\x25\xe3\xe5\x17\x95\x6e\xcb\x81\x50\xb7\x6c\x3f\xee\x3f\x15\x77\x4b\xb0\x39\xa7\x7a\x30\x08\x0d\xf2\x46\x7e\x90\x95\xd8\x75\xcc\xfb\x07\x7d\x4b\xae\xa2\x54\xfe\x85\x51\x0c\xa7\xb7\x7c\x46\x7e\xe2\x39\xc1\xf5\x97\xb6\xd1\xbc\x58\x76\xd3\x5f\x32\x6d\x6e\x58\x22\xd0\xb2\xa3\xa8\x5d\x0a\x5e\x41\xf1\x91\x87\xba\xe0\x71\x82\xed\x76\xb5\xc0\x5d\xc1\x18\x41\xdf\x37\x46\xcf\x84\x65\x21\x96\x7f\xab\x4e\xfc\x98\xcb\x6d\x54\xf2\x5a\x28\x61\x21\x99\x75\x26\xc6\x7b\xe3\x15\x62\x37\xf1\xad\x13\xa0\x20\xc9\x86\xb2\x16\x06\xc2\x74\xc3\x15\x0e\x7b\xdd\x0d\xd6\x8c\x58\xed\x5d\xd4\xe7\xb2\x53\xd0\x07\xad\xde\x5a\x29\xff\x34\xc4\x40\x83\x01\x34\x93\xce\xe0\x1f\x67\x5b\x30\x90\x4a\x3a\xc9\xab\x31\x04\xe5\xed\x36\x30\xbe\x89\x86\x95\x60\x56\xe4\x73\x47\x85\xa0\x12\x09\x96\xdc\xa2\x4f\xd0\xb3\x0b\x3a\xd2\x72\xfc\xd2\x7e\xcd\x04\x3a\xac\x3c\x0e\xae\x1f\x18\x4e\x18\xfa\x77\x83\x6e\xf7\x70\xe9\x6d\xc3\x0d\x03\x6f\x07\x08\xe4\x21\x5b\xa6\x5b\x37\xcc\x31\xe0\xb4\xde\x3d\xed\x9f\xf4\x0d\xd3\x73\x27\x20\xa9\xa5\x11\x06\x9f\x4c\x1b\xb3\x0d\xef\x7f\x8b\x49\xe8\x6e\x69\x84\x5d\xea\x6a\x8f\xe9\x5e\x53\xdc\x7e\xa1\x95\x85\xfb\xfe\x5a\x30\x02\x23\x92\x91\xb7\xbf\x52\x4d\x0e\x58\x32\xe5\xd2\x0e\xd0\xb8\x79\x5b\x11\xa9\x96\xfc\x1a\x82\x0f\xd0\xc4\x3b\x84\xb1\xff\x53\x6b\xc4\xe7\x62\x4c\x60\xee\x8b\x30\xf9\xba\x3b\xc8\xc2\x22\x44\xd9\x4f\x89\xe0\xa5\xfc\xfc\x83\x1f\xc1\x7c\xd2\xc9\x4f\xde\x9e\x4d\xb4\xbe\xec\xc9\xef\xe3\x79\xd7\xd1\x4f\x38\xfc\x96\x67\x3f\xce\xba\xd7\xe1\x4f\x38\x7e\xc1\xd3\xdf\x27\xd2\xe0\xf1\xcf\x18\xe7\x73\xcf\x7f\x6f\xbe\x2d\x7c\xf0\x50\x12\x60\x63\xb5\x9f\x2b\x02\x12\xce\x0f\x25\x03\xf6\x44\x79\x87\x10\x88\x79\x05\x0a\x7c\x5a\xf7\xd5\xbb\x36\xb4\xab\x73\x84\x33\xfc\x5a\xc5\xd4\x8c\x4e\x65\xba\x94\xfc\x06\x1e\xa9\x41\xe5\x8a\x8e\xad\x6e\x1d\xf8\x74\x6f\xb4\xa9\xca\x10\x8b\x96\xb9\x3d\x69\x6a\xd2\xc0\x48\x86\xb1\x59\x48\x86\xc0\x23\xee\x45\x02\x94\xe2\xe2\x21\x1f\x09\xcc\x77\xdb\x6c\x9d\x47\x6e\x69\x74\xbb\xc0\x23\x31\x0d\x8e\x74\xc4\xd2\xaf\xf0\xf8\x11\x68\x75\x4b\x6d\xdd\x3e\xaf\x91\x3c\x09\x07\x14\x5f\x6d\x37\xd2\x99\x88\x4d\x3e\x3f\xf9\x8f\x97\x25\xa6\x63\x20\xbb\xc4\x6d\xe9\x6f\x40\xeb\x4f\x69\x74\xb1\x79\xf9\x9c\x82\x4a\x43\x00\x5d\xc6\xc5\xd6\x49\xfd\x80\x6f\x87\x73\x0f\x9f\x78\x9b\xc7\x22\x82\xf1\xb9\x90\x65\x8d\x86\x5c\xe6\x90\xf7\x4a\x88\xb1\xc8\xf8\xb5\xb0\xcb\xe4\xb4\xf1\x8c\x5d\x70\x93\x39\x30\xc0\x5d\xd3\xba\x19\xd8\x44\xcf\x2f\x98\xe1\x6a\xf1\x28\x8c\x87\x40\x97\x3d\xf8\x2d\x53\x1e\x38\x3b\x82\xc0\xf2\x71\x0c\x2c\x3f\x8e\x2e\x8a\x17\xe7\xdf\xbf\x63\xb6\x9d\x29\x11\x13\xef\x63\xf5\x31\xc2\x62\x86\x2c\x63\x0a\xd1\x64\x49\x20\xb8\x57\xe0\xad\x61\x47\xd3\xaf\x9e\x4d\xe0\x7f\x27\xdf\x8e\xbe\xfa\xd7\xaf\x27\x5f\xfd\x1e\x7e\xf8\xea\xeb\xd1\x57\xff\xe6\x7f\xfa\x16\x7f\xfc\x7d\x08\x07\x4d\xcf\xb6\x8e\x36\x80\xdb\xb3\x93\xc6\x3f\x68\x32\x11\x0b\x74\x78\x80\xcc\xa6\xf2\x77\x53\xda\xea\x09\xf0\xea\x44\xea\x13\x04\x3a\x9d\xb0\xef\xe2\xa4\xd9\xab\x19\xcb\xb7\x61\xa6\x06\x24\x0c\x82\x9e\xc4\xb4\xca\xbd\xfe\x9e\x59\x94\x76\x58\x12\x4e\x05\x7e\x4e\x19\x97\x01\xff\x8f\xba\xd2\x2b\xc9\x1f\xf0\x84\xfc\x88\x33\x84\x33\x42\x11\xf0\xb6\x5b\x45\x02\x49\x13\x3e\xfd\x91\x5f\x73\xc6\x17\xb1\xc4\xed\xa5\x10\xe0\x69\xb3\xa7\x27\x27\x84\xf0\x44\x9b\xc5\x89\x11\x90\x79\x59\x88\x93\xa5\xab\xab\x13\x18\x61\x27\xfe\xdf\x7f\xff\x87\xa2\xe0\xe3\x42\x98\xbd\xc4\xf0\x52\xb0\x8b\x97\xaf\x99\x50\x85\xf6\x97\xd2\x8b\x33\xe6\x47\xa6\x52\xaa\x7e\x93\xa0\xea\xea\x28\xe2\x7b\x2d\x8c\x9c\x07\xdb\x79\x70\x94\xc7\x41\xc2\x8e\x82\x47\xc5\x2f\x05\x94\xe2\x69\x63\xb4\xd3\x85\xae\x20\x8a\x19\x32\x24\x2d\x79\x22\x31\xb6\xab\x1a\x53\x18\x55\xb7\xb6\x54\x38\x1f\x7e\x10\x32\x62\x56\xcc\xf5\x9a\x9b\x13\xd3\xaa\x13\xb2\x54\x9d\xa4\xdc\x5f\xcf\xe6\x5d\x1b\x65\xf8\x71\x5c\xf0\x49\x61\x5c\x80\xeb\x0f\x4a\xe4\xaf\xce\xd1\x23\x74\x1a\x23\x55\x21\x1b\x5e\xed\xe9\xeb\x84\xb4\xc7\x30\xe6\xc8\x1e\x93\x86\x0b\x39\x34\xb3\x50\xf6\x50\x2a\xc6\xa3\xe7\x21\xd1\x0d\xec\x72\x51\x9a\x31\x32\x6a\x05\x91\x1e\xd8\x37\x5c\x47\xbf\x0d\x91\x71\xc0\x45\x58\xd1\xf3\x42\x3d\xb7\x6b\xeb\x44\x7d\x5a\x73\x0b\x45\x65\xbd\xc0\x83\x74\x37\xf5\x7c\xc9\x6f\x9c\xd4\x63\xad\x2a\xa9\xc4\x04\x7f\x9a\xd8\xeb\x22\x06\xbd\x7b\x54\x0a\xf5\x7c\xee\xd1\xf1\xb7\xa9\xae\xc4\xc4\xff\x00\x1f\xdd\xb1\x19\xc9\x41\xb4\xef\x09\x7b\x25\xad\x57\xfa\x3d\x48\x48\x74\x2a\xb8\x75\x21\x15\x3f\xf7\x6b\x93\xfd\xa7\x93\x93\xee\x84\x2a\x45\x19\x68\x55\x2c\xc5\x1e\xc9\x2a\xaf\xb9\x8a\x11\x86\x03\x3b\x4b\x2f\x30\x9b\xf6\x7d\x5e\xf1\x45\x88\xb0\x08\x53\x12\x99\x56\x62\xcd\x5a\xcb\x17\x60\x83\xa5\x78\xd7\xdf\x60\xab\xf1\xe7\xed\x9b\xb0\xaf\x5e\xb7\x14\xec\x4f\x5e\x95\xe3\x65\x69\x88\x7f\xd3\x33\x2f\x70\x31\x48\xd3\x58\xc6\x54\x2a\x2f\x57\x20\x2d\x6d\x7a\xf0\x3f\x9e\x1e\x04\x34\xb5\x61\xd3\x03\xba\x49\x0f\x60\xa9\x70\x80\x46\x51\xa5\x17\xc6\xc2\x68\x0c\x6c\x05\x8f\x9e\x12\x0e\x52\xba\xe0\x8a\x9e\xf3\xac\x94\x76\x78\xf9\x1f\x3c\x3d\xe8\xe5\xe7\x73\x6b\x6f\xb4\xd9\x27\x8c\x16\x4b\x50\xe3\xe7\x28\x0f\xc1\xfc\xdc\x21\xf2\xe6\x76\x81\x36\xdf\x5a\x61\xe2\xc2\x1a\x47\x65\xaa\xad\x70\xf7\xae\x50\x30\x20\x0d\x30\x35\x3d\x4b\x93\xff\xd7\x7f\xfd\x76\xda\xaf\x05\x04\x1c\xb3\xef\x22\xe9\x73\xb2\x6d\x24\x87\x28\x15\x10\x30\x91\xeb\xba\x89\xef\x16\x58\x88\x96\x99\x18\xa9\xeb\x25\x30\x7b\x22\x01\xc1\xec\xc9\x2b\x3b\x40\xeb\x8d\x20\xe1\x2d\x8c\xbf\xf3\x00\xff\x79\x29\x60\x7d\x9b\x87\xd7\x66\xd5\x76\xb7\x60\x31\x6c\x5c\xba\xe3\x2c\x91\x3b\x6f\xcf\x4b\x25\x05\xd0\xf0\xb2\x94\x94\xdf\x12\x38\x80\x40\x79\xad\x3e\x04\xad\x48\x75\x4f\x85\xe6\x9f\xe0\xdf\xe3\x8f\xd7\xf5\x18\x95\xa6\xf7\x3f\xfe\xf2\x3a\x08\x6d\x38\xa9\x3d\x1f\x18\xce\x99\x32\x09\x3e\x5e\xd7\x0f\x17\xfd\xf2\xe3\x2f\xaf\x7b\x11\x6d\xae\xff\x76\x84\x4f\xbc\xb2\x6e\x5a\xb5\x51\x40\xfa\x11\x3c\x62\x4a\x31\x6b\x17\x3b\xd1\x38\x8b\xea\xad\x11\xb5\x76\x02\x87\x2d\xa8\x58\x00\x85\x88\xd0\x2f\x3d\x2b\x53\x44\xa5\x73\xbc\x58\x8a\x58\x70\x80\x05\x8a\x85\x80\x29\xcc\x42\x87\x02\x1a\x73\x6d\x6e\xb8\x29\xf1\x40\x76\x90\x1b\xdb\xd6\x36\x42\xed\xa6\xd5\x25\x7e\x87\xbb\xe0\xb8\x59\x08\x07\xdb\x23\xeb\x5a\x94\x92\x3b\x51\xad\x73\xd3\x23\xd6\x9f\xa8\xb8\xb5\x7e\x77\x2b\xcd\xf1\x1e\x4c\x52\x4b\x2a\xa8\x64\x59\xf3\x3d\xe6\xf6\x7a\x8a\xb3\xc1\xc5\xef\x87\xd0\x9e\xa5\x34\x28\x62\x96\x10\x77\x1e\x2d\xa3\x95\x5e\xd8\x2d\x36\xe2\x0d\x52\xd0\xcd\xb6\x8f\x10\x33\x5c\x59\x10\xcd\xe1\x36\xe4\x2e\xdc\x86\x1a\x4e\x35\x29\x29\x90\xe7\x24\x6e\xaa\x35\xab\x78\xab\x60\xbb\x3c\x9a\x7d\x84\x9e\x9e\x7e\xf3\xec\xd9\x37\x1d\x94\x3e\x55\x94\x78\xf0\x69\x6c\x52\x7b\xb9\xb5\x7b\xb6\x63\x38\xcb\x84\xd1\x2f\xaf\xd3\x50\x76\xd4\x5a\xc1\xa6\xaf\xa4\x6a\x6f\xa7\xd9\xaf\xe9\xb5\xad\x4d\x6a\xbc\xb0\xe2\xb5\xa8\xb0\x08\xf6\x03\x09\x8f\x30\x43\x92\x20\xbb\x62\xe7\x7e\x0a\x23\xa4\x0a\x96\xa6\x47\x1b\x2f\xf7\x09\x79\xb2\x44\x05\x8c\x3e\xa3\x0b\xa3\x4c\x44\xf1\x67\xca\x2d\x85\x34\xd1\xc4\xd9\xb9\x1a\x08\x97\xa3\x64\x0e\x8d\x86\x8d\x8e\xc3\x6a\x2f\x55\xf2\xc5\x96\xec\x7f\x42\x06\x80\x81\xe6\xe7\xc5\x46\x0a\x6d\x0c\xd9\xcb\xd9\x96\x25\x86\x13\xe5\x43\x9a\x23\x7e\x7a\xf9\xfd\xd9\x80\x2d\x9a\x34\x06\x8a\x27\xe9\x26\xc2\xb8\x25\x8e\xf2\x7f\x87\x46\x3b\xc6\xa6\xd6\x3b\x1d\x50\xa4\x81\xd5\x5c\xb5\xd8\x14\x28\x5c\x81\x25\x89\x70\x50\x33\xa9\x6a\x81\x9d\x06\x25\x33\x9f\xdb\x8f\x03\xe0\xd9\xd8\x6b\xc9\x21\x93\xd2\xeb\xd2\x24\x16\xc3\x6e\x63\x34\x56\x1e\x84\xa5\x55\x1e\x81\x05\x88\xe7\xcc\x1e\xd9\x04\xd6\xe5\x3a\x14\x19\x21\x3f\xf9\xb1\x10\x6e\xf5\xee\xed\xdb\xab\xd3\x70\x3c\x4f\xc2\x3f\xc6\x5e\xe7\x83\xf0\xaa\x7f\xa2\x5f\x8d\xfd\x9e\xc1\xaf\xdf\x87\xe8\x28\x00\x4a\x8f\xa3\x3e\xce\xa8\x34\x2e\x5a\x59\x8a\x0f\xf0\xa2\x58\xeb\x36\x46\x93\x50\x1f\xa5\xf8\x6d\xcc\x87\x0d\x15\x4c\x00\x72\x2d\x1c\x2f\xb9\xe3\x7b\x62\x5c\x8a\xeb\x01\x84\x4b\x71\xbd\x1f\xbe\xa5\xb8\x16\x95\x6e\xc0\xb0\x16\xd0\xee\xf1\x52\x37\x56\x2e\x77\x30\xfc\xdf\x22\x83\xee\x15\x75\x15\x93\x19\xe3\x09\x89\xaa\x8d\x54\x7e\xc3\x88\x74\x78\x10\x52\x55\x9f\xc8\xd6\xf9\xab\x96\x17\xab\x71\x4a\x0d\x1d\x87\xf6\x28\xbb\xf5\x1c\x41\x0d\x9b\x1a\x51\x8c\xff\x3d\x76\x55\x99\x4b\x51\xc5\x0c\x5d\xa7\x1b\x56\xf9\xed\xcd\x92\x4f\xc1\xca\xa3\x62\x16\x26\xe1\x8d\x76\x5b\x39\x87\x3c\x74\x50\xe8\x82\x31\x88\x16\xa3\x99\x11\x85\x5e\x28\xf9\x2b\x76\xee\x82\x8e\x1c\x05\xc7\x24\x96\x10\x26\xdc\x7d\x49\x62\x9e\x0f\xbc\x83\xaf\x3b\x06\xac\x2d\x6e\xc0\x73\xfa\x92\x1d\x91\x93\xf6\x18\x8e\xcc\x52\x14\x2b\x2c\x5d\x42\x14\x65\xdd\xe4\xcc\x42\xeb\xaa\xd4\x37\x6a\x6f\x9f\xac\x67\xee\x1b\xbf\x6b\x38\x20\xa6\x98\xa2\xf9\xd9\xba\x90\x7e\x1e\xa6\x33\x82\x6a\x90\xf8\xbb\xc7\xaf\xb9\x1b\xe7\x15\x16\x1f\x13\x32\x9f\x75\x4c\xe8\x65\x25\xc2\xa6\x8e\xc1\x14\xb8\x1b\x41\x60\x46\x14\xa8\xd2\x46\x9e\x0e\x1e\x98\xb0\x1f\xd4\x15\x2d\xc7\xc0\x93\xa1\xab\x66\xa7\x6a\x2f\x79\x16\x3b\xf2\x4a\x8e\x66\x2d\xd5\x7d\xb1\x0c\x5e\xdb\x1d\x80\xf9\xed\xbd\x01\x6f\x24\x79\x0d\x01\x0e\xc7\xab\xab\x78\x6e\x0f\xd8\xe6\x65\xa9\x95\x3d\xf1\xb2\x71\xe2\xff\xdf\x15\x8e\xdf\xd6\x72\x46\xc6\x63\x1f\x8e\x31\x2f\x0a\x0d\x4f\x93\x60\x11\x85\x8d\xc0\xab\x69\xc2\x5e\x66\x0c\x4a\xf4\x07\xa3\x6b\x10\xec\x53\x8f\xe2\x94\x8e\x27\xd4\x26\xb2\x8d\x56\x39\x38\xc8\x0f\x80\x92\x2b\xbd\xfb\x38\xf6\xca\x62\x8c\xb3\x95\x58\x9f\xe0\x61\xad\x79\x13\x6a\xf2\x85\x0b\x63\x1a\xa6\x03\xaf\x77\x28\x09\x14\x8f\x0d\x6a\xdb\x13\x76\x16\x5e\xd0\x74\x2a\x19\x9b\x76\xed\x09\x14\x89\x1b\x2b\x6b\x84\x8a\x4c\xfe\xc4\x44\x70\xa4\x89\x31\xcf\x9d\x5e\xab\xc6\xa4\xda\x4a\xaa\x15\x01\x85\x33\x2b\x94\x33\xeb\x20\x3e\x11\x2c\xc6\x7f\x86\x45\xe6\x66\x8c\x58\xff\x31\xb9\x70\x56\x51\xf5\xd9\xa9\x33\xc5\x2f\x37\xd5\x22\x72\x10\x91\x97\xa6\x5b\x97\x85\x6c\xbb\x36\x3c\x91\xb0\x06\x6e\x18\x12\x33\x20\x60\x51\x50\xa3\x04\x15\x54\xa8\xdf\x14\x75\xbe\x90\x4a\xde\xa9\x72\xe5\xa7\x9e\xb7\x55\x15\x81\x75\xef\x14\x4a\xf2\x43\x78\x68\x36\x81\xba\x52\x67\xaf\x5f\xbe\xfa\xeb\x4f\x6f\xce\xae\xce\x7f\x79\xf9\xd7\x17\x6f\xdf\xfc\x70\xfe\xc7\x9f\xdf\x9d\x5d\x9d\xbf\x7d\xe3\x3f\xf9\xf1\xf2\xed\x9b\xc8\x75\xa9\x2c\x75\x5a\x7d\x56\x2f\x0e\xb7\xc4\x93\x38\xc6\xb1\x02\x3e\x5d\x3c\x36\xac\x19\x58\x7f\x66\x92\x34\xc0\x27\x64\xb3\xdd\xd4\xaa\x93\x7d\x31\xac\x91\x36\x25\x16\x84\x7a\x0c\xcf\x94\xcd\x27\xc4\x8e\x87\x41\x17\xa1\xf0\x64\xc9\xf6\xb9\x6e\x2a\xe1\x36\x36\xbc\xbb\x7b\x39\x02\x4b\xae\x94\xa8\xc6\x39\xaf\xed\x7e\x4c\xbf\xa2\xf7\x08\x8d\x26\xe3\x14\xb7\x21\xd9\x4a\xcf\xbb\xcf\x46\xda\x56\x8f\x3d\xc9\x09\xa2\x89\x85\xaa\x56\x01\x0e\xbd\x6b\xb4\x41\x66\x41\xfe\xfa\xf9\xdd\xb9\x1d\xc4\x58\xaa\xd5\x67\xe3\x5b\x0a\xeb\xa4\x8a\x9a\xd6\x83\x21\x1d\xac\xd5\xbf\x09\x9d\x07\xe7\xfd\x04\x6a\x85\xc1\xf7\x25\x57\x70\x8c\x86\xda\x88\x48\xae\x68\xb0\xdf\x8b\x5e\xd7\xe2\x93\x89\x05\x63\xe1\x7b\x3b\xdc\x5c\x2d\x54\x2b\xb2\xed\xcc\x0f\x9f\x09\xf4\xc1\x6c\xc7\x3c\x03\xb8\x89\x36\x3b\xa2\x37\x21\x4f\x17\xdf\xcc\xe8\x95\x30\xa9\x86\x71\x70\xba\x7a\x7d\xfc\x80\x04\xd8\xc1\xf1\xc0\x82\x3f\x65\x97\xf6\x5a\x6e\x63\x74\xd9\x16\xe2\x0e\x76\xfe\xd4\x55\x76\x96\x31\x97\x95\x13\x86\x36\x6e\x1c\xd8\x76\xef\x47\x10\x0e\xa7\x6e\x10\x80\x50\xaf\xf2\xcf\x52\xf0\x52\x18\x76\x50\x88\x31\xdd\xcf\x4b\x69\x9d\x36\xeb\x83\x90\x23\x7b\x29\x55\x41\xd2\x97\x3e\x5e\x72\xcb\x66\x5e\xcd\x0e\x79\x68\x52\x31\x25\x6e\x84\xe9\xb4\x4c\x20\x09\x3a\xca\x70\x88\xb9\xf0\x5b\x92\x0c\x62\x7a\x8a\x54\xab\xf1\x4c\xaa\x32\x88\xec\x3b\x6d\x4e\xa8\x4b\xd3\xe7\x43\x21\x78\x1c\x00\x82\x75\x22\x09\xf6\x4b\xa9\x56\xdf\x65\x53\xb0\xf4\xf4\x49\xd9\xfe\xe1\x66\x88\x57\x63\x07\x32\x58\xa4\x2d\x82\x5f\x54\x02\x66\x99\xe4\x25\xd4\xee\xba\x64\x77\x42\x62\x47\xe2\xb6\x10\x8d\xeb\x56\xa6\xed\xd6\xa6\x95\x54\xdd\xc8\xcf\x90\x96\x86\xcb\x38\xfe\xc4\x97\x73\xf6\x70\x8e\xce\x72\x50\x66\xc3\x85\x9c\xa9\x00\x1b\xca\x5d\xa8\xd8\xf3\x65\x94\xbc\x10\xe7\xb8\x35\x6c\x2d\x78\xac\x80\x44\xfd\x1a\x40\xe7\x1b\x65\x83\x03\x7d\x10\xec\x68\x4b\xc1\xe0\x2c\x30\x33\x95\x32\xc1\xd3\xf0\x8e\xa6\xe0\x6a\x3b\xf4\x80\xb4\xc8\xec\x10\x63\x7a\x6b\xb2\xa3\xec\xe1\x39\x76\x7a\xfc\xab\x30\xfa\x18\x8b\x20\xcd\x5a\x47\x4d\x30\xe7\x82\x3b\x8c\x2e\x33\x02\xeb\xab\x1b\x51\x89\x6b\xae\x32\xf6\x41\x41\x02\x77\xc4\x91\x3d\xf6\x5c\x0a\x8d\x4d\x55\x37\xd0\x30\x18\xa4\x28\xd8\xf0\xef\x5e\x7b\x0b\x2f\x25\x4f\x1d\xb0\xf6\xef\x65\xda\xed\xc4\x66\x85\x6d\xc8\x40\x91\x53\x28\xbe\xbe\xb1\xde\xa0\x7f\x77\x0b\xc7\xa6\xcb\x86\x4f\xb2\x8f\x27\xc4\xc9\x93\x52\x5c\xe7\xc1\x03\xab\x3b\x3e\xcb\x27\x3b\x9e\x30\xf6\x2e\xd8\xfa\x72\x84\x4a\x5d\xb4\xb1\xda\x68\xb8\xbf\x06\x3a\xbe\x6d\xa3\x47\x2d\x9c\x09\xb5\xc3\x3f\x97\x20\x08\x6b\x1b\x45\xb2\x7a\xa4\x31\xaa\x10\xef\x0c\xc3\xa6\x45\xd3\x4e\xe9\xc7\x7b\xaf\x3a\xae\x37\x99\xd8\x76\xad\x1a\x45\xe3\xae\x38\x86\x4b\x41\xbe\x3a\x90\x11\x50\x63\x36\x2e\x81\xcc\x66\xda\x40\x6f\x8a\xac\xea\xca\x11\xd6\xc3\xc3\xcb\x31\x33\xb4\x6c\x12\xea\x38\xd5\xdc\xbd\xd0\xe5\xde\x4b\x0d\xc6\x83\x3b\x36\xb8\x96\x0a\x64\xc3\xce\x9a\x39\x79\x2b\x8f\x64\x4d\xb9\x88\x25\x73\x52\x60\x41\x10\x83\xdc\x41\xa5\xc9\x50\x76\x32\x5b\x60\xaf\x0b\xcf\xa1\x65\x4f\x9f\x7a\x41\xf4\xf4\x69\x76\x53\x8d\x58\x2d\x38\xc9\xd3\x01\x1d\x48\x5a\xb4\x5a\x05\x73\x06\xd9\xab\x98\x87\x83\x52\x4a\x69\x97\xb9\x2c\x72\x37\x41\x6a\xe8\x01\xbe\xaf\x61\x72\x46\xb8\x43\xfc\xb3\x95\x9c\xfc\x76\x3f\x72\x9e\x29\xd6\x36\x8d\x30\x0c\xa3\x94\xa3\xdf\x74\x80\xb2\xa4\x07\x24\xb3\x00\xd8\x36\xaa\x4a\x54\xd9\x21\xde\x20\x6b\x60\x0a\xaf\x2b\x79\x29\xe8\xc9\x53\xf0\x86\xac\xb3\x00\x18\xd9\xcf\xa6\x1a\x8c\xd6\xf1\xaa\xa2\xf1\x48\x93\xb0\x69\xfb\x9c\xa9\x6d\x34\x31\xba\xaa\x74\xeb\xc6\xe5\xfe\x8f\xe2\xa0\x3d\x3a\xcd\x16\x86\x97\xe8\x23\xb2\x4b\x39\x87\x7a\x40\x73\xb0\x44\x51\x2a\x22\x77\xc2\x3a\xf6\x4e\x5c\x4b\x1b\x62\xbf\x6d\x68\x45\x4c\x46\x55\x9c\x3f\x56\x18\xdd\x9e\x67\x0a\xa3\x43\x7c\x63\xa7\x04\x2c\x67\x7f\xd4\x15\x8f\x9a\x1a\x54\xc3\x9d\x7c\xdf\x86\xde\x15\xb8\x0e\x66\x04\x95\xa9\xa6\xd8\x29\xa8\xa9\x44\x85\x31\x29\x5b\x08\x4a\xb6\x00\xaa\x9d\x46\x6b\xd2\xca\x99\xac\xe4\x5e\xb9\xcf\x97\xc2\x41\x4a\xd6\x94\x2a\xcd\x41\x0b\xe9\x6a\x3a\xea\xab\x17\x6c\x26\x0a\x5d\x63\x8f\x06\x03\xc1\x16\xe1\x2f\x51\xb3\x26\xbd\xdf\x93\x77\x84\x37\x24\x39\xda\x20\xea\x2b\x14\xe0\xa1\x30\xb4\xde\xa5\x73\x92\x90\x9e\x62\xa8\x75\x62\x96\x1e\x26\xf7\x93\xcd\x77\x49\xe5\x9d\x1a\xc2\xe1\xbe\x95\x92\xfb\xc4\x0a\x15\x93\xd3\x83\x11\x23\x02\x2c\x5b\xea\xaa\x3c\x65\xec\x69\x47\xe3\x82\xf0\x9d\x58\x40\xb0\x67\xaf\x7a\x0a\xea\xc7\x9e\xa5\x97\x49\x63\xc2\x1b\x2d\xd6\x4b\xde\xa7\x8a\x72\xb8\xc4\x06\x6b\x29\xa7\x0a\x1c\xd4\x8e\xef\x01\x5d\xc5\xaf\xa8\xe1\xdf\x1d\x91\x4d\x03\xdd\xcb\x32\xc4\x62\x97\x6b\x76\x14\xd2\x3a\x0a\x5d\x69\x34\x0c\x23\x33\x1c\xa3\x0d\x31\xf4\x16\x9c\xf1\x62\x25\x54\xc9\xd0\xa9\x81\x75\x70\x66\x6b\xf6\xdf\x5b\x6e\x56\xad\x45\x85\xf6\x06\x94\xd9\xbe\xa1\x34\x72\x1d\x76\x14\x09\xd1\x65\x7f\xc3\x91\x13\xa9\x4f\xc0\x73\x69\x4f\x68\xaa\x47\xa0\xb5\x02\xad\x76\xa3\xe1\xbf\x0a\xf5\xe1\x2b\xbd\x60\xba\x75\x4d\x9b\xf7\x0e\x43\x4a\xef\x21\x82\x5e\xe9\x85\x65\xb5\xb0\x10\xd9\x1b\x47\x45\x86\xf3\xfa\xce\x1e\x50\xce\xca\x8f\x5e\xd6\xba\x6c\x5b\x51\x55\x3a\xca\xeb\x3d\x9e\xbf\xf9\xe1\x6d\x1e\x70\xf1\xd1\xee\x11\x02\xf9\x16\x96\x16\x40\xdb\x60\x2e\xed\x81\x19\x37\x46\x38\xb7\x86\xc8\xf8\xdd\xa9\x29\xf4\x3a\x3d\xc0\x41\x18\xce\x25\xd5\xe2\x20\x78\x24\xc0\x1e\xeb\x67\x7b\x92\xb4\x01\x2f\x9f\x1f\xb2\xde\xcd\x6b\x98\xa1\xfb\x3e\xdd\xb0\xc1\xf7\xad\x11\x1b\x11\x14\x9e\xea\xc6\x6f\x65\xf6\xf2\xec\x96\xb7\x2d\x35\xee\x0e\x98\x5f\xa0\xd2\x6e\xbc\x6c\x83\x34\x7b\x8a\xab\x7d\x0a\x10\x49\xf6\xc1\xdb\x51\x2b\x08\x41\xe5\x52\xb1\x50\x49\x03\x33\x0d\x0f\xf3\x3e\x0f\x5d\x4f\xca\x0d\xfa\x19\xf2\xd7\x34\x82\x4f\x46\x47\xc8\x3c\x80\x79\x30\xf8\x8f\x4d\xbd\x3c\x3d\x3a\xc0\xef\x4e\x2b\x5d\xac\x60\x17\x9c\xa8\xfc\xea\xeb\xd3\x99\x76\xf6\xe0\x78\x32\x99\x4c\x27\xec\xcd\xdb\xab\x97\x58\xd1\x32\xd5\xaf\x61\xbc\x2c\x2d\xda\xc2\x38\xd4\x9a\x07\xff\x35\xb4\xd5\xd9\xcc\x6e\xec\x97\x1c\x09\xfd\x38\x9e\xd0\x0d\x68\x04\x2f\x4f\x6e\x8c\x8c\x86\xfb\x9a\x37\x96\xba\x02\xf0\x92\xaa\x45\x22\x0d\x8c\xbf\xa6\x6b\x11\x34\x05\x34\xc9\xa5\x66\x69\xc9\xa0\xc1\xe2\x6c\x6e\xc9\x55\x32\x3b\x6e\x58\x1f\x3a\x9a\xe0\x3f\x7a\x31\x1b\xa9\x8a\xaa\x2d\xc5\xb8\xf4\x7c\xc0\x9d\xff\x47\xa7\x64\xfa\xce\x58\x6a\x85\xab\xc0\x2c\x87\xe0\x89\x1a\x75\xfd\x95\x5c\xf1\x6a\xfd\x2b\x29\x4c\x64\xca\x2f\x74\x29\x92\x07\x9d\x97\x65\xb7\xfe\x79\x6c\x6f\x00\xfa\x27\xe2\x96\x0c\xf4\xd4\x47\x25\x3b\x07\xd3\x0d\xc6\xc6\xee\x4c\x49\xd3\x55\x6c\x0a\x1e\x6a\xfa\x0b\x20\xdb\xcf\x1c\x4d\x79\x95\x90\xf0\x36\xef\xe0\xd4\xcd\xff\x0d\x2f\xef\x41\x0b\x69\x10\x0f\xfb\xf6\xa9\x7b\x43\x1e\x69\x8a\x54\xc5\x03\x91\xd5\x57\xce\xf8\xcb\xba\x58\xc7\x43\x17\xab\x54\x8c\x34\xa9\x97\x07\xff\x7f\xc6\xe0\x80\xc1\xbf\x7b\x25\x78\x75\x30\x19\x9e\xe7\xa4\x12\xdc\x66\xb1\x0d\x71\xda\xb0\xc4\xdd\x93\xdf\x3d\xed\x10\x61\x5c\xa8\xd7\xb6\x23\xac\x76\xdd\x00\xc2\x03\xa2\x97\x65\xcd\x6b\xfd\x3c\x60\xbf\x3b\x40\xeb\xca\x6b\xde\x1c\xf8\x23\x78\xf0\xca\x2f\xed\x20\x96\xfa\xee\xe0\x8b\x7f\xeb\x94\xd7\xf0\x7a\xfa\x78\x25\xf6\x79\x67\xbc\x82\xf4\xc9\xc1\x2d\x92\xa5\x50\x4e\xce\xd7\xd8\x95\x03\x1a\x77\x69\xe5\x44\x32\x80\x03\xf1\x86\x50\xc2\x36\x3d\xd4\xb3\x47\x9b\xc5\x49\x46\xd2\x01\x4c\xe1\xb5\xba\x37\xae\xd9\xdb\xf6\xbe\x18\x13\xae\x9b\x9b\xde\x17\xfc\x1e\xbb\x64\x75\xae\x29\x0c\xe5\x81\x22\x7e\x5f\xa3\xb4\xdf\xd1\x26\x5a\x57\xad\x7f\xe6\xd5\xd4\xaa\x43\x6f\xf4\x2a\x86\xc5\x5d\x3c\x8e\x1e\x00\xb8\xae\x7d\x5d\x66\x87\x29\x08\xbc\x7b\x1b\x80\x14\xa5\x88\x98\x24\x07\x30\x68\x04\x5f\x12\x43\xb1\xbe\xd0\x12\xef\xb6\xc1\x18\x0a\x4c\xd6\xf9\xf9\xea\x87\xf1\xb7\x99\x36\xc4\x41\xc6\xaf\xe1\xd3\xc6\xe8\x02\x4d\x04\xb3\x75\x7c\xd5\xa0\x61\xfc\x85\xe7\xae\xdb\x58\x2d\x5f\x95\xcc\x19\x19\x81\x36\xdc\x90\x61\x21\x5a\x40\x81\x5b\x00\x33\x84\x0d\x3d\x90\x6b\x5e\x8a\x54\x6a\x9f\x76\x36\xbc\x50\x63\x30\x7a\xde\x54\x10\x04\x1d\x06\x35\x63\xde\x1d\xbe\x15\xab\x75\x0a\x1d\x7c\xe7\x75\xa6\x09\xbb\x84\xb2\xb3\xa7\xec\x7d\x24\xcf\x7f\x22\x79\x3e\x9c\xfa\x9d\x78\x7f\xb2\x12\xeb\x0f\xe1\x76\xc1\xa6\xcd\x10\x56\x14\x8d\x1c\xb6\x1b\x30\x06\x7f\xf4\x0b\x5d\x89\x75\x8c\x09\x02\xd7\xc1\xe0\xf7\x04\xd8\x7f\x4c\xe5\xde\xc1\x4b\x27\xca\xc3\x01\x61\xfa\x09\xec\x90\x75\x45\xf0\x1b\xe1\x59\x74\x26\x15\x37\x6b\x3a\xf8\xee\xf8\x6e\x1e\x21\xfc\xae\x3a\x9d\x1e\x06\xf8\x03\x9b\xe9\x04\x81\xed\x85\xf9\xb6\xf9\x72\x90\xb9\xdb\x1d\xf6\xb0\x1b\x17\xcd\xa3\x45\xaa\xd2\x14\xcf\x44\x7d\x7b\x30\xfb\x20\x44\xe2\xa5\x2b\xda\x51\x8a\xd9\x9e\xfb\xfa\xfe\xbf\x79\x40\x1f\x46\xc3\x1b\x9b\x1b\xcf\xf2\xed\x1d\xed\xb9\xb7\x03\xbb\x9a\x1d\x04\x58\x42\x6f\x64\x9f\x1e\x39\x13\x90\x7c\xbb\x3f\x0b\x5c\x08\x63\x21\x2d\xc5\xb1\x5f\x00\x06\x7b\x51\x71\x59\x87\x2a\xcd\x24\x2f\x33\x8a\x35\xd7\x05\x4c\x79\x12\x73\x69\x4e\x80\x4c\xc9\x96\xa2\x1b\xa1\x78\x23\x1f\x4e\xe2\xfb\x3f\x9e\x5d\x9c\xb3\xef\x2f\x5f\xdd\xdd\x68\x07\xe2\x69\x63\x43\x92\xbc\x77\x2b\xd0\x84\xda\x7a\x05\x70\x9e\x63\x1e\x8f\xf4\xf7\x6f\xa5\x3d\xb7\xfb\x6a\xd9\x79\x60\x2d\x75\x15\x75\x10\xbf\xe6\xa0\x0a\x12\x1d\xd2\x3e\xde\x3c\x68\xb3\xfc\xb7\x37\xa9\x51\xbe\x50\x96\x5c\x61\xd4\xc5\x0c\x03\xf7\xf3\xbe\x2d\x33\x51\xe9\x14\xbc\x29\x7b\x17\xf7\x4c\x80\x0b\x91\x46\xe1\x55\xc2\x95\x9d\x43\x9c\xa1\x52\xda\x51\xf3\x57\xff\x17\xaa\x94\x31\xd0\x55\x49\x53\x78\x21\xf5\x28\xef\xb5\x8e\x79\x04\xac\x81\x8e\xb8\x71\xb6\xe2\x7b\xb0\x08\x3d\x76\x72\x72\xa1\x10\x08\xa4\x34\x9d\x54\x3d\x9a\x0b\xa9\x79\xff\x69\x68\x17\x36\x67\x88\x01\xed\xe5\xec\x01\xcd\xb1\x17\xdf\x7f\xb7\xc3\x22\x74\xa1\xcb\xef\xa5\x35\x2d\x0c\xfa\xae\x2d\x17\xc2\x75\x2f\xe6\xe0\x52\x3a\x7f\x7c\x4d\xa4\x6a\xa9\xc6\x43\xdd\x56\xee\x4a\xce\xee\xf5\x00\x19\x5a\x3d\x1c\x5f\xf0\x0d\x59\x47\x6f\x8b\xee\x2c\x8c\x0a\x85\x71\xc5\xc4\xb5\x2c\x82\xa7\xa9\x7f\xb3\x6f\xf6\x04\xe9\xf5\x02\x99\xb0\xb7\x8a\xec\x72\xd0\x5b\x06\xfa\x31\x74\x16\x45\xd5\x11\x7a\x8d\x65\x62\x84\x75\xd4\x0e\xfa\x8e\xc9\xe1\x2e\x34\x5f\x82\x2e\x03\x3d\x69\x80\x18\xf1\xd6\xff\x3c\x92\x64\x79\xf9\x5f\x45\xaf\xc7\x26\x55\xa4\x45\xad\x99\xca\xf9\x1c\x23\x25\x13\x0d\xfb\xf4\x42\x2a\x76\x60\x04\xdd\x7a\x83\x92\xf1\xe4\xd2\x99\x7d\xb8\xbb\xa3\x97\xd1\x09\xde\x9d\x19\x68\xf5\x98\x1e\x04\x6d\xbc\x92\x8b\x85\x5b\x2b\x17\xaa\xd7\x9f\x1d\x96\x91\x00\xe9\xde\x9f\x27\xec\x5c\xb1\x82\x5e\x0a\xe9\x3b\x69\xb3\x94\x9d\x98\x8f\x04\x54\x85\xa0\x86\x60\xdb\xa4\xcc\xb3\xa4\xa4\x06\x08\x14\xb8\x46\xe1\x43\x10\xe5\x4d\xe6\x54\xd4\x5c\xe6\x6d\xc5\xa8\x45\xbf\xb8\x75\x16\x95\x4f\xb2\xc2\x0a\x23\x0e\x2d\x53\x3a\x76\x3d\x26\xb7\x0e\xe3\xd4\x1a\xb8\xf7\xc0\x0b\xbc\x18\xb1\x47\xdf\x98\x56\x1d\xea\x32\xd2\x2e\x11\x4f\x8b\x9e\x53\x0b\x8d\x92\x47\xcc\x52\x60\x21\x4e\xed\x99\xb4\x9e\x09\x30\x91\xa5\x5c\x6a\x59\x7b\xfe\x33\x62\x21\xad\x33\xeb\xc7\x50\xb3\x0e\x77\x67\x9c\x67\x5b\xef\x28\x2f\xb7\xb1\x9f\x47\x50\xe4\xfa\x38\xd1\x36\x46\x7d\x0d\xf0\x4a\x3e\xf7\xa2\xd2\xb3\x4e\x7a\xd6\xf0\x9c\xe7\xaa\xa4\x72\x14\x72\xde\x05\x9b\xa2\x48\x82\xbe\x83\x20\x21\x99\x17\x8d\x7a\xdc\x06\x79\xab\xe7\xf4\xd7\x64\x87\x8d\x82\xc2\x1f\xc9\xfb\x07\x20\x6e\xd4\xda\x2b\x85\x13\x45\xd6\x4c\x3f\xef\xa1\x22\xe7\x03\x47\xa0\x2b\x40\xc2\x22\x8e\x64\xb2\x48\x85\xdf\xe5\x9c\x0a\x8e\x92\xe3\x4c\xca\x40\xee\xd9\x43\xe9\x07\x8d\x2e\x7b\xfa\xc1\x32\x75\x18\xef\x18\xd3\x37\xae\xff\xd0\x8f\xb4\x13\x1f\x70\xa1\xcb\xcb\x46\x14\x57\xa2\xf6\x18\x0b\x08\x87\x68\x8b\x98\xaf\x94\xd2\x51\x72\x70\xd3\x89\x17\x0d\x93\x46\x97\x71\x1c\x6a\x1e\x52\x54\xe5\x28\x65\xc3\xe4\x63\xb2\xb2\x6d\x18\x1e\x43\x23\x43\xdd\x07\xea\xe0\x26\x0b\x56\x0b\xb3\xa0\x16\x86\x21\x03\xb9\x17\x51\xeb\xe5\x58\x68\x39\xde\xab\x9f\x80\x6f\xe2\x2c\xc0\x31\x74\xc6\x15\x23\xff\xd4\x6e\x63\x71\x76\x58\x7d\x26\x57\xa7\x19\x10\xb4\x13\x6e\xed\x57\xda\x18\x5d\x0b\xb7\x14\xed\xbd\xeb\x86\xde\xc7\x3d\x78\x11\x67\xe9\x75\xe9\x80\xa8\x90\xf4\x57\xe8\x06\xc1\x1d\x14\x72\x0f\x2e\x08\xa4\xdb\xb9\xc3\x3b\x15\xb9\xd6\x8f\xf2\xdb\xfd\x5a\x2b\xe9\xb4\x99\x46\xa5\x31\x15\xed\xc0\x53\x12\xca\x4c\x86\x3e\x6a\x86\x37\x7d\x1f\x5f\xf0\xd1\xe7\x8e\xbe\x1c\xe1\x70\xa6\xd1\x5a\x87\x71\x70\xd1\x02\x03\x85\x35\x71\xd8\x6b\x59\x18\x7d\x81\xf4\x02\x90\xaf\xf1\xd3\x09\xfb\xf3\xd9\xbb\x37\xe7\x6f\xfe\x48\x8f\x44\x78\x2a\x67\x6d\xd6\x87\x96\x11\x9c\x32\xc8\xd8\x21\x34\x20\x4b\x04\x2c\xb4\x11\xda\x9e\xa4\xdd\x1b\x07\x34\xdf\x5f\xe4\x3b\x0a\xf5\x82\xe0\xf7\x1f\xc2\xf5\x95\x32\x2b\x53\x4e\x20\xbe\x10\x28\xf0\x4a\x94\x13\xf6\x17\xdd\x02\xd1\x20\x0c\xb2\xd1\xe5\xb8\x26\x14\xc3\xdd\x4b\x55\xbe\xe2\xf5\xb7\xb1\xc3\x4e\xc3\xed\x06\x59\xeb\x9a\x5c\xe0\xd9\x47\x6f\x73\xaa\xa2\x5d\xb8\x0f\x61\x4b\x37\x93\x47\xe0\x47\xcc\x08\xb6\x8f\x63\x8f\x4c\x6d\xc3\x9c\xe0\xe7\x0b\xd2\x7b\xa0\xad\xea\xc0\x94\xf7\x7f\x2e\x0e\xcf\x8c\x60\x86\x0a\xa5\x65\xfc\x90\x52\x19\x10\xa9\xec\xee\x68\xab\x8a\x92\x2e\x1f\xf2\x8d\xd9\x56\x55\xe8\x47\x81\x6c\x63\x31\x81\xc0\x4f\x1f\x92\x33\xc9\x0c\xd1\xe8\x32\xcf\x01\xcf\x67\x24\x5f\xb9\x33\x52\x5c\xf7\xc5\x30\xaa\x5e\x21\x48\x4a\xdc\xa2\x0d\x2c\xea\x62\x28\x17\xf2\xe9\x42\x3f\xc9\x5c\x73\x4f\x25\x26\xb4\x19\x81\xf2\xe9\xd5\xde\xb5\x6e\x0f\xb3\x1c\x4a\x14\x4d\x79\xf6\x28\xb6\x49\x8f\x93\x02\xd8\x84\x59\x40\x21\x2c\x70\x9a\x5d\x52\x17\x44\xf0\x29\x55\x76\xe3\x75\xcc\x55\xcd\xb4\x76\x8f\x36\x00\x85\x45\x6e\x16\x5e\xde\x2c\xba\xbc\xf6\x92\x21\x3e\xe2\x3f\x09\x5d\x10\xd2\x90\x70\x6f\xc1\x61\x04\xf2\xba\x4f\x57\x49\x66\x6e\x0a\x19\x0c\x65\x27\xf0\x40\xc5\x85\x97\x5a\x40\x37\x60\xd4\xd6\x07\xb0\xf1\x0b\x04\xc3\x24\xac\x6f\x84\xe8\x73\x15\x8f\xba\x3f\xd0\xb8\xff\xc1\x5f\xff\x77\x2e\x5b\xa8\xa1\xd0\x9e\xee\xee\x3e\x6b\x82\x81\x9d\xc2\xdb\x89\x69\x20\x90\xfb\x7c\xce\x2a\x31\x77\x0c\x14\x6e\xc4\xa4\xef\xb5\x0f\xc6\x78\xbe\x12\x2a\x29\xa2\x83\x2c\x97\xf6\xa7\xdb\x8d\x2b\x8f\x86\xf0\xfb\x31\xf6\xa8\x09\x13\x42\x22\xf6\xac\x29\x17\xee\x69\xbe\xa1\x75\x53\x41\x71\x20\x67\x19\x45\x0e\x45\x94\x52\x1a\x0a\x2d\x23\x4d\x19\x2f\x62\x2a\xc2\x99\x63\x36\x0d\x5d\x94\x99\xd1\xd1\xef\x95\xe6\x83\x7c\xc3\x86\x47\x27\xd2\xee\xf8\x9c\xcf\x2c\x24\xd4\x2b\xbf\x1b\x9f\x2b\x91\xde\x1b\x02\x2f\x59\x29\xf0\x46\xf5\x8b\x5d\x37\x82\x4d\xbb\x95\x5d\x4b\x5d\xac\x84\x41\xf0\x1f\xad\x56\x99\x1c\xa7\x80\xc4\x87\x31\x34\x80\x76\x48\xc1\x92\x9b\xaa\xa1\xcb\xfe\x18\x0a\x44\x51\xb0\xd2\x70\x6d\x78\x0a\xa8\x62\x2f\x74\xdd\xc8\x8a\x5c\x6a\x9c\x51\x58\x2c\x2a\xcf\xd8\x2c\x5c\x4e\x44\x37\xaa\xa5\xe1\xc5\xca\x6f\xbc\xa7\xce\x73\x1c\x40\x31\x2d\x92\xe2\xc7\x6c\xdb\x50\xd1\x0c\x2f\x58\x42\xa9\x9a\x11\xe3\x96\xdd\x88\xaa\xf2\xff\xfd\xcb\xd9\xeb\x57\x60\xce\xf9\x8f\xd7\xaf\x3a\xbe\x90\x49\x50\x60\x49\x7c\x91\x76\xc7\x1d\xab\x04\xb7\x8e\xfd\xcb\x1f\xe5\x77\x7e\x6f\xb0\xd9\x1d\x69\xb1\x70\x36\x3b\xf1\x54\xb4\x90\x59\x2b\xfd\xdb\x84\x4c\x30\x00\x92\x6c\x58\x1d\xf6\xbc\xf0\xf7\x1d\xe9\x67\x30\x04\xe0\x75\xb2\x3d\xb2\xbf\xc5\xb6\xd3\xe9\x36\xea\x98\x60\xc3\xee\x1f\x8f\xd0\xfc\xb8\xe4\x9e\xa4\x0a\x4a\xeb\x23\xda\xc9\x10\xf9\x28\x94\xb4\x6c\xc3\xbb\xba\xd2\xfd\x3b\x24\x12\x93\x5e\x20\xc8\xab\x75\x23\xb6\x68\x5a\x81\x9b\x69\x72\x4c\x8a\x4d\x85\x40\xe7\xdc\xba\xf1\x47\x6e\xb0\x18\x28\x71\xe1\x40\x83\x25\xfa\xea\x38\x19\xd0\x66\xda\x2d\xf3\xf1\x60\x53\x0c\x00\x3c\x51\xa2\x26\x32\x62\xee\x46\x77\xe4\xf6\x4f\x32\xc6\x70\x77\x5d\xcc\xa4\x78\x8e\x52\xe9\xa9\x08\x72\x25\x5d\x68\x45\xd1\x6b\xfe\x8a\xdf\x45\x4c\x72\x03\xb2\x2a\xb0\xe7\x05\xe9\x4c\x18\x2c\x20\xd5\xbc\x6a\xfd\xe8\xe4\xbb\xad\xda\x5c\x30\x87\xda\x63\x7e\x4a\x62\xc6\x20\xd5\xfa\x95\x29\x56\x20\x3f\x06\x0a\x91\xcc\xa5\xb1\xae\x43\xf5\x68\x07\x41\xc3\x65\xf4\x0c\x0f\xc8\xf0\xa0\xad\x29\x9d\x1a\xb0\xaf\x82\x09\xb4\xf6\x6f\x7b\xb1\x51\x20\x13\xbf\xcc\xf2\x42\x83\x88\x7e\x40\x5d\xf8\x5d\xb8\x05\x32\x45\xb8\x6d\xd8\x6b\x7e\x8d\xbd\x5a\x42\xbd\x8c\xf3\x8e\x2d\x11\xd3\x4a\xe0\x23\x12\x4e\x8d\xb6\x5e\xb7\x5f\xdf\x61\x36\x30\xc2\xab\x6e\x0f\x69\x32\x78\x07\x33\x0c\xc7\x1c\x61\x37\xc5\x6e\x41\x7a\x42\x29\xda\x5e\x84\xcd\x0c\x2e\x99\x25\xb8\x16\x54\xb7\x0c\x5f\x01\x7f\x6b\x65\xb1\x0a\x63\xf5\x3c\x84\xd2\x40\x68\xff\x3a\xd4\x21\x49\xf1\xc2\x4f\x92\x7f\x05\xa2\x6f\x40\x08\x52\x0a\x38\x35\x01\x22\xe3\xb3\xb4\x54\x92\x4a\x18\x09\xb9\x25\x15\x83\x6c\xf8\x94\x67\x12\xd2\xcf\xa3\x09\x87\x2e\x98\x6e\xa0\x4d\x08\xe3\x19\x5c\x21\xdb\xa0\x54\xf6\x68\xc6\x37\x48\xd6\x06\xf4\x2a\xd4\x06\x4d\x41\xbd\x51\x8f\xeb\xe1\xe6\x27\xd6\x48\x30\xbc\x65\xe0\xd2\x0d\xfd\x1a\x62\x97\x5c\x30\x1c\x48\x15\xaa\x81\x06\xbc\x52\x97\xa6\xf4\x44\x92\x96\x59\x27\x9a\x78\xec\x4a\x2f\x11\x36\x15\xcc\x44\xf4\x11\xd1\x19\x04\xc2\x75\xb8\x01\x43\x7e\x46\xc3\xad\x4d\x31\xa4\xe1\x26\xd8\xe8\x0c\xfa\x84\xec\xb3\x79\x77\xd0\x2c\x5f\x86\xcf\x57\x3c\xa6\x70\x1c\x01\xfc\xe0\xa9\x49\xb7\x3d\x19\x93\x6a\xed\xc9\x43\x39\xca\x1b\x1d\x46\xef\xec\x2e\x8a\x1b\xb7\xd1\x51\x94\x7e\x8d\xff\x19\x37\xdc\x2d\x9f\xe3\x45\xe3\xcf\xcf\x38\x66\x8f\x6d\x7c\x89\x55\xba\x9f\x1f\x50\x71\x9f\xb1\x9e\x8f\xfd\xcb\x68\xbc\xf2\xcb\x39\xfd\xb7\x67\xff\xf6\xf5\x3f\x7c\xe7\xd0\x40\x29\xd2\x69\xee\xdd\xd3\xd3\x51\x34\x2c\xdd\x48\xd9\xb1\x5b\x93\x24\xdd\x9c\x0c\x1a\x3a\xdc\x77\x22\x08\x42\x6a\xb3\xf6\x3c\xfd\xd9\x8e\xc2\x63\x2c\xd5\xbe\xd2\xd9\x87\x44\xe0\x84\xdc\xba\x11\xc7\x03\x84\x00\x96\xb9\x37\x76\xa1\xc2\x6e\x8f\x12\x00\x2c\xdc\x28\x47\xb1\xac\xf9\x49\x4f\x8a\x04\xdc\x08\xf1\x1c\x2d\x68\x0e\xed\xf9\xbc\x1a\x37\xba\x92\xc5\xfd\x76\xe8\x10\x71\xe3\x0d\x54\x04\x09\x74\x41\x40\x9d\xc6\x71\x7e\x82\x70\xd8\xb1\x1f\xf5\x51\x6b\xc5\x29\x21\x06\x69\xc4\xf2\x57\xff\xc1\x09\xab\xf9\x2d\xfd\x70\x3c\x61\x2f\xa0\x40\x9f\xcb\xdb\x1a\xf7\x92\x04\xe5\x9c\xb5\x10\x50\x93\x62\xb2\xc0\x44\xbf\xc7\x95\xb8\xe3\xde\xf3\x50\x76\x85\xda\xba\x9e\x21\xb9\xeb\x6a\x24\x5f\xc1\x60\x3a\x2e\x98\xa0\xb3\x2e\x0a\x21\x50\x92\x82\x03\x2d\xab\xf9\x1a\x0c\x57\xa0\x06\x96\xa4\x99\xa6\x50\x2e\x0a\xaa\xe6\x15\x06\x8a\xc2\x93\x99\x41\x41\x53\x8a\xf2\x42\x3f\xd2\x34\x54\x5b\xd3\xb3\x8f\xa2\xa0\xbb\x07\xaa\x88\x7a\xf8\xad\x8d\xde\xd6\x54\x1f\xcd\xbf\xe9\x4a\x4a\x2c\x9e\xc6\x6a\x6d\x47\xe2\x16\x44\xfa\x29\x9b\xba\xca\x8e\x33\xd4\xc3\x27\xc7\x68\xba\xa3\xb2\xba\x78\x41\x77\x96\x08\xa1\xf4\xd8\x94\x3e\xe2\x35\x61\x17\x77\xcf\x0b\x17\xfb\x52\x2e\xc2\xe2\x1b\x23\xb5\x91\xd0\x17\x0a\x0b\xa6\x25\xbf\x35\x98\xd6\x80\xe6\x69\x31\xd4\x86\x60\x84\xf9\xf2\x9d\x25\xac\xc4\x3a\xcc\x82\xc8\x7a\x4d\x9d\xfe\x80\xc6\x3a\xb5\xf1\x61\x30\xd9\x4d\x28\x0e\x34\x25\xea\xc4\x96\xbd\x68\xd4\x89\x64\xf5\x7b\x0a\xfa\x51\x5e\x74\x5f\xda\x70\x3a\x88\x0e\x76\xda\xc9\x35\x90\x26\xf1\x01\x15\xfa\x66\x9b\xdd\xb3\xb3\x1d\xcb\x29\xef\xbf\xac\xb7\x6f\xd3\x68\x63\x51\x78\x93\xe2\xf7\xfc\x8e\x21\x59\x4c\xe6\x96\x0f\xa1\xdf\x10\x38\x7c\x90\xd2\x78\x6f\x86\xe2\xb0\xc9\x19\x14\x35\x81\x06\x5e\x01\x9e\x62\xa1\x95\x9d\x6b\x9b\x58\x4c\xf0\x11\x5c\x9e\x5f\xb2\x21\x1c\xb0\x6e\x27\xc2\xad\xb2\x63\x27\x4c\x4d\x44\xdf\xf3\xae\xb8\x7a\x75\xc9\xb2\x51\x30\x62\xc4\x2a\xb9\x12\x6c\x2a\xca\x85\xf0\xdb\xe9\xb5\x36\x6a\xc7\x87\x4f\x5c\x23\x84\x2a\xcc\xba\xf1\x27\x72\x28\xd3\x3f\x49\x14\x3c\x60\x9b\x99\xda\x59\xfb\x86\x2d\xf9\xda\x3d\x86\xbc\xc7\x72\xfa\xed\x66\xa0\xb9\x43\x2f\x87\xfc\x4e\x0c\x69\x31\x9f\x84\x67\xf2\x9d\xec\x83\x6e\x6e\xdf\x0d\x32\x3d\x3b\x9a\x88\x6b\x6f\x4d\x54\xcd\x31\x25\xdb\x82\xad\xeb\x20\xb3\x30\x43\x90\x36\xfc\xeb\xc3\x01\xfa\x11\x30\xb5\xa5\x17\x35\x9d\x4d\x3e\xa2\x50\x8a\x54\xda\xc4\x26\x9d\xda\x23\x45\x2e\xf8\xe0\x8a\x48\xf1\x08\x46\xf0\x72\xc4\xb4\x1f\x7b\x23\xd1\x37\x12\x5d\x90\x50\x23\x94\x45\x9b\x37\xcb\x0a\x98\x93\xcd\xf7\xe0\xe4\xe0\x5e\x3b\xd3\xdb\x93\x68\x50\xd8\xba\x33\xfb\xe5\x2a\x0d\x71\x4e\x7e\xbd\x3e\x2c\xf7\x24\xe1\xfa\x80\x5c\xe3\x3f\x4a\x5e\x5b\x46\xfc\xf3\x65\x38\x27\x1c\x7e\x08\x7c\xf8\x32\x9c\x43\x20\x03\xff\x7c\x19\xce\x21\xa0\x7b\x9e\x69\xfe\x89\xe2\xa7\xd3\x37\xee\x37\x93\x40\x43\x37\xec\x97\x66\xa7\xee\xca\xfe\x8b\x9b\xee\xc1\x4d\xdb\xb5\xa1\x3d\x37\x29\x4f\x71\xe9\x71\x18\x85\x3a\xda\xe8\x00\x07\xca\x06\x33\x6c\x47\xab\x0e\x66\xdd\x39\x99\x57\x3d\xd6\x19\xe4\x09\xcb\x3d\x75\xf1\x96\xef\x2a\x08\x60\x99\x93\x95\xa0\x68\x3b\x02\x39\x13\xa9\x92\x46\x9e\x51\x06\x1a\x39\x50\xd0\x80\x32\xcc\xc8\x1c\xbc\x14\xbc\x72\x4b\xac\xa9\x1e\x33\x0e\xac\x28\xda\x78\x05\x85\xf6\xe1\x10\x70\x3a\x0f\xf3\x8a\x0a\xaa\x76\x40\x90\x6e\x66\x1b\x0f\x0a\x11\xbe\x54\x42\xf0\x67\xa8\x5c\x94\x2d\x91\x80\xbf\x38\xc3\x64\x22\xea\x83\xed\x15\x2c\xe0\x8c\x6b\x5e\xc9\x12\x17\x9a\x0c\x4e\x76\xa9\x4d\xcc\xa4\x47\x0e\x3a\x0a\xb5\x69\xa2\x33\x71\x62\xaf\x8b\xe3\x94\xf0\x26\x8b\x65\x88\x8f\x93\x6a\x6e\x38\x06\xb5\x79\x85\x6e\x21\x94\x40\xe6\xeb\x68\xf9\xfd\xd2\x0a\xd4\x5b\xf2\x61\x15\xac\x9d\x4a\xfa\x97\x14\x21\xdb\x59\x38\xcf\x6d\xfb\x62\xa2\x24\xf9\x50\xbf\x9c\x28\x09\x67\xfe\x0b\x8a\x92\x7b\x8b\x7a\xa9\xf0\x98\x8c\xbd\x7a\x9e\x6b\xfc\x64\x93\xb9\xef\x03\x83\xba\x98\x94\x82\x57\xb8\x86\x30\x41\x28\x96\x15\x0a\x64\x40\xa5\x52\xff\x1e\xf8\x1e\x9f\x43\x79\x79\xc1\x77\x82\xaa\x0a\x85\x41\x5f\x5a\xad\x4b\x81\x14\x7b\x17\xe8\xfc\x44\x7f\x4c\xb7\x6a\x27\xbe\xba\x36\x1d\x45\xb4\xdb\xe1\xe3\x18\x7e\x65\x43\xa3\x24\x30\xbf\xc7\xce\x63\x45\xca\xf4\xd5\x18\x38\x86\xe1\x59\x68\x16\x3f\x02\x53\x4c\xf2\x3b\x1f\x47\xe6\xf4\x2c\x96\x44\x0c\x80\xde\x16\xeb\x43\xc1\xd0\xb2\x1b\xf1\x1a\x4a\xb4\x71\x32\xd0\x27\xcb\x58\x48\xbd\x40\x47\x34\x36\x88\xe7\xdd\xfa\x9b\x8f\x20\xb0\xe6\xcb\x04\x66\x43\xb1\x0d\x88\xc8\x0e\x1b\xaa\x84\x28\x43\x0e\x16\x39\x54\xf3\x69\x95\x2e\xc5\xb8\xd7\xa2\x72\x4b\x49\x31\x2a\xfc\x13\xd9\x4a\x53\x79\x38\x4d\x39\xdc\x6f\x74\x29\x2e\xba\x3d\x2b\xa9\x17\xeb\x84\x7d\xef\xc5\x9b\x97\x90\x65\xb0\x7e\xfe\x6c\x53\xd1\x31\x30\x77\x53\x11\xd8\x49\x9e\xf3\xda\x73\x8e\xdf\xdf\x33\x4e\xc8\x5e\x05\x38\x5b\x2d\xed\xb6\xb3\x2a\xbf\xcd\xd1\x2d\x7e\xf8\x02\x83\x70\xce\x2f\x0e\x47\xec\x30\xac\xf2\x90\x45\xcd\xe9\xf0\x95\xe6\xe5\x77\xbc\xe2\xaa\x10\xe6\x70\xe3\x88\x67\x15\x94\x1f\xcc\x5d\x19\x36\xe5\xbb\x50\x7d\x39\x8f\x6b\x6f\x2d\x19\xcb\x48\x13\xf1\xff\xa4\x01\x50\x12\x2a\xcd\x8a\x9b\x33\x10\xf0\xbb\xfa\xd6\x8e\x7b\xcb\xb1\x27\x5e\x6f\xf9\xa7\xde\x6f\xd9\x19\x5d\x60\xa1\xa6\x5e\xbc\x1a\xc0\x03\xe7\x6f\x26\x71\x1d\x1d\x6a\xe4\x5a\x68\x67\x1f\x09\xad\x62\xc9\xd5\xe2\x51\xc4\x6f\xd0\xba\xef\x5b\xd4\x3c\xa7\xbb\x23\x2d\x81\xbd\x7f\xcf\x1b\xb9\x30\xba\x6d\x4e\x3e\x50\xe9\xee\xd3\x0f\x2b\xa9\xca\xd3\xf7\x51\x66\x9e\x7c\x00\xfb\x43\x3c\x19\xa2\x12\xb5\x78\x38\x87\x3e\x70\xd5\x55\x98\x64\xd8\x21\xd0\x15\x45\x4d\x3b\xab\xa4\x5d\xfa\x4f\x0b\xb4\x67\xc7\x5b\xef\x09\x69\x7c\x5c\xb1\xb7\x57\xaf\x2e\x58\x16\x66\x5f\xe8\xaa\x12\x45\x8c\x6f\x4f\xb9\x56\x10\x1d\xb9\x21\xee\xa8\x10\x76\x34\x0b\x47\x32\x20\xe0\x18\x71\x9f\x7c\xd8\x44\xe7\x48\x47\x76\x44\xae\x55\xcb\x9e\x3e\xfd\x91\x0b\xb3\x10\xe6\xe9\x53\xff\x19\x51\x1e\xe0\x7e\x35\xf9\xdd\x37\xff\x2f\xd5\xda\xeb\x53\x61\x4b\x60\x78\x37\xce\xbe\x37\x08\x80\x16\x5c\x1d\x1e\x62\x51\x4d\xba\xf5\xc8\x36\x0c\xb7\x23\x54\xcd\xc0\xb2\x1a\xec\x8a\x68\x88\x2c\xfa\x08\x4e\xc3\x17\xf7\xa6\x8e\xa8\x60\x15\x44\x5a\x86\xef\x09\x81\x4e\x39\x74\x18\x11\x89\x9d\x5f\xf8\x7d\x31\x7c\x8f\x98\x55\x95\x95\x4f\x8a\x37\x83\x57\x33\x88\xc9\xbd\x1e\x15\xe7\x2c\xb9\xe3\x9d\x5a\x7d\xe9\xe1\xbf\x51\x32\xa7\xd3\x96\x3c\x2f\x0e\xbe\x87\x4f\x18\x1b\xaf\x46\x16\x27\xf4\x12\xa3\x05\x44\x8f\x86\xcf\xcc\x40\x25\xab\x1c\x1b\x0c\x5d\xd8\xb7\x8d\x33\x7d\xbd\xb9\x01\xb1\xd2\x70\x10\x03\x51\x19\x38\xd0\xea\x60\x60\xc2\x31\x50\xe7\x9e\xd3\xc2\x98\xdd\x93\x0f\xcc\xd6\x70\x23\x94\x1b\x43\xf0\xcb\x6e\x75\xeb\x5e\x2b\x05\xc7\x0e\x84\xb5\x60\x68\x4d\x2f\x6e\xee\xc0\x99\x56\x1c\xa4\x46\xa9\x4e\x57\x22\xa6\xa9\x3e\x90\x08\x8f\x35\xfd\x20\x18\xeb\x2a\xce\x68\x31\x54\x6e\x33\xaf\x2d\xff\x04\xb4\x07\x40\xfe\x68\xd6\x3a\x56\x62\x46\x31\x05\x9d\x1c\x87\x08\x5f\x50\x2c\x6c\xb1\x14\x65\x0b\x11\x43\x4e\x83\x4e\x49\xfd\x22\x21\x3c\x0d\x24\x19\xc7\x72\x6e\x97\x42\x74\x74\x8c\x8d\x38\x60\x7b\x52\x68\x55\x88\xc6\xd9\x13\x82\x2a\xd5\x62\x1c\xf2\xa6\x4f\x00\xce\x98\xab\x72\x9c\xe8\x77\xf2\x84\xe5\x35\xdc\x4b\xe1\xb8\xac\x42\xb3\xa5\xf8\x55\x96\x54\x99\x6a\x1a\x83\x57\xd6\xca\x5a\x56\x1c\xda\x70\x42\xbd\x8a\xd0\x41\xd2\x6f\x39\xa0\x8d\xf1\xba\x23\x36\xfd\x49\xac\xdf\x3f\xff\xc5\x3f\xd8\x3f\x9c\xbe\x9c\xcf\x45\xe1\xde\x9f\x5e\x62\x67\xbd\x0f\xd3\x50\x45\x06\x1e\xf4\x70\xc1\xdb\xbf\xb5\x5e\x84\xce\x0c\x2f\x56\x21\x9c\x06\x7a\x09\x50\xe9\x18\x6c\xc6\x19\xbc\x86\xa7\x6c\xcc\xa6\xa0\x8f\x1b\x5d\x89\x49\x97\x32\x54\xf5\xee\x8d\xbe\x24\x52\x4f\xc3\xd7\xbd\x0f\xa9\x4a\x71\x9e\xe2\x7d\xfa\x46\xbf\xc4\xc4\xbd\xd3\xdf\x3d\x7b\xf6\x0c\x9f\xbb\x63\x36\x2d\xa5\x5d\x41\xbc\xb1\xb5\xe5\xe9\x05\x98\x39\x72\xf8\x18\xe9\xfc\x48\x73\xa0\x70\xe3\xf6\x54\xce\xa0\xa2\x2e\x29\x68\x38\x10\x5e\xfb\xc8\x3a\xd0\x9f\x22\xe9\x6a\x77\xf3\x40\x3a\xdd\x51\x02\x3d\xc8\xd1\xee\xea\x1a\xb9\xb6\x90\xba\xc2\x3c\x7d\x5a\xc6\x57\x17\x6a\x38\x73\x7e\xad\x83\x24\x03\x2a\x40\x0f\x54\xa4\xee\x69\x94\x6c\xd0\xf9\xf4\x7d\xbc\x57\x3e\x84\x9d\xd8\x9c\xaa\xab\x0f\x22\x7b\xef\xab\x13\x06\x7d\xb0\x11\x2a\x00\x1d\x54\x0b\x9f\xb0\x4e\xe3\xdc\xbd\x54\xc3\x38\xdf\xa0\x3e\x18\x83\x14\xb6\xea\x84\xa0\x12\x1e\x0f\xad\x78\x8b\xee\x07\x20\xef\xd8\x93\x7b\x68\x7e\x99\x5e\xcf\xfe\x4b\xff\xdb\x53\xff\xeb\x6d\xf7\x6f\xa0\xfd\xd1\x8c\xff\x67\x75\xbf\xfc\xf0\x7c\x11\xed\x6f\xef\x6a\x9d\x99\x62\x84\xc5\xde\xa2\x96\x57\x68\x65\xdd\xa0\xa2\x07\x81\x3b\xf7\x04\x9e\xa2\xeb\xfc\xe0\x6c\x9a\xaf\x0e\x8e\x9f\xfc\xef\x00\x00\x00\xff\xff\x29\x15\x64\x04\xde\xe3\x00\x00"), }, } fs["/"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ diff --git a/pkg/trait/util_test.go b/pkg/trait/util_test.go index 7c19d93322..63b973a1d6 100644 --- a/pkg/trait/util_test.go +++ b/pkg/trait/util_test.go @@ -53,7 +53,7 @@ func TestToTraitMap(t *testing.T) { }, }, Addons: map[string]v1.AddonTrait{ - "tracing": ToAddonTrait(t, map[string]interface{}{ + "telemetry": ToAddonTrait(t, map[string]interface{}{ "enabled": true, }), }, @@ -76,7 +76,7 @@ func TestToTraitMap(t *testing.T) { "enabled": true, }, "addons": { - "tracing": map[string]interface{}{ + "telemetry": map[string]interface{}{ "enabled": true, }, }, diff --git a/pkg/util/defaults/defaults.go b/pkg/util/defaults/defaults.go index f2a39043dd..3297388a47 100644 --- a/pkg/util/defaults/defaults.go +++ b/pkg/util/defaults/defaults.go @@ -47,5 +47,5 @@ const ( installDefaultKamelets = true ) -// GitCommit must be provided during application build +//GitCommit must be provided during application build var GitCommit string diff --git a/resources/traits.yaml b/resources/traits.yaml index 156bf380a3..a5fef3a9f0 100755 --- a/resources/traits.yaml +++ b/resources/traits.yaml @@ -1289,6 +1289,44 @@ traits: - name: services type: '[]string' description: List of Services in the form [[apigroup/]version:]kind:[namespace/]name +- name: telemetry + platform: false + profiles: + - Kubernetes + - Knative + - OpenShift + description: 'The Telemetry trait can be used to automatically publish tracing information + to an OTLP compatible collector. The trait is able to automatically discover the + telemetry OTLP endpoint available in the namespace (supports **Jaerger** in version + 1.35+). The Telemetry trait is disabled by default. WARNING: The Telemetry trait + can''t be enabled at the same time as the Tracing trait.' + properties: + - name: enabled + type: bool + description: Can be used to enable or disable a trait. All traits share this common + property. + - name: auto + type: bool + description: Enables automatic configuration of the trait, including automatic + discovery of the telemetry endpoint. + - name: service-name + type: string + description: The name of the service that publishes telemetry data (defaults to + the integration name) + - name: endpoint + type: string + description: The target endpoint of the Telemetry service (automatically discovered + by default) + - name: sampler + type: string + description: The sampler of the telemetry used for tracing (default "on") + - name: sampler-ratio + type: string + description: The sampler ratio of the telemetry used for tracing + - name: sampler-parent-based + type: bool + description: The sampler of the telemetry used for tracing is parent based (default + "true") - name: toleration platform: false profiles: @@ -1316,10 +1354,13 @@ traits: - Kubernetes - Knative - OpenShift - description: The Tracing trait can be used to automatically publish tracing information - to an OpenTracing compatible collector. The trait is able to automatically discover - the tracing endpoint available in the namespace (supports **Jaeger**). The Tracing - trait is disabled by default. + description: 'WARNING: The Tracing trait has been **deprecated** in favor of the + xref:traits:telemetry.adoc[Telemetry] trait. The Tracing trait can be used to + automatically publish tracing information to an OpenTracing compatible collector. + The trait is able to automatically discover the tracing endpoint available in + the namespace (supports **Jaeger**). The Tracing trait is disabled by default. + WARNING: The Tracing trait can''t be enabled at the same time as the Telemetry + trait.' properties: - name: enabled type: bool diff --git a/script/gen_doc.sh b/script/gen_doc.sh index 523d0cdc78..76982a18b3 100755 --- a/script/gen_doc.sh +++ b/script/gen_doc.sh @@ -31,6 +31,7 @@ go run ./cmd/util/doc-gen \ --input-dirs github.com/apache/camel-k/addons/resume \ --input-dirs github.com/apache/camel-k/addons/threescale \ --input-dirs github.com/apache/camel-k/addons/tracing \ + --input-dirs github.com/apache/camel-k/addons/telemetry \ --input-dirs github.com/apache/camel-k/addons/vault/aws \ --input-dirs github.com/apache/camel-k/addons/vault/gcp \ --input-dirs github.com/apache/camel-k/addons/vault/azure