diff --git a/USERS.md b/USERS.md index 6133e71bfee9a..7593612447e1a 100644 --- a/USERS.md +++ b/USERS.md @@ -101,6 +101,7 @@ Currently, the following organizations are **officially** using Argo CD: 1. [Glovo](https://www.glovoapp.com) 1. [GMETRI](https://gmetri.com/) 1. [Gojek](https://www.gojek.io/) +1. [GoTo](https://www.goto.com/) 1. [GoTo Financial](https://gotofinancial.com/) 1. [Greenpass](https://www.greenpass.com.br/) 1. [Gridfuse](https://gridfuse.com/) diff --git a/assets/swagger.json b/assets/swagger.json index 96da7208c33cc..610c4d6ceb457 100644 --- a/assets/swagger.json +++ b/assets/swagger.json @@ -8007,6 +8007,9 @@ "ignoreDifferences": { "$ref": "#/definitions/v1alpha1OverrideIgnoreDiff" }, + "ignoreResourceUpdates": { + "$ref": "#/definitions/v1alpha1OverrideIgnoreDiff" + }, "knownTypeFields": { "type": "array", "items": { diff --git a/cmd/argocd/commands/admin/settings.go b/cmd/argocd/commands/admin/settings.go index 73363b10145ae..666ad2a0ccd93 100644 --- a/cmd/argocd/commands/admin/settings.go +++ b/cmd/argocd/commands/admin/settings.go @@ -349,6 +349,7 @@ func NewResourceOverridesCommand(cmdCtx commandContext) *cobra.Command { }, } command.AddCommand(NewResourceIgnoreDifferencesCommand(cmdCtx)) + command.AddCommand(NewResourceIgnoreResourceUpdatesCommand(cmdCtx)) command.AddCommand(NewResourceActionListCommand(cmdCtx)) command.AddCommand(NewResourceActionRunCommand(cmdCtx)) command.AddCommand(NewResourceHealthCommand(cmdCtx)) @@ -380,6 +381,31 @@ func executeResourceOverrideCommand(ctx context.Context, cmdCtx commandContext, callback(res, override, overrides) } +func executeIgnoreResourceUpdatesOverrideCommand(ctx context.Context, cmdCtx commandContext, args []string, callback func(res unstructured.Unstructured, override v1alpha1.ResourceOverride, overrides map[string]v1alpha1.ResourceOverride)) { + data, err := os.ReadFile(args[0]) + errors.CheckError(err) + + res := unstructured.Unstructured{} + errors.CheckError(yaml.Unmarshal(data, &res)) + + settingsManager, err := cmdCtx.createSettingsManager(ctx) + errors.CheckError(err) + + overrides, err := settingsManager.GetIgnoreResourceUpdatesOverrides() + errors.CheckError(err) + gvk := res.GroupVersionKind() + key := gvk.Kind + if gvk.Group != "" { + key = fmt.Sprintf("%s/%s", gvk.Group, gvk.Kind) + } + override, hasOverride := overrides[key] + if !hasOverride { + _, _ = fmt.Printf("No overrides configured for '%s/%s'\n", gvk.Group, gvk.Kind) + return + } + callback(res, override, overrides) +} + func NewResourceIgnoreDifferencesCommand(cmdCtx commandContext) *cobra.Command { var command = &cobra.Command{ Use: "ignore-differences RESOURCE_YAML_PATH", @@ -430,6 +456,52 @@ argocd admin settings resource-overrides ignore-differences ./deploy.yaml --argo return command } +func NewResourceIgnoreResourceUpdatesCommand(cmdCtx commandContext) *cobra.Command { + var command = &cobra.Command{ + Use: "ignore-resource-updates RESOURCE_YAML_PATH", + Short: "Renders fields excluded from resource updates", + Long: "Renders ignored fields using the 'ignoreResourceUpdates' setting specified in the 'resource.customizations' field of 'argocd-cm' ConfigMap", + Example: ` +argocd admin settings resource-overrides ignore-resource-updates ./deploy.yaml --argocd-cm-path ./argocd-cm.yaml`, + Run: func(c *cobra.Command, args []string) { + ctx := c.Context() + + if len(args) < 1 { + c.HelpFunc()(c, args) + os.Exit(1) + } + + executeIgnoreResourceUpdatesOverrideCommand(ctx, cmdCtx, args, func(res unstructured.Unstructured, override v1alpha1.ResourceOverride, overrides map[string]v1alpha1.ResourceOverride) { + gvk := res.GroupVersionKind() + if len(override.IgnoreResourceUpdates.JSONPointers) == 0 && len(override.IgnoreResourceUpdates.JQPathExpressions) == 0 { + _, _ = fmt.Printf("Ignore resource updates are not configured for '%s/%s'\n", gvk.Group, gvk.Kind) + return + } + + normalizer, err := normalizers.NewIgnoreNormalizer(nil, overrides) + errors.CheckError(err) + + normalizedRes := res.DeepCopy() + logs := collectLogs(func() { + errors.CheckError(normalizer.Normalize(normalizedRes)) + }) + if logs != "" { + _, _ = fmt.Println(logs) + } + + if reflect.DeepEqual(&res, normalizedRes) { + _, _ = fmt.Printf("No fields are ignored by ignoreResourceUpdates settings: \n%s\n", override.IgnoreResourceUpdates) + return + } + + _, _ = fmt.Printf("Following fields are ignored:\n\n") + _ = cli.PrintDiff(res.GetName(), &res, normalizedRes) + }) + }, + } + return command +} + func NewResourceHealthCommand(cmdCtx commandContext) *cobra.Command { var command = &cobra.Command{ Use: "health RESOURCE_YAML_PATH", diff --git a/controller/appcontroller.go b/controller/appcontroller.go index cda4939b042e3..a2ee1b35bbf06 100644 --- a/controller/appcontroller.go +++ b/controller/appcontroller.go @@ -359,17 +359,18 @@ func (ctrl *ApplicationController) handleObjectUpdated(managedByApp map[string]b level = CompareWithRecent } - // Additional check for debug level so we don't need to evaluate the - // format string in case of non-debug scenarios - if log.GetLevel() >= log.DebugLevel { - var resKey string - if ref.Namespace != "" { - resKey = ref.Namespace + "/" + ref.Name - } else { - resKey = "(cluster-scoped)/" + ref.Name - } - log.Debugf("Refreshing app %s for change in cluster of object %s of type %s/%s", appKey, resKey, ref.APIVersion, ref.Kind) - } + namespace := ref.Namespace + if ref.Namespace == "" { + namespace = "(cluster-scoped)" + } + log.WithFields(log.Fields{ + "application": appKey, + "level": level, + "namespace": namespace, + "name": ref.Name, + "api-version": ref.APIVersion, + "kind": ref.Kind, + }).Debug("Requesting app refresh caused by object update") ctrl.requestAppRefresh(app.QualifiedName(), &level, nil) } diff --git a/controller/cache/cache.go b/controller/cache/cache.go index 133654d2f044d..797163be2e4c5 100644 --- a/controller/cache/cache.go +++ b/controller/cache/cache.go @@ -29,6 +29,7 @@ import ( "k8s.io/client-go/tools/cache" "github.com/argoproj/argo-cd/v2/controller/metrics" + "github.com/argoproj/argo-cd/v2/pkg/apis/application" appv1 "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1" "github.com/argoproj/argo-cd/v2/util/argo" "github.com/argoproj/argo-cd/v2/util/db" @@ -149,6 +150,8 @@ type ResourceInfo struct { PodInfo *PodInfo // NodeInfo is available for nodes only NodeInfo *NodeInfo + + manifestHash string } func NewLiveStateCache( @@ -178,6 +181,11 @@ type cacheSettings struct { clusterSettings clustercache.Settings appInstanceLabelKey string trackingMethod appv1.TrackingMethod + // resourceOverrides provides a list of ignored differences to ignore watched resource updates + resourceOverrides map[string]appv1.ResourceOverride + + // ignoreResourceUpdates is a flag to enable resource-ignore rules. + ignoreResourceUpdatesEnabled bool } type liveStateCache struct { @@ -200,6 +208,14 @@ func (c *liveStateCache) loadCacheSettings() (*cacheSettings, error) { if err != nil { return nil, err } + resourceUpdatesOverrides, err := c.settingsMgr.GetIgnoreResourceUpdatesOverrides() + if err != nil { + return nil, err + } + ignoreResourceUpdatesEnabled, err := c.settingsMgr.GetIsIgnoreResourceUpdatesEnabled() + if err != nil { + return nil, err + } resourcesFilter, err := c.settingsMgr.GetResourcesFilter() if err != nil { return nil, err @@ -212,7 +228,8 @@ func (c *liveStateCache) loadCacheSettings() (*cacheSettings, error) { ResourceHealthOverride: lua.ResourceHealthOverrides(resourceOverrides), ResourcesFilter: resourcesFilter, } - return &cacheSettings{clusterSettings, appInstanceLabelKey, argo.GetTrackingMethod(c.settingsMgr)}, nil + + return &cacheSettings{clusterSettings, appInstanceLabelKey, argo.GetTrackingMethod(c.settingsMgr), resourceUpdatesOverrides, ignoreResourceUpdatesEnabled}, nil } func asResourceNode(r *clustercache.Resource) appv1.ResourceNode { @@ -309,6 +326,27 @@ func skipAppRequeuing(key kube.ResourceKey) bool { return ignoredRefreshResources[key.Group+"/"+key.Kind] } +func skipResourceUpdate(oldInfo, newInfo *ResourceInfo) bool { + if oldInfo == nil || newInfo == nil { + return false + } + isSameHealthStatus := (oldInfo.Health == nil && newInfo.Health == nil) || oldInfo.Health != nil && newInfo.Health != nil && oldInfo.Health.Status == newInfo.Health.Status + isSameManifest := oldInfo.manifestHash != "" && newInfo.manifestHash != "" && oldInfo.manifestHash == newInfo.manifestHash + return isSameHealthStatus && isSameManifest +} + +// shouldHashManifest validates if the API resource needs to be hashed. +// If there's an app name from resource tracking, or if this is itself an app, we should generate a hash. +// Otherwise, the hashing should be skipped to save CPU time. +func shouldHashManifest(appName string, gvk schema.GroupVersionKind) bool { + // Only hash if the resource belongs to an app. + // Best - Only hash for resources that are part of an app or their dependencies + // (current) - Only hash for resources that are part of an app + all apps that might be from an ApplicationSet + // Orphan - If orphan is enabled, hash should be made on all resource of that namespace and a config to disable it + // Worst - Hash all resources watched by Argo + return appName != "" || (gvk.Group == application.Group && gvk.Kind == application.ApplicationKind) +} + // isRetryableError is a helper method to see whether an error // returned from the dynamic client is potentially retryable. func isRetryableError(err error) bool { @@ -424,14 +462,25 @@ func (c *liveStateCache) getCluster(server string) (clustercache.ClusterCache, e c.lock.RLock() cacheSettings := c.cacheSettings c.lock.RUnlock() + res.Health, _ = health.GetResourceHealth(un, cacheSettings.clusterSettings.ResourceHealthOverride) appName := c.resourceTracking.GetAppName(un, cacheSettings.appInstanceLabelKey, cacheSettings.trackingMethod) if isRoot && appName != "" { res.AppName = appName } + gvk := un.GroupVersionKind() + if cacheSettings.ignoreResourceUpdatesEnabled && shouldHashManifest(appName, gvk) { + hash, err := generateManifestHash(un, nil, cacheSettings.resourceOverrides) + if err != nil { + log.Errorf("Failed to generate manifest hash: %v", err) + } else { + res.manifestHash = hash + } + } + // edge case. we do not label CRDs, so they miss the tracking label we inject. But we still // want the full resource to be available in our cache (to diff), so we store all CRDs return res, res.AppName != "" || gvk.Kind == kube.CustomResourceDefinitionKind @@ -450,6 +499,30 @@ func (c *liveStateCache) getCluster(server string) (clustercache.ClusterCache, e } else { ref = oldRes.Ref } + + c.lock.RLock() + cacheSettings := c.cacheSettings + c.lock.RUnlock() + + if cacheSettings.ignoreResourceUpdatesEnabled && oldRes != nil && newRes != nil && skipResourceUpdate(resInfo(oldRes), resInfo(newRes)) { + // Additional check for debug level so we don't need to evaluate the + // format string in case of non-debug scenarios + if log.GetLevel() >= log.DebugLevel { + namespace := ref.Namespace + if ref.Namespace == "" { + namespace = "(cluster-scoped)" + } + log.WithFields(log.Fields{ + "server": clusterCache.GetClusterInfo().Server, + "namespace": namespace, + "name": ref.Name, + "api-version": ref.APIVersion, + "kind": ref.Kind, + }).Debug("Ignoring change of object because none of the watched resource fields have changed") + } + return + } + for _, r := range []*clustercache.Resource{newRes, oldRes} { if r == nil { continue diff --git a/controller/cache/cache_test.go b/controller/cache/cache_test.go index 9d1fad82b0279..3549f03f6e0ea 100644 --- a/controller/cache/cache_test.go +++ b/controller/cache/cache_test.go @@ -14,6 +14,7 @@ import ( "github.com/argoproj/gitops-engine/pkg/cache" "github.com/argoproj/gitops-engine/pkg/cache/mocks" + "github.com/argoproj/gitops-engine/pkg/health" "github.com/stretchr/testify/mock" appv1 "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1" @@ -202,3 +203,126 @@ func Test_asResourceNode_owner_refs(t *testing.T) { } assert.Equal(t, expected, resNode) } + +func TestSkipResourceUpdate(t *testing.T) { + var ( + hash1_x string = "x" + hash2_y string = "y" + hash3_x string = "x" + ) + info := &ResourceInfo{ + manifestHash: hash1_x, + Health: &health.HealthStatus{ + Status: health.HealthStatusHealthy, + Message: "default", + }, + } + t.Run("Nil", func(t *testing.T) { + assert.False(t, skipResourceUpdate(nil, nil)) + }) + t.Run("From Nil", func(t *testing.T) { + assert.False(t, skipResourceUpdate(nil, info)) + }) + t.Run("To Nil", func(t *testing.T) { + assert.False(t, skipResourceUpdate(info, nil)) + }) + t.Run("No hash", func(t *testing.T) { + assert.False(t, skipResourceUpdate(&ResourceInfo{}, &ResourceInfo{})) + }) + t.Run("Same hash", func(t *testing.T) { + assert.True(t, skipResourceUpdate(&ResourceInfo{ + manifestHash: hash1_x, + }, &ResourceInfo{ + manifestHash: hash1_x, + })) + }) + t.Run("Same hash value", func(t *testing.T) { + assert.True(t, skipResourceUpdate(&ResourceInfo{ + manifestHash: hash1_x, + }, &ResourceInfo{ + manifestHash: hash3_x, + })) + }) + t.Run("Different hash value", func(t *testing.T) { + assert.False(t, skipResourceUpdate(&ResourceInfo{ + manifestHash: hash1_x, + }, &ResourceInfo{ + manifestHash: hash2_y, + })) + }) + t.Run("Same hash, empty health", func(t *testing.T) { + assert.True(t, skipResourceUpdate(&ResourceInfo{ + manifestHash: hash1_x, + Health: &health.HealthStatus{}, + }, &ResourceInfo{ + manifestHash: hash3_x, + Health: &health.HealthStatus{}, + })) + }) + t.Run("Same hash, old health", func(t *testing.T) { + assert.False(t, skipResourceUpdate(&ResourceInfo{ + manifestHash: hash1_x, + Health: &health.HealthStatus{ + Status: health.HealthStatusHealthy}, + }, &ResourceInfo{ + manifestHash: hash3_x, + Health: nil, + })) + }) + t.Run("Same hash, new health", func(t *testing.T) { + assert.False(t, skipResourceUpdate(&ResourceInfo{ + manifestHash: hash1_x, + Health: &health.HealthStatus{}, + }, &ResourceInfo{ + manifestHash: hash3_x, + Health: &health.HealthStatus{ + Status: health.HealthStatusHealthy, + }, + })) + }) + t.Run("Same hash, same health", func(t *testing.T) { + assert.True(t, skipResourceUpdate(&ResourceInfo{ + manifestHash: hash1_x, + Health: &health.HealthStatus{ + Status: health.HealthStatusHealthy, + Message: "same", + }, + }, &ResourceInfo{ + manifestHash: hash3_x, + Health: &health.HealthStatus{ + Status: health.HealthStatusHealthy, + Message: "same", + }, + })) + }) + t.Run("Same hash, different health status", func(t *testing.T) { + assert.False(t, skipResourceUpdate(&ResourceInfo{ + manifestHash: hash1_x, + Health: &health.HealthStatus{ + Status: health.HealthStatusHealthy, + Message: "same", + }, + }, &ResourceInfo{ + manifestHash: hash3_x, + Health: &health.HealthStatus{ + Status: health.HealthStatusDegraded, + Message: "same", + }, + })) + }) + t.Run("Same hash, different health message", func(t *testing.T) { + assert.True(t, skipResourceUpdate(&ResourceInfo{ + manifestHash: hash1_x, + Health: &health.HealthStatus{ + Status: health.HealthStatusHealthy, + Message: "same", + }, + }, &ResourceInfo{ + manifestHash: hash3_x, + Health: &health.HealthStatus{ + Status: health.HealthStatusHealthy, + Message: "different", + }, + })) + }) +} diff --git a/controller/cache/info.go b/controller/cache/info.go index 3cc7980ad8e12..cf0d12318a447 100644 --- a/controller/cache/info.go +++ b/controller/cache/info.go @@ -3,12 +3,14 @@ package cache import ( "errors" "fmt" + "strconv" "strings" "k8s.io/apimachinery/pkg/runtime/schema" "github.com/argoproj/gitops-engine/pkg/utils/kube" "github.com/argoproj/gitops-engine/pkg/utils/text" + "github.com/cespare/xxhash/v2" v1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" "k8s.io/apimachinery/pkg/runtime" @@ -16,6 +18,7 @@ import ( "github.com/argoproj/argo-cd/v2/common" "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1" + "github.com/argoproj/argo-cd/v2/util/argo/normalizers" "github.com/argoproj/argo-cd/v2/util/resource" ) @@ -386,3 +389,27 @@ func populateHostNodeInfo(un *unstructured.Unstructured, res *ResourceInfo) { SystemInfo: node.Status.NodeInfo, } } + +func generateManifestHash(un *unstructured.Unstructured, ignores []v1alpha1.ResourceIgnoreDifferences, overrides map[string]v1alpha1.ResourceOverride) (string, error) { + normalizer, err := normalizers.NewIgnoreNormalizer(ignores, overrides) + if err != nil { + return "", fmt.Errorf("error creating normalizer: %w", err) + } + + resource := un.DeepCopy() + err = normalizer.Normalize(resource) + if err != nil { + return "", fmt.Errorf("error normalizing resource: %w", err) + } + + data, err := resource.MarshalJSON() + if err != nil { + return "", fmt.Errorf("error marshaling resource: %w", err) + } + hash := hash(data) + return hash, nil +} + +func hash(data []byte) string { + return strconv.FormatUint(xxhash.Sum64(data), 16) +} diff --git a/controller/cache/info_test.go b/controller/cache/info_test.go index 0093c8120b7ef..8a06d3745e13b 100644 --- a/controller/cache/info_test.go +++ b/controller/cache/info_test.go @@ -694,3 +694,62 @@ func TestCustomLabel(t *testing.T) { assert.Equal(t, "other-label", info.Info[1].Name) assert.Equal(t, "value2", info.Info[1].Value) } + +func TestManifestHash(t *testing.T) { + manifest := strToUnstructured(` + apiVersion: v1 + kind: Pod + metadata: + name: helm-guestbook-pod + namespace: default + ownerReferences: + - apiVersion: extensions/v1beta1 + kind: ReplicaSet + name: helm-guestbook-rs + resourceVersion: "123" + labels: + app: guestbook + spec: + nodeName: minikube + containers: + - image: bar + resources: + requests: + memory: 128Mi +`) + + ignores := []v1alpha1.ResourceIgnoreDifferences{ + { + Group: "*", + Kind: "*", + JSONPointers: []string{"/metadata/resourceVersion"}, + }, + } + + data, _ := strToUnstructured(` + apiVersion: v1 + kind: Pod + metadata: + name: helm-guestbook-pod + namespace: default + ownerReferences: + - apiVersion: extensions/v1beta1 + kind: ReplicaSet + name: helm-guestbook-rs + labels: + app: guestbook + spec: + nodeName: minikube + containers: + - image: bar + resources: + requests: + memory: 128Mi +`).MarshalJSON() + + expected := hash(data) + + hash, err := generateManifestHash(manifest, ignores, nil) + assert.Equal(t, expected, hash) + assert.Nil(t, err) +} diff --git a/docs/operator-manual/argocd-cm.yaml b/docs/operator-manual/argocd-cm.yaml index 549c01ff58774..748471498798a 100644 --- a/docs/operator-manual/argocd-cm.yaml +++ b/docs/operator-manual/argocd-cm.yaml @@ -85,6 +85,7 @@ data: # Configuration to customize resource behavior (optional) can be configured via splitted sub keys. # Keys are in the form: resource.customizations.ignoreDifferences., resource.customizations.health. # resource.customizations.actions., resource.customizations.knownTypeFields. + # resource.customizations.ignoreResourceUpdates. resource.customizations.ignoreDifferences.admissionregistration.k8s.io_MutatingWebhookConfiguration: | jsonPointers: - /webhooks/0/clientConfig/caBundle @@ -101,6 +102,33 @@ data: jsonPointers: - /spec/replicas + # Enable resource.customizations.ignoreResourceUpdates rules. If "false," those rules are not applied, and all updates + # to resources are applied to the cluster cache. Default is false. + resource.ignoreResourceUpdatesEnabled: "false" + + # Configuration to define customizations ignoring differences during watched resource updates to skip application reconciles. + resource.customizations.ignoreResourceUpdates.all: | + jsonPointers: + - /metadata/resourceVersion + + # Configuration to define customizations ignoring differences during watched resource updates can be configured via splitted sub key. + resource.customizations.ignoreResourceUpdates.argoproj.io_Application: | + jsonPointers: + - /status + + # jsonPointers and jqPathExpressions can be specified. + resource.customizations.ignoreResourceUpdates.autoscaling_HorizontalPodAutoscaler: | + jqPathExpressions: + - '.metadata.annotations."autoscaling.alpha.kubernetes.io/behavior"' + - '.metadata.annotations."autoscaling.alpha.kubernetes.io/conditions"' + - '.metadata.annotations."autoscaling.alpha.kubernetes.io/metrics"' + - '.metadata.annotations."autoscaling.alpha.kubernetes.io/current-metrics"' + jsonPointers: + - /metadata/annotations/autoscaling.alpha.kubernetes.io~1behavior + - /metadata/annotations/autoscaling.alpha.kubernetes.io~1conditions + - /metadata/annotations/autoscaling.alpha.kubernetes.io~1metrics + - /metadata/annotations/autoscaling.alpha.kubernetes.io~1current-metrics + resource.customizations.health.certmanager.k8s.io-Certificate: | hs = {} if obj.status ~= nil then diff --git a/docs/operator-manual/reconcile.md b/docs/operator-manual/reconcile.md new file mode 100644 index 0000000000000..a3273c97d9922 --- /dev/null +++ b/docs/operator-manual/reconcile.md @@ -0,0 +1,64 @@ +# Reconcile Optimization + +By default, an Argo CD Application is refreshed everytime a resource that belongs to it changes. + +Kubernetes controllers often update the resources they watch periodically, causing continuous reconcile operation on the Application +and a high CPU usage on the `argocd-application-controller`. Argo CD allows you to optionally ignore resource updates on specific fields +for [tracked resources](../user-guide/resource_tracking.md). + +When a resource update is ignored, if the resource's [health status](./health.md) does not change, the Application that this resource belongs to will not be reconciled. + +## System-Level Configuration + +Argo CD allows ignoring resource updates at a specific JSON path, using [RFC6902 JSON patches](https://tools.ietf.org/html/rfc6902) and [JQ path expressions](https://stedolan.github.io/jq/manual/#path(path_expression)). It can be configured for a specified group and kind +in `resource.customizations` key of the `argocd-cm` ConfigMap. + +The feature is behind a flag. To enable it, set `resource.ignoreResourceUpdatesEnabled` to `"true"` in the `argocd-cm` ConfigMap. + +Following is an example of a customization which ignores the `refreshTime` status field of an [`ExternalSecret`](https://external-secrets.io/main/api/externalsecret/) resource: + +```yaml +data: + resource.customizations.ignoreResourceUpdates.external-secrets.io_ExternalSecret: | + jsonPointers: + - /status/refreshTime +``` + +It is possible to configure `ignoreResourceUpdates` to be applied to all tracked resources in every Application managed by an Argo CD instance. In order to do so, resource customizations can be configured like in the example below: + +```yaml +data: + resource.customizations.ignoreResourceUpdates.all: | + jsonPointers: + - /status +``` + +### Using ignoreDifferences to ignore reconcile + +It is possible to use existing system-level `ignoreDifferences` customizations to ignore resource updates as well. Instead of copying all configurations, +the `ignoreDifferencesOnResourceUpdates` setting can be used to add all ignored differences as ignored resource updates: + +```yaml +apiVersion: v1 +kind: ConfigMap +metadata: + name: argocd-cm +data: + resource.compareoptions: | + ignoreDifferencesOnResourceUpdates: true +``` + +## Default Configuration + +By default, the metadata fields `generation`, `resourceVersion` and `managedFields` are always ignored for all resources. + +## Finding Resources to Ignore + +The application controller logs when a resource change triggers a refresh. You can use these logs to find +high-churn resource kinds and then inspect those resources to find which fields to ignore. + +To find these logs, search for `"Requesting app refresh caused by object update"`. The logs include structured +fields for `api-version` and `kind`. Counting the number of refreshes triggered, by api-version/kind should +reveal the high-churn resource kinds. + +Note that these logs are at the `debug` level. Configure the application-controller's log level to `debug`. diff --git a/docs/user-guide/commands/argocd_admin_settings_resource-overrides.md b/docs/user-guide/commands/argocd_admin_settings_resource-overrides.md index 95c67e54dd9c9..bd082f5e3a4d4 100644 --- a/docs/user-guide/commands/argocd_admin_settings_resource-overrides.md +++ b/docs/user-guide/commands/argocd_admin_settings_resource-overrides.md @@ -61,6 +61,7 @@ argocd admin settings resource-overrides [flags] * [argocd admin settings](argocd_admin_settings.md) - Provides set of commands for settings validation and troubleshooting * [argocd admin settings resource-overrides health](argocd_admin_settings_resource-overrides_health.md) - Assess resource health * [argocd admin settings resource-overrides ignore-differences](argocd_admin_settings_resource-overrides_ignore-differences.md) - Renders fields excluded from diffing +* [argocd admin settings resource-overrides ignore-resource-updates](argocd_admin_settings_resource-overrides_ignore-resource-updates.md) - Renders fields excluded from resource updates * [argocd admin settings resource-overrides list-actions](argocd_admin_settings_resource-overrides_list-actions.md) - List available resource actions * [argocd admin settings resource-overrides run-action](argocd_admin_settings_resource-overrides_run-action.md) - Executes resource action diff --git a/docs/user-guide/commands/argocd_admin_settings_resource-overrides_ignore-resource-updates.md b/docs/user-guide/commands/argocd_admin_settings_resource-overrides_ignore-resource-updates.md new file mode 100644 index 0000000000000..275d50d08e1a4 --- /dev/null +++ b/docs/user-guide/commands/argocd_admin_settings_resource-overrides_ignore-resource-updates.md @@ -0,0 +1,73 @@ +## argocd admin settings resource-overrides ignore-resource-updates + +Renders fields excluded from resource updates + +### Synopsis + +Renders ignored fields using the 'ignoreResourceUpdates' setting specified in the 'resource.customizations' field of 'argocd-cm' ConfigMap + +``` +argocd admin settings resource-overrides ignore-resource-updates RESOURCE_YAML_PATH [flags] +``` + +### Examples + +``` + +argocd admin settings resource-overrides ignore-resource-updates ./deploy.yaml --argocd-cm-path ./argocd-cm.yaml +``` + +### Options + +``` + -h, --help help for ignore-resource-updates +``` + +### Options inherited from parent commands + +``` + --argocd-cm-path string Path to local argocd-cm.yaml file + --argocd-secret-path string Path to local argocd-secret.yaml file + --as string Username to impersonate for the operation + --as-group stringArray Group to impersonate for the operation, this flag can be repeated to specify multiple groups. + --as-uid string UID to impersonate for the operation + --auth-token string Authentication token + --certificate-authority string Path to a cert file for the certificate authority + --client-certificate string Path to a client certificate file for TLS + --client-crt string Client certificate file + --client-crt-key string Client certificate key file + --client-key string Path to a client key file for TLS + --cluster string The name of the kubeconfig cluster to use + --config string Path to Argo CD config (default "/home/user/.config/argocd/config") + --context string The name of the kubeconfig context to use + --core If set to true then CLI talks directly to Kubernetes instead of talking to Argo CD API server + --grpc-web Enables gRPC-web protocol. Useful if Argo CD server is behind proxy which does not support HTTP2. + --grpc-web-root-path string Enables gRPC-web protocol. Useful if Argo CD server is behind proxy which does not support HTTP2. Set web root. + -H, --header strings Sets additional header to all requests made by Argo CD CLI. (Can be repeated multiple times to add multiple headers, also supports comma separated headers) + --http-retry-max int Maximum number of retries to establish http connection to Argo CD server + --insecure Skip server certificate and domain verification + --insecure-skip-tls-verify If true, the server's certificate will not be checked for validity. This will make your HTTPS connections insecure + --kube-context string Directs the command to the given kube-context + --kubeconfig string Path to a kube config. Only required if out-of-cluster + --load-cluster-settings Indicates that config map and secret should be loaded from cluster unless local file path is provided + --logformat string Set the logging format. One of: text|json (default "text") + --loglevel string Set the logging level. One of: debug|info|warn|error (default "info") + -n, --namespace string If present, the namespace scope for this CLI request + --password string Password for basic authentication to the API server + --plaintext Disable TLS + --port-forward Connect to a random argocd-server port using port forwarding + --port-forward-namespace string Namespace name which should be used for port forwarding + --proxy-url string If provided, this URL will be used to connect via proxy + --request-timeout string The length of time to wait before giving up on a single server request. Non-zero values should contain a corresponding time unit (e.g. 1s, 2m, 3h). A value of zero means don't timeout requests. (default "0") + --server string The address and port of the Kubernetes API server + --server-crt string Server certificate file + --tls-server-name string If provided, this name will be used to validate server certificate. If this is not provided, hostname used to contact the server is used. + --token string Bearer token for authentication to the API server + --user string The name of the kubeconfig user to use + --username string Username for basic authentication to the API server +``` + +### SEE ALSO + +* [argocd admin settings resource-overrides](argocd_admin_settings_resource-overrides.md) - Troubleshoot resource overrides + diff --git a/go.mod b/go.mod index 0833fdfaf494c..507f807a6f67a 100644 --- a/go.mod +++ b/go.mod @@ -125,7 +125,7 @@ require ( github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.2.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.2.0 github.com/chai2010/gettext-go v0.0.0-20170215093142-bf70f2a70fb1 // indirect github.com/cloudflare/circl v1.3.3 // indirect github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect diff --git a/mkdocs.yml b/mkdocs.yml index 57e08a2393cd9..9c63d4f5c6e1a 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -43,8 +43,9 @@ nav: - operator-manual/tls.md - operator-manual/cluster-bootstrapping.md - operator-manual/secret-management.md - - operator-manual/high_availability.md - operator-manual/disaster_recovery.md + - operator-manual/high_availability.md + - operator-manual/reconcile.md - operator-manual/webhook.md - operator-manual/health.md - operator-manual/resource_actions.md diff --git a/pkg/apis/api-rules/violation_exceptions.list b/pkg/apis/api-rules/violation_exceptions.list index e4c77bb4686d8..2b2ab2961e318 100644 --- a/pkg/apis/api-rules/violation_exceptions.list +++ b/pkg/apis/api-rules/violation_exceptions.list @@ -116,6 +116,7 @@ API rule violation: names_match,github.com/argoproj/argo-cd/v2/pkg/apis/applicat API rule violation: names_match,github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1,ResourceOverride,Actions API rule violation: names_match,github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1,ResourceOverride,HealthLua API rule violation: names_match,github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1,ResourceOverride,IgnoreDifferences +API rule violation: names_match,github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1,ResourceOverride,IgnoreResourceUpdates API rule violation: names_match,github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1,ResourceOverride,KnownTypeFields API rule violation: names_match,github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1,ResourceOverride,UseOpenLibs API rule violation: names_match,github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1,objectMeta,Name diff --git a/pkg/apis/application/v1alpha1/generated.pb.go b/pkg/apis/application/v1alpha1/generated.pb.go index 7629cf7ed5d5d..c1cbaa5add32e 100644 --- a/pkg/apis/application/v1alpha1/generated.pb.go +++ b/pkg/apis/application/v1alpha1/generated.pb.go @@ -4212,656 +4212,658 @@ func init() { } var fileDescriptor_030104ce3b95bcac = []byte{ - // 10376 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0xbd, 0x7d, 0x70, 0x1c, 0xc9, - 0x75, 0x18, 0xae, 0xd9, 0xc5, 0x02, 0xbb, 0x0f, 0x1f, 0x24, 0x9a, 0xe4, 0x1d, 0x8e, 0xba, 0x3b, - 0xd0, 0x73, 0xe5, 0xd3, 0xe9, 0xa7, 0x13, 0xe0, 0xa3, 0x4e, 0xfa, 0x5d, 0x7c, 0xb6, 0x64, 0x2c, - 0x40, 0x82, 0x20, 0x01, 0x02, 0xd7, 0x00, 0x49, 0xe9, 0xe4, 0xd3, 0x69, 0x30, 0xdb, 0xbb, 0x18, - 0x62, 0x76, 0x66, 0x39, 0x33, 0x0b, 0x02, 0x67, 0x49, 0x96, 0x6c, 0xcb, 0x56, 0xa2, 0x8f, 0x53, - 0xa4, 0x54, 0x59, 0x4e, 0x22, 0x47, 0xfe, 0xa8, 0x54, 0x5c, 0xc9, 0x55, 0x94, 0xca, 0x1f, 0x71, - 0xe2, 0xa4, 0x5c, 0xb6, 0xf3, 0x87, 0x52, 0x4a, 0x2a, 0xaa, 0xc4, 0x65, 0x39, 0xb1, 0x8d, 0x48, - 0x48, 0xa5, 0x92, 0x4a, 0x55, 0x5c, 0x95, 0x8f, 0x3f, 0x12, 0x56, 0xaa, 0x92, 0xea, 0xef, 0x9e, - 0xd9, 0x5d, 0x62, 0x81, 0x1d, 0x90, 0x94, 0x72, 0xff, 0xed, 0xf6, 0x7b, 0xf3, 0xde, 0x9b, 0x9e, - 0xee, 0xd7, 0xaf, 0x5f, 0xbf, 0xf7, 0x1a, 0x96, 0x1b, 0x5e, 0xb2, 0xd5, 0xde, 0x9c, 0x71, 0xc3, - 0xe6, 0xac, 0x13, 0x35, 0xc2, 0x56, 0x14, 0xde, 0x66, 0x3f, 0xde, 0xeb, 0xd6, 0x66, 0x77, 0x2e, - 0xce, 0xb6, 0xb6, 0x1b, 0xb3, 0x4e, 0xcb, 0x8b, 0x67, 0x9d, 0x56, 0xcb, 0xf7, 0x5c, 0x27, 0xf1, - 0xc2, 0x60, 0x76, 0xe7, 0x05, 0xc7, 0x6f, 0x6d, 0x39, 0x2f, 0xcc, 0x36, 0x48, 0x40, 0x22, 0x27, - 0x21, 0xb5, 0x99, 0x56, 0x14, 0x26, 0x21, 0xfa, 0x09, 0x4d, 0x6d, 0x46, 0x52, 0x63, 0x3f, 0x5e, - 0x77, 0x6b, 0x33, 0x3b, 0x17, 0x67, 0x5a, 0xdb, 0x8d, 0x19, 0x4a, 0x6d, 0xc6, 0xa0, 0x36, 0x23, - 0xa9, 0x9d, 0x7f, 0xaf, 0x21, 0x4b, 0x23, 0x6c, 0x84, 0xb3, 0x8c, 0xe8, 0x66, 0xbb, 0xce, 0xfe, - 0xb1, 0x3f, 0xec, 0x17, 0x67, 0x76, 0xde, 0xde, 0x7e, 0x29, 0x9e, 0xf1, 0x42, 0x2a, 0xde, 0xac, - 0x1b, 0x46, 0x64, 0x76, 0xa7, 0x43, 0xa0, 0xf3, 0x57, 0x34, 0x0e, 0xd9, 0x4d, 0x48, 0x10, 0x7b, - 0x61, 0x10, 0xbf, 0x97, 0x8a, 0x40, 0xa2, 0x1d, 0x12, 0x99, 0xaf, 0x67, 0x20, 0x74, 0xa3, 0xf4, - 0xa2, 0xa6, 0xd4, 0x74, 0xdc, 0x2d, 0x2f, 0x20, 0xd1, 0x9e, 0x7e, 0xbc, 0x49, 0x12, 0xa7, 0xdb, - 0x53, 0xb3, 0xbd, 0x9e, 0x8a, 0xda, 0x41, 0xe2, 0x35, 0x49, 0xc7, 0x03, 0x1f, 0x38, 0xec, 0x81, - 0xd8, 0xdd, 0x22, 0x4d, 0xa7, 0xe3, 0xb9, 0xf7, 0xf5, 0x7a, 0xae, 0x9d, 0x78, 0xfe, 0xac, 0x17, - 0x24, 0x71, 0x12, 0x65, 0x1f, 0xb2, 0xef, 0xc0, 0xf8, 0xdc, 0xad, 0xf5, 0xb9, 0x76, 0xb2, 0x35, - 0x1f, 0x06, 0x75, 0xaf, 0x81, 0xde, 0x0f, 0xa3, 0xae, 0xdf, 0x8e, 0x13, 0x12, 0x5d, 0x77, 0x9a, - 0x64, 0xca, 0xba, 0x60, 0x3d, 0x57, 0xa9, 0x9e, 0xf9, 0xd6, 0xfe, 0xf4, 0x3b, 0x0e, 0xf6, 0xa7, - 0x47, 0xe7, 0x35, 0x08, 0x9b, 0x78, 0xe8, 0xdd, 0x30, 0x12, 0x85, 0x3e, 0x99, 0xc3, 0xd7, 0xa7, - 0x0a, 0xec, 0x91, 0x53, 0xe2, 0x91, 0x11, 0xcc, 0x9b, 0xb1, 0x84, 0xdb, 0x7f, 0x54, 0x00, 0x98, - 0x6b, 0xb5, 0xd6, 0xa2, 0xf0, 0x36, 0x71, 0x13, 0xf4, 0x71, 0x28, 0xd3, 0xae, 0xab, 0x39, 0x89, - 0xc3, 0xb8, 0x8d, 0x5e, 0xfc, 0xb1, 0x19, 0xfe, 0x26, 0x33, 0xe6, 0x9b, 0xe8, 0x81, 0x43, 0xb1, - 0x67, 0x76, 0x5e, 0x98, 0x59, 0xdd, 0xa4, 0xcf, 0xaf, 0x90, 0xc4, 0xa9, 0x22, 0xc1, 0x0c, 0x74, - 0x1b, 0x56, 0x54, 0x51, 0x00, 0x43, 0x71, 0x8b, 0xb8, 0x4c, 0xb0, 0xd1, 0x8b, 0xcb, 0x33, 0x83, - 0x8c, 0xd0, 0x19, 0x2d, 0xf9, 0x7a, 0x8b, 0xb8, 0xd5, 0x31, 0xc1, 0x79, 0x88, 0xfe, 0xc3, 0x8c, - 0x0f, 0xda, 0x81, 0xe1, 0x38, 0x71, 0x92, 0x76, 0x3c, 0x55, 0x64, 0x1c, 0xaf, 0xe7, 0xc6, 0x91, - 0x51, 0xad, 0x4e, 0x08, 0x9e, 0xc3, 0xfc, 0x3f, 0x16, 0xdc, 0xec, 0x3f, 0xb3, 0x60, 0x42, 0x23, - 0x2f, 0x7b, 0x71, 0x82, 0x7e, 0xba, 0xa3, 0x73, 0x67, 0xfa, 0xeb, 0x5c, 0xfa, 0x34, 0xeb, 0xda, - 0xd3, 0x82, 0x59, 0x59, 0xb6, 0x18, 0x1d, 0xdb, 0x84, 0x92, 0x97, 0x90, 0x66, 0x3c, 0x55, 0xb8, - 0x50, 0x7c, 0x6e, 0xf4, 0xe2, 0x95, 0xbc, 0xde, 0xb3, 0x3a, 0x2e, 0x98, 0x96, 0x96, 0x28, 0x79, - 0xcc, 0xb9, 0xd8, 0xbf, 0x35, 0x66, 0xbe, 0x1f, 0xed, 0x70, 0xf4, 0x02, 0x8c, 0xc6, 0x61, 0x3b, - 0x72, 0x09, 0x26, 0xad, 0x30, 0x9e, 0xb2, 0x2e, 0x14, 0xe9, 0xd0, 0xa3, 0x23, 0x75, 0x5d, 0x37, - 0x63, 0x13, 0x07, 0x7d, 0xc9, 0x82, 0xb1, 0x1a, 0x89, 0x13, 0x2f, 0x60, 0xfc, 0xa5, 0xf0, 0x1b, - 0x03, 0x0b, 0x2f, 0x1b, 0x17, 0x34, 0xf1, 0xea, 0x59, 0xf1, 0x22, 0x63, 0x46, 0x63, 0x8c, 0x53, - 0xfc, 0xe9, 0x8c, 0xab, 0x91, 0xd8, 0x8d, 0xbc, 0x16, 0xfd, 0xcf, 0xc6, 0x8c, 0x31, 0xe3, 0x16, - 0x34, 0x08, 0x9b, 0x78, 0x28, 0x80, 0x12, 0x9d, 0x51, 0xf1, 0xd4, 0x10, 0x93, 0x7f, 0x69, 0x30, - 0xf9, 0x45, 0xa7, 0xd2, 0xc9, 0xaa, 0x7b, 0x9f, 0xfe, 0x8b, 0x31, 0x67, 0x83, 0xbe, 0x68, 0xc1, - 0x94, 0x98, 0xf1, 0x98, 0xf0, 0x0e, 0xbd, 0xb5, 0xe5, 0x25, 0xc4, 0xf7, 0xe2, 0x64, 0xaa, 0xc4, - 0x64, 0x98, 0xed, 0x6f, 0x6c, 0x2d, 0x46, 0x61, 0xbb, 0x75, 0xcd, 0x0b, 0x6a, 0xd5, 0x0b, 0x82, - 0xd3, 0xd4, 0x7c, 0x0f, 0xc2, 0xb8, 0x27, 0x4b, 0xf4, 0x55, 0x0b, 0xce, 0x07, 0x4e, 0x93, 0xc4, - 0x2d, 0x87, 0x7e, 0x5a, 0x0e, 0xae, 0xfa, 0x8e, 0xbb, 0xcd, 0x24, 0x1a, 0x3e, 0x9e, 0x44, 0xb6, - 0x90, 0xe8, 0xfc, 0xf5, 0x9e, 0xa4, 0xf1, 0x7d, 0xd8, 0xa2, 0xdf, 0xb0, 0x60, 0x32, 0x8c, 0x5a, - 0x5b, 0x4e, 0x40, 0x6a, 0x12, 0x1a, 0x4f, 0x8d, 0xb0, 0xa9, 0xf7, 0xb1, 0xc1, 0x3e, 0xd1, 0x6a, - 0x96, 0xec, 0x4a, 0x18, 0x78, 0x49, 0x18, 0xad, 0x93, 0x24, 0xf1, 0x82, 0x46, 0x5c, 0x3d, 0x77, - 0xb0, 0x3f, 0x3d, 0xd9, 0x81, 0x85, 0x3b, 0xe5, 0x41, 0x3f, 0x03, 0xa3, 0xf1, 0x5e, 0xe0, 0xde, - 0xf2, 0x82, 0x5a, 0x78, 0x37, 0x9e, 0x2a, 0xe7, 0x31, 0x7d, 0xd7, 0x15, 0x41, 0x31, 0x01, 0x35, - 0x03, 0x6c, 0x72, 0xeb, 0xfe, 0xe1, 0xf4, 0x50, 0xaa, 0xe4, 0xfd, 0xe1, 0xf4, 0x60, 0xba, 0x0f, - 0x5b, 0xf4, 0x4b, 0x16, 0x8c, 0xc7, 0x5e, 0x23, 0x70, 0x92, 0x76, 0x44, 0xae, 0x91, 0xbd, 0x78, - 0x0a, 0x98, 0x20, 0x57, 0x07, 0xec, 0x15, 0x83, 0x64, 0xf5, 0x9c, 0x90, 0x71, 0xdc, 0x6c, 0x8d, - 0x71, 0x9a, 0x6f, 0xb7, 0x89, 0xa6, 0x87, 0xf5, 0x68, 0xbe, 0x13, 0x4d, 0x0f, 0xea, 0x9e, 0x2c, - 0xd1, 0x4f, 0xc1, 0x69, 0xde, 0xa4, 0x7a, 0x36, 0x9e, 0x1a, 0x63, 0x8a, 0xf6, 0xec, 0xc1, 0xfe, - 0xf4, 0xe9, 0xf5, 0x0c, 0x0c, 0x77, 0x60, 0xa3, 0x3b, 0x30, 0xdd, 0x22, 0x51, 0xd3, 0x4b, 0x56, - 0x03, 0x7f, 0x4f, 0xaa, 0x6f, 0x37, 0x6c, 0x91, 0x9a, 0x10, 0x27, 0x9e, 0x1a, 0xbf, 0x60, 0x3d, - 0x57, 0xae, 0xbe, 0x4b, 0x88, 0x39, 0xbd, 0x76, 0x7f, 0x74, 0x7c, 0x18, 0x3d, 0xfb, 0x9f, 0x15, - 0xe0, 0x74, 0x76, 0xe1, 0x44, 0x7f, 0xd3, 0x82, 0x53, 0xb7, 0xef, 0x26, 0x1b, 0xe1, 0x36, 0x09, - 0xe2, 0xea, 0x1e, 0x55, 0x6f, 0x6c, 0xc9, 0x18, 0xbd, 0xe8, 0xe6, 0xbb, 0x44, 0xcf, 0x5c, 0x4d, - 0x73, 0xb9, 0x14, 0x24, 0xd1, 0x5e, 0xf5, 0x71, 0xf1, 0x76, 0xa7, 0xae, 0xde, 0xda, 0x30, 0xa1, - 0x38, 0x2b, 0xd4, 0xf9, 0xcf, 0x5b, 0x70, 0xb6, 0x1b, 0x09, 0x74, 0x1a, 0x8a, 0xdb, 0x64, 0x8f, - 0x5b, 0x65, 0x98, 0xfe, 0x44, 0xaf, 0x41, 0x69, 0xc7, 0xf1, 0xdb, 0x44, 0x58, 0x37, 0x8b, 0x83, - 0xbd, 0x88, 0x92, 0x0c, 0x73, 0xaa, 0x3f, 0x5e, 0x78, 0xc9, 0xb2, 0xff, 0x65, 0x11, 0x46, 0x8d, - 0xf5, 0xed, 0x01, 0x58, 0x6c, 0x61, 0xca, 0x62, 0x5b, 0xc9, 0x6d, 0x69, 0xee, 0x69, 0xb2, 0xdd, - 0xcd, 0x98, 0x6c, 0xab, 0xf9, 0xb1, 0xbc, 0xaf, 0xcd, 0x86, 0x12, 0xa8, 0x84, 0x2d, 0x6a, 0x91, - 0xd3, 0xa5, 0x7f, 0x28, 0x8f, 0x4f, 0xb8, 0x2a, 0xc9, 0x55, 0xc7, 0x0f, 0xf6, 0xa7, 0x2b, 0xea, - 0x2f, 0xd6, 0x8c, 0xec, 0xef, 0x5a, 0x70, 0xd6, 0x90, 0x71, 0x3e, 0x0c, 0x6a, 0x1e, 0xfb, 0xb4, - 0x17, 0x60, 0x28, 0xd9, 0x6b, 0x49, 0xb3, 0x5f, 0xf5, 0xd4, 0xc6, 0x5e, 0x8b, 0x60, 0x06, 0xa1, - 0x86, 0x7e, 0x93, 0xc4, 0xb1, 0xd3, 0x20, 0x59, 0x43, 0x7f, 0x85, 0x37, 0x63, 0x09, 0x47, 0x11, - 0x20, 0xdf, 0x89, 0x93, 0x8d, 0xc8, 0x09, 0x62, 0x46, 0x7e, 0xc3, 0x6b, 0x12, 0xd1, 0xc1, 0xff, - 0x5f, 0x7f, 0x23, 0x86, 0x3e, 0x51, 0x7d, 0xec, 0x60, 0x7f, 0x1a, 0x2d, 0x77, 0x50, 0xc2, 0x5d, - 0xa8, 0xdb, 0x5f, 0xb5, 0xe0, 0xb1, 0xee, 0xb6, 0x18, 0x7a, 0x16, 0x86, 0xf9, 0x96, 0x4f, 0xbc, - 0x9d, 0xfe, 0x24, 0xac, 0x15, 0x0b, 0x28, 0x9a, 0x85, 0x8a, 0x5a, 0x27, 0xc4, 0x3b, 0x4e, 0x0a, - 0xd4, 0x8a, 0x5e, 0x5c, 0x34, 0x0e, 0xed, 0x34, 0xfa, 0x47, 0x58, 0x6e, 0xaa, 0xd3, 0xd8, 0x26, - 0x89, 0x41, 0xec, 0x7f, 0x67, 0xc1, 0x29, 0x43, 0xaa, 0x07, 0x60, 0x9a, 0x07, 0x69, 0xd3, 0x7c, - 0x29, 0xb7, 0xf1, 0xdc, 0xc3, 0x36, 0xff, 0xa2, 0x05, 0xe7, 0x0d, 0xac, 0x15, 0x27, 0x71, 0xb7, - 0x2e, 0xed, 0xb6, 0x22, 0x12, 0xd3, 0xed, 0x34, 0x7a, 0xca, 0xd0, 0x5b, 0xd5, 0x51, 0x41, 0xa1, - 0x78, 0x8d, 0xec, 0x71, 0x25, 0xf6, 0x3c, 0x94, 0xf9, 0xe0, 0x0c, 0x23, 0xd1, 0xe3, 0xea, 0xdd, - 0x56, 0x45, 0x3b, 0x56, 0x18, 0xc8, 0x86, 0x61, 0xa6, 0x9c, 0xe8, 0x64, 0xa5, 0xcb, 0x10, 0xd0, - 0x8f, 0x78, 0x93, 0xb5, 0x60, 0x01, 0xb1, 0x57, 0x53, 0xe2, 0xac, 0x45, 0x84, 0x7d, 0xdc, 0xda, - 0x65, 0x8f, 0xf8, 0xb5, 0x98, 0x6e, 0x1b, 0x9c, 0x20, 0x08, 0x13, 0xb1, 0x03, 0x30, 0xb6, 0x0d, - 0x73, 0xba, 0x19, 0x9b, 0x38, 0xf6, 0x41, 0x81, 0x6d, 0x3e, 0xd4, 0xb4, 0x26, 0x0f, 0x62, 0xe7, - 0x1a, 0xa5, 0xf4, 0xe0, 0x5a, 0x7e, 0x4a, 0x89, 0xf4, 0xde, 0xbd, 0xbe, 0x91, 0x51, 0x85, 0x38, - 0x57, 0xae, 0xf7, 0xdf, 0xc1, 0xfe, 0x5e, 0x01, 0xa6, 0xd3, 0x0f, 0x74, 0x68, 0x52, 0xba, 0x5d, - 0x32, 0x18, 0x65, 0x1d, 0x14, 0x06, 0x3e, 0x36, 0xf1, 0x7a, 0x28, 0xa3, 0xc2, 0x49, 0x2a, 0x23, - 0x53, 0x57, 0x16, 0x0f, 0xd1, 0x95, 0xcf, 0xaa, 0x5e, 0x1f, 0xca, 0x28, 0xa7, 0xf4, 0x7a, 0x71, - 0x01, 0x86, 0xe2, 0x84, 0xb4, 0xa6, 0x4a, 0x69, 0x5d, 0xb3, 0x9e, 0x90, 0x16, 0x66, 0x10, 0xfb, - 0x3f, 0x17, 0xe0, 0xf1, 0x74, 0x1f, 0x6a, 0xf5, 0xfe, 0xa1, 0x94, 0x7a, 0x7f, 0x8f, 0xa9, 0xde, - 0xef, 0xed, 0x4f, 0xbf, 0xb3, 0xc7, 0x63, 0x3f, 0x30, 0xda, 0x1f, 0x2d, 0x66, 0x7a, 0x71, 0x36, - 0xdd, 0x8b, 0xf7, 0xf6, 0xa7, 0x9f, 0xea, 0xf1, 0x8e, 0x99, 0x6e, 0x7e, 0x16, 0x86, 0x23, 0xe2, - 0xc4, 0x61, 0x20, 0x3a, 0x5a, 0x7d, 0x0e, 0xcc, 0x5a, 0xb1, 0x80, 0xda, 0xff, 0xaa, 0x92, 0xed, - 0xec, 0x45, 0xee, 0x60, 0x0b, 0x23, 0xe4, 0xc1, 0x10, 0x33, 0xd9, 0xb9, 0x6a, 0xb8, 0x36, 0xd8, - 0x34, 0xa2, 0x2a, 0x5e, 0x91, 0xae, 0x96, 0xe9, 0x57, 0xa3, 0x4d, 0x98, 0xb1, 0x40, 0xbb, 0x50, - 0x76, 0xa5, 0x25, 0x5d, 0xc8, 0xc3, 0xe7, 0x24, 0xec, 0x68, 0xcd, 0x71, 0x8c, 0xea, 0x62, 0x65, - 0x7e, 0x2b, 0x6e, 0x88, 0x40, 0xb1, 0xe1, 0x25, 0xe2, 0xb3, 0x0e, 0xb8, 0x57, 0x5a, 0xf4, 0x8c, - 0x57, 0x1c, 0xa1, 0x0b, 0xc4, 0xa2, 0x97, 0x60, 0x4a, 0x1f, 0x7d, 0xd6, 0x82, 0xd1, 0xd8, 0x6d, - 0xae, 0x45, 0xe1, 0x8e, 0x57, 0x23, 0x91, 0xb0, 0x94, 0x06, 0x54, 0x4d, 0xeb, 0xf3, 0x2b, 0x92, - 0xa0, 0xe6, 0xcb, 0xf7, 0xae, 0x1a, 0x82, 0x4d, 0xbe, 0x74, 0x07, 0xf1, 0xb8, 0x78, 0xf7, 0x05, - 0xe2, 0x7a, 0x74, 0x6d, 0x93, 0x1b, 0x26, 0x36, 0x52, 0x06, 0xb6, 0x1c, 0x17, 0xda, 0xee, 0x36, - 0x9d, 0x6f, 0x5a, 0xa0, 0x77, 0x1e, 0xec, 0x4f, 0x3f, 0x3e, 0xdf, 0x9d, 0x27, 0xee, 0x25, 0x0c, - 0xeb, 0xb0, 0x56, 0xdb, 0xf7, 0x31, 0xb9, 0xd3, 0x26, 0xcc, 0x1d, 0x92, 0x43, 0x87, 0xad, 0x69, - 0x82, 0x99, 0x0e, 0x33, 0x20, 0xd8, 0xe4, 0x8b, 0xee, 0xc0, 0x70, 0xd3, 0x49, 0x22, 0x6f, 0x57, - 0xf8, 0x40, 0x06, 0xb4, 0xe5, 0x57, 0x18, 0x2d, 0xcd, 0x9c, 0x2d, 0xfd, 0xbc, 0x11, 0x0b, 0x46, - 0xa8, 0x09, 0xa5, 0x26, 0x89, 0x1a, 0x64, 0xaa, 0x9c, 0x87, 0xbf, 0x77, 0x85, 0x92, 0xd2, 0x0c, - 0x2b, 0xd4, 0xf2, 0x61, 0x6d, 0x98, 0x73, 0x41, 0xaf, 0x41, 0x39, 0x26, 0x3e, 0x71, 0xa9, 0xed, - 0x52, 0x61, 0x1c, 0xdf, 0xd7, 0xa7, 0x1d, 0xe7, 0x6c, 0x12, 0x7f, 0x5d, 0x3c, 0xca, 0x27, 0x98, - 0xfc, 0x87, 0x15, 0x49, 0xda, 0x81, 0x2d, 0xbf, 0xdd, 0xf0, 0x82, 0x29, 0xc8, 0xa3, 0x03, 0xd7, - 0x18, 0xad, 0x4c, 0x07, 0xf2, 0x46, 0x2c, 0x18, 0xd9, 0xff, 0xc1, 0x02, 0x94, 0x56, 0x6a, 0x0f, - 0xc0, 0x60, 0xbd, 0x93, 0x36, 0x58, 0x97, 0xf3, 0xb4, 0x3a, 0x7a, 0xd8, 0xac, 0xbf, 0x53, 0x81, - 0xcc, 0x72, 0x70, 0x9d, 0xc4, 0x09, 0xa9, 0xbd, 0xad, 0xc2, 0xdf, 0x56, 0xe1, 0x6f, 0xab, 0x70, - 0xa5, 0xc2, 0x37, 0x33, 0x2a, 0xfc, 0x83, 0xc6, 0xac, 0xd7, 0x07, 0xa6, 0xaf, 0xab, 0x13, 0x55, - 0x53, 0x02, 0x03, 0x81, 0x6a, 0x82, 0xab, 0xeb, 0xab, 0xd7, 0xbb, 0xea, 0xec, 0xd7, 0xd3, 0x3a, - 0x7b, 0x50, 0x16, 0xff, 0x2f, 0x68, 0xe9, 0xbf, 0x56, 0x80, 0x27, 0xd2, 0xda, 0x0b, 0x87, 0xbe, - 0x1f, 0xb6, 0x13, 0xba, 0x17, 0x40, 0xbf, 0x6a, 0xc1, 0xe9, 0x66, 0x7a, 0x13, 0x1e, 0x0b, 0x5f, - 0xe7, 0x87, 0x73, 0x53, 0xad, 0x99, 0x5d, 0x7e, 0x75, 0x4a, 0xa8, 0xd9, 0xd3, 0x19, 0x40, 0x8c, - 0x3b, 0x64, 0x41, 0xaf, 0x41, 0xa5, 0xe9, 0xec, 0xde, 0x68, 0xd5, 0x9c, 0x44, 0x6e, 0xc3, 0x7a, - 0xef, 0x9e, 0xdb, 0x89, 0xe7, 0xcf, 0xf0, 0x13, 0xec, 0x99, 0xa5, 0x20, 0x59, 0x8d, 0xd6, 0x93, - 0xc8, 0x0b, 0x1a, 0xdc, 0xc3, 0xb5, 0x22, 0xc9, 0x60, 0x4d, 0xd1, 0xfe, 0xba, 0x95, 0xd5, 0xed, - 0xaa, 0x77, 0x22, 0x27, 0x21, 0x8d, 0x3d, 0xf4, 0x09, 0x28, 0xd1, 0xfd, 0x92, 0xec, 0x95, 0x5b, - 0x79, 0x2e, 0x38, 0xc6, 0x97, 0xd0, 0x6b, 0x0f, 0xfd, 0x17, 0x63, 0xce, 0xd4, 0xfe, 0xea, 0x48, - 0x76, 0x8d, 0x65, 0xe7, 0x99, 0x17, 0x01, 0x1a, 0xe1, 0x06, 0x69, 0xb6, 0x7c, 0xda, 0x2d, 0x16, - 0x73, 0x8a, 0x2b, 0x17, 0xc1, 0xa2, 0x82, 0x60, 0x03, 0x0b, 0xfd, 0x45, 0x0b, 0xa0, 0x21, 0x87, - 0x8a, 0x5c, 0x3f, 0x6f, 0xe4, 0xf9, 0x3a, 0x7a, 0x20, 0x6a, 0x59, 0x14, 0x43, 0x6c, 0x30, 0x47, - 0x3f, 0x67, 0x41, 0x39, 0x91, 0xe2, 0xf3, 0x15, 0x65, 0x23, 0x4f, 0x49, 0xe4, 0x4b, 0x6b, 0x53, - 0x42, 0x75, 0x89, 0xe2, 0x8b, 0x7e, 0xd1, 0x02, 0x88, 0xf7, 0x02, 0x77, 0x2d, 0xf4, 0x3d, 0x77, - 0x4f, 0x2c, 0x34, 0x37, 0x73, 0x75, 0x63, 0x28, 0xea, 0xd5, 0x09, 0xda, 0x1b, 0xfa, 0x3f, 0x36, - 0x38, 0xa3, 0x4f, 0x41, 0x39, 0x16, 0xc3, 0x4d, 0x2c, 0x2d, 0x1b, 0xf9, 0x3a, 0x53, 0x38, 0x6d, - 0xa1, 0x95, 0xc4, 0x3f, 0xac, 0x78, 0xa2, 0x5f, 0xb6, 0xe0, 0x54, 0x2b, 0xed, 0xfa, 0x12, 0xab, - 0x48, 0x7e, 0x3a, 0x20, 0xe3, 0x5a, 0xab, 0x9e, 0x39, 0xd8, 0x9f, 0x3e, 0x95, 0x69, 0xc4, 0x59, - 0x29, 0xd0, 0x3c, 0x4c, 0xea, 0x11, 0xbc, 0xda, 0xe2, 0x6e, 0xb8, 0x11, 0xe6, 0x86, 0x63, 0xa7, - 0x98, 0x8b, 0x59, 0x20, 0xee, 0xc4, 0x47, 0x6b, 0x70, 0x96, 0x4a, 0xb7, 0xc7, 0xad, 0x36, 0xa9, - 0x95, 0x63, 0xb6, 0x86, 0x94, 0xab, 0x4f, 0x8a, 0x11, 0xc2, 0x1c, 0xdd, 0x59, 0x1c, 0xdc, 0xf5, - 0x49, 0xfb, 0xdb, 0x85, 0x94, 0x5f, 0x5c, 0x39, 0xac, 0xd8, 0x1c, 0x73, 0xa5, 0xaf, 0x40, 0xaa, - 0x8c, 0x5c, 0xe7, 0x98, 0xf2, 0x44, 0xe8, 0x39, 0xa6, 0x9a, 0x62, 0x6c, 0x30, 0xa7, 0x06, 0xcc, - 0xa4, 0x93, 0x75, 0x8b, 0x89, 0x69, 0xff, 0x5a, 0x9e, 0x22, 0x75, 0x9e, 0x62, 0x3c, 0x21, 0x44, - 0x9b, 0xec, 0x00, 0xe1, 0x4e, 0x91, 0xec, 0x6f, 0xa7, 0x7d, 0xf1, 0xc6, 0x88, 0xed, 0xe3, 0x9c, - 0xe1, 0x4b, 0x16, 0x8c, 0x46, 0xa1, 0xef, 0x7b, 0x41, 0x83, 0xce, 0x2e, 0xb1, 0x44, 0x7c, 0xf4, - 0x44, 0xb4, 0xb4, 0x98, 0x46, 0xcc, 0x0c, 0xc2, 0x9a, 0x27, 0x36, 0x05, 0xb0, 0xff, 0xcc, 0x82, - 0xa9, 0x5e, 0x5a, 0x00, 0x11, 0x78, 0xa7, 0x1c, 0xe2, 0xea, 0x94, 0x7d, 0x35, 0x58, 0x20, 0x3e, - 0x51, 0x4e, 0xca, 0x72, 0xf5, 0x19, 0xf1, 0x9a, 0xef, 0x5c, 0xeb, 0x8d, 0x8a, 0xef, 0x47, 0x07, - 0xbd, 0x0a, 0xa7, 0x8d, 0xf7, 0x8a, 0x55, 0xc7, 0x54, 0xaa, 0x33, 0x74, 0xd9, 0x9d, 0xcb, 0xc0, - 0xee, 0xed, 0x4f, 0x3f, 0x96, 0x6d, 0x13, 0x6a, 0xaa, 0x83, 0x8e, 0xfd, 0x9b, 0x85, 0xec, 0xd7, - 0x52, 0x2b, 0xcc, 0xd7, 0xac, 0x8e, 0xad, 0xdf, 0x87, 0x4f, 0x42, 0xab, 0xb3, 0x4d, 0xa2, 0x3a, - 0xc8, 0xef, 0x8d, 0xf3, 0x10, 0x4f, 0x0a, 0xed, 0x7f, 0x3e, 0x04, 0xf7, 0x91, 0x4c, 0x9d, 0x05, - 0x59, 0xbd, 0xce, 0x82, 0x8e, 0x7e, 0xbc, 0xf4, 0x05, 0x0b, 0x86, 0x7d, 0x6a, 0x85, 0xf2, 0xf3, - 0x8e, 0xd1, 0x8b, 0xb5, 0x93, 0xea, 0x7b, 0x6e, 0xec, 0xc6, 0xfc, 0xb4, 0x5a, 0xb9, 0x3c, 0x79, - 0x23, 0x16, 0x32, 0xa0, 0x6f, 0x58, 0xe9, 0xc3, 0x13, 0x1e, 0x7e, 0xe4, 0x9d, 0x98, 0x4c, 0xc6, - 0x89, 0x0c, 0x17, 0x4c, 0xfb, 0xfa, 0x7b, 0x9c, 0xd5, 0xa0, 0x19, 0x80, 0xba, 0x17, 0x38, 0xbe, - 0xf7, 0x06, 0xdd, 0x4d, 0x97, 0xd8, 0xb2, 0xc2, 0xd6, 0xe9, 0xcb, 0xaa, 0x15, 0x1b, 0x18, 0xe7, - 0xff, 0x02, 0x8c, 0x1a, 0x6f, 0xde, 0xe5, 0x90, 0xfd, 0xac, 0x79, 0xc8, 0x5e, 0x31, 0xce, 0xc6, - 0xcf, 0x7f, 0x10, 0x4e, 0x67, 0x05, 0x3c, 0xca, 0xf3, 0xf6, 0xff, 0x1c, 0xc9, 0x9e, 0x78, 0x6c, - 0x90, 0xa8, 0x49, 0x45, 0x7b, 0xdb, 0x0b, 0xf1, 0xb6, 0x17, 0xe2, 0x6d, 0x2f, 0x84, 0xe9, 0x48, - 0x16, 0x3b, 0xec, 0x91, 0x07, 0xb4, 0xc3, 0x4e, 0xf9, 0x0c, 0xca, 0xb9, 0xfb, 0x0c, 0xec, 0x83, - 0x12, 0xa4, 0xec, 0x28, 0xde, 0xdf, 0xef, 0x86, 0x91, 0x88, 0xb4, 0xc2, 0x1b, 0x78, 0x59, 0xac, - 0x21, 0x3a, 0x90, 0x9a, 0x37, 0x63, 0x09, 0xa7, 0x6b, 0x4d, 0xcb, 0x49, 0xb6, 0xc4, 0x22, 0xa2, - 0xd6, 0x9a, 0x35, 0x27, 0xd9, 0xc2, 0x0c, 0x82, 0x3e, 0x08, 0x13, 0x89, 0x13, 0x35, 0x48, 0x82, - 0xc9, 0x0e, 0xfb, 0xac, 0xe2, 0x5c, 0xec, 0x31, 0x81, 0x3b, 0xb1, 0x91, 0x82, 0xe2, 0x0c, 0x36, - 0xba, 0x03, 0x43, 0x5b, 0xc4, 0x6f, 0x8a, 0x2e, 0x5f, 0xcf, 0x4f, 0xc7, 0xb3, 0x77, 0xbd, 0x42, - 0xfc, 0x26, 0xd7, 0x40, 0xf4, 0x17, 0x66, 0xac, 0xe8, 0x78, 0xab, 0x6c, 0xb7, 0xe3, 0x24, 0x6c, - 0x7a, 0x6f, 0x48, 0x77, 0xd0, 0x87, 0x73, 0x66, 0x7c, 0x4d, 0xd2, 0xe7, 0x0e, 0x04, 0xf5, 0x17, - 0x6b, 0xce, 0x4c, 0x8e, 0x9a, 0x17, 0xb1, 0x4f, 0xb5, 0x27, 0xbc, 0x3a, 0x79, 0xcb, 0xb1, 0x20, - 0xe9, 0x73, 0x39, 0xd4, 0x5f, 0xac, 0x39, 0xa3, 0x3d, 0x35, 0xee, 0x47, 0x99, 0x0c, 0x37, 0x72, - 0x96, 0x81, 0x8f, 0xf9, 0xae, 0xe3, 0xff, 0x19, 0x28, 0xb9, 0x5b, 0x4e, 0x94, 0x4c, 0x8d, 0xb1, - 0x41, 0xa3, 0x1c, 0x19, 0xf3, 0xb4, 0x11, 0x73, 0x18, 0x7a, 0x0a, 0x8a, 0x11, 0xa9, 0xb3, 0xf8, - 0x3d, 0x23, 0xb2, 0x03, 0x93, 0x3a, 0xa6, 0xed, 0xf6, 0xaf, 0x15, 0xd2, 0xe6, 0x52, 0xfa, 0xbd, - 0xf9, 0x68, 0x77, 0xdb, 0x51, 0x2c, 0x9d, 0x1d, 0xc6, 0x68, 0x67, 0xcd, 0x58, 0xc2, 0xd1, 0x67, - 0x2c, 0x18, 0xb9, 0x1d, 0x87, 0x41, 0x40, 0x12, 0xb1, 0x34, 0xdd, 0xcc, 0xb9, 0x2b, 0xae, 0x72, - 0xea, 0x5a, 0x06, 0xd1, 0x80, 0x25, 0x5f, 0x2a, 0x2e, 0xd9, 0x75, 0xfd, 0x76, 0xad, 0xe3, 0x40, - 0xff, 0x12, 0x6f, 0xc6, 0x12, 0x4e, 0x51, 0xbd, 0x80, 0xa3, 0x0e, 0xa5, 0x51, 0x97, 0x02, 0x81, - 0x2a, 0xe0, 0xf6, 0x37, 0x4b, 0x70, 0xae, 0xeb, 0xe4, 0xa0, 0x86, 0x0c, 0x33, 0x15, 0x2e, 0x7b, - 0x3e, 0x91, 0x61, 0x2a, 0xcc, 0x90, 0xb9, 0xa9, 0x5a, 0xb1, 0x81, 0x81, 0x7e, 0x16, 0xa0, 0xe5, - 0x44, 0x4e, 0x93, 0x88, 0x05, 0xbc, 0x38, 0xb8, 0xbd, 0x40, 0xe5, 0x58, 0x93, 0x34, 0xf5, 0xde, - 0x54, 0x35, 0xc5, 0xd8, 0x60, 0x89, 0xde, 0x0f, 0xa3, 0x11, 0xf1, 0x89, 0x13, 0xb3, 0xf0, 0xcf, - 0x6c, 0x2c, 0x3b, 0xd6, 0x20, 0x6c, 0xe2, 0xa1, 0x67, 0x55, 0x44, 0x4f, 0x26, 0xfa, 0x21, 0x1d, - 0xd5, 0x83, 0xde, 0xb4, 0x60, 0xa2, 0xee, 0xf9, 0x44, 0x73, 0x17, 0x91, 0xe7, 0xab, 0x83, 0xbf, + // 10401 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x70, 0x1c, 0xc9, + 0x75, 0x98, 0x66, 0x17, 0x0b, 0xec, 0x3e, 0x7c, 0x90, 0x68, 0x92, 0x77, 0x38, 0xea, 0xee, 0x40, + 0xcf, 0x95, 0xcf, 0xe7, 0xe8, 0x04, 0xf8, 0xe8, 0x93, 0x72, 0xf1, 0xd9, 0x92, 0xb1, 0x00, 0x09, + 0x82, 0x04, 0x08, 0x5c, 0x03, 0x24, 0xa5, 0x93, 0x4f, 0xa7, 0xc1, 0x6c, 0xef, 0x62, 0x88, 0xd9, + 0x99, 0xbd, 0x99, 0x59, 0x10, 0x38, 0x4b, 0xb2, 0x64, 0x5b, 0xb6, 0x12, 0x7d, 0x9c, 0x22, 0xa5, + 0xca, 0x72, 0x12, 0x39, 0xf2, 0x47, 0x52, 0x71, 0x25, 0xaa, 0x28, 0x95, 0x1f, 0x71, 0xe2, 0xa4, + 0x5c, 0xb6, 0xf3, 0x43, 0x29, 0x25, 0x15, 0x55, 0xca, 0x65, 0x39, 0xb1, 0x8d, 0x48, 0x4c, 0xa5, + 0x92, 0x4a, 0x55, 0x5c, 0x95, 0x8f, 0x1f, 0x09, 0x93, 0xaa, 0xa4, 0xfa, 0xbb, 0x67, 0x76, 0x96, + 0x58, 0x00, 0x03, 0x92, 0x52, 0xee, 0xdf, 0x6e, 0xbf, 0x37, 0xef, 0xbd, 0xe9, 0xe9, 0x7e, 0xfd, + 0xfa, 0xf5, 0x7b, 0xaf, 0x61, 0xb9, 0xe5, 0x25, 0x5b, 0xdd, 0xcd, 0x19, 0x37, 0x6c, 0xcf, 0x3a, + 0x51, 0x2b, 0xec, 0x44, 0xe1, 0x6d, 0xf6, 0xe3, 0xdd, 0x6e, 0x63, 0x76, 0xe7, 0xe2, 0x6c, 0x67, + 0xbb, 0x35, 0xeb, 0x74, 0xbc, 0x78, 0xd6, 0xe9, 0x74, 0x7c, 0xcf, 0x75, 0x12, 0x2f, 0x0c, 0x66, + 0x77, 0x5e, 0x70, 0xfc, 0xce, 0x96, 0xf3, 0xc2, 0x6c, 0x8b, 0x04, 0x24, 0x72, 0x12, 0xd2, 0x98, + 0xe9, 0x44, 0x61, 0x12, 0xa2, 0x1f, 0xd7, 0xd4, 0x66, 0x24, 0x35, 0xf6, 0xe3, 0x75, 0xb7, 0x31, + 0xb3, 0x73, 0x71, 0xa6, 0xb3, 0xdd, 0x9a, 0xa1, 0xd4, 0x66, 0x0c, 0x6a, 0x33, 0x92, 0xda, 0xf9, + 0x77, 0x1b, 0xb2, 0xb4, 0xc2, 0x56, 0x38, 0xcb, 0x88, 0x6e, 0x76, 0x9b, 0xec, 0x1f, 0xfb, 0xc3, + 0x7e, 0x71, 0x66, 0xe7, 0xed, 0xed, 0x97, 0xe2, 0x19, 0x2f, 0xa4, 0xe2, 0xcd, 0xba, 0x61, 0x44, + 0x66, 0x77, 0x7a, 0x04, 0x3a, 0x7f, 0x45, 0xe3, 0x90, 0xdd, 0x84, 0x04, 0xb1, 0x17, 0x06, 0xf1, + 0xbb, 0xa9, 0x08, 0x24, 0xda, 0x21, 0x91, 0xf9, 0x7a, 0x06, 0x42, 0x1e, 0xa5, 0x17, 0x35, 0xa5, + 0xb6, 0xe3, 0x6e, 0x79, 0x01, 0x89, 0xf6, 0xf4, 0xe3, 0x6d, 0x92, 0x38, 0x79, 0x4f, 0xcd, 0xf6, + 0x7b, 0x2a, 0xea, 0x06, 0x89, 0xd7, 0x26, 0x3d, 0x0f, 0xbc, 0xf7, 0xa0, 0x07, 0x62, 0x77, 0x8b, + 0xb4, 0x9d, 0x9e, 0xe7, 0x7e, 0xb4, 0xdf, 0x73, 0xdd, 0xc4, 0xf3, 0x67, 0xbd, 0x20, 0x89, 0x93, + 0x28, 0xfb, 0x90, 0xfd, 0x06, 0x8c, 0xcf, 0xdd, 0x5a, 0x9f, 0xeb, 0x26, 0x5b, 0xf3, 0x61, 0xd0, + 0xf4, 0x5a, 0xe8, 0x3d, 0x30, 0xea, 0xfa, 0xdd, 0x38, 0x21, 0xd1, 0x75, 0xa7, 0x4d, 0xa6, 0xac, + 0x0b, 0xd6, 0x73, 0xb5, 0xfa, 0x99, 0x6f, 0xec, 0x4f, 0xbf, 0xe3, 0xee, 0xfe, 0xf4, 0xe8, 0xbc, + 0x06, 0x61, 0x13, 0x0f, 0xfd, 0x30, 0x8c, 0x44, 0xa1, 0x4f, 0xe6, 0xf0, 0xf5, 0xa9, 0x12, 0x7b, + 0xe4, 0x94, 0x78, 0x64, 0x04, 0xf3, 0x66, 0x2c, 0xe1, 0xf6, 0x1f, 0x96, 0x00, 0xe6, 0x3a, 0x9d, + 0xb5, 0x28, 0xbc, 0x4d, 0xdc, 0x04, 0x7d, 0x04, 0xaa, 0xb4, 0xeb, 0x1a, 0x4e, 0xe2, 0x30, 0x6e, + 0xa3, 0x17, 0x7f, 0x64, 0x86, 0xbf, 0xc9, 0x8c, 0xf9, 0x26, 0x7a, 0xe0, 0x50, 0xec, 0x99, 0x9d, + 0x17, 0x66, 0x56, 0x37, 0xe9, 0xf3, 0x2b, 0x24, 0x71, 0xea, 0x48, 0x30, 0x03, 0xdd, 0x86, 0x15, + 0x55, 0x14, 0xc0, 0x50, 0xdc, 0x21, 0x2e, 0x13, 0x6c, 0xf4, 0xe2, 0xf2, 0xcc, 0x71, 0x46, 0xe8, + 0x8c, 0x96, 0x7c, 0xbd, 0x43, 0xdc, 0xfa, 0x98, 0xe0, 0x3c, 0x44, 0xff, 0x61, 0xc6, 0x07, 0xed, + 0xc0, 0x70, 0x9c, 0x38, 0x49, 0x37, 0x9e, 0x2a, 0x33, 0x8e, 0xd7, 0x0b, 0xe3, 0xc8, 0xa8, 0xd6, + 0x27, 0x04, 0xcf, 0x61, 0xfe, 0x1f, 0x0b, 0x6e, 0xf6, 0x9f, 0x5a, 0x30, 0xa1, 0x91, 0x97, 0xbd, + 0x38, 0x41, 0x3f, 0xd5, 0xd3, 0xb9, 0x33, 0x83, 0x75, 0x2e, 0x7d, 0x9a, 0x75, 0xed, 0x69, 0xc1, + 0xac, 0x2a, 0x5b, 0x8c, 0x8e, 0x6d, 0x43, 0xc5, 0x4b, 0x48, 0x3b, 0x9e, 0x2a, 0x5d, 0x28, 0x3f, + 0x37, 0x7a, 0xf1, 0x4a, 0x51, 0xef, 0x59, 0x1f, 0x17, 0x4c, 0x2b, 0x4b, 0x94, 0x3c, 0xe6, 0x5c, + 0xec, 0xdf, 0x1c, 0x33, 0xdf, 0x8f, 0x76, 0x38, 0x7a, 0x01, 0x46, 0xe3, 0xb0, 0x1b, 0xb9, 0x04, + 0x93, 0x4e, 0x18, 0x4f, 0x59, 0x17, 0xca, 0x74, 0xe8, 0xd1, 0x91, 0xba, 0xae, 0x9b, 0xb1, 0x89, + 0x83, 0x3e, 0x6f, 0xc1, 0x58, 0x83, 0xc4, 0x89, 0x17, 0x30, 0xfe, 0x52, 0xf8, 0x8d, 0x63, 0x0b, + 0x2f, 0x1b, 0x17, 0x34, 0xf1, 0xfa, 0x59, 0xf1, 0x22, 0x63, 0x46, 0x63, 0x8c, 0x53, 0xfc, 0xe9, + 0x8c, 0x6b, 0x90, 0xd8, 0x8d, 0xbc, 0x0e, 0xfd, 0xcf, 0xc6, 0x8c, 0x31, 0xe3, 0x16, 0x34, 0x08, + 0x9b, 0x78, 0x28, 0x80, 0x0a, 0x9d, 0x51, 0xf1, 0xd4, 0x10, 0x93, 0x7f, 0xe9, 0x78, 0xf2, 0x8b, + 0x4e, 0xa5, 0x93, 0x55, 0xf7, 0x3e, 0xfd, 0x17, 0x63, 0xce, 0x06, 0x7d, 0xce, 0x82, 0x29, 0x31, + 0xe3, 0x31, 0xe1, 0x1d, 0x7a, 0x6b, 0xcb, 0x4b, 0x88, 0xef, 0xc5, 0xc9, 0x54, 0x85, 0xc9, 0x30, + 0x3b, 0xd8, 0xd8, 0x5a, 0x8c, 0xc2, 0x6e, 0xe7, 0x9a, 0x17, 0x34, 0xea, 0x17, 0x04, 0xa7, 0xa9, + 0xf9, 0x3e, 0x84, 0x71, 0x5f, 0x96, 0xe8, 0x4b, 0x16, 0x9c, 0x0f, 0x9c, 0x36, 0x89, 0x3b, 0x0e, + 0xfd, 0xb4, 0x1c, 0x5c, 0xf7, 0x1d, 0x77, 0x9b, 0x49, 0x34, 0x7c, 0x34, 0x89, 0x6c, 0x21, 0xd1, + 0xf9, 0xeb, 0x7d, 0x49, 0xe3, 0xfb, 0xb0, 0x45, 0xbf, 0x6e, 0xc1, 0x64, 0x18, 0x75, 0xb6, 0x9c, + 0x80, 0x34, 0x24, 0x34, 0x9e, 0x1a, 0x61, 0x53, 0xef, 0xc3, 0xc7, 0xfb, 0x44, 0xab, 0x59, 0xb2, + 0x2b, 0x61, 0xe0, 0x25, 0x61, 0xb4, 0x4e, 0x92, 0xc4, 0x0b, 0x5a, 0x71, 0xfd, 0xdc, 0xdd, 0xfd, + 0xe9, 0xc9, 0x1e, 0x2c, 0xdc, 0x2b, 0x0f, 0xfa, 0x69, 0x18, 0x8d, 0xf7, 0x02, 0xf7, 0x96, 0x17, + 0x34, 0xc2, 0x3b, 0xf1, 0x54, 0xb5, 0x88, 0xe9, 0xbb, 0xae, 0x08, 0x8a, 0x09, 0xa8, 0x19, 0x60, + 0x93, 0x5b, 0xfe, 0x87, 0xd3, 0x43, 0xa9, 0x56, 0xf4, 0x87, 0xd3, 0x83, 0xe9, 0x3e, 0x6c, 0xd1, + 0x2f, 0x5a, 0x30, 0x1e, 0x7b, 0xad, 0xc0, 0x49, 0xba, 0x11, 0xb9, 0x46, 0xf6, 0xe2, 0x29, 0x60, + 0x82, 0x5c, 0x3d, 0x66, 0xaf, 0x18, 0x24, 0xeb, 0xe7, 0x84, 0x8c, 0xe3, 0x66, 0x6b, 0x8c, 0xd3, + 0x7c, 0xf3, 0x26, 0x9a, 0x1e, 0xd6, 0xa3, 0xc5, 0x4e, 0x34, 0x3d, 0xa8, 0xfb, 0xb2, 0x44, 0x3f, + 0x09, 0xa7, 0x79, 0x93, 0xea, 0xd9, 0x78, 0x6a, 0x8c, 0x29, 0xda, 0xb3, 0x77, 0xf7, 0xa7, 0x4f, + 0xaf, 0x67, 0x60, 0xb8, 0x07, 0x1b, 0xbd, 0x01, 0xd3, 0x1d, 0x12, 0xb5, 0xbd, 0x64, 0x35, 0xf0, + 0xf7, 0xa4, 0xfa, 0x76, 0xc3, 0x0e, 0x69, 0x08, 0x71, 0xe2, 0xa9, 0xf1, 0x0b, 0xd6, 0x73, 0xd5, + 0xfa, 0x0f, 0x09, 0x31, 0xa7, 0xd7, 0xee, 0x8f, 0x8e, 0x0f, 0xa2, 0x67, 0xff, 0xf3, 0x12, 0x9c, + 0xce, 0x2e, 0x9c, 0xe8, 0x6f, 0x59, 0x70, 0xea, 0xf6, 0x9d, 0x64, 0x23, 0xdc, 0x26, 0x41, 0x5c, + 0xdf, 0xa3, 0xea, 0x8d, 0x2d, 0x19, 0xa3, 0x17, 0xdd, 0x62, 0x97, 0xe8, 0x99, 0xab, 0x69, 0x2e, + 0x97, 0x82, 0x24, 0xda, 0xab, 0x3f, 0x2e, 0xde, 0xee, 0xd4, 0xd5, 0x5b, 0x1b, 0x26, 0x14, 0x67, + 0x85, 0x3a, 0xff, 0x19, 0x0b, 0xce, 0xe6, 0x91, 0x40, 0xa7, 0xa1, 0xbc, 0x4d, 0xf6, 0xb8, 0x55, + 0x86, 0xe9, 0x4f, 0xf4, 0x1a, 0x54, 0x76, 0x1c, 0xbf, 0x4b, 0x84, 0x75, 0xb3, 0x78, 0xbc, 0x17, + 0x51, 0x92, 0x61, 0x4e, 0xf5, 0xc7, 0x4a, 0x2f, 0x59, 0xf6, 0xbf, 0x2a, 0xc3, 0xa8, 0xb1, 0xbe, + 0x3d, 0x00, 0x8b, 0x2d, 0x4c, 0x59, 0x6c, 0x2b, 0x85, 0x2d, 0xcd, 0x7d, 0x4d, 0xb6, 0x3b, 0x19, + 0x93, 0x6d, 0xb5, 0x38, 0x96, 0xf7, 0xb5, 0xd9, 0x50, 0x02, 0xb5, 0xb0, 0x43, 0x2d, 0x72, 0xba, + 0xf4, 0x0f, 0x15, 0xf1, 0x09, 0x57, 0x25, 0xb9, 0xfa, 0xf8, 0xdd, 0xfd, 0xe9, 0x9a, 0xfa, 0x8b, + 0x35, 0x23, 0xfb, 0xdb, 0x16, 0x9c, 0x35, 0x64, 0x9c, 0x0f, 0x83, 0x86, 0xc7, 0x3e, 0xed, 0x05, + 0x18, 0x4a, 0xf6, 0x3a, 0xd2, 0xec, 0x57, 0x3d, 0xb5, 0xb1, 0xd7, 0x21, 0x98, 0x41, 0xa8, 0xa1, + 0xdf, 0x26, 0x71, 0xec, 0xb4, 0x48, 0xd6, 0xd0, 0x5f, 0xe1, 0xcd, 0x58, 0xc2, 0x51, 0x04, 0xc8, + 0x77, 0xe2, 0x64, 0x23, 0x72, 0x82, 0x98, 0x91, 0xdf, 0xf0, 0xda, 0x44, 0x74, 0xf0, 0x9f, 0x1b, + 0x6c, 0xc4, 0xd0, 0x27, 0xea, 0x8f, 0xdd, 0xdd, 0x9f, 0x46, 0xcb, 0x3d, 0x94, 0x70, 0x0e, 0x75, + 0xfb, 0x4b, 0x16, 0x3c, 0x96, 0x6f, 0x8b, 0xa1, 0x67, 0x61, 0x98, 0x6f, 0xf9, 0xc4, 0xdb, 0xe9, + 0x4f, 0xc2, 0x5a, 0xb1, 0x80, 0xa2, 0x59, 0xa8, 0xa9, 0x75, 0x42, 0xbc, 0xe3, 0xa4, 0x40, 0xad, + 0xe9, 0xc5, 0x45, 0xe3, 0xd0, 0x4e, 0xa3, 0x7f, 0x84, 0xe5, 0xa6, 0x3a, 0x8d, 0x6d, 0x92, 0x18, + 0xc4, 0xfe, 0x77, 0x16, 0x9c, 0x32, 0xa4, 0x7a, 0x00, 0xa6, 0x79, 0x90, 0x36, 0xcd, 0x97, 0x0a, + 0x1b, 0xcf, 0x7d, 0x6c, 0xf3, 0xcf, 0x59, 0x70, 0xde, 0xc0, 0x5a, 0x71, 0x12, 0x77, 0xeb, 0xd2, + 0x6e, 0x27, 0x22, 0x31, 0xdd, 0x4e, 0xa3, 0xa7, 0x0c, 0xbd, 0x55, 0x1f, 0x15, 0x14, 0xca, 0xd7, + 0xc8, 0x1e, 0x57, 0x62, 0xcf, 0x43, 0x95, 0x0f, 0xce, 0x30, 0x12, 0x3d, 0xae, 0xde, 0x6d, 0x55, + 0xb4, 0x63, 0x85, 0x81, 0x6c, 0x18, 0x66, 0xca, 0x89, 0x4e, 0x56, 0xba, 0x0c, 0x01, 0xfd, 0x88, + 0x37, 0x59, 0x0b, 0x16, 0x10, 0x7b, 0x35, 0x25, 0xce, 0x5a, 0x44, 0xd8, 0xc7, 0x6d, 0x5c, 0xf6, + 0x88, 0xdf, 0x88, 0xe9, 0xb6, 0xc1, 0x09, 0x82, 0x30, 0x11, 0x3b, 0x00, 0x63, 0xdb, 0x30, 0xa7, + 0x9b, 0xb1, 0x89, 0x63, 0xdf, 0x2d, 0xb1, 0xcd, 0x87, 0x9a, 0xd6, 0xe4, 0x41, 0xec, 0x5c, 0xa3, + 0x94, 0x1e, 0x5c, 0x2b, 0x4e, 0x29, 0x91, 0xfe, 0xbb, 0xd7, 0x37, 0x33, 0xaa, 0x10, 0x17, 0xca, + 0xf5, 0xfe, 0x3b, 0xd8, 0xdf, 0x2d, 0xc1, 0x74, 0xfa, 0x81, 0x1e, 0x4d, 0x4a, 0xb7, 0x4b, 0x06, + 0xa3, 0xac, 0x83, 0xc2, 0xc0, 0xc7, 0x26, 0x5e, 0x1f, 0x65, 0x54, 0x3a, 0x49, 0x65, 0x64, 0xea, + 0xca, 0xf2, 0x01, 0xba, 0xf2, 0x59, 0xd5, 0xeb, 0x43, 0x19, 0xe5, 0x94, 0x5e, 0x2f, 0x2e, 0xc0, + 0x50, 0x9c, 0x90, 0xce, 0x54, 0x25, 0xad, 0x6b, 0xd6, 0x13, 0xd2, 0xc1, 0x0c, 0x62, 0xff, 0xe7, + 0x12, 0x3c, 0x9e, 0xee, 0x43, 0xad, 0xde, 0xdf, 0x9f, 0x52, 0xef, 0xef, 0x32, 0xd5, 0xfb, 0xbd, + 0xfd, 0xe9, 0x77, 0xf6, 0x79, 0xec, 0x7b, 0x46, 0xfb, 0xa3, 0xc5, 0x4c, 0x2f, 0xce, 0xa6, 0x7b, + 0xf1, 0xde, 0xfe, 0xf4, 0x53, 0x7d, 0xde, 0x31, 0xd3, 0xcd, 0xcf, 0xc2, 0x70, 0x44, 0x9c, 0x38, + 0x0c, 0x44, 0x47, 0xab, 0xcf, 0x81, 0x59, 0x2b, 0x16, 0x50, 0xfb, 0x5f, 0xd7, 0xb2, 0x9d, 0xbd, + 0xc8, 0x1d, 0x6c, 0x61, 0x84, 0x3c, 0x18, 0x62, 0x26, 0x3b, 0x57, 0x0d, 0xd7, 0x8e, 0x37, 0x8d, + 0xa8, 0x8a, 0x57, 0xa4, 0xeb, 0x55, 0xfa, 0xd5, 0x68, 0x13, 0x66, 0x2c, 0xd0, 0x2e, 0x54, 0x5d, + 0x69, 0x49, 0x97, 0x8a, 0xf0, 0x39, 0x09, 0x3b, 0x5a, 0x73, 0x1c, 0xa3, 0xba, 0x58, 0x99, 0xdf, + 0x8a, 0x1b, 0x22, 0x50, 0x6e, 0x79, 0x89, 0xf8, 0xac, 0xc7, 0xdc, 0x2b, 0x2d, 0x7a, 0xc6, 0x2b, + 0x8e, 0xd0, 0x05, 0x62, 0xd1, 0x4b, 0x30, 0xa5, 0x8f, 0x3e, 0x65, 0xc1, 0x68, 0xec, 0xb6, 0xd7, + 0xa2, 0x70, 0xc7, 0x6b, 0x90, 0x48, 0x58, 0x4a, 0xc7, 0x54, 0x4d, 0xeb, 0xf3, 0x2b, 0x92, 0xa0, + 0xe6, 0xcb, 0xf7, 0xae, 0x1a, 0x82, 0x4d, 0xbe, 0x74, 0x07, 0xf1, 0xb8, 0x78, 0xf7, 0x05, 0xe2, + 0x7a, 0x74, 0x6d, 0x93, 0x1b, 0x26, 0x36, 0x52, 0x8e, 0x6d, 0x39, 0x2e, 0x74, 0xdd, 0x6d, 0x3a, + 0xdf, 0xb4, 0x40, 0xef, 0xbc, 0xbb, 0x3f, 0xfd, 0xf8, 0x7c, 0x3e, 0x4f, 0xdc, 0x4f, 0x18, 0xd6, + 0x61, 0x9d, 0xae, 0xef, 0x63, 0xf2, 0x46, 0x97, 0x30, 0x77, 0x48, 0x01, 0x1d, 0xb6, 0xa6, 0x09, + 0x66, 0x3a, 0xcc, 0x80, 0x60, 0x93, 0x2f, 0x7a, 0x03, 0x86, 0xdb, 0x4e, 0x12, 0x79, 0xbb, 0xc2, + 0x07, 0x72, 0x4c, 0x5b, 0x7e, 0x85, 0xd1, 0xd2, 0xcc, 0xd9, 0xd2, 0xcf, 0x1b, 0xb1, 0x60, 0x84, + 0xda, 0x50, 0x69, 0x93, 0xa8, 0x45, 0xa6, 0xaa, 0x45, 0xf8, 0x7b, 0x57, 0x28, 0x29, 0xcd, 0xb0, + 0x46, 0x2d, 0x1f, 0xd6, 0x86, 0x39, 0x17, 0xf4, 0x1a, 0x54, 0x63, 0xe2, 0x13, 0x97, 0xda, 0x2e, + 0x35, 0xc6, 0xf1, 0x47, 0x07, 0xb4, 0xe3, 0x9c, 0x4d, 0xe2, 0xaf, 0x8b, 0x47, 0xf9, 0x04, 0x93, + 0xff, 0xb0, 0x22, 0x49, 0x3b, 0xb0, 0xe3, 0x77, 0x5b, 0x5e, 0x30, 0x05, 0x45, 0x74, 0xe0, 0x1a, + 0xa3, 0x95, 0xe9, 0x40, 0xde, 0x88, 0x05, 0x23, 0xfb, 0x3f, 0x58, 0x80, 0xd2, 0x4a, 0xed, 0x01, + 0x18, 0xac, 0x6f, 0xa4, 0x0d, 0xd6, 0xe5, 0x22, 0xad, 0x8e, 0x3e, 0x36, 0xeb, 0x6f, 0xd7, 0x20, + 0xb3, 0x1c, 0x5c, 0x27, 0x71, 0x42, 0x1a, 0x6f, 0xab, 0xf0, 0xb7, 0x55, 0xf8, 0xdb, 0x2a, 0x5c, + 0xa9, 0xf0, 0xcd, 0x8c, 0x0a, 0x7f, 0x9f, 0x31, 0xeb, 0xf5, 0x81, 0xe9, 0xeb, 0xea, 0x44, 0xd5, + 0x94, 0xc0, 0x40, 0xa0, 0x9a, 0xe0, 0xea, 0xfa, 0xea, 0xf5, 0x5c, 0x9d, 0xfd, 0x7a, 0x5a, 0x67, + 0x1f, 0x97, 0xc5, 0xff, 0x0f, 0x5a, 0xfa, 0xaf, 0x95, 0xe0, 0x89, 0xb4, 0xf6, 0xc2, 0xa1, 0xef, + 0x87, 0xdd, 0x84, 0xee, 0x05, 0xd0, 0xaf, 0x58, 0x70, 0xba, 0x9d, 0xde, 0x84, 0xc7, 0xc2, 0xd7, + 0xf9, 0x81, 0xc2, 0x54, 0x6b, 0x66, 0x97, 0x5f, 0x9f, 0x12, 0x6a, 0xf6, 0x74, 0x06, 0x10, 0xe3, + 0x1e, 0x59, 0xd0, 0x6b, 0x50, 0x6b, 0x3b, 0xbb, 0x37, 0x3a, 0x0d, 0x27, 0x91, 0xdb, 0xb0, 0xfe, + 0xbb, 0xe7, 0x6e, 0xe2, 0xf9, 0x33, 0xfc, 0x04, 0x7b, 0x66, 0x29, 0x48, 0x56, 0xa3, 0xf5, 0x24, + 0xf2, 0x82, 0x16, 0xf7, 0x70, 0xad, 0x48, 0x32, 0x58, 0x53, 0xb4, 0xbf, 0x62, 0x65, 0x75, 0xbb, + 0xea, 0x9d, 0xc8, 0x49, 0x48, 0x6b, 0x0f, 0x7d, 0x14, 0x2a, 0x74, 0xbf, 0x24, 0x7b, 0xe5, 0x56, + 0x91, 0x0b, 0x8e, 0xf1, 0x25, 0xf4, 0xda, 0x43, 0xff, 0xc5, 0x98, 0x33, 0xb5, 0xbf, 0x34, 0x92, + 0x5d, 0x63, 0xd9, 0x79, 0xe6, 0x45, 0x80, 0x56, 0xb8, 0x41, 0xda, 0x1d, 0x9f, 0x76, 0x8b, 0xc5, + 0x9c, 0xe2, 0xca, 0x45, 0xb0, 0xa8, 0x20, 0xd8, 0xc0, 0x42, 0x7f, 0xd1, 0x02, 0x68, 0xc9, 0xa1, + 0x22, 0xd7, 0xcf, 0x1b, 0x45, 0xbe, 0x8e, 0x1e, 0x88, 0x5a, 0x16, 0xc5, 0x10, 0x1b, 0xcc, 0xd1, + 0xcf, 0x5a, 0x50, 0x4d, 0xa4, 0xf8, 0x7c, 0x45, 0xd9, 0x28, 0x52, 0x12, 0xf9, 0xd2, 0xda, 0x94, + 0x50, 0x5d, 0xa2, 0xf8, 0xa2, 0x5f, 0xb0, 0x00, 0xe2, 0xbd, 0xc0, 0x5d, 0x0b, 0x7d, 0xcf, 0xdd, + 0x13, 0x0b, 0xcd, 0xcd, 0x42, 0xdd, 0x18, 0x8a, 0x7a, 0x7d, 0x82, 0xf6, 0x86, 0xfe, 0x8f, 0x0d, + 0xce, 0xe8, 0xe3, 0x50, 0x8d, 0xc5, 0x70, 0x13, 0x4b, 0xcb, 0x46, 0xb1, 0xce, 0x14, 0x4e, 0x5b, + 0x68, 0x25, 0xf1, 0x0f, 0x2b, 0x9e, 0xe8, 0x97, 0x2c, 0x38, 0xd5, 0x49, 0xbb, 0xbe, 0xc4, 0x2a, + 0x52, 0x9c, 0x0e, 0xc8, 0xb8, 0xd6, 0xea, 0x67, 0xee, 0xee, 0x4f, 0x9f, 0xca, 0x34, 0xe2, 0xac, + 0x14, 0x68, 0x1e, 0x26, 0xf5, 0x08, 0x5e, 0xed, 0x70, 0x37, 0xdc, 0x08, 0x73, 0xc3, 0xb1, 0x53, + 0xcc, 0xc5, 0x2c, 0x10, 0xf7, 0xe2, 0xa3, 0x35, 0x38, 0x4b, 0xa5, 0xdb, 0xe3, 0x56, 0x9b, 0xd4, + 0xca, 0x31, 0x5b, 0x43, 0xaa, 0xf5, 0x27, 0xc5, 0x08, 0x61, 0x8e, 0xee, 0x2c, 0x0e, 0xce, 0x7d, + 0xd2, 0xfe, 0x66, 0x29, 0xe5, 0x17, 0x57, 0x0e, 0x2b, 0x36, 0xc7, 0x5c, 0xe9, 0x2b, 0x90, 0x2a, + 0xa3, 0xd0, 0x39, 0xa6, 0x3c, 0x11, 0x7a, 0x8e, 0xa9, 0xa6, 0x18, 0x1b, 0xcc, 0xa9, 0x01, 0x33, + 0xe9, 0x64, 0xdd, 0x62, 0x62, 0xda, 0xbf, 0x56, 0xa4, 0x48, 0xbd, 0xa7, 0x18, 0x4f, 0x08, 0xd1, + 0x26, 0x7b, 0x40, 0xb8, 0x57, 0x24, 0xfb, 0x9b, 0x69, 0x5f, 0xbc, 0x31, 0x62, 0x07, 0x38, 0x67, + 0xf8, 0xbc, 0x05, 0xa3, 0x51, 0xe8, 0xfb, 0x5e, 0xd0, 0xa2, 0xb3, 0x4b, 0x2c, 0x11, 0x1f, 0x3a, + 0x11, 0x2d, 0x2d, 0xa6, 0x11, 0x33, 0x83, 0xb0, 0xe6, 0x89, 0x4d, 0x01, 0xec, 0x3f, 0xb5, 0x60, + 0xaa, 0x9f, 0x16, 0x40, 0x04, 0xde, 0x29, 0x87, 0xb8, 0x3a, 0x65, 0x5f, 0x0d, 0x16, 0x88, 0x4f, + 0x94, 0x93, 0xb2, 0x5a, 0x7f, 0x46, 0xbc, 0xe6, 0x3b, 0xd7, 0xfa, 0xa3, 0xe2, 0xfb, 0xd1, 0x41, + 0xaf, 0xc2, 0x69, 0xe3, 0xbd, 0x62, 0xd5, 0x31, 0xb5, 0xfa, 0x0c, 0x5d, 0x76, 0xe7, 0x32, 0xb0, + 0x7b, 0xfb, 0xd3, 0x8f, 0x65, 0xdb, 0x84, 0x9a, 0xea, 0xa1, 0x63, 0xff, 0x46, 0x29, 0xfb, 0xb5, + 0xd4, 0x0a, 0xf3, 0x65, 0xab, 0x67, 0xeb, 0xf7, 0x81, 0x93, 0xd0, 0xea, 0x6c, 0x93, 0xa8, 0x0e, + 0xf2, 0xfb, 0xe3, 0x3c, 0xc4, 0x93, 0x42, 0xfb, 0x5f, 0x0c, 0xc1, 0x7d, 0x24, 0x53, 0x67, 0x41, + 0x56, 0xbf, 0xb3, 0xa0, 0xc3, 0x1f, 0x2f, 0x7d, 0xd6, 0x82, 0x61, 0x9f, 0x5a, 0xa1, 0xfc, 0xbc, + 0x63, 0xf4, 0x62, 0xe3, 0xa4, 0xfa, 0x9e, 0x1b, 0xbb, 0x31, 0x3f, 0xad, 0x56, 0x2e, 0x4f, 0xde, + 0x88, 0x85, 0x0c, 0xe8, 0xab, 0x56, 0xfa, 0xf0, 0x84, 0x87, 0x1f, 0x79, 0x27, 0x26, 0x93, 0x71, + 0x22, 0xc3, 0x05, 0xd3, 0xbe, 0xfe, 0x3e, 0x67, 0x35, 0x68, 0x06, 0xa0, 0xe9, 0x05, 0x8e, 0xef, + 0xbd, 0x49, 0x77, 0xd3, 0x15, 0xb6, 0xac, 0xb0, 0x75, 0xfa, 0xb2, 0x6a, 0xc5, 0x06, 0xc6, 0xf9, + 0xbf, 0x00, 0xa3, 0xc6, 0x9b, 0xe7, 0x1c, 0xb2, 0x9f, 0x35, 0x0f, 0xd9, 0x6b, 0xc6, 0xd9, 0xf8, + 0xf9, 0xf7, 0xc1, 0xe9, 0xac, 0x80, 0x87, 0x79, 0xde, 0xfe, 0x9f, 0x23, 0xd9, 0x13, 0x8f, 0x0d, + 0x12, 0xb5, 0xa9, 0x68, 0x6f, 0x7b, 0x21, 0xde, 0xf6, 0x42, 0xbc, 0xed, 0x85, 0x30, 0x1d, 0xc9, + 0x62, 0x87, 0x3d, 0xf2, 0x80, 0x76, 0xd8, 0x29, 0x9f, 0x41, 0xb5, 0x70, 0x9f, 0x81, 0x7d, 0xb7, + 0x02, 0x29, 0x3b, 0x8a, 0xf7, 0xf7, 0x0f, 0xc3, 0x48, 0x44, 0x3a, 0xe1, 0x0d, 0xbc, 0x2c, 0xd6, + 0x10, 0x1d, 0x48, 0xcd, 0x9b, 0xb1, 0x84, 0xd3, 0xb5, 0xa6, 0xe3, 0x24, 0x5b, 0x62, 0x11, 0x51, + 0x6b, 0xcd, 0x9a, 0x93, 0x6c, 0x61, 0x06, 0x41, 0xef, 0x83, 0x89, 0xc4, 0x89, 0x5a, 0x24, 0xc1, + 0x64, 0x87, 0x7d, 0x56, 0x71, 0x2e, 0xf6, 0x98, 0xc0, 0x9d, 0xd8, 0x48, 0x41, 0x71, 0x06, 0x1b, + 0xbd, 0x01, 0x43, 0x5b, 0xc4, 0x6f, 0x8b, 0x2e, 0x5f, 0x2f, 0x4e, 0xc7, 0xb3, 0x77, 0xbd, 0x42, + 0xfc, 0x36, 0xd7, 0x40, 0xf4, 0x17, 0x66, 0xac, 0xe8, 0x78, 0xab, 0x6d, 0x77, 0xe3, 0x24, 0x6c, + 0x7b, 0x6f, 0x4a, 0x77, 0xd0, 0x07, 0x0a, 0x66, 0x7c, 0x4d, 0xd2, 0xe7, 0x0e, 0x04, 0xf5, 0x17, + 0x6b, 0xce, 0x4c, 0x8e, 0x86, 0x17, 0xb1, 0x4f, 0xb5, 0x27, 0xbc, 0x3a, 0x45, 0xcb, 0xb1, 0x20, + 0xe9, 0x73, 0x39, 0xd4, 0x5f, 0xac, 0x39, 0xa3, 0x3d, 0x35, 0xee, 0x47, 0x99, 0x0c, 0x37, 0x0a, + 0x96, 0x81, 0x8f, 0xf9, 0xdc, 0xf1, 0xff, 0x0c, 0x54, 0xdc, 0x2d, 0x27, 0x4a, 0xa6, 0xc6, 0xd8, + 0xa0, 0x51, 0x8e, 0x8c, 0x79, 0xda, 0x88, 0x39, 0x0c, 0x3d, 0x05, 0xe5, 0x88, 0x34, 0x59, 0xfc, + 0x9e, 0x11, 0xd9, 0x81, 0x49, 0x13, 0xd3, 0x76, 0xfb, 0x57, 0x4b, 0x69, 0x73, 0x29, 0xfd, 0xde, + 0x7c, 0xb4, 0xbb, 0xdd, 0x28, 0x96, 0xce, 0x0e, 0x63, 0xb4, 0xb3, 0x66, 0x2c, 0xe1, 0xe8, 0x93, + 0x16, 0x8c, 0xdc, 0x8e, 0xc3, 0x20, 0x20, 0x89, 0x58, 0x9a, 0x6e, 0x16, 0xdc, 0x15, 0x57, 0x39, + 0x75, 0x2d, 0x83, 0x68, 0xc0, 0x92, 0x2f, 0x15, 0x97, 0xec, 0xba, 0x7e, 0xb7, 0xd1, 0x73, 0xa0, + 0x7f, 0x89, 0x37, 0x63, 0x09, 0xa7, 0xa8, 0x5e, 0xc0, 0x51, 0x87, 0xd2, 0xa8, 0x4b, 0x81, 0x40, + 0x15, 0x70, 0xfb, 0xeb, 0x15, 0x38, 0x97, 0x3b, 0x39, 0xa8, 0x21, 0xc3, 0x4c, 0x85, 0xcb, 0x9e, + 0x4f, 0x64, 0x98, 0x0a, 0x33, 0x64, 0x6e, 0xaa, 0x56, 0x6c, 0x60, 0xa0, 0x9f, 0x01, 0xe8, 0x38, + 0x91, 0xd3, 0x26, 0x62, 0x01, 0x2f, 0x1f, 0xdf, 0x5e, 0xa0, 0x72, 0xac, 0x49, 0x9a, 0x7a, 0x6f, + 0xaa, 0x9a, 0x62, 0x6c, 0xb0, 0x44, 0xef, 0x81, 0xd1, 0x88, 0xf8, 0xc4, 0x89, 0x59, 0xf8, 0x67, + 0x36, 0x96, 0x1d, 0x6b, 0x10, 0x36, 0xf1, 0xd0, 0xb3, 0x2a, 0xa2, 0x27, 0x13, 0xfd, 0x90, 0x8e, + 0xea, 0x41, 0x6f, 0x59, 0x30, 0xd1, 0xf4, 0x7c, 0xa2, 0xb9, 0x8b, 0xc8, 0xf3, 0xd5, 0xe3, 0xbf, 0xe4, 0x65, 0x93, 0xae, 0xd6, 0x90, 0xa9, 0xe6, 0x18, 0x67, 0xd8, 0xd3, 0xcf, 0xbc, 0x43, 0x22, - 0xa6, 0x5a, 0x87, 0xd3, 0x9f, 0xf9, 0x26, 0x6f, 0xc6, 0x12, 0x8e, 0xe6, 0xe0, 0x54, 0xcb, 0x89, - 0xe3, 0xf9, 0x88, 0xd4, 0x48, 0x90, 0x78, 0x8e, 0xcf, 0xe3, 0xc2, 0xcb, 0x3a, 0x2e, 0x74, 0x2d, - 0x0d, 0xc6, 0x59, 0x7c, 0xf4, 0x11, 0x78, 0xdc, 0x6b, 0x04, 0x61, 0x44, 0x56, 0xbc, 0x38, 0xf6, - 0x82, 0x86, 0x1e, 0x06, 0xc2, 0xe9, 0x31, 0x2d, 0x48, 0x3d, 0xbe, 0xd4, 0x1d, 0x0d, 0xf7, 0x7a, - 0x1e, 0x3d, 0x0f, 0xe5, 0x78, 0xdb, 0x6b, 0xcd, 0x47, 0xb5, 0x98, 0x39, 0xc8, 0xcb, 0xda, 0xc5, - 0xb6, 0x2e, 0xda, 0xb1, 0xc2, 0xb0, 0x7f, 0xa5, 0x90, 0xde, 0x0c, 0x9b, 0xf3, 0x07, 0xc5, 0x74, - 0x96, 0x24, 0x37, 0x9d, 0x48, 0x3a, 0x4a, 0x06, 0x8c, 0x2c, 0x17, 0x74, 0x6f, 0x3a, 0x91, 0x39, - 0xdf, 0x18, 0x03, 0x2c, 0x39, 0xa1, 0xdb, 0x30, 0x94, 0xf8, 0x4e, 0x4e, 0xa9, 0x28, 0x06, 0x47, + 0xa6, 0x5a, 0x87, 0xd3, 0x9f, 0xf9, 0x26, 0x6f, 0xc6, 0x12, 0x8e, 0xe6, 0xe0, 0x54, 0xc7, 0x89, + 0xe3, 0xf9, 0x88, 0x34, 0x48, 0x90, 0x78, 0x8e, 0xcf, 0xe3, 0xc2, 0xab, 0x3a, 0x2e, 0x74, 0x2d, + 0x0d, 0xc6, 0x59, 0x7c, 0xf4, 0x41, 0x78, 0xdc, 0x6b, 0x05, 0x61, 0x44, 0x56, 0xbc, 0x38, 0xf6, + 0x82, 0x96, 0x1e, 0x06, 0xc2, 0xe9, 0x31, 0x2d, 0x48, 0x3d, 0xbe, 0x94, 0x8f, 0x86, 0xfb, 0x3d, + 0x8f, 0x9e, 0x87, 0x6a, 0xbc, 0xed, 0x75, 0xe6, 0xa3, 0x46, 0xcc, 0x1c, 0xe4, 0x55, 0xed, 0x62, + 0x5b, 0x17, 0xed, 0x58, 0x61, 0xd8, 0xbf, 0x5c, 0x4a, 0x6f, 0x86, 0xcd, 0xf9, 0x83, 0x62, 0x3a, + 0x4b, 0x92, 0x9b, 0x4e, 0x24, 0x1d, 0x25, 0xc7, 0x8c, 0x2c, 0x17, 0x74, 0x6f, 0x3a, 0x91, 0x39, + 0xdf, 0x18, 0x03, 0x2c, 0x39, 0xa1, 0xdb, 0x30, 0x94, 0xf8, 0x4e, 0x41, 0xa9, 0x28, 0x06, 0x47, 0xed, 0x9b, 0x58, 0x9e, 0x8b, 0x31, 0xe3, 0x81, 0x9e, 0xa4, 0x06, 0xf9, 0xa6, 0x0c, 0x3f, 0x13, - 0x36, 0xf4, 0x66, 0x8c, 0x59, 0xab, 0xfd, 0x7f, 0xca, 0x5d, 0x54, 0x9e, 0x5a, 0x63, 0xd0, 0x45, - 0x00, 0xba, 0xb7, 0x5b, 0x8b, 0x48, 0xdd, 0xdb, 0x15, 0x6b, 0xbc, 0x9a, 0x56, 0xd7, 0x15, 0x04, - 0x1b, 0x58, 0xf2, 0x99, 0xf5, 0x76, 0x9d, 0x3e, 0x53, 0xe8, 0x7c, 0x86, 0x43, 0xb0, 0x81, 0x85, - 0x5e, 0x84, 0x61, 0xaf, 0xe9, 0x34, 0x54, 0x94, 0xdc, 0x93, 0x74, 0x3e, 0x2d, 0xb1, 0x96, 0x7b, - 0xfb, 0xd3, 0x13, 0x4a, 0x20, 0xd6, 0x84, 0x05, 0x2e, 0xfa, 0x4d, 0x0b, 0xc6, 0xdc, 0xb0, 0xd9, - 0x0c, 0x03, 0xbe, 0x23, 0x12, 0xdb, 0xbb, 0xdb, 0x27, 0xb5, 0x02, 0xcf, 0xcc, 0x1b, 0xcc, 0xf8, - 0xfe, 0x4e, 0xe5, 0xcc, 0x98, 0x20, 0x9c, 0x92, 0xca, 0x9c, 0x76, 0xa5, 0x43, 0xa6, 0xdd, 0x6f, - 0x5b, 0x30, 0xc9, 0x9f, 0x35, 0x36, 0x6a, 0x22, 0x3d, 0x24, 0x3c, 0xe1, 0xd7, 0xea, 0xd8, 0xbb, - 0x2a, 0x07, 0x5a, 0x07, 0x1c, 0x77, 0x0a, 0x89, 0x16, 0x61, 0xb2, 0x1e, 0x46, 0x2e, 0x31, 0x3b, - 0x42, 0xe8, 0x0c, 0x45, 0xe8, 0x72, 0x16, 0x01, 0x77, 0x3e, 0x83, 0x6e, 0xc2, 0x63, 0x46, 0xa3, - 0xd9, 0x0f, 0x5c, 0x6d, 0x3c, 0x2d, 0xa8, 0x3d, 0x76, 0xb9, 0x2b, 0x16, 0xee, 0xf1, 0x74, 0xda, - 0x97, 0x51, 0xe9, 0xc3, 0x97, 0xf1, 0x3a, 0x3c, 0xe1, 0x76, 0xf6, 0xcc, 0x4e, 0xdc, 0xde, 0x8c, - 0x13, 0x66, 0x64, 0x95, 0xab, 0x3f, 0x22, 0x08, 0x3c, 0x31, 0xdf, 0x0b, 0x11, 0xf7, 0xa6, 0x81, - 0x3e, 0x01, 0xe5, 0x88, 0xb0, 0xaf, 0x12, 0x8b, 0x5c, 0x89, 0x01, 0x37, 0xb0, 0xda, 0x38, 0xe4, - 0x64, 0xb5, 0x5a, 0x14, 0x0d, 0x31, 0x56, 0x1c, 0xcf, 0x7f, 0x08, 0x26, 0x3b, 0xc6, 0xf3, 0x91, - 0xdc, 0x09, 0x0b, 0xf0, 0x58, 0xf7, 0x91, 0x73, 0x24, 0xa7, 0xc2, 0xdf, 0xcf, 0x84, 0x00, 0x1a, - 0x86, 0x5e, 0x1f, 0x0e, 0x2a, 0x07, 0x8a, 0x24, 0xd8, 0x11, 0x8a, 0xf4, 0xf2, 0x60, 0xbd, 0x77, - 0x29, 0xd8, 0xe1, 0x03, 0x9f, 0xed, 0xc2, 0x2f, 0x05, 0x3b, 0x98, 0xd2, 0x46, 0x5f, 0xb1, 0x52, - 0x86, 0x0a, 0x77, 0x6b, 0x7d, 0xec, 0x44, 0x2c, 0xdb, 0xbe, 0x6d, 0x17, 0xfb, 0x5f, 0x14, 0xe0, - 0xc2, 0x61, 0x44, 0xfa, 0xe8, 0xbe, 0x67, 0x60, 0x38, 0x66, 0xa7, 0x93, 0x42, 0x33, 0x8d, 0x52, - 0xad, 0xc4, 0xcf, 0x2b, 0x5f, 0xc7, 0x02, 0x84, 0x7c, 0x28, 0x36, 0x9d, 0x96, 0xf0, 0x76, 0x2c, - 0x0d, 0x1a, 0xf0, 0x4f, 0xff, 0x3b, 0xfe, 0x8a, 0xd3, 0xe2, 0x7b, 0x68, 0xa3, 0x01, 0x53, 0x36, - 0x28, 0x81, 0x92, 0x13, 0x45, 0x8e, 0x3c, 0x0a, 0xbb, 0x96, 0x0f, 0xbf, 0x39, 0x4a, 0xb2, 0x3a, - 0x79, 0xb0, 0x3f, 0x3d, 0x9e, 0x6a, 0xc2, 0x9c, 0x99, 0xfd, 0x85, 0x91, 0x54, 0xd0, 0x3b, 0x3b, - 0xdf, 0x8c, 0x61, 0x58, 0x38, 0x39, 0xac, 0xbc, 0xf3, 0x2c, 0x78, 0xd6, 0x12, 0xdb, 0xc7, 0x88, - 0xdc, 0x4f, 0xc1, 0x0a, 0x7d, 0xde, 0x62, 0x19, 0x96, 0x32, 0x11, 0x40, 0xec, 0x1e, 0x4e, 0x26, - 0xe1, 0xd3, 0xcc, 0xdb, 0x94, 0x8d, 0xd8, 0xe4, 0x4e, 0x97, 0xae, 0x16, 0xcf, 0x15, 0xca, 0xee, - 0x21, 0x64, 0x0e, 0xa6, 0x84, 0xa3, 0xdd, 0x2e, 0xe7, 0x98, 0x39, 0x64, 0xe9, 0xf5, 0x71, 0x72, - 0xf9, 0x0d, 0x0b, 0x26, 0xb9, 0xa5, 0xb8, 0xe0, 0xd5, 0xeb, 0x24, 0x22, 0x81, 0x4b, 0xa4, 0xad, - 0x3d, 0xe0, 0x49, 0xb9, 0xf4, 0x2c, 0x2d, 0x65, 0xc9, 0xeb, 0x35, 0xad, 0x03, 0x84, 0x3b, 0x85, - 0x41, 0x35, 0x18, 0xf2, 0x82, 0x7a, 0x28, 0x56, 0xf2, 0xea, 0x60, 0x42, 0x2d, 0x05, 0xf5, 0x50, - 0xcf, 0x66, 0xfa, 0x0f, 0x33, 0xea, 0x68, 0x19, 0xce, 0x46, 0xc2, 0x1b, 0x72, 0xc5, 0x8b, 0xe9, - 0x9e, 0x75, 0xd9, 0x6b, 0x7a, 0x09, 0x5b, 0x85, 0x8b, 0xd5, 0xa9, 0x83, 0xfd, 0xe9, 0xb3, 0xb8, - 0x0b, 0x1c, 0x77, 0x7d, 0x0a, 0xbd, 0x01, 0x23, 0x32, 0x25, 0xb4, 0x9c, 0xc7, 0xbe, 0xa5, 0x73, - 0xfc, 0xab, 0xc1, 0xb4, 0x2e, 0xb2, 0x3f, 0x25, 0x43, 0xfb, 0xcd, 0x51, 0xe8, 0x3c, 0xb6, 0x43, - 0x9f, 0x84, 0x4a, 0xa4, 0xd2, 0x54, 0xad, 0x3c, 0x42, 0xef, 0xe4, 0xf7, 0x15, 0x47, 0x86, 0xca, - 0x1e, 0xd0, 0x09, 0xa9, 0x9a, 0x23, 0xb5, 0xda, 0x63, 0x7d, 0xba, 0x97, 0xc3, 0xd8, 0x16, 0x5c, - 0xf5, 0xc9, 0xcd, 0x5e, 0xe0, 0x62, 0xc6, 0x03, 0x45, 0x30, 0xbc, 0x45, 0x1c, 0x3f, 0xd9, 0xca, - 0xc7, 0xc9, 0x7c, 0x85, 0xd1, 0xca, 0x26, 0x34, 0xf0, 0x56, 0x2c, 0x38, 0xa1, 0x5d, 0x18, 0xd9, - 0xe2, 0x03, 0x40, 0x18, 0xd2, 0x2b, 0x83, 0x76, 0x6e, 0x6a, 0x54, 0xe9, 0xcf, 0x2d, 0x1a, 0xb0, - 0x64, 0xc7, 0x82, 0x20, 0x8c, 0x13, 0x6b, 0x3e, 0x75, 0xf3, 0xcb, 0xe5, 0xe8, 0xff, 0xb8, 0xfa, - 0xe3, 0x30, 0x16, 0x11, 0x37, 0x0c, 0x5c, 0xcf, 0x27, 0xb5, 0x39, 0xe9, 0x40, 0x3e, 0x4a, 0x06, - 0xc0, 0x69, 0xba, 0x19, 0xc0, 0x06, 0x0d, 0x9c, 0xa2, 0x88, 0x3e, 0x67, 0xc1, 0x84, 0xca, 0x6d, - 0xa3, 0x1f, 0x84, 0x08, 0x87, 0xe5, 0x72, 0x4e, 0x99, 0x74, 0x8c, 0x66, 0x15, 0x1d, 0xec, 0x4f, - 0x4f, 0xa4, 0xdb, 0x70, 0x86, 0x2f, 0x7a, 0x15, 0x20, 0xdc, 0xe4, 0x91, 0x0e, 0x73, 0x89, 0xf0, - 0x5e, 0x1e, 0xe5, 0x55, 0x27, 0x78, 0x2a, 0x90, 0xa4, 0x80, 0x0d, 0x6a, 0xe8, 0x1a, 0x00, 0x9f, - 0x36, 0x1b, 0x7b, 0x2d, 0x69, 0x6d, 0xcb, 0x14, 0x0e, 0x58, 0x57, 0x90, 0x7b, 0xfb, 0xd3, 0x9d, - 0xde, 0x24, 0x76, 0xb0, 0x6e, 0x3c, 0x8e, 0x7e, 0x06, 0x46, 0xe2, 0x76, 0xb3, 0xe9, 0x28, 0xdf, - 0x66, 0x8e, 0xc9, 0x45, 0x9c, 0xae, 0xa1, 0x8a, 0x78, 0x03, 0x96, 0x1c, 0xd1, 0x6d, 0xaa, 0x54, - 0x63, 0xe1, 0xe6, 0x62, 0xb3, 0x88, 0xdb, 0x04, 0xa3, 0xec, 0x9d, 0x3e, 0x20, 0x03, 0x37, 0x70, - 0x17, 0x9c, 0x7b, 0xfb, 0xd3, 0x8f, 0xa5, 0xdb, 0x97, 0x43, 0x91, 0xee, 0xd3, 0x95, 0x26, 0xba, - 0x2a, 0x2b, 0x44, 0xd0, 0xd7, 0x96, 0x89, 0xcb, 0xcf, 0xe9, 0x0a, 0x11, 0xac, 0xb9, 0x77, 0x9f, - 0x99, 0x0f, 0xa3, 0x15, 0x38, 0xe3, 0x86, 0x41, 0x12, 0x85, 0xbe, 0xcf, 0xcb, 0x9e, 0xf0, 0x8d, - 0x0f, 0xf7, 0x7d, 0xbe, 0x53, 0x88, 0x7d, 0x66, 0xbe, 0x13, 0x05, 0x77, 0x7b, 0xce, 0x0e, 0xd2, + 0x36, 0xf4, 0x66, 0x8c, 0x59, 0xab, 0xfd, 0x7f, 0xab, 0x39, 0x2a, 0x4f, 0xad, 0x31, 0xe8, 0x22, + 0x00, 0xdd, 0xdb, 0xad, 0x45, 0xa4, 0xe9, 0xed, 0x8a, 0x35, 0x5e, 0x4d, 0xab, 0xeb, 0x0a, 0x82, + 0x0d, 0x2c, 0xf9, 0xcc, 0x7a, 0xb7, 0x49, 0x9f, 0x29, 0xf5, 0x3e, 0xc3, 0x21, 0xd8, 0xc0, 0x42, + 0x2f, 0xc2, 0xb0, 0xd7, 0x76, 0x5a, 0x2a, 0x4a, 0xee, 0x49, 0x3a, 0x9f, 0x96, 0x58, 0xcb, 0xbd, + 0xfd, 0xe9, 0x09, 0x25, 0x10, 0x6b, 0xc2, 0x02, 0x17, 0xfd, 0x86, 0x05, 0x63, 0x6e, 0xd8, 0x6e, + 0x87, 0x01, 0xdf, 0x11, 0x89, 0xed, 0xdd, 0xed, 0x93, 0x5a, 0x81, 0x67, 0xe6, 0x0d, 0x66, 0x7c, + 0x7f, 0xa7, 0x72, 0x66, 0x4c, 0x10, 0x4e, 0x49, 0x65, 0x4e, 0xbb, 0xca, 0x01, 0xd3, 0xee, 0xb7, + 0x2c, 0x98, 0xe4, 0xcf, 0x1a, 0x1b, 0x35, 0x91, 0x1e, 0x12, 0x9e, 0xf0, 0x6b, 0xf5, 0xec, 0x5d, + 0x95, 0x03, 0xad, 0x07, 0x8e, 0x7b, 0x85, 0x44, 0x8b, 0x30, 0xd9, 0x0c, 0x23, 0x97, 0x98, 0x1d, + 0x21, 0x74, 0x86, 0x22, 0x74, 0x39, 0x8b, 0x80, 0x7b, 0x9f, 0x41, 0x37, 0xe1, 0x31, 0xa3, 0xd1, + 0xec, 0x07, 0xae, 0x36, 0x9e, 0x16, 0xd4, 0x1e, 0xbb, 0x9c, 0x8b, 0x85, 0xfb, 0x3c, 0x9d, 0xf6, + 0x65, 0xd4, 0x06, 0xf0, 0x65, 0xbc, 0x0e, 0x4f, 0xb8, 0xbd, 0x3d, 0xb3, 0x13, 0x77, 0x37, 0xe3, + 0x84, 0x19, 0x59, 0xd5, 0xfa, 0x0f, 0x08, 0x02, 0x4f, 0xcc, 0xf7, 0x43, 0xc4, 0xfd, 0x69, 0xa0, + 0x8f, 0x42, 0x35, 0x22, 0xec, 0xab, 0xc4, 0x22, 0x57, 0xe2, 0x98, 0x1b, 0x58, 0x6d, 0x1c, 0x72, + 0xb2, 0x5a, 0x2d, 0x8a, 0x86, 0x18, 0x2b, 0x8e, 0xe7, 0xdf, 0x0f, 0x93, 0x3d, 0xe3, 0xf9, 0x50, + 0xee, 0x84, 0x05, 0x78, 0x2c, 0x7f, 0xe4, 0x1c, 0xca, 0xa9, 0xf0, 0x0f, 0x32, 0x21, 0x80, 0x86, + 0xa1, 0x37, 0x80, 0x83, 0xca, 0x81, 0x32, 0x09, 0x76, 0x84, 0x22, 0xbd, 0x7c, 0xbc, 0xde, 0xbb, + 0x14, 0xec, 0xf0, 0x81, 0xcf, 0x76, 0xe1, 0x97, 0x82, 0x1d, 0x4c, 0x69, 0xa3, 0x2f, 0x5a, 0x29, + 0x43, 0x85, 0xbb, 0xb5, 0x3e, 0x7c, 0x22, 0x96, 0xed, 0xc0, 0xb6, 0x8b, 0xfd, 0x2f, 0x4b, 0x70, + 0xe1, 0x20, 0x22, 0x03, 0x74, 0xdf, 0x33, 0x30, 0x1c, 0xb3, 0xd3, 0x49, 0xa1, 0x99, 0x46, 0xa9, + 0x56, 0xe2, 0xe7, 0x95, 0xaf, 0x63, 0x01, 0x42, 0x3e, 0x94, 0xdb, 0x4e, 0x47, 0x78, 0x3b, 0x96, + 0x8e, 0x1b, 0xf0, 0x4f, 0xff, 0x3b, 0xfe, 0x8a, 0xd3, 0xe1, 0x7b, 0x68, 0xa3, 0x01, 0x53, 0x36, + 0x28, 0x81, 0x8a, 0x13, 0x45, 0x8e, 0x3c, 0x0a, 0xbb, 0x56, 0x0c, 0xbf, 0x39, 0x4a, 0xb2, 0x3e, + 0x79, 0x77, 0x7f, 0x7a, 0x3c, 0xd5, 0x84, 0x39, 0x33, 0xfb, 0xb3, 0x23, 0xa9, 0xa0, 0x77, 0x76, + 0xbe, 0x19, 0xc3, 0xb0, 0x70, 0x72, 0x58, 0x45, 0xe7, 0x59, 0xf0, 0xac, 0x25, 0xb6, 0x8f, 0x11, + 0xb9, 0x9f, 0x82, 0x15, 0xfa, 0x8c, 0xc5, 0x32, 0x2c, 0x65, 0x22, 0x80, 0xd8, 0x3d, 0x9c, 0x4c, + 0xc2, 0xa7, 0x99, 0xb7, 0x29, 0x1b, 0xb1, 0xc9, 0x9d, 0x2e, 0x5d, 0x1d, 0x9e, 0x2b, 0x94, 0xdd, + 0x43, 0xc8, 0x1c, 0x4c, 0x09, 0x47, 0xbb, 0x39, 0xe7, 0x98, 0x05, 0x64, 0xe9, 0x0d, 0x70, 0x72, + 0xf9, 0x55, 0x0b, 0x26, 0xb9, 0xa5, 0xb8, 0xe0, 0x35, 0x9b, 0x24, 0x22, 0x81, 0x4b, 0xa4, 0xad, + 0x7d, 0xcc, 0x93, 0x72, 0xe9, 0x59, 0x5a, 0xca, 0x92, 0xd7, 0x6b, 0x5a, 0x0f, 0x08, 0xf7, 0x0a, + 0x83, 0x1a, 0x30, 0xe4, 0x05, 0xcd, 0x50, 0xac, 0xe4, 0xf5, 0xe3, 0x09, 0xb5, 0x14, 0x34, 0x43, + 0x3d, 0x9b, 0xe9, 0x3f, 0xcc, 0xa8, 0xa3, 0x65, 0x38, 0x1b, 0x09, 0x6f, 0xc8, 0x15, 0x2f, 0xa6, + 0x7b, 0xd6, 0x65, 0xaf, 0xed, 0x25, 0x6c, 0x15, 0x2e, 0xd7, 0xa7, 0xee, 0xee, 0x4f, 0x9f, 0xc5, + 0x39, 0x70, 0x9c, 0xfb, 0x14, 0x7a, 0x13, 0x46, 0x64, 0x4a, 0x68, 0xb5, 0x88, 0x7d, 0x4b, 0xef, + 0xf8, 0x57, 0x83, 0x69, 0x5d, 0x64, 0x7f, 0x4a, 0x86, 0xf6, 0x5b, 0xa3, 0xd0, 0x7b, 0x6c, 0x87, + 0x3e, 0x06, 0xb5, 0x48, 0xa5, 0xa9, 0x5a, 0x45, 0x84, 0xde, 0xc9, 0xef, 0x2b, 0x8e, 0x0c, 0x95, + 0x3d, 0xa0, 0x13, 0x52, 0x35, 0x47, 0x6a, 0xb5, 0xc7, 0xfa, 0x74, 0xaf, 0x80, 0xb1, 0x2d, 0xb8, + 0xea, 0x93, 0x9b, 0xbd, 0xc0, 0xc5, 0x8c, 0x07, 0x8a, 0x60, 0x78, 0x8b, 0x38, 0x7e, 0xb2, 0x55, + 0x8c, 0x93, 0xf9, 0x0a, 0xa3, 0x95, 0x4d, 0x68, 0xe0, 0xad, 0x58, 0x70, 0x42, 0xbb, 0x30, 0xb2, + 0xc5, 0x07, 0x80, 0x30, 0xa4, 0x57, 0x8e, 0xdb, 0xb9, 0xa9, 0x51, 0xa5, 0x3f, 0xb7, 0x68, 0xc0, + 0x92, 0x1d, 0x0b, 0x82, 0x30, 0x4e, 0xac, 0xf9, 0xd4, 0x2d, 0x2e, 0x97, 0x63, 0xf0, 0xe3, 0xea, + 0x8f, 0xc0, 0x58, 0x44, 0xdc, 0x30, 0x70, 0x3d, 0x9f, 0x34, 0xe6, 0xa4, 0x03, 0xf9, 0x30, 0x19, + 0x00, 0xa7, 0xe9, 0x66, 0x00, 0x1b, 0x34, 0x70, 0x8a, 0x22, 0xfa, 0xb4, 0x05, 0x13, 0x2a, 0xb7, + 0x8d, 0x7e, 0x10, 0x22, 0x1c, 0x96, 0xcb, 0x05, 0x65, 0xd2, 0x31, 0x9a, 0x75, 0x74, 0x77, 0x7f, + 0x7a, 0x22, 0xdd, 0x86, 0x33, 0x7c, 0xd1, 0xab, 0x00, 0xe1, 0x26, 0x8f, 0x74, 0x98, 0x4b, 0x84, + 0xf7, 0xf2, 0x30, 0xaf, 0x3a, 0xc1, 0x53, 0x81, 0x24, 0x05, 0x6c, 0x50, 0x43, 0xd7, 0x00, 0xf8, + 0xb4, 0xd9, 0xd8, 0xeb, 0x48, 0x6b, 0x5b, 0xa6, 0x70, 0xc0, 0xba, 0x82, 0xdc, 0xdb, 0x9f, 0xee, + 0xf5, 0x26, 0xb1, 0x83, 0x75, 0xe3, 0x71, 0xf4, 0xd3, 0x30, 0x12, 0x77, 0xdb, 0x6d, 0x47, 0xf9, + 0x36, 0x0b, 0x4c, 0x2e, 0xe2, 0x74, 0x0d, 0x55, 0xc4, 0x1b, 0xb0, 0xe4, 0x88, 0x6e, 0x53, 0xa5, + 0x1a, 0x0b, 0x37, 0x17, 0x9b, 0x45, 0xdc, 0x26, 0x18, 0x65, 0xef, 0xf4, 0x5e, 0x19, 0xb8, 0x81, + 0x73, 0x70, 0xee, 0xed, 0x4f, 0x3f, 0x96, 0x6e, 0x5f, 0x0e, 0x45, 0xba, 0x4f, 0x2e, 0x4d, 0x74, + 0x55, 0x56, 0x88, 0xa0, 0xaf, 0x2d, 0x13, 0x97, 0x9f, 0xd3, 0x15, 0x22, 0x58, 0x73, 0xff, 0x3e, + 0x33, 0x1f, 0x46, 0x2b, 0x70, 0xc6, 0x0d, 0x83, 0x24, 0x0a, 0x7d, 0x9f, 0x97, 0x3d, 0xe1, 0x1b, + 0x1f, 0xee, 0xfb, 0x7c, 0xa7, 0x10, 0xfb, 0xcc, 0x7c, 0x2f, 0x0a, 0xce, 0x7b, 0xce, 0x0e, 0xd2, 0x21, 0x60, 0xa2, 0x73, 0x5e, 0x84, 0x31, 0xb2, 0x9b, 0x90, 0x28, 0x70, 0xfc, 0x1b, 0x78, 0x59, - 0x7a, 0xfd, 0xd8, 0x1c, 0xb8, 0x64, 0xb4, 0xe3, 0x14, 0x16, 0xb2, 0xd5, 0x6e, 0xbf, 0xa0, 0x73, - 0xe2, 0xf8, 0x6e, 0x5f, 0xee, 0xed, 0xed, 0xff, 0x55, 0x48, 0x19, 0x64, 0x1b, 0x11, 0x21, 0x28, - 0x84, 0x52, 0x10, 0xd6, 0x94, 0xee, 0xbf, 0x9a, 0x8f, 0xee, 0xbf, 0x1e, 0xd6, 0x8c, 0x32, 0x12, - 0xf4, 0x5f, 0x8c, 0x39, 0x1f, 0x96, 0x67, 0x2f, 0x0b, 0x12, 0x30, 0x80, 0xd8, 0x68, 0xe4, 0xc9, - 0x59, 0xe5, 0xd9, 0xaf, 0x9a, 0x8c, 0x70, 0x9a, 0x2f, 0xda, 0x86, 0xd2, 0x56, 0x18, 0x27, 0x72, - 0xfb, 0x31, 0xe0, 0x4e, 0xe7, 0x4a, 0x18, 0x27, 0xcc, 0x8a, 0x50, 0xaf, 0x4d, 0x5b, 0x62, 0xcc, - 0x79, 0xd8, 0xff, 0xd1, 0x4a, 0xf9, 0x78, 0x6f, 0xb1, 0x70, 0xc8, 0x1d, 0x12, 0xd0, 0x69, 0x6d, - 0x86, 0xc2, 0xfc, 0xff, 0x99, 0x9c, 0xac, 0x77, 0xf5, 0x2a, 0xea, 0x73, 0x97, 0x52, 0x98, 0x61, - 0x24, 0x8c, 0xa8, 0x99, 0x4f, 0x5b, 0xe9, 0xec, 0xb8, 0x42, 0x1e, 0x1b, 0x0c, 0x33, 0xfb, 0xf3, - 0xd0, 0x44, 0x3b, 0xfb, 0x2b, 0x16, 0x8c, 0x54, 0x1d, 0x77, 0x3b, 0xac, 0xd7, 0xd1, 0xf3, 0x50, - 0xae, 0xb5, 0x23, 0x33, 0x51, 0x4f, 0xed, 0x9e, 0x17, 0x44, 0x3b, 0x56, 0x18, 0x74, 0x0c, 0xd7, - 0x1d, 0x57, 0xe6, 0x80, 0x16, 0xf9, 0x18, 0xbe, 0xcc, 0x5a, 0xb0, 0x80, 0xa0, 0xf7, 0xc3, 0x68, - 0xd3, 0xd9, 0x95, 0x0f, 0x67, 0x1d, 0xcc, 0x2b, 0x1a, 0x84, 0x4d, 0x3c, 0xfb, 0x9f, 0x5a, 0x30, - 0x55, 0x75, 0x62, 0xcf, 0x9d, 0x6b, 0x27, 0x5b, 0x55, 0x2f, 0xd9, 0x6c, 0xbb, 0xdb, 0x24, 0xe1, - 0x89, 0xbf, 0x54, 0xca, 0x76, 0x4c, 0xa7, 0x92, 0xda, 0xd7, 0x29, 0x29, 0x6f, 0x88, 0x76, 0xac, - 0x30, 0xd0, 0x1b, 0x30, 0xda, 0x72, 0xe2, 0xf8, 0x6e, 0x18, 0xd5, 0x30, 0xa9, 0xe7, 0x93, 0x76, - 0xbf, 0x4e, 0xdc, 0x88, 0x24, 0x98, 0xd4, 0xc5, 0x21, 0xa8, 0xa6, 0x8f, 0x4d, 0x66, 0xf6, 0x5f, - 0xb5, 0x60, 0x8c, 0x9d, 0xbe, 0x2c, 0x90, 0xc4, 0xf1, 0xfc, 0x8e, 0xda, 0x31, 0x56, 0x9f, 0xb5, - 0x63, 0x2e, 0xc0, 0xd0, 0x56, 0xd8, 0x24, 0xd9, 0x93, 0xc3, 0x2b, 0x21, 0xdd, 0xc5, 0x52, 0x08, - 0x7a, 0x81, 0xf6, 0xb3, 0x17, 0x24, 0x0e, 0x1d, 0x71, 0xd2, 0x85, 0x78, 0x8a, 0xf7, 0xb1, 0x6a, - 0xc6, 0x26, 0x8e, 0xfd, 0x7b, 0x15, 0x18, 0x11, 0xc7, 0xcb, 0x7d, 0xe7, 0x5a, 0xcb, 0xed, 0x74, - 0xa1, 0xe7, 0x76, 0x3a, 0x86, 0x61, 0x97, 0x55, 0xa6, 0x12, 0x56, 0xdb, 0xb5, 0x5c, 0xe2, 0x11, - 0x78, 0xb1, 0x2b, 0x2d, 0x16, 0xff, 0x8f, 0x05, 0x2b, 0xf4, 0x65, 0x0b, 0x4e, 0xb9, 0x61, 0x10, - 0x10, 0x57, 0x9b, 0x14, 0x43, 0x79, 0x1c, 0x3b, 0xcf, 0xa7, 0x89, 0x6a, 0xd7, 0x7f, 0x06, 0x80, - 0xb3, 0xec, 0xd1, 0xcb, 0x30, 0xce, 0xfb, 0xec, 0x66, 0xca, 0xef, 0xa9, 0x4b, 0x8a, 0x98, 0x40, - 0x9c, 0xc6, 0x45, 0x33, 0xdc, 0x7f, 0x2c, 0x8a, 0x77, 0x0c, 0xeb, 0x73, 0x24, 0xa3, 0x6c, 0x87, - 0x81, 0x81, 0x22, 0x40, 0x11, 0xa9, 0x47, 0x24, 0xde, 0x12, 0xc7, 0xef, 0xcc, 0x9c, 0x19, 0x39, - 0x5e, 0xee, 0x26, 0xee, 0xa0, 0x84, 0xbb, 0x50, 0x47, 0xdb, 0x62, 0x3f, 0x57, 0xce, 0x43, 0x65, - 0x89, 0xcf, 0xdc, 0x73, 0x5b, 0x37, 0x0d, 0xa5, 0x78, 0xcb, 0x89, 0x6a, 0xcc, 0x8c, 0x2a, 0xf2, + 0x7a, 0xfd, 0xd8, 0x1c, 0xb8, 0x64, 0xb4, 0xe3, 0x14, 0x16, 0xb2, 0xd5, 0x6e, 0xbf, 0xa4, 0x73, + 0xe2, 0xf8, 0x6e, 0x5f, 0xee, 0xed, 0xed, 0xff, 0x55, 0x4a, 0x19, 0x64, 0x1b, 0x11, 0x21, 0x28, + 0x84, 0x4a, 0x10, 0x36, 0x94, 0xee, 0xbf, 0x5a, 0x8c, 0xee, 0xbf, 0x1e, 0x36, 0x8c, 0x32, 0x12, + 0xf4, 0x5f, 0x8c, 0x39, 0x1f, 0x96, 0x67, 0x2f, 0x0b, 0x12, 0x30, 0x80, 0xd8, 0x68, 0x14, 0xc9, + 0x59, 0xe5, 0xd9, 0xaf, 0x9a, 0x8c, 0x70, 0x9a, 0x2f, 0xda, 0x86, 0xca, 0x56, 0x18, 0x27, 0x72, + 0xfb, 0x71, 0xcc, 0x9d, 0xce, 0x95, 0x30, 0x4e, 0x98, 0x15, 0xa1, 0x5e, 0x9b, 0xb6, 0xc4, 0x98, + 0xf3, 0xb0, 0xff, 0xa3, 0x95, 0xf2, 0xf1, 0xde, 0x62, 0xe1, 0x90, 0x3b, 0x24, 0xa0, 0xd3, 0xda, + 0x0c, 0x85, 0xf9, 0xf3, 0x99, 0x9c, 0xac, 0x1f, 0xea, 0x57, 0xd4, 0xe7, 0x0e, 0xa5, 0x30, 0xc3, + 0x48, 0x18, 0x51, 0x33, 0x9f, 0xb0, 0xd2, 0xd9, 0x71, 0xa5, 0x22, 0x36, 0x18, 0x66, 0xf6, 0xe7, + 0x81, 0x89, 0x76, 0xf6, 0x17, 0x2d, 0x18, 0xa9, 0x3b, 0xee, 0x76, 0xd8, 0x6c, 0xa2, 0xe7, 0xa1, + 0xda, 0xe8, 0x46, 0x66, 0xa2, 0x9e, 0xda, 0x3d, 0x2f, 0x88, 0x76, 0xac, 0x30, 0xe8, 0x18, 0x6e, + 0x3a, 0xae, 0xcc, 0x01, 0x2d, 0xf3, 0x31, 0x7c, 0x99, 0xb5, 0x60, 0x01, 0x41, 0xef, 0x81, 0xd1, + 0xb6, 0xb3, 0x2b, 0x1f, 0xce, 0x3a, 0x98, 0x57, 0x34, 0x08, 0x9b, 0x78, 0xf6, 0x3f, 0xb3, 0x60, + 0xaa, 0xee, 0xc4, 0x9e, 0x3b, 0xd7, 0x4d, 0xb6, 0xea, 0x5e, 0xb2, 0xd9, 0x75, 0xb7, 0x49, 0xc2, + 0x13, 0x7f, 0xa9, 0x94, 0xdd, 0x98, 0x4e, 0x25, 0xb5, 0xaf, 0x53, 0x52, 0xde, 0x10, 0xed, 0x58, + 0x61, 0xa0, 0x37, 0x61, 0xb4, 0xe3, 0xc4, 0xf1, 0x9d, 0x30, 0x6a, 0x60, 0xd2, 0x2c, 0x26, 0xed, + 0x7e, 0x9d, 0xb8, 0x11, 0x49, 0x30, 0x69, 0x8a, 0x43, 0x50, 0x4d, 0x1f, 0x9b, 0xcc, 0xec, 0xbf, + 0x6a, 0xc1, 0x18, 0x3b, 0x7d, 0x59, 0x20, 0x89, 0xe3, 0xf9, 0x3d, 0xb5, 0x63, 0xac, 0x01, 0x6b, + 0xc7, 0x5c, 0x80, 0xa1, 0xad, 0xb0, 0x4d, 0xb2, 0x27, 0x87, 0x57, 0x42, 0xba, 0x8b, 0xa5, 0x10, + 0xf4, 0x02, 0xed, 0x67, 0x2f, 0x48, 0x1c, 0x3a, 0xe2, 0xa4, 0x0b, 0xf1, 0x14, 0xef, 0x63, 0xd5, + 0x8c, 0x4d, 0x1c, 0xfb, 0x77, 0x6b, 0x30, 0x22, 0x8e, 0x97, 0x07, 0xce, 0xb5, 0x96, 0xdb, 0xe9, + 0x52, 0xdf, 0xed, 0x74, 0x0c, 0xc3, 0x2e, 0xab, 0x4c, 0x25, 0xac, 0xb6, 0x6b, 0x85, 0xc4, 0x23, + 0xf0, 0x62, 0x57, 0x5a, 0x2c, 0xfe, 0x1f, 0x0b, 0x56, 0xe8, 0x0b, 0x16, 0x9c, 0x72, 0xc3, 0x20, + 0x20, 0xae, 0x36, 0x29, 0x86, 0x8a, 0x38, 0x76, 0x9e, 0x4f, 0x13, 0xd5, 0xae, 0xff, 0x0c, 0x00, + 0x67, 0xd9, 0xa3, 0x97, 0x61, 0x9c, 0xf7, 0xd9, 0xcd, 0x94, 0xdf, 0x53, 0x97, 0x14, 0x31, 0x81, + 0x38, 0x8d, 0x8b, 0x66, 0xb8, 0xff, 0x58, 0x14, 0xef, 0x18, 0xd6, 0xe7, 0x48, 0x46, 0xd9, 0x0e, + 0x03, 0x03, 0x45, 0x80, 0x22, 0xd2, 0x8c, 0x48, 0xbc, 0x25, 0x8e, 0xdf, 0x99, 0x39, 0x33, 0x72, + 0xb4, 0xdc, 0x4d, 0xdc, 0x43, 0x09, 0xe7, 0x50, 0x47, 0xdb, 0x62, 0x3f, 0x57, 0x2d, 0x42, 0x65, + 0x89, 0xcf, 0xdc, 0x77, 0x5b, 0x37, 0x0d, 0x95, 0x78, 0xcb, 0x89, 0x1a, 0xcc, 0x8c, 0x2a, 0xf3, 0x7c, 0x81, 0x75, 0xda, 0x80, 0x79, 0x3b, 0x5a, 0x80, 0xd3, 0x99, 0x82, 0x28, 0xb1, 0xf0, 0x4f, - 0xaa, 0x20, 0xf7, 0x4c, 0x29, 0x95, 0x18, 0x77, 0x3c, 0x61, 0xee, 0xf5, 0x47, 0x0f, 0xd9, 0xeb, - 0xef, 0xa9, 0x20, 0xaf, 0x31, 0xb6, 0x1c, 0xbd, 0x92, 0x4b, 0x07, 0xf4, 0x15, 0xd1, 0xf5, 0xc5, - 0x4c, 0x44, 0xd7, 0x38, 0x13, 0xe0, 0x66, 0x3e, 0x02, 0x1c, 0x3d, 0x7c, 0xeb, 0x61, 0x86, 0x63, - 0xfd, 0x0f, 0x0b, 0xe4, 0x77, 0x9d, 0x77, 0xdc, 0x2d, 0x42, 0x87, 0x0c, 0xfa, 0x20, 0x4c, 0xa8, - 0x1d, 0xeb, 0x7c, 0xd8, 0x0e, 0x78, 0x24, 0x56, 0x51, 0x9f, 0x11, 0xe2, 0x14, 0x14, 0x67, 0xb0, - 0xd1, 0x2c, 0x54, 0x68, 0x3f, 0xf1, 0x47, 0xf9, 0xd2, 0xa6, 0x76, 0xc5, 0x73, 0x6b, 0x4b, 0xe2, - 0x29, 0x8d, 0x83, 0x42, 0x98, 0xf4, 0x9d, 0x38, 0x61, 0x12, 0xd0, 0x0d, 0xec, 0x31, 0x33, 0xa7, - 0x59, 0x24, 0xf5, 0x72, 0x96, 0x10, 0xee, 0xa4, 0x6d, 0x7f, 0x77, 0x08, 0xc6, 0x53, 0x9a, 0xf1, - 0x88, 0x6b, 0xe2, 0xf3, 0x50, 0x96, 0xcb, 0x54, 0xb6, 0x7e, 0x83, 0x5a, 0xcb, 0x14, 0x06, 0x5d, - 0xb4, 0x36, 0x89, 0x13, 0x91, 0x88, 0x95, 0x9a, 0xc9, 0xae, 0xe1, 0x55, 0x0d, 0xc2, 0x26, 0x1e, - 0x53, 0xca, 0x89, 0x1f, 0xcf, 0xfb, 0x1e, 0x09, 0x12, 0x2e, 0x66, 0x3e, 0x4a, 0x79, 0x63, 0x79, - 0xdd, 0x24, 0xaa, 0x95, 0x72, 0x06, 0x80, 0xb3, 0xec, 0xd1, 0x2f, 0x58, 0x30, 0xee, 0xdc, 0x8d, - 0x75, 0xf9, 0x44, 0x11, 0xbb, 0x35, 0xe0, 0x22, 0x95, 0xaa, 0xc8, 0xc8, 0x3d, 0xac, 0xa9, 0x26, - 0x9c, 0x66, 0x8a, 0xbe, 0x66, 0x01, 0x22, 0xbb, 0xc4, 0x95, 0xd1, 0x65, 0x42, 0x96, 0xe1, 0x3c, - 0x36, 0x76, 0x97, 0x3a, 0xe8, 0x72, 0xad, 0xde, 0xd9, 0x8e, 0xbb, 0xc8, 0x60, 0xff, 0xa3, 0xa2, - 0x9a, 0x50, 0x3a, 0xa0, 0xd1, 0x31, 0x02, 0xab, 0xac, 0xe3, 0x07, 0x56, 0xe9, 0x03, 0xea, 0xce, - 0x84, 0xac, 0x54, 0x22, 0x4a, 0xe1, 0x21, 0x25, 0xa2, 0xfc, 0x9c, 0x95, 0xaa, 0x54, 0x32, 0x7a, - 0xf1, 0xd5, 0x7c, 0x83, 0x29, 0x67, 0x78, 0x78, 0x44, 0x46, 0xbb, 0xa7, 0x63, 0x26, 0xa8, 0x36, - 0x35, 0xd0, 0x8e, 0xa4, 0x0d, 0xff, 0x6d, 0x11, 0x46, 0x8d, 0x95, 0xb4, 0xab, 0x59, 0x64, 0x3d, - 0x62, 0x66, 0x51, 0xe1, 0x08, 0x66, 0xd1, 0xcf, 0x42, 0xc5, 0x95, 0x5a, 0x3e, 0x9f, 0x5a, 0x9d, - 0xd9, 0xb5, 0x43, 0x2b, 0x7a, 0xd5, 0x84, 0x35, 0x4f, 0xb4, 0x98, 0xca, 0xe4, 0x10, 0x2b, 0xc4, - 0x10, 0x5b, 0x21, 0xba, 0xa5, 0x5a, 0x88, 0x95, 0xa2, 0xf3, 0x19, 0x56, 0xd0, 0xa6, 0xe5, 0x89, - 0xf7, 0x92, 0x21, 0xcf, 0xbc, 0xa0, 0xcd, 0xda, 0x92, 0x6c, 0xc6, 0x26, 0x8e, 0xfd, 0x5d, 0x4b, - 0x7d, 0xdc, 0x07, 0x90, 0xde, 0x7d, 0x3b, 0x9d, 0xde, 0x7d, 0x29, 0x97, 0x6e, 0xee, 0x91, 0xd7, - 0x7d, 0x1d, 0x46, 0xe6, 0xc3, 0x66, 0xd3, 0x09, 0x6a, 0xe8, 0x47, 0x61, 0xc4, 0xe5, 0x3f, 0x85, - 0x1f, 0x85, 0x9d, 0xc6, 0x09, 0x28, 0x96, 0x30, 0xf4, 0x24, 0x0c, 0x39, 0x51, 0x43, 0xfa, 0x4e, - 0x58, 0x40, 0xc7, 0x5c, 0xd4, 0x88, 0x31, 0x6b, 0xb5, 0xdf, 0x2c, 0x02, 0xcc, 0x87, 0xcd, 0x96, - 0x13, 0x91, 0xda, 0x46, 0xc8, 0x6a, 0x85, 0x9d, 0xe8, 0x19, 0x96, 0xde, 0x2c, 0x3d, 0xca, 0xe7, - 0x58, 0xc6, 0x59, 0x46, 0xf1, 0x41, 0x9f, 0x65, 0x7c, 0xc1, 0x02, 0x44, 0xbf, 0x48, 0x18, 0x90, - 0x20, 0xd1, 0x87, 0xb3, 0xb3, 0x50, 0x71, 0x65, 0xab, 0xb0, 0x5a, 0xf4, 0xfc, 0x93, 0x00, 0xac, - 0x71, 0xfa, 0xd8, 0x7e, 0x3e, 0x23, 0x95, 0x63, 0x31, 0x1d, 0x03, 0xc9, 0x54, 0xaa, 0xd0, 0x95, - 0xf6, 0xef, 0x17, 0xe0, 0x31, 0xbe, 0xde, 0xad, 0x38, 0x81, 0xd3, 0x20, 0x4d, 0x2a, 0x55, 0xbf, - 0xc7, 0xed, 0x2e, 0xdd, 0xf7, 0x78, 0x32, 0xa6, 0x71, 0xd0, 0x89, 0xc1, 0x07, 0x34, 0x1f, 0xc2, - 0x4b, 0x81, 0x97, 0x60, 0x46, 0x1c, 0xc5, 0x50, 0x96, 0x95, 0x9f, 0x85, 0xa2, 0xcb, 0x89, 0x91, - 0x9a, 0xf3, 0x62, 0x51, 0x22, 0x58, 0x31, 0xa2, 0x56, 0xa1, 0x1f, 0xba, 0xdb, 0x98, 0xb4, 0x42, - 0xa6, 0xd4, 0x8c, 0x90, 0xb2, 0x65, 0xd1, 0x8e, 0x15, 0x86, 0xfd, 0xfb, 0x16, 0x64, 0xd5, 0xbd, - 0x51, 0x15, 0xc9, 0xba, 0x6f, 0x55, 0xa4, 0x23, 0x94, 0x25, 0xfa, 0x69, 0x18, 0x75, 0x12, 0xba, - 0x42, 0xf3, 0x3d, 0x6d, 0xf1, 0x78, 0x2e, 0xfa, 0x95, 0xb0, 0xe6, 0xd5, 0x3d, 0xb6, 0x97, 0x35, - 0xc9, 0xd9, 0xff, 0x6d, 0x08, 0x26, 0x3b, 0x22, 0xef, 0xd1, 0x4b, 0x30, 0xe6, 0x8a, 0xe1, 0xd1, - 0xc2, 0xa4, 0x2e, 0x5e, 0xc6, 0x88, 0x73, 0xd2, 0x30, 0x9c, 0xc2, 0xec, 0x63, 0x80, 0x2e, 0xc1, - 0x99, 0x88, 0xee, 0xa2, 0xdb, 0x64, 0xae, 0x9e, 0x90, 0x68, 0x9d, 0xb8, 0x61, 0x50, 0xe3, 0xb5, - 0xbb, 0x8a, 0xd5, 0xc7, 0x0f, 0xf6, 0xa7, 0xcf, 0xe0, 0x4e, 0x30, 0xee, 0xf6, 0x0c, 0x6a, 0xc1, - 0xb8, 0x6f, 0x1a, 0x58, 0xc2, 0xba, 0x3e, 0x96, 0x6d, 0xa6, 0x16, 0xe0, 0x54, 0x33, 0x4e, 0x33, - 0x48, 0x5b, 0x69, 0xa5, 0x87, 0x64, 0xa5, 0xfd, 0xbc, 0xb6, 0xd2, 0xf8, 0x59, 0xf2, 0x47, 0x73, - 0xce, 0xbc, 0x38, 0x69, 0x33, 0xed, 0x15, 0x28, 0xcb, 0x38, 0x9b, 0xbe, 0xe2, 0x53, 0x4c, 0x3a, - 0x3d, 0x34, 0xda, 0xbd, 0x02, 0x74, 0xb1, 0xf0, 0xe9, 0x3c, 0xd3, 0xcb, 0x69, 0x6a, 0x9e, 0x1d, - 0x6d, 0x49, 0x45, 0xbb, 0x3c, 0xc6, 0x88, 0x2f, 0x1c, 0x1f, 0xc9, 0x7b, 0x87, 0xa2, 0xc3, 0x8e, - 0x54, 0x40, 0xba, 0x0a, 0x3d, 0xba, 0x08, 0xa0, 0xad, 0x20, 0x11, 0x6e, 0xac, 0x8e, 0x30, 0xb5, - 0xb1, 0x84, 0x0d, 0x2c, 0xba, 0x61, 0xf5, 0x82, 0x38, 0x71, 0x7c, 0xff, 0x8a, 0x17, 0x24, 0xc2, - 0xf3, 0xa6, 0x56, 0xc8, 0x25, 0x0d, 0xc2, 0x26, 0xde, 0xf9, 0x0f, 0x18, 0xdf, 0xe5, 0x28, 0xdf, - 0x73, 0x0b, 0x9e, 0x58, 0xf4, 0x12, 0x15, 0x24, 0xaf, 0xc6, 0x11, 0x35, 0x72, 0x54, 0xd2, 0x87, - 0xd5, 0x33, 0xe9, 0xc3, 0x08, 0x52, 0x2f, 0xa4, 0x63, 0xea, 0xb3, 0x41, 0xea, 0xf6, 0x4b, 0x70, - 0x76, 0xd1, 0x4b, 0x2e, 0x7b, 0x3e, 0x39, 0x22, 0x13, 0xfb, 0x77, 0x87, 0x61, 0xcc, 0x4c, 0xb3, - 0x3a, 0x4a, 0xde, 0xca, 0x97, 0xa8, 0x1d, 0x23, 0xde, 0xce, 0x53, 0x07, 0x40, 0xb7, 0x06, 0xce, - 0xf9, 0xea, 0xde, 0x63, 0x86, 0x29, 0xa3, 0x79, 0x62, 0x53, 0x00, 0x74, 0x17, 0x4a, 0x75, 0x16, - 0x44, 0x5d, 0xcc, 0xe3, 0x94, 0xbc, 0x5b, 0x8f, 0xea, 0x69, 0xc6, 0xc3, 0xb0, 0x39, 0x3f, 0xba, - 0x42, 0x46, 0xe9, 0xcc, 0x1c, 0x23, 0xba, 0x50, 0xe4, 0xe4, 0x28, 0x8c, 0x5e, 0xaa, 0xbe, 0x74, - 0x0c, 0x55, 0x9f, 0x52, 0xbc, 0xc3, 0x0f, 0x49, 0xf1, 0xb2, 0x80, 0xf8, 0x64, 0x8b, 0xd9, 0x6f, - 0x22, 0x1c, 0x7a, 0x84, 0x75, 0x82, 0x11, 0x10, 0x9f, 0x02, 0xe3, 0x2c, 0x3e, 0xfa, 0x94, 0x52, - 0xdd, 0xe5, 0x3c, 0x9c, 0x96, 0xe6, 0x88, 0x3e, 0x69, 0xad, 0xfd, 0x85, 0x02, 0x4c, 0x2c, 0x06, - 0xed, 0xb5, 0xc5, 0xb5, 0xf6, 0xa6, 0xef, 0xb9, 0xd7, 0xc8, 0x1e, 0x55, 0xcd, 0xdb, 0x64, 0x6f, - 0x69, 0x41, 0xcc, 0x20, 0x35, 0x66, 0xae, 0xd1, 0x46, 0xcc, 0x61, 0x54, 0x19, 0xd5, 0xbd, 0xa0, - 0x41, 0xa2, 0x56, 0xe4, 0x09, 0x7f, 0xa2, 0xa1, 0x8c, 0x2e, 0x6b, 0x10, 0x36, 0xf1, 0x28, 0xed, - 0xf0, 0x6e, 0x40, 0xa2, 0xac, 0x21, 0xbb, 0x4a, 0x1b, 0x31, 0x87, 0x51, 0xa4, 0x24, 0x6a, 0xc7, - 0x89, 0x18, 0x8c, 0x0a, 0x69, 0x83, 0x36, 0x62, 0x0e, 0xa3, 0x33, 0x3d, 0x6e, 0x6f, 0xb2, 0x20, - 0x84, 0x4c, 0xec, 0xf5, 0x3a, 0x6f, 0xc6, 0x12, 0x4e, 0x51, 0xb7, 0xc9, 0xde, 0x02, 0xdd, 0x52, - 0x66, 0xb2, 0x23, 0xae, 0xf1, 0x66, 0x2c, 0xe1, 0xac, 0xe8, 0x58, 0xba, 0x3b, 0x7e, 0xe0, 0x8a, - 0x8e, 0xa5, 0xc5, 0xef, 0xb1, 0x39, 0xfd, 0x75, 0x0b, 0xc6, 0xcc, 0xd0, 0x21, 0xd4, 0xc8, 0xd8, - 0xb8, 0xab, 0x1d, 0x35, 0x2b, 0x7f, 0xb2, 0xdb, 0x05, 0x3d, 0x0d, 0x2f, 0x09, 0x5b, 0xf1, 0x7b, - 0x49, 0xd0, 0xf0, 0x02, 0xc2, 0x4e, 0x84, 0x79, 0xc8, 0x51, 0x2a, 0x2e, 0x69, 0x3e, 0xac, 0x91, - 0x63, 0x18, 0xc9, 0xf6, 0x2d, 0x98, 0xec, 0x48, 0x89, 0xe9, 0xc3, 0xb4, 0x38, 0x34, 0x21, 0xd1, - 0xc6, 0x30, 0x4a, 0x09, 0xcb, 0x0a, 0x1e, 0xf3, 0x30, 0xc9, 0x27, 0x12, 0xe5, 0xb4, 0xee, 0x6e, - 0x91, 0xa6, 0x4a, 0x73, 0x62, 0xce, 0xeb, 0x9b, 0x59, 0x20, 0xee, 0xc4, 0xb7, 0xbf, 0x68, 0xc1, - 0x78, 0x2a, 0x4b, 0x29, 0x27, 0x23, 0x88, 0xcd, 0xb4, 0x90, 0x45, 0xb2, 0xb1, 0x70, 0xde, 0x22, - 0x5b, 0x4c, 0xf5, 0x4c, 0xd3, 0x20, 0x6c, 0xe2, 0xd9, 0x5f, 0x29, 0x40, 0x59, 0x46, 0x03, 0xf4, - 0x21, 0xca, 0xe7, 0x2d, 0x18, 0x57, 0x07, 0x06, 0xcc, 0x13, 0x55, 0xc8, 0x23, 0x6e, 0x9d, 0x4a, - 0xa0, 0x42, 0x2d, 0x83, 0x7a, 0xa8, 0x2d, 0x72, 0x6c, 0x32, 0xc3, 0x69, 0xde, 0xe8, 0x26, 0x40, - 0xbc, 0x17, 0x27, 0xa4, 0x69, 0xf8, 0xc4, 0x6c, 0x63, 0xc6, 0xcd, 0xb8, 0x61, 0x44, 0xe8, 0xfc, - 0xba, 0x1e, 0xd6, 0xc8, 0xba, 0xc2, 0xd4, 0x26, 0x94, 0x6e, 0xc3, 0x06, 0x25, 0xfb, 0xef, 0x16, - 0xe0, 0x74, 0x56, 0x24, 0xf4, 0x51, 0x18, 0x93, 0xdc, 0x8d, 0xcb, 0x86, 0x64, 0x08, 0xc4, 0x18, - 0x36, 0x60, 0xf7, 0xf6, 0xa7, 0xa7, 0x3b, 0x2f, 0x7b, 0x9a, 0x31, 0x51, 0x70, 0x8a, 0x18, 0x3f, - 0xb5, 0x11, 0xc7, 0x8b, 0xd5, 0xbd, 0xb9, 0x56, 0x4b, 0x1c, 0xbd, 0x18, 0xa7, 0x36, 0x26, 0x14, - 0x67, 0xb0, 0xd1, 0x1a, 0x9c, 0x35, 0x5a, 0xae, 0x13, 0xaf, 0xb1, 0xb5, 0x19, 0x46, 0x72, 0x67, - 0xf5, 0xa4, 0x0e, 0x52, 0xea, 0xc4, 0xc1, 0x5d, 0x9f, 0xa4, 0xab, 0xbd, 0xeb, 0xb4, 0x1c, 0xd7, - 0x4b, 0xf6, 0x84, 0x93, 0x4f, 0xe9, 0xa6, 0x79, 0xd1, 0x8e, 0x15, 0x86, 0xbd, 0x02, 0x43, 0x7d, - 0x8e, 0xa0, 0xbe, 0x2c, 0xfa, 0x57, 0xa0, 0x4c, 0xc9, 0x49, 0xf3, 0x2e, 0x0f, 0x92, 0x21, 0x94, - 0xe5, 0x7d, 0x01, 0xc8, 0x86, 0xa2, 0xe7, 0xc8, 0x83, 0x31, 0xf5, 0x5a, 0x4b, 0x71, 0xdc, 0x66, - 0x9b, 0x64, 0x0a, 0x44, 0xcf, 0x40, 0x91, 0xec, 0xb6, 0xb2, 0x27, 0x60, 0x97, 0x76, 0x5b, 0x5e, - 0x44, 0x62, 0x8a, 0x44, 0x76, 0x5b, 0xe8, 0x3c, 0x14, 0xbc, 0x9a, 0x58, 0xa4, 0x40, 0xe0, 0x14, - 0x96, 0x16, 0x70, 0xc1, 0xab, 0xd9, 0xbb, 0x50, 0x51, 0x17, 0x14, 0xa0, 0x6d, 0xa9, 0xbb, 0xad, - 0x3c, 0xc2, 0x77, 0x24, 0xdd, 0x1e, 0x5a, 0xbb, 0x0d, 0xa0, 0x73, 0xc2, 0xf2, 0xd2, 0x2f, 0x17, - 0x60, 0xc8, 0x0d, 0x45, 0x2a, 0x69, 0x59, 0x93, 0x61, 0x4a, 0x9b, 0x41, 0xec, 0x5b, 0x30, 0x71, - 0x2d, 0x08, 0xef, 0xb2, 0x0a, 0xcc, 0xac, 0x72, 0x12, 0x25, 0x5c, 0xa7, 0x3f, 0xb2, 0x26, 0x02, - 0x83, 0x62, 0x0e, 0x53, 0xd5, 0x75, 0x0a, 0xbd, 0xaa, 0xeb, 0xd8, 0x9f, 0xb6, 0xe0, 0xb4, 0xca, - 0x6c, 0x91, 0xda, 0xf8, 0x25, 0x18, 0xdb, 0x6c, 0x7b, 0x7e, 0x4d, 0xd6, 0x63, 0xca, 0xb8, 0x29, - 0xaa, 0x06, 0x0c, 0xa7, 0x30, 0xe9, 0xa6, 0x6a, 0xd3, 0x0b, 0x9c, 0x68, 0x6f, 0x4d, 0xab, 0x7f, - 0xa5, 0x11, 0xaa, 0x0a, 0x82, 0x0d, 0x2c, 0xfb, 0xf3, 0xa6, 0x08, 0x22, 0x97, 0xa6, 0x8f, 0x9e, - 0xbd, 0x01, 0x25, 0x57, 0x1d, 0xa4, 0x1e, 0xab, 0x66, 0x9c, 0x4a, 0x63, 0x66, 0xce, 0x74, 0x4e, - 0xcd, 0xfe, 0xc7, 0x05, 0x18, 0x4f, 0x95, 0xc6, 0x40, 0x3e, 0x94, 0x89, 0xcf, 0x5c, 0x79, 0x72, - 0x88, 0x0d, 0x5a, 0x95, 0x50, 0x4d, 0x8b, 0x4b, 0x82, 0x2e, 0x56, 0x1c, 0x1e, 0x8d, 0xf3, 0xaa, - 0x97, 0x60, 0x4c, 0x0a, 0xf4, 0x11, 0xa7, 0xe9, 0x8b, 0x59, 0xa8, 0x06, 0xc0, 0x25, 0x03, 0x86, - 0x53, 0x98, 0xf6, 0x1f, 0x14, 0x61, 0x8a, 0xfb, 0x3e, 0x6b, 0x2a, 0xa4, 0x64, 0x45, 0x5a, 0x59, - 0x7f, 0x49, 0x17, 0xb0, 0xe1, 0x1d, 0xb9, 0x39, 0x68, 0x11, 0xe0, 0xee, 0x8c, 0xfa, 0x0a, 0x76, - 0xf8, 0xd5, 0x4c, 0xb0, 0x03, 0x5f, 0x6c, 0x1b, 0x27, 0x24, 0xd1, 0x0f, 0x56, 0xf4, 0xc3, 0xdf, - 0x2a, 0xc0, 0xa9, 0x4c, 0x85, 0x65, 0xf4, 0x66, 0xba, 0xba, 0xa0, 0x95, 0x87, 0x87, 0xec, 0xbe, - 0x45, 0x77, 0x8f, 0x56, 0x63, 0xf0, 0x21, 0x4d, 0x15, 0xfb, 0x0f, 0x0b, 0x30, 0x91, 0x2e, 0x0d, - 0xfd, 0x08, 0xf6, 0xd4, 0x7b, 0xa0, 0xc2, 0xaa, 0x9f, 0xb2, 0xeb, 0xac, 0xb8, 0x23, 0x8e, 0x57, - 0xcc, 0x94, 0x8d, 0x58, 0xc3, 0x1f, 0x89, 0xd2, 0x8d, 0xf6, 0xdf, 0xb6, 0xe0, 0x1c, 0x7f, 0xcb, - 0xec, 0x38, 0xfc, 0xcb, 0xdd, 0x7a, 0xf7, 0xb5, 0x7c, 0x05, 0xcc, 0x14, 0x5e, 0x3a, 0xac, 0x7f, - 0xd9, 0x35, 0x3a, 0x42, 0xda, 0xf4, 0x50, 0x78, 0x04, 0x85, 0x3d, 0xd2, 0x60, 0xb0, 0xff, 0xb0, - 0x08, 0xfa, 0xe6, 0x20, 0xe4, 0x89, 0x2c, 0x9d, 0x5c, 0x0a, 0x50, 0xad, 0xef, 0x05, 0xae, 0xbe, - 0xa3, 0xa8, 0x9c, 0x49, 0xd2, 0xf9, 0x25, 0x0b, 0x46, 0xbd, 0xc0, 0x4b, 0x3c, 0x87, 0x19, 0xcf, - 0xf9, 0xdc, 0x7c, 0xa2, 0xd8, 0x2d, 0x71, 0xca, 0x61, 0x64, 0x7a, 0x6f, 0x15, 0x33, 0x6c, 0x72, - 0x46, 0x1f, 0x17, 0xf1, 0x88, 0xc5, 0xdc, 0xf2, 0xcb, 0xca, 0x99, 0x20, 0xc4, 0x16, 0x94, 0x22, - 0x92, 0x44, 0x39, 0xa5, 0x65, 0x62, 0x4a, 0x4a, 0xd5, 0x32, 0xd4, 0x77, 0x38, 0xd2, 0x66, 0xcc, - 0x19, 0xd9, 0x31, 0xa0, 0xce, 0xbe, 0x38, 0x62, 0xac, 0xd7, 0x2c, 0x54, 0x9c, 0x76, 0x12, 0x36, - 0x69, 0x37, 0x09, 0x07, 0xb3, 0x8e, 0x66, 0x93, 0x00, 0xac, 0x71, 0xec, 0x37, 0x4b, 0x90, 0x49, - 0x9b, 0x41, 0xbb, 0xe6, 0xad, 0x57, 0x56, 0xbe, 0xb7, 0x5e, 0x29, 0x61, 0xba, 0xdd, 0x7c, 0x85, - 0x1a, 0x50, 0x6a, 0x6d, 0x39, 0xb1, 0xb4, 0x8d, 0x5f, 0x91, 0xdd, 0xb4, 0x46, 0x1b, 0xef, 0xed, - 0x4f, 0xff, 0x54, 0x7f, 0xbe, 0x16, 0x3a, 0x56, 0x67, 0x79, 0x16, 0xba, 0x66, 0xcd, 0x68, 0x60, - 0x4e, 0xff, 0x28, 0x77, 0xbf, 0x7c, 0x46, 0xd4, 0xab, 0xc5, 0x24, 0x6e, 0xfb, 0x89, 0x18, 0x0d, - 0xaf, 0xe4, 0x38, 0xcb, 0x38, 0x61, 0x9d, 0xf0, 0xc9, 0xff, 0x63, 0x83, 0x29, 0xfa, 0x28, 0x54, - 0xe2, 0xc4, 0x89, 0x92, 0x63, 0xa6, 0x68, 0xa9, 0x4e, 0x5f, 0x97, 0x44, 0xb0, 0xa6, 0x87, 0x5e, - 0x65, 0xf5, 0xf8, 0xbc, 0x78, 0xeb, 0x98, 0x61, 0xc4, 0xb2, 0x76, 0x9f, 0xa0, 0x80, 0x0d, 0x6a, - 0x74, 0xeb, 0xc1, 0xc6, 0x36, 0x8f, 0x9d, 0x29, 0xb3, 0xbd, 0xa5, 0x52, 0x85, 0x58, 0x41, 0xb0, - 0x81, 0x65, 0xff, 0x18, 0xa4, 0x33, 0x96, 0xd1, 0xb4, 0x4c, 0x90, 0xe6, 0xbe, 0x27, 0x16, 0x0e, - 0x9c, 0xca, 0x65, 0xfe, 0x6d, 0x0b, 0xcc, 0xb4, 0x6a, 0x74, 0x87, 0xe7, 0x6f, 0x5b, 0x79, 0x9c, - 0x17, 0x18, 0x74, 0x67, 0x56, 0x9c, 0x56, 0xe6, 0xe0, 0x4a, 0x26, 0x71, 0x9f, 0xff, 0x00, 0x94, - 0x25, 0xf4, 0x48, 0x46, 0xdd, 0xa7, 0xe0, 0x4c, 0xf6, 0x4e, 0x50, 0xe1, 0x6b, 0x6e, 0x44, 0x61, - 0xbb, 0x95, 0xdd, 0x48, 0xb2, 0x3b, 0x23, 0x31, 0x87, 0xd1, 0xed, 0xd8, 0xb6, 0x17, 0xd4, 0xb2, - 0x1b, 0xc9, 0x6b, 0x5e, 0x50, 0xc3, 0x0c, 0xd2, 0xc7, 0xdd, 0x67, 0xbf, 0x63, 0xc1, 0x85, 0xc3, - 0xae, 0x2e, 0x45, 0x4f, 0xc2, 0xd0, 0x5d, 0x27, 0x92, 0x85, 0x52, 0x99, 0xa2, 0xbc, 0xe5, 0x44, - 0x01, 0x66, 0xad, 0x68, 0x0f, 0x86, 0x79, 0xfe, 0xaf, 0xb0, 0xd6, 0x5f, 0xc9, 0xf7, 0x22, 0xd5, - 0x6b, 0xc4, 0xd8, 0x2e, 0xf0, 0xdc, 0x63, 0x2c, 0x18, 0xda, 0xdf, 0xb3, 0x00, 0xad, 0xee, 0x90, - 0x28, 0xf2, 0x6a, 0x46, 0xc6, 0x32, 0x7a, 0x11, 0xc6, 0x6e, 0xaf, 0xaf, 0x5e, 0x5f, 0x0b, 0xbd, - 0x80, 0x55, 0x30, 0x30, 0x92, 0xb4, 0xae, 0x1a, 0xed, 0x38, 0x85, 0x85, 0xe6, 0x61, 0xf2, 0xf6, - 0x1d, 0xba, 0xf9, 0x35, 0x8b, 0xb2, 0x17, 0xb4, 0xbb, 0xf3, 0xea, 0x2b, 0x19, 0x20, 0xee, 0xc4, - 0x47, 0xab, 0x70, 0xae, 0xc9, 0xb7, 0x1b, 0xbc, 0x96, 0x32, 0xdf, 0x7b, 0xa8, 0x1c, 0x8d, 0x27, - 0x0e, 0xf6, 0xa7, 0xcf, 0xad, 0x74, 0x43, 0xc0, 0xdd, 0x9f, 0xb3, 0x3f, 0x00, 0x88, 0x07, 0xab, - 0xcc, 0x77, 0x8b, 0x3c, 0xe8, 0xb9, 0x13, 0xb7, 0xbf, 0x5e, 0x82, 0x53, 0x99, 0x32, 0x7a, 0x74, - 0xab, 0xd7, 0x19, 0xea, 0x30, 0xf0, 0xfa, 0xdd, 0x29, 0x5e, 0x5f, 0xc1, 0x13, 0x01, 0x94, 0xbc, - 0xa0, 0xd5, 0x4e, 0xf2, 0xc9, 0x82, 0xe2, 0x42, 0x2c, 0x51, 0x82, 0x86, 0x93, 0x88, 0xfe, 0xc5, - 0x9c, 0x4d, 0x9e, 0xa1, 0x18, 0x29, 0x63, 0x7c, 0xe8, 0x21, 0xb9, 0x03, 0x3e, 0xa3, 0x03, 0x23, - 0x4a, 0x79, 0x1c, 0xd4, 0x67, 0x06, 0xcb, 0x49, 0x1f, 0xb0, 0x7d, 0xb3, 0x00, 0xa3, 0xc6, 0x47, - 0x43, 0xbf, 0x96, 0x2e, 0x3a, 0x62, 0xe5, 0xf7, 0x4a, 0x8c, 0xfe, 0x8c, 0x2e, 0x2b, 0xc2, 0x5f, - 0xe9, 0xd9, 0xce, 0x7a, 0x23, 0xf7, 0xf6, 0xa7, 0x4f, 0x67, 0x2a, 0x8a, 0xa4, 0x6a, 0x90, 0x9c, - 0xff, 0x24, 0x9c, 0xca, 0x90, 0xe9, 0xf2, 0xca, 0x1b, 0xe9, 0x2b, 0x5f, 0x07, 0x74, 0x4b, 0x99, - 0x5d, 0xf6, 0x16, 0xed, 0x32, 0x7d, 0x13, 0x78, 0x1f, 0xee, 0xb8, 0x4c, 0x02, 0x5a, 0xa1, 0xcf, - 0x04, 0xb4, 0xe7, 0xa0, 0xdc, 0x0a, 0x7d, 0xcf, 0xf5, 0x54, 0x79, 0x2a, 0x56, 0x25, 0x73, 0x4d, - 0xb4, 0x61, 0x05, 0x45, 0x77, 0xa1, 0xa2, 0x6e, 0xc7, 0x15, 0x39, 0xf4, 0x79, 0xb9, 0x7a, 0x95, - 0xd1, 0xa2, 0x6f, 0xbd, 0xd5, 0xbc, 0x90, 0x0d, 0xc3, 0x6c, 0x11, 0x94, 0xd1, 0xb4, 0x2c, 0x1b, - 0x91, 0xad, 0x8e, 0x31, 0x16, 0x10, 0xfb, 0xb3, 0x23, 0x70, 0xb6, 0x5b, 0x2d, 0x53, 0xf4, 0x09, - 0x18, 0xe6, 0x32, 0xe6, 0x53, 0x2e, 0xbb, 0x1b, 0x8f, 0x45, 0x46, 0x50, 0x88, 0xc5, 0x7e, 0x63, - 0xc1, 0x53, 0x70, 0xf7, 0x9d, 0x4d, 0x31, 0x42, 0x4e, 0x86, 0xfb, 0xb2, 0xa3, 0xb9, 0x2f, 0x3b, - 0x9c, 0xbb, 0xef, 0x6c, 0xa2, 0x5d, 0x28, 0x35, 0xbc, 0x84, 0x38, 0xc2, 0x89, 0x70, 0xeb, 0x44, - 0x98, 0x13, 0x87, 0x5b, 0x69, 0xec, 0x27, 0xe6, 0x0c, 0xd1, 0x37, 0x2c, 0x38, 0xb5, 0x99, 0x4e, - 0xee, 0x14, 0xca, 0xd3, 0x39, 0x81, 0x7a, 0xb5, 0x69, 0x46, 0xfc, 0xe2, 0x83, 0x4c, 0x23, 0xce, - 0x8a, 0x83, 0x7e, 0xde, 0x82, 0x91, 0xba, 0xe7, 0x1b, 0xa5, 0x0b, 0x4f, 0xe0, 0xe3, 0x5c, 0x66, - 0x0c, 0xf4, 0x8e, 0x83, 0xff, 0x8f, 0xb1, 0xe4, 0xdc, 0x6b, 0xa5, 0x1a, 0x1e, 0x74, 0xa5, 0x1a, - 0x79, 0x48, 0x6e, 0xa3, 0x5f, 0x2e, 0xc0, 0x33, 0x7d, 0x7c, 0x23, 0x33, 0x1f, 0xcf, 0x3a, 0x24, - 0x1f, 0xef, 0x02, 0x0c, 0x45, 0xa4, 0x15, 0x66, 0x4d, 0x5f, 0x16, 0xb4, 0xca, 0x20, 0xe8, 0x29, - 0x28, 0x3a, 0x2d, 0x4f, 0x58, 0xbe, 0xca, 0x5e, 0x9f, 0x5b, 0x5b, 0xc2, 0xb4, 0x9d, 0x7e, 0xe9, - 0xca, 0xa6, 0x4c, 0x39, 0xce, 0xe7, 0x12, 0x92, 0x5e, 0x19, 0xcc, 0xdc, 0x91, 0xa3, 0xa0, 0x58, - 0xf3, 0xb5, 0xff, 0x8a, 0x05, 0xe7, 0x7b, 0x0f, 0x11, 0xf4, 0x02, 0x8c, 0x6e, 0x46, 0x4e, 0xe0, - 0x6e, 0xb1, 0x1b, 0x7b, 0x64, 0xa7, 0xb0, 0x34, 0x2c, 0xdd, 0x8c, 0x4d, 0x1c, 0x6a, 0xc4, 0xf2, - 0x2a, 0xc1, 0x06, 0x86, 0xcc, 0xba, 0xa0, 0x46, 0xec, 0x46, 0x16, 0x88, 0x3b, 0xf1, 0xed, 0x3f, - 0x28, 0x74, 0x17, 0x8b, 0xab, 0x92, 0xa3, 0x7c, 0x27, 0xf1, 0x15, 0x0a, 0x3d, 0xbe, 0xc2, 0x1d, - 0x28, 0x27, 0x2c, 0x95, 0x8c, 0xd4, 0x85, 0x3e, 0xca, 0x2d, 0x55, 0x9b, 0xad, 0x58, 0x1b, 0x82, - 0x38, 0x56, 0x6c, 0xe8, 0xc2, 0xe1, 0xeb, 0xda, 0x89, 0x62, 0xe1, 0xc8, 0x9c, 0x42, 0x2c, 0xc0, - 0x69, 0xa3, 0xb8, 0x35, 0xcf, 0xa4, 0xe1, 0xc1, 0x34, 0x2a, 0xbd, 0x74, 0x2d, 0x03, 0xc7, 0x1d, - 0x4f, 0xd8, 0xbf, 0x5e, 0x80, 0x27, 0x7a, 0xea, 0x47, 0x1d, 0xf1, 0x63, 0xdd, 0x27, 0xe2, 0x67, - 0xe0, 0x61, 0x6e, 0x76, 0xf0, 0xd0, 0x83, 0xe9, 0xe0, 0xe7, 0xa1, 0xec, 0x05, 0x31, 0x71, 0xdb, - 0x11, 0xef, 0x34, 0x23, 0xae, 0x7c, 0x49, 0xb4, 0x63, 0x85, 0x61, 0xff, 0x51, 0xef, 0xa1, 0x46, - 0xd7, 0xca, 0x1f, 0xda, 0x5e, 0x7a, 0x19, 0xc6, 0x9d, 0x56, 0x8b, 0xe3, 0xb1, 0xe8, 0x8a, 0x4c, - 0xc2, 0xf8, 0x9c, 0x09, 0xc4, 0x69, 0x5c, 0x63, 0x0c, 0x0f, 0xf7, 0x1a, 0xc3, 0xf6, 0x9f, 0x5a, - 0x50, 0xc1, 0xa4, 0xce, 0xe7, 0x3b, 0xba, 0x2d, 0xba, 0xc8, 0xca, 0xa3, 0x92, 0x13, 0xed, 0xd8, - 0xd8, 0x63, 0x15, 0x8e, 0xba, 0x75, 0x76, 0x67, 0x59, 0xf3, 0xc2, 0x91, 0xca, 0x9a, 0xab, 0xc2, - 0xd6, 0xc5, 0xde, 0x85, 0xad, 0xed, 0xb7, 0x46, 0xe8, 0xeb, 0xb5, 0xc2, 0xf9, 0x88, 0xd4, 0x62, - 0xfa, 0x7d, 0xdb, 0x91, 0x9f, 0xbd, 0xc0, 0xfc, 0x06, 0x5e, 0xc6, 0xb4, 0x3d, 0xe5, 0x42, 0x2d, - 0x1c, 0x29, 0x5d, 0xb6, 0x78, 0x68, 0xba, 0xec, 0xcb, 0x30, 0x1e, 0xc7, 0x5b, 0x6b, 0x91, 0xb7, - 0xe3, 0x24, 0xe4, 0x1a, 0xd9, 0x13, 0xc1, 0x79, 0x3a, 0xc5, 0x6d, 0xfd, 0x8a, 0x06, 0xe2, 0x34, - 0x2e, 0x5a, 0x84, 0x49, 0x9d, 0xb4, 0x4a, 0xa2, 0x84, 0xc5, 0xe2, 0xf1, 0x91, 0xa0, 0x32, 0xcc, - 0x74, 0x9a, 0xab, 0x40, 0xc0, 0x9d, 0xcf, 0x50, 0x8d, 0x95, 0x6a, 0xa4, 0x82, 0x0c, 0xa7, 0x35, - 0x56, 0x8a, 0x0e, 0x95, 0xa5, 0xe3, 0x09, 0xb4, 0x02, 0x67, 0xf8, 0xc0, 0x98, 0x6b, 0xb5, 0x8c, - 0x37, 0x1a, 0x49, 0x57, 0xd0, 0x59, 0xec, 0x44, 0xc1, 0xdd, 0x9e, 0xa3, 0xbb, 0x0f, 0xd5, 0xbc, - 0xb4, 0x20, 0xbc, 0x7f, 0x6a, 0xf7, 0xa1, 0xc8, 0x2c, 0xd5, 0xb0, 0x89, 0x87, 0x3e, 0x02, 0x8f, - 0xeb, 0xbf, 0x3c, 0x60, 0x9b, 0xbb, 0xc4, 0x17, 0x44, 0x3d, 0x00, 0x55, 0x46, 0x79, 0xb1, 0x2b, - 0x5a, 0x0d, 0xf7, 0x7a, 0x1e, 0x6d, 0xc2, 0x79, 0x05, 0xba, 0x14, 0x24, 0x2c, 0xfa, 0x32, 0x26, - 0x55, 0x27, 0x26, 0x37, 0x22, 0x9f, 0x55, 0x10, 0xa8, 0xe8, 0x1b, 0x6e, 0x16, 0xbd, 0xe4, 0x4a, - 0x37, 0x4c, 0xbc, 0x8c, 0xef, 0x43, 0x05, 0xcd, 0x42, 0x85, 0x04, 0xce, 0xa6, 0x4f, 0x56, 0xe7, - 0x97, 0x58, 0x5d, 0x01, 0xc3, 0x03, 0x7f, 0x49, 0x02, 0xb0, 0xc6, 0x51, 0xf1, 0x20, 0x63, 0x3d, - 0x6f, 0x5b, 0x5a, 0x83, 0xb3, 0x0d, 0xb7, 0x45, 0xad, 0x09, 0xcf, 0x25, 0x73, 0x2e, 0x8b, 0x89, - 0xa0, 0x1f, 0x86, 0x97, 0x36, 0x52, 0xc1, 0x4e, 0x8b, 0xf3, 0x6b, 0x1d, 0x38, 0xb8, 0xeb, 0x93, - 0x74, 0x8e, 0xb5, 0xa2, 0x70, 0x77, 0x6f, 0xea, 0x4c, 0x7a, 0x8e, 0xad, 0xd1, 0x46, 0xcc, 0x61, - 0xe8, 0x2a, 0x20, 0x16, 0x39, 0x77, 0x25, 0x49, 0x5a, 0xca, 0x7c, 0x99, 0x3a, 0xcb, 0x5e, 0xe9, - 0xbc, 0x78, 0x02, 0x5d, 0xee, 0xc0, 0xc0, 0x5d, 0x9e, 0xb2, 0xff, 0xc4, 0x82, 0x71, 0x35, 0x5f, - 0x1f, 0x40, 0xec, 0xa8, 0x9f, 0x8e, 0x1d, 0x5d, 0x1c, 0x5c, 0xe3, 0x31, 0xc9, 0x7b, 0x04, 0x20, - 0x7d, 0x76, 0x14, 0x40, 0x6b, 0x45, 0xb5, 0x20, 0x59, 0x3d, 0x17, 0xa4, 0x47, 0x56, 0x23, 0x75, - 0x4b, 0x22, 0x2e, 0x3d, 0xdc, 0x24, 0xe2, 0x75, 0x38, 0x27, 0xcd, 0x05, 0xee, 0xe3, 0xbd, 0x12, - 0xc6, 0x4a, 0xc1, 0x95, 0xab, 0x4f, 0x09, 0x42, 0xe7, 0x96, 0xba, 0x21, 0xe1, 0xee, 0xcf, 0xa6, - 0xac, 0x94, 0x91, 0xc3, 0xac, 0x14, 0x3d, 0xa7, 0x97, 0xeb, 0xb2, 0x28, 0x73, 0x66, 0x4e, 0x2f, - 0x5f, 0x5e, 0xc7, 0x1a, 0xa7, 0xbb, 0x62, 0xaf, 0xe4, 0xa4, 0xd8, 0xe1, 0xc8, 0x8a, 0x5d, 0xaa, - 0x98, 0xd1, 0x9e, 0x2a, 0x46, 0xfa, 0x92, 0xc6, 0x7a, 0xfa, 0x92, 0x3e, 0x08, 0x13, 0x5e, 0xb0, - 0x45, 0x22, 0x2f, 0x21, 0x35, 0x36, 0x17, 0x98, 0xfa, 0x29, 0xeb, 0x65, 0x7d, 0x29, 0x05, 0xc5, - 0x19, 0xec, 0xb4, 0x5e, 0x9c, 0xe8, 0x43, 0x2f, 0xf6, 0x58, 0x8d, 0x4e, 0xe5, 0xb3, 0x1a, 0x9d, - 0x1e, 0x7c, 0x35, 0x9a, 0x3c, 0xd1, 0xd5, 0x08, 0xe5, 0xb2, 0x1a, 0xf5, 0xa5, 0xe8, 0x8d, 0x0d, - 0xdd, 0xd9, 0x43, 0x36, 0x74, 0xbd, 0x96, 0xa2, 0x73, 0xc7, 0x5e, 0x8a, 0xba, 0xaf, 0x32, 0x8f, - 0x1d, 0x6b, 0x95, 0xf9, 0x5c, 0x01, 0xce, 0x69, 0x3d, 0x4c, 0x47, 0xbf, 0x57, 0xa7, 0x9a, 0x88, - 0xd5, 0xf5, 0xe7, 0xfe, 0x56, 0x23, 0x94, 0x59, 0x47, 0x45, 0x2b, 0x08, 0x36, 0xb0, 0x58, 0x44, - 0x30, 0x89, 0x58, 0x01, 0xb7, 0xac, 0x92, 0x9e, 0x17, 0xed, 0x58, 0x61, 0xd0, 0xf1, 0x45, 0x7f, - 0x8b, 0x2c, 0x8b, 0x6c, 0xdd, 0x94, 0x79, 0x0d, 0xc2, 0x26, 0x1e, 0x7a, 0x8e, 0x33, 0x61, 0x0a, - 0x82, 0x2a, 0xea, 0x31, 0x71, 0x07, 0x97, 0xd4, 0x09, 0x0a, 0x2a, 0xc5, 0x61, 0xa1, 0xdf, 0xa5, - 0x4e, 0x71, 0x58, 0xe8, 0x82, 0xc2, 0xb0, 0xff, 0xbb, 0x05, 0x4f, 0x74, 0xed, 0x8a, 0x07, 0xb0, - 0xf8, 0xee, 0xa6, 0x17, 0xdf, 0xf5, 0xbc, 0xb6, 0x1b, 0xc6, 0x5b, 0xf4, 0x58, 0x88, 0xff, 0x8d, - 0x05, 0x13, 0x1a, 0xff, 0x01, 0xbc, 0xaa, 0x97, 0x7e, 0xd5, 0xfc, 0x76, 0x56, 0x95, 0x8e, 0x77, - 0xfb, 0x13, 0xf6, 0x6e, 0xfc, 0x50, 0x74, 0xce, 0x95, 0x95, 0xe2, 0x0e, 0x39, 0x01, 0xd8, 0x83, - 0x61, 0x76, 0x80, 0x11, 0xe7, 0x73, 0x38, 0x9b, 0xe6, 0xcf, 0x0e, 0x43, 0xf4, 0xe1, 0x10, 0xfb, - 0x1b, 0x63, 0xc1, 0x90, 0x95, 0x17, 0xf4, 0x62, 0xaa, 0xcd, 0x6b, 0x22, 0x88, 0x5a, 0x97, 0x17, - 0x14, 0xed, 0x58, 0x61, 0xd8, 0x4d, 0x98, 0x4a, 0x13, 0x5f, 0x20, 0x75, 0x16, 0xf0, 0xd3, 0xd7, - 0x6b, 0xce, 0x42, 0xc5, 0x61, 0x4f, 0x2d, 0xb7, 0x9d, 0xec, 0xb5, 0x8d, 0x73, 0x12, 0x80, 0x35, - 0x8e, 0xfd, 0x5b, 0x16, 0x9c, 0xe9, 0xf2, 0x32, 0x39, 0x06, 0x8f, 0x27, 0x5a, 0x0b, 0x74, 0x5b, - 0x70, 0xdf, 0x0d, 0x23, 0x35, 0x52, 0x77, 0x64, 0x48, 0x89, 0xa1, 0x73, 0x17, 0x78, 0x33, 0x96, - 0x70, 0xfb, 0xbf, 0x58, 0x70, 0x2a, 0x2d, 0x6b, 0x4c, 0xb5, 0x26, 0x7f, 0x99, 0x05, 0x2f, 0x76, - 0xc3, 0x1d, 0x12, 0xed, 0xd1, 0x37, 0xe7, 0x52, 0x2b, 0xad, 0x39, 0xd7, 0x81, 0x81, 0xbb, 0x3c, - 0xc5, 0x2a, 0x8c, 0xd5, 0x54, 0x6f, 0xcb, 0x91, 0x72, 0x33, 0xcf, 0x91, 0xa2, 0x3f, 0xa6, 0x79, - 0xfc, 0xa4, 0x58, 0x62, 0x93, 0xbf, 0xfd, 0xbd, 0x21, 0x50, 0xd9, 0x25, 0xec, 0x3c, 0x3f, 0xa7, - 0x68, 0x88, 0xd4, 0x7d, 0x18, 0xc5, 0x3e, 0xee, 0xc3, 0x90, 0x83, 0x61, 0xe8, 0x7e, 0x07, 0x6c, - 0xdc, 0x7b, 0x61, 0x3a, 0x09, 0xd5, 0x1b, 0x6e, 0x68, 0x10, 0x36, 0xf1, 0xa8, 0x24, 0xbe, 0xb7, - 0x43, 0xf8, 0x43, 0xc3, 0x69, 0x49, 0x96, 0x25, 0x00, 0x6b, 0x1c, 0x2a, 0x49, 0xcd, 0xab, 0xd7, - 0xc5, 0x56, 0x5c, 0x49, 0x42, 0x7b, 0x07, 0x33, 0x08, 0x2f, 0x1a, 0x19, 0x6e, 0x0b, 0xeb, 0xd4, - 0x28, 0x1a, 0x19, 0x6e, 0x63, 0x06, 0xa1, 0xf6, 0x54, 0x10, 0x46, 0x4d, 0x76, 0xad, 0x66, 0x4d, - 0x71, 0x11, 0x56, 0xa9, 0xb2, 0xa7, 0xae, 0x77, 0xa2, 0xe0, 0x6e, 0xcf, 0xd1, 0x11, 0xd8, 0x8a, - 0x48, 0xcd, 0x73, 0x13, 0x93, 0x1a, 0xa4, 0x47, 0xe0, 0x5a, 0x07, 0x06, 0xee, 0xf2, 0x14, 0x9a, - 0x83, 0x53, 0x32, 0x3b, 0x48, 0xe6, 0x7e, 0x8f, 0xa6, 0x73, 0x4d, 0x71, 0x1a, 0x8c, 0xb3, 0xf8, - 0x54, 0xdb, 0x34, 0x45, 0xd9, 0x07, 0x66, 0xc4, 0x1a, 0xda, 0x46, 0x96, 0x83, 0xc0, 0x0a, 0xc3, - 0xfe, 0x4c, 0x91, 0xae, 0x8e, 0x3d, 0x4a, 0xdd, 0x3f, 0xb0, 0xe8, 0x9b, 0xf4, 0x88, 0x1c, 0xea, - 0x63, 0x44, 0xbe, 0x08, 0x63, 0xb7, 0xe3, 0x30, 0x50, 0x91, 0x2d, 0xa5, 0x9e, 0x91, 0x2d, 0x06, - 0x56, 0xf7, 0xc8, 0x96, 0xe1, 0xbc, 0x22, 0x5b, 0x46, 0x8e, 0x19, 0xd9, 0xf2, 0xed, 0x12, 0xa8, - 0x62, 0xd1, 0xd7, 0x49, 0x72, 0x37, 0x8c, 0xb6, 0xbd, 0xa0, 0xc1, 0xb2, 0xaa, 0xbe, 0x61, 0xc1, - 0x18, 0x9f, 0x2f, 0xcb, 0x66, 0x66, 0x42, 0x3d, 0xa7, 0x2a, 0xc4, 0x29, 0x66, 0x33, 0x1b, 0x06, - 0xa3, 0xcc, 0x1d, 0x47, 0x26, 0x08, 0xa7, 0x24, 0x42, 0x9f, 0x04, 0x90, 0x7e, 0xcb, 0xba, 0x54, - 0x99, 0x4b, 0xf9, 0xc8, 0x87, 0x49, 0x5d, 0xdb, 0xa6, 0x1b, 0x8a, 0x09, 0x36, 0x18, 0xa2, 0xcf, - 0x65, 0xaf, 0x1d, 0xfe, 0xf8, 0x89, 0xf4, 0x4d, 0x3f, 0x39, 0x1b, 0x18, 0x46, 0xbc, 0xa0, 0x41, - 0xc7, 0x89, 0x88, 0x00, 0x78, 0x57, 0xb7, 0x8c, 0xc4, 0xe5, 0xd0, 0xa9, 0x55, 0x1d, 0xdf, 0x09, - 0x5c, 0x12, 0x2d, 0x71, 0x74, 0xf3, 0xd2, 0x3d, 0xd6, 0x80, 0x25, 0xa1, 0x8e, 0x32, 0xdb, 0xa5, - 0x7e, 0xca, 0x6c, 0x9f, 0xff, 0x10, 0x4c, 0x76, 0x7c, 0xcc, 0x23, 0xa5, 0x68, 0x1c, 0x3f, 0xbb, - 0xc3, 0xfe, 0x27, 0xc3, 0x7a, 0xd1, 0xba, 0x1e, 0xd6, 0x78, 0xb1, 0xe7, 0x48, 0x7f, 0x51, 0x61, - 0x7b, 0xe6, 0x38, 0x44, 0x8c, 0x8b, 0xfb, 0x54, 0x23, 0x36, 0x59, 0xd2, 0x31, 0xda, 0x72, 0x22, - 0x12, 0x9c, 0xf4, 0x18, 0x5d, 0x53, 0x4c, 0xb0, 0xc1, 0x10, 0x6d, 0xa5, 0x62, 0xb4, 0x2f, 0x0f, - 0x1e, 0xa3, 0xcd, 0x6a, 0x35, 0x74, 0x2b, 0x18, 0xfb, 0x65, 0x0b, 0x26, 0x82, 0xd4, 0xc8, 0xcd, - 0x27, 0x2c, 0xab, 0xfb, 0xac, 0xe0, 0x77, 0x0d, 0xa4, 0xdb, 0x70, 0x86, 0x7f, 0xb7, 0x25, 0xad, - 0x74, 0xc4, 0x25, 0x4d, 0x57, 0x8d, 0x1f, 0xee, 0x55, 0x35, 0x1e, 0x05, 0xea, 0xda, 0x8c, 0x91, - 0xdc, 0xaf, 0xcd, 0x80, 0x2e, 0x57, 0x66, 0xdc, 0x82, 0x8a, 0x1b, 0x11, 0x27, 0x39, 0xe6, 0x0d, - 0x0a, 0xec, 0x28, 0x7c, 0x5e, 0x12, 0xc0, 0x9a, 0x96, 0xfd, 0xaf, 0x8b, 0x70, 0x5a, 0xf6, 0x88, - 0x0c, 0xe9, 0xa4, 0xeb, 0x23, 0xe7, 0xab, 0x8d, 0x5b, 0xb5, 0x3e, 0x5e, 0x91, 0x00, 0xac, 0x71, - 0xa8, 0x3d, 0xd6, 0x8e, 0xc9, 0x6a, 0x8b, 0x04, 0xcb, 0xde, 0x66, 0x2c, 0xce, 0x1f, 0xd5, 0x44, - 0xb9, 0xa1, 0x41, 0xd8, 0xc4, 0xa3, 0xc6, 0x38, 0xb7, 0x8b, 0xe3, 0x6c, 0x38, 0xb8, 0xb0, 0xb7, - 0xb1, 0x84, 0xa3, 0x5f, 0xe9, 0x7a, 0xf7, 0x4e, 0x3e, 0x89, 0x10, 0x1d, 0x91, 0xac, 0x47, 0xbc, - 0x74, 0xe7, 0x4d, 0x0b, 0x4e, 0x6d, 0xa7, 0x32, 0x52, 0xa5, 0x4a, 0x1e, 0xb0, 0x76, 0x42, 0x3a, - 0xcd, 0x55, 0x0f, 0xe1, 0x74, 0x7b, 0x8c, 0xb3, 0xdc, 0xed, 0xff, 0x6a, 0x81, 0xa9, 0x9e, 0xfa, - 0xb3, 0xac, 0x8c, 0xeb, 0x03, 0x0b, 0x87, 0x5c, 0x1f, 0x28, 0x8d, 0xb0, 0x62, 0x7f, 0x46, 0xff, - 0xd0, 0x11, 0x8c, 0xfe, 0x52, 0x4f, 0xab, 0xed, 0x29, 0x28, 0xb6, 0xbd, 0x9a, 0xb0, 0xdb, 0xf5, - 0x69, 0xe3, 0xd2, 0x02, 0xa6, 0xed, 0xf6, 0x3f, 0x2c, 0xe9, 0x7d, 0xba, 0x88, 0xdf, 0xff, 0xa1, - 0x78, 0xed, 0xba, 0x2a, 0x85, 0xc1, 0xdf, 0xfc, 0x7a, 0x47, 0x29, 0x8c, 0x9f, 0x38, 0x7a, 0x7a, - 0x06, 0xef, 0xa0, 0x5e, 0x95, 0x30, 0x46, 0x0e, 0xc9, 0xcd, 0xb8, 0x0d, 0x65, 0xba, 0xb5, 0x61, - 0x0e, 0xb7, 0x72, 0x4a, 0xa8, 0xf2, 0x15, 0xd1, 0x7e, 0x6f, 0x7f, 0xfa, 0xc7, 0x8f, 0x2e, 0x96, - 0x7c, 0x1a, 0x2b, 0xfa, 0x28, 0x86, 0x0a, 0xfd, 0xcd, 0xd2, 0x48, 0xc4, 0xa6, 0xe9, 0x86, 0xd2, - 0x45, 0x12, 0x90, 0x4b, 0x8e, 0x8a, 0xe6, 0x83, 0x02, 0xa8, 0xb0, 0x7b, 0xbf, 0x18, 0x53, 0xbe, - 0xb7, 0x5a, 0x53, 0xc9, 0x1c, 0x12, 0x70, 0x6f, 0x7f, 0xfa, 0xe5, 0xa3, 0x33, 0x55, 0x8f, 0x63, - 0xcd, 0xc2, 0xfe, 0xca, 0x90, 0x1e, 0xbb, 0xa2, 0x02, 0xca, 0x0f, 0xc5, 0xd8, 0x7d, 0x29, 0x33, - 0x76, 0x2f, 0x74, 0x8c, 0xdd, 0x09, 0x7d, 0x3f, 0x55, 0x6a, 0x34, 0x3e, 0xe8, 0x05, 0xf6, 0xf0, - 0x7d, 0x3c, 0xb3, 0x2c, 0xee, 0xb4, 0xbd, 0x88, 0xc4, 0x6b, 0x51, 0x3b, 0xf0, 0x82, 0x86, 0xb8, - 0x12, 0xd8, 0xb0, 0x2c, 0x52, 0x60, 0x9c, 0xc5, 0x67, 0xd7, 0x09, 0xef, 0x05, 0xee, 0x2d, 0x67, - 0x87, 0x8f, 0x2a, 0xa3, 0x28, 0xc4, 0xba, 0x68, 0xc7, 0x0a, 0xc3, 0x7e, 0x8b, 0x9d, 0xdd, 0x1a, - 0xf9, 0x6b, 0x74, 0x4c, 0xf8, 0xec, 0xa2, 0x35, 0x5e, 0x51, 0x42, 0x8d, 0x09, 0x7e, 0xbb, 0x1a, - 0x87, 0xa1, 0xbb, 0x30, 0xb2, 0xc9, 0x6f, 0x1a, 0xc9, 0xa7, 0x7a, 0xa6, 0xb8, 0xb6, 0x84, 0x15, - 0xb8, 0x96, 0x77, 0x98, 0xdc, 0xd3, 0x3f, 0xb1, 0xe4, 0x66, 0x7f, 0x6b, 0x08, 0x4e, 0x65, 0xae, - 0xe2, 0x4a, 0xd5, 0xf2, 0x2a, 0x1c, 0x5a, 0xcb, 0xeb, 0x63, 0x00, 0x35, 0xd2, 0xf2, 0xc3, 0x3d, - 0x66, 0xe6, 0x0c, 0x1d, 0xd9, 0xcc, 0x51, 0x96, 0xf1, 0x82, 0xa2, 0x82, 0x0d, 0x8a, 0xa2, 0x8c, - 0x06, 0x2f, 0x0d, 0x96, 0x29, 0xa3, 0x61, 0x14, 0xb0, 0x1d, 0x7e, 0xb0, 0x05, 0x6c, 0x3d, 0x38, - 0xc5, 0x45, 0x54, 0x59, 0x62, 0xc7, 0x48, 0x06, 0x63, 0x71, 0xb6, 0x0b, 0x69, 0x32, 0x38, 0x4b, - 0xf7, 0x61, 0xde, 0xb4, 0x87, 0xde, 0x03, 0x15, 0xf9, 0x9d, 0xe3, 0xa9, 0x8a, 0xce, 0xb4, 0x95, - 0xc3, 0x80, 0xdd, 0x80, 0x27, 0x7e, 0xda, 0x5f, 0x2a, 0x50, 0xab, 0x94, 0xff, 0x53, 0x15, 0x13, - 0x9e, 0x85, 0x61, 0xa7, 0x9d, 0x6c, 0x85, 0x1d, 0xd7, 0xa7, 0xcc, 0xb1, 0x56, 0x2c, 0xa0, 0x68, - 0x19, 0x86, 0x6a, 0x3a, 0x0b, 0xfe, 0x28, 0xbd, 0xa8, 0x1d, 0x7c, 0x4e, 0x42, 0x30, 0xa3, 0x82, - 0x9e, 0x84, 0xa1, 0xc4, 0x69, 0xa4, 0xae, 0xb5, 0xde, 0x70, 0x1a, 0x31, 0x66, 0xad, 0xe6, 0xa2, - 0x39, 0x74, 0xc8, 0xa2, 0xf9, 0x32, 0x8c, 0xc7, 0x5e, 0x23, 0x70, 0x92, 0x76, 0x44, 0x8c, 0xc3, - 0x24, 0x1d, 0x1f, 0x60, 0x02, 0x71, 0x1a, 0xd7, 0xfe, 0xdd, 0x31, 0x38, 0xbb, 0x3e, 0xbf, 0x22, - 0x2b, 0x3a, 0x9e, 0x58, 0x4c, 0x7d, 0x37, 0x1e, 0x0f, 0x2e, 0xa6, 0xbe, 0x07, 0x77, 0xdf, 0x88, - 0xa9, 0xf7, 0x8d, 0x98, 0xfa, 0xcf, 0x59, 0x50, 0x51, 0xa1, 0xe4, 0x22, 0x90, 0xf5, 0xa3, 0xf9, - 0x4b, 0xa0, 0xe2, 0x8a, 0x45, 0x44, 0xb1, 0xfc, 0x8b, 0x35, 0xf3, 0x93, 0x0b, 0xb2, 0xbf, 0xaf, - 0x40, 0x47, 0x0a, 0xb2, 0x57, 0x19, 0x08, 0xa5, 0x3c, 0x32, 0x10, 0x7a, 0x7c, 0xaa, 0xae, 0x19, - 0x08, 0x5f, 0xb6, 0x60, 0xd4, 0x79, 0xa3, 0x1d, 0x91, 0x05, 0xb2, 0xb3, 0xda, 0x8a, 0x85, 0x82, - 0x7d, 0x2d, 0x7f, 0x01, 0xe6, 0x34, 0x13, 0x51, 0xe7, 0x5d, 0x37, 0x60, 0x53, 0x84, 0x54, 0xc6, - 0xc1, 0x48, 0x1e, 0x19, 0x07, 0xdd, 0xc4, 0x39, 0x34, 0xe3, 0xe0, 0x65, 0x18, 0x77, 0xfd, 0x30, - 0x20, 0x6b, 0x51, 0x98, 0x84, 0x6e, 0xe8, 0x0b, 0x63, 0x5a, 0xa9, 0x84, 0x79, 0x13, 0x88, 0xd3, - 0xb8, 0xbd, 0xd2, 0x15, 0x2a, 0x83, 0xa6, 0x2b, 0xc0, 0x43, 0x4a, 0xac, 0xfb, 0x45, 0x9d, 0x58, - 0x37, 0x9a, 0xc7, 0xd5, 0xd7, 0xdd, 0xbe, 0x48, 0x3f, 0xd9, 0x75, 0xe8, 0x6b, 0xfc, 0xfe, 0x12, - 0x6a, 0x8e, 0xce, 0x87, 0x4d, 0x6a, 0x6e, 0x8d, 0xb1, 0x2e, 0x79, 0xfd, 0x04, 0x06, 0xec, 0xad, - 0x75, 0xcd, 0x46, 0xdd, 0x69, 0xa2, 0x9b, 0x70, 0x5a, 0x90, 0x41, 0x12, 0xff, 0xbe, 0x5e, 0x80, - 0x1f, 0x39, 0x54, 0x04, 0x74, 0x17, 0x20, 0x71, 0x1a, 0x62, 0xa0, 0x0a, 0xf7, 0xff, 0x80, 0x41, - 0x7c, 0x1b, 0x92, 0x1e, 0xcf, 0x58, 0x57, 0x7f, 0x99, 0x63, 0x5d, 0xfe, 0x66, 0xb1, 0x7b, 0xa1, - 0xdf, 0x51, 0x9d, 0x0b, 0x87, 0x3e, 0xc1, 0x0c, 0x42, 0x97, 0xff, 0x88, 0x34, 0xf4, 0xfd, 0x76, - 0xea, 0xf3, 0x61, 0xd6, 0x8a, 0x05, 0x14, 0xbd, 0x1f, 0x46, 0x1d, 0xdf, 0xe7, 0x79, 0x15, 0x24, - 0x16, 0x35, 0xd6, 0x75, 0x85, 0x21, 0x0d, 0xc2, 0x26, 0x9e, 0xfd, 0xe7, 0x05, 0x98, 0x3e, 0x44, - 0xa7, 0xa0, 0x97, 0x60, 0x2c, 0x8c, 0x1a, 0x4e, 0xe0, 0xbd, 0xc1, 0x8b, 0x34, 0x94, 0xd2, 0xa5, - 0xa0, 0x56, 0x0d, 0x18, 0x4e, 0x61, 0xca, 0x48, 0xf8, 0xe1, 0x1e, 0x91, 0xf0, 0xef, 0x87, 0xd1, - 0x84, 0x38, 0x4d, 0x11, 0xf6, 0x23, 0xf6, 0xdf, 0xfa, 0x3c, 0x53, 0x83, 0xb0, 0x89, 0x47, 0xb5, - 0xd8, 0x84, 0xe3, 0xba, 0x24, 0x8e, 0x65, 0xa8, 0xbb, 0xf0, 0x0d, 0xe6, 0x16, 0x47, 0xcf, 0x5c, - 0xae, 0x73, 0x29, 0x16, 0x38, 0xc3, 0x32, 0xdb, 0xe1, 0x95, 0x3e, 0x3b, 0xfc, 0x37, 0x0a, 0xf0, - 0xd4, 0x7d, 0x57, 0xb7, 0xbe, 0xb3, 0x10, 0xda, 0x31, 0x89, 0xb2, 0x03, 0xe7, 0x46, 0x4c, 0x22, - 0xcc, 0x20, 0xbc, 0x97, 0x5a, 0x2d, 0xe3, 0xfe, 0xc0, 0xbc, 0x93, 0x5e, 0x78, 0x2f, 0xa5, 0x58, - 0xe0, 0x0c, 0xcb, 0xe3, 0x0e, 0xcb, 0xbf, 0x53, 0x80, 0x67, 0xfa, 0xb0, 0x01, 0x72, 0x4c, 0x0e, - 0x4a, 0xa7, 0x68, 0x15, 0x1f, 0x4e, 0x8a, 0xd6, 0x71, 0xbb, 0xeb, 0xad, 0x02, 0x9c, 0xef, 0xbd, - 0x14, 0xa3, 0x9f, 0xa4, 0x7b, 0x78, 0x19, 0xeb, 0x63, 0x66, 0x77, 0x9d, 0xe1, 0xfb, 0xf7, 0x14, - 0x08, 0x67, 0x71, 0xd1, 0x0c, 0x40, 0xcb, 0x49, 0xb6, 0xe2, 0x4b, 0xbb, 0x5e, 0x9c, 0x88, 0x1a, - 0x05, 0x13, 0xfc, 0x24, 0x46, 0xb6, 0x62, 0x03, 0x83, 0xb2, 0x63, 0xff, 0x16, 0xc2, 0xeb, 0x61, - 0xc2, 0x1f, 0xe2, 0xdb, 0x88, 0x33, 0xb2, 0x8e, 0xb3, 0x01, 0xc2, 0x59, 0x5c, 0xca, 0x8e, 0x9d, - 0xf5, 0x71, 0x41, 0xf9, 0xfe, 0x82, 0xb1, 0x5b, 0x56, 0xad, 0xd8, 0xc0, 0xc8, 0xe6, 0xad, 0x95, - 0x0e, 0xcf, 0x5b, 0xb3, 0xff, 0x41, 0x01, 0x9e, 0xe8, 0x69, 0xca, 0xf5, 0x37, 0x01, 0x1f, 0xbd, - 0x5c, 0xb3, 0xe3, 0x8d, 0x9d, 0x23, 0x66, 0x50, 0xfd, 0x69, 0x8f, 0x91, 0x26, 0x32, 0xa8, 0xb2, - 0x4b, 0x85, 0x75, 0xd4, 0xa5, 0xe2, 0x11, 0xea, 0xcf, 0x8e, 0xa4, 0xa9, 0xa1, 0x23, 0x24, 0x4d, - 0x65, 0x3e, 0x46, 0xa9, 0xcf, 0x89, 0xfc, 0x9d, 0xde, 0xdd, 0x4b, 0xb7, 0x7e, 0x7d, 0x79, 0x47, - 0x17, 0xe0, 0xb4, 0x17, 0xb0, 0x9a, 0xfe, 0xeb, 0xed, 0x4d, 0x91, 0xb6, 0x5e, 0x48, 0x5f, 0x57, - 0xb9, 0x94, 0x81, 0xe3, 0x8e, 0x27, 0x1e, 0xc1, 0x24, 0xb6, 0x63, 0x76, 0xe9, 0xc7, 0xa0, 0xa2, - 0x68, 0xf3, 0xc0, 0x5c, 0xf5, 0x41, 0x3b, 0x02, 0x73, 0xd5, 0xd7, 0x34, 0xb0, 0x68, 0x4f, 0x50, - 0x73, 0x33, 0x33, 0x32, 0xaf, 0x91, 0x3d, 0x66, 0x7b, 0xda, 0xef, 0x83, 0x31, 0xe5, 0xc3, 0xe8, - 0xb7, 0x70, 0xbb, 0xfd, 0x95, 0x61, 0x18, 0x4f, 0x95, 0x65, 0x4a, 0xb9, 0x0c, 0xad, 0x43, 0x5d, - 0x86, 0x2c, 0xd0, 0xba, 0x1d, 0xc8, 0x5b, 0x1d, 0x8c, 0x40, 0xeb, 0x76, 0x40, 0x30, 0x87, 0x51, - 0xd3, 0xb1, 0x16, 0xed, 0xe1, 0x76, 0x20, 0x02, 0x22, 0x95, 0xe9, 0xb8, 0xc0, 0x5a, 0xb1, 0x80, - 0xa2, 0x4f, 0x5b, 0x30, 0x16, 0x33, 0x7f, 0x34, 0x77, 0xb8, 0x8a, 0x0f, 0x7a, 0x75, 0xf0, 0xaa, - 0x53, 0xaa, 0x04, 0x19, 0x8b, 0xa5, 0x30, 0x5b, 0x70, 0x8a, 0x23, 0xfa, 0x05, 0x0b, 0x2a, 0xaa, - 0xf8, 0xb4, 0xb8, 0x7a, 0x65, 0x3d, 0xdf, 0xaa, 0x57, 0xdc, 0x53, 0xa7, 0x5c, 0xfb, 0xfa, 0xaa, - 0x56, 0xcd, 0x18, 0xc5, 0xca, 0x1b, 0x3a, 0x72, 0x32, 0xde, 0x50, 0xe8, 0xe2, 0x09, 0x7d, 0x0f, - 0x54, 0x9a, 0x4e, 0xe0, 0xd5, 0x49, 0x9c, 0x70, 0x07, 0xa5, 0x2c, 0xc6, 0x27, 0x1b, 0xb1, 0x86, - 0xd3, 0xc5, 0x2e, 0x66, 0x2f, 0x96, 0x18, 0x1e, 0x45, 0xb6, 0xd8, 0xad, 0xeb, 0x66, 0x6c, 0xe2, - 0x98, 0xee, 0x4f, 0x78, 0xa8, 0xee, 0xcf, 0xd1, 0x43, 0xdc, 0x9f, 0x7f, 0xcf, 0x82, 0x73, 0x5d, - 0xbf, 0xda, 0xa3, 0x1b, 0x22, 0x67, 0x7f, 0xb5, 0x04, 0x67, 0xba, 0xd4, 0x57, 0x43, 0x7b, 0xe6, - 0x78, 0xb6, 0xf2, 0x38, 0x15, 0x4f, 0x1f, 0xf2, 0xca, 0x6e, 0xec, 0x32, 0x88, 0x8f, 0x76, 0xf8, - 0xa0, 0x0f, 0x00, 0x8a, 0x0f, 0xf6, 0x00, 0xc0, 0x18, 0x96, 0x43, 0x0f, 0x75, 0x58, 0x96, 0xee, - 0x3f, 0x2c, 0xd1, 0x37, 0x2d, 0x98, 0x6a, 0xf6, 0x28, 0xea, 0x2b, 0x9c, 0x7a, 0x37, 0x4f, 0xa6, - 0x64, 0x70, 0xf5, 0xc9, 0x83, 0xfd, 0xe9, 0x9e, 0xb5, 0x94, 0x71, 0x4f, 0xa9, 0xec, 0xef, 0x15, - 0x81, 0x15, 0xf7, 0x63, 0x35, 0x74, 0xf6, 0xd0, 0xa7, 0xcc, 0x32, 0x8d, 0x56, 0x5e, 0x25, 0x05, - 0x39, 0x71, 0x55, 0xe6, 0x91, 0xf7, 0x60, 0xb7, 0xaa, 0x8f, 0x59, 0xa5, 0x55, 0xe8, 0x43, 0x69, - 0xf9, 0xb2, 0x1e, 0x66, 0x31, 0xff, 0x7a, 0x98, 0x95, 0x6c, 0x2d, 0xcc, 0xfb, 0x7f, 0xe2, 0xa1, - 0x47, 0xf2, 0x13, 0xff, 0x75, 0x8b, 0x2b, 0x9e, 0xcc, 0x57, 0xd0, 0x96, 0x81, 0x75, 0x1f, 0xcb, - 0xe0, 0x79, 0x76, 0xe9, 0x6e, 0xfd, 0x0a, 0x71, 0x7c, 0x61, 0x41, 0x98, 0xf7, 0xe7, 0xb2, 0x76, - 0xac, 0x30, 0xd8, 0x35, 0x59, 0xbe, 0x1f, 0xde, 0xbd, 0xd4, 0x6c, 0x25, 0x7b, 0xc2, 0x96, 0xd0, - 0xd7, 0x64, 0x29, 0x08, 0x36, 0xb0, 0xec, 0xbf, 0x51, 0xe0, 0x23, 0x50, 0x1c, 0xeb, 0xbf, 0x94, - 0xb9, 0xd8, 0xa4, 0xff, 0x13, 0xf1, 0x4f, 0x00, 0xb8, 0xea, 0xbe, 0x4d, 0x71, 0xde, 0x72, 0x65, - 0xe0, 0xfb, 0x0a, 0x05, 0x3d, 0xfd, 0x1a, 0xba, 0x0d, 0x1b, 0xfc, 0x52, 0xba, 0xb4, 0x78, 0xa8, - 0x2e, 0x4d, 0xa9, 0x95, 0xa1, 0x43, 0x56, 0xbb, 0x3f, 0xb7, 0x20, 0x65, 0x11, 0xa1, 0x16, 0x94, - 0xa8, 0xb8, 0x7b, 0xf9, 0x5c, 0x25, 0x6a, 0x92, 0xa6, 0xaa, 0x51, 0x0c, 0x7b, 0xf6, 0x13, 0x73, - 0x46, 0xc8, 0x17, 0xa7, 0xff, 0x85, 0x3c, 0xae, 0xbb, 0x35, 0x19, 0x5e, 0x09, 0xc3, 0x6d, 0x7e, - 0x68, 0xa8, 0x23, 0x09, 0xec, 0x97, 0x60, 0xb2, 0x43, 0x28, 0x76, 0x87, 0x41, 0x28, 0xef, 0x4f, - 0x35, 0x86, 0x2b, 0x4b, 0xc1, 0xc3, 0x1c, 0x66, 0xbf, 0x65, 0xc1, 0xe9, 0x2c, 0x79, 0xf4, 0x35, - 0x0b, 0x26, 0xe3, 0x2c, 0xbd, 0x93, 0xea, 0x3b, 0x15, 0x19, 0xd7, 0x01, 0xc2, 0x9d, 0x42, 0xd8, - 0xff, 0x5b, 0x0c, 0xfe, 0x5b, 0x5e, 0x50, 0x0b, 0xef, 0x2a, 0xc3, 0xc4, 0xea, 0x69, 0x98, 0xd0, - 0xf9, 0xe8, 0x6e, 0x91, 0x5a, 0xdb, 0xef, 0xc8, 0xfd, 0x5b, 0x17, 0xed, 0x58, 0x61, 0xb0, 0x54, - 0xa7, 0xb6, 0x28, 0x98, 0x9b, 0x19, 0x94, 0x0b, 0xa2, 0x1d, 0x2b, 0x0c, 0xf4, 0x22, 0x8c, 0x99, - 0x77, 0x04, 0x8b, 0x71, 0xc9, 0x0c, 0x72, 0xf3, 0x3a, 0x61, 0x9c, 0xc2, 0x42, 0x33, 0x00, 0xca, - 0xc8, 0x91, 0x4b, 0x24, 0x73, 0xc2, 0x28, 0x4d, 0x14, 0x63, 0x03, 0x83, 0x25, 0x16, 0xf2, 0x8b, - 0x78, 0x65, 0xfc, 0x28, 0x4f, 0x2c, 0x14, 0x6d, 0x58, 0x41, 0xa9, 0x36, 0x69, 0x3a, 0x41, 0xdb, - 0xf1, 0x69, 0x0f, 0x89, 0x6c, 0x68, 0x35, 0x0d, 0x57, 0x14, 0x04, 0x1b, 0x58, 0xf4, 0x8d, 0x13, - 0xaf, 0x49, 0x5e, 0x0d, 0x03, 0x19, 0x79, 0xa5, 0x8f, 0x54, 0x44, 0x3b, 0x56, 0x18, 0xf6, 0x7f, - 0xb2, 0x20, 0x7b, 0x5d, 0x7b, 0xca, 0xcb, 0x61, 0x1d, 0x9a, 0x81, 0x9d, 0xce, 0xdf, 0x2c, 0xf4, - 0x95, 0xbf, 0x69, 0xa6, 0x56, 0x16, 0xef, 0x9b, 0x5a, 0xf9, 0xa3, 0xfa, 0x26, 0x2c, 0x9e, 0x83, - 0x39, 0xda, 0xed, 0x16, 0x2c, 0x64, 0xc3, 0xb0, 0xeb, 0xa8, 0x1a, 0x1d, 0x63, 0x7c, 0xef, 0x30, - 0x3f, 0xc7, 0x90, 0x04, 0xc4, 0x5e, 0x85, 0x8a, 0x3a, 0x59, 0x90, 0x1b, 0x55, 0xab, 0xfb, 0x46, - 0xb5, 0xaf, 0x54, 0xb2, 0xea, 0xe6, 0xb7, 0xbe, 0xff, 0xf4, 0x3b, 0xbe, 0xf3, 0xfd, 0xa7, 0xdf, - 0xf1, 0xc7, 0xdf, 0x7f, 0xfa, 0x1d, 0x9f, 0x3e, 0x78, 0xda, 0xfa, 0xd6, 0xc1, 0xd3, 0xd6, 0x77, - 0x0e, 0x9e, 0xb6, 0xfe, 0xf8, 0xe0, 0x69, 0xeb, 0x7b, 0x07, 0x4f, 0x5b, 0x5f, 0xfe, 0xf7, 0x4f, - 0xbf, 0xe3, 0xd5, 0xae, 0xa1, 0x77, 0xf4, 0xc7, 0x7b, 0xdd, 0xda, 0xec, 0xce, 0x45, 0x16, 0xfd, - 0x45, 0xa7, 0xd7, 0xac, 0x31, 0xa6, 0x66, 0xe5, 0xf4, 0xfa, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, - 0x2a, 0x12, 0x93, 0x3d, 0x65, 0xd2, 0x00, 0x00, + 0xaa, 0x20, 0xf7, 0x4c, 0x29, 0x95, 0x18, 0xf7, 0x3c, 0x61, 0xee, 0xf5, 0x47, 0x0f, 0xd8, 0xeb, + 0xef, 0xa9, 0x20, 0xaf, 0x31, 0xb6, 0x1c, 0xbd, 0x52, 0x48, 0x07, 0x0c, 0x14, 0xd1, 0xf5, 0xb9, + 0x4c, 0x44, 0xd7, 0x38, 0x13, 0xe0, 0x66, 0x31, 0x02, 0x1c, 0x3e, 0x7c, 0xeb, 0x61, 0x86, 0x63, + 0xfd, 0x0f, 0x0b, 0xe4, 0x77, 0x9d, 0x77, 0xdc, 0x2d, 0x42, 0x87, 0x0c, 0x7a, 0x1f, 0x4c, 0xa8, + 0x1d, 0xeb, 0x7c, 0xd8, 0x0d, 0x78, 0x24, 0x56, 0x59, 0x9f, 0x11, 0xe2, 0x14, 0x14, 0x67, 0xb0, + 0xd1, 0x2c, 0xd4, 0x68, 0x3f, 0xf1, 0x47, 0xf9, 0xd2, 0xa6, 0x76, 0xc5, 0x73, 0x6b, 0x4b, 0xe2, + 0x29, 0x8d, 0x83, 0x42, 0x98, 0xf4, 0x9d, 0x38, 0x61, 0x12, 0xd0, 0x0d, 0xec, 0x11, 0x33, 0xa7, + 0x59, 0x24, 0xf5, 0x72, 0x96, 0x10, 0xee, 0xa5, 0x6d, 0x7f, 0x7b, 0x08, 0xc6, 0x53, 0x9a, 0xf1, + 0x90, 0x6b, 0xe2, 0xf3, 0x50, 0x95, 0xcb, 0x54, 0xb6, 0x7e, 0x83, 0x5a, 0xcb, 0x14, 0x06, 0x5d, + 0xb4, 0x36, 0x89, 0x13, 0x91, 0x88, 0x95, 0x9a, 0xc9, 0xae, 0xe1, 0x75, 0x0d, 0xc2, 0x26, 0x1e, + 0x53, 0xca, 0x89, 0x1f, 0xcf, 0xfb, 0x1e, 0x09, 0x12, 0x2e, 0x66, 0x31, 0x4a, 0x79, 0x63, 0x79, + 0xdd, 0x24, 0xaa, 0x95, 0x72, 0x06, 0x80, 0xb3, 0xec, 0xd1, 0xcf, 0x5b, 0x30, 0xee, 0xdc, 0x89, + 0x75, 0xf9, 0x44, 0x11, 0xbb, 0x75, 0xcc, 0x45, 0x2a, 0x55, 0x91, 0x91, 0x7b, 0x58, 0x53, 0x4d, + 0x38, 0xcd, 0x14, 0x7d, 0xd9, 0x02, 0x44, 0x76, 0x89, 0x2b, 0xa3, 0xcb, 0x84, 0x2c, 0xc3, 0x45, + 0x6c, 0xec, 0x2e, 0xf5, 0xd0, 0xe5, 0x5a, 0xbd, 0xb7, 0x1d, 0xe7, 0xc8, 0x60, 0xff, 0xe3, 0xb2, + 0x9a, 0x50, 0x3a, 0xa0, 0xd1, 0x31, 0x02, 0xab, 0xac, 0xa3, 0x07, 0x56, 0xe9, 0x03, 0xea, 0xde, + 0x84, 0xac, 0x54, 0x22, 0x4a, 0xe9, 0x21, 0x25, 0xa2, 0xfc, 0xac, 0x95, 0xaa, 0x54, 0x32, 0x7a, + 0xf1, 0xd5, 0x62, 0x83, 0x29, 0x67, 0x78, 0x78, 0x44, 0x46, 0xbb, 0xa7, 0x63, 0x26, 0xa8, 0x36, + 0x35, 0xd0, 0x0e, 0xa5, 0x0d, 0xff, 0x6d, 0x19, 0x46, 0x8d, 0x95, 0x34, 0xd7, 0x2c, 0xb2, 0x1e, + 0x31, 0xb3, 0xa8, 0x74, 0x08, 0xb3, 0xe8, 0x67, 0xa0, 0xe6, 0x4a, 0x2d, 0x5f, 0x4c, 0xad, 0xce, + 0xec, 0xda, 0xa1, 0x15, 0xbd, 0x6a, 0xc2, 0x9a, 0x27, 0x5a, 0x4c, 0x65, 0x72, 0x88, 0x15, 0x62, + 0x88, 0xad, 0x10, 0x79, 0xa9, 0x16, 0x62, 0xa5, 0xe8, 0x7d, 0x86, 0x15, 0xb4, 0xe9, 0x78, 0xe2, + 0xbd, 0x64, 0xc8, 0x33, 0x2f, 0x68, 0xb3, 0xb6, 0x24, 0x9b, 0xb1, 0x89, 0x63, 0x7f, 0xdb, 0x52, + 0x1f, 0xf7, 0x01, 0xa4, 0x77, 0xdf, 0x4e, 0xa7, 0x77, 0x5f, 0x2a, 0xa4, 0x9b, 0xfb, 0xe4, 0x75, + 0x5f, 0x87, 0x91, 0xf9, 0xb0, 0xdd, 0x76, 0x82, 0x06, 0xfa, 0x41, 0x18, 0x71, 0xf9, 0x4f, 0xe1, + 0x47, 0x61, 0xa7, 0x71, 0x02, 0x8a, 0x25, 0x0c, 0x3d, 0x09, 0x43, 0x4e, 0xd4, 0x92, 0xbe, 0x13, + 0x16, 0xd0, 0x31, 0x17, 0xb5, 0x62, 0xcc, 0x5a, 0xed, 0xb7, 0xca, 0x00, 0xf3, 0x61, 0xbb, 0xe3, + 0x44, 0xa4, 0xb1, 0x11, 0xb2, 0x5a, 0x61, 0x27, 0x7a, 0x86, 0xa5, 0x37, 0x4b, 0x8f, 0xf2, 0x39, + 0x96, 0x71, 0x96, 0x51, 0x7e, 0xd0, 0x67, 0x19, 0x9f, 0xb5, 0x00, 0xd1, 0x2f, 0x12, 0x06, 0x24, + 0x48, 0xf4, 0xe1, 0xec, 0x2c, 0xd4, 0x5c, 0xd9, 0x2a, 0xac, 0x16, 0x3d, 0xff, 0x24, 0x00, 0x6b, + 0x9c, 0x01, 0xb6, 0x9f, 0xcf, 0x48, 0xe5, 0x58, 0x4e, 0xc7, 0x40, 0x32, 0x95, 0x2a, 0x74, 0xa5, + 0xfd, 0x7b, 0x25, 0x78, 0x8c, 0xaf, 0x77, 0x2b, 0x4e, 0xe0, 0xb4, 0x48, 0x9b, 0x4a, 0x35, 0xe8, + 0x71, 0xbb, 0x4b, 0xf7, 0x3d, 0x9e, 0x8c, 0x69, 0x3c, 0xee, 0xc4, 0xe0, 0x03, 0x9a, 0x0f, 0xe1, + 0xa5, 0xc0, 0x4b, 0x30, 0x23, 0x8e, 0x62, 0xa8, 0xca, 0xca, 0xcf, 0x42, 0xd1, 0x15, 0xc4, 0x48, + 0xcd, 0x79, 0xb1, 0x28, 0x11, 0xac, 0x18, 0x51, 0xab, 0xd0, 0x0f, 0xdd, 0x6d, 0x4c, 0x3a, 0x21, + 0x53, 0x6a, 0x46, 0x48, 0xd9, 0xb2, 0x68, 0xc7, 0x0a, 0xc3, 0xfe, 0x3d, 0x0b, 0xb2, 0xea, 0xde, + 0xa8, 0x8a, 0x64, 0xdd, 0xb7, 0x2a, 0xd2, 0x21, 0xca, 0x12, 0xfd, 0x14, 0x8c, 0x3a, 0x09, 0x5d, + 0xa1, 0xf9, 0x9e, 0xb6, 0x7c, 0x34, 0x17, 0xfd, 0x4a, 0xd8, 0xf0, 0x9a, 0x1e, 0xdb, 0xcb, 0x9a, + 0xe4, 0xec, 0xff, 0x36, 0x04, 0x93, 0x3d, 0x91, 0xf7, 0xe8, 0x25, 0x18, 0x73, 0xc5, 0xf0, 0xe8, + 0x60, 0xd2, 0x14, 0x2f, 0x63, 0xc4, 0x39, 0x69, 0x18, 0x4e, 0x61, 0x0e, 0x30, 0x40, 0x97, 0xe0, + 0x4c, 0x44, 0x77, 0xd1, 0x5d, 0x32, 0xd7, 0x4c, 0x48, 0xb4, 0x4e, 0xdc, 0x30, 0x68, 0xf0, 0xda, + 0x5d, 0xe5, 0xfa, 0xe3, 0x77, 0xf7, 0xa7, 0xcf, 0xe0, 0x5e, 0x30, 0xce, 0x7b, 0x06, 0x75, 0x60, + 0xdc, 0x37, 0x0d, 0x2c, 0x61, 0x5d, 0x1f, 0xc9, 0x36, 0x53, 0x0b, 0x70, 0xaa, 0x19, 0xa7, 0x19, + 0xa4, 0xad, 0xb4, 0xca, 0x43, 0xb2, 0xd2, 0x7e, 0x4e, 0x5b, 0x69, 0xfc, 0x2c, 0xf9, 0x43, 0x05, + 0x67, 0x5e, 0x9c, 0xb4, 0x99, 0xf6, 0x0a, 0x54, 0x65, 0x9c, 0xcd, 0x40, 0xf1, 0x29, 0x26, 0x9d, + 0x3e, 0x1a, 0xed, 0x5e, 0x09, 0x72, 0x2c, 0x7c, 0x3a, 0xcf, 0xf4, 0x72, 0x9a, 0x9a, 0x67, 0x87, + 0x5b, 0x52, 0xd1, 0x2e, 0x8f, 0x31, 0xe2, 0x0b, 0xc7, 0x07, 0x8b, 0xde, 0xa1, 0xe8, 0xb0, 0x23, + 0x15, 0x90, 0xae, 0x42, 0x8f, 0x2e, 0x02, 0x68, 0x2b, 0x48, 0x84, 0x1b, 0xab, 0x23, 0x4c, 0x6d, + 0x2c, 0x61, 0x03, 0x8b, 0x6e, 0x58, 0xbd, 0x20, 0x4e, 0x1c, 0xdf, 0xbf, 0xe2, 0x05, 0x89, 0xf0, + 0xbc, 0xa9, 0x15, 0x72, 0x49, 0x83, 0xb0, 0x89, 0x77, 0xfe, 0xbd, 0xc6, 0x77, 0x39, 0xcc, 0xf7, + 0xdc, 0x82, 0x27, 0x16, 0xbd, 0x44, 0x05, 0xc9, 0xab, 0x71, 0x44, 0x8d, 0x1c, 0x95, 0xf4, 0x61, + 0xf5, 0x4d, 0xfa, 0x30, 0x82, 0xd4, 0x4b, 0xe9, 0x98, 0xfa, 0x6c, 0x90, 0xba, 0xfd, 0x12, 0x9c, + 0x5d, 0xf4, 0x92, 0xcb, 0x9e, 0x4f, 0x0e, 0xc9, 0xc4, 0xfe, 0x9d, 0x61, 0x18, 0x33, 0xd3, 0xac, + 0x0e, 0x93, 0xb7, 0xf2, 0x79, 0x6a, 0xc7, 0x88, 0xb7, 0xf3, 0xd4, 0x01, 0xd0, 0xad, 0x63, 0xe7, + 0x7c, 0xe5, 0xf7, 0x98, 0x61, 0xca, 0x68, 0x9e, 0xd8, 0x14, 0x00, 0xdd, 0x81, 0x4a, 0x93, 0x05, + 0x51, 0x97, 0x8b, 0x38, 0x25, 0xcf, 0xeb, 0x51, 0x3d, 0xcd, 0x78, 0x18, 0x36, 0xe7, 0x47, 0x57, + 0xc8, 0x28, 0x9d, 0x99, 0x63, 0x44, 0x17, 0x8a, 0x9c, 0x1c, 0x85, 0xd1, 0x4f, 0xd5, 0x57, 0x8e, + 0xa0, 0xea, 0x53, 0x8a, 0x77, 0xf8, 0x21, 0x29, 0x5e, 0x16, 0x10, 0x9f, 0x6c, 0x31, 0xfb, 0x4d, + 0x84, 0x43, 0x8f, 0xb0, 0x4e, 0x30, 0x02, 0xe2, 0x53, 0x60, 0x9c, 0xc5, 0x47, 0x1f, 0x57, 0xaa, + 0xbb, 0x5a, 0x84, 0xd3, 0xd2, 0x1c, 0xd1, 0x27, 0xad, 0xb5, 0x3f, 0x5b, 0x82, 0x89, 0xc5, 0xa0, + 0xbb, 0xb6, 0xb8, 0xd6, 0xdd, 0xf4, 0x3d, 0xf7, 0x1a, 0xd9, 0xa3, 0xaa, 0x79, 0x9b, 0xec, 0x2d, + 0x2d, 0x88, 0x19, 0xa4, 0xc6, 0xcc, 0x35, 0xda, 0x88, 0x39, 0x8c, 0x2a, 0xa3, 0xa6, 0x17, 0xb4, + 0x48, 0xd4, 0x89, 0x3c, 0xe1, 0x4f, 0x34, 0x94, 0xd1, 0x65, 0x0d, 0xc2, 0x26, 0x1e, 0xa5, 0x1d, + 0xde, 0x09, 0x48, 0x94, 0x35, 0x64, 0x57, 0x69, 0x23, 0xe6, 0x30, 0x8a, 0x94, 0x44, 0xdd, 0x38, + 0x11, 0x83, 0x51, 0x21, 0x6d, 0xd0, 0x46, 0xcc, 0x61, 0x74, 0xa6, 0xc7, 0xdd, 0x4d, 0x16, 0x84, + 0x90, 0x89, 0xbd, 0x5e, 0xe7, 0xcd, 0x58, 0xc2, 0x29, 0xea, 0x36, 0xd9, 0x5b, 0xa0, 0x5b, 0xca, + 0x4c, 0x76, 0xc4, 0x35, 0xde, 0x8c, 0x25, 0x9c, 0x15, 0x1d, 0x4b, 0x77, 0xc7, 0xf7, 0x5c, 0xd1, + 0xb1, 0xb4, 0xf8, 0x7d, 0x36, 0xa7, 0xbf, 0x66, 0xc1, 0x98, 0x19, 0x3a, 0x84, 0x5a, 0x19, 0x1b, + 0x77, 0xb5, 0xa7, 0x66, 0xe5, 0x4f, 0xe4, 0x5d, 0xd0, 0xd3, 0xf2, 0x92, 0xb0, 0x13, 0xbf, 0x9b, + 0x04, 0x2d, 0x2f, 0x20, 0xec, 0x44, 0x98, 0x87, 0x1c, 0xa5, 0xe2, 0x92, 0xe6, 0xc3, 0x06, 0x39, + 0x82, 0x91, 0x6c, 0xdf, 0x82, 0xc9, 0x9e, 0x94, 0x98, 0x01, 0x4c, 0x8b, 0x03, 0x13, 0x12, 0x6d, + 0x0c, 0xa3, 0x94, 0xb0, 0xac, 0xe0, 0x31, 0x0f, 0x93, 0x7c, 0x22, 0x51, 0x4e, 0xeb, 0xee, 0x16, + 0x69, 0xab, 0x34, 0x27, 0xe6, 0xbc, 0xbe, 0x99, 0x05, 0xe2, 0x5e, 0x7c, 0xfb, 0x73, 0x16, 0x8c, + 0xa7, 0xb2, 0x94, 0x0a, 0x32, 0x82, 0xd8, 0x4c, 0x0b, 0x59, 0x24, 0x1b, 0x0b, 0xe7, 0x2d, 0xb3, + 0xc5, 0x54, 0xcf, 0x34, 0x0d, 0xc2, 0x26, 0x9e, 0xfd, 0xc5, 0x12, 0x54, 0x65, 0x34, 0xc0, 0x00, + 0xa2, 0x7c, 0xc6, 0x82, 0x71, 0x75, 0x60, 0xc0, 0x3c, 0x51, 0xa5, 0x22, 0xe2, 0xd6, 0xa9, 0x04, + 0x2a, 0xd4, 0x32, 0x68, 0x86, 0xda, 0x22, 0xc7, 0x26, 0x33, 0x9c, 0xe6, 0x8d, 0x6e, 0x02, 0xc4, + 0x7b, 0x71, 0x42, 0xda, 0x86, 0x4f, 0xcc, 0x36, 0x66, 0xdc, 0x8c, 0x1b, 0x46, 0x84, 0xce, 0xaf, + 0xeb, 0x61, 0x83, 0xac, 0x2b, 0x4c, 0x6d, 0x42, 0xe9, 0x36, 0x6c, 0x50, 0xb2, 0xff, 0x5e, 0x09, + 0x4e, 0x67, 0x45, 0x42, 0x1f, 0x82, 0x31, 0xc9, 0xdd, 0xb8, 0x6c, 0x48, 0x86, 0x40, 0x8c, 0x61, + 0x03, 0x76, 0x6f, 0x7f, 0x7a, 0xba, 0xf7, 0xb2, 0xa7, 0x19, 0x13, 0x05, 0xa7, 0x88, 0xf1, 0x53, + 0x1b, 0x71, 0xbc, 0x58, 0xdf, 0x9b, 0xeb, 0x74, 0xc4, 0xd1, 0x8b, 0x71, 0x6a, 0x63, 0x42, 0x71, + 0x06, 0x1b, 0xad, 0xc1, 0x59, 0xa3, 0xe5, 0x3a, 0xf1, 0x5a, 0x5b, 0x9b, 0x61, 0x24, 0x77, 0x56, + 0x4f, 0xea, 0x20, 0xa5, 0x5e, 0x1c, 0x9c, 0xfb, 0x24, 0x5d, 0xed, 0x5d, 0xa7, 0xe3, 0xb8, 0x5e, + 0xb2, 0x27, 0x9c, 0x7c, 0x4a, 0x37, 0xcd, 0x8b, 0x76, 0xac, 0x30, 0xec, 0x15, 0x18, 0x1a, 0x70, + 0x04, 0x0d, 0x64, 0xd1, 0xbf, 0x02, 0x55, 0x4a, 0x4e, 0x9a, 0x77, 0x45, 0x90, 0x0c, 0xa1, 0x2a, + 0xef, 0x0b, 0x40, 0x36, 0x94, 0x3d, 0x47, 0x1e, 0x8c, 0xa9, 0xd7, 0x5a, 0x8a, 0xe3, 0x2e, 0xdb, + 0x24, 0x53, 0x20, 0x7a, 0x06, 0xca, 0x64, 0xb7, 0x93, 0x3d, 0x01, 0xbb, 0xb4, 0xdb, 0xf1, 0x22, + 0x12, 0x53, 0x24, 0xb2, 0xdb, 0x41, 0xe7, 0xa1, 0xe4, 0x35, 0xc4, 0x22, 0x05, 0x02, 0xa7, 0xb4, + 0xb4, 0x80, 0x4b, 0x5e, 0xc3, 0xde, 0x85, 0x9a, 0xba, 0xa0, 0x00, 0x6d, 0x4b, 0xdd, 0x6d, 0x15, + 0x11, 0xbe, 0x23, 0xe9, 0xf6, 0xd1, 0xda, 0x5d, 0x00, 0x9d, 0x13, 0x56, 0x94, 0x7e, 0xb9, 0x00, + 0x43, 0x6e, 0x28, 0x52, 0x49, 0xab, 0x9a, 0x0c, 0x53, 0xda, 0x0c, 0x62, 0xdf, 0x82, 0x89, 0x6b, + 0x41, 0x78, 0x87, 0x55, 0x60, 0x66, 0x95, 0x93, 0x28, 0xe1, 0x26, 0xfd, 0x91, 0x35, 0x11, 0x18, + 0x14, 0x73, 0x98, 0xaa, 0xae, 0x53, 0xea, 0x57, 0x5d, 0xc7, 0xfe, 0x84, 0x05, 0xa7, 0x55, 0x66, + 0x8b, 0xd4, 0xc6, 0x2f, 0xc1, 0xd8, 0x66, 0xd7, 0xf3, 0x1b, 0xb2, 0x1e, 0x53, 0xc6, 0x4d, 0x51, + 0x37, 0x60, 0x38, 0x85, 0x49, 0x37, 0x55, 0x9b, 0x5e, 0xe0, 0x44, 0x7b, 0x6b, 0x5a, 0xfd, 0x2b, + 0x8d, 0x50, 0x57, 0x10, 0x6c, 0x60, 0xd9, 0x9f, 0x31, 0x45, 0x10, 0xb9, 0x34, 0x03, 0xf4, 0xec, + 0x0d, 0xa8, 0xb8, 0xea, 0x20, 0xf5, 0x48, 0x35, 0xe3, 0x54, 0x1a, 0x33, 0x73, 0xa6, 0x73, 0x6a, + 0xf6, 0x3f, 0x29, 0xc1, 0x78, 0xaa, 0x34, 0x06, 0xf2, 0xa1, 0x4a, 0x7c, 0xe6, 0xca, 0x93, 0x43, + 0xec, 0xb8, 0x55, 0x09, 0xd5, 0xb4, 0xb8, 0x24, 0xe8, 0x62, 0xc5, 0xe1, 0xd1, 0x38, 0xaf, 0x7a, + 0x09, 0xc6, 0xa4, 0x40, 0x1f, 0x74, 0xda, 0xbe, 0x98, 0x85, 0x6a, 0x00, 0x5c, 0x32, 0x60, 0x38, + 0x85, 0x69, 0xff, 0x7e, 0x19, 0xa6, 0xb8, 0xef, 0xb3, 0xa1, 0x42, 0x4a, 0x56, 0xa4, 0x95, 0xf5, + 0x97, 0x74, 0x01, 0x1b, 0xde, 0x91, 0x9b, 0xc7, 0x2d, 0x02, 0x9c, 0xcf, 0x68, 0xa0, 0x60, 0x87, + 0x5f, 0xc9, 0x04, 0x3b, 0xf0, 0xc5, 0xb6, 0x75, 0x42, 0x12, 0x7d, 0x6f, 0x45, 0x3f, 0xfc, 0xed, + 0x12, 0x9c, 0xca, 0x54, 0x58, 0x46, 0x6f, 0xa5, 0xab, 0x0b, 0x5a, 0x45, 0x78, 0xc8, 0xee, 0x5b, + 0x74, 0xf7, 0x70, 0x35, 0x06, 0x1f, 0xd2, 0x54, 0xb1, 0xff, 0xa0, 0x04, 0x13, 0xe9, 0xd2, 0xd0, + 0x8f, 0x60, 0x4f, 0xbd, 0x0b, 0x6a, 0xac, 0xfa, 0x29, 0xbb, 0xce, 0x8a, 0x3b, 0xe2, 0x78, 0xc5, + 0x4c, 0xd9, 0x88, 0x35, 0xfc, 0x91, 0x28, 0xdd, 0x68, 0xff, 0x1d, 0x0b, 0xce, 0xf1, 0xb7, 0xcc, + 0x8e, 0xc3, 0xbf, 0x9c, 0xd7, 0xbb, 0xaf, 0x15, 0x2b, 0x60, 0xa6, 0xf0, 0xd2, 0x41, 0xfd, 0xcb, + 0xae, 0xd1, 0x11, 0xd2, 0xa6, 0x87, 0xc2, 0x23, 0x28, 0xec, 0xa1, 0x06, 0x83, 0xfd, 0x07, 0x65, + 0xd0, 0x37, 0x07, 0x21, 0x4f, 0x64, 0xe9, 0x14, 0x52, 0x80, 0x6a, 0x7d, 0x2f, 0x70, 0xf5, 0x1d, + 0x45, 0xd5, 0x4c, 0x92, 0xce, 0x2f, 0x5a, 0x30, 0xea, 0x05, 0x5e, 0xe2, 0x39, 0xcc, 0x78, 0x2e, + 0xe6, 0xe6, 0x13, 0xc5, 0x6e, 0x89, 0x53, 0x0e, 0x23, 0xd3, 0x7b, 0xab, 0x98, 0x61, 0x93, 0x33, + 0xfa, 0x88, 0x88, 0x47, 0x2c, 0x17, 0x96, 0x5f, 0x56, 0xcd, 0x04, 0x21, 0x76, 0xa0, 0x12, 0x91, + 0x24, 0x2a, 0x28, 0x2d, 0x13, 0x53, 0x52, 0xaa, 0x96, 0xa1, 0xbe, 0xc3, 0x91, 0x36, 0x63, 0xce, + 0xc8, 0x8e, 0x01, 0xf5, 0xf6, 0xc5, 0x21, 0x63, 0xbd, 0x66, 0xa1, 0xe6, 0x74, 0x93, 0xb0, 0x4d, + 0xbb, 0x49, 0x38, 0x98, 0x75, 0x34, 0x9b, 0x04, 0x60, 0x8d, 0x63, 0xbf, 0x55, 0x81, 0x4c, 0xda, + 0x0c, 0xda, 0x35, 0x6f, 0xbd, 0xb2, 0x8a, 0xbd, 0xf5, 0x4a, 0x09, 0x93, 0x77, 0xf3, 0x15, 0x6a, + 0x41, 0xa5, 0xb3, 0xe5, 0xc4, 0xd2, 0x36, 0x7e, 0x45, 0x76, 0xd3, 0x1a, 0x6d, 0xbc, 0xb7, 0x3f, + 0xfd, 0x93, 0x83, 0xf9, 0x5a, 0xe8, 0x58, 0x9d, 0xe5, 0x59, 0xe8, 0x9a, 0x35, 0xa3, 0x81, 0x39, + 0xfd, 0xc3, 0xdc, 0xfd, 0xf2, 0x49, 0x51, 0xaf, 0x16, 0x93, 0xb8, 0xeb, 0x27, 0x62, 0x34, 0xbc, + 0x52, 0xe0, 0x2c, 0xe3, 0x84, 0x75, 0xc2, 0x27, 0xff, 0x8f, 0x0d, 0xa6, 0xe8, 0x43, 0x50, 0x8b, + 0x13, 0x27, 0x4a, 0x8e, 0x98, 0xa2, 0xa5, 0x3a, 0x7d, 0x5d, 0x12, 0xc1, 0x9a, 0x1e, 0x7a, 0x95, + 0xd5, 0xe3, 0xf3, 0xe2, 0xad, 0x23, 0x86, 0x11, 0xcb, 0xda, 0x7d, 0x82, 0x02, 0x36, 0xa8, 0xd1, + 0xad, 0x07, 0x1b, 0xdb, 0x3c, 0x76, 0xa6, 0xca, 0xf6, 0x96, 0x4a, 0x15, 0x62, 0x05, 0xc1, 0x06, + 0x96, 0xfd, 0x23, 0x90, 0xce, 0x58, 0x46, 0xd3, 0x32, 0x41, 0x9a, 0xfb, 0x9e, 0x58, 0x38, 0x70, + 0x2a, 0x97, 0xf9, 0xb7, 0x2c, 0x30, 0xd3, 0xaa, 0xd1, 0x1b, 0x3c, 0x7f, 0xdb, 0x2a, 0xe2, 0xbc, + 0xc0, 0xa0, 0x3b, 0xb3, 0xe2, 0x74, 0x32, 0x07, 0x57, 0x32, 0x89, 0xfb, 0xfc, 0x7b, 0xa1, 0x2a, + 0xa1, 0x87, 0x32, 0xea, 0x3e, 0x0e, 0x67, 0xb2, 0x77, 0x82, 0x0a, 0x5f, 0x73, 0x2b, 0x0a, 0xbb, + 0x9d, 0xec, 0x46, 0x92, 0xdd, 0x19, 0x89, 0x39, 0x8c, 0x6e, 0xc7, 0xb6, 0xbd, 0xa0, 0x91, 0xdd, + 0x48, 0x5e, 0xf3, 0x82, 0x06, 0x66, 0x90, 0x01, 0xee, 0x3e, 0xfb, 0x6d, 0x0b, 0x2e, 0x1c, 0x74, + 0x75, 0x29, 0x7a, 0x12, 0x86, 0xee, 0x38, 0x91, 0x2c, 0x94, 0xca, 0x14, 0xe5, 0x2d, 0x27, 0x0a, + 0x30, 0x6b, 0x45, 0x7b, 0x30, 0xcc, 0xf3, 0x7f, 0x85, 0xb5, 0xfe, 0x4a, 0xb1, 0x17, 0xa9, 0x5e, + 0x23, 0xc6, 0x76, 0x81, 0xe7, 0x1e, 0x63, 0xc1, 0xd0, 0xfe, 0x8e, 0x05, 0x68, 0x75, 0x87, 0x44, + 0x91, 0xd7, 0x30, 0x32, 0x96, 0xd1, 0x8b, 0x30, 0x76, 0x7b, 0x7d, 0xf5, 0xfa, 0x5a, 0xe8, 0x05, + 0xac, 0x82, 0x81, 0x91, 0xa4, 0x75, 0xd5, 0x68, 0xc7, 0x29, 0x2c, 0x34, 0x0f, 0x93, 0xb7, 0xdf, + 0xa0, 0x9b, 0x5f, 0xb3, 0x28, 0x7b, 0x49, 0xbb, 0x3b, 0xaf, 0xbe, 0x92, 0x01, 0xe2, 0x5e, 0x7c, + 0xb4, 0x0a, 0xe7, 0xda, 0x7c, 0xbb, 0xc1, 0x6b, 0x29, 0xf3, 0xbd, 0x87, 0xca, 0xd1, 0x78, 0xe2, + 0xee, 0xfe, 0xf4, 0xb9, 0x95, 0x3c, 0x04, 0x9c, 0xff, 0x9c, 0xfd, 0x5e, 0x40, 0x3c, 0x58, 0x65, + 0x3e, 0x2f, 0xf2, 0xa0, 0xef, 0x4e, 0xdc, 0xfe, 0x4a, 0x05, 0x4e, 0x65, 0xca, 0xe8, 0xd1, 0xad, + 0x5e, 0x6f, 0xa8, 0xc3, 0xb1, 0xd7, 0xef, 0x5e, 0xf1, 0x06, 0x0a, 0x9e, 0x08, 0xa0, 0xe2, 0x05, + 0x9d, 0x6e, 0x52, 0x4c, 0x16, 0x14, 0x17, 0x62, 0x89, 0x12, 0x34, 0x9c, 0x44, 0xf4, 0x2f, 0xe6, + 0x6c, 0x8a, 0x0c, 0xc5, 0x48, 0x19, 0xe3, 0x43, 0x0f, 0xc9, 0x1d, 0xf0, 0x49, 0x1d, 0x18, 0x51, + 0x29, 0xe2, 0xa0, 0x3e, 0x33, 0x58, 0x4e, 0xfa, 0x80, 0xed, 0xeb, 0x25, 0x18, 0x35, 0x3e, 0x1a, + 0xfa, 0xd5, 0x74, 0xd1, 0x11, 0xab, 0xb8, 0x57, 0x62, 0xf4, 0x67, 0x74, 0x59, 0x11, 0xfe, 0x4a, + 0xcf, 0xf6, 0xd6, 0x1b, 0xb9, 0xb7, 0x3f, 0x7d, 0x3a, 0x53, 0x51, 0x24, 0x55, 0x83, 0xe4, 0xfc, + 0xc7, 0xe0, 0x54, 0x86, 0x4c, 0xce, 0x2b, 0x6f, 0xa4, 0xaf, 0x7c, 0x3d, 0xa6, 0x5b, 0xca, 0xec, + 0xb2, 0xaf, 0xd1, 0x2e, 0xd3, 0x37, 0x81, 0x0f, 0xe0, 0x8e, 0xcb, 0x24, 0xa0, 0x95, 0x06, 0x4c, + 0x40, 0x7b, 0x0e, 0xaa, 0x9d, 0xd0, 0xf7, 0x5c, 0x4f, 0x95, 0xa7, 0x62, 0x55, 0x32, 0xd7, 0x44, + 0x1b, 0x56, 0x50, 0x74, 0x07, 0x6a, 0xea, 0x76, 0x5c, 0x91, 0x43, 0x5f, 0x94, 0xab, 0x57, 0x19, + 0x2d, 0xfa, 0xd6, 0x5b, 0xcd, 0x0b, 0xd9, 0x30, 0xcc, 0x16, 0x41, 0x19, 0x4d, 0xcb, 0xb2, 0x11, + 0xd9, 0xea, 0x18, 0x63, 0x01, 0xb1, 0x3f, 0x35, 0x02, 0x67, 0xf3, 0x6a, 0x99, 0xa2, 0x8f, 0xc2, + 0x30, 0x97, 0xb1, 0x98, 0x72, 0xd9, 0x79, 0x3c, 0x16, 0x19, 0x41, 0x21, 0x16, 0xfb, 0x8d, 0x05, + 0x4f, 0xc1, 0xdd, 0x77, 0x36, 0xc5, 0x08, 0x39, 0x19, 0xee, 0xcb, 0x8e, 0xe6, 0xbe, 0xec, 0x70, + 0xee, 0xbe, 0xb3, 0x89, 0x76, 0xa1, 0xd2, 0xf2, 0x12, 0xe2, 0x08, 0x27, 0xc2, 0xad, 0x13, 0x61, + 0x4e, 0x1c, 0x6e, 0xa5, 0xb1, 0x9f, 0x98, 0x33, 0x44, 0x5f, 0xb5, 0xe0, 0xd4, 0x66, 0x3a, 0xb9, + 0x53, 0x28, 0x4f, 0xe7, 0x04, 0xea, 0xd5, 0xa6, 0x19, 0xf1, 0x8b, 0x0f, 0x32, 0x8d, 0x38, 0x2b, + 0x0e, 0xfa, 0x39, 0x0b, 0x46, 0x9a, 0x9e, 0x6f, 0x94, 0x2e, 0x3c, 0x81, 0x8f, 0x73, 0x99, 0x31, + 0xd0, 0x3b, 0x0e, 0xfe, 0x3f, 0xc6, 0x92, 0x73, 0xbf, 0x95, 0x6a, 0xf8, 0xb8, 0x2b, 0xd5, 0xc8, + 0x43, 0x72, 0x1b, 0xfd, 0x52, 0x09, 0x9e, 0x19, 0xe0, 0x1b, 0x99, 0xf9, 0x78, 0xd6, 0x01, 0xf9, + 0x78, 0x17, 0x60, 0x28, 0x22, 0x9d, 0x30, 0x6b, 0xfa, 0xb2, 0xa0, 0x55, 0x06, 0x41, 0x4f, 0x41, + 0xd9, 0xe9, 0x78, 0xc2, 0xf2, 0x55, 0xf6, 0xfa, 0xdc, 0xda, 0x12, 0xa6, 0xed, 0xf4, 0x4b, 0xd7, + 0x36, 0x65, 0xca, 0x71, 0x31, 0x97, 0x90, 0xf4, 0xcb, 0x60, 0xe6, 0x8e, 0x1c, 0x05, 0xc5, 0x9a, + 0xaf, 0xfd, 0x57, 0x2c, 0x38, 0xdf, 0x7f, 0x88, 0xa0, 0x17, 0x60, 0x74, 0x33, 0x72, 0x02, 0x77, + 0x8b, 0xdd, 0xd8, 0x23, 0x3b, 0x85, 0xa5, 0x61, 0xe9, 0x66, 0x6c, 0xe2, 0x50, 0x23, 0x96, 0x57, + 0x09, 0x36, 0x30, 0x64, 0xd6, 0x05, 0x35, 0x62, 0x37, 0xb2, 0x40, 0xdc, 0x8b, 0x6f, 0xff, 0x7e, + 0x29, 0x5f, 0x2c, 0xae, 0x4a, 0x0e, 0xf3, 0x9d, 0xc4, 0x57, 0x28, 0xf5, 0xf9, 0x0a, 0x6f, 0x40, + 0x35, 0x61, 0xa9, 0x64, 0xa4, 0x29, 0xf4, 0x51, 0x61, 0xa9, 0xda, 0x6c, 0xc5, 0xda, 0x10, 0xc4, + 0xb1, 0x62, 0x43, 0x17, 0x0e, 0x5f, 0xd7, 0x4e, 0x14, 0x0b, 0x47, 0xe6, 0x14, 0x62, 0x01, 0x4e, + 0x1b, 0xc5, 0xad, 0x79, 0x26, 0x0d, 0x0f, 0xa6, 0x51, 0xe9, 0xa5, 0x6b, 0x19, 0x38, 0xee, 0x79, + 0xc2, 0xfe, 0xb5, 0x12, 0x3c, 0xd1, 0x57, 0x3f, 0xea, 0x88, 0x1f, 0xeb, 0x3e, 0x11, 0x3f, 0xc7, + 0x1e, 0xe6, 0x66, 0x07, 0x0f, 0x3d, 0x98, 0x0e, 0x7e, 0x1e, 0xaa, 0x5e, 0x10, 0x13, 0xb7, 0x1b, + 0xf1, 0x4e, 0x33, 0xe2, 0xca, 0x97, 0x44, 0x3b, 0x56, 0x18, 0xf6, 0x1f, 0xf6, 0x1f, 0x6a, 0x74, + 0xad, 0xfc, 0xbe, 0xed, 0xa5, 0x97, 0x61, 0xdc, 0xe9, 0x74, 0x38, 0x1e, 0x8b, 0xae, 0xc8, 0x24, + 0x8c, 0xcf, 0x99, 0x40, 0x9c, 0xc6, 0x35, 0xc6, 0xf0, 0x70, 0xbf, 0x31, 0x6c, 0xff, 0x89, 0x05, + 0x35, 0x4c, 0x9a, 0x7c, 0xbe, 0xa3, 0xdb, 0xa2, 0x8b, 0xac, 0x22, 0x2a, 0x39, 0xd1, 0x8e, 0x8d, + 0x3d, 0x56, 0xe1, 0x28, 0xaf, 0xb3, 0x7b, 0xcb, 0x9a, 0x97, 0x0e, 0x55, 0xd6, 0x5c, 0x15, 0xb6, + 0x2e, 0xf7, 0x2f, 0x6c, 0x6d, 0x7f, 0x6d, 0x84, 0xbe, 0x5e, 0x27, 0x9c, 0x8f, 0x48, 0x23, 0xa6, + 0xdf, 0xb7, 0x1b, 0xf9, 0xd9, 0x0b, 0xcc, 0x6f, 0xe0, 0x65, 0x4c, 0xdb, 0x53, 0x2e, 0xd4, 0xd2, + 0xa1, 0xd2, 0x65, 0xcb, 0x07, 0xa6, 0xcb, 0xbe, 0x0c, 0xe3, 0x71, 0xbc, 0xb5, 0x16, 0x79, 0x3b, + 0x4e, 0x42, 0xae, 0x91, 0x3d, 0x11, 0x9c, 0xa7, 0x53, 0xdc, 0xd6, 0xaf, 0x68, 0x20, 0x4e, 0xe3, + 0xa2, 0x45, 0x98, 0xd4, 0x49, 0xab, 0x24, 0x4a, 0x58, 0x2c, 0x1e, 0x1f, 0x09, 0x2a, 0xc3, 0x4c, + 0xa7, 0xb9, 0x0a, 0x04, 0xdc, 0xfb, 0x0c, 0xd5, 0x58, 0xa9, 0x46, 0x2a, 0xc8, 0x70, 0x5a, 0x63, + 0xa5, 0xe8, 0x50, 0x59, 0x7a, 0x9e, 0x40, 0x2b, 0x70, 0x86, 0x0f, 0x8c, 0xb9, 0x4e, 0xc7, 0x78, + 0xa3, 0x91, 0x74, 0x05, 0x9d, 0xc5, 0x5e, 0x14, 0x9c, 0xf7, 0x1c, 0xdd, 0x7d, 0xa8, 0xe6, 0xa5, + 0x05, 0xe1, 0xfd, 0x53, 0xbb, 0x0f, 0x45, 0x66, 0xa9, 0x81, 0x4d, 0x3c, 0xf4, 0x41, 0x78, 0x5c, + 0xff, 0xe5, 0x01, 0xdb, 0xdc, 0x25, 0xbe, 0x20, 0xea, 0x01, 0xa8, 0x32, 0xca, 0x8b, 0xb9, 0x68, + 0x0d, 0xdc, 0xef, 0x79, 0xb4, 0x09, 0xe7, 0x15, 0xe8, 0x52, 0x90, 0xb0, 0xe8, 0xcb, 0x98, 0xd4, + 0x9d, 0x98, 0xdc, 0x88, 0x7c, 0x56, 0x41, 0xa0, 0xa6, 0x6f, 0xb8, 0x59, 0xf4, 0x92, 0x2b, 0x79, + 0x98, 0x78, 0x19, 0xdf, 0x87, 0x0a, 0x9a, 0x85, 0x1a, 0x09, 0x9c, 0x4d, 0x9f, 0xac, 0xce, 0x2f, + 0xb1, 0xba, 0x02, 0x86, 0x07, 0xfe, 0x92, 0x04, 0x60, 0x8d, 0xa3, 0xe2, 0x41, 0xc6, 0xfa, 0xde, + 0xb6, 0xb4, 0x06, 0x67, 0x5b, 0x6e, 0x87, 0x5a, 0x13, 0x9e, 0x4b, 0xe6, 0x5c, 0x16, 0x13, 0x41, + 0x3f, 0x0c, 0x2f, 0x6d, 0xa4, 0x82, 0x9d, 0x16, 0xe7, 0xd7, 0x7a, 0x70, 0x70, 0xee, 0x93, 0x74, + 0x8e, 0x75, 0xa2, 0x70, 0x77, 0x6f, 0xea, 0x4c, 0x7a, 0x8e, 0xad, 0xd1, 0x46, 0xcc, 0x61, 0xe8, + 0x2a, 0x20, 0x16, 0x39, 0x77, 0x25, 0x49, 0x3a, 0xca, 0x7c, 0x99, 0x3a, 0xcb, 0x5e, 0xe9, 0xbc, + 0x78, 0x02, 0x5d, 0xee, 0xc1, 0xc0, 0x39, 0x4f, 0xd9, 0x7f, 0x6c, 0xc1, 0xb8, 0x9a, 0xaf, 0x0f, + 0x20, 0x76, 0xd4, 0x4f, 0xc7, 0x8e, 0x2e, 0x1e, 0x5f, 0xe3, 0x31, 0xc9, 0xfb, 0x04, 0x20, 0x7d, + 0x6a, 0x14, 0x40, 0x6b, 0x45, 0xb5, 0x20, 0x59, 0x7d, 0x17, 0xa4, 0x47, 0x56, 0x23, 0xe5, 0x25, + 0x11, 0x57, 0x1e, 0x6e, 0x12, 0xf1, 0x3a, 0x9c, 0x93, 0xe6, 0x02, 0xf7, 0xf1, 0x5e, 0x09, 0x63, + 0xa5, 0xe0, 0xaa, 0xf5, 0xa7, 0x04, 0xa1, 0x73, 0x4b, 0x79, 0x48, 0x38, 0xff, 0xd9, 0x94, 0x95, + 0x32, 0x72, 0x90, 0x95, 0xa2, 0xe7, 0xf4, 0x72, 0x53, 0x16, 0x65, 0xce, 0xcc, 0xe9, 0xe5, 0xcb, + 0xeb, 0x58, 0xe3, 0xe4, 0x2b, 0xf6, 0x5a, 0x41, 0x8a, 0x1d, 0x0e, 0xad, 0xd8, 0xa5, 0x8a, 0x19, + 0xed, 0xab, 0x62, 0xa4, 0x2f, 0x69, 0xac, 0xaf, 0x2f, 0xe9, 0x7d, 0x30, 0xe1, 0x05, 0x5b, 0x24, + 0xf2, 0x12, 0xd2, 0x60, 0x73, 0x81, 0xa9, 0x9f, 0xaa, 0x5e, 0xd6, 0x97, 0x52, 0x50, 0x9c, 0xc1, + 0x4e, 0xeb, 0xc5, 0x89, 0x01, 0xf4, 0x62, 0x9f, 0xd5, 0xe8, 0x54, 0x31, 0xab, 0xd1, 0xe9, 0xe3, + 0xaf, 0x46, 0x93, 0x27, 0xba, 0x1a, 0xa1, 0x42, 0x56, 0xa3, 0x81, 0x14, 0xbd, 0xb1, 0xa1, 0x3b, + 0x7b, 0xc0, 0x86, 0xae, 0xdf, 0x52, 0x74, 0xee, 0xc8, 0x4b, 0x51, 0xfe, 0x2a, 0xf3, 0xd8, 0x91, + 0x56, 0x99, 0x4f, 0x97, 0xe0, 0x9c, 0xd6, 0xc3, 0x74, 0xf4, 0x7b, 0x4d, 0xaa, 0x89, 0x58, 0x5d, + 0x7f, 0xee, 0x6f, 0x35, 0x42, 0x99, 0x75, 0x54, 0xb4, 0x82, 0x60, 0x03, 0x8b, 0x45, 0x04, 0x93, + 0x88, 0x15, 0x70, 0xcb, 0x2a, 0xe9, 0x79, 0xd1, 0x8e, 0x15, 0x06, 0x1d, 0x5f, 0xf4, 0xb7, 0xc8, + 0xb2, 0xc8, 0xd6, 0x4d, 0x99, 0xd7, 0x20, 0x6c, 0xe2, 0xa1, 0xe7, 0x38, 0x13, 0xa6, 0x20, 0xa8, + 0xa2, 0x1e, 0x13, 0x77, 0x70, 0x49, 0x9d, 0xa0, 0xa0, 0x52, 0x1c, 0x16, 0xfa, 0x5d, 0xe9, 0x15, + 0x87, 0x85, 0x2e, 0x28, 0x0c, 0xfb, 0xbf, 0x5b, 0xf0, 0x44, 0x6e, 0x57, 0x3c, 0x80, 0xc5, 0x77, + 0x37, 0xbd, 0xf8, 0xae, 0x17, 0xb5, 0xdd, 0x30, 0xde, 0xa2, 0xcf, 0x42, 0xfc, 0x6f, 0x2c, 0x98, + 0xd0, 0xf8, 0x0f, 0xe0, 0x55, 0xbd, 0xf4, 0xab, 0x16, 0xb7, 0xb3, 0xaa, 0xf5, 0xbc, 0xdb, 0x1f, + 0xb3, 0x77, 0xe3, 0x87, 0xa2, 0x73, 0xae, 0xac, 0x14, 0x77, 0xc0, 0x09, 0xc0, 0x1e, 0x0c, 0xb3, + 0x03, 0x8c, 0xb8, 0x98, 0xc3, 0xd9, 0x34, 0x7f, 0x76, 0x18, 0xa2, 0x0f, 0x87, 0xd8, 0xdf, 0x18, + 0x0b, 0x86, 0xac, 0xbc, 0xa0, 0x17, 0x53, 0x6d, 0xde, 0x10, 0x41, 0xd4, 0xba, 0xbc, 0xa0, 0x68, + 0xc7, 0x0a, 0xc3, 0x6e, 0xc3, 0x54, 0x9a, 0xf8, 0x02, 0x69, 0xb2, 0x80, 0x9f, 0x81, 0x5e, 0x73, + 0x16, 0x6a, 0x0e, 0x7b, 0x6a, 0xb9, 0xeb, 0x64, 0xaf, 0x6d, 0x9c, 0x93, 0x00, 0xac, 0x71, 0xec, + 0xdf, 0xb4, 0xe0, 0x4c, 0xce, 0xcb, 0x14, 0x18, 0x3c, 0x9e, 0x68, 0x2d, 0x90, 0xb7, 0xe0, 0xfe, + 0x30, 0x8c, 0x34, 0x48, 0xd3, 0x91, 0x21, 0x25, 0x86, 0xce, 0x5d, 0xe0, 0xcd, 0x58, 0xc2, 0xed, + 0xff, 0x62, 0xc1, 0xa9, 0xb4, 0xac, 0x31, 0xd5, 0x9a, 0xfc, 0x65, 0x16, 0xbc, 0xd8, 0x0d, 0x77, + 0x48, 0xb4, 0x47, 0xdf, 0x9c, 0x4b, 0xad, 0xb4, 0xe6, 0x5c, 0x0f, 0x06, 0xce, 0x79, 0x8a, 0x55, + 0x18, 0x6b, 0xa8, 0xde, 0x96, 0x23, 0xe5, 0x66, 0x91, 0x23, 0x45, 0x7f, 0x4c, 0xf3, 0xf8, 0x49, + 0xb1, 0xc4, 0x26, 0x7f, 0xfb, 0x3b, 0x43, 0xa0, 0xb2, 0x4b, 0xd8, 0x79, 0x7e, 0x41, 0xd1, 0x10, + 0xa9, 0xfb, 0x30, 0xca, 0x03, 0xdc, 0x87, 0x21, 0x07, 0xc3, 0xd0, 0xfd, 0x0e, 0xd8, 0xb8, 0xf7, + 0xc2, 0x74, 0x12, 0xaa, 0x37, 0xdc, 0xd0, 0x20, 0x6c, 0xe2, 0x51, 0x49, 0x7c, 0x6f, 0x87, 0xf0, + 0x87, 0x86, 0xd3, 0x92, 0x2c, 0x4b, 0x00, 0xd6, 0x38, 0x54, 0x92, 0x86, 0xd7, 0x6c, 0x8a, 0xad, + 0xb8, 0x92, 0x84, 0xf6, 0x0e, 0x66, 0x10, 0x5e, 0x34, 0x32, 0xdc, 0x16, 0xd6, 0xa9, 0x51, 0x34, + 0x32, 0xdc, 0xc6, 0x0c, 0x42, 0xed, 0xa9, 0x20, 0x8c, 0xda, 0xec, 0x5a, 0xcd, 0x86, 0xe2, 0x22, + 0xac, 0x52, 0x65, 0x4f, 0x5d, 0xef, 0x45, 0xc1, 0x79, 0xcf, 0xd1, 0x11, 0xd8, 0x89, 0x48, 0xc3, + 0x73, 0x13, 0x93, 0x1a, 0xa4, 0x47, 0xe0, 0x5a, 0x0f, 0x06, 0xce, 0x79, 0x0a, 0xcd, 0xc1, 0x29, + 0x99, 0x1d, 0x24, 0x73, 0xbf, 0x47, 0xd3, 0xb9, 0xa6, 0x38, 0x0d, 0xc6, 0x59, 0x7c, 0xaa, 0x6d, + 0xda, 0xa2, 0xec, 0x03, 0x33, 0x62, 0x0d, 0x6d, 0x23, 0xcb, 0x41, 0x60, 0x85, 0x61, 0x7f, 0xb2, + 0x4c, 0x57, 0xc7, 0x3e, 0xa5, 0xee, 0x1f, 0x58, 0xf4, 0x4d, 0x7a, 0x44, 0x0e, 0x0d, 0x30, 0x22, + 0x5f, 0x84, 0xb1, 0xdb, 0x71, 0x18, 0xa8, 0xc8, 0x96, 0x4a, 0xdf, 0xc8, 0x16, 0x03, 0x2b, 0x3f, + 0xb2, 0x65, 0xb8, 0xa8, 0xc8, 0x96, 0x91, 0x23, 0x46, 0xb6, 0x7c, 0xb3, 0x02, 0xaa, 0x58, 0xf4, + 0x75, 0x92, 0xdc, 0x09, 0xa3, 0x6d, 0x2f, 0x68, 0xb1, 0xac, 0xaa, 0xaf, 0x5a, 0x30, 0xc6, 0xe7, + 0xcb, 0xb2, 0x99, 0x99, 0xd0, 0x2c, 0xa8, 0x0a, 0x71, 0x8a, 0xd9, 0xcc, 0x86, 0xc1, 0x28, 0x73, + 0xc7, 0x91, 0x09, 0xc2, 0x29, 0x89, 0xd0, 0xc7, 0x00, 0xa4, 0xdf, 0xb2, 0x29, 0x55, 0xe6, 0x52, + 0x31, 0xf2, 0x61, 0xd2, 0xd4, 0xb6, 0xe9, 0x86, 0x62, 0x82, 0x0d, 0x86, 0xe8, 0xd3, 0xd9, 0x6b, + 0x87, 0x3f, 0x72, 0x22, 0x7d, 0x33, 0x48, 0xce, 0x06, 0x86, 0x11, 0x2f, 0x68, 0xd1, 0x71, 0x22, + 0x22, 0x00, 0x7e, 0x28, 0x2f, 0x23, 0x71, 0x39, 0x74, 0x1a, 0x75, 0xc7, 0x77, 0x02, 0x97, 0x44, + 0x4b, 0x1c, 0xdd, 0xbc, 0x74, 0x8f, 0x35, 0x60, 0x49, 0xa8, 0xa7, 0xcc, 0x76, 0x65, 0x90, 0x32, + 0xdb, 0xe7, 0xdf, 0x0f, 0x93, 0x3d, 0x1f, 0xf3, 0x50, 0x29, 0x1a, 0x47, 0xcf, 0xee, 0xb0, 0xff, + 0xe9, 0xb0, 0x5e, 0xb4, 0xae, 0x87, 0x0d, 0x5e, 0xec, 0x39, 0xd2, 0x5f, 0x54, 0xd8, 0x9e, 0x05, + 0x0e, 0x11, 0xe3, 0xe2, 0x3e, 0xd5, 0x88, 0x4d, 0x96, 0x74, 0x8c, 0x76, 0x9c, 0x88, 0x04, 0x27, + 0x3d, 0x46, 0xd7, 0x14, 0x13, 0x6c, 0x30, 0x44, 0x5b, 0xa9, 0x18, 0xed, 0xcb, 0xc7, 0x8f, 0xd1, + 0x66, 0xb5, 0x1a, 0xf2, 0x0a, 0xc6, 0x7e, 0xc1, 0x82, 0x89, 0x20, 0x35, 0x72, 0x8b, 0x09, 0xcb, + 0xca, 0x9f, 0x15, 0xfc, 0xae, 0x81, 0x74, 0x1b, 0xce, 0xf0, 0xcf, 0x5b, 0xd2, 0x2a, 0x87, 0x5c, + 0xd2, 0x74, 0xd5, 0xf8, 0xe1, 0x7e, 0x55, 0xe3, 0x51, 0xa0, 0xae, 0xcd, 0x18, 0x29, 0xfc, 0xda, + 0x0c, 0xc8, 0xb9, 0x32, 0xe3, 0x16, 0xd4, 0xdc, 0x88, 0x38, 0xc9, 0x11, 0x6f, 0x50, 0x60, 0x47, + 0xe1, 0xf3, 0x92, 0x00, 0xd6, 0xb4, 0xec, 0xff, 0x3d, 0x04, 0xa7, 0x65, 0x8f, 0xc8, 0x90, 0x4e, + 0xba, 0x3e, 0x72, 0xbe, 0xda, 0xb8, 0x55, 0xeb, 0xe3, 0x15, 0x09, 0xc0, 0x1a, 0x87, 0xda, 0x63, + 0xdd, 0x98, 0xac, 0x76, 0x48, 0xb0, 0xec, 0x6d, 0xc6, 0xe2, 0xfc, 0x51, 0x4d, 0x94, 0x1b, 0x1a, + 0x84, 0x4d, 0x3c, 0x6a, 0x8c, 0x73, 0xbb, 0x38, 0xce, 0x86, 0x83, 0x0b, 0x7b, 0x1b, 0x4b, 0x38, + 0xfa, 0xe5, 0xdc, 0xbb, 0x77, 0x8a, 0x49, 0x84, 0xe8, 0x89, 0x64, 0x3d, 0xe4, 0xa5, 0x3b, 0x7f, + 0xd3, 0x82, 0x73, 0xbc, 0x55, 0xf6, 0xe4, 0x8d, 0x4e, 0xc3, 0x49, 0x48, 0x5c, 0x4c, 0xb1, 0xd1, + 0x1c, 0xf9, 0xb4, 0xf3, 0x35, 0x8f, 0x2d, 0xce, 0x97, 0x06, 0xbd, 0x65, 0xc1, 0xa9, 0xed, 0x54, + 0xe6, 0xac, 0x5c, 0x3a, 0x8e, 0x59, 0xe3, 0x21, 0x9d, 0x8e, 0xab, 0xa7, 0x5a, 0xba, 0x3d, 0xc6, + 0x59, 0xee, 0xf6, 0x7f, 0xb5, 0xc0, 0x54, 0xa3, 0x83, 0x59, 0x80, 0xc6, 0x35, 0x87, 0xa5, 0x03, + 0xae, 0x39, 0x94, 0xc6, 0x62, 0x79, 0xb0, 0xcd, 0xc9, 0xd0, 0x21, 0x36, 0x27, 0x95, 0xbe, 0xd6, + 0xe5, 0x53, 0x50, 0xee, 0x7a, 0x0d, 0xb1, 0xbf, 0xd0, 0xa7, 0xa2, 0x4b, 0x0b, 0x98, 0xb6, 0xdb, + 0xff, 0xa8, 0xa2, 0xfd, 0x09, 0x22, 0xcf, 0xe0, 0xfb, 0xe2, 0xb5, 0x9b, 0xaa, 0x64, 0x07, 0x7f, + 0xf3, 0xeb, 0x3d, 0x25, 0x3b, 0x7e, 0xfc, 0xf0, 0x69, 0x24, 0xbc, 0x83, 0xfa, 0x55, 0xec, 0x18, + 0x39, 0x20, 0x87, 0xe4, 0x36, 0x54, 0xe9, 0x16, 0x8c, 0x39, 0x06, 0xab, 0x29, 0xa1, 0xaa, 0x57, + 0x44, 0xfb, 0xbd, 0xfd, 0xe9, 0x1f, 0x3b, 0xbc, 0x58, 0xf2, 0x69, 0xac, 0xe8, 0xa3, 0x18, 0x6a, + 0xf4, 0x37, 0x4b, 0x77, 0x11, 0x9b, 0xbb, 0x1b, 0x4a, 0x67, 0x4a, 0x40, 0x21, 0xb9, 0x34, 0x9a, + 0x0f, 0x0a, 0xa0, 0xc6, 0xee, 0x27, 0x63, 0x4c, 0xf9, 0x1e, 0x70, 0x4d, 0x25, 0x9d, 0x48, 0xc0, + 0xbd, 0xfd, 0xe9, 0x97, 0x0f, 0xcf, 0x54, 0x3d, 0x8e, 0x35, 0x0b, 0xfb, 0x8b, 0x43, 0x7a, 0xec, + 0x8a, 0x4a, 0x2d, 0xdf, 0x17, 0x63, 0xf7, 0xa5, 0xcc, 0xd8, 0xbd, 0xd0, 0x33, 0x76, 0x27, 0xf4, + 0x3d, 0x5a, 0xa9, 0xd1, 0xf8, 0xa0, 0x0d, 0x81, 0x83, 0xfd, 0x0d, 0xcc, 0x02, 0x7a, 0xa3, 0xeb, + 0x45, 0x24, 0x5e, 0x8b, 0xba, 0x81, 0x17, 0xb4, 0xc4, 0xd5, 0xc5, 0x86, 0x05, 0x94, 0x02, 0xe3, + 0x2c, 0x3e, 0xbb, 0xf6, 0x78, 0x2f, 0x70, 0x6f, 0x39, 0x3b, 0x7c, 0x54, 0x19, 0xc5, 0x2b, 0xd6, + 0x45, 0x3b, 0x56, 0x18, 0xf6, 0xd7, 0xd8, 0x19, 0xb3, 0x91, 0x67, 0x47, 0xc7, 0x84, 0xcf, 0x2e, + 0x84, 0xe3, 0x95, 0x2f, 0xd4, 0x98, 0xe0, 0xb7, 0xc0, 0x71, 0x18, 0xba, 0x03, 0x23, 0x9b, 0xfc, + 0x46, 0x94, 0x62, 0xaa, 0x7c, 0x8a, 0xeb, 0x55, 0x58, 0x21, 0x6e, 0x79, 0xd7, 0xca, 0x3d, 0xfd, + 0x13, 0x4b, 0x6e, 0xf6, 0x37, 0x86, 0xe0, 0x54, 0xe6, 0xca, 0xb0, 0x54, 0xcd, 0xb1, 0xd2, 0x81, + 0x35, 0xc7, 0x3e, 0x0c, 0xd0, 0x20, 0x1d, 0x3f, 0xdc, 0x63, 0xe6, 0xd8, 0xd0, 0xa1, 0xcd, 0x31, + 0x65, 0xc1, 0x2f, 0x28, 0x2a, 0xd8, 0xa0, 0x28, 0xca, 0x7d, 0xf0, 0x12, 0x66, 0x99, 0x72, 0x1f, + 0x46, 0xa1, 0xdd, 0xe1, 0x07, 0x5b, 0x68, 0xd7, 0x83, 0x53, 0x5c, 0x44, 0x95, 0xcd, 0x76, 0x84, + 0xa4, 0x35, 0x16, 0x0f, 0xbc, 0x90, 0x26, 0x83, 0xb3, 0x74, 0x1f, 0xe6, 0x8d, 0x80, 0xe8, 0x5d, + 0x50, 0x93, 0xdf, 0x39, 0x9e, 0xaa, 0xe9, 0x8c, 0x60, 0x39, 0x0c, 0xd8, 0x4d, 0x7d, 0xe2, 0xa7, + 0xfd, 0xf9, 0x12, 0xb5, 0x9e, 0xf9, 0x3f, 0x55, 0xd9, 0xe1, 0x59, 0x18, 0x76, 0xba, 0xc9, 0x56, + 0xd8, 0x73, 0xcd, 0xcb, 0x1c, 0x6b, 0xc5, 0x02, 0x8a, 0x96, 0x61, 0xa8, 0xa1, 0xb3, 0xf5, 0x0f, + 0xd3, 0x8b, 0xda, 0x11, 0xe9, 0x24, 0x04, 0x33, 0x2a, 0xe8, 0x49, 0x18, 0x4a, 0x9c, 0x56, 0xea, + 0xfa, 0xed, 0x0d, 0xa7, 0x15, 0x63, 0xd6, 0x6a, 0x2e, 0x9a, 0x43, 0x07, 0x2c, 0x9a, 0x2f, 0xc3, + 0x78, 0xec, 0xb5, 0x02, 0x27, 0xe9, 0x46, 0xc4, 0x38, 0xf4, 0xd2, 0x71, 0x0c, 0x26, 0x10, 0xa7, + 0x71, 0xed, 0xdf, 0x19, 0x83, 0xb3, 0xeb, 0xf3, 0x2b, 0xb2, 0xf2, 0xe4, 0x89, 0xc5, 0xfe, 0xe7, + 0xf1, 0x78, 0x70, 0xb1, 0xff, 0x7d, 0xb8, 0xfb, 0x46, 0xec, 0xbf, 0x6f, 0xc4, 0xfe, 0x7f, 0xda, + 0x82, 0x9a, 0x0a, 0x79, 0x17, 0x01, 0xb7, 0x1f, 0x2a, 0x5e, 0x02, 0x15, 0xff, 0x2c, 0x22, 0x9f, + 0xe5, 0x5f, 0xac, 0x99, 0x9f, 0x5c, 0x32, 0xc0, 0x7d, 0x05, 0x3a, 0x54, 0x32, 0x80, 0xca, 0x94, + 0xa8, 0x14, 0x91, 0x29, 0xd1, 0xe7, 0x53, 0xe5, 0x66, 0x4a, 0x7c, 0xc1, 0x82, 0x51, 0xe7, 0xcd, + 0x6e, 0x44, 0x16, 0xc8, 0xce, 0x6a, 0x47, 0xee, 0xde, 0x5e, 0x2b, 0x5e, 0x80, 0x39, 0xcd, 0x44, + 0xd4, 0xa3, 0xd7, 0x0d, 0xd8, 0x14, 0x21, 0x95, 0x19, 0x31, 0x52, 0x44, 0x66, 0x44, 0x9e, 0x38, + 0x07, 0x66, 0x46, 0xbc, 0x0c, 0xe3, 0xae, 0x1f, 0x06, 0x64, 0x2d, 0x0a, 0x93, 0xd0, 0x0d, 0x7d, + 0x61, 0x4c, 0x2b, 0x95, 0x30, 0x6f, 0x02, 0x71, 0x1a, 0xb7, 0x5f, 0x5a, 0x45, 0xed, 0xb8, 0x69, + 0x15, 0xf0, 0x90, 0x12, 0x00, 0x7f, 0x41, 0x27, 0x00, 0x8e, 0x16, 0x71, 0x45, 0x77, 0xde, 0x17, + 0x19, 0x24, 0x0b, 0x10, 0x7d, 0x99, 0xdf, 0xb3, 0x42, 0xcd, 0xd1, 0xf9, 0xb0, 0x4d, 0xcd, 0xad, + 0x31, 0xd6, 0x25, 0xaf, 0x9f, 0xc0, 0x80, 0xbd, 0xb5, 0xae, 0xd9, 0xa8, 0xbb, 0x57, 0x74, 0x13, + 0x4e, 0x0b, 0x72, 0x9c, 0x04, 0xc5, 0xaf, 0x94, 0xe0, 0x07, 0x0e, 0x14, 0x01, 0xdd, 0x01, 0x48, + 0x9c, 0x96, 0x18, 0xa8, 0xe2, 0x98, 0xe2, 0x98, 0xc1, 0x86, 0x1b, 0x92, 0x1e, 0xcf, 0xac, 0x57, + 0x7f, 0xd9, 0x01, 0x80, 0xfc, 0xcd, 0x62, 0x0c, 0x43, 0xbf, 0xa7, 0x8a, 0x18, 0x0e, 0x7d, 0x82, + 0x19, 0x84, 0x2e, 0xff, 0x11, 0x69, 0xe9, 0x7b, 0xf8, 0xd4, 0xe7, 0xc3, 0xac, 0x15, 0x0b, 0x28, + 0x7a, 0x0f, 0x8c, 0x3a, 0xbe, 0xcf, 0xf3, 0x3f, 0x48, 0x2c, 0x6a, 0xc1, 0xeb, 0x4a, 0x48, 0x1a, + 0x84, 0x4d, 0x3c, 0xfb, 0xcf, 0x4a, 0x30, 0x7d, 0x80, 0x4e, 0x41, 0x2f, 0xc1, 0x58, 0x18, 0xb5, + 0x9c, 0xc0, 0x7b, 0x93, 0x17, 0x93, 0xa8, 0xa4, 0x4b, 0x56, 0xad, 0x1a, 0x30, 0x9c, 0xc2, 0x94, + 0x11, 0xfb, 0xc3, 0x7d, 0x22, 0xf6, 0xdf, 0x03, 0xa3, 0x09, 0x71, 0xda, 0x22, 0x3c, 0x49, 0xec, + 0xbf, 0xf5, 0xb9, 0xab, 0x06, 0x61, 0x13, 0x8f, 0x6a, 0xb1, 0x09, 0xc7, 0x75, 0x49, 0x1c, 0xcb, + 0x90, 0x7c, 0xe1, 0xc3, 0x2c, 0x2c, 0xde, 0x9f, 0xb9, 0x86, 0xe7, 0x52, 0x2c, 0x70, 0x86, 0x65, + 0xb6, 0xc3, 0x6b, 0x03, 0x76, 0xf8, 0xaf, 0x97, 0xe0, 0xa9, 0xfb, 0xae, 0x6e, 0x03, 0x67, 0x4b, + 0x74, 0x63, 0x12, 0x65, 0x07, 0xce, 0x8d, 0x98, 0x44, 0x98, 0x41, 0x78, 0x2f, 0x75, 0x3a, 0xc6, + 0x3d, 0x87, 0x45, 0x27, 0xe7, 0xf0, 0x5e, 0x4a, 0xb1, 0xc0, 0x19, 0x96, 0x47, 0x1d, 0x96, 0x7f, + 0xb7, 0x04, 0xcf, 0x0c, 0x60, 0x03, 0x14, 0x98, 0xc4, 0x94, 0x4e, 0x25, 0x2b, 0x3f, 0x9c, 0x54, + 0xb2, 0xa3, 0x76, 0xd7, 0xd7, 0x4a, 0x70, 0xbe, 0xff, 0x52, 0x8c, 0x7e, 0x82, 0xee, 0xe1, 0x65, + 0x4c, 0x92, 0x99, 0x85, 0x76, 0x86, 0xef, 0xdf, 0x53, 0x20, 0x9c, 0xc5, 0x45, 0x33, 0x00, 0x1d, + 0x27, 0xd9, 0x8a, 0x2f, 0xed, 0x7a, 0x71, 0x22, 0x6a, 0x29, 0x4c, 0xf0, 0x13, 0x23, 0xd9, 0x8a, + 0x0d, 0x0c, 0xca, 0x8e, 0xfd, 0x5b, 0x08, 0xaf, 0x87, 0x09, 0x7f, 0x88, 0x6f, 0x23, 0xce, 0xc8, + 0x7a, 0xd3, 0x06, 0x08, 0x67, 0x71, 0x29, 0x3b, 0x76, 0x26, 0xc9, 0x05, 0xe5, 0xfb, 0x0b, 0xc6, + 0x6e, 0x59, 0xb5, 0x62, 0x03, 0x23, 0x9b, 0x5f, 0x57, 0x39, 0x38, 0xbf, 0xce, 0xfe, 0x87, 0x25, + 0x78, 0xa2, 0xaf, 0x29, 0x37, 0xd8, 0x04, 0x7c, 0xf4, 0x72, 0xe2, 0x8e, 0x36, 0x76, 0x0e, 0x99, + 0xe9, 0xf5, 0x27, 0x7d, 0x46, 0x9a, 0xc8, 0xf4, 0xca, 0x2e, 0x15, 0xd6, 0x61, 0x97, 0x8a, 0x47, + 0xa8, 0x3f, 0x7b, 0x92, 0xbb, 0x86, 0x0e, 0x91, 0xdc, 0x95, 0xf9, 0x18, 0x95, 0x01, 0x27, 0xf2, + 0xb7, 0xfa, 0x77, 0x2f, 0xdd, 0xfa, 0x0d, 0xe4, 0x1d, 0x5d, 0x80, 0xd3, 0x5e, 0xc0, 0xee, 0x1e, + 0x58, 0xef, 0x6e, 0x8a, 0xf4, 0xfa, 0x52, 0xfa, 0x5a, 0xcd, 0xa5, 0x0c, 0x1c, 0xf7, 0x3c, 0xf1, + 0x08, 0x26, 0xdb, 0x1d, 0xb1, 0x4b, 0x3f, 0x0c, 0x35, 0x45, 0x9b, 0x07, 0x10, 0xab, 0x0f, 0xda, + 0x13, 0x40, 0xac, 0xbe, 0xa6, 0x81, 0x45, 0x7b, 0x82, 0x9a, 0x9b, 0x99, 0x91, 0x79, 0x8d, 0xec, + 0x31, 0xdb, 0xd3, 0xfe, 0x51, 0x18, 0x53, 0x3e, 0x8c, 0x41, 0x0b, 0xcc, 0xdb, 0x5f, 0x1c, 0x86, + 0xf1, 0x54, 0xf9, 0xa8, 0x94, 0xcb, 0xd0, 0x3a, 0xd0, 0x65, 0xc8, 0x02, 0xc2, 0xbb, 0x81, 0xbc, + 0x7d, 0xc2, 0x08, 0x08, 0xef, 0x06, 0x04, 0x73, 0x18, 0x35, 0x1d, 0x1b, 0xd1, 0x1e, 0xee, 0x06, + 0x22, 0x70, 0x53, 0x99, 0x8e, 0x0b, 0xac, 0x15, 0x0b, 0x28, 0xfa, 0x84, 0x05, 0x63, 0x31, 0xf3, + 0x47, 0x73, 0x87, 0xab, 0xf8, 0xa0, 0x57, 0x8f, 0x5f, 0x1d, 0x4b, 0x95, 0x4a, 0x63, 0x31, 0x1f, + 0x66, 0x0b, 0x4e, 0x71, 0x44, 0x3f, 0x6f, 0x41, 0x4d, 0x15, 0xc9, 0x16, 0x57, 0xc4, 0xac, 0x17, + 0x5b, 0x9d, 0x8b, 0x7b, 0xea, 0x94, 0x6b, 0x5f, 0x5f, 0x29, 0xab, 0x19, 0xa3, 0x58, 0x79, 0x43, + 0x47, 0x4e, 0xc6, 0x1b, 0x0a, 0x39, 0x9e, 0xd0, 0x77, 0x41, 0xad, 0xed, 0x04, 0x5e, 0x93, 0xc4, + 0x09, 0x77, 0x50, 0xca, 0xa2, 0x81, 0xb2, 0x11, 0x6b, 0x38, 0x5d, 0xec, 0x62, 0xf6, 0x62, 0x89, + 0xe1, 0x51, 0x64, 0x8b, 0xdd, 0xba, 0x6e, 0xc6, 0x26, 0x8e, 0xe9, 0xfe, 0x84, 0x87, 0xea, 0xfe, + 0x1c, 0x3d, 0xc0, 0xfd, 0xf9, 0xf7, 0x2d, 0x38, 0x97, 0xfb, 0xd5, 0x1e, 0xdd, 0x50, 0x3e, 0xfb, + 0x4b, 0x15, 0x38, 0x93, 0x53, 0x07, 0x0e, 0xed, 0x99, 0xe3, 0xd9, 0x2a, 0xe2, 0x54, 0x3c, 0x7d, + 0xc8, 0x2b, 0xbb, 0x31, 0x67, 0x10, 0x1f, 0xee, 0xf0, 0x41, 0x1f, 0x00, 0x94, 0x1f, 0xec, 0x01, + 0x80, 0x31, 0x2c, 0x87, 0x1e, 0xea, 0xb0, 0xac, 0xdc, 0x7f, 0x58, 0xa2, 0xaf, 0x5b, 0x30, 0xd5, + 0xee, 0x53, 0x7c, 0x58, 0x38, 0xf5, 0x6e, 0x9e, 0x4c, 0x69, 0xe3, 0xfa, 0x93, 0x77, 0xf7, 0xa7, + 0xfb, 0xd6, 0x7c, 0xc6, 0x7d, 0xa5, 0xb2, 0xbf, 0x53, 0x06, 0x56, 0x84, 0x90, 0xd5, 0xfa, 0xd9, + 0x43, 0x1f, 0x37, 0xcb, 0x49, 0x5a, 0x45, 0x95, 0x3e, 0xe4, 0xc4, 0x55, 0x39, 0x4a, 0xde, 0x83, + 0x79, 0xd5, 0x29, 0xb3, 0x4a, 0xab, 0x34, 0x80, 0xd2, 0xf2, 0x65, 0xdd, 0xce, 0x72, 0xf1, 0x75, + 0x3b, 0x6b, 0xd9, 0x9a, 0x9d, 0xf7, 0xff, 0xc4, 0x43, 0x8f, 0xe4, 0x27, 0xfe, 0xeb, 0x16, 0x57, + 0x3c, 0x99, 0xaf, 0xa0, 0x2d, 0x03, 0xeb, 0x3e, 0x96, 0xc1, 0xf3, 0xec, 0x72, 0xe0, 0xe6, 0x15, + 0xe2, 0xf8, 0xc2, 0x82, 0x30, 0xef, 0xf9, 0x65, 0xed, 0x58, 0x61, 0xb0, 0xeb, 0xbc, 0x7c, 0x3f, + 0xbc, 0x73, 0xa9, 0xdd, 0x49, 0xf6, 0x84, 0x2d, 0xa1, 0xaf, 0xf3, 0x52, 0x10, 0x6c, 0x60, 0xd9, + 0x7f, 0xa3, 0xc4, 0x47, 0xa0, 0x38, 0xd6, 0x7f, 0x29, 0x73, 0x01, 0xcb, 0xe0, 0x27, 0xe2, 0x1f, + 0x05, 0x70, 0xd5, 0xbd, 0xa0, 0xe2, 0xbc, 0xe5, 0xca, 0xb1, 0xef, 0x55, 0x14, 0xf4, 0xf4, 0x6b, + 0xe8, 0x36, 0x6c, 0xf0, 0x4b, 0xe9, 0xd2, 0xf2, 0x81, 0xba, 0x34, 0xa5, 0x56, 0x86, 0x0e, 0x58, + 0xed, 0xfe, 0xcc, 0x82, 0x94, 0x45, 0x84, 0x3a, 0x50, 0xa1, 0xe2, 0xee, 0x15, 0x73, 0xe5, 0xa9, + 0x49, 0x9a, 0xaa, 0x46, 0x31, 0xec, 0xd9, 0x4f, 0xcc, 0x19, 0x21, 0x5f, 0x9c, 0xfe, 0x97, 0x8a, + 0xb8, 0x96, 0xd7, 0x64, 0x78, 0x25, 0x0c, 0xb7, 0xf9, 0xa1, 0xa1, 0x8e, 0x24, 0xb0, 0x5f, 0x82, + 0xc9, 0x1e, 0xa1, 0xd8, 0x5d, 0x0b, 0xa1, 0xbc, 0xe7, 0xd5, 0x18, 0xae, 0x2c, 0x55, 0x10, 0x73, + 0x98, 0xfd, 0x35, 0x0b, 0x4e, 0x67, 0xc9, 0xa3, 0x2f, 0x5b, 0x30, 0x19, 0x67, 0xe9, 0x9d, 0x54, + 0xdf, 0xa9, 0x08, 0xbe, 0x1e, 0x10, 0xee, 0x15, 0xc2, 0xfe, 0x3f, 0x62, 0xf0, 0xdf, 0xf2, 0x82, + 0x46, 0x78, 0x47, 0x19, 0x26, 0x56, 0x5f, 0xc3, 0x84, 0xce, 0x47, 0x77, 0x8b, 0x34, 0xba, 0x7e, + 0x4f, 0x8e, 0xe2, 0xba, 0x68, 0xc7, 0x0a, 0x83, 0xa5, 0x64, 0x75, 0x45, 0x61, 0xdf, 0xcc, 0xa0, + 0x5c, 0x10, 0xed, 0x58, 0x61, 0xa0, 0x17, 0x61, 0xcc, 0xbc, 0xcb, 0x58, 0x8c, 0x4b, 0x66, 0x90, + 0x9b, 0xd7, 0x1e, 0xe3, 0x14, 0x16, 0x9a, 0x01, 0x50, 0x46, 0x8e, 0x5c, 0x22, 0x99, 0x13, 0x46, + 0x69, 0xa2, 0x18, 0x1b, 0x18, 0x2c, 0x01, 0x92, 0x5f, 0x18, 0x2c, 0xe3, 0x5c, 0x79, 0x02, 0xa4, + 0x68, 0xc3, 0x0a, 0x4a, 0xb5, 0x49, 0xdb, 0x09, 0xba, 0x8e, 0x4f, 0x7b, 0x48, 0x64, 0x6d, 0xab, + 0x69, 0xb8, 0xa2, 0x20, 0xd8, 0xc0, 0xa2, 0x6f, 0x9c, 0x78, 0x6d, 0xf2, 0x6a, 0x18, 0xc8, 0xc8, + 0x2b, 0x7d, 0xa4, 0x22, 0xda, 0xb1, 0xc2, 0xb0, 0xff, 0x93, 0x05, 0xd9, 0x6b, 0xe5, 0x53, 0x5e, + 0x0e, 0xeb, 0xc0, 0x4c, 0xf1, 0x74, 0x9e, 0x69, 0x69, 0xa0, 0x3c, 0x53, 0x33, 0x05, 0xb4, 0x7c, + 0xdf, 0x14, 0xd0, 0x1f, 0xd4, 0x37, 0x76, 0xf1, 0x5c, 0xd1, 0xd1, 0xbc, 0xdb, 0xba, 0x90, 0x0d, + 0xc3, 0xae, 0xa3, 0x6a, 0x89, 0x8c, 0xf1, 0xbd, 0xc3, 0xfc, 0x1c, 0x43, 0x12, 0x10, 0x7b, 0x15, + 0x6a, 0xea, 0x64, 0x41, 0x6e, 0x54, 0xad, 0xfc, 0x8d, 0xea, 0x40, 0x29, 0x6f, 0xf5, 0xcd, 0x6f, + 0x7c, 0xf7, 0xe9, 0x77, 0x7c, 0xeb, 0xbb, 0x4f, 0xbf, 0xe3, 0x8f, 0xbe, 0xfb, 0xf4, 0x3b, 0x3e, + 0x71, 0xf7, 0x69, 0xeb, 0x1b, 0x77, 0x9f, 0xb6, 0xbe, 0x75, 0xf7, 0x69, 0xeb, 0x8f, 0xee, 0x3e, + 0x6d, 0x7d, 0xe7, 0xee, 0xd3, 0xd6, 0x17, 0xfe, 0xfd, 0xd3, 0xef, 0x78, 0x35, 0x37, 0xf4, 0x8e, + 0xfe, 0x78, 0xb7, 0xdb, 0x98, 0xdd, 0xb9, 0xc8, 0xa2, 0xbf, 0xe8, 0xf4, 0x9a, 0x35, 0xc6, 0xd4, + 0xac, 0x9c, 0x5e, 0xff, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x68, 0x10, 0x17, 0x6c, 0x0d, 0xd3, 0x00, + 0x00, } func (m *AWSAuthConfig) Marshal() (dAtA []byte, err error) { @@ -11673,6 +11675,16 @@ func (m *ResourceOverride) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + { + size, err := m.IgnoreResourceUpdates.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x32 i-- if m.UseOpenLibs { dAtA[i] = 1 @@ -16062,6 +16074,8 @@ func (m *ResourceOverride) Size() (n int) { } } n += 2 + l = m.IgnoreResourceUpdates.Size() + n += 1 + l + sovGenerated(uint64(l)) return n } @@ -18703,6 +18717,7 @@ func (this *ResourceOverride) String() string { `Actions:` + fmt.Sprintf("%v", this.Actions) + `,`, `KnownTypeFields:` + repeatedStringForKnownTypeFields + `,`, `UseOpenLibs:` + fmt.Sprintf("%v", this.UseOpenLibs) + `,`, + `IgnoreResourceUpdates:` + strings.Replace(strings.Replace(this.IgnoreResourceUpdates.String(), "OverrideIgnoreDiff", "OverrideIgnoreDiff", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -41431,6 +41446,39 @@ func (m *ResourceOverride) Unmarshal(dAtA []byte) error { } } m.UseOpenLibs = bool(v != 0) + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field IgnoreResourceUpdates", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.IgnoreResourceUpdates.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) diff --git a/pkg/apis/application/v1alpha1/generated.proto b/pkg/apis/application/v1alpha1/generated.proto index d9f74ba0607fe..e3d70f7637573 100644 --- a/pkg/apis/application/v1alpha1/generated.proto +++ b/pkg/apis/application/v1alpha1/generated.proto @@ -1662,6 +1662,8 @@ message ResourceOverride { optional OverrideIgnoreDiff ignoreDifferences = 2; + optional OverrideIgnoreDiff ignoreResourceUpdates = 6; + repeated KnownTypeField knownTypeFields = 4; } diff --git a/pkg/apis/application/v1alpha1/openapi_generated.go b/pkg/apis/application/v1alpha1/openapi_generated.go index 6d95b74af8357..1a36d3202da6a 100644 --- a/pkg/apis/application/v1alpha1/openapi_generated.go +++ b/pkg/apis/application/v1alpha1/openapi_generated.go @@ -5835,6 +5835,12 @@ func schema_pkg_apis_application_v1alpha1_ResourceOverride(ref common.ReferenceC Ref: ref("github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.OverrideIgnoreDiff"), }, }, + "IgnoreResourceUpdates": { + SchemaProps: spec.SchemaProps{ + Default: map[string]interface{}{}, + Ref: ref("github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1.OverrideIgnoreDiff"), + }, + }, "KnownTypeFields": { SchemaProps: spec.SchemaProps{ Type: []string{"array"}, @@ -5849,7 +5855,7 @@ func schema_pkg_apis_application_v1alpha1_ResourceOverride(ref common.ReferenceC }, }, }, - Required: []string{"HealthLua", "UseOpenLibs", "Actions", "IgnoreDifferences", "KnownTypeFields"}, + Required: []string{"HealthLua", "UseOpenLibs", "Actions", "IgnoreDifferences", "IgnoreResourceUpdates", "KnownTypeFields"}, }, }, Dependencies: []string{ @@ -7457,6 +7463,12 @@ func schema_pkg_apis_application_v1alpha1_rawResourceOverride(ref common.Referen Format: "", }, }, + "ignoreResourceUpdates": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, "knownTypeFields": { SchemaProps: spec.SchemaProps{ Type: []string{"array"}, diff --git a/pkg/apis/application/v1alpha1/types.go b/pkg/apis/application/v1alpha1/types.go index 0cd6f02f69088..c00af3784e775 100644 --- a/pkg/apis/application/v1alpha1/types.go +++ b/pkg/apis/application/v1alpha1/types.go @@ -1848,21 +1848,23 @@ type OverrideIgnoreDiff struct { } type rawResourceOverride struct { - HealthLua string `json:"health.lua,omitempty"` - UseOpenLibs bool `json:"health.lua.useOpenLibs,omitempty"` - Actions string `json:"actions,omitempty"` - IgnoreDifferences string `json:"ignoreDifferences,omitempty"` - KnownTypeFields []KnownTypeField `json:"knownTypeFields,omitempty"` + HealthLua string `json:"health.lua,omitempty"` + UseOpenLibs bool `json:"health.lua.useOpenLibs,omitempty"` + Actions string `json:"actions,omitempty"` + IgnoreDifferences string `json:"ignoreDifferences,omitempty"` + IgnoreResourceUpdates string `json:"ignoreResourceUpdates,omitempty"` + KnownTypeFields []KnownTypeField `json:"knownTypeFields,omitempty"` } // ResourceOverride holds configuration to customize resource diffing and health assessment // TODO: describe the members of this type type ResourceOverride struct { - HealthLua string `protobuf:"bytes,1,opt,name=healthLua"` - UseOpenLibs bool `protobuf:"bytes,5,opt,name=useOpenLibs"` - Actions string `protobuf:"bytes,3,opt,name=actions"` - IgnoreDifferences OverrideIgnoreDiff `protobuf:"bytes,2,opt,name=ignoreDifferences"` - KnownTypeFields []KnownTypeField `protobuf:"bytes,4,opt,name=knownTypeFields"` + HealthLua string `protobuf:"bytes,1,opt,name=healthLua"` + UseOpenLibs bool `protobuf:"bytes,5,opt,name=useOpenLibs"` + Actions string `protobuf:"bytes,3,opt,name=actions"` + IgnoreDifferences OverrideIgnoreDiff `protobuf:"bytes,2,opt,name=ignoreDifferences"` + IgnoreResourceUpdates OverrideIgnoreDiff `protobuf:"bytes,6,opt,name=ignoreResourceUpdates"` + KnownTypeFields []KnownTypeField `protobuf:"bytes,4,opt,name=knownTypeFields"` } // TODO: describe this method @@ -1875,7 +1877,15 @@ func (s *ResourceOverride) UnmarshalJSON(data []byte) error { s.HealthLua = raw.HealthLua s.UseOpenLibs = raw.UseOpenLibs s.Actions = raw.Actions - return yaml.Unmarshal([]byte(raw.IgnoreDifferences), &s.IgnoreDifferences) + err := yaml.Unmarshal([]byte(raw.IgnoreDifferences), &s.IgnoreDifferences) + if err != nil { + return err + } + err = yaml.Unmarshal([]byte(raw.IgnoreResourceUpdates), &s.IgnoreResourceUpdates) + if err != nil { + return err + } + return nil } // TODO: describe this method @@ -1884,7 +1894,11 @@ func (s ResourceOverride) MarshalJSON() ([]byte, error) { if err != nil { return nil, err } - raw := &rawResourceOverride{s.HealthLua, s.UseOpenLibs, s.Actions, string(ignoreDifferencesData), s.KnownTypeFields} + ignoreResourceUpdatesData, err := yaml.Marshal(s.IgnoreResourceUpdates) + if err != nil { + return nil, err + } + raw := &rawResourceOverride{s.HealthLua, s.UseOpenLibs, s.Actions, string(ignoreDifferencesData), string(ignoreResourceUpdatesData), s.KnownTypeFields} return json.Marshal(raw) } diff --git a/pkg/apis/application/v1alpha1/zz_generated.deepcopy.go b/pkg/apis/application/v1alpha1/zz_generated.deepcopy.go index 79d0cf9dff187..695accf0cc45e 100644 --- a/pkg/apis/application/v1alpha1/zz_generated.deepcopy.go +++ b/pkg/apis/application/v1alpha1/zz_generated.deepcopy.go @@ -3233,6 +3233,7 @@ func (in *ResourceNode) DeepCopy() *ResourceNode { func (in *ResourceOverride) DeepCopyInto(out *ResourceOverride) { *out = *in in.IgnoreDifferences.DeepCopyInto(&out.IgnoreDifferences) + in.IgnoreResourceUpdates.DeepCopyInto(&out.IgnoreResourceUpdates) if in.KnownTypeFields != nil { in, out := &in.KnownTypeFields, &out.KnownTypeFields *out = make([]KnownTypeField, len(*in)) diff --git a/util/argo/normalizers/diff_normalizer.go b/util/argo/normalizers/diff_normalizer.go index 5347944ecc198..6eae329d186d8 100644 --- a/util/argo/normalizers/diff_normalizer.go +++ b/util/argo/normalizers/diff_normalizer.go @@ -3,6 +3,7 @@ package normalizers import ( "encoding/json" "fmt" + "strings" "github.com/argoproj/gitops-engine/pkg/diff" jsonpatch "github.com/evanphx/json-patch" @@ -179,7 +180,9 @@ func (n *ignoreNormalizer) Normalize(un *unstructured.Unstructured) error { for _, patch := range matched { patchedDocData, err := patch.Apply(docData) if err != nil { - log.Debugf("Failed to apply normalization: %v", err) + if shouldLogError(err) { + log.Debugf("Failed to apply normalization: %v", err) + } continue } docData = patchedDocData @@ -191,3 +194,13 @@ func (n *ignoreNormalizer) Normalize(un *unstructured.Unstructured) error { } return nil } + +func shouldLogError(e error) bool { + if strings.Contains(e.Error(), "Unable to remove nonexistent key") { + return false + } + if strings.Contains(e.Error(), "remove operation does not apply: doc is missing path") { + return false + } + return true +} diff --git a/util/argo/normalizers/diff_normalizer_test.go b/util/argo/normalizers/diff_normalizer_test.go index 1938fd23e6a31..99f0ec3ff9db3 100644 --- a/util/argo/normalizers/diff_normalizer_test.go +++ b/util/argo/normalizers/diff_normalizer_test.go @@ -1,6 +1,8 @@ package normalizers import ( + "encoding/json" + "fmt" "testing" "github.com/stretchr/testify/assert" @@ -219,3 +221,34 @@ func TestNormalizeJQPathExpressionWithError(t *testing.T) { assert.Nil(t, err) assert.Equal(t, originalDeployment, normalizedDeployment) } + +func TestNormalizeExpectedErrorAreSilenced(t *testing.T) { + normalizer, err := NewIgnoreNormalizer([]v1alpha1.ResourceIgnoreDifferences{}, map[string]v1alpha1.ResourceOverride{ + "*/*": { + IgnoreDifferences: v1alpha1.OverrideIgnoreDiff{ + JSONPointers: []string{"/invalid", "/invalid/json/path"}, + }, + }, + }) + assert.Nil(t, err) + + ignoreNormalizer := normalizer.(*ignoreNormalizer) + assert.Len(t, ignoreNormalizer.patches, 2) + jsonPatch := ignoreNormalizer.patches[0] + jqPatch := ignoreNormalizer.patches[1] + + deployment := test.NewDeployment() + deploymentData, err := json.Marshal(deployment) + assert.Nil(t, err) + + // Error: "error in remove for path: '/invalid': Unable to remove nonexistent key: invalid: missing value" + _, err = jsonPatch.Apply(deploymentData) + assert.False(t, shouldLogError(err)) + + // Error: "remove operation does not apply: doc is missing path: \"/invalid/json/path\": missing value" + _, err = jqPatch.Apply(deploymentData) + assert.False(t, shouldLogError(err)) + + assert.True(t, shouldLogError(fmt.Errorf("An error that should not be ignored"))) + +} diff --git a/util/settings/settings.go b/util/settings/settings.go index f00d724027612..c85ed3329361b 100644 --- a/util/settings/settings.go +++ b/util/settings/settings.go @@ -421,6 +421,8 @@ const ( resourceExclusionsKey = "resource.exclusions" // resourceInclusions is the key to the list of explicitly watched resources resourceInclusionsKey = "resource.inclusions" + // resourceIgnoreResourceUpdatesEnabledKey is the key to a boolean determining whether the resourceIgnoreUpdates feature is enabled + resourceIgnoreResourceUpdatesEnabledKey = "resource.ignoreResourceUpdatesEnabled" // resourceCustomLabelKey is the key to a custom label to show in node info, if present resourceCustomLabelsKey = "resource.customLabels" // kustomizeBuildOptionsKey is a string of kustomize build parameters @@ -528,6 +530,9 @@ type ArgoCDDiffOptions struct { // If set to true then differences caused by status are ignored. IgnoreResourceStatusField IgnoreStatus `json:"ignoreResourceStatusField,omitempty"` + + // If set to true then ignoreDifferences are applied to ignore application refresh on resource updates. + IgnoreDifferencesOnResourceUpdates bool `json:"ignoreDifferencesOnResourceUpdates,omitempty"` } func (e *incompleteSettingsError) Error() string { @@ -777,6 +782,54 @@ func (mgr *SettingsManager) GetEnabledSourceTypes() (map[string]bool, error) { return res, nil } +func (mgr *SettingsManager) GetIgnoreResourceUpdatesOverrides() (map[string]v1alpha1.ResourceOverride, error) { + compareOptions, err := mgr.GetResourceCompareOptions() + if err != nil { + return nil, fmt.Errorf("failed to get compare options: %w", err) + } + + resourceOverrides, err := mgr.GetResourceOverrides() + if err != nil { + return nil, fmt.Errorf("failed to get resource overrides: %w", err) + } + + for k, v := range resourceOverrides { + resourceUpdates := v.IgnoreResourceUpdates + if compareOptions.IgnoreDifferencesOnResourceUpdates { + resourceUpdates.JQPathExpressions = append(resourceUpdates.JQPathExpressions, v.IgnoreDifferences.JQPathExpressions...) + resourceUpdates.JSONPointers = append(resourceUpdates.JSONPointers, v.IgnoreDifferences.JSONPointers...) + resourceUpdates.ManagedFieldsManagers = append(resourceUpdates.ManagedFieldsManagers, v.IgnoreDifferences.ManagedFieldsManagers...) + } + // Set the IgnoreDifferences because these are the overrides used by Normalizers + v.IgnoreDifferences = resourceUpdates + v.IgnoreResourceUpdates = v1alpha1.OverrideIgnoreDiff{} + resourceOverrides[k] = v + } + + if compareOptions.IgnoreDifferencesOnResourceUpdates { + log.Info("Using diffing customizations to ignore resource updates") + } + + addIgnoreDiffItemOverrideToGK(resourceOverrides, "*/*", "/metadata/resourceVersion") + addIgnoreDiffItemOverrideToGK(resourceOverrides, "*/*", "/metadata/generation") + addIgnoreDiffItemOverrideToGK(resourceOverrides, "*/*", "/metadata/managedFields") + + return resourceOverrides, nil +} + +func (mgr *SettingsManager) GetIsIgnoreResourceUpdatesEnabled() (bool, error) { + argoCDCM, err := mgr.getConfigMap() + if err != nil { + return false, err + } + + if argoCDCM.Data[resourceIgnoreResourceUpdatesEnabledKey] == "" { + return false, nil + } + + return strconv.ParseBool(argoCDCM.Data[resourceIgnoreResourceUpdatesEnabledKey]) +} + // GetResourceOverrides loads Resource Overrides from argocd-cm ConfigMap func (mgr *SettingsManager) GetResourceOverrides() (map[string]v1alpha1.ResourceOverride, error) { argoCDCM, err := mgr.getConfigMap() @@ -893,6 +946,13 @@ func (mgr *SettingsManager) appendResourceOverridesFromSplitKeys(cmData map[stri return err } overrideVal.IgnoreDifferences = overrideIgnoreDiff + case "ignoreResourceUpdates": + overrideIgnoreUpdate := v1alpha1.OverrideIgnoreDiff{} + err := yaml.Unmarshal([]byte(v), &overrideIgnoreUpdate) + if err != nil { + return err + } + overrideVal.IgnoreResourceUpdates = overrideIgnoreUpdate case "knownTypeFields": var knownTypeFields []v1alpha1.KnownTypeField err := yaml.Unmarshal([]byte(v), &knownTypeFields) @@ -922,7 +982,7 @@ func convertToOverrideKey(groupKind string) (string, error) { } func GetDefaultDiffOptions() ArgoCDDiffOptions { - return ArgoCDDiffOptions{IgnoreAggregatedRoles: false} + return ArgoCDDiffOptions{IgnoreAggregatedRoles: false, IgnoreDifferencesOnResourceUpdates: false} } // GetResourceCompareOptions loads the resource compare options settings from the ConfigMap diff --git a/util/settings/settings_test.go b/util/settings/settings_test.go index 3e274417262c4..b8fe3569300f9 100644 --- a/util/settings/settings_test.go +++ b/util/settings/settings_test.go @@ -185,6 +185,22 @@ func TestGetServerRBACLogEnforceEnableKeyDefaultFalse(t *testing.T) { assert.Equal(t, false, serverRBACLogEnforceEnable) } +func TestGetIsIgnoreResourceUpdatesEnabled(t *testing.T) { + _, settingsManager := fixtures(map[string]string{ + "resource.ignoreResourceUpdatesEnabled": "true", + }) + ignoreResourceUpdatesEnabled, err := settingsManager.GetIsIgnoreResourceUpdatesEnabled() + assert.NoError(t, err) + assert.True(t, ignoreResourceUpdatesEnabled) +} + +func TestGetIsIgnoreResourceUpdatesEnabledDefaultFalse(t *testing.T) { + _, settingsManager := fixtures(nil) + ignoreResourceUpdatesEnabled, err := settingsManager.GetIsIgnoreResourceUpdatesEnabled() + assert.NoError(t, err) + assert.False(t, ignoreResourceUpdatesEnabled) +} + func TestGetServerRBACLogEnforceEnableKey(t *testing.T) { _, settingsManager := fixtures(map[string]string{ "server.rbac.log.enforce.enable": "true", @@ -210,7 +226,12 @@ func TestGetResourceOverrides(t *testing.T) { jsonPointers: - /webhooks/0/clientConfig/caBundle jqPathExpressions: - - .webhooks[0].clientConfig.caBundle`, + - .webhooks[0].clientConfig.caBundle + ignoreResourceUpdates: | + jsonPointers: + - /webhooks/1/clientConfig/caBundle + jqPathExpressions: + - .webhooks[1].clientConfig.caBundle`, }) overrides, err := settingsManager.GetResourceOverrides() assert.NoError(t, err) @@ -223,6 +244,10 @@ func TestGetResourceOverrides(t *testing.T) { JSONPointers: []string{"/webhooks/0/clientConfig/caBundle"}, JQPathExpressions: []string{".webhooks[0].clientConfig.caBundle"}, }, + IgnoreResourceUpdates: v1alpha1.OverrideIgnoreDiff{ + JSONPointers: []string{"/webhooks/1/clientConfig/caBundle"}, + JQPathExpressions: []string{".webhooks[1].clientConfig.caBundle"}, + }, }, webHookOverrides) // by default, crd status should be ignored @@ -324,6 +349,9 @@ func TestGetResourceOverrides_with_splitted_keys(t *testing.T) { ignoreDifferences: | jsonPointers: - foo + ignoreResourceUpdates: | + jsonPointers: + - foo certmanager.k8s.io/Certificate: health.lua.useOpenLibs: true health.lua: | @@ -346,6 +374,8 @@ func TestGetResourceOverrides_with_splitted_keys(t *testing.T) { assert.Equal(t, 2, len(overrides[crdGK].IgnoreDifferences.JSONPointers)) assert.Equal(t, 1, len(overrides["admissionregistration.k8s.io/MutatingWebhookConfiguration"].IgnoreDifferences.JSONPointers)) assert.Equal(t, "foo", overrides["admissionregistration.k8s.io/MutatingWebhookConfiguration"].IgnoreDifferences.JSONPointers[0]) + assert.Equal(t, 1, len(overrides["admissionregistration.k8s.io/MutatingWebhookConfiguration"].IgnoreResourceUpdates.JSONPointers)) + assert.Equal(t, "foo", overrides["admissionregistration.k8s.io/MutatingWebhookConfiguration"].IgnoreResourceUpdates.JSONPointers[0]) assert.Equal(t, "foo\n", overrides["certmanager.k8s.io/Certificate"].HealthLua) assert.Equal(t, true, overrides["certmanager.k8s.io/Certificate"].UseOpenLibs) assert.Equal(t, "foo\n", overrides["cert-manager.io/Certificate"].HealthLua) @@ -357,6 +387,8 @@ func TestGetResourceOverrides_with_splitted_keys(t *testing.T) { newData := map[string]string{ "resource.customizations.health.admissionregistration.k8s.io_MutatingWebhookConfiguration": "bar", "resource.customizations.ignoreDifferences.admissionregistration.k8s.io_MutatingWebhookConfiguration": `jsonPointers: + - bar`, + "resource.customizations.ignoreResourceUpdates.admissionregistration.k8s.io_MutatingWebhookConfiguration": `jsonPointers: - bar`, "resource.customizations.knownTypeFields.admissionregistration.k8s.io_MutatingWebhookConfiguration": ` - field: foo @@ -373,9 +405,13 @@ func TestGetResourceOverrides_with_splitted_keys(t *testing.T) { - bar`, "resource.customizations.ignoreDifferences.apps_Deployment": `jqPathExpressions: - bar`, - "resource.customizations.ignoreDifferences.all": `managedFieldsManagers: + "resource.customizations.ignoreDifferences.all": `managedFieldsManagers: - kube-controller-manager - argo-rollouts`, + "resource.customizations.ignoreResourceUpdates.iam-manager.k8s.io_Iamrole": `jsonPointers: + - bar`, + "resource.customizations.ignoreResourceUpdates.apps_Deployment": `jqPathExpressions: + - bar`, } crdGK := "apiextensions.k8s.io/CustomResourceDefinition" @@ -389,6 +425,8 @@ func TestGetResourceOverrides_with_splitted_keys(t *testing.T) { assert.Equal(t, "/spec/preserveUnknownFields", overrides[crdGK].IgnoreDifferences.JSONPointers[1]) assert.Equal(t, 1, len(overrides["admissionregistration.k8s.io/MutatingWebhookConfiguration"].IgnoreDifferences.JSONPointers)) assert.Equal(t, "bar", overrides["admissionregistration.k8s.io/MutatingWebhookConfiguration"].IgnoreDifferences.JSONPointers[0]) + assert.Equal(t, 1, len(overrides["admissionregistration.k8s.io/MutatingWebhookConfiguration"].IgnoreResourceUpdates.JSONPointers)) + assert.Equal(t, "bar", overrides["admissionregistration.k8s.io/MutatingWebhookConfiguration"].IgnoreResourceUpdates.JSONPointers[0]) assert.Equal(t, 1, len(overrides["admissionregistration.k8s.io/MutatingWebhookConfiguration"].KnownTypeFields)) assert.Equal(t, "bar", overrides["admissionregistration.k8s.io/MutatingWebhookConfiguration"].KnownTypeFields[0].Type) assert.Equal(t, "bar", overrides["admissionregistration.k8s.io/MutatingWebhookConfiguration"].HealthLua) @@ -406,6 +444,9 @@ func TestGetResourceOverrides_with_splitted_keys(t *testing.T) { assert.Equal(t, 2, len(overrides["*/*"].IgnoreDifferences.ManagedFieldsManagers)) assert.Equal(t, "kube-controller-manager", overrides["*/*"].IgnoreDifferences.ManagedFieldsManagers[0]) assert.Equal(t, "argo-rollouts", overrides["*/*"].IgnoreDifferences.ManagedFieldsManagers[1]) + assert.Equal(t, 1, len(overrides["iam-manager.k8s.io/Iamrole"].IgnoreResourceUpdates.JSONPointers)) + assert.Equal(t, 1, len(overrides["apps/Deployment"].IgnoreResourceUpdates.JQPathExpressions)) + assert.Equal(t, "bar", overrides["apps/Deployment"].IgnoreResourceUpdates.JQPathExpressions[0]) }) t.Run("SplitKeysCompareOptionsAll", func(t *testing.T) { @@ -451,6 +492,64 @@ func mergemaps(mapA map[string]string, mapB map[string]string) map[string]string return mapB } +func TestGetIgnoreResourceUpdatesOverrides(t *testing.T) { + allDefault := v1alpha1.ResourceOverride{IgnoreDifferences: v1alpha1.OverrideIgnoreDiff{ + JSONPointers: []string{"/metadata/resourceVersion", "/metadata/generation", "/metadata/managedFields"}, + }} + allGK := "*/*" + + testCustomizations := map[string]string{ + "resource.customizations": ` + admissionregistration.k8s.io/MutatingWebhookConfiguration: + ignoreDifferences: | + jsonPointers: + - /webhooks/0/clientConfig/caBundle + jqPathExpressions: + - .webhooks[0].clientConfig.caBundle + ignoreResourceUpdates: | + jsonPointers: + - /webhooks/1/clientConfig/caBundle + jqPathExpressions: + - .webhooks[1].clientConfig.caBundle`, + } + + _, settingsManager := fixtures(testCustomizations) + overrides, err := settingsManager.GetIgnoreResourceUpdatesOverrides() + assert.NoError(t, err) + + // default overrides should always be present + allOverrides := overrides[allGK] + assert.NotNil(t, allOverrides) + assert.Equal(t, allDefault, allOverrides) + + // without ignoreDifferencesOnResourceUpdates, only ignoreResourceUpdates should be added + assert.NotNil(t, overrides["admissionregistration.k8s.io/MutatingWebhookConfiguration"]) + assert.Equal(t, v1alpha1.ResourceOverride{ + IgnoreDifferences: v1alpha1.OverrideIgnoreDiff{ + JSONPointers: []string{"/webhooks/1/clientConfig/caBundle"}, + JQPathExpressions: []string{".webhooks[1].clientConfig.caBundle"}, + }, + IgnoreResourceUpdates: v1alpha1.OverrideIgnoreDiff{}, + }, overrides["admissionregistration.k8s.io/MutatingWebhookConfiguration"]) + + // with ignoreDifferencesOnResourceUpdates, ignoreDifferences should be added + _, settingsManager = fixtures(mergemaps(testCustomizations, map[string]string{ + "resource.compareoptions": ` + ignoreDifferencesOnResourceUpdates: true`, + })) + overrides, err = settingsManager.GetIgnoreResourceUpdatesOverrides() + assert.NoError(t, err) + + assert.NotNil(t, overrides["admissionregistration.k8s.io/MutatingWebhookConfiguration"]) + assert.Equal(t, v1alpha1.ResourceOverride{ + IgnoreDifferences: v1alpha1.OverrideIgnoreDiff{ + JSONPointers: []string{"/webhooks/1/clientConfig/caBundle", "/webhooks/0/clientConfig/caBundle"}, + JQPathExpressions: []string{".webhooks[1].clientConfig.caBundle", ".webhooks[0].clientConfig.caBundle"}, + }, + IgnoreResourceUpdates: v1alpha1.OverrideIgnoreDiff{}, + }, overrides["admissionregistration.k8s.io/MutatingWebhookConfiguration"]) +} + func TestConvertToOverrideKey(t *testing.T) { key, err := convertToOverrideKey("cert-manager.io_Certificate") assert.NoError(t, err) @@ -488,6 +587,26 @@ func TestGetResourceCompareOptions(t *testing.T) { assert.False(t, compareOptions.IgnoreAggregatedRoles) } + // ignoreDifferencesOnResourceUpdates is true + { + _, settingsManager := fixtures(map[string]string{ + "resource.compareoptions": "ignoreDifferencesOnResourceUpdates: true", + }) + compareOptions, err := settingsManager.GetResourceCompareOptions() + assert.NoError(t, err) + assert.True(t, compareOptions.IgnoreDifferencesOnResourceUpdates) + } + + // ignoreDifferencesOnResourceUpdates is false + { + _, settingsManager := fixtures(map[string]string{ + "resource.compareoptions": "ignoreDifferencesOnResourceUpdates: false", + }) + compareOptions, err := settingsManager.GetResourceCompareOptions() + assert.NoError(t, err) + assert.False(t, compareOptions.IgnoreDifferencesOnResourceUpdates) + } + // The empty resource.compareoptions should result in default being returned { _, settingsManager := fixtures(map[string]string{ @@ -497,6 +616,7 @@ func TestGetResourceCompareOptions(t *testing.T) { defaultOptions := GetDefaultDiffOptions() assert.NoError(t, err) assert.Equal(t, defaultOptions.IgnoreAggregatedRoles, compareOptions.IgnoreAggregatedRoles) + assert.Equal(t, defaultOptions.IgnoreDifferencesOnResourceUpdates, compareOptions.IgnoreDifferencesOnResourceUpdates) } // resource.compareoptions not defined - should result in default being returned @@ -506,6 +626,7 @@ func TestGetResourceCompareOptions(t *testing.T) { defaultOptions := GetDefaultDiffOptions() assert.NoError(t, err) assert.Equal(t, defaultOptions.IgnoreAggregatedRoles, compareOptions.IgnoreAggregatedRoles) + assert.Equal(t, defaultOptions.IgnoreDifferencesOnResourceUpdates, compareOptions.IgnoreDifferencesOnResourceUpdates) } }