feat: added a new Helm option ignoreMissingValueFiles (#7767) (#8003)

so as to allow operators to prevent Argo CD from passing valueFiles
to helm template if they don't exist in the source under the specified path.

Signed-off-by: Oscar Craviotto <craviotto@avellaneda.com>
This commit is contained in:
ocraviotto
2022-01-03 18:51:31 +01:00
committed by GitHub
parent 8e6fcde4d6
commit 99d1dcad03
19 changed files with 710 additions and 445 deletions

View File

@@ -4899,6 +4899,10 @@
"$ref": "#/definitions/v1alpha1HelmFileParameter"
}
},
"ignoreMissingValueFiles": {
"type": "boolean",
"title": "IgnoreMissingValueFiles prevents helm template from failing when valueFiles do not exist locally by not appending them to helm template --values"
},
"parameters": {
"type": "array",
"title": "Parameters is a list of Helm parameters which are passed to the helm template command upon manifest generation",

View File

@@ -558,15 +558,16 @@ func NewApplicationSetCommand(clientOpts *argocdclient.ClientOptions) *cobra.Com
// NewApplicationUnsetCommand returns a new instance of an `argocd app unset` command
func NewApplicationUnsetCommand(clientOpts *argocdclient.ClientOptions) *cobra.Command {
var (
parameters []string
valuesLiteral bool
valuesFiles []string
nameSuffix bool
namePrefix bool
kustomizeVersion bool
kustomizeImages []string
pluginEnvs []string
appOpts cmdutil.AppOptions
parameters []string
valuesLiteral bool
valuesFiles []string
ignoreMissingValueFiles bool
nameSuffix bool
namePrefix bool
kustomizeVersion bool
kustomizeImages []string
pluginEnvs []string
appOpts cmdutil.AppOptions
)
var command = &cobra.Command{
Use: "unset APPNAME parameters",
@@ -643,7 +644,7 @@ func NewApplicationUnsetCommand(clientOpts *argocdclient.ClientOptions) *cobra.C
}
}
if app.Spec.Source.Helm != nil {
if len(parameters) == 0 && len(valuesFiles) == 0 && !valuesLiteral {
if len(parameters) == 0 && len(valuesFiles) == 0 && !valuesLiteral && !ignoreMissingValueFiles {
c.HelpFunc()(c, args)
os.Exit(1)
}
@@ -671,6 +672,10 @@ func NewApplicationUnsetCommand(clientOpts *argocdclient.ClientOptions) *cobra.C
}
}
}
if ignoreMissingValueFiles {
app.Spec.Source.Helm.IgnoreMissingValueFiles = false
updated = true
}
if app.Spec.Source.Helm.PassCredentials {
app.Spec.Source.Helm.PassCredentials = false
updated = true
@@ -706,6 +711,7 @@ func NewApplicationUnsetCommand(clientOpts *argocdclient.ClientOptions) *cobra.C
command.Flags().StringArrayVarP(&parameters, "parameter", "p", []string{}, "Unset a parameter override (e.g. -p guestbook=image)")
command.Flags().StringArrayVar(&valuesFiles, "values", []string{}, "Unset one or more Helm values files")
command.Flags().BoolVar(&valuesLiteral, "values-literal", false, "Unset literal Helm values block")
command.Flags().BoolVar(&ignoreMissingValueFiles, "ignore-missing-value-files", false, "Unset the helm ignore-missing-value-files option (revert to false)")
command.Flags().BoolVar(&nameSuffix, "namesuffix", false, "Kustomize namesuffix")
command.Flags().BoolVar(&namePrefix, "nameprefix", false, "Kustomize nameprefix")
command.Flags().BoolVar(&kustomizeVersion, "kustomize-version", false, "Kustomize version")

View File

@@ -36,6 +36,7 @@ type AppOptions struct {
destNamespace string
Parameters []string
valuesFiles []string
ignoreMissingValueFiles bool
values string
releaseName string
helmSets []string
@@ -86,6 +87,7 @@ func AddAppFlags(command *cobra.Command, opts *AppOptions) {
command.Flags().StringVar(&opts.destNamespace, "dest-namespace", "", "K8s target namespace (overrides the namespace specified in the ksonnet app.yaml)")
command.Flags().StringArrayVarP(&opts.Parameters, "parameter", "p", []string{}, "set a parameter override (e.g. -p guestbook=image=example/guestbook:latest)")
command.Flags().StringArrayVar(&opts.valuesFiles, "values", []string{}, "Helm values file(s) to use")
command.Flags().BoolVar(&opts.ignoreMissingValueFiles, "ignore-missing-value-files", false, "Ignore locally missing valueFiles when setting helm template --values")
command.Flags().StringVar(&opts.values, "values-literal-file", "", "Filename or URL to import as a literal Helm values block")
command.Flags().StringVar(&opts.releaseName, "release-name", "", "Helm release-name")
command.Flags().StringVar(&opts.helmVersion, "helm-version", "", "Helm version")
@@ -147,6 +149,8 @@ func SetAppSpecOptions(flags *pflag.FlagSet, spec *argoappv1.ApplicationSpec, ap
spec.RevisionHistoryLimit = &i
case "values":
setHelmOpt(&spec.Source, helmOpts{valueFiles: appOpts.valuesFiles})
case "ignore-missing-value-files":
setHelmOpt(&spec.Source, helmOpts{ignoreMissingValueFiles: appOpts.ignoreMissingValueFiles})
case "values-literal-file":
var data []byte
@@ -381,14 +385,15 @@ func setPluginOptEnvs(src *argoappv1.ApplicationSource, envs []string) {
}
type helmOpts struct {
valueFiles []string
values string
releaseName string
version string
helmSets []string
helmSetStrings []string
helmSetFiles []string
passCredentials bool
valueFiles []string
ignoreMissingValueFiles bool
values string
releaseName string
version string
helmSets []string
helmSetStrings []string
helmSetFiles []string
passCredentials bool
}
func setHelmOpt(src *argoappv1.ApplicationSource, opts helmOpts) {
@@ -398,6 +403,9 @@ func setHelmOpt(src *argoappv1.ApplicationSource, opts helmOpts) {
if len(opts.valueFiles) > 0 {
src.Helm.ValueFiles = opts.valueFiles
}
if opts.ignoreMissingValueFiles {
src.Helm.IgnoreMissingValueFiles = opts.ignoreMissingValueFiles
}
if len(opts.values) > 0 {
src.Helm.Values = opts.values
}

View File

@@ -24,6 +24,11 @@ func Test_setHelmOpt(t *testing.T) {
setHelmOpt(&src, helmOpts{valueFiles: []string{"foo"}})
assert.Equal(t, []string{"foo"}, src.Helm.ValueFiles)
})
t.Run("IgnoreMissingValueFiles", func(t *testing.T) {
src := v1alpha1.ApplicationSource{}
setHelmOpt(&src, helmOpts{ignoreMissingValueFiles: true})
assert.Equal(t, true, src.Helm.IgnoreMissingValueFiles)
})
t.Run("ReleaseName", func(t *testing.T) {
src := v1alpha1.ApplicationSource{}
setHelmOpt(&src, helmOpts{releaseName: "foo"})

View File

@@ -52,6 +52,7 @@ argocd admin app generate-spec APPNAME [flags]
--helm-set-string stringArray Helm set STRING values on the command line (can be repeated to set several values: --helm-set-string key1=val1 --helm-set-string key2=val2)
--helm-version string Helm version
-h, --help help for generate-spec
--ignore-missing-value-files Ignore locally missing valueFiles when setting helm template --values
-i, --inline If set then generated resource is written back to the file specified in --file flag
--jsonnet-ext-var-code stringArray Jsonnet ext var
--jsonnet-ext-var-str stringArray Jsonnet string ext var

View File

@@ -52,6 +52,7 @@ argocd app create APPNAME [flags]
--helm-set-string stringArray Helm set STRING values on the command line (can be repeated to set several values: --helm-set-string key1=val1 --helm-set-string key2=val2)
--helm-version string Helm version
-h, --help help for create
--ignore-missing-value-files Ignore locally missing valueFiles when setting helm template --values
--jsonnet-ext-var-code stringArray Jsonnet ext var
--jsonnet-ext-var-str stringArray Jsonnet string ext var
--jsonnet-libs stringArray Additional jsonnet libs (prefixed by repoRoot)

View File

@@ -26,6 +26,7 @@ argocd app set APPNAME [flags]
--helm-set-string stringArray Helm set STRING values on the command line (can be repeated to set several values: --helm-set-string key1=val1 --helm-set-string key2=val2)
--helm-version string Helm version
-h, --help help for set
--ignore-missing-value-files Ignore locally missing valueFiles when setting helm template --values
--jsonnet-ext-var-code stringArray Jsonnet ext var
--jsonnet-ext-var-str stringArray Jsonnet string ext var
--jsonnet-libs stringArray Additional jsonnet libs (prefixed by repoRoot)

View File

@@ -23,6 +23,7 @@ argocd app unset APPNAME parameters [flags]
```
-h, --help help for unset
--ignore-missing-value-files Unset the helm ignore-missing-value-files option (revert to false)
--kustomize-image stringArray Kustomize images name (e.g. --kustomize-image node --kustomize-image mysql)
--kustomize-version Kustomize version
--nameprefix Kustomize nameprefix

View File

@@ -234,6 +234,11 @@ spec:
type: string
type: object
type: array
ignoreMissingValueFiles:
description: IgnoreMissingValueFiles prevents helm template
from failing when valueFiles do not exist locally by
not appending them to helm template --values
type: boolean
parameters:
description: Parameters is a list of Helm parameters which
are passed to the helm template command upon manifest
@@ -599,6 +604,11 @@ spec:
type: string
type: object
type: array
ignoreMissingValueFiles:
description: IgnoreMissingValueFiles prevents helm template
from failing when valueFiles do not exist locally by not
appending them to helm template --values
type: boolean
parameters:
description: Parameters is a list of Helm parameters which
are passed to the helm template command upon manifest generation
@@ -967,6 +977,11 @@ spec:
type: string
type: object
type: array
ignoreMissingValueFiles:
description: IgnoreMissingValueFiles prevents helm template
from failing when valueFiles do not exist locally
by not appending them to helm template --values
type: boolean
parameters:
description: Parameters is a list of Helm parameters
which are passed to the helm template command upon
@@ -1350,6 +1365,12 @@ spec:
type: string
type: object
type: array
ignoreMissingValueFiles:
description: IgnoreMissingValueFiles prevents
helm template from failing when valueFiles do
not exist locally by not appending them to helm
template --values
type: boolean
parameters:
description: Parameters is a list of Helm parameters
which are passed to the helm template command
@@ -1715,6 +1736,11 @@ spec:
type: string
type: object
type: array
ignoreMissingValueFiles:
description: IgnoreMissingValueFiles prevents helm
template from failing when valueFiles do not exist
locally by not appending them to helm template --values
type: boolean
parameters:
description: Parameters is a list of Helm parameters
which are passed to the helm template command upon
@@ -2066,6 +2092,11 @@ spec:
type: string
type: object
type: array
ignoreMissingValueFiles:
description: IgnoreMissingValueFiles prevents helm
template from failing when valueFiles do not exist
locally by not appending them to helm template --values
type: boolean
parameters:
description: Parameters is a list of Helm parameters
which are passed to the helm template command upon

View File

@@ -233,6 +233,11 @@ spec:
type: string
type: object
type: array
ignoreMissingValueFiles:
description: IgnoreMissingValueFiles prevents helm template
from failing when valueFiles do not exist locally by
not appending them to helm template --values
type: boolean
parameters:
description: Parameters is a list of Helm parameters which
are passed to the helm template command upon manifest
@@ -598,6 +603,11 @@ spec:
type: string
type: object
type: array
ignoreMissingValueFiles:
description: IgnoreMissingValueFiles prevents helm template
from failing when valueFiles do not exist locally by not
appending them to helm template --values
type: boolean
parameters:
description: Parameters is a list of Helm parameters which
are passed to the helm template command upon manifest generation
@@ -966,6 +976,11 @@ spec:
type: string
type: object
type: array
ignoreMissingValueFiles:
description: IgnoreMissingValueFiles prevents helm template
from failing when valueFiles do not exist locally
by not appending them to helm template --values
type: boolean
parameters:
description: Parameters is a list of Helm parameters
which are passed to the helm template command upon
@@ -1349,6 +1364,12 @@ spec:
type: string
type: object
type: array
ignoreMissingValueFiles:
description: IgnoreMissingValueFiles prevents
helm template from failing when valueFiles do
not exist locally by not appending them to helm
template --values
type: boolean
parameters:
description: Parameters is a list of Helm parameters
which are passed to the helm template command
@@ -1714,6 +1735,11 @@ spec:
type: string
type: object
type: array
ignoreMissingValueFiles:
description: IgnoreMissingValueFiles prevents helm
template from failing when valueFiles do not exist
locally by not appending them to helm template --values
type: boolean
parameters:
description: Parameters is a list of Helm parameters
which are passed to the helm template command upon
@@ -2065,6 +2091,11 @@ spec:
type: string
type: object
type: array
ignoreMissingValueFiles:
description: IgnoreMissingValueFiles prevents helm
template from failing when valueFiles do not exist
locally by not appending them to helm template --values
type: boolean
parameters:
description: Parameters is a list of Helm parameters
which are passed to the helm template command upon

View File

@@ -234,6 +234,11 @@ spec:
type: string
type: object
type: array
ignoreMissingValueFiles:
description: IgnoreMissingValueFiles prevents helm template
from failing when valueFiles do not exist locally by
not appending them to helm template --values
type: boolean
parameters:
description: Parameters is a list of Helm parameters which
are passed to the helm template command upon manifest
@@ -599,6 +604,11 @@ spec:
type: string
type: object
type: array
ignoreMissingValueFiles:
description: IgnoreMissingValueFiles prevents helm template
from failing when valueFiles do not exist locally by not
appending them to helm template --values
type: boolean
parameters:
description: Parameters is a list of Helm parameters which
are passed to the helm template command upon manifest generation
@@ -967,6 +977,11 @@ spec:
type: string
type: object
type: array
ignoreMissingValueFiles:
description: IgnoreMissingValueFiles prevents helm template
from failing when valueFiles do not exist locally
by not appending them to helm template --values
type: boolean
parameters:
description: Parameters is a list of Helm parameters
which are passed to the helm template command upon
@@ -1350,6 +1365,12 @@ spec:
type: string
type: object
type: array
ignoreMissingValueFiles:
description: IgnoreMissingValueFiles prevents
helm template from failing when valueFiles do
not exist locally by not appending them to helm
template --values
type: boolean
parameters:
description: Parameters is a list of Helm parameters
which are passed to the helm template command
@@ -1715,6 +1736,11 @@ spec:
type: string
type: object
type: array
ignoreMissingValueFiles:
description: IgnoreMissingValueFiles prevents helm
template from failing when valueFiles do not exist
locally by not appending them to helm template --values
type: boolean
parameters:
description: Parameters is a list of Helm parameters
which are passed to the helm template command upon
@@ -2066,6 +2092,11 @@ spec:
type: string
type: object
type: array
ignoreMissingValueFiles:
description: IgnoreMissingValueFiles prevents helm
template from failing when valueFiles do not exist
locally by not appending them to helm template --values
type: boolean
parameters:
description: Parameters is a list of Helm parameters
which are passed to the helm template command upon

View File

@@ -234,6 +234,11 @@ spec:
type: string
type: object
type: array
ignoreMissingValueFiles:
description: IgnoreMissingValueFiles prevents helm template
from failing when valueFiles do not exist locally by
not appending them to helm template --values
type: boolean
parameters:
description: Parameters is a list of Helm parameters which
are passed to the helm template command upon manifest
@@ -599,6 +604,11 @@ spec:
type: string
type: object
type: array
ignoreMissingValueFiles:
description: IgnoreMissingValueFiles prevents helm template
from failing when valueFiles do not exist locally by not
appending them to helm template --values
type: boolean
parameters:
description: Parameters is a list of Helm parameters which
are passed to the helm template command upon manifest generation
@@ -967,6 +977,11 @@ spec:
type: string
type: object
type: array
ignoreMissingValueFiles:
description: IgnoreMissingValueFiles prevents helm template
from failing when valueFiles do not exist locally
by not appending them to helm template --values
type: boolean
parameters:
description: Parameters is a list of Helm parameters
which are passed to the helm template command upon
@@ -1350,6 +1365,12 @@ spec:
type: string
type: object
type: array
ignoreMissingValueFiles:
description: IgnoreMissingValueFiles prevents
helm template from failing when valueFiles do
not exist locally by not appending them to helm
template --values
type: boolean
parameters:
description: Parameters is a list of Helm parameters
which are passed to the helm template command
@@ -1715,6 +1736,11 @@ spec:
type: string
type: object
type: array
ignoreMissingValueFiles:
description: IgnoreMissingValueFiles prevents helm
template from failing when valueFiles do not exist
locally by not appending them to helm template --values
type: boolean
parameters:
description: Parameters is a list of Helm parameters
which are passed to the helm template command upon
@@ -2066,6 +2092,11 @@ spec:
type: string
type: object
type: array
ignoreMissingValueFiles:
description: IgnoreMissingValueFiles prevents helm
template from failing when valueFiles do not exist
locally by not appending them to helm template --values
type: boolean
parameters:
description: Parameters is a list of Helm parameters
which are passed to the helm template command upon

View File

@@ -2633,432 +2633,434 @@ func init() {
}
var fileDescriptor_030104ce3b95bcac = []byte{
// 6800 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x3d, 0x5b, 0x6c, 0x24, 0xd9,
0x55, 0x5b, 0xdd, 0x7e, 0x74, 0x1f, 0x3f, 0x66, 0x7c, 0xe7, 0xb1, 0xce, 0xb0, 0x19, 0x8f, 0x6a,
0x95, 0x64, 0x21, 0x89, 0xcd, 0x0e, 0x4b, 0x58, 0xb2, 0x61, 0x83, 0xdb, 0x9e, 0x87, 0x67, 0x3c,
0x33, 0xde, 0x63, 0xcf, 0x0c, 0xd9, 0x84, 0xb0, 0xe5, 0xea, 0xdb, 0xed, 0x1a, 0x77, 0x57, 0xf5,
0x56, 0x55, 0x7b, 0xdc, 0x09, 0x79, 0xa1, 0x40, 0x56, 0xe4, 0xa9, 0x84, 0x8f, 0x44, 0x42, 0x10,
0x1e, 0x02, 0xf1, 0x11, 0x21, 0xbe, 0x00, 0x21, 0x3e, 0xc8, 0x57, 0x10, 0x1f, 0x44, 0x02, 0x25,
0x81, 0x08, 0x93, 0x0c, 0xa0, 0x00, 0x12, 0x20, 0x20, 0x3f, 0x8c, 0xf8, 0x40, 0xf7, 0x7d, 0xab,
0xba, 0x7b, 0x6c, 0x8f, 0x6b, 0x26, 0x51, 0xc4, 0x9f, 0xfb, 0x9c, 0x53, 0xe7, 0x9c, 0xfb, 0x3a,
0xf7, 0x9c, 0x73, 0xcf, 0xbd, 0x86, 0xd5, 0x66, 0x90, 0x6e, 0x75, 0x37, 0xe7, 0xfd, 0xa8, 0xbd,
0xe0, 0xc5, 0xcd, 0xa8, 0x13, 0x47, 0x77, 0xf8, 0x1f, 0x6f, 0xf5, 0xeb, 0x0b, 0x3b, 0xe7, 0x17,
0x3a, 0xdb, 0xcd, 0x05, 0xaf, 0x13, 0x24, 0x0b, 0x5e, 0xa7, 0xd3, 0x0a, 0x7c, 0x2f, 0x0d, 0xa2,
0x70, 0x61, 0xe7, 0x59, 0xaf, 0xd5, 0xd9, 0xf2, 0x9e, 0x5d, 0x68, 0xd2, 0x90, 0xc6, 0x5e, 0x4a,
0xeb, 0xf3, 0x9d, 0x38, 0x4a, 0x23, 0xf2, 0x0e, 0xc3, 0x6d, 0x5e, 0x71, 0xe3, 0x7f, 0xfc, 0x9c,
0x5f, 0x9f, 0xdf, 0x39, 0x3f, 0xdf, 0xd9, 0x6e, 0xce, 0x33, 0x6e, 0xf3, 0x16, 0xb7, 0x79, 0xc5,
0xed, 0xcc, 0x5b, 0x2d, 0x5d, 0x9a, 0x51, 0x33, 0x5a, 0xe0, 0x4c, 0x37, 0xbb, 0x0d, 0xfe, 0x8b,
0xff, 0xe0, 0x7f, 0x09, 0x61, 0x67, 0xdc, 0xed, 0xe7, 0x93, 0xf9, 0x20, 0x62, 0xea, 0x2d, 0xf8,
0x51, 0x4c, 0x17, 0x76, 0xfa, 0x14, 0x3a, 0xf3, 0x9c, 0xa1, 0x69, 0x7b, 0xfe, 0x56, 0x10, 0xd2,
0xb8, 0x67, 0xda, 0xd4, 0xa6, 0xa9, 0x37, 0xe8, 0xab, 0x85, 0x61, 0x5f, 0xc5, 0xdd, 0x30, 0x0d,
0xda, 0xb4, 0xef, 0x83, 0xb7, 0xed, 0xf7, 0x41, 0xe2, 0x6f, 0xd1, 0xb6, 0x97, 0xff, 0xce, 0x7d,
0x15, 0xa6, 0x16, 0x6f, 0xaf, 0x2f, 0x76, 0xd3, 0xad, 0xa5, 0x28, 0x6c, 0x04, 0x4d, 0xf2, 0xe3,
0x30, 0xe1, 0xb7, 0xba, 0x49, 0x4a, 0xe3, 0xeb, 0x5e, 0x9b, 0xce, 0x3a, 0xe7, 0x9c, 0x67, 0xaa,
0xb5, 0x13, 0x5f, 0xd9, 0x9b, 0x7b, 0xe2, 0xde, 0xde, 0xdc, 0xc4, 0x92, 0x41, 0xa1, 0x4d, 0x47,
0x7e, 0x18, 0xc6, 0xe3, 0xa8, 0x45, 0x17, 0xf1, 0xfa, 0x6c, 0x89, 0x7f, 0x72, 0x4c, 0x7e, 0x32,
0x8e, 0x02, 0x8c, 0x0a, 0xef, 0x7e, 0xad, 0x04, 0xb0, 0xd8, 0xe9, 0xac, 0xc5, 0xd1, 0x1d, 0xea,
0xa7, 0xe4, 0x15, 0xa8, 0xb0, 0x5e, 0xa8, 0x7b, 0xa9, 0xc7, 0xa5, 0x4d, 0x9c, 0xff, 0xd1, 0x79,
0xd1, 0x98, 0x79, 0xbb, 0x31, 0x66, 0xe4, 0x18, 0xf5, 0xfc, 0xce, 0xb3, 0xf3, 0x37, 0x36, 0xd9,
0xf7, 0xd7, 0x68, 0xea, 0xd5, 0x88, 0x14, 0x06, 0x06, 0x86, 0x9a, 0x2b, 0x09, 0x61, 0x24, 0xe9,
0x50, 0x9f, 0x2b, 0x36, 0x71, 0x7e, 0x75, 0xfe, 0x28, 0x53, 0x64, 0xde, 0x68, 0xbe, 0xde, 0xa1,
0x7e, 0x6d, 0x52, 0x4a, 0x1e, 0x61, 0xbf, 0x90, 0xcb, 0x21, 0x3b, 0x30, 0x96, 0xa4, 0x5e, 0xda,
0x4d, 0x66, 0xcb, 0x5c, 0xe2, 0xf5, 0xc2, 0x24, 0x72, 0xae, 0xb5, 0x69, 0x29, 0x73, 0x4c, 0xfc,
0x46, 0x29, 0xcd, 0xfd, 0x3b, 0x07, 0xa6, 0x0d, 0xf1, 0x6a, 0x90, 0xa4, 0xe4, 0x3d, 0x7d, 0x9d,
0x3b, 0x7f, 0xb0, 0xce, 0x65, 0x5f, 0xf3, 0xae, 0x3d, 0x2e, 0x85, 0x55, 0x14, 0xc4, 0xea, 0xd8,
0x36, 0x8c, 0x06, 0x29, 0x6d, 0x27, 0xb3, 0xa5, 0x73, 0xe5, 0x67, 0x26, 0xce, 0x5f, 0x2e, 0xaa,
0x9d, 0xb5, 0x29, 0x29, 0x74, 0x74, 0x85, 0xb1, 0x47, 0x21, 0xc5, 0xfd, 0x2e, 0xd8, 0xed, 0x63,
0x1d, 0x4e, 0x9e, 0x85, 0x89, 0x24, 0xea, 0xc6, 0x3e, 0x45, 0xda, 0x89, 0x92, 0x59, 0xe7, 0x5c,
0x99, 0x4d, 0x3d, 0x36, 0x53, 0xd7, 0x0d, 0x18, 0x6d, 0x1a, 0xf2, 0x29, 0x07, 0x26, 0xeb, 0x34,
0x49, 0x83, 0x90, 0xcb, 0x57, 0xca, 0x6f, 0x1c, 0x59, 0x79, 0x05, 0x5c, 0x36, 0xcc, 0x6b, 0x27,
0x65, 0x43, 0x26, 0x2d, 0x60, 0x82, 0x19, 0xf9, 0x6c, 0xc5, 0xd5, 0x69, 0xe2, 0xc7, 0x41, 0x87,
0xfd, 0xe6, 0x73, 0xc6, 0x5a, 0x71, 0xcb, 0x06, 0x85, 0x36, 0x1d, 0x09, 0x61, 0x94, 0xad, 0xa8,
0x64, 0x76, 0x84, 0xeb, 0xbf, 0x72, 0x34, 0xfd, 0x65, 0xa7, 0xb2, 0xc5, 0x6a, 0x7a, 0x9f, 0xfd,
0x4a, 0x50, 0x88, 0x21, 0x9f, 0x74, 0x60, 0x56, 0xae, 0x78, 0xa4, 0xa2, 0x43, 0x6f, 0x6f, 0x05,
0x29, 0x6d, 0x05, 0x49, 0x3a, 0x3b, 0xca, 0x75, 0x58, 0x38, 0xd8, 0xdc, 0xba, 0x14, 0x47, 0xdd,
0xce, 0xd5, 0x20, 0xac, 0xd7, 0xce, 0x49, 0x49, 0xb3, 0x4b, 0x43, 0x18, 0xe3, 0x50, 0x91, 0xe4,
0x73, 0x0e, 0x9c, 0x09, 0xbd, 0x36, 0x4d, 0x3a, 0x1e, 0x1b, 0x5a, 0x81, 0xae, 0xb5, 0x3c, 0x7f,
0x9b, 0x6b, 0x34, 0xf6, 0x70, 0x1a, 0xb9, 0x52, 0xa3, 0x33, 0xd7, 0x87, 0xb2, 0xc6, 0x07, 0x88,
0x25, 0xbf, 0xe5, 0xc0, 0x4c, 0x14, 0x77, 0xb6, 0xbc, 0x90, 0xd6, 0x15, 0x36, 0x99, 0x1d, 0xe7,
0x4b, 0xef, 0xbd, 0x47, 0x1b, 0xa2, 0x1b, 0x79, 0xb6, 0xd7, 0xa2, 0x30, 0x48, 0xa3, 0x78, 0x9d,
0xa6, 0x69, 0x10, 0x36, 0x93, 0xda, 0xa9, 0x7b, 0x7b, 0x73, 0x33, 0x7d, 0x54, 0xd8, 0xaf, 0x0f,
0x79, 0x3f, 0x4c, 0x24, 0xbd, 0xd0, 0xbf, 0x1d, 0x84, 0xf5, 0xe8, 0x6e, 0x32, 0x5b, 0x29, 0x62,
0xf9, 0xae, 0x6b, 0x86, 0x72, 0x01, 0x1a, 0x01, 0x68, 0x4b, 0x1b, 0x3c, 0x70, 0x66, 0x2a, 0x55,
0x8b, 0x1e, 0x38, 0x33, 0x99, 0x1e, 0x20, 0x96, 0x7c, 0xcc, 0x81, 0xa9, 0x24, 0x68, 0x86, 0x5e,
0xda, 0x8d, 0xe9, 0x55, 0xda, 0x4b, 0x66, 0x81, 0x2b, 0x72, 0xe5, 0x88, 0xbd, 0x62, 0xb1, 0xac,
0x9d, 0x92, 0x3a, 0x4e, 0xd9, 0xd0, 0x04, 0xb3, 0x72, 0x07, 0x2d, 0x34, 0x33, 0xad, 0x27, 0x8a,
0x5d, 0x68, 0x66, 0x52, 0x0f, 0x15, 0xe9, 0xfe, 0x79, 0x09, 0x8e, 0xe7, 0xf7, 0x20, 0xf2, 0x3b,
0x0e, 0x1c, 0xbb, 0x73, 0x37, 0xdd, 0x88, 0xb6, 0x69, 0x98, 0xd4, 0x7a, 0xcc, 0x52, 0x70, 0xeb,
0x3b, 0x71, 0xde, 0x2f, 0x76, 0xb7, 0x9b, 0xbf, 0x92, 0x95, 0x72, 0x21, 0x4c, 0xe3, 0x5e, 0xed,
0x49, 0xd9, 0x9e, 0x63, 0x57, 0x6e, 0x6f, 0xd8, 0x58, 0xcc, 0x2b, 0x75, 0xe6, 0xe3, 0x0e, 0x9c,
0x1c, 0xc4, 0x82, 0x1c, 0x87, 0xf2, 0x36, 0xed, 0x09, 0x07, 0x07, 0xd9, 0x9f, 0xe4, 0x67, 0x61,
0x74, 0xc7, 0x6b, 0x75, 0xa9, 0x74, 0x14, 0x2e, 0x1d, 0xad, 0x21, 0x5a, 0x33, 0x14, 0x5c, 0xdf,
0x5e, 0x7a, 0xde, 0x71, 0xff, 0xb2, 0x0c, 0x13, 0xd6, 0x56, 0xf1, 0x18, 0x9c, 0x9f, 0x28, 0xe3,
0xfc, 0x5c, 0x2b, 0x6c, 0x97, 0x1b, 0xea, 0xfd, 0xdc, 0xcd, 0x79, 0x3f, 0x37, 0x8a, 0x13, 0xf9,
0x40, 0xf7, 0x87, 0xa4, 0x50, 0x8d, 0x3a, 0xcc, 0xb9, 0x65, 0xbb, 0xe8, 0x48, 0x11, 0x43, 0x78,
0x43, 0xb1, 0xab, 0x4d, 0xdd, 0xdb, 0x9b, 0xab, 0xea, 0x9f, 0x68, 0x04, 0xb9, 0x5f, 0x77, 0xe0,
0xa4, 0xa5, 0xe3, 0x52, 0x14, 0xd6, 0x03, 0x3e, 0xb4, 0xe7, 0x60, 0x24, 0xed, 0x75, 0x94, 0x07,
0xad, 0x7b, 0x6a, 0xa3, 0xd7, 0xa1, 0xc8, 0x31, 0xcc, 0x67, 0x6e, 0xd3, 0x24, 0xf1, 0x9a, 0x34,
0xef, 0x33, 0x5f, 0x13, 0x60, 0x54, 0x78, 0x12, 0x03, 0x69, 0x79, 0x49, 0xba, 0x11, 0x7b, 0x61,
0xc2, 0xd9, 0x6f, 0x04, 0x6d, 0x2a, 0x3b, 0xf8, 0x47, 0x0e, 0x36, 0x63, 0xd8, 0x17, 0xb5, 0xd3,
0xf7, 0xf6, 0xe6, 0xc8, 0x6a, 0x1f, 0x27, 0x1c, 0xc0, 0xdd, 0xfd, 0x9c, 0x03, 0xa7, 0x07, 0xbb,
0x35, 0xe4, 0x8d, 0x30, 0x96, 0xd0, 0x78, 0x87, 0xc6, 0xb2, 0x75, 0x66, 0x48, 0x38, 0x14, 0x25,
0x96, 0x2c, 0x40, 0x55, 0x9b, 0x5c, 0xd9, 0xc6, 0x19, 0x49, 0x5a, 0x35, 0x76, 0xda, 0xd0, 0xb0,
0x4e, 0x63, 0x3f, 0xa4, 0x13, 0xa4, 0x3b, 0x8d, 0xc7, 0x1b, 0x1c, 0xe3, 0xfe, 0xbd, 0x03, 0xc7,
0x2c, 0xad, 0x1e, 0x83, 0x97, 0x1b, 0x66, 0xbd, 0xdc, 0x95, 0xc2, 0xe6, 0xf3, 0x10, 0x37, 0xf7,
0xcb, 0x63, 0x30, 0x63, 0xcf, 0x7a, 0x6e, 0x8e, 0x79, 0x80, 0x45, 0x3b, 0xd1, 0x4d, 0x5c, 0x95,
0x7d, 0x6e, 0x02, 0x2c, 0x01, 0x46, 0x85, 0x67, 0x9d, 0xd8, 0xf1, 0xd2, 0x2d, 0xd9, 0xe1, 0xba,
0x13, 0xd7, 0xbc, 0x74, 0x0b, 0x39, 0x86, 0xbc, 0x08, 0xd3, 0xa9, 0x17, 0x37, 0x69, 0x8a, 0x74,
0x27, 0x48, 0xd4, 0x7a, 0xa9, 0xd6, 0x4e, 0x4b, 0xda, 0xe9, 0x8d, 0x0c, 0x16, 0x73, 0xd4, 0xe4,
0x55, 0x18, 0xd9, 0xa2, 0xad, 0xb6, 0xf4, 0x6b, 0xd6, 0x8b, 0x5b, 0xe1, 0xbc, 0xad, 0x97, 0x69,
0xab, 0x5d, 0xab, 0x30, 0x95, 0xd9, 0x5f, 0xc8, 0x45, 0x91, 0x5f, 0x74, 0xa0, 0xba, 0xdd, 0x4d,
0xd2, 0xa8, 0x1d, 0xbc, 0x8f, 0xce, 0x56, 0xb8, 0xe0, 0x9f, 0x29, 0x58, 0xf0, 0x55, 0xc5, 0x5f,
0xac, 0x77, 0xfd, 0x13, 0x8d, 0x64, 0xf2, 0x01, 0x18, 0xdf, 0x4e, 0xa2, 0x30, 0xa4, 0xcc, 0x53,
0x61, 0x4a, 0xdc, 0x2a, 0x5a, 0x09, 0xc1, 0xbd, 0x36, 0xc1, 0xc6, 0x56, 0xfe, 0x40, 0x25, 0x93,
0x77, 0x43, 0x3d, 0x88, 0xa9, 0x9f, 0x46, 0x71, 0x6f, 0x16, 0x1e, 0x49, 0x37, 0x2c, 0x2b, 0xfe,
0xa2, 0x1b, 0xf4, 0x4f, 0x34, 0x92, 0x49, 0x0f, 0xc6, 0x3a, 0xad, 0x6e, 0x33, 0x08, 0x67, 0x27,
0xb8, 0x0e, 0x37, 0x0b, 0xd6, 0x61, 0x8d, 0x33, 0xaf, 0x01, 0x33, 0x2a, 0xe2, 0x6f, 0x94, 0x02,
0xc9, 0xd3, 0x30, 0xea, 0x6f, 0x79, 0x71, 0x3a, 0x3b, 0xc9, 0xe7, 0xac, 0x5e, 0x44, 0x4b, 0x0c,
0x88, 0x02, 0xe7, 0xfe, 0x46, 0x09, 0xce, 0x0c, 0x6f, 0x98, 0x58, 0x4d, 0x7e, 0x37, 0x4e, 0x84,
0x7d, 0xae, 0xd8, 0xab, 0x89, 0x83, 0x51, 0xe1, 0xc9, 0x47, 0x1c, 0x18, 0xbf, 0x23, 0x47, 0xbc,
0xf4, 0x48, 0x46, 0xfc, 0x8a, 0x1c, 0x71, 0xad, 0xc3, 0x15, 0x35, 0xea, 0x52, 0x2e, 0x53, 0x97,
0xee, 0xfa, 0xad, 0x6e, 0x5d, 0x59, 0x46, 0x4d, 0x7a, 0x41, 0x80, 0x51, 0xe1, 0x19, 0x69, 0x10,
0x0a, 0xd2, 0x91, 0x2c, 0xe9, 0x4a, 0x28, 0x49, 0x25, 0xde, 0xfd, 0xdd, 0x11, 0x38, 0x35, 0x70,
0xf1, 0x91, 0x79, 0x00, 0xee, 0xb3, 0x5c, 0x0c, 0x58, 0x80, 0x29, 0xa2, 0xea, 0x69, 0xe6, 0x62,
0xdc, 0xd2, 0x50, 0xb4, 0x28, 0xc8, 0x87, 0x00, 0x3a, 0x5e, 0xec, 0xb5, 0x69, 0x4a, 0x63, 0x65,
0x27, 0xaf, 0x1e, 0xad, 0x97, 0x98, 0x1e, 0x6b, 0x8a, 0xa7, 0xf1, 0x71, 0x34, 0x28, 0x41, 0x4b,
0x24, 0x8b, 0xa1, 0x63, 0xda, 0xa2, 0x5e, 0x42, 0xaf, 0x9b, 0xed, 0x43, 0xc7, 0xd0, 0x68, 0x50,
0x68, 0xd3, 0xb1, 0x7d, 0x8c, 0xb7, 0x22, 0x91, 0x7d, 0xa5, 0xf7, 0x31, 0xde, 0xce, 0x04, 0x25,
0x96, 0x7c, 0xda, 0x81, 0xe9, 0x46, 0xd0, 0xa2, 0x46, 0xba, 0x8c, 0x78, 0x6f, 0x1c, 0xbd, 0x91,
0x17, 0x6d, 0xbe, 0xc6, 0x02, 0x67, 0xc0, 0x09, 0xe6, 0xc4, 0xb3, 0x61, 0xde, 0xa1, 0x31, 0x37,
0xdd, 0x63, 0xd9, 0x61, 0xbe, 0x25, 0xc0, 0xa8, 0xf0, 0x64, 0x11, 0x8e, 0x75, 0xbc, 0x24, 0x59,
0x8a, 0x69, 0x9d, 0x86, 0x69, 0xe0, 0xb5, 0x44, 0x3c, 0x5a, 0x31, 0x4e, 0xf4, 0x5a, 0x16, 0x8d,
0x79, 0x7a, 0xf7, 0x0b, 0x25, 0x98, 0x1d, 0x36, 0x6d, 0x49, 0xc2, 0x26, 0x67, 0x7a, 0xcb, 0x8b,
0x13, 0x19, 0x01, 0x1c, 0x31, 0x90, 0x94, 0x7c, 0x6f, 0x79, 0xb1, 0x3d, 0xcd, 0xb9, 0x00, 0x54,
0x92, 0xc8, 0x1d, 0x18, 0x49, 0x5b, 0x5e, 0x41, 0x99, 0x27, 0x4b, 0xa2, 0xf1, 0xd3, 0x56, 0x17,
0x13, 0xe4, 0x32, 0xc8, 0x53, 0x30, 0xd2, 0x0a, 0x36, 0x99, 0x3f, 0xcb, 0xd6, 0x01, 0xdf, 0x98,
0x56, 0x83, 0xcd, 0x04, 0x39, 0xd4, 0xfd, 0x9a, 0x33, 0xa0, 0x6f, 0xa4, 0xdd, 0x66, 0xf3, 0x92,
0x86, 0x3b, 0x41, 0x1c, 0x85, 0x6d, 0x1a, 0xa6, 0xf9, 0x6c, 0xea, 0x05, 0x83, 0x42, 0x9b, 0x8e,
0xfc, 0x82, 0x33, 0x60, 0x41, 0x1d, 0x31, 0x8d, 0x28, 0x55, 0x3a, 0xf0, 0x9a, 0x72, 0xff, 0x63,
0x6c, 0x80, 0x09, 0xd5, 0x7b, 0x22, 0x39, 0x0f, 0xc0, 0x1c, 0xb2, 0xb5, 0x98, 0x36, 0x82, 0x5d,
0xd9, 0x32, 0xcd, 0xf2, 0xba, 0xc6, 0xa0, 0x45, 0xa5, 0xbe, 0x59, 0xef, 0x36, 0xd8, 0x37, 0xa5,
0xfe, 0x6f, 0x04, 0x06, 0x2d, 0x2a, 0xf2, 0x1c, 0x8c, 0x05, 0x6d, 0xaf, 0x49, 0x55, 0xff, 0x3f,
0xc5, 0xd6, 0xe7, 0x0a, 0x87, 0xdc, 0xdf, 0x9b, 0x9b, 0xd6, 0x0a, 0x71, 0x10, 0x4a, 0x5a, 0xf2,
0xdb, 0x0e, 0x4c, 0xfa, 0x51, 0xbb, 0x1d, 0x85, 0xab, 0xde, 0x26, 0x6d, 0xa9, 0x2c, 0xd9, 0x9d,
0x47, 0xe5, 0x31, 0xcc, 0x2f, 0x59, 0xc2, 0x44, 0x8c, 0xaa, 0x73, 0x7f, 0x36, 0x0a, 0x33, 0x5a,
0xd9, 0xcb, 0x78, 0x74, 0x9f, 0x65, 0xfc, 0x47, 0x0e, 0xcc, 0x88, 0x6f, 0x17, 0xc3, 0x30, 0x4a,
0x65, 0xf2, 0x52, 0xa4, 0xb9, 0xa2, 0x47, 0xdc, 0x2c, 0x4b, 0xa2, 0x68, 0xdb, 0xeb, 0xa4, 0x9a,
0x33, 0x7d, 0x78, 0xec, 0x57, 0x92, 0x5c, 0x82, 0x99, 0x46, 0x14, 0xfb, 0xd4, 0xee, 0x08, 0x69,
0x83, 0x34, 0xa3, 0x8b, 0x79, 0x02, 0xec, 0xff, 0x86, 0xdc, 0x82, 0xd3, 0x16, 0xd0, 0xee, 0x87,
0x0a, 0xe7, 0x76, 0x56, 0x72, 0x3b, 0x7d, 0x71, 0x20, 0x15, 0x0e, 0xf9, 0xfa, 0xcc, 0x3b, 0x61,
0xa6, 0x6f, 0xfc, 0x06, 0x24, 0x08, 0x4e, 0xda, 0x09, 0x82, 0xaa, 0x15, 0xd7, 0x9f, 0x59, 0x86,
0xd3, 0x83, 0x7b, 0xea, 0x30, 0x5c, 0xdc, 0x5f, 0x73, 0xe0, 0xc9, 0x21, 0x9e, 0x90, 0x8e, 0x8c,
0x9c, 0x61, 0x91, 0x11, 0xf1, 0xa0, 0x4c, 0xc3, 0x1d, 0x69, 0x2c, 0x2e, 0x1e, 0x6d, 0x46, 0x5c,
0x08, 0x77, 0xc4, 0x40, 0x8f, 0xdf, 0xdb, 0x9b, 0x2b, 0x5f, 0x08, 0x77, 0x90, 0xf1, 0x76, 0x7f,
0x65, 0x2c, 0x13, 0x7c, 0xad, 0xab, 0x78, 0x9f, 0x2b, 0x2a, 0x43, 0xaf, 0x1b, 0x05, 0xcf, 0x45,
0x2b, 0xb8, 0x14, 0x59, 0x7c, 0x29, 0x8e, 0x7c, 0xdc, 0xe1, 0x89, 0x73, 0x15, 0x94, 0x4a, 0xe7,
0xec, 0xd1, 0xe4, 0xf1, 0xed, 0x74, 0xbc, 0x02, 0xa2, 0x2d, 0x9d, 0xad, 0xe4, 0x8e, 0xc8, 0x5b,
0xe5, 0x5d, 0x34, 0x95, 0x5a, 0x57, 0x78, 0xb2, 0x0b, 0x90, 0xf4, 0x42, 0x7f, 0x2d, 0x6a, 0x05,
0x7e, 0x4f, 0x66, 0x2a, 0x0a, 0x48, 0xbe, 0x0a, 0x7e, 0xc2, 0x4f, 0x33, 0xbf, 0xd1, 0x92, 0x45,
0xbe, 0xe8, 0xc0, 0x4c, 0xd0, 0x0c, 0xa3, 0x98, 0x2e, 0x07, 0x8d, 0x06, 0x8d, 0x69, 0xe8, 0x53,
0xe5, 0xca, 0xdc, 0x3e, 0x9a, 0x06, 0x2a, 0x6f, 0xb8, 0x92, 0x67, 0x6f, 0x96, 0x78, 0x1f, 0x0a,
0xfb, 0x95, 0x21, 0x75, 0x18, 0x09, 0xc2, 0x46, 0x24, 0x0d, 0x5b, 0xed, 0x68, 0x4a, 0xad, 0x84,
0x8d, 0xc8, 0xac, 0x15, 0xf6, 0x0b, 0x39, 0x77, 0xb2, 0x0a, 0x27, 0x63, 0x19, 0xcc, 0x5e, 0x0e,
0x12, 0x16, 0x12, 0xac, 0x06, 0xed, 0x20, 0xe5, 0x46, 0xa9, 0x5c, 0x9b, 0xbd, 0xb7, 0x37, 0x77,
0x12, 0x07, 0xe0, 0x71, 0xe0, 0x57, 0xee, 0x6b, 0xd5, 0x6c, 0xc4, 0x2e, 0xf2, 0x51, 0x1f, 0x80,
0x6a, 0xac, 0x4f, 0x00, 0x84, 0x67, 0xb4, 0x5a, 0x4c, 0x1f, 0xcb, 0x44, 0x98, 0x4e, 0xa5, 0x98,
0x5c, 0xbf, 0x91, 0xc8, 0x3c, 0x24, 0x36, 0xf2, 0x72, 0x59, 0x14, 0x30, 0xbf, 0xa4, 0x54, 0x93,
0xf3, 0xeb, 0x85, 0x3e, 0x72, 0x19, 0x24, 0x86, 0xb1, 0x2d, 0xea, 0xb5, 0xd2, 0x2d, 0x99, 0x92,
0xba, 0x72, 0x54, 0xb7, 0x98, 0xf1, 0xca, 0xa7, 0xfb, 0x04, 0x14, 0xa5, 0x24, 0xb2, 0x0b, 0xe3,
0x5b, 0x62, 0x10, 0xe4, 0xde, 0x7e, 0xed, 0xa8, 0x9d, 0x9b, 0x19, 0x59, 0xb3, 0x7e, 0x25, 0x00,
0x95, 0x38, 0xf2, 0x4b, 0x0e, 0x80, 0xaf, 0xf2, 0x7c, 0x6a, 0xf9, 0x60, 0x61, 0x76, 0x47, 0xa7,
0x10, 0x8d, 0x6b, 0xa4, 0x41, 0x09, 0x5a, 0x92, 0xc9, 0x2b, 0x30, 0x19, 0x53, 0x3f, 0x0a, 0xfd,
0xa0, 0x45, 0xeb, 0x8b, 0x29, 0x8f, 0x04, 0x0e, 0x97, 0x0f, 0x3c, 0xce, 0xfc, 0x13, 0xb4, 0x78,
0x60, 0x86, 0x23, 0x79, 0xcd, 0x81, 0x69, 0x9d, 0xeb, 0x64, 0x03, 0x42, 0x65, 0xce, 0x67, 0xb5,
0xa0, 0xcc, 0x2a, 0xe7, 0x59, 0x23, 0x2c, 0xe2, 0xc9, 0xc2, 0x30, 0x27, 0x97, 0xbc, 0x0c, 0x10,
0x6d, 0xf2, 0xbc, 0x22, 0x6b, 0x6a, 0xe5, 0xd0, 0x4d, 0x9d, 0x16, 0x29, 0x72, 0xc5, 0x01, 0x2d,
0x6e, 0xe4, 0x2a, 0x80, 0x58, 0x36, 0x1b, 0xbd, 0x0e, 0xe5, 0x79, 0x9d, 0x6a, 0xed, 0xcd, 0xaa,
0xf3, 0xd7, 0x35, 0xe6, 0xfe, 0xde, 0x5c, 0x7f, 0xc0, 0xcc, 0x13, 0xba, 0xd6, 0xe7, 0xe4, 0xfd,
0x30, 0x9e, 0x74, 0xdb, 0x6d, 0x4f, 0xe7, 0x67, 0xd6, 0x8a, 0xdb, 0x11, 0x05, 0x5f, 0x33, 0x37,
0x25, 0x00, 0x95, 0x44, 0x37, 0x04, 0xd2, 0x4f, 0x4f, 0x9e, 0x83, 0x49, 0xba, 0x9b, 0xd2, 0x38,
0xf4, 0x5a, 0x37, 0x71, 0x55, 0x45, 0xf4, 0x7c, 0xf0, 0x2f, 0x58, 0x70, 0xcc, 0x50, 0x11, 0x57,
0x7b, 0xde, 0x25, 0x4e, 0x0f, 0xc6, 0xf3, 0x56, 0x7e, 0xb6, 0xfb, 0x3f, 0xa5, 0x8c, 0x47, 0xb0,
0x11, 0x53, 0x4a, 0x22, 0x18, 0x0d, 0xa3, 0xba, 0x36, 0x7a, 0x57, 0x8a, 0x31, 0x7a, 0xd7, 0xa3,
0xba, 0x75, 0x34, 0xcd, 0x7e, 0x25, 0x28, 0xe4, 0xf0, 0xb3, 0x3b, 0x75, 0xc8, 0xc9, 0x11, 0xd2,
0x09, 0x2a, 0x52, 0xb2, 0x3e, 0xbb, 0xbb, 0x61, 0x0b, 0xc2, 0xac, 0x5c, 0xb2, 0x0d, 0xa3, 0x5b,
0x51, 0x92, 0x8a, 0x58, 0xe5, 0xc8, 0x5e, 0xd8, 0xe5, 0x28, 0x49, 0xf9, 0x16, 0xa6, 0x9b, 0xcd,
0x20, 0x09, 0x0a, 0x19, 0xee, 0x77, 0x9c, 0x4c, 0xfe, 0xe6, 0xb6, 0x97, 0xfa, 0x5b, 0x17, 0x76,
0x58, 0xfc, 0x78, 0x35, 0x73, 0xf6, 0xf0, 0x13, 0xf6, 0xd9, 0xc3, 0xfd, 0xbd, 0xb9, 0x37, 0x0d,
0xab, 0x15, 0xba, 0xcb, 0x38, 0xcc, 0x73, 0x16, 0xd6, 0x31, 0xc5, 0x87, 0x1d, 0x98, 0xb0, 0xd4,
0x93, 0x1b, 0x4a, 0x81, 0x69, 0x70, 0xed, 0x5c, 0x59, 0x40, 0xb4, 0x45, 0xba, 0x9f, 0x75, 0x60,
0xbc, 0xe6, 0xf9, 0xdb, 0x51, 0xa3, 0x41, 0xde, 0x02, 0x95, 0x7a, 0x57, 0x9e, 0xf2, 0x88, 0xf6,
0xe9, 0xe4, 0xfd, 0xb2, 0x84, 0xa3, 0xa6, 0x60, 0x73, 0xb8, 0xe1, 0xf9, 0x69, 0x14, 0x73, 0xb5,
0xcb, 0x62, 0x0e, 0x5f, 0xe4, 0x10, 0x94, 0x18, 0x16, 0xa4, 0xb7, 0xbd, 0x5d, 0xf5, 0x71, 0x3e,
0x79, 0x74, 0xcd, 0xa0, 0xd0, 0xa6, 0x73, 0xff, 0xac, 0x0a, 0xe3, 0xf2, 0x38, 0xf5, 0xc0, 0x07,
0x22, 0xca, 0x8b, 0x2f, 0x0d, 0xf5, 0xe2, 0x13, 0x18, 0xf3, 0x79, 0x25, 0x96, 0xdc, 0x4a, 0x8f,
0x98, 0x46, 0x93, 0x0a, 0x8a, 0xe2, 0x2e, 0xa3, 0x96, 0xf8, 0x8d, 0x52, 0x14, 0xf9, 0x8c, 0x03,
0xc7, 0xfc, 0x28, 0x0c, 0xa9, 0x6f, 0xec, 0xfc, 0x48, 0x11, 0x07, 0x86, 0x4b, 0x59, 0xa6, 0x26,
0xe5, 0x94, 0x43, 0x60, 0x5e, 0x3c, 0x79, 0x01, 0xa6, 0x44, 0x9f, 0xdd, 0xca, 0xc4, 0xc7, 0xe6,
0x08, 0xdd, 0x46, 0x62, 0x96, 0x96, 0xcc, 0x8b, 0x3c, 0x03, 0x3f, 0x53, 0x12, 0x31, 0xb2, 0xcc,
0x5f, 0xea, 0x43, 0xa7, 0x04, 0x2d, 0x0a, 0x12, 0x03, 0x89, 0x69, 0x23, 0xa6, 0xc9, 0x16, 0xd2,
0x57, 0xbb, 0x34, 0x49, 0xf9, 0x1e, 0x33, 0xfe, 0x70, 0xc7, 0x6b, 0xd8, 0xc7, 0x09, 0x07, 0x70,
0x27, 0xdb, 0xd2, 0xd1, 0xad, 0x14, 0xb1, 0x9c, 0xe4, 0x30, 0x0f, 0xf5, 0x77, 0xe7, 0x60, 0x34,
0xd9, 0xf2, 0xe2, 0x3a, 0xdf, 0xdb, 0xca, 0xb5, 0x2a, 0xb3, 0x25, 0xeb, 0x0c, 0x80, 0x02, 0x4e,
0x96, 0xe1, 0x78, 0xae, 0x00, 0x20, 0xe1, 0xbb, 0x57, 0xa5, 0x36, 0x2b, 0xd9, 0x1d, 0xcf, 0x95,
0x0e, 0x24, 0xd8, 0xf7, 0x85, 0x1d, 0x04, 0x4d, 0xec, 0x13, 0x04, 0xf5, 0x60, 0xac, 0x25, 0x12,
0x01, 0x93, 0xdc, 0x54, 0xbe, 0x54, 0x48, 0x07, 0xcc, 0xdb, 0x09, 0x18, 0x3d, 0xdb, 0x65, 0x42,
0x41, 0x0a, 0x24, 0x9f, 0x64, 0x06, 0xcd, 0xca, 0x1d, 0x4c, 0x71, 0x05, 0x6e, 0x15, 0xa3, 0x40,
0x5f, 0xaa, 0xc4, 0x58, 0x37, 0x2b, 0x11, 0x61, 0xcb, 0x3f, 0xf3, 0x93, 0x30, 0xf1, 0xb0, 0x79,
0x87, 0x17, 0xe1, 0xf8, 0x91, 0x32, 0x0e, 0xdf, 0x75, 0x40, 0x8d, 0xeb, 0x92, 0xe7, 0x6f, 0x51,
0x36, 0x65, 0xc8, 0x8b, 0x30, 0xad, 0xc3, 0x88, 0xa5, 0xa8, 0x2b, 0xf3, 0x96, 0x65, 0x93, 0x9b,
0xc6, 0x0c, 0x16, 0x73, 0xd4, 0x64, 0x01, 0xaa, 0xac, 0x9f, 0xc4, 0xa7, 0xc2, 0xec, 0xea, 0x50,
0x65, 0x71, 0x6d, 0x45, 0x7e, 0x65, 0x68, 0x48, 0x04, 0x33, 0x2d, 0x2f, 0x49, 0xb9, 0x06, 0x2c,
0xaa, 0x78, 0xc8, 0xc3, 0x6d, 0x5e, 0xff, 0xb4, 0x9a, 0x67, 0x84, 0xfd, 0xbc, 0xdd, 0xaf, 0x8f,
0xc0, 0x54, 0xc6, 0x32, 0xb2, 0x5d, 0xa5, 0x9b, 0x30, 0xd7, 0x47, 0xa7, 0x58, 0xf4, 0xae, 0x72,
0x53, 0xc2, 0x51, 0x53, 0x30, 0xea, 0x8e, 0x97, 0x24, 0x77, 0xa3, 0xb8, 0x2e, 0x4d, 0xb9, 0xa6,
0x5e, 0x93, 0x70, 0xd4, 0x14, 0x6c, 0x7f, 0xd9, 0xa4, 0x5e, 0x4c, 0x63, 0x5e, 0x0f, 0x92, 0xdf,
0x5f, 0x6a, 0x06, 0x85, 0x36, 0x1d, 0x37, 0xca, 0x69, 0x2b, 0x59, 0x6a, 0x05, 0x34, 0x4c, 0x85,
0x9a, 0xc5, 0x18, 0xe5, 0x8d, 0xd5, 0x75, 0x9b, 0xa9, 0x31, 0xca, 0x39, 0x04, 0xe6, 0xc5, 0x93,
0x8f, 0x3a, 0x30, 0xe5, 0xdd, 0x4d, 0x4c, 0xb9, 0x30, 0xb7, 0xca, 0x47, 0xde, 0xa4, 0x32, 0x15,
0xc8, 0xb5, 0x19, 0x66, 0xde, 0x33, 0x20, 0xcc, 0x0a, 0x25, 0x9f, 0x77, 0x80, 0xd0, 0x5d, 0xea,
0xaf, 0xc5, 0xd1, 0x4e, 0x50, 0x57, 0x63, 0x28, 0xc3, 0x9f, 0x23, 0x7a, 0xdb, 0x17, 0xfa, 0xf8,
0x0a, 0xab, 0xde, 0x0f, 0xc7, 0x01, 0x3a, 0xb8, 0x7f, 0x5b, 0x86, 0x09, 0xcb, 0x18, 0x0f, 0xdc,
0x59, 0x9d, 0xef, 0xb3, 0x9d, 0xb5, 0x74, 0x88, 0x9d, 0xf5, 0x43, 0x50, 0xf5, 0x95, 0xa1, 0x28,
0xa6, 0xbc, 0x39, 0x6f, 0x7e, 0x8c, 0xad, 0xd0, 0x20, 0x34, 0x32, 0xc9, 0x25, 0x98, 0xb1, 0xd8,
0x48, 0x23, 0x33, 0xc2, 0x8d, 0x8c, 0x4e, 0x34, 0x2d, 0xe6, 0x09, 0xb0, 0xff, 0x1b, 0xf2, 0x2c,
0xf3, 0x6a, 0x03, 0xd9, 0x2e, 0x11, 0xc5, 0xcb, 0xd2, 0xe1, 0xc5, 0xb5, 0x15, 0x05, 0x46, 0x9b,
0xc6, 0xfd, 0xba, 0xa3, 0x07, 0xf7, 0x31, 0xd4, 0x9d, 0xdc, 0xc9, 0xd6, 0x9d, 0x5c, 0x28, 0xa4,
0x9b, 0x87, 0xd4, 0x9c, 0x5c, 0x87, 0xf1, 0xa5, 0xa8, 0xdd, 0xf6, 0xc2, 0x3a, 0x79, 0x03, 0x8c,
0xfb, 0xe2, 0x4f, 0x19, 0x26, 0xf2, 0x42, 0x04, 0x89, 0x45, 0x85, 0x23, 0x4f, 0xc1, 0x88, 0x17,
0x37, 0x55, 0x68, 0xc8, 0x0f, 0xc5, 0x16, 0xe3, 0x66, 0x82, 0x1c, 0xea, 0x7e, 0xae, 0x04, 0xb0,
0x14, 0xb5, 0x3b, 0x5e, 0x4c, 0xeb, 0x1b, 0xd1, 0xff, 0xe7, 0x88, 0x45, 0xc4, 0xf0, 0x09, 0x07,
0x08, 0xeb, 0x95, 0x28, 0xa4, 0xa1, 0x39, 0x88, 0x63, 0xfb, 0xa5, 0xaf, 0xa0, 0x72, 0xf3, 0x31,
0x6b, 0x40, 0x21, 0xd0, 0xd0, 0x1c, 0x20, 0x8a, 0x78, 0x5a, 0xed, 0xf8, 0xe5, 0x6c, 0x8d, 0x04,
0x3f, 0xd7, 0x96, 0x0e, 0x80, 0xfb, 0xe5, 0x12, 0x9c, 0x16, 0x66, 0xeb, 0x9a, 0x17, 0x7a, 0x4d,
0xda, 0x66, 0x5a, 0x1d, 0xf4, 0xb4, 0xc1, 0x67, 0xee, 0x6b, 0xa0, 0x4a, 0x22, 0x8e, 0x3a, 0x39,
0xc5, 0xa4, 0x12, 0xd3, 0x68, 0x25, 0x0c, 0x52, 0xe4, 0xcc, 0x49, 0x02, 0x15, 0x75, 0x61, 0x45,
0x1a, 0x9b, 0x82, 0x04, 0xe9, 0x75, 0x77, 0x49, 0xb2, 0x47, 0x2d, 0x88, 0x6d, 0xee, 0xad, 0xc8,
0xdf, 0x46, 0xda, 0x89, 0xb8, 0x61, 0xa9, 0x58, 0xab, 0x54, 0xc2, 0x51, 0x53, 0xb8, 0x5f, 0x76,
0x20, 0x6f, 0x72, 0x79, 0x34, 0x28, 0x4a, 0x20, 0xf3, 0xd1, 0x60, 0xb6, 0x62, 0xf1, 0x10, 0x05,
0x80, 0xef, 0x81, 0x09, 0x2f, 0x4d, 0x69, 0xbb, 0x23, 0x42, 0x93, 0xf2, 0xc3, 0xa5, 0xbf, 0xae,
0x45, 0xf5, 0xa0, 0x11, 0xf0, 0x90, 0xc4, 0x66, 0xe7, 0xbe, 0x04, 0x15, 0x75, 0xe2, 0x73, 0x80,
0xa1, 0x7f, 0x3a, 0xe3, 0x4e, 0x0e, 0x99, 0x5c, 0xf7, 0x4b, 0x30, 0x60, 0xcf, 0x64, 0x4d, 0x36,
0xd6, 0x25, 0xd3, 0xe4, 0xc3, 0x59, 0x18, 0xb2, 0x2b, 0x4e, 0xbb, 0x44, 0x9e, 0xe5, 0x5d, 0x45,
0xef, 0xf9, 0xe6, 0x00, 0x6c, 0x42, 0xea, 0xa7, 0x0f, 0xc1, 0xc8, 0x79, 0x00, 0xb3, 0x29, 0xc8,
0xc2, 0x11, 0x9d, 0xa9, 0x35, 0x7b, 0x07, 0x5a, 0x54, 0xcc, 0x05, 0x0c, 0xc2, 0x24, 0xf5, 0x5a,
0xad, 0xcb, 0x41, 0x98, 0xca, 0x58, 0x56, 0x1b, 0x8c, 0x15, 0x83, 0x42, 0x9b, 0xee, 0xcc, 0xdb,
0xac, 0x71, 0x39, 0x8c, 0x5b, 0xff, 0x89, 0x12, 0x4c, 0x5f, 0x0a, 0xbb, 0x6b, 0x97, 0xd6, 0xba,
0x9b, 0xad, 0xc0, 0xbf, 0x4a, 0x7b, 0x6c, 0xd0, 0xb6, 0x69, 0x6f, 0x65, 0x59, 0x76, 0xbb, 0x1e,
0xb4, 0xab, 0x0c, 0x88, 0x02, 0xc7, 0xd4, 0x6c, 0x04, 0x61, 0x93, 0xc6, 0x9d, 0x38, 0x90, 0xbe,
0xbb, 0xa5, 0xe6, 0x45, 0x83, 0x42, 0x9b, 0x8e, 0xf1, 0x8e, 0xee, 0x86, 0x34, 0xce, 0x5b, 0x9b,
0x1b, 0x0c, 0x88, 0x02, 0xc7, 0x88, 0xd2, 0xb8, 0x9b, 0xa4, 0xb2, 0xc7, 0x34, 0xd1, 0x06, 0x03,
0xa2, 0xc0, 0xb1, 0xe9, 0x91, 0x74, 0x37, 0x79, 0x16, 0x36, 0x77, 0x1e, 0xbe, 0x2e, 0xc0, 0xa8,
0xf0, 0x8c, 0x74, 0x9b, 0xf6, 0x96, 0xd9, 0xde, 0x9b, 0xab, 0x80, 0xb9, 0x2a, 0xc0, 0xa8, 0xf0,
0xee, 0x3f, 0x39, 0x40, 0xb2, 0xdd, 0xf1, 0x18, 0xb6, 0xef, 0x57, 0xb3, 0xdb, 0xf7, 0x11, 0x13,
0xe6, 0x59, 0xf5, 0x87, 0xec, 0xe2, 0xbf, 0xe9, 0xc0, 0xa4, 0x7d, 0x76, 0x42, 0x9a, 0x39, 0x43,
0x74, 0x23, 0x6b, 0x88, 0xee, 0xef, 0xcd, 0xfd, 0xd4, 0xa0, 0xdb, 0x97, 0xcd, 0x20, 0x8d, 0x3a,
0xc9, 0x5b, 0x69, 0xd8, 0x0c, 0x42, 0xca, 0x33, 0x83, 0xe2, 0xcc, 0x25, 0x73, 0x30, 0xb3, 0x14,
0xd5, 0xe9, 0x43, 0x58, 0x32, 0xf7, 0x36, 0xcc, 0xf4, 0x95, 0x3d, 0x1d, 0xc0, 0xe8, 0xec, 0x5b,
0xd4, 0xea, 0x7e, 0xd2, 0x81, 0xa9, 0x4c, 0xd5, 0x58, 0x41, 0xa6, 0x8c, 0xaf, 0x8a, 0x88, 0x1f,
0xbb, 0xc5, 0x41, 0x28, 0xf2, 0x72, 0x15, 0x6b, 0x55, 0x18, 0x14, 0xda, 0x74, 0xee, 0x67, 0x4b,
0x50, 0x51, 0x19, 0xdc, 0x03, 0xa8, 0xf2, 0x71, 0x07, 0xa6, 0x74, 0x20, 0xcd, 0xdd, 0xeb, 0x42,
0xca, 0x7e, 0x98, 0x06, 0xfa, 0x6c, 0x96, 0xb9, 0xd7, 0xda, 0xcf, 0x47, 0x5b, 0x18, 0x66, 0x65,
0x93, 0x5b, 0x00, 0x49, 0x2f, 0x49, 0x69, 0xdb, 0x72, 0xf4, 0x5d, 0x6b, 0x75, 0xcc, 0xfb, 0x51,
0x4c, 0xd9, 0x5a, 0xb8, 0x1e, 0xd5, 0xe9, 0xba, 0xa6, 0x34, 0x86, 0xd0, 0xc0, 0xd0, 0xe2, 0xe4,
0xfe, 0x7e, 0x09, 0x8e, 0xe7, 0x55, 0x22, 0xef, 0x86, 0x49, 0x25, 0xdd, 0xba, 0x74, 0xaa, 0xd2,
0xd6, 0x93, 0x68, 0xe1, 0xee, 0xef, 0xcd, 0xcd, 0xf5, 0xdf, 0xba, 0x9d, 0xb7, 0x49, 0x30, 0xc3,
0x4c, 0x64, 0x33, 0x64, 0xda, 0xad, 0xd6, 0x5b, 0xec, 0x74, 0x64, 0x4a, 0xc2, 0xca, 0x66, 0xd8,
0x58, 0xcc, 0x51, 0x93, 0x35, 0x38, 0x69, 0x41, 0xae, 0xd3, 0xa0, 0xb9, 0xb5, 0x19, 0xc5, 0xe2,
0x76, 0x43, 0xb9, 0xf6, 0x94, 0xe4, 0x72, 0x12, 0x07, 0xd0, 0xe0, 0xc0, 0x2f, 0x99, 0x83, 0xe1,
0x7b, 0x1d, 0xcf, 0x0f, 0xd2, 0x9e, 0x8c, 0x5c, 0xb4, 0x1d, 0x59, 0x92, 0x70, 0xd4, 0x14, 0xee,
0x35, 0x18, 0x39, 0xe0, 0x0c, 0x3a, 0xd0, 0xbe, 0xfc, 0x12, 0x54, 0x18, 0x3b, 0x66, 0x37, 0x8a,
0x62, 0x19, 0x41, 0x45, 0x5d, 0x76, 0x21, 0x2e, 0x94, 0x03, 0x4f, 0x25, 0x8c, 0x74, 0xb3, 0x56,
0x92, 0xa4, 0xcb, 0xbd, 0x0e, 0x86, 0x24, 0x4f, 0x43, 0x99, 0xee, 0x76, 0xf2, 0x99, 0xa1, 0x0b,
0xbb, 0x9d, 0x20, 0xa6, 0x09, 0x23, 0xa2, 0xbb, 0x1d, 0x72, 0x06, 0x4a, 0x41, 0x5d, 0x6e, 0x28,
0x20, 0x69, 0x4a, 0x2b, 0xcb, 0x58, 0x0a, 0xea, 0xee, 0x2e, 0x54, 0xf5, 0xed, 0x1a, 0xb2, 0xad,
0xec, 0xac, 0x53, 0xc4, 0x91, 0x8b, 0xe2, 0x3b, 0xc4, 0xc2, 0x76, 0x01, 0x4c, 0xb1, 0x60, 0x51,
0xf6, 0xe5, 0x1c, 0x8c, 0xf8, 0x91, 0x2c, 0xed, 0xad, 0x18, 0x36, 0xdc, 0xc0, 0x72, 0x8c, 0x7b,
0x1b, 0xa6, 0xaf, 0x86, 0xd1, 0xdd, 0x90, 0x6d, 0x7c, 0x17, 0x03, 0xda, 0xaa, 0x33, 0xc6, 0x0d,
0xf6, 0x47, 0x7e, 0x3b, 0xe7, 0x58, 0x14, 0x38, 0x7d, 0x05, 0xa5, 0x34, 0xec, 0x0a, 0x8a, 0xfb,
0xcb, 0x0e, 0x1c, 0xcf, 0x17, 0x06, 0x7e, 0xcf, 0xe2, 0x91, 0x0f, 0x33, 0x65, 0x54, 0xe5, 0xd9,
0x8d, 0x8e, 0x38, 0xe3, 0x7e, 0x1e, 0x26, 0x37, 0xbb, 0x41, 0xab, 0x2e, 0x7f, 0x4b, 0x7d, 0x74,
0x6d, 0x5d, 0xcd, 0xc2, 0x61, 0x86, 0x92, 0xf9, 0x69, 0x9b, 0x41, 0xe8, 0xc5, 0xbd, 0x35, 0xb3,
0x6f, 0x68, 0xf3, 0x54, 0xd3, 0x18, 0xb4, 0xa8, 0xdc, 0xbf, 0x2e, 0x83, 0xb9, 0xe6, 0x43, 0x02,
0x59, 0x42, 0xe1, 0x14, 0x91, 0xe4, 0x5a, 0xef, 0x85, 0xbe, 0xb9, 0x50, 0x54, 0xc9, 0x55, 0x50,
0x7c, 0xcc, 0x61, 0x1e, 0x62, 0x90, 0x06, 0x1e, 0x37, 0x16, 0x32, 0xac, 0x5a, 0x2b, 0xe8, 0x94,
0x7d, 0x45, 0x70, 0x8e, 0x62, 0xdb, 0xe7, 0xd4, 0xc2, 0xd0, 0x96, 0x4c, 0x5e, 0x91, 0xe7, 0x12,
0xe5, 0xc2, 0x0a, 0x70, 0x2a, 0xb9, 0xc3, 0x88, 0x0e, 0x8c, 0xc6, 0x34, 0x8d, 0x55, 0xe9, 0xd3,
0xd5, 0xa3, 0x9e, 0xd2, 0xa6, 0x71, 0x6f, 0x3d, 0x65, 0xa1, 0x5b, 0xd3, 0x72, 0x8c, 0x38, 0x18,
0x85, 0x20, 0x37, 0x01, 0xd2, 0xdf, 0x17, 0x87, 0xcc, 0xf9, 0x2e, 0x40, 0xd5, 0xeb, 0xa6, 0x51,
0x9b, 0x75, 0x13, 0x1f, 0x9e, 0x8a, 0x95, 0xd5, 0x56, 0x08, 0x34, 0x34, 0xee, 0xa7, 0x47, 0x21,
0x57, 0xd3, 0x40, 0x76, 0xed, 0x2b, 0x6a, 0x4e, 0xb1, 0x57, 0xd4, 0xb4, 0x32, 0x83, 0xae, 0xa9,
0x91, 0x26, 0x8c, 0x76, 0xb6, 0xbc, 0x44, 0xad, 0xd1, 0x97, 0x54, 0x37, 0xad, 0x31, 0xe0, 0xfd,
0xbd, 0xb9, 0x9f, 0x3e, 0x98, 0x1f, 0xc8, 0xe6, 0xea, 0x82, 0x28, 0xf0, 0x34, 0xa2, 0x39, 0x0f,
0x14, 0xfc, 0x6d, 0x4f, 0xb0, 0xbc, 0x4f, 0x4c, 0xfb, 0x11, 0x47, 0x14, 0xc2, 0x21, 0x4d, 0xba,
0xad, 0x54, 0xce, 0x86, 0x97, 0x0a, 0x5c, 0x65, 0x82, 0xb1, 0xa9, 0x88, 0x13, 0xbf, 0xd1, 0x12,
0x4a, 0xde, 0x0d, 0xd5, 0x24, 0xf5, 0xe2, 0xf4, 0x21, 0xeb, 0x67, 0x74, 0xa7, 0xaf, 0x2b, 0x26,
0x68, 0xf8, 0x91, 0x97, 0x01, 0x1a, 0x41, 0x18, 0x24, 0x5b, 0x0f, 0x79, 0x9c, 0xc8, 0x15, 0xbf,
0xa8, 0x39, 0xa0, 0xc5, 0x8d, 0x59, 0x37, 0x3e, 0xb7, 0x45, 0x02, 0xb4, 0xc2, 0xf7, 0x52, 0x6d,
0xdd, 0x50, 0x63, 0xd0, 0xa2, 0x72, 0x3f, 0x08, 0x27, 0xf2, 0xd7, 0xc3, 0x65, 0x68, 0xd8, 0x8c,
0xa3, 0x6e, 0x27, 0xbf, 0x97, 0xf0, 0xeb, 0xc3, 0x28, 0x70, 0xcc, 0xc6, 0x6f, 0x07, 0x61, 0x3d,
0x6f, 0xe3, 0xaf, 0x06, 0x61, 0x1d, 0x39, 0xe6, 0x00, 0x77, 0xf7, 0xfe, 0xc4, 0x81, 0x73, 0xfb,
0xdd, 0x62, 0x67, 0x61, 0xff, 0x5d, 0x2f, 0x0e, 0xe5, 0xbd, 0x1c, 0x6e, 0x3b, 0x6e, 0x7b, 0x71,
0x88, 0x1c, 0x4a, 0x7a, 0x30, 0x26, 0x6a, 0x06, 0xa5, 0x77, 0xfc, 0x52, 0xb1, 0x77, 0xea, 0x59,
0x6c, 0xa5, 0xb3, 0x35, 0xa2, 0x5e, 0x11, 0xa5, 0x40, 0xf7, 0x5b, 0x0e, 0x90, 0x1b, 0x3b, 0x34,
0x8e, 0x83, 0xba, 0x55, 0xe5, 0x48, 0x9e, 0x83, 0xc9, 0x3b, 0xeb, 0x37, 0xae, 0xaf, 0x45, 0x41,
0xc8, 0x8b, 0xf5, 0xad, 0xda, 0x9a, 0x2b, 0x16, 0x1c, 0x33, 0x54, 0x64, 0x09, 0x66, 0xee, 0xbc,
0xca, 0xb6, 0x9c, 0x0b, 0xbb, 0x9d, 0x98, 0x26, 0x89, 0x7e, 0x89, 0xa2, 0x2a, 0x8e, 0xb1, 0xae,
0xbc, 0x94, 0x43, 0x62, 0x3f, 0x3d, 0xb9, 0x01, 0xa7, 0xda, 0x3c, 0x73, 0x57, 0xe7, 0xdb, 0x7e,
0x22, 0xd2, 0x78, 0xb1, 0xaa, 0x94, 0x7f, 0xdd, 0xbd, 0xbd, 0xb9, 0x53, 0xd7, 0x06, 0x11, 0xe0,
0xe0, 0xef, 0xdc, 0x2f, 0x95, 0x60, 0xc2, 0x7a, 0x09, 0xe2, 0x00, 0x0e, 0x4e, 0xee, 0xf1, 0x8a,
0xd2, 0x01, 0x1f, 0xaf, 0x78, 0x06, 0x2a, 0x9d, 0xa8, 0x15, 0xf8, 0x81, 0x2e, 0xeb, 0x9f, 0xe4,
0x87, 0x67, 0x12, 0x86, 0x1a, 0x4b, 0xee, 0x42, 0x55, 0x5f, 0xe9, 0x96, 0x85, 0x7e, 0x45, 0xb9,
0x78, 0x7a, 0xf1, 0x9a, 0xab, 0xda, 0x46, 0x16, 0x71, 0x61, 0x8c, 0xcf, 0x7c, 0x75, 0x34, 0xc0,
0x2b, 0x47, 0xf8, 0x92, 0x48, 0x50, 0x62, 0xdc, 0x7f, 0x1d, 0x85, 0x2a, 0xd2, 0x4e, 0xb4, 0x14,
0xd3, 0x7a, 0x42, 0x5e, 0x0f, 0xe5, 0x6e, 0xdc, 0x92, 0x9d, 0xa5, 0xf3, 0x46, 0x37, 0x71, 0x15,
0x19, 0x3c, 0xb3, 0xdd, 0x94, 0x0e, 0x75, 0xc4, 0x58, 0xde, 0xf7, 0x88, 0xf1, 0x05, 0x98, 0x4a,
0x92, 0xad, 0xb5, 0x38, 0xd8, 0xf1, 0x52, 0x36, 0x89, 0x65, 0x92, 0xc5, 0x9c, 0xe9, 0xac, 0x5f,
0x36, 0x48, 0xcc, 0xd2, 0x92, 0x4b, 0x30, 0x63, 0x0e, 0xfa, 0x68, 0x9c, 0xf2, 0x9c, 0x8a, 0x48,
0xbf, 0xe8, 0x23, 0x15, 0x73, 0x34, 0x28, 0x09, 0xb0, 0xff, 0x1b, 0xb2, 0x0c, 0xc7, 0x33, 0x40,
0xa6, 0x88, 0xc8, 0xcd, 0xe8, 0x22, 0x82, 0x0c, 0x1f, 0xa6, 0x4b, 0xdf, 0x17, 0xe4, 0x1a, 0x9c,
0x10, 0xe3, 0xcb, 0x9f, 0x02, 0xd0, 0x2d, 0x1a, 0xe7, 0x8c, 0x7e, 0x48, 0x32, 0x3a, 0x71, 0xa9,
0x9f, 0x04, 0x07, 0x7d, 0xc7, 0x66, 0xa8, 0x06, 0xaf, 0x2c, 0x4b, 0x4b, 0xa9, 0x67, 0xa8, 0x66,
0xb3, 0x52, 0x47, 0x9b, 0x8e, 0xbc, 0x0b, 0x9e, 0x34, 0x3f, 0x45, 0x4a, 0x4e, 0xb8, 0x0f, 0xcb,
0xb2, 0x86, 0x62, 0x4e, 0xb2, 0x78, 0xf2, 0xd2, 0x40, 0xb2, 0x3a, 0x0e, 0xfb, 0x9e, 0x6c, 0xc2,
0x19, 0x8d, 0xba, 0xc0, 0xcc, 0x41, 0x27, 0x0e, 0x12, 0x5a, 0xf3, 0x12, 0x7a, 0x33, 0x6e, 0xf1,
0xaa, 0x8b, 0xaa, 0x79, 0xce, 0xe2, 0x52, 0x90, 0x5e, 0x1e, 0x44, 0x89, 0xab, 0xf8, 0x00, 0x2e,
0xcc, 0x5b, 0xa1, 0xa1, 0xb7, 0xd9, 0xa2, 0x37, 0x96, 0x56, 0x78, 0x2d, 0x86, 0xe5, 0xad, 0x5c,
0x50, 0x08, 0x34, 0x34, 0x3a, 0x56, 0x98, 0x1c, 0x1a, 0x2b, 0x7c, 0xd3, 0x81, 0x29, 0x3d, 0xd9,
0x1f, 0x43, 0x02, 0xad, 0x95, 0x4d, 0xa0, 0x5d, 0x3a, 0xaa, 0x9b, 0x28, 0x35, 0x1f, 0x12, 0xd9,
0x7d, 0xa7, 0x0a, 0xc0, 0x1f, 0x08, 0x0a, 0x78, 0x8d, 0xef, 0x39, 0x18, 0x89, 0x69, 0x27, 0xca,
0x5b, 0x3e, 0x9e, 0xfc, 0xe7, 0x98, 0xef, 0xdf, 0xe5, 0x3c, 0xe8, 0xc8, 0x79, 0xf4, 0x7b, 0x7b,
0xe4, 0xbc, 0x0e, 0xa7, 0x82, 0x30, 0xa1, 0x7e, 0x37, 0x96, 0x3b, 0xe7, 0xe5, 0x28, 0xd1, 0xd6,
0xa1, 0x52, 0x7b, 0xbd, 0x64, 0x74, 0x6a, 0x65, 0x10, 0x11, 0x0e, 0xfe, 0x96, 0x75, 0xa9, 0x42,
0xc8, 0xcb, 0x44, 0x26, 0xdf, 0x20, 0xe1, 0xa8, 0x29, 0xcc, 0x82, 0x58, 0x6d, 0xa8, 0xdb, 0x42,
0xb9, 0x05, 0xb1, 0x7a, 0x71, 0x1d, 0x0d, 0xcd, 0x60, 0xab, 0x58, 0x2d, 0xc8, 0x2a, 0xc2, 0xa1,
0xad, 0xa2, 0x5a, 0x9f, 0x13, 0x43, 0x9f, 0x93, 0x50, 0x9b, 0xf5, 0xe4, 0xd0, 0xcd, 0xfa, 0x45,
0x98, 0x0e, 0xc2, 0x2d, 0x1a, 0x07, 0x29, 0xad, 0xf3, 0xb5, 0x30, 0x3b, 0xc5, 0x3b, 0x42, 0xa7,
0xc2, 0x56, 0x32, 0x58, 0xcc, 0x51, 0x67, 0x8d, 0xca, 0xf4, 0x01, 0x8c, 0xca, 0x10, 0x53, 0x7e,
0xac, 0x18, 0x53, 0x7e, 0xfc, 0xe8, 0xa6, 0x7c, 0xe6, 0x91, 0x9a, 0x72, 0x52, 0x88, 0x29, 0x7f,
0x1a, 0x46, 0x3b, 0x71, 0xb4, 0xdb, 0x9b, 0x3d, 0x91, 0x75, 0xcf, 0xd7, 0x18, 0x10, 0x05, 0xce,
0xae, 0xbc, 0x3b, 0xf9, 0xe0, 0xca, 0x3b, 0xf7, 0xb5, 0x12, 0x9c, 0x32, 0x96, 0x8e, 0xcd, 0xaf,
0xa0, 0xc1, 0xd6, 0x3a, 0xbf, 0xd2, 0x29, 0xaa, 0x3d, 0xac, 0x2c, 0xac, 0x49, 0xe8, 0x6a, 0x0c,
0x5a, 0x54, 0x3c, 0x99, 0x49, 0x63, 0x5e, 0x2f, 0x9c, 0x37, 0x83, 0x4b, 0x12, 0x8e, 0x9a, 0x82,
0xbf, 0x2e, 0x48, 0xe3, 0x54, 0x1e, 0xe6, 0xe4, 0x4b, 0xa1, 0x96, 0x0c, 0x0a, 0x6d, 0x3a, 0xe6,
0x2e, 0xfa, 0x6a, 0x09, 0x32, 0x53, 0x38, 0x29, 0xdc, 0x45, 0xbd, 0xea, 0x34, 0x56, 0xa9, 0xc3,
0xb3, 0xd6, 0xa3, 0xfd, 0xea, 0xf0, 0x2c, 0x84, 0xa6, 0x70, 0xff, 0xdb, 0x81, 0xd7, 0x0d, 0xec,
0x8a, 0xc7, 0xb0, 0xbd, 0xed, 0x66, 0xb7, 0xb7, 0xf5, 0xa3, 0x6f, 0x6f, 0x7d, 0xad, 0x18, 0xb2,
0xd5, 0xfd, 0x8d, 0x03, 0xd3, 0x86, 0xfe, 0x31, 0x34, 0x35, 0x28, 0xf4, 0x9d, 0x40, 0xa3, 0xba,
0xa8, 0x63, 0xcd, 0xb4, 0xed, 0x9b, 0xbc, 0x6d, 0x22, 0x98, 0x5b, 0xf4, 0xd5, 0x43, 0x3c, 0xfb,
0x04, 0x31, 0x3d, 0x18, 0xe3, 0xf7, 0x9e, 0x93, 0x62, 0x82, 0xca, 0xac, 0x7c, 0x9e, 0x57, 0x35,
0x41, 0x25, 0xff, 0x99, 0xa0, 0x14, 0xc8, 0xab, 0xd9, 0x83, 0x84, 0xd9, 0xcb, 0xba, 0xcc, 0xff,
0x9a, 0x6a, 0x76, 0x09, 0x47, 0x4d, 0xe1, 0xb6, 0x61, 0x36, 0xcb, 0x7c, 0x99, 0x36, 0x78, 0xee,
0xee, 0x40, 0xcd, 0x5c, 0x80, 0xaa, 0xc7, 0xbf, 0x5a, 0xed, 0x7a, 0xf9, 0xd7, 0x78, 0x16, 0x15,
0x02, 0x0d, 0x8d, 0xfb, 0x7b, 0x0e, 0x9c, 0x18, 0xd0, 0x98, 0x02, 0xf3, 0xde, 0xa9, 0xb1, 0x02,
0x43, 0x5e, 0x48, 0xaa, 0xd3, 0x86, 0xa7, 0xb2, 0x43, 0x96, 0x55, 0x5b, 0x16, 0x60, 0x54, 0x78,
0xf7, 0xdf, 0x1c, 0x38, 0x96, 0xd5, 0x35, 0x21, 0x57, 0x80, 0x88, 0xc6, 0x2c, 0x07, 0x89, 0x1f,
0xed, 0xd0, 0xb8, 0xc7, 0x5a, 0x2e, 0xb4, 0x3e, 0x23, 0x39, 0x91, 0xc5, 0x3e, 0x0a, 0x1c, 0xf0,
0x15, 0x2f, 0x1a, 0xae, 0xeb, 0xde, 0x56, 0x33, 0xe5, 0x56, 0x91, 0x33, 0xc5, 0x0c, 0xa6, 0x1d,
0x41, 0x6b, 0x91, 0x68, 0xcb, 0x77, 0xbf, 0x35, 0x02, 0xfa, 0x60, 0x8c, 0xe7, 0x21, 0x0a, 0xca,
0xe2, 0x64, 0x9e, 0x6c, 0x2a, 0x1f, 0xe2, 0xc9, 0xa6, 0x91, 0x07, 0xe5, 0x08, 0xc4, 0xfb, 0x41,
0xc6, 0x17, 0xb5, 0x8c, 0xfe, 0x86, 0x41, 0xa1, 0x4d, 0xc7, 0x34, 0x69, 0x05, 0x3b, 0x54, 0x7c,
0x34, 0x96, 0xd5, 0x64, 0x55, 0x21, 0xd0, 0xd0, 0x30, 0x4d, 0xea, 0x41, 0xa3, 0x21, 0x23, 0x45,
0xad, 0x09, 0xeb, 0x1d, 0xe4, 0x18, 0x46, 0xb1, 0x15, 0x45, 0xdb, 0xd2, 0xff, 0xd3, 0x14, 0x97,
0xa3, 0x68, 0x1b, 0x39, 0x86, 0x79, 0x2c, 0x61, 0x14, 0xb7, 0xbd, 0x56, 0xf0, 0x3e, 0x5a, 0xd7,
0x52, 0xa4, 0xdf, 0xa7, 0x3d, 0x96, 0xeb, 0xfd, 0x24, 0x38, 0xe8, 0x3b, 0x36, 0x03, 0x3b, 0x31,
0xad, 0x07, 0x7e, 0x6a, 0x73, 0x83, 0xec, 0x0c, 0x5c, 0xeb, 0xa3, 0xc0, 0x01, 0x5f, 0x91, 0x45,
0x38, 0xa6, 0x0e, 0x36, 0x55, 0xf1, 0x89, 0x70, 0x06, 0xb5, 0x1f, 0x8e, 0x59, 0x34, 0xe6, 0xe9,
0x99, 0xb5, 0x69, 0xcb, 0x12, 0x20, 0xee, 0x26, 0x5a, 0xd6, 0x46, 0x95, 0x06, 0xa1, 0xa6, 0x70,
0x3f, 0x52, 0x66, 0xbb, 0xe3, 0x90, 0x6b, 0xbd, 0x8f, 0x2d, 0x6b, 0x98, 0x9d, 0x91, 0x23, 0x07,
0x98, 0x91, 0xcf, 0xc1, 0xe4, 0x9d, 0x24, 0x0a, 0x75, 0x46, 0x6e, 0x74, 0x68, 0x46, 0xce, 0xa2,
0x1a, 0x9c, 0x91, 0x1b, 0x2b, 0x2a, 0x23, 0x37, 0xfe, 0x90, 0x19, 0xb9, 0xbf, 0x18, 0x85, 0xd3,
0xfa, 0x70, 0x9b, 0xa6, 0x77, 0xa3, 0x78, 0x3b, 0x08, 0x9b, 0xfc, 0x40, 0xf8, 0x8b, 0x0e, 0x4c,
0x8a, 0xf5, 0x22, 0x5f, 0x54, 0x10, 0x07, 0xa0, 0x8d, 0x82, 0x2e, 0xbd, 0x65, 0x84, 0xcd, 0x6f,
0x58, 0x82, 0x72, 0xcf, 0x5b, 0xd8, 0x28, 0xcc, 0x68, 0x44, 0x3e, 0x00, 0xa0, 0x5e, 0x0e, 0x6b,
0x14, 0xf4, 0x7e, 0x9a, 0xd2, 0x0f, 0x69, 0xc3, 0xf8, 0xa6, 0x1b, 0x5a, 0x08, 0x5a, 0x02, 0xc9,
0x6b, 0x8e, 0xbe, 0x64, 0x22, 0x4e, 0xb3, 0x5e, 0x79, 0x24, 0x7d, 0x73, 0x90, 0x3b, 0x27, 0x08,
0xe3, 0x41, 0xd8, 0x64, 0xf3, 0x44, 0x26, 0x31, 0xdf, 0x34, 0xa8, 0x98, 0x62, 0x35, 0xf2, 0xea,
0x35, 0xaf, 0xe5, 0x85, 0x3e, 0x8d, 0x57, 0x04, 0xb9, 0xfd, 0x7e, 0x13, 0x07, 0xa0, 0x62, 0xd4,
0x77, 0xab, 0x73, 0xf4, 0x20, 0xb7, 0x3a, 0xcf, 0xbc, 0x13, 0x66, 0xfa, 0x06, 0xf3, 0x50, 0x77,
0x4e, 0x1e, 0xfe, 0xba, 0x8a, 0xfb, 0xa7, 0x63, 0x66, 0xd3, 0xba, 0x1e, 0xd5, 0xc5, 0xdd, 0xc2,
0xd8, 0x8c, 0xa8, 0xf4, 0x3d, 0x0b, 0x9c, 0x22, 0xd6, 0x1b, 0x50, 0x1a, 0x88, 0xb6, 0x48, 0x36,
0x47, 0x3b, 0x5e, 0x4c, 0xc3, 0x47, 0x3d, 0x47, 0xd7, 0xb4, 0x10, 0xb4, 0x04, 0x92, 0xad, 0xcc,
0x71, 0xeb, 0xc5, 0xa3, 0x1f, 0xb7, 0x32, 0x77, 0x78, 0xe0, 0x1d, 0xb0, 0xcf, 0x38, 0x30, 0x1d,
0x66, 0x66, 0xae, 0x3c, 0x72, 0xdb, 0x78, 0x14, 0xab, 0x42, 0xdc, 0xe9, 0xce, 0xc2, 0x30, 0x27,
0x7f, 0xd0, 0x96, 0x36, 0x7a, 0xc8, 0x2d, 0xcd, 0x5c, 0x52, 0x1e, 0x1b, 0x76, 0x49, 0x99, 0x84,
0xfa, 0x79, 0x82, 0xf1, 0xc2, 0x9f, 0x27, 0x80, 0x01, 0x4f, 0x13, 0xdc, 0x86, 0xaa, 0x1f, 0x53,
0x2f, 0x7d, 0xc8, 0x9b, 0xea, 0xfc, 0xd5, 0xbd, 0x25, 0xc5, 0x00, 0x0d, 0x2f, 0xf7, 0xaf, 0xca,
0x70, 0x5c, 0xf5, 0x88, 0x3a, 0x8a, 0x62, 0xfb, 0xa3, 0x90, 0x6b, 0x9c, 0x5b, 0xbd, 0x3f, 0x5e,
0x56, 0x08, 0x34, 0x34, 0xcc, 0x1f, 0xeb, 0x26, 0xf4, 0x46, 0x87, 0x86, 0xab, 0xc1, 0x66, 0xc2,
0x7b, 0xdc, 0xaa, 0x67, 0xbb, 0x69, 0x50, 0x68, 0xd3, 0x31, 0x67, 0x5c, 0xf8, 0xc5, 0x49, 0xfe,
0x64, 0x57, 0xfa, 0xdb, 0xa8, 0xf0, 0xe4, 0x0b, 0x03, 0xdf, 0x19, 0x29, 0xa6, 0xa6, 0xa1, 0xef,
0x04, 0xee, 0x90, 0x0f, 0x8c, 0x7c, 0xda, 0x81, 0x63, 0xdb, 0x99, 0x62, 0x1a, 0x65, 0x92, 0x8f,
0x58, 0xa2, 0x99, 0xad, 0xd0, 0x31, 0x53, 0x38, 0x0b, 0x4f, 0x30, 0x2f, 0xdd, 0xfd, 0x4f, 0x07,
0x6c, 0xf3, 0x74, 0x30, 0xcf, 0xca, 0x7a, 0x39, 0xaa, 0xb4, 0xcf, 0xcb, 0x51, 0xca, 0x09, 0x2b,
0x1f, 0xcc, 0xe9, 0x1f, 0x39, 0x84, 0xd3, 0x3f, 0x3a, 0xd4, 0x6b, 0x7b, 0x3d, 0x94, 0xbb, 0x41,
0x5d, 0xfa, 0xed, 0xe6, 0x30, 0x6c, 0x65, 0x19, 0x19, 0xdc, 0xfd, 0xe3, 0x51, 0x13, 0xa7, 0xcb,
0xa3, 0xf8, 0x1f, 0x88, 0x66, 0x37, 0x74, 0xc5, 0xad, 0x68, 0xf9, 0xf5, 0xbe, 0x8a, 0xdb, 0x77,
0x1c, 0xbe, 0xd2, 0x42, 0x74, 0xd0, 0xb0, 0x82, 0xdb, 0xf1, 0x7d, 0xca, 0x2c, 0xee, 0x40, 0x85,
0x85, 0x36, 0x3c, 0xe1, 0x56, 0xc9, 0x28, 0x55, 0xb9, 0x2c, 0xe1, 0xf7, 0xf7, 0xe6, 0xde, 0x7e,
0x78, 0xb5, 0xd4, 0xd7, 0xa8, 0xf9, 0x93, 0x04, 0xaa, 0xec, 0x6f, 0x5e, 0x11, 0x22, 0x83, 0xa6,
0x9b, 0xda, 0x16, 0x29, 0x44, 0x21, 0xe5, 0x26, 0x46, 0x0e, 0x09, 0xa1, 0xca, 0xdf, 0x38, 0xe2,
0x42, 0x45, 0x6c, 0xb5, 0xa6, 0xeb, 0x32, 0x14, 0xe2, 0xfe, 0xde, 0xdc, 0x0b, 0x87, 0x17, 0xaa,
0x3f, 0x47, 0x23, 0xc2, 0xfd, 0xc7, 0xb2, 0x99, 0xbb, 0xb2, 0xd0, 0xfa, 0x07, 0x62, 0xee, 0x3e,
0x9f, 0x9b, 0xbb, 0xe7, 0xfa, 0xe6, 0xee, 0xb4, 0x79, 0x07, 0x28, 0x33, 0x1b, 0x1f, 0xf7, 0x06,
0xbb, 0x7f, 0x1c, 0xcf, 0x3d, 0x8b, 0x57, 0xbb, 0x41, 0x4c, 0x93, 0xb5, 0xb8, 0x1b, 0x06, 0x61,
0x93, 0x4f, 0xc7, 0x8a, 0xed, 0x59, 0x64, 0xd0, 0x98, 0xa7, 0x77, 0xbf, 0xc4, 0xcf, 0x3b, 0xad,
0xe2, 0x32, 0x36, 0xca, 0x2d, 0xfe, 0x4c, 0x94, 0x28, 0x6f, 0xd5, 0xa3, 0x2c, 0xde, 0x86, 0x12,
0x38, 0x72, 0x17, 0xc6, 0x37, 0xc5, 0x53, 0x15, 0xc5, 0xdc, 0x8d, 0x92, 0xef, 0x5e, 0xf0, 0x5b,
0xa8, 0xea, 0x11, 0x8c, 0xfb, 0xe6, 0x4f, 0x54, 0xd2, 0xdc, 0x5f, 0x2f, 0xc3, 0xb1, 0xdc, 0x23,
0x46, 0x2c, 0xe0, 0x57, 0x2f, 0x56, 0xe5, 0xb3, 0xf3, 0xfa, 0x71, 0x67, 0x4d, 0x41, 0xde, 0x0b,
0x50, 0xa7, 0x9d, 0x56, 0xd4, 0xe3, 0x8e, 0xcb, 0xc8, 0xa1, 0x1d, 0x17, 0xed, 0xeb, 0x2e, 0x6b,
0x2e, 0x68, 0x71, 0x94, 0x35, 0xbd, 0xa3, 0xe2, 0x21, 0x8e, 0x6c, 0x4d, 0xaf, 0x75, 0x45, 0x70,
0xec, 0xf1, 0x5e, 0x11, 0x0c, 0xe0, 0x98, 0x50, 0x51, 0x97, 0x70, 0x3d, 0x44, 0xa5, 0xd6, 0x09,
0x36, 0xa3, 0x96, 0xb3, 0x6c, 0x30, 0xcf, 0xd7, 0xfd, 0x54, 0x89, 0xb9, 0x6f, 0xa2, 0xb3, 0xaf,
0xa9, 0xe4, 0xf8, 0x1b, 0x61, 0xcc, 0xeb, 0xa6, 0x5b, 0x51, 0xdf, 0xd3, 0x21, 0x8b, 0x1c, 0x8a,
0x12, 0x4b, 0x56, 0x61, 0xa4, 0xee, 0xa5, 0xea, 0x9f, 0x13, 0x1c, 0x46, 0x39, 0x93, 0x09, 0xf3,
0x52, 0x8a, 0x9c, 0x0b, 0x79, 0x0a, 0x46, 0x52, 0xaf, 0x99, 0x79, 0xd3, 0x74, 0xc3, 0x6b, 0x26,
0xc8, 0xa1, 0xf6, 0xee, 0x32, 0xb2, 0xcf, 0xee, 0xf2, 0x82, 0xf5, 0x6f, 0x33, 0xac, 0x53, 0x97,
0xfe, 0x7f, 0x75, 0x21, 0x6e, 0x19, 0x64, 0x68, 0xdd, 0x1f, 0x83, 0x49, 0xfb, 0x5f, 0x61, 0x1c,
0xe8, 0x92, 0x92, 0xfb, 0x2f, 0x23, 0x30, 0x95, 0x29, 0xf3, 0xcb, 0xcc, 0x72, 0x67, 0xdf, 0x59,
0xce, 0xcf, 0xd3, 0xba, 0x21, 0x95, 0x45, 0x9c, 0xd6, 0x79, 0x5a, 0x37, 0xa4, 0x28, 0x70, 0x6c,
0x54, 0xea, 0x71, 0x0f, 0xbb, 0xa1, 0xcc, 0xca, 0xeb, 0x51, 0x59, 0xe6, 0x50, 0x94, 0x58, 0x16,
0xc0, 0x4e, 0x26, 0xdc, 0x28, 0x0a, 0x1b, 0x21, 0x57, 0xcd, 0x95, 0x22, 0x9e, 0x5b, 0x93, 0x25,
0xad, 0x3c, 0xa0, 0xb7, 0x21, 0x98, 0x91, 0x48, 0x3e, 0xea, 0xd8, 0x0f, 0xcd, 0x8d, 0x15, 0x71,
0x9a, 0x94, 0xaf, 0xa2, 0x14, 0x2b, 0xe8, 0xc1, 0xef, 0xcd, 0x25, 0x7a, 0x01, 0x8f, 0x3f, 0x9a,
0x05, 0x0c, 0x03, 0x16, 0xef, 0x9b, 0xa1, 0xda, 0xf6, 0xc2, 0xa0, 0x41, 0x93, 0x54, 0xfc, 0x1b,
0x9b, 0xaa, 0x88, 0x9e, 0xae, 0x29, 0x20, 0x1a, 0x3c, 0xff, 0x67, 0x51, 0xbc, 0x61, 0x22, 0x88,
0xa9, 0x5a, 0xff, 0x2c, 0xca, 0x80, 0xd1, 0xa6, 0x71, 0xff, 0xc0, 0x81, 0x53, 0x03, 0x3b, 0xe3,
0xfb, 0x37, 0xfd, 0xe9, 0xfe, 0x61, 0x09, 0x4e, 0x0c, 0x28, 0x83, 0x25, 0xbd, 0x47, 0xf6, 0x1e,
0xa1, 0xac, 0xb3, 0x9d, 0x1a, 0x3a, 0x37, 0x0e, 0xb7, 0x0d, 0x99, 0xad, 0xa0, 0xfc, 0x58, 0xb7,
0x02, 0xf7, 0x4b, 0x25, 0xb0, 0x5e, 0xce, 0x24, 0x1f, 0xb4, 0x2b, 0xbe, 0x9d, 0xa2, 0xaa, 0x93,
0x05, 0x73, 0x5d, 0x31, 0x2e, 0x7a, 0x6d, 0x50, 0x01, 0x79, 0x7e, 0xbe, 0x96, 0xf6, 0x9f, 0xaf,
0xa4, 0xa5, 0x4a, 0xeb, 0xcb, 0xc5, 0x97, 0xd6, 0x57, 0xfb, 0xca, 0xea, 0x7f, 0xd5, 0x11, 0x33,
0x2d, 0xd7, 0x24, 0x63, 0x61, 0x9d, 0x07, 0x58, 0xd8, 0xb7, 0x40, 0x25, 0xa1, 0xad, 0x06, 0xf3,
0xec, 0xa4, 0x25, 0xd6, 0x73, 0x62, 0x5d, 0xc2, 0x51, 0x53, 0xf0, 0x4b, 0xb7, 0xad, 0x56, 0x74,
0xf7, 0x42, 0xbb, 0x93, 0xf6, 0xa4, 0x4d, 0x36, 0x97, 0x6e, 0x35, 0x06, 0x2d, 0x2a, 0xf7, 0xbf,
0x1c, 0x31, 0x9c, 0xd2, 0x47, 0x7f, 0x3e, 0x77, 0x19, 0xf2, 0xe0, 0xee, 0xed, 0xcf, 0x03, 0xf8,
0xfa, 0x31, 0x83, 0x62, 0x1e, 0xd4, 0x34, 0x8f, 0x23, 0xd8, 0xaf, 0x3c, 0x2a, 0x18, 0x5a, 0xf2,
0x32, 0x8b, 0xa7, 0xbc, 0xdf, 0xe2, 0x71, 0xff, 0xdd, 0x81, 0xcc, 0x66, 0x41, 0x3a, 0x30, 0xca,
0x34, 0xe8, 0x15, 0xf3, 0xf4, 0x82, 0xcd, 0x9a, 0x2d, 0x2c, 0x39, 0x2d, 0xf8, 0x9f, 0x28, 0x04,
0x91, 0x96, 0xf4, 0xce, 0x4b, 0x45, 0x3c, 0x0f, 0x62, 0x0b, 0x64, 0xfe, 0xbd, 0xfc, 0xc7, 0x20,
0xda, 0xd3, 0x77, 0x9f, 0x87, 0x99, 0x3e, 0xa5, 0xf8, 0xf5, 0xa8, 0x48, 0xbd, 0x37, 0x61, 0xcd,
0x40, 0x7e, 0x59, 0x13, 0x05, 0x8e, 0x39, 0xf8, 0xc7, 0xf3, 0xec, 0xc9, 0xe7, 0x1d, 0x98, 0x49,
0xf2, 0xfc, 0x1e, 0x55, 0xdf, 0xe9, 0xcc, 0x55, 0x1f, 0x0a, 0xfb, 0x95, 0x70, 0xff, 0x57, 0x9a,
0x27, 0xf1, 0x8f, 0xd4, 0xf4, 0xe6, 0xe2, 0x0c, 0xdd, 0x5c, 0xd8, 0x12, 0xf3, 0xb7, 0x68, 0xbd,
0xdb, 0xea, 0xab, 0xcd, 0x59, 0x97, 0x70, 0xd4, 0x14, 0x99, 0x87, 0xf5, 0xca, 0xfb, 0x3e, 0xac,
0xf7, 0x1c, 0x4c, 0xda, 0x6f, 0xaa, 0xf0, 0x14, 0x9a, 0x3c, 0x7c, 0xb0, 0x9f, 0x5f, 0xc1, 0x0c,
0x55, 0xee, 0x61, 0xb6, 0xd1, 0x7d, 0x1f, 0x66, 0x7b, 0x06, 0x2a, 0xf2, 0x91, 0x31, 0x95, 0xdf,
0x15, 0x85, 0x3f, 0x12, 0x86, 0x1a, 0xcb, 0x0c, 0x44, 0xdb, 0x0b, 0xbb, 0x5e, 0x8b, 0xf5, 0x90,
0xac, 0x07, 0xd4, 0x2b, 0xeb, 0x9a, 0xc6, 0xa0, 0x45, 0xc5, 0x5a, 0x9c, 0x06, 0x6d, 0xfa, 0x72,
0x14, 0xaa, 0xcc, 0x88, 0x6e, 0xf1, 0x86, 0x84, 0xa3, 0xa6, 0x70, 0xff, 0xd9, 0x81, 0xfc, 0x0b,
0x49, 0x99, 0x1a, 0x44, 0x67, 0xdf, 0x1a, 0xc4, 0x6c, 0x7d, 0x55, 0xe9, 0x40, 0xf5, 0x55, 0x76,
0xe9, 0x53, 0xf9, 0x81, 0xa5, 0x4f, 0x6f, 0x30, 0x17, 0xe2, 0x45, 0x8d, 0xd4, 0xc4, 0xa0, 0xcb,
0xf0, 0xc4, 0x85, 0x31, 0xdf, 0xd3, 0x25, 0xde, 0x93, 0xc2, 0xad, 0x5a, 0x5a, 0xe4, 0x44, 0x12,
0x53, 0x9b, 0xff, 0xca, 0xb7, 0xcf, 0x3e, 0xf1, 0xd5, 0x6f, 0x9f, 0x7d, 0xe2, 0x1b, 0xdf, 0x3e,
0xfb, 0xc4, 0x87, 0xef, 0x9d, 0x75, 0xbe, 0x72, 0xef, 0xac, 0xf3, 0xd5, 0x7b, 0x67, 0x9d, 0x6f,
0xdc, 0x3b, 0xeb, 0x7c, 0xeb, 0xde, 0x59, 0xe7, 0x33, 0xff, 0x70, 0xf6, 0x89, 0x97, 0x2b, 0x6a,
0x66, 0xff, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x0b, 0x14, 0xe3, 0x1a, 0xc4, 0x77, 0x00, 0x00,
// 6827 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x3d, 0x5b, 0x8c, 0x24, 0xc9,
0x51, 0x57, 0xdd, 0xf3, 0xe8, 0x8e, 0x79, 0xec, 0x4e, 0xee, 0xe3, 0xc6, 0xc3, 0x79, 0x67, 0x55,
0x27, 0xdb, 0x07, 0xb6, 0x67, 0xb8, 0xe5, 0x30, 0x87, 0xcf, 0x9c, 0x99, 0x9e, 0xd9, 0xc7, 0xec,
0xce, 0xeb, 0x62, 0x66, 0x77, 0xf1, 0xd9, 0x98, 0xab, 0xa9, 0xce, 0xee, 0xae, 0x9d, 0xee, 0xaa,
0xbe, 0xaa, 0xea, 0xd9, 0x69, 0x1b, 0x3f, 0x65, 0xf0, 0x09, 0x3f, 0x65, 0xf3, 0x61, 0x4b, 0x08,
0xcc, 0x43, 0x48, 0x7c, 0x58, 0x88, 0x2f, 0x40, 0x88, 0x0f, 0xfc, 0x65, 0xc4, 0x07, 0x96, 0x40,
0xb6, 0xc1, 0x62, 0xb0, 0x17, 0x90, 0x01, 0x09, 0x10, 0xe0, 0x1f, 0x56, 0x7c, 0xa0, 0x7c, 0x54,
0x66, 0x56, 0x75, 0xf7, 0xce, 0xcc, 0x76, 0xed, 0xda, 0xb2, 0xf8, 0xeb, 0x8a, 0x88, 0x8c, 0x88,
0x7c, 0x45, 0x46, 0x46, 0x46, 0x66, 0xc3, 0x5a, 0xdd, 0x8b, 0x1b, 0x9d, 0xdd, 0x05, 0x37, 0x68,
0x2d, 0x3a, 0x61, 0x3d, 0x68, 0x87, 0xc1, 0x1d, 0xfe, 0xe3, 0xad, 0x6e, 0x75, 0x71, 0xff, 0xd2,
0x62, 0x7b, 0xaf, 0xbe, 0xe8, 0xb4, 0xbd, 0x68, 0xd1, 0x69, 0xb7, 0x9b, 0x9e, 0xeb, 0xc4, 0x5e,
0xe0, 0x2f, 0xee, 0x3f, 0xeb, 0x34, 0xdb, 0x0d, 0xe7, 0xd9, 0xc5, 0x3a, 0xf5, 0x69, 0xe8, 0xc4,
0xb4, 0xba, 0xd0, 0x0e, 0x83, 0x38, 0x20, 0xef, 0xd0, 0xdc, 0x16, 0x12, 0x6e, 0xfc, 0xc7, 0x2f,
0xb8, 0xd5, 0x85, 0xfd, 0x4b, 0x0b, 0xed, 0xbd, 0xfa, 0x02, 0xe3, 0xb6, 0x60, 0x70, 0x5b, 0x48,
0xb8, 0xcd, 0xbd, 0xd5, 0xd0, 0xa5, 0x1e, 0xd4, 0x83, 0x45, 0xce, 0x74, 0xb7, 0x53, 0xe3, 0x5f,
0xfc, 0x83, 0xff, 0x12, 0xc2, 0xe6, 0xec, 0xbd, 0xe7, 0xa3, 0x05, 0x2f, 0x60, 0xea, 0x2d, 0xba,
0x41, 0x48, 0x17, 0xf7, 0x7b, 0x14, 0x9a, 0x7b, 0x4e, 0xd3, 0xb4, 0x1c, 0xb7, 0xe1, 0xf9, 0x34,
0xec, 0xea, 0x3a, 0xb5, 0x68, 0xec, 0xf4, 0x2b, 0xb5, 0x38, 0xa8, 0x54, 0xd8, 0xf1, 0x63, 0xaf,
0x45, 0x7b, 0x0a, 0xbc, 0xed, 0xa8, 0x02, 0x91, 0xdb, 0xa0, 0x2d, 0x27, 0x5b, 0xce, 0x7e, 0x15,
0xa6, 0x96, 0x6e, 0x6f, 0x2f, 0x75, 0xe2, 0xc6, 0x72, 0xe0, 0xd7, 0xbc, 0x3a, 0xf9, 0x49, 0x98,
0x70, 0x9b, 0x9d, 0x28, 0xa6, 0xe1, 0x86, 0xd3, 0xa2, 0xb3, 0xd6, 0x45, 0xeb, 0x99, 0x72, 0xe5,
0xcc, 0x57, 0x0f, 0xe7, 0x9f, 0xb8, 0x77, 0x38, 0x3f, 0xb1, 0xac, 0x51, 0x68, 0xd2, 0x91, 0x1f,
0x85, 0xf1, 0x30, 0x68, 0xd2, 0x25, 0xdc, 0x98, 0x2d, 0xf0, 0x22, 0xa7, 0x64, 0x91, 0x71, 0x14,
0x60, 0x4c, 0xf0, 0xf6, 0xd7, 0x0b, 0x00, 0x4b, 0xed, 0xf6, 0x56, 0x18, 0xdc, 0xa1, 0x6e, 0x4c,
0x5e, 0x81, 0x12, 0x6b, 0x85, 0xaa, 0x13, 0x3b, 0x5c, 0xda, 0xc4, 0xa5, 0x1f, 0x5f, 0x10, 0x95,
0x59, 0x30, 0x2b, 0xa3, 0x7b, 0x8e, 0x51, 0x2f, 0xec, 0x3f, 0xbb, 0xb0, 0xb9, 0xcb, 0xca, 0xaf,
0xd3, 0xd8, 0xa9, 0x10, 0x29, 0x0c, 0x34, 0x0c, 0x15, 0x57, 0xe2, 0xc3, 0x48, 0xd4, 0xa6, 0x2e,
0x57, 0x6c, 0xe2, 0xd2, 0xda, 0xc2, 0x30, 0x43, 0x64, 0x41, 0x6b, 0xbe, 0xdd, 0xa6, 0x6e, 0x65,
0x52, 0x4a, 0x1e, 0x61, 0x5f, 0xc8, 0xe5, 0x90, 0x7d, 0x18, 0x8b, 0x62, 0x27, 0xee, 0x44, 0xb3,
0x45, 0x2e, 0x71, 0x23, 0x37, 0x89, 0x9c, 0x6b, 0x65, 0x5a, 0xca, 0x1c, 0x13, 0xdf, 0x28, 0xa5,
0xd9, 0x7f, 0x67, 0xc1, 0xb4, 0x26, 0x5e, 0xf3, 0xa2, 0x98, 0xbc, 0xa7, 0xa7, 0x71, 0x17, 0x8e,
0xd7, 0xb8, 0xac, 0x34, 0x6f, 0xda, 0xd3, 0x52, 0x58, 0x29, 0x81, 0x18, 0x0d, 0xdb, 0x82, 0x51,
0x2f, 0xa6, 0xad, 0x68, 0xb6, 0x70, 0xb1, 0xf8, 0xcc, 0xc4, 0xa5, 0x6b, 0x79, 0xd5, 0xb3, 0x32,
0x25, 0x85, 0x8e, 0xae, 0x32, 0xf6, 0x28, 0xa4, 0xd8, 0xdf, 0x03, 0xb3, 0x7e, 0xac, 0xc1, 0xc9,
0xb3, 0x30, 0x11, 0x05, 0x9d, 0xd0, 0xa5, 0x48, 0xdb, 0x41, 0x34, 0x6b, 0x5d, 0x2c, 0xb2, 0xa1,
0xc7, 0x46, 0xea, 0xb6, 0x06, 0xa3, 0x49, 0x43, 0x3e, 0x6d, 0xc1, 0x64, 0x95, 0x46, 0xb1, 0xe7,
0x73, 0xf9, 0x89, 0xf2, 0x3b, 0x43, 0x2b, 0x9f, 0x00, 0x57, 0x34, 0xf3, 0xca, 0x59, 0x59, 0x91,
0x49, 0x03, 0x18, 0x61, 0x4a, 0x3e, 0x9b, 0x71, 0x55, 0x1a, 0xb9, 0xa1, 0xd7, 0x66, 0xdf, 0x7c,
0xcc, 0x18, 0x33, 0x6e, 0x45, 0xa3, 0xd0, 0xa4, 0x23, 0x3e, 0x8c, 0xb2, 0x19, 0x15, 0xcd, 0x8e,
0x70, 0xfd, 0x57, 0x87, 0xd3, 0x5f, 0x36, 0x2a, 0x9b, 0xac, 0xba, 0xf5, 0xd9, 0x57, 0x84, 0x42,
0x0c, 0xf9, 0x94, 0x05, 0xb3, 0x72, 0xc6, 0x23, 0x15, 0x0d, 0x7a, 0xbb, 0xe1, 0xc5, 0xb4, 0xe9,
0x45, 0xf1, 0xec, 0x28, 0xd7, 0x61, 0xf1, 0x78, 0x63, 0xeb, 0x6a, 0x18, 0x74, 0xda, 0x37, 0x3c,
0xbf, 0x5a, 0xb9, 0x28, 0x25, 0xcd, 0x2e, 0x0f, 0x60, 0x8c, 0x03, 0x45, 0x92, 0xcf, 0x5b, 0x30,
0xe7, 0x3b, 0x2d, 0x1a, 0xb5, 0x1d, 0xd6, 0xb5, 0x02, 0x5d, 0x69, 0x3a, 0xee, 0x1e, 0xd7, 0x68,
0xec, 0xe1, 0x34, 0xb2, 0xa5, 0x46, 0x73, 0x1b, 0x03, 0x59, 0xe3, 0x03, 0xc4, 0x92, 0xdf, 0xb6,
0x60, 0x26, 0x08, 0xdb, 0x0d, 0xc7, 0xa7, 0xd5, 0x04, 0x1b, 0xcd, 0x8e, 0xf3, 0xa9, 0xf7, 0xde,
0xe1, 0xba, 0x68, 0x33, 0xcb, 0x76, 0x3d, 0xf0, 0xbd, 0x38, 0x08, 0xb7, 0x69, 0x1c, 0x7b, 0x7e,
0x3d, 0xaa, 0x9c, 0xbb, 0x77, 0x38, 0x3f, 0xd3, 0x43, 0x85, 0xbd, 0xfa, 0x90, 0xf7, 0xc3, 0x44,
0xd4, 0xf5, 0xdd, 0xdb, 0x9e, 0x5f, 0x0d, 0xee, 0x46, 0xb3, 0xa5, 0x3c, 0xa6, 0xef, 0xb6, 0x62,
0x28, 0x27, 0xa0, 0x16, 0x80, 0xa6, 0xb4, 0xfe, 0x1d, 0xa7, 0x87, 0x52, 0x39, 0xef, 0x8e, 0xd3,
0x83, 0xe9, 0x01, 0x62, 0xc9, 0xc7, 0x2d, 0x98, 0x8a, 0xbc, 0xba, 0xef, 0xc4, 0x9d, 0x90, 0xde,
0xa0, 0xdd, 0x68, 0x16, 0xb8, 0x22, 0xd7, 0x87, 0x6c, 0x15, 0x83, 0x65, 0xe5, 0x9c, 0xd4, 0x71,
0xca, 0x84, 0x46, 0x98, 0x96, 0xdb, 0x6f, 0xa2, 0xe9, 0x61, 0x3d, 0x91, 0xef, 0x44, 0xd3, 0x83,
0x7a, 0xa0, 0x48, 0xfb, 0xcf, 0x0b, 0x70, 0x3a, 0xbb, 0x06, 0x91, 0xdf, 0xb5, 0xe0, 0xd4, 0x9d,
0xbb, 0xf1, 0x4e, 0xb0, 0x47, 0xfd, 0xa8, 0xd2, 0x65, 0x96, 0x82, 0x5b, 0xdf, 0x89, 0x4b, 0x6e,
0xbe, 0xab, 0xdd, 0xc2, 0xf5, 0xb4, 0x94, 0xcb, 0x7e, 0x1c, 0x76, 0x2b, 0x4f, 0xca, 0xfa, 0x9c,
0xba, 0x7e, 0x7b, 0xc7, 0xc4, 0x62, 0x56, 0xa9, 0xb9, 0x4f, 0x58, 0x70, 0xb6, 0x1f, 0x0b, 0x72,
0x1a, 0x8a, 0x7b, 0xb4, 0x2b, 0x1c, 0x1c, 0x64, 0x3f, 0xc9, 0xcf, 0xc3, 0xe8, 0xbe, 0xd3, 0xec,
0x50, 0xe9, 0x28, 0x5c, 0x1d, 0xae, 0x22, 0x4a, 0x33, 0x14, 0x5c, 0xdf, 0x5e, 0x78, 0xde, 0xb2,
0xff, 0xb2, 0x08, 0x13, 0xc6, 0x52, 0xf1, 0x18, 0x9c, 0x9f, 0x20, 0xe5, 0xfc, 0xac, 0xe7, 0xb6,
0xca, 0x0d, 0xf4, 0x7e, 0xee, 0x66, 0xbc, 0x9f, 0xcd, 0xfc, 0x44, 0x3e, 0xd0, 0xfd, 0x21, 0x31,
0x94, 0x83, 0x36, 0x73, 0x6e, 0xd9, 0x2a, 0x3a, 0x92, 0x47, 0x17, 0x6e, 0x26, 0xec, 0x2a, 0x53,
0xf7, 0x0e, 0xe7, 0xcb, 0xea, 0x13, 0xb5, 0x20, 0xfb, 0x1b, 0x16, 0x9c, 0x35, 0x74, 0x5c, 0x0e,
0xfc, 0xaa, 0xc7, 0xbb, 0xf6, 0x22, 0x8c, 0xc4, 0xdd, 0x76, 0xe2, 0x41, 0xab, 0x96, 0xda, 0xe9,
0xb6, 0x29, 0x72, 0x0c, 0xf3, 0x99, 0x5b, 0x34, 0x8a, 0x9c, 0x3a, 0xcd, 0xfa, 0xcc, 0xeb, 0x02,
0x8c, 0x09, 0x9e, 0x84, 0x40, 0x9a, 0x4e, 0x14, 0xef, 0x84, 0x8e, 0x1f, 0x71, 0xf6, 0x3b, 0x5e,
0x8b, 0xca, 0x06, 0xfe, 0xb1, 0xe3, 0x8d, 0x18, 0x56, 0xa2, 0x72, 0xfe, 0xde, 0xe1, 0x3c, 0x59,
0xeb, 0xe1, 0x84, 0x7d, 0xb8, 0xdb, 0x9f, 0xb7, 0xe0, 0x7c, 0x7f, 0xb7, 0x86, 0xbc, 0x11, 0xc6,
0x22, 0x1a, 0xee, 0xd3, 0x50, 0xd6, 0x4e, 0x77, 0x09, 0x87, 0xa2, 0xc4, 0x92, 0x45, 0x28, 0x2b,
0x93, 0x2b, 0xeb, 0x38, 0x23, 0x49, 0xcb, 0xda, 0x4e, 0x6b, 0x1a, 0xd6, 0x68, 0xec, 0x43, 0x3a,
0x41, 0xaa, 0xd1, 0xf8, 0x7e, 0x83, 0x63, 0xec, 0xbf, 0xb7, 0xe0, 0x94, 0xa1, 0xd5, 0x63, 0xf0,
0x72, 0xfd, 0xb4, 0x97, 0xbb, 0x9a, 0xdb, 0x78, 0x1e, 0xe0, 0xe6, 0x7e, 0x65, 0x0c, 0x66, 0xcc,
0x51, 0xcf, 0xcd, 0x31, 0xdf, 0x60, 0xd1, 0x76, 0x70, 0x13, 0xd7, 0x64, 0x9b, 0xeb, 0x0d, 0x96,
0x00, 0x63, 0x82, 0x67, 0x8d, 0xd8, 0x76, 0xe2, 0x86, 0x6c, 0x70, 0xd5, 0x88, 0x5b, 0x4e, 0xdc,
0x40, 0x8e, 0x21, 0x2f, 0xc2, 0x74, 0xec, 0x84, 0x75, 0x1a, 0x23, 0xdd, 0xf7, 0xa2, 0x64, 0xbe,
0x94, 0x2b, 0xe7, 0x25, 0xed, 0xf4, 0x4e, 0x0a, 0x8b, 0x19, 0x6a, 0xf2, 0x2a, 0x8c, 0x34, 0x68,
0xb3, 0x25, 0xfd, 0x9a, 0xed, 0xfc, 0x66, 0x38, 0xaf, 0xeb, 0x35, 0xda, 0x6c, 0x55, 0x4a, 0x4c,
0x65, 0xf6, 0x0b, 0xb9, 0x28, 0xf2, 0x4b, 0x16, 0x94, 0xf7, 0x3a, 0x51, 0x1c, 0xb4, 0xbc, 0xf7,
0xd1, 0xd9, 0x12, 0x17, 0xfc, 0x73, 0x39, 0x0b, 0xbe, 0x91, 0xf0, 0x17, 0xf3, 0x5d, 0x7d, 0xa2,
0x96, 0x4c, 0x3e, 0x00, 0xe3, 0x7b, 0x51, 0xe0, 0xfb, 0x94, 0x79, 0x2a, 0x4c, 0x89, 0x5b, 0x79,
0x2b, 0x21, 0xb8, 0x57, 0x26, 0x58, 0xdf, 0xca, 0x0f, 0x4c, 0x64, 0xf2, 0x66, 0xa8, 0x7a, 0x21,
0x75, 0xe3, 0x20, 0xec, 0xce, 0xc2, 0x23, 0x69, 0x86, 0x95, 0x84, 0xbf, 0x68, 0x06, 0xf5, 0x89,
0x5a, 0x32, 0xe9, 0xc2, 0x58, 0xbb, 0xd9, 0xa9, 0x7b, 0xfe, 0xec, 0x04, 0xd7, 0xe1, 0x66, 0xce,
0x3a, 0x6c, 0x71, 0xe6, 0x15, 0x60, 0x46, 0x45, 0xfc, 0x46, 0x29, 0x90, 0x3c, 0x0d, 0xa3, 0x6e,
0xc3, 0x09, 0xe3, 0xd9, 0x49, 0x3e, 0x66, 0xd5, 0x24, 0x5a, 0x66, 0x40, 0x14, 0x38, 0xfb, 0x37,
0x0b, 0x30, 0x37, 0xb8, 0x62, 0x62, 0x36, 0xb9, 0x9d, 0x30, 0x12, 0xf6, 0xb9, 0x64, 0xce, 0x26,
0x0e, 0xc6, 0x04, 0x4f, 0x3e, 0x62, 0xc1, 0xf8, 0x1d, 0xd9, 0xe3, 0x85, 0x47, 0xd2, 0xe3, 0xd7,
0x65, 0x8f, 0x2b, 0x1d, 0xae, 0x27, 0xbd, 0x2e, 0xe5, 0x32, 0x75, 0xe9, 0x81, 0xdb, 0xec, 0x54,
0x13, 0xcb, 0xa8, 0x48, 0x2f, 0x0b, 0x30, 0x26, 0x78, 0x46, 0xea, 0xf9, 0x82, 0x74, 0x24, 0x4d,
0xba, 0xea, 0x4b, 0x52, 0x89, 0xb7, 0x3f, 0x3a, 0x0a, 0xe7, 0xfa, 0x4e, 0x3e, 0xb2, 0x00, 0xc0,
0x7d, 0x96, 0x2b, 0x1e, 0xdb, 0x60, 0x8a, 0x5d, 0xf5, 0x34, 0x73, 0x31, 0x6e, 0x29, 0x28, 0x1a,
0x14, 0xe4, 0x43, 0x00, 0x6d, 0x27, 0x74, 0x5a, 0x34, 0xa6, 0x61, 0x62, 0x27, 0x6f, 0x0c, 0xd7,
0x4a, 0x4c, 0x8f, 0xad, 0x84, 0xa7, 0xf6, 0x71, 0x14, 0x28, 0x42, 0x43, 0x24, 0xdb, 0x43, 0x87,
0xb4, 0x49, 0x9d, 0x88, 0x6e, 0xe8, 0xe5, 0x43, 0xed, 0xa1, 0x51, 0xa3, 0xd0, 0xa4, 0x63, 0xeb,
0x18, 0xaf, 0x45, 0x24, 0xdb, 0x4a, 0xad, 0x63, 0xbc, 0x9e, 0x11, 0x4a, 0x2c, 0xf9, 0x8c, 0x05,
0xd3, 0x35, 0xaf, 0x49, 0xb5, 0x74, 0xb9, 0xe3, 0xdd, 0x1c, 0xbe, 0x92, 0x57, 0x4c, 0xbe, 0xda,
0x02, 0xa7, 0xc0, 0x11, 0x66, 0xc4, 0xb3, 0x6e, 0xde, 0xa7, 0x21, 0x37, 0xdd, 0x63, 0xe9, 0x6e,
0xbe, 0x25, 0xc0, 0x98, 0xe0, 0xc9, 0x12, 0x9c, 0x6a, 0x3b, 0x51, 0xb4, 0x1c, 0xd2, 0x2a, 0xf5,
0x63, 0xcf, 0x69, 0x8a, 0xfd, 0x68, 0x49, 0x3b, 0xd1, 0x5b, 0x69, 0x34, 0x66, 0xe9, 0xc9, 0xbb,
0xe0, 0x49, 0xaf, 0xee, 0x07, 0x21, 0x5d, 0xf7, 0xa2, 0xc8, 0xf3, 0xeb, 0x7a, 0x18, 0x70, 0x4b,
0x5c, 0xaa, 0xcc, 0x4b, 0x56, 0x4f, 0xae, 0xf6, 0x27, 0xc3, 0x41, 0xe5, 0xed, 0x2f, 0x16, 0x60,
0x76, 0xd0, 0x8c, 0x20, 0x11, 0x1b, 0xf7, 0xf1, 0x2d, 0x27, 0x8c, 0xe4, 0xe6, 0x62, 0xc8, 0x3d,
0xaa, 0xe4, 0x7b, 0xcb, 0x09, 0xcd, 0x19, 0xc4, 0x05, 0x60, 0x22, 0x89, 0xdc, 0x81, 0x91, 0xb8,
0xe9, 0xe4, 0x14, 0xd4, 0x32, 0x24, 0x6a, 0x17, 0x70, 0x6d, 0x29, 0x42, 0x2e, 0x83, 0x3c, 0x05,
0x23, 0x4d, 0x6f, 0x97, 0xb9, 0xca, 0x6c, 0x8a, 0xf1, 0x35, 0x6f, 0xcd, 0xdb, 0x8d, 0x90, 0x43,
0xed, 0xaf, 0x5b, 0x7d, 0xda, 0x46, 0x2e, 0x09, 0x6c, 0xc8, 0x53, 0x7f, 0xdf, 0x0b, 0x03, 0xbf,
0x45, 0xfd, 0x38, 0x1b, 0xa8, 0xbd, 0xac, 0x51, 0x68, 0xd2, 0x91, 0x8f, 0x5a, 0x7d, 0xe6, 0xea,
0x90, 0x11, 0x4a, 0xa9, 0xd2, 0xb1, 0xa7, 0xab, 0xfd, 0x1f, 0x63, 0x7d, 0xac, 0xb3, 0x5a, 0x6e,
0xc9, 0x25, 0x00, 0xe6, 0xeb, 0x6d, 0x85, 0xb4, 0xe6, 0x1d, 0xc8, 0x9a, 0x29, 0x96, 0x1b, 0x0a,
0x83, 0x06, 0x55, 0x52, 0x66, 0xbb, 0x53, 0x63, 0x65, 0x0a, 0xbd, 0x65, 0x04, 0x06, 0x0d, 0x2a,
0xf2, 0x1c, 0x8c, 0x79, 0x2d, 0xa7, 0x4e, 0x93, 0xf6, 0x7f, 0x8a, 0x4d, 0xfd, 0x55, 0x0e, 0xb9,
0x7f, 0x38, 0x3f, 0xad, 0x14, 0xe2, 0x20, 0x94, 0xb4, 0xe4, 0x77, 0x2c, 0x98, 0x74, 0x83, 0x56,
0x2b, 0xf0, 0xd7, 0x9c, 0x5d, 0xda, 0x4c, 0x02, 0x70, 0x77, 0x1e, 0x95, 0x33, 0xb2, 0xb0, 0x6c,
0x08, 0x13, 0xdb, 0x5f, 0x15, 0x56, 0x34, 0x51, 0x98, 0xd2, 0xca, 0xb4, 0x10, 0xa3, 0x47, 0x58,
0x88, 0x3f, 0xb2, 0x60, 0x46, 0x94, 0x5d, 0xf2, 0xfd, 0x20, 0x96, 0x71, 0x51, 0x11, 0x41, 0x0b,
0x1e, 0x71, 0xb5, 0x0c, 0x89, 0xa2, 0x6e, 0xaf, 0x93, 0x6a, 0xce, 0xf4, 0xe0, 0xb1, 0x57, 0x49,
0x72, 0x15, 0x66, 0x6a, 0x41, 0xe8, 0x52, 0xb3, 0x21, 0xa4, 0x79, 0x53, 0x8c, 0xae, 0x64, 0x09,
0xb0, 0xb7, 0x0c, 0xb9, 0x05, 0xe7, 0x0d, 0xa0, 0xd9, 0x0e, 0xc2, 0xc2, 0x5d, 0x90, 0xdc, 0xce,
0x5f, 0xe9, 0x4b, 0x85, 0x03, 0x4a, 0xcf, 0xbd, 0x13, 0x66, 0x7a, 0xfa, 0xaf, 0x4f, 0xec, 0xe1,
0xac, 0x19, 0x7b, 0x28, 0x1b, 0x21, 0x83, 0xb9, 0x15, 0x38, 0xdf, 0xbf, 0xa5, 0x4e, 0xc2, 0xc5,
0xfe, 0x75, 0x0b, 0x9e, 0x1c, 0xe0, 0x64, 0xa9, 0x4d, 0x97, 0x35, 0x68, 0xd3, 0x45, 0x1c, 0x28,
0x52, 0x7f, 0x5f, 0x1a, 0x8b, 0x2b, 0xc3, 0x8d, 0x88, 0xcb, 0xfe, 0xbe, 0xe8, 0xe8, 0xf1, 0x7b,
0x87, 0xf3, 0xc5, 0xcb, 0xfe, 0x3e, 0x32, 0xde, 0xf6, 0xaf, 0x8e, 0xa5, 0xf6, 0x75, 0xdb, 0x49,
0x28, 0x81, 0x2b, 0x2a, 0x77, 0x75, 0x9b, 0x39, 0x8f, 0x45, 0x63, 0xdf, 0x2a, 0x0e, 0x08, 0xa4,
0x38, 0xf2, 0x09, 0x8b, 0xc7, 0xe4, 0x93, 0xfd, 0xae, 0xf4, 0xfb, 0x1e, 0xcd, 0x11, 0x81, 0x19,
0xe9, 0x4f, 0x80, 0x68, 0x4a, 0x67, 0x33, 0xb9, 0x2d, 0x42, 0x62, 0x59, 0xef, 0x2f, 0x89, 0xda,
0x27, 0x78, 0x72, 0x00, 0x10, 0x75, 0x7d, 0x77, 0x2b, 0x68, 0x7a, 0x6e, 0x57, 0x06, 0x41, 0x72,
0x88, 0xeb, 0x0a, 0x7e, 0xc2, 0x05, 0xd4, 0xdf, 0x68, 0xc8, 0x22, 0x5f, 0xb2, 0x60, 0x46, 0xac,
0xf1, 0x2b, 0x5e, 0xad, 0x46, 0x43, 0xea, 0xbb, 0x34, 0xf1, 0x92, 0x6e, 0x0f, 0xa7, 0x41, 0x12,
0x92, 0x5c, 0xcd, 0xb2, 0xd7, 0x53, 0xbc, 0x07, 0x85, 0xbd, 0xca, 0x90, 0x2a, 0x8c, 0x78, 0x7e,
0x2d, 0x90, 0x86, 0xad, 0x32, 0x9c, 0x52, 0xab, 0x7e, 0x2d, 0xd0, 0x73, 0x85, 0x7d, 0x21, 0xe7,
0x4e, 0xd6, 0xe0, 0x6c, 0x28, 0xf7, 0xc9, 0xd7, 0xbc, 0x88, 0xed, 0x36, 0xd6, 0xbc, 0x96, 0x17,
0x73, 0xa3, 0x54, 0xac, 0xcc, 0xde, 0x3b, 0x9c, 0x3f, 0x8b, 0x7d, 0xf0, 0xd8, 0xb7, 0x94, 0xfd,
0x5a, 0x39, 0x1d, 0x0c, 0x10, 0xa1, 0xae, 0x0f, 0x40, 0x39, 0x54, 0x87, 0x0b, 0xc2, 0x33, 0x5a,
0xcb, 0xa7, 0x8d, 0x65, 0x8c, 0x4d, 0x45, 0x69, 0xf4, 0x31, 0x82, 0x96, 0xc8, 0x3c, 0x24, 0xd6,
0xf3, 0x72, 0x5a, 0xe4, 0x30, 0xbe, 0xa4, 0x54, 0x1d, 0x4e, 0xec, 0xfa, 0x2e, 0x72, 0x19, 0x24,
0x84, 0xb1, 0x06, 0x75, 0x9a, 0x71, 0x43, 0x46, 0xbb, 0xae, 0x0f, 0xeb, 0x71, 0x33, 0x5e, 0xd9,
0x48, 0xa2, 0x80, 0xa2, 0x94, 0x44, 0x0e, 0x60, 0xbc, 0x21, 0x3a, 0x41, 0xae, 0xed, 0xeb, 0xc3,
0x36, 0x6e, 0xaa, 0x67, 0xf5, 0xfc, 0x95, 0x00, 0x4c, 0xc4, 0x91, 0x5f, 0xb6, 0x00, 0xdc, 0x24,
0x84, 0x98, 0x4c, 0x1f, 0xcc, 0xcd, 0xee, 0xa8, 0xe8, 0xa4, 0x76, 0x8d, 0x14, 0x28, 0x42, 0x43,
0x32, 0x79, 0x05, 0x26, 0x43, 0xea, 0x06, 0xbe, 0xeb, 0x35, 0x69, 0x75, 0x29, 0xe6, 0x9b, 0x8c,
0x93, 0x85, 0x1a, 0x4f, 0x33, 0xff, 0x04, 0x0d, 0x1e, 0x98, 0xe2, 0x48, 0x5e, 0xb3, 0x60, 0x5a,
0x85, 0x51, 0x59, 0x87, 0x50, 0x19, 0x4e, 0x5a, 0xcb, 0x29, 0x68, 0xcb, 0x79, 0x56, 0x08, 0xdb,
0x4c, 0xa5, 0x61, 0x98, 0x91, 0x4b, 0x5e, 0x06, 0x08, 0x76, 0x79, 0xc8, 0x92, 0x55, 0xb5, 0x74,
0xe2, 0xaa, 0x4e, 0x8b, 0xe8, 0x7b, 0xc2, 0x01, 0x0d, 0x6e, 0xe4, 0x06, 0x80, 0x98, 0x36, 0x3b,
0xdd, 0x36, 0xe5, 0x21, 0xa3, 0x72, 0xe5, 0xcd, 0x49, 0xe3, 0x6f, 0x2b, 0xcc, 0xfd, 0xc3, 0xf9,
0xde, 0xbd, 0x38, 0x8f, 0x15, 0x1b, 0xc5, 0xc9, 0xfb, 0x61, 0x3c, 0xea, 0xb4, 0x5a, 0x8e, 0x0a,
0xfd, 0x6c, 0xe5, 0xb7, 0x22, 0x0a, 0xbe, 0x7a, 0x6c, 0x4a, 0x00, 0x26, 0x12, 0x6d, 0x1f, 0x48,
0x2f, 0x3d, 0x79, 0x0e, 0x26, 0xe9, 0x41, 0x4c, 0x43, 0xdf, 0x69, 0xde, 0xc4, 0xb5, 0x24, 0x58,
0xc0, 0x3b, 0xff, 0xb2, 0x01, 0xc7, 0x14, 0x15, 0xb1, 0x95, 0xe7, 0x5d, 0xe0, 0xf4, 0xa0, 0x3d,
0xef, 0xc4, 0xcf, 0xb6, 0xff, 0xa7, 0x90, 0xf2, 0x08, 0x76, 0x42, 0x4a, 0x49, 0x00, 0xa3, 0x7e,
0x50, 0x55, 0x46, 0xef, 0x7a, 0x3e, 0x46, 0x6f, 0x23, 0xa8, 0x1a, 0xa7, 0xde, 0xec, 0x2b, 0x42,
0x21, 0x87, 0x1f, 0x0b, 0x26, 0xe7, 0xa7, 0x1c, 0x21, 0x9d, 0xa0, 0x3c, 0x25, 0xab, 0x63, 0xc1,
0x4d, 0x53, 0x10, 0xa6, 0xe5, 0x92, 0x3d, 0x18, 0x6d, 0x04, 0x51, 0x2c, 0xf6, 0x2a, 0x43, 0x7b,
0x61, 0xd7, 0x82, 0x28, 0xe6, 0x4b, 0x98, 0xaa, 0x36, 0x83, 0x44, 0x28, 0x64, 0xd8, 0xdf, 0xb5,
0x52, 0xa1, 0xa1, 0xdb, 0x4e, 0xec, 0x36, 0x2e, 0xef, 0xb3, 0xfd, 0xe3, 0x8d, 0xd4, 0xb1, 0xc6,
0x4f, 0x99, 0xc7, 0x1a, 0xf7, 0x0f, 0xe7, 0xdf, 0x34, 0x28, 0x0d, 0xe9, 0x2e, 0xe3, 0xb0, 0xc0,
0x59, 0x18, 0x27, 0x20, 0x1f, 0xb6, 0x60, 0xc2, 0x50, 0x4f, 0x2e, 0x28, 0x39, 0x46, 0xd8, 0x95,
0x73, 0x65, 0x00, 0xd1, 0x14, 0x69, 0x7f, 0xce, 0x82, 0xf1, 0x8a, 0xe3, 0xee, 0x05, 0xb5, 0x1a,
0x79, 0x0b, 0x94, 0xaa, 0x1d, 0x79, 0x80, 0x24, 0xea, 0xa7, 0xce, 0x05, 0x56, 0x24, 0x1c, 0x15,
0x05, 0x1b, 0xc3, 0x35, 0xc7, 0x8d, 0x83, 0x90, 0xab, 0x5d, 0x14, 0x63, 0xf8, 0x0a, 0x87, 0xa0,
0xc4, 0xb0, 0x4d, 0x7a, 0xcb, 0x39, 0x48, 0x0a, 0x67, 0xe3, 0x52, 0xeb, 0x1a, 0x85, 0x26, 0x9d,
0xfd, 0x67, 0x65, 0x18, 0x97, 0x27, 0xb5, 0xc7, 0x3e, 0x6b, 0x49, 0xbc, 0xf8, 0xc2, 0x40, 0x2f,
0x3e, 0x82, 0x31, 0x97, 0x27, 0x79, 0xc9, 0xa5, 0x74, 0xc8, 0x08, 0x9d, 0x54, 0x50, 0xe4, 0x8d,
0x69, 0xb5, 0xc4, 0x37, 0x4a, 0x51, 0xe4, 0xb3, 0x16, 0x9c, 0x72, 0x03, 0xdf, 0xa7, 0xae, 0xb6,
0xf3, 0x23, 0x79, 0x9c, 0x45, 0x2e, 0xa7, 0x99, 0xea, 0x68, 0x56, 0x06, 0x81, 0x59, 0xf1, 0xe4,
0x05, 0x98, 0x12, 0x6d, 0x76, 0x2b, 0xb5, 0x3f, 0xd6, 0xa7, 0xf3, 0x26, 0x12, 0xd3, 0xb4, 0x64,
0x41, 0xc4, 0x19, 0xf8, 0x71, 0x95, 0xd8, 0x23, 0xcb, 0xd0, 0xa8, 0x3a, 0xcf, 0x8a, 0xd0, 0xa0,
0x20, 0x21, 0x90, 0x90, 0xd6, 0x42, 0x1a, 0x35, 0x90, 0xbe, 0xda, 0xa1, 0x51, 0xcc, 0xd7, 0x98,
0xf1, 0x87, 0x3b, 0xb9, 0xc3, 0x1e, 0x4e, 0xd8, 0x87, 0x3b, 0xd9, 0x93, 0x8e, 0x6e, 0x29, 0x8f,
0xe9, 0x24, 0xbb, 0x79, 0xa0, 0xbf, 0x3b, 0x0f, 0xa3, 0x51, 0xc3, 0x09, 0xab, 0x7c, 0x6d, 0x2b,
0x56, 0xca, 0xcc, 0x96, 0x6c, 0x33, 0x00, 0x0a, 0x38, 0x59, 0x81, 0xd3, 0x99, 0xdc, 0x82, 0x88,
0xaf, 0x5e, 0xa5, 0xca, 0xac, 0x64, 0x77, 0x3a, 0x93, 0x95, 0x10, 0x61, 0x4f, 0x09, 0x73, 0x13,
0x34, 0x71, 0xc4, 0x26, 0xa8, 0x0b, 0x63, 0x4d, 0x11, 0x08, 0x98, 0xe4, 0xa6, 0xf2, 0xa5, 0x5c,
0x1a, 0x60, 0xc1, 0x0c, 0xc0, 0xa8, 0xd1, 0x2e, 0x03, 0x0a, 0x52, 0x20, 0xf9, 0x14, 0x33, 0x68,
0x46, 0xec, 0x60, 0x8a, 0x2b, 0x70, 0x2b, 0x1f, 0x05, 0x7a, 0x42, 0x25, 0xda, 0xba, 0x19, 0x81,
0x08, 0x53, 0xfe, 0xdc, 0x4f, 0xc3, 0xc4, 0xc3, 0xc6, 0x1d, 0x5e, 0x84, 0xd3, 0x43, 0x45, 0x1c,
0xbe, 0x67, 0x41, 0xd2, 0xaf, 0xcb, 0x8e, 0xdb, 0xa0, 0x6c, 0xc8, 0x90, 0x17, 0x61, 0x5a, 0x6d,
0x23, 0x96, 0x83, 0x8e, 0x8c, 0x5b, 0x16, 0x75, 0xd8, 0x1b, 0x53, 0x58, 0xcc, 0x50, 0x93, 0x45,
0x28, 0xb3, 0x76, 0x12, 0x45, 0x85, 0xd9, 0x55, 0x5b, 0x95, 0xa5, 0xad, 0x55, 0x59, 0x4a, 0xd3,
0x90, 0x00, 0x66, 0x9a, 0x4e, 0x14, 0x73, 0x0d, 0xd8, 0xae, 0xe2, 0x21, 0xcf, 0xcd, 0x79, 0x6a,
0xd5, 0x5a, 0x96, 0x11, 0xf6, 0xf2, 0xb6, 0xbf, 0x31, 0x02, 0x53, 0x29, 0xcb, 0xc8, 0x56, 0x95,
0x4e, 0xc4, 0x5c, 0x1f, 0x15, 0x62, 0x51, 0xab, 0xca, 0x4d, 0x09, 0x47, 0x45, 0xc1, 0xa8, 0xdb,
0x4e, 0x14, 0xdd, 0x0d, 0xc2, 0xaa, 0x34, 0xe5, 0x8a, 0x7a, 0x4b, 0xc2, 0x51, 0x51, 0xb0, 0xf5,
0x65, 0x97, 0x3a, 0x21, 0x0d, 0x79, 0xaa, 0x49, 0x76, 0x7d, 0xa9, 0x68, 0x14, 0x9a, 0x74, 0xdc,
0x28, 0xc7, 0xcd, 0x68, 0xb9, 0xe9, 0x51, 0x3f, 0x16, 0x6a, 0xe6, 0x63, 0x94, 0x77, 0xd6, 0xb6,
0x4d, 0xa6, 0xda, 0x28, 0x67, 0x10, 0x98, 0x15, 0x4f, 0x3e, 0x66, 0xc1, 0x94, 0x73, 0x37, 0xd2,
0x99, 0xc8, 0xdc, 0x2a, 0x0f, 0xbd, 0x48, 0xa5, 0x92, 0x9b, 0x2b, 0x33, 0xcc, 0xbc, 0xa7, 0x40,
0x98, 0x16, 0x4a, 0xbe, 0x60, 0x01, 0xa1, 0x07, 0xd4, 0xdd, 0x0a, 0x83, 0x7d, 0xaf, 0x9a, 0xf4,
0xa1, 0xdc, 0xfe, 0x0c, 0xe9, 0x6d, 0x5f, 0xee, 0xe1, 0x2b, 0xac, 0x7a, 0x2f, 0x1c, 0xfb, 0xe8,
0x60, 0xff, 0x6d, 0x11, 0x26, 0x0c, 0x63, 0xdc, 0x77, 0x65, 0xb5, 0x7e, 0xc0, 0x56, 0xd6, 0xc2,
0x09, 0x56, 0xd6, 0x0f, 0x41, 0xd9, 0x4d, 0x0c, 0x45, 0x3e, 0x99, 0xd3, 0x59, 0xf3, 0xa3, 0x6d,
0x85, 0x02, 0xa1, 0x96, 0x49, 0xae, 0xc2, 0x8c, 0xc1, 0x46, 0x1a, 0x99, 0x11, 0x6e, 0x64, 0x54,
0xa0, 0x69, 0x29, 0x4b, 0x80, 0xbd, 0x65, 0xc8, 0xb3, 0xcc, 0xab, 0xf5, 0x64, 0xbd, 0xc4, 0x2e,
0x5e, 0x66, 0x25, 0x2f, 0x6d, 0xad, 0x26, 0x60, 0x34, 0x69, 0xec, 0x6f, 0x58, 0xaa, 0x73, 0x1f,
0x43, 0x4a, 0xcb, 0x9d, 0x74, 0x4a, 0xcb, 0xe5, 0x5c, 0x9a, 0x79, 0x40, 0x3a, 0xcb, 0x06, 0x8c,
0x2f, 0x07, 0xad, 0x96, 0xe3, 0x57, 0xc9, 0x1b, 0x60, 0xdc, 0x15, 0x3f, 0xe5, 0x36, 0x91, 0xe7,
0x38, 0x48, 0x2c, 0x26, 0x38, 0xf2, 0x14, 0x8c, 0x38, 0x61, 0x3d, 0xd9, 0x1a, 0xf2, 0x43, 0xb1,
0xa5, 0xb0, 0x1e, 0x21, 0x87, 0xda, 0x9f, 0x2f, 0x00, 0x2c, 0x07, 0xad, 0xb6, 0x13, 0xd2, 0xea,
0x4e, 0xf0, 0xff, 0x31, 0x62, 0xb1, 0x63, 0xf8, 0xa4, 0x05, 0x84, 0xb5, 0x4a, 0xe0, 0x53, 0x5f,
0x1f, 0xc4, 0xb1, 0xf5, 0xd2, 0x4d, 0xa0, 0x72, 0xf1, 0xd1, 0x73, 0x20, 0x41, 0xa0, 0xa6, 0x39,
0xc6, 0x2e, 0xe2, 0xe9, 0x64, 0xc5, 0x2f, 0xa6, 0xd3, 0x2f, 0xf8, 0x99, 0xae, 0x74, 0x00, 0xec,
0xaf, 0x14, 0xe0, 0xbc, 0x30, 0x5b, 0xeb, 0x8e, 0xef, 0xd4, 0x69, 0x8b, 0x69, 0x75, 0xdc, 0xd3,
0x06, 0x97, 0xb9, 0xaf, 0x5e, 0x92, 0x6d, 0x31, 0xec, 0xe0, 0x14, 0x83, 0x4a, 0x0c, 0xa3, 0x55,
0xdf, 0x8b, 0x91, 0x33, 0x27, 0x11, 0x94, 0x92, 0xbb, 0x30, 0xd2, 0xd8, 0xe4, 0x24, 0x48, 0xcd,
0xbb, 0xab, 0x92, 0x3d, 0x2a, 0x41, 0x6c, 0x71, 0x6f, 0x06, 0xee, 0x1e, 0xd2, 0x76, 0xc0, 0x0d,
0x4b, 0xc9, 0x98, 0xa5, 0x12, 0x8e, 0x8a, 0xc2, 0xfe, 0x8a, 0x05, 0x59, 0x93, 0xcb, 0x77, 0x83,
0x22, 0xbb, 0x32, 0xbb, 0x1b, 0x4c, 0x27, 0x43, 0x9e, 0x20, 0xb7, 0xf0, 0x3d, 0x30, 0xe1, 0xc4,
0x31, 0x6d, 0xb5, 0xc5, 0xd6, 0xa4, 0xf8, 0x70, 0xe1, 0xaf, 0xf5, 0xa0, 0xea, 0xd5, 0x3c, 0xbe,
0x25, 0x31, 0xd9, 0xd9, 0x2f, 0x41, 0x29, 0x39, 0xf1, 0x39, 0x46, 0xd7, 0x3f, 0x9d, 0x72, 0x27,
0x07, 0x0c, 0xae, 0xfb, 0x05, 0xe8, 0xb3, 0x66, 0xb2, 0x2a, 0x6b, 0xeb, 0x92, 0xaa, 0xf2, 0xc9,
0x2c, 0x0c, 0x39, 0x10, 0xa7, 0x5d, 0x22, 0xce, 0xf2, 0xae, 0xbc, 0xd7, 0x7c, 0x7d, 0x00, 0x36,
0x21, 0xf5, 0x53, 0x87, 0x60, 0xe4, 0x12, 0x80, 0x5e, 0x14, 0x64, 0x4e, 0x8a, 0x8a, 0xd4, 0xea,
0xb5, 0x03, 0x0d, 0x2a, 0xe6, 0x02, 0x7a, 0x7e, 0x14, 0x3b, 0xcd, 0xe6, 0x35, 0xcf, 0x8f, 0xe5,
0x5e, 0x56, 0x19, 0x8c, 0x55, 0x8d, 0x42, 0x93, 0x6e, 0xee, 0x6d, 0x46, 0xbf, 0x9c, 0xc4, 0xad,
0xff, 0x64, 0x01, 0xa6, 0xaf, 0xfa, 0x9d, 0xad, 0xab, 0x5b, 0x9d, 0xdd, 0xa6, 0xe7, 0xde, 0xa0,
0x5d, 0xd6, 0x69, 0x7b, 0xb4, 0xbb, 0xba, 0x22, 0x9b, 0x5d, 0x75, 0xda, 0x0d, 0x06, 0x44, 0x81,
0x63, 0x6a, 0xd6, 0x3c, 0xbf, 0x4e, 0xc3, 0x76, 0xe8, 0x49, 0xdf, 0xdd, 0x50, 0xf3, 0x8a, 0x46,
0xa1, 0x49, 0xc7, 0x78, 0x07, 0x77, 0x7d, 0x1a, 0x66, 0xad, 0xcd, 0x26, 0x03, 0xa2, 0xc0, 0x31,
0xa2, 0x38, 0xec, 0x44, 0xb1, 0x6c, 0x31, 0x45, 0xb4, 0xc3, 0x80, 0x28, 0x70, 0x6c, 0x78, 0x44,
0x9d, 0x5d, 0x1e, 0x85, 0xcd, 0x9c, 0x87, 0x6f, 0x0b, 0x30, 0x26, 0x78, 0x46, 0xba, 0x47, 0xbb,
0x2b, 0x6c, 0xed, 0xcd, 0x24, 0xd7, 0xdc, 0x10, 0x60, 0x4c, 0xf0, 0xf6, 0x3f, 0x59, 0x40, 0xd2,
0xcd, 0xf1, 0x18, 0x96, 0xef, 0x57, 0xd3, 0xcb, 0xf7, 0x90, 0x01, 0xf3, 0xb4, 0xfa, 0x03, 0x56,
0xf1, 0xdf, 0xb2, 0x60, 0xd2, 0x3c, 0x3b, 0x21, 0xf5, 0x8c, 0x21, 0xda, 0x4c, 0x1b, 0xa2, 0xfb,
0x87, 0xf3, 0x3f, 0xd3, 0xef, 0x62, 0x67, 0xdd, 0x8b, 0x83, 0x76, 0xf4, 0x56, 0xea, 0xd7, 0x3d,
0x9f, 0xf2, 0xc8, 0xa0, 0x38, 0x73, 0x49, 0x1d, 0xcc, 0x2c, 0x07, 0x55, 0xfa, 0x10, 0x96, 0xcc,
0xbe, 0x0d, 0x33, 0x3d, 0x19, 0x55, 0xc7, 0x30, 0x3a, 0x47, 0xe6, 0xcb, 0xda, 0x9f, 0xb2, 0x60,
0x2a, 0x95, 0x90, 0x96, 0x93, 0x29, 0xe3, 0xb3, 0x22, 0xe0, 0xc7, 0x6e, 0xa1, 0xe7, 0x8b, 0xb8,
0x5c, 0xc9, 0x98, 0x15, 0x1a, 0x85, 0x26, 0x9d, 0xfd, 0xb9, 0x02, 0x94, 0x92, 0x08, 0xee, 0x31,
0x54, 0xf9, 0x84, 0x05, 0x53, 0x6a, 0x23, 0xcd, 0xdd, 0xeb, 0x5c, 0xd2, 0x7e, 0x98, 0x06, 0xea,
0x6c, 0x96, 0xb9, 0xd7, 0xca, 0xcf, 0x47, 0x53, 0x18, 0xa6, 0x65, 0x93, 0x5b, 0x00, 0x51, 0x37,
0x8a, 0x69, 0xcb, 0x70, 0xf4, 0x6d, 0x63, 0x76, 0x2c, 0xb8, 0x41, 0x48, 0xd9, 0x5c, 0xd8, 0x08,
0xaa, 0x74, 0x5b, 0x51, 0x6a, 0x43, 0xa8, 0x61, 0x68, 0x70, 0xb2, 0x7f, 0xbf, 0x00, 0xa7, 0xb3,
0x2a, 0x91, 0x77, 0xc3, 0x64, 0x22, 0xdd, 0xb8, 0xcf, 0x9a, 0x84, 0xad, 0x27, 0xd1, 0xc0, 0xdd,
0x3f, 0x9c, 0x9f, 0xef, 0xbd, 0xd0, 0xbb, 0x60, 0x92, 0x60, 0x8a, 0x99, 0x88, 0x66, 0xc8, 0xb0,
0x5b, 0xa5, 0xbb, 0xd4, 0x6e, 0xcb, 0x90, 0x84, 0x11, 0xcd, 0x30, 0xb1, 0x98, 0xa1, 0x26, 0x5b,
0x70, 0xd6, 0x80, 0x6c, 0x50, 0xaf, 0xde, 0xd8, 0x0d, 0x42, 0x71, 0x71, 0xa2, 0x58, 0x79, 0x4a,
0x72, 0x39, 0x8b, 0x7d, 0x68, 0xb0, 0x6f, 0x49, 0xe6, 0x60, 0xb8, 0x4e, 0xdb, 0x71, 0xbd, 0xb8,
0x2b, 0x77, 0x2e, 0xca, 0x8e, 0x2c, 0x4b, 0x38, 0x2a, 0x0a, 0x7b, 0x1d, 0x46, 0x8e, 0x39, 0x82,
0x8e, 0xb5, 0x2e, 0xbf, 0x04, 0x25, 0xc6, 0x8e, 0xd9, 0x8d, 0xbc, 0x58, 0x06, 0x50, 0x4a, 0xee,
0xd1, 0x10, 0x1b, 0x8a, 0x9e, 0x93, 0x04, 0x8c, 0x54, 0xb5, 0x56, 0xa3, 0xa8, 0xc3, 0xbd, 0x0e,
0x86, 0x24, 0x4f, 0x43, 0x91, 0x1e, 0xb4, 0xb3, 0x91, 0xa1, 0xcb, 0x07, 0x6d, 0x2f, 0xa4, 0x11,
0x23, 0xa2, 0x07, 0x6d, 0x32, 0x07, 0x05, 0xaf, 0x2a, 0x17, 0x14, 0x90, 0x34, 0x85, 0xd5, 0x15,
0x2c, 0x78, 0x55, 0xfb, 0x00, 0xca, 0xea, 0xe2, 0x0e, 0xd9, 0x4b, 0xec, 0xac, 0x95, 0xc7, 0x91,
0x4b, 0xc2, 0x77, 0x80, 0x85, 0xed, 0x00, 0xe8, 0x64, 0xc1, 0xbc, 0xec, 0xcb, 0x45, 0x18, 0x71,
0x03, 0x99, 0x35, 0x5c, 0xd2, 0x6c, 0xb8, 0x81, 0xe5, 0x18, 0xfb, 0x36, 0x4c, 0xdf, 0xf0, 0x83,
0xbb, 0x3e, 0x5b, 0xf8, 0xae, 0x78, 0xb4, 0x59, 0x65, 0x8c, 0x6b, 0xec, 0x47, 0x76, 0x39, 0xe7,
0x58, 0x14, 0x38, 0x75, 0xbb, 0xa5, 0x30, 0xe8, 0x76, 0x8b, 0xfd, 0x2b, 0x16, 0x9c, 0xce, 0x26,
0x06, 0x7e, 0xdf, 0xf6, 0x23, 0x1f, 0x66, 0xca, 0x24, 0x99, 0x67, 0x9b, 0x6d, 0x71, 0xc6, 0xfd,
0x3c, 0x4c, 0xee, 0x76, 0xbc, 0x66, 0x55, 0x7e, 0x4b, 0x7d, 0x54, 0x6e, 0x5d, 0xc5, 0xc0, 0x61,
0x8a, 0x92, 0xf9, 0x69, 0xbb, 0x9e, 0xef, 0x84, 0xdd, 0x2d, 0xbd, 0x6e, 0x28, 0xf3, 0x54, 0x51,
0x18, 0x34, 0xa8, 0xec, 0xbf, 0x2e, 0x82, 0xbe, 0x41, 0x44, 0x3c, 0x99, 0x42, 0x61, 0xe5, 0x11,
0xe4, 0xda, 0xee, 0xfa, 0xae, 0xbe, 0xab, 0x54, 0xca, 0x64, 0x50, 0x7c, 0xdc, 0x62, 0x1e, 0xa2,
0x17, 0x7b, 0x0e, 0x37, 0x16, 0x72, 0x5b, 0xb5, 0x95, 0xd3, 0x29, 0xfb, 0xaa, 0xe0, 0x1c, 0x84,
0xa6, 0xcf, 0xa9, 0x84, 0xa1, 0x29, 0x99, 0xbc, 0x22, 0xcf, 0x25, 0x8a, 0xb9, 0x25, 0xe0, 0x94,
0x32, 0x87, 0x11, 0x6d, 0x18, 0x0d, 0x69, 0x1c, 0x26, 0xa9, 0x4f, 0x37, 0x86, 0x3d, 0xa5, 0x8d,
0xc3, 0xee, 0x76, 0xcc, 0xb6, 0x6e, 0x75, 0xc3, 0x31, 0xe2, 0x60, 0x14, 0x82, 0xec, 0x08, 0x48,
0x6f, 0x5b, 0x9c, 0x30, 0xe6, 0xbb, 0x08, 0x65, 0xa7, 0x13, 0x07, 0x2d, 0xd6, 0x4c, 0xbc, 0x7b,
0x4a, 0x46, 0x54, 0x3b, 0x41, 0xa0, 0xa6, 0xb1, 0x3f, 0x33, 0x0a, 0x99, 0x9c, 0x06, 0x72, 0x60,
0xde, 0x7e, 0xb3, 0xf2, 0xbd, 0xfd, 0xa6, 0x94, 0xe9, 0x77, 0x03, 0x8e, 0xd4, 0x61, 0xb4, 0xdd,
0x70, 0xa2, 0x64, 0x8e, 0xbe, 0x94, 0x34, 0xd3, 0x16, 0x03, 0xde, 0x3f, 0x9c, 0xff, 0xd9, 0xe3,
0xf9, 0x81, 0x6c, 0xac, 0x2e, 0x8a, 0x04, 0x4f, 0x2d, 0x9a, 0xf3, 0x40, 0xc1, 0xdf, 0xf4, 0x04,
0x8b, 0x47, 0xec, 0x69, 0x3f, 0x62, 0x89, 0x44, 0x38, 0xa4, 0x51, 0xa7, 0x19, 0xcb, 0xd1, 0xf0,
0x52, 0x8e, 0xb3, 0x4c, 0x30, 0xd6, 0x19, 0x71, 0xe2, 0x1b, 0x0d, 0xa1, 0xe4, 0xdd, 0x50, 0x8e,
0x62, 0x27, 0x8c, 0x1f, 0x32, 0x7f, 0x46, 0x35, 0xfa, 0x76, 0xc2, 0x04, 0x35, 0x3f, 0xf2, 0x32,
0x40, 0xcd, 0xf3, 0xbd, 0xa8, 0xf1, 0x90, 0xc7, 0x89, 0x5c, 0xf1, 0x2b, 0x8a, 0x03, 0x1a, 0xdc,
0x98, 0x75, 0xe3, 0x63, 0x5b, 0x04, 0x40, 0x4b, 0x7c, 0x2d, 0x55, 0xd6, 0x0d, 0x15, 0x06, 0x0d,
0x2a, 0xfb, 0x83, 0x70, 0x26, 0x7b, 0xf3, 0x5c, 0x6e, 0x0d, 0xeb, 0x61, 0xd0, 0x69, 0x67, 0xd7,
0x12, 0x7e, 0x33, 0x19, 0x05, 0x8e, 0xd9, 0xf8, 0x3d, 0xcf, 0xaf, 0x66, 0x6d, 0xfc, 0x0d, 0xcf,
0xaf, 0x22, 0xc7, 0x1c, 0xe3, 0x5a, 0xe0, 0x9f, 0x58, 0x70, 0xf1, 0xa8, 0x0b, 0xf2, 0x6c, 0xdb,
0x7f, 0xd7, 0x09, 0x7d, 0x79, 0xe5, 0x87, 0xdb, 0x8e, 0xdb, 0x4e, 0xe8, 0x23, 0x87, 0x92, 0x2e,
0x8c, 0x89, 0x9c, 0x41, 0xe9, 0x1d, 0xbf, 0x94, 0xef, 0x75, 0x7d, 0xb6, 0xb7, 0x52, 0xd1, 0x1a,
0x91, 0xaf, 0x88, 0x52, 0xa0, 0xfd, 0x6d, 0x0b, 0xc8, 0xe6, 0x3e, 0x0d, 0x43, 0xaf, 0x6a, 0x64,
0x39, 0x92, 0xe7, 0x60, 0xf2, 0xce, 0xf6, 0xe6, 0xc6, 0x56, 0xe0, 0xf9, 0x3c, 0x59, 0xdf, 0xc8,
0xad, 0xb9, 0x6e, 0xc0, 0x31, 0x45, 0x45, 0x96, 0x61, 0xe6, 0xce, 0xab, 0x6c, 0xc9, 0xb9, 0x7c,
0xd0, 0x0e, 0x69, 0x14, 0xa9, 0x47, 0x2e, 0xca, 0xe2, 0x18, 0xeb, 0xfa, 0x4b, 0x19, 0x24, 0xf6,
0xd2, 0x93, 0x4d, 0x38, 0xd7, 0xe2, 0x91, 0xbb, 0x2a, 0x5f, 0xf6, 0x23, 0x11, 0xc6, 0x0b, 0x93,
0x4c, 0xf9, 0xd7, 0xdd, 0x3b, 0x9c, 0x3f, 0xb7, 0xde, 0x8f, 0x00, 0xfb, 0x97, 0xb3, 0xbf, 0x5c,
0x80, 0x09, 0xe3, 0x91, 0x89, 0x63, 0x38, 0x38, 0x99, 0x77, 0x31, 0x0a, 0xc7, 0x7c, 0x17, 0xe3,
0x19, 0x28, 0xb5, 0x83, 0xa6, 0xe7, 0x7a, 0x2a, 0xad, 0x7f, 0x92, 0x1f, 0x9e, 0x49, 0x18, 0x2a,
0x2c, 0xb9, 0x0b, 0x65, 0x75, 0x5b, 0x5c, 0x26, 0xfa, 0xe5, 0xe5, 0xe2, 0xa9, 0xc9, 0xab, 0x6f,
0x81, 0x6b, 0x59, 0xc4, 0x86, 0x31, 0x3e, 0xf2, 0x93, 0xa3, 0x01, 0x9e, 0x39, 0xc2, 0xa7, 0x44,
0x84, 0x12, 0x63, 0xff, 0xeb, 0x28, 0x94, 0x91, 0xb6, 0x83, 0xe5, 0x90, 0x56, 0x23, 0xf2, 0x7a,
0x28, 0x76, 0xc2, 0xa6, 0x6c, 0x2c, 0x15, 0x37, 0xba, 0x89, 0x6b, 0xc8, 0xe0, 0xa9, 0xe5, 0xa6,
0x70, 0xa2, 0x23, 0xc6, 0xe2, 0x91, 0x47, 0x8c, 0x2f, 0xc0, 0x54, 0x14, 0x35, 0xb6, 0x42, 0x6f,
0xdf, 0x89, 0xd9, 0x20, 0x96, 0x41, 0x16, 0x7d, 0xa6, 0xb3, 0x7d, 0x4d, 0x23, 0x31, 0x4d, 0x4b,
0xae, 0xc2, 0x8c, 0x3e, 0xe8, 0xa3, 0x61, 0xcc, 0x63, 0x2a, 0x22, 0xfc, 0xa2, 0x8e, 0x54, 0xf4,
0xd1, 0xa0, 0x24, 0xc0, 0xde, 0x32, 0x64, 0x05, 0x4e, 0xa7, 0x80, 0x4c, 0x11, 0x11, 0x9b, 0x51,
0x49, 0x04, 0x29, 0x3e, 0x4c, 0x97, 0x9e, 0x12, 0x64, 0x1d, 0xce, 0x88, 0xfe, 0xe5, 0xaf, 0x0c,
0xa8, 0x1a, 0x8d, 0x73, 0x46, 0x3f, 0x22, 0x19, 0x9d, 0xb9, 0xda, 0x4b, 0x82, 0xfd, 0xca, 0xb1,
0x11, 0xaa, 0xc0, 0xab, 0x2b, 0xd2, 0x52, 0xaa, 0x11, 0xaa, 0xd8, 0xac, 0x56, 0xd1, 0xa4, 0x23,
0xef, 0x82, 0x27, 0xf5, 0xa7, 0x08, 0xc9, 0x09, 0xf7, 0x61, 0x45, 0xe6, 0x50, 0xa8, 0xdb, 0x54,
0x57, 0xfb, 0x92, 0x55, 0x71, 0x50, 0x79, 0xb2, 0x0b, 0x73, 0x0a, 0x75, 0x99, 0x99, 0x83, 0x76,
0xe8, 0x45, 0xb4, 0xe2, 0x44, 0xf4, 0x66, 0xd8, 0xe4, 0x59, 0x17, 0x65, 0xfd, 0x52, 0xc6, 0x55,
0x2f, 0xbe, 0xd6, 0x8f, 0x12, 0xd7, 0xf0, 0x01, 0x5c, 0x98, 0xb7, 0x42, 0x7d, 0x67, 0xb7, 0x49,
0x37, 0x97, 0x57, 0x79, 0x2e, 0x86, 0xe1, 0xad, 0x5c, 0x4e, 0x10, 0xa8, 0x69, 0xd4, 0x5e, 0x61,
0x72, 0xe0, 0x5e, 0xe1, 0x5b, 0x16, 0x4c, 0xa9, 0xc1, 0xfe, 0x18, 0x02, 0x68, 0xcd, 0x74, 0x00,
0xed, 0xea, 0xb0, 0x6e, 0xa2, 0xd4, 0x7c, 0xc0, 0xce, 0xee, 0xbb, 0x65, 0x00, 0xfe, 0xf6, 0x90,
0xc7, 0x73, 0x7c, 0x2f, 0xc2, 0x48, 0x48, 0xdb, 0x41, 0xd6, 0xf2, 0xf1, 0xe0, 0x3f, 0xc7, 0xfc,
0xe0, 0x4e, 0xe7, 0x7e, 0x47, 0xce, 0xa3, 0xdf, 0xdf, 0x23, 0xe7, 0x6d, 0x38, 0xe7, 0xf9, 0x11,
0x75, 0x3b, 0xa1, 0x5c, 0x39, 0xaf, 0x05, 0x91, 0xb2, 0x0e, 0xa5, 0xca, 0xeb, 0x25, 0xa3, 0x73,
0xab, 0xfd, 0x88, 0xb0, 0x7f, 0x59, 0xd6, 0xa4, 0x09, 0x42, 0x5e, 0x26, 0xd2, 0xf1, 0x06, 0x09,
0x47, 0x45, 0xa1, 0x27, 0xc4, 0x5a, 0x2d, 0xb9, 0x2d, 0x94, 0x99, 0x10, 0x6b, 0x57, 0xb6, 0x51,
0xd3, 0xf4, 0xb7, 0x8a, 0xe5, 0x9c, 0xac, 0x22, 0x9c, 0xd8, 0x2a, 0x26, 0xf3, 0x73, 0x62, 0xe0,
0x4b, 0x15, 0xc9, 0x62, 0x3d, 0x39, 0x70, 0xb1, 0x7e, 0x11, 0xa6, 0x3d, 0xbf, 0x41, 0x43, 0x2f,
0xa6, 0x55, 0x3e, 0x17, 0x66, 0xa7, 0x78, 0x43, 0xa8, 0x50, 0xd8, 0x6a, 0x0a, 0x8b, 0x19, 0xea,
0xb4, 0x51, 0x99, 0x3e, 0x86, 0x51, 0x19, 0x60, 0xca, 0x4f, 0xe5, 0x63, 0xca, 0x4f, 0x0f, 0x6f,
0xca, 0x67, 0x1e, 0xa9, 0x29, 0x27, 0xb9, 0x98, 0xf2, 0xa7, 0x61, 0xb4, 0x1d, 0x06, 0x07, 0xdd,
0xd9, 0x33, 0x69, 0xf7, 0x7c, 0x8b, 0x01, 0x51, 0xe0, 0xcc, 0xcc, 0xbb, 0xb3, 0x0f, 0xce, 0xbc,
0xb3, 0x5f, 0x2b, 0xc0, 0x39, 0x6d, 0xe9, 0xd8, 0xf8, 0xf2, 0x6a, 0x6c, 0xae, 0xf3, 0x2b, 0x9d,
0x22, 0xdb, 0xc3, 0x88, 0xc2, 0xea, 0x80, 0xae, 0xc2, 0xa0, 0x41, 0xc5, 0x83, 0x99, 0x34, 0xe4,
0xf9, 0xc2, 0x59, 0x33, 0xb8, 0x2c, 0xe1, 0xa8, 0x28, 0xf8, 0xc3, 0x85, 0x34, 0x8c, 0xe5, 0x61,
0x4e, 0x36, 0x15, 0x6a, 0x59, 0xa3, 0xd0, 0xa4, 0x63, 0xee, 0xa2, 0x9b, 0x4c, 0x41, 0x66, 0x0a,
0x27, 0x85, 0xbb, 0xa8, 0x66, 0x9d, 0xc2, 0x26, 0xea, 0xf0, 0xa8, 0xf5, 0x68, 0xaf, 0x3a, 0x3c,
0x0a, 0xa1, 0x28, 0xec, 0xff, 0xb6, 0xe0, 0x75, 0x7d, 0x9b, 0xe2, 0x31, 0x2c, 0x6f, 0x07, 0xe9,
0xe5, 0x6d, 0x7b, 0xf8, 0xe5, 0xad, 0xa7, 0x16, 0x03, 0x96, 0xba, 0xbf, 0xb1, 0x60, 0x5a, 0xd3,
0x3f, 0x86, 0xaa, 0x7a, 0xb9, 0x3e, 0x41, 0xa8, 0x55, 0x17, 0x79, 0xac, 0xa9, 0xba, 0x7d, 0x8b,
0xd7, 0x4d, 0x6c, 0xe6, 0x96, 0xdc, 0xe4, 0x8d, 0x9f, 0x23, 0x36, 0x31, 0x5d, 0x18, 0xe3, 0xf7,
0x9e, 0xa3, 0x7c, 0x36, 0x95, 0x69, 0xf9, 0x3c, 0xae, 0xaa, 0x37, 0x95, 0xfc, 0x33, 0x42, 0x29,
0x90, 0x67, 0xb3, 0x7b, 0x11, 0xb3, 0x97, 0x55, 0x19, 0xff, 0xd5, 0xd9, 0xec, 0x12, 0x8e, 0x8a,
0xc2, 0x6e, 0xc1, 0x6c, 0x9a, 0xf9, 0x0a, 0xad, 0xf1, 0xd8, 0xdd, 0xb1, 0xaa, 0xb9, 0x08, 0x65,
0x87, 0x97, 0x5a, 0xeb, 0x38, 0xd9, 0x87, 0x7e, 0x96, 0x12, 0x04, 0x6a, 0x1a, 0xfb, 0xf7, 0x2c,
0x38, 0xd3, 0xa7, 0x32, 0x39, 0xc6, 0xbd, 0x63, 0x6d, 0x05, 0x06, 0x3c, 0xbe, 0x54, 0xa5, 0x35,
0x27, 0x89, 0x0e, 0x19, 0x56, 0x6d, 0x45, 0x80, 0x31, 0xc1, 0xdb, 0xff, 0x66, 0xc1, 0xa9, 0xb4,
0xae, 0x11, 0xb9, 0x0e, 0x44, 0x54, 0x66, 0xc5, 0x8b, 0xdc, 0x60, 0x9f, 0x86, 0x5d, 0x56, 0x73,
0xa1, 0xf5, 0x9c, 0xe4, 0x44, 0x96, 0x7a, 0x28, 0xb0, 0x4f, 0x29, 0x9e, 0x34, 0x5c, 0x55, 0xad,
0x9d, 0x8c, 0x94, 0x5b, 0x79, 0x8e, 0x14, 0xdd, 0x99, 0xe6, 0x0e, 0x5a, 0x89, 0x44, 0x53, 0xbe,
0xfd, 0xed, 0x11, 0x50, 0x07, 0x63, 0x3c, 0x0e, 0x91, 0x53, 0x14, 0x27, 0xf5, 0x1a, 0x54, 0xf1,
0x04, 0xaf, 0x41, 0x8d, 0x3c, 0x28, 0x46, 0x20, 0x9e, 0x26, 0xd2, 0xbe, 0xa8, 0x61, 0xf4, 0x77,
0x34, 0x0a, 0x4d, 0x3a, 0xa6, 0x49, 0xd3, 0xdb, 0xa7, 0xa2, 0xd0, 0x58, 0x5a, 0x93, 0xb5, 0x04,
0x81, 0x9a, 0x86, 0x69, 0x52, 0xf5, 0x6a, 0x35, 0xb9, 0x53, 0x54, 0x9a, 0xb0, 0xd6, 0x41, 0x8e,
0x61, 0x14, 0x8d, 0x20, 0xd8, 0x93, 0xfe, 0x9f, 0xa2, 0xb8, 0x16, 0x04, 0x7b, 0xc8, 0x31, 0xcc,
0x63, 0xf1, 0x83, 0xb0, 0xe5, 0x34, 0xbd, 0xf7, 0xd1, 0xaa, 0x92, 0x22, 0xfd, 0x3e, 0xe5, 0xb1,
0x6c, 0xf4, 0x92, 0x60, 0xbf, 0x72, 0x6c, 0x04, 0xb6, 0x43, 0x5a, 0xf5, 0xdc, 0xd8, 0xe4, 0x06,
0xe9, 0x11, 0xb8, 0xd5, 0x43, 0x81, 0x7d, 0x4a, 0x91, 0x25, 0x38, 0x95, 0x1c, 0x6c, 0x26, 0xc9,
0x27, 0xc2, 0x19, 0x54, 0x7e, 0x38, 0xa6, 0xd1, 0x98, 0xa5, 0x67, 0xd6, 0xa6, 0x25, 0x53, 0x80,
0xb8, 0x9b, 0x68, 0x58, 0x9b, 0x24, 0x35, 0x08, 0x15, 0x85, 0xfd, 0x91, 0x22, 0x5b, 0x1d, 0x07,
0x5c, 0xeb, 0x7d, 0x6c, 0x51, 0xc3, 0xf4, 0x88, 0x1c, 0x39, 0xc6, 0x88, 0x7c, 0x0e, 0x26, 0xef,
0x44, 0x81, 0xaf, 0x22, 0x72, 0xa3, 0x03, 0x23, 0x72, 0x06, 0x55, 0xff, 0x88, 0xdc, 0x58, 0x5e,
0x11, 0xb9, 0xf1, 0x87, 0x8c, 0xc8, 0xfd, 0xc5, 0x28, 0x9c, 0x57, 0x87, 0xdb, 0x34, 0xbe, 0x1b,
0x84, 0x7b, 0x9e, 0x5f, 0xe7, 0x07, 0xc2, 0x5f, 0xb2, 0x60, 0x52, 0xcc, 0x17, 0xf9, 0xa2, 0x82,
0x38, 0x00, 0xad, 0xe5, 0x74, 0xe9, 0x2d, 0x25, 0x6c, 0x61, 0xc7, 0x10, 0x94, 0x79, 0xde, 0xc2,
0x44, 0x61, 0x4a, 0x23, 0xf2, 0x01, 0x80, 0xe4, 0x51, 0xb2, 0x5a, 0x4e, 0x4f, 0xb3, 0x25, 0xfa,
0x21, 0xad, 0x69, 0xdf, 0x74, 0x47, 0x09, 0x41, 0x43, 0x20, 0x79, 0xcd, 0x52, 0x97, 0x4c, 0xc4,
0x69, 0xd6, 0x2b, 0x8f, 0xa4, 0x6d, 0x8e, 0x73, 0xe7, 0x04, 0x61, 0xdc, 0xf3, 0xeb, 0x6c, 0x9c,
0xc8, 0x20, 0xe6, 0x9b, 0xfa, 0x25, 0x53, 0xac, 0x05, 0x4e, 0xb5, 0xe2, 0x34, 0x1d, 0xdf, 0xa5,
0xe1, 0xaa, 0x20, 0x37, 0x9f, 0x86, 0xe2, 0x00, 0x4c, 0x18, 0xf5, 0xdc, 0xea, 0x1c, 0x3d, 0xce,
0xad, 0xce, 0xb9, 0x77, 0xc2, 0x4c, 0x4f, 0x67, 0x9e, 0xe8, 0xce, 0xc9, 0xc3, 0x5f, 0x57, 0xb1,
0xff, 0x74, 0x4c, 0x2f, 0x5a, 0x1b, 0x41, 0x55, 0xdc, 0x2d, 0x0c, 0x75, 0x8f, 0x4a, 0xdf, 0x33,
0xc7, 0x21, 0x62, 0x3c, 0x2f, 0xa5, 0x80, 0x68, 0x8a, 0x64, 0x63, 0xb4, 0xed, 0x84, 0xd4, 0x7f,
0xd4, 0x63, 0x74, 0x4b, 0x09, 0x41, 0x43, 0x20, 0x69, 0xa4, 0x8e, 0x5b, 0xaf, 0x0c, 0x7f, 0xdc,
0xca, 0xdc, 0xe1, 0xbe, 0x77, 0xc0, 0x3e, 0x6b, 0xc1, 0xb4, 0x9f, 0x1a, 0xb9, 0xf2, 0xc8, 0x6d,
0xe7, 0x51, 0xcc, 0x0a, 0x71, 0xa7, 0x3b, 0x0d, 0xc3, 0x8c, 0xfc, 0x7e, 0x4b, 0xda, 0xe8, 0x09,
0x97, 0x34, 0x7d, 0x49, 0x79, 0x6c, 0xd0, 0x25, 0x65, 0xe2, 0xab, 0xe7, 0x09, 0xc6, 0x73, 0x7f,
0x9e, 0x00, 0xfa, 0x3c, 0x4d, 0x70, 0x1b, 0xca, 0x6e, 0x48, 0x9d, 0xf8, 0x21, 0x6f, 0xaa, 0xf3,
0x07, 0xfd, 0x96, 0x13, 0x06, 0xa8, 0x79, 0xd9, 0x7f, 0x55, 0x84, 0xd3, 0x49, 0x8b, 0x24, 0x47,
0x51, 0x6c, 0x7d, 0x14, 0x72, 0xb5, 0x73, 0xab, 0xd6, 0xc7, 0x6b, 0x09, 0x02, 0x35, 0x0d, 0xf3,
0xc7, 0x3a, 0x11, 0xdd, 0x6c, 0x53, 0x7f, 0xcd, 0xdb, 0x8d, 0x78, 0x8b, 0x1b, 0xf9, 0x6c, 0x37,
0x35, 0x0a, 0x4d, 0x3a, 0xe6, 0x8c, 0x0b, 0xbf, 0x38, 0xca, 0x9e, 0xec, 0x4a, 0x7f, 0x1b, 0x13,
0x3c, 0xf9, 0x62, 0xdf, 0x77, 0x46, 0xf2, 0xc9, 0x69, 0xe8, 0x39, 0x81, 0x3b, 0xe1, 0x03, 0x23,
0x9f, 0xb1, 0xe0, 0xd4, 0x5e, 0x2a, 0x99, 0x26, 0x31, 0xc9, 0x43, 0xa6, 0x68, 0xa6, 0x33, 0x74,
0xf4, 0x10, 0x4e, 0xc3, 0x23, 0xcc, 0x4a, 0xb7, 0xff, 0xd3, 0x02, 0xd3, 0x3c, 0x1d, 0xcf, 0xb3,
0x32, 0x5e, 0x8e, 0x2a, 0x1c, 0xf1, 0x72, 0x54, 0xe2, 0x84, 0x15, 0x8f, 0xe7, 0xf4, 0x8f, 0x9c,
0xc0, 0xe9, 0x1f, 0x1d, 0xe8, 0xb5, 0xbd, 0x1e, 0x8a, 0x1d, 0xaf, 0x2a, 0xfd, 0x76, 0x7d, 0x18,
0xb6, 0xba, 0x82, 0x0c, 0x6e, 0xff, 0xf1, 0xa8, 0xde, 0xa7, 0xcb, 0xa3, 0xf8, 0x1f, 0x8a, 0x6a,
0xd7, 0x54, 0xc6, 0xad, 0xa8, 0xf9, 0x46, 0x4f, 0xc6, 0xed, 0x3b, 0x4e, 0x9e, 0x69, 0x21, 0x1a,
0x68, 0x50, 0xc2, 0xed, 0xf8, 0x11, 0x69, 0x16, 0x77, 0xa0, 0xc4, 0xb6, 0x36, 0x3c, 0xe0, 0x56,
0x4a, 0x29, 0x55, 0xba, 0x26, 0xe1, 0xf7, 0x0f, 0xe7, 0xdf, 0x7e, 0x72, 0xb5, 0x92, 0xd2, 0xa8,
0xf8, 0x93, 0x08, 0xca, 0xec, 0x37, 0xcf, 0x08, 0x91, 0x9b, 0xa6, 0x9b, 0xca, 0x16, 0x25, 0x88,
0x5c, 0xd2, 0x4d, 0xb4, 0x1c, 0xe2, 0x43, 0x99, 0xbf, 0x71, 0xc4, 0x85, 0x8a, 0xbd, 0xd5, 0x96,
0xca, 0xcb, 0x48, 0x10, 0xf7, 0x0f, 0xe7, 0x5f, 0x38, 0xb9, 0x50, 0x55, 0x1c, 0xb5, 0x08, 0xfb,
0x1f, 0x8b, 0x7a, 0xec, 0xca, 0x44, 0xeb, 0x1f, 0x8a, 0xb1, 0xfb, 0x7c, 0x66, 0xec, 0x5e, 0xec,
0x19, 0xbb, 0xd3, 0xfa, 0x1d, 0xa0, 0xd4, 0x68, 0x7c, 0xdc, 0x0b, 0xec, 0xd1, 0xfb, 0x78, 0xee,
0x59, 0xbc, 0xda, 0xf1, 0x42, 0x1a, 0x6d, 0x85, 0x1d, 0xdf, 0xf3, 0xeb, 0x7c, 0x38, 0x96, 0x4c,
0xcf, 0x22, 0x85, 0xc6, 0x2c, 0xbd, 0xfd, 0x65, 0x7e, 0xde, 0x69, 0x24, 0x97, 0xb1, 0x5e, 0x6e,
0xf2, 0x67, 0xa2, 0x44, 0x7a, 0xab, 0xea, 0x65, 0xf1, 0x36, 0x94, 0xc0, 0x91, 0xbb, 0x30, 0xbe,
0x2b, 0x9e, 0xaa, 0xc8, 0xe7, 0x6e, 0x94, 0x7c, 0xf7, 0x82, 0xdf, 0x42, 0x4d, 0x1e, 0xc1, 0xb8,
0xaf, 0x7f, 0x62, 0x22, 0xcd, 0xfe, 0x8d, 0x22, 0x9c, 0xca, 0x3c, 0x62, 0xc4, 0x36, 0xfc, 0xc9,
0x8b, 0x55, 0xd9, 0xe8, 0xbc, 0x7a, 0x37, 0x5a, 0x51, 0x90, 0xf7, 0x02, 0x54, 0x69, 0xbb, 0x19,
0x74, 0xb9, 0xe3, 0x32, 0x72, 0x62, 0xc7, 0x45, 0xf9, 0xba, 0x2b, 0x8a, 0x0b, 0x1a, 0x1c, 0x65,
0x4e, 0xef, 0xa8, 0x78, 0x88, 0x23, 0x9d, 0xd3, 0x6b, 0x5c, 0x11, 0x1c, 0x7b, 0xbc, 0x57, 0x04,
0x3d, 0x38, 0x25, 0x54, 0x54, 0x29, 0x5c, 0x0f, 0x91, 0xa9, 0x75, 0x86, 0x8d, 0xa8, 0x95, 0x34,
0x1b, 0xcc, 0xf2, 0xb5, 0x3f, 0x5d, 0x60, 0xee, 0x9b, 0x68, 0xec, 0xf5, 0x24, 0x38, 0xfe, 0x46,
0x18, 0x73, 0x3a, 0x71, 0x23, 0xe8, 0x79, 0x3a, 0x64, 0x89, 0x43, 0x51, 0x62, 0xc9, 0x1a, 0x8c,
0x54, 0x9d, 0x38, 0xf9, 0xdf, 0x83, 0x93, 0x28, 0xa7, 0x23, 0x61, 0x4e, 0x4c, 0x91, 0x73, 0x21,
0x4f, 0xc1, 0x48, 0xec, 0xd4, 0x53, 0x6f, 0x9a, 0xee, 0x38, 0xf5, 0x08, 0x39, 0xd4, 0x5c, 0x5d,
0x46, 0x8e, 0x58, 0x5d, 0x5e, 0x30, 0xfe, 0x91, 0xc3, 0x38, 0x75, 0xe9, 0xfd, 0x17, 0x0d, 0x71,
0xcb, 0x20, 0x45, 0x6b, 0xff, 0x04, 0x4c, 0x9a, 0xff, 0xb2, 0x71, 0xac, 0x4b, 0x4a, 0xf6, 0xbf,
0x8c, 0xc0, 0x54, 0x2a, 0xcd, 0x2f, 0x35, 0xca, 0xad, 0x23, 0x47, 0x39, 0x3f, 0x4f, 0xeb, 0xf8,
0x54, 0x26, 0x71, 0x1a, 0xe7, 0x69, 0x1d, 0x9f, 0xa2, 0xc0, 0xb1, 0x5e, 0xa9, 0x86, 0x5d, 0xec,
0xf8, 0x32, 0x2a, 0xaf, 0x7a, 0x65, 0x85, 0x43, 0x51, 0x62, 0xd9, 0x06, 0x76, 0x32, 0xe2, 0x46,
0x51, 0xd8, 0x08, 0x39, 0x6b, 0xae, 0xe7, 0xf1, 0xdc, 0x9a, 0x4c, 0x69, 0xe5, 0x1b, 0x7a, 0x13,
0x82, 0x29, 0x89, 0xe4, 0x63, 0x96, 0xf9, 0xd0, 0xdc, 0x58, 0x1e, 0xa7, 0x49, 0xd9, 0x2c, 0x4a,
0x31, 0x83, 0x1e, 0xfc, 0xde, 0x5c, 0xa4, 0x26, 0xf0, 0xf8, 0xa3, 0x99, 0xc0, 0xd0, 0x67, 0xf2,
0xbe, 0x19, 0xca, 0x2d, 0xc7, 0xf7, 0x6a, 0x34, 0x8a, 0xc5, 0x3f, 0xe4, 0x94, 0xc5, 0xee, 0x69,
0x3d, 0x01, 0xa2, 0xc6, 0xf3, 0xff, 0xa1, 0xe2, 0x15, 0x13, 0x9b, 0x98, 0xb2, 0xf1, 0x3f, 0x54,
0x1a, 0x8c, 0x26, 0x8d, 0xfd, 0x07, 0x16, 0x9c, 0xeb, 0xdb, 0x18, 0x3f, 0xb8, 0xe1, 0x4f, 0xfb,
0x0f, 0x0b, 0x70, 0xa6, 0x4f, 0x1a, 0x2c, 0xe9, 0x3e, 0xb2, 0xf7, 0x08, 0x65, 0x9e, 0xed, 0xd4,
0xc0, 0xb1, 0x71, 0xb2, 0x65, 0x48, 0x2f, 0x05, 0xc5, 0xc7, 0xba, 0x14, 0xd8, 0x5f, 0x2e, 0x80,
0xf1, 0x72, 0x26, 0xf9, 0xa0, 0x99, 0xf1, 0x6d, 0xe5, 0x95, 0x9d, 0x2c, 0x98, 0xab, 0x8c, 0x71,
0xd1, 0x6a, 0xfd, 0x12, 0xc8, 0xb3, 0xe3, 0xb5, 0x70, 0xf4, 0x78, 0x25, 0xcd, 0x24, 0xb5, 0xbe,
0x98, 0x7f, 0x6a, 0x7d, 0xb9, 0x27, 0xad, 0xfe, 0xd7, 0x2c, 0x31, 0xd2, 0x32, 0x55, 0xd2, 0x16,
0xd6, 0x7a, 0x80, 0x85, 0x7d, 0x0b, 0x94, 0x22, 0xda, 0xac, 0x31, 0xcf, 0x4e, 0x5a, 0x62, 0x35,
0x26, 0xb6, 0x25, 0x1c, 0x15, 0x05, 0xbf, 0x74, 0xdb, 0x6c, 0x06, 0x77, 0x2f, 0xb7, 0xda, 0x71,
0x57, 0xda, 0x64, 0x7d, 0xe9, 0x56, 0x61, 0xd0, 0xa0, 0xb2, 0xff, 0xcb, 0x12, 0xdd, 0x29, 0x7d,
0xf4, 0xe7, 0x33, 0x97, 0x21, 0x8f, 0xef, 0xde, 0xfe, 0x22, 0x80, 0xab, 0x1e, 0x33, 0xc8, 0xe7,
0x41, 0x4d, 0xfd, 0x38, 0x82, 0xf9, 0xca, 0x63, 0x02, 0x43, 0x43, 0x5e, 0x6a, 0xf2, 0x14, 0x8f,
0x9a, 0x3c, 0xf6, 0xbf, 0x5b, 0x90, 0x5a, 0x2c, 0x48, 0x1b, 0x46, 0x99, 0x06, 0xdd, 0x7c, 0x9e,
0x5e, 0x30, 0x59, 0xb3, 0x89, 0x25, 0x87, 0x05, 0xff, 0x89, 0x42, 0x10, 0x69, 0x4a, 0xef, 0xbc,
0x90, 0xc7, 0xf3, 0x20, 0xa6, 0x40, 0xe6, 0xdf, 0xcb, 0xff, 0x1c, 0x51, 0x9e, 0xbe, 0xfd, 0x3c,
0xcc, 0xf4, 0x28, 0xc5, 0xaf, 0x47, 0x05, 0xc9, 0x7b, 0x13, 0xc6, 0x08, 0xe4, 0x97, 0x35, 0x51,
0xe0, 0x98, 0x83, 0x7f, 0x3a, 0xcb, 0x9e, 0x7c, 0xc1, 0x82, 0x99, 0x28, 0xcb, 0xef, 0x51, 0xb5,
0x9d, 0x8a, 0x5c, 0xf5, 0xa0, 0xb0, 0x57, 0x09, 0xfb, 0x7f, 0xa5, 0x79, 0x12, 0xff, 0xd1, 0xa6,
0x16, 0x17, 0x6b, 0xe0, 0xe2, 0xc2, 0xa6, 0x98, 0xdb, 0xa0, 0xd5, 0x4e, 0xb3, 0x27, 0x37, 0x67,
0x5b, 0xc2, 0x51, 0x51, 0xa4, 0x1e, 0xd6, 0x2b, 0x1e, 0xf9, 0xb0, 0xde, 0x73, 0x30, 0x69, 0xbe,
0xa9, 0xc2, 0x43, 0x68, 0xf2, 0xf0, 0xc1, 0x7c, 0x7e, 0x05, 0x53, 0x54, 0x99, 0x87, 0xd9, 0x46,
0x8f, 0x7c, 0x98, 0xed, 0x19, 0x28, 0xc9, 0x47, 0xc6, 0x92, 0xf8, 0xae, 0x48, 0xfc, 0x91, 0x30,
0x54, 0x58, 0x66, 0x20, 0x5a, 0x8e, 0xdf, 0x71, 0x9a, 0xac, 0x85, 0x64, 0x3e, 0xa0, 0x9a, 0x59,
0xeb, 0x0a, 0x83, 0x06, 0x15, 0xab, 0x71, 0xec, 0xb5, 0xe8, 0xcb, 0x81, 0x9f, 0x44, 0x46, 0x54,
0x8d, 0x77, 0x24, 0x1c, 0x15, 0x85, 0xfd, 0xcf, 0x16, 0x64, 0x5f, 0x48, 0x4a, 0xe5, 0x20, 0x5a,
0x47, 0xe6, 0x20, 0xa6, 0xf3, 0xab, 0x0a, 0xc7, 0xca, 0xaf, 0x32, 0x53, 0x9f, 0x8a, 0x0f, 0x4c,
0x7d, 0x7a, 0x83, 0xbe, 0x10, 0x2f, 0x72, 0xa4, 0x26, 0xfa, 0x5d, 0x86, 0x27, 0x36, 0x8c, 0xb9,
0x8e, 0x4a, 0xf1, 0x9e, 0x14, 0x6e, 0xd5, 0xf2, 0x12, 0x27, 0x92, 0x98, 0xca, 0xc2, 0x57, 0xbf,
0x73, 0xe1, 0x89, 0xaf, 0x7d, 0xe7, 0xc2, 0x13, 0xdf, 0xfc, 0xce, 0x85, 0x27, 0x3e, 0x7c, 0xef,
0x82, 0xf5, 0xd5, 0x7b, 0x17, 0xac, 0xaf, 0xdd, 0xbb, 0x60, 0x7d, 0xf3, 0xde, 0x05, 0xeb, 0xdb,
0xf7, 0x2e, 0x58, 0x9f, 0xfd, 0x87, 0x0b, 0x4f, 0xbc, 0x5c, 0x4a, 0x46, 0xf6, 0xff, 0x05, 0x00,
0x00, 0xff, 0xff, 0x67, 0x2c, 0xb8, 0x6b, 0x1f, 0x78, 0x00, 0x00,
}
func (m *AWSAuthConfig) Marshal() (dAtA []byte, err error) {
@@ -3777,6 +3779,14 @@ func (m *ApplicationSourceHelm) MarshalToSizedBuffer(dAtA []byte) (int, error) {
var l int
_ = l
i--
if m.IgnoreMissingValueFiles {
dAtA[i] = 1
} else {
dAtA[i] = 0
}
i--
dAtA[i] = 0x40
i--
if m.PassCredentials {
dAtA[i] = 1
} else {
@@ -8480,6 +8490,7 @@ func (m *ApplicationSourceHelm) Size() (n int) {
l = len(m.Version)
n += 1 + l + sovGenerated(uint64(l))
n += 2
n += 2
return n
}
@@ -10353,6 +10364,7 @@ func (this *ApplicationSourceHelm) String() string {
`FileParameters:` + repeatedStringForFileParameters + `,`,
`Version:` + fmt.Sprintf("%v", this.Version) + `,`,
`PassCredentials:` + fmt.Sprintf("%v", this.PassCredentials) + `,`,
`IgnoreMissingValueFiles:` + fmt.Sprintf("%v", this.IgnoreMissingValueFiles) + `,`,
`}`,
}, "")
return s
@@ -13960,6 +13972,26 @@ func (m *ApplicationSourceHelm) Unmarshal(dAtA []byte) error {
}
}
m.PassCredentials = bool(v != 0)
case 8:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field IgnoreMissingValueFiles", wireType)
}
var v int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowGenerated
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
v |= int(b&0x7F) << shift
if b < 0x80 {
break
}
}
m.IgnoreMissingValueFiles = bool(v != 0)
default:
iNdEx = preIndex
skippy, err := skipGenerated(dAtA[iNdEx:])

View File

@@ -210,6 +210,9 @@ message ApplicationSourceHelm {
// PassCredentials pass credentials to all domains (Helm's --pass-credentials)
optional bool passCredentials = 7;
// IgnoreMissingValueFiles prevents helm template from failing when valueFiles do not exist locally by not appending them to helm template --values
optional bool ignoreMissingValueFiles = 8;
}
// ApplicationSourceJsonnet holds options specific to applications of type Jsonnet

View File

@@ -785,6 +785,13 @@ func schema_pkg_apis_application_v1alpha1_ApplicationSourceHelm(ref common.Refer
Format: "",
},
},
"ignoreMissingValueFiles": {
SchemaProps: spec.SchemaProps{
Description: "IgnoreMissingValueFiles prevents helm template from failing when valueFiles do not exist locally by not appending them to helm template --values",
Type: []string{"boolean"},
Format: "",
},
},
},
},
},

View File

@@ -243,6 +243,8 @@ type ApplicationSourceHelm struct {
Version string `json:"version,omitempty" protobuf:"bytes,6,opt,name=version"`
// PassCredentials pass credentials to all domains (Helm's --pass-credentials)
PassCredentials bool `json:"passCredentials,omitempty" protobuf:"bytes,7,opt,name=passCredentials"`
// IgnoreMissingValueFiles prevents helm template from failing when valueFiles do not exist locally by not appending them to helm template --values
IgnoreMissingValueFiles bool `json:"ignoreMissingValueFiles,omitempty" protobuf:"bytes,8,opt,name=ignoreMissingValueFiles"`
}
// HelmParameter is a parameter that's passed to helm template during manifest generation
@@ -324,7 +326,7 @@ func (in *ApplicationSourceHelm) AddFileParameter(p HelmFileParameter) {
// IsZero Returns true if the Helm options in an application source are considered zero
func (h *ApplicationSourceHelm) IsZero() bool {
return h == nil || (h.Version == "") && (h.ReleaseName == "") && len(h.ValueFiles) == 0 && len(h.Parameters) == 0 && len(h.FileParameters) == 0 && h.Values == "" && !h.PassCredentials
return h == nil || (h.Version == "") && (h.ReleaseName == "") && len(h.ValueFiles) == 0 && len(h.Parameters) == 0 && len(h.FileParameters) == 0 && h.Values == "" && !h.PassCredentials && !h.IgnoreMissingValueFiles
}
// KustomizeImage represents a Kustomize image definition in the format [old_image_name=]<image_name>:<image_tag>

View File

@@ -583,6 +583,7 @@ func helmTemplate(appPath string, repoRoot string, env *v1alpha1.Env, q *apiclie
for _, val := range appHelm.ValueFiles {
// If val is not a URL, run it against the directory enforcer. If it is a URL, use it without checking
// If val does not exist, warn. If IgnoreMissingValueFiles, do not append, else let Helm handle it.
if _, err := url.ParseRequestURI(val); err != nil {
// Ensure that the repo root provided is absolute
@@ -605,6 +606,14 @@ func helmTemplate(appPath string, repoRoot string, env *v1alpha1.Env, q *apiclie
if err != nil {
return nil, err
}
_, err = os.Stat(path)
if os.IsNotExist(err) {
if appHelm.IgnoreMissingValueFiles {
log.Debugf(" %s values file does not exist", path)
continue
}
}
}
templateOpts.Values = append(templateOpts.Values, val)
}

View File

@@ -662,6 +662,32 @@ func TestGenerateHelmWithValues(t *testing.T) {
}
func TestHelmWithMissingValueFiles(t *testing.T) {
service := newService("../..")
missingValuesFile := "values-prod-overrides.yaml"
req := &apiclient.ManifestRequest{
Repo: &argoappv1.Repository{},
AppName: "test",
ApplicationSource: &argoappv1.ApplicationSource{
Path: "./util/helm/testdata/redis",
Helm: &argoappv1.ApplicationSourceHelm{
ValueFiles: []string{"values-production.yaml", missingValuesFile},
},
},
}
// Should fail since we're passing a non-existent values file, and error should indicate that
_, err := service.GenerateManifest(context.Background(), req)
assert.Error(t, err)
assert.Contains(t, err.Error(), fmt.Sprintf("%s: no such file or directory", missingValuesFile))
// Should template without error even if defining a non-existent values file
req.ApplicationSource.Helm.IgnoreMissingValueFiles = true
_, err = service.GenerateManifest(context.Background(), req)
assert.NoError(t, err)
}
// The requested value file (`../minio/values.yaml`) is outside the app path (`./util/helm/testdata/redis`), however
// since the requested value is sill under the repo directory (`~/go/src/github.com/argoproj/argo-cd`), it is allowed
func TestGenerateHelmWithValuesDirectoryTraversal(t *testing.T) {

View File

@@ -127,6 +127,41 @@ func TestHelmValues(t *testing.T) {
})
}
func TestHelmIgnoreMissingValueFiles(t *testing.T) {
Given(t).
Path("helm").
When().
Declarative("declarative-apps/invalid-helm.yaml").
Then().
And(func(app *Application) {
assert.Equal(t, []string{"does-not-exist-values.yaml"}, app.Spec.Source.Helm.ValueFiles)
assert.Equal(t, false, app.Spec.Source.Helm.IgnoreMissingValueFiles)
}).
When().
AppSet("--ignore-missing-value-files").
Then().
And(func(app *Application) {
assert.Equal(t, true, app.Spec.Source.Helm.IgnoreMissingValueFiles)
}).
When().
Sync().
Then().
Expect(OperationPhaseIs(OperationSucceeded)).
Expect(HealthIs(health.HealthStatusHealthy)).
Expect(SyncStatusIs(SyncStatusCodeSynced)).
When().
AppUnSet("--ignore-missing-value-files").
Then().
And(func(app *Application) {
assert.Equal(t, false, app.Spec.Source.Helm.IgnoreMissingValueFiles)
}).
When().
IgnoreErrors().
Sync().
Then().
Expect(Error("Error: open does-not-exist-values.yaml: no such file or directory", ""))
}
func TestHelmValuesMultipleUnset(t *testing.T) {
Given(t).
Path("helm").