diff --git a/api/json-schema/schema.json b/api/json-schema/schema.json index 496b6a963f..e594c79167 100644 --- a/api/json-schema/schema.json +++ b/api/json-schema/schema.json @@ -19292,6 +19292,15 @@ "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" }, + "currentHash": { + "description": "If not empty, indicates the version of the MonoVertex used to generate Pods in the sequence [0,currentReplicas).", + "type": "string" + }, + "currentReplicas": { + "description": "The number of Pods created by the controller from the MonoVertex version indicated by currentHash.", + "format": "int64", + "type": "integer" + }, "lastScaledAt": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", "description": "Time of last scaling operation." @@ -19325,6 +19334,15 @@ }, "selector": { "type": "string" + }, + "updateHash": { + "description": "If not empty, indicates the version of the MonoVertx used to generate Pods in the sequence [replicas-updatedReplicas,replicas)", + "type": "string" + }, + "updatedReplicas": { + "description": "The number of Pods created by the controller from the MonoVertex version indicated by updateHash.", + "format": "int64", + "type": "integer" } }, "type": "object" @@ -20580,6 +20598,15 @@ "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" }, + "currentHash": { + "description": "If not empty, indicates the version of the Vertex used to generate Pods in the sequence [0,currentReplicas).", + "type": "string" + }, + "currentReplicas": { + "description": "The number of Pods created by the controller from the Vertex version indicated by currentHash.", + "format": "int64", + "type": "integer" + }, "lastScaledAt": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time", "description": "Time of last scaling operation." @@ -20610,6 +20637,15 @@ }, "selector": { "type": "string" + }, + "updateHash": { + "description": "If not empty, indicates the version of the Vertx used to generate Pods in the sequence [replicas-updatedReplicas,replicas)", + "type": "string" + }, + "updatedReplicas": { + "description": "The number of Pods created by the controller from the Vertex version indicated by updateHash.", + "format": "int64", + "type": "integer" } }, "type": "object" diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index 2424ee613d..51668c8ecb 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -19288,6 +19288,15 @@ "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" }, + "currentHash": { + "description": "If not empty, indicates the version of the MonoVertex used to generate Pods in the sequence [0,currentReplicas).", + "type": "string" + }, + "currentReplicas": { + "description": "The number of Pods created by the controller from the MonoVertex version indicated by currentHash.", + "type": "integer", + "format": "int64" + }, "lastScaledAt": { "description": "Time of last scaling operation.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" @@ -19321,6 +19330,15 @@ }, "selector": { "type": "string" + }, + "updateHash": { + "description": "If not empty, indicates the version of the MonoVertx used to generate Pods in the sequence [replicas-updatedReplicas,replicas)", + "type": "string" + }, + "updatedReplicas": { + "description": "The number of Pods created by the controller from the MonoVertex version indicated by updateHash.", + "type": "integer", + "format": "int64" } } }, @@ -20558,6 +20576,15 @@ "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" }, + "currentHash": { + "description": "If not empty, indicates the version of the Vertex used to generate Pods in the sequence [0,currentReplicas).", + "type": "string" + }, + "currentReplicas": { + "description": "The number of Pods created by the controller from the Vertex version indicated by currentHash.", + "type": "integer", + "format": "int64" + }, "lastScaledAt": { "description": "Time of last scaling operation.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" @@ -20588,6 +20615,15 @@ }, "selector": { "type": "string" + }, + "updateHash": { + "description": "If not empty, indicates the version of the Vertx used to generate Pods in the sequence [replicas-updatedReplicas,replicas)", + "type": "string" + }, + "updatedReplicas": { + "description": "The number of Pods created by the controller from the Vertex version indicated by updateHash.", + "type": "integer", + "format": "int64" } } }, diff --git a/config/base/crds/full/numaflow.numaproj.io_monovertices.yaml b/config/base/crds/full/numaflow.numaproj.io_monovertices.yaml index c07e927f5b..8e503f47d6 100644 --- a/config/base/crds/full/numaflow.numaproj.io_monovertices.yaml +++ b/config/base/crds/full/numaflow.numaproj.io_monovertices.yaml @@ -5549,6 +5549,11 @@ spec: - type type: object type: array + currentHash: + type: string + currentReplicas: + format: int32 + type: integer lastScaledAt: format: date-time type: string @@ -5579,6 +5584,11 @@ spec: type: integer selector: type: string + updateHash: + type: string + updatedReplicas: + format: int32 + type: integer type: object required: - spec diff --git a/config/base/crds/full/numaflow.numaproj.io_vertices.yaml b/config/base/crds/full/numaflow.numaproj.io_vertices.yaml index 8f0d150360..e7bb52a8d8 100644 --- a/config/base/crds/full/numaflow.numaproj.io_vertices.yaml +++ b/config/base/crds/full/numaflow.numaproj.io_vertices.yaml @@ -5484,6 +5484,11 @@ spec: - type type: object type: array + currentHash: + type: string + currentReplicas: + format: int32 + type: integer lastScaledAt: format: date-time type: string @@ -5508,6 +5513,11 @@ spec: type: integer selector: type: string + updateHash: + type: string + updatedReplicas: + format: int32 + type: integer type: object required: - spec diff --git a/config/install.yaml b/config/install.yaml index 42e7f27c22..c987fd8c9f 100644 --- a/config/install.yaml +++ b/config/install.yaml @@ -8193,6 +8193,11 @@ spec: - type type: object type: array + currentHash: + type: string + currentReplicas: + format: int32 + type: integer lastScaledAt: format: date-time type: string @@ -8223,6 +8228,11 @@ spec: type: integer selector: type: string + updateHash: + type: string + updatedReplicas: + format: int32 + type: integer type: object required: - spec @@ -23599,6 +23609,11 @@ spec: - type type: object type: array + currentHash: + type: string + currentReplicas: + format: int32 + type: integer lastScaledAt: format: date-time type: string @@ -23623,6 +23638,11 @@ spec: type: integer selector: type: string + updateHash: + type: string + updatedReplicas: + format: int32 + type: integer type: object required: - spec diff --git a/config/namespace-install.yaml b/config/namespace-install.yaml index 72b705a1c4..ac83adabbd 100644 --- a/config/namespace-install.yaml +++ b/config/namespace-install.yaml @@ -8193,6 +8193,11 @@ spec: - type type: object type: array + currentHash: + type: string + currentReplicas: + format: int32 + type: integer lastScaledAt: format: date-time type: string @@ -8223,6 +8228,11 @@ spec: type: integer selector: type: string + updateHash: + type: string + updatedReplicas: + format: int32 + type: integer type: object required: - spec @@ -23599,6 +23609,11 @@ spec: - type type: object type: array + currentHash: + type: string + currentReplicas: + format: int32 + type: integer lastScaledAt: format: date-time type: string @@ -23623,6 +23638,11 @@ spec: type: integer selector: type: string + updateHash: + type: string + updatedReplicas: + format: int32 + type: integer type: object required: - spec diff --git a/docs/APIs.md b/docs/APIs.md index 3e631f3870..a311d7ee07 100644 --- a/docs/APIs.md +++ b/docs/APIs.md @@ -6372,6 +6372,82 @@ The number of pods targeted by this MonoVertex with a Ready Condition. + + + + +currentReplicas
uint32 + + + + +

+ +The number of Pods created by the controller from the MonoVertex version +indicated by currentHash. +

+ + + + + + + + + +updatedReplicas
uint32 + + + + +

+ +The number of Pods created by the controller from the MonoVertex version +indicated by updateHash. +

+ + + + + + + + + +currentHash
string + + + + +

+ +If not empty, indicates the version of the MonoVertex used to generate +Pods in the sequence \[0,currentReplicas). +

+ + + + + + + + + +updateHash
string + + + + +

+ +If not empty, indicates the version of the MonoVertx used to generate +Pods in the sequence \[replicas-updatedReplicas,replicas) +

+ + + + + @@ -11343,6 +11419,82 @@ The number of pods targeted by this Vertex with a Ready Condition. + + + + +currentReplicas
uint32 + + + + +

+ +The number of Pods created by the controller from the Vertex version +indicated by currentHash. +

+ + + + + + + + + +updatedReplicas
uint32 + + + + +

+ +The number of Pods created by the controller from the Vertex version +indicated by updateHash. +

+ + + + + + + + + +currentHash
string + + + + +

+ +If not empty, indicates the version of the Vertex used to generate Pods +in the sequence \[0,currentReplicas). +

+ + + + + + + + + +updateHash
string + + + + +

+ +If not empty, indicates the version of the Vertx used to generate Pods +in the sequence \[replicas-updatedReplicas,replicas) +

+ + + + + diff --git a/pkg/apis/numaflow/v1alpha1/generated.pb.go b/pkg/apis/numaflow/v1alpha1/generated.pb.go index 3514c89361..f9bbc352a1 100644 --- a/pkg/apis/numaflow/v1alpha1/generated.pb.go +++ b/pkg/apis/numaflow/v1alpha1/generated.pb.go @@ -2762,483 +2762,488 @@ func init() { } var fileDescriptor_9d0d1b17d3865563 = []byte{ - // 7611 bytes of a gzipped FileDescriptorProto + // 7695 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x5d, 0x6c, 0x24, 0xd7, - 0x75, 0xa6, 0xfa, 0x8f, 0xec, 0x3e, 0x4d, 0x72, 0x38, 0x77, 0x46, 0x23, 0xce, 0x68, 0x34, 0x1c, - 0x97, 0x2c, 0x79, 0xbc, 0xb6, 0xc9, 0x15, 0x57, 0x7f, 0xfe, 0x95, 0xd8, 0xe4, 0x90, 0xc3, 0x19, - 0x72, 0x86, 0x3e, 0x4d, 0x8e, 0x64, 0x6b, 0x6d, 0x6d, 0xb1, 0xea, 0xb2, 0x59, 0x62, 0x75, 0x55, - 0xab, 0xaa, 0x9a, 0x33, 0x94, 0x77, 0xe1, 0x1f, 0x2d, 0x20, 0x2d, 0x16, 0x8b, 0x5d, 0xf8, 0xc9, - 0xc0, 0xc2, 0xbb, 0xd8, 0xc5, 0x02, 0x7e, 0x30, 0xbc, 0x0f, 0x8b, 0xd5, 0x3e, 0x2c, 0x90, 0x38, - 0x0e, 0x82, 0xc4, 0x0e, 0xf2, 0xe3, 0x87, 0x00, 0x51, 0x5e, 0x88, 0x98, 0x41, 0x1e, 0x12, 0x20, - 0x86, 0x11, 0x03, 0x89, 0x3d, 0x30, 0xe2, 0xe0, 0xfe, 0xd5, 0x5f, 0x57, 0xcf, 0x90, 0x5d, 0xe4, - 0x68, 0x94, 0xe8, 0xad, 0xea, 0xdc, 0x73, 0xbf, 0x73, 0xef, 0xa9, 0xfb, 0x73, 0xee, 0xb9, 0xe7, - 0xde, 0x82, 0xc5, 0x96, 0x15, 0x6c, 0x75, 0x37, 0xa6, 0x0c, 0xb7, 0x3d, 0xed, 0x74, 0xdb, 0x7a, - 0xc7, 0x73, 0x5f, 0xe3, 0x0f, 0x9b, 0xb6, 0x7b, 0x6b, 0xba, 0xb3, 0xdd, 0x9a, 0xd6, 0x3b, 0x96, - 0x1f, 0x51, 0x76, 0x9e, 0xd2, 0xed, 0xce, 0x96, 0xfe, 0xd4, 0x74, 0x8b, 0x3a, 0xd4, 0xd3, 0x03, - 0x6a, 0x4e, 0x75, 0x3c, 0x37, 0x70, 0xc9, 0x73, 0x11, 0xd0, 0x94, 0x02, 0x9a, 0x52, 0xd9, 0xa6, - 0x3a, 0xdb, 0xad, 0x29, 0x06, 0x14, 0x51, 0x14, 0xd0, 0xb9, 0x4f, 0xc4, 0x4a, 0xd0, 0x72, 0x5b, - 0xee, 0x34, 0xc7, 0xdb, 0xe8, 0x6e, 0xf2, 0x37, 0xfe, 0xc2, 0x9f, 0x84, 0x9c, 0x73, 0xda, 0xf6, - 0xf3, 0xfe, 0x94, 0xe5, 0xb2, 0x62, 0x4d, 0x1b, 0xae, 0x47, 0xa7, 0x77, 0x7a, 0xca, 0x72, 0xee, - 0xe9, 0x88, 0xa7, 0xad, 0x1b, 0x5b, 0x96, 0x43, 0xbd, 0x5d, 0x55, 0x97, 0x69, 0x8f, 0xfa, 0x6e, - 0xd7, 0x33, 0xe8, 0xa1, 0x72, 0xf9, 0xd3, 0x6d, 0x1a, 0xe8, 0x59, 0xb2, 0xa6, 0xfb, 0xe5, 0xf2, - 0xba, 0x4e, 0x60, 0xb5, 0x7b, 0xc5, 0x3c, 0x7b, 0xaf, 0x0c, 0xbe, 0xb1, 0x45, 0xdb, 0x7a, 0x3a, - 0x9f, 0xf6, 0x03, 0x80, 0x53, 0xb3, 0x1b, 0x7e, 0xe0, 0xe9, 0x46, 0xb0, 0xea, 0x9a, 0x6b, 0xb4, - 0xdd, 0xb1, 0xf5, 0x80, 0x92, 0x6d, 0xa8, 0xb2, 0xb2, 0x99, 0x7a, 0xa0, 0x4f, 0x14, 0x2e, 0x16, - 0x2e, 0xd5, 0x67, 0x66, 0xa7, 0x06, 0xfc, 0x16, 0x53, 0x2b, 0x12, 0xa8, 0x31, 0xb2, 0xbf, 0x37, - 0x59, 0x55, 0x6f, 0x18, 0x0a, 0x20, 0xdf, 0x2a, 0xc0, 0x88, 0xe3, 0x9a, 0xb4, 0x49, 0x6d, 0x6a, - 0x04, 0xae, 0x37, 0x51, 0xbc, 0x58, 0xba, 0x54, 0x9f, 0xf9, 0xf2, 0xc0, 0x12, 0x33, 0x6a, 0x34, - 0x75, 0x3d, 0x26, 0xe0, 0xb2, 0x13, 0x78, 0xbb, 0x8d, 0xd3, 0x3f, 0xdc, 0x9b, 0x7c, 0x68, 0x7f, - 0x6f, 0x72, 0x24, 0x9e, 0x84, 0x89, 0x92, 0x90, 0x75, 0xa8, 0x07, 0xae, 0xcd, 0x54, 0x66, 0xb9, - 0x8e, 0x3f, 0x51, 0xe2, 0x05, 0xbb, 0x30, 0x25, 0xb4, 0xcd, 0xc4, 0x4f, 0xb1, 0xe6, 0x32, 0xb5, - 0xf3, 0xd4, 0xd4, 0x5a, 0xc8, 0xd6, 0x38, 0x25, 0x81, 0xeb, 0x11, 0xcd, 0xc7, 0x38, 0x0e, 0xa1, - 0x70, 0xc2, 0xa7, 0x46, 0xd7, 0xb3, 0x82, 0xdd, 0x39, 0xd7, 0x09, 0xe8, 0xed, 0x60, 0xa2, 0xcc, - 0xb5, 0xfc, 0x64, 0x16, 0xf4, 0xaa, 0x6b, 0x36, 0x93, 0xdc, 0x8d, 0x53, 0xfb, 0x7b, 0x93, 0x27, - 0x52, 0x44, 0x4c, 0x63, 0x12, 0x07, 0xc6, 0xad, 0xb6, 0xde, 0xa2, 0xab, 0x5d, 0xdb, 0x6e, 0x52, - 0xc3, 0xa3, 0x81, 0x3f, 0x51, 0xe1, 0x55, 0xb8, 0x94, 0x25, 0x67, 0xd9, 0x35, 0x74, 0xfb, 0xc6, - 0xc6, 0x6b, 0xd4, 0x08, 0x90, 0x6e, 0x52, 0x8f, 0x3a, 0x06, 0x6d, 0x4c, 0xc8, 0xca, 0x8c, 0x2f, - 0xa5, 0x90, 0xb0, 0x07, 0x9b, 0x2c, 0xc2, 0xc9, 0x8e, 0x67, 0xb9, 0xbc, 0x08, 0xb6, 0xee, 0xfb, - 0xd7, 0xf5, 0x36, 0x9d, 0x18, 0xba, 0x58, 0xb8, 0x54, 0x6b, 0x9c, 0x95, 0x30, 0x27, 0x57, 0xd3, - 0x0c, 0xd8, 0x9b, 0x87, 0x5c, 0x82, 0xaa, 0x22, 0x4e, 0x0c, 0x5f, 0x2c, 0x5c, 0xaa, 0x88, 0xb6, - 0xa3, 0xf2, 0x62, 0x98, 0x4a, 0x16, 0xa0, 0xaa, 0x6f, 0x6e, 0x5a, 0x0e, 0xe3, 0xac, 0x72, 0x15, - 0x9e, 0xcf, 0xaa, 0xda, 0xac, 0xe4, 0x11, 0x38, 0xea, 0x0d, 0xc3, 0xbc, 0xe4, 0x2a, 0x10, 0x9f, - 0x7a, 0x3b, 0x96, 0x41, 0x67, 0x0d, 0xc3, 0xed, 0x3a, 0x01, 0x2f, 0x7b, 0x8d, 0x97, 0xfd, 0x9c, - 0x2c, 0x3b, 0x69, 0xf6, 0x70, 0x60, 0x46, 0x2e, 0xf2, 0x22, 0x8c, 0xcb, 0x6e, 0x17, 0x69, 0x01, - 0x38, 0xd2, 0x69, 0xa6, 0x48, 0x4c, 0xa5, 0x61, 0x0f, 0x37, 0x31, 0xe1, 0xbc, 0xde, 0x0d, 0xdc, - 0x36, 0x83, 0x4c, 0x0a, 0x5d, 0x73, 0xb7, 0xa9, 0x33, 0x51, 0xbf, 0x58, 0xb8, 0x54, 0x6d, 0x5c, - 0xdc, 0xdf, 0x9b, 0x3c, 0x3f, 0x7b, 0x17, 0x3e, 0xbc, 0x2b, 0x0a, 0xb9, 0x01, 0x35, 0xd3, 0xf1, - 0x57, 0x5d, 0xdb, 0x32, 0x76, 0x27, 0x46, 0x78, 0x01, 0x9f, 0x92, 0x55, 0xad, 0xcd, 0x5f, 0x6f, - 0x8a, 0x84, 0x3b, 0x7b, 0x93, 0xe7, 0x7b, 0x47, 0xc7, 0xa9, 0x30, 0x1d, 0x23, 0x0c, 0xb2, 0xc2, - 0x01, 0xe7, 0x5c, 0x67, 0xd3, 0x6a, 0x4d, 0x8c, 0xf2, 0xaf, 0x71, 0xb1, 0x4f, 0x83, 0x9e, 0xbf, - 0xde, 0x14, 0x7c, 0x8d, 0x51, 0x29, 0x4e, 0xbc, 0x62, 0x84, 0x40, 0x4c, 0x18, 0x53, 0xe3, 0xea, - 0x9c, 0xad, 0x5b, 0x6d, 0x7f, 0x62, 0x8c, 0x37, 0xde, 0x0f, 0xf7, 0xc1, 0xc4, 0x38, 0x73, 0xe3, - 0x8c, 0xac, 0xca, 0x58, 0x82, 0xec, 0x63, 0x0a, 0xf3, 0xdc, 0x0b, 0x70, 0xb2, 0x67, 0x6c, 0x20, - 0xe3, 0x50, 0xda, 0xa6, 0xbb, 0x7c, 0xe8, 0xab, 0x21, 0x7b, 0x24, 0xa7, 0xa1, 0xb2, 0xa3, 0xdb, - 0x5d, 0x3a, 0x51, 0xe4, 0x34, 0xf1, 0xf2, 0xa9, 0xe2, 0xf3, 0x05, 0xed, 0x7f, 0x96, 0x60, 0x44, - 0x8d, 0x38, 0x4d, 0xcb, 0xd9, 0x26, 0x2f, 0x41, 0xc9, 0x76, 0x5b, 0x72, 0xdc, 0xfc, 0xcc, 0xc0, - 0xa3, 0xd8, 0xb2, 0xdb, 0x6a, 0x0c, 0xef, 0xef, 0x4d, 0x96, 0x96, 0xdd, 0x16, 0x32, 0x44, 0x62, - 0x40, 0x65, 0x5b, 0xdf, 0xdc, 0xd6, 0x79, 0x19, 0xea, 0x33, 0x8d, 0x81, 0xa1, 0xaf, 0x31, 0x14, - 0x56, 0xd6, 0x46, 0x6d, 0x7f, 0x6f, 0xb2, 0xc2, 0x5f, 0x51, 0x60, 0x13, 0x17, 0x6a, 0x1b, 0xb6, - 0x6e, 0x6c, 0x6f, 0xb9, 0x36, 0x9d, 0x28, 0xe5, 0x14, 0xd4, 0x50, 0x48, 0xe2, 0x33, 0x87, 0xaf, - 0x18, 0xc9, 0x20, 0x06, 0x0c, 0x75, 0x4d, 0xdf, 0x72, 0xb6, 0xe5, 0x18, 0xf8, 0xc2, 0xc0, 0xd2, - 0xd6, 0xe7, 0x79, 0x9d, 0x60, 0x7f, 0x6f, 0x72, 0x48, 0x3c, 0xa3, 0x84, 0xd6, 0x7e, 0x5a, 0x87, - 0x31, 0xf5, 0x91, 0x6e, 0x52, 0x2f, 0xa0, 0xb7, 0xc9, 0x45, 0x28, 0x3b, 0xac, 0x6b, 0xf2, 0x8f, - 0xdc, 0x18, 0x91, 0xcd, 0xa5, 0xcc, 0xbb, 0x24, 0x4f, 0x61, 0x25, 0x13, 0x4d, 0x45, 0x2a, 0x7c, - 0xf0, 0x92, 0x35, 0x39, 0x8c, 0x28, 0x99, 0x78, 0x46, 0x09, 0x4d, 0x5e, 0x81, 0x32, 0xaf, 0xbc, - 0x50, 0xf5, 0x67, 0x07, 0x17, 0xc1, 0xaa, 0x5e, 0x65, 0x35, 0xe0, 0x15, 0xe7, 0xa0, 0xac, 0x29, - 0x76, 0xcd, 0x4d, 0xa9, 0xd8, 0xcf, 0xe4, 0x50, 0xec, 0x82, 0x68, 0x8a, 0xeb, 0xf3, 0x0b, 0xc8, - 0x10, 0xc9, 0x7f, 0x2e, 0xc0, 0x49, 0xc3, 0x75, 0x02, 0x9d, 0x99, 0x1a, 0x6a, 0x92, 0x9d, 0xa8, - 0x70, 0x39, 0x57, 0x07, 0x96, 0x33, 0x97, 0x46, 0x6c, 0x3c, 0xcc, 0xe6, 0x8c, 0x1e, 0x32, 0xf6, - 0xca, 0x26, 0xff, 0xb5, 0x00, 0x0f, 0xb3, 0xb1, 0xbc, 0x87, 0x99, 0xcf, 0x40, 0x47, 0x5b, 0xaa, - 0xb3, 0xfb, 0x7b, 0x93, 0x0f, 0x2f, 0x65, 0x09, 0xc3, 0xec, 0x32, 0xb0, 0xd2, 0x9d, 0xd2, 0x7b, - 0xcd, 0x12, 0x3e, 0xbb, 0xd5, 0x67, 0x96, 0x8f, 0xd2, 0xd4, 0x69, 0x3c, 0x2a, 0x9b, 0x72, 0x96, - 0x65, 0x87, 0x59, 0xa5, 0x20, 0x97, 0x61, 0x78, 0xc7, 0xb5, 0xbb, 0x6d, 0xea, 0x4f, 0x54, 0xf9, - 0x10, 0x7b, 0x2e, 0x6b, 0x88, 0xbd, 0xc9, 0x59, 0x1a, 0x27, 0x24, 0xfc, 0xb0, 0x78, 0xf7, 0x51, - 0xe5, 0x25, 0x16, 0x0c, 0xd9, 0x56, 0xdb, 0x0a, 0x7c, 0x3e, 0x71, 0xd6, 0x67, 0x2e, 0x0f, 0x5c, - 0x2d, 0xd1, 0x45, 0x97, 0x39, 0x98, 0xe8, 0x35, 0xe2, 0x19, 0xa5, 0x00, 0x36, 0x14, 0xfa, 0x86, - 0x6e, 0x8b, 0x89, 0xb5, 0x3e, 0xf3, 0xb9, 0xc1, 0xbb, 0x0d, 0x43, 0x69, 0x8c, 0xca, 0x3a, 0x55, - 0xf8, 0x2b, 0x0a, 0x6c, 0xf2, 0x25, 0x18, 0x4b, 0x7c, 0x4d, 0x7f, 0xa2, 0xce, 0xb5, 0xf3, 0x58, - 0x96, 0x76, 0x42, 0xae, 0x68, 0xe6, 0x49, 0xb4, 0x10, 0x1f, 0x53, 0x60, 0xe4, 0x1a, 0x54, 0x7d, - 0xcb, 0xa4, 0x86, 0xee, 0xf9, 0x13, 0x23, 0x07, 0x01, 0x1e, 0x97, 0xc0, 0xd5, 0xa6, 0xcc, 0x86, - 0x21, 0x00, 0x99, 0x02, 0xe8, 0xe8, 0x5e, 0x60, 0x09, 0x43, 0x75, 0x94, 0x1b, 0x4d, 0x63, 0xfb, - 0x7b, 0x93, 0xb0, 0x1a, 0x52, 0x31, 0xc6, 0xc1, 0xf8, 0x59, 0xde, 0x25, 0xa7, 0xd3, 0x0d, 0xc4, - 0xc4, 0x5a, 0x13, 0xfc, 0xcd, 0x90, 0x8a, 0x31, 0x0e, 0xf2, 0xbd, 0x02, 0x3c, 0x1a, 0xbd, 0xf6, - 0x76, 0xb2, 0x13, 0x47, 0xde, 0xc9, 0x26, 0xf7, 0xf7, 0x26, 0x1f, 0x6d, 0xf6, 0x17, 0x89, 0x77, - 0x2b, 0x8f, 0xf6, 0x12, 0x8c, 0xce, 0x76, 0x83, 0x2d, 0xd7, 0xb3, 0xde, 0xe0, 0x46, 0x37, 0x59, - 0x80, 0x4a, 0xc0, 0x8d, 0x27, 0x31, 0x2f, 0x3f, 0x91, 0xa5, 0x6a, 0x61, 0xc8, 0x5e, 0xa3, 0xbb, - 0xca, 0x1a, 0x10, 0xf3, 0xa3, 0x30, 0xa6, 0x44, 0x76, 0xed, 0xdf, 0x17, 0x60, 0xb8, 0xa1, 0x1b, - 0xdb, 0xee, 0xe6, 0x26, 0x79, 0x19, 0xaa, 0x96, 0x13, 0x50, 0x6f, 0x47, 0xb7, 0x25, 0xec, 0x54, - 0x0c, 0x36, 0x5c, 0x89, 0x45, 0xf5, 0x66, 0x6b, 0x1e, 0x26, 0x68, 0xbe, 0x2b, 0xd7, 0x0a, 0xdc, - 0x1e, 0x5d, 0x92, 0x18, 0x18, 0xa2, 0x91, 0x49, 0xa8, 0xf8, 0x01, 0xed, 0xf8, 0x7c, 0xe6, 0x19, - 0x15, 0xc5, 0x68, 0x32, 0x02, 0x0a, 0xba, 0xf6, 0x3f, 0x0a, 0x50, 0x6b, 0xe8, 0xbe, 0x65, 0xb0, - 0x5a, 0x92, 0x39, 0x28, 0x77, 0x7d, 0xea, 0x1d, 0xae, 0x6e, 0x7c, 0xb2, 0x58, 0xf7, 0xa9, 0x87, - 0x3c, 0x33, 0xb9, 0x01, 0xd5, 0x8e, 0xee, 0xfb, 0xb7, 0x5c, 0xcf, 0x94, 0x13, 0xde, 0x01, 0x81, - 0x84, 0x71, 0x2e, 0xb3, 0x62, 0x08, 0xa2, 0xd5, 0x21, 0x9a, 0xf1, 0xb5, 0x9f, 0x17, 0xe0, 0x54, - 0xa3, 0xbb, 0xb9, 0x49, 0x3d, 0x69, 0x8b, 0x4a, 0x2b, 0x8f, 0x42, 0xc5, 0xa3, 0xa6, 0xe5, 0xcb, - 0xb2, 0xcf, 0x0f, 0xdc, 0x82, 0x90, 0xa1, 0x48, 0xa3, 0x92, 0xeb, 0x8b, 0x13, 0x50, 0xa0, 0x93, - 0x2e, 0xd4, 0x5e, 0xa3, 0x81, 0x1f, 0x78, 0x54, 0x6f, 0xcb, 0xda, 0x5d, 0x19, 0x58, 0xd4, 0x55, - 0x1a, 0x34, 0x39, 0x52, 0xdc, 0x86, 0x0d, 0x89, 0x18, 0x49, 0xd2, 0x7e, 0x50, 0x81, 0x91, 0x39, - 0xb7, 0xbd, 0x61, 0x39, 0xd4, 0xbc, 0x6c, 0xb6, 0x28, 0x79, 0x15, 0xca, 0xd4, 0x6c, 0x51, 0x59, - 0xdb, 0xc1, 0xa7, 0x7b, 0x06, 0x16, 0x19, 0x2d, 0xec, 0x0d, 0x39, 0x30, 0x59, 0x86, 0xb1, 0x4d, - 0xcf, 0x6d, 0x8b, 0x11, 0x74, 0x6d, 0xb7, 0x23, 0x2d, 0xd6, 0xc6, 0x87, 0xd5, 0xa8, 0xb4, 0x90, - 0x48, 0xbd, 0xb3, 0x37, 0x09, 0xd1, 0x1b, 0xa6, 0xf2, 0x92, 0x97, 0x61, 0x22, 0xa2, 0x84, 0x43, - 0xc9, 0x1c, 0x5b, 0x44, 0x70, 0x8b, 0xa5, 0xd2, 0x38, 0xbf, 0xbf, 0x37, 0x39, 0xb1, 0xd0, 0x87, - 0x07, 0xfb, 0xe6, 0x26, 0x6f, 0x15, 0x60, 0x3c, 0x4a, 0x14, 0xc3, 0xbb, 0x34, 0x54, 0x8e, 0x68, - 0xde, 0xe0, 0xab, 0xad, 0x85, 0x94, 0x08, 0xec, 0x11, 0x4a, 0x16, 0x60, 0x24, 0x70, 0x63, 0xfa, - 0xaa, 0x70, 0x7d, 0x69, 0xca, 0x3d, 0xb0, 0xe6, 0xf6, 0xd5, 0x56, 0x22, 0x1f, 0x41, 0x38, 0xa3, - 0xde, 0x53, 0x9a, 0x1a, 0xe2, 0x9a, 0x3a, 0xb7, 0xbf, 0x37, 0x79, 0x66, 0x2d, 0x93, 0x03, 0xfb, - 0xe4, 0x24, 0x5f, 0x2f, 0xc0, 0x98, 0x4a, 0x92, 0x3a, 0x1a, 0x3e, 0x4a, 0x1d, 0x11, 0xd6, 0x22, - 0xd6, 0x12, 0x02, 0x30, 0x25, 0x50, 0xfb, 0x45, 0x19, 0x6a, 0xe1, 0x00, 0x4b, 0x1e, 0x87, 0x0a, - 0x5f, 0xf8, 0x4b, 0xbb, 0x39, 0x9c, 0x39, 0xb9, 0x7f, 0x00, 0x45, 0x1a, 0x79, 0x02, 0x86, 0x0d, - 0xb7, 0xdd, 0xd6, 0x1d, 0x93, 0x3b, 0x73, 0x6a, 0x8d, 0x3a, 0x33, 0x18, 0xe6, 0x04, 0x09, 0x55, - 0x1a, 0x39, 0x0f, 0x65, 0xdd, 0x6b, 0x09, 0xbf, 0x4a, 0x4d, 0x8c, 0x47, 0xb3, 0x5e, 0xcb, 0x47, - 0x4e, 0x25, 0x9f, 0x84, 0x12, 0x75, 0x76, 0x26, 0xca, 0xfd, 0x2d, 0x92, 0xcb, 0xce, 0xce, 0x4d, - 0xdd, 0x6b, 0xd4, 0x65, 0x19, 0x4a, 0x97, 0x9d, 0x1d, 0x64, 0x79, 0xc8, 0x32, 0x0c, 0x53, 0x67, - 0x87, 0x7d, 0x7b, 0xe9, 0xf0, 0xf8, 0x50, 0x9f, 0xec, 0x8c, 0x45, 0x1a, 0xe7, 0xa1, 0x5d, 0x23, - 0xc9, 0xa8, 0x20, 0xc8, 0x17, 0x60, 0x44, 0x98, 0x38, 0x2b, 0xec, 0x9b, 0xf8, 0x13, 0x43, 0x1c, - 0x72, 0xb2, 0xbf, 0x8d, 0xc4, 0xf9, 0x22, 0x07, 0x53, 0x8c, 0xe8, 0x63, 0x02, 0x8a, 0x7c, 0x01, - 0x6a, 0x6a, 0x3d, 0xaa, 0xbe, 0x6c, 0xa6, 0x6f, 0x46, 0x2d, 0x62, 0x91, 0xbe, 0xde, 0xb5, 0x3c, - 0xda, 0xa6, 0x4e, 0xe0, 0x37, 0x4e, 0xaa, 0xd5, 0xba, 0x4a, 0xf5, 0x31, 0x42, 0x23, 0x1b, 0xbd, - 0x4e, 0x26, 0xe1, 0x21, 0x79, 0xbc, 0xcf, 0xa8, 0x3e, 0x80, 0x87, 0xe9, 0xcb, 0x70, 0x22, 0xf4, - 0x02, 0x49, 0x47, 0x82, 0xf0, 0x99, 0x3c, 0xcd, 0xb2, 0x2f, 0x25, 0x93, 0xee, 0xec, 0x4d, 0x3e, - 0x96, 0xe1, 0x4a, 0x88, 0x18, 0x30, 0x0d, 0xa6, 0x7d, 0xbf, 0x04, 0xbd, 0xd6, 0x7f, 0x52, 0x69, - 0x85, 0xa3, 0x56, 0x5a, 0xba, 0x42, 0x62, 0xf8, 0x7c, 0x5e, 0x66, 0xcb, 0x5f, 0xa9, 0xac, 0x0f, - 0x53, 0x3a, 0xea, 0x0f, 0xf3, 0xa0, 0xf4, 0x1d, 0xed, 0xed, 0x32, 0x8c, 0xcd, 0xeb, 0xb4, 0xed, - 0x3a, 0xf7, 0x5c, 0x0b, 0x15, 0x1e, 0x88, 0xb5, 0xd0, 0x25, 0xa8, 0x7a, 0xb4, 0x63, 0x5b, 0x86, - 0x2e, 0x8c, 0x2f, 0xe9, 0x7b, 0x44, 0x49, 0xc3, 0x30, 0xb5, 0xcf, 0x1a, 0xb8, 0xf4, 0x40, 0xae, - 0x81, 0xcb, 0xef, 0xfd, 0x1a, 0x58, 0xfb, 0x7a, 0x11, 0xb8, 0xa1, 0x42, 0x2e, 0x42, 0x99, 0x4d, - 0xc2, 0x69, 0xcf, 0x0b, 0x6f, 0x38, 0x3c, 0x85, 0x9c, 0x83, 0x62, 0xe0, 0xca, 0x9e, 0x07, 0x32, - 0xbd, 0xb8, 0xe6, 0x62, 0x31, 0x70, 0xc9, 0x1b, 0x00, 0x86, 0xeb, 0x98, 0x96, 0x72, 0xc9, 0xe7, - 0xab, 0xd8, 0x82, 0xeb, 0xdd, 0xd2, 0x3d, 0x73, 0x2e, 0x44, 0x14, 0xab, 0xa0, 0xe8, 0x1d, 0x63, - 0xd2, 0xc8, 0x0b, 0x30, 0xe4, 0x3a, 0x0b, 0x5d, 0xdb, 0xe6, 0x0a, 0xad, 0x35, 0x3e, 0xc2, 0x96, - 0xa6, 0x37, 0x38, 0xe5, 0xce, 0xde, 0xe4, 0x59, 0x61, 0xdf, 0xb2, 0xb7, 0x97, 0x3c, 0x2b, 0xb0, - 0x9c, 0x56, 0x33, 0xf0, 0xf4, 0x80, 0xb6, 0x76, 0x51, 0x66, 0xd3, 0xbe, 0x59, 0x80, 0xfa, 0x82, - 0x75, 0x9b, 0x9a, 0x2f, 0x59, 0x8e, 0xe9, 0xde, 0x22, 0x08, 0x43, 0x36, 0x75, 0x5a, 0xc1, 0xd6, - 0x80, 0xeb, 0x07, 0xb1, 0x36, 0xe6, 0x08, 0x28, 0x91, 0xc8, 0x34, 0xd4, 0x84, 0xf5, 0x69, 0x39, - 0x2d, 0xae, 0xc3, 0x6a, 0x34, 0xe8, 0x35, 0x55, 0x02, 0x46, 0x3c, 0xda, 0x2e, 0x9c, 0xec, 0x51, - 0x03, 0x31, 0xa1, 0x1c, 0xe8, 0x2d, 0x35, 0xbe, 0x2e, 0x0c, 0xac, 0xe0, 0x35, 0xbd, 0x15, 0x53, - 0x2e, 0x9f, 0xe3, 0xd7, 0x74, 0x36, 0xc7, 0x33, 0x74, 0xed, 0x57, 0x05, 0xa8, 0x2e, 0x74, 0x1d, - 0x83, 0x2f, 0xd1, 0xee, 0xed, 0x91, 0x53, 0x06, 0x43, 0x31, 0xd3, 0x60, 0xe8, 0xc2, 0xd0, 0xf6, - 0xad, 0xd0, 0xa0, 0xa8, 0xcf, 0xac, 0x0c, 0xde, 0x2a, 0x64, 0x91, 0xa6, 0xae, 0x71, 0x3c, 0xb1, - 0x61, 0x34, 0x26, 0x0b, 0x34, 0x74, 0xed, 0x25, 0x2e, 0x54, 0x0a, 0x3b, 0xf7, 0x49, 0xa8, 0xc7, - 0xd8, 0x0e, 0xe5, 0x3b, 0xfe, 0x7f, 0x65, 0x18, 0x5a, 0x6c, 0x36, 0x67, 0x57, 0x97, 0xc8, 0x33, - 0x50, 0x97, 0x7b, 0x09, 0xd7, 0x23, 0x1d, 0x84, 0x5b, 0x49, 0xcd, 0x28, 0x09, 0xe3, 0x7c, 0xcc, - 0x1c, 0xf3, 0xa8, 0x6e, 0xb7, 0x65, 0x67, 0x09, 0xcd, 0x31, 0x64, 0x44, 0x14, 0x69, 0x44, 0x87, - 0x31, 0xb6, 0xc2, 0x63, 0x2a, 0x14, 0xab, 0x37, 0xd9, 0x6d, 0x0e, 0xb8, 0xbe, 0xe3, 0x46, 0xe2, - 0x7a, 0x02, 0x00, 0x53, 0x80, 0xe4, 0x79, 0xa8, 0xea, 0xdd, 0x60, 0x8b, 0x1b, 0xd0, 0xa2, 0x6f, - 0x9c, 0xe7, 0x5b, 0x2d, 0x92, 0x76, 0x67, 0x6f, 0x72, 0xe4, 0x1a, 0x36, 0x9e, 0x51, 0xef, 0x18, - 0x72, 0xb3, 0xc2, 0xa9, 0x15, 0xa3, 0x2c, 0x5c, 0xe5, 0xd0, 0x85, 0x5b, 0x4d, 0x00, 0x60, 0x0a, - 0x90, 0xbc, 0x02, 0x23, 0xdb, 0x74, 0x37, 0xd0, 0x37, 0xa4, 0x80, 0xa1, 0xc3, 0x08, 0x18, 0x67, - 0x26, 0xdc, 0xb5, 0x58, 0x76, 0x4c, 0x80, 0x11, 0x1f, 0x4e, 0x6f, 0x53, 0x6f, 0x83, 0x7a, 0xae, - 0x5c, 0x7d, 0x4a, 0x21, 0xc3, 0x87, 0x11, 0x32, 0xb1, 0xbf, 0x37, 0x79, 0xfa, 0x5a, 0x06, 0x0c, - 0x66, 0x82, 0x6b, 0xbf, 0x2c, 0xc2, 0x89, 0x45, 0xb1, 0x99, 0xeb, 0x7a, 0x62, 0x12, 0x26, 0x67, - 0xa1, 0xe4, 0x75, 0xba, 0xbc, 0xe5, 0x94, 0x84, 0xbb, 0x16, 0x57, 0xd7, 0x91, 0xd1, 0xc8, 0xcb, - 0x50, 0x35, 0xe5, 0x90, 0x21, 0x17, 0xbf, 0x03, 0x39, 0x2a, 0xd4, 0x1b, 0x86, 0x68, 0xcc, 0xd2, - 0x6f, 0xfb, 0xad, 0xa6, 0xf5, 0x06, 0x95, 0xeb, 0x41, 0x6e, 0xe9, 0xaf, 0x08, 0x12, 0xaa, 0x34, - 0x36, 0xab, 0x6e, 0xd3, 0x5d, 0xb1, 0x1a, 0x2a, 0x47, 0xb3, 0xea, 0x35, 0x49, 0xc3, 0x30, 0x95, - 0x4c, 0xaa, 0xce, 0xc2, 0x5a, 0x41, 0x59, 0xac, 0xe4, 0x6f, 0x32, 0x82, 0xec, 0x37, 0x6c, 0xc8, - 0x7c, 0xcd, 0x0a, 0x02, 0xea, 0xc9, 0xcf, 0x38, 0xd0, 0x90, 0x79, 0x95, 0x23, 0xa0, 0x44, 0x22, - 0x1f, 0x83, 0x1a, 0x07, 0x6f, 0xd8, 0xee, 0x06, 0xff, 0x70, 0x35, 0xb1, 0xa6, 0xbf, 0xa9, 0x88, - 0x18, 0xa5, 0x6b, 0xbf, 0x2e, 0xc2, 0x99, 0x45, 0x1a, 0x08, 0xab, 0x66, 0x9e, 0x76, 0x6c, 0x77, - 0x97, 0x99, 0x96, 0x48, 0x5f, 0x27, 0x2f, 0x02, 0x58, 0xfe, 0x46, 0x73, 0xc7, 0xe0, 0xfd, 0x40, - 0xf4, 0xe1, 0x8b, 0xb2, 0x4b, 0xc2, 0x52, 0xb3, 0x21, 0x53, 0xee, 0x24, 0xde, 0x30, 0x96, 0x27, - 0x5a, 0x5e, 0x15, 0xef, 0xb2, 0xbc, 0x6a, 0x02, 0x74, 0x22, 0x03, 0xb5, 0xc4, 0x39, 0xff, 0x95, - 0x12, 0x73, 0x18, 0xdb, 0x34, 0x06, 0x93, 0xc7, 0x64, 0x74, 0x60, 0xdc, 0xa4, 0x9b, 0x7a, 0xd7, - 0x0e, 0x42, 0xa3, 0x5a, 0x76, 0xe2, 0x83, 0xdb, 0xe5, 0xe1, 0x46, 0xf3, 0x7c, 0x0a, 0x09, 0x7b, - 0xb0, 0xb5, 0xff, 0x5f, 0x82, 0x73, 0x8b, 0x34, 0x08, 0x3d, 0x2e, 0x72, 0x74, 0x6c, 0x76, 0xa8, - 0xc1, 0xbe, 0xc2, 0x5b, 0x05, 0x18, 0xb2, 0xf5, 0x0d, 0x6a, 0xb3, 0xd9, 0x8b, 0xd5, 0xe6, 0xd5, - 0x81, 0x27, 0x82, 0xfe, 0x52, 0xa6, 0x96, 0xb9, 0x84, 0xd4, 0xd4, 0x20, 0x88, 0x28, 0xc5, 0xb3, - 0x41, 0xdd, 0xb0, 0xbb, 0x7e, 0x40, 0xbd, 0x55, 0xd7, 0x0b, 0xa4, 0x3d, 0x19, 0x0e, 0xea, 0x73, - 0x51, 0x12, 0xc6, 0xf9, 0xc8, 0x0c, 0x80, 0x61, 0x5b, 0xd4, 0x09, 0x78, 0x2e, 0xd1, 0xaf, 0x88, - 0xfa, 0xbe, 0x73, 0x61, 0x0a, 0xc6, 0xb8, 0x98, 0xa8, 0xb6, 0xeb, 0x58, 0x81, 0x2b, 0x44, 0x95, - 0x93, 0xa2, 0x56, 0xa2, 0x24, 0x8c, 0xf3, 0xf1, 0x6c, 0x34, 0xf0, 0x2c, 0xc3, 0xe7, 0xd9, 0x2a, - 0xa9, 0x6c, 0x51, 0x12, 0xc6, 0xf9, 0xd8, 0x9c, 0x17, 0xab, 0xff, 0xa1, 0xe6, 0xbc, 0xef, 0xd6, - 0xe0, 0x42, 0x42, 0xad, 0x81, 0x1e, 0xd0, 0xcd, 0xae, 0xdd, 0xa4, 0x81, 0xfa, 0x80, 0x03, 0xce, - 0x85, 0xff, 0x31, 0xfa, 0xee, 0x22, 0x84, 0xc4, 0x38, 0x9a, 0xef, 0xde, 0x53, 0xc0, 0x03, 0x7d, - 0xfb, 0x69, 0xa8, 0x39, 0x7a, 0xe0, 0xf3, 0x8e, 0x2b, 0xfb, 0x68, 0x68, 0x86, 0x5d, 0x57, 0x09, - 0x18, 0xf1, 0x90, 0x55, 0x38, 0x2d, 0x55, 0x7c, 0xf9, 0x76, 0xc7, 0xf5, 0x02, 0xea, 0x89, 0xbc, - 0x72, 0x3a, 0x95, 0x79, 0x4f, 0xaf, 0x64, 0xf0, 0x60, 0x66, 0x4e, 0xb2, 0x02, 0xa7, 0x0c, 0xb1, - 0xad, 0x4e, 0x6d, 0x57, 0x37, 0x15, 0xa0, 0x70, 0x70, 0x85, 0x4b, 0xa3, 0xb9, 0x5e, 0x16, 0xcc, - 0xca, 0x97, 0x6e, 0xcd, 0x43, 0x03, 0xb5, 0xe6, 0xe1, 0x41, 0x5a, 0x73, 0x75, 0xb0, 0xd6, 0x5c, - 0x3b, 0x58, 0x6b, 0x66, 0x9a, 0x67, 0xed, 0x88, 0x7a, 0xcc, 0x3c, 0x11, 0x33, 0x6c, 0x2c, 0x6a, - 0x23, 0xd4, 0x7c, 0x33, 0x83, 0x07, 0x33, 0x73, 0x92, 0x0d, 0x38, 0x27, 0xe8, 0x97, 0x1d, 0xc3, - 0xdb, 0xed, 0xb0, 0x89, 0x27, 0x86, 0x5b, 0x4f, 0x78, 0x18, 0xcf, 0x35, 0xfb, 0x72, 0xe2, 0x5d, - 0x50, 0xc8, 0xa7, 0x61, 0x54, 0x7c, 0xa5, 0x15, 0xbd, 0xc3, 0x61, 0x45, 0x0c, 0xc7, 0xc3, 0x12, - 0x76, 0x74, 0x2e, 0x9e, 0x88, 0x49, 0x5e, 0x32, 0x0b, 0x27, 0x3a, 0x3b, 0x06, 0x7b, 0x5c, 0xda, - 0xbc, 0x4e, 0xa9, 0x49, 0x4d, 0xbe, 0x69, 0x54, 0x6b, 0x3c, 0xa2, 0x1c, 0x1d, 0xab, 0xc9, 0x64, - 0x4c, 0xf3, 0x93, 0xe7, 0x61, 0xc4, 0x0f, 0x74, 0x2f, 0x90, 0x6e, 0xbd, 0x89, 0x31, 0x11, 0xe3, - 0xa2, 0xbc, 0x5e, 0xcd, 0x58, 0x1a, 0x26, 0x38, 0x33, 0xe7, 0x8b, 0x13, 0xc7, 0x37, 0x5f, 0xe4, - 0x19, 0xad, 0x7e, 0xaf, 0x08, 0x17, 0x17, 0x69, 0xb0, 0xe2, 0x3a, 0xd2, 0x29, 0x9a, 0x35, 0xed, - 0x1f, 0xc8, 0x27, 0x9a, 0x9c, 0xb4, 0x8b, 0x47, 0x3a, 0x69, 0x97, 0x8e, 0x68, 0xd2, 0x2e, 0x1f, - 0xe3, 0xa4, 0xfd, 0x9b, 0x45, 0x78, 0x24, 0xa1, 0xc9, 0x55, 0xd7, 0x54, 0x03, 0xfe, 0x07, 0x0a, - 0x3c, 0x80, 0x02, 0xef, 0x08, 0xbb, 0x93, 0x6f, 0x6b, 0xa5, 0x2c, 0x9e, 0x37, 0xd3, 0x16, 0xcf, - 0x2b, 0x79, 0x66, 0xbe, 0x0c, 0x09, 0x07, 0x9a, 0xf1, 0xae, 0x02, 0xf1, 0xe4, 0x26, 0x9c, 0x70, - 0xfd, 0xc4, 0x8c, 0x9e, 0x30, 0x88, 0x0e, 0x7b, 0x38, 0x30, 0x23, 0x17, 0x69, 0xc2, 0xc3, 0x3e, - 0x75, 0x02, 0xcb, 0xa1, 0x76, 0x12, 0x4e, 0x58, 0x43, 0x8f, 0x49, 0xb8, 0x87, 0x9b, 0x59, 0x4c, - 0x98, 0x9d, 0x37, 0xcf, 0x38, 0xf0, 0x07, 0xc0, 0x4d, 0x4e, 0xa1, 0x9a, 0x23, 0xb3, 0x58, 0xde, - 0x4a, 0x5b, 0x2c, 0xaf, 0xe6, 0xff, 0x6e, 0x83, 0x59, 0x2b, 0x33, 0x00, 0xfc, 0x2b, 0xc4, 0xcd, - 0x95, 0x70, 0x92, 0xc6, 0x30, 0x05, 0x63, 0x5c, 0x6c, 0x02, 0x52, 0x7a, 0x8e, 0x5b, 0x2a, 0xe1, - 0x04, 0xd4, 0x8c, 0x27, 0x62, 0x92, 0xb7, 0xaf, 0xb5, 0x53, 0x19, 0xd8, 0xda, 0xb9, 0x0a, 0x24, - 0xe1, 0x78, 0x14, 0x78, 0x43, 0xc9, 0x18, 0xce, 0xa5, 0x1e, 0x0e, 0xcc, 0xc8, 0xd5, 0xa7, 0x29, - 0x0f, 0x1f, 0x6d, 0x53, 0xae, 0x0e, 0xde, 0x94, 0xc9, 0xab, 0x70, 0x96, 0x8b, 0x92, 0xfa, 0x49, - 0x02, 0x0b, 0xbb, 0xe7, 0x43, 0x12, 0xf8, 0x2c, 0xf6, 0x63, 0xc4, 0xfe, 0x18, 0xec, 0xfb, 0x18, - 0x1e, 0x35, 0x99, 0x70, 0xdd, 0xee, 0x6f, 0x13, 0xcd, 0x65, 0xf0, 0x60, 0x66, 0x4e, 0xd6, 0xc4, - 0x02, 0xd6, 0x0c, 0xf5, 0x0d, 0x9b, 0x9a, 0x32, 0x86, 0x35, 0x6c, 0x62, 0x6b, 0xcb, 0x4d, 0x99, - 0x82, 0x31, 0xae, 0x2c, 0x33, 0x65, 0xe4, 0x90, 0x66, 0xca, 0x22, 0xf7, 0xd2, 0x6f, 0x26, 0xac, - 0x21, 0x69, 0xeb, 0x84, 0x51, 0xc9, 0x73, 0x69, 0x06, 0xec, 0xcd, 0xc3, 0xad, 0x44, 0xc3, 0xb3, - 0x3a, 0x81, 0x9f, 0xc4, 0x1a, 0x4b, 0x59, 0x89, 0x19, 0x3c, 0x98, 0x99, 0x93, 0xd9, 0xe7, 0x5b, - 0x54, 0xb7, 0x83, 0xad, 0x24, 0xe0, 0x89, 0xa4, 0x7d, 0x7e, 0xa5, 0x97, 0x05, 0xb3, 0xf2, 0x65, - 0x4e, 0x48, 0xe3, 0x0f, 0xa6, 0x59, 0xf5, 0x8d, 0x12, 0x9c, 0x5d, 0xa4, 0x41, 0x18, 0xde, 0xf3, - 0x81, 0x1b, 0xe5, 0x3d, 0x70, 0xa3, 0x7c, 0xa7, 0x02, 0xa7, 0x16, 0x69, 0xd0, 0x63, 0x8d, 0xfd, - 0x33, 0x55, 0xff, 0x0a, 0x9c, 0x8a, 0x22, 0xca, 0x9a, 0x81, 0xeb, 0x89, 0xb9, 0x3c, 0xb5, 0x5a, - 0x6e, 0xf6, 0xb2, 0x60, 0x56, 0x3e, 0xf2, 0x05, 0x78, 0x84, 0x4f, 0xf5, 0x4e, 0x4b, 0xf8, 0x67, - 0x85, 0x33, 0x21, 0x76, 0x26, 0x62, 0x52, 0x42, 0x3e, 0xd2, 0xcc, 0x66, 0xc3, 0x7e, 0xf9, 0xc9, - 0x57, 0x61, 0xa4, 0x63, 0x75, 0xa8, 0x6d, 0x39, 0xdc, 0x3e, 0xcb, 0x1d, 0x12, 0xb2, 0x1a, 0x03, - 0x8b, 0x16, 0x70, 0x71, 0x2a, 0x26, 0x04, 0x66, 0xb6, 0xd4, 0xea, 0x31, 0xb6, 0xd4, 0xbf, 0x2d, - 0xc2, 0xf0, 0xa2, 0xe7, 0x76, 0x3b, 0x8d, 0x5d, 0xd2, 0x82, 0xa1, 0x5b, 0x7c, 0xf3, 0x4c, 0x6e, - 0x4d, 0x0d, 0x1e, 0x95, 0x2d, 0xf6, 0xe0, 0x22, 0x93, 0x48, 0xbc, 0xa3, 0x84, 0x67, 0x8d, 0x78, - 0x9b, 0xee, 0x52, 0x53, 0xee, 0xa1, 0x85, 0x8d, 0xf8, 0x1a, 0x23, 0xa2, 0x48, 0x23, 0x6d, 0x38, - 0xa1, 0xdb, 0xb6, 0x7b, 0x8b, 0x9a, 0xcb, 0x7a, 0x40, 0x1d, 0xea, 0xab, 0x2d, 0xc9, 0xc3, 0xba, - 0xa5, 0xf9, 0xbe, 0xfe, 0x6c, 0x12, 0x0a, 0xd3, 0xd8, 0xe4, 0x35, 0x18, 0xf6, 0x03, 0xd7, 0x53, - 0xc6, 0x56, 0x7d, 0x66, 0x6e, 0xf0, 0x8f, 0xde, 0xf8, 0x7c, 0x53, 0x40, 0x09, 0x9f, 0xbd, 0x7c, - 0x41, 0x25, 0x40, 0xfb, 0x76, 0x01, 0xe0, 0xca, 0xda, 0xda, 0xaa, 0xdc, 0x5e, 0x30, 0xa1, 0xac, - 0x77, 0xc3, 0x8d, 0xca, 0xc1, 0x37, 0x04, 0x13, 0x61, 0x99, 0x72, 0x0f, 0xaf, 0x1b, 0x6c, 0x21, - 0x47, 0x27, 0x1f, 0x85, 0x61, 0x69, 0x20, 0x4b, 0xb5, 0x87, 0xa1, 0x05, 0xd2, 0x88, 0x46, 0x95, - 0xae, 0xfd, 0x9f, 0x22, 0xc0, 0x92, 0x69, 0xd3, 0xa6, 0x0a, 0xa4, 0xaf, 0x05, 0x5b, 0x1e, 0xf5, - 0xb7, 0x5c, 0xdb, 0x1c, 0x70, 0x37, 0x95, 0xfb, 0xfc, 0xd7, 0x14, 0x08, 0x46, 0x78, 0xc4, 0x84, - 0x11, 0x3f, 0xa0, 0x1d, 0x15, 0xa9, 0x39, 0xe0, 0x26, 0xca, 0xb8, 0xf0, 0x8b, 0x44, 0x38, 0x98, - 0x40, 0x25, 0x3a, 0xd4, 0x2d, 0xc7, 0x10, 0x1d, 0xa4, 0xb1, 0x3b, 0x60, 0x43, 0x3a, 0xc1, 0x56, - 0x1c, 0x4b, 0x11, 0x0c, 0xc6, 0x31, 0xb5, 0x9f, 0x15, 0xe1, 0x0c, 0x97, 0xc7, 0x8a, 0x91, 0x88, - 0xc7, 0x24, 0xff, 0xa6, 0xe7, 0xd0, 0xdf, 0xbf, 0x3c, 0x98, 0x68, 0x71, 0x66, 0x6c, 0x85, 0x06, - 0x7a, 0x64, 0xcf, 0x45, 0xb4, 0xd8, 0x49, 0xbf, 0x2e, 0x94, 0x7d, 0x36, 0x5e, 0x09, 0xed, 0x35, - 0x07, 0x6e, 0x42, 0xd9, 0x15, 0xe0, 0xa3, 0x57, 0xb8, 0x6b, 0xcc, 0x47, 0x2d, 0x2e, 0x8e, 0xfc, - 0x3b, 0x18, 0xf2, 0x03, 0x3d, 0xe8, 0xaa, 0xae, 0xb9, 0x7e, 0xd4, 0x82, 0x39, 0x78, 0x34, 0x8e, - 0x88, 0x77, 0x94, 0x42, 0xb5, 0x9f, 0x15, 0xe0, 0x5c, 0x76, 0xc6, 0x65, 0xcb, 0x0f, 0xc8, 0xbf, - 0xee, 0x51, 0xfb, 0x01, 0xbf, 0x38, 0xcb, 0xcd, 0x95, 0x1e, 0xc6, 0x85, 0x2b, 0x4a, 0x4c, 0xe5, - 0x01, 0x54, 0xac, 0x80, 0xb6, 0xd5, 0xfa, 0xf2, 0xc6, 0x11, 0x57, 0x3d, 0x36, 0xb5, 0x33, 0x29, - 0x28, 0x84, 0x69, 0x6f, 0x17, 0xfb, 0x55, 0x99, 0x4f, 0x1f, 0x76, 0x32, 0xe6, 0xf7, 0x5a, 0xbe, - 0x98, 0xdf, 0x64, 0x81, 0x7a, 0x43, 0x7f, 0xff, 0x6d, 0x6f, 0xe8, 0xef, 0x8d, 0xfc, 0xa1, 0xbf, - 0x29, 0x35, 0xf4, 0x8d, 0x00, 0x7e, 0xb7, 0x04, 0xe7, 0xef, 0xd6, 0x6c, 0xd8, 0x7c, 0x26, 0x5b, - 0x67, 0xde, 0xf9, 0xec, 0xee, 0xed, 0x90, 0xcc, 0x40, 0xa5, 0xb3, 0xa5, 0xfb, 0xca, 0x28, 0x53, - 0x0b, 0x96, 0xca, 0x2a, 0x23, 0xde, 0x61, 0x83, 0x06, 0x37, 0xe6, 0xf8, 0x2b, 0x0a, 0x56, 0x36, - 0x1c, 0xb7, 0xa9, 0xef, 0x47, 0x3e, 0x81, 0x70, 0x38, 0x5e, 0x11, 0x64, 0x54, 0xe9, 0x24, 0x80, - 0x21, 0xe1, 0x62, 0x96, 0x33, 0xd3, 0xe0, 0x81, 0x5c, 0x19, 0x61, 0xe2, 0x51, 0xa5, 0xe4, 0x6e, - 0x85, 0x94, 0x45, 0xa6, 0xa0, 0x1c, 0x44, 0x41, 0xbb, 0x6a, 0x69, 0x5e, 0xce, 0xb0, 0x4f, 0x39, - 0x1f, 0x5b, 0xd8, 0xbb, 0x1b, 0xdc, 0xa9, 0x6e, 0xca, 0xfd, 0x73, 0xcb, 0x75, 0xb8, 0x41, 0x56, - 0x8a, 0x16, 0xf6, 0x37, 0x7a, 0x38, 0x30, 0x23, 0x97, 0xf6, 0xc7, 0x55, 0x38, 0x93, 0xdd, 0x1e, - 0x98, 0xde, 0x76, 0xa8, 0xe7, 0x33, 0xec, 0x42, 0x52, 0x6f, 0x37, 0x05, 0x19, 0x55, 0xfa, 0xfb, - 0x3a, 0xe0, 0xec, 0x3b, 0x05, 0x38, 0xeb, 0xc9, 0x3d, 0xa2, 0xfb, 0x11, 0x74, 0xf6, 0x98, 0x70, - 0x67, 0xf4, 0x11, 0x88, 0xfd, 0xcb, 0x42, 0xfe, 0x57, 0x01, 0x26, 0xda, 0x29, 0x3f, 0xc7, 0x31, - 0x9e, 0x5b, 0xe3, 0x51, 0xf1, 0x2b, 0x7d, 0xe4, 0x61, 0xdf, 0x92, 0x90, 0xaf, 0x42, 0xbd, 0xc3, - 0xda, 0x85, 0x1f, 0x50, 0xc7, 0x50, 0x47, 0xd7, 0x06, 0xef, 0x49, 0xab, 0x11, 0x96, 0x0a, 0x45, - 0x13, 0xf6, 0x41, 0x2c, 0x01, 0xe3, 0x12, 0x1f, 0xf0, 0x83, 0x6a, 0x97, 0xa0, 0xea, 0xd3, 0x20, - 0xb0, 0x9c, 0x96, 0x58, 0x6f, 0xd4, 0x44, 0x5f, 0x69, 0x4a, 0x1a, 0x86, 0xa9, 0xe4, 0x63, 0x50, - 0xe3, 0x5b, 0x4e, 0xb3, 0x5e, 0xcb, 0x9f, 0xa8, 0xf1, 0x70, 0xb1, 0x51, 0x11, 0x00, 0x27, 0x89, - 0x18, 0xa5, 0x93, 0xa7, 0x61, 0x64, 0x83, 0x77, 0x5f, 0x79, 0x76, 0x59, 0xf8, 0xb8, 0xb8, 0xb5, - 0xd6, 0x88, 0xd1, 0x31, 0xc1, 0x45, 0x66, 0x00, 0x68, 0xb8, 0x2f, 0x97, 0xf6, 0x67, 0x45, 0x3b, - 0x76, 0x18, 0xe3, 0x22, 0x8f, 0x41, 0x29, 0xb0, 0x7d, 0xee, 0xc3, 0xaa, 0x46, 0x4b, 0xd0, 0xb5, - 0xe5, 0x26, 0x32, 0xba, 0xf6, 0xeb, 0x02, 0x9c, 0x48, 0x1d, 0x2e, 0x61, 0x59, 0xba, 0x9e, 0x2d, - 0x87, 0x91, 0x30, 0xcb, 0x3a, 0x2e, 0x23, 0xa3, 0x93, 0x57, 0xa5, 0x59, 0x5e, 0xcc, 0x79, 0x4d, - 0xc3, 0x75, 0x3d, 0xf0, 0x99, 0x1d, 0xde, 0x63, 0x91, 0xf3, 0x6d, 0xbe, 0xa8, 0x3c, 0x72, 0x1e, - 0x88, 0x6d, 0xf3, 0x45, 0x69, 0x98, 0xe0, 0x4c, 0x39, 0xfc, 0xca, 0x07, 0x71, 0xf8, 0x69, 0xdf, - 0x2c, 0xc6, 0x34, 0x20, 0x2d, 0xfb, 0x7b, 0x68, 0xe0, 0x49, 0x36, 0x81, 0x86, 0x93, 0x7b, 0x2d, - 0x3e, 0xff, 0xf1, 0xc9, 0x58, 0xa6, 0x92, 0x97, 0x84, 0xee, 0x4b, 0x39, 0x0f, 0xc3, 0xae, 0x2d, - 0x37, 0x45, 0x74, 0x95, 0xfa, 0x6a, 0xe1, 0x27, 0x28, 0x1f, 0xd3, 0x27, 0xd0, 0x7e, 0xbf, 0x04, - 0xf5, 0xab, 0xee, 0xc6, 0xfb, 0x24, 0x82, 0x3a, 0x7b, 0x9a, 0x2a, 0xbe, 0x87, 0xd3, 0xd4, 0x3a, - 0x3c, 0x12, 0x04, 0x76, 0x93, 0x1a, 0xae, 0x63, 0xfa, 0xb3, 0x9b, 0x01, 0xf5, 0x16, 0x2c, 0xc7, - 0xf2, 0xb7, 0xa8, 0x29, 0xb7, 0x93, 0x1e, 0xdd, 0xdf, 0x9b, 0x7c, 0x64, 0x6d, 0x6d, 0x39, 0x8b, - 0x05, 0xfb, 0xe5, 0xe5, 0xc3, 0x86, 0x38, 0x09, 0xc8, 0x4f, 0xca, 0xc8, 0x98, 0x1b, 0x31, 0x6c, - 0xc4, 0xe8, 0x98, 0xe0, 0xd2, 0xde, 0x29, 0x42, 0x2d, 0x3c, 0x80, 0x4f, 0x9e, 0x80, 0xe1, 0x0d, - 0xcf, 0xdd, 0xa6, 0x9e, 0xd8, 0xb9, 0x93, 0x27, 0x65, 0x1a, 0x82, 0x84, 0x2a, 0x8d, 0x3c, 0x0e, - 0x95, 0xc0, 0xed, 0x58, 0x46, 0xda, 0xa1, 0xb6, 0xc6, 0x88, 0x28, 0xd2, 0x8e, 0xaf, 0x81, 0x3f, - 0x99, 0x30, 0xed, 0x6a, 0x7d, 0x8d, 0xb1, 0x57, 0xa0, 0xec, 0xeb, 0xbe, 0x2d, 0xe7, 0xd3, 0x1c, - 0x67, 0xd9, 0x67, 0x9b, 0xcb, 0xf2, 0x2c, 0xfb, 0x6c, 0x73, 0x19, 0x39, 0xa8, 0xf6, 0x8b, 0x22, - 0xd4, 0x85, 0xde, 0xc4, 0xa8, 0x70, 0x94, 0x9a, 0x7b, 0x81, 0x87, 0x52, 0xf8, 0xdd, 0x36, 0xf5, - 0xb8, 0x9b, 0x49, 0x0e, 0x72, 0xf1, 0xfd, 0x81, 0x28, 0x31, 0x0c, 0xa7, 0x88, 0x48, 0x4a, 0xf5, - 0xe5, 0x63, 0x54, 0x7d, 0xe5, 0x40, 0xaa, 0x1f, 0x3a, 0x0e, 0xd5, 0xbf, 0x55, 0x84, 0xda, 0xb2, - 0xb5, 0x49, 0x8d, 0x5d, 0xc3, 0xe6, 0x67, 0x02, 0x4d, 0x6a, 0xd3, 0x80, 0x2e, 0x7a, 0xba, 0x41, - 0x57, 0xa9, 0x67, 0xf1, 0x0b, 0x6a, 0x58, 0xff, 0xe0, 0x23, 0x90, 0x3c, 0x13, 0x38, 0xdf, 0x87, - 0x07, 0xfb, 0xe6, 0x26, 0x4b, 0x30, 0x62, 0x52, 0xdf, 0xf2, 0xa8, 0xb9, 0x1a, 0x5b, 0xa8, 0x3c, - 0xa1, 0xa6, 0x9a, 0xf9, 0x58, 0xda, 0x9d, 0xbd, 0xc9, 0x51, 0xe5, 0xa0, 0x14, 0x2b, 0x96, 0x44, - 0x56, 0xd6, 0xe5, 0x3b, 0x7a, 0xd7, 0xcf, 0x2a, 0x63, 0xac, 0xcb, 0xaf, 0x66, 0xb3, 0x60, 0xbf, - 0xbc, 0x5a, 0x05, 0x4a, 0xcb, 0x6e, 0x4b, 0x7b, 0xbb, 0x04, 0xe1, 0x4d, 0x46, 0xe4, 0x3f, 0x14, - 0xa0, 0xae, 0x3b, 0x8e, 0x1b, 0xc8, 0x5b, 0x82, 0xc4, 0x0e, 0x3c, 0xe6, 0xbe, 0x30, 0x69, 0x6a, - 0x36, 0x02, 0x15, 0x9b, 0xb7, 0xe1, 0x86, 0x72, 0x2c, 0x05, 0xe3, 0xb2, 0x49, 0x37, 0xb5, 0x9f, - 0xbc, 0x92, 0xbf, 0x14, 0x07, 0xd8, 0x3d, 0x3e, 0xf7, 0x39, 0x18, 0x4f, 0x17, 0xf6, 0x30, 0xdb, - 0x41, 0xb9, 0x36, 0xe6, 0x8b, 0x00, 0x51, 0x4c, 0xc9, 0x7d, 0x70, 0x62, 0x59, 0x09, 0x27, 0xd6, - 0xe2, 0xe0, 0x0a, 0x0e, 0x0b, 0xdd, 0xd7, 0x71, 0xf5, 0x7a, 0xca, 0x71, 0xb5, 0x74, 0x14, 0xc2, - 0xee, 0xee, 0xac, 0xfa, 0xdf, 0x05, 0x18, 0x8f, 0x98, 0xe5, 0x09, 0xd9, 0xe7, 0x60, 0xd4, 0xa3, - 0xba, 0xd9, 0xd0, 0x03, 0x63, 0x8b, 0x87, 0x7a, 0x17, 0x78, 0x6c, 0xf6, 0xc9, 0xfd, 0xbd, 0xc9, - 0x51, 0x8c, 0x27, 0x60, 0x92, 0x8f, 0xe8, 0x50, 0x67, 0x84, 0x35, 0xab, 0x4d, 0xdd, 0x6e, 0x30, - 0xa0, 0xd7, 0x94, 0x2f, 0x58, 0x30, 0x82, 0xc1, 0x38, 0xa6, 0xf6, 0x6e, 0x01, 0xc6, 0xe2, 0x05, - 0x3e, 0x76, 0x8f, 0xda, 0x56, 0xd2, 0xa3, 0x36, 0x77, 0x04, 0xdf, 0xa4, 0x8f, 0x17, 0xed, 0x97, - 0xd5, 0x78, 0xd5, 0xb8, 0xe7, 0x2c, 0xee, 0x2c, 0x28, 0xdc, 0xd5, 0x59, 0xf0, 0xfe, 0xbf, 0xbc, - 0xa6, 0x9f, 0x95, 0x5b, 0x7e, 0x80, 0xad, 0xdc, 0xf7, 0xf2, 0x06, 0x9c, 0xd8, 0x2d, 0x2e, 0x43, - 0x39, 0x6e, 0x71, 0x69, 0x87, 0xb7, 0xb8, 0x0c, 0x1f, 0xd9, 0xa0, 0x73, 0x90, 0x9b, 0x5c, 0xaa, - 0xf7, 0xf5, 0x26, 0x97, 0xda, 0x71, 0xdd, 0xe4, 0x02, 0x79, 0x6f, 0x72, 0x79, 0xb3, 0x00, 0x63, - 0x66, 0xe2, 0xc4, 0x2c, 0xf7, 0x2d, 0xe4, 0x99, 0x6a, 0x92, 0x07, 0x70, 0xc5, 0x91, 0xa9, 0x24, - 0x0d, 0x53, 0x22, 0xb5, 0xff, 0x5b, 0x89, 0xcf, 0x03, 0xf7, 0xdb, 0x55, 0xfd, 0x6c, 0xd2, 0x55, - 0x7d, 0x31, 0xed, 0xaa, 0x3e, 0x11, 0x8b, 0x22, 0x8d, 0xbb, 0xab, 0x3f, 0x1e, 0x1b, 0x1e, 0x4b, - 0xfc, 0xe6, 0x94, 0x50, 0xd3, 0x19, 0x43, 0xe4, 0xc7, 0xa1, 0xea, 0xab, 0x3b, 0x27, 0xc5, 0xc2, - 0x26, 0xfa, 0x2e, 0xea, 0x3e, 0xc8, 0x90, 0x83, 0x59, 0xe2, 0x1e, 0xd5, 0x7d, 0xd7, 0x49, 0x5b, - 0xe2, 0xc8, 0xa9, 0x28, 0x53, 0xe3, 0x2e, 0xf3, 0xa1, 0x7b, 0xb8, 0xcc, 0x75, 0xa8, 0xdb, 0xba, - 0x1f, 0xac, 0x77, 0x4c, 0x3d, 0xa0, 0xa6, 0xec, 0x6f, 0xff, 0xe2, 0x60, 0x73, 0x15, 0x9b, 0xff, - 0x22, 0x83, 0x70, 0x39, 0x82, 0xc1, 0x38, 0x26, 0x31, 0x61, 0x84, 0xbd, 0xf2, 0xde, 0x60, 0xce, - 0xaa, 0x2b, 0x00, 0x0e, 0x23, 0x23, 0xf4, 0xf4, 0x2c, 0xc7, 0x70, 0x30, 0x81, 0xda, 0xc7, 0xab, - 0x5e, 0x1b, 0xc4, 0xab, 0x4e, 0x3e, 0x2d, 0x8c, 0x8d, 0x5d, 0xf5, 0xc1, 0xb8, 0x37, 0x6e, 0x34, - 0x8a, 0x2a, 0xc4, 0x78, 0x22, 0x26, 0x79, 0xb5, 0x37, 0x6b, 0x50, 0xbf, 0xae, 0x07, 0xd6, 0x0e, - 0xe5, 0x5b, 0x40, 0xc7, 0xe3, 0x87, 0xff, 0x6f, 0x05, 0x38, 0x93, 0x8c, 0xf3, 0x3b, 0x46, 0x67, - 0x3c, 0xbf, 0x35, 0x04, 0x33, 0xa5, 0x61, 0x9f, 0x52, 0x70, 0xb7, 0x7c, 0x4f, 0xd8, 0xe0, 0x71, - 0xbb, 0xe5, 0x9b, 0xfd, 0x04, 0x62, 0xff, 0xb2, 0xbc, 0x5f, 0xdc, 0xf2, 0x0f, 0xf6, 0xe5, 0x72, - 0xa9, 0x4d, 0x83, 0xe1, 0x07, 0x66, 0xd3, 0xa0, 0xfa, 0x40, 0x58, 0x6a, 0x9d, 0xd8, 0xa6, 0x41, - 0x2d, 0x67, 0xf0, 0x8a, 0x0c, 0x8d, 0x17, 0x68, 0xfd, 0x36, 0x1f, 0xf8, 0xa9, 0x76, 0xe5, 0xcc, - 0x65, 0x06, 0xce, 0x86, 0xee, 0x5b, 0x86, 0x9c, 0x33, 0x73, 0x5c, 0xa6, 0xa9, 0xae, 0xfb, 0x12, - 0x7b, 0xdc, 0xfc, 0x15, 0x05, 0x76, 0x74, 0xbb, 0x59, 0x31, 0xd7, 0xed, 0x66, 0x64, 0x0e, 0xca, - 0x0e, 0x5b, 0x7a, 0x97, 0x0e, 0x7d, 0x91, 0xd8, 0xf5, 0x6b, 0x74, 0x17, 0x79, 0x66, 0xed, 0x9d, - 0x22, 0x00, 0xab, 0xfe, 0xc1, 0xdc, 0xf7, 0x1f, 0x85, 0x61, 0xbf, 0xcb, 0x17, 0xda, 0x72, 0xb6, - 0x8f, 0x22, 0x7e, 0x04, 0x19, 0x55, 0x3a, 0x79, 0x1c, 0x2a, 0xaf, 0x77, 0x69, 0x57, 0xed, 0x45, - 0x87, 0xb6, 0xde, 0xe7, 0x19, 0x11, 0x45, 0xda, 0xf1, 0xb9, 0xe2, 0x94, 0x9b, 0xbf, 0x72, 0x5c, - 0x6e, 0xfe, 0x1a, 0x0c, 0x5f, 0x77, 0x79, 0x00, 0xa1, 0xf6, 0xd7, 0x45, 0x80, 0x28, 0x40, 0x8b, - 0x7c, 0xbb, 0x00, 0x0f, 0x87, 0x1d, 0x2e, 0x10, 0x26, 0x3b, 0xbf, 0xbf, 0x36, 0xb7, 0xcb, 0x3f, - 0xab, 0xb3, 0xf3, 0x11, 0x68, 0x35, 0x4b, 0x1c, 0x66, 0x97, 0x82, 0x20, 0x54, 0x69, 0xbb, 0x13, - 0xec, 0xce, 0x5b, 0x9e, 0x6c, 0x81, 0x99, 0x71, 0x80, 0x97, 0x25, 0x8f, 0xc8, 0x2a, 0xd7, 0x95, - 0xbc, 0x13, 0xa9, 0x14, 0x0c, 0x71, 0xc8, 0x16, 0x54, 0x1d, 0xf7, 0x55, 0x9f, 0xa9, 0x43, 0x36, - 0xc7, 0x17, 0x07, 0x57, 0xb9, 0x50, 0xab, 0x70, 0x11, 0xcb, 0x17, 0x1c, 0x76, 0xa4, 0xb2, 0xbf, - 0x55, 0x84, 0x53, 0x19, 0x7a, 0x20, 0x2f, 0xc2, 0xb8, 0x8c, 0x85, 0x8b, 0x2e, 0x72, 0x2e, 0x44, - 0x17, 0x39, 0x37, 0x53, 0x69, 0xd8, 0xc3, 0x4d, 0x5e, 0x05, 0xd0, 0x0d, 0x83, 0xfa, 0xfe, 0x8a, - 0x6b, 0x2a, 0x63, 0xf6, 0x85, 0xfd, 0xbd, 0x49, 0x98, 0x0d, 0xa9, 0x77, 0xf6, 0x26, 0x3f, 0x91, - 0x15, 0xde, 0x9a, 0xd2, 0x73, 0x94, 0x01, 0x63, 0x90, 0xe4, 0xcb, 0x00, 0x62, 0xdd, 0x16, 0x9e, - 0xc0, 0xbf, 0x87, 0xb3, 0x63, 0x4a, 0xdd, 0x75, 0x34, 0xf5, 0xf9, 0xae, 0xee, 0x04, 0x56, 0xb0, - 0x2b, 0x2e, 0x3c, 0xb9, 0x19, 0xa2, 0x60, 0x0c, 0x51, 0xfb, 0xdd, 0x22, 0x54, 0x95, 0x9b, 0xf5, - 0x3e, 0xf8, 0xd6, 0x5a, 0x09, 0xdf, 0xda, 0x11, 0x05, 0xb4, 0x66, 0x79, 0xd6, 0xdc, 0x94, 0x67, - 0x6d, 0x31, 0xbf, 0xa8, 0xbb, 0xfb, 0xd5, 0xbe, 0x57, 0x84, 0x31, 0xc5, 0x9a, 0xd7, 0xab, 0xf6, - 0x59, 0x38, 0x21, 0x36, 0xa2, 0x57, 0xf4, 0xdb, 0xe2, 0xee, 0x17, 0xae, 0xb0, 0xb2, 0x88, 0x21, - 0x6d, 0x24, 0x93, 0x30, 0xcd, 0xcb, 0x9a, 0xb5, 0x20, 0xad, 0xb3, 0x45, 0x88, 0xd8, 0xba, 0x12, - 0x8b, 0x25, 0xde, 0xac, 0x1b, 0xa9, 0x34, 0xec, 0xe1, 0x4e, 0xbb, 0xf5, 0xca, 0xc7, 0xe0, 0xd6, - 0xfb, 0x93, 0x02, 0x8c, 0x44, 0xfa, 0x3a, 0x76, 0xa7, 0xde, 0x66, 0xd2, 0xa9, 0x37, 0x9b, 0xbb, - 0x39, 0xf4, 0x71, 0xe9, 0xfd, 0xa7, 0x61, 0x48, 0xc4, 0x55, 0x93, 0x0d, 0x38, 0x67, 0x65, 0x46, - 0x87, 0xc5, 0x46, 0x9b, 0xf0, 0xa0, 0xf0, 0x52, 0x5f, 0x4e, 0xbc, 0x0b, 0x0a, 0xe9, 0x42, 0x75, - 0x87, 0x7a, 0x81, 0x65, 0x50, 0x55, 0xbf, 0xc5, 0xdc, 0x26, 0x99, 0x74, 0x5c, 0x86, 0x3a, 0xbd, - 0x29, 0x05, 0x60, 0x28, 0x8a, 0x6c, 0x40, 0x85, 0x9a, 0x2d, 0xaa, 0x6e, 0xe3, 0xc9, 0x79, 0xd7, - 0x65, 0xa8, 0x4f, 0xf6, 0xe6, 0xa3, 0x80, 0x26, 0x3e, 0xd4, 0x6c, 0xb5, 0x31, 0x25, 0xdb, 0xe1, - 0xe0, 0x06, 0x56, 0xb8, 0xc5, 0x15, 0x1d, 0xd4, 0x0f, 0x49, 0x18, 0xc9, 0x21, 0xdb, 0xa1, 0x87, - 0xac, 0x72, 0x44, 0x83, 0xc7, 0x5d, 0xfc, 0x63, 0x3e, 0xd4, 0x6e, 0xe9, 0x01, 0xf5, 0xda, 0xba, - 0xb7, 0x2d, 0x57, 0x1b, 0x83, 0xd7, 0xf0, 0x25, 0x85, 0x14, 0xd5, 0x30, 0x24, 0x61, 0x24, 0x87, - 0xb8, 0x50, 0x0b, 0xa4, 0xf9, 0xac, 0xdc, 0x80, 0x83, 0x0b, 0x55, 0x86, 0xb8, 0x2f, 0xe3, 0xab, - 0xd5, 0x2b, 0x46, 0x32, 0xc8, 0x4e, 0xe2, 0x3a, 0x62, 0x71, 0x09, 0x75, 0x23, 0x87, 0x3b, 0x59, - 0x42, 0x45, 0xd3, 0x4d, 0xf6, 0xb5, 0xc6, 0xda, 0x3b, 0x95, 0x68, 0x58, 0xbe, 0xdf, 0x4e, 0xae, - 0xa7, 0x93, 0x4e, 0xae, 0x0b, 0x69, 0x27, 0x57, 0x6a, 0x7f, 0xf3, 0xf0, 0x11, 0x99, 0x29, 0xf7, - 0x52, 0xf9, 0x18, 0xdc, 0x4b, 0x4f, 0x41, 0x7d, 0x87, 0x8f, 0x04, 0xe2, 0x6a, 0x9f, 0x0a, 0x9f, - 0x46, 0xf8, 0xc8, 0x7e, 0x33, 0x22, 0x63, 0x9c, 0x87, 0x65, 0x91, 0x3f, 0x60, 0x08, 0xef, 0x46, - 0x95, 0x59, 0x9a, 0x11, 0x19, 0xe3, 0x3c, 0x3c, 0x98, 0xcb, 0x72, 0xb6, 0x45, 0x86, 0x61, 0x9e, - 0x41, 0x04, 0x73, 0x29, 0x22, 0x46, 0xe9, 0xe4, 0x12, 0x54, 0xbb, 0xe6, 0xa6, 0xe0, 0xad, 0x72, - 0x5e, 0x6e, 0x61, 0xae, 0xcf, 0x2f, 0xc8, 0xab, 0x86, 0x54, 0x2a, 0x2b, 0x49, 0x5b, 0xef, 0xa8, - 0x04, 0xbe, 0x36, 0x94, 0x25, 0x59, 0x89, 0xc8, 0x18, 0xe7, 0x21, 0x9f, 0x82, 0x31, 0x8f, 0x9a, - 0x5d, 0x83, 0x86, 0xb9, 0x84, 0x77, 0x8a, 0x88, 0x3f, 0x4d, 0xc4, 0x53, 0x30, 0xc5, 0xd9, 0xc7, - 0x49, 0x56, 0x1f, 0x28, 0xf4, 0xf4, 0xa7, 0x05, 0x20, 0xbd, 0xc1, 0xcf, 0x64, 0x0b, 0x86, 0x1c, - 0xee, 0xfd, 0xca, 0x7d, 0x9b, 0x72, 0xcc, 0x89, 0x26, 0x86, 0x25, 0x49, 0x90, 0xf8, 0xc4, 0x81, - 0x2a, 0xbd, 0x1d, 0x50, 0xcf, 0x09, 0x0f, 0x43, 0x1c, 0xcd, 0xcd, 0xcd, 0x62, 0x35, 0x20, 0x91, - 0x31, 0x94, 0xa1, 0xfd, 0xbc, 0x08, 0xf5, 0x18, 0xdf, 0xbd, 0x16, 0x95, 0xfc, 0x3c, 0xb6, 0x70, - 0x3a, 0xad, 0x7b, 0xb6, 0xec, 0x61, 0xb1, 0xf3, 0xd8, 0x32, 0x09, 0x97, 0x31, 0xce, 0x47, 0x66, - 0x00, 0xda, 0xba, 0x1f, 0x50, 0x8f, 0xcf, 0xbe, 0xa9, 0x53, 0xd0, 0x2b, 0x61, 0x0a, 0xc6, 0xb8, - 0xc8, 0x45, 0x79, 0xf7, 0x76, 0x39, 0x79, 0x6b, 0x5d, 0x9f, 0x8b, 0xb5, 0x2b, 0x47, 0x70, 0xb1, - 0x36, 0x69, 0xc1, 0xb8, 0x2a, 0xb5, 0x4a, 0x3d, 0xdc, 0x9d, 0x66, 0x62, 0xfd, 0x92, 0x82, 0xc0, - 0x1e, 0x50, 0xed, 0x9d, 0x02, 0x8c, 0x26, 0x5c, 0x1e, 0xe2, 0xbe, 0x39, 0x15, 0xba, 0x9f, 0xb8, - 0x6f, 0x2e, 0x16, 0x71, 0xff, 0x24, 0x0c, 0x09, 0x05, 0xa5, 0x23, 0xf2, 0x84, 0x0a, 0x51, 0xa6, - 0xb2, 0xb1, 0x4c, 0x3a, 0x55, 0xd3, 0x63, 0x99, 0xf4, 0xba, 0xa2, 0x4a, 0x17, 0xbe, 0x7a, 0x51, - 0xba, 0x5e, 0x5f, 0xbd, 0xa0, 0x63, 0xc8, 0xa1, 0x7d, 0x9f, 0x97, 0x3b, 0xf0, 0x76, 0xc3, 0xb5, - 0x5c, 0x0b, 0x86, 0x65, 0x14, 0x96, 0xec, 0x1a, 0x2f, 0xe6, 0xf0, 0xc3, 0x70, 0x1c, 0x19, 0x6f, - 0xa4, 0x1b, 0xdb, 0x37, 0x36, 0x37, 0x51, 0xa1, 0x93, 0xcb, 0x50, 0x73, 0x9d, 0x05, 0xdd, 0xb2, - 0xbb, 0x9e, 0x1a, 0xd9, 0x3f, 0xc2, 0xc6, 0xaa, 0x1b, 0x8a, 0x78, 0x67, 0x6f, 0xf2, 0x4c, 0xf8, - 0x92, 0x28, 0x24, 0x46, 0x39, 0xb5, 0xbf, 0x2f, 0x01, 0x8f, 0xc0, 0x21, 0xcf, 0x41, 0xad, 0x4d, - 0x8d, 0x2d, 0xdd, 0xb1, 0x7c, 0x75, 0x63, 0x26, 0x5b, 0x9f, 0xd7, 0x56, 0x14, 0xf1, 0x0e, 0x53, - 0xc1, 0x6c, 0x73, 0x99, 0x07, 0xb9, 0x47, 0xbc, 0xc4, 0x80, 0xa1, 0x96, 0xef, 0xeb, 0x1d, 0x2b, - 0xf7, 0x06, 0xb0, 0xb8, 0xa1, 0x50, 0x0c, 0x03, 0xe2, 0x19, 0x25, 0x34, 0x31, 0xa0, 0xd2, 0xb1, - 0x75, 0xcb, 0xc9, 0xfd, 0xa7, 0x18, 0x56, 0x83, 0x55, 0x86, 0x24, 0x9c, 0x52, 0xfc, 0x11, 0x05, - 0x36, 0xe9, 0x42, 0xdd, 0x37, 0x3c, 0xbd, 0xed, 0x6f, 0xe9, 0x33, 0xcf, 0x3c, 0x9b, 0xdb, 0xcc, - 0x8b, 0x44, 0x89, 0x59, 0x67, 0x0e, 0x67, 0x57, 0x9a, 0x57, 0x66, 0x67, 0x9e, 0x79, 0x16, 0xe3, - 0x72, 0xe2, 0x62, 0x9f, 0x79, 0x6a, 0x46, 0xf6, 0xdc, 0x23, 0x17, 0xfb, 0xcc, 0x53, 0x33, 0x18, - 0x97, 0xa3, 0xfd, 0x5d, 0x01, 0x6a, 0x21, 0x2f, 0x59, 0x07, 0x60, 0x63, 0x88, 0xbc, 0x53, 0xf0, - 0x50, 0xf7, 0xfb, 0xf3, 0x75, 0xfd, 0x7a, 0x98, 0x19, 0x63, 0x40, 0x19, 0x97, 0x2e, 0x16, 0x8f, - 0xfa, 0xd2, 0xc5, 0x69, 0xa8, 0x6d, 0xe9, 0x8e, 0xe9, 0x6f, 0xe9, 0xdb, 0x62, 0x28, 0x8d, 0x5d, - 0x43, 0x7a, 0x45, 0x25, 0x60, 0xc4, 0xa3, 0xfd, 0xf6, 0x10, 0x88, 0x5d, 0x5b, 0xd6, 0xd9, 0x4d, - 0xcb, 0x17, 0x61, 0xc3, 0x05, 0x9e, 0x33, 0xec, 0xec, 0xf3, 0x92, 0x8e, 0x21, 0x07, 0x39, 0x0b, - 0xa5, 0xb6, 0xe5, 0xc8, 0x3d, 0x1b, 0xee, 0xb2, 0x5b, 0xb1, 0x1c, 0x64, 0x34, 0x9e, 0xa4, 0xdf, - 0x96, 0x11, 0x5f, 0x22, 0x49, 0xbf, 0x8d, 0x8c, 0xc6, 0x16, 0xd1, 0xb6, 0xeb, 0x6e, 0xb3, 0x6e, - 0xab, 0x02, 0xc3, 0xca, 0x7c, 0x2a, 0xe7, 0x8b, 0xe8, 0xe5, 0x64, 0x12, 0xa6, 0x79, 0xc9, 0x3a, - 0x3c, 0xf2, 0x06, 0xf5, 0x5c, 0x39, 0x4e, 0x35, 0x6d, 0x4a, 0x3b, 0x0a, 0x46, 0x18, 0x41, 0x3c, - 0xbe, 0xec, 0x8b, 0xd9, 0x2c, 0xd8, 0x2f, 0x2f, 0x8f, 0x54, 0xd5, 0xbd, 0x16, 0x0d, 0x56, 0x3d, - 0xd7, 0xa0, 0xbe, 0x6f, 0x39, 0x2d, 0x05, 0x3b, 0x14, 0xc1, 0xae, 0x65, 0xb3, 0x60, 0xbf, 0xbc, - 0xe4, 0x65, 0x98, 0x10, 0x49, 0xc2, 0x5c, 0x98, 0xdd, 0xd1, 0x2d, 0x5b, 0xdf, 0xb0, 0x6c, 0xf5, - 0x83, 0xb5, 0x51, 0xb1, 0x33, 0xb2, 0xd6, 0x87, 0x07, 0xfb, 0xe6, 0x26, 0x57, 0x61, 0x5c, 0xed, - 0x8b, 0xad, 0x52, 0xaf, 0x19, 0xee, 0xe4, 0x8f, 0x36, 0x2e, 0xb0, 0x15, 0xeb, 0x3c, 0xed, 0x78, - 0xd4, 0xe0, 0x76, 0x63, 0x8a, 0x0b, 0x7b, 0xf2, 0x11, 0x84, 0x33, 0x7c, 0xbb, 0x7e, 0xbd, 0x33, - 0xe7, 0xba, 0xb6, 0xe9, 0xde, 0x72, 0x54, 0xdd, 0x85, 0x69, 0xc6, 0xb7, 0xc2, 0x9a, 0x99, 0x1c, - 0xd8, 0x27, 0x27, 0xab, 0x39, 0x4f, 0x99, 0x77, 0x6f, 0x39, 0x69, 0x54, 0x88, 0x6a, 0xde, 0xec, - 0xc3, 0x83, 0x7d, 0x73, 0x93, 0x05, 0x20, 0xe9, 0x1a, 0xac, 0x77, 0xb8, 0x39, 0x37, 0xda, 0x38, - 0x23, 0xae, 0x07, 0x49, 0xa7, 0x62, 0x46, 0x0e, 0xb2, 0x0c, 0xa7, 0xd3, 0x54, 0x26, 0x8e, 0x9f, - 0x11, 0x18, 0x15, 0x17, 0x83, 0x62, 0x46, 0x3a, 0x66, 0xe6, 0xd2, 0x7e, 0xa7, 0x08, 0xa3, 0x89, - 0xf3, 0xe4, 0x0f, 0xdc, 0xb9, 0x5d, 0x66, 0x43, 0xb7, 0xfd, 0xd6, 0xd2, 0xfc, 0x15, 0xaa, 0x9b, - 0xd4, 0xbb, 0x46, 0xd5, 0xd9, 0x7f, 0x3e, 0xa8, 0xac, 0x24, 0x52, 0x30, 0xc5, 0x49, 0x36, 0xa1, - 0x22, 0x3c, 0xc2, 0x79, 0xff, 0x14, 0xa1, 0x74, 0xc4, 0xdd, 0xc2, 0xf2, 0xf7, 0x2a, 0xae, 0x47, - 0x51, 0xc0, 0x6b, 0x01, 0x8c, 0xc4, 0x39, 0xd8, 0x40, 0x12, 0x99, 0x9b, 0xc3, 0x09, 0x53, 0x73, - 0x09, 0x4a, 0x41, 0x30, 0xe8, 0x89, 0x60, 0xb1, 0xc3, 0xb0, 0xb6, 0x8c, 0x0c, 0x43, 0xdb, 0x64, - 0xdf, 0xce, 0xf7, 0x2d, 0xd7, 0x91, 0xd7, 0x43, 0xaf, 0xc3, 0x70, 0x20, 0x9d, 0x6c, 0x83, 0x9d, - 0x68, 0xe6, 0x36, 0x8a, 0x72, 0xb0, 0x29, 0x2c, 0xed, 0x4f, 0x8b, 0x50, 0x0b, 0x17, 0xc4, 0x07, - 0xb8, 0x76, 0xd9, 0x85, 0x5a, 0x18, 0x6e, 0x94, 0xfb, 0xe7, 0x73, 0x51, 0x14, 0x0c, 0x5f, 0xc3, - 0x85, 0xaf, 0x18, 0xc9, 0x88, 0x87, 0x32, 0x95, 0x72, 0x84, 0x32, 0x75, 0x60, 0x38, 0xf0, 0xac, - 0x56, 0x4b, 0x5a, 0xe7, 0x79, 0x62, 0x99, 0x42, 0x75, 0xad, 0x09, 0x40, 0xa9, 0x59, 0xf1, 0x82, - 0x4a, 0x8c, 0xf6, 0x1a, 0x8c, 0xa7, 0x39, 0xb9, 0xe9, 0x6a, 0x6c, 0x51, 0xb3, 0x6b, 0x2b, 0x1d, - 0x47, 0xa6, 0xab, 0xa4, 0x63, 0xc8, 0xc1, 0x96, 0xaf, 0xec, 0x33, 0xbd, 0xe1, 0x3a, 0xca, 0x7c, - 0xe4, 0xab, 0x80, 0x35, 0x49, 0xc3, 0x30, 0x55, 0xfb, 0xab, 0x12, 0x9c, 0x8d, 0xdc, 0x1a, 0x2b, - 0xba, 0xa3, 0xb7, 0x0e, 0xf0, 0xc7, 0xb1, 0x0f, 0xce, 0x88, 0x1c, 0xf6, 0xee, 0xfc, 0xd2, 0x03, - 0x70, 0x77, 0xfe, 0x3f, 0x14, 0x81, 0x87, 0x46, 0x92, 0xaf, 0xc2, 0x88, 0x1e, 0xfb, 0xd9, 0xa4, - 0xfc, 0x9c, 0x97, 0x73, 0x7f, 0x4e, 0x1e, 0x81, 0x19, 0x86, 0xfa, 0xc4, 0xa9, 0x98, 0x10, 0x48, - 0x5c, 0xa8, 0x6e, 0xea, 0xb6, 0xcd, 0x6c, 0xa1, 0xdc, 0xdb, 0x34, 0x09, 0xe1, 0xbc, 0x99, 0x2f, - 0x48, 0x68, 0x0c, 0x85, 0x90, 0x37, 0x0b, 0x30, 0xea, 0xc5, 0x97, 0x49, 0xf2, 0x83, 0xe4, 0xd9, - 0xc4, 0x8f, 0xa1, 0xc5, 0x03, 0x8b, 0xe2, 0x6b, 0xb1, 0xa4, 0x4c, 0xed, 0x2f, 0x0b, 0x30, 0xda, - 0xb4, 0x2d, 0xd3, 0x72, 0x5a, 0xc7, 0x78, 0x75, 0xff, 0x0d, 0xa8, 0xf8, 0xb6, 0x65, 0xd2, 0x01, - 0x67, 0x13, 0x31, 0x8f, 0x31, 0x00, 0x14, 0x38, 0xc9, 0x7f, 0x01, 0x94, 0x0e, 0xf0, 0x2f, 0x80, - 0x5f, 0x0d, 0x81, 0x0c, 0xf2, 0x25, 0x5d, 0xa8, 0xb5, 0xd4, 0x15, 0xe3, 0xb2, 0x8e, 0x57, 0x72, - 0x5c, 0x4f, 0x97, 0xb8, 0xac, 0x5c, 0x8c, 0xfd, 0x21, 0x11, 0x23, 0x49, 0x84, 0x26, 0xff, 0x72, - 0x3a, 0x9f, 0xf3, 0x2f, 0xa7, 0x42, 0x5c, 0xef, 0x7f, 0x4e, 0x75, 0x28, 0x6f, 0x05, 0x41, 0x47, - 0x36, 0xa6, 0xc1, 0xa3, 0xb8, 0xa3, 0x1b, 0x52, 0x84, 0x4d, 0xc4, 0xde, 0x91, 0x43, 0x33, 0x11, - 0x8e, 0x1e, 0xfe, 0xd5, 0x6a, 0x2e, 0x57, 0xc0, 0x40, 0x5c, 0x04, 0x7b, 0x47, 0x0e, 0x4d, 0xbe, - 0x02, 0xf5, 0xc0, 0xd3, 0x1d, 0x7f, 0xd3, 0xf5, 0xda, 0xd4, 0x93, 0x6b, 0xd4, 0x85, 0x1c, 0x3f, - 0xfa, 0x5c, 0x8b, 0xd0, 0xc4, 0x4e, 0x64, 0x82, 0x84, 0x71, 0x69, 0x64, 0x1b, 0xaa, 0x5d, 0x53, - 0x14, 0x4c, 0xba, 0x9f, 0x66, 0xf3, 0xfc, 0xbb, 0x35, 0x16, 0x0e, 0xa0, 0xde, 0x30, 0x14, 0x90, - 0xfc, 0x81, 0xdb, 0xf0, 0x51, 0xfd, 0xc0, 0x2d, 0xde, 0x1a, 0xb3, 0xae, 0x6f, 0x20, 0x6d, 0x69, - 0xd7, 0x3a, 0x2d, 0x19, 0xcd, 0xb4, 0x90, 0xdb, 0xe4, 0x14, 0x22, 0xeb, 0xa1, 0x6d, 0xec, 0xb4, - 0x50, 0xc9, 0xd0, 0xda, 0x20, 0x77, 0x09, 0x88, 0x91, 0xf8, 0xcd, 0x89, 0x38, 0x53, 0x34, 0x7d, - 0xb0, 0xf1, 0x20, 0xfc, 0xdf, 0x46, 0xec, 0x9a, 0xe5, 0xcc, 0xff, 0x99, 0x68, 0x7f, 0x56, 0x84, - 0xd2, 0xda, 0x72, 0x53, 0x5c, 0x9d, 0xc8, 0xff, 0x21, 0x44, 0x9b, 0xdb, 0x56, 0xe7, 0x26, 0xf5, - 0xac, 0xcd, 0x5d, 0xb9, 0xf4, 0x8e, 0x5d, 0x9d, 0x98, 0xe6, 0xc0, 0x8c, 0x5c, 0xe4, 0x15, 0x18, - 0x31, 0xf4, 0x39, 0xea, 0x05, 0x83, 0x38, 0x16, 0xf8, 0xe1, 0xc9, 0xb9, 0xd9, 0x28, 0x3b, 0x26, - 0xc0, 0xc8, 0x3a, 0x80, 0x11, 0x41, 0x97, 0x0e, 0xed, 0x0e, 0x89, 0x01, 0xc7, 0x80, 0x08, 0x42, - 0x6d, 0x9b, 0xb1, 0x72, 0xd4, 0xf2, 0x61, 0x50, 0x79, 0xcb, 0xb9, 0xa6, 0xf2, 0x62, 0x04, 0xa3, - 0x39, 0x30, 0x9a, 0xf8, 0xf7, 0x09, 0xf9, 0x24, 0x54, 0xdd, 0x4e, 0x6c, 0x38, 0xad, 0xf1, 0xb8, - 0xc9, 0xea, 0x0d, 0x49, 0xbb, 0xb3, 0x37, 0x39, 0xba, 0xec, 0xb6, 0x2c, 0x43, 0x11, 0x30, 0x64, - 0x27, 0x1a, 0x0c, 0xf1, 0x13, 0x4f, 0xea, 0xcf, 0x27, 0x7c, 0xee, 0xe0, 0x3f, 0x27, 0xf0, 0x51, - 0xa6, 0x68, 0x5f, 0x2b, 0x43, 0xb4, 0xb7, 0x46, 0x7c, 0x18, 0x12, 0x11, 0xdd, 0x72, 0xe4, 0x3e, - 0xd6, 0xe0, 0x71, 0x29, 0x8a, 0xb4, 0xa0, 0xf4, 0x9a, 0xbb, 0x91, 0x7b, 0xe0, 0x8e, 0x1d, 0x75, - 0x16, 0xbe, 0xb2, 0x18, 0x01, 0x99, 0x04, 0xf2, 0xdf, 0x0b, 0x70, 0xd2, 0x4f, 0x9b, 0xbe, 0xb2, - 0x39, 0x60, 0x7e, 0x1b, 0x3f, 0x6d, 0x4c, 0xcb, 0x00, 0xd7, 0x7e, 0xc9, 0xd8, 0x5b, 0x16, 0xa6, - 0x7f, 0xb1, 0xe9, 0x25, 0x9b, 0xd3, 0x62, 0xce, 0xff, 0xf5, 0x25, 0xf5, 0x9f, 0xa4, 0xa1, 0x14, - 0xa5, 0x7d, 0xa3, 0x08, 0xf5, 0xd8, 0x68, 0x9d, 0xfb, 0x87, 0x3a, 0xb7, 0x53, 0x3f, 0xd4, 0x59, - 0x1d, 0x7c, 0x0f, 0x38, 0x2a, 0xd5, 0x71, 0xff, 0x53, 0xe7, 0x47, 0x45, 0x28, 0xad, 0xcf, 0x2f, - 0x24, 0x17, 0xad, 0x85, 0xfb, 0xb0, 0x68, 0xdd, 0x82, 0xe1, 0x8d, 0xae, 0x65, 0x07, 0x96, 0x93, - 0xfb, 0x32, 0x06, 0xf5, 0xff, 0x21, 0xb9, 0xc7, 0x20, 0x50, 0x51, 0xc1, 0x93, 0x16, 0x0c, 0xb7, - 0xc4, 0x6d, 0x78, 0xb9, 0x23, 0xe3, 0xe4, 0xad, 0x7a, 0x42, 0x90, 0x7c, 0x41, 0x85, 0xae, 0xed, - 0x82, 0xfc, 0x91, 0xfa, 0x7d, 0xd7, 0xa6, 0xf6, 0x15, 0x08, 0xad, 0x80, 0xfb, 0x2f, 0xfc, 0x6f, - 0x0a, 0x90, 0x34, 0x7c, 0xee, 0x7f, 0x6b, 0xda, 0x4e, 0xb7, 0xa6, 0xf9, 0xa3, 0xe8, 0x7c, 0xd9, - 0x0d, 0x4a, 0xfb, 0xad, 0x22, 0x0c, 0xdd, 0xb7, 0x03, 0xb4, 0x34, 0x11, 0xe4, 0x37, 0x97, 0x73, - 0x60, 0xec, 0x1b, 0xe2, 0xd7, 0x4e, 0x85, 0xf8, 0xe5, 0xfd, 0x63, 0xea, 0x3d, 0x02, 0xfc, 0xfe, - 0xa8, 0x00, 0x72, 0x58, 0x5e, 0x72, 0xfc, 0x40, 0x77, 0x0c, 0x4a, 0x8c, 0x70, 0x0e, 0xc8, 0x1b, - 0x49, 0x22, 0xa3, 0xad, 0xc4, 0xb4, 0xcf, 0x9f, 0xd5, 0x98, 0x4f, 0x3e, 0x0e, 0xd5, 0x2d, 0xd7, - 0x0f, 0xf8, 0x38, 0x5f, 0x4c, 0x7a, 0x97, 0xae, 0x48, 0x3a, 0x86, 0x1c, 0xe9, 0x1d, 0xd7, 0x4a, - 0xff, 0x1d, 0x57, 0xed, 0xbb, 0x45, 0x18, 0x79, 0xbf, 0x9c, 0x02, 0xce, 0x0a, 0x89, 0x2c, 0xe5, - 0x0c, 0x89, 0x2c, 0x1f, 0x26, 0x24, 0x52, 0xfb, 0x71, 0x01, 0xe0, 0xbe, 0x1d, 0x41, 0x36, 0x93, - 0xd1, 0x8a, 0xb9, 0xdb, 0x55, 0x76, 0xac, 0xe2, 0x6f, 0x54, 0x54, 0x95, 0x78, 0xa4, 0xe2, 0x5b, - 0x05, 0x18, 0xd3, 0x13, 0xd1, 0x7f, 0xb9, 0x4d, 0xcb, 0x54, 0x30, 0x61, 0x78, 0xdc, 0x32, 0x49, - 0xc7, 0x94, 0x58, 0xf2, 0x7c, 0x74, 0xfd, 0xed, 0xf5, 0xa8, 0xd9, 0xf7, 0xdc, 0x5b, 0xcb, 0xcd, - 0x9c, 0x04, 0xe7, 0x3d, 0xa2, 0x2d, 0x4b, 0x47, 0x12, 0x6d, 0x19, 0x3f, 0x47, 0x56, 0xbe, 0xeb, - 0x39, 0xb2, 0x1d, 0xa8, 0x6d, 0x7a, 0x6e, 0x9b, 0x07, 0x34, 0xca, 0x7f, 0xad, 0x5e, 0xce, 0x31, - 0xa7, 0x44, 0x7f, 0x19, 0x8f, 0x7c, 0x3c, 0x0b, 0x0a, 0x1f, 0x23, 0x51, 0xdc, 0x2d, 0xee, 0x0a, - 0xa9, 0x43, 0x47, 0x29, 0x35, 0x1c, 0x4b, 0xd6, 0x04, 0x3a, 0x2a, 0x31, 0xc9, 0x20, 0xc6, 0xe1, - 0xfb, 0x13, 0xc4, 0xa8, 0xfd, 0xa8, 0xac, 0x06, 0xb0, 0x07, 0xee, 0xa6, 0xc5, 0xf7, 0xff, 0xd1, - 0xd5, 0xf4, 0xb9, 0xd2, 0xe1, 0xfb, 0x78, 0xae, 0xb4, 0x7a, 0x34, 0xe7, 0x4a, 0x6b, 0x87, 0x38, - 0x57, 0xba, 0x57, 0x82, 0xd4, 0xa2, 0xeb, 0x83, 0x0d, 0x96, 0x7f, 0x52, 0x1b, 0x2c, 0x6f, 0x17, - 0x21, 0x1a, 0x45, 0x0e, 0x19, 0x80, 0xf2, 0x32, 0x54, 0xdb, 0xfa, 0xed, 0x79, 0x6a, 0xeb, 0xbb, - 0x79, 0xfe, 0xae, 0xb9, 0x22, 0x31, 0x30, 0x44, 0x23, 0x3e, 0x80, 0x15, 0xde, 0x70, 0x9d, 0xdb, - 0x55, 0x1d, 0x5d, 0x96, 0x2d, 0x9c, 0x61, 0xd1, 0x3b, 0xc6, 0xc4, 0x68, 0x7f, 0x58, 0x04, 0x79, - 0x15, 0x3a, 0xa1, 0x50, 0xd9, 0xb4, 0x6e, 0x53, 0x33, 0x77, 0x38, 0x69, 0xec, 0x9f, 0xc7, 0xc2, - 0x17, 0xcf, 0x09, 0x28, 0xd0, 0xb9, 0x93, 0x55, 0xec, 0xad, 0x48, 0xfd, 0xe5, 0x70, 0xb2, 0xc6, - 0xf7, 0x68, 0xa4, 0x93, 0x55, 0x90, 0x50, 0xc9, 0x10, 0x3e, 0x5d, 0xbe, 0xcd, 0x9e, 0x7b, 0x2b, - 0x29, 0xb1, 0x5d, 0xaf, 0x7c, 0xba, 0xbe, 0x38, 0x58, 0x2e, 0x65, 0x34, 0xbe, 0xf4, 0xc3, 0x9f, - 0x5c, 0x78, 0xe8, 0xc7, 0x3f, 0xb9, 0xf0, 0xd0, 0xbb, 0x3f, 0xb9, 0xf0, 0xd0, 0xd7, 0xf6, 0x2f, - 0x14, 0x7e, 0xb8, 0x7f, 0xa1, 0xf0, 0xe3, 0xfd, 0x0b, 0x85, 0x77, 0xf7, 0x2f, 0x14, 0xfe, 0x7c, - 0xff, 0x42, 0xe1, 0xbf, 0xfc, 0xc5, 0x85, 0x87, 0xbe, 0xf8, 0x5c, 0x54, 0x84, 0x69, 0x55, 0x84, - 0x69, 0x25, 0x70, 0xba, 0xb3, 0xdd, 0x9a, 0x66, 0x45, 0x88, 0x28, 0xaa, 0x08, 0xff, 0x18, 0x00, - 0x00, 0xff, 0xff, 0xa1, 0xe2, 0x38, 0xfd, 0x6e, 0x95, 0x00, 0x00, + 0x75, 0xa6, 0xfa, 0xbf, 0xfb, 0x34, 0xc9, 0xe1, 0xdc, 0x19, 0x8d, 0x38, 0xa3, 0xd1, 0x70, 0x5c, + 0xb2, 0xe4, 0xf1, 0xda, 0x26, 0x57, 0x5c, 0xfd, 0xf9, 0x57, 0x62, 0x93, 0x43, 0x0e, 0x67, 0xc8, + 0x19, 0xfa, 0x34, 0x39, 0x92, 0xad, 0xb5, 0xb5, 0xc5, 0xea, 0xcb, 0x66, 0x89, 0xd5, 0x55, 0xad, + 0xaa, 0x6a, 0xce, 0x50, 0xde, 0x85, 0x7f, 0xb4, 0x80, 0xb4, 0x58, 0x2c, 0x76, 0xe1, 0x27, 0x03, + 0x0b, 0xef, 0x62, 0x17, 0xbb, 0xf0, 0x83, 0xe1, 0x7d, 0x58, 0x40, 0xfb, 0x60, 0x60, 0xe3, 0x38, + 0x08, 0x12, 0x27, 0xc8, 0x8f, 0x1f, 0x02, 0x44, 0x79, 0x21, 0x62, 0x06, 0x79, 0x48, 0x80, 0x18, + 0x46, 0x0c, 0x24, 0xf6, 0xc0, 0x88, 0x83, 0xfb, 0x57, 0x7f, 0x5d, 0x3d, 0x43, 0x76, 0x91, 0xa3, + 0x51, 0xa2, 0xb7, 0xaa, 0x7b, 0xcf, 0xfd, 0xce, 0xad, 0x53, 0xf7, 0xe7, 0xdc, 0x73, 0xce, 0xbd, + 0x17, 0x16, 0xdb, 0xa6, 0xbf, 0xd5, 0xdb, 0x98, 0x32, 0x9c, 0xce, 0xb4, 0xdd, 0xeb, 0xe8, 0x5d, + 0xd7, 0x79, 0x8d, 0x3f, 0x6c, 0x5a, 0xce, 0xad, 0xe9, 0xee, 0x76, 0x7b, 0x5a, 0xef, 0x9a, 0x5e, + 0x98, 0xb2, 0xf3, 0x94, 0x6e, 0x75, 0xb7, 0xf4, 0xa7, 0xa6, 0xdb, 0xd4, 0xa6, 0xae, 0xee, 0xd3, + 0xd6, 0x54, 0xd7, 0x75, 0x7c, 0x87, 0x3c, 0x17, 0x02, 0x4d, 0x29, 0xa0, 0x29, 0x55, 0x6c, 0xaa, + 0xbb, 0xdd, 0x9e, 0x62, 0x40, 0x61, 0x8a, 0x02, 0x3a, 0xf7, 0x89, 0x48, 0x0d, 0xda, 0x4e, 0xdb, + 0x99, 0xe6, 0x78, 0x1b, 0xbd, 0x4d, 0xfe, 0xc6, 0x5f, 0xf8, 0x93, 0xe0, 0x73, 0x4e, 0xdb, 0x7e, + 0xde, 0x9b, 0x32, 0x1d, 0x56, 0xad, 0x69, 0xc3, 0x71, 0xe9, 0xf4, 0x4e, 0x5f, 0x5d, 0xce, 0x3d, + 0x1d, 0xd2, 0x74, 0x74, 0x63, 0xcb, 0xb4, 0xa9, 0xbb, 0xab, 0xbe, 0x65, 0xda, 0xa5, 0x9e, 0xd3, + 0x73, 0x0d, 0x7a, 0xa8, 0x52, 0xde, 0x74, 0x87, 0xfa, 0x7a, 0x1a, 0xaf, 0xe9, 0x41, 0xa5, 0xdc, + 0x9e, 0xed, 0x9b, 0x9d, 0x7e, 0x36, 0xcf, 0xde, 0xab, 0x80, 0x67, 0x6c, 0xd1, 0x8e, 0x9e, 0x2c, + 0xa7, 0xfd, 0x10, 0xe0, 0xd4, 0xec, 0x86, 0xe7, 0xbb, 0xba, 0xe1, 0xaf, 0x3a, 0xad, 0x35, 0xda, + 0xe9, 0x5a, 0xba, 0x4f, 0xc9, 0x36, 0x54, 0x59, 0xdd, 0x5a, 0xba, 0xaf, 0x4f, 0xe4, 0x2e, 0xe6, + 0x2e, 0xd5, 0x67, 0x66, 0xa7, 0x86, 0xfc, 0x17, 0x53, 0x2b, 0x12, 0xa8, 0x31, 0xb2, 0xbf, 0x37, + 0x59, 0x55, 0x6f, 0x18, 0x30, 0x20, 0xdf, 0xca, 0xc1, 0x88, 0xed, 0xb4, 0x68, 0x93, 0x5a, 0xd4, + 0xf0, 0x1d, 0x77, 0x22, 0x7f, 0xb1, 0x70, 0xa9, 0x3e, 0xf3, 0xe5, 0xa1, 0x39, 0xa6, 0x7c, 0xd1, + 0xd4, 0xf5, 0x08, 0x83, 0xcb, 0xb6, 0xef, 0xee, 0x36, 0x4e, 0xff, 0x68, 0x6f, 0xf2, 0xa1, 0xfd, + 0xbd, 0xc9, 0x91, 0x68, 0x16, 0xc6, 0x6a, 0x42, 0xd6, 0xa1, 0xee, 0x3b, 0x16, 0x13, 0x99, 0xe9, + 0xd8, 0xde, 0x44, 0x81, 0x57, 0xec, 0xc2, 0x94, 0x90, 0x36, 0x63, 0x3f, 0xc5, 0x9a, 0xcb, 0xd4, + 0xce, 0x53, 0x53, 0x6b, 0x01, 0x59, 0xe3, 0x94, 0x04, 0xae, 0x87, 0x69, 0x1e, 0x46, 0x71, 0x08, + 0x85, 0x13, 0x1e, 0x35, 0x7a, 0xae, 0xe9, 0xef, 0xce, 0x39, 0xb6, 0x4f, 0x6f, 0xfb, 0x13, 0x45, + 0x2e, 0xe5, 0x27, 0xd3, 0xa0, 0x57, 0x9d, 0x56, 0x33, 0x4e, 0xdd, 0x38, 0xb5, 0xbf, 0x37, 0x79, + 0x22, 0x91, 0x88, 0x49, 0x4c, 0x62, 0xc3, 0xb8, 0xd9, 0xd1, 0xdb, 0x74, 0xb5, 0x67, 0x59, 0x4d, + 0x6a, 0xb8, 0xd4, 0xf7, 0x26, 0x4a, 0xfc, 0x13, 0x2e, 0xa5, 0xf1, 0x59, 0x76, 0x0c, 0xdd, 0xba, + 0xb1, 0xf1, 0x1a, 0x35, 0x7c, 0xa4, 0x9b, 0xd4, 0xa5, 0xb6, 0x41, 0x1b, 0x13, 0xf2, 0x63, 0xc6, + 0x97, 0x12, 0x48, 0xd8, 0x87, 0x4d, 0x16, 0xe1, 0x64, 0xd7, 0x35, 0x1d, 0x5e, 0x05, 0x4b, 0xf7, + 0xbc, 0xeb, 0x7a, 0x87, 0x4e, 0x94, 0x2f, 0xe6, 0x2e, 0xd5, 0x1a, 0x67, 0x25, 0xcc, 0xc9, 0xd5, + 0x24, 0x01, 0xf6, 0x97, 0x21, 0x97, 0xa0, 0xaa, 0x12, 0x27, 0x2a, 0x17, 0x73, 0x97, 0x4a, 0xa2, + 0xed, 0xa8, 0xb2, 0x18, 0xe4, 0x92, 0x05, 0xa8, 0xea, 0x9b, 0x9b, 0xa6, 0xcd, 0x28, 0xab, 0x5c, + 0x84, 0xe7, 0xd3, 0x3e, 0x6d, 0x56, 0xd2, 0x08, 0x1c, 0xf5, 0x86, 0x41, 0x59, 0x72, 0x15, 0x88, + 0x47, 0xdd, 0x1d, 0xd3, 0xa0, 0xb3, 0x86, 0xe1, 0xf4, 0x6c, 0x9f, 0xd7, 0xbd, 0xc6, 0xeb, 0x7e, + 0x4e, 0xd6, 0x9d, 0x34, 0xfb, 0x28, 0x30, 0xa5, 0x14, 0x79, 0x11, 0xc6, 0x65, 0xb7, 0x0b, 0xa5, + 0x00, 0x1c, 0xe9, 0x34, 0x13, 0x24, 0x26, 0xf2, 0xb0, 0x8f, 0x9a, 0xb4, 0xe0, 0xbc, 0xde, 0xf3, + 0x9d, 0x0e, 0x83, 0x8c, 0x33, 0x5d, 0x73, 0xb6, 0xa9, 0x3d, 0x51, 0xbf, 0x98, 0xbb, 0x54, 0x6d, + 0x5c, 0xdc, 0xdf, 0x9b, 0x3c, 0x3f, 0x7b, 0x17, 0x3a, 0xbc, 0x2b, 0x0a, 0xb9, 0x01, 0xb5, 0x96, + 0xed, 0xad, 0x3a, 0x96, 0x69, 0xec, 0x4e, 0x8c, 0xf0, 0x0a, 0x3e, 0x25, 0x3f, 0xb5, 0x36, 0x7f, + 0xbd, 0x29, 0x32, 0xee, 0xec, 0x4d, 0x9e, 0xef, 0x1f, 0x1d, 0xa7, 0x82, 0x7c, 0x0c, 0x31, 0xc8, + 0x0a, 0x07, 0x9c, 0x73, 0xec, 0x4d, 0xb3, 0x3d, 0x31, 0xca, 0xff, 0xc6, 0xc5, 0x01, 0x0d, 0x7a, + 0xfe, 0x7a, 0x53, 0xd0, 0x35, 0x46, 0x25, 0x3b, 0xf1, 0x8a, 0x21, 0x02, 0x69, 0xc1, 0x98, 0x1a, + 0x57, 0xe7, 0x2c, 0xdd, 0xec, 0x78, 0x13, 0x63, 0xbc, 0xf1, 0x7e, 0x78, 0x00, 0x26, 0x46, 0x89, + 0x1b, 0x67, 0xe4, 0xa7, 0x8c, 0xc5, 0x92, 0x3d, 0x4c, 0x60, 0x9e, 0x7b, 0x01, 0x4e, 0xf6, 0x8d, + 0x0d, 0x64, 0x1c, 0x0a, 0xdb, 0x74, 0x97, 0x0f, 0x7d, 0x35, 0x64, 0x8f, 0xe4, 0x34, 0x94, 0x76, + 0x74, 0xab, 0x47, 0x27, 0xf2, 0x3c, 0x4d, 0xbc, 0x7c, 0x2a, 0xff, 0x7c, 0x4e, 0xfb, 0x9f, 0x05, + 0x18, 0x51, 0x23, 0x4e, 0xd3, 0xb4, 0xb7, 0xc9, 0x4b, 0x50, 0xb0, 0x9c, 0xb6, 0x1c, 0x37, 0x3f, + 0x33, 0xf4, 0x28, 0xb6, 0xec, 0xb4, 0x1b, 0x95, 0xfd, 0xbd, 0xc9, 0xc2, 0xb2, 0xd3, 0x46, 0x86, + 0x48, 0x0c, 0x28, 0x6d, 0xeb, 0x9b, 0xdb, 0x3a, 0xaf, 0x43, 0x7d, 0xa6, 0x31, 0x34, 0xf4, 0x35, + 0x86, 0xc2, 0xea, 0xda, 0xa8, 0xed, 0xef, 0x4d, 0x96, 0xf8, 0x2b, 0x0a, 0x6c, 0xe2, 0x40, 0x6d, + 0xc3, 0xd2, 0x8d, 0xed, 0x2d, 0xc7, 0xa2, 0x13, 0x85, 0x8c, 0x8c, 0x1a, 0x0a, 0x49, 0xfc, 0xe6, + 0xe0, 0x15, 0x43, 0x1e, 0xc4, 0x80, 0x72, 0xaf, 0xe5, 0x99, 0xf6, 0xb6, 0x1c, 0x03, 0x5f, 0x18, + 0x9a, 0xdb, 0xfa, 0x3c, 0xff, 0x26, 0xd8, 0xdf, 0x9b, 0x2c, 0x8b, 0x67, 0x94, 0xd0, 0xda, 0x4f, + 0xeb, 0x30, 0xa6, 0x7e, 0xd2, 0x4d, 0xea, 0xfa, 0xf4, 0x36, 0xb9, 0x08, 0x45, 0x9b, 0x75, 0x4d, + 0xfe, 0x93, 0x1b, 0x23, 0xb2, 0xb9, 0x14, 0x79, 0x97, 0xe4, 0x39, 0xac, 0x66, 0xa2, 0xa9, 0x48, + 0x81, 0x0f, 0x5f, 0xb3, 0x26, 0x87, 0x11, 0x35, 0x13, 0xcf, 0x28, 0xa1, 0xc9, 0x2b, 0x50, 0xe4, + 0x1f, 0x2f, 0x44, 0xfd, 0xd9, 0xe1, 0x59, 0xb0, 0x4f, 0xaf, 0xb2, 0x2f, 0xe0, 0x1f, 0xce, 0x41, + 0x59, 0x53, 0xec, 0xb5, 0x36, 0xa5, 0x60, 0x3f, 0x93, 0x41, 0xb0, 0x0b, 0xa2, 0x29, 0xae, 0xcf, + 0x2f, 0x20, 0x43, 0x24, 0xff, 0x39, 0x07, 0x27, 0x0d, 0xc7, 0xf6, 0x75, 0xa6, 0x6a, 0xa8, 0x49, + 0x76, 0xa2, 0xc4, 0xf9, 0x5c, 0x1d, 0x9a, 0xcf, 0x5c, 0x12, 0xb1, 0xf1, 0x30, 0x9b, 0x33, 0xfa, + 0x92, 0xb1, 0x9f, 0x37, 0xf9, 0xaf, 0x39, 0x78, 0x98, 0x8d, 0xe5, 0x7d, 0xc4, 0x7c, 0x06, 0x3a, + 0xda, 0x5a, 0x9d, 0xdd, 0xdf, 0x9b, 0x7c, 0x78, 0x29, 0x8d, 0x19, 0xa6, 0xd7, 0x81, 0xd5, 0xee, + 0x94, 0xde, 0xaf, 0x96, 0xf0, 0xd9, 0xad, 0x3e, 0xb3, 0x7c, 0x94, 0xaa, 0x4e, 0xe3, 0x51, 0xd9, + 0x94, 0xd3, 0x34, 0x3b, 0x4c, 0xab, 0x05, 0xb9, 0x0c, 0x95, 0x1d, 0xc7, 0xea, 0x75, 0xa8, 0x37, + 0x51, 0xe5, 0x43, 0xec, 0xb9, 0xb4, 0x21, 0xf6, 0x26, 0x27, 0x69, 0x9c, 0x90, 0xf0, 0x15, 0xf1, + 0xee, 0xa1, 0x2a, 0x4b, 0x4c, 0x28, 0x5b, 0x66, 0xc7, 0xf4, 0x3d, 0x3e, 0x71, 0xd6, 0x67, 0x2e, + 0x0f, 0xfd, 0x59, 0xa2, 0x8b, 0x2e, 0x73, 0x30, 0xd1, 0x6b, 0xc4, 0x33, 0x4a, 0x06, 0x6c, 0x28, + 0xf4, 0x0c, 0xdd, 0x12, 0x13, 0x6b, 0x7d, 0xe6, 0x73, 0xc3, 0x77, 0x1b, 0x86, 0xd2, 0x18, 0x95, + 0xdf, 0x54, 0xe2, 0xaf, 0x28, 0xb0, 0xc9, 0x97, 0x60, 0x2c, 0xf6, 0x37, 0xbd, 0x89, 0x3a, 0x97, + 0xce, 0x63, 0x69, 0xd2, 0x09, 0xa8, 0xc2, 0x99, 0x27, 0xd6, 0x42, 0x3c, 0x4c, 0x80, 0x91, 0x6b, + 0x50, 0xf5, 0xcc, 0x16, 0x35, 0x74, 0xd7, 0x9b, 0x18, 0x39, 0x08, 0xf0, 0xb8, 0x04, 0xae, 0x36, + 0x65, 0x31, 0x0c, 0x00, 0xc8, 0x14, 0x40, 0x57, 0x77, 0x7d, 0x53, 0x28, 0xaa, 0xa3, 0x5c, 0x69, + 0x1a, 0xdb, 0xdf, 0x9b, 0x84, 0xd5, 0x20, 0x15, 0x23, 0x14, 0x8c, 0x9e, 0x95, 0x5d, 0xb2, 0xbb, + 0x3d, 0x5f, 0x4c, 0xac, 0x35, 0x41, 0xdf, 0x0c, 0x52, 0x31, 0x42, 0x41, 0xbe, 0x97, 0x83, 0x47, + 0xc3, 0xd7, 0xfe, 0x4e, 0x76, 0xe2, 0xc8, 0x3b, 0xd9, 0xe4, 0xfe, 0xde, 0xe4, 0xa3, 0xcd, 0xc1, + 0x2c, 0xf1, 0x6e, 0xf5, 0xd1, 0x5e, 0x82, 0xd1, 0xd9, 0x9e, 0xbf, 0xe5, 0xb8, 0xe6, 0x1b, 0x5c, + 0xe9, 0x26, 0x0b, 0x50, 0xf2, 0xb9, 0xf2, 0x24, 0xe6, 0xe5, 0x27, 0xd2, 0x44, 0x2d, 0x14, 0xd9, + 0x6b, 0x74, 0x57, 0x69, 0x03, 0x62, 0x7e, 0x14, 0xca, 0x94, 0x28, 0xae, 0xfd, 0xfb, 0x1c, 0x54, + 0x1a, 0xba, 0xb1, 0xed, 0x6c, 0x6e, 0x92, 0x97, 0xa1, 0x6a, 0xda, 0x3e, 0x75, 0x77, 0x74, 0x4b, + 0xc2, 0x4e, 0x45, 0x60, 0x83, 0x95, 0x58, 0xf8, 0xdd, 0x6c, 0xcd, 0xc3, 0x18, 0xcd, 0xf7, 0xe4, + 0x5a, 0x81, 0xeb, 0xa3, 0x4b, 0x12, 0x03, 0x03, 0x34, 0x32, 0x09, 0x25, 0xcf, 0xa7, 0x5d, 0x8f, + 0xcf, 0x3c, 0xa3, 0xa2, 0x1a, 0x4d, 0x96, 0x80, 0x22, 0x5d, 0xfb, 0x1f, 0x39, 0xa8, 0x35, 0x74, + 0xcf, 0x34, 0xd8, 0x57, 0x92, 0x39, 0x28, 0xf6, 0x3c, 0xea, 0x1e, 0xee, 0xdb, 0xf8, 0x64, 0xb1, + 0xee, 0x51, 0x17, 0x79, 0x61, 0x72, 0x03, 0xaa, 0x5d, 0xdd, 0xf3, 0x6e, 0x39, 0x6e, 0x4b, 0x4e, + 0x78, 0x07, 0x04, 0x12, 0xca, 0xb9, 0x2c, 0x8a, 0x01, 0x88, 0x56, 0x87, 0x70, 0xc6, 0xd7, 0x7e, + 0x9e, 0x83, 0x53, 0x8d, 0xde, 0xe6, 0x26, 0x75, 0xa5, 0x2e, 0x2a, 0xb5, 0x3c, 0x0a, 0x25, 0x97, + 0xb6, 0x4c, 0x4f, 0xd6, 0x7d, 0x7e, 0xe8, 0x16, 0x84, 0x0c, 0x45, 0x2a, 0x95, 0x5c, 0x5e, 0x3c, + 0x01, 0x05, 0x3a, 0xe9, 0x41, 0xed, 0x35, 0xea, 0x7b, 0xbe, 0x4b, 0xf5, 0x8e, 0xfc, 0xba, 0x2b, + 0x43, 0xb3, 0xba, 0x4a, 0xfd, 0x26, 0x47, 0x8a, 0xea, 0xb0, 0x41, 0x22, 0x86, 0x9c, 0xb4, 0x1f, + 0x96, 0x60, 0x64, 0xce, 0xe9, 0x6c, 0x98, 0x36, 0x6d, 0x5d, 0x6e, 0xb5, 0x29, 0x79, 0x15, 0x8a, + 0xb4, 0xd5, 0xa6, 0xf2, 0x6b, 0x87, 0x9f, 0xee, 0x19, 0x58, 0xa8, 0xb4, 0xb0, 0x37, 0xe4, 0xc0, + 0x64, 0x19, 0xc6, 0x36, 0x5d, 0xa7, 0x23, 0x46, 0xd0, 0xb5, 0xdd, 0xae, 0xd4, 0x58, 0x1b, 0x1f, + 0x56, 0xa3, 0xd2, 0x42, 0x2c, 0xf7, 0xce, 0xde, 0x24, 0x84, 0x6f, 0x98, 0x28, 0x4b, 0x5e, 0x86, + 0x89, 0x30, 0x25, 0x18, 0x4a, 0xe6, 0xd8, 0x22, 0x82, 0x6b, 0x2c, 0xa5, 0xc6, 0xf9, 0xfd, 0xbd, + 0xc9, 0x89, 0x85, 0x01, 0x34, 0x38, 0xb0, 0x34, 0x79, 0x2b, 0x07, 0xe3, 0x61, 0xa6, 0x18, 0xde, + 0xa5, 0xa2, 0x72, 0x44, 0xf3, 0x06, 0x5f, 0x6d, 0x2d, 0x24, 0x58, 0x60, 0x1f, 0x53, 0xb2, 0x00, + 0x23, 0xbe, 0x13, 0x91, 0x57, 0x89, 0xcb, 0x4b, 0x53, 0xe6, 0x81, 0x35, 0x67, 0xa0, 0xb4, 0x62, + 0xe5, 0x08, 0xc2, 0x19, 0xf5, 0x9e, 0x90, 0x54, 0x99, 0x4b, 0xea, 0xdc, 0xfe, 0xde, 0xe4, 0x99, + 0xb5, 0x54, 0x0a, 0x1c, 0x50, 0x92, 0x7c, 0x3d, 0x07, 0x63, 0x2a, 0x4b, 0xca, 0xa8, 0x72, 0x94, + 0x32, 0x22, 0xac, 0x45, 0xac, 0xc5, 0x18, 0x60, 0x82, 0xa1, 0xf6, 0x8b, 0x22, 0xd4, 0x82, 0x01, + 0x96, 0x3c, 0x0e, 0x25, 0xbe, 0xf0, 0x97, 0x7a, 0x73, 0x30, 0x73, 0x72, 0xfb, 0x00, 0x8a, 0x3c, + 0xf2, 0x04, 0x54, 0x0c, 0xa7, 0xd3, 0xd1, 0xed, 0x16, 0x37, 0xe6, 0xd4, 0x1a, 0x75, 0xa6, 0x30, + 0xcc, 0x89, 0x24, 0x54, 0x79, 0xe4, 0x3c, 0x14, 0x75, 0xb7, 0x2d, 0xec, 0x2a, 0x35, 0x31, 0x1e, + 0xcd, 0xba, 0x6d, 0x0f, 0x79, 0x2a, 0xf9, 0x24, 0x14, 0xa8, 0xbd, 0x33, 0x51, 0x1c, 0xac, 0x91, + 0x5c, 0xb6, 0x77, 0x6e, 0xea, 0x6e, 0xa3, 0x2e, 0xeb, 0x50, 0xb8, 0x6c, 0xef, 0x20, 0x2b, 0x43, + 0x96, 0xa1, 0x42, 0xed, 0x1d, 0xf6, 0xef, 0xa5, 0xc1, 0xe3, 0x43, 0x03, 0x8a, 0x33, 0x12, 0xa9, + 0x9c, 0x07, 0x7a, 0x8d, 0x4c, 0x46, 0x05, 0x41, 0xbe, 0x00, 0x23, 0x42, 0xc5, 0x59, 0x61, 0xff, + 0xc4, 0x9b, 0x28, 0x73, 0xc8, 0xc9, 0xc1, 0x3a, 0x12, 0xa7, 0x0b, 0x0d, 0x4c, 0x91, 0x44, 0x0f, + 0x63, 0x50, 0xe4, 0x0b, 0x50, 0x53, 0xeb, 0x51, 0xf5, 0x67, 0x53, 0x6d, 0x33, 0x6a, 0x11, 0x8b, + 0xf4, 0xf5, 0x9e, 0xe9, 0xd2, 0x0e, 0xb5, 0x7d, 0xaf, 0x71, 0x52, 0xad, 0xd6, 0x55, 0xae, 0x87, + 0x21, 0x1a, 0xd9, 0xe8, 0x37, 0x32, 0x09, 0x0b, 0xc9, 0xe3, 0x03, 0x46, 0xf5, 0x21, 0x2c, 0x4c, + 0x5f, 0x86, 0x13, 0x81, 0x15, 0x48, 0x1a, 0x12, 0x84, 0xcd, 0xe4, 0x69, 0x56, 0x7c, 0x29, 0x9e, + 0x75, 0x67, 0x6f, 0xf2, 0xb1, 0x14, 0x53, 0x42, 0x48, 0x80, 0x49, 0x30, 0xed, 0x07, 0x05, 0xe8, + 0xd7, 0xfe, 0xe3, 0x42, 0xcb, 0x1d, 0xb5, 0xd0, 0x92, 0x1f, 0x24, 0x86, 0xcf, 0xe7, 0x65, 0xb1, + 0xec, 0x1f, 0x95, 0xf6, 0x63, 0x0a, 0x47, 0xfd, 0x63, 0x1e, 0x94, 0xbe, 0xa3, 0xbd, 0x5d, 0x84, + 0xb1, 0x79, 0x9d, 0x76, 0x1c, 0xfb, 0x9e, 0x6b, 0xa1, 0xdc, 0x03, 0xb1, 0x16, 0xba, 0x04, 0x55, + 0x97, 0x76, 0x2d, 0xd3, 0xd0, 0x85, 0xf2, 0x25, 0x6d, 0x8f, 0x28, 0xd3, 0x30, 0xc8, 0x1d, 0xb0, + 0x06, 0x2e, 0x3c, 0x90, 0x6b, 0xe0, 0xe2, 0x7b, 0xbf, 0x06, 0xd6, 0xbe, 0x9e, 0x07, 0xae, 0xa8, + 0x90, 0x8b, 0x50, 0x64, 0x93, 0x70, 0xd2, 0xf2, 0xc2, 0x1b, 0x0e, 0xcf, 0x21, 0xe7, 0x20, 0xef, + 0x3b, 0xb2, 0xe7, 0x81, 0xcc, 0xcf, 0xaf, 0x39, 0x98, 0xf7, 0x1d, 0xf2, 0x06, 0x80, 0xe1, 0xd8, + 0x2d, 0x53, 0x99, 0xe4, 0xb3, 0x7d, 0xd8, 0x82, 0xe3, 0xde, 0xd2, 0xdd, 0xd6, 0x5c, 0x80, 0x28, + 0x56, 0x41, 0xe1, 0x3b, 0x46, 0xb8, 0x91, 0x17, 0xa0, 0xec, 0xd8, 0x0b, 0x3d, 0xcb, 0xe2, 0x02, + 0xad, 0x35, 0x3e, 0xc2, 0x96, 0xa6, 0x37, 0x78, 0xca, 0x9d, 0xbd, 0xc9, 0xb3, 0x42, 0xbf, 0x65, + 0x6f, 0x2f, 0xb9, 0xa6, 0x6f, 0xda, 0xed, 0xa6, 0xef, 0xea, 0x3e, 0x6d, 0xef, 0xa2, 0x2c, 0xa6, + 0x7d, 0x33, 0x07, 0xf5, 0x05, 0xf3, 0x36, 0x6d, 0xbd, 0x64, 0xda, 0x2d, 0xe7, 0x16, 0x41, 0x28, + 0x5b, 0xd4, 0x6e, 0xfb, 0x5b, 0x43, 0xae, 0x1f, 0xc4, 0xda, 0x98, 0x23, 0xa0, 0x44, 0x22, 0xd3, + 0x50, 0x13, 0xda, 0xa7, 0x69, 0xb7, 0xb9, 0x0c, 0xab, 0xe1, 0xa0, 0xd7, 0x54, 0x19, 0x18, 0xd2, + 0x68, 0xbb, 0x70, 0xb2, 0x4f, 0x0c, 0xa4, 0x05, 0x45, 0x5f, 0x6f, 0xab, 0xf1, 0x75, 0x61, 0x68, + 0x01, 0xaf, 0xe9, 0xed, 0x88, 0x70, 0xf9, 0x1c, 0xbf, 0xa6, 0xb3, 0x39, 0x9e, 0xa1, 0x6b, 0xbf, + 0xca, 0x41, 0x75, 0xa1, 0x67, 0x1b, 0x7c, 0x89, 0x76, 0x6f, 0x8b, 0x9c, 0x52, 0x18, 0xf2, 0xa9, + 0x0a, 0x43, 0x0f, 0xca, 0xdb, 0xb7, 0x02, 0x85, 0xa2, 0x3e, 0xb3, 0x32, 0x7c, 0xab, 0x90, 0x55, + 0x9a, 0xba, 0xc6, 0xf1, 0x84, 0xc3, 0x68, 0x4c, 0x56, 0xa8, 0x7c, 0xed, 0x25, 0xce, 0x54, 0x32, + 0x3b, 0xf7, 0x49, 0xa8, 0x47, 0xc8, 0x0e, 0x65, 0x3b, 0xfe, 0x7f, 0x45, 0x28, 0x2f, 0x36, 0x9b, + 0xb3, 0xab, 0x4b, 0xe4, 0x19, 0xa8, 0x4b, 0x5f, 0xc2, 0xf5, 0x50, 0x06, 0x81, 0x2b, 0xa9, 0x19, + 0x66, 0x61, 0x94, 0x8e, 0xa9, 0x63, 0x2e, 0xd5, 0xad, 0x8e, 0xec, 0x2c, 0x81, 0x3a, 0x86, 0x2c, + 0x11, 0x45, 0x1e, 0xd1, 0x61, 0x8c, 0xad, 0xf0, 0x98, 0x08, 0xc5, 0xea, 0x4d, 0x76, 0x9b, 0x03, + 0xae, 0xef, 0xb8, 0x92, 0xb8, 0x1e, 0x03, 0xc0, 0x04, 0x20, 0x79, 0x1e, 0xaa, 0x7a, 0xcf, 0xdf, + 0xe2, 0x0a, 0xb4, 0xe8, 0x1b, 0xe7, 0xb9, 0xab, 0x45, 0xa6, 0xdd, 0xd9, 0x9b, 0x1c, 0xb9, 0x86, + 0x8d, 0x67, 0xd4, 0x3b, 0x06, 0xd4, 0xac, 0x72, 0x6a, 0xc5, 0x28, 0x2b, 0x57, 0x3a, 0x74, 0xe5, + 0x56, 0x63, 0x00, 0x98, 0x00, 0x24, 0xaf, 0xc0, 0xc8, 0x36, 0xdd, 0xf5, 0xf5, 0x0d, 0xc9, 0xa0, + 0x7c, 0x18, 0x06, 0xe3, 0x4c, 0x85, 0xbb, 0x16, 0x29, 0x8e, 0x31, 0x30, 0xe2, 0xc1, 0xe9, 0x6d, + 0xea, 0x6e, 0x50, 0xd7, 0x91, 0xab, 0x4f, 0xc9, 0xa4, 0x72, 0x18, 0x26, 0x13, 0xfb, 0x7b, 0x93, + 0xa7, 0xaf, 0xa5, 0xc0, 0x60, 0x2a, 0xb8, 0xf6, 0xcb, 0x3c, 0x9c, 0x58, 0x14, 0xce, 0x5c, 0xc7, + 0x15, 0x93, 0x30, 0x39, 0x0b, 0x05, 0xb7, 0xdb, 0xe3, 0x2d, 0xa7, 0x20, 0xcc, 0xb5, 0xb8, 0xba, + 0x8e, 0x2c, 0x8d, 0xbc, 0x0c, 0xd5, 0x96, 0x1c, 0x32, 0xe4, 0xe2, 0x77, 0x28, 0x43, 0x85, 0x7a, + 0xc3, 0x00, 0x8d, 0x69, 0xfa, 0x1d, 0xaf, 0xdd, 0x34, 0xdf, 0xa0, 0x72, 0x3d, 0xc8, 0x35, 0xfd, + 0x15, 0x91, 0x84, 0x2a, 0x8f, 0xcd, 0xaa, 0xdb, 0x74, 0x57, 0xac, 0x86, 0x8a, 0xe1, 0xac, 0x7a, + 0x4d, 0xa6, 0x61, 0x90, 0x4b, 0x26, 0x55, 0x67, 0x61, 0xad, 0xa0, 0x28, 0x56, 0xf2, 0x37, 0x59, + 0x82, 0xec, 0x37, 0x6c, 0xc8, 0x7c, 0xcd, 0xf4, 0x7d, 0xea, 0xca, 0xdf, 0x38, 0xd4, 0x90, 0x79, + 0x95, 0x23, 0xa0, 0x44, 0x22, 0x1f, 0x83, 0x1a, 0x07, 0x6f, 0x58, 0xce, 0x06, 0xff, 0x71, 0x35, + 0xb1, 0xa6, 0xbf, 0xa9, 0x12, 0x31, 0xcc, 0xd7, 0x7e, 0x9d, 0x87, 0x33, 0x8b, 0xd4, 0x17, 0x5a, + 0xcd, 0x3c, 0xed, 0x5a, 0xce, 0x2e, 0x53, 0x2d, 0x91, 0xbe, 0x4e, 0x5e, 0x04, 0x30, 0xbd, 0x8d, + 0xe6, 0x8e, 0xc1, 0xfb, 0x81, 0xe8, 0xc3, 0x17, 0x65, 0x97, 0x84, 0xa5, 0x66, 0x43, 0xe6, 0xdc, + 0x89, 0xbd, 0x61, 0xa4, 0x4c, 0xb8, 0xbc, 0xca, 0xdf, 0x65, 0x79, 0xd5, 0x04, 0xe8, 0x86, 0x0a, + 0x6a, 0x81, 0x53, 0xfe, 0x2b, 0xc5, 0xe6, 0x30, 0xba, 0x69, 0x04, 0x26, 0x8b, 0xca, 0x68, 0xc3, + 0x78, 0x8b, 0x6e, 0xea, 0x3d, 0xcb, 0x0f, 0x94, 0x6a, 0xd9, 0x89, 0x0f, 0xae, 0x97, 0x07, 0x8e, + 0xe6, 0xf9, 0x04, 0x12, 0xf6, 0x61, 0x6b, 0xdf, 0x2f, 0xc0, 0xb9, 0x45, 0xea, 0x07, 0x16, 0x17, + 0x39, 0x3a, 0x36, 0xbb, 0xd4, 0x60, 0x7f, 0xe1, 0xad, 0x1c, 0x94, 0x2d, 0x7d, 0x83, 0x5a, 0x6c, + 0xf6, 0x62, 0x5f, 0xf3, 0xea, 0xd0, 0x13, 0xc1, 0x60, 0x2e, 0x53, 0xcb, 0x9c, 0x43, 0x62, 0x6a, + 0x10, 0x89, 0x28, 0xd9, 0xb3, 0x41, 0xdd, 0xb0, 0x7a, 0x9e, 0x4f, 0xdd, 0x55, 0xc7, 0xf5, 0xa5, + 0x3e, 0x19, 0x0c, 0xea, 0x73, 0x61, 0x16, 0x46, 0xe9, 0xc8, 0x0c, 0x80, 0x61, 0x99, 0xd4, 0xf6, + 0x79, 0x29, 0xd1, 0xaf, 0x88, 0xfa, 0xbf, 0x73, 0x41, 0x0e, 0x46, 0xa8, 0x18, 0xab, 0x8e, 0x63, + 0x9b, 0xbe, 0x23, 0x58, 0x15, 0xe3, 0xac, 0x56, 0xc2, 0x2c, 0x8c, 0xd2, 0xf1, 0x62, 0xd4, 0x77, + 0x4d, 0xc3, 0xe3, 0xc5, 0x4a, 0x89, 0x62, 0x61, 0x16, 0x46, 0xe9, 0xd8, 0x9c, 0x17, 0xf9, 0xfe, + 0x43, 0xcd, 0x79, 0xdf, 0xad, 0xc1, 0x85, 0x98, 0x58, 0x7d, 0xdd, 0xa7, 0x9b, 0x3d, 0xab, 0x49, + 0x7d, 0xf5, 0x03, 0x87, 0x9c, 0x0b, 0xff, 0x63, 0xf8, 0xdf, 0x45, 0x08, 0x89, 0x71, 0x34, 0xff, + 0xbd, 0xaf, 0x82, 0x07, 0xfa, 0xf7, 0xd3, 0x50, 0xb3, 0x75, 0xdf, 0xe3, 0x1d, 0x57, 0xf6, 0xd1, + 0x40, 0x0d, 0xbb, 0xae, 0x32, 0x30, 0xa4, 0x21, 0xab, 0x70, 0x5a, 0x8a, 0xf8, 0xf2, 0xed, 0xae, + 0xe3, 0xfa, 0xd4, 0x15, 0x65, 0xe5, 0x74, 0x2a, 0xcb, 0x9e, 0x5e, 0x49, 0xa1, 0xc1, 0xd4, 0x92, + 0x64, 0x05, 0x4e, 0x19, 0xc2, 0xad, 0x4e, 0x2d, 0x47, 0x6f, 0x29, 0x40, 0x61, 0xe0, 0x0a, 0x96, + 0x46, 0x73, 0xfd, 0x24, 0x98, 0x56, 0x2e, 0xd9, 0x9a, 0xcb, 0x43, 0xb5, 0xe6, 0xca, 0x30, 0xad, + 0xb9, 0x3a, 0x5c, 0x6b, 0xae, 0x1d, 0xac, 0x35, 0x33, 0xc9, 0xb3, 0x76, 0x44, 0x5d, 0xa6, 0x9e, + 0x88, 0x19, 0x36, 0x12, 0xb5, 0x11, 0x48, 0xbe, 0x99, 0x42, 0x83, 0xa9, 0x25, 0xc9, 0x06, 0x9c, + 0x13, 0xe9, 0x97, 0x6d, 0xc3, 0xdd, 0xed, 0xb2, 0x89, 0x27, 0x82, 0x5b, 0x8f, 0x59, 0x18, 0xcf, + 0x35, 0x07, 0x52, 0xe2, 0x5d, 0x50, 0xc8, 0xa7, 0x61, 0x54, 0xfc, 0xa5, 0x15, 0xbd, 0xcb, 0x61, + 0x45, 0x0c, 0xc7, 0xc3, 0x12, 0x76, 0x74, 0x2e, 0x9a, 0x89, 0x71, 0x5a, 0x32, 0x0b, 0x27, 0xba, + 0x3b, 0x06, 0x7b, 0x5c, 0xda, 0xbc, 0x4e, 0x69, 0x8b, 0xb6, 0xb8, 0xd3, 0xa8, 0xd6, 0x78, 0x44, + 0x19, 0x3a, 0x56, 0xe3, 0xd9, 0x98, 0xa4, 0x27, 0xcf, 0xc3, 0x88, 0xe7, 0xeb, 0xae, 0x2f, 0xcd, + 0x7a, 0x13, 0x63, 0x22, 0xc6, 0x45, 0x59, 0xbd, 0x9a, 0x91, 0x3c, 0x8c, 0x51, 0xa6, 0xce, 0x17, + 0x27, 0x8e, 0x6f, 0xbe, 0xc8, 0x32, 0x5a, 0xfd, 0x6e, 0x1e, 0x2e, 0x2e, 0x52, 0x7f, 0xc5, 0xb1, + 0xa5, 0x51, 0x34, 0x6d, 0xda, 0x3f, 0x90, 0x4d, 0x34, 0x3e, 0x69, 0xe7, 0x8f, 0x74, 0xd2, 0x2e, + 0x1c, 0xd1, 0xa4, 0x5d, 0x3c, 0xc6, 0x49, 0xfb, 0x37, 0xf2, 0xf0, 0x48, 0x4c, 0x92, 0xab, 0x4e, + 0x4b, 0x0d, 0xf8, 0x1f, 0x08, 0xf0, 0x00, 0x02, 0xbc, 0x23, 0xf4, 0x4e, 0xee, 0xd6, 0x4a, 0x68, + 0x3c, 0x6f, 0x26, 0x35, 0x9e, 0x57, 0xb2, 0xcc, 0x7c, 0x29, 0x1c, 0x0e, 0x34, 0xe3, 0x5d, 0x05, + 0xe2, 0x4a, 0x27, 0x9c, 0x30, 0xfd, 0x44, 0x94, 0x9e, 0x20, 0x88, 0x0e, 0xfb, 0x28, 0x30, 0xa5, + 0x14, 0x69, 0xc2, 0xc3, 0x1e, 0xb5, 0x7d, 0xd3, 0xa6, 0x56, 0x1c, 0x4e, 0x68, 0x43, 0x8f, 0x49, + 0xb8, 0x87, 0x9b, 0x69, 0x44, 0x98, 0x5e, 0x36, 0xcb, 0x38, 0xf0, 0x07, 0xc0, 0x55, 0x4e, 0x21, + 0x9a, 0x23, 0xd3, 0x58, 0xde, 0x4a, 0x6a, 0x2c, 0xaf, 0x66, 0xff, 0x6f, 0xc3, 0x69, 0x2b, 0x33, + 0x00, 0xfc, 0x2f, 0x44, 0xd5, 0x95, 0x60, 0x92, 0xc6, 0x20, 0x07, 0x23, 0x54, 0x6c, 0x02, 0x52, + 0x72, 0x8e, 0x6a, 0x2a, 0xc1, 0x04, 0xd4, 0x8c, 0x66, 0x62, 0x9c, 0x76, 0xa0, 0xb6, 0x53, 0x1a, + 0x5a, 0xdb, 0xb9, 0x0a, 0x24, 0x66, 0x78, 0x14, 0x78, 0xe5, 0x78, 0x0c, 0xe7, 0x52, 0x1f, 0x05, + 0xa6, 0x94, 0x1a, 0xd0, 0x94, 0x2b, 0x47, 0xdb, 0x94, 0xab, 0xc3, 0x37, 0x65, 0xf2, 0x2a, 0x9c, + 0xe5, 0xac, 0xa4, 0x7c, 0xe2, 0xc0, 0x42, 0xef, 0xf9, 0x90, 0x04, 0x3e, 0x8b, 0x83, 0x08, 0x71, + 0x30, 0x06, 0xfb, 0x3f, 0x86, 0x4b, 0x5b, 0x8c, 0xb9, 0x6e, 0x0d, 0xd6, 0x89, 0xe6, 0x52, 0x68, + 0x30, 0xb5, 0x24, 0x6b, 0x62, 0x3e, 0x6b, 0x86, 0xfa, 0x86, 0x45, 0x5b, 0x32, 0x86, 0x35, 0x68, + 0x62, 0x6b, 0xcb, 0x4d, 0x99, 0x83, 0x11, 0xaa, 0x34, 0x35, 0x65, 0xe4, 0x90, 0x6a, 0xca, 0x22, + 0xb7, 0xd2, 0x6f, 0xc6, 0xb4, 0x21, 0xa9, 0xeb, 0x04, 0x51, 0xc9, 0x73, 0x49, 0x02, 0xec, 0x2f, + 0xc3, 0xb5, 0x44, 0xc3, 0x35, 0xbb, 0xbe, 0x17, 0xc7, 0x1a, 0x4b, 0x68, 0x89, 0x29, 0x34, 0x98, + 0x5a, 0x92, 0xe9, 0xe7, 0x5b, 0x54, 0xb7, 0xfc, 0xad, 0x38, 0xe0, 0x89, 0xb8, 0x7e, 0x7e, 0xa5, + 0x9f, 0x04, 0xd3, 0xca, 0xa5, 0x4e, 0x48, 0xe3, 0x0f, 0xa6, 0x5a, 0xf5, 0x8d, 0x02, 0x9c, 0x5d, + 0xa4, 0x7e, 0x10, 0xde, 0xf3, 0x81, 0x19, 0xe5, 0x3d, 0x30, 0xa3, 0x7c, 0xa7, 0x04, 0xa7, 0x16, + 0xa9, 0xdf, 0xa7, 0x8d, 0xfd, 0x33, 0x15, 0xff, 0x0a, 0x9c, 0x0a, 0x23, 0xca, 0x9a, 0xbe, 0xe3, + 0x8a, 0xb9, 0x3c, 0xb1, 0x5a, 0x6e, 0xf6, 0x93, 0x60, 0x5a, 0x39, 0xf2, 0x05, 0x78, 0x84, 0x4f, + 0xf5, 0x76, 0x5b, 0xd8, 0x67, 0x85, 0x31, 0x21, 0xb2, 0x27, 0x62, 0x52, 0x42, 0x3e, 0xd2, 0x4c, + 0x27, 0xc3, 0x41, 0xe5, 0xc9, 0x57, 0x61, 0xa4, 0x6b, 0x76, 0xa9, 0x65, 0xda, 0x5c, 0x3f, 0xcb, + 0x1c, 0x12, 0xb2, 0x1a, 0x01, 0x0b, 0x17, 0x70, 0xd1, 0x54, 0x8c, 0x31, 0x4c, 0x6d, 0xa9, 0xd5, + 0x63, 0x6c, 0xa9, 0x7f, 0x9b, 0x87, 0xca, 0xa2, 0xeb, 0xf4, 0xba, 0x8d, 0x5d, 0xd2, 0x86, 0xf2, + 0x2d, 0xee, 0x3c, 0x93, 0xae, 0xa9, 0xe1, 0xa3, 0xb2, 0x85, 0x0f, 0x2e, 0x54, 0x89, 0xc4, 0x3b, + 0x4a, 0x78, 0xd6, 0x88, 0xb7, 0xe9, 0x2e, 0x6d, 0x49, 0x1f, 0x5a, 0xd0, 0x88, 0xaf, 0xb1, 0x44, + 0x14, 0x79, 0xa4, 0x03, 0x27, 0x74, 0xcb, 0x72, 0x6e, 0xd1, 0xd6, 0xb2, 0xee, 0x53, 0x9b, 0x7a, + 0xca, 0x25, 0x79, 0x58, 0xb3, 0x34, 0xf7, 0xeb, 0xcf, 0xc6, 0xa1, 0x30, 0x89, 0x4d, 0x5e, 0x83, + 0x8a, 0xe7, 0x3b, 0xae, 0x52, 0xb6, 0xea, 0x33, 0x73, 0xc3, 0xff, 0xf4, 0xc6, 0xe7, 0x9b, 0x02, + 0x4a, 0xd8, 0xec, 0xe5, 0x0b, 0x2a, 0x06, 0xda, 0xb7, 0x73, 0x00, 0x57, 0xd6, 0xd6, 0x56, 0xa5, + 0x7b, 0xa1, 0x05, 0x45, 0xbd, 0x17, 0x38, 0x2a, 0x87, 0x77, 0x08, 0xc6, 0xc2, 0x32, 0xa5, 0x0f, + 0xaf, 0xe7, 0x6f, 0x21, 0x47, 0x27, 0x1f, 0x85, 0x8a, 0x54, 0x90, 0xa5, 0xd8, 0x83, 0xd0, 0x02, + 0xa9, 0x44, 0xa3, 0xca, 0xd7, 0xfe, 0x6f, 0x1e, 0x60, 0xa9, 0x65, 0xd1, 0xa6, 0x0a, 0xa4, 0xaf, + 0xf9, 0x5b, 0x2e, 0xf5, 0xb6, 0x1c, 0xab, 0x35, 0xa4, 0x37, 0x95, 0xdb, 0xfc, 0xd7, 0x14, 0x08, + 0x86, 0x78, 0xa4, 0x05, 0x23, 0x9e, 0x4f, 0xbb, 0x2a, 0x52, 0x73, 0x48, 0x27, 0xca, 0xb8, 0xb0, + 0x8b, 0x84, 0x38, 0x18, 0x43, 0x25, 0x3a, 0xd4, 0x4d, 0xdb, 0x10, 0x1d, 0xa4, 0xb1, 0x3b, 0x64, + 0x43, 0x3a, 0xc1, 0x56, 0x1c, 0x4b, 0x21, 0x0c, 0x46, 0x31, 0xb5, 0x9f, 0xe5, 0xe1, 0x0c, 0xe7, + 0xc7, 0xaa, 0x11, 0x8b, 0xc7, 0x24, 0xff, 0xa6, 0x6f, 0xd3, 0xdf, 0xbf, 0x3c, 0x18, 0x6b, 0xb1, + 0x67, 0x6c, 0x85, 0xfa, 0x7a, 0xa8, 0xcf, 0x85, 0x69, 0x91, 0x9d, 0x7e, 0x3d, 0x28, 0x7a, 0x6c, + 0xbc, 0x12, 0xd2, 0x6b, 0x0e, 0xdd, 0x84, 0xd2, 0x3f, 0x80, 0x8f, 0x5e, 0x81, 0xd7, 0x98, 0x8f, + 0x5a, 0x9c, 0x1d, 0xf9, 0x77, 0x50, 0xf6, 0x7c, 0xdd, 0xef, 0xa9, 0xae, 0xb9, 0x7e, 0xd4, 0x8c, + 0x39, 0x78, 0x38, 0x8e, 0x88, 0x77, 0x94, 0x4c, 0xb5, 0x9f, 0xe5, 0xe0, 0x5c, 0x7a, 0xc1, 0x65, + 0xd3, 0xf3, 0xc9, 0xbf, 0xee, 0x13, 0xfb, 0x01, 0xff, 0x38, 0x2b, 0xcd, 0x85, 0x1e, 0xc4, 0x85, + 0xab, 0x94, 0x88, 0xc8, 0x7d, 0x28, 0x99, 0x3e, 0xed, 0xa8, 0xf5, 0xe5, 0x8d, 0x23, 0xfe, 0xf4, + 0xc8, 0xd4, 0xce, 0xb8, 0xa0, 0x60, 0xa6, 0xbd, 0x9d, 0x1f, 0xf4, 0xc9, 0x7c, 0xfa, 0xb0, 0xe2, + 0x31, 0xbf, 0xd7, 0xb2, 0xc5, 0xfc, 0xc6, 0x2b, 0xd4, 0x1f, 0xfa, 0xfb, 0x6f, 0xfb, 0x43, 0x7f, + 0x6f, 0x64, 0x0f, 0xfd, 0x4d, 0x88, 0x61, 0x60, 0x04, 0xf0, 0xbb, 0x05, 0x38, 0x7f, 0xb7, 0x66, + 0xc3, 0xe6, 0x33, 0xd9, 0x3a, 0xb3, 0xce, 0x67, 0x77, 0x6f, 0x87, 0x64, 0x06, 0x4a, 0xdd, 0x2d, + 0xdd, 0x53, 0x4a, 0x99, 0x5a, 0xb0, 0x94, 0x56, 0x59, 0xe2, 0x1d, 0x36, 0x68, 0x70, 0x65, 0x8e, + 0xbf, 0xa2, 0x20, 0x65, 0xc3, 0x71, 0x87, 0x7a, 0x5e, 0x68, 0x13, 0x08, 0x86, 0xe3, 0x15, 0x91, + 0x8c, 0x2a, 0x9f, 0xf8, 0x50, 0x16, 0x26, 0x66, 0x39, 0x33, 0x0d, 0x1f, 0xc8, 0x95, 0x12, 0x26, + 0x1e, 0x7e, 0x94, 0xf4, 0x56, 0x48, 0x5e, 0x64, 0x0a, 0x8a, 0x7e, 0x18, 0xb4, 0xab, 0x96, 0xe6, + 0xc5, 0x14, 0xfd, 0x94, 0xd3, 0xb1, 0x85, 0xbd, 0xb3, 0xc1, 0x8d, 0xea, 0x2d, 0xe9, 0x3f, 0x37, + 0x1d, 0x9b, 0x2b, 0x64, 0x85, 0x70, 0x61, 0x7f, 0xa3, 0x8f, 0x02, 0x53, 0x4a, 0x69, 0x7f, 0x5c, + 0x85, 0x33, 0xe9, 0xed, 0x81, 0xc9, 0x6d, 0x87, 0xba, 0x1e, 0xc3, 0xce, 0xc5, 0xe5, 0x76, 0x53, + 0x24, 0xa3, 0xca, 0x7f, 0x5f, 0x07, 0x9c, 0x7d, 0x27, 0x07, 0x67, 0x5d, 0xe9, 0x23, 0xba, 0x1f, + 0x41, 0x67, 0x8f, 0x09, 0x73, 0xc6, 0x00, 0x86, 0x38, 0xb8, 0x2e, 0xe4, 0x7f, 0xe5, 0x60, 0xa2, + 0x93, 0xb0, 0x73, 0x1c, 0xe3, 0xbe, 0x35, 0x1e, 0x15, 0xbf, 0x32, 0x80, 0x1f, 0x0e, 0xac, 0x09, + 0xf9, 0x2a, 0xd4, 0xbb, 0xac, 0x5d, 0x78, 0x3e, 0xb5, 0x0d, 0xb5, 0x75, 0x6d, 0xf8, 0x9e, 0xb4, + 0x1a, 0x62, 0xa9, 0x50, 0x34, 0xa1, 0x1f, 0x44, 0x32, 0x30, 0xca, 0xf1, 0x01, 0xdf, 0xa8, 0x76, + 0x09, 0xaa, 0x1e, 0xf5, 0x7d, 0xd3, 0x6e, 0x8b, 0xf5, 0x46, 0x4d, 0xf4, 0x95, 0xa6, 0x4c, 0xc3, + 0x20, 0x97, 0x7c, 0x0c, 0x6a, 0xdc, 0xe5, 0x34, 0xeb, 0xb6, 0xbd, 0x89, 0x1a, 0x0f, 0x17, 0x1b, + 0x15, 0x01, 0x70, 0x32, 0x11, 0xc3, 0x7c, 0xf2, 0x34, 0x8c, 0x6c, 0xf0, 0xee, 0x2b, 0xf7, 0x2e, + 0x0b, 0x1b, 0x17, 0xd7, 0xd6, 0x1a, 0x91, 0x74, 0x8c, 0x51, 0x91, 0x19, 0x00, 0x1a, 0xf8, 0xe5, + 0x92, 0xf6, 0xac, 0xd0, 0x63, 0x87, 0x11, 0x2a, 0xf2, 0x18, 0x14, 0x7c, 0xcb, 0xe3, 0x36, 0xac, + 0x6a, 0xb8, 0x04, 0x5d, 0x5b, 0x6e, 0x22, 0x4b, 0xd7, 0x7e, 0x9d, 0x83, 0x13, 0x89, 0xcd, 0x25, + 0xac, 0x48, 0xcf, 0xb5, 0xe4, 0x30, 0x12, 0x14, 0x59, 0xc7, 0x65, 0x64, 0xe9, 0xe4, 0x55, 0xa9, + 0x96, 0xe7, 0x33, 0x1e, 0xd3, 0x70, 0x5d, 0xf7, 0x3d, 0xa6, 0x87, 0xf7, 0x69, 0xe4, 0xdc, 0xcd, + 0x17, 0xd6, 0x47, 0xce, 0x03, 0x11, 0x37, 0x5f, 0x98, 0x87, 0x31, 0xca, 0x84, 0xc1, 0xaf, 0x78, + 0x10, 0x83, 0x9f, 0xf6, 0xcd, 0x7c, 0x44, 0x02, 0x52, 0xb3, 0xbf, 0x87, 0x04, 0x9e, 0x64, 0x13, + 0x68, 0x30, 0xb9, 0xd7, 0xa2, 0xf3, 0x1f, 0x9f, 0x8c, 0x65, 0x2e, 0x79, 0x49, 0xc8, 0xbe, 0x90, + 0x71, 0x33, 0xec, 0xda, 0x72, 0x53, 0x44, 0x57, 0xa9, 0xbf, 0x16, 0xfc, 0x82, 0xe2, 0x31, 0xfd, + 0x02, 0xed, 0xf7, 0x0b, 0x50, 0xbf, 0xea, 0x6c, 0xbc, 0x4f, 0x22, 0xa8, 0xd3, 0xa7, 0xa9, 0xfc, + 0x7b, 0x38, 0x4d, 0xad, 0xc3, 0x23, 0xbe, 0x6f, 0x35, 0xa9, 0xe1, 0xd8, 0x2d, 0x6f, 0x76, 0xd3, + 0xa7, 0xee, 0x82, 0x69, 0x9b, 0xde, 0x16, 0x6d, 0x49, 0x77, 0xd2, 0xa3, 0xfb, 0x7b, 0x93, 0x8f, + 0xac, 0xad, 0x2d, 0xa7, 0x91, 0xe0, 0xa0, 0xb2, 0x7c, 0xd8, 0x10, 0x3b, 0x01, 0xf9, 0x4e, 0x19, + 0x19, 0x73, 0x23, 0x86, 0x8d, 0x48, 0x3a, 0xc6, 0xa8, 0xb4, 0x77, 0xf2, 0x50, 0x0b, 0x36, 0xe0, + 0x93, 0x27, 0xa0, 0xb2, 0xe1, 0x3a, 0xdb, 0xd4, 0x15, 0x9e, 0x3b, 0xb9, 0x53, 0xa6, 0x21, 0x92, + 0x50, 0xe5, 0x91, 0xc7, 0xa1, 0xe4, 0x3b, 0x5d, 0xd3, 0x48, 0x1a, 0xd4, 0xd6, 0x58, 0x22, 0x8a, + 0xbc, 0xe3, 0x6b, 0xe0, 0x4f, 0xc6, 0x54, 0xbb, 0xda, 0x40, 0x65, 0xec, 0x15, 0x28, 0x7a, 0xba, + 0x67, 0xc9, 0xf9, 0x34, 0xc3, 0x5e, 0xf6, 0xd9, 0xe6, 0xb2, 0xdc, 0xcb, 0x3e, 0xdb, 0x5c, 0x46, + 0x0e, 0xaa, 0xfd, 0x22, 0x0f, 0x75, 0x21, 0x37, 0x31, 0x2a, 0x1c, 0xa5, 0xe4, 0x5e, 0xe0, 0xa1, + 0x14, 0x5e, 0xaf, 0x43, 0x5d, 0x6e, 0x66, 0x92, 0x83, 0x5c, 0xd4, 0x3f, 0x10, 0x66, 0x06, 0xe1, + 0x14, 0x61, 0x92, 0x12, 0x7d, 0xf1, 0x18, 0x45, 0x5f, 0x3a, 0x90, 0xe8, 0xcb, 0xc7, 0x21, 0xfa, + 0xb7, 0xf2, 0x50, 0x5b, 0x36, 0x37, 0xa9, 0xb1, 0x6b, 0x58, 0x7c, 0x4f, 0x60, 0x8b, 0x5a, 0xd4, + 0xa7, 0x8b, 0xae, 0x6e, 0xd0, 0x55, 0xea, 0x9a, 0xfc, 0x80, 0x1a, 0xd6, 0x3f, 0xf8, 0x08, 0x24, + 0xf7, 0x04, 0xce, 0x0f, 0xa0, 0xc1, 0x81, 0xa5, 0xc9, 0x12, 0x8c, 0xb4, 0xa8, 0x67, 0xba, 0xb4, + 0xb5, 0x1a, 0x59, 0xa8, 0x3c, 0xa1, 0xa6, 0x9a, 0xf9, 0x48, 0xde, 0x9d, 0xbd, 0xc9, 0x51, 0x65, + 0xa0, 0x14, 0x2b, 0x96, 0x58, 0x51, 0xd6, 0xe5, 0xbb, 0x7a, 0xcf, 0x4b, 0xab, 0x63, 0xa4, 0xcb, + 0xaf, 0xa6, 0x93, 0xe0, 0xa0, 0xb2, 0x5a, 0x09, 0x0a, 0xcb, 0x4e, 0x5b, 0x7b, 0xbb, 0x00, 0xc1, + 0x49, 0x46, 0xe4, 0x3f, 0xe4, 0xa0, 0xae, 0xdb, 0xb6, 0xe3, 0xcb, 0x53, 0x82, 0x84, 0x07, 0x1e, + 0x33, 0x1f, 0x98, 0x34, 0x35, 0x1b, 0x82, 0x0a, 0xe7, 0x6d, 0xe0, 0x50, 0x8e, 0xe4, 0x60, 0x94, + 0x37, 0xe9, 0x25, 0xfc, 0xc9, 0x2b, 0xd9, 0x6b, 0x71, 0x00, 0xef, 0xf1, 0xb9, 0xcf, 0xc1, 0x78, + 0xb2, 0xb2, 0x87, 0x71, 0x07, 0x65, 0x72, 0xcc, 0xe7, 0x01, 0xc2, 0x98, 0x92, 0xfb, 0x60, 0xc4, + 0x32, 0x63, 0x46, 0xac, 0xc5, 0xe1, 0x05, 0x1c, 0x54, 0x7a, 0xa0, 0xe1, 0xea, 0xf5, 0x84, 0xe1, + 0x6a, 0xe9, 0x28, 0x98, 0xdd, 0xdd, 0x58, 0xf5, 0x7f, 0x72, 0x30, 0x1e, 0x12, 0xcb, 0x1d, 0xb2, + 0xcf, 0xc1, 0xa8, 0x4b, 0xf5, 0x56, 0x43, 0xf7, 0x8d, 0x2d, 0x1e, 0xea, 0x9d, 0xe3, 0xb1, 0xd9, + 0x27, 0xf7, 0xf7, 0x26, 0x47, 0x31, 0x9a, 0x81, 0x71, 0x3a, 0xa2, 0x43, 0x9d, 0x25, 0xac, 0x99, + 0x1d, 0xea, 0xf4, 0xfc, 0x21, 0xad, 0xa6, 0x7c, 0xc1, 0x82, 0x21, 0x0c, 0x46, 0x31, 0xb5, 0x77, + 0x73, 0x30, 0x16, 0xad, 0xf0, 0xb1, 0x5b, 0xd4, 0xb6, 0xe2, 0x16, 0xb5, 0xb9, 0x23, 0xf8, 0x27, + 0x03, 0xac, 0x68, 0xbf, 0xac, 0x46, 0x3f, 0x8d, 0x5b, 0xce, 0xa2, 0xc6, 0x82, 0xdc, 0x5d, 0x8d, + 0x05, 0xef, 0xff, 0xc3, 0x6b, 0x06, 0x69, 0xb9, 0xc5, 0x07, 0x58, 0xcb, 0x7d, 0x2f, 0x4f, 0xc0, + 0x89, 0x9c, 0xe2, 0x52, 0xce, 0x70, 0x8a, 0x4b, 0x27, 0x38, 0xc5, 0xa5, 0x72, 0x64, 0x83, 0xce, + 0x41, 0x4e, 0x72, 0xa9, 0xde, 0xd7, 0x93, 0x5c, 0x6a, 0xc7, 0x75, 0x92, 0x0b, 0x64, 0x3d, 0xc9, + 0xe5, 0xcd, 0x1c, 0x8c, 0xb5, 0x62, 0x3b, 0x66, 0xb9, 0x6d, 0x21, 0xcb, 0x54, 0x13, 0xdf, 0x80, + 0x2b, 0xb6, 0x4c, 0xc5, 0xd3, 0x30, 0xc1, 0x52, 0xfb, 0xdf, 0x95, 0xe8, 0x3c, 0x70, 0xbf, 0x4d, + 0xd5, 0xcf, 0xc6, 0x4d, 0xd5, 0x17, 0x93, 0xa6, 0xea, 0x13, 0x91, 0x28, 0xd2, 0xa8, 0xb9, 0xfa, + 0xe3, 0x91, 0xe1, 0xb1, 0xc0, 0x4f, 0x4e, 0x09, 0x24, 0x9d, 0x32, 0x44, 0x7e, 0x1c, 0xaa, 0x9e, + 0x3a, 0x73, 0x52, 0x2c, 0x6c, 0xc2, 0xff, 0xa2, 0xce, 0x83, 0x0c, 0x28, 0x98, 0x26, 0xee, 0x52, + 0xdd, 0x73, 0xec, 0xa4, 0x26, 0x8e, 0x3c, 0x15, 0x65, 0x6e, 0xd4, 0x64, 0x5e, 0xbe, 0x87, 0xc9, + 0x5c, 0x87, 0xba, 0xa5, 0x7b, 0xfe, 0x7a, 0xb7, 0xa5, 0xfb, 0xb4, 0x25, 0xfb, 0xdb, 0xbf, 0x38, + 0xd8, 0x5c, 0xc5, 0xe6, 0xbf, 0x50, 0x21, 0x5c, 0x0e, 0x61, 0x30, 0x8a, 0x49, 0x5a, 0x30, 0xc2, + 0x5e, 0x79, 0x6f, 0x68, 0xcd, 0xaa, 0x23, 0x00, 0x0e, 0xc3, 0x23, 0xb0, 0xf4, 0x2c, 0x47, 0x70, + 0x30, 0x86, 0x3a, 0xc0, 0xaa, 0x5e, 0x1b, 0xc6, 0xaa, 0x4e, 0x3e, 0x2d, 0x94, 0x8d, 0x5d, 0xf5, + 0xc3, 0xb8, 0x35, 0x6e, 0x34, 0x8c, 0x2a, 0xc4, 0x68, 0x26, 0xc6, 0x69, 0xc9, 0x2c, 0x9c, 0x30, + 0x7a, 0xae, 0xcb, 0xe3, 0x88, 0x64, 0xf1, 0x3a, 0x2f, 0x1e, 0xc4, 0x8b, 0xcd, 0xc5, 0xb3, 0x31, + 0x49, 0xcf, 0x20, 0x7a, 0x52, 0x92, 0x0a, 0x62, 0x24, 0x0e, 0xb1, 0x1e, 0xcf, 0xc6, 0x24, 0x3d, + 0xdf, 0x28, 0x21, 0x50, 0xaf, 0xe8, 0xde, 0x96, 0x0c, 0x36, 0x0b, 0x37, 0x4a, 0x84, 0x59, 0x18, + 0xa5, 0x23, 0x33, 0x00, 0x02, 0x89, 0x97, 0x1a, 0x8b, 0xc7, 0x60, 0xae, 0x07, 0x39, 0x18, 0xa1, + 0xd2, 0xde, 0xac, 0x41, 0xfd, 0xba, 0xee, 0x9b, 0x3b, 0x94, 0xfb, 0xbc, 0x8e, 0xc7, 0xf1, 0xf0, + 0xdf, 0x72, 0x70, 0x26, 0x1e, 0xd8, 0x78, 0x8c, 0xde, 0x07, 0x7e, 0x4c, 0x0a, 0xa6, 0x72, 0xc3, + 0x01, 0xb5, 0xe0, 0x7e, 0x88, 0xbe, 0x38, 0xc9, 0xe3, 0xf6, 0x43, 0x34, 0x07, 0x31, 0xc4, 0xc1, + 0x75, 0x79, 0xbf, 0xf8, 0x21, 0x1e, 0xec, 0xd3, 0xf4, 0x12, 0x5e, 0x92, 0xca, 0x03, 0xe3, 0x25, + 0xa9, 0x3e, 0x10, 0xaa, 0x69, 0x37, 0xe2, 0x25, 0xa9, 0x65, 0x8c, 0xd6, 0x91, 0x7b, 0x01, 0x04, + 0xda, 0x20, 0x6f, 0x0b, 0xdf, 0xc6, 0xaf, 0xac, 0xd7, 0x4c, 0xa3, 0xdb, 0xd0, 0x3d, 0xd3, 0x90, + 0x4a, 0x42, 0x86, 0xd3, 0x43, 0xd5, 0xf9, 0x66, 0xc2, 0xa9, 0xcf, 0x5f, 0x51, 0x60, 0x87, 0xc7, + 0xb9, 0xe5, 0x33, 0x1d, 0xe7, 0x46, 0xe6, 0xa0, 0x68, 0x6f, 0xd3, 0xdd, 0xc3, 0x6d, 0x88, 0xe7, + 0x2b, 0x95, 0xeb, 0xd7, 0xe8, 0x2e, 0xf2, 0xc2, 0xda, 0x3b, 0x79, 0x00, 0xf6, 0xf9, 0x07, 0xf3, + 0x57, 0x7c, 0x14, 0x2a, 0x5e, 0x8f, 0x5b, 0x16, 0xa4, 0x7a, 0x13, 0x86, 0x38, 0x89, 0x64, 0x54, + 0xf9, 0xe4, 0x71, 0x28, 0xbd, 0xde, 0xa3, 0x3d, 0xe5, 0x7c, 0x0f, 0x94, 0xdb, 0xcf, 0xb3, 0x44, + 0x14, 0x79, 0xc7, 0x67, 0x7b, 0x54, 0x7e, 0x8d, 0xd2, 0x71, 0xf9, 0x35, 0x6a, 0x50, 0xb9, 0xee, + 0xf0, 0x88, 0x49, 0xed, 0xaf, 0xf3, 0x00, 0x61, 0x44, 0x1a, 0xf9, 0x76, 0x0e, 0x1e, 0x0e, 0x3a, + 0x9c, 0x2f, 0xd6, 0x28, 0xfc, 0xc0, 0xde, 0xcc, 0x3e, 0x8e, 0xb4, 0xce, 0xce, 0x47, 0xa0, 0xd5, + 0x34, 0x76, 0x98, 0x5e, 0x0b, 0x82, 0x50, 0xa5, 0x9d, 0xae, 0xbf, 0x3b, 0x6f, 0xba, 0xb2, 0x05, + 0xa6, 0x06, 0x3e, 0x5e, 0x96, 0x34, 0xa2, 0xa8, 0x5c, 0x48, 0xf3, 0x4e, 0xa4, 0x72, 0x30, 0xc0, + 0x21, 0x5b, 0x50, 0xb5, 0x9d, 0x57, 0x3d, 0x26, 0x0e, 0xd9, 0x1c, 0x5f, 0x1c, 0x5e, 0xe4, 0x42, + 0xac, 0xc2, 0x26, 0x2e, 0x5f, 0xb0, 0x62, 0x4b, 0x61, 0x7f, 0x2b, 0x0f, 0xa7, 0x52, 0xe4, 0x40, + 0x5e, 0x84, 0x71, 0x19, 0xfc, 0x17, 0x9e, 0x5c, 0x9d, 0x0b, 0x4f, 0xae, 0x6e, 0x26, 0xf2, 0xb0, + 0x8f, 0x9a, 0xbc, 0x0a, 0xa0, 0x1b, 0x06, 0xf5, 0xbc, 0x15, 0xa7, 0xa5, 0xb4, 0xf7, 0x17, 0x98, + 0xfa, 0x32, 0x1b, 0xa4, 0xde, 0xd9, 0x9b, 0xfc, 0x44, 0x5a, 0x3c, 0x6f, 0x42, 0xce, 0x61, 0x01, + 0x8c, 0x40, 0x92, 0x2f, 0x03, 0x88, 0x85, 0x6a, 0x70, 0xe4, 0xc0, 0x3d, 0xac, 0x3b, 0x53, 0xea, + 0x70, 0xa7, 0xa9, 0xcf, 0xf7, 0x74, 0xdb, 0x37, 0xfd, 0x5d, 0x71, 0xc2, 0xcb, 0xcd, 0x00, 0x05, + 0x23, 0x88, 0xda, 0xef, 0xe4, 0xa1, 0xaa, 0xec, 0xca, 0xf7, 0xc1, 0x98, 0xd8, 0x8e, 0x19, 0x13, + 0x8f, 0x28, 0x82, 0x37, 0xcd, 0x94, 0xe8, 0x24, 0x4c, 0x89, 0x8b, 0xd9, 0x59, 0xdd, 0xdd, 0x90, + 0xf8, 0xbd, 0x3c, 0x8c, 0x29, 0xd2, 0xac, 0x66, 0xc4, 0xcf, 0xc2, 0x09, 0xe1, 0x79, 0x5f, 0xd1, + 0x6f, 0x8b, 0xc3, 0x6e, 0xb8, 0xc0, 0x8a, 0x22, 0x68, 0xb6, 0x11, 0xcf, 0xc2, 0x24, 0x2d, 0x6b, + 0xd6, 0x22, 0x69, 0x9d, 0xad, 0xba, 0x84, 0xaf, 0x4e, 0xac, 0x0e, 0x79, 0xb3, 0x6e, 0x24, 0xf2, + 0xb0, 0x8f, 0x3a, 0x69, 0xc7, 0x2c, 0x1e, 0x83, 0x1d, 0xf3, 0x4f, 0x72, 0x30, 0x12, 0xca, 0xeb, + 0xd8, 0xad, 0x98, 0x9b, 0x71, 0x2b, 0xe6, 0x6c, 0xe6, 0xe6, 0x30, 0xc0, 0x86, 0xf9, 0x9f, 0x2a, + 0x10, 0x0b, 0x24, 0x27, 0x1b, 0x70, 0xce, 0x4c, 0x0d, 0x87, 0x8b, 0x8c, 0x36, 0xc1, 0xce, 0xe8, + 0xa5, 0x81, 0x94, 0x78, 0x17, 0x14, 0xd2, 0x83, 0xea, 0x0e, 0x75, 0x7d, 0xd3, 0xa0, 0xea, 0xfb, + 0x16, 0x33, 0xab, 0x64, 0xd2, 0x52, 0x1b, 0xc8, 0xf4, 0xa6, 0x64, 0x80, 0x01, 0x2b, 0xb2, 0x01, + 0x25, 0xda, 0x6a, 0x53, 0x75, 0xfc, 0x50, 0xc6, 0xc3, 0x3d, 0x03, 0x79, 0xb2, 0x37, 0x0f, 0x05, + 0x34, 0xf1, 0xa0, 0x66, 0x29, 0x4f, 0x9c, 0x6c, 0x87, 0xc3, 0x2b, 0x58, 0x81, 0x4f, 0x2f, 0x3c, + 0x99, 0x20, 0x48, 0xc2, 0x90, 0x0f, 0xd9, 0x0e, 0x4c, 0x82, 0xa5, 0x23, 0x1a, 0x3c, 0xee, 0x62, + 0x10, 0xf4, 0xa0, 0x76, 0x4b, 0xf7, 0xa9, 0xdb, 0xd1, 0xdd, 0x6d, 0xb9, 0xda, 0x18, 0xfe, 0x0b, + 0x5f, 0x52, 0x48, 0xe1, 0x17, 0x06, 0x49, 0x18, 0xf2, 0x21, 0x0e, 0xd4, 0x7c, 0xa9, 0x3e, 0x2b, + 0xbb, 0xe7, 0xf0, 0x4c, 0x95, 0x22, 0xee, 0xc9, 0x80, 0x72, 0xf5, 0x8a, 0x21, 0x0f, 0xb2, 0x13, + 0x3b, 0x7f, 0x59, 0x9c, 0xba, 0xdd, 0xc8, 0x60, 0x3f, 0x97, 0x50, 0xe1, 0x74, 0x93, 0x7e, 0x8e, + 0xb3, 0xf6, 0x4e, 0x29, 0x1c, 0x96, 0xef, 0xb7, 0x55, 0xef, 0xe9, 0xb8, 0x55, 0xef, 0x42, 0xd2, + 0xaa, 0x97, 0x70, 0xe8, 0x1e, 0x3e, 0x04, 0x35, 0x61, 0x4f, 0x2b, 0x1e, 0x83, 0x3d, 0xed, 0x29, + 0xa8, 0xef, 0xf0, 0x91, 0x40, 0x9c, 0x65, 0x54, 0xe2, 0xd3, 0x08, 0x1f, 0xd9, 0x6f, 0x86, 0xc9, + 0x18, 0xa5, 0x61, 0x45, 0xe4, 0x8d, 0x13, 0xc1, 0x61, 0xb0, 0xb2, 0x48, 0x33, 0x4c, 0xc6, 0x28, + 0x0d, 0x8f, 0x5e, 0x33, 0xed, 0x6d, 0x51, 0xa0, 0xc2, 0x0b, 0x88, 0xe8, 0x35, 0x95, 0x88, 0x61, + 0x3e, 0xb9, 0x04, 0xd5, 0x5e, 0x6b, 0x53, 0xd0, 0x56, 0x39, 0x2d, 0xd7, 0x30, 0xd7, 0xe7, 0x17, + 0xe4, 0xd9, 0x4a, 0x2a, 0x97, 0xd5, 0xa4, 0xa3, 0x77, 0x55, 0x06, 0x5f, 0x1b, 0xca, 0x9a, 0xac, + 0x84, 0xc9, 0x18, 0xa5, 0x21, 0x9f, 0x82, 0x31, 0x97, 0xb6, 0x7a, 0x06, 0x0d, 0x4a, 0x09, 0x73, + 0x1c, 0x11, 0x57, 0x6b, 0x44, 0x73, 0x30, 0x41, 0x39, 0xc0, 0x2a, 0x58, 0x1f, 0x2a, 0xd6, 0xf6, + 0xa7, 0x39, 0x20, 0xfd, 0xd1, 0xde, 0x64, 0x0b, 0xca, 0x36, 0xb7, 0x7e, 0x65, 0x3e, 0x3e, 0x3a, + 0x62, 0x44, 0x13, 0xc3, 0x92, 0x4c, 0x90, 0xf8, 0xc4, 0x86, 0x2a, 0xbd, 0xed, 0x53, 0xd7, 0x0e, + 0x76, 0x7f, 0x1c, 0xcd, 0x51, 0xd5, 0x62, 0x35, 0x20, 0x91, 0x31, 0xe0, 0xa1, 0xfd, 0x3c, 0x0f, + 0xf5, 0x08, 0xdd, 0xbd, 0x16, 0x95, 0x7c, 0x03, 0xba, 0x30, 0x3a, 0xad, 0xbb, 0x96, 0xec, 0x61, + 0x91, 0x0d, 0xe8, 0x32, 0x0b, 0x97, 0x31, 0x4a, 0x47, 0x66, 0x00, 0x3a, 0xba, 0xe7, 0x53, 0x97, + 0xcf, 0xbe, 0x89, 0x6d, 0xdf, 0x2b, 0x41, 0x0e, 0x46, 0xa8, 0xc8, 0x45, 0x79, 0xd8, 0x78, 0x31, + 0x7e, 0x4c, 0xdf, 0x80, 0x93, 0xc4, 0x4b, 0x47, 0x70, 0x92, 0x38, 0x69, 0xc3, 0xb8, 0xaa, 0xb5, + 0xca, 0x3d, 0xdc, 0x21, 0x6e, 0x62, 0xfd, 0x92, 0x80, 0xc0, 0x3e, 0x50, 0xed, 0x9d, 0x1c, 0x8c, + 0xc6, 0x4c, 0x1e, 0xe2, 0x80, 0x3d, 0xb5, 0x57, 0x21, 0x76, 0xc0, 0x5e, 0x64, 0x8b, 0xc1, 0x93, + 0x50, 0x16, 0x02, 0x4a, 0x86, 0x20, 0x0a, 0x11, 0xa2, 0xcc, 0x65, 0x63, 0x99, 0x34, 0xaa, 0x26, + 0xc7, 0x32, 0x69, 0x75, 0x45, 0x95, 0x2f, 0x9c, 0x13, 0xa2, 0x76, 0xfd, 0xce, 0x09, 0x91, 0x8e, + 0x01, 0x85, 0xf6, 0x03, 0x5e, 0x6f, 0xdf, 0xdd, 0x0d, 0xd6, 0x72, 0x6d, 0xa8, 0xc8, 0xb0, 0x33, + 0xd9, 0x35, 0x5e, 0xcc, 0x60, 0x87, 0xe1, 0x38, 0x32, 0xc0, 0x4a, 0x37, 0xb6, 0x6f, 0x6c, 0x6e, + 0xa2, 0x42, 0x27, 0x97, 0xa1, 0xe6, 0xd8, 0x0b, 0xba, 0x69, 0xf5, 0x5c, 0x35, 0xb2, 0x7f, 0x84, + 0x8d, 0x55, 0x37, 0x54, 0xe2, 0x9d, 0xbd, 0xc9, 0x33, 0xc1, 0x4b, 0xac, 0x92, 0x18, 0x96, 0xd4, + 0xfe, 0xbe, 0x00, 0x3c, 0xe4, 0x88, 0x3c, 0x07, 0xb5, 0x0e, 0x35, 0xb6, 0x74, 0xdb, 0xf4, 0xd4, + 0x11, 0xa1, 0x6c, 0x7d, 0x5e, 0x5b, 0x51, 0x89, 0x77, 0x98, 0x08, 0x66, 0x9b, 0xcb, 0x3c, 0xaa, + 0x3f, 0xa4, 0x25, 0x06, 0x94, 0xdb, 0x9e, 0xa7, 0x77, 0xcd, 0xcc, 0x1e, 0x6f, 0x71, 0x24, 0xa3, + 0x18, 0x06, 0xc4, 0x33, 0x4a, 0x68, 0x62, 0x40, 0xa9, 0x6b, 0xe9, 0xa6, 0x9d, 0xf9, 0x6a, 0x1c, + 0xf6, 0x05, 0xab, 0x0c, 0x49, 0x18, 0xa5, 0xf8, 0x23, 0x0a, 0x6c, 0xd2, 0x83, 0xba, 0x67, 0xb8, + 0x7a, 0xc7, 0xdb, 0xd2, 0x67, 0x9e, 0x79, 0x36, 0xb3, 0x9a, 0x17, 0xb2, 0x12, 0xb3, 0xce, 0x1c, + 0xce, 0xae, 0x34, 0xaf, 0xcc, 0xce, 0x3c, 0xf3, 0x2c, 0x46, 0xf9, 0x44, 0xd9, 0x3e, 0xf3, 0xd4, + 0x8c, 0xec, 0xb9, 0x47, 0xce, 0xf6, 0x99, 0xa7, 0x66, 0x30, 0xca, 0x47, 0xfb, 0xbb, 0x1c, 0xd4, + 0x02, 0x5a, 0xb2, 0x0e, 0xc0, 0xc6, 0x10, 0x79, 0x88, 0xe2, 0xa1, 0x2e, 0x34, 0xe0, 0xeb, 0xfa, + 0xf5, 0xa0, 0x30, 0x46, 0x80, 0x52, 0x4e, 0x99, 0xcc, 0x1f, 0xf5, 0x29, 0x93, 0xd3, 0x50, 0xdb, + 0xd2, 0xed, 0x96, 0xb7, 0xa5, 0x6f, 0x8b, 0xa1, 0x34, 0x72, 0xee, 0xea, 0x15, 0x95, 0x81, 0x21, + 0x8d, 0xf6, 0x5b, 0x65, 0x10, 0x6e, 0x6a, 0xd6, 0xd9, 0x5b, 0xa6, 0x27, 0xe2, 0xa4, 0x73, 0xbc, + 0x64, 0xd0, 0xd9, 0xe7, 0x65, 0x3a, 0x06, 0x14, 0xe4, 0x2c, 0x14, 0x3a, 0xa6, 0x2d, 0x7d, 0x36, + 0xdc, 0x64, 0xb7, 0x62, 0xda, 0xc8, 0xd2, 0x78, 0x96, 0x7e, 0x5b, 0x86, 0xb8, 0x89, 0x2c, 0xfd, + 0x36, 0xb2, 0x34, 0xb6, 0x88, 0xb6, 0x1c, 0x67, 0x9b, 0x75, 0x5b, 0x15, 0x09, 0x57, 0xe4, 0x53, + 0x39, 0x5f, 0x44, 0x2f, 0xc7, 0xb3, 0x30, 0x49, 0x4b, 0xd6, 0xe1, 0x91, 0x37, 0xa8, 0xeb, 0xc8, + 0x71, 0xaa, 0x69, 0x51, 0xda, 0x55, 0x30, 0x42, 0x09, 0xe2, 0x01, 0x75, 0x5f, 0x4c, 0x27, 0xc1, + 0x41, 0x65, 0x79, 0x68, 0xae, 0xee, 0xb6, 0xa9, 0xbf, 0xea, 0x3a, 0x06, 0xf5, 0x3c, 0xd3, 0x6e, + 0x2b, 0xd8, 0x72, 0x08, 0xbb, 0x96, 0x4e, 0x82, 0x83, 0xca, 0x92, 0x97, 0x61, 0x42, 0x64, 0x09, + 0x75, 0x61, 0x76, 0x47, 0x37, 0x2d, 0x7d, 0xc3, 0xb4, 0xd4, 0x8d, 0x72, 0xa3, 0xc2, 0x33, 0xb2, + 0x36, 0x80, 0x06, 0x07, 0x96, 0x26, 0x57, 0x61, 0x5c, 0xf9, 0xc5, 0x56, 0xa9, 0xdb, 0x0c, 0x42, + 0x17, 0x46, 0x1b, 0x17, 0xd8, 0x8a, 0x75, 0x9e, 0x76, 0x5d, 0x6a, 0x44, 0xbd, 0x81, 0x8a, 0x0a, + 0xfb, 0xca, 0x11, 0x84, 0x33, 0x3c, 0x3e, 0x61, 0xbd, 0x3b, 0xe7, 0x38, 0x56, 0xcb, 0xb9, 0x65, + 0xab, 0x6f, 0x17, 0xaa, 0x19, 0x77, 0x85, 0x35, 0x53, 0x29, 0x70, 0x40, 0x49, 0xf6, 0xe5, 0x3c, + 0x67, 0xde, 0xb9, 0x65, 0x27, 0x51, 0x21, 0xfc, 0xf2, 0xe6, 0x00, 0x1a, 0x1c, 0x58, 0x9a, 0x2c, + 0x00, 0x49, 0x7e, 0xc1, 0x7a, 0x57, 0xba, 0x57, 0xcf, 0x88, 0xf3, 0x50, 0x92, 0xb9, 0x98, 0x52, + 0x82, 0x2c, 0xc3, 0xe9, 0x64, 0x2a, 0x63, 0x27, 0xbd, 0xac, 0xfc, 0x24, 0x54, 0x4c, 0xc9, 0xc7, + 0xd4, 0x52, 0xda, 0x6f, 0xe7, 0x61, 0x34, 0xb6, 0x81, 0xfe, 0x81, 0xdb, 0xa8, 0xcc, 0x74, 0xe8, + 0x8e, 0xd7, 0x5e, 0x9a, 0xbf, 0x42, 0xf5, 0x16, 0x75, 0xaf, 0x51, 0x75, 0xd8, 0x01, 0x1f, 0x54, + 0x56, 0x62, 0x39, 0x98, 0xa0, 0x24, 0x9b, 0x50, 0x12, 0x16, 0xe1, 0xac, 0x57, 0x63, 0x28, 0x19, + 0x71, 0xb3, 0xb0, 0xbc, 0x4f, 0xc6, 0x71, 0x29, 0x0a, 0x78, 0xcd, 0x87, 0x91, 0x28, 0x05, 0x1b, + 0x48, 0x42, 0x75, 0xb3, 0x12, 0x53, 0x35, 0x97, 0xa0, 0xe0, 0xfb, 0xc3, 0x6e, 0x81, 0x16, 0x1e, + 0x86, 0xb5, 0x65, 0x64, 0x18, 0xda, 0x26, 0xfb, 0x77, 0x9e, 0x67, 0x3a, 0xb6, 0x3c, 0x0f, 0x7b, + 0x1d, 0x2a, 0xbe, 0x34, 0xb2, 0x0d, 0xb7, 0x85, 0x9b, 0xeb, 0x28, 0xca, 0xc0, 0xa6, 0xb0, 0xb4, + 0x3f, 0xcd, 0x43, 0x2d, 0x58, 0x10, 0x1f, 0xe0, 0x9c, 0x69, 0x07, 0x6a, 0x41, 0x7c, 0x55, 0xe6, + 0xdb, 0xf6, 0xc2, 0xb0, 0x1f, 0xbe, 0x86, 0x0b, 0x5e, 0x31, 0xe4, 0x11, 0x8d, 0xdd, 0x2a, 0x64, + 0x88, 0xdd, 0xea, 0x42, 0xc5, 0x77, 0xcd, 0x76, 0x5b, 0x6a, 0xe7, 0x59, 0x82, 0xb7, 0x02, 0x71, + 0xad, 0x09, 0x40, 0x29, 0x59, 0xf1, 0x82, 0x8a, 0x8d, 0xf6, 0x1a, 0x8c, 0x27, 0x29, 0xb9, 0xea, + 0x6a, 0x6c, 0xd1, 0x56, 0xcf, 0x52, 0x32, 0x0e, 0x55, 0x57, 0x99, 0x8e, 0x01, 0x05, 0x5b, 0xbe, + 0xb2, 0xdf, 0xf4, 0x86, 0x63, 0x2b, 0xf5, 0x91, 0xaf, 0x02, 0xd6, 0x64, 0x1a, 0x06, 0xb9, 0xda, + 0x5f, 0x15, 0xe0, 0x6c, 0x68, 0xd6, 0x58, 0xd1, 0x6d, 0xbd, 0x7d, 0x80, 0x2b, 0xd6, 0x3e, 0xd8, + 0x14, 0x73, 0xd8, 0xcb, 0x02, 0x0a, 0x0f, 0xc0, 0x65, 0x01, 0xff, 0x90, 0x07, 0x1e, 0x0b, 0x4a, + 0xbe, 0x0a, 0x23, 0x7a, 0xe4, 0x76, 0x4d, 0xf9, 0x3b, 0x2f, 0x67, 0xfe, 0x9d, 0x3c, 0xe4, 0x34, + 0x88, 0x6d, 0x8a, 0xa6, 0x62, 0x8c, 0x21, 0x71, 0xa0, 0xba, 0xa9, 0x5b, 0x16, 0xd3, 0x85, 0x32, + 0xbb, 0x69, 0x62, 0xcc, 0x79, 0x33, 0x5f, 0x90, 0xd0, 0x18, 0x30, 0x21, 0x6f, 0xe6, 0x60, 0xd4, + 0x8d, 0x2e, 0x93, 0xe4, 0x0f, 0xc9, 0xe2, 0xc4, 0x8f, 0xa0, 0x45, 0x23, 0xa9, 0xa2, 0x6b, 0xb1, + 0x38, 0x4f, 0xed, 0x2f, 0x73, 0x30, 0xda, 0xb4, 0xcc, 0x96, 0x69, 0xb7, 0x8f, 0xf1, 0xae, 0x82, + 0x1b, 0x50, 0xf2, 0x2c, 0xb3, 0x45, 0x87, 0x9c, 0x4d, 0xc4, 0x3c, 0xc6, 0x00, 0x50, 0xe0, 0xc4, + 0x2f, 0x3f, 0x28, 0x1c, 0xe0, 0xf2, 0x83, 0x5f, 0x95, 0x41, 0x46, 0x35, 0x93, 0x1e, 0xd4, 0xda, + 0xea, 0x4c, 0x75, 0xf9, 0x8d, 0x57, 0x32, 0x9c, 0xc7, 0x17, 0x3b, 0x9d, 0x5d, 0x8c, 0xfd, 0x41, + 0x22, 0x86, 0x9c, 0x08, 0x8d, 0x5f, 0xeb, 0x3a, 0x9f, 0xf1, 0x5a, 0x57, 0xc1, 0xae, 0xff, 0x62, + 0x57, 0x1d, 0x8a, 0x5b, 0xbe, 0xdf, 0x95, 0x8d, 0x69, 0xf8, 0xb0, 0xf5, 0xf0, 0x48, 0x18, 0xa1, + 0x13, 0xb1, 0x77, 0xe4, 0xd0, 0x8c, 0x85, 0xad, 0x07, 0xd7, 0x78, 0xcd, 0x65, 0x0a, 0x18, 0x88, + 0xb2, 0x60, 0xef, 0xc8, 0xa1, 0xc9, 0x57, 0xa0, 0xee, 0xbb, 0xba, 0xed, 0x6d, 0x3a, 0x6e, 0x87, + 0xba, 0x72, 0x8d, 0xba, 0x90, 0xe1, 0x66, 0xd3, 0xb5, 0x10, 0x4d, 0x78, 0x22, 0x63, 0x49, 0x18, + 0xe5, 0x46, 0xb6, 0xa1, 0xda, 0x6b, 0x89, 0x8a, 0x49, 0xf3, 0xd3, 0x6c, 0x96, 0xcb, 0x6a, 0x23, + 0xe1, 0x00, 0xea, 0x0d, 0x03, 0x06, 0xf1, 0x1b, 0xeb, 0x2a, 0x47, 0x75, 0x63, 0x5d, 0xb4, 0x35, + 0xa6, 0x9d, 0x57, 0x41, 0x3a, 0x52, 0xaf, 0xb5, 0xdb, 0x32, 0x9a, 0x69, 0x21, 0xb3, 0xca, 0x29, + 0x58, 0xd6, 0x03, 0xdd, 0xd8, 0x6e, 0xa3, 0xe2, 0xa1, 0x75, 0x40, 0x7a, 0x09, 0x88, 0x11, 0xbb, + 0xd7, 0x45, 0x6c, 0xa2, 0x9a, 0x3e, 0xd8, 0x78, 0x10, 0x5c, 0x30, 0x12, 0x39, 0x57, 0x3a, 0xf5, + 0x02, 0x17, 0xed, 0xcf, 0xf2, 0x50, 0x58, 0x5b, 0x6e, 0x8a, 0xb3, 0x22, 0xf9, 0xa5, 0x49, 0xb4, + 0xb9, 0x6d, 0x76, 0x6f, 0x52, 0xd7, 0xdc, 0xdc, 0x95, 0x4b, 0xef, 0xc8, 0x59, 0x91, 0x49, 0x0a, + 0x4c, 0x29, 0x45, 0x5e, 0x81, 0x11, 0x43, 0x9f, 0xa3, 0xae, 0x3f, 0x8c, 0x61, 0x81, 0xef, 0x16, + 0x9d, 0x9b, 0x0d, 0x8b, 0x63, 0x0c, 0x8c, 0xac, 0x03, 0x18, 0x21, 0x74, 0xe1, 0xd0, 0xe6, 0x90, + 0x08, 0x70, 0x04, 0x88, 0x20, 0xd4, 0xb6, 0x19, 0x29, 0x47, 0x2d, 0x1e, 0x06, 0x95, 0xb7, 0x9c, + 0x6b, 0xaa, 0x2c, 0x86, 0x30, 0x9a, 0x0d, 0xa3, 0xb1, 0xcb, 0x5e, 0xc8, 0x27, 0xa1, 0xea, 0x74, + 0x23, 0xc3, 0x69, 0x8d, 0xc7, 0x4d, 0x56, 0x6f, 0xc8, 0xb4, 0x3b, 0x7b, 0x93, 0xa3, 0xcb, 0x4e, + 0xdb, 0x34, 0x54, 0x02, 0x06, 0xe4, 0x44, 0x83, 0x32, 0xdf, 0xe2, 0xa5, 0xae, 0x7a, 0xe1, 0x73, + 0x07, 0xbf, 0x8d, 0xc1, 0x43, 0x99, 0xa3, 0x7d, 0xad, 0x08, 0xa1, 0x6f, 0x8d, 0x78, 0x50, 0x16, + 0x21, 0xec, 0x72, 0xe4, 0x3e, 0xd6, 0x68, 0x79, 0xc9, 0x8a, 0xb4, 0xa1, 0xf0, 0x9a, 0xb3, 0x91, + 0x79, 0xe0, 0x8e, 0xec, 0xed, 0x16, 0xb6, 0xb2, 0x48, 0x02, 0x32, 0x0e, 0xe4, 0xbf, 0xe7, 0xe0, + 0xa4, 0x97, 0x54, 0x7d, 0x65, 0x73, 0xc0, 0xec, 0x3a, 0x7e, 0x52, 0x99, 0x96, 0x01, 0xae, 0x83, + 0xb2, 0xb1, 0xbf, 0x2e, 0x4c, 0xfe, 0xc2, 0xe9, 0x25, 0x9b, 0xd3, 0x62, 0xc6, 0x0b, 0x0a, 0xe3, + 0xf2, 0x8f, 0xa7, 0xa1, 0x64, 0xa5, 0x7d, 0x23, 0x0f, 0xf5, 0xc8, 0x68, 0x9d, 0xf9, 0x06, 0xa1, + 0xdb, 0x89, 0x1b, 0x84, 0x56, 0x87, 0xf7, 0x01, 0x87, 0xb5, 0x3a, 0xee, 0x4b, 0x84, 0x7e, 0x2f, + 0x0f, 0x85, 0xf5, 0xf9, 0x85, 0xf8, 0xa2, 0x35, 0x77, 0x1f, 0x16, 0xad, 0x5b, 0x50, 0xd9, 0xe8, + 0x99, 0x96, 0x6f, 0xda, 0x99, 0x4f, 0x9f, 0x50, 0x17, 0x2e, 0x49, 0x1f, 0x83, 0x40, 0x45, 0x05, + 0x4f, 0xda, 0x50, 0x69, 0x8b, 0xe3, 0xff, 0x32, 0x47, 0xc6, 0xc9, 0x63, 0x04, 0x05, 0x23, 0xf9, + 0x82, 0x0a, 0x5d, 0xdb, 0x05, 0x79, 0x73, 0xfc, 0x7d, 0x97, 0xa6, 0xf6, 0x15, 0x08, 0xb4, 0x80, + 0xfb, 0xcf, 0xfc, 0x6f, 0x72, 0x10, 0x57, 0x7c, 0xee, 0x7f, 0x6b, 0xda, 0x4e, 0xb6, 0xa6, 0xf9, + 0xa3, 0xe8, 0x7c, 0xe9, 0x0d, 0x4a, 0xfb, 0xcd, 0x3c, 0x94, 0xef, 0xdb, 0x8e, 0x61, 0x1a, 0x0b, + 0xf2, 0x9b, 0xcb, 0x38, 0x30, 0x0e, 0x0c, 0xf1, 0xeb, 0x24, 0x42, 0xfc, 0xb2, 0x5e, 0x11, 0x7b, + 0x8f, 0x00, 0xbf, 0x3f, 0xca, 0x81, 0x1c, 0x96, 0x97, 0x6c, 0xcf, 0xd7, 0x6d, 0x83, 0x12, 0x23, + 0x98, 0x03, 0xb2, 0x46, 0x92, 0xc8, 0x68, 0x2b, 0x31, 0xed, 0xf3, 0x67, 0x35, 0xe6, 0x93, 0x8f, + 0x43, 0x75, 0xcb, 0xf1, 0x7c, 0x3e, 0xce, 0xe7, 0xe3, 0xd6, 0xa5, 0x2b, 0x32, 0x1d, 0x03, 0x8a, + 0xa4, 0xc7, 0xb5, 0x34, 0xd8, 0xe3, 0xaa, 0x7d, 0x37, 0x0f, 0x23, 0xef, 0x97, 0x6d, 0xcf, 0x69, + 0x21, 0x91, 0x85, 0x8c, 0x21, 0x91, 0xc5, 0xc3, 0x84, 0x44, 0x6a, 0x3f, 0xce, 0x01, 0xdc, 0xb7, + 0x3d, 0xd7, 0xad, 0x78, 0xb4, 0x62, 0xe6, 0x76, 0x95, 0x1e, 0xab, 0xf8, 0xff, 0x4b, 0xea, 0x93, + 0x78, 0xa4, 0xe2, 0x5b, 0x39, 0x18, 0xd3, 0x63, 0xd1, 0x7f, 0x99, 0x55, 0xcb, 0x44, 0x30, 0x61, + 0xb0, 0xbf, 0x34, 0x9e, 0x8e, 0x09, 0xb6, 0xe4, 0xf9, 0xf0, 0xbc, 0xdf, 0xeb, 0x61, 0xb3, 0xef, + 0x3b, 0xa8, 0x97, 0xab, 0x39, 0x31, 0xca, 0x7b, 0x44, 0x5b, 0x16, 0x8e, 0x24, 0xda, 0x32, 0xba, + 0x8f, 0xac, 0x78, 0xd7, 0x7d, 0x64, 0x3b, 0x50, 0xdb, 0x74, 0x9d, 0x0e, 0x0f, 0x68, 0x94, 0x97, + 0xcb, 0x5e, 0xce, 0x30, 0xa7, 0x84, 0xd7, 0xaa, 0x87, 0x36, 0x9e, 0x05, 0x85, 0x8f, 0x21, 0x2b, + 0x6e, 0x16, 0x77, 0x04, 0xd7, 0xf2, 0x51, 0x72, 0x0d, 0xc6, 0x92, 0x35, 0x81, 0x8e, 0x8a, 0x4d, + 0x3c, 0x88, 0xb1, 0x72, 0x7f, 0x82, 0x18, 0xb5, 0xef, 0x97, 0xd5, 0x00, 0xf6, 0xc0, 0x1d, 0x2d, + 0xf9, 0xfe, 0xdf, 0xab, 0x9b, 0xdc, 0x48, 0x5b, 0xb9, 0x8f, 0x1b, 0x69, 0xab, 0x47, 0xb3, 0x91, + 0xb6, 0x96, 0x6d, 0x23, 0x2d, 0x64, 0xdf, 0x48, 0x5b, 0xcf, 0xb6, 0x91, 0x76, 0x64, 0xa8, 0x8d, + 0xb4, 0xa3, 0x07, 0xda, 0x48, 0xbb, 0x57, 0x80, 0xc4, 0x2a, 0xf3, 0x03, 0x8f, 0xd2, 0x3f, 0x29, + 0x8f, 0xd2, 0xdb, 0x79, 0x08, 0x87, 0xcd, 0x43, 0x46, 0xdc, 0xbc, 0x0c, 0xd5, 0x8e, 0x7e, 0x7b, + 0x9e, 0x5a, 0xfa, 0x6e, 0x96, 0xfb, 0x53, 0x57, 0x24, 0x06, 0x06, 0x68, 0xc4, 0x03, 0x30, 0x83, + 0x33, 0xcc, 0x33, 0xdb, 0xe6, 0xc3, 0xe3, 0xd0, 0x85, 0xf5, 0x2f, 0x7c, 0xc7, 0x08, 0x1b, 0xed, + 0x0f, 0xf3, 0x20, 0x0f, 0xbb, 0x27, 0x14, 0x4a, 0x9b, 0xe6, 0x6d, 0xda, 0xca, 0x1c, 0x3f, 0x1b, + 0xb9, 0xd5, 0x5a, 0x38, 0x1f, 0x78, 0x02, 0x0a, 0x74, 0x6e, 0x55, 0x16, 0xce, 0x24, 0x29, 0xbf, + 0x0c, 0x56, 0xe5, 0xa8, 0x53, 0x4a, 0x5a, 0x95, 0x45, 0x12, 0x2a, 0x1e, 0xc2, 0x88, 0xcd, 0xe3, + 0x0a, 0x32, 0xfb, 0xce, 0x62, 0xf1, 0x09, 0xca, 0x88, 0xed, 0x89, 0x9d, 0xf4, 0x92, 0x47, 0xe3, + 0x4b, 0x3f, 0xfa, 0xc9, 0x85, 0x87, 0x7e, 0xfc, 0x93, 0x0b, 0x0f, 0xbd, 0xfb, 0x93, 0x0b, 0x0f, + 0x7d, 0x6d, 0xff, 0x42, 0xee, 0x47, 0xfb, 0x17, 0x72, 0x3f, 0xde, 0xbf, 0x90, 0x7b, 0x77, 0xff, + 0x42, 0xee, 0xcf, 0xf7, 0x2f, 0xe4, 0xfe, 0xcb, 0x5f, 0x5c, 0x78, 0xe8, 0x8b, 0xcf, 0x85, 0x55, + 0x98, 0x56, 0x55, 0x98, 0x56, 0x0c, 0xa7, 0xbb, 0xdb, 0xed, 0x69, 0x56, 0x85, 0x30, 0x45, 0x55, + 0xe1, 0x1f, 0x03, 0x00, 0x00, 0xff, 0xff, 0xb9, 0x32, 0x6d, 0x43, 0x50, 0x97, 0x00, 0x00, } func (m *AbstractPodTemplate) Marshal() (dAtA []byte, err error) { @@ -6474,6 +6479,22 @@ func (m *MonoVertexStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + i -= len(m.UpdateHash) + copy(dAtA[i:], m.UpdateHash) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.UpdateHash))) + i-- + dAtA[i] = 0x72 + i -= len(m.CurrentHash) + copy(dAtA[i:], m.CurrentHash) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.CurrentHash))) + i-- + dAtA[i] = 0x6a + i = encodeVarintGenerated(dAtA, i, uint64(m.UpdatedReplicas)) + i-- + dAtA[i] = 0x60 + i = encodeVarintGenerated(dAtA, i, uint64(m.CurrentReplicas)) + i-- + dAtA[i] = 0x58 i = encodeVarintGenerated(dAtA, i, uint64(m.ReadyReplicas)) i-- dAtA[i] = 0x50 @@ -8947,6 +8968,22 @@ func (m *VertexStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + i -= len(m.UpdateHash) + copy(dAtA[i:], m.UpdateHash) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.UpdateHash))) + i-- + dAtA[i] = 0x6a + i -= len(m.CurrentHash) + copy(dAtA[i:], m.CurrentHash) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.CurrentHash))) + i-- + dAtA[i] = 0x62 + i = encodeVarintGenerated(dAtA, i, uint64(m.UpdatedReplicas)) + i-- + dAtA[i] = 0x58 + i = encodeVarintGenerated(dAtA, i, uint64(m.CurrentReplicas)) + i-- + dAtA[i] = 0x50 i = encodeVarintGenerated(dAtA, i, uint64(m.ReadyReplicas)) i-- dAtA[i] = 0x48 @@ -10390,6 +10427,12 @@ func (m *MonoVertexStatus) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) n += 1 + sovGenerated(uint64(m.ObservedGeneration)) n += 1 + sovGenerated(uint64(m.ReadyReplicas)) + n += 1 + sovGenerated(uint64(m.CurrentReplicas)) + n += 1 + sovGenerated(uint64(m.UpdatedReplicas)) + l = len(m.CurrentHash) + n += 1 + l + sovGenerated(uint64(l)) + l = len(m.UpdateHash) + n += 1 + l + sovGenerated(uint64(l)) return n } @@ -11305,6 +11348,12 @@ func (m *VertexStatus) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) n += 1 + sovGenerated(uint64(m.ObservedGeneration)) n += 1 + sovGenerated(uint64(m.ReadyReplicas)) + n += 1 + sovGenerated(uint64(m.CurrentReplicas)) + n += 1 + sovGenerated(uint64(m.UpdatedReplicas)) + l = len(m.CurrentHash) + n += 1 + l + sovGenerated(uint64(l)) + l = len(m.UpdateHash) + n += 1 + l + sovGenerated(uint64(l)) return n } @@ -12229,6 +12278,10 @@ func (this *MonoVertexStatus) String() string { `LastScaledAt:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.LastScaledAt), "Time", "v11.Time", 1), `&`, ``, 1) + `,`, `ObservedGeneration:` + fmt.Sprintf("%v", this.ObservedGeneration) + `,`, `ReadyReplicas:` + fmt.Sprintf("%v", this.ReadyReplicas) + `,`, + `CurrentReplicas:` + fmt.Sprintf("%v", this.CurrentReplicas) + `,`, + `UpdatedReplicas:` + fmt.Sprintf("%v", this.UpdatedReplicas) + `,`, + `CurrentHash:` + fmt.Sprintf("%v", this.CurrentHash) + `,`, + `UpdateHash:` + fmt.Sprintf("%v", this.UpdateHash) + `,`, `}`, }, "") return s @@ -12826,6 +12879,10 @@ func (this *VertexStatus) String() string { `LastScaledAt:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.LastScaledAt), "Time", "v11.Time", 1), `&`, ``, 1) + `,`, `ObservedGeneration:` + fmt.Sprintf("%v", this.ObservedGeneration) + `,`, `ReadyReplicas:` + fmt.Sprintf("%v", this.ReadyReplicas) + `,`, + `CurrentReplicas:` + fmt.Sprintf("%v", this.CurrentReplicas) + `,`, + `UpdatedReplicas:` + fmt.Sprintf("%v", this.UpdatedReplicas) + `,`, + `CurrentHash:` + fmt.Sprintf("%v", this.CurrentHash) + `,`, + `UpdateHash:` + fmt.Sprintf("%v", this.UpdateHash) + `,`, `}`, }, "") return s @@ -23630,6 +23687,108 @@ func (m *MonoVertexStatus) Unmarshal(dAtA []byte) error { break } } + case 11: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field CurrentReplicas", wireType) + } + m.CurrentReplicas = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.CurrentReplicas |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 12: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field UpdatedReplicas", wireType) + } + m.UpdatedReplicas = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.UpdatedReplicas |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 13: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field CurrentHash", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.CurrentHash = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 14: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field UpdateHash", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.UpdateHash = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) @@ -30950,6 +31109,108 @@ func (m *VertexStatus) Unmarshal(dAtA []byte) error { break } } + case 10: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field CurrentReplicas", wireType) + } + m.CurrentReplicas = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.CurrentReplicas |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 11: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field UpdatedReplicas", wireType) + } + m.UpdatedReplicas = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.UpdatedReplicas |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 12: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field CurrentHash", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.CurrentHash = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 13: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field UpdateHash", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.UpdateHash = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) diff --git a/pkg/apis/numaflow/v1alpha1/generated.proto b/pkg/apis/numaflow/v1alpha1/generated.proto index 9c513d6fde..8fadbab191 100644 --- a/pkg/apis/numaflow/v1alpha1/generated.proto +++ b/pkg/apis/numaflow/v1alpha1/generated.proto @@ -977,6 +977,18 @@ message MonoVertexStatus { // The number of pods targeted by this MonoVertex with a Ready Condition. // +optional optional uint32 readyReplicas = 10; + + // The number of Pods created by the controller from the MonoVertex version indicated by currentHash. + optional uint32 currentReplicas = 11; + + // The number of Pods created by the controller from the MonoVertex version indicated by updateHash. + optional uint32 updatedReplicas = 12; + + // If not empty, indicates the version of the MonoVertex used to generate Pods in the sequence [0,currentReplicas). + optional string currentHash = 13; + + // If not empty, indicates the version of the MonoVertx used to generate Pods in the sequence [replicas-updatedReplicas,replicas) + optional string updateHash = 14; } message NativeRedis { @@ -1697,6 +1709,18 @@ message VertexStatus { // The number of pods targeted by this Vertex with a Ready Condition. // +optional optional uint32 readyReplicas = 9; + + // The number of Pods created by the controller from the Vertex version indicated by currentHash. + optional uint32 currentReplicas = 10; + + // The number of Pods created by the controller from the Vertex version indicated by updateHash. + optional uint32 updatedReplicas = 11; + + // If not empty, indicates the version of the Vertex used to generate Pods in the sequence [0,currentReplicas). + optional string currentHash = 12; + + // If not empty, indicates the version of the Vertx used to generate Pods in the sequence [replicas-updatedReplicas,replicas) + optional string updateHash = 13; } message VertexTemplate { diff --git a/pkg/apis/numaflow/v1alpha1/mono_vertex_types.go b/pkg/apis/numaflow/v1alpha1/mono_vertex_types.go index 15544b81b6..b05fd8c5f4 100644 --- a/pkg/apis/numaflow/v1alpha1/mono_vertex_types.go +++ b/pkg/apis/numaflow/v1alpha1/mono_vertex_types.go @@ -487,6 +487,14 @@ type MonoVertexStatus struct { // The number of pods targeted by this MonoVertex with a Ready Condition. // +optional ReadyReplicas uint32 `json:"readyReplicas,omitempty" protobuf:"varint,10,opt,name=readyReplicas"` + // The number of Pods created by the controller from the MonoVertex version indicated by currentHash. + CurrentReplicas uint32 `json:"currentReplicas,omitempty" protobuf:"varint,11,opt,name=currentReplicas"` + // The number of Pods created by the controller from the MonoVertex version indicated by updateHash. + UpdatedReplicas uint32 `json:"updatedReplicas,omitempty" protobuf:"varint,12,opt,name=updatedReplicas"` + // If not empty, indicates the version of the MonoVertex used to generate Pods in the sequence [0,currentReplicas). + CurrentHash string `json:"currentHash,omitempty" protobuf:"bytes,13,opt,name=currentHash"` + // If not empty, indicates the version of the MonoVertx used to generate Pods in the sequence [replicas-updatedReplicas,replicas) + UpdateHash string `json:"updateHash,omitempty" protobuf:"bytes,14,opt,name=updateHash"` } // SetObservedGeneration sets the Status ObservedGeneration diff --git a/pkg/apis/numaflow/v1alpha1/openapi_generated.go b/pkg/apis/numaflow/v1alpha1/openapi_generated.go index 79aab81c33..bb128213f0 100644 --- a/pkg/apis/numaflow/v1alpha1/openapi_generated.go +++ b/pkg/apis/numaflow/v1alpha1/openapi_generated.go @@ -3423,6 +3423,34 @@ func schema_pkg_apis_numaflow_v1alpha1_MonoVertexStatus(ref common.ReferenceCall Format: "int64", }, }, + "currentReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "The number of Pods created by the controller from the MonoVertex version indicated by currentHash.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "updatedReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "The number of Pods created by the controller from the MonoVertex version indicated by updateHash.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "currentHash": { + SchemaProps: spec.SchemaProps{ + Description: "If not empty, indicates the version of the MonoVertex used to generate Pods in the sequence [0,currentReplicas).", + Type: []string{"string"}, + Format: "", + }, + }, + "updateHash": { + SchemaProps: spec.SchemaProps{ + Description: "If not empty, indicates the version of the MonoVertx used to generate Pods in the sequence [replicas-updatedReplicas,replicas)", + Type: []string{"string"}, + Format: "", + }, + }, }, }, }, @@ -5770,6 +5798,34 @@ func schema_pkg_apis_numaflow_v1alpha1_VertexStatus(ref common.ReferenceCallback Format: "int64", }, }, + "currentReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "The number of Pods created by the controller from the Vertex version indicated by currentHash.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "updatedReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "The number of Pods created by the controller from the Vertex version indicated by updateHash.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "currentHash": { + SchemaProps: spec.SchemaProps{ + Description: "If not empty, indicates the version of the Vertex used to generate Pods in the sequence [0,currentReplicas).", + Type: []string{"string"}, + Format: "", + }, + }, + "updateHash": { + SchemaProps: spec.SchemaProps{ + Description: "If not empty, indicates the version of the Vertx used to generate Pods in the sequence [replicas-updatedReplicas,replicas)", + Type: []string{"string"}, + Format: "", + }, + }, }, }, }, diff --git a/pkg/apis/numaflow/v1alpha1/vertex_types.go b/pkg/apis/numaflow/v1alpha1/vertex_types.go index 2e78357bb9..0b5ec7efc9 100644 --- a/pkg/apis/numaflow/v1alpha1/vertex_types.go +++ b/pkg/apis/numaflow/v1alpha1/vertex_types.go @@ -730,6 +730,14 @@ type VertexStatus struct { // The number of pods targeted by this Vertex with a Ready Condition. // +optional ReadyReplicas uint32 `json:"readyReplicas,omitempty" protobuf:"varint,9,opt,name=readyReplicas"` + // The number of Pods created by the controller from the Vertex version indicated by currentHash. + CurrentReplicas uint32 `json:"currentReplicas,omitempty" protobuf:"varint,10,opt,name=currentReplicas"` + // The number of Pods created by the controller from the Vertex version indicated by updateHash. + UpdatedReplicas uint32 `json:"updatedReplicas,omitempty" protobuf:"varint,11,opt,name=updatedReplicas"` + // If not empty, indicates the version of the Vertex used to generate Pods in the sequence [0,currentReplicas). + CurrentHash string `json:"currentHash,omitempty" protobuf:"bytes,12,opt,name=currentHash"` + // If not empty, indicates the version of the Vertx used to generate Pods in the sequence [replicas-updatedReplicas,replicas) + UpdateHash string `json:"updateHash,omitempty" protobuf:"bytes,13,opt,name=updateHash"` } func (vs *VertexStatus) MarkPhase(phase VertexPhase, reason, message string) { diff --git a/rust/numaflow-models/src/models/mono_vertex_status.rs b/rust/numaflow-models/src/models/mono_vertex_status.rs index b0773192e8..bd2fdee807 100644 --- a/rust/numaflow-models/src/models/mono_vertex_status.rs +++ b/rust/numaflow-models/src/models/mono_vertex_status.rs @@ -21,6 +21,12 @@ pub struct MonoVertexStatus { /// Conditions are the latest available observations of a resource's current state. #[serde(rename = "conditions", skip_serializing_if = "Option::is_none")] pub conditions: Option>, + /// If not empty, indicates the version of the MonoVertex used to generate Pods in the sequence [0,currentReplicas). + #[serde(rename = "currentHash", skip_serializing_if = "Option::is_none")] + pub current_hash: Option, + /// The number of Pods created by the controller from the MonoVertex version indicated by currentHash. + #[serde(rename = "currentReplicas", skip_serializing_if = "Option::is_none")] + pub current_replicas: Option, #[serde(rename = "lastScaledAt", skip_serializing_if = "Option::is_none")] pub last_scaled_at: Option, #[serde(rename = "lastUpdated", skip_serializing_if = "Option::is_none")] @@ -42,12 +48,20 @@ pub struct MonoVertexStatus { pub replicas: Option, #[serde(rename = "selector", skip_serializing_if = "Option::is_none")] pub selector: Option, + /// If not empty, indicates the version of the MonoVertx used to generate Pods in the sequence [replicas-updatedReplicas,replicas) + #[serde(rename = "updateHash", skip_serializing_if = "Option::is_none")] + pub update_hash: Option, + /// The number of Pods created by the controller from the MonoVertex version indicated by updateHash. + #[serde(rename = "updatedReplicas", skip_serializing_if = "Option::is_none")] + pub updated_replicas: Option, } impl MonoVertexStatus { pub fn new() -> MonoVertexStatus { MonoVertexStatus { conditions: None, + current_hash: None, + current_replicas: None, last_scaled_at: None, last_updated: None, message: None, @@ -57,6 +71,8 @@ impl MonoVertexStatus { reason: None, replicas: None, selector: None, + update_hash: None, + updated_replicas: None, } } } diff --git a/rust/numaflow-models/src/models/vertex_status.rs b/rust/numaflow-models/src/models/vertex_status.rs index 326a83c9b7..950ffa9ba5 100644 --- a/rust/numaflow-models/src/models/vertex_status.rs +++ b/rust/numaflow-models/src/models/vertex_status.rs @@ -21,6 +21,12 @@ pub struct VertexStatus { /// Conditions are the latest available observations of a resource's current state. #[serde(rename = "conditions", skip_serializing_if = "Option::is_none")] pub conditions: Option>, + /// If not empty, indicates the version of the Vertex used to generate Pods in the sequence [0,currentReplicas). + #[serde(rename = "currentHash", skip_serializing_if = "Option::is_none")] + pub current_hash: Option, + /// The number of Pods created by the controller from the Vertex version indicated by currentHash. + #[serde(rename = "currentReplicas", skip_serializing_if = "Option::is_none")] + pub current_replicas: Option, #[serde(rename = "lastScaledAt", skip_serializing_if = "Option::is_none")] pub last_scaled_at: Option, #[serde(rename = "message", skip_serializing_if = "Option::is_none")] @@ -40,12 +46,20 @@ pub struct VertexStatus { pub replicas: Option, #[serde(rename = "selector", skip_serializing_if = "Option::is_none")] pub selector: Option, + /// If not empty, indicates the version of the Vertx used to generate Pods in the sequence [replicas-updatedReplicas,replicas) + #[serde(rename = "updateHash", skip_serializing_if = "Option::is_none")] + pub update_hash: Option, + /// The number of Pods created by the controller from the Vertex version indicated by updateHash. + #[serde(rename = "updatedReplicas", skip_serializing_if = "Option::is_none")] + pub updated_replicas: Option, } impl VertexStatus { pub fn new() -> VertexStatus { VertexStatus { conditions: None, + current_hash: None, + current_replicas: None, last_scaled_at: None, message: None, observed_generation: None, @@ -54,6 +68,8 @@ impl VertexStatus { reason: None, replicas: None, selector: None, + update_hash: None, + updated_replicas: None, } } }