diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index 1b9bbf118cb..545b3cb0f4f 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -31656,6 +31656,9 @@ } } }, + "v1.ConfigMapEnvSource": { + "description": "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables." + }, "v1.ConfigMapKeySelector": { "description": "Selects a key from a ConfigMap.", "required": [ @@ -31714,6 +31717,13 @@ "$ref": "#/definitions/v1.EnvVar" } }, + "envFrom": { + "description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. An invalid key will prevent the container from starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", + "type": "array", + "items": { + "$ref": "#/definitions/v1.EnvFromSource" + } + }, "image": { "description": "Docker image name. More info: http://kubernetes.io/docs/user-guide/images", "type": "string" @@ -32115,6 +32125,19 @@ } } }, + "v1.EnvFromSource": { + "description": "EnvFromSource represents the source of a set of ConfigMaps", + "properties": { + "configMapRef": { + "description": "The ConfigMap to select from", + "$ref": "#/definitions/v1.ConfigMapEnvSource" + }, + "prefix": { + "description": "An optional identifer to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.", + "type": "string" + } + } + }, "v1.EnvVar": { "description": "EnvVar represents an environment variable present in a Container.", "required": [ diff --git a/api/swagger-spec/apps_v1beta1.json b/api/swagger-spec/apps_v1beta1.json index 8d5e96804c7..7dddf7debb3 100644 --- a/api/swagger-spec/apps_v1beta1.json +++ b/api/swagger-spec/apps_v1beta1.json @@ -2148,6 +2148,13 @@ }, "description": "List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Cannot be updated." }, + "envFrom": { + "type": "array", + "items": { + "$ref": "v1.EnvFromSource" + }, + "description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. An invalid key will prevent the container from starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated." + }, "env": { "type": "array", "items": { @@ -2235,6 +2242,30 @@ } } }, + "v1.EnvFromSource": { + "id": "v1.EnvFromSource", + "description": "EnvFromSource represents the source of a set of ConfigMaps", + "properties": { + "prefix": { + "type": "string", + "description": "An optional identifer to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER." + }, + "configMapRef": { + "$ref": "v1.ConfigMapEnvSource", + "description": "The ConfigMap to select from" + } + } + }, + "v1.ConfigMapEnvSource": { + "id": "v1.ConfigMapEnvSource", + "description": "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.", + "properties": { + "name": { + "type": "string", + "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names" + } + } + }, "v1.EnvVar": { "id": "v1.EnvVar", "description": "EnvVar represents an environment variable present in a Container.", diff --git a/api/swagger-spec/batch_v1.json b/api/swagger-spec/batch_v1.json index 0e31cd8ced2..72eef361648 100644 --- a/api/swagger-spec/batch_v1.json +++ b/api/swagger-spec/batch_v1.json @@ -2153,6 +2153,13 @@ }, "description": "List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Cannot be updated." }, + "envFrom": { + "type": "array", + "items": { + "$ref": "v1.EnvFromSource" + }, + "description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. An invalid key will prevent the container from starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated." + }, "env": { "type": "array", "items": { @@ -2240,6 +2247,30 @@ } } }, + "v1.EnvFromSource": { + "id": "v1.EnvFromSource", + "description": "EnvFromSource represents the source of a set of ConfigMaps", + "properties": { + "prefix": { + "type": "string", + "description": "An optional identifer to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER." + }, + "configMapRef": { + "$ref": "v1.ConfigMapEnvSource", + "description": "The ConfigMap to select from" + } + } + }, + "v1.ConfigMapEnvSource": { + "id": "v1.ConfigMapEnvSource", + "description": "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.", + "properties": { + "name": { + "type": "string", + "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names" + } + } + }, "v1.EnvVar": { "id": "v1.EnvVar", "description": "EnvVar represents an environment variable present in a Container.", diff --git a/api/swagger-spec/extensions_v1beta1.json b/api/swagger-spec/extensions_v1beta1.json index 2cfc2963f67..362e3575025 100644 --- a/api/swagger-spec/extensions_v1beta1.json +++ b/api/swagger-spec/extensions_v1beta1.json @@ -7950,6 +7950,13 @@ }, "description": "List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Cannot be updated." }, + "envFrom": { + "type": "array", + "items": { + "$ref": "v1.EnvFromSource" + }, + "description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. An invalid key will prevent the container from starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated." + }, "env": { "type": "array", "items": { @@ -8037,6 +8044,30 @@ } } }, + "v1.EnvFromSource": { + "id": "v1.EnvFromSource", + "description": "EnvFromSource represents the source of a set of ConfigMaps", + "properties": { + "prefix": { + "type": "string", + "description": "An optional identifer to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER." + }, + "configMapRef": { + "$ref": "v1.ConfigMapEnvSource", + "description": "The ConfigMap to select from" + } + } + }, + "v1.ConfigMapEnvSource": { + "id": "v1.ConfigMapEnvSource", + "description": "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.", + "properties": { + "name": { + "type": "string", + "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names" + } + } + }, "v1.EnvVar": { "id": "v1.EnvVar", "description": "EnvVar represents an environment variable present in a Container.", diff --git a/api/swagger-spec/v1.json b/api/swagger-spec/v1.json index 2f1638bebd3..2eec0176cf9 100644 --- a/api/swagger-spec/v1.json +++ b/api/swagger-spec/v1.json @@ -18617,6 +18617,13 @@ }, "description": "List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Cannot be updated." }, + "envFrom": { + "type": "array", + "items": { + "$ref": "v1.EnvFromSource" + }, + "description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. An invalid key will prevent the container from starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated." + }, "env": { "type": "array", "items": { @@ -18704,6 +18711,30 @@ } } }, + "v1.EnvFromSource": { + "id": "v1.EnvFromSource", + "description": "EnvFromSource represents the source of a set of ConfigMaps", + "properties": { + "prefix": { + "type": "string", + "description": "An optional identifer to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER." + }, + "configMapRef": { + "$ref": "v1.ConfigMapEnvSource", + "description": "The ConfigMap to select from" + } + } + }, + "v1.ConfigMapEnvSource": { + "id": "v1.ConfigMapEnvSource", + "description": "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.", + "properties": { + "name": { + "type": "string", + "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names" + } + } + }, "v1.EnvVar": { "id": "v1.EnvVar", "description": "EnvVar represents an environment variable present in a Container.", diff --git a/docs/api-reference/apps/v1beta1/definitions.html b/docs/api-reference/apps/v1beta1/definitions.html index 78e85fea74c..b6d90a0af02 100755 --- a/docs/api-reference/apps/v1beta1/definitions.html +++ b/docs/api-reference/apps/v1beta1/definitions.html @@ -1754,6 +1754,13 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } +

envFrom

+

List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. An invalid key will prevent the container from starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.

+

false

+

v1.EnvFromSource array

+ + +

env

List of environment variables to set in the container. Cannot be updated.

false

@@ -2548,6 +2555,47 @@ Populated by the system when a graceful deletion is requested. Read-only. More i + +
+

v1.EnvFromSource

+
+

EnvFromSource represents the source of a set of ConfigMaps

+
+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

prefix

An optional identifer to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.

false

string

configMapRef

The ConfigMap to select from

false

v1.ConfigMapEnvSource

+

v1.CinderVolumeSource

@@ -3922,6 +3970,43 @@ The StatefulSet guarantees that a given network identity will always map to the +
+
+

v1.ConfigMapEnvSource

+
+

ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.

+
+
+

The contents of the target ConfigMap’s Data field will represent the key-value pairs as environment variables.

+
+ +++++++ + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

name

Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

false

string

+

v1.ResourceFieldSelector

@@ -4875,7 +4960,7 @@ Examples:
diff --git a/docs/api-reference/batch/v1/definitions.html b/docs/api-reference/batch/v1/definitions.html index 84e6a5bcde9..040dcfa594d 100755 --- a/docs/api-reference/batch/v1/definitions.html +++ b/docs/api-reference/batch/v1/definitions.html @@ -1658,6 +1658,13 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } +

envFrom

+

List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. An invalid key will prevent the container from starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.

+

false

+

v1.EnvFromSource array

+ + +

env

List of environment variables to set in the container. Cannot be updated.

false

@@ -2459,6 +2466,47 @@ Populated by the system when a graceful deletion is requested. Read-only. More i + +
+

v1.EnvFromSource

+
+

EnvFromSource represents the source of a set of ConfigMaps

+
+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

prefix

An optional identifer to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.

false

string

configMapRef

The ConfigMap to select from

false

v1.ConfigMapEnvSource

+

v1.CinderVolumeSource

@@ -3909,6 +3957,43 @@ Populated by the system when a graceful deletion is requested. Read-only. More i +
+
+

v1.ConfigMapEnvSource

+
+

ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.

+
+
+

The contents of the target ConfigMap’s Data field will represent the key-value pairs as environment variables.

+
+ +++++++ + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

name

Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

false

string

+

v1.ResourceFieldSelector

@@ -4807,7 +4892,7 @@ Examples:
diff --git a/docs/api-reference/extensions/v1beta1/definitions.html b/docs/api-reference/extensions/v1beta1/definitions.html index 31a7805aedc..d726ecd0f32 100755 --- a/docs/api-reference/extensions/v1beta1/definitions.html +++ b/docs/api-reference/extensions/v1beta1/definitions.html @@ -2266,6 +2266,47 @@ Populated by the system when a graceful deletion is requested. Read-only. More i + +
+

v1.EnvFromSource

+
+

EnvFromSource represents the source of a set of ConfigMaps

+
+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

prefix

An optional identifer to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.

false

string

configMapRef

The ConfigMap to select from

false

v1.ConfigMapEnvSource

+

v1.PodAffinity

@@ -5377,6 +5418,13 @@ Both these may change in the future. Incoming requests are matched against the h +

envFrom

+

List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. An invalid key will prevent the container from starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.

+

false

+

v1.EnvFromSource array

+ + +

env

List of environment variables to set in the container. Cannot be updated.

false

@@ -6581,6 +6629,43 @@ Both these may change in the future. Incoming requests are matched against the h +
+
+

v1.ConfigMapEnvSource

+
+

ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.

+
+
+

The contents of the target ConfigMap’s Data field will represent the key-value pairs as environment variables.

+
+ +++++++ + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

name

Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

false

string

+

v1.NodeAffinity

@@ -6933,7 +7018,7 @@ Both these may change in the future. Incoming requests are matched against the h
diff --git a/docs/api-reference/v1/definitions.html b/docs/api-reference/v1/definitions.html index 4f09c2096cf..25db312b0de 100755 --- a/docs/api-reference/v1/definitions.html +++ b/docs/api-reference/v1/definitions.html @@ -2512,6 +2512,47 @@ Populated by the system when a graceful deletion is requested. Read-only. More i + +
+

v1.EnvFromSource

+
+

EnvFromSource represents the source of a set of ConfigMaps

+
+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

prefix

An optional identifer to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.

false

string

configMapRef

The ConfigMap to select from

false

v1.ConfigMapEnvSource

+

v1.NamespaceList

@@ -3226,6 +3267,61 @@ The resulting set of endpoints can be viewed as:
+
+
+

v1.EnvVarSource

+
+

EnvVarSource represents a source for the value of an EnvVar.

+
+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

fieldRef

Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.podIP.

false

v1.ObjectFieldSelector

resourceFieldRef

Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.

false

v1.ResourceFieldSelector

configMapKeyRef

Selects a key of a ConfigMap.

false

v1.ConfigMapKeySelector

secretKeyRef

Selects a key of a secret in the pod’s namespace

false

v1.SecretKeySelector

+

v1.FlexVolumeSource

@@ -3288,61 +3384,6 @@ The resulting set of endpoints can be viewed as:
-
-
-

v1.EnvVarSource

-
-

EnvVarSource represents a source for the value of an EnvVar.

-
- ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameDescriptionRequiredSchemaDefault

fieldRef

Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.podIP.

false

v1.ObjectFieldSelector

resourceFieldRef

Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.

false

v1.ResourceFieldSelector

configMapKeyRef

Selects a key of a ConfigMap.

false

v1.ConfigMapKeySelector

secretKeyRef

Selects a key of a secret in the pod’s namespace

false

v1.SecretKeySelector

-

v1.Scale

@@ -6276,6 +6317,13 @@ Examples:
+

envFrom

+

List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. An invalid key will prevent the container from starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.

+

false

+

v1.EnvFromSource array

+ + +

env

List of environment variables to set in the container. Cannot be updated.

false

@@ -7884,54 +7932,6 @@ Examples:
-
-
-

v1.LabelSelectorRequirement

-
-

A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

-
- ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameDescriptionRequiredSchemaDefault

key

key is the label key that the selector applies to.

true

string

operator

operator represents a key’s relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.

true

string

values

values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

false

string array

-

v1.EnvVar

@@ -7980,6 +7980,54 @@ Examples:
+
+
+

v1.LabelSelectorRequirement

+
+

A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

+
+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

key

key is the label key that the selector applies to.

true

string

operator

operator represents a key’s relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.

true

string

values

values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

false

string array

+

v1.PersistentVolumeAccessMode

@@ -8395,6 +8443,43 @@ Examples:

Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.

+
+
+

v1.ConfigMapEnvSource

+
+

ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.

+
+
+

The contents of the target ConfigMap’s Data field will represent the key-value pairs as environment variables.

+
+ +++++++ + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

name

Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

false

string

+

v1.ObjectReference

@@ -9051,7 +9136,7 @@ Examples:
diff --git a/federation/apis/openapi-spec/swagger.json b/federation/apis/openapi-spec/swagger.json index f238e0de144..f1df4f18c9b 100644 --- a/federation/apis/openapi-spec/swagger.json +++ b/federation/apis/openapi-spec/swagger.json @@ -9639,6 +9639,9 @@ } } }, + "v1.ConfigMapEnvSource": { + "description": "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables." + }, "v1.ConfigMapKeySelector": { "description": "Selects a key from a ConfigMap.", "required": [ @@ -9697,6 +9700,13 @@ "$ref": "#/definitions/v1.EnvVar" } }, + "envFrom": { + "description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. An invalid key will prevent the container from starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", + "type": "array", + "items": { + "$ref": "#/definitions/v1.EnvFromSource" + } + }, "image": { "description": "Docker image name. More info: http://kubernetes.io/docs/user-guide/images", "type": "string" @@ -9813,6 +9823,19 @@ } } }, + "v1.EnvFromSource": { + "description": "EnvFromSource represents the source of a set of ConfigMaps", + "properties": { + "configMapRef": { + "description": "The ConfigMap to select from", + "$ref": "#/definitions/v1.ConfigMapEnvSource" + }, + "prefix": { + "description": "An optional identifer to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.", + "type": "string" + } + } + }, "v1.EnvVar": { "description": "EnvVar represents an environment variable present in a Container.", "required": [ diff --git a/pkg/api/v1/generated.pb.go b/pkg/api/v1/generated.pb.go index 91fbb32ed46..ab78313bc92 100644 --- a/pkg/api/v1/generated.pb.go +++ b/pkg/api/v1/generated.pb.go @@ -39,6 +39,7 @@ limitations under the License. ComponentStatus ComponentStatusList ConfigMap + ConfigMapEnvSource ConfigMapKeySelector ConfigMapList ConfigMapVolumeSource @@ -60,6 +61,7 @@ limitations under the License. EndpointSubset Endpoints EndpointsList + EnvFromSource EnvVar EnvVarSource Event @@ -267,604 +269,612 @@ func (m *ConfigMap) Reset() { *m = ConfigMap{} } func (*ConfigMap) ProtoMessage() {} func (*ConfigMap) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{13} } +func (m *ConfigMapEnvSource) Reset() { *m = ConfigMapEnvSource{} } +func (*ConfigMapEnvSource) ProtoMessage() {} +func (*ConfigMapEnvSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{14} } + func (m *ConfigMapKeySelector) Reset() { *m = ConfigMapKeySelector{} } func (*ConfigMapKeySelector) ProtoMessage() {} -func (*ConfigMapKeySelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{14} } +func (*ConfigMapKeySelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{15} } func (m *ConfigMapList) Reset() { *m = ConfigMapList{} } func (*ConfigMapList) ProtoMessage() {} -func (*ConfigMapList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{15} } +func (*ConfigMapList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{16} } func (m *ConfigMapVolumeSource) Reset() { *m = ConfigMapVolumeSource{} } func (*ConfigMapVolumeSource) ProtoMessage() {} -func (*ConfigMapVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{16} } +func (*ConfigMapVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{17} } func (m *Container) Reset() { *m = Container{} } func (*Container) ProtoMessage() {} -func (*Container) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{17} } +func (*Container) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{18} } func (m *ContainerImage) Reset() { *m = ContainerImage{} } func (*ContainerImage) ProtoMessage() {} -func (*ContainerImage) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{18} } +func (*ContainerImage) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{19} } func (m *ContainerPort) Reset() { *m = ContainerPort{} } func (*ContainerPort) ProtoMessage() {} -func (*ContainerPort) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{19} } +func (*ContainerPort) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{20} } func (m *ContainerState) Reset() { *m = ContainerState{} } func (*ContainerState) ProtoMessage() {} -func (*ContainerState) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{20} } +func (*ContainerState) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{21} } func (m *ContainerStateRunning) Reset() { *m = ContainerStateRunning{} } func (*ContainerStateRunning) ProtoMessage() {} -func (*ContainerStateRunning) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{21} } +func (*ContainerStateRunning) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{22} } func (m *ContainerStateTerminated) Reset() { *m = ContainerStateTerminated{} } func (*ContainerStateTerminated) ProtoMessage() {} func (*ContainerStateTerminated) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{22} + return fileDescriptorGenerated, []int{23} } func (m *ContainerStateWaiting) Reset() { *m = ContainerStateWaiting{} } func (*ContainerStateWaiting) ProtoMessage() {} -func (*ContainerStateWaiting) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{23} } +func (*ContainerStateWaiting) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{24} } func (m *ContainerStatus) Reset() { *m = ContainerStatus{} } func (*ContainerStatus) ProtoMessage() {} -func (*ContainerStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{24} } +func (*ContainerStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{25} } func (m *DaemonEndpoint) Reset() { *m = DaemonEndpoint{} } func (*DaemonEndpoint) ProtoMessage() {} -func (*DaemonEndpoint) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{25} } +func (*DaemonEndpoint) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{26} } func (m *DeleteOptions) Reset() { *m = DeleteOptions{} } func (*DeleteOptions) ProtoMessage() {} -func (*DeleteOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{26} } +func (*DeleteOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{27} } func (m *DownwardAPIVolumeFile) Reset() { *m = DownwardAPIVolumeFile{} } func (*DownwardAPIVolumeFile) ProtoMessage() {} -func (*DownwardAPIVolumeFile) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{27} } +func (*DownwardAPIVolumeFile) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{28} } func (m *DownwardAPIVolumeSource) Reset() { *m = DownwardAPIVolumeSource{} } func (*DownwardAPIVolumeSource) ProtoMessage() {} func (*DownwardAPIVolumeSource) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{28} + return fileDescriptorGenerated, []int{29} } func (m *EmptyDirVolumeSource) Reset() { *m = EmptyDirVolumeSource{} } func (*EmptyDirVolumeSource) ProtoMessage() {} -func (*EmptyDirVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{29} } +func (*EmptyDirVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{30} } func (m *EndpointAddress) Reset() { *m = EndpointAddress{} } func (*EndpointAddress) ProtoMessage() {} -func (*EndpointAddress) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{30} } +func (*EndpointAddress) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{31} } func (m *EndpointPort) Reset() { *m = EndpointPort{} } func (*EndpointPort) ProtoMessage() {} -func (*EndpointPort) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{31} } +func (*EndpointPort) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{32} } func (m *EndpointSubset) Reset() { *m = EndpointSubset{} } func (*EndpointSubset) ProtoMessage() {} -func (*EndpointSubset) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{32} } +func (*EndpointSubset) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{33} } func (m *Endpoints) Reset() { *m = Endpoints{} } func (*Endpoints) ProtoMessage() {} -func (*Endpoints) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{33} } +func (*Endpoints) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{34} } func (m *EndpointsList) Reset() { *m = EndpointsList{} } func (*EndpointsList) ProtoMessage() {} -func (*EndpointsList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{34} } +func (*EndpointsList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{35} } + +func (m *EnvFromSource) Reset() { *m = EnvFromSource{} } +func (*EnvFromSource) ProtoMessage() {} +func (*EnvFromSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{36} } func (m *EnvVar) Reset() { *m = EnvVar{} } func (*EnvVar) ProtoMessage() {} -func (*EnvVar) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{35} } +func (*EnvVar) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{37} } func (m *EnvVarSource) Reset() { *m = EnvVarSource{} } func (*EnvVarSource) ProtoMessage() {} -func (*EnvVarSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{36} } +func (*EnvVarSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{38} } func (m *Event) Reset() { *m = Event{} } func (*Event) ProtoMessage() {} -func (*Event) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{37} } +func (*Event) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{39} } func (m *EventList) Reset() { *m = EventList{} } func (*EventList) ProtoMessage() {} -func (*EventList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{38} } +func (*EventList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{40} } func (m *EventSource) Reset() { *m = EventSource{} } func (*EventSource) ProtoMessage() {} -func (*EventSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{39} } +func (*EventSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{41} } func (m *ExecAction) Reset() { *m = ExecAction{} } func (*ExecAction) ProtoMessage() {} -func (*ExecAction) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{40} } +func (*ExecAction) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{42} } func (m *FCVolumeSource) Reset() { *m = FCVolumeSource{} } func (*FCVolumeSource) ProtoMessage() {} -func (*FCVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{41} } +func (*FCVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{43} } func (m *FlexVolumeSource) Reset() { *m = FlexVolumeSource{} } func (*FlexVolumeSource) ProtoMessage() {} -func (*FlexVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{42} } +func (*FlexVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{44} } func (m *FlockerVolumeSource) Reset() { *m = FlockerVolumeSource{} } func (*FlockerVolumeSource) ProtoMessage() {} -func (*FlockerVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{43} } +func (*FlockerVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{45} } func (m *GCEPersistentDiskVolumeSource) Reset() { *m = GCEPersistentDiskVolumeSource{} } func (*GCEPersistentDiskVolumeSource) ProtoMessage() {} func (*GCEPersistentDiskVolumeSource) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{44} + return fileDescriptorGenerated, []int{46} } func (m *GitRepoVolumeSource) Reset() { *m = GitRepoVolumeSource{} } func (*GitRepoVolumeSource) ProtoMessage() {} -func (*GitRepoVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{45} } +func (*GitRepoVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{47} } func (m *GlusterfsVolumeSource) Reset() { *m = GlusterfsVolumeSource{} } func (*GlusterfsVolumeSource) ProtoMessage() {} -func (*GlusterfsVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{46} } +func (*GlusterfsVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{48} } func (m *HTTPGetAction) Reset() { *m = HTTPGetAction{} } func (*HTTPGetAction) ProtoMessage() {} -func (*HTTPGetAction) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{47} } +func (*HTTPGetAction) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{49} } func (m *HTTPHeader) Reset() { *m = HTTPHeader{} } func (*HTTPHeader) ProtoMessage() {} -func (*HTTPHeader) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{48} } +func (*HTTPHeader) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{50} } func (m *Handler) Reset() { *m = Handler{} } func (*Handler) ProtoMessage() {} -func (*Handler) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{49} } +func (*Handler) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{51} } func (m *HostPathVolumeSource) Reset() { *m = HostPathVolumeSource{} } func (*HostPathVolumeSource) ProtoMessage() {} -func (*HostPathVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{50} } +func (*HostPathVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{52} } func (m *ISCSIVolumeSource) Reset() { *m = ISCSIVolumeSource{} } func (*ISCSIVolumeSource) ProtoMessage() {} -func (*ISCSIVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{51} } +func (*ISCSIVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{53} } func (m *KeyToPath) Reset() { *m = KeyToPath{} } func (*KeyToPath) ProtoMessage() {} -func (*KeyToPath) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{52} } +func (*KeyToPath) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{54} } func (m *Lifecycle) Reset() { *m = Lifecycle{} } func (*Lifecycle) ProtoMessage() {} -func (*Lifecycle) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{53} } +func (*Lifecycle) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{55} } func (m *LimitRange) Reset() { *m = LimitRange{} } func (*LimitRange) ProtoMessage() {} -func (*LimitRange) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{54} } +func (*LimitRange) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{56} } func (m *LimitRangeItem) Reset() { *m = LimitRangeItem{} } func (*LimitRangeItem) ProtoMessage() {} -func (*LimitRangeItem) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{55} } +func (*LimitRangeItem) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{57} } func (m *LimitRangeList) Reset() { *m = LimitRangeList{} } func (*LimitRangeList) ProtoMessage() {} -func (*LimitRangeList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{56} } +func (*LimitRangeList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{58} } func (m *LimitRangeSpec) Reset() { *m = LimitRangeSpec{} } func (*LimitRangeSpec) ProtoMessage() {} -func (*LimitRangeSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{57} } +func (*LimitRangeSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{59} } func (m *List) Reset() { *m = List{} } func (*List) ProtoMessage() {} -func (*List) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{58} } +func (*List) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{60} } func (m *ListOptions) Reset() { *m = ListOptions{} } func (*ListOptions) ProtoMessage() {} -func (*ListOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{59} } +func (*ListOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{61} } func (m *LoadBalancerIngress) Reset() { *m = LoadBalancerIngress{} } func (*LoadBalancerIngress) ProtoMessage() {} -func (*LoadBalancerIngress) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{60} } +func (*LoadBalancerIngress) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{62} } func (m *LoadBalancerStatus) Reset() { *m = LoadBalancerStatus{} } func (*LoadBalancerStatus) ProtoMessage() {} -func (*LoadBalancerStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{61} } +func (*LoadBalancerStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{63} } func (m *LocalObjectReference) Reset() { *m = LocalObjectReference{} } func (*LocalObjectReference) ProtoMessage() {} -func (*LocalObjectReference) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{62} } +func (*LocalObjectReference) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{64} } func (m *NFSVolumeSource) Reset() { *m = NFSVolumeSource{} } func (*NFSVolumeSource) ProtoMessage() {} -func (*NFSVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{63} } +func (*NFSVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{65} } func (m *Namespace) Reset() { *m = Namespace{} } func (*Namespace) ProtoMessage() {} -func (*Namespace) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{64} } +func (*Namespace) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{66} } func (m *NamespaceList) Reset() { *m = NamespaceList{} } func (*NamespaceList) ProtoMessage() {} -func (*NamespaceList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{65} } +func (*NamespaceList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{67} } func (m *NamespaceSpec) Reset() { *m = NamespaceSpec{} } func (*NamespaceSpec) ProtoMessage() {} -func (*NamespaceSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{66} } +func (*NamespaceSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{68} } func (m *NamespaceStatus) Reset() { *m = NamespaceStatus{} } func (*NamespaceStatus) ProtoMessage() {} -func (*NamespaceStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{67} } +func (*NamespaceStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{69} } func (m *Node) Reset() { *m = Node{} } func (*Node) ProtoMessage() {} -func (*Node) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{68} } +func (*Node) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{70} } func (m *NodeAddress) Reset() { *m = NodeAddress{} } func (*NodeAddress) ProtoMessage() {} -func (*NodeAddress) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{69} } +func (*NodeAddress) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{71} } func (m *NodeAffinity) Reset() { *m = NodeAffinity{} } func (*NodeAffinity) ProtoMessage() {} -func (*NodeAffinity) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{70} } +func (*NodeAffinity) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{72} } func (m *NodeCondition) Reset() { *m = NodeCondition{} } func (*NodeCondition) ProtoMessage() {} -func (*NodeCondition) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{71} } +func (*NodeCondition) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{73} } func (m *NodeDaemonEndpoints) Reset() { *m = NodeDaemonEndpoints{} } func (*NodeDaemonEndpoints) ProtoMessage() {} -func (*NodeDaemonEndpoints) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{72} } +func (*NodeDaemonEndpoints) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{74} } func (m *NodeList) Reset() { *m = NodeList{} } func (*NodeList) ProtoMessage() {} -func (*NodeList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{73} } +func (*NodeList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{75} } func (m *NodeProxyOptions) Reset() { *m = NodeProxyOptions{} } func (*NodeProxyOptions) ProtoMessage() {} -func (*NodeProxyOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{74} } +func (*NodeProxyOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{76} } func (m *NodeResources) Reset() { *m = NodeResources{} } func (*NodeResources) ProtoMessage() {} -func (*NodeResources) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{75} } +func (*NodeResources) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{77} } func (m *NodeSelector) Reset() { *m = NodeSelector{} } func (*NodeSelector) ProtoMessage() {} -func (*NodeSelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{76} } +func (*NodeSelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{78} } func (m *NodeSelectorRequirement) Reset() { *m = NodeSelectorRequirement{} } func (*NodeSelectorRequirement) ProtoMessage() {} func (*NodeSelectorRequirement) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{77} + return fileDescriptorGenerated, []int{79} } func (m *NodeSelectorTerm) Reset() { *m = NodeSelectorTerm{} } func (*NodeSelectorTerm) ProtoMessage() {} -func (*NodeSelectorTerm) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{78} } +func (*NodeSelectorTerm) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{80} } func (m *NodeSpec) Reset() { *m = NodeSpec{} } func (*NodeSpec) ProtoMessage() {} -func (*NodeSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{79} } +func (*NodeSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{81} } func (m *NodeStatus) Reset() { *m = NodeStatus{} } func (*NodeStatus) ProtoMessage() {} -func (*NodeStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{80} } +func (*NodeStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{82} } func (m *NodeSystemInfo) Reset() { *m = NodeSystemInfo{} } func (*NodeSystemInfo) ProtoMessage() {} -func (*NodeSystemInfo) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{81} } +func (*NodeSystemInfo) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{83} } func (m *ObjectFieldSelector) Reset() { *m = ObjectFieldSelector{} } func (*ObjectFieldSelector) ProtoMessage() {} -func (*ObjectFieldSelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{82} } +func (*ObjectFieldSelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{84} } func (m *ObjectMeta) Reset() { *m = ObjectMeta{} } func (*ObjectMeta) ProtoMessage() {} -func (*ObjectMeta) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{83} } +func (*ObjectMeta) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{85} } func (m *ObjectReference) Reset() { *m = ObjectReference{} } func (*ObjectReference) ProtoMessage() {} -func (*ObjectReference) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{84} } +func (*ObjectReference) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{86} } func (m *PersistentVolume) Reset() { *m = PersistentVolume{} } func (*PersistentVolume) ProtoMessage() {} -func (*PersistentVolume) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{85} } +func (*PersistentVolume) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{87} } func (m *PersistentVolumeClaim) Reset() { *m = PersistentVolumeClaim{} } func (*PersistentVolumeClaim) ProtoMessage() {} -func (*PersistentVolumeClaim) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{86} } +func (*PersistentVolumeClaim) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{88} } func (m *PersistentVolumeClaimList) Reset() { *m = PersistentVolumeClaimList{} } func (*PersistentVolumeClaimList) ProtoMessage() {} func (*PersistentVolumeClaimList) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{87} + return fileDescriptorGenerated, []int{89} } func (m *PersistentVolumeClaimSpec) Reset() { *m = PersistentVolumeClaimSpec{} } func (*PersistentVolumeClaimSpec) ProtoMessage() {} func (*PersistentVolumeClaimSpec) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{88} + return fileDescriptorGenerated, []int{90} } func (m *PersistentVolumeClaimStatus) Reset() { *m = PersistentVolumeClaimStatus{} } func (*PersistentVolumeClaimStatus) ProtoMessage() {} func (*PersistentVolumeClaimStatus) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{89} + return fileDescriptorGenerated, []int{91} } func (m *PersistentVolumeClaimVolumeSource) Reset() { *m = PersistentVolumeClaimVolumeSource{} } func (*PersistentVolumeClaimVolumeSource) ProtoMessage() {} func (*PersistentVolumeClaimVolumeSource) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{90} + return fileDescriptorGenerated, []int{92} } func (m *PersistentVolumeList) Reset() { *m = PersistentVolumeList{} } func (*PersistentVolumeList) ProtoMessage() {} -func (*PersistentVolumeList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{91} } +func (*PersistentVolumeList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{93} } func (m *PersistentVolumeSource) Reset() { *m = PersistentVolumeSource{} } func (*PersistentVolumeSource) ProtoMessage() {} -func (*PersistentVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{92} } +func (*PersistentVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{94} } func (m *PersistentVolumeSpec) Reset() { *m = PersistentVolumeSpec{} } func (*PersistentVolumeSpec) ProtoMessage() {} -func (*PersistentVolumeSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{93} } +func (*PersistentVolumeSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{95} } func (m *PersistentVolumeStatus) Reset() { *m = PersistentVolumeStatus{} } func (*PersistentVolumeStatus) ProtoMessage() {} -func (*PersistentVolumeStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{94} } +func (*PersistentVolumeStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{96} } func (m *PhotonPersistentDiskVolumeSource) Reset() { *m = PhotonPersistentDiskVolumeSource{} } func (*PhotonPersistentDiskVolumeSource) ProtoMessage() {} func (*PhotonPersistentDiskVolumeSource) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{95} + return fileDescriptorGenerated, []int{97} } func (m *Pod) Reset() { *m = Pod{} } func (*Pod) ProtoMessage() {} -func (*Pod) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{96} } +func (*Pod) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{98} } func (m *PodAffinity) Reset() { *m = PodAffinity{} } func (*PodAffinity) ProtoMessage() {} -func (*PodAffinity) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{97} } +func (*PodAffinity) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{99} } func (m *PodAffinityTerm) Reset() { *m = PodAffinityTerm{} } func (*PodAffinityTerm) ProtoMessage() {} -func (*PodAffinityTerm) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{98} } +func (*PodAffinityTerm) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{100} } func (m *PodAntiAffinity) Reset() { *m = PodAntiAffinity{} } func (*PodAntiAffinity) ProtoMessage() {} -func (*PodAntiAffinity) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{99} } +func (*PodAntiAffinity) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{101} } func (m *PodAttachOptions) Reset() { *m = PodAttachOptions{} } func (*PodAttachOptions) ProtoMessage() {} -func (*PodAttachOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{100} } +func (*PodAttachOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{102} } func (m *PodCondition) Reset() { *m = PodCondition{} } func (*PodCondition) ProtoMessage() {} -func (*PodCondition) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{101} } +func (*PodCondition) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{103} } func (m *PodExecOptions) Reset() { *m = PodExecOptions{} } func (*PodExecOptions) ProtoMessage() {} -func (*PodExecOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{102} } +func (*PodExecOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{104} } func (m *PodList) Reset() { *m = PodList{} } func (*PodList) ProtoMessage() {} -func (*PodList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{103} } +func (*PodList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{105} } func (m *PodLogOptions) Reset() { *m = PodLogOptions{} } func (*PodLogOptions) ProtoMessage() {} -func (*PodLogOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{104} } +func (*PodLogOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{106} } func (m *PodProxyOptions) Reset() { *m = PodProxyOptions{} } func (*PodProxyOptions) ProtoMessage() {} -func (*PodProxyOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{105} } +func (*PodProxyOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{107} } func (m *PodSecurityContext) Reset() { *m = PodSecurityContext{} } func (*PodSecurityContext) ProtoMessage() {} -func (*PodSecurityContext) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{106} } +func (*PodSecurityContext) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{108} } func (m *PodSignature) Reset() { *m = PodSignature{} } func (*PodSignature) ProtoMessage() {} -func (*PodSignature) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{107} } +func (*PodSignature) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{109} } func (m *PodSpec) Reset() { *m = PodSpec{} } func (*PodSpec) ProtoMessage() {} -func (*PodSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{108} } +func (*PodSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{110} } func (m *PodStatus) Reset() { *m = PodStatus{} } func (*PodStatus) ProtoMessage() {} -func (*PodStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{109} } +func (*PodStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{111} } func (m *PodStatusResult) Reset() { *m = PodStatusResult{} } func (*PodStatusResult) ProtoMessage() {} -func (*PodStatusResult) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{110} } +func (*PodStatusResult) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{112} } func (m *PodTemplate) Reset() { *m = PodTemplate{} } func (*PodTemplate) ProtoMessage() {} -func (*PodTemplate) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{111} } +func (*PodTemplate) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{113} } func (m *PodTemplateList) Reset() { *m = PodTemplateList{} } func (*PodTemplateList) ProtoMessage() {} -func (*PodTemplateList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{112} } +func (*PodTemplateList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{114} } func (m *PodTemplateSpec) Reset() { *m = PodTemplateSpec{} } func (*PodTemplateSpec) ProtoMessage() {} -func (*PodTemplateSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{113} } +func (*PodTemplateSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{115} } func (m *Preconditions) Reset() { *m = Preconditions{} } func (*Preconditions) ProtoMessage() {} -func (*Preconditions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{114} } +func (*Preconditions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{116} } func (m *PreferAvoidPodsEntry) Reset() { *m = PreferAvoidPodsEntry{} } func (*PreferAvoidPodsEntry) ProtoMessage() {} -func (*PreferAvoidPodsEntry) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{115} } +func (*PreferAvoidPodsEntry) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{117} } func (m *PreferredSchedulingTerm) Reset() { *m = PreferredSchedulingTerm{} } func (*PreferredSchedulingTerm) ProtoMessage() {} func (*PreferredSchedulingTerm) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{116} + return fileDescriptorGenerated, []int{118} } func (m *Probe) Reset() { *m = Probe{} } func (*Probe) ProtoMessage() {} -func (*Probe) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{117} } +func (*Probe) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{119} } func (m *QuobyteVolumeSource) Reset() { *m = QuobyteVolumeSource{} } func (*QuobyteVolumeSource) ProtoMessage() {} -func (*QuobyteVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{118} } +func (*QuobyteVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{120} } func (m *RBDVolumeSource) Reset() { *m = RBDVolumeSource{} } func (*RBDVolumeSource) ProtoMessage() {} -func (*RBDVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{119} } +func (*RBDVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{121} } func (m *RangeAllocation) Reset() { *m = RangeAllocation{} } func (*RangeAllocation) ProtoMessage() {} -func (*RangeAllocation) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{120} } +func (*RangeAllocation) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{122} } func (m *ReplicationController) Reset() { *m = ReplicationController{} } func (*ReplicationController) ProtoMessage() {} -func (*ReplicationController) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{121} } +func (*ReplicationController) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{123} } func (m *ReplicationControllerCondition) Reset() { *m = ReplicationControllerCondition{} } func (*ReplicationControllerCondition) ProtoMessage() {} func (*ReplicationControllerCondition) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{122} + return fileDescriptorGenerated, []int{124} } func (m *ReplicationControllerList) Reset() { *m = ReplicationControllerList{} } func (*ReplicationControllerList) ProtoMessage() {} func (*ReplicationControllerList) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{123} + return fileDescriptorGenerated, []int{125} } func (m *ReplicationControllerSpec) Reset() { *m = ReplicationControllerSpec{} } func (*ReplicationControllerSpec) ProtoMessage() {} func (*ReplicationControllerSpec) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{124} + return fileDescriptorGenerated, []int{126} } func (m *ReplicationControllerStatus) Reset() { *m = ReplicationControllerStatus{} } func (*ReplicationControllerStatus) ProtoMessage() {} func (*ReplicationControllerStatus) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{125} + return fileDescriptorGenerated, []int{127} } func (m *ResourceFieldSelector) Reset() { *m = ResourceFieldSelector{} } func (*ResourceFieldSelector) ProtoMessage() {} -func (*ResourceFieldSelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{126} } +func (*ResourceFieldSelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{128} } func (m *ResourceQuota) Reset() { *m = ResourceQuota{} } func (*ResourceQuota) ProtoMessage() {} -func (*ResourceQuota) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{127} } +func (*ResourceQuota) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{129} } func (m *ResourceQuotaList) Reset() { *m = ResourceQuotaList{} } func (*ResourceQuotaList) ProtoMessage() {} -func (*ResourceQuotaList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{128} } +func (*ResourceQuotaList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{130} } func (m *ResourceQuotaSpec) Reset() { *m = ResourceQuotaSpec{} } func (*ResourceQuotaSpec) ProtoMessage() {} -func (*ResourceQuotaSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{129} } +func (*ResourceQuotaSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{131} } func (m *ResourceQuotaStatus) Reset() { *m = ResourceQuotaStatus{} } func (*ResourceQuotaStatus) ProtoMessage() {} -func (*ResourceQuotaStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{130} } +func (*ResourceQuotaStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{132} } func (m *ResourceRequirements) Reset() { *m = ResourceRequirements{} } func (*ResourceRequirements) ProtoMessage() {} -func (*ResourceRequirements) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{131} } +func (*ResourceRequirements) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{133} } func (m *SELinuxOptions) Reset() { *m = SELinuxOptions{} } func (*SELinuxOptions) ProtoMessage() {} -func (*SELinuxOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{132} } +func (*SELinuxOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{134} } func (m *Secret) Reset() { *m = Secret{} } func (*Secret) ProtoMessage() {} -func (*Secret) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{133} } +func (*Secret) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{135} } func (m *SecretKeySelector) Reset() { *m = SecretKeySelector{} } func (*SecretKeySelector) ProtoMessage() {} -func (*SecretKeySelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{134} } +func (*SecretKeySelector) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{136} } func (m *SecretList) Reset() { *m = SecretList{} } func (*SecretList) ProtoMessage() {} -func (*SecretList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{135} } +func (*SecretList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{137} } func (m *SecretVolumeSource) Reset() { *m = SecretVolumeSource{} } func (*SecretVolumeSource) ProtoMessage() {} -func (*SecretVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{136} } +func (*SecretVolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{138} } func (m *SecurityContext) Reset() { *m = SecurityContext{} } func (*SecurityContext) ProtoMessage() {} -func (*SecurityContext) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{137} } +func (*SecurityContext) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{139} } func (m *SerializedReference) Reset() { *m = SerializedReference{} } func (*SerializedReference) ProtoMessage() {} -func (*SerializedReference) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{138} } +func (*SerializedReference) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{140} } func (m *Service) Reset() { *m = Service{} } func (*Service) ProtoMessage() {} -func (*Service) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{139} } +func (*Service) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{141} } func (m *ServiceAccount) Reset() { *m = ServiceAccount{} } func (*ServiceAccount) ProtoMessage() {} -func (*ServiceAccount) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{140} } +func (*ServiceAccount) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{142} } func (m *ServiceAccountList) Reset() { *m = ServiceAccountList{} } func (*ServiceAccountList) ProtoMessage() {} -func (*ServiceAccountList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{141} } +func (*ServiceAccountList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{143} } func (m *ServiceList) Reset() { *m = ServiceList{} } func (*ServiceList) ProtoMessage() {} -func (*ServiceList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{142} } +func (*ServiceList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{144} } func (m *ServicePort) Reset() { *m = ServicePort{} } func (*ServicePort) ProtoMessage() {} -func (*ServicePort) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{143} } +func (*ServicePort) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{145} } func (m *ServiceProxyOptions) Reset() { *m = ServiceProxyOptions{} } func (*ServiceProxyOptions) ProtoMessage() {} -func (*ServiceProxyOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{144} } +func (*ServiceProxyOptions) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{146} } func (m *ServiceSpec) Reset() { *m = ServiceSpec{} } func (*ServiceSpec) ProtoMessage() {} -func (*ServiceSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{145} } +func (*ServiceSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{147} } func (m *ServiceStatus) Reset() { *m = ServiceStatus{} } func (*ServiceStatus) ProtoMessage() {} -func (*ServiceStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{146} } +func (*ServiceStatus) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{148} } func (m *Sysctl) Reset() { *m = Sysctl{} } func (*Sysctl) ProtoMessage() {} -func (*Sysctl) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{147} } +func (*Sysctl) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{149} } func (m *TCPSocketAction) Reset() { *m = TCPSocketAction{} } func (*TCPSocketAction) ProtoMessage() {} -func (*TCPSocketAction) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{148} } +func (*TCPSocketAction) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{150} } func (m *Taint) Reset() { *m = Taint{} } func (*Taint) ProtoMessage() {} -func (*Taint) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{149} } +func (*Taint) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{151} } func (m *Toleration) Reset() { *m = Toleration{} } func (*Toleration) ProtoMessage() {} -func (*Toleration) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{150} } +func (*Toleration) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{152} } func (m *Volume) Reset() { *m = Volume{} } func (*Volume) ProtoMessage() {} -func (*Volume) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{151} } +func (*Volume) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{153} } func (m *VolumeMount) Reset() { *m = VolumeMount{} } func (*VolumeMount) ProtoMessage() {} -func (*VolumeMount) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{152} } +func (*VolumeMount) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{154} } func (m *VolumeSource) Reset() { *m = VolumeSource{} } func (*VolumeSource) ProtoMessage() {} -func (*VolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{153} } +func (*VolumeSource) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{155} } func (m *VsphereVirtualDiskVolumeSource) Reset() { *m = VsphereVirtualDiskVolumeSource{} } func (*VsphereVirtualDiskVolumeSource) ProtoMessage() {} func (*VsphereVirtualDiskVolumeSource) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{154} + return fileDescriptorGenerated, []int{156} } func (m *WeightedPodAffinityTerm) Reset() { *m = WeightedPodAffinityTerm{} } func (*WeightedPodAffinityTerm) ProtoMessage() {} func (*WeightedPodAffinityTerm) Descriptor() ([]byte, []int) { - return fileDescriptorGenerated, []int{155} + return fileDescriptorGenerated, []int{157} } func init() { @@ -882,6 +892,7 @@ func init() { proto.RegisterType((*ComponentStatus)(nil), "k8s.io.kubernetes.pkg.api.v1.ComponentStatus") proto.RegisterType((*ComponentStatusList)(nil), "k8s.io.kubernetes.pkg.api.v1.ComponentStatusList") proto.RegisterType((*ConfigMap)(nil), "k8s.io.kubernetes.pkg.api.v1.ConfigMap") + proto.RegisterType((*ConfigMapEnvSource)(nil), "k8s.io.kubernetes.pkg.api.v1.ConfigMapEnvSource") proto.RegisterType((*ConfigMapKeySelector)(nil), "k8s.io.kubernetes.pkg.api.v1.ConfigMapKeySelector") proto.RegisterType((*ConfigMapList)(nil), "k8s.io.kubernetes.pkg.api.v1.ConfigMapList") proto.RegisterType((*ConfigMapVolumeSource)(nil), "k8s.io.kubernetes.pkg.api.v1.ConfigMapVolumeSource") @@ -903,6 +914,7 @@ func init() { proto.RegisterType((*EndpointSubset)(nil), "k8s.io.kubernetes.pkg.api.v1.EndpointSubset") proto.RegisterType((*Endpoints)(nil), "k8s.io.kubernetes.pkg.api.v1.Endpoints") proto.RegisterType((*EndpointsList)(nil), "k8s.io.kubernetes.pkg.api.v1.EndpointsList") + proto.RegisterType((*EnvFromSource)(nil), "k8s.io.kubernetes.pkg.api.v1.EnvFromSource") proto.RegisterType((*EnvVar)(nil), "k8s.io.kubernetes.pkg.api.v1.EnvVar") proto.RegisterType((*EnvVarSource)(nil), "k8s.io.kubernetes.pkg.api.v1.EnvVarSource") proto.RegisterType((*Event)(nil), "k8s.io.kubernetes.pkg.api.v1.Event") @@ -1580,6 +1592,32 @@ func (m *ConfigMap) MarshalTo(data []byte) (int, error) { return i, nil } +func (m *ConfigMapEnvSource) Marshal() (data []byte, err error) { + size := m.Size() + data = make([]byte, size) + n, err := m.MarshalTo(data) + if err != nil { + return nil, err + } + return data[:n], nil +} + +func (m *ConfigMapEnvSource) MarshalTo(data []byte) (int, error) { + var i int + _ = i + var l int + _ = l + data[i] = 0xa + i++ + i = encodeVarintGenerated(data, i, uint64(m.LocalObjectReference.Size())) + n10, err := m.LocalObjectReference.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n10 + return i, nil +} + func (m *ConfigMapKeySelector) Marshal() (data []byte, err error) { size := m.Size() data = make([]byte, size) @@ -1598,11 +1636,11 @@ func (m *ConfigMapKeySelector) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.LocalObjectReference.Size())) - n10, err := m.LocalObjectReference.MarshalTo(data[i:]) + n11, err := m.LocalObjectReference.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n10 + i += n11 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(len(m.Key))) @@ -1628,11 +1666,11 @@ func (m *ConfigMapList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n11, err := m.ListMeta.MarshalTo(data[i:]) + n12, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n11 + i += n12 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -1666,11 +1704,11 @@ func (m *ConfigMapVolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.LocalObjectReference.Size())) - n12, err := m.LocalObjectReference.MarshalTo(data[i:]) + n13, err := m.LocalObjectReference.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n12 + i += n13 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -1775,11 +1813,11 @@ func (m *Container) MarshalTo(data []byte) (int, error) { data[i] = 0x42 i++ i = encodeVarintGenerated(data, i, uint64(m.Resources.Size())) - n13, err := m.Resources.MarshalTo(data[i:]) + n14, err := m.Resources.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n13 + i += n14 if len(m.VolumeMounts) > 0 { for _, msg := range m.VolumeMounts { data[i] = 0x4a @@ -1796,32 +1834,32 @@ func (m *Container) MarshalTo(data []byte) (int, error) { data[i] = 0x52 i++ i = encodeVarintGenerated(data, i, uint64(m.LivenessProbe.Size())) - n14, err := m.LivenessProbe.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n14 - } - if m.ReadinessProbe != nil { - data[i] = 0x5a - i++ - i = encodeVarintGenerated(data, i, uint64(m.ReadinessProbe.Size())) - n15, err := m.ReadinessProbe.MarshalTo(data[i:]) + n15, err := m.LivenessProbe.MarshalTo(data[i:]) if err != nil { return 0, err } i += n15 } - if m.Lifecycle != nil { - data[i] = 0x62 + if m.ReadinessProbe != nil { + data[i] = 0x5a i++ - i = encodeVarintGenerated(data, i, uint64(m.Lifecycle.Size())) - n16, err := m.Lifecycle.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.ReadinessProbe.Size())) + n16, err := m.ReadinessProbe.MarshalTo(data[i:]) if err != nil { return 0, err } i += n16 } + if m.Lifecycle != nil { + data[i] = 0x62 + i++ + i = encodeVarintGenerated(data, i, uint64(m.Lifecycle.Size())) + n17, err := m.Lifecycle.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n17 + } data[i] = 0x6a i++ i = encodeVarintGenerated(data, i, uint64(len(m.TerminationMessagePath))) @@ -1834,11 +1872,11 @@ func (m *Container) MarshalTo(data []byte) (int, error) { data[i] = 0x7a i++ i = encodeVarintGenerated(data, i, uint64(m.SecurityContext.Size())) - n17, err := m.SecurityContext.MarshalTo(data[i:]) + n18, err := m.SecurityContext.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n17 + i += n18 } data[i] = 0x80 i++ @@ -1870,6 +1908,20 @@ func (m *Container) MarshalTo(data []byte) (int, error) { data[i] = 0 } i++ + if len(m.EnvFrom) > 0 { + for _, msg := range m.EnvFrom { + data[i] = 0x9a + i++ + data[i] = 0x1 + i++ + i = encodeVarintGenerated(data, i, uint64(msg.Size())) + n, err := msg.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n + } + } return i, nil } @@ -1964,32 +2016,32 @@ func (m *ContainerState) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.Waiting.Size())) - n18, err := m.Waiting.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n18 - } - if m.Running != nil { - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.Running.Size())) - n19, err := m.Running.MarshalTo(data[i:]) + n19, err := m.Waiting.MarshalTo(data[i:]) if err != nil { return 0, err } i += n19 } - if m.Terminated != nil { - data[i] = 0x1a + if m.Running != nil { + data[i] = 0x12 i++ - i = encodeVarintGenerated(data, i, uint64(m.Terminated.Size())) - n20, err := m.Terminated.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.Running.Size())) + n20, err := m.Running.MarshalTo(data[i:]) if err != nil { return 0, err } i += n20 } + if m.Terminated != nil { + data[i] = 0x1a + i++ + i = encodeVarintGenerated(data, i, uint64(m.Terminated.Size())) + n21, err := m.Terminated.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n21 + } return i, nil } @@ -2011,11 +2063,11 @@ func (m *ContainerStateRunning) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.StartedAt.Size())) - n21, err := m.StartedAt.MarshalTo(data[i:]) + n22, err := m.StartedAt.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n21 + i += n22 return i, nil } @@ -2051,19 +2103,19 @@ func (m *ContainerStateTerminated) MarshalTo(data []byte) (int, error) { data[i] = 0x2a i++ i = encodeVarintGenerated(data, i, uint64(m.StartedAt.Size())) - n22, err := m.StartedAt.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n22 - data[i] = 0x32 - i++ - i = encodeVarintGenerated(data, i, uint64(m.FinishedAt.Size())) - n23, err := m.FinishedAt.MarshalTo(data[i:]) + n23, err := m.StartedAt.MarshalTo(data[i:]) if err != nil { return 0, err } i += n23 + data[i] = 0x32 + i++ + i = encodeVarintGenerated(data, i, uint64(m.FinishedAt.Size())) + n24, err := m.FinishedAt.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n24 data[i] = 0x3a i++ i = encodeVarintGenerated(data, i, uint64(len(m.ContainerID))) @@ -2119,19 +2171,19 @@ func (m *ContainerStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.State.Size())) - n24, err := m.State.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n24 - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.LastTerminationState.Size())) - n25, err := m.LastTerminationState.MarshalTo(data[i:]) + n25, err := m.State.MarshalTo(data[i:]) if err != nil { return 0, err } i += n25 + data[i] = 0x1a + i++ + i = encodeVarintGenerated(data, i, uint64(m.LastTerminationState.Size())) + n26, err := m.LastTerminationState.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n26 data[i] = 0x20 i++ if m.Ready { @@ -2203,11 +2255,11 @@ func (m *DeleteOptions) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Preconditions.Size())) - n26, err := m.Preconditions.MarshalTo(data[i:]) + n27, err := m.Preconditions.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n26 + i += n27 } if m.OrphanDependents != nil { data[i] = 0x18 @@ -2245,21 +2297,21 @@ func (m *DownwardAPIVolumeFile) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.FieldRef.Size())) - n27, err := m.FieldRef.MarshalTo(data[i:]) + n28, err := m.FieldRef.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n27 + i += n28 } if m.ResourceFieldRef != nil { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.ResourceFieldRef.Size())) - n28, err := m.ResourceFieldRef.MarshalTo(data[i:]) + n29, err := m.ResourceFieldRef.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n28 + i += n29 } if m.Mode != nil { data[i] = 0x20 @@ -2349,11 +2401,11 @@ func (m *EndpointAddress) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.TargetRef.Size())) - n29, err := m.TargetRef.MarshalTo(data[i:]) + n30, err := m.TargetRef.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n29 + i += n30 } data[i] = 0x1a i++ @@ -2469,11 +2521,11 @@ func (m *Endpoints) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n30, err := m.ObjectMeta.MarshalTo(data[i:]) + n31, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n30 + i += n31 if len(m.Subsets) > 0 { for _, msg := range m.Subsets { data[i] = 0x12 @@ -2507,11 +2559,11 @@ func (m *EndpointsList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n31, err := m.ListMeta.MarshalTo(data[i:]) + n32, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n31 + i += n32 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -2527,6 +2579,38 @@ func (m *EndpointsList) MarshalTo(data []byte) (int, error) { return i, nil } +func (m *EnvFromSource) Marshal() (data []byte, err error) { + size := m.Size() + data = make([]byte, size) + n, err := m.MarshalTo(data) + if err != nil { + return nil, err + } + return data[:n], nil +} + +func (m *EnvFromSource) MarshalTo(data []byte) (int, error) { + var i int + _ = i + var l int + _ = l + data[i] = 0xa + i++ + i = encodeVarintGenerated(data, i, uint64(len(m.Prefix))) + i += copy(data[i:], m.Prefix) + if m.ConfigMapRef != nil { + data[i] = 0x12 + i++ + i = encodeVarintGenerated(data, i, uint64(m.ConfigMapRef.Size())) + n33, err := m.ConfigMapRef.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n33 + } + return i, nil +} + func (m *EnvVar) Marshal() (data []byte, err error) { size := m.Size() data = make([]byte, size) @@ -2554,11 +2638,11 @@ func (m *EnvVar) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.ValueFrom.Size())) - n32, err := m.ValueFrom.MarshalTo(data[i:]) + n34, err := m.ValueFrom.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n32 + i += n34 } return i, nil } @@ -2582,42 +2666,42 @@ func (m *EnvVarSource) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.FieldRef.Size())) - n33, err := m.FieldRef.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n33 - } - if m.ResourceFieldRef != nil { - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.ResourceFieldRef.Size())) - n34, err := m.ResourceFieldRef.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n34 - } - if m.ConfigMapKeyRef != nil { - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.ConfigMapKeyRef.Size())) - n35, err := m.ConfigMapKeyRef.MarshalTo(data[i:]) + n35, err := m.FieldRef.MarshalTo(data[i:]) if err != nil { return 0, err } i += n35 } - if m.SecretKeyRef != nil { - data[i] = 0x22 + if m.ResourceFieldRef != nil { + data[i] = 0x12 i++ - i = encodeVarintGenerated(data, i, uint64(m.SecretKeyRef.Size())) - n36, err := m.SecretKeyRef.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.ResourceFieldRef.Size())) + n36, err := m.ResourceFieldRef.MarshalTo(data[i:]) if err != nil { return 0, err } i += n36 } + if m.ConfigMapKeyRef != nil { + data[i] = 0x1a + i++ + i = encodeVarintGenerated(data, i, uint64(m.ConfigMapKeyRef.Size())) + n37, err := m.ConfigMapKeyRef.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n37 + } + if m.SecretKeyRef != nil { + data[i] = 0x22 + i++ + i = encodeVarintGenerated(data, i, uint64(m.SecretKeyRef.Size())) + n38, err := m.SecretKeyRef.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n38 + } return i, nil } @@ -2639,19 +2723,19 @@ func (m *Event) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n37, err := m.ObjectMeta.MarshalTo(data[i:]) + n39, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n37 + i += n39 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.InvolvedObject.Size())) - n38, err := m.InvolvedObject.MarshalTo(data[i:]) + n40, err := m.InvolvedObject.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n38 + i += n40 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(len(m.Reason))) @@ -2663,27 +2747,27 @@ func (m *Event) MarshalTo(data []byte) (int, error) { data[i] = 0x2a i++ i = encodeVarintGenerated(data, i, uint64(m.Source.Size())) - n39, err := m.Source.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n39 - data[i] = 0x32 - i++ - i = encodeVarintGenerated(data, i, uint64(m.FirstTimestamp.Size())) - n40, err := m.FirstTimestamp.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n40 - data[i] = 0x3a - i++ - i = encodeVarintGenerated(data, i, uint64(m.LastTimestamp.Size())) - n41, err := m.LastTimestamp.MarshalTo(data[i:]) + n41, err := m.Source.MarshalTo(data[i:]) if err != nil { return 0, err } i += n41 + data[i] = 0x32 + i++ + i = encodeVarintGenerated(data, i, uint64(m.FirstTimestamp.Size())) + n42, err := m.FirstTimestamp.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n42 + data[i] = 0x3a + i++ + i = encodeVarintGenerated(data, i, uint64(m.LastTimestamp.Size())) + n43, err := m.LastTimestamp.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n43 data[i] = 0x40 i++ i = encodeVarintGenerated(data, i, uint64(m.Count)) @@ -2712,11 +2796,11 @@ func (m *EventList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n42, err := m.ListMeta.MarshalTo(data[i:]) + n44, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n42 + i += n44 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -2868,11 +2952,11 @@ func (m *FlexVolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.SecretRef.Size())) - n43, err := m.SecretRef.MarshalTo(data[i:]) + n45, err := m.SecretRef.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n43 + i += n45 } data[i] = 0x20 i++ @@ -3051,11 +3135,11 @@ func (m *HTTPGetAction) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Port.Size())) - n44, err := m.Port.MarshalTo(data[i:]) + n46, err := m.Port.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n44 + i += n46 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(len(m.Host))) @@ -3124,31 +3208,31 @@ func (m *Handler) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.Exec.Size())) - n45, err := m.Exec.MarshalTo(data[i:]) + n47, err := m.Exec.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n45 + i += n47 } if m.HTTPGet != nil { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.HTTPGet.Size())) - n46, err := m.HTTPGet.MarshalTo(data[i:]) + n48, err := m.HTTPGet.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n46 + i += n48 } if m.TCPSocket != nil { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.TCPSocket.Size())) - n47, err := m.TCPSocket.MarshalTo(data[i:]) + n49, err := m.TCPSocket.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n47 + i += n49 } return i, nil } @@ -3270,21 +3354,21 @@ func (m *Lifecycle) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.PostStart.Size())) - n48, err := m.PostStart.MarshalTo(data[i:]) + n50, err := m.PostStart.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n48 + i += n50 } if m.PreStop != nil { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.PreStop.Size())) - n49, err := m.PreStop.MarshalTo(data[i:]) + n51, err := m.PreStop.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n49 + i += n51 } return i, nil } @@ -3307,19 +3391,19 @@ func (m *LimitRange) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n50, err := m.ObjectMeta.MarshalTo(data[i:]) + n52, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n50 + i += n52 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n51, err := m.Spec.MarshalTo(data[i:]) + n53, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n51 + i += n53 return i, nil } @@ -3357,11 +3441,11 @@ func (m *LimitRangeItem) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n52, err := (&v).MarshalTo(data[i:]) + n54, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n52 + i += n54 } } if len(m.Min) > 0 { @@ -3379,11 +3463,11 @@ func (m *LimitRangeItem) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n53, err := (&v).MarshalTo(data[i:]) + n55, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n53 + i += n55 } } if len(m.Default) > 0 { @@ -3401,11 +3485,11 @@ func (m *LimitRangeItem) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n54, err := (&v).MarshalTo(data[i:]) + n56, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n54 + i += n56 } } if len(m.DefaultRequest) > 0 { @@ -3423,11 +3507,11 @@ func (m *LimitRangeItem) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n55, err := (&v).MarshalTo(data[i:]) + n57, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n55 + i += n57 } } if len(m.MaxLimitRequestRatio) > 0 { @@ -3445,11 +3529,11 @@ func (m *LimitRangeItem) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n56, err := (&v).MarshalTo(data[i:]) + n58, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n56 + i += n58 } } return i, nil @@ -3473,11 +3557,11 @@ func (m *LimitRangeList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n57, err := m.ListMeta.MarshalTo(data[i:]) + n59, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n57 + i += n59 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -3541,11 +3625,11 @@ func (m *List) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n58, err := m.ListMeta.MarshalTo(data[i:]) + n60, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n58 + i += n60 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -3734,27 +3818,27 @@ func (m *Namespace) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n59, err := m.ObjectMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n59 - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n60, err := m.Spec.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n60 - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n61, err := m.Status.MarshalTo(data[i:]) + n61, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } i += n61 + data[i] = 0x12 + i++ + i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) + n62, err := m.Spec.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n62 + data[i] = 0x1a + i++ + i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) + n63, err := m.Status.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n63 return i, nil } @@ -3776,11 +3860,11 @@ func (m *NamespaceList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n62, err := m.ListMeta.MarshalTo(data[i:]) + n64, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n62 + i += n64 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -3869,27 +3953,27 @@ func (m *Node) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n63, err := m.ObjectMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n63 - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n64, err := m.Spec.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n64 - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n65, err := m.Status.MarshalTo(data[i:]) + n65, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } i += n65 + data[i] = 0x12 + i++ + i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) + n66, err := m.Spec.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n66 + data[i] = 0x1a + i++ + i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) + n67, err := m.Status.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n67 return i, nil } @@ -3938,11 +4022,11 @@ func (m *NodeAffinity) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.RequiredDuringSchedulingIgnoredDuringExecution.Size())) - n66, err := m.RequiredDuringSchedulingIgnoredDuringExecution.MarshalTo(data[i:]) + n68, err := m.RequiredDuringSchedulingIgnoredDuringExecution.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n66 + i += n68 } if len(m.PreferredDuringSchedulingIgnoredDuringExecution) > 0 { for _, msg := range m.PreferredDuringSchedulingIgnoredDuringExecution { @@ -3985,19 +4069,19 @@ func (m *NodeCondition) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.LastHeartbeatTime.Size())) - n67, err := m.LastHeartbeatTime.MarshalTo(data[i:]) + n69, err := m.LastHeartbeatTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n67 + i += n69 data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(m.LastTransitionTime.Size())) - n68, err := m.LastTransitionTime.MarshalTo(data[i:]) + n70, err := m.LastTransitionTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n68 + i += n70 data[i] = 0x2a i++ i = encodeVarintGenerated(data, i, uint64(len(m.Reason))) @@ -4027,11 +4111,11 @@ func (m *NodeDaemonEndpoints) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.KubeletEndpoint.Size())) - n69, err := m.KubeletEndpoint.MarshalTo(data[i:]) + n71, err := m.KubeletEndpoint.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n69 + i += n71 return i, nil } @@ -4053,11 +4137,11 @@ func (m *NodeList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n70, err := m.ListMeta.MarshalTo(data[i:]) + n72, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n70 + i += n72 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -4125,11 +4209,11 @@ func (m *NodeResources) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n71, err := (&v).MarshalTo(data[i:]) + n73, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n71 + i += n73 } } return i, nil @@ -4304,11 +4388,11 @@ func (m *NodeStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n72, err := (&v).MarshalTo(data[i:]) + n74, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n72 + i += n74 } } if len(m.Allocatable) > 0 { @@ -4326,11 +4410,11 @@ func (m *NodeStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n73, err := (&v).MarshalTo(data[i:]) + n75, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n73 + i += n75 } } data[i] = 0x1a @@ -4364,19 +4448,19 @@ func (m *NodeStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x32 i++ i = encodeVarintGenerated(data, i, uint64(m.DaemonEndpoints.Size())) - n74, err := m.DaemonEndpoints.MarshalTo(data[i:]) + n76, err := m.DaemonEndpoints.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n74 + i += n76 data[i] = 0x3a i++ i = encodeVarintGenerated(data, i, uint64(m.NodeInfo.Size())) - n75, err := m.NodeInfo.MarshalTo(data[i:]) + n77, err := m.NodeInfo.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n75 + i += n77 if len(m.Images) > 0 { for _, msg := range m.Images { data[i] = 0x42 @@ -4548,20 +4632,20 @@ func (m *ObjectMeta) MarshalTo(data []byte) (int, error) { data[i] = 0x42 i++ i = encodeVarintGenerated(data, i, uint64(m.CreationTimestamp.Size())) - n76, err := m.CreationTimestamp.MarshalTo(data[i:]) + n78, err := m.CreationTimestamp.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n76 + i += n78 if m.DeletionTimestamp != nil { data[i] = 0x4a i++ i = encodeVarintGenerated(data, i, uint64(m.DeletionTimestamp.Size())) - n77, err := m.DeletionTimestamp.MarshalTo(data[i:]) + n79, err := m.DeletionTimestamp.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n77 + i += n79 } if m.DeletionGracePeriodSeconds != nil { data[i] = 0x50 @@ -4700,27 +4784,27 @@ func (m *PersistentVolume) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n78, err := m.ObjectMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n78 - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n79, err := m.Spec.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n79 - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n80, err := m.Status.MarshalTo(data[i:]) + n80, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } i += n80 + data[i] = 0x12 + i++ + i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) + n81, err := m.Spec.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n81 + data[i] = 0x1a + i++ + i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) + n82, err := m.Status.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n82 return i, nil } @@ -4742,27 +4826,27 @@ func (m *PersistentVolumeClaim) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n81, err := m.ObjectMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n81 - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n82, err := m.Spec.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n82 - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n83, err := m.Status.MarshalTo(data[i:]) + n83, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } i += n83 + data[i] = 0x12 + i++ + i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) + n84, err := m.Spec.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n84 + data[i] = 0x1a + i++ + i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) + n85, err := m.Status.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n85 return i, nil } @@ -4784,11 +4868,11 @@ func (m *PersistentVolumeClaimList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n84, err := m.ListMeta.MarshalTo(data[i:]) + n86, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n84 + i += n86 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -4837,11 +4921,11 @@ func (m *PersistentVolumeClaimSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Resources.Size())) - n85, err := m.Resources.MarshalTo(data[i:]) + n87, err := m.Resources.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n85 + i += n87 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(len(m.VolumeName))) @@ -4850,11 +4934,11 @@ func (m *PersistentVolumeClaimSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(m.Selector.Size())) - n86, err := m.Selector.MarshalTo(data[i:]) + n88, err := m.Selector.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n86 + i += n88 } return i, nil } @@ -4908,11 +4992,11 @@ func (m *PersistentVolumeClaimStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n87, err := (&v).MarshalTo(data[i:]) + n89, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n87 + i += n89 } } return i, nil @@ -4966,11 +5050,11 @@ func (m *PersistentVolumeList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n88, err := m.ListMeta.MarshalTo(data[i:]) + n90, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n88 + i += n90 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -5005,163 +5089,163 @@ func (m *PersistentVolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.GCEPersistentDisk.Size())) - n89, err := m.GCEPersistentDisk.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n89 - } - if m.AWSElasticBlockStore != nil { - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.AWSElasticBlockStore.Size())) - n90, err := m.AWSElasticBlockStore.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n90 - } - if m.HostPath != nil { - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.HostPath.Size())) - n91, err := m.HostPath.MarshalTo(data[i:]) + n91, err := m.GCEPersistentDisk.MarshalTo(data[i:]) if err != nil { return 0, err } i += n91 } - if m.Glusterfs != nil { - data[i] = 0x22 + if m.AWSElasticBlockStore != nil { + data[i] = 0x12 i++ - i = encodeVarintGenerated(data, i, uint64(m.Glusterfs.Size())) - n92, err := m.Glusterfs.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.AWSElasticBlockStore.Size())) + n92, err := m.AWSElasticBlockStore.MarshalTo(data[i:]) if err != nil { return 0, err } i += n92 } - if m.NFS != nil { - data[i] = 0x2a + if m.HostPath != nil { + data[i] = 0x1a i++ - i = encodeVarintGenerated(data, i, uint64(m.NFS.Size())) - n93, err := m.NFS.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.HostPath.Size())) + n93, err := m.HostPath.MarshalTo(data[i:]) if err != nil { return 0, err } i += n93 } - if m.RBD != nil { - data[i] = 0x32 + if m.Glusterfs != nil { + data[i] = 0x22 i++ - i = encodeVarintGenerated(data, i, uint64(m.RBD.Size())) - n94, err := m.RBD.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.Glusterfs.Size())) + n94, err := m.Glusterfs.MarshalTo(data[i:]) if err != nil { return 0, err } i += n94 } - if m.ISCSI != nil { - data[i] = 0x3a + if m.NFS != nil { + data[i] = 0x2a i++ - i = encodeVarintGenerated(data, i, uint64(m.ISCSI.Size())) - n95, err := m.ISCSI.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.NFS.Size())) + n95, err := m.NFS.MarshalTo(data[i:]) if err != nil { return 0, err } i += n95 } - if m.Cinder != nil { - data[i] = 0x42 + if m.RBD != nil { + data[i] = 0x32 i++ - i = encodeVarintGenerated(data, i, uint64(m.Cinder.Size())) - n96, err := m.Cinder.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.RBD.Size())) + n96, err := m.RBD.MarshalTo(data[i:]) if err != nil { return 0, err } i += n96 } - if m.CephFS != nil { - data[i] = 0x4a + if m.ISCSI != nil { + data[i] = 0x3a i++ - i = encodeVarintGenerated(data, i, uint64(m.CephFS.Size())) - n97, err := m.CephFS.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.ISCSI.Size())) + n97, err := m.ISCSI.MarshalTo(data[i:]) if err != nil { return 0, err } i += n97 } - if m.FC != nil { - data[i] = 0x52 + if m.Cinder != nil { + data[i] = 0x42 i++ - i = encodeVarintGenerated(data, i, uint64(m.FC.Size())) - n98, err := m.FC.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.Cinder.Size())) + n98, err := m.Cinder.MarshalTo(data[i:]) if err != nil { return 0, err } i += n98 } - if m.Flocker != nil { - data[i] = 0x5a + if m.CephFS != nil { + data[i] = 0x4a i++ - i = encodeVarintGenerated(data, i, uint64(m.Flocker.Size())) - n99, err := m.Flocker.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.CephFS.Size())) + n99, err := m.CephFS.MarshalTo(data[i:]) if err != nil { return 0, err } i += n99 } - if m.FlexVolume != nil { - data[i] = 0x62 + if m.FC != nil { + data[i] = 0x52 i++ - i = encodeVarintGenerated(data, i, uint64(m.FlexVolume.Size())) - n100, err := m.FlexVolume.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.FC.Size())) + n100, err := m.FC.MarshalTo(data[i:]) if err != nil { return 0, err } i += n100 } - if m.AzureFile != nil { - data[i] = 0x6a + if m.Flocker != nil { + data[i] = 0x5a i++ - i = encodeVarintGenerated(data, i, uint64(m.AzureFile.Size())) - n101, err := m.AzureFile.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.Flocker.Size())) + n101, err := m.Flocker.MarshalTo(data[i:]) if err != nil { return 0, err } i += n101 } - if m.VsphereVolume != nil { - data[i] = 0x72 + if m.FlexVolume != nil { + data[i] = 0x62 i++ - i = encodeVarintGenerated(data, i, uint64(m.VsphereVolume.Size())) - n102, err := m.VsphereVolume.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.FlexVolume.Size())) + n102, err := m.FlexVolume.MarshalTo(data[i:]) if err != nil { return 0, err } i += n102 } - if m.Quobyte != nil { - data[i] = 0x7a + if m.AzureFile != nil { + data[i] = 0x6a i++ - i = encodeVarintGenerated(data, i, uint64(m.Quobyte.Size())) - n103, err := m.Quobyte.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.AzureFile.Size())) + n103, err := m.AzureFile.MarshalTo(data[i:]) if err != nil { return 0, err } i += n103 } + if m.VsphereVolume != nil { + data[i] = 0x72 + i++ + i = encodeVarintGenerated(data, i, uint64(m.VsphereVolume.Size())) + n104, err := m.VsphereVolume.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n104 + } + if m.Quobyte != nil { + data[i] = 0x7a + i++ + i = encodeVarintGenerated(data, i, uint64(m.Quobyte.Size())) + n105, err := m.Quobyte.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n105 + } if m.AzureDisk != nil { data[i] = 0x82 i++ data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.AzureDisk.Size())) - n104, err := m.AzureDisk.MarshalTo(data[i:]) + n106, err := m.AzureDisk.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n104 + i += n106 } if m.PhotonPersistentDisk != nil { data[i] = 0x8a @@ -5169,11 +5253,11 @@ func (m *PersistentVolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.PhotonPersistentDisk.Size())) - n105, err := m.PhotonPersistentDisk.MarshalTo(data[i:]) + n107, err := m.PhotonPersistentDisk.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n105 + i += n107 } return i, nil } @@ -5208,21 +5292,21 @@ func (m *PersistentVolumeSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n106, err := (&v).MarshalTo(data[i:]) + n108, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n106 + i += n108 } } data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.PersistentVolumeSource.Size())) - n107, err := m.PersistentVolumeSource.MarshalTo(data[i:]) + n109, err := m.PersistentVolumeSource.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n107 + i += n109 if len(m.AccessModes) > 0 { for _, s := range m.AccessModes { data[i] = 0x1a @@ -5242,11 +5326,11 @@ func (m *PersistentVolumeSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(m.ClaimRef.Size())) - n108, err := m.ClaimRef.MarshalTo(data[i:]) + n110, err := m.ClaimRef.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n108 + i += n110 } data[i] = 0x2a i++ @@ -5329,27 +5413,27 @@ func (m *Pod) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n109, err := m.ObjectMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n109 - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n110, err := m.Spec.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n110 - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n111, err := m.Status.MarshalTo(data[i:]) + n111, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } i += n111 + data[i] = 0x12 + i++ + i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) + n112, err := m.Spec.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n112 + data[i] = 0x1a + i++ + i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) + n113, err := m.Status.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n113 return i, nil } @@ -5414,11 +5498,11 @@ func (m *PodAffinityTerm) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.LabelSelector.Size())) - n112, err := m.LabelSelector.MarshalTo(data[i:]) + n114, err := m.LabelSelector.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n112 + i += n114 } if len(m.Namespaces) > 0 { for _, s := range m.Namespaces { @@ -5564,19 +5648,19 @@ func (m *PodCondition) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.LastProbeTime.Size())) - n113, err := m.LastProbeTime.MarshalTo(data[i:]) + n115, err := m.LastProbeTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n113 + i += n115 data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(m.LastTransitionTime.Size())) - n114, err := m.LastTransitionTime.MarshalTo(data[i:]) + n116, err := m.LastTransitionTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n114 + i += n116 data[i] = 0x2a i++ i = encodeVarintGenerated(data, i, uint64(len(m.Reason))) @@ -5675,11 +5759,11 @@ func (m *PodList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n115, err := m.ListMeta.MarshalTo(data[i:]) + n117, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n115 + i += n117 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -5739,11 +5823,11 @@ func (m *PodLogOptions) MarshalTo(data []byte) (int, error) { data[i] = 0x2a i++ i = encodeVarintGenerated(data, i, uint64(m.SinceTime.Size())) - n116, err := m.SinceTime.MarshalTo(data[i:]) + n118, err := m.SinceTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n116 + i += n118 } data[i] = 0x30 i++ @@ -5807,11 +5891,11 @@ func (m *PodSecurityContext) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.SELinuxOptions.Size())) - n117, err := m.SELinuxOptions.MarshalTo(data[i:]) + n119, err := m.SELinuxOptions.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n117 + i += n119 } if m.RunAsUser != nil { data[i] = 0x10 @@ -5862,11 +5946,11 @@ func (m *PodSignature) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.PodController.Size())) - n118, err := m.PodController.MarshalTo(data[i:]) + n120, err := m.PodController.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n118 + i += n120 } return i, nil } @@ -5985,11 +6069,11 @@ func (m *PodSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x72 i++ i = encodeVarintGenerated(data, i, uint64(m.SecurityContext.Size())) - n119, err := m.SecurityContext.MarshalTo(data[i:]) + n121, err := m.SecurityContext.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n119 + i += n121 } if len(m.ImagePullSecrets) > 0 { for _, msg := range m.ImagePullSecrets { @@ -6021,11 +6105,11 @@ func (m *PodSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.Affinity.Size())) - n120, err := m.Affinity.MarshalTo(data[i:]) + n122, err := m.Affinity.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n120 + i += n122 } return i, nil } @@ -6081,11 +6165,11 @@ func (m *PodStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x3a i++ i = encodeVarintGenerated(data, i, uint64(m.StartTime.Size())) - n121, err := m.StartTime.MarshalTo(data[i:]) + n123, err := m.StartTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n121 + i += n123 } if len(m.ContainerStatuses) > 0 { for _, msg := range m.ContainerStatuses { @@ -6124,19 +6208,19 @@ func (m *PodStatusResult) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n122, err := m.ObjectMeta.MarshalTo(data[i:]) + n124, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n122 + i += n124 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n123, err := m.Status.MarshalTo(data[i:]) + n125, err := m.Status.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n123 + i += n125 return i, nil } @@ -6158,19 +6242,19 @@ func (m *PodTemplate) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n124, err := m.ObjectMeta.MarshalTo(data[i:]) + n126, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n124 + i += n126 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Template.Size())) - n125, err := m.Template.MarshalTo(data[i:]) + n127, err := m.Template.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n125 + i += n127 return i, nil } @@ -6192,11 +6276,11 @@ func (m *PodTemplateList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n126, err := m.ListMeta.MarshalTo(data[i:]) + n128, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n126 + i += n128 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -6230,19 +6314,19 @@ func (m *PodTemplateSpec) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n127, err := m.ObjectMeta.MarshalTo(data[i:]) + n129, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n127 + i += n129 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n128, err := m.Spec.MarshalTo(data[i:]) + n130, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n128 + i += n130 return i, nil } @@ -6288,19 +6372,19 @@ func (m *PreferAvoidPodsEntry) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.PodSignature.Size())) - n129, err := m.PodSignature.MarshalTo(data[i:]) + n131, err := m.PodSignature.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n129 + i += n131 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.EvictionTime.Size())) - n130, err := m.EvictionTime.MarshalTo(data[i:]) + n132, err := m.EvictionTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n130 + i += n132 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(len(m.Reason))) @@ -6333,11 +6417,11 @@ func (m *PreferredSchedulingTerm) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Preference.Size())) - n131, err := m.Preference.MarshalTo(data[i:]) + n133, err := m.Preference.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n131 + i += n133 return i, nil } @@ -6359,11 +6443,11 @@ func (m *Probe) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.Handler.Size())) - n132, err := m.Handler.MarshalTo(data[i:]) + n134, err := m.Handler.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n132 + i += n134 data[i] = 0x10 i++ i = encodeVarintGenerated(data, i, uint64(m.InitialDelaySeconds)) @@ -6478,11 +6562,11 @@ func (m *RBDVolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x3a i++ i = encodeVarintGenerated(data, i, uint64(m.SecretRef.Size())) - n133, err := m.SecretRef.MarshalTo(data[i:]) + n135, err := m.SecretRef.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n133 + i += n135 } data[i] = 0x40 i++ @@ -6513,11 +6597,11 @@ func (m *RangeAllocation) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n134, err := m.ObjectMeta.MarshalTo(data[i:]) + n136, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n134 + i += n136 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(len(m.Range))) @@ -6549,27 +6633,27 @@ func (m *ReplicationController) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n135, err := m.ObjectMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n135 - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n136, err := m.Spec.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n136 - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n137, err := m.Status.MarshalTo(data[i:]) + n137, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } i += n137 + data[i] = 0x12 + i++ + i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) + n138, err := m.Spec.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n138 + data[i] = 0x1a + i++ + i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) + n139, err := m.Status.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n139 return i, nil } @@ -6599,11 +6683,11 @@ func (m *ReplicationControllerCondition) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.LastTransitionTime.Size())) - n138, err := m.LastTransitionTime.MarshalTo(data[i:]) + n140, err := m.LastTransitionTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n138 + i += n140 data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(len(m.Reason))) @@ -6633,11 +6717,11 @@ func (m *ReplicationControllerList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n139, err := m.ListMeta.MarshalTo(data[i:]) + n141, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n139 + i += n141 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -6694,11 +6778,11 @@ func (m *ReplicationControllerSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Template.Size())) - n140, err := m.Template.MarshalTo(data[i:]) + n142, err := m.Template.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n140 + i += n142 } data[i] = 0x20 i++ @@ -6777,11 +6861,11 @@ func (m *ResourceFieldSelector) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Divisor.Size())) - n141, err := m.Divisor.MarshalTo(data[i:]) + n143, err := m.Divisor.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n141 + i += n143 return i, nil } @@ -6803,27 +6887,27 @@ func (m *ResourceQuota) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n142, err := m.ObjectMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n142 - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n143, err := m.Spec.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n143 - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n144, err := m.Status.MarshalTo(data[i:]) + n144, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } i += n144 + data[i] = 0x12 + i++ + i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) + n145, err := m.Spec.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n145 + data[i] = 0x1a + i++ + i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) + n146, err := m.Status.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n146 return i, nil } @@ -6845,11 +6929,11 @@ func (m *ResourceQuotaList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n145, err := m.ListMeta.MarshalTo(data[i:]) + n147, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n145 + i += n147 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -6895,11 +6979,11 @@ func (m *ResourceQuotaSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n146, err := (&v).MarshalTo(data[i:]) + n148, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n146 + i += n148 } } if len(m.Scopes) > 0 { @@ -6950,11 +7034,11 @@ func (m *ResourceQuotaStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n147, err := (&v).MarshalTo(data[i:]) + n149, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n147 + i += n149 } } if len(m.Used) > 0 { @@ -6972,11 +7056,11 @@ func (m *ResourceQuotaStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n148, err := (&v).MarshalTo(data[i:]) + n150, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n148 + i += n150 } } return i, nil @@ -7012,11 +7096,11 @@ func (m *ResourceRequirements) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n149, err := (&v).MarshalTo(data[i:]) + n151, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n149 + i += n151 } } if len(m.Requests) > 0 { @@ -7034,11 +7118,11 @@ func (m *ResourceRequirements) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n150, err := (&v).MarshalTo(data[i:]) + n152, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n150 + i += n152 } } return i, nil @@ -7096,11 +7180,11 @@ func (m *Secret) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n151, err := m.ObjectMeta.MarshalTo(data[i:]) + n153, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n151 + i += n153 if len(m.Data) > 0 { for k := range m.Data { data[i] = 0x12 @@ -7160,11 +7244,11 @@ func (m *SecretKeySelector) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.LocalObjectReference.Size())) - n152, err := m.LocalObjectReference.MarshalTo(data[i:]) + n154, err := m.LocalObjectReference.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n152 + i += n154 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(len(m.Key))) @@ -7190,11 +7274,11 @@ func (m *SecretList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n153, err := m.ListMeta.MarshalTo(data[i:]) + n155, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n153 + i += n155 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -7268,11 +7352,11 @@ func (m *SecurityContext) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.Capabilities.Size())) - n154, err := m.Capabilities.MarshalTo(data[i:]) + n156, err := m.Capabilities.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n154 + i += n156 } if m.Privileged != nil { data[i] = 0x10 @@ -7288,11 +7372,11 @@ func (m *SecurityContext) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.SELinuxOptions.Size())) - n155, err := m.SELinuxOptions.MarshalTo(data[i:]) + n157, err := m.SELinuxOptions.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n155 + i += n157 } if m.RunAsUser != nil { data[i] = 0x20 @@ -7340,11 +7424,11 @@ func (m *SerializedReference) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.Reference.Size())) - n156, err := m.Reference.MarshalTo(data[i:]) + n158, err := m.Reference.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n156 + i += n158 return i, nil } @@ -7366,27 +7450,27 @@ func (m *Service) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n157, err := m.ObjectMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n157 - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n158, err := m.Spec.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n158 - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n159, err := m.Status.MarshalTo(data[i:]) + n159, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } i += n159 + data[i] = 0x12 + i++ + i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) + n160, err := m.Spec.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n160 + data[i] = 0x1a + i++ + i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) + n161, err := m.Status.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n161 return i, nil } @@ -7408,11 +7492,11 @@ func (m *ServiceAccount) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n160, err := m.ObjectMeta.MarshalTo(data[i:]) + n162, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n160 + i += n162 if len(m.Secrets) > 0 { for _, msg := range m.Secrets { data[i] = 0x12 @@ -7458,11 +7542,11 @@ func (m *ServiceAccountList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n161, err := m.ListMeta.MarshalTo(data[i:]) + n163, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n161 + i += n163 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -7496,11 +7580,11 @@ func (m *ServiceList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n162, err := m.ListMeta.MarshalTo(data[i:]) + n164, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n162 + i += n164 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -7545,11 +7629,11 @@ func (m *ServicePort) MarshalTo(data []byte) (int, error) { data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(m.TargetPort.Size())) - n163, err := m.TargetPort.MarshalTo(data[i:]) + n165, err := m.TargetPort.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n163 + i += n165 data[i] = 0x28 i++ i = encodeVarintGenerated(data, i, uint64(m.NodePort)) @@ -7708,11 +7792,11 @@ func (m *ServiceStatus) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.LoadBalancer.Size())) - n164, err := m.LoadBalancer.MarshalTo(data[i:]) + n166, err := m.LoadBalancer.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n164 + i += n166 return i, nil } @@ -7760,11 +7844,11 @@ func (m *TCPSocketAction) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.Port.Size())) - n165, err := m.Port.MarshalTo(data[i:]) + n167, err := m.Port.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n165 + i += n167 return i, nil } @@ -7854,11 +7938,11 @@ func (m *Volume) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.VolumeSource.Size())) - n166, err := m.VolumeSource.MarshalTo(data[i:]) + n168, err := m.VolumeSource.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n166 + i += n168 return i, nil } @@ -7919,163 +8003,163 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.HostPath.Size())) - n167, err := m.HostPath.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n167 - } - if m.EmptyDir != nil { - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.EmptyDir.Size())) - n168, err := m.EmptyDir.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n168 - } - if m.GCEPersistentDisk != nil { - data[i] = 0x1a - i++ - i = encodeVarintGenerated(data, i, uint64(m.GCEPersistentDisk.Size())) - n169, err := m.GCEPersistentDisk.MarshalTo(data[i:]) + n169, err := m.HostPath.MarshalTo(data[i:]) if err != nil { return 0, err } i += n169 } - if m.AWSElasticBlockStore != nil { - data[i] = 0x22 + if m.EmptyDir != nil { + data[i] = 0x12 i++ - i = encodeVarintGenerated(data, i, uint64(m.AWSElasticBlockStore.Size())) - n170, err := m.AWSElasticBlockStore.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.EmptyDir.Size())) + n170, err := m.EmptyDir.MarshalTo(data[i:]) if err != nil { return 0, err } i += n170 } - if m.GitRepo != nil { - data[i] = 0x2a + if m.GCEPersistentDisk != nil { + data[i] = 0x1a i++ - i = encodeVarintGenerated(data, i, uint64(m.GitRepo.Size())) - n171, err := m.GitRepo.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.GCEPersistentDisk.Size())) + n171, err := m.GCEPersistentDisk.MarshalTo(data[i:]) if err != nil { return 0, err } i += n171 } - if m.Secret != nil { - data[i] = 0x32 + if m.AWSElasticBlockStore != nil { + data[i] = 0x22 i++ - i = encodeVarintGenerated(data, i, uint64(m.Secret.Size())) - n172, err := m.Secret.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.AWSElasticBlockStore.Size())) + n172, err := m.AWSElasticBlockStore.MarshalTo(data[i:]) if err != nil { return 0, err } i += n172 } - if m.NFS != nil { - data[i] = 0x3a + if m.GitRepo != nil { + data[i] = 0x2a i++ - i = encodeVarintGenerated(data, i, uint64(m.NFS.Size())) - n173, err := m.NFS.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.GitRepo.Size())) + n173, err := m.GitRepo.MarshalTo(data[i:]) if err != nil { return 0, err } i += n173 } - if m.ISCSI != nil { - data[i] = 0x42 + if m.Secret != nil { + data[i] = 0x32 i++ - i = encodeVarintGenerated(data, i, uint64(m.ISCSI.Size())) - n174, err := m.ISCSI.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.Secret.Size())) + n174, err := m.Secret.MarshalTo(data[i:]) if err != nil { return 0, err } i += n174 } - if m.Glusterfs != nil { - data[i] = 0x4a + if m.NFS != nil { + data[i] = 0x3a i++ - i = encodeVarintGenerated(data, i, uint64(m.Glusterfs.Size())) - n175, err := m.Glusterfs.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.NFS.Size())) + n175, err := m.NFS.MarshalTo(data[i:]) if err != nil { return 0, err } i += n175 } - if m.PersistentVolumeClaim != nil { - data[i] = 0x52 + if m.ISCSI != nil { + data[i] = 0x42 i++ - i = encodeVarintGenerated(data, i, uint64(m.PersistentVolumeClaim.Size())) - n176, err := m.PersistentVolumeClaim.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.ISCSI.Size())) + n176, err := m.ISCSI.MarshalTo(data[i:]) if err != nil { return 0, err } i += n176 } - if m.RBD != nil { - data[i] = 0x5a + if m.Glusterfs != nil { + data[i] = 0x4a i++ - i = encodeVarintGenerated(data, i, uint64(m.RBD.Size())) - n177, err := m.RBD.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.Glusterfs.Size())) + n177, err := m.Glusterfs.MarshalTo(data[i:]) if err != nil { return 0, err } i += n177 } - if m.FlexVolume != nil { - data[i] = 0x62 + if m.PersistentVolumeClaim != nil { + data[i] = 0x52 i++ - i = encodeVarintGenerated(data, i, uint64(m.FlexVolume.Size())) - n178, err := m.FlexVolume.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.PersistentVolumeClaim.Size())) + n178, err := m.PersistentVolumeClaim.MarshalTo(data[i:]) if err != nil { return 0, err } i += n178 } - if m.Cinder != nil { - data[i] = 0x6a + if m.RBD != nil { + data[i] = 0x5a i++ - i = encodeVarintGenerated(data, i, uint64(m.Cinder.Size())) - n179, err := m.Cinder.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.RBD.Size())) + n179, err := m.RBD.MarshalTo(data[i:]) if err != nil { return 0, err } i += n179 } - if m.CephFS != nil { - data[i] = 0x72 + if m.FlexVolume != nil { + data[i] = 0x62 i++ - i = encodeVarintGenerated(data, i, uint64(m.CephFS.Size())) - n180, err := m.CephFS.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.FlexVolume.Size())) + n180, err := m.FlexVolume.MarshalTo(data[i:]) if err != nil { return 0, err } i += n180 } - if m.Flocker != nil { - data[i] = 0x7a + if m.Cinder != nil { + data[i] = 0x6a i++ - i = encodeVarintGenerated(data, i, uint64(m.Flocker.Size())) - n181, err := m.Flocker.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.Cinder.Size())) + n181, err := m.Cinder.MarshalTo(data[i:]) if err != nil { return 0, err } i += n181 } + if m.CephFS != nil { + data[i] = 0x72 + i++ + i = encodeVarintGenerated(data, i, uint64(m.CephFS.Size())) + n182, err := m.CephFS.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n182 + } + if m.Flocker != nil { + data[i] = 0x7a + i++ + i = encodeVarintGenerated(data, i, uint64(m.Flocker.Size())) + n183, err := m.Flocker.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n183 + } if m.DownwardAPI != nil { data[i] = 0x82 i++ data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.DownwardAPI.Size())) - n182, err := m.DownwardAPI.MarshalTo(data[i:]) + n184, err := m.DownwardAPI.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n182 + i += n184 } if m.FC != nil { data[i] = 0x8a @@ -8083,11 +8167,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.FC.Size())) - n183, err := m.FC.MarshalTo(data[i:]) + n185, err := m.FC.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n183 + i += n185 } if m.AzureFile != nil { data[i] = 0x92 @@ -8095,11 +8179,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.AzureFile.Size())) - n184, err := m.AzureFile.MarshalTo(data[i:]) + n186, err := m.AzureFile.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n184 + i += n186 } if m.ConfigMap != nil { data[i] = 0x9a @@ -8107,11 +8191,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.ConfigMap.Size())) - n185, err := m.ConfigMap.MarshalTo(data[i:]) + n187, err := m.ConfigMap.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n185 + i += n187 } if m.VsphereVolume != nil { data[i] = 0xa2 @@ -8119,11 +8203,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.VsphereVolume.Size())) - n186, err := m.VsphereVolume.MarshalTo(data[i:]) + n188, err := m.VsphereVolume.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n186 + i += n188 } if m.Quobyte != nil { data[i] = 0xaa @@ -8131,11 +8215,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.Quobyte.Size())) - n187, err := m.Quobyte.MarshalTo(data[i:]) + n189, err := m.Quobyte.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n187 + i += n189 } if m.AzureDisk != nil { data[i] = 0xb2 @@ -8143,11 +8227,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.AzureDisk.Size())) - n188, err := m.AzureDisk.MarshalTo(data[i:]) + n190, err := m.AzureDisk.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n188 + i += n190 } if m.PhotonPersistentDisk != nil { data[i] = 0xba @@ -8155,11 +8239,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.PhotonPersistentDisk.Size())) - n189, err := m.PhotonPersistentDisk.MarshalTo(data[i:]) + n191, err := m.PhotonPersistentDisk.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n189 + i += n191 } return i, nil } @@ -8211,11 +8295,11 @@ func (m *WeightedPodAffinityTerm) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.PodAffinityTerm.Size())) - n190, err := m.PodAffinityTerm.MarshalTo(data[i:]) + n192, err := m.PodAffinityTerm.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n190 + i += n192 return i, nil } @@ -8450,6 +8534,14 @@ func (m *ConfigMap) Size() (n int) { return n } +func (m *ConfigMapEnvSource) Size() (n int) { + var l int + _ = l + l = m.LocalObjectReference.Size() + n += 1 + l + sovGenerated(uint64(l)) + return n +} + func (m *ConfigMapKeySelector) Size() (n int) { var l int _ = l @@ -8555,6 +8647,12 @@ func (m *Container) Size() (n int) { n += 3 n += 3 n += 3 + if len(m.EnvFrom) > 0 { + for _, e := range m.EnvFrom { + l = e.Size() + n += 2 + l + sovGenerated(uint64(l)) + } + } return n } @@ -8805,6 +8903,18 @@ func (m *EndpointsList) Size() (n int) { return n } +func (m *EnvFromSource) Size() (n int) { + var l int + _ = l + l = len(m.Prefix) + n += 1 + l + sovGenerated(uint64(l)) + if m.ConfigMapRef != nil { + l = m.ConfigMapRef.Size() + n += 1 + l + sovGenerated(uint64(l)) + } + return n +} + func (m *EnvVar) Size() (n int) { var l int _ = l @@ -11100,6 +11210,16 @@ func (this *ConfigMap) String() string { }, "") return s } +func (this *ConfigMapEnvSource) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&ConfigMapEnvSource{`, + `LocalObjectReference:` + strings.Replace(strings.Replace(this.LocalObjectReference.String(), "LocalObjectReference", "LocalObjectReference", 1), `&`, ``, 1) + `,`, + `}`, + }, "") + return s +} func (this *ConfigMapKeySelector) String() string { if this == nil { return "nil" @@ -11157,6 +11277,7 @@ func (this *Container) String() string { `Stdin:` + fmt.Sprintf("%v", this.Stdin) + `,`, `StdinOnce:` + fmt.Sprintf("%v", this.StdinOnce) + `,`, `TTY:` + fmt.Sprintf("%v", this.TTY) + `,`, + `EnvFrom:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.EnvFrom), "EnvFromSource", "EnvFromSource", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -11367,6 +11488,17 @@ func (this *EndpointsList) String() string { }, "") return s } +func (this *EnvFromSource) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&EnvFromSource{`, + `Prefix:` + fmt.Sprintf("%v", this.Prefix) + `,`, + `ConfigMapRef:` + strings.Replace(fmt.Sprintf("%v", this.ConfigMapRef), "ConfigMapEnvSource", "ConfigMapEnvSource", 1) + `,`, + `}`, + }, "") + return s +} func (this *EnvVar) String() string { if this == nil { return "nil" @@ -15087,6 +15219,86 @@ func (m *ConfigMap) Unmarshal(data []byte) error { } return nil } +func (m *ConfigMapEnvSource) Unmarshal(data []byte) error { + l := len(data) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ConfigMapEnvSource: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ConfigMapEnvSource: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field LocalObjectReference", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.LocalObjectReference.Unmarshal(data[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipGenerated(data[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthGenerated + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *ConfigMapKeySelector) Unmarshal(data []byte) error { l := len(data) iNdEx := 0 @@ -15985,6 +16197,37 @@ func (m *Container) Unmarshal(data []byte) error { } } m.TTY = bool(v != 0) + case 19: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field EnvFrom", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.EnvFrom = append(m.EnvFrom, EnvFromSource{}) + if err := m.EnvFrom[len(m.EnvFrom)-1].Unmarshal(data[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -18317,6 +18560,118 @@ func (m *EndpointsList) Unmarshal(data []byte) error { } return nil } +func (m *EnvFromSource) Unmarshal(data []byte) error { + l := len(data) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: EnvFromSource: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: EnvFromSource: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Prefix", 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 > l { + return io.ErrUnexpectedEOF + } + m.Prefix = string(data[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ConfigMapRef", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.ConfigMapRef == nil { + m.ConfigMapRef = &ConfigMapEnvSource{} + } + if err := m.ConfigMapRef.Unmarshal(data[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipGenerated(data[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthGenerated + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *EnvVar) Unmarshal(data []byte) error { l := len(data) iNdEx := 0 @@ -39230,633 +39585,639 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 10040 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x8c, 0x24, 0xc7, - 0x75, 0x98, 0x7a, 0x66, 0xbf, 0xe6, 0xed, 0xe7, 0xd5, 0x7d, 0x70, 0xb9, 0x26, 0x6f, 0x4f, 0x4d, - 0x91, 0x3a, 0x92, 0xc7, 0x5d, 0xdd, 0x91, 0x14, 0x29, 0x91, 0xa1, 0xb4, 0xbb, 0xb3, 0x7b, 0xb7, - 0xba, 0xaf, 0x61, 0xcd, 0xde, 0x1d, 0x25, 0x11, 0x92, 0x7a, 0xa7, 0x6b, 0x77, 0x5b, 0xd7, 0xdb, - 0x3d, 0xec, 0xee, 0xd9, 0xbb, 0xa5, 0x62, 0xc0, 0x91, 0x19, 0x1b, 0x81, 0x05, 0x47, 0x41, 0x20, - 0x24, 0x40, 0xbe, 0x94, 0x00, 0x09, 0x9c, 0x18, 0xb6, 0xa2, 0x48, 0x09, 0xa4, 0x58, 0x36, 0x10, - 0xc4, 0x76, 0x14, 0x04, 0x0e, 0xa4, 0x3f, 0xb1, 0x61, 0x03, 0x1b, 0x73, 0x9d, 0x7f, 0xc9, 0x8f, - 0x00, 0xf9, 0x95, 0x85, 0x91, 0x04, 0xf5, 0xd9, 0x55, 0x3d, 0x3d, 0xdb, 0x3d, 0xc7, 0x9b, 0x33, - 0x65, 0xe4, 0xdf, 0xcc, 0x7b, 0xaf, 0x5e, 0x7d, 0xf4, 0xab, 0x57, 0xaf, 0x5e, 0xbd, 0x7a, 0x05, - 0x17, 0xee, 0xbe, 0x1a, 0x2f, 0x78, 0xe1, 0xe2, 0xdd, 0xce, 0x26, 0x89, 0x02, 0x92, 0x90, 0x78, - 0xb1, 0x7d, 0x77, 0x7b, 0xd1, 0x69, 0x7b, 0x8b, 0x7b, 0x17, 0x17, 0xb7, 0x49, 0x40, 0x22, 0x27, - 0x21, 0xee, 0x42, 0x3b, 0x0a, 0x93, 0x10, 0x3d, 0xc1, 0xa9, 0x17, 0x52, 0xea, 0x85, 0xf6, 0xdd, - 0xed, 0x05, 0xa7, 0xed, 0x2d, 0xec, 0x5d, 0x9c, 0x7b, 0x61, 0xdb, 0x4b, 0x76, 0x3a, 0x9b, 0x0b, - 0xad, 0x70, 0x77, 0x71, 0x3b, 0xdc, 0x0e, 0x17, 0x59, 0xa1, 0xcd, 0xce, 0x16, 0xfb, 0xc7, 0xfe, - 0xb0, 0x5f, 0x9c, 0xd9, 0xdc, 0xa5, 0xde, 0x55, 0x47, 0x24, 0x0e, 0x3b, 0x51, 0x8b, 0x64, 0x1b, - 0x70, 0x4c, 0x99, 0x78, 0x71, 0x97, 0x24, 0x4e, 0x4e, 0xa3, 0xe7, 0x5e, 0xc8, 0x2f, 0x13, 0x75, - 0x82, 0xc4, 0xdb, 0xed, 0xae, 0xe2, 0xa5, 0xe3, 0xc9, 0xe3, 0xd6, 0x0e, 0xd9, 0x75, 0xba, 0x4a, - 0x5d, 0xcc, 0x2f, 0xd5, 0x49, 0x3c, 0x7f, 0xd1, 0x0b, 0x92, 0x38, 0x89, 0xb2, 0x45, 0xec, 0x3f, - 0xb4, 0xe0, 0xdc, 0xd2, 0x9d, 0xe6, 0xaa, 0xef, 0xc4, 0x89, 0xd7, 0x5a, 0xf6, 0xc3, 0xd6, 0xdd, - 0x66, 0x12, 0x46, 0xe4, 0x76, 0xe8, 0x77, 0x76, 0x49, 0x93, 0x0d, 0x00, 0xba, 0x00, 0x63, 0x7b, - 0xec, 0xff, 0x7a, 0x7d, 0xd6, 0x3a, 0x67, 0x9d, 0xaf, 0x2d, 0xcf, 0xfc, 0xf8, 0x60, 0xfe, 0x23, - 0x87, 0x07, 0xf3, 0x63, 0xb7, 0x05, 0x1c, 0x2b, 0x0a, 0xf4, 0x0c, 0x8c, 0x6c, 0xc5, 0x1b, 0xfb, - 0x6d, 0x32, 0x5b, 0x61, 0xb4, 0x53, 0x82, 0x76, 0x64, 0xad, 0x49, 0xa1, 0x58, 0x60, 0xd1, 0x22, - 0xd4, 0xda, 0x4e, 0x94, 0x78, 0x89, 0x17, 0x06, 0xb3, 0xd5, 0x73, 0xd6, 0xf9, 0xe1, 0xe5, 0x13, - 0x82, 0xb4, 0xd6, 0x90, 0x08, 0x9c, 0xd2, 0xd0, 0x66, 0x44, 0xc4, 0x71, 0x6f, 0x06, 0xfe, 0xfe, - 0xec, 0xd0, 0x39, 0xeb, 0xfc, 0x58, 0xda, 0x0c, 0x2c, 0xe0, 0x58, 0x51, 0xd8, 0x3f, 0xa8, 0xc0, - 0xd8, 0xd2, 0xd6, 0x96, 0x17, 0x78, 0xc9, 0x3e, 0xfa, 0x0a, 0x4c, 0x04, 0xa1, 0x4b, 0xe4, 0x7f, - 0xd6, 0x8b, 0xf1, 0x4b, 0xcf, 0x2d, 0x1c, 0x27, 0x4a, 0x0b, 0x37, 0xb4, 0x12, 0xcb, 0x33, 0x87, - 0x07, 0xf3, 0x13, 0x3a, 0x04, 0x1b, 0x1c, 0xd1, 0xdb, 0x30, 0xde, 0x0e, 0x5d, 0x55, 0x41, 0x85, - 0x55, 0xf0, 0xec, 0xf1, 0x15, 0x34, 0xd2, 0x02, 0xcb, 0xd3, 0x87, 0x07, 0xf3, 0xe3, 0x1a, 0x00, - 0xeb, 0xec, 0x90, 0x0f, 0xd3, 0xf4, 0x6f, 0x90, 0x78, 0xaa, 0x86, 0x2a, 0xab, 0xe1, 0x85, 0xe2, - 0x1a, 0xb4, 0x42, 0xcb, 0x27, 0x0f, 0x0f, 0xe6, 0xa7, 0x33, 0x40, 0x9c, 0x65, 0x6d, 0xbf, 0x0b, - 0x53, 0x4b, 0x49, 0xe2, 0xb4, 0x76, 0x88, 0xcb, 0xbf, 0x2f, 0x7a, 0x09, 0x86, 0x02, 0x67, 0x97, - 0x88, 0xaf, 0x7f, 0x4e, 0x0c, 0xfb, 0xd0, 0x0d, 0x67, 0x97, 0x1c, 0x1d, 0xcc, 0xcf, 0xdc, 0x0a, - 0xbc, 0x77, 0x3a, 0x42, 0x66, 0x28, 0x0c, 0x33, 0x6a, 0x74, 0x09, 0xc0, 0x25, 0x7b, 0x5e, 0x8b, - 0x34, 0x9c, 0x64, 0x47, 0x48, 0x03, 0x12, 0x65, 0xa1, 0xae, 0x30, 0x58, 0xa3, 0xb2, 0xbf, 0x6e, - 0x41, 0x6d, 0x69, 0x2f, 0xf4, 0xdc, 0x46, 0xe8, 0xc6, 0xa8, 0x03, 0xd3, 0xed, 0x88, 0x6c, 0x91, - 0x48, 0x81, 0x66, 0xad, 0x73, 0xd5, 0xf3, 0xe3, 0x97, 0x2e, 0x15, 0xf4, 0xdb, 0x2c, 0xb4, 0x1a, - 0x24, 0xd1, 0xfe, 0xf2, 0x63, 0xa2, 0xea, 0xe9, 0x0c, 0x16, 0x67, 0xeb, 0xb0, 0xff, 0x56, 0x05, - 0x4e, 0x2f, 0xbd, 0xdb, 0x89, 0x48, 0xdd, 0x8b, 0xef, 0x66, 0xa7, 0x82, 0xeb, 0xc5, 0x77, 0x6f, - 0xa4, 0x83, 0xa1, 0x64, 0xb0, 0x2e, 0xe0, 0x58, 0x51, 0xa0, 0x17, 0x60, 0x94, 0xfe, 0xbe, 0x85, - 0xd7, 0x45, 0xef, 0x4f, 0x0a, 0xe2, 0xf1, 0xba, 0x93, 0x38, 0x75, 0x8e, 0xc2, 0x92, 0x06, 0x5d, - 0x87, 0xf1, 0x96, 0xd3, 0xda, 0xf1, 0x82, 0xed, 0xeb, 0xa1, 0x4b, 0xd8, 0x17, 0xae, 0x2d, 0x3f, - 0x4f, 0xc9, 0x57, 0x52, 0xf0, 0xd1, 0xc1, 0xfc, 0x2c, 0x6f, 0x9b, 0x60, 0xa1, 0xe1, 0xb0, 0x5e, - 0x1e, 0xd9, 0x6a, 0x22, 0x0e, 0x31, 0x4e, 0x90, 0x33, 0x09, 0xcf, 0x6b, 0x73, 0x6a, 0x98, 0xcd, - 0xa9, 0x89, 0x1e, 0xf3, 0xe9, 0x5f, 0x58, 0x62, 0x4c, 0xd6, 0x3c, 0xdf, 0x54, 0x0f, 0x97, 0x00, - 0x62, 0xd2, 0x8a, 0x48, 0xa2, 0x8d, 0x8a, 0xfa, 0xcc, 0x4d, 0x85, 0xc1, 0x1a, 0x15, 0x9d, 0xfc, - 0xf1, 0x8e, 0x13, 0x31, 0x69, 0x11, 0x63, 0xa3, 0x26, 0x7f, 0x53, 0x22, 0x70, 0x4a, 0x63, 0x4c, - 0xfe, 0x6a, 0xe1, 0xe4, 0xff, 0xb7, 0x16, 0x8c, 0x2e, 0x7b, 0x81, 0xeb, 0x05, 0xdb, 0xe8, 0x2d, - 0x18, 0xa3, 0x5a, 0xd9, 0x75, 0x12, 0x47, 0xcc, 0xfb, 0xf3, 0xc7, 0x0b, 0xcf, 0xcd, 0xcd, 0xaf, - 0x92, 0x56, 0x72, 0x9d, 0x24, 0x4e, 0xda, 0x8d, 0x14, 0x86, 0x15, 0x37, 0x74, 0x0b, 0x46, 0x12, - 0x27, 0xda, 0x26, 0x89, 0x98, 0xee, 0x2f, 0x94, 0xe1, 0x8b, 0xa9, 0xa8, 0x91, 0xa0, 0x45, 0x52, - 0xc5, 0xb8, 0xc1, 0x98, 0x60, 0xc1, 0xcc, 0x6e, 0xc1, 0xc4, 0x8a, 0xd3, 0x76, 0x36, 0x3d, 0xdf, - 0x4b, 0x3c, 0x12, 0xa3, 0x8f, 0x43, 0xd5, 0x71, 0x5d, 0x26, 0xf8, 0xb5, 0xe5, 0xd3, 0x87, 0x07, - 0xf3, 0xd5, 0x25, 0xd7, 0x3d, 0x3a, 0x98, 0x07, 0x45, 0xb5, 0x8f, 0x29, 0x05, 0x7a, 0x0e, 0x86, - 0xdc, 0x28, 0x6c, 0xcf, 0x56, 0x18, 0xe5, 0x19, 0x3a, 0x43, 0xeb, 0x51, 0xd8, 0xce, 0x90, 0x32, - 0x1a, 0xfb, 0xf7, 0x2a, 0x80, 0x56, 0x48, 0x7b, 0x67, 0xad, 0x69, 0x7c, 0xcb, 0xf3, 0x30, 0xb6, - 0x1b, 0x06, 0x5e, 0x12, 0x46, 0xb1, 0xa8, 0x90, 0xc9, 0xc3, 0x75, 0x01, 0xc3, 0x0a, 0x8b, 0xce, - 0xc1, 0x50, 0x3b, 0x9d, 0xd6, 0x13, 0x52, 0x25, 0xb0, 0x09, 0xcd, 0x30, 0x94, 0xa2, 0x13, 0x93, - 0x48, 0xc8, 0xb1, 0xa2, 0xb8, 0x15, 0x93, 0x08, 0x33, 0x4c, 0x2a, 0x39, 0x54, 0xa6, 0x84, 0x94, - 0x66, 0x24, 0x87, 0x62, 0xb0, 0x46, 0x85, 0xbe, 0x0c, 0x35, 0xfe, 0x0f, 0x93, 0x2d, 0x26, 0xb2, - 0x85, 0xca, 0xe0, 0x5a, 0xd8, 0x72, 0xfc, 0xec, 0xe0, 0x4f, 0x32, 0x49, 0x93, 0x8c, 0x70, 0xca, - 0xd3, 0x90, 0xb4, 0x91, 0x42, 0x49, 0xfb, 0xbb, 0x16, 0xa0, 0x15, 0x2f, 0x70, 0x49, 0xf4, 0x08, - 0x96, 0xcc, 0xfe, 0x26, 0xc1, 0x9f, 0xd0, 0xa6, 0x85, 0xbb, 0xed, 0x30, 0x20, 0x41, 0xb2, 0x12, - 0x06, 0x2e, 0x5f, 0x46, 0x3f, 0x0d, 0x43, 0x09, 0xad, 0x8a, 0x37, 0xeb, 0x19, 0xf9, 0x59, 0x68, - 0x05, 0x47, 0x07, 0xf3, 0x67, 0xba, 0x4b, 0xb0, 0x26, 0xb0, 0x32, 0xe8, 0x53, 0x30, 0x12, 0x27, - 0x4e, 0xd2, 0x89, 0x45, 0x43, 0x3f, 0x2a, 0x1b, 0xda, 0x64, 0xd0, 0xa3, 0x83, 0xf9, 0x69, 0x55, - 0x8c, 0x83, 0xb0, 0x28, 0x80, 0x9e, 0x85, 0xd1, 0x5d, 0x12, 0xc7, 0xce, 0xb6, 0x54, 0x6c, 0xd3, - 0xa2, 0xec, 0xe8, 0x75, 0x0e, 0xc6, 0x12, 0x8f, 0x9e, 0x82, 0x61, 0x12, 0x45, 0x61, 0x24, 0x24, - 0x62, 0x52, 0x10, 0x0e, 0xaf, 0x52, 0x20, 0xe6, 0x38, 0xfb, 0xa7, 0x16, 0x4c, 0xab, 0xb6, 0xf2, - 0xba, 0x06, 0x38, 0xd5, 0x5d, 0x80, 0x96, 0xec, 0x58, 0xcc, 0x26, 0xd8, 0xf8, 0xa5, 0x4f, 0x1c, - 0xcf, 0xbb, 0x7b, 0x20, 0xd3, 0x3a, 0x14, 0x28, 0xc6, 0x1a, 0x5f, 0xfb, 0xf7, 0x2c, 0x38, 0x99, - 0xe9, 0xd3, 0x35, 0x2f, 0x4e, 0xd0, 0x17, 0xba, 0xfa, 0x75, 0xa1, 0x77, 0xdd, 0xf1, 0x02, 0xa5, - 0x65, 0x82, 0xef, 0xc5, 0xbc, 0x6f, 0x4a, 0x4a, 0x24, 0x44, 0xeb, 0x19, 0x86, 0x61, 0x2f, 0x21, - 0xbb, 0xb2, 0x53, 0x2f, 0x94, 0xec, 0x14, 0x6f, 0x5d, 0xfa, 0x6d, 0xd6, 0x29, 0x0f, 0xcc, 0x59, - 0xd9, 0xff, 0xcb, 0x82, 0xda, 0x4a, 0x18, 0x6c, 0x79, 0xdb, 0xd7, 0x9d, 0xf6, 0x00, 0xbf, 0x4a, - 0x13, 0x86, 0x18, 0x57, 0xde, 0xf4, 0x8b, 0x45, 0x4d, 0x17, 0x0d, 0x5a, 0xa0, 0x2b, 0x27, 0x37, - 0x09, 0x94, 0x52, 0xa2, 0x20, 0xcc, 0x98, 0xcd, 0xbd, 0x02, 0x35, 0x45, 0x80, 0x66, 0xa0, 0x7a, - 0x97, 0x70, 0x7b, 0xb1, 0x86, 0xe9, 0x4f, 0x74, 0x0a, 0x86, 0xf7, 0x1c, 0xbf, 0x23, 0xa6, 0x2a, - 0xe6, 0x7f, 0x3e, 0x5d, 0x79, 0xd5, 0xb2, 0x7f, 0x64, 0xc1, 0x29, 0x55, 0xc9, 0x55, 0xb2, 0xdf, - 0x24, 0x3e, 0x69, 0x25, 0x61, 0x84, 0xde, 0xb3, 0xe0, 0x94, 0x9f, 0xa3, 0x84, 0xc4, 0x68, 0x3c, - 0x88, 0xfa, 0x7a, 0x42, 0x34, 0xfc, 0x54, 0x1e, 0x16, 0xe7, 0xd6, 0x86, 0x9e, 0xe4, 0x7d, 0xe1, - 0x33, 0x77, 0x5c, 0x30, 0xa8, 0x5e, 0x25, 0xfb, 0xac, 0x63, 0xf6, 0x0f, 0x2d, 0x98, 0x54, 0xcd, - 0x1f, 0xb8, 0xd8, 0x5d, 0x33, 0xc5, 0xee, 0xe3, 0x25, 0xbf, 0x5d, 0x0f, 0x81, 0xfb, 0x47, 0x15, - 0x38, 0xad, 0x68, 0x0c, 0x45, 0xfc, 0x21, 0x19, 0xfb, 0xfe, 0xba, 0x7b, 0x95, 0xec, 0x6f, 0x84, - 0x74, 0x25, 0xcd, 0xef, 0x2e, 0xba, 0x08, 0xe3, 0x2e, 0xd9, 0x72, 0x3a, 0x7e, 0xa2, 0x0c, 0xc5, - 0x61, 0xbe, 0x83, 0xa8, 0xa7, 0x60, 0xac, 0xd3, 0xd8, 0x7f, 0x50, 0x63, 0x53, 0x32, 0x71, 0xbc, - 0x80, 0x44, 0x74, 0x69, 0xd6, 0xec, 0xf9, 0x09, 0xdd, 0x9e, 0x17, 0xb6, 0xfb, 0x53, 0x30, 0xec, - 0xed, 0x52, 0x65, 0x5d, 0x31, 0x75, 0xf0, 0x3a, 0x05, 0x62, 0x8e, 0x43, 0x4f, 0xc3, 0x68, 0x2b, - 0xdc, 0xdd, 0x75, 0x02, 0x77, 0xb6, 0xca, 0x8c, 0x85, 0x71, 0xaa, 0xcf, 0x57, 0x38, 0x08, 0x4b, - 0x1c, 0x7a, 0x02, 0x86, 0x9c, 0x68, 0x3b, 0x9e, 0x1d, 0x62, 0x34, 0x63, 0xb4, 0xa6, 0xa5, 0x68, - 0x3b, 0xc6, 0x0c, 0x4a, 0x8d, 0x80, 0x7b, 0x61, 0x74, 0xd7, 0x0b, 0xb6, 0xeb, 0x5e, 0xc4, 0x56, - 0x74, 0xcd, 0x08, 0xb8, 0xa3, 0x30, 0x58, 0xa3, 0x42, 0x0d, 0x18, 0x6e, 0x87, 0x51, 0x12, 0xcf, - 0x8e, 0xb0, 0xe1, 0x7c, 0xbe, 0x50, 0x7a, 0x78, 0xbf, 0x1b, 0x61, 0x94, 0xa4, 0x5d, 0xa1, 0xff, - 0x62, 0xcc, 0x19, 0xa1, 0x15, 0xa8, 0x92, 0x60, 0x6f, 0x76, 0x94, 0xf1, 0xfb, 0xd8, 0xf1, 0xfc, - 0x56, 0x83, 0xbd, 0xdb, 0x4e, 0x94, 0x4e, 0xa1, 0xd5, 0x60, 0x0f, 0xd3, 0xd2, 0xa8, 0x05, 0x35, - 0xe9, 0x35, 0x88, 0x67, 0xc7, 0xca, 0x08, 0x18, 0x16, 0xe4, 0x98, 0xbc, 0xd3, 0xf1, 0x22, 0xb2, - 0x4b, 0x82, 0x24, 0x4e, 0x2d, 0x61, 0x89, 0x8d, 0x71, 0xca, 0x17, 0xb5, 0x60, 0x82, 0x1b, 0x0e, - 0xd7, 0xc3, 0x4e, 0x90, 0xc4, 0xb3, 0x35, 0xd6, 0xe4, 0x82, 0xad, 0xe6, 0xed, 0xb4, 0xc4, 0xf2, - 0x29, 0xc1, 0x7e, 0x42, 0x03, 0xc6, 0xd8, 0x60, 0x8a, 0xde, 0x86, 0x49, 0xdf, 0xdb, 0x23, 0x01, - 0x89, 0xe3, 0x46, 0x14, 0x6e, 0x92, 0x59, 0x60, 0xbd, 0x79, 0xaa, 0x68, 0xdb, 0x15, 0x6e, 0x92, - 0xe5, 0x13, 0x87, 0x07, 0xf3, 0x93, 0xd7, 0xf4, 0xd2, 0xd8, 0x64, 0x86, 0xbe, 0x0c, 0x53, 0xd4, - 0x4a, 0xf1, 0x52, 0xf6, 0xe3, 0xe5, 0xd9, 0xa3, 0xc3, 0x83, 0xf9, 0x29, 0x6c, 0x14, 0xc7, 0x19, - 0x76, 0x68, 0x03, 0x6a, 0xbe, 0xb7, 0x45, 0x5a, 0xfb, 0x2d, 0x9f, 0xcc, 0x4e, 0x30, 0xde, 0x05, - 0x53, 0xee, 0x9a, 0x24, 0xe7, 0x96, 0xa1, 0xfa, 0x8b, 0x53, 0x46, 0xe8, 0x36, 0x9c, 0x49, 0x48, - 0xb4, 0xeb, 0x05, 0x0e, 0x5d, 0xae, 0x85, 0xd9, 0xc2, 0xf6, 0xb6, 0x93, 0x4c, 0x6a, 0xcf, 0x8a, - 0x81, 0x3d, 0xb3, 0x91, 0x4b, 0x85, 0x7b, 0x94, 0x46, 0x37, 0x61, 0x9a, 0xcd, 0xa7, 0x46, 0xc7, - 0xf7, 0x1b, 0xa1, 0xef, 0xb5, 0xf6, 0x67, 0xa7, 0x18, 0xc3, 0xa7, 0xe5, 0x8e, 0x75, 0xdd, 0x44, - 0x53, 0x8b, 0x3e, 0xfd, 0x87, 0xb3, 0xa5, 0x91, 0x0f, 0xd3, 0x31, 0x69, 0x75, 0x22, 0x2f, 0xd9, - 0xa7, 0xb2, 0x4f, 0xee, 0x27, 0xb3, 0xd3, 0x65, 0x76, 0x28, 0x4d, 0xb3, 0x10, 0x77, 0x17, 0x64, - 0x80, 0x38, 0xcb, 0x9a, 0xaa, 0x8a, 0x38, 0x71, 0xbd, 0x60, 0x76, 0x86, 0x99, 0xa4, 0x6a, 0x7e, - 0x35, 0x29, 0x10, 0x73, 0x1c, 0xdb, 0xf0, 0xd1, 0x1f, 0x37, 0xa9, 0xee, 0x3d, 0xc1, 0x08, 0xd3, - 0x0d, 0x9f, 0x44, 0xe0, 0x94, 0x86, 0xae, 0x56, 0x49, 0xb2, 0x3f, 0x8b, 0x18, 0xa9, 0x9a, 0x6a, - 0x1b, 0x1b, 0x9f, 0xc7, 0x14, 0x6e, 0x6f, 0xc2, 0x94, 0x9a, 0xd6, 0x6c, 0x74, 0xd0, 0x3c, 0x0c, - 0x53, 0xcd, 0x25, 0xf7, 0x2d, 0x35, 0xda, 0x04, 0xaa, 0xd0, 0x62, 0xcc, 0xe1, 0xac, 0x09, 0xde, - 0xbb, 0x64, 0x79, 0x3f, 0x21, 0xdc, 0x7e, 0xad, 0x6a, 0x4d, 0x90, 0x08, 0x9c, 0xd2, 0xd8, 0xff, - 0x87, 0xaf, 0x88, 0xa9, 0xee, 0x28, 0xa1, 0x37, 0x2f, 0xc0, 0xd8, 0x4e, 0x18, 0x27, 0x94, 0x9a, - 0xd5, 0x31, 0x9c, 0xae, 0x82, 0x57, 0x04, 0x1c, 0x2b, 0x0a, 0xf4, 0x1a, 0x4c, 0xb6, 0xf4, 0x0a, - 0x84, 0x2a, 0x3f, 0x2d, 0x8a, 0x98, 0xb5, 0x63, 0x93, 0x16, 0xbd, 0x0a, 0x63, 0xcc, 0x89, 0xd7, - 0x0a, 0x7d, 0x61, 0x29, 0xcb, 0x95, 0x69, 0xac, 0x21, 0xe0, 0x47, 0xda, 0x6f, 0xac, 0xa8, 0xe9, - 0x7e, 0x83, 0x36, 0x61, 0xbd, 0x21, 0xd4, 0xad, 0xda, 0x6f, 0x5c, 0x61, 0x50, 0x2c, 0xb0, 0xf6, - 0xbf, 0xac, 0x68, 0xa3, 0x4c, 0x2d, 0x3e, 0x82, 0xbe, 0x00, 0xa3, 0xf7, 0x1c, 0x2f, 0xf1, 0x82, - 0x6d, 0xb1, 0x82, 0xbe, 0x58, 0x52, 0xf7, 0xb2, 0xe2, 0x77, 0x78, 0x51, 0xbe, 0x4e, 0x88, 0x3f, - 0x58, 0x32, 0xa4, 0xbc, 0xa3, 0x4e, 0x10, 0x50, 0xde, 0x95, 0xfe, 0x79, 0x63, 0x5e, 0x94, 0xf3, - 0x16, 0x7f, 0xb0, 0x64, 0x88, 0xb6, 0x00, 0xe4, 0xec, 0x23, 0xae, 0x70, 0x9e, 0x7d, 0xb2, 0x1f, - 0xf6, 0x1b, 0xaa, 0xf4, 0xf2, 0x14, 0x5d, 0x99, 0xd2, 0xff, 0x58, 0xe3, 0x6c, 0x47, 0xcc, 0x10, - 0xe9, 0x6e, 0x16, 0xfa, 0x3c, 0x9d, 0x00, 0x4e, 0x94, 0x10, 0x77, 0x29, 0x29, 0x36, 0x83, 0x53, - 0x6b, 0x6a, 0xc3, 0xdb, 0x25, 0xfa, 0x54, 0x11, 0x2c, 0x70, 0xca, 0xcd, 0xfe, 0x5e, 0x15, 0x66, - 0x7b, 0x35, 0x96, 0x0a, 0x24, 0xb9, 0xef, 0x25, 0x2b, 0xd4, 0x50, 0xb0, 0x4c, 0x81, 0x5c, 0x15, - 0x70, 0xac, 0x28, 0xa8, 0x64, 0xc4, 0xde, 0x76, 0xe0, 0xf8, 0x42, 0x78, 0x95, 0x64, 0x34, 0x19, - 0x14, 0x0b, 0x2c, 0xa5, 0x8b, 0x88, 0x13, 0x0b, 0xcf, 0xad, 0x26, 0x41, 0x98, 0x41, 0xb1, 0xc0, - 0xea, 0xbb, 0xbe, 0xa1, 0x82, 0x5d, 0x9f, 0x31, 0x40, 0xc3, 0x0f, 0x73, 0x80, 0xd0, 0xdb, 0x00, - 0x5b, 0x5e, 0xe0, 0xc5, 0x3b, 0x8c, 0xf7, 0x48, 0x9f, 0xbc, 0x95, 0x31, 0xb2, 0xa6, 0x78, 0x60, - 0x8d, 0x1f, 0x7a, 0x19, 0xc6, 0xd5, 0xc4, 0x5c, 0xaf, 0xcf, 0x8e, 0x9a, 0x9e, 0xbe, 0x54, 0x4b, - 0xd5, 0xb1, 0x4e, 0x67, 0x7f, 0x35, 0x2b, 0x29, 0x62, 0x3e, 0x68, 0x63, 0x6b, 0x95, 0x1d, 0xdb, - 0xca, 0xf1, 0x63, 0x6b, 0xff, 0x97, 0x2a, 0xdd, 0x2c, 0x6b, 0x95, 0x75, 0xe2, 0x12, 0xba, 0xec, - 0x4d, 0xaa, 0xd8, 0x9d, 0x84, 0x88, 0xd9, 0x78, 0xa1, 0x9f, 0xe9, 0xa2, 0x2f, 0x03, 0x74, 0x16, - 0x70, 0x4e, 0x68, 0x07, 0x6a, 0xbe, 0x13, 0xb3, 0xdd, 0x23, 0x11, 0xb3, 0xb0, 0x3f, 0xb6, 0xa9, - 0xf1, 0xed, 0xc4, 0x89, 0xb6, 0xce, 0xf2, 0x5a, 0x52, 0xe6, 0x74, 0x55, 0xa2, 0x46, 0x81, 0x3c, - 0x2a, 0x50, 0xcd, 0xa1, 0x96, 0xc3, 0x3e, 0xe6, 0x38, 0xf4, 0x2a, 0x4c, 0x44, 0x84, 0xc9, 0xc9, - 0x0a, 0xb5, 0x7b, 0x98, 0xd8, 0x0d, 0xa7, 0x06, 0x12, 0xd6, 0x70, 0xd8, 0xa0, 0x4c, 0xed, 0xe3, - 0x91, 0x63, 0xec, 0xe3, 0x67, 0x61, 0x94, 0xfd, 0x50, 0x52, 0xa1, 0xbe, 0xd0, 0x3a, 0x07, 0x63, - 0x89, 0xcf, 0x0a, 0xd1, 0x58, 0x49, 0x21, 0x7a, 0x0e, 0xa6, 0xea, 0x0e, 0xd9, 0x0d, 0x83, 0xd5, - 0xc0, 0x6d, 0x87, 0x5e, 0x90, 0xa0, 0x59, 0x18, 0x62, 0x2b, 0x09, 0x9f, 0xeb, 0x43, 0x94, 0x03, - 0x1e, 0xa2, 0x36, 0xae, 0xfd, 0x7f, 0x2d, 0x98, 0xac, 0x13, 0x9f, 0x24, 0xe4, 0x66, 0x9b, 0xf9, - 0x1b, 0xd0, 0x1a, 0xa0, 0xed, 0xc8, 0x69, 0x91, 0x06, 0x89, 0xbc, 0xd0, 0x6d, 0x92, 0x56, 0x18, - 0x30, 0x0f, 0x3b, 0x5d, 0x1a, 0xcf, 0x1c, 0x1e, 0xcc, 0xa3, 0xcb, 0x5d, 0x58, 0x9c, 0x53, 0x02, - 0xb9, 0x30, 0xd9, 0x8e, 0x88, 0xe1, 0x20, 0xb1, 0x8a, 0xcd, 0xf2, 0x86, 0x5e, 0x84, 0x5b, 0x8d, - 0x06, 0x08, 0x9b, 0x4c, 0xd1, 0x67, 0x61, 0x26, 0x8c, 0xda, 0x3b, 0x4e, 0x50, 0x27, 0x6d, 0x12, - 0xb8, 0xd4, 0x54, 0x16, 0x5e, 0xb0, 0x53, 0x87, 0x07, 0xf3, 0x33, 0x37, 0x33, 0x38, 0xdc, 0x45, - 0x6d, 0xff, 0x7a, 0x05, 0x4e, 0xd7, 0xc3, 0x7b, 0xc1, 0x3d, 0x27, 0x72, 0x97, 0x1a, 0xeb, 0xdc, - 0xfe, 0x65, 0x5e, 0x45, 0xe9, 0xcd, 0xb4, 0x7a, 0x7a, 0x33, 0xbf, 0x08, 0x63, 0x5b, 0x1e, 0xf1, - 0x5d, 0x4c, 0xb6, 0x44, 0xf7, 0x2e, 0x96, 0xf1, 0x62, 0xac, 0xd1, 0x32, 0xd2, 0x13, 0xc0, 0x9d, - 0xa9, 0x6b, 0x82, 0x0d, 0x56, 0x0c, 0x51, 0x07, 0x66, 0xa4, 0x81, 0x2f, 0xb1, 0x62, 0x76, 0xbc, - 0x58, 0x6e, 0xff, 0x60, 0x56, 0xc3, 0xc6, 0x03, 0x67, 0x18, 0xe2, 0xae, 0x2a, 0xe8, 0xc6, 0x6c, - 0x97, 0xae, 0x0b, 0x43, 0x4c, 0x56, 0xd8, 0xc6, 0x8c, 0xed, 0x1c, 0x19, 0xd4, 0xfe, 0x67, 0x16, - 0x3c, 0xd6, 0x35, 0x5a, 0x62, 0x5b, 0xfd, 0x96, 0xdc, 0xcf, 0xf2, 0xe3, 0x98, 0x82, 0x56, 0xe6, - 0x8e, 0x79, 0xb9, 0xbd, 0x6d, 0xa5, 0xc4, 0xde, 0xf6, 0x26, 0x9c, 0x5a, 0xdd, 0x6d, 0x27, 0xfb, - 0x75, 0xcf, 0x74, 0xc2, 0xbe, 0x02, 0x23, 0xbb, 0xc4, 0xf5, 0x3a, 0xbb, 0xe2, 0xb3, 0xce, 0x4b, - 0x45, 0x7a, 0x9d, 0x41, 0x8f, 0x0e, 0xe6, 0x27, 0x9b, 0x49, 0x18, 0x39, 0xdb, 0x84, 0x03, 0xb0, - 0x20, 0xb7, 0xdf, 0xb7, 0x60, 0x5a, 0x4e, 0xa8, 0x25, 0xd7, 0x8d, 0x48, 0x1c, 0xa3, 0x39, 0xa8, - 0x78, 0x6d, 0xc1, 0x08, 0x04, 0xa3, 0xca, 0x7a, 0x03, 0x57, 0xbc, 0x36, 0xfa, 0x02, 0xd4, 0xb8, - 0xef, 0x3e, 0x15, 0x8e, 0x3e, 0xcf, 0x02, 0xd8, 0xa6, 0x63, 0x43, 0xf2, 0xc0, 0x29, 0x3b, 0x69, - 0x50, 0x32, 0x55, 0x5d, 0x35, 0x3d, 0xc9, 0x57, 0x04, 0x1c, 0x2b, 0x0a, 0x74, 0x1e, 0xc6, 0x82, - 0xd0, 0xe5, 0xc7, 0x2a, 0x7c, 0xc1, 0x65, 0x22, 0x77, 0x43, 0xc0, 0xb0, 0xc2, 0xda, 0xdf, 0xb0, - 0x60, 0x42, 0xf6, 0xb1, 0xa4, 0x6d, 0x4b, 0x27, 0x49, 0x6a, 0xd7, 0xa6, 0x93, 0x84, 0xda, 0xa6, - 0x0c, 0x63, 0x98, 0xa4, 0xd5, 0x7e, 0x4c, 0x52, 0xfb, 0x87, 0x15, 0x98, 0x92, 0xcd, 0x69, 0x76, - 0x36, 0x63, 0x92, 0xa0, 0x2f, 0x41, 0xcd, 0xe1, 0x83, 0x4f, 0xa4, 0x9c, 0xbd, 0x50, 0xb4, 0x31, - 0x37, 0xbe, 0x59, 0x6a, 0x15, 0x2c, 0x49, 0x3e, 0x38, 0x65, 0x89, 0xf6, 0xe0, 0x44, 0x10, 0x26, - 0x6c, 0x3d, 0x50, 0xf8, 0x72, 0x5e, 0xd0, 0x6c, 0x3d, 0x8f, 0x8b, 0x7a, 0x4e, 0xdc, 0xc8, 0xf2, - 0xc3, 0xdd, 0x55, 0xa0, 0x9b, 0xd2, 0x79, 0x51, 0x65, 0x75, 0x3d, 0x57, 0xae, 0xae, 0xde, 0xbe, - 0x0b, 0xfb, 0x77, 0x2c, 0xa8, 0x49, 0xb2, 0x41, 0x3a, 0xc1, 0xef, 0xc0, 0x68, 0xcc, 0x3e, 0x8d, - 0x1c, 0xa6, 0x0b, 0xe5, 0x9a, 0xce, 0xbf, 0x67, 0xba, 0xf8, 0xf1, 0xff, 0x31, 0x96, 0xdc, 0x98, - 0xeb, 0x51, 0x75, 0xe0, 0x43, 0xe6, 0x7a, 0x54, 0xed, 0xea, 0xe1, 0x7a, 0xfc, 0x35, 0x0b, 0x46, - 0xb8, 0x43, 0xa8, 0x9c, 0x57, 0x4d, 0x73, 0x1e, 0xa7, 0x1c, 0x6f, 0x53, 0xa0, 0xf0, 0x25, 0xa3, - 0x3b, 0x50, 0x63, 0x3f, 0xd6, 0xa2, 0x70, 0x57, 0xac, 0x02, 0xcf, 0x95, 0x71, 0x48, 0x71, 0xad, - 0xc7, 0x55, 0xc9, 0x6d, 0xc9, 0x00, 0xa7, 0xbc, 0xec, 0x1f, 0x55, 0xe9, 0x94, 0x4f, 0x49, 0x8d, - 0x35, 0xcd, 0x7a, 0x14, 0x6b, 0x5a, 0x65, 0xf0, 0x6b, 0xda, 0x3b, 0x30, 0xdd, 0xd2, 0x9c, 0xf0, - 0xe9, 0x4a, 0x7a, 0xa9, 0xa4, 0x8b, 0x59, 0xf3, 0xdc, 0x73, 0x07, 0xc8, 0x8a, 0xc9, 0x0e, 0x67, - 0xf9, 0x23, 0x02, 0x13, 0xfc, 0xf8, 0x50, 0xd4, 0x37, 0xc4, 0xea, 0x5b, 0x2c, 0xf4, 0xb5, 0xf0, - 0x12, 0xaa, 0x32, 0x16, 0x62, 0xd2, 0xd4, 0x18, 0x61, 0x83, 0xad, 0xfd, 0xab, 0xc3, 0x30, 0xbc, - 0xba, 0x47, 0x82, 0x64, 0x80, 0x53, 0x7c, 0x17, 0xa6, 0xbc, 0x60, 0x2f, 0xf4, 0xf7, 0x88, 0xcb, - 0xf1, 0x0f, 0xb6, 0x9c, 0x9d, 0x11, 0x95, 0x4c, 0xad, 0x1b, 0xcc, 0x70, 0x86, 0xf9, 0x20, 0xb6, - 0x91, 0x6f, 0xc2, 0x08, 0x97, 0x08, 0xb1, 0x87, 0x2c, 0x70, 0x8c, 0xb2, 0x01, 0x15, 0x33, 0x27, - 0xdd, 0xec, 0x72, 0x9f, 0xac, 0x60, 0x84, 0x76, 0x60, 0x6a, 0xcb, 0x8b, 0xe2, 0x84, 0xee, 0x06, - 0xe3, 0xc4, 0xd9, 0x6d, 0xf7, 0xbd, 0x85, 0x54, 0xe3, 0xb1, 0x66, 0xf0, 0xc1, 0x19, 0xbe, 0x88, - 0xc0, 0x24, 0xdd, 0xc1, 0xa4, 0x15, 0x8d, 0xf6, 0x59, 0x91, 0xf2, 0x1c, 0x5d, 0xd3, 0xd9, 0x60, - 0x93, 0x2b, 0x55, 0x43, 0x2d, 0xb6, 0xdf, 0x19, 0x63, 0x2b, 0xb9, 0x52, 0x43, 0x7c, 0xa3, 0xc3, - 0x71, 0x54, 0x9b, 0xb1, 0x73, 0xe2, 0x9a, 0xa9, 0xcd, 0xd2, 0xd3, 0x60, 0xfb, 0xbb, 0x74, 0xdd, - 0xa1, 0xe3, 0x37, 0x70, 0x95, 0x7d, 0xc5, 0x54, 0xd9, 0x4f, 0x95, 0xf8, 0xa6, 0x3d, 0xd4, 0xf5, - 0x57, 0x60, 0x5c, 0xfb, 0xe4, 0x68, 0x11, 0x6a, 0x2d, 0x79, 0xa4, 0x29, 0xf4, 0xb6, 0x32, 0x1a, - 0xd4, 0x59, 0x27, 0x4e, 0x69, 0xe8, 0xa8, 0x50, 0x63, 0x2b, 0x1b, 0xf6, 0x40, 0x4d, 0x31, 0xcc, - 0x30, 0xf6, 0x8b, 0x00, 0xab, 0xf7, 0x49, 0x6b, 0xa9, 0xc5, 0x4e, 0xdb, 0xb5, 0x23, 0x12, 0xab, - 0xf7, 0x11, 0x09, 0x1d, 0xca, 0xa9, 0xb5, 0x15, 0xc3, 0x7a, 0x5d, 0x00, 0xe0, 0x56, 0xe0, 0x9d, - 0x3b, 0x37, 0xa4, 0x53, 0x93, 0x7b, 0x9e, 0x14, 0x14, 0x6b, 0x14, 0xe8, 0x71, 0xa8, 0xfa, 0x9d, - 0x40, 0x18, 0x67, 0xa3, 0x87, 0x07, 0xf3, 0xd5, 0x6b, 0x9d, 0x00, 0x53, 0x98, 0x16, 0x5f, 0x50, - 0x2d, 0x1d, 0x5f, 0x50, 0x1c, 0x61, 0xf7, 0xad, 0x2a, 0xcc, 0xac, 0xf9, 0xe4, 0xbe, 0xd1, 0xea, - 0x67, 0x60, 0xc4, 0x8d, 0xbc, 0x3d, 0x12, 0x65, 0x9d, 0x17, 0x75, 0x06, 0xc5, 0x02, 0x5b, 0x3a, - 0xe4, 0xc1, 0x08, 0xf7, 0xa8, 0x0e, 0x38, 0xdc, 0xa3, 0xb0, 0xcf, 0x68, 0x0b, 0x46, 0x43, 0xbe, - 0x79, 0x9e, 0x1d, 0x66, 0xa2, 0xf8, 0xda, 0xf1, 0x8d, 0xc9, 0x8e, 0xcf, 0x82, 0xd8, 0x7a, 0xf3, - 0xe3, 0x67, 0xa5, 0xc5, 0x04, 0x14, 0x4b, 0xe6, 0x73, 0x9f, 0x86, 0x09, 0x9d, 0xb2, 0xaf, 0x73, - 0xe8, 0x5f, 0xb4, 0xe0, 0xe4, 0x9a, 0x1f, 0xb6, 0xee, 0x66, 0x62, 0x52, 0x5e, 0x86, 0x71, 0x3a, - 0x99, 0x62, 0x23, 0x50, 0xcb, 0x88, 0x48, 0x13, 0x28, 0xac, 0xd3, 0x69, 0xc5, 0x6e, 0xdd, 0x5a, - 0xaf, 0xe7, 0x05, 0xb2, 0x09, 0x14, 0xd6, 0xe9, 0xec, 0xff, 0x6c, 0xc1, 0x93, 0x97, 0x57, 0x56, - 0x1b, 0x24, 0x8a, 0xbd, 0x38, 0x21, 0x41, 0xd2, 0x15, 0x4b, 0xf7, 0x0c, 0x8c, 0xb4, 0x5d, 0xad, - 0x29, 0x4a, 0x04, 0x1a, 0x75, 0xd6, 0x0a, 0x81, 0xfd, 0xb0, 0x04, 0x94, 0xfe, 0x9a, 0x05, 0x27, - 0x2f, 0x7b, 0x09, 0x26, 0xed, 0x30, 0x1b, 0xfe, 0x16, 0x91, 0x76, 0x18, 0x7b, 0x49, 0x18, 0xed, - 0x67, 0xc3, 0xdf, 0xb0, 0xc2, 0x60, 0x8d, 0x8a, 0xd7, 0xbc, 0xe7, 0xc5, 0xb4, 0xa5, 0x15, 0x73, - 0x53, 0x87, 0x05, 0x1c, 0x2b, 0x0a, 0xda, 0x31, 0xd7, 0x8b, 0x98, 0x91, 0xb0, 0x2f, 0x66, 0xb0, - 0xea, 0x58, 0x5d, 0x22, 0x70, 0x4a, 0x63, 0xff, 0x7d, 0x0b, 0x4e, 0x5f, 0xf6, 0x3b, 0x71, 0x42, - 0xa2, 0xad, 0xd8, 0x68, 0xec, 0x8b, 0x50, 0x23, 0xd2, 0xa0, 0x15, 0x6d, 0x55, 0x4b, 0x86, 0xb2, - 0x74, 0x79, 0xec, 0x9d, 0xa2, 0x2b, 0x11, 0xea, 0xd5, 0x5f, 0x60, 0xd2, 0x6f, 0x55, 0x60, 0xf2, - 0xca, 0xc6, 0x46, 0xe3, 0x32, 0x49, 0x84, 0x96, 0x2c, 0x76, 0xbf, 0x34, 0xb4, 0xbd, 0xe7, 0xf8, - 0xa5, 0x85, 0x1e, 0xb3, 0xae, 0x93, 0x78, 0xfe, 0x02, 0x0f, 0x75, 0x5e, 0x58, 0x0f, 0x92, 0x9b, - 0x51, 0x33, 0x89, 0xbc, 0x60, 0x3b, 0x77, 0xaf, 0x2a, 0x35, 0x79, 0xb5, 0x97, 0x26, 0x47, 0x2f, - 0xc2, 0x08, 0x8b, 0xb4, 0x96, 0x46, 0xc7, 0xcf, 0x29, 0xfb, 0x80, 0x41, 0x8f, 0x0e, 0xe6, 0x6b, - 0xb7, 0xf0, 0x3a, 0xff, 0x83, 0x05, 0x29, 0xfa, 0x32, 0x8c, 0xef, 0x24, 0x49, 0xfb, 0x0a, 0x71, - 0x5c, 0x12, 0x49, 0x2d, 0x51, 0x60, 0x9e, 0xd1, 0xc1, 0xe0, 0x05, 0xd2, 0x89, 0x95, 0xc2, 0x62, - 0xac, 0x73, 0xb4, 0x9b, 0x00, 0x29, 0xee, 0x21, 0xed, 0x39, 0xec, 0xbf, 0x56, 0x81, 0xd1, 0x2b, - 0x4e, 0xe0, 0xfa, 0x24, 0x42, 0x6b, 0x30, 0x44, 0xee, 0x93, 0x56, 0x39, 0xcb, 0x32, 0x5d, 0xea, - 0xb8, 0xff, 0x88, 0xfe, 0xc7, 0xac, 0x3c, 0xc2, 0x30, 0x4a, 0xdb, 0x7d, 0x59, 0xc5, 0x47, 0x3e, - 0x5f, 0x3c, 0x0a, 0x4a, 0x24, 0xf8, 0x3a, 0x29, 0x40, 0x58, 0x32, 0x62, 0x9e, 0x96, 0x56, 0xbb, - 0x49, 0x95, 0x5b, 0x52, 0x2e, 0x04, 0x7a, 0x63, 0xa5, 0xc1, 0xc9, 0x05, 0x5f, 0xee, 0x69, 0x91, - 0x40, 0x9c, 0xb2, 0xb3, 0x5f, 0x85, 0x53, 0xec, 0x88, 0xce, 0x49, 0x76, 0x8c, 0x39, 0x53, 0x28, - 0x9c, 0xf6, 0x3f, 0xae, 0xc0, 0x89, 0xf5, 0xe6, 0x4a, 0xd3, 0xf4, 0x91, 0xbd, 0x0a, 0x13, 0x7c, - 0x79, 0xa6, 0x42, 0xe7, 0xf8, 0xa2, 0xbc, 0x72, 0x2e, 0x6f, 0x68, 0x38, 0x6c, 0x50, 0xa2, 0x27, - 0xa1, 0xea, 0xbd, 0x13, 0x64, 0x23, 0x75, 0xd6, 0xdf, 0xbc, 0x81, 0x29, 0x9c, 0xa2, 0xe9, 0x4a, - 0xcf, 0x55, 0x9c, 0x42, 0xab, 0xd5, 0xfe, 0x0d, 0x98, 0xf2, 0xe2, 0x56, 0xec, 0xad, 0x07, 0x74, - 0xfe, 0x3b, 0x2d, 0x29, 0xbe, 0xa9, 0x51, 0x4e, 0x9b, 0xaa, 0xb0, 0x38, 0x43, 0xad, 0xe9, 0xdb, - 0xe1, 0xd2, 0xd6, 0x42, 0x71, 0xa0, 0xe4, 0x57, 0xa1, 0xa6, 0xc2, 0x5a, 0x64, 0x28, 0x92, 0x95, - 0x1f, 0x8a, 0x54, 0x42, 0xe1, 0x48, 0xcf, 0x65, 0x35, 0xd7, 0x73, 0xf9, 0x1b, 0x16, 0xa4, 0x27, - 0xf8, 0x08, 0x43, 0xad, 0x1d, 0xb2, 0x63, 0x81, 0x48, 0x9e, 0xbc, 0x3d, 0x5d, 0x20, 0x89, 0x7c, - 0x26, 0x70, 0x59, 0x69, 0xc8, 0xb2, 0x38, 0x65, 0x83, 0xae, 0xc1, 0x68, 0x3b, 0x22, 0xcd, 0x84, - 0x45, 0xdb, 0xf6, 0xc1, 0x91, 0x49, 0x75, 0x83, 0x97, 0xc4, 0x92, 0x85, 0xfd, 0x6f, 0x2c, 0x80, - 0x6b, 0xde, 0xae, 0x97, 0x60, 0x27, 0xd8, 0x26, 0x03, 0xdc, 0xde, 0xdd, 0x80, 0xa1, 0xb8, 0x4d, - 0x5a, 0xe5, 0x0e, 0x74, 0xd2, 0x16, 0x35, 0xdb, 0xa4, 0x95, 0x7e, 0x06, 0xfa, 0x0f, 0x33, 0x3e, - 0xf6, 0x6f, 0x02, 0x4c, 0xa5, 0x64, 0xd4, 0xd0, 0x46, 0x2f, 0x18, 0xe1, 0xa5, 0x8f, 0x67, 0xc2, - 0x4b, 0x6b, 0x8c, 0x5a, 0x8b, 0x28, 0x4d, 0xa0, 0xba, 0xeb, 0xdc, 0x17, 0x76, 0xfd, 0xcb, 0x65, - 0x1b, 0x44, 0x6b, 0x5a, 0xb8, 0xee, 0xdc, 0xe7, 0x66, 0xd4, 0xf3, 0x52, 0x80, 0xae, 0x3b, 0xf7, - 0x8f, 0xf8, 0xb1, 0x0d, 0x9b, 0x81, 0x74, 0x23, 0xf1, 0xf5, 0xff, 0x9a, 0xfe, 0x67, 0x4a, 0x91, - 0x56, 0xc7, 0x6a, 0xf5, 0x02, 0xe1, 0x80, 0xeb, 0xb3, 0x56, 0x2f, 0xc8, 0xd6, 0xea, 0x05, 0x25, - 0x6a, 0xf5, 0x02, 0xf4, 0x9e, 0x05, 0xa3, 0xc2, 0x6f, 0xcd, 0x62, 0xa1, 0xc6, 0x2f, 0x7d, 0xaa, - 0xaf, 0xaa, 0x85, 0x03, 0x9c, 0x57, 0xbf, 0x28, 0x6d, 0x47, 0x01, 0x2d, 0x6c, 0x82, 0xac, 0x1a, - 0x7d, 0xdb, 0x82, 0x29, 0xf1, 0x1b, 0x93, 0x77, 0x3a, 0x24, 0x4e, 0xc4, 0x2a, 0xf5, 0xd9, 0x07, - 0x69, 0x8d, 0x60, 0xc1, 0x1b, 0xf5, 0x49, 0xa9, 0x62, 0x4c, 0x64, 0x61, 0xdb, 0x32, 0xed, 0x41, - 0x3f, 0xb0, 0xe0, 0xd4, 0xae, 0x73, 0x9f, 0xd7, 0xc8, 0x61, 0xd8, 0x49, 0xbc, 0x50, 0xc4, 0x7b, - 0xad, 0xf5, 0x2b, 0x27, 0x5d, 0x8c, 0x78, 0x73, 0x5f, 0x97, 0x87, 0x89, 0x79, 0x24, 0x85, 0x8d, - 0xce, 0x6d, 0xe1, 0x9c, 0x0b, 0x63, 0x52, 0x30, 0x73, 0xac, 0xf6, 0x65, 0x7d, 0x31, 0x3e, 0x7e, - 0x06, 0x4a, 0xcf, 0xd6, 0xc2, 0x9b, 0x1d, 0x27, 0x48, 0xbc, 0x64, 0x5f, 0xb3, 0xf1, 0x59, 0x2d, - 0x42, 0x10, 0x07, 0x58, 0xcb, 0x0e, 0x4c, 0xe8, 0x32, 0x37, 0xc0, 0x9a, 0x42, 0x38, 0x99, 0x23, - 0x4f, 0x03, 0xac, 0xb0, 0x03, 0x8f, 0xf7, 0x94, 0x8b, 0xc1, 0x55, 0x6b, 0xff, 0x96, 0xa5, 0x2b, - 0xcc, 0x81, 0xfb, 0x4d, 0xae, 0x9b, 0x7e, 0x93, 0xf3, 0x65, 0xe7, 0x4d, 0x0f, 0xe7, 0xc9, 0x96, - 0xde, 0x78, 0xba, 0x0c, 0xa0, 0x0d, 0x18, 0xf1, 0x29, 0x44, 0x1e, 0xd0, 0x5c, 0xe8, 0x67, 0x66, - 0xa6, 0x96, 0x05, 0x83, 0xc7, 0x58, 0xf0, 0xb2, 0xbf, 0x6f, 0xc1, 0xd0, 0xc0, 0xc7, 0xa6, 0x61, - 0x8e, 0x4d, 0x2f, 0xe3, 0x54, 0xdc, 0xb9, 0x5c, 0xc0, 0xce, 0xbd, 0xd5, 0xfb, 0x09, 0x09, 0x62, - 0x66, 0x44, 0xe6, 0x0e, 0xcf, 0xaf, 0x57, 0x60, 0x9c, 0x56, 0x24, 0x8f, 0xd7, 0x5f, 0x83, 0x49, - 0xdf, 0xd9, 0x24, 0xbe, 0xf4, 0xf0, 0x66, 0x37, 0x5c, 0xd7, 0x74, 0x24, 0x36, 0x69, 0x69, 0xe1, - 0x2d, 0xdd, 0x01, 0x2e, 0x8c, 0x21, 0x55, 0xd8, 0xf0, 0x8e, 0x63, 0x93, 0x96, 0xda, 0xfc, 0xf7, - 0x9c, 0xa4, 0xb5, 0x23, 0x36, 0x63, 0xaa, 0xb9, 0x77, 0x28, 0x10, 0x73, 0x1c, 0x5a, 0x82, 0x69, - 0x29, 0xab, 0xb7, 0xe9, 0x2e, 0x3d, 0x0c, 0x84, 0xa1, 0xa8, 0x2e, 0xca, 0x61, 0x13, 0x8d, 0xb3, - 0xf4, 0xe8, 0xd3, 0x30, 0x45, 0x07, 0x27, 0xec, 0x24, 0x32, 0x78, 0x60, 0x98, 0x05, 0x0f, 0xb0, - 0x18, 0xcd, 0x0d, 0x03, 0x83, 0x33, 0x94, 0xf6, 0x97, 0xe1, 0xe4, 0xb5, 0xd0, 0x71, 0x97, 0x1d, - 0xdf, 0x09, 0x5a, 0x24, 0x5a, 0x0f, 0xb6, 0x0b, 0xcf, 0x59, 0xf5, 0xb3, 0xd0, 0x4a, 0xd1, 0x59, - 0xa8, 0x1d, 0x01, 0xd2, 0x2b, 0x10, 0x61, 0x2f, 0x6f, 0xc3, 0xa8, 0xc7, 0xab, 0x12, 0x22, 0x7b, - 0xb1, 0xc8, 0x9d, 0xd4, 0xd5, 0x46, 0x2d, 0x8c, 0x83, 0x03, 0xb0, 0x64, 0x49, 0xf7, 0x10, 0x79, - 0xfe, 0xa7, 0xe2, 0x6d, 0x9a, 0xfd, 0x37, 0x2c, 0x98, 0xbe, 0x91, 0xb9, 0x8d, 0xf5, 0x0c, 0x8c, - 0xc4, 0x24, 0xca, 0x71, 0xa6, 0x35, 0x19, 0x14, 0x0b, 0xec, 0x43, 0xdf, 0xa0, 0xff, 0x4a, 0x05, - 0x6a, 0x2c, 0x74, 0xb2, 0xed, 0xb4, 0x06, 0x69, 0x8e, 0x5e, 0x37, 0xcc, 0xd1, 0x82, 0xed, 0xa1, - 0x6a, 0x50, 0x2f, 0x6b, 0x14, 0xdd, 0x52, 0xb7, 0x93, 0x4a, 0xed, 0x0c, 0x53, 0x86, 0xfc, 0x2e, - 0xcb, 0x94, 0x79, 0x99, 0x49, 0xde, 0x5c, 0x62, 0xa7, 0x93, 0x8a, 0xf6, 0x43, 0x76, 0x3a, 0xa9, - 0xda, 0xd5, 0x43, 0x25, 0x35, 0xb4, 0xa6, 0x33, 0x85, 0xfd, 0x19, 0x16, 0x0a, 0xe7, 0xf8, 0xde, - 0xbb, 0x44, 0x5d, 0xf1, 0x9b, 0x17, 0xc1, 0x6d, 0x02, 0x7a, 0xc4, 0xb4, 0x8b, 0xf8, 0xc7, 0x6f, - 0x6e, 0xa6, 0x45, 0xec, 0x2b, 0x30, 0x9d, 0x19, 0x38, 0xf4, 0x32, 0x0c, 0xb7, 0x77, 0x9c, 0x98, - 0x64, 0xc2, 0x2c, 0x86, 0x1b, 0x14, 0x78, 0x74, 0x30, 0x3f, 0xa5, 0x0a, 0x30, 0x08, 0xe6, 0xd4, - 0xf6, 0x9f, 0x5b, 0x30, 0x74, 0x23, 0x74, 0x07, 0x29, 0x60, 0x57, 0x0c, 0x01, 0x7b, 0xa6, 0xf8, - 0xbe, 0x77, 0x4f, 0xd9, 0x6a, 0x64, 0x64, 0xeb, 0x7c, 0x09, 0x5e, 0xc7, 0x8b, 0xd5, 0x2e, 0x8c, - 0xb3, 0xfb, 0xe4, 0x22, 0xbe, 0xe4, 0x45, 0x63, 0xdf, 0x34, 0x9f, 0xd9, 0x37, 0x4d, 0x6b, 0xa4, - 0xda, 0xee, 0xe9, 0x59, 0x18, 0x15, 0xf1, 0x0c, 0xd9, 0x10, 0x40, 0x41, 0x8b, 0x25, 0xde, 0xfe, - 0x57, 0x55, 0x30, 0xee, 0xaf, 0xa3, 0xdf, 0xb7, 0x60, 0x21, 0xe2, 0xd7, 0x0e, 0xdc, 0x7a, 0x27, - 0xf2, 0x82, 0xed, 0x66, 0x6b, 0x87, 0xb8, 0x1d, 0xdf, 0x0b, 0xb6, 0xd7, 0xb7, 0x83, 0x50, 0x81, - 0x57, 0xef, 0x93, 0x56, 0x87, 0x39, 0x55, 0x4b, 0x5f, 0x9b, 0x57, 0x67, 0x9a, 0x97, 0x0e, 0x0f, - 0xe6, 0x17, 0x70, 0x5f, 0xb5, 0xe0, 0x3e, 0x5b, 0x85, 0xfe, 0xc8, 0x82, 0x45, 0x7e, 0x83, 0xbb, - 0x7c, 0x4f, 0x4a, 0xed, 0x37, 0x1b, 0x92, 0x69, 0xca, 0x6e, 0x83, 0x44, 0xbb, 0xcb, 0xaf, 0x88, - 0x41, 0x5e, 0x6c, 0xf4, 0x57, 0x2b, 0xee, 0xb7, 0x99, 0xf6, 0x6f, 0x57, 0x61, 0x92, 0x8e, 0x67, - 0x7a, 0x7b, 0xf3, 0x65, 0x43, 0x4c, 0x3e, 0x9a, 0x11, 0x93, 0x13, 0x06, 0xf1, 0xc3, 0xb9, 0xb8, - 0xf9, 0x0e, 0x9c, 0xf0, 0x9d, 0x38, 0xb9, 0x42, 0x9c, 0x28, 0xd9, 0x24, 0x0e, 0x3b, 0x46, 0x2c, - 0x9e, 0x04, 0x99, 0x73, 0x49, 0x15, 0x21, 0x73, 0x2d, 0xcb, 0x0a, 0x77, 0x73, 0x47, 0x09, 0x20, - 0x76, 0x60, 0x19, 0x39, 0x41, 0xcc, 0x7b, 0xe2, 0x09, 0x27, 0x6c, 0x3f, 0x75, 0xce, 0x89, 0x3a, - 0xd1, 0xb5, 0x2e, 0x5e, 0x38, 0x87, 0xbf, 0x76, 0x18, 0x3d, 0x5c, 0xf6, 0x30, 0x7a, 0xa4, 0x20, - 0xee, 0xf6, 0x97, 0x2c, 0x38, 0x49, 0x3f, 0x89, 0x19, 0xa3, 0x19, 0xa3, 0x10, 0xa6, 0x69, 0xf3, - 0x7d, 0x92, 0x48, 0x58, 0xf1, 0x3a, 0xc2, 0x02, 0xe9, 0x0c, 0x3e, 0xa9, 0xa1, 0x76, 0xd5, 0x64, - 0x86, 0xb3, 0xdc, 0xed, 0xef, 0x58, 0xc0, 0x82, 0xc0, 0x06, 0xbe, 0x7c, 0x5d, 0x36, 0x97, 0x2f, - 0xbb, 0x58, 0x57, 0xf4, 0x58, 0xb9, 0x5e, 0x82, 0x19, 0x8a, 0x6d, 0x44, 0xe1, 0xfd, 0x7d, 0x69, - 0x50, 0x17, 0x7b, 0x62, 0xdf, 0xab, 0xf0, 0x09, 0xa3, 0x6e, 0x4e, 0xa1, 0x5f, 0xb6, 0x60, 0xac, - 0xe5, 0xb4, 0x9d, 0x16, 0xcf, 0xfb, 0x51, 0xc2, 0xeb, 0x62, 0x94, 0x5f, 0x58, 0x11, 0x65, 0xb9, - 0xc7, 0xe0, 0x13, 0xb2, 0xeb, 0x12, 0x5c, 0xe8, 0x25, 0x50, 0x95, 0xcf, 0x79, 0x30, 0x69, 0x30, - 0x1b, 0xe0, 0x36, 0xf3, 0x97, 0x2d, 0xae, 0xec, 0xd5, 0x86, 0xe0, 0x1e, 0x9c, 0x08, 0xb4, 0xff, - 0x54, 0x8d, 0x49, 0xfb, 0x77, 0xa1, 0xbc, 0x3a, 0x67, 0xda, 0x4f, 0x0b, 0x76, 0xcb, 0x30, 0xc4, - 0xdd, 0x75, 0xd8, 0xff, 0xc4, 0x82, 0xc7, 0x74, 0x42, 0xed, 0xa2, 0x5b, 0x91, 0x17, 0xb8, 0x0e, - 0x63, 0x61, 0x9b, 0x44, 0x4e, 0xba, 0xf9, 0x39, 0x2f, 0x47, 0xff, 0xa6, 0x80, 0x1f, 0x1d, 0xcc, - 0x9f, 0xd2, 0xb9, 0x4b, 0x38, 0x56, 0x25, 0x91, 0x0d, 0x23, 0x6c, 0x5c, 0x62, 0x71, 0x45, 0x91, - 0x65, 0xc1, 0x60, 0x67, 0x1f, 0x31, 0x16, 0x18, 0xfb, 0x6f, 0x5a, 0x5c, 0xd8, 0xf4, 0xa6, 0xa3, - 0xaf, 0xc1, 0xcc, 0x2e, 0xdd, 0x27, 0xad, 0xde, 0x6f, 0xd3, 0x05, 0x94, 0x9d, 0xf9, 0x5a, 0x65, - 0x96, 0x8d, 0x1e, 0xdd, 0x5d, 0x9e, 0x15, 0xad, 0x9f, 0xb9, 0x9e, 0x61, 0x8b, 0xbb, 0x2a, 0xb2, - 0xff, 0x58, 0xcc, 0x57, 0x66, 0xb3, 0x3d, 0x0b, 0xa3, 0xed, 0xd0, 0x5d, 0x59, 0xaf, 0x63, 0x31, - 0x56, 0x4a, 0xe1, 0x34, 0x38, 0x18, 0x4b, 0x3c, 0xba, 0x04, 0x40, 0xee, 0x27, 0x24, 0x0a, 0x1c, - 0x5f, 0x9d, 0xd5, 0x2a, 0x13, 0x69, 0x55, 0x61, 0xb0, 0x46, 0x45, 0xcb, 0xb4, 0xa3, 0x70, 0xcf, - 0x73, 0x59, 0xe4, 0x79, 0xd5, 0x2c, 0xd3, 0x50, 0x18, 0xac, 0x51, 0xd1, 0xdd, 0x69, 0x27, 0x88, - 0xf9, 0xf2, 0xe5, 0x6c, 0x8a, 0xe4, 0x0d, 0x63, 0xe9, 0xee, 0xf4, 0x96, 0x8e, 0xc4, 0x26, 0xad, - 0xfd, 0xd3, 0x1a, 0x40, 0x6a, 0x20, 0xa1, 0xf7, 0xba, 0x67, 0xe8, 0x27, 0xcb, 0x5a, 0x57, 0x0f, - 0x6f, 0x7a, 0xa2, 0x6f, 0x5a, 0x30, 0xee, 0xf8, 0x7e, 0xd8, 0x72, 0x12, 0xd6, 0xa3, 0x4a, 0x59, - 0x5d, 0x21, 0x5a, 0xb2, 0x94, 0x96, 0xe5, 0x8d, 0x79, 0x51, 0x1e, 0xe5, 0x69, 0x98, 0xc2, 0xf6, - 0xe8, 0x4d, 0x40, 0x9f, 0x90, 0x86, 0x35, 0xff, 0x28, 0x73, 0x59, 0xc3, 0xba, 0xc6, 0x34, 0xa4, - 0x66, 0x53, 0xa3, 0x2f, 0x1b, 0x79, 0x0a, 0x86, 0xca, 0xdc, 0x8e, 0x35, 0x4c, 0x86, 0xa2, 0x14, - 0x05, 0xe8, 0x0b, 0x7a, 0x50, 0xee, 0x70, 0x99, 0xab, 0xa7, 0x9a, 0xe5, 0x5a, 0x10, 0x90, 0x9b, - 0xc0, 0xb4, 0x6b, 0x2e, 0x94, 0x22, 0xd0, 0xea, 0x62, 0x71, 0x0d, 0x99, 0x15, 0x36, 0x5d, 0x1a, - 0x33, 0x08, 0x9c, 0xad, 0x82, 0xae, 0x86, 0x54, 0x6d, 0xad, 0x07, 0x5b, 0xa1, 0x08, 0xb7, 0xba, - 0x50, 0xe2, 0x9b, 0xef, 0xc7, 0x09, 0xd9, 0xa5, 0x65, 0xd2, 0xd5, 0xf0, 0x86, 0xe0, 0x82, 0x15, - 0x3f, 0xb4, 0x01, 0x23, 0xec, 0x82, 0x47, 0x3c, 0x3b, 0x56, 0xc6, 0x3d, 0x66, 0xde, 0x68, 0x4c, - 0x0d, 0x10, 0xf6, 0x37, 0xc6, 0x82, 0x17, 0xba, 0x22, 0x6f, 0x00, 0xc7, 0xeb, 0xc1, 0xad, 0x98, - 0xb0, 0x1b, 0xc0, 0xb5, 0xe5, 0x8f, 0xa5, 0x57, 0x7a, 0x39, 0x3c, 0x37, 0x33, 0x93, 0x51, 0x92, - 0xda, 0x21, 0xe2, 0xbf, 0x4c, 0xf8, 0x34, 0x0b, 0x65, 0x1a, 0x6a, 0xa6, 0x87, 0x4a, 0x07, 0xfb, - 0xb6, 0xc9, 0x0c, 0x67, 0xb9, 0x3f, 0xc2, 0x35, 0x70, 0xce, 0x87, 0x99, 0xec, 0x94, 0x1c, 0xe0, - 0x8a, 0xfb, 0x67, 0x43, 0x30, 0x65, 0x0a, 0x06, 0x5a, 0x84, 0xda, 0x2e, 0x4b, 0xc7, 0x94, 0x26, - 0x81, 0x51, 0xf2, 0x7f, 0x5d, 0x22, 0x70, 0x4a, 0xc3, 0xd2, 0xe1, 0xb0, 0xe2, 0x5a, 0xa0, 0x4d, - 0x9a, 0x0e, 0x47, 0x61, 0xb0, 0x46, 0x45, 0x8d, 0xd6, 0xcd, 0x30, 0x4c, 0x94, 0xe2, 0x56, 0x32, - 0xb3, 0xcc, 0xa0, 0x58, 0x60, 0xa9, 0xc2, 0xbe, 0x4b, 0x3b, 0xe4, 0x9b, 0xae, 0x3e, 0xa5, 0xb0, - 0xaf, 0xea, 0x48, 0x6c, 0xd2, 0xd2, 0x05, 0x28, 0x8c, 0x99, 0x10, 0x0a, 0xd3, 0x38, 0x0d, 0x5c, - 0x6a, 0xf2, 0x0b, 0x4f, 0x12, 0x8f, 0x3e, 0x0f, 0x8f, 0xa9, 0xfb, 0x49, 0x98, 0xbb, 0x4e, 0x65, - 0x8d, 0x23, 0xc6, 0xce, 0xf6, 0xb1, 0x95, 0x7c, 0x32, 0xdc, 0xab, 0x3c, 0x7a, 0x03, 0xa6, 0x84, - 0x59, 0x2b, 0x39, 0x8e, 0x9a, 0xe7, 0xda, 0x57, 0x0d, 0x2c, 0xce, 0x50, 0xa3, 0x3a, 0xcc, 0x50, - 0x08, 0xb3, 0x28, 0x25, 0x07, 0x7e, 0xcf, 0x4a, 0xad, 0xcc, 0x57, 0x33, 0x78, 0xdc, 0x55, 0x02, - 0x2d, 0xc1, 0x34, 0xb7, 0x2d, 0xe8, 0xfe, 0x8d, 0x7d, 0x07, 0x11, 0x21, 0xa9, 0x26, 0xc1, 0x4d, - 0x13, 0x8d, 0xb3, 0xf4, 0xe8, 0x55, 0x98, 0x70, 0xa2, 0xd6, 0x8e, 0x97, 0x90, 0x56, 0xd2, 0x89, - 0xf8, 0xdd, 0x7a, 0x2d, 0x30, 0x60, 0x49, 0xc3, 0x61, 0x83, 0xd2, 0x7e, 0x17, 0x4e, 0xe6, 0x84, - 0x60, 0x53, 0xc1, 0x71, 0xda, 0x9e, 0xec, 0x53, 0x26, 0x04, 0x69, 0xa9, 0xb1, 0x2e, 0x7b, 0xa3, - 0x51, 0x51, 0xe9, 0x64, 0x3e, 0x63, 0x2d, 0x37, 0x9b, 0x92, 0xce, 0x35, 0x89, 0xc0, 0x29, 0x8d, - 0xfd, 0xdf, 0x6b, 0xa0, 0x39, 0x59, 0x4a, 0x04, 0x9e, 0xbc, 0x0a, 0x13, 0x32, 0xdd, 0xa0, 0x96, - 0xe6, 0x4b, 0x75, 0xf3, 0xb2, 0x86, 0xc3, 0x06, 0x25, 0x6d, 0x5b, 0x20, 0x5d, 0x46, 0xd9, 0x80, - 0x27, 0xe5, 0x4b, 0xc2, 0x29, 0x0d, 0xba, 0x00, 0x63, 0x31, 0xf1, 0xb7, 0xae, 0x79, 0xc1, 0x5d, - 0x21, 0xd8, 0x4a, 0x2b, 0x37, 0x05, 0x1c, 0x2b, 0x0a, 0xf4, 0x59, 0xa8, 0x76, 0x3c, 0x57, 0x88, - 0xf2, 0x82, 0xb4, 0x3b, 0x6f, 0xad, 0xd7, 0x8f, 0x0e, 0xe6, 0xe7, 0xf3, 0x73, 0x28, 0xd2, 0x4d, - 0x74, 0xbc, 0x40, 0x27, 0x1f, 0x2d, 0x9a, 0xe7, 0x3a, 0x1f, 0xe9, 0xd3, 0x75, 0x7e, 0x09, 0x40, - 0xf4, 0x59, 0x4a, 0x72, 0x35, 0xfd, 0x66, 0x97, 0x15, 0x06, 0x6b, 0x54, 0x74, 0x2b, 0xde, 0x8a, - 0x88, 0x23, 0x77, 0xac, 0x3c, 0x44, 0x78, 0xec, 0x41, 0xb7, 0xe2, 0x2b, 0x59, 0x56, 0xb8, 0x9b, - 0x3b, 0xda, 0x85, 0x13, 0x2e, 0x9d, 0x44, 0x46, 0x95, 0xb5, 0x7e, 0xa3, 0x92, 0x69, 0x75, 0xf5, - 0x2c, 0x1b, 0xdc, 0xcd, 0x19, 0x7d, 0x09, 0xe6, 0x24, 0xb0, 0xfb, 0xee, 0x21, 0x9b, 0x28, 0xd5, - 0xe5, 0xb3, 0x87, 0x07, 0xf3, 0x73, 0xf5, 0x9e, 0x54, 0xf8, 0x18, 0x0e, 0xe8, 0x6d, 0x18, 0x61, - 0xc7, 0x2c, 0xf1, 0xec, 0x38, 0x5b, 0xe7, 0x5e, 0x2a, 0xeb, 0x68, 0x5c, 0x60, 0x87, 0x35, 0x22, - 0x6e, 0x33, 0x3d, 0xb7, 0x62, 0x40, 0x2c, 0x78, 0xa2, 0x36, 0x8c, 0x3b, 0x41, 0x10, 0x26, 0x0e, - 0x37, 0xbf, 0x26, 0xca, 0x58, 0x90, 0x5a, 0x15, 0x4b, 0x69, 0x59, 0x5e, 0x8f, 0x0a, 0x06, 0xd3, - 0x30, 0x58, 0xaf, 0x02, 0x75, 0x60, 0x3a, 0xbc, 0x47, 0x55, 0xa5, 0x3c, 0x69, 0x88, 0x67, 0x27, - 0x8b, 0x12, 0x24, 0xa6, 0x1f, 0xe7, 0xa6, 0x51, 0x54, 0xd3, 0x60, 0x26, 0x4b, 0x9c, 0xad, 0x03, - 0x2d, 0x18, 0x5e, 0xe4, 0xa9, 0x34, 0x36, 0x39, 0xf5, 0x22, 0xeb, 0x4e, 0x63, 0x76, 0xbb, 0x95, - 0xc7, 0x23, 0x32, 0x4d, 0x30, 0x9d, 0xb9, 0xdd, 0x9a, 0xa2, 0xb0, 0x4e, 0x37, 0xf7, 0x29, 0x18, - 0xd7, 0x86, 0xbd, 0x9f, 0x20, 0xd8, 0xb9, 0x37, 0x60, 0x26, 0x3b, 0x9c, 0x7d, 0x05, 0xd1, 0xfe, - 0xcf, 0x0a, 0x4c, 0xe7, 0x1c, 0xe2, 0xdc, 0xf5, 0x58, 0x20, 0xb7, 0xa1, 0xf2, 0xae, 0x7a, 0x81, - 0x8b, 0x19, 0xc6, 0x54, 0x5c, 0x95, 0x12, 0x8a, 0x4b, 0x6a, 0xd1, 0x6a, 0x4f, 0x2d, 0x2a, 0x94, - 0xd5, 0xd0, 0x83, 0x2b, 0x2b, 0x73, 0x75, 0x18, 0x2e, 0xb5, 0x3a, 0x3c, 0x04, 0x05, 0x67, 0x2c, - 0x30, 0xa3, 0x25, 0x16, 0x98, 0x6f, 0x57, 0x60, 0x26, 0x0d, 0x17, 0x16, 0x99, 0x47, 0x07, 0x77, - 0x36, 0xb0, 0x61, 0x9c, 0x0d, 0x14, 0x25, 0x14, 0xcd, 0xb4, 0xab, 0xe7, 0x39, 0xc1, 0xdb, 0x99, - 0x73, 0x82, 0x97, 0xfa, 0xe4, 0x7b, 0xfc, 0x99, 0xc1, 0x77, 0x2a, 0x70, 0x3a, 0x5b, 0x64, 0xc5, - 0x77, 0xbc, 0xdd, 0x01, 0x8e, 0xd3, 0xe7, 0x8d, 0x71, 0x7a, 0xa5, 0xbf, 0xfe, 0xb0, 0xc6, 0xf5, - 0x1c, 0x2c, 0x27, 0x33, 0x58, 0x9f, 0x7a, 0x10, 0xe6, 0xc7, 0x8f, 0xd8, 0x4f, 0x2d, 0x78, 0x3c, - 0xb7, 0xdc, 0xc0, 0x3d, 0xa1, 0x6f, 0x99, 0x9e, 0xd0, 0x17, 0x1f, 0xa0, 0x6f, 0x3d, 0x5c, 0xa3, - 0x87, 0x95, 0x1e, 0x7d, 0x62, 0xde, 0xa2, 0x9b, 0x30, 0xee, 0xb4, 0x5a, 0x24, 0x8e, 0xaf, 0x87, - 0xae, 0xca, 0x86, 0xf3, 0x02, 0x5b, 0x45, 0x52, 0xf0, 0xd1, 0xc1, 0xfc, 0x5c, 0x96, 0x45, 0x8a, - 0xc6, 0x3a, 0x07, 0x33, 0xab, 0x55, 0x65, 0x40, 0x59, 0xad, 0x2e, 0x01, 0xec, 0xa9, 0x5d, 0x6a, - 0xd6, 0x09, 0xa5, 0xed, 0x5f, 0x35, 0x2a, 0xf4, 0x45, 0x66, 0xf5, 0xf1, 0xe8, 0x88, 0xa1, 0x22, - 0x47, 0x81, 0xf6, 0xf5, 0xf4, 0x38, 0x0b, 0x7e, 0x7d, 0x51, 0xb9, 0xeb, 0x14, 0x43, 0xfb, 0xfb, - 0x55, 0xf8, 0xb9, 0x63, 0x04, 0x0e, 0x2d, 0x99, 0x87, 0x9e, 0xcf, 0x67, 0x7d, 0x33, 0x73, 0xb9, - 0x85, 0x0d, 0x67, 0x4d, 0xe6, 0x4b, 0x55, 0x3e, 0xf0, 0x97, 0xfa, 0x96, 0xee, 0x49, 0xe3, 0xc1, - 0x8d, 0x97, 0x1f, 0x78, 0x4a, 0xfd, 0x6c, 0x7a, 0xbe, 0xbf, 0x6e, 0xc1, 0x47, 0x73, 0x3b, 0x65, - 0x04, 0x56, 0x2c, 0x42, 0xad, 0x45, 0x81, 0xda, 0xed, 0x93, 0xf4, 0xda, 0x97, 0x44, 0xe0, 0x94, - 0xc6, 0x88, 0x9f, 0xa8, 0x14, 0xc6, 0x4f, 0xfc, 0x07, 0x0b, 0x4e, 0x65, 0x1b, 0x31, 0x70, 0x7d, - 0xd3, 0x34, 0xf5, 0xcd, 0x42, 0x7f, 0x1f, 0xbe, 0x87, 0xaa, 0xf9, 0xf6, 0x24, 0x9c, 0xe9, 0x5a, - 0xa3, 0xf8, 0x18, 0xfe, 0x82, 0x05, 0x27, 0xb6, 0x99, 0x7d, 0xad, 0x5d, 0xf0, 0x11, 0xbd, 0x2a, - 0xb8, 0x15, 0x75, 0xec, 0xbd, 0x20, 0xbe, 0x5b, 0xe8, 0x22, 0xc1, 0xdd, 0x95, 0xa1, 0x6f, 0x58, - 0x70, 0xca, 0xb9, 0x17, 0x77, 0x65, 0xaf, 0x17, 0x42, 0xf4, 0x46, 0x81, 0x13, 0xab, 0x20, 0xef, - 0xfd, 0xf2, 0xec, 0xe1, 0xc1, 0xfc, 0xa9, 0x3c, 0x2a, 0x9c, 0x5b, 0x2b, 0x7a, 0x5b, 0xe4, 0xfe, - 0xa2, 0x06, 0x4f, 0xa9, 0xab, 0x6a, 0x79, 0xd7, 0x0d, 0xb8, 0x42, 0x92, 0x18, 0xac, 0x38, 0xa2, - 0xaf, 0x40, 0x6d, 0x5b, 0xde, 0xe9, 0x11, 0xea, 0xae, 0x60, 0x4d, 0xc9, 0xbd, 0x02, 0xc4, 0x83, - 0xda, 0x15, 0x0a, 0xa7, 0x4c, 0xd1, 0x15, 0xa8, 0x06, 0x5b, 0xb1, 0xb8, 0x37, 0x5b, 0x14, 0x3c, - 0x63, 0x86, 0x2a, 0xf1, 0x0b, 0x87, 0x37, 0xd6, 0x9a, 0x98, 0xb2, 0xa0, 0x9c, 0xa2, 0x4d, 0x57, - 0x78, 0x6f, 0x0b, 0x38, 0xe1, 0xe5, 0x7a, 0x37, 0x27, 0xbc, 0x5c, 0xc7, 0x94, 0x05, 0x8b, 0xd2, - 0x8b, 0x5b, 0xb1, 0x27, 0x5c, 0xb3, 0x05, 0x97, 0xaa, 0xbb, 0x2e, 0x61, 0xf0, 0x34, 0x70, 0x0c, - 0x8c, 0x39, 0x23, 0xb4, 0x01, 0x23, 0x2d, 0x96, 0xb0, 0x59, 0xec, 0x9c, 0x8b, 0xd2, 0xf8, 0x76, - 0x25, 0x77, 0xe6, 0x47, 0x48, 0x1c, 0x8e, 0x05, 0x2f, 0xc6, 0x95, 0xb4, 0x77, 0xb6, 0x62, 0xb1, - 0x39, 0x2e, 0xe2, 0xda, 0x95, 0x7a, 0x5b, 0x70, 0x65, 0x70, 0x2c, 0x78, 0xa1, 0x3a, 0x54, 0xb6, - 0x5a, 0x22, 0xf7, 0x62, 0x81, 0x4b, 0xd6, 0xbc, 0x3d, 0xba, 0x3c, 0x72, 0x78, 0x30, 0x5f, 0x59, - 0x5b, 0xc1, 0x95, 0xad, 0x16, 0x7a, 0x0b, 0x46, 0xb7, 0xf8, 0x7d, 0x40, 0x91, 0x67, 0xf1, 0x62, - 0xd1, 0xa5, 0xc5, 0xae, 0xcb, 0x83, 0xfc, 0xe2, 0x82, 0x40, 0x60, 0xc9, 0x0e, 0x7d, 0x09, 0x60, - 0x4b, 0xdd, 0x70, 0x14, 0x89, 0x16, 0x17, 0xfa, 0xbb, 0x11, 0x29, 0xf6, 0x8d, 0x0a, 0x8a, 0x35, - 0x8e, 0x54, 0xe6, 0x1d, 0x99, 0x73, 0x9e, 0x25, 0x59, 0x2c, 0x94, 0xf9, 0xdc, 0x14, 0xf5, 0x5c, - 0xe6, 0x15, 0x0a, 0xa7, 0x4c, 0x51, 0x07, 0x26, 0xf7, 0xe2, 0xf6, 0x0e, 0x91, 0x53, 0x9f, 0x65, - 0x5e, 0x1c, 0xbf, 0xf4, 0x7a, 0x41, 0x3a, 0x4d, 0x51, 0xc4, 0x8b, 0x92, 0x8e, 0xe3, 0x77, 0x69, - 0x30, 0x96, 0xcb, 0xe8, 0xb6, 0xce, 0x16, 0x9b, 0xb5, 0xd0, 0x4f, 0xf2, 0x4e, 0x27, 0xdc, 0xdc, - 0x4f, 0x88, 0xc8, 0xcc, 0x58, 0xf0, 0x49, 0xde, 0xe4, 0xc4, 0xdd, 0x9f, 0x44, 0x20, 0xb0, 0x64, - 0xa7, 0x86, 0x8c, 0x69, 0xe3, 0x99, 0xd2, 0x43, 0xd6, 0xd5, 0x87, 0x74, 0xc8, 0x98, 0xf6, 0x4d, - 0x99, 0x32, 0xad, 0xdb, 0xde, 0x09, 0x93, 0x30, 0xc8, 0xe8, 0xfe, 0x13, 0x65, 0xb4, 0x6e, 0x23, - 0xa7, 0x64, 0xb7, 0xd6, 0xcd, 0xa3, 0xc2, 0xb9, 0xb5, 0xda, 0x7f, 0x3c, 0xdc, 0xbd, 0xd8, 0x32, - 0x43, 0xf8, 0x57, 0xbb, 0xcf, 0x15, 0x3f, 0xdb, 0xff, 0x2e, 0xef, 0x21, 0x9e, 0x30, 0x7e, 0xc3, - 0x82, 0x33, 0xed, 0xdc, 0xc5, 0x54, 0x2c, 0x58, 0xfd, 0x6e, 0x16, 0xf9, 0x80, 0xa9, 0xb4, 0xa3, - 0xf9, 0x78, 0xdc, 0xa3, 0xce, 0xac, 0xf9, 0x59, 0xfd, 0xc0, 0xe6, 0xe7, 0x1d, 0x18, 0x63, 0x16, - 0x53, 0x9a, 0x03, 0xa3, 0xcf, 0xb4, 0x11, 0x6c, 0xe9, 0x5b, 0x11, 0x2c, 0xb0, 0x62, 0x46, 0x07, - 0xee, 0xc9, 0x6c, 0x27, 0x30, 0x61, 0x68, 0x91, 0x2f, 0x95, 0x7b, 0x35, 0xd6, 0xc4, 0x48, 0x3c, - 0xd9, 0x38, 0x8e, 0xf8, 0xa8, 0x88, 0x00, 0x1f, 0x5f, 0xd9, 0xa3, 0x34, 0x67, 0xff, 0xb9, 0x95, - 0x63, 0x7f, 0xf1, 0x0d, 0xc8, 0xeb, 0xe6, 0x06, 0xe4, 0x99, 0xec, 0x06, 0xa4, 0xcb, 0x51, 0x60, - 0xec, 0x3d, 0xca, 0x27, 0x0f, 0x2c, 0x9b, 0xa4, 0xc3, 0xf6, 0xe1, 0x5c, 0xd1, 0xe4, 0x66, 0x11, - 0x3c, 0xae, 0x3a, 0x0e, 0x4b, 0x23, 0x78, 0xdc, 0xf5, 0x3a, 0x66, 0x98, 0xb2, 0xb7, 0xbd, 0xed, - 0xff, 0x6d, 0x41, 0xb5, 0x11, 0xba, 0x03, 0x74, 0x7c, 0x5c, 0x36, 0x1c, 0x1f, 0x4f, 0x17, 0xbe, - 0xb4, 0xd3, 0xd3, 0xcd, 0x71, 0x33, 0xe3, 0xe6, 0xf8, 0x78, 0x31, 0xab, 0xe3, 0x9d, 0x1a, 0x3f, - 0xa8, 0x82, 0xfe, 0x56, 0x10, 0xfa, 0x83, 0x07, 0x09, 0xe5, 0xac, 0x96, 0x7b, 0x3e, 0x48, 0xd4, - 0xc1, 0x42, 0x7f, 0xe4, 0xf5, 0xae, 0x9f, 0xd9, 0x88, 0xce, 0x3b, 0xc4, 0xdb, 0xde, 0x49, 0x88, - 0x9b, 0xed, 0xd8, 0xa3, 0x8b, 0xe8, 0xfc, 0x6f, 0x16, 0x4c, 0x67, 0x6a, 0x47, 0x5f, 0xcd, 0xbb, - 0x27, 0xf2, 0x40, 0xce, 0x8c, 0x13, 0x85, 0xd7, 0x4a, 0x16, 0x00, 0x94, 0xf7, 0x59, 0xba, 0x1c, - 0x98, 0x05, 0xa6, 0xdc, 0xd3, 0x31, 0xd6, 0x28, 0xd0, 0xcb, 0x30, 0x9e, 0x84, 0xed, 0xd0, 0x0f, - 0xb7, 0xf7, 0xaf, 0x12, 0x99, 0x7d, 0x40, 0x79, 0xee, 0x37, 0x52, 0x14, 0xd6, 0xe9, 0xec, 0x1f, - 0x55, 0x21, 0xfb, 0xce, 0xd4, 0xff, 0x97, 0xd2, 0x9f, 0x1d, 0x29, 0xfd, 0x43, 0x0b, 0x66, 0x68, - 0xed, 0x2c, 0x6c, 0x43, 0x46, 0x5f, 0xaa, 0x3c, 0xdf, 0xd6, 0x31, 0x79, 0xbe, 0x9f, 0xa1, 0xba, - 0xce, 0x0d, 0x3b, 0x89, 0x70, 0x93, 0x68, 0x2a, 0x8c, 0x42, 0xb1, 0xc0, 0x0a, 0x3a, 0x12, 0x45, - 0xe2, 0x3a, 0x8a, 0x4e, 0x47, 0xa2, 0x08, 0x0b, 0xac, 0x4c, 0x03, 0x3e, 0x94, 0x9f, 0x06, 0x9c, - 0xe7, 0xef, 0x11, 0xe1, 0x02, 0xc2, 0x08, 0xd0, 0xf2, 0xf7, 0xc8, 0x38, 0x82, 0x94, 0xc6, 0xfe, - 0x4e, 0x15, 0x26, 0x1a, 0xa1, 0x9b, 0x06, 0x54, 0xbf, 0x64, 0x04, 0x54, 0x9f, 0xcb, 0x04, 0x54, - 0xcf, 0xe8, 0xb4, 0x0f, 0x27, 0x9e, 0x5a, 0xe4, 0x78, 0x62, 0x89, 0xea, 0x1f, 0x28, 0x96, 0xda, - 0xc8, 0xf1, 0xa4, 0xd8, 0x60, 0x93, 0xeb, 0x5f, 0x9e, 0x18, 0xea, 0x3f, 0xb7, 0x60, 0xaa, 0x11, - 0xba, 0x54, 0x38, 0xff, 0x32, 0x49, 0xa2, 0x9e, 0x19, 0x6a, 0xe4, 0x98, 0xcc, 0x50, 0xbf, 0x61, - 0xc1, 0x68, 0x23, 0x74, 0x07, 0xee, 0x3e, 0x5c, 0x33, 0xdd, 0x87, 0x1f, 0x2d, 0xd4, 0xb9, 0x3d, - 0x3c, 0x86, 0xdf, 0xaf, 0xc2, 0x24, 0x6d, 0x6f, 0xb8, 0x2d, 0xbf, 0x96, 0x31, 0x32, 0x56, 0x89, - 0x91, 0xa1, 0x26, 0x60, 0xe8, 0xfb, 0xe1, 0xbd, 0xec, 0x97, 0x5b, 0x63, 0x50, 0x2c, 0xb0, 0xe8, - 0x02, 0x8c, 0xb5, 0x23, 0xb2, 0xe7, 0x85, 0x9d, 0x38, 0x7b, 0xa9, 0xad, 0x21, 0xe0, 0x58, 0x51, - 0xa0, 0x97, 0x60, 0x22, 0xf6, 0x82, 0x16, 0x91, 0xc1, 0x04, 0x43, 0x2c, 0x98, 0x80, 0x27, 0xdd, - 0xd3, 0xe0, 0xd8, 0xa0, 0x42, 0xb7, 0xa0, 0xc6, 0xfe, 0xb3, 0xd9, 0xd3, 0x6f, 0x56, 0x72, 0x9e, - 0x75, 0x4a, 0x16, 0xc7, 0x29, 0x27, 0x74, 0x09, 0x20, 0x91, 0x41, 0x0f, 0xb1, 0xc8, 0x9e, 0xa1, - 0xac, 0x51, 0x15, 0x0e, 0x11, 0x63, 0x8d, 0x0a, 0x3d, 0x0f, 0xb5, 0xc4, 0xf1, 0xfc, 0x6b, 0x5e, - 0x40, 0x62, 0x11, 0x30, 0x22, 0xd2, 0xc6, 0x0a, 0x20, 0x4e, 0xf1, 0x74, 0x9d, 0x67, 0x97, 0x69, - 0xf9, 0x6b, 0x07, 0x63, 0x8c, 0x9a, 0xad, 0xf3, 0xd7, 0x14, 0x14, 0x6b, 0x14, 0xf6, 0x8b, 0x6c, - 0xbd, 0xee, 0x33, 0xda, 0xfe, 0x27, 0x15, 0x40, 0x0d, 0x16, 0x5c, 0x61, 0x3c, 0x08, 0xb1, 0x03, - 0x53, 0x31, 0xb9, 0xe6, 0x05, 0x9d, 0xfb, 0x82, 0x55, 0xb9, 0xcb, 0x0d, 0xcd, 0x55, 0xbd, 0x0c, - 0xbf, 0x43, 0x6a, 0xc2, 0x70, 0x86, 0x2f, 0x1d, 0x92, 0xa8, 0x13, 0x2c, 0xc5, 0xb7, 0x62, 0x12, - 0x89, 0x27, 0x1d, 0xd8, 0x90, 0x60, 0x09, 0xc4, 0x29, 0x9e, 0x0a, 0x00, 0xfb, 0x73, 0x23, 0x0c, - 0x70, 0x18, 0x26, 0x52, 0x64, 0x58, 0xa2, 0x6f, 0x0d, 0x8e, 0x0d, 0x2a, 0xb4, 0x06, 0x28, 0xee, - 0xb4, 0xdb, 0x3e, 0x3b, 0xc5, 0x72, 0xfc, 0xcb, 0x51, 0xd8, 0x69, 0xf3, 0xc8, 0x5a, 0x91, 0x23, - 0xbb, 0xd9, 0x85, 0xc5, 0x39, 0x25, 0xe8, 0x74, 0xdf, 0x8a, 0xd9, 0x6f, 0x71, 0x47, 0x96, 0x7b, - 0xd4, 0x9a, 0x0c, 0x84, 0x25, 0xce, 0xfe, 0x1a, 0x5b, 0x9e, 0x58, 0xb6, 0xfd, 0xa4, 0x13, 0x11, - 0x74, 0x17, 0x26, 0xdb, 0x6c, 0x09, 0x4a, 0xa2, 0xd0, 0xf7, 0x49, 0x54, 0xfc, 0x6e, 0x51, 0xcf, - 0xf0, 0x0e, 0x9e, 0x61, 0x5b, 0x67, 0x86, 0x4d, 0xde, 0xf6, 0x3f, 0x1c, 0x67, 0xba, 0x46, 0x1c, - 0x23, 0x8e, 0x8a, 0xe0, 0x4d, 0x61, 0x85, 0x7d, 0xac, 0xcc, 0x0b, 0x33, 0xa9, 0x1e, 0x17, 0xa1, - 0xa0, 0x58, 0x72, 0x41, 0x5f, 0x64, 0xa1, 0xc9, 0x7c, 0x8a, 0x97, 0x7f, 0xf6, 0x89, 0xd3, 0x1b, - 0x61, 0xc9, 0x82, 0x05, 0xd6, 0xd8, 0xa1, 0x6b, 0x30, 0x29, 0xd2, 0xb3, 0x0b, 0x87, 0x40, 0xd5, - 0xd8, 0x14, 0x4f, 0x62, 0x1d, 0x79, 0x94, 0x05, 0x60, 0xb3, 0x30, 0xda, 0x86, 0x27, 0xb5, 0xa7, - 0x5a, 0x72, 0x02, 0x91, 0xb8, 0xee, 0xf8, 0xe8, 0xe1, 0xc1, 0xfc, 0x93, 0x1b, 0xc7, 0x11, 0xe2, - 0xe3, 0xf9, 0xa0, 0x9b, 0x70, 0xda, 0x69, 0x25, 0xde, 0x1e, 0xa9, 0x13, 0xc7, 0xf5, 0xbd, 0x80, - 0x98, 0xd7, 0xa8, 0x1f, 0x3f, 0x3c, 0x98, 0x3f, 0xbd, 0x94, 0x47, 0x80, 0xf3, 0xcb, 0xa1, 0xd7, - 0xa1, 0xe6, 0x06, 0xb1, 0x18, 0x83, 0x11, 0xe3, 0x55, 0x9a, 0x5a, 0xfd, 0x46, 0x53, 0xf5, 0x3f, - 0xfd, 0x83, 0xd3, 0x02, 0xe8, 0x1d, 0xfe, 0x4c, 0xae, 0xda, 0x87, 0xf0, 0xd7, 0x90, 0x5e, 0x29, - 0xb5, 0xf3, 0x35, 0xae, 0x3d, 0x70, 0x5f, 0x99, 0x0a, 0xf5, 0x33, 0x6e, 0x44, 0x18, 0x55, 0xa0, - 0xcf, 0x01, 0x8a, 0x49, 0xb4, 0xe7, 0xb5, 0xc8, 0x52, 0x8b, 0xe5, 0x9d, 0x64, 0x47, 0x72, 0x63, - 0x46, 0xbc, 0x3b, 0x6a, 0x76, 0x51, 0xe0, 0x9c, 0x52, 0xe8, 0x0a, 0xd5, 0x3b, 0x3a, 0x54, 0x44, - 0x66, 0x4a, 0xa3, 0x6e, 0xb6, 0x4e, 0xda, 0x11, 0x69, 0x39, 0x09, 0x71, 0x4d, 0x8e, 0x38, 0x53, - 0x8e, 0xae, 0x2c, 0x2a, 0x8d, 0x36, 0x98, 0xf1, 0x84, 0xdd, 0xa9, 0xb4, 0xe9, 0x1e, 0x69, 0x27, - 0x8c, 0x93, 0x1b, 0x24, 0xb9, 0x17, 0x46, 0x77, 0x99, 0x8f, 0x7d, 0x4c, 0x4b, 0xe4, 0x95, 0xa2, - 0xb0, 0x4e, 0x47, 0x6d, 0x20, 0x76, 0xb8, 0xb3, 0x5e, 0x67, 0x9e, 0xf3, 0xb1, 0x74, 0xee, 0x5c, - 0xe1, 0x60, 0x2c, 0xf1, 0x92, 0x74, 0xbd, 0xb1, 0xc2, 0xbc, 0xe0, 0x19, 0xd2, 0xf5, 0xc6, 0x0a, - 0x96, 0x78, 0x14, 0x76, 0xbf, 0xfd, 0x33, 0x55, 0xe6, 0x44, 0xa2, 0x5b, 0x8f, 0x97, 0x7c, 0xfe, - 0xe7, 0x3e, 0xcc, 0xa8, 0xf7, 0x87, 0x78, 0x86, 0xc5, 0x78, 0x76, 0xba, 0xcc, 0x23, 0xbd, 0xb9, - 0x89, 0x1a, 0x55, 0x28, 0xee, 0x7a, 0x86, 0x27, 0xee, 0xaa, 0xc5, 0x48, 0x07, 0x30, 0x53, 0x98, - 0x1a, 0x7d, 0x11, 0x6a, 0x71, 0x67, 0xd3, 0x0d, 0x77, 0x1d, 0x2f, 0x60, 0xae, 0x6a, 0xfd, 0xc9, - 0x59, 0x89, 0xc0, 0x29, 0x0d, 0x6a, 0xc0, 0x98, 0x23, 0x5f, 0x5b, 0x46, 0x65, 0x2e, 0x10, 0xab, - 0x67, 0x96, 0x99, 0x1f, 0x53, 0xbd, 0xaf, 0xac, 0xb8, 0xcc, 0x7d, 0x06, 0x4e, 0x74, 0xcd, 0x92, - 0xbe, 0xa2, 0xd2, 0x7e, 0x3c, 0x04, 0x35, 0xe5, 0x1e, 0x42, 0x8b, 0xa6, 0x07, 0xf0, 0xf1, 0xac, - 0x07, 0x70, 0x8c, 0xae, 0xe8, 0xba, 0xd3, 0xef, 0x4b, 0x39, 0xaf, 0x58, 0x3e, 0x57, 0x28, 0x16, - 0xe5, 0x2f, 0x87, 0xf4, 0xf1, 0xc6, 0x67, 0xba, 0x51, 0x18, 0x3a, 0x76, 0xa3, 0x50, 0xf2, 0xa9, - 0x22, 0xba, 0x25, 0x68, 0x87, 0xee, 0x7a, 0x23, 0xfb, 0x1e, 0x47, 0x83, 0x02, 0x31, 0xc7, 0x31, - 0x63, 0x8e, 0xaa, 0x79, 0x66, 0xcc, 0x8d, 0x3e, 0x90, 0x31, 0x27, 0x8b, 0xe3, 0x94, 0x13, 0xda, - 0x83, 0x13, 0x2d, 0xf3, 0x71, 0x15, 0x75, 0xe1, 0xe3, 0x85, 0x3e, 0x1e, 0x37, 0xe9, 0x68, 0x89, - 0xe4, 0x57, 0xb2, 0xfc, 0x70, 0x77, 0x15, 0xe8, 0x35, 0x18, 0x7b, 0x27, 0x8c, 0x57, 0x7c, 0x27, - 0x8e, 0x85, 0xa6, 0x93, 0xc1, 0xf5, 0x63, 0x6f, 0xde, 0x6c, 0x32, 0xf8, 0x11, 0x7f, 0x55, 0x5c, - 0xfe, 0xc5, 0xaa, 0x80, 0xfd, 0x23, 0xee, 0x88, 0x12, 0x9b, 0x53, 0x12, 0x77, 0xfc, 0x41, 0xe6, - 0x95, 0xbe, 0x69, 0xec, 0x97, 0x1f, 0x82, 0x0b, 0xf4, 0x77, 0x2d, 0xe6, 0x02, 0xdd, 0x20, 0xbb, - 0x6d, 0xdf, 0x49, 0x06, 0x19, 0x27, 0xf8, 0x45, 0x18, 0x4b, 0x44, 0x2d, 0xe5, 0x92, 0x61, 0x6b, - 0xcd, 0x62, 0x2e, 0x61, 0xa5, 0x94, 0x24, 0x14, 0x2b, 0x86, 0xf6, 0x6f, 0xf3, 0xaf, 0x20, 0x31, - 0x03, 0xdf, 0xe5, 0xdd, 0x30, 0x77, 0x79, 0xcf, 0x96, 0xee, 0x49, 0xaf, 0xdd, 0x9e, 0xd9, 0x7e, - 0x66, 0x39, 0x7e, 0xf8, 0x3d, 0xf2, 0xf6, 0x75, 0x30, 0x9f, 0x9a, 0x41, 0xaf, 0xf3, 0x28, 0x5b, - 0xae, 0x48, 0x9f, 0xeb, 0x33, 0xc2, 0xd6, 0xfe, 0x5e, 0x05, 0x4e, 0xe5, 0x3d, 0x39, 0x8f, 0x5c, - 0x98, 0x68, 0x6b, 0xd6, 0x7c, 0xb9, 0x04, 0x0a, 0xba, 0xfd, 0x9f, 0xda, 0x50, 0x3a, 0x14, 0x1b, - 0x5c, 0xd1, 0x26, 0x4c, 0x90, 0x3d, 0xaf, 0xa5, 0x9c, 0x3c, 0x95, 0x3e, 0x35, 0x9b, 0xaa, 0x63, - 0x55, 0xe3, 0x82, 0x0d, 0x9e, 0x03, 0xc8, 0xd4, 0x6e, 0xff, 0x53, 0x0b, 0x1e, 0xeb, 0x91, 0x62, - 0x81, 0x56, 0x77, 0x8f, 0x79, 0x41, 0xc5, 0x3b, 0x46, 0xaa, 0x3a, 0xee, 0x1b, 0xc5, 0x02, 0x8b, - 0x36, 0x01, 0xb8, 0x6f, 0x93, 0xbd, 0xe9, 0x5a, 0x29, 0x13, 0x80, 0xd0, 0x75, 0xa1, 0x59, 0xbb, - 0xeb, 0xaa, 0x5e, 0x71, 0xd5, 0xb8, 0xda, 0xdf, 0xad, 0xc2, 0x30, 0x7f, 0x56, 0xb2, 0x01, 0xa3, - 0x3b, 0x3c, 0x91, 0x63, 0x7f, 0x79, 0x24, 0x53, 0x6b, 0x8d, 0x03, 0xb0, 0x64, 0x83, 0xae, 0xc3, - 0x49, 0x6a, 0x1a, 0x78, 0x8e, 0x5f, 0x27, 0xbe, 0xb3, 0x2f, 0xcd, 0x7f, 0x9e, 0xc4, 0x5b, 0xe6, - 0x9b, 0x3d, 0xb9, 0xde, 0x4d, 0x82, 0xf3, 0xca, 0xa1, 0x37, 0xba, 0xf2, 0x31, 0xf1, 0x04, 0x99, - 0xea, 0x8a, 0xd4, 0xf1, 0x39, 0x99, 0xd0, 0x6b, 0x30, 0xd9, 0xee, 0xda, 0xe8, 0x68, 0xef, 0x11, - 0x9a, 0x9b, 0x1b, 0x93, 0x16, 0xd5, 0x61, 0x26, 0xee, 0xb0, 0xe3, 0xe0, 0x8d, 0x9d, 0x88, 0xc4, - 0x3b, 0xa1, 0xef, 0x8a, 0x07, 0xb5, 0x94, 0x51, 0xd7, 0xcc, 0xe0, 0x71, 0x57, 0x09, 0xca, 0x65, - 0xcb, 0xf1, 0xfc, 0x4e, 0x44, 0x52, 0x2e, 0x23, 0x26, 0x97, 0xb5, 0x0c, 0x1e, 0x77, 0x95, 0xb0, - 0xff, 0xd4, 0x82, 0x93, 0x39, 0x31, 0x13, 0x3c, 0x8e, 0x6f, 0xdb, 0x8b, 0x13, 0x95, 0xaa, 0x59, - 0x8b, 0xe3, 0xe3, 0x70, 0xac, 0x28, 0xa8, 0x14, 0xf2, 0xdd, 0x6b, 0xf6, 0x2c, 0x52, 0x9c, 0x0a, - 0x0b, 0x6c, 0x7f, 0xd9, 0x95, 0xd4, 0xbb, 0xf8, 0x43, 0x3d, 0xdf, 0xc5, 0x7f, 0x0a, 0x86, 0xb7, - 0x95, 0xa7, 0x40, 0x33, 0x66, 0xb8, 0xaf, 0x80, 0xe3, 0xec, 0x6f, 0x55, 0x61, 0x3a, 0x13, 0x3b, - 0x45, 0x1b, 0x92, 0x79, 0xbe, 0x9f, 0xb9, 0x37, 0x56, 0x48, 0x7b, 0x27, 0xe7, 0x09, 0xff, 0x67, - 0xcc, 0x37, 0x7e, 0xd3, 0x36, 0x2f, 0xd7, 0x8d, 0x67, 0xcc, 0xca, 0xa6, 0x8f, 0x7f, 0x0a, 0x86, - 0xda, 0xa1, 0x7a, 0x8c, 0x52, 0x09, 0x3d, 0x5e, 0xae, 0x37, 0xc2, 0xd0, 0xc7, 0x0c, 0x89, 0x9e, - 0x16, 0xbd, 0xcf, 0xb8, 0x48, 0xb1, 0xe3, 0x86, 0xb1, 0x36, 0x04, 0xcf, 0xc2, 0xe8, 0x5d, 0xb2, - 0x1f, 0x79, 0xc1, 0x76, 0xd6, 0x41, 0x7c, 0x95, 0x83, 0xb1, 0xc4, 0x9b, 0x29, 0xe2, 0x47, 0x07, - 0x9c, 0x22, 0x7e, 0xac, 0x30, 0xf8, 0xf3, 0x37, 0x2d, 0x98, 0x66, 0x29, 0xee, 0xc4, 0xed, 0x53, - 0x2f, 0x0c, 0x06, 0xb8, 0x24, 0x3e, 0x05, 0xc3, 0x11, 0xad, 0x2c, 0x9b, 0xdd, 0x99, 0xb5, 0x00, - 0x73, 0x1c, 0x7a, 0x42, 0xbc, 0x93, 0x4e, 0x3f, 0xdf, 0x04, 0xcf, 0x96, 0x9b, 0x3e, 0x78, 0xce, - 0x2e, 0x15, 0x60, 0xd2, 0xf6, 0x3d, 0xde, 0xd8, 0xd4, 0x1f, 0xf4, 0x61, 0xb9, 0x54, 0x90, 0xdb, - 0xb8, 0x87, 0x75, 0xa9, 0x20, 0x9f, 0xf9, 0xf1, 0xc6, 0xe7, 0xff, 0xa8, 0xc0, 0xd9, 0xdc, 0x72, - 0xe9, 0xb1, 0xd2, 0x9a, 0x71, 0xac, 0x74, 0x29, 0x73, 0xac, 0x64, 0x1f, 0x5f, 0xfa, 0xe1, 0x1c, - 0x34, 0xe5, 0x9f, 0x00, 0x55, 0x1f, 0xd9, 0x09, 0xd0, 0x50, 0x59, 0x43, 0x61, 0xb8, 0xc0, 0x50, - 0xf8, 0xa9, 0x05, 0x8f, 0xe7, 0x0e, 0xd8, 0x87, 0xec, 0x0e, 0x47, 0x6e, 0x1b, 0x7b, 0x18, 0xce, - 0x7f, 0xbb, 0xda, 0xa3, 0x4f, 0xcc, 0x84, 0x3e, 0x4f, 0x35, 0x0e, 0x43, 0xc6, 0xc2, 0x00, 0x9a, - 0xe0, 0xda, 0x86, 0xc3, 0xb0, 0xc2, 0xa2, 0x58, 0xbb, 0x03, 0xc1, 0x1b, 0xb9, 0xfa, 0x80, 0x93, - 0x69, 0xc1, 0x74, 0xde, 0xe9, 0x17, 0x68, 0x33, 0x77, 0x23, 0xd0, 0x1d, 0x6d, 0x4b, 0x54, 0x7d, - 0x90, 0x2d, 0xd1, 0x44, 0xfe, 0x76, 0x08, 0x2d, 0xc1, 0xf4, 0xae, 0x17, 0xb0, 0xf7, 0xd2, 0x4c, - 0x0b, 0x44, 0x5d, 0x3b, 0xbb, 0x6e, 0xa2, 0x71, 0x96, 0x7e, 0xee, 0x35, 0x98, 0x7c, 0x70, 0xff, - 0xca, 0xfb, 0x55, 0xf8, 0xb9, 0x63, 0x14, 0x02, 0x5f, 0x09, 0x8c, 0xef, 0xa2, 0xad, 0x04, 0x5d, - 0xdf, 0xa6, 0x01, 0xa7, 0xb6, 0x3a, 0xbe, 0xbf, 0xcf, 0x02, 0x32, 0x88, 0x2b, 0x29, 0x84, 0x75, - 0xa7, 0x5e, 0x32, 0x5d, 0xcb, 0xa1, 0xc1, 0xb9, 0x25, 0xd1, 0xe7, 0x00, 0x85, 0x9b, 0x2c, 0xe9, - 0xa3, 0x9b, 0x5e, 0x11, 0x66, 0x9f, 0xa0, 0x9a, 0x4e, 0xd4, 0x9b, 0x5d, 0x14, 0x38, 0xa7, 0x14, - 0xb5, 0xf5, 0xd8, 0x23, 0xa8, 0xaa, 0x59, 0x19, 0x5b, 0x0f, 0xeb, 0x48, 0x6c, 0xd2, 0xa2, 0xcb, - 0x70, 0xc2, 0xd9, 0x73, 0x3c, 0x9e, 0xde, 0x45, 0x32, 0xe0, 0xc6, 0x9e, 0xf2, 0x61, 0x2c, 0x65, - 0x09, 0x70, 0x77, 0x19, 0xd4, 0x36, 0x5c, 0x52, 0x3c, 0xbd, 0xf3, 0xeb, 0x0f, 0x20, 0xc1, 0xa5, - 0x9d, 0x54, 0xf6, 0x9f, 0x58, 0x74, 0xb9, 0xcb, 0x79, 0x62, 0xcc, 0x78, 0x8d, 0x5b, 0xbb, 0x19, - 0xd2, 0xfd, 0x1a, 0x37, 0xf3, 0xff, 0x9a, 0xb4, 0x5c, 0x34, 0xe2, 0x34, 0x9a, 0xd3, 0xb0, 0x2c, - 0xc5, 0x75, 0x28, 0x45, 0x81, 0xee, 0xc0, 0xa8, 0xeb, 0xed, 0x79, 0x71, 0x18, 0x95, 0x78, 0x05, - 0xb7, 0x2b, 0x42, 0x30, 0xd5, 0x95, 0x75, 0xce, 0x04, 0x4b, 0x6e, 0xf6, 0xdf, 0xa9, 0xc0, 0xa4, - 0xac, 0xef, 0xcd, 0x4e, 0xc8, 0x74, 0xd8, 0xa0, 0x16, 0xf1, 0x37, 0x8d, 0x45, 0x7c, 0xb1, 0xdc, - 0x9d, 0x30, 0xd6, 0xa8, 0x9e, 0x8b, 0xf7, 0xe7, 0x33, 0x8b, 0xf7, 0xc5, 0x7e, 0x98, 0x1e, 0xbf, - 0x68, 0xff, 0x3b, 0x0b, 0x4e, 0x18, 0xf4, 0x1f, 0x96, 0x0c, 0xc3, 0x79, 0x7d, 0xe9, 0xb1, 0x6a, - 0x7c, 0xb7, 0x92, 0xe9, 0x03, 0x5b, 0x2d, 0xbe, 0x06, 0x43, 0x3b, 0x4e, 0xe4, 0x96, 0xcb, 0x6e, - 0xd6, 0x55, 0x7c, 0xe1, 0x8a, 0x13, 0xb9, 0x5c, 0xe7, 0x5f, 0x50, 0x8f, 0xa0, 0x38, 0x91, 0x5b, - 0x18, 0xd8, 0xcc, 0x2a, 0x45, 0xaf, 0xc2, 0x48, 0xdc, 0x0a, 0xdb, 0x2a, 0x98, 0xec, 0x1c, 0x7f, - 0x20, 0x85, 0x42, 0x8e, 0x0e, 0xe6, 0x91, 0x59, 0x1d, 0x05, 0x63, 0x41, 0x3f, 0x47, 0xa0, 0xa6, - 0xaa, 0x1e, 0x60, 0x08, 0xed, 0xfb, 0x55, 0x38, 0x99, 0x23, 0x27, 0xe8, 0xe7, 0x8d, 0x51, 0x7b, - 0xad, 0x6f, 0x41, 0xfb, 0x80, 0xe3, 0xf6, 0xf3, 0x6c, 0x1f, 0xe4, 0x0a, 0xd9, 0x78, 0x80, 0xea, - 0x6f, 0xc5, 0x24, 0x5b, 0x3d, 0x05, 0x15, 0x57, 0x4f, 0xab, 0x7d, 0x44, 0x83, 0x4f, 0xab, 0x51, - 0xed, 0x1c, 0xe0, 0x37, 0x7e, 0x6f, 0x08, 0x4e, 0xe5, 0x5d, 0x3a, 0x45, 0xbf, 0x64, 0x65, 0x12, - 0x94, 0xbf, 0xd1, 0xff, 0xcd, 0x55, 0x9e, 0xb5, 0x5c, 0xa4, 0x64, 0x58, 0x30, 0x53, 0x96, 0x17, - 0x8e, 0xb6, 0xa8, 0x9d, 0x5d, 0x46, 0x88, 0x78, 0xa2, 0x79, 0xa9, 0x0f, 0x3e, 0xfb, 0x00, 0x4d, - 0x11, 0xb9, 0xea, 0xe3, 0xcc, 0x65, 0x04, 0x09, 0x2e, 0xbe, 0x8c, 0x20, 0xdb, 0x30, 0xb7, 0x0d, - 0xe3, 0x5a, 0xbf, 0x06, 0x28, 0x02, 0x1e, 0x5d, 0x90, 0xb4, 0x56, 0x0f, 0x50, 0x0c, 0xfe, 0x9e, - 0x05, 0x99, 0x88, 0x11, 0xe5, 0x6c, 0xb1, 0x7a, 0x3a, 0x5b, 0xce, 0xc1, 0x50, 0x14, 0xfa, 0x24, - 0x9b, 0x3c, 0x1b, 0x87, 0x3e, 0xc1, 0x0c, 0xa3, 0x5e, 0x42, 0xac, 0xf6, 0x7a, 0x09, 0x91, 0xee, - 0xc2, 0x7d, 0xb2, 0x47, 0xa4, 0xeb, 0x43, 0x29, 0xef, 0x6b, 0x14, 0x88, 0x39, 0xce, 0xfe, 0xfd, - 0x2a, 0x8c, 0x70, 0xff, 0xc2, 0x00, 0xd7, 0xe4, 0x86, 0xd8, 0xea, 0x97, 0xba, 0x04, 0xca, 0x5b, - 0xb3, 0x50, 0x77, 0x12, 0x87, 0x0b, 0x94, 0xea, 0x5b, 0xea, 0x1e, 0x40, 0x0b, 0x46, 0xef, 0xe7, - 0x32, 0x3b, 0x59, 0xe0, 0x3c, 0xb4, 0xb1, 0xd8, 0x01, 0x88, 0xd9, 0xab, 0x5b, 0x94, 0x87, 0x48, - 0x41, 0xf7, 0x52, 0xa9, 0x76, 0x34, 0x55, 0x31, 0xde, 0x9a, 0x34, 0xf7, 0x95, 0x42, 0x60, 0x8d, - 0xf7, 0xdc, 0x2b, 0x50, 0x53, 0xc4, 0x45, 0x66, 0xfe, 0x84, 0x2e, 0x92, 0x7f, 0x05, 0xa6, 0x33, - 0x75, 0xf5, 0xb5, 0x4b, 0xf8, 0xa1, 0x05, 0x27, 0xba, 0x9e, 0x6f, 0x45, 0xef, 0x59, 0x70, 0xca, - 0xcf, 0x71, 0x2c, 0x15, 0x47, 0xec, 0xf4, 0x74, 0x49, 0xa9, 0x2d, 0x42, 0x1e, 0x16, 0xe7, 0xd6, - 0x26, 0x93, 0x6a, 0x56, 0xf2, 0x93, 0x6a, 0xda, 0xdf, 0xb3, 0x40, 0x7c, 0xb2, 0x81, 0x9b, 0x3f, - 0xeb, 0xa6, 0xf9, 0xf3, 0xb1, 0x32, 0x32, 0xd0, 0xc3, 0xee, 0xf9, 0x8f, 0x16, 0x20, 0x4e, 0x90, - 0x7d, 0x7a, 0x8f, 0x7b, 0xe9, 0x34, 0x6b, 0x3d, 0x15, 0x1a, 0x85, 0xc1, 0x1a, 0x55, 0x9f, 0xf9, - 0xd5, 0xd5, 0x93, 0x55, 0xe5, 0x5e, 0xab, 0xaf, 0x96, 0x78, 0xad, 0xfe, 0x77, 0xab, 0x90, 0x0d, - 0xaa, 0x40, 0x5f, 0x81, 0x89, 0x96, 0xd3, 0x76, 0x36, 0x3d, 0xdf, 0x4b, 0x3c, 0x12, 0x97, 0x3b, - 0x27, 0x5a, 0xd1, 0x4a, 0x08, 0x3f, 0xaf, 0x06, 0xc1, 0x06, 0x47, 0xb4, 0x00, 0xd0, 0x8e, 0xbc, - 0x3d, 0xcf, 0x27, 0xdb, 0xcc, 0xe8, 0x60, 0x71, 0x95, 0xfc, 0xd0, 0x43, 0x42, 0xb1, 0x46, 0x91, - 0x13, 0xc3, 0x57, 0x7d, 0x14, 0x31, 0x7c, 0x43, 0x7d, 0xc6, 0xf0, 0x0d, 0x97, 0x8a, 0xe1, 0xc3, - 0x70, 0x46, 0xba, 0x67, 0xe9, 0xff, 0x35, 0xcf, 0x27, 0x3c, 0x85, 0x9e, 0x88, 0xbc, 0x9c, 0x3b, - 0x3c, 0x98, 0x3f, 0x83, 0x73, 0x29, 0x70, 0x8f, 0x92, 0x76, 0x07, 0x4e, 0x36, 0x49, 0xe4, 0xb1, - 0x0c, 0x47, 0x6e, 0x3a, 0xfd, 0xbe, 0x04, 0xb5, 0x28, 0x33, 0xf3, 0xfb, 0xbc, 0x04, 0xa7, 0xe5, - 0xc9, 0x90, 0x33, 0x3d, 0x65, 0x69, 0xff, 0xf5, 0x0a, 0x8c, 0x8a, 0xe0, 0xa5, 0x01, 0xae, 0x22, - 0x57, 0x8d, 0x9d, 0xdd, 0xb3, 0x45, 0x33, 0x97, 0x35, 0xa7, 0xe7, 0x9e, 0xae, 0x99, 0xd9, 0xd3, - 0x3d, 0x5f, 0x8e, 0xdd, 0xf1, 0xbb, 0xb9, 0xdf, 0xa9, 0xc0, 0x94, 0x19, 0xc4, 0x35, 0xc0, 0xe1, - 0x78, 0x0b, 0x46, 0x63, 0x11, 0xd9, 0x54, 0x29, 0x13, 0xd6, 0x91, 0xfd, 0xa4, 0xe9, 0xcb, 0xf7, - 0x22, 0x96, 0x49, 0xb2, 0xcb, 0x0d, 0x9e, 0xaa, 0x3e, 0x8a, 0xe0, 0x29, 0xfb, 0xdf, 0x33, 0x95, - 0xaa, 0x0f, 0xe0, 0xc0, 0x17, 0x84, 0x37, 0x4d, 0xd5, 0x7b, 0xa1, 0x94, 0x1c, 0x88, 0xc6, 0xf5, - 0x58, 0x18, 0xfe, 0xb5, 0x05, 0xe3, 0x82, 0x70, 0xe0, 0xcd, 0xff, 0x9c, 0xd9, 0xfc, 0xa7, 0x4b, - 0x35, 0xbf, 0x47, 0xbb, 0xff, 0x41, 0x45, 0xb5, 0xbb, 0x21, 0x1e, 0x23, 0x2d, 0xcc, 0xa6, 0x38, - 0xd6, 0x8e, 0xc2, 0x24, 0x6c, 0x85, 0xbe, 0x58, 0xdc, 0x9f, 0x48, 0x83, 0xdd, 0x39, 0xfc, 0x48, - 0xfb, 0x8d, 0x15, 0x35, 0x8b, 0xe3, 0x0e, 0xa3, 0x44, 0x2c, 0x4e, 0x79, 0x4f, 0xa1, 0x6e, 0xca, - 0xa7, 0xa6, 0x29, 0x4c, 0xdc, 0x11, 0xe9, 0xf7, 0x89, 0xd5, 0x34, 0x7a, 0x5d, 0x71, 0xc2, 0x1a, - 0x57, 0x19, 0x52, 0xc9, 0x6a, 0x18, 0x36, 0x5d, 0xa7, 0x37, 0x04, 0x1c, 0x2b, 0x0a, 0xfb, 0x15, - 0xa6, 0x5d, 0xd9, 0xf0, 0xf4, 0x17, 0x92, 0xfe, 0x2b, 0x23, 0x6a, 0x60, 0x99, 0x6f, 0xe4, 0x06, - 0x0c, 0xd3, 0x2e, 0xca, 0xed, 0x5f, 0x39, 0x55, 0x46, 0x9b, 0xa0, 0x87, 0x90, 0x45, 0x49, 0x8c, - 0x39, 0x1b, 0x44, 0xba, 0xfc, 0xed, 0xaf, 0x94, 0xd6, 0x8e, 0x7d, 0x78, 0xd8, 0x59, 0x82, 0x1a, - 0x96, 0x97, 0x63, 0xbd, 0x91, 0xcd, 0x80, 0xb9, 0x22, 0x11, 0x38, 0xa5, 0x41, 0x8b, 0xc2, 0x4a, - 0x37, 0x5f, 0xaa, 0x95, 0x56, 0xba, 0x1c, 0x12, 0xcd, 0x4c, 0xbf, 0x08, 0xe3, 0x2a, 0x07, 0x78, - 0x83, 0xa7, 0x72, 0xae, 0x71, 0xcb, 0x65, 0x35, 0x05, 0x63, 0x9d, 0x06, 0xad, 0xc3, 0x49, 0x57, - 0x45, 0xd0, 0x36, 0x3a, 0x9b, 0xbe, 0xd7, 0xa2, 0x45, 0xf9, 0xed, 0x95, 0xc7, 0x0e, 0x0f, 0xe6, - 0x4f, 0xd6, 0xbb, 0xd1, 0x38, 0xaf, 0x0c, 0xda, 0x80, 0xe9, 0x98, 0xe7, 0x3a, 0x97, 0x61, 0x92, - 0x22, 0x45, 0xdc, 0x73, 0xd2, 0xd1, 0xdf, 0x34, 0xd1, 0x47, 0x0c, 0xc4, 0x35, 0x82, 0x0c, 0xac, - 0xcc, 0xb2, 0x40, 0x6f, 0xc0, 0x94, 0xaf, 0x3f, 0xd7, 0xd4, 0x10, 0x81, 0xc4, 0x2a, 0xfc, 0xc1, - 0x78, 0xcc, 0xa9, 0x81, 0x33, 0xd4, 0xe8, 0x2d, 0x98, 0xd5, 0x21, 0xe2, 0xfe, 0xbc, 0x13, 0x6c, - 0x93, 0x58, 0x24, 0x59, 0x7e, 0xe2, 0xf0, 0x60, 0x7e, 0xf6, 0x5a, 0x0f, 0x1a, 0xdc, 0xb3, 0x34, - 0x7a, 0x15, 0x26, 0xe4, 0x48, 0x6a, 0x41, 0xc5, 0x69, 0xe0, 0x8d, 0x86, 0xc3, 0x06, 0xe5, 0x07, - 0x3b, 0xcf, 0xf8, 0x1a, 0x2d, 0xac, 0x2d, 0xa7, 0xe8, 0xab, 0x30, 0xa1, 0xb7, 0x51, 0xe8, 0xc8, - 0x4f, 0x94, 0x7f, 0x02, 0x4b, 0x2c, 0xcb, 0xaa, 0xe5, 0x3a, 0x0e, 0x1b, 0xbc, 0xed, 0x9b, 0x30, - 0xd2, 0xdc, 0x8f, 0x5b, 0x89, 0xff, 0xb0, 0x1e, 0x29, 0x6e, 0xc1, 0x74, 0xe6, 0x35, 0x5f, 0xf5, - 0x2c, 0xb4, 0xf5, 0xb0, 0x9e, 0x85, 0xb6, 0xbf, 0x6e, 0xc1, 0xf0, 0x86, 0xe3, 0x15, 0x3f, 0x4f, - 0x50, 0xa6, 0xc9, 0xe8, 0x65, 0x18, 0x21, 0x5b, 0x5b, 0xa4, 0x25, 0x9f, 0x99, 0x7e, 0x52, 0x9a, - 0x33, 0xab, 0x0c, 0x4a, 0xa7, 0x26, 0xab, 0x8c, 0xff, 0xc5, 0x82, 0xd8, 0xfe, 0x4f, 0x16, 0xc0, - 0x46, 0xe8, 0xcb, 0xa3, 0x9a, 0x82, 0x96, 0x2c, 0x77, 0x3d, 0x94, 0xf0, 0x4c, 0xce, 0x43, 0x09, - 0x28, 0x65, 0x98, 0xf3, 0x4c, 0x82, 0xea, 0x4d, 0xb5, 0x54, 0x6f, 0x86, 0xfa, 0xe9, 0xcd, 0x37, - 0x2d, 0x10, 0x11, 0x33, 0x25, 0x24, 0xc1, 0x95, 0xc9, 0xcd, 0x8d, 0xcc, 0x18, 0xcf, 0x95, 0xb9, - 0x7c, 0x22, 0xf2, 0x61, 0x28, 0xd9, 0x34, 0xb2, 0x60, 0x18, 0x5c, 0xe9, 0x16, 0x7e, 0x9c, 0xa3, - 0xaf, 0x33, 0xdb, 0xb1, 0xb8, 0x5d, 0x7d, 0x65, 0x00, 0x63, 0xb9, 0xbf, 0x29, 0x63, 0x95, 0x0b, - 0x4a, 0xcf, 0xfd, 0x2d, 0x11, 0x38, 0xa5, 0x41, 0xcf, 0xc2, 0x68, 0xdc, 0xd9, 0x64, 0xe4, 0x99, - 0xf0, 0x99, 0x26, 0x07, 0x63, 0x89, 0xb7, 0x7f, 0x11, 0x81, 0xd1, 0x35, 0x23, 0xef, 0x94, 0xf5, - 0xd0, 0xf3, 0x4e, 0xbd, 0x0d, 0x63, 0x64, 0xb7, 0x9d, 0xec, 0xd7, 0xbd, 0xa8, 0x5c, 0xf6, 0xbf, - 0x55, 0x41, 0xdd, 0xcd, 0x5d, 0x62, 0xb0, 0xe2, 0xd8, 0x23, 0x8b, 0x58, 0xf5, 0x43, 0x91, 0x45, - 0x6c, 0xe8, 0x2f, 0x24, 0x8b, 0xd8, 0x5b, 0x30, 0xba, 0xed, 0x25, 0x98, 0xb4, 0x43, 0x71, 0xdf, - 0xb0, 0xe0, 0x0c, 0xec, 0x32, 0x27, 0xee, 0x4e, 0x0d, 0x24, 0x10, 0x58, 0xb2, 0x43, 0x1b, 0x30, - 0xc2, 0xf7, 0x1d, 0x22, 0x31, 0xd7, 0x27, 0xca, 0x78, 0x64, 0xba, 0x73, 0x54, 0x89, 0x18, 0x29, - 0xc1, 0x4b, 0x66, 0x0d, 0x1b, 0xfd, 0xe0, 0x59, 0xc3, 0x54, 0xae, 0xaf, 0xb1, 0x87, 0x95, 0xeb, - 0xcb, 0xc8, 0x99, 0x56, 0x1b, 0x44, 0xce, 0xb4, 0x6f, 0x5a, 0x70, 0xba, 0x9d, 0x97, 0x6f, 0x50, - 0x64, 0xed, 0xfa, 0xcc, 0x03, 0xe4, 0x5f, 0x34, 0xaa, 0x66, 0x77, 0xc0, 0x72, 0xc9, 0x70, 0x7e, - 0xc5, 0x32, 0xf9, 0xda, 0xf8, 0x07, 0x4f, 0xbe, 0x36, 0xe8, 0xf4, 0x5e, 0x69, 0x2a, 0xb6, 0xc9, - 0x81, 0xa4, 0x62, 0x9b, 0x7a, 0x88, 0xa9, 0xd8, 0xb4, 0x24, 0x6a, 0xd3, 0x0f, 0x37, 0x89, 0xda, - 0x0e, 0x8c, 0xbb, 0xe1, 0xbd, 0xe0, 0x9e, 0x13, 0xb9, 0x4b, 0x8d, 0x75, 0x91, 0xb3, 0xab, 0x20, - 0x45, 0x44, 0x3d, 0x2d, 0x60, 0xd4, 0xc0, 0x5d, 0x8f, 0x29, 0x12, 0xeb, 0xac, 0x45, 0x3a, 0xb9, - 0x13, 0x1f, 0x30, 0x9d, 0x9c, 0x91, 0x94, 0x0d, 0x0d, 0x22, 0x29, 0xdb, 0x57, 0xd8, 0x8d, 0xf1, - 0x2d, 0x6f, 0xfb, 0xba, 0xd3, 0x9e, 0x3d, 0x59, 0xa6, 0x86, 0x15, 0x49, 0xde, 0x5d, 0x83, 0x42, - 0xe1, 0x94, 0x69, 0x77, 0xda, 0xb7, 0x53, 0x8f, 0x3a, 0xed, 0xdb, 0xe9, 0x01, 0xa6, 0x7d, 0x3b, - 0xf3, 0x48, 0xd3, 0xbe, 0x3d, 0xf6, 0x17, 0x92, 0xf6, 0xed, 0xaf, 0xc2, 0xd9, 0xe3, 0x3f, 0x47, - 0x9a, 0x52, 0xb8, 0x91, 0xba, 0x0c, 0x32, 0x29, 0x85, 0x99, 0xa9, 0xa3, 0x51, 0x95, 0xce, 0x3e, - 0xf5, 0x3d, 0x0b, 0x1e, 0xeb, 0x91, 0xa6, 0xa5, 0xf4, 0xdd, 0x85, 0x36, 0x4c, 0xb7, 0xcd, 0xa2, - 0xa5, 0xef, 0x17, 0x19, 0x69, 0x61, 0x54, 0x6c, 0x5c, 0x06, 0x81, 0xb3, 0xec, 0x97, 0x3f, 0xf6, - 0xe3, 0xf7, 0xcf, 0x7e, 0xe4, 0x27, 0xef, 0x9f, 0xfd, 0xc8, 0x1f, 0xbd, 0x7f, 0xf6, 0x23, 0xbf, - 0x70, 0x78, 0xd6, 0xfa, 0xf1, 0xe1, 0x59, 0xeb, 0x27, 0x87, 0x67, 0xad, 0x3f, 0x3d, 0x3c, 0x6b, - 0x7d, 0xf3, 0xcf, 0xce, 0x7e, 0xe4, 0x0b, 0x95, 0xbd, 0x8b, 0xff, 0x2f, 0x00, 0x00, 0xff, 0xff, - 0xe9, 0x83, 0x6c, 0x69, 0x8f, 0xb5, 0x00, 0x00, + // 10139 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xec, 0xbd, 0x7d, 0x8c, 0x24, 0xc7, + 0x75, 0x18, 0xae, 0x9e, 0xd9, 0xaf, 0x79, 0xfb, 0x79, 0x75, 0x1f, 0x5c, 0xae, 0xc9, 0xdb, 0x53, + 0x53, 0xa4, 0x8e, 0xe4, 0x71, 0x97, 0x77, 0x24, 0x45, 0x4a, 0xe4, 0x8f, 0xd2, 0xee, 0xce, 0xee, + 0xdd, 0xea, 0x6e, 0xef, 0x86, 0x35, 0x7b, 0x77, 0x94, 0x44, 0x48, 0xea, 0x9d, 0xae, 0xdd, 0x6d, + 0x5d, 0x6f, 0xf7, 0xb0, 0xbb, 0x67, 0xef, 0x56, 0xfa, 0x19, 0x70, 0x64, 0xc6, 0x46, 0x60, 0xc1, + 0x51, 0x10, 0x08, 0x09, 0xe0, 0x7c, 0x28, 0x01, 0x1c, 0x38, 0x31, 0x6c, 0x45, 0x91, 0x12, 0x48, + 0xb1, 0x6c, 0x20, 0x88, 0xed, 0x28, 0x08, 0x12, 0x48, 0xff, 0xc4, 0x86, 0x0d, 0x6c, 0xcc, 0x75, + 0xfe, 0x4b, 0xfe, 0x08, 0x90, 0xbf, 0x72, 0x30, 0x92, 0xa0, 0x3e, 0xbb, 0xaa, 0xa7, 0x67, 0xbb, + 0xe7, 0x78, 0x73, 0xa6, 0x8c, 0xfc, 0x37, 0xf3, 0xde, 0xab, 0x57, 0x1f, 0x5d, 0xf5, 0xea, 0xbd, + 0x57, 0xaf, 0x5e, 0xc1, 0x85, 0x3b, 0xaf, 0xc5, 0x0b, 0x5e, 0xb8, 0x78, 0xa7, 0xb3, 0x45, 0xa2, + 0x80, 0x24, 0x24, 0x5e, 0x6c, 0xdf, 0xd9, 0x59, 0x74, 0xda, 0xde, 0xe2, 0xfe, 0xc5, 0xc5, 0x1d, + 0x12, 0x90, 0xc8, 0x49, 0x88, 0xbb, 0xd0, 0x8e, 0xc2, 0x24, 0x44, 0x4f, 0x70, 0xea, 0x85, 0x94, + 0x7a, 0xa1, 0x7d, 0x67, 0x67, 0xc1, 0x69, 0x7b, 0x0b, 0xfb, 0x17, 0xe7, 0x5e, 0xd8, 0xf1, 0x92, + 0xdd, 0xce, 0xd6, 0x42, 0x2b, 0xdc, 0x5b, 0xdc, 0x09, 0x77, 0xc2, 0x45, 0x56, 0x68, 0xab, 0xb3, + 0xcd, 0xfe, 0xb1, 0x3f, 0xec, 0x17, 0x67, 0x36, 0x77, 0xa9, 0x77, 0xd5, 0x11, 0x89, 0xc3, 0x4e, + 0xd4, 0x22, 0xd9, 0x06, 0x1c, 0x53, 0x26, 0x5e, 0xdc, 0x23, 0x89, 0x93, 0xd3, 0xe8, 0xb9, 0x17, + 0xf2, 0xcb, 0x44, 0x9d, 0x20, 0xf1, 0xf6, 0xba, 0xab, 0x78, 0xf9, 0x78, 0xf2, 0xb8, 0xb5, 0x4b, + 0xf6, 0x9c, 0xae, 0x52, 0x17, 0xf3, 0x4b, 0x75, 0x12, 0xcf, 0x5f, 0xf4, 0x82, 0x24, 0x4e, 0xa2, + 0x6c, 0x11, 0xfb, 0x8f, 0x2c, 0x38, 0xb7, 0x74, 0xbb, 0xb9, 0xea, 0x3b, 0x71, 0xe2, 0xb5, 0x96, + 0xfd, 0xb0, 0x75, 0xa7, 0x99, 0x84, 0x11, 0xb9, 0x15, 0xfa, 0x9d, 0x3d, 0xd2, 0x64, 0x03, 0x80, + 0x2e, 0xc0, 0xd8, 0x3e, 0xfb, 0xbf, 0x5e, 0x9f, 0xb5, 0xce, 0x59, 0xe7, 0x6b, 0xcb, 0x33, 0x3f, + 0x3e, 0x9c, 0xff, 0xc8, 0xd1, 0xe1, 0xfc, 0xd8, 0x2d, 0x01, 0xc7, 0x8a, 0x02, 0x3d, 0x03, 0x23, + 0xdb, 0xf1, 0xe6, 0x41, 0x9b, 0xcc, 0x56, 0x18, 0xed, 0x94, 0xa0, 0x1d, 0x59, 0x6b, 0x52, 0x28, + 0x16, 0x58, 0xb4, 0x08, 0xb5, 0xb6, 0x13, 0x25, 0x5e, 0xe2, 0x85, 0xc1, 0x6c, 0xf5, 0x9c, 0x75, + 0x7e, 0x78, 0xf9, 0x84, 0x20, 0xad, 0x35, 0x24, 0x02, 0xa7, 0x34, 0xb4, 0x19, 0x11, 0x71, 0xdc, + 0x1b, 0x81, 0x7f, 0x30, 0x3b, 0x74, 0xce, 0x3a, 0x3f, 0x96, 0x36, 0x03, 0x0b, 0x38, 0x56, 0x14, + 0xf6, 0x0f, 0x2a, 0x30, 0xb6, 0xb4, 0xbd, 0xed, 0x05, 0x5e, 0x72, 0x80, 0xbe, 0x0c, 0x13, 0x41, + 0xe8, 0x12, 0xf9, 0x9f, 0xf5, 0x62, 0xfc, 0xd2, 0x73, 0x0b, 0xc7, 0x4d, 0xa5, 0x85, 0xeb, 0x5a, + 0x89, 0xe5, 0x99, 0xa3, 0xc3, 0xf9, 0x09, 0x1d, 0x82, 0x0d, 0x8e, 0xe8, 0x1d, 0x18, 0x6f, 0x87, + 0xae, 0xaa, 0xa0, 0xc2, 0x2a, 0x78, 0xf6, 0xf8, 0x0a, 0x1a, 0x69, 0x81, 0xe5, 0xe9, 0xa3, 0xc3, + 0xf9, 0x71, 0x0d, 0x80, 0x75, 0x76, 0xc8, 0x87, 0x69, 0xfa, 0x37, 0x48, 0x3c, 0x55, 0x43, 0x95, + 0xd5, 0xf0, 0x42, 0x71, 0x0d, 0x5a, 0xa1, 0xe5, 0x93, 0x47, 0x87, 0xf3, 0xd3, 0x19, 0x20, 0xce, + 0xb2, 0xb6, 0xbf, 0x0a, 0x53, 0x4b, 0x49, 0xe2, 0xb4, 0x76, 0x89, 0xcb, 0xbf, 0x2f, 0x7a, 0x19, + 0x86, 0x02, 0x67, 0x8f, 0x88, 0xaf, 0x7f, 0x4e, 0x0c, 0xfb, 0xd0, 0x75, 0x67, 0x8f, 0xdc, 0x3f, + 0x9c, 0x9f, 0xb9, 0x19, 0x78, 0xef, 0x76, 0xc4, 0x9c, 0xa1, 0x30, 0xcc, 0xa8, 0xd1, 0x25, 0x00, + 0x97, 0xec, 0x7b, 0x2d, 0xd2, 0x70, 0x92, 0x5d, 0x31, 0x1b, 0x90, 0x28, 0x0b, 0x75, 0x85, 0xc1, + 0x1a, 0x95, 0xfd, 0x75, 0x0b, 0x6a, 0x4b, 0xfb, 0xa1, 0xe7, 0x36, 0x42, 0x37, 0x46, 0x1d, 0x98, + 0x6e, 0x47, 0x64, 0x9b, 0x44, 0x0a, 0x34, 0x6b, 0x9d, 0xab, 0x9e, 0x1f, 0xbf, 0x74, 0xa9, 0xa0, + 0xdf, 0x66, 0xa1, 0xd5, 0x20, 0x89, 0x0e, 0x96, 0x1f, 0x13, 0x55, 0x4f, 0x67, 0xb0, 0x38, 0x5b, + 0x87, 0xfd, 0xb7, 0x2a, 0x70, 0x7a, 0xe9, 0xab, 0x9d, 0x88, 0xd4, 0xbd, 0xf8, 0x4e, 0x76, 0x29, + 0xb8, 0x5e, 0x7c, 0xe7, 0x7a, 0x3a, 0x18, 0x6a, 0x0e, 0xd6, 0x05, 0x1c, 0x2b, 0x0a, 0xf4, 0x02, + 0x8c, 0xd2, 0xdf, 0x37, 0xf1, 0xba, 0xe8, 0xfd, 0x49, 0x41, 0x3c, 0x5e, 0x77, 0x12, 0xa7, 0xce, + 0x51, 0x58, 0xd2, 0xa0, 0x0d, 0x18, 0x6f, 0x39, 0xad, 0x5d, 0x2f, 0xd8, 0xd9, 0x08, 0x5d, 0xc2, + 0xbe, 0x70, 0x6d, 0xf9, 0x79, 0x4a, 0xbe, 0x92, 0x82, 0xef, 0x1f, 0xce, 0xcf, 0xf2, 0xb6, 0x09, + 0x16, 0x1a, 0x0e, 0xeb, 0xe5, 0x91, 0xad, 0x16, 0xe2, 0x10, 0xe3, 0x04, 0x39, 0x8b, 0xf0, 0xbc, + 0xb6, 0xa6, 0x86, 0xd9, 0x9a, 0x9a, 0xe8, 0xb1, 0x9e, 0xfe, 0x99, 0x25, 0xc6, 0x64, 0xcd, 0xf3, + 0x4d, 0xf1, 0x70, 0x09, 0x20, 0x26, 0xad, 0x88, 0x24, 0xda, 0xa8, 0xa8, 0xcf, 0xdc, 0x54, 0x18, + 0xac, 0x51, 0xd1, 0xc5, 0x1f, 0xef, 0x3a, 0x11, 0x9b, 0x2d, 0x62, 0x6c, 0xd4, 0xe2, 0x6f, 0x4a, + 0x04, 0x4e, 0x69, 0x8c, 0xc5, 0x5f, 0x2d, 0x5c, 0xfc, 0xff, 0xda, 0x82, 0xd1, 0x65, 0x2f, 0x70, + 0xbd, 0x60, 0x07, 0xbd, 0x0d, 0x63, 0x54, 0x2a, 0xbb, 0x4e, 0xe2, 0x88, 0x75, 0x7f, 0xfe, 0xf8, + 0xc9, 0x73, 0x63, 0xeb, 0x2b, 0xa4, 0x95, 0x6c, 0x90, 0xc4, 0x49, 0xbb, 0x91, 0xc2, 0xb0, 0xe2, + 0x86, 0x6e, 0xc2, 0x48, 0xe2, 0x44, 0x3b, 0x24, 0x11, 0xcb, 0xfd, 0x85, 0x32, 0x7c, 0x31, 0x9d, + 0x6a, 0x24, 0x68, 0x91, 0x54, 0x30, 0x6e, 0x32, 0x26, 0x58, 0x30, 0xb3, 0x5b, 0x30, 0xb1, 0xe2, + 0xb4, 0x9d, 0x2d, 0xcf, 0xf7, 0x12, 0x8f, 0xc4, 0xe8, 0xe3, 0x50, 0x75, 0x5c, 0x97, 0x4d, 0xfc, + 0xda, 0xf2, 0xe9, 0xa3, 0xc3, 0xf9, 0xea, 0x92, 0xeb, 0xde, 0x3f, 0x9c, 0x07, 0x45, 0x75, 0x80, + 0x29, 0x05, 0x7a, 0x0e, 0x86, 0xdc, 0x28, 0x6c, 0xcf, 0x56, 0x18, 0xe5, 0x19, 0xba, 0x42, 0xeb, + 0x51, 0xd8, 0xce, 0x90, 0x32, 0x1a, 0xfb, 0x0f, 0x2a, 0x80, 0x56, 0x48, 0x7b, 0x77, 0xad, 0x69, + 0x7c, 0xcb, 0xf3, 0x30, 0xb6, 0x17, 0x06, 0x5e, 0x12, 0x46, 0xb1, 0xa8, 0x90, 0xcd, 0x87, 0x0d, + 0x01, 0xc3, 0x0a, 0x8b, 0xce, 0xc1, 0x50, 0x3b, 0x5d, 0xd6, 0x13, 0x52, 0x24, 0xb0, 0x05, 0xcd, + 0x30, 0x94, 0xa2, 0x13, 0x93, 0x48, 0xcc, 0x63, 0x45, 0x71, 0x33, 0x26, 0x11, 0x66, 0x98, 0x74, + 0xe6, 0xd0, 0x39, 0x25, 0x66, 0x69, 0x66, 0xe6, 0x50, 0x0c, 0xd6, 0xa8, 0xd0, 0x97, 0xa0, 0xc6, + 0xff, 0x61, 0xb2, 0xcd, 0xa6, 0x6c, 0xa1, 0x30, 0xb8, 0x16, 0xb6, 0x1c, 0x3f, 0x3b, 0xf8, 0x93, + 0x6c, 0xa6, 0x49, 0x46, 0x38, 0xe5, 0x69, 0xcc, 0xb4, 0x91, 0xc2, 0x99, 0xf6, 0x77, 0x2d, 0x40, + 0x2b, 0x5e, 0xe0, 0x92, 0xe8, 0x11, 0x6c, 0x99, 0xfd, 0x2d, 0x82, 0x3f, 0xa5, 0x4d, 0x0b, 0xf7, + 0xda, 0x61, 0x40, 0x82, 0x64, 0x25, 0x0c, 0x5c, 0xbe, 0x8d, 0x7e, 0x0a, 0x86, 0x12, 0x5a, 0x15, + 0x6f, 0xd6, 0x33, 0xf2, 0xb3, 0xd0, 0x0a, 0xee, 0x1f, 0xce, 0x9f, 0xe9, 0x2e, 0xc1, 0x9a, 0xc0, + 0xca, 0xa0, 0x4f, 0xc2, 0x48, 0x9c, 0x38, 0x49, 0x27, 0x16, 0x0d, 0xfd, 0xa8, 0x6c, 0x68, 0x93, + 0x41, 0xef, 0x1f, 0xce, 0x4f, 0xab, 0x62, 0x1c, 0x84, 0x45, 0x01, 0xf4, 0x2c, 0x8c, 0xee, 0x91, + 0x38, 0x76, 0x76, 0xa4, 0x60, 0x9b, 0x16, 0x65, 0x47, 0x37, 0x38, 0x18, 0x4b, 0x3c, 0x7a, 0x0a, + 0x86, 0x49, 0x14, 0x85, 0x91, 0x98, 0x11, 0x93, 0x82, 0x70, 0x78, 0x95, 0x02, 0x31, 0xc7, 0xd9, + 0x3f, 0xb5, 0x60, 0x5a, 0xb5, 0x95, 0xd7, 0x35, 0xc0, 0xa5, 0xee, 0x02, 0xb4, 0x64, 0xc7, 0x62, + 0xb6, 0xc0, 0xc6, 0x2f, 0xbd, 0x78, 0x3c, 0xef, 0xee, 0x81, 0x4c, 0xeb, 0x50, 0xa0, 0x18, 0x6b, + 0x7c, 0xed, 0x3f, 0xb0, 0xe0, 0x64, 0xa6, 0x4f, 0xd7, 0xbc, 0x38, 0x41, 0x9f, 0xef, 0xea, 0xd7, + 0x85, 0xde, 0x75, 0xc7, 0x0b, 0x94, 0x96, 0x4d, 0x7c, 0x2f, 0xe6, 0x7d, 0x53, 0xb3, 0x44, 0x42, + 0xb4, 0x9e, 0x61, 0x18, 0xf6, 0x12, 0xb2, 0x27, 0x3b, 0xf5, 0x42, 0xc9, 0x4e, 0xf1, 0xd6, 0xa5, + 0xdf, 0x66, 0x9d, 0xf2, 0xc0, 0x9c, 0x95, 0xfd, 0x3f, 0x2d, 0xa8, 0xad, 0x84, 0xc1, 0xb6, 0xb7, + 0xb3, 0xe1, 0xb4, 0x07, 0xf8, 0x55, 0x9a, 0x30, 0xc4, 0xb8, 0xf2, 0xa6, 0x5f, 0x2c, 0x6a, 0xba, + 0x68, 0xd0, 0x02, 0xdd, 0x39, 0xb9, 0x4a, 0xa0, 0x84, 0x12, 0x05, 0x61, 0xc6, 0x6c, 0xee, 0x55, + 0xa8, 0x29, 0x02, 0x34, 0x03, 0xd5, 0x3b, 0x84, 0xeb, 0x8b, 0x35, 0x4c, 0x7f, 0xa2, 0x53, 0x30, + 0xbc, 0xef, 0xf8, 0x1d, 0xb1, 0x54, 0x31, 0xff, 0xf3, 0xa9, 0xca, 0x6b, 0x96, 0xfd, 0x6b, 0x6c, + 0xbd, 0x89, 0x4a, 0x56, 0x83, 0x7d, 0x21, 0x0a, 0xde, 0xb3, 0xe0, 0x94, 0x9f, 0x23, 0x82, 0xc4, + 0x58, 0x3c, 0x88, 0xf0, 0x7a, 0x42, 0x34, 0xfb, 0x54, 0x1e, 0x16, 0xe7, 0xd6, 0x66, 0xff, 0xc8, + 0x82, 0x53, 0xaa, 0x75, 0x57, 0xc9, 0x41, 0x93, 0xf8, 0xa4, 0x95, 0x84, 0xd1, 0x87, 0xa4, 0x7d, + 0xe8, 0x49, 0x3e, 0xd2, 0x5c, 0xae, 0x8c, 0x0b, 0x06, 0xd5, 0xab, 0xe4, 0x80, 0x0d, 0xbb, 0xfd, + 0x43, 0x0b, 0x26, 0x55, 0xf3, 0x07, 0xbe, 0x28, 0xae, 0x99, 0x8b, 0xe2, 0xe3, 0x25, 0x67, 0x56, + 0x8f, 0xe5, 0xf0, 0x0f, 0x2b, 0x70, 0x5a, 0xd1, 0x18, 0xdb, 0xc4, 0x87, 0x64, 0xec, 0xfb, 0xeb, + 0xee, 0x55, 0x72, 0xb0, 0x19, 0xd2, 0x7d, 0x3e, 0xbf, 0xbb, 0xe8, 0x22, 0x8c, 0xbb, 0x64, 0xdb, + 0xe9, 0xf8, 0x89, 0x52, 0x63, 0x87, 0xb9, 0x7d, 0x53, 0x4f, 0xc1, 0x58, 0xa7, 0xb1, 0x7f, 0x1d, + 0x98, 0xc0, 0x48, 0x1c, 0x2f, 0x20, 0x11, 0x55, 0x1c, 0x34, 0x6b, 0x63, 0x42, 0xb7, 0x36, 0x84, + 0x65, 0xf1, 0x14, 0x0c, 0x7b, 0x7b, 0x74, 0x2b, 0xa9, 0x98, 0x3b, 0xc4, 0x3a, 0x05, 0x62, 0x8e, + 0x43, 0x4f, 0xc3, 0x68, 0x2b, 0xdc, 0xdb, 0x73, 0x02, 0x77, 0xb6, 0xca, 0x54, 0x99, 0x71, 0xba, + 0xdb, 0xac, 0x70, 0x10, 0x96, 0x38, 0xf4, 0x04, 0x0c, 0x39, 0xd1, 0x4e, 0x3c, 0x3b, 0xc4, 0x68, + 0xc6, 0x68, 0x4d, 0x4b, 0xd1, 0x4e, 0x8c, 0x19, 0x94, 0xaa, 0x28, 0x77, 0xc3, 0xe8, 0x8e, 0x17, + 0xec, 0xd4, 0xbd, 0x88, 0xe9, 0x1b, 0x9a, 0x8a, 0x72, 0x5b, 0x61, 0xb0, 0x46, 0x85, 0x1a, 0x30, + 0xdc, 0x0e, 0xa3, 0x24, 0x9e, 0x1d, 0x61, 0xc3, 0xf9, 0x7c, 0xe1, 0xec, 0xe1, 0xfd, 0x6e, 0x84, + 0x51, 0x92, 0x76, 0x85, 0xfe, 0x8b, 0x31, 0x67, 0x84, 0x56, 0xa0, 0x4a, 0x82, 0xfd, 0xd9, 0x51, + 0xc6, 0xef, 0x63, 0xc7, 0xf3, 0x5b, 0x0d, 0xf6, 0x6f, 0x39, 0x51, 0xba, 0x84, 0x56, 0x83, 0x7d, + 0x4c, 0x4b, 0xa3, 0x16, 0xd4, 0xa4, 0x4f, 0x23, 0x9e, 0x1d, 0x2b, 0x33, 0xc1, 0xb0, 0x20, 0xc7, + 0xe4, 0xdd, 0x8e, 0x17, 0x91, 0x3d, 0x12, 0x24, 0x71, 0xaa, 0xa7, 0x4b, 0x6c, 0x8c, 0x53, 0xbe, + 0xa8, 0x05, 0x13, 0x5c, 0xad, 0xd9, 0x08, 0x3b, 0x41, 0x12, 0xcf, 0xd6, 0x58, 0x93, 0x0b, 0x0c, + 0xe1, 0x5b, 0x69, 0x89, 0xe5, 0x53, 0x82, 0xfd, 0x84, 0x06, 0x8c, 0xb1, 0xc1, 0x14, 0xbd, 0x03, + 0x93, 0xbe, 0xb7, 0x4f, 0x02, 0x12, 0xc7, 0x8d, 0x28, 0xdc, 0x22, 0xb3, 0xc0, 0x7a, 0xf3, 0x54, + 0x91, 0x51, 0x18, 0x6e, 0x91, 0xe5, 0x13, 0x47, 0x87, 0xf3, 0x93, 0xd7, 0xf4, 0xd2, 0xd8, 0x64, + 0x86, 0xbe, 0x04, 0x53, 0x54, 0x87, 0xf2, 0x52, 0xf6, 0xe3, 0xe5, 0xd9, 0xa3, 0xa3, 0xc3, 0xf9, + 0x29, 0x6c, 0x14, 0xc7, 0x19, 0x76, 0x68, 0x13, 0x6a, 0xbe, 0xb7, 0x4d, 0x5a, 0x07, 0x2d, 0x9f, + 0xcc, 0x4e, 0x30, 0xde, 0x05, 0x4b, 0xee, 0x9a, 0x24, 0xe7, 0x7a, 0xab, 0xfa, 0x8b, 0x53, 0x46, + 0xe8, 0x16, 0x9c, 0x49, 0x48, 0xb4, 0xe7, 0x05, 0x0e, 0x55, 0x26, 0x84, 0x52, 0xc5, 0x2c, 0xef, + 0x49, 0x36, 0x6b, 0xcf, 0x8a, 0x81, 0x3d, 0xb3, 0x99, 0x4b, 0x85, 0x7b, 0x94, 0x46, 0x37, 0x60, + 0x9a, 0xad, 0xa7, 0x46, 0xc7, 0xf7, 0x1b, 0xa1, 0xef, 0xb5, 0x0e, 0x66, 0xa7, 0x18, 0xc3, 0xa7, + 0xa5, 0x3d, 0xbd, 0x6e, 0xa2, 0xa9, 0xbd, 0x91, 0xfe, 0xc3, 0xd9, 0xd2, 0xc8, 0x87, 0xe9, 0x98, + 0xb4, 0x3a, 0x91, 0x97, 0x1c, 0xd0, 0xb9, 0x4f, 0xee, 0x25, 0xb3, 0xd3, 0x65, 0xec, 0xa7, 0xa6, + 0x59, 0x88, 0x3b, 0x33, 0x32, 0x40, 0x9c, 0x65, 0x4d, 0x45, 0x45, 0x9c, 0xb8, 0x5e, 0x30, 0x3b, + 0xc3, 0x14, 0x66, 0xb5, 0xbe, 0x9a, 0x14, 0x88, 0x39, 0x8e, 0x99, 0xa3, 0xf4, 0xc7, 0x0d, 0x2a, + 0x7b, 0x4f, 0x30, 0xc2, 0xd4, 0x1c, 0x95, 0x08, 0x9c, 0xd2, 0xd0, 0xdd, 0x2a, 0x49, 0x0e, 0x66, + 0x11, 0x23, 0x55, 0x4b, 0x6d, 0x73, 0xf3, 0x73, 0x98, 0xc2, 0xd1, 0x2d, 0x18, 0x25, 0xc1, 0xfe, + 0x5a, 0x14, 0xee, 0xcd, 0x9e, 0x2c, 0x23, 0x03, 0x56, 0x39, 0x31, 0xdf, 0x15, 0x52, 0xcd, 0x58, + 0x80, 0xb1, 0x64, 0x66, 0x6f, 0xc1, 0x94, 0x12, 0x17, 0x6c, 0xd4, 0xd1, 0x3c, 0x0c, 0x53, 0x89, + 0x28, 0xad, 0xb5, 0x1a, 0xed, 0x1a, 0x15, 0x94, 0x31, 0xe6, 0x70, 0xd6, 0x35, 0xef, 0xab, 0x64, + 0xf9, 0x20, 0x21, 0x5c, 0x6b, 0xaf, 0x6a, 0x5d, 0x93, 0x08, 0x9c, 0xd2, 0xd8, 0xff, 0x9b, 0xef, + 0xb4, 0xa9, 0x4c, 0x2a, 0x21, 0x8f, 0x2f, 0xc0, 0xd8, 0x6e, 0x18, 0x27, 0x94, 0x9a, 0xd5, 0x31, + 0x9c, 0xee, 0xae, 0x57, 0x04, 0x1c, 0x2b, 0x0a, 0xf4, 0x3a, 0x4c, 0xb6, 0xf4, 0x0a, 0xc4, 0x16, + 0x71, 0x5a, 0x14, 0x31, 0x6b, 0xc7, 0x26, 0x2d, 0x7a, 0x0d, 0xc6, 0x98, 0xeb, 0xb2, 0x15, 0xfa, + 0xc2, 0x3e, 0x90, 0x3b, 0xde, 0x58, 0x43, 0xc0, 0xef, 0x6b, 0xbf, 0xb1, 0xa2, 0xa6, 0x56, 0x16, + 0x6d, 0xc2, 0x7a, 0x43, 0x88, 0x71, 0x65, 0x65, 0x5d, 0x61, 0x50, 0x2c, 0xb0, 0xf6, 0x3f, 0xaf, + 0x68, 0xa3, 0x4c, 0xf5, 0x5c, 0x82, 0x3e, 0x0f, 0xa3, 0x77, 0x1d, 0x2f, 0xf1, 0x82, 0x1d, 0xb1, + 0x33, 0xbf, 0x54, 0x52, 0xa6, 0xb3, 0xe2, 0xb7, 0x79, 0x51, 0xbe, 0xff, 0x88, 0x3f, 0x58, 0x32, + 0xa4, 0xbc, 0xa3, 0x4e, 0x10, 0x50, 0xde, 0x95, 0xfe, 0x79, 0x63, 0x5e, 0x94, 0xf3, 0x16, 0x7f, + 0xb0, 0x64, 0x88, 0xb6, 0x01, 0xe4, 0xaa, 0x26, 0xae, 0x70, 0x19, 0x7e, 0xa2, 0x1f, 0xf6, 0x9b, + 0xaa, 0xf4, 0xf2, 0x14, 0xdd, 0xf1, 0xd2, 0xff, 0x58, 0xe3, 0x6c, 0x47, 0x4c, 0xc1, 0xe9, 0x6e, + 0x16, 0xfa, 0x1c, 0x5d, 0x58, 0x4e, 0x94, 0x10, 0x77, 0x29, 0x29, 0x56, 0xfe, 0x53, 0x2d, 0x6d, + 0xd3, 0xdb, 0x23, 0xfa, 0x12, 0x14, 0x2c, 0x70, 0xca, 0xcd, 0xfe, 0x5e, 0x15, 0x66, 0x7b, 0x35, + 0x96, 0x4e, 0x48, 0x72, 0xcf, 0x4b, 0x56, 0xa8, 0x02, 0x62, 0x99, 0x13, 0x72, 0x55, 0xc0, 0xb1, + 0xa2, 0xa0, 0x33, 0x23, 0xf6, 0x76, 0x02, 0xc7, 0x17, 0x93, 0x57, 0xcd, 0x8c, 0x26, 0x83, 0x62, + 0x81, 0xa5, 0x74, 0x11, 0x71, 0x62, 0xe1, 0xaf, 0xd6, 0x66, 0x10, 0x66, 0x50, 0x2c, 0xb0, 0xba, + 0xad, 0x3b, 0x54, 0x60, 0xeb, 0x1a, 0x03, 0x34, 0xfc, 0x30, 0x07, 0x08, 0xbd, 0x03, 0xb0, 0xed, + 0x05, 0x5e, 0xbc, 0xcb, 0x78, 0x8f, 0xf4, 0xc9, 0x5b, 0x29, 0x39, 0x6b, 0x8a, 0x07, 0xd6, 0xf8, + 0xa1, 0x57, 0x60, 0x5c, 0x2d, 0xcc, 0xf5, 0xfa, 0xec, 0xa8, 0xe9, 0xdf, 0x4c, 0xa5, 0x54, 0x1d, + 0xeb, 0x74, 0xf6, 0x57, 0xb2, 0x33, 0x45, 0xac, 0x07, 0x6d, 0x6c, 0xad, 0xb2, 0x63, 0x5b, 0x39, + 0x7e, 0x6c, 0xed, 0xff, 0x5c, 0x85, 0x69, 0xa3, 0xb2, 0x4e, 0x5c, 0x42, 0x96, 0xbd, 0x45, 0x37, + 0x0c, 0x27, 0x21, 0x62, 0x35, 0x5e, 0xe8, 0x67, 0xb9, 0xe8, 0xdb, 0x0b, 0x5d, 0x05, 0x9c, 0x13, + 0xda, 0x85, 0x9a, 0xef, 0xc4, 0xcc, 0x66, 0x26, 0x62, 0x15, 0xf6, 0xc7, 0x36, 0x55, 0xea, 0x9d, + 0x38, 0xd1, 0xf6, 0x6f, 0x5e, 0x4b, 0xca, 0x9c, 0xee, 0x76, 0x54, 0xd9, 0x90, 0x07, 0x24, 0xaa, + 0x39, 0x54, 0x23, 0x39, 0xc0, 0x1c, 0x87, 0x5e, 0x83, 0x89, 0x88, 0xb0, 0x79, 0xb2, 0x42, 0xf5, + 0x29, 0x36, 0xed, 0x86, 0x53, 0xc5, 0x0b, 0x6b, 0x38, 0x6c, 0x50, 0xa6, 0x7a, 0xf7, 0xc8, 0x31, + 0x7a, 0xf7, 0xb3, 0x30, 0xca, 0x7e, 0xa8, 0x59, 0xa1, 0xbe, 0xd0, 0x3a, 0x07, 0x63, 0x89, 0xcf, + 0x4e, 0xa2, 0xb1, 0x92, 0x93, 0xe8, 0x39, 0x98, 0xaa, 0x3b, 0x64, 0x2f, 0x0c, 0x56, 0x03, 0xb7, + 0x1d, 0x7a, 0x41, 0x82, 0x66, 0x61, 0x88, 0xed, 0x24, 0x7c, 0xad, 0x0f, 0x51, 0x0e, 0x78, 0x88, + 0xea, 0xce, 0xf6, 0xff, 0xb1, 0x60, 0xb2, 0x4e, 0x7c, 0x92, 0x90, 0x1b, 0x6d, 0xe6, 0x65, 0x41, + 0x6b, 0x80, 0x76, 0x22, 0xa7, 0x45, 0x1a, 0x24, 0xf2, 0x42, 0xb7, 0x49, 0x5a, 0x61, 0xc0, 0xce, + 0x15, 0xe8, 0xd6, 0x78, 0xe6, 0xe8, 0x70, 0x1e, 0x5d, 0xee, 0xc2, 0xe2, 0x9c, 0x12, 0xc8, 0x85, + 0xc9, 0x76, 0x44, 0x0c, 0xb7, 0x90, 0x55, 0xbc, 0xd5, 0x37, 0xf4, 0x22, 0x5c, 0x1b, 0x35, 0x40, + 0xd8, 0x64, 0x8a, 0x3e, 0x03, 0x33, 0x61, 0xd4, 0xde, 0x75, 0x82, 0x3a, 0x69, 0x93, 0xc0, 0xa5, + 0x2a, 0xb8, 0xf0, 0xfd, 0x9d, 0x3a, 0x3a, 0x9c, 0x9f, 0xb9, 0x91, 0xc1, 0xe1, 0x2e, 0x6a, 0xfb, + 0x37, 0x2b, 0x70, 0xba, 0x1e, 0xde, 0x0d, 0xee, 0x3a, 0x91, 0xbb, 0xd4, 0x58, 0xe7, 0x7a, 0x35, + 0xf3, 0xa5, 0x4a, 0x1f, 0xae, 0xd5, 0xd3, 0x87, 0xfb, 0x05, 0x18, 0xdb, 0xf6, 0x88, 0xef, 0x62, + 0xb2, 0x2d, 0xba, 0x77, 0xb1, 0x8c, 0xef, 0x66, 0x8d, 0x96, 0x91, 0x1e, 0x06, 0xee, 0x42, 0x5e, + 0x13, 0x6c, 0xb0, 0x62, 0x88, 0x3a, 0x30, 0x23, 0x0d, 0x07, 0x89, 0x15, 0xab, 0xe3, 0xa5, 0x72, + 0x76, 0x89, 0x59, 0x0d, 0x1b, 0x0f, 0x9c, 0x61, 0x88, 0xbb, 0xaa, 0xa0, 0x06, 0xdf, 0x1e, 0xdd, + 0x17, 0x86, 0xd8, 0x5c, 0x61, 0x06, 0x1f, 0xb3, 0x48, 0x19, 0xd4, 0xfe, 0x27, 0x16, 0x3c, 0xd6, + 0x35, 0x5a, 0xc2, 0x5c, 0x7f, 0x5b, 0xda, 0xc9, 0xfc, 0x10, 0xaa, 0xa0, 0x95, 0xb9, 0x63, 0x5e, + 0xce, 0x66, 0xae, 0x94, 0xb0, 0x99, 0x6f, 0xc0, 0xa9, 0xd5, 0xbd, 0x76, 0x72, 0x50, 0xf7, 0x4c, + 0xd7, 0xf3, 0xab, 0x30, 0xb2, 0x47, 0x5c, 0xaf, 0xb3, 0x27, 0x3e, 0xeb, 0xbc, 0x14, 0xa4, 0x1b, + 0x0c, 0x7a, 0xff, 0x70, 0x7e, 0xb2, 0x99, 0x84, 0x91, 0xb3, 0x43, 0x38, 0x00, 0x0b, 0x72, 0xfb, + 0x7d, 0x0b, 0xa6, 0xe5, 0x82, 0x5a, 0x72, 0xdd, 0x88, 0xc4, 0x31, 0x9a, 0x83, 0x8a, 0xd7, 0x16, + 0x8c, 0x40, 0x30, 0xaa, 0xac, 0x37, 0x70, 0xc5, 0x6b, 0xa3, 0xcf, 0x43, 0x8d, 0x9f, 0x58, 0xa4, + 0x93, 0xa3, 0xcf, 0x13, 0x10, 0x66, 0xcc, 0x6c, 0x4a, 0x1e, 0x38, 0x65, 0x27, 0x15, 0x4a, 0x26, + 0xaa, 0xab, 0xa6, 0xff, 0xfc, 0x8a, 0x80, 0x63, 0x45, 0x81, 0xce, 0xc3, 0x58, 0x10, 0xba, 0xfc, + 0x30, 0x89, 0x6f, 0xb8, 0x6c, 0xca, 0x5d, 0x17, 0x30, 0xac, 0xb0, 0xf6, 0x37, 0x2c, 0x98, 0x90, + 0x7d, 0x2c, 0xa9, 0xdb, 0xd2, 0x45, 0x92, 0xea, 0xb5, 0xe9, 0x22, 0xa1, 0xba, 0x29, 0xc3, 0x18, + 0x2a, 0x69, 0xb5, 0x1f, 0x95, 0xd4, 0xfe, 0x61, 0x05, 0xa6, 0x64, 0x73, 0x9a, 0x9d, 0xad, 0x98, + 0x24, 0xe8, 0x8b, 0x50, 0x73, 0xf8, 0xe0, 0x13, 0x39, 0xcf, 0x5e, 0x28, 0x32, 0x1e, 0x8c, 0x6f, + 0x96, 0x6a, 0x05, 0x4b, 0x92, 0x0f, 0x4e, 0x59, 0xa2, 0x7d, 0x38, 0x11, 0x84, 0x09, 0xdb, 0x0f, + 0x14, 0xbe, 0x9c, 0xef, 0x37, 0x5b, 0xcf, 0xe3, 0xa2, 0x9e, 0x13, 0xd7, 0xb3, 0xfc, 0x70, 0x77, + 0x15, 0xe8, 0x86, 0x74, 0x8a, 0x54, 0x59, 0x5d, 0xcf, 0x95, 0xab, 0xab, 0xb7, 0x4f, 0xc4, 0xfe, + 0x3d, 0x0b, 0x6a, 0x92, 0x6c, 0x90, 0xae, 0xff, 0xdb, 0x30, 0x1a, 0xb3, 0x4f, 0x23, 0x87, 0xe9, + 0x42, 0xb9, 0xa6, 0xf3, 0xef, 0x99, 0x6e, 0x7e, 0xfc, 0x7f, 0x8c, 0x25, 0x37, 0xe6, 0xd2, 0x54, + 0x1d, 0xf8, 0x90, 0xb9, 0x34, 0x55, 0xbb, 0x7a, 0xb9, 0x34, 0x59, 0xdb, 0x35, 0xa3, 0x95, 0xea, + 0x6f, 0xed, 0x88, 0x6c, 0x7b, 0xf7, 0xb2, 0xfa, 0x5b, 0x83, 0x41, 0xb1, 0xc0, 0xa2, 0x6d, 0x98, + 0x68, 0x49, 0x5f, 0x68, 0x2a, 0x38, 0x5e, 0x2c, 0xe9, 0x61, 0x55, 0x6e, 0x75, 0x1e, 0x90, 0xb1, + 0xa2, 0x71, 0xc2, 0x06, 0x5f, 0xfb, 0x37, 0x2c, 0x18, 0xe1, 0xae, 0xb0, 0x72, 0xfe, 0x44, 0xcd, + 0xa9, 0x9f, 0xf6, 0xf9, 0x16, 0x05, 0x0a, 0x1f, 0x3f, 0xba, 0x0d, 0x35, 0xf6, 0x83, 0x99, 0xf5, + 0xd5, 0x32, 0x11, 0x24, 0xbc, 0x7e, 0xd1, 0x60, 0x26, 0xec, 0x6e, 0x49, 0x06, 0x38, 0xe5, 0x65, + 0xff, 0xa8, 0x4a, 0x85, 0x52, 0x4a, 0x6a, 0xec, 0xba, 0xd6, 0xa3, 0xd8, 0x75, 0x2b, 0x83, 0xdf, + 0x75, 0xdf, 0x85, 0xe9, 0x96, 0x76, 0xfc, 0x90, 0xee, 0xf5, 0x97, 0x4a, 0x7e, 0x7a, 0xed, 0xcc, + 0x82, 0xbb, 0x7e, 0x56, 0x4c, 0x76, 0x38, 0xcb, 0x1f, 0x11, 0x98, 0xe0, 0xc7, 0xba, 0xa2, 0xbe, + 0x21, 0x56, 0xdf, 0x62, 0xa1, 0x97, 0x89, 0x97, 0x50, 0x95, 0xb1, 0x99, 0xd6, 0xd4, 0x18, 0x61, + 0x83, 0xad, 0xfd, 0xab, 0xc3, 0x30, 0xbc, 0xba, 0x4f, 0x82, 0x64, 0x80, 0x42, 0x68, 0x0f, 0xa6, + 0xbc, 0x60, 0x3f, 0xf4, 0xf7, 0x89, 0xcb, 0xf1, 0x0f, 0xb6, 0xe1, 0x9e, 0x11, 0x95, 0x4c, 0xad, + 0x1b, 0xcc, 0x70, 0x86, 0xf9, 0x20, 0x0c, 0xdd, 0xb7, 0x60, 0x84, 0xcf, 0x08, 0x61, 0xe5, 0x16, + 0xb8, 0x84, 0xd9, 0x80, 0x8a, 0x95, 0x93, 0x9a, 0xe3, 0xdc, 0x1b, 0x2d, 0x18, 0xa1, 0x5d, 0x98, + 0xda, 0xf6, 0xa2, 0x38, 0xa1, 0xf6, 0x6a, 0x9c, 0x38, 0x7b, 0xed, 0xbe, 0x8d, 0x5c, 0x35, 0x1e, + 0x6b, 0x06, 0x1f, 0x9c, 0xe1, 0x8b, 0x08, 0x4c, 0x52, 0x1b, 0x2b, 0xad, 0x68, 0xb4, 0xcf, 0x8a, + 0x94, 0x6f, 0xeb, 0x9a, 0xce, 0x06, 0x9b, 0x5c, 0xa9, 0x18, 0x6a, 0x31, 0x8b, 0x6c, 0x8c, 0xe9, + 0x1a, 0x4a, 0x0c, 0x71, 0x53, 0x8c, 0xe3, 0xa8, 0x34, 0x63, 0xe7, 0xf7, 0x35, 0x53, 0x9a, 0xa5, + 0xa7, 0xf4, 0xf6, 0x77, 0xe9, 0xce, 0x48, 0xc7, 0x6f, 0xe0, 0x9b, 0xca, 0x15, 0x73, 0x53, 0x79, + 0xaa, 0xc4, 0x37, 0xed, 0xb1, 0xa1, 0x7c, 0x19, 0xc6, 0xb5, 0x4f, 0x8e, 0x16, 0xa1, 0xd6, 0x92, + 0x47, 0xcd, 0x42, 0x6e, 0x2b, 0xb5, 0x46, 0x9d, 0x41, 0xe3, 0x94, 0x86, 0x8e, 0x0a, 0x55, 0x07, + 0xb3, 0xe1, 0x28, 0x54, 0x59, 0xc4, 0x0c, 0x63, 0xbf, 0x04, 0xb0, 0x7a, 0x8f, 0xb4, 0x96, 0x5a, + 0x2c, 0x0a, 0x42, 0x3b, 0x1c, 0xb2, 0x7a, 0x1f, 0x0e, 0xd1, 0xa1, 0x9c, 0x5a, 0x5b, 0x31, 0xf4, + 0xeb, 0x05, 0x00, 0xae, 0xa7, 0xde, 0xbe, 0x7d, 0x5d, 0xba, 0x5d, 0xb9, 0x6f, 0x4c, 0x41, 0xb1, + 0x46, 0x81, 0x1e, 0x87, 0xaa, 0xdf, 0x09, 0x84, 0xfa, 0x38, 0x7a, 0x74, 0x38, 0x5f, 0xbd, 0xd6, + 0x09, 0x30, 0x85, 0x69, 0x71, 0x1f, 0xd5, 0xd2, 0x71, 0x1f, 0xc5, 0x91, 0x8f, 0xdf, 0xaa, 0xc2, + 0xcc, 0x9a, 0x4f, 0xee, 0x19, 0xad, 0x7e, 0x06, 0x46, 0xdc, 0xc8, 0xdb, 0x27, 0x51, 0x76, 0x7b, + 0xae, 0x33, 0x28, 0x16, 0xd8, 0xd2, 0xa1, 0x28, 0x46, 0x18, 0x4e, 0x75, 0xc0, 0x61, 0x38, 0x85, + 0x7d, 0x46, 0xdb, 0x30, 0x1a, 0x72, 0xf3, 0x7e, 0x76, 0x98, 0x4d, 0xc5, 0xd7, 0x8f, 0x6f, 0x4c, + 0x76, 0x7c, 0x16, 0x84, 0x73, 0x80, 0x87, 0x05, 0x28, 0x29, 0x26, 0xa0, 0x58, 0x32, 0x9f, 0xfb, + 0x14, 0x4c, 0xe8, 0x94, 0x7d, 0xc5, 0x07, 0xfc, 0xa2, 0x05, 0x27, 0xd7, 0xfc, 0xb0, 0x75, 0x27, + 0x13, 0x2b, 0xf4, 0x0a, 0x8c, 0xd3, 0xc5, 0x14, 0x1b, 0x01, 0x74, 0x46, 0xa4, 0xa0, 0x40, 0x61, + 0x9d, 0x4e, 0x2b, 0x76, 0xf3, 0xe6, 0x7a, 0x3d, 0x2f, 0xc0, 0x50, 0xa0, 0xb0, 0x4e, 0x67, 0xff, + 0x27, 0x0b, 0x9e, 0xbc, 0xbc, 0xb2, 0xda, 0x20, 0x51, 0xec, 0xc5, 0x09, 0x09, 0x92, 0xae, 0x18, + 0x47, 0xaa, 0xc9, 0xb9, 0x5a, 0x53, 0x52, 0x4d, 0xae, 0xce, 0x5a, 0x21, 0xb0, 0x1f, 0x96, 0x40, + 0xdf, 0xdf, 0xb0, 0xe0, 0xe4, 0x65, 0x2f, 0xc1, 0xa4, 0x1d, 0x66, 0xc3, 0x12, 0x23, 0xd2, 0x0e, + 0x63, 0x2f, 0x09, 0xa3, 0x83, 0x6c, 0x58, 0x22, 0x56, 0x18, 0xac, 0x51, 0xf1, 0x9a, 0xf7, 0xbd, + 0x98, 0xb6, 0xb4, 0x62, 0x9a, 0x9d, 0x58, 0xc0, 0xb1, 0xa2, 0xa0, 0x1d, 0x73, 0xbd, 0x88, 0x29, + 0x09, 0x07, 0x62, 0x05, 0xab, 0x8e, 0xd5, 0x25, 0x02, 0xa7, 0x34, 0xf6, 0xdf, 0xb3, 0xe0, 0xf4, + 0x65, 0xbf, 0x13, 0x27, 0x24, 0xda, 0x8e, 0x8d, 0xc6, 0xbe, 0x04, 0x35, 0x22, 0x55, 0x6e, 0xd1, + 0x56, 0xb5, 0x65, 0x28, 0x5d, 0x9c, 0xc7, 0x44, 0x2a, 0xba, 0x12, 0x21, 0x78, 0xfd, 0x05, 0x8c, + 0xfd, 0x4e, 0x05, 0x26, 0xaf, 0x6c, 0x6e, 0x36, 0x2e, 0x93, 0x44, 0x48, 0xc9, 0x62, 0x07, 0x51, + 0x43, 0xb3, 0x8e, 0xc7, 0x2f, 0x2d, 0xf4, 0x58, 0x75, 0x9d, 0xc4, 0xf3, 0x17, 0x78, 0x08, 0xfa, + 0xc2, 0x7a, 0x90, 0xdc, 0x88, 0x9a, 0x49, 0xe4, 0x05, 0x3b, 0xb9, 0xd6, 0xb4, 0x94, 0xe4, 0xd5, + 0x5e, 0x92, 0x1c, 0xbd, 0x04, 0x23, 0x2c, 0x02, 0x5e, 0x2a, 0x1d, 0x3f, 0xa7, 0xf4, 0x03, 0x06, + 0xbd, 0x7f, 0x38, 0x5f, 0xbb, 0x89, 0xd7, 0xf9, 0x1f, 0x2c, 0x48, 0xd1, 0x97, 0x60, 0x7c, 0x37, + 0x49, 0xda, 0x57, 0x88, 0xe3, 0x92, 0x48, 0x4a, 0x89, 0x02, 0xf5, 0x8c, 0x0e, 0x06, 0x2f, 0x90, + 0x2e, 0xac, 0x14, 0x16, 0x63, 0x9d, 0xa3, 0xdd, 0x04, 0x48, 0x71, 0x0f, 0xc9, 0xe6, 0xb0, 0xff, + 0x5a, 0x05, 0x46, 0xaf, 0x38, 0x81, 0xeb, 0x93, 0x08, 0xad, 0xc1, 0x10, 0xb9, 0x47, 0x5a, 0xe5, + 0x34, 0xcb, 0x74, 0xab, 0xe3, 0x1e, 0x2e, 0xfa, 0x1f, 0xb3, 0xf2, 0x08, 0xc3, 0x28, 0x6d, 0xf7, + 0x65, 0x15, 0xb7, 0xfa, 0x7c, 0xf1, 0x28, 0xa8, 0x29, 0xc1, 0xf7, 0x49, 0x01, 0xc2, 0x92, 0x11, + 0xf3, 0x05, 0xb5, 0xda, 0x4d, 0x2a, 0xdc, 0x92, 0x72, 0xa1, 0xe9, 0x9b, 0x2b, 0x0d, 0x4e, 0x2e, + 0xf8, 0x72, 0x5f, 0x90, 0x04, 0xe2, 0x94, 0x9d, 0xfd, 0x1a, 0x9c, 0x62, 0x87, 0x88, 0x4e, 0xb2, + 0x6b, 0xac, 0x99, 0xc2, 0xc9, 0x69, 0xff, 0xa3, 0x0a, 0x9c, 0x58, 0x6f, 0xae, 0x34, 0x4d, 0x2f, + 0xde, 0x6b, 0x30, 0xc1, 0xb7, 0x67, 0x3a, 0xe9, 0x1c, 0x5f, 0x94, 0x57, 0xee, 0xef, 0x4d, 0x0d, + 0x87, 0x0d, 0x4a, 0xf4, 0x24, 0x54, 0xbd, 0x77, 0x83, 0x6c, 0x8c, 0xd2, 0xfa, 0x5b, 0xd7, 0x31, + 0x85, 0x53, 0x34, 0xdd, 0xe9, 0xb9, 0x88, 0x53, 0x68, 0xb5, 0xdb, 0xbf, 0x09, 0x53, 0x5e, 0xdc, + 0x8a, 0xbd, 0xf5, 0x80, 0xae, 0x7f, 0xa7, 0x25, 0xa7, 0x6f, 0xaa, 0x94, 0xd3, 0xa6, 0x2a, 0x2c, + 0xce, 0x50, 0x6b, 0xf2, 0x76, 0xb8, 0xb4, 0xb6, 0x50, 0x1c, 0xc0, 0xfa, 0x15, 0xa8, 0xa9, 0x80, + 0x1e, 0x19, 0x84, 0x65, 0xe5, 0x07, 0x61, 0x95, 0x10, 0x38, 0xd2, 0xb7, 0x5a, 0xcd, 0xf5, 0xad, + 0xfe, 0x96, 0x05, 0x69, 0xec, 0x02, 0xc2, 0x50, 0x6b, 0x87, 0xec, 0xe0, 0x22, 0x92, 0x67, 0x83, + 0x4f, 0x17, 0xcc, 0x44, 0xbe, 0x12, 0xf8, 0x5c, 0x69, 0xc8, 0xb2, 0x38, 0x65, 0x83, 0xae, 0xc1, + 0x68, 0x3b, 0x22, 0xcd, 0x84, 0x45, 0x41, 0xf7, 0xc1, 0x91, 0xcd, 0xea, 0x06, 0x2f, 0x89, 0x25, + 0x0b, 0xfb, 0x5f, 0x59, 0x00, 0xd7, 0xbc, 0x3d, 0x2f, 0xc1, 0x4e, 0xb0, 0x43, 0x06, 0x68, 0xde, + 0x5d, 0x87, 0xa1, 0xb8, 0x4d, 0x5a, 0xe5, 0x8e, 0x9c, 0xd2, 0x16, 0x35, 0xdb, 0xa4, 0x95, 0x7e, + 0x06, 0xfa, 0x0f, 0x33, 0x3e, 0xf6, 0x6f, 0x03, 0x4c, 0xa5, 0x64, 0x54, 0xd1, 0x46, 0x2f, 0x18, + 0x61, 0xbf, 0x8f, 0x67, 0xc2, 0x7e, 0x6b, 0x8c, 0x5a, 0x8b, 0xf4, 0x4d, 0xa0, 0xba, 0xe7, 0xdc, + 0x13, 0x7a, 0xfd, 0x2b, 0x65, 0x1b, 0x44, 0x6b, 0x5a, 0xd8, 0x70, 0xee, 0x71, 0x35, 0xea, 0x79, + 0x39, 0x81, 0x36, 0x9c, 0x7b, 0xf7, 0xf9, 0xc1, 0x12, 0x5b, 0x81, 0xd4, 0x90, 0xf8, 0xfa, 0x7f, + 0x49, 0xff, 0x33, 0xa1, 0x48, 0xab, 0x63, 0xb5, 0x7a, 0x81, 0x70, 0x11, 0xf6, 0x59, 0xab, 0x17, + 0x64, 0x6b, 0xf5, 0x82, 0x12, 0xb5, 0x7a, 0x01, 0x7a, 0xcf, 0x82, 0x51, 0xe1, 0x59, 0x67, 0x51, + 0x60, 0xe3, 0x97, 0x3e, 0xd9, 0x57, 0xd5, 0xc2, 0x45, 0xcf, 0xab, 0x5f, 0x94, 0xba, 0xa3, 0x80, + 0x16, 0x36, 0x41, 0x56, 0x8d, 0xbe, 0x6d, 0xc1, 0x94, 0xf8, 0x8d, 0xc9, 0xbb, 0x1d, 0x12, 0x27, + 0x62, 0x97, 0xfa, 0xcc, 0x83, 0xb4, 0x46, 0xb0, 0xe0, 0x8d, 0xfa, 0x84, 0x14, 0x31, 0x26, 0xb2, + 0xb0, 0x6d, 0x99, 0xf6, 0xa0, 0x1f, 0x58, 0x70, 0x6a, 0xcf, 0xb9, 0xc7, 0x6b, 0xe4, 0x30, 0xec, + 0x24, 0x5e, 0x28, 0x22, 0xdd, 0xd6, 0xfa, 0x9d, 0x27, 0x5d, 0x8c, 0x78, 0x73, 0xdf, 0x90, 0xc7, + 0x9d, 0x79, 0x24, 0x85, 0x8d, 0xce, 0x6d, 0xe1, 0x9c, 0x0b, 0x63, 0x72, 0x62, 0xe6, 0x68, 0xed, + 0xcb, 0xfa, 0x66, 0x7c, 0xfc, 0x0a, 0x94, 0x9e, 0xad, 0x85, 0xb7, 0x3a, 0x4e, 0x90, 0x78, 0xc9, + 0x81, 0xa6, 0xe3, 0xb3, 0x5a, 0xc4, 0x44, 0x1c, 0x60, 0x2d, 0xbb, 0x30, 0xa1, 0xcf, 0xb9, 0x01, + 0xd6, 0x14, 0xc2, 0xc9, 0x9c, 0xf9, 0x34, 0xc0, 0x0a, 0x3b, 0xf0, 0x78, 0xcf, 0x79, 0x31, 0xb8, + 0x6a, 0xed, 0xdf, 0xb1, 0x74, 0x81, 0x39, 0x70, 0xbf, 0xc9, 0x86, 0xe9, 0x37, 0x39, 0x5f, 0x76, + 0xdd, 0xf4, 0x70, 0x9e, 0x6c, 0xeb, 0x8d, 0xa7, 0xdb, 0x00, 0xda, 0x84, 0x11, 0x9f, 0x42, 0xe4, + 0x11, 0xd2, 0x85, 0x7e, 0x56, 0x66, 0xaa, 0x59, 0x30, 0x78, 0x8c, 0x05, 0x2f, 0xfb, 0xfb, 0x16, + 0x0c, 0x0d, 0x7c, 0x6c, 0x1a, 0xe6, 0xd8, 0xf4, 0x52, 0x4e, 0xc5, 0x5d, 0xd8, 0x05, 0xec, 0xdc, + 0x5d, 0xbd, 0x97, 0x90, 0x20, 0x66, 0x4a, 0x64, 0xee, 0xf0, 0xfc, 0x66, 0x05, 0xc6, 0x69, 0x45, + 0x32, 0x00, 0xe0, 0x75, 0x98, 0xf4, 0x9d, 0x2d, 0xe2, 0x4b, 0x0f, 0x6f, 0xd6, 0xe0, 0xba, 0xa6, + 0x23, 0xb1, 0x49, 0x4b, 0x0b, 0x6f, 0xeb, 0x0e, 0x70, 0xa1, 0x0c, 0xa9, 0xc2, 0x86, 0x77, 0x1c, + 0x9b, 0xb4, 0x54, 0xe7, 0xbf, 0xeb, 0x24, 0xad, 0x5d, 0x61, 0x8c, 0xa9, 0xe6, 0xde, 0xa6, 0x40, + 0xcc, 0x71, 0x68, 0x09, 0xa6, 0xe5, 0x5c, 0xbd, 0x45, 0xad, 0xf4, 0x30, 0x10, 0x8a, 0xa2, 0xba, + 0xc0, 0x88, 0x4d, 0x34, 0xce, 0xd2, 0xa3, 0x4f, 0xc1, 0x14, 0x1d, 0x9c, 0xb0, 0x93, 0xc8, 0xf0, + 0x86, 0x61, 0x16, 0xde, 0xc0, 0xa2, 0x53, 0x37, 0x0d, 0x0c, 0xce, 0x50, 0xda, 0x5f, 0x82, 0x93, + 0xd7, 0x42, 0xc7, 0x5d, 0x76, 0x7c, 0x27, 0x68, 0x91, 0x68, 0x3d, 0xd8, 0x29, 0x3c, 0x09, 0xd6, + 0x4f, 0x6b, 0x2b, 0x45, 0xa7, 0xb5, 0x76, 0x04, 0x48, 0xaf, 0x40, 0x04, 0xe6, 0xbc, 0x03, 0xa3, + 0x1e, 0xaf, 0x4a, 0x4c, 0xd9, 0x8b, 0x45, 0xee, 0xa4, 0xae, 0x36, 0x6a, 0x81, 0x26, 0x1c, 0x80, + 0x25, 0x4b, 0x6a, 0x43, 0xe4, 0xf9, 0x9f, 0x8a, 0xcd, 0x34, 0xfb, 0x6f, 0x58, 0x30, 0x7d, 0x3d, + 0x73, 0x4b, 0xee, 0x19, 0x18, 0x89, 0x49, 0x94, 0xe3, 0x4c, 0x6b, 0x32, 0x28, 0x16, 0xd8, 0x87, + 0x6e, 0xa0, 0xff, 0x4a, 0x05, 0x6a, 0x2c, 0xb8, 0xb3, 0xed, 0xb4, 0x06, 0xa9, 0x8e, 0x6e, 0x18, + 0xea, 0x68, 0x81, 0x79, 0xa8, 0x1a, 0xd4, 0x4b, 0x1b, 0x45, 0x37, 0xd5, 0xad, 0xb1, 0x52, 0x96, + 0x61, 0xca, 0x90, 0xdf, 0x31, 0x9a, 0x32, 0x2f, 0x99, 0xc9, 0x1b, 0x65, 0xec, 0xfc, 0x54, 0xd1, + 0x7e, 0xc8, 0xce, 0x4f, 0x55, 0xbb, 0x7a, 0x88, 0xa4, 0x86, 0xd6, 0x74, 0x26, 0xb0, 0x3f, 0xcd, + 0x82, 0xf5, 0x1c, 0xdf, 0xfb, 0x2a, 0x51, 0x57, 0x2f, 0xe7, 0x45, 0xf8, 0x9d, 0x80, 0xde, 0x67, + 0xd2, 0x45, 0xfc, 0xe3, 0x37, 0x6a, 0xd3, 0x22, 0xf6, 0x15, 0x98, 0xce, 0x0c, 0x1c, 0x7a, 0x05, + 0x86, 0xdb, 0xbb, 0x4e, 0x4c, 0x32, 0x81, 0x20, 0xc3, 0x0d, 0x0a, 0xbc, 0x7f, 0x38, 0x3f, 0xa5, + 0x0a, 0x30, 0x08, 0xe6, 0xd4, 0xf6, 0x5f, 0x58, 0x30, 0x74, 0x3d, 0x74, 0x07, 0x39, 0xc1, 0xae, + 0x18, 0x13, 0xec, 0x99, 0xe2, 0x7b, 0xf8, 0x3d, 0xe7, 0x56, 0x23, 0x33, 0xb7, 0xce, 0x97, 0xe0, + 0x75, 0xfc, 0xb4, 0xda, 0x83, 0x71, 0x76, 0xcf, 0x5f, 0x44, 0xc0, 0xbc, 0x64, 0xd8, 0x4d, 0xf3, + 0x19, 0xbb, 0x69, 0x5a, 0x23, 0xd5, 0xac, 0xa7, 0x67, 0x61, 0x54, 0x44, 0x5c, 0x64, 0x83, 0x14, + 0x05, 0x2d, 0x96, 0x78, 0xfb, 0x5f, 0x54, 0xc1, 0xc8, 0x2b, 0x80, 0xfe, 0xd0, 0x82, 0x85, 0x88, + 0x5f, 0xb8, 0x70, 0xeb, 0x9d, 0xc8, 0x0b, 0x76, 0x9a, 0xad, 0x5d, 0xe2, 0x76, 0x7c, 0x2f, 0xd8, + 0x59, 0xdf, 0x09, 0x42, 0x05, 0x5e, 0xbd, 0x47, 0x5a, 0x1d, 0xe6, 0x54, 0x2d, 0x9d, 0xce, 0x40, + 0x9d, 0x69, 0x5e, 0x3a, 0x3a, 0x9c, 0x5f, 0xc0, 0x7d, 0xd5, 0x82, 0xfb, 0x6c, 0x15, 0xfa, 0x63, + 0x0b, 0x16, 0xf9, 0xcd, 0xfa, 0xf2, 0x3d, 0x29, 0x65, 0x6f, 0x36, 0x24, 0xd3, 0x94, 0xdd, 0x26, + 0x89, 0xf6, 0x96, 0x5f, 0x15, 0x83, 0xbc, 0xd8, 0xe8, 0xaf, 0x56, 0xdc, 0x6f, 0x33, 0xed, 0xdf, + 0xad, 0xc2, 0x24, 0x1d, 0xcf, 0xf4, 0x56, 0xed, 0x2b, 0xc6, 0x34, 0xf9, 0x68, 0x66, 0x9a, 0x9c, + 0x30, 0x88, 0x1f, 0xce, 0x85, 0xda, 0x77, 0xe1, 0x84, 0xef, 0xc4, 0xc9, 0x15, 0xe2, 0x44, 0xc9, + 0x16, 0x71, 0xd8, 0x31, 0x62, 0xf1, 0x22, 0xc8, 0x9c, 0x4b, 0xaa, 0x18, 0x9e, 0x6b, 0x59, 0x56, + 0xb8, 0x9b, 0x3b, 0x4a, 0x00, 0xb1, 0x03, 0xcb, 0xc8, 0x09, 0x62, 0xde, 0x13, 0x4f, 0x38, 0x61, + 0xfb, 0xa9, 0x73, 0x4e, 0xd4, 0x89, 0xae, 0x75, 0xf1, 0xc2, 0x39, 0xfc, 0xb5, 0xc3, 0xe8, 0xe1, + 0xb2, 0x87, 0xd1, 0x23, 0x05, 0x91, 0xc1, 0xbf, 0x64, 0xc1, 0x49, 0xfa, 0x49, 0xcc, 0x28, 0xd2, + 0x18, 0x85, 0x30, 0x4d, 0x9b, 0xef, 0x93, 0x44, 0xc2, 0x8a, 0xf7, 0x11, 0x16, 0xea, 0x67, 0xf0, + 0x49, 0x15, 0xb5, 0xab, 0x26, 0x33, 0x9c, 0xe5, 0x6e, 0x7f, 0xc7, 0x02, 0x16, 0xa6, 0x36, 0xf0, + 0xed, 0xeb, 0xb2, 0xb9, 0x7d, 0xd9, 0xc5, 0xb2, 0xa2, 0xc7, 0xce, 0xf5, 0x32, 0xcc, 0x50, 0x6c, + 0x23, 0x0a, 0xef, 0x1d, 0x48, 0x85, 0xba, 0xd8, 0x13, 0xfb, 0x5e, 0x85, 0x2f, 0x18, 0x75, 0x67, + 0x0c, 0xfd, 0xb2, 0x05, 0x63, 0x2d, 0xa7, 0xed, 0xb4, 0x78, 0x3e, 0x96, 0x12, 0x5e, 0x17, 0xa3, + 0xfc, 0xc2, 0x8a, 0x28, 0xcb, 0x3d, 0x06, 0x2f, 0xca, 0xae, 0x4b, 0x70, 0xa1, 0x97, 0x40, 0x55, + 0x3e, 0xe7, 0xc1, 0xa4, 0xc1, 0x6c, 0x80, 0x66, 0xe6, 0x2f, 0x5b, 0x5c, 0xd8, 0x2b, 0x83, 0xe0, + 0x2e, 0x9c, 0x08, 0xb4, 0xff, 0x54, 0x8c, 0x49, 0xfd, 0x77, 0xa1, 0xbc, 0x38, 0x67, 0xd2, 0x4f, + 0x0b, 0xc7, 0xcb, 0x30, 0xc4, 0xdd, 0x75, 0xd8, 0xff, 0xd8, 0x82, 0xc7, 0x74, 0x42, 0xed, 0x8a, + 0x5f, 0x91, 0x17, 0xb8, 0x0e, 0x63, 0x61, 0x9b, 0x44, 0x4e, 0x6a, 0xfc, 0x9c, 0x97, 0xa3, 0x7f, + 0x43, 0xc0, 0xef, 0x1f, 0xce, 0x9f, 0xd2, 0xb9, 0x4b, 0x38, 0x56, 0x25, 0x91, 0x0d, 0x23, 0x6c, + 0x5c, 0x62, 0x71, 0x39, 0x93, 0x65, 0x27, 0x61, 0x67, 0x1f, 0x31, 0x16, 0x18, 0xfb, 0x6f, 0x5a, + 0x7c, 0xb2, 0xe9, 0x4d, 0x47, 0x5f, 0x83, 0x99, 0x3d, 0x6a, 0x27, 0xad, 0xde, 0x6b, 0xd3, 0x0d, + 0x94, 0x9d, 0xf9, 0x5a, 0x65, 0xb6, 0x8d, 0x1e, 0xdd, 0x5d, 0x9e, 0x15, 0xad, 0x9f, 0xd9, 0xc8, + 0xb0, 0xc5, 0x5d, 0x15, 0xd9, 0x7f, 0x22, 0xd6, 0x2b, 0xd3, 0xd9, 0x9e, 0x85, 0xd1, 0x76, 0xe8, + 0xae, 0xac, 0xd7, 0xb1, 0x18, 0x2b, 0x25, 0x70, 0x1a, 0x1c, 0x8c, 0x25, 0x1e, 0x5d, 0x02, 0x20, + 0xf7, 0x12, 0x12, 0x05, 0x8e, 0xaf, 0xce, 0x6a, 0x95, 0x8a, 0xb4, 0xaa, 0x30, 0x58, 0xa3, 0xa2, + 0x65, 0xda, 0x51, 0xb8, 0xef, 0xb9, 0x2c, 0x36, 0xbe, 0x6a, 0x96, 0x69, 0x28, 0x0c, 0xd6, 0xa8, + 0xa8, 0x75, 0xda, 0x09, 0x62, 0xbe, 0x7d, 0x39, 0x5b, 0x22, 0xa9, 0xc6, 0x58, 0x6a, 0x9d, 0xde, + 0xd4, 0x91, 0xd8, 0xa4, 0xb5, 0x7f, 0x5a, 0x03, 0x48, 0x15, 0x24, 0xf4, 0x5e, 0xf7, 0x0a, 0xfd, + 0x44, 0x59, 0xed, 0xea, 0xe1, 0x2d, 0x4f, 0xf4, 0x4d, 0x0b, 0xc6, 0x1d, 0xdf, 0x0f, 0x5b, 0x4e, + 0xc2, 0x7a, 0x54, 0x29, 0x2b, 0x2b, 0x44, 0x4b, 0x96, 0xd2, 0xb2, 0xbc, 0x31, 0x2f, 0xc9, 0xa3, + 0x3c, 0x0d, 0x53, 0xd8, 0x1e, 0xbd, 0x09, 0xe8, 0x45, 0xa9, 0x58, 0xf3, 0x8f, 0x32, 0x97, 0x55, + 0xac, 0x6b, 0x4c, 0x42, 0x6a, 0x3a, 0x35, 0xfa, 0x92, 0x91, 0x3f, 0x62, 0xa8, 0xcc, 0x9d, 0x40, + 0x43, 0x65, 0x28, 0x4a, 0x1d, 0x81, 0x3e, 0xaf, 0x87, 0x0d, 0x0f, 0x97, 0xb9, 0x74, 0xab, 0x69, + 0xae, 0x05, 0x21, 0xc3, 0x09, 0x4c, 0xbb, 0xe6, 0x46, 0x29, 0x02, 0xad, 0x2e, 0x16, 0xd7, 0x90, + 0xd9, 0x61, 0xd3, 0xad, 0x31, 0x83, 0xc0, 0xd9, 0x2a, 0xe8, 0x6e, 0x48, 0xc5, 0xd6, 0x7a, 0xb0, + 0x1d, 0x8a, 0x70, 0xab, 0x0b, 0x25, 0xbe, 0xf9, 0x41, 0x9c, 0x90, 0x3d, 0x5a, 0x26, 0xdd, 0x0d, + 0xaf, 0x0b, 0x2e, 0x58, 0xf1, 0x43, 0x9b, 0x30, 0xc2, 0xae, 0xa0, 0xc4, 0xb3, 0x63, 0x65, 0xdc, + 0x63, 0xe6, 0x9d, 0xcb, 0x54, 0x01, 0x61, 0x7f, 0x63, 0x2c, 0x78, 0xa1, 0x2b, 0xf2, 0xee, 0x73, + 0xbc, 0x1e, 0xdc, 0x8c, 0x09, 0xbb, 0xfb, 0x5c, 0x5b, 0xfe, 0x58, 0x7a, 0x99, 0x99, 0xc3, 0x73, + 0x33, 0x66, 0x19, 0x25, 0xa9, 0x1e, 0x22, 0xfe, 0xcb, 0x44, 0x5c, 0xb3, 0x50, 0xa6, 0xa1, 0x66, + 0xda, 0xae, 0x74, 0xb0, 0x6f, 0x99, 0xcc, 0x70, 0x96, 0xfb, 0x23, 0xdc, 0x03, 0xe7, 0x7c, 0x98, + 0xc9, 0x2e, 0xc9, 0x01, 0xee, 0xb8, 0x7f, 0x3e, 0x04, 0x53, 0xe6, 0xc4, 0x40, 0x8b, 0x50, 0xdb, + 0x63, 0x69, 0xb2, 0xd2, 0xe4, 0x3c, 0x6a, 0xfe, 0x6f, 0x48, 0x04, 0x4e, 0x69, 0x58, 0x9a, 0x22, + 0x56, 0x5c, 0x0b, 0xb4, 0x49, 0xd3, 0x14, 0x29, 0x0c, 0xd6, 0xa8, 0xa8, 0xd2, 0xba, 0x15, 0x86, + 0x89, 0x12, 0xdc, 0x6a, 0xce, 0x2c, 0x33, 0x28, 0x16, 0x58, 0x2a, 0xb0, 0xef, 0xd0, 0x0e, 0xf9, + 0xa6, 0xab, 0x4f, 0x09, 0xec, 0xab, 0x3a, 0x12, 0x9b, 0xb4, 0x74, 0x03, 0x0a, 0x63, 0x36, 0x09, + 0x85, 0x6a, 0x9c, 0x06, 0x2e, 0x35, 0xf9, 0x95, 0x2c, 0x89, 0x47, 0x9f, 0x83, 0xc7, 0xd4, 0x0d, + 0x2a, 0xcc, 0x5d, 0xa7, 0xb2, 0xc6, 0x11, 0xc3, 0xb2, 0x7d, 0x6c, 0x25, 0x9f, 0x0c, 0xf7, 0x2a, + 0x8f, 0xde, 0x84, 0x29, 0xa1, 0xd6, 0x4a, 0x8e, 0xa3, 0xe6, 0xb9, 0xf6, 0x55, 0x03, 0x8b, 0x33, + 0xd4, 0xa8, 0x0e, 0x33, 0x14, 0xc2, 0x34, 0x4a, 0xc9, 0x81, 0xdf, 0x04, 0x53, 0x3b, 0xf3, 0xd5, + 0x0c, 0x1e, 0x77, 0x95, 0x40, 0x4b, 0x30, 0xcd, 0x75, 0x0b, 0x6a, 0xbf, 0xb1, 0xef, 0x20, 0x22, + 0x24, 0xd5, 0x22, 0xb8, 0x61, 0xa2, 0x71, 0x96, 0x1e, 0xbd, 0x06, 0x13, 0x4e, 0xd4, 0xda, 0xf5, + 0x12, 0xd2, 0x4a, 0x3a, 0x11, 0xcf, 0x2a, 0xa0, 0x05, 0x06, 0x2c, 0x69, 0x38, 0x6c, 0x50, 0xda, + 0x5f, 0x85, 0x93, 0x39, 0x21, 0xd8, 0x74, 0xe2, 0x38, 0x6d, 0x4f, 0xf6, 0x29, 0x13, 0x82, 0xb4, + 0xd4, 0x58, 0x97, 0xbd, 0xd1, 0xa8, 0xe8, 0xec, 0x64, 0x3e, 0x63, 0x2d, 0x67, 0x9e, 0x9a, 0x9d, + 0x6b, 0x12, 0x81, 0x53, 0x1a, 0xfb, 0xbf, 0xd5, 0x40, 0x73, 0xb2, 0x94, 0x08, 0x3c, 0x79, 0x0d, + 0x26, 0x64, 0x1a, 0x48, 0x2d, 0xfd, 0x9a, 0xea, 0xe6, 0x65, 0x0d, 0x87, 0x0d, 0x4a, 0xda, 0xb6, + 0x40, 0xba, 0x8c, 0xb2, 0x01, 0x4f, 0xca, 0x97, 0x84, 0x53, 0x1a, 0x74, 0x01, 0xc6, 0x62, 0xe2, + 0x6f, 0x5f, 0xf3, 0x82, 0x3b, 0x62, 0x62, 0x2b, 0xa9, 0xdc, 0x14, 0x70, 0xac, 0x28, 0xd0, 0x67, + 0xa0, 0xda, 0xf1, 0x5c, 0x31, 0x95, 0x17, 0xa4, 0xde, 0x79, 0x73, 0xbd, 0x7e, 0xff, 0x70, 0x7e, + 0x3e, 0x3f, 0xb7, 0x25, 0x35, 0xa2, 0xe3, 0x05, 0xba, 0xf8, 0x68, 0xd1, 0x3c, 0xd7, 0xf9, 0x48, + 0x9f, 0xae, 0xf3, 0x4b, 0x00, 0xa2, 0xcf, 0x72, 0x26, 0x57, 0xd3, 0x6f, 0x76, 0x59, 0x61, 0xb0, + 0x46, 0x45, 0x4d, 0xf1, 0x56, 0x44, 0x1c, 0x69, 0xb1, 0xf2, 0x10, 0xe1, 0xb1, 0x07, 0x35, 0xc5, + 0x57, 0xb2, 0xac, 0x70, 0x37, 0x77, 0xb4, 0x07, 0x27, 0x5c, 0xba, 0x88, 0x8c, 0x2a, 0x6b, 0xfd, + 0x46, 0x25, 0xd3, 0xea, 0xea, 0x59, 0x36, 0xb8, 0x9b, 0x33, 0xfa, 0x22, 0xcc, 0x49, 0x60, 0xf7, + 0xed, 0x48, 0xb6, 0x50, 0xaa, 0xcb, 0x67, 0x8f, 0x0e, 0xe7, 0xe7, 0xea, 0x3d, 0xa9, 0xf0, 0x31, + 0x1c, 0xd0, 0x3b, 0x30, 0xc2, 0x8e, 0x59, 0xe2, 0xd9, 0x71, 0xb6, 0xcf, 0xbd, 0x5c, 0xd6, 0xd1, + 0xb8, 0xc0, 0x0e, 0x6b, 0x44, 0xdc, 0x66, 0x7a, 0x6e, 0xc5, 0x80, 0x58, 0xf0, 0x44, 0x6d, 0x18, + 0x77, 0x82, 0x20, 0x4c, 0x1c, 0xae, 0x7e, 0x4d, 0x94, 0xd1, 0x20, 0xb5, 0x2a, 0x96, 0xd2, 0xb2, + 0xbc, 0x1e, 0x15, 0x0c, 0xa6, 0x61, 0xb0, 0x5e, 0x05, 0xea, 0xc0, 0x74, 0x78, 0x97, 0x8a, 0x4a, + 0x79, 0xd2, 0x10, 0xcf, 0x4e, 0x16, 0x25, 0xae, 0x4c, 0x3f, 0xce, 0x0d, 0xa3, 0xa8, 0x26, 0xc1, + 0x4c, 0x96, 0x38, 0x5b, 0x07, 0x5a, 0x30, 0xbc, 0xc8, 0x53, 0x69, 0x6c, 0x72, 0xea, 0x45, 0xd6, + 0x9d, 0xc6, 0xec, 0xfe, 0x2d, 0x8f, 0x47, 0x64, 0x92, 0x60, 0x3a, 0x73, 0xff, 0x36, 0x45, 0x61, + 0x9d, 0x6e, 0xee, 0x93, 0x30, 0xae, 0x0d, 0x7b, 0x3f, 0x41, 0xb0, 0x73, 0x6f, 0xc2, 0x4c, 0x76, + 0x38, 0xfb, 0x0a, 0xa2, 0xfd, 0x1f, 0x15, 0x98, 0xce, 0x39, 0xc4, 0xb9, 0xe3, 0xb1, 0x40, 0x6e, + 0x43, 0xe4, 0x5d, 0xf5, 0x02, 0x17, 0x33, 0x8c, 0x29, 0xb8, 0x2a, 0x25, 0x04, 0x97, 0x94, 0xa2, + 0xd5, 0x9e, 0x52, 0x54, 0x08, 0xab, 0xa1, 0x07, 0x17, 0x56, 0xe6, 0xee, 0x30, 0x5c, 0x6a, 0x77, + 0x78, 0x08, 0x02, 0xce, 0xd8, 0x60, 0x46, 0x4b, 0x6c, 0x30, 0xdf, 0xae, 0xc0, 0x4c, 0x1a, 0x2e, + 0x2c, 0x32, 0xc2, 0x0e, 0xee, 0x6c, 0x60, 0xd3, 0x38, 0x1b, 0x28, 0x4a, 0xf4, 0x9a, 0x69, 0x57, + 0xcf, 0x73, 0x82, 0x77, 0x32, 0xe7, 0x04, 0x2f, 0xf7, 0xc9, 0xf7, 0xf8, 0x33, 0x83, 0xef, 0x54, + 0xe0, 0x74, 0xb6, 0xc8, 0x8a, 0xef, 0x78, 0x7b, 0x03, 0x1c, 0xa7, 0xcf, 0x19, 0xe3, 0xf4, 0x6a, + 0x7f, 0xfd, 0x61, 0x8d, 0xeb, 0x39, 0x58, 0x4e, 0x66, 0xb0, 0x3e, 0xf9, 0x20, 0xcc, 0x8f, 0x1f, + 0xb1, 0x9f, 0x5a, 0xf0, 0x78, 0x6e, 0xb9, 0x81, 0x7b, 0x42, 0xdf, 0x36, 0x3d, 0xa1, 0x2f, 0x3d, + 0x40, 0xdf, 0x7a, 0xb8, 0x46, 0x8f, 0x2a, 0x3d, 0xfa, 0xc4, 0xbc, 0x45, 0x37, 0x60, 0xdc, 0x69, + 0xb5, 0x48, 0x1c, 0x6f, 0x84, 0xae, 0xca, 0xd7, 0xf3, 0x02, 0xdb, 0x45, 0x52, 0xf0, 0xfd, 0xc3, + 0xf9, 0xb9, 0x2c, 0x8b, 0x14, 0x8d, 0x75, 0x0e, 0x66, 0x3e, 0xaf, 0xca, 0x80, 0xf2, 0x79, 0x5d, + 0x02, 0xd8, 0x57, 0x56, 0x6a, 0xd6, 0x09, 0xa5, 0xd9, 0xaf, 0x1a, 0x15, 0xfa, 0x02, 0xd3, 0xfa, + 0x78, 0x74, 0xc4, 0x50, 0x91, 0xa3, 0x40, 0xfb, 0x7a, 0x7a, 0x9c, 0x05, 0xbf, 0xbe, 0xa8, 0xdc, + 0x75, 0x8a, 0xa1, 0xfd, 0xfd, 0x2a, 0xfc, 0xdc, 0x31, 0x13, 0x0e, 0x2d, 0x99, 0x87, 0x9e, 0xcf, + 0x67, 0x7d, 0x33, 0x73, 0xb9, 0x85, 0x0d, 0x67, 0x4d, 0xe6, 0x4b, 0x55, 0x3e, 0xf0, 0x97, 0xfa, + 0x96, 0xee, 0x49, 0xe3, 0xc1, 0x8d, 0x97, 0x1f, 0x78, 0x49, 0xfd, 0x6c, 0x7a, 0xbe, 0xbf, 0x6e, + 0xc1, 0x47, 0x73, 0x3b, 0x65, 0x04, 0x56, 0x2c, 0x42, 0xad, 0x45, 0x81, 0xda, 0xed, 0x93, 0xf4, + 0xda, 0x97, 0x44, 0xe0, 0x94, 0xc6, 0x88, 0x9f, 0xa8, 0x14, 0xc6, 0x4f, 0xfc, 0x3b, 0x0b, 0x4e, + 0x65, 0x1b, 0x31, 0x70, 0x79, 0xd3, 0x34, 0xe5, 0xcd, 0x42, 0x7f, 0x1f, 0xbe, 0x87, 0xa8, 0xf9, + 0xf6, 0x24, 0x9c, 0xe9, 0xda, 0xa3, 0xf8, 0x18, 0xfe, 0x82, 0x05, 0x27, 0x76, 0x98, 0x7e, 0xad, + 0x5d, 0xf0, 0x11, 0xbd, 0x2a, 0xb8, 0x15, 0x75, 0xec, 0xbd, 0x20, 0x6e, 0x2d, 0x74, 0x91, 0xe0, + 0xee, 0xca, 0xd0, 0x37, 0x2c, 0x38, 0xe5, 0xdc, 0x8d, 0xbb, 0x5e, 0x15, 0x10, 0x93, 0xe8, 0xcd, + 0x02, 0x27, 0x56, 0xc1, 0x7b, 0x04, 0xcb, 0xb3, 0x47, 0x87, 0xf3, 0xa7, 0xf2, 0xa8, 0x70, 0x6e, + 0xad, 0xe8, 0x1d, 0x91, 0x9d, 0x8c, 0x2a, 0x3c, 0xa5, 0xae, 0xaa, 0xe5, 0x5d, 0x37, 0xe0, 0x02, + 0x49, 0x62, 0xb0, 0xe2, 0x88, 0xbe, 0x0c, 0xb5, 0x1d, 0x79, 0xa7, 0x47, 0x88, 0xbb, 0x82, 0x3d, + 0x25, 0xf7, 0x0a, 0x10, 0x0f, 0x6a, 0x57, 0x28, 0x9c, 0x32, 0x45, 0x57, 0xa0, 0x1a, 0x6c, 0xc7, + 0xe2, 0xde, 0x6c, 0x51, 0xf0, 0x8c, 0x19, 0xaa, 0xc4, 0x2f, 0x1c, 0x5e, 0x5f, 0x6b, 0x62, 0xca, + 0x82, 0x72, 0x8a, 0xb6, 0x5c, 0xe1, 0xbd, 0x2d, 0xe0, 0x84, 0x97, 0xeb, 0xdd, 0x9c, 0xf0, 0x72, + 0x1d, 0x53, 0x16, 0x2c, 0x4a, 0x2f, 0x6e, 0xc5, 0x9e, 0x70, 0xcd, 0x16, 0x5c, 0xaa, 0xee, 0xba, + 0x84, 0xc1, 0x13, 0xd5, 0x31, 0x30, 0xe6, 0x8c, 0xd0, 0x26, 0x8c, 0xb4, 0x58, 0x22, 0x6d, 0x61, + 0x39, 0x17, 0xa5, 0x04, 0xe8, 0x4a, 0xba, 0xcd, 0x8f, 0x90, 0x38, 0x1c, 0x0b, 0x5e, 0x8c, 0x2b, + 0x69, 0xef, 0x6e, 0xc7, 0xc2, 0x38, 0x2e, 0xe2, 0xda, 0x95, 0x12, 0x5d, 0x70, 0x65, 0x70, 0x2c, + 0x78, 0xa1, 0x3a, 0x54, 0xb6, 0x5b, 0x22, 0xeb, 0x64, 0x81, 0x4b, 0xd6, 0xbc, 0x3d, 0xba, 0x3c, + 0x72, 0x74, 0x38, 0x5f, 0x59, 0x5b, 0xc1, 0x95, 0xed, 0x16, 0x7a, 0x1b, 0x46, 0xb7, 0xf9, 0x7d, + 0x40, 0x91, 0x61, 0xf2, 0x62, 0xd1, 0xa5, 0xc5, 0xae, 0xcb, 0x83, 0xfc, 0xe2, 0x82, 0x40, 0x60, + 0xc9, 0x0e, 0x7d, 0x11, 0x60, 0x5b, 0xdd, 0x70, 0x14, 0x29, 0x26, 0x17, 0xfa, 0xbb, 0x11, 0x29, + 0xec, 0x46, 0x05, 0xc5, 0x1a, 0x47, 0x3a, 0xe7, 0x1d, 0xf9, 0x16, 0x00, 0x4b, 0x2f, 0x59, 0x38, + 0xe7, 0x73, 0x9f, 0x0e, 0xe0, 0x73, 0x5e, 0xa1, 0x70, 0xca, 0x14, 0x75, 0x60, 0x72, 0x3f, 0x6e, + 0xef, 0x12, 0xb9, 0xf4, 0x59, 0xce, 0xc9, 0xf1, 0x4b, 0x6f, 0x14, 0x24, 0x12, 0x15, 0x45, 0xbc, + 0x28, 0xe9, 0x38, 0x7e, 0x97, 0x04, 0x63, 0xd9, 0x96, 0x6e, 0xe9, 0x6c, 0xb1, 0x59, 0x0b, 0xfd, + 0x24, 0xef, 0x76, 0xc2, 0xad, 0x83, 0x84, 0x88, 0x9c, 0x94, 0x05, 0x9f, 0xe4, 0x2d, 0x4e, 0xdc, + 0xfd, 0x49, 0x04, 0x02, 0x4b, 0x76, 0x6a, 0xc8, 0x98, 0x34, 0x9e, 0x29, 0x3d, 0x64, 0x5d, 0x7d, + 0x48, 0x87, 0x8c, 0x49, 0xdf, 0x94, 0x29, 0x93, 0xba, 0xed, 0xdd, 0x30, 0x09, 0x83, 0x8c, 0xec, + 0x3f, 0x51, 0x46, 0xea, 0x36, 0x72, 0x4a, 0x76, 0x4b, 0xdd, 0x3c, 0x2a, 0x9c, 0x5b, 0xab, 0xfd, + 0x27, 0xc3, 0xdd, 0x9b, 0x2d, 0x53, 0x84, 0x7f, 0xb5, 0xfb, 0x5c, 0xf1, 0x33, 0xfd, 0x5b, 0x79, + 0x0f, 0xf1, 0x84, 0xf1, 0x1b, 0x16, 0x9c, 0x69, 0xe7, 0x6e, 0xa6, 0x62, 0xc3, 0xea, 0xd7, 0x58, + 0xe4, 0x03, 0xa6, 0x12, 0xae, 0xe6, 0xe3, 0x71, 0x8f, 0x3a, 0xb3, 0xea, 0x67, 0xf5, 0x03, 0xab, + 0x9f, 0xb7, 0x61, 0x8c, 0x69, 0x4c, 0x69, 0x0e, 0x8c, 0x3e, 0xd3, 0x46, 0xb0, 0xad, 0x6f, 0x45, + 0xb0, 0xc0, 0x8a, 0x19, 0x1d, 0xb8, 0x27, 0xb3, 0x9d, 0xc0, 0x84, 0xa1, 0x45, 0xa6, 0x58, 0xee, + 0xd5, 0x58, 0x13, 0x23, 0xf1, 0x64, 0xe3, 0x38, 0xe2, 0xfb, 0x45, 0x04, 0xf8, 0xf8, 0xca, 0x1e, + 0xa5, 0x3a, 0xfb, 0x4f, 0xad, 0x1c, 0xfd, 0x8b, 0x1b, 0x20, 0x6f, 0x98, 0x06, 0xc8, 0x33, 0x59, + 0x03, 0xa4, 0xcb, 0x51, 0x60, 0xd8, 0x1e, 0xe5, 0xd3, 0x1b, 0x96, 0x4d, 0xd2, 0x61, 0xfb, 0x70, + 0xae, 0x68, 0x71, 0xb3, 0x08, 0x1e, 0x57, 0x1d, 0x87, 0xa5, 0x11, 0x3c, 0xee, 0x7a, 0x1d, 0x33, + 0x4c, 0xd9, 0xdb, 0xde, 0xf6, 0xff, 0xb2, 0xa0, 0xda, 0x08, 0xdd, 0x01, 0x3a, 0x3e, 0x2e, 0x1b, + 0x8e, 0x8f, 0xa7, 0x0b, 0x5f, 0x40, 0xea, 0xe9, 0xe6, 0xb8, 0x91, 0x71, 0x73, 0x7c, 0xbc, 0x98, + 0xd5, 0xf1, 0x4e, 0x8d, 0x1f, 0x54, 0x41, 0x7f, 0xc3, 0x09, 0xfd, 0xc7, 0x07, 0x09, 0xe5, 0xac, + 0x96, 0x7b, 0xd6, 0x49, 0xd4, 0xc1, 0x42, 0x7f, 0xe4, 0xf5, 0xae, 0x9f, 0xd9, 0x88, 0xce, 0xdb, + 0xc4, 0xdb, 0xd9, 0x4d, 0x88, 0x9b, 0xed, 0xd8, 0xa3, 0x8b, 0xe8, 0xfc, 0xaf, 0x16, 0x4c, 0x67, + 0x6a, 0x47, 0x5f, 0xc9, 0xbb, 0x27, 0xf2, 0x40, 0xce, 0x8c, 0x13, 0x85, 0xd7, 0x4a, 0x16, 0x00, + 0x94, 0xf7, 0x59, 0xba, 0x1c, 0x98, 0x06, 0xa6, 0xdc, 0xd3, 0x31, 0xd6, 0x28, 0xd0, 0x2b, 0x30, + 0x9e, 0x84, 0xed, 0xd0, 0x0f, 0x77, 0x0e, 0xae, 0x12, 0x99, 0x7d, 0x40, 0x79, 0xee, 0x37, 0x53, + 0x14, 0xd6, 0xe9, 0xec, 0x1f, 0x55, 0x21, 0xfb, 0xfe, 0xd7, 0xff, 0x9b, 0xa5, 0x3f, 0x3b, 0xb3, + 0xf4, 0x8f, 0x2c, 0x98, 0xa1, 0xb5, 0xb3, 0xb0, 0x0d, 0x19, 0x7d, 0xa9, 0x32, 0x9c, 0x5b, 0xc7, + 0x64, 0x38, 0x7f, 0x86, 0xca, 0x3a, 0x37, 0xec, 0x24, 0xc2, 0x4d, 0xa2, 0x89, 0x30, 0x0a, 0xc5, + 0x02, 0x2b, 0xe8, 0x48, 0x14, 0x89, 0xeb, 0x28, 0x3a, 0x1d, 0x89, 0x22, 0x2c, 0xb0, 0x32, 0x01, + 0xfa, 0x50, 0x8f, 0x04, 0xe8, 0x2c, 0x7f, 0x8f, 0x08, 0x17, 0x10, 0x4a, 0x80, 0x96, 0xbf, 0x47, + 0xc6, 0x11, 0xa4, 0x34, 0xf6, 0x77, 0xaa, 0x30, 0xd1, 0x08, 0xdd, 0x34, 0xa0, 0xfa, 0x65, 0x23, + 0xa0, 0xfa, 0x5c, 0x26, 0xa0, 0x7a, 0x46, 0xa7, 0x7d, 0x38, 0xf1, 0xd4, 0x22, 0xc7, 0x13, 0x4b, + 0xd1, 0xff, 0x40, 0xb1, 0xd4, 0x46, 0x8e, 0x27, 0xc5, 0x06, 0x9b, 0x5c, 0xff, 0xea, 0xc4, 0x50, + 0xff, 0x85, 0x05, 0x53, 0x8d, 0xd0, 0xa5, 0x93, 0xf3, 0xaf, 0xd2, 0x4c, 0xd4, 0x33, 0x43, 0x8d, + 0x1c, 0x93, 0x19, 0xea, 0xb7, 0x2c, 0x18, 0x6d, 0x84, 0xee, 0xc0, 0xdd, 0x87, 0x6b, 0xa6, 0xfb, + 0xf0, 0xa3, 0x85, 0x32, 0xb7, 0x87, 0xc7, 0xf0, 0xfb, 0x55, 0x98, 0xa4, 0xed, 0x0d, 0x77, 0xe4, + 0xd7, 0x32, 0x46, 0xc6, 0x2a, 0x31, 0x32, 0x54, 0x05, 0x0c, 0x7d, 0x3f, 0xbc, 0x9b, 0xfd, 0x72, + 0x6b, 0x0c, 0x8a, 0x05, 0x16, 0x5d, 0x80, 0xb1, 0x76, 0x44, 0xf6, 0xbd, 0xb0, 0x13, 0x67, 0x2f, + 0xb5, 0x35, 0x04, 0x1c, 0x2b, 0x0a, 0xf4, 0x32, 0x4c, 0xc4, 0x5e, 0xd0, 0x22, 0x32, 0x98, 0x60, + 0x88, 0x05, 0x13, 0xf0, 0xa4, 0x7b, 0x1a, 0x1c, 0x1b, 0x54, 0xe8, 0x26, 0xd4, 0xd8, 0x7f, 0xb6, + 0x7a, 0xfa, 0xcd, 0x9b, 0xce, 0xb3, 0x4e, 0xc9, 0xe2, 0x38, 0xe5, 0x84, 0x2e, 0x01, 0x24, 0x32, + 0xe8, 0x21, 0x16, 0xd9, 0x33, 0x94, 0x36, 0xaa, 0xc2, 0x21, 0x62, 0xac, 0x51, 0xa1, 0xe7, 0xa1, + 0x96, 0x38, 0x9e, 0x7f, 0xcd, 0x0b, 0x48, 0x2c, 0x02, 0x46, 0x44, 0x62, 0x5b, 0x01, 0xc4, 0x29, + 0x9e, 0xee, 0xf3, 0xec, 0x32, 0x2d, 0x7f, 0x8f, 0x61, 0x8c, 0x51, 0xb3, 0x7d, 0xfe, 0x9a, 0x82, + 0x62, 0x8d, 0xc2, 0x7e, 0x89, 0xed, 0xd7, 0x7d, 0x46, 0xdb, 0xff, 0xa4, 0x02, 0xa8, 0xc1, 0x82, + 0x2b, 0x8c, 0xa7, 0x30, 0x76, 0x61, 0x2a, 0x26, 0xd7, 0xbc, 0xa0, 0x73, 0x4f, 0xb0, 0x2a, 0x77, + 0xb9, 0xa1, 0xb9, 0xaa, 0x97, 0xe1, 0x77, 0x48, 0x4d, 0x18, 0xce, 0xf0, 0xa5, 0x43, 0x12, 0x75, + 0x82, 0xa5, 0xf8, 0x66, 0x4c, 0x22, 0xf1, 0xe8, 0x04, 0x1b, 0x12, 0x2c, 0x81, 0x38, 0xc5, 0xd3, + 0x09, 0xc0, 0xfe, 0x5c, 0x0f, 0x03, 0x1c, 0x86, 0x89, 0x9c, 0x32, 0x2c, 0x15, 0xb9, 0x06, 0xc7, + 0x06, 0x15, 0x5a, 0x03, 0x14, 0x77, 0xda, 0x6d, 0x9f, 0x9d, 0x62, 0x39, 0xfe, 0xe5, 0x28, 0xec, + 0xb4, 0x79, 0x64, 0xad, 0xc8, 0xe2, 0xdd, 0xec, 0xc2, 0xe2, 0x9c, 0x12, 0x74, 0xb9, 0x6f, 0xc7, + 0xec, 0xb7, 0xb8, 0x23, 0xcb, 0x3d, 0x6a, 0x4d, 0x06, 0xc2, 0x12, 0x67, 0x7f, 0x8d, 0x6d, 0x4f, + 0xec, 0x3d, 0x80, 0xa4, 0x13, 0x11, 0x74, 0x07, 0x26, 0xdb, 0x6c, 0x0b, 0x4a, 0xa2, 0xd0, 0xf7, + 0x49, 0x54, 0xfc, 0x62, 0x53, 0xcf, 0xf0, 0x0e, 0x9e, 0x03, 0x5c, 0x67, 0x86, 0x4d, 0xde, 0xf6, + 0x3f, 0x18, 0x67, 0xb2, 0x46, 0x1c, 0x23, 0x8e, 0x8a, 0xe0, 0x4d, 0xa1, 0x85, 0x7d, 0xac, 0xcc, + 0xdb, 0x3a, 0xa9, 0x1c, 0x17, 0xa1, 0xa0, 0x58, 0x72, 0x41, 0x5f, 0x60, 0xa1, 0xc9, 0x7c, 0x89, + 0x97, 0x7f, 0xf0, 0x8a, 0xd3, 0x1b, 0x61, 0xc9, 0x82, 0x05, 0xd6, 0xd8, 0xa1, 0x6b, 0x30, 0x29, + 0x12, 0xc8, 0x0b, 0x87, 0x40, 0xd5, 0x30, 0x8a, 0x27, 0xb1, 0x8e, 0xbc, 0x9f, 0x05, 0x60, 0xb3, + 0x30, 0xda, 0x81, 0x27, 0xb5, 0x47, 0x6a, 0x72, 0x02, 0x91, 0xb8, 0xec, 0xf8, 0xe8, 0xd1, 0xe1, + 0xfc, 0x93, 0x9b, 0xc7, 0x11, 0xe2, 0xe3, 0xf9, 0xa0, 0x1b, 0x70, 0xda, 0x69, 0x25, 0xde, 0x3e, + 0xa9, 0x13, 0xc7, 0xf5, 0xbd, 0x80, 0x98, 0xd7, 0xa8, 0x1f, 0x3f, 0x3a, 0x9c, 0x3f, 0xbd, 0x94, + 0x47, 0x80, 0xf3, 0xcb, 0xa1, 0x37, 0xa0, 0xe6, 0x06, 0xb1, 0x18, 0x83, 0x11, 0xe3, 0x3d, 0x9e, + 0x5a, 0xfd, 0x7a, 0x53, 0xf5, 0x3f, 0xfd, 0x83, 0xd3, 0x02, 0xe8, 0x5d, 0xfe, 0x7c, 0xb1, 0xb2, + 0x43, 0xf8, 0x3b, 0x50, 0xaf, 0x96, 0xb2, 0x7c, 0x8d, 0x6b, 0x0f, 0xdc, 0x57, 0xa6, 0x42, 0xfd, + 0x8c, 0x1b, 0x11, 0x46, 0x15, 0xe8, 0xb3, 0x80, 0x62, 0x12, 0xed, 0x7b, 0x2d, 0xb2, 0xd4, 0x62, + 0x79, 0x27, 0xd9, 0x91, 0xdc, 0x98, 0x11, 0xef, 0x8e, 0x9a, 0x5d, 0x14, 0x38, 0xa7, 0x14, 0xba, + 0x42, 0xe5, 0x8e, 0x0e, 0x15, 0x91, 0x99, 0x52, 0xa9, 0x9b, 0xad, 0x93, 0x76, 0x44, 0x5a, 0x4e, + 0x42, 0x5c, 0x93, 0x23, 0xce, 0x94, 0xa3, 0x3b, 0x8b, 0x4a, 0xf4, 0x0d, 0x66, 0x3c, 0x61, 0x77, + 0xb2, 0x6f, 0x6a, 0x23, 0xed, 0x86, 0x71, 0x72, 0x9d, 0x24, 0x77, 0xc3, 0xe8, 0x0e, 0xf3, 0xb1, + 0x8f, 0x69, 0x89, 0xbc, 0x52, 0x14, 0xd6, 0xe9, 0xa8, 0x0e, 0xc4, 0x0e, 0x77, 0xd6, 0xeb, 0xcc, + 0x73, 0x3e, 0x96, 0xae, 0x9d, 0x2b, 0x1c, 0x8c, 0x25, 0x5e, 0x92, 0xae, 0x37, 0x56, 0x98, 0x17, + 0x3c, 0x43, 0xba, 0xde, 0x58, 0xc1, 0x12, 0x8f, 0xc2, 0xee, 0x57, 0x8f, 0xa6, 0xca, 0x9c, 0x48, + 0x74, 0xcb, 0xf1, 0x92, 0x0f, 0x1f, 0xdd, 0x83, 0x19, 0xf5, 0xf2, 0x12, 0xcf, 0xb0, 0x18, 0xcf, + 0x4e, 0x97, 0x79, 0x3c, 0x39, 0x37, 0x51, 0xa3, 0x0a, 0xc5, 0x5d, 0xcf, 0xf0, 0xc4, 0x5d, 0xb5, + 0x18, 0xe9, 0x00, 0x66, 0x0a, 0x93, 0xb7, 0x2f, 0x42, 0x2d, 0xee, 0x6c, 0xb9, 0xe1, 0x9e, 0xe3, + 0x05, 0xcc, 0x55, 0xad, 0x3f, 0x05, 0x2c, 0x11, 0x38, 0xa5, 0x41, 0x0d, 0x18, 0x73, 0xe4, 0x2b, + 0xd8, 0xa8, 0xcc, 0x05, 0x62, 0xf5, 0xfc, 0x35, 0xf3, 0x63, 0xaa, 0x77, 0xaf, 0x15, 0x97, 0xb9, + 0x4f, 0xc3, 0x89, 0xae, 0x55, 0xd2, 0x57, 0x54, 0xda, 0x8f, 0x87, 0xa0, 0xa6, 0xdc, 0x43, 0x68, + 0xd1, 0xf4, 0x00, 0x3e, 0x9e, 0xf5, 0x00, 0x8e, 0xd1, 0x1d, 0x5d, 0x77, 0xfa, 0x7d, 0x31, 0xe7, + 0x75, 0xd1, 0xe7, 0x0a, 0xa7, 0x45, 0xf9, 0xcb, 0x21, 0x7d, 0xbc, 0xbd, 0x9a, 0x1a, 0x0a, 0x43, + 0xc7, 0x1a, 0x0a, 0x25, 0x1f, 0x53, 0xa2, 0x26, 0x41, 0x3b, 0x74, 0xd7, 0x1b, 0xd9, 0x17, 0x43, + 0x1a, 0x14, 0x88, 0x39, 0x8e, 0x29, 0x73, 0x54, 0xcc, 0x33, 0x65, 0x6e, 0xf4, 0x81, 0x94, 0x39, + 0x59, 0x1c, 0xa7, 0x9c, 0xd0, 0x3e, 0x9c, 0x68, 0x99, 0xcf, 0xbf, 0xa8, 0x0b, 0x1f, 0x2f, 0xf4, + 0xf1, 0xfc, 0x4a, 0x47, 0x4b, 0x75, 0xbf, 0x92, 0xe5, 0x87, 0xbb, 0xab, 0x40, 0xaf, 0xc3, 0xd8, + 0xbb, 0x61, 0xbc, 0xe2, 0x3b, 0x71, 0x2c, 0x24, 0x9d, 0x0c, 0xae, 0x1f, 0x7b, 0xeb, 0x46, 0x93, + 0xc1, 0xef, 0xf3, 0xd7, 0xde, 0xe5, 0x5f, 0xac, 0x0a, 0xd8, 0x3f, 0xe2, 0x8e, 0x28, 0x61, 0x9c, + 0x92, 0xb8, 0xe3, 0x0f, 0x32, 0xaf, 0xf4, 0x0d, 0xc3, 0x5e, 0x7e, 0x08, 0x2e, 0xd0, 0xdf, 0xb7, + 0x98, 0x0b, 0x74, 0x93, 0xec, 0xb5, 0x7d, 0x27, 0x19, 0x64, 0x9c, 0xe0, 0x17, 0x60, 0x2c, 0x11, + 0xb5, 0x94, 0x4b, 0x86, 0xad, 0x35, 0x8b, 0xb9, 0x84, 0x95, 0x50, 0x92, 0x50, 0xac, 0x18, 0xda, + 0xbf, 0xcb, 0xbf, 0x82, 0xc4, 0x0c, 0xdc, 0xca, 0xbb, 0x6e, 0x5a, 0x79, 0xcf, 0x96, 0xee, 0x49, + 0x2f, 0x6b, 0xcf, 0x6c, 0x3f, 0xd3, 0x1c, 0x3f, 0xfc, 0x1e, 0x79, 0x7b, 0x03, 0xcc, 0xc7, 0x70, + 0xd0, 0x1b, 0x3c, 0xca, 0x96, 0x0b, 0xd2, 0xe7, 0xfa, 0x8c, 0xb0, 0xb5, 0xbf, 0x57, 0x81, 0x53, + 0x99, 0xc7, 0xfe, 0xb9, 0x6c, 0x77, 0x61, 0xa2, 0xad, 0x69, 0xf3, 0xe5, 0x12, 0x28, 0xe8, 0xfa, + 0x7f, 0xaa, 0x43, 0xe9, 0x50, 0x6c, 0x70, 0x45, 0x5b, 0x30, 0x41, 0xf6, 0xbd, 0x96, 0x72, 0xf2, + 0x54, 0xfa, 0x94, 0x6c, 0xaa, 0x8e, 0x55, 0x8d, 0x0b, 0x36, 0x78, 0x0e, 0x20, 0x53, 0xbb, 0xfd, + 0xeb, 0x16, 0x3c, 0xd6, 0x23, 0xc5, 0x02, 0xad, 0xee, 0x2e, 0xf3, 0x82, 0x8a, 0x97, 0x96, 0x54, + 0x75, 0xdc, 0x37, 0x8a, 0x05, 0x16, 0x6d, 0x01, 0x70, 0xdf, 0x26, 0x7b, 0xcd, 0xb6, 0x52, 0x26, + 0x00, 0xa1, 0xeb, 0x42, 0xb3, 0x76, 0xd7, 0x55, 0xbd, 0x5f, 0xab, 0x71, 0xb5, 0xbf, 0x5b, 0x85, + 0x61, 0xfe, 0xa0, 0x66, 0x03, 0x46, 0x77, 0x79, 0x22, 0xc7, 0xfe, 0xf2, 0x48, 0xa6, 0xda, 0x1a, + 0x07, 0x60, 0xc9, 0x06, 0x6d, 0xc0, 0x49, 0xaa, 0x1a, 0x78, 0x8e, 0x5f, 0x27, 0xbe, 0x73, 0x20, + 0xd5, 0x7f, 0x9e, 0xc4, 0x5b, 0xe6, 0x9b, 0x3d, 0xb9, 0xde, 0x4d, 0x82, 0xf3, 0xca, 0xa1, 0x37, + 0xbb, 0xf2, 0x31, 0xf1, 0x04, 0x99, 0xea, 0x8a, 0xd4, 0xf1, 0x39, 0x99, 0xd0, 0xeb, 0x30, 0xd9, + 0xee, 0x32, 0x74, 0xb4, 0x17, 0x13, 0x4d, 0xe3, 0xc6, 0xa4, 0x45, 0x75, 0x98, 0x89, 0x3b, 0xec, + 0x38, 0x78, 0x73, 0x37, 0x22, 0xf1, 0x6e, 0xe8, 0xbb, 0xe2, 0xc9, 0x2f, 0xa5, 0xd4, 0x35, 0x33, + 0x78, 0xdc, 0x55, 0x82, 0x72, 0xd9, 0x76, 0x3c, 0xbf, 0x13, 0x91, 0x94, 0xcb, 0x88, 0xc9, 0x65, + 0x2d, 0x83, 0xc7, 0x5d, 0x25, 0xec, 0x3f, 0xb3, 0xe0, 0x64, 0x4e, 0xcc, 0x04, 0x8f, 0xe3, 0xdb, + 0xf1, 0xe2, 0x44, 0xa5, 0x6a, 0xd6, 0xe2, 0xf8, 0x38, 0x1c, 0x2b, 0x0a, 0x3a, 0x0b, 0xb9, 0xf5, + 0x9a, 0x3d, 0x8b, 0x14, 0xa7, 0xc2, 0x02, 0xdb, 0x5f, 0x76, 0x25, 0x74, 0x0e, 0x86, 0x3a, 0x31, + 0x91, 0xaf, 0xce, 0x2b, 0xf1, 0xc4, 0xdc, 0x15, 0x0c, 0x43, 0x95, 0x99, 0x1d, 0xe5, 0x29, 0xd0, + 0x94, 0x19, 0xee, 0x2b, 0xe0, 0x38, 0xfb, 0x5b, 0x55, 0x98, 0xce, 0xc4, 0x4e, 0xd1, 0x86, 0xec, + 0x85, 0x81, 0x97, 0x84, 0x2a, 0xb7, 0x0f, 0x7f, 0xbe, 0x84, 0xb4, 0x77, 0x37, 0x04, 0x1c, 0x2b, + 0x0a, 0xf4, 0x8c, 0xf9, 0xba, 0x71, 0xda, 0xe6, 0xe5, 0xba, 0xf1, 0xd0, 0x5a, 0xd9, 0xf4, 0xf1, + 0x4f, 0xc1, 0x50, 0x3b, 0x54, 0xcf, 0x65, 0xaa, 0x49, 0x8f, 0x97, 0xeb, 0x8d, 0x30, 0xf4, 0x31, + 0x43, 0xa2, 0xa7, 0x45, 0xef, 0x33, 0x2e, 0x52, 0xec, 0xb8, 0x61, 0xac, 0x0d, 0xc1, 0xb3, 0x30, + 0x7a, 0x87, 0x1c, 0x44, 0x5e, 0xb0, 0x93, 0x75, 0x10, 0x5f, 0xe5, 0x60, 0x2c, 0xf1, 0x66, 0x8a, + 0xf8, 0xd1, 0x01, 0xa7, 0x88, 0x1f, 0x2b, 0x0c, 0xfe, 0xfc, 0x6d, 0x0b, 0xa6, 0x59, 0x8a, 0x3b, + 0x71, 0xfb, 0xd4, 0x0b, 0x83, 0x01, 0x6e, 0x89, 0x4f, 0xc1, 0x70, 0x44, 0x2b, 0xcb, 0x66, 0x77, + 0x66, 0x2d, 0xc0, 0x1c, 0x87, 0x9e, 0x10, 0xef, 0xd7, 0xd3, 0xcf, 0x37, 0xc1, 0xb3, 0xe5, 0xa6, + 0x0f, 0xd1, 0xb3, 0x4b, 0x05, 0x98, 0xb4, 0x7d, 0x8f, 0x37, 0x36, 0xf5, 0x07, 0x7d, 0x58, 0x2e, + 0x15, 0xe4, 0x36, 0xee, 0x61, 0x5d, 0x2a, 0xc8, 0x67, 0x7e, 0xbc, 0xf2, 0xf9, 0xdf, 0x2b, 0x70, + 0x36, 0xb7, 0x5c, 0x7a, 0xac, 0xb4, 0x66, 0x1c, 0x2b, 0x5d, 0xca, 0x1c, 0x2b, 0xd9, 0xc7, 0x97, + 0x7e, 0x38, 0x07, 0x4d, 0xf9, 0x27, 0x40, 0xd5, 0x47, 0x76, 0x02, 0x34, 0x54, 0x56, 0x51, 0x18, + 0x2e, 0x50, 0x14, 0x7e, 0x6a, 0xc1, 0xe3, 0xb9, 0x03, 0xf6, 0x21, 0xbb, 0xc3, 0x91, 0xdb, 0xc6, + 0x1e, 0x8a, 0xf3, 0xdf, 0xae, 0xf6, 0xe8, 0x13, 0x53, 0xa1, 0xcf, 0x53, 0x89, 0xc3, 0x90, 0xb1, + 0x50, 0x80, 0x26, 0xb8, 0xb4, 0xe1, 0x30, 0xac, 0xb0, 0x28, 0xd6, 0xee, 0x40, 0xf0, 0x46, 0xae, + 0x3e, 0xe0, 0x62, 0x5a, 0x30, 0x9d, 0x77, 0xfa, 0x05, 0xda, 0xcc, 0xdd, 0x08, 0x74, 0x5b, 0x33, + 0x89, 0xaa, 0x0f, 0x62, 0x12, 0x4d, 0xe4, 0x9b, 0x43, 0x68, 0x09, 0xa6, 0xf7, 0xbc, 0x80, 0xbd, + 0xe8, 0x66, 0x6a, 0x20, 0xea, 0xda, 0xd9, 0x86, 0x89, 0xc6, 0x59, 0xfa, 0xb9, 0xd7, 0x61, 0xf2, + 0xc1, 0xfd, 0x2b, 0xef, 0x57, 0xe1, 0xe7, 0x8e, 0x11, 0x08, 0x7c, 0x27, 0x30, 0xbe, 0x8b, 0xb6, + 0x13, 0x74, 0x7d, 0x9b, 0x06, 0x9c, 0xda, 0xee, 0xf8, 0xfe, 0x01, 0x0b, 0xc8, 0x20, 0xae, 0xa4, + 0x10, 0xda, 0x9d, 0x7a, 0x6b, 0x75, 0x2d, 0x87, 0x06, 0xe7, 0x96, 0x44, 0x9f, 0x05, 0x14, 0x6e, + 0xb1, 0xa4, 0x8f, 0x6e, 0x7a, 0x45, 0x98, 0x7d, 0x82, 0x6a, 0xba, 0x50, 0x6f, 0x74, 0x51, 0xe0, + 0x9c, 0x52, 0x54, 0xd7, 0x63, 0xcf, 0xb4, 0xaa, 0x66, 0x65, 0x74, 0x3d, 0xac, 0x23, 0xb1, 0x49, + 0x8b, 0x2e, 0xc3, 0x09, 0x67, 0xdf, 0xf1, 0x78, 0x7a, 0x17, 0xc9, 0x80, 0x2b, 0x7b, 0xca, 0x87, + 0xb1, 0x94, 0x25, 0xc0, 0xdd, 0x65, 0x50, 0xdb, 0x70, 0x49, 0xf1, 0xf4, 0xce, 0x6f, 0x3c, 0xc0, + 0x0c, 0x2e, 0xed, 0xa4, 0xb2, 0xff, 0xd4, 0xa2, 0xdb, 0x5d, 0xce, 0x13, 0x63, 0xc6, 0x7b, 0xe1, + 0xda, 0xcd, 0x90, 0xee, 0xf7, 0xc2, 0x99, 0xff, 0xd7, 0xa4, 0xe5, 0x53, 0x23, 0x4e, 0xa3, 0x39, + 0x0d, 0xcd, 0x52, 0x5c, 0x87, 0x52, 0x14, 0xe8, 0x36, 0x8c, 0xba, 0xde, 0xbe, 0x17, 0x87, 0x51, + 0x89, 0x77, 0x7a, 0xbb, 0x22, 0x04, 0x53, 0x59, 0x59, 0xe7, 0x4c, 0xb0, 0xe4, 0x66, 0xff, 0x9d, + 0x0a, 0x4c, 0xca, 0xfa, 0xde, 0xea, 0x84, 0x4c, 0x86, 0x0d, 0x6a, 0x13, 0x7f, 0xcb, 0xd8, 0xc4, + 0x17, 0xcb, 0xdd, 0x09, 0x63, 0x8d, 0xea, 0xb9, 0x79, 0x7f, 0x2e, 0xb3, 0x79, 0x5f, 0xec, 0x87, + 0xe9, 0xf1, 0x9b, 0xf6, 0xbf, 0xb1, 0xe0, 0x84, 0x41, 0xff, 0x61, 0xc9, 0x30, 0x9c, 0xd7, 0x97, + 0x1e, 0xbb, 0xc6, 0x77, 0x2b, 0x99, 0x3e, 0xb0, 0xdd, 0xe2, 0x6b, 0x30, 0xb4, 0xeb, 0x44, 0x6e, + 0xb9, 0xec, 0x66, 0x5d, 0xc5, 0x17, 0xae, 0x38, 0x91, 0xcb, 0x65, 0xfe, 0x05, 0xf5, 0x08, 0x8a, + 0x13, 0xb9, 0x85, 0x81, 0xcd, 0xac, 0x52, 0xf4, 0x1a, 0x8c, 0xc4, 0xad, 0xb0, 0xad, 0x82, 0xc9, + 0xce, 0xf1, 0x07, 0x52, 0x28, 0xe4, 0xfe, 0xe1, 0x3c, 0x32, 0xab, 0xa3, 0x60, 0x2c, 0xe8, 0xe7, + 0x08, 0xd4, 0x54, 0xd5, 0x03, 0x0c, 0xa1, 0x7d, 0xbf, 0x0a, 0x27, 0x73, 0xe6, 0x09, 0xfa, 0x79, + 0x63, 0xd4, 0x5e, 0xef, 0x7b, 0xa2, 0x7d, 0xc0, 0x71, 0xfb, 0x79, 0x66, 0x07, 0xb9, 0x62, 0x6e, + 0x3c, 0x40, 0xf5, 0x37, 0x63, 0x92, 0xad, 0x9e, 0x82, 0x8a, 0xab, 0xa7, 0xd5, 0x3e, 0xa2, 0xc1, + 0xa7, 0xd5, 0xa8, 0x76, 0x0e, 0xf0, 0x1b, 0xbf, 0x37, 0x04, 0xa7, 0xf2, 0x2e, 0x9d, 0xa2, 0x5f, + 0xb2, 0x32, 0x09, 0xca, 0xdf, 0xec, 0xff, 0xe6, 0x2a, 0xcf, 0x5a, 0x2e, 0x52, 0x32, 0x2c, 0x98, + 0x29, 0xcb, 0x0b, 0x47, 0x5b, 0xd4, 0xce, 0x2e, 0x23, 0x44, 0x3c, 0xd1, 0xbc, 0x94, 0x07, 0x9f, + 0x79, 0x80, 0xa6, 0x88, 0x5c, 0xf5, 0x71, 0xe6, 0x32, 0x82, 0x04, 0x17, 0x5f, 0x46, 0x90, 0x6d, + 0x98, 0xdb, 0x81, 0x71, 0xad, 0x5f, 0x03, 0x9c, 0x02, 0x1e, 0xdd, 0x90, 0xb4, 0x56, 0x0f, 0x70, + 0x1a, 0xfc, 0x9a, 0x05, 0x99, 0x88, 0x11, 0xe5, 0x6c, 0xb1, 0x7a, 0x3a, 0x5b, 0xce, 0xc1, 0x50, + 0x14, 0xfa, 0x24, 0x9b, 0x3c, 0x1b, 0x87, 0x3e, 0xc1, 0x0c, 0xa3, 0x5e, 0x42, 0xac, 0xf6, 0x7a, + 0x09, 0x91, 0x5a, 0xe1, 0x3e, 0xd9, 0x27, 0xd2, 0xf5, 0xa1, 0x84, 0xf7, 0x35, 0x0a, 0xc4, 0x1c, + 0x67, 0xff, 0x61, 0x15, 0x46, 0xb8, 0x7f, 0x61, 0x80, 0x7b, 0x72, 0x43, 0x98, 0xfa, 0xa5, 0x2e, + 0x81, 0xf2, 0xd6, 0x2c, 0xd4, 0x9d, 0xc4, 0xe1, 0x13, 0x4a, 0xf5, 0x2d, 0x75, 0x0f, 0xa0, 0x05, + 0xa3, 0xf7, 0x73, 0x19, 0x4b, 0x16, 0x38, 0x0f, 0x6d, 0x2c, 0x76, 0x01, 0x62, 0xf6, 0xea, 0x16, + 0xe5, 0x21, 0x52, 0xd0, 0xbd, 0x5c, 0xaa, 0x1d, 0x4d, 0x55, 0x8c, 0xb7, 0x26, 0xcd, 0x7d, 0xa5, + 0x10, 0x58, 0xe3, 0x3d, 0xf7, 0x2a, 0xd4, 0x14, 0x71, 0x91, 0x9a, 0x3f, 0xa1, 0x4f, 0xc9, 0xff, + 0x0f, 0xa6, 0x33, 0x75, 0xf5, 0x65, 0x25, 0xfc, 0xd0, 0x82, 0x13, 0x5d, 0xcf, 0xb7, 0xa2, 0xf7, + 0x2c, 0x38, 0xe5, 0xe7, 0x38, 0x96, 0x8a, 0x23, 0x76, 0x7a, 0xba, 0xa4, 0x94, 0x89, 0x90, 0x87, + 0xc5, 0xb9, 0xb5, 0xc9, 0xa4, 0x9a, 0x95, 0xfc, 0xa4, 0x9a, 0xf6, 0xf7, 0x2c, 0x10, 0x9f, 0x6c, + 0xe0, 0xea, 0xcf, 0xba, 0xa9, 0xfe, 0x7c, 0xac, 0xcc, 0x1c, 0xe8, 0xa1, 0xf7, 0xfc, 0x7b, 0x0b, + 0x10, 0x27, 0xc8, 0x3e, 0xbd, 0xc7, 0xbd, 0x74, 0x9a, 0xb6, 0x9e, 0x4e, 0x1a, 0x85, 0xc1, 0x1a, + 0x55, 0x9f, 0xf9, 0xd5, 0xd5, 0x93, 0x55, 0xe5, 0xde, 0xd3, 0xaf, 0x96, 0x78, 0x4f, 0xff, 0xf7, + 0xab, 0x90, 0x0d, 0xaa, 0x40, 0x5f, 0x86, 0x89, 0x96, 0xd3, 0x76, 0xb6, 0x3c, 0xdf, 0x4b, 0x3c, + 0x12, 0x97, 0x3b, 0x27, 0x5a, 0xd1, 0x4a, 0x08, 0x3f, 0xaf, 0x06, 0xc1, 0x06, 0x47, 0xb4, 0x00, + 0xd0, 0x8e, 0xbc, 0x7d, 0xcf, 0x27, 0x3b, 0x4c, 0xe9, 0x60, 0x71, 0x95, 0xfc, 0xd0, 0x43, 0x42, + 0xb1, 0x46, 0x91, 0x13, 0xc3, 0x57, 0x7d, 0x14, 0x31, 0x7c, 0x43, 0x7d, 0xc6, 0xf0, 0x0d, 0x97, + 0x8a, 0xe1, 0xc3, 0x70, 0x46, 0xba, 0x67, 0xe9, 0xff, 0x35, 0xcf, 0x27, 0x3c, 0x85, 0x9e, 0x88, + 0xbc, 0x9c, 0x3b, 0x3a, 0x9c, 0x3f, 0x83, 0x73, 0x29, 0x70, 0x8f, 0x92, 0x76, 0x07, 0x4e, 0x36, + 0x49, 0xe4, 0xb1, 0x0c, 0x47, 0x6e, 0xba, 0xfc, 0xbe, 0x08, 0xb5, 0x28, 0xb3, 0xf2, 0xfb, 0xbc, + 0x04, 0xa7, 0xe5, 0xc9, 0x90, 0x2b, 0x3d, 0x65, 0x69, 0xff, 0xf5, 0x0a, 0x8c, 0x8a, 0xe0, 0xa5, + 0x01, 0xee, 0x22, 0x57, 0x0d, 0xcb, 0xee, 0xd9, 0xa2, 0x95, 0xcb, 0x9a, 0xd3, 0xd3, 0xa6, 0x6b, + 0x66, 0x6c, 0xba, 0xe7, 0xcb, 0xb1, 0x3b, 0xde, 0x9a, 0xfb, 0xbd, 0x0a, 0x4c, 0x99, 0x41, 0x5c, + 0x03, 0x1c, 0x8e, 0xb7, 0x61, 0x34, 0x16, 0x91, 0x4d, 0x95, 0x32, 0x61, 0x1d, 0xd9, 0x4f, 0x9a, + 0xbe, 0xcd, 0x2f, 0x62, 0x99, 0x24, 0xbb, 0xdc, 0xe0, 0xa9, 0xea, 0xa3, 0x08, 0x9e, 0xb2, 0xff, + 0x2d, 0x13, 0xa9, 0xfa, 0x00, 0x0e, 0x7c, 0x43, 0x78, 0xcb, 0x14, 0xbd, 0x17, 0x4a, 0xcd, 0x03, + 0xd1, 0xb8, 0x1e, 0x1b, 0xc3, 0xbf, 0xb4, 0x60, 0x5c, 0x10, 0x0e, 0xbc, 0xf9, 0x9f, 0x35, 0x9b, + 0xff, 0x74, 0xa9, 0xe6, 0xf7, 0x68, 0xf7, 0xdf, 0xaf, 0xa8, 0x76, 0x37, 0xc4, 0x63, 0xa4, 0x85, + 0xd9, 0x14, 0xc7, 0xda, 0x51, 0x98, 0x84, 0xad, 0xd0, 0x17, 0x9b, 0xfb, 0x13, 0x69, 0xb0, 0x3b, + 0x87, 0xdf, 0xd7, 0x7e, 0x63, 0x45, 0xcd, 0xe2, 0xb8, 0xc3, 0x28, 0x11, 0x9b, 0x53, 0xde, 0x53, + 0xa8, 0x5b, 0xf2, 0xa9, 0x69, 0x0a, 0x13, 0x77, 0x44, 0xfa, 0x7d, 0x62, 0x35, 0x8d, 0x5e, 0x57, + 0x9c, 0xb0, 0xc6, 0x55, 0x86, 0x54, 0xb2, 0x1a, 0x86, 0x4d, 0xd7, 0xe9, 0x75, 0x01, 0xc7, 0x8a, + 0xc2, 0x7e, 0x95, 0x49, 0x57, 0x36, 0x3c, 0xfd, 0x85, 0xa4, 0xff, 0xca, 0x88, 0x1a, 0x58, 0xe6, + 0x1b, 0xb9, 0x0e, 0xc3, 0xb4, 0x8b, 0xd2, 0xfc, 0x2b, 0x27, 0xca, 0x68, 0x13, 0xf4, 0x10, 0xb2, + 0x28, 0x89, 0x31, 0x67, 0x83, 0x48, 0x97, 0xbf, 0xfd, 0xd5, 0xd2, 0xd2, 0xb1, 0x0f, 0x0f, 0x3b, + 0x4b, 0x50, 0xc3, 0xf2, 0x72, 0xac, 0x37, 0xb2, 0x19, 0x30, 0x57, 0x24, 0x02, 0xa7, 0x34, 0x68, + 0x51, 0x68, 0xe9, 0xe6, 0x4b, 0xb5, 0x52, 0x4b, 0x97, 0x43, 0xa2, 0xa9, 0xe9, 0x17, 0x61, 0x5c, + 0xe5, 0x00, 0x6f, 0xf0, 0x54, 0xce, 0x35, 0xae, 0xb9, 0xac, 0xa6, 0x60, 0xac, 0xd3, 0xa0, 0x75, + 0x38, 0xe9, 0xaa, 0x08, 0xda, 0x46, 0x67, 0xcb, 0xf7, 0x5a, 0xb4, 0x28, 0xbf, 0xbd, 0xf2, 0xd8, + 0xd1, 0xe1, 0xfc, 0xc9, 0x7a, 0x37, 0x1a, 0xe7, 0x95, 0x41, 0x9b, 0x30, 0x1d, 0xf3, 0x5c, 0xe7, + 0x32, 0x4c, 0x52, 0xa4, 0x88, 0x7b, 0x4e, 0x3a, 0xfa, 0x9b, 0x26, 0xfa, 0x3e, 0x03, 0x71, 0x89, + 0x20, 0x03, 0x2b, 0xb3, 0x2c, 0xd0, 0x9b, 0x30, 0xe5, 0xeb, 0xcf, 0x35, 0x35, 0x44, 0x20, 0xb1, + 0x0a, 0x7f, 0x30, 0x1e, 0x73, 0x6a, 0xe0, 0x0c, 0x35, 0x7a, 0x1b, 0x66, 0x75, 0x88, 0xb8, 0x3f, + 0xef, 0x04, 0x3b, 0x24, 0x16, 0x49, 0x96, 0x9f, 0x38, 0x3a, 0x9c, 0x9f, 0xbd, 0xd6, 0x83, 0x06, + 0xf7, 0x2c, 0x8d, 0x5e, 0x83, 0x09, 0x39, 0x92, 0x5a, 0x50, 0x71, 0x1a, 0x78, 0xa3, 0xe1, 0xb0, + 0x41, 0xf9, 0xc1, 0xce, 0x33, 0xbe, 0x46, 0x0b, 0x6b, 0xdb, 0x29, 0xfa, 0x0a, 0x4c, 0xe8, 0x6d, + 0x14, 0x32, 0xf2, 0xc5, 0xf2, 0x4f, 0x60, 0x89, 0x6d, 0x59, 0xb5, 0x5c, 0xc7, 0x61, 0x83, 0xb7, + 0x7d, 0x03, 0x46, 0x9a, 0x07, 0x71, 0x2b, 0xf1, 0x1f, 0xd6, 0x23, 0xc5, 0x2d, 0x98, 0xce, 0xbc, + 0xe6, 0xab, 0x9e, 0x85, 0xb6, 0x1e, 0xd6, 0xb3, 0xd0, 0xf6, 0xd7, 0x2d, 0x18, 0xde, 0x74, 0xbc, + 0xe2, 0xe7, 0x09, 0xca, 0x34, 0x19, 0xbd, 0x02, 0x23, 0x64, 0x7b, 0x9b, 0xb4, 0xe4, 0x33, 0xd3, + 0x4f, 0x4a, 0x75, 0x66, 0x95, 0x41, 0xe9, 0xd2, 0x64, 0x95, 0xf1, 0xbf, 0x58, 0x10, 0xdb, 0xff, + 0xc1, 0x02, 0xd8, 0x0c, 0x7d, 0x79, 0x54, 0x53, 0xd0, 0x92, 0xe5, 0xae, 0x87, 0x12, 0x9e, 0xc9, + 0x79, 0x28, 0x01, 0xa5, 0x0c, 0x73, 0x9e, 0x49, 0x50, 0xbd, 0xa9, 0x96, 0xea, 0xcd, 0x50, 0x3f, + 0xbd, 0xf9, 0xa6, 0x05, 0x22, 0x62, 0xa6, 0xc4, 0x4c, 0x70, 0x65, 0x72, 0x73, 0x23, 0x33, 0xc6, + 0x73, 0x65, 0x2e, 0x9f, 0x88, 0x7c, 0x18, 0x6a, 0x6e, 0x1a, 0x59, 0x30, 0x0c, 0xae, 0xd4, 0x84, + 0x1f, 0xe7, 0xe8, 0x0d, 0xa6, 0x3b, 0x16, 0xb7, 0xab, 0xaf, 0x0c, 0x60, 0x2c, 0xf7, 0x37, 0x65, + 0xac, 0x72, 0x41, 0xe9, 0xb9, 0xbf, 0x25, 0x02, 0xa7, 0x34, 0xe8, 0x59, 0x18, 0x8d, 0x3b, 0x5b, + 0x8c, 0x3c, 0x13, 0x3e, 0xd3, 0xe4, 0x60, 0x2c, 0xf1, 0xf6, 0x2f, 0x22, 0x30, 0xba, 0x66, 0xe4, + 0x9d, 0xb2, 0x1e, 0x7a, 0xde, 0xa9, 0x77, 0x60, 0x8c, 0xec, 0xb5, 0x93, 0x83, 0xba, 0x17, 0x95, + 0xcb, 0xfe, 0xb7, 0x2a, 0xa8, 0xbb, 0xb9, 0x4b, 0x0c, 0x56, 0x1c, 0x7b, 0x64, 0x11, 0xab, 0x7e, + 0x28, 0xb2, 0x88, 0x0d, 0xfd, 0xa5, 0x64, 0x11, 0x7b, 0x1b, 0x46, 0x77, 0xbc, 0x04, 0x93, 0x76, + 0x28, 0xee, 0x1b, 0x16, 0x9c, 0x81, 0x5d, 0xe6, 0xc4, 0xdd, 0xa9, 0x81, 0x04, 0x02, 0x4b, 0x76, + 0x68, 0x13, 0x46, 0xb8, 0xdd, 0x21, 0x12, 0x73, 0xbd, 0x58, 0xc6, 0x23, 0xd3, 0x9d, 0xa3, 0x4a, + 0xc4, 0x48, 0x09, 0x5e, 0x32, 0x6b, 0xd8, 0xe8, 0x07, 0xcf, 0x1a, 0xa6, 0x72, 0x7d, 0x8d, 0x3d, + 0xac, 0x5c, 0x5f, 0x46, 0xce, 0xb4, 0xda, 0x20, 0x72, 0xa6, 0x7d, 0xd3, 0x82, 0xd3, 0xed, 0xbc, + 0x7c, 0x83, 0x22, 0x6b, 0xd7, 0xa7, 0x1f, 0x20, 0xff, 0xa2, 0x51, 0x35, 0xbb, 0x03, 0x96, 0x4b, + 0x86, 0xf3, 0x2b, 0x96, 0xc9, 0xd7, 0xc6, 0x3f, 0x78, 0xf2, 0xb5, 0x41, 0xa7, 0xf7, 0x4a, 0x53, + 0xb1, 0x4d, 0x0e, 0x24, 0x15, 0xdb, 0xd4, 0x43, 0x4c, 0xc5, 0xa6, 0x25, 0x51, 0x9b, 0x7e, 0xb8, + 0x49, 0xd4, 0x76, 0x61, 0xdc, 0x0d, 0xef, 0x06, 0x77, 0x9d, 0xc8, 0x5d, 0x6a, 0xac, 0x8b, 0x9c, + 0x5d, 0x05, 0x29, 0x22, 0xea, 0x69, 0x01, 0xa3, 0x06, 0xee, 0x7a, 0x4c, 0x91, 0x58, 0x67, 0x2d, + 0xd2, 0xc9, 0x9d, 0xf8, 0x80, 0xe9, 0xe4, 0x8c, 0xa4, 0x6c, 0x68, 0x10, 0x49, 0xd9, 0xbe, 0xcc, + 0x6e, 0x8c, 0x6f, 0x7b, 0x3b, 0x1b, 0x4e, 0x7b, 0xf6, 0x64, 0x99, 0x1a, 0x56, 0x24, 0x79, 0x77, + 0x0d, 0x0a, 0x85, 0x53, 0xa6, 0xdd, 0x69, 0xdf, 0x4e, 0x3d, 0xea, 0xb4, 0x6f, 0xa7, 0x07, 0x98, + 0xf6, 0xed, 0xcc, 0x23, 0x4d, 0xfb, 0xf6, 0xd8, 0x5f, 0x4a, 0xda, 0xb7, 0xff, 0x1f, 0xce, 0x1e, + 0xff, 0x39, 0xd2, 0x94, 0xc2, 0x8d, 0xd4, 0x65, 0x90, 0x49, 0x29, 0xcc, 0x54, 0x1d, 0x8d, 0xaa, + 0x74, 0xf6, 0xa9, 0xef, 0x59, 0xf0, 0x58, 0x8f, 0x34, 0x2d, 0xa5, 0xef, 0x2e, 0xb4, 0x61, 0xba, + 0x6d, 0x16, 0x2d, 0x7d, 0xbf, 0xc8, 0x48, 0x0b, 0xa3, 0x62, 0xe3, 0x32, 0x08, 0x9c, 0x65, 0xbf, + 0xfc, 0xb1, 0x1f, 0xbf, 0x7f, 0xf6, 0x23, 0x3f, 0x79, 0xff, 0xec, 0x47, 0xfe, 0xf8, 0xfd, 0xb3, + 0x1f, 0xf9, 0x85, 0xa3, 0xb3, 0xd6, 0x8f, 0x8f, 0xce, 0x5a, 0x3f, 0x39, 0x3a, 0x6b, 0xfd, 0xd9, + 0xd1, 0x59, 0xeb, 0x9b, 0x7f, 0x7e, 0xf6, 0x23, 0x9f, 0xaf, 0xec, 0x5f, 0xfc, 0xbf, 0x01, 0x00, + 0x00, 0xff, 0xff, 0xce, 0x08, 0x56, 0x6c, 0x27, 0xb7, 0x00, 0x00, } diff --git a/pkg/api/v1/generated.proto b/pkg/api/v1/generated.proto index a16bb8f8fcf..9c0ac56fdc1 100644 --- a/pkg/api/v1/generated.proto +++ b/pkg/api/v1/generated.proto @@ -271,6 +271,16 @@ message ConfigMap { map data = 2; } +// ConfigMapEnvSource selects a ConfigMap to populate the environment +// variables with. +// +// The contents of the target ConfigMap's Data field will represent the +// key-value pairs as environment variables. +message ConfigMapEnvSource { + // The ConfigMap to select from. + optional LocalObjectReference localObjectReference = 1; +} + // Selects a key from a ConfigMap. message ConfigMapKeySelector { // The ConfigMap to select from. @@ -369,6 +379,15 @@ message Container { // +optional repeated ContainerPort ports = 6; + // List of sources to populate environment variables in the container. + // The keys defined within a source must be a C_IDENTIFIER. An invalid key + // will prevent the container from starting. When a key exists in multiple + // sources, the value associated with the last source will take precedence. + // Values defined by an Env with a duplicate key will take precedence. + // Cannot be updated. + // +optional + repeated EnvFromSource envFrom = 19; + // List of environment variables to set in the container. // Cannot be updated. // +optional @@ -771,6 +790,17 @@ message EndpointsList { repeated Endpoints items = 2; } +// EnvFromSource represents the source of a set of ConfigMaps +message EnvFromSource { + // An optional identifer to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER. + // +optional + optional string prefix = 1; + + // The ConfigMap to select from + // +optional + optional ConfigMapEnvSource configMapRef = 2; +} + // EnvVar represents an environment variable present in a Container. message EnvVar { // Name of the environment variable. Must be a C_IDENTIFIER. diff --git a/pkg/api/v1/types.generated.go b/pkg/api/v1/types.generated.go index d217f2ea9ce..45f92e8fbd1 100644 --- a/pkg/api/v1/types.generated.go +++ b/pkg/api/v1/types.generated.go @@ -18530,7 +18530,7 @@ func (x *SecretKeySelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x *HTTPHeader) CodecEncodeSelf(e *codec1978.Encoder) { +func (x *EnvFromSource) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -18547,11 +18547,13 @@ func (x *HTTPHeader) CodecEncodeSelf(e *codec1978.Encoder) { var yyq1330 [2]bool _, _, _ = yysep1330, yyq1330, yy2arr1330 const yyr1330 bool = false + yyq1330[0] = x.Prefix != "" + yyq1330[1] = x.ConfigMapRef != nil var yynn1330 int if yyr1330 || yy2arr1330 { r.EncodeArrayStart(2) } else { - yynn1330 = 2 + yynn1330 = 0 for _, b := range yyq1330 { if b { yynn1330++ @@ -18562,40 +18564,50 @@ func (x *HTTPHeader) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr1330 || yy2arr1330 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1332 := z.EncBinary() - _ = yym1332 - if false { + if yyq1330[0] { + yym1332 := z.EncBinary() + _ = yym1332 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Prefix)) + } } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Name)) + r.EncodeString(codecSelferC_UTF81234, "") } } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("name")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1333 := z.EncBinary() - _ = yym1333 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Name)) + if yyq1330[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("prefix")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1333 := z.EncBinary() + _ = yym1333 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Prefix)) + } } } if yyr1330 || yy2arr1330 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1335 := z.EncBinary() - _ = yym1335 - if false { + if yyq1330[1] { + if x.ConfigMapRef == nil { + r.EncodeNil() + } else { + x.ConfigMapRef.CodecEncodeSelf(e) + } } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Value)) + r.EncodeNil() } } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("value")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1336 := z.EncBinary() - _ = yym1336 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Value)) + if yyq1330[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("configMapRef")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.ConfigMapRef == nil { + r.EncodeNil() + } else { + x.ConfigMapRef.CodecEncodeSelf(e) + } } } if yyr1330 || yy2arr1330 { @@ -18607,29 +18619,29 @@ func (x *HTTPHeader) CodecEncodeSelf(e *codec1978.Encoder) { } } -func (x *HTTPHeader) CodecDecodeSelf(d *codec1978.Decoder) { +func (x *EnvFromSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1337 := z.DecBinary() - _ = yym1337 + yym1335 := z.DecBinary() + _ = yym1335 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1338 := r.ContainerType() - if yyct1338 == codecSelferValueTypeMap1234 { - yyl1338 := r.ReadMapStart() - if yyl1338 == 0 { + yyct1336 := r.ContainerType() + if yyct1336 == codecSelferValueTypeMap1234 { + yyl1336 := r.ReadMapStart() + if yyl1336 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1338, d) + x.codecDecodeSelfFromMap(yyl1336, d) } - } else if yyct1338 == codecSelferValueTypeArray1234 { - yyl1338 := r.ReadArrayStart() - if yyl1338 == 0 { + } else if yyct1336 == codecSelferValueTypeArray1234 { + yyl1336 := r.ReadArrayStart() + if yyl1336 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1338, d) + x.codecDecodeSelfFromArray(yyl1336, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18637,16 +18649,16 @@ func (x *HTTPHeader) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *HTTPHeader) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *EnvFromSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1339Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1339Slc - var yyhl1339 bool = l >= 0 - for yyj1339 := 0; ; yyj1339++ { - if yyhl1339 { - if yyj1339 >= l { + var yys1337Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1337Slc + var yyhl1337 bool = l >= 0 + for yyj1337 := 0; ; yyj1337++ { + if yyhl1337 { + if yyj1337 >= l { break } } else { @@ -18655,43 +18667,238 @@ func (x *HTTPHeader) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1339Slc = r.DecodeBytes(yys1339Slc, true, true) - yys1339 := string(yys1339Slc) + yys1337Slc = r.DecodeBytes(yys1337Slc, true, true) + yys1337 := string(yys1337Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1339 { + switch yys1337 { + case "prefix": + if r.TryDecodeAsNil() { + x.Prefix = "" + } else { + x.Prefix = string(r.DecodeString()) + } + case "configMapRef": + if r.TryDecodeAsNil() { + if x.ConfigMapRef != nil { + x.ConfigMapRef = nil + } + } else { + if x.ConfigMapRef == nil { + x.ConfigMapRef = new(ConfigMapEnvSource) + } + x.ConfigMapRef.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys1337) + } // end switch yys1337 + } // end for yyj1337 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *EnvFromSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj1340 int + var yyb1340 bool + var yyhl1340 bool = l >= 0 + yyj1340++ + if yyhl1340 { + yyb1340 = yyj1340 > l + } else { + yyb1340 = r.CheckBreak() + } + if yyb1340 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Prefix = "" + } else { + x.Prefix = string(r.DecodeString()) + } + yyj1340++ + if yyhl1340 { + yyb1340 = yyj1340 > l + } else { + yyb1340 = r.CheckBreak() + } + if yyb1340 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.ConfigMapRef != nil { + x.ConfigMapRef = nil + } + } else { + if x.ConfigMapRef == nil { + x.ConfigMapRef = new(ConfigMapEnvSource) + } + x.ConfigMapRef.CodecDecodeSelf(d) + } + for { + yyj1340++ + if yyhl1340 { + yyb1340 = yyj1340 > l + } else { + yyb1340 = r.CheckBreak() + } + if yyb1340 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj1340-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *ConfigMapEnvSource) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym1343 := z.EncBinary() + _ = yym1343 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep1344 := !z.EncBinary() + yy2arr1344 := z.EncBasicHandle().StructToArray + var yyq1344 [1]bool + _, _, _ = yysep1344, yyq1344, yy2arr1344 + const yyr1344 bool = false + yyq1344[0] = x.Name != "" + var yynn1344 int + if yyr1344 || yy2arr1344 { + r.EncodeArrayStart(1) + } else { + yynn1344 = 0 + for _, b := range yyq1344 { + if b { + yynn1344++ + } + } + r.EncodeMapStart(yynn1344) + yynn1344 = 0 + } + if yyr1344 || yy2arr1344 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1344[0] { + yym1346 := z.EncBinary() + _ = yym1346 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Name)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq1344[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("name")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1347 := z.EncBinary() + _ = yym1347 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Name)) + } + } + } + if yyr1344 || yy2arr1344 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *ConfigMapEnvSource) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1348 := z.DecBinary() + _ = yym1348 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct1349 := r.ContainerType() + if yyct1349 == codecSelferValueTypeMap1234 { + yyl1349 := r.ReadMapStart() + if yyl1349 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl1349, d) + } + } else if yyct1349 == codecSelferValueTypeArray1234 { + yyl1349 := r.ReadArrayStart() + if yyl1349 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl1349, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *ConfigMapEnvSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys1350Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1350Slc + var yyhl1350 bool = l >= 0 + for yyj1350 := 0; ; yyj1350++ { + if yyhl1350 { + if yyj1350 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys1350Slc = r.DecodeBytes(yys1350Slc, true, true) + yys1350 := string(yys1350Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys1350 { case "name": if r.TryDecodeAsNil() { x.Name = "" } else { x.Name = string(r.DecodeString()) } - case "value": - if r.TryDecodeAsNil() { - x.Value = "" - } else { - x.Value = string(r.DecodeString()) - } default: - z.DecStructFieldNotFound(-1, yys1339) - } // end switch yys1339 - } // end for yyj1339 + z.DecStructFieldNotFound(-1, yys1350) + } // end switch yys1350 + } // end for yyj1350 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } -func (x *HTTPHeader) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { +func (x *ConfigMapEnvSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1342 int - var yyb1342 bool - var yyhl1342 bool = l >= 0 - yyj1342++ - if yyhl1342 { - yyb1342 = yyj1342 > l + var yyj1352 int + var yyb1352 bool + var yyhl1352 bool = l >= 0 + yyj1352++ + if yyhl1352 { + yyb1352 = yyj1352 > l } else { - yyb1342 = r.CheckBreak() + yyb1352 = r.CheckBreak() } - if yyb1342 { + if yyb1352 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18701,198 +18908,91 @@ func (x *HTTPHeader) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1342++ - if yyhl1342 { - yyb1342 = yyj1342 > l - } else { - yyb1342 = r.CheckBreak() - } - if yyb1342 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Value = "" - } else { - x.Value = string(r.DecodeString()) - } for { - yyj1342++ - if yyhl1342 { - yyb1342 = yyj1342 > l + yyj1352++ + if yyhl1352 { + yyb1352 = yyj1352 > l } else { - yyb1342 = r.CheckBreak() + yyb1352 = r.CheckBreak() } - if yyb1342 { + if yyb1352 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1342-1, "") + z.DecStructFieldNotFound(yyj1352-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { +func (x *HTTPHeader) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r if x == nil { r.EncodeNil() } else { - yym1345 := z.EncBinary() - _ = yym1345 + yym1354 := z.EncBinary() + _ = yym1354 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1346 := !z.EncBinary() - yy2arr1346 := z.EncBasicHandle().StructToArray - var yyq1346 [5]bool - _, _, _ = yysep1346, yyq1346, yy2arr1346 - const yyr1346 bool = false - yyq1346[0] = x.Path != "" - yyq1346[2] = x.Host != "" - yyq1346[3] = x.Scheme != "" - yyq1346[4] = len(x.HTTPHeaders) != 0 - var yynn1346 int - if yyr1346 || yy2arr1346 { - r.EncodeArrayStart(5) + yysep1355 := !z.EncBinary() + yy2arr1355 := z.EncBasicHandle().StructToArray + var yyq1355 [2]bool + _, _, _ = yysep1355, yyq1355, yy2arr1355 + const yyr1355 bool = false + var yynn1355 int + if yyr1355 || yy2arr1355 { + r.EncodeArrayStart(2) } else { - yynn1346 = 1 - for _, b := range yyq1346 { + yynn1355 = 2 + for _, b := range yyq1355 { if b { - yynn1346++ + yynn1355++ } } - r.EncodeMapStart(yynn1346) - yynn1346 = 0 + r.EncodeMapStart(yynn1355) + yynn1355 = 0 } - if yyr1346 || yy2arr1346 { + if yyr1355 || yy2arr1355 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1346[0] { - yym1348 := z.EncBinary() - _ = yym1348 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Path)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq1346[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("path")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1349 := z.EncBinary() - _ = yym1349 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Path)) - } - } - } - if yyr1346 || yy2arr1346 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1351 := &x.Port - yym1352 := z.EncBinary() - _ = yym1352 + yym1357 := z.EncBinary() + _ = yym1357 if false { - } else if z.HasExtensions() && z.EncExt(yy1351) { - } else if !yym1352 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1351) } else { - z.EncFallback(yy1351) + r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("port")) + r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1353 := &x.Port - yym1354 := z.EncBinary() - _ = yym1354 + yym1358 := z.EncBinary() + _ = yym1358 if false { - } else if z.HasExtensions() && z.EncExt(yy1353) { - } else if !yym1354 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1353) } else { - z.EncFallback(yy1353) + r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1346 || yy2arr1346 { + if yyr1355 || yy2arr1355 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1346[2] { - yym1356 := z.EncBinary() - _ = yym1356 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Host)) - } + yym1360 := z.EncBinary() + _ = yym1360 + if false { } else { - r.EncodeString(codecSelferC_UTF81234, "") + r.EncodeString(codecSelferC_UTF81234, string(x.Value)) } } else { - if yyq1346[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("host")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1357 := z.EncBinary() - _ = yym1357 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Host)) - } - } - } - if yyr1346 || yy2arr1346 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1346[3] { - x.Scheme.CodecEncodeSelf(e) + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("value")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1361 := z.EncBinary() + _ = yym1361 + if false { } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq1346[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("scheme")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - x.Scheme.CodecEncodeSelf(e) + r.EncodeString(codecSelferC_UTF81234, string(x.Value)) } } - if yyr1346 || yy2arr1346 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1346[4] { - if x.HTTPHeaders == nil { - r.EncodeNil() - } else { - yym1360 := z.EncBinary() - _ = yym1360 - if false { - } else { - h.encSliceHTTPHeader(([]HTTPHeader)(x.HTTPHeaders), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq1346[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("httpHeaders")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.HTTPHeaders == nil { - r.EncodeNil() - } else { - yym1361 := z.EncBinary() - _ = yym1361 - if false { - } else { - h.encSliceHTTPHeader(([]HTTPHeader)(x.HTTPHeaders), e) - } - } - } - } - if yyr1346 || yy2arr1346 { + if yyr1355 || yy2arr1355 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18901,7 +19001,7 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { } } -func (x *HTTPGetAction) CodecDecodeSelf(d *codec1978.Decoder) { +func (x *HTTPHeader) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -18931,7 +19031,7 @@ func (x *HTTPGetAction) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *HTTPHeader) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -18953,6 +19053,300 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { yys1364 := string(yys1364Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) switch yys1364 { + case "name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = string(r.DecodeString()) + } + case "value": + if r.TryDecodeAsNil() { + x.Value = "" + } else { + x.Value = string(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys1364) + } // end switch yys1364 + } // end for yyj1364 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *HTTPHeader) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj1367 int + var yyb1367 bool + var yyhl1367 bool = l >= 0 + yyj1367++ + if yyhl1367 { + yyb1367 = yyj1367 > l + } else { + yyb1367 = r.CheckBreak() + } + if yyb1367 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = string(r.DecodeString()) + } + yyj1367++ + if yyhl1367 { + yyb1367 = yyj1367 > l + } else { + yyb1367 = r.CheckBreak() + } + if yyb1367 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Value = "" + } else { + x.Value = string(r.DecodeString()) + } + for { + yyj1367++ + if yyhl1367 { + yyb1367 = yyj1367 > l + } else { + yyb1367 = r.CheckBreak() + } + if yyb1367 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj1367-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym1370 := z.EncBinary() + _ = yym1370 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep1371 := !z.EncBinary() + yy2arr1371 := z.EncBasicHandle().StructToArray + var yyq1371 [5]bool + _, _, _ = yysep1371, yyq1371, yy2arr1371 + const yyr1371 bool = false + yyq1371[0] = x.Path != "" + yyq1371[2] = x.Host != "" + yyq1371[3] = x.Scheme != "" + yyq1371[4] = len(x.HTTPHeaders) != 0 + var yynn1371 int + if yyr1371 || yy2arr1371 { + r.EncodeArrayStart(5) + } else { + yynn1371 = 1 + for _, b := range yyq1371 { + if b { + yynn1371++ + } + } + r.EncodeMapStart(yynn1371) + yynn1371 = 0 + } + if yyr1371 || yy2arr1371 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1371[0] { + yym1373 := z.EncBinary() + _ = yym1373 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Path)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq1371[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("path")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1374 := z.EncBinary() + _ = yym1374 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Path)) + } + } + } + if yyr1371 || yy2arr1371 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy1376 := &x.Port + yym1377 := z.EncBinary() + _ = yym1377 + if false { + } else if z.HasExtensions() && z.EncExt(yy1376) { + } else if !yym1377 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1376) + } else { + z.EncFallback(yy1376) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("port")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy1378 := &x.Port + yym1379 := z.EncBinary() + _ = yym1379 + if false { + } else if z.HasExtensions() && z.EncExt(yy1378) { + } else if !yym1379 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1378) + } else { + z.EncFallback(yy1378) + } + } + if yyr1371 || yy2arr1371 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1371[2] { + yym1381 := z.EncBinary() + _ = yym1381 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Host)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq1371[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("host")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1382 := z.EncBinary() + _ = yym1382 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Host)) + } + } + } + if yyr1371 || yy2arr1371 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1371[3] { + x.Scheme.CodecEncodeSelf(e) + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq1371[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("scheme")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + x.Scheme.CodecEncodeSelf(e) + } + } + if yyr1371 || yy2arr1371 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1371[4] { + if x.HTTPHeaders == nil { + r.EncodeNil() + } else { + yym1385 := z.EncBinary() + _ = yym1385 + if false { + } else { + h.encSliceHTTPHeader(([]HTTPHeader)(x.HTTPHeaders), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq1371[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("httpHeaders")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.HTTPHeaders == nil { + r.EncodeNil() + } else { + yym1386 := z.EncBinary() + _ = yym1386 + if false { + } else { + h.encSliceHTTPHeader(([]HTTPHeader)(x.HTTPHeaders), e) + } + } + } + } + if yyr1371 || yy2arr1371 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *HTTPGetAction) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1387 := z.DecBinary() + _ = yym1387 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct1388 := r.ContainerType() + if yyct1388 == codecSelferValueTypeMap1234 { + yyl1388 := r.ReadMapStart() + if yyl1388 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl1388, d) + } + } else if yyct1388 == codecSelferValueTypeArray1234 { + yyl1388 := r.ReadArrayStart() + if yyl1388 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl1388, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys1389Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1389Slc + var yyhl1389 bool = l >= 0 + for yyj1389 := 0; ; yyj1389++ { + if yyhl1389 { + if yyj1389 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys1389Slc = r.DecodeBytes(yys1389Slc, true, true) + yys1389 := string(yys1389Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys1389 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -18963,15 +19357,15 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Port = pkg4_intstr.IntOrString{} } else { - yyv1366 := &x.Port - yym1367 := z.DecBinary() - _ = yym1367 + yyv1391 := &x.Port + yym1392 := z.DecBinary() + _ = yym1392 if false { - } else if z.HasExtensions() && z.DecExt(yyv1366) { - } else if !yym1367 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1366) + } else if z.HasExtensions() && z.DecExt(yyv1391) { + } else if !yym1392 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1391) } else { - z.DecFallback(yyv1366, false) + z.DecFallback(yyv1391, false) } } case "host": @@ -18990,18 +19384,18 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.HTTPHeaders = nil } else { - yyv1370 := &x.HTTPHeaders - yym1371 := z.DecBinary() - _ = yym1371 + yyv1395 := &x.HTTPHeaders + yym1396 := z.DecBinary() + _ = yym1396 if false { } else { - h.decSliceHTTPHeader((*[]HTTPHeader)(yyv1370), d) + h.decSliceHTTPHeader((*[]HTTPHeader)(yyv1395), d) } } default: - z.DecStructFieldNotFound(-1, yys1364) - } // end switch yys1364 - } // end for yyj1364 + z.DecStructFieldNotFound(-1, yys1389) + } // end switch yys1389 + } // end for yyj1389 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19009,16 +19403,16 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1372 int - var yyb1372 bool - var yyhl1372 bool = l >= 0 - yyj1372++ - if yyhl1372 { - yyb1372 = yyj1372 > l + var yyj1397 int + var yyb1397 bool + var yyhl1397 bool = l >= 0 + yyj1397++ + if yyhl1397 { + yyb1397 = yyj1397 > l } else { - yyb1372 = r.CheckBreak() + yyb1397 = r.CheckBreak() } - if yyb1372 { + if yyb1397 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19028,13 +19422,13 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Path = string(r.DecodeString()) } - yyj1372++ - if yyhl1372 { - yyb1372 = yyj1372 > l + yyj1397++ + if yyhl1397 { + yyb1397 = yyj1397 > l } else { - yyb1372 = r.CheckBreak() + yyb1397 = r.CheckBreak() } - if yyb1372 { + if yyb1397 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19042,24 +19436,24 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Port = pkg4_intstr.IntOrString{} } else { - yyv1374 := &x.Port - yym1375 := z.DecBinary() - _ = yym1375 + yyv1399 := &x.Port + yym1400 := z.DecBinary() + _ = yym1400 if false { - } else if z.HasExtensions() && z.DecExt(yyv1374) { - } else if !yym1375 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1374) + } else if z.HasExtensions() && z.DecExt(yyv1399) { + } else if !yym1400 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1399) } else { - z.DecFallback(yyv1374, false) + z.DecFallback(yyv1399, false) } } - yyj1372++ - if yyhl1372 { - yyb1372 = yyj1372 > l + yyj1397++ + if yyhl1397 { + yyb1397 = yyj1397 > l } else { - yyb1372 = r.CheckBreak() + yyb1397 = r.CheckBreak() } - if yyb1372 { + if yyb1397 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19069,13 +19463,13 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Host = string(r.DecodeString()) } - yyj1372++ - if yyhl1372 { - yyb1372 = yyj1372 > l + yyj1397++ + if yyhl1397 { + yyb1397 = yyj1397 > l } else { - yyb1372 = r.CheckBreak() + yyb1397 = r.CheckBreak() } - if yyb1372 { + if yyb1397 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19085,13 +19479,13 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Scheme = URIScheme(r.DecodeString()) } - yyj1372++ - if yyhl1372 { - yyb1372 = yyj1372 > l + yyj1397++ + if yyhl1397 { + yyb1397 = yyj1397 > l } else { - yyb1372 = r.CheckBreak() + yyb1397 = r.CheckBreak() } - if yyb1372 { + if yyb1397 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19099,26 +19493,26 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.HTTPHeaders = nil } else { - yyv1378 := &x.HTTPHeaders - yym1379 := z.DecBinary() - _ = yym1379 + yyv1403 := &x.HTTPHeaders + yym1404 := z.DecBinary() + _ = yym1404 if false { } else { - h.decSliceHTTPHeader((*[]HTTPHeader)(yyv1378), d) + h.decSliceHTTPHeader((*[]HTTPHeader)(yyv1403), d) } } for { - yyj1372++ - if yyhl1372 { - yyb1372 = yyj1372 > l + yyj1397++ + if yyhl1397 { + yyb1397 = yyj1397 > l } else { - yyb1372 = r.CheckBreak() + yyb1397 = r.CheckBreak() } - if yyb1372 { + if yyb1397 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1372-1, "") + z.DecStructFieldNotFound(yyj1397-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -19127,8 +19521,8 @@ func (x URIScheme) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1380 := z.EncBinary() - _ = yym1380 + yym1405 := z.EncBinary() + _ = yym1405 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -19140,8 +19534,8 @@ func (x *URIScheme) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1381 := z.DecBinary() - _ = yym1381 + yym1406 := z.DecBinary() + _ = yym1406 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -19156,57 +19550,57 @@ func (x *TCPSocketAction) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1382 := z.EncBinary() - _ = yym1382 + yym1407 := z.EncBinary() + _ = yym1407 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1383 := !z.EncBinary() - yy2arr1383 := z.EncBasicHandle().StructToArray - var yyq1383 [1]bool - _, _, _ = yysep1383, yyq1383, yy2arr1383 - const yyr1383 bool = false - var yynn1383 int - if yyr1383 || yy2arr1383 { + yysep1408 := !z.EncBinary() + yy2arr1408 := z.EncBasicHandle().StructToArray + var yyq1408 [1]bool + _, _, _ = yysep1408, yyq1408, yy2arr1408 + const yyr1408 bool = false + var yynn1408 int + if yyr1408 || yy2arr1408 { r.EncodeArrayStart(1) } else { - yynn1383 = 1 - for _, b := range yyq1383 { + yynn1408 = 1 + for _, b := range yyq1408 { if b { - yynn1383++ + yynn1408++ } } - r.EncodeMapStart(yynn1383) - yynn1383 = 0 + r.EncodeMapStart(yynn1408) + yynn1408 = 0 } - if yyr1383 || yy2arr1383 { + if yyr1408 || yy2arr1408 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1385 := &x.Port - yym1386 := z.EncBinary() - _ = yym1386 + yy1410 := &x.Port + yym1411 := z.EncBinary() + _ = yym1411 if false { - } else if z.HasExtensions() && z.EncExt(yy1385) { - } else if !yym1386 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1385) + } else if z.HasExtensions() && z.EncExt(yy1410) { + } else if !yym1411 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1410) } else { - z.EncFallback(yy1385) + z.EncFallback(yy1410) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1387 := &x.Port - yym1388 := z.EncBinary() - _ = yym1388 + yy1412 := &x.Port + yym1413 := z.EncBinary() + _ = yym1413 if false { - } else if z.HasExtensions() && z.EncExt(yy1387) { - } else if !yym1388 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1387) + } else if z.HasExtensions() && z.EncExt(yy1412) { + } else if !yym1413 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1412) } else { - z.EncFallback(yy1387) + z.EncFallback(yy1412) } } - if yyr1383 || yy2arr1383 { + if yyr1408 || yy2arr1408 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19219,25 +19613,25 @@ func (x *TCPSocketAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1389 := z.DecBinary() - _ = yym1389 + yym1414 := z.DecBinary() + _ = yym1414 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1390 := r.ContainerType() - if yyct1390 == codecSelferValueTypeMap1234 { - yyl1390 := r.ReadMapStart() - if yyl1390 == 0 { + yyct1415 := r.ContainerType() + if yyct1415 == codecSelferValueTypeMap1234 { + yyl1415 := r.ReadMapStart() + if yyl1415 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1390, d) + x.codecDecodeSelfFromMap(yyl1415, d) } - } else if yyct1390 == codecSelferValueTypeArray1234 { - yyl1390 := r.ReadArrayStart() - if yyl1390 == 0 { + } else if yyct1415 == codecSelferValueTypeArray1234 { + yyl1415 := r.ReadArrayStart() + if yyl1415 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1390, d) + x.codecDecodeSelfFromArray(yyl1415, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19249,12 +19643,12 @@ func (x *TCPSocketAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1391Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1391Slc - var yyhl1391 bool = l >= 0 - for yyj1391 := 0; ; yyj1391++ { - if yyhl1391 { - if yyj1391 >= l { + var yys1416Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1416Slc + var yyhl1416 bool = l >= 0 + for yyj1416 := 0; ; yyj1416++ { + if yyhl1416 { + if yyj1416 >= l { break } } else { @@ -19263,29 +19657,29 @@ func (x *TCPSocketAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1391Slc = r.DecodeBytes(yys1391Slc, true, true) - yys1391 := string(yys1391Slc) + yys1416Slc = r.DecodeBytes(yys1416Slc, true, true) + yys1416 := string(yys1416Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1391 { + switch yys1416 { case "port": if r.TryDecodeAsNil() { x.Port = pkg4_intstr.IntOrString{} } else { - yyv1392 := &x.Port - yym1393 := z.DecBinary() - _ = yym1393 + yyv1417 := &x.Port + yym1418 := z.DecBinary() + _ = yym1418 if false { - } else if z.HasExtensions() && z.DecExt(yyv1392) { - } else if !yym1393 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1392) + } else if z.HasExtensions() && z.DecExt(yyv1417) { + } else if !yym1418 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1417) } else { - z.DecFallback(yyv1392, false) + z.DecFallback(yyv1417, false) } } default: - z.DecStructFieldNotFound(-1, yys1391) - } // end switch yys1391 - } // end for yyj1391 + z.DecStructFieldNotFound(-1, yys1416) + } // end switch yys1416 + } // end for yyj1416 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19293,16 +19687,16 @@ func (x *TCPSocketAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1394 int - var yyb1394 bool - var yyhl1394 bool = l >= 0 - yyj1394++ - if yyhl1394 { - yyb1394 = yyj1394 > l + var yyj1419 int + var yyb1419 bool + var yyhl1419 bool = l >= 0 + yyj1419++ + if yyhl1419 { + yyb1419 = yyj1419 > l } else { - yyb1394 = r.CheckBreak() + yyb1419 = r.CheckBreak() } - if yyb1394 { + if yyb1419 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19310,29 +19704,29 @@ func (x *TCPSocketAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Port = pkg4_intstr.IntOrString{} } else { - yyv1395 := &x.Port - yym1396 := z.DecBinary() - _ = yym1396 + yyv1420 := &x.Port + yym1421 := z.DecBinary() + _ = yym1421 if false { - } else if z.HasExtensions() && z.DecExt(yyv1395) { - } else if !yym1396 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1395) + } else if z.HasExtensions() && z.DecExt(yyv1420) { + } else if !yym1421 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1420) } else { - z.DecFallback(yyv1395, false) + z.DecFallback(yyv1420, false) } } for { - yyj1394++ - if yyhl1394 { - yyb1394 = yyj1394 > l + yyj1419++ + if yyhl1419 { + yyb1419 = yyj1419 > l } else { - yyb1394 = r.CheckBreak() + yyb1419 = r.CheckBreak() } - if yyb1394 { + if yyb1419 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1394-1, "") + z.DecStructFieldNotFound(yyj1419-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -19344,38 +19738,38 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1397 := z.EncBinary() - _ = yym1397 + yym1422 := z.EncBinary() + _ = yym1422 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1398 := !z.EncBinary() - yy2arr1398 := z.EncBasicHandle().StructToArray - var yyq1398 [1]bool - _, _, _ = yysep1398, yyq1398, yy2arr1398 - const yyr1398 bool = false - yyq1398[0] = len(x.Command) != 0 - var yynn1398 int - if yyr1398 || yy2arr1398 { + yysep1423 := !z.EncBinary() + yy2arr1423 := z.EncBasicHandle().StructToArray + var yyq1423 [1]bool + _, _, _ = yysep1423, yyq1423, yy2arr1423 + const yyr1423 bool = false + yyq1423[0] = len(x.Command) != 0 + var yynn1423 int + if yyr1423 || yy2arr1423 { r.EncodeArrayStart(1) } else { - yynn1398 = 0 - for _, b := range yyq1398 { + yynn1423 = 0 + for _, b := range yyq1423 { if b { - yynn1398++ + yynn1423++ } } - r.EncodeMapStart(yynn1398) - yynn1398 = 0 + r.EncodeMapStart(yynn1423) + yynn1423 = 0 } - if yyr1398 || yy2arr1398 { + if yyr1423 || yy2arr1423 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1398[0] { + if yyq1423[0] { if x.Command == nil { r.EncodeNil() } else { - yym1400 := z.EncBinary() - _ = yym1400 + yym1425 := z.EncBinary() + _ = yym1425 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -19385,15 +19779,15 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1398[0] { + if yyq1423[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("command")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Command == nil { r.EncodeNil() } else { - yym1401 := z.EncBinary() - _ = yym1401 + yym1426 := z.EncBinary() + _ = yym1426 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -19401,7 +19795,7 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1398 || yy2arr1398 { + if yyr1423 || yy2arr1423 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19414,25 +19808,25 @@ func (x *ExecAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1402 := z.DecBinary() - _ = yym1402 + yym1427 := z.DecBinary() + _ = yym1427 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1403 := r.ContainerType() - if yyct1403 == codecSelferValueTypeMap1234 { - yyl1403 := r.ReadMapStart() - if yyl1403 == 0 { + yyct1428 := r.ContainerType() + if yyct1428 == codecSelferValueTypeMap1234 { + yyl1428 := r.ReadMapStart() + if yyl1428 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1403, d) + x.codecDecodeSelfFromMap(yyl1428, d) } - } else if yyct1403 == codecSelferValueTypeArray1234 { - yyl1403 := r.ReadArrayStart() - if yyl1403 == 0 { + } else if yyct1428 == codecSelferValueTypeArray1234 { + yyl1428 := r.ReadArrayStart() + if yyl1428 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1403, d) + x.codecDecodeSelfFromArray(yyl1428, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19444,12 +19838,12 @@ func (x *ExecAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1404Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1404Slc - var yyhl1404 bool = l >= 0 - for yyj1404 := 0; ; yyj1404++ { - if yyhl1404 { - if yyj1404 >= l { + var yys1429Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1429Slc + var yyhl1429 bool = l >= 0 + for yyj1429 := 0; ; yyj1429++ { + if yyhl1429 { + if yyj1429 >= l { break } } else { @@ -19458,26 +19852,26 @@ func (x *ExecAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1404Slc = r.DecodeBytes(yys1404Slc, true, true) - yys1404 := string(yys1404Slc) + yys1429Slc = r.DecodeBytes(yys1429Slc, true, true) + yys1429 := string(yys1429Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1404 { + switch yys1429 { case "command": if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1405 := &x.Command - yym1406 := z.DecBinary() - _ = yym1406 + yyv1430 := &x.Command + yym1431 := z.DecBinary() + _ = yym1431 if false { } else { - z.F.DecSliceStringX(yyv1405, false, d) + z.F.DecSliceStringX(yyv1430, false, d) } } default: - z.DecStructFieldNotFound(-1, yys1404) - } // end switch yys1404 - } // end for yyj1404 + z.DecStructFieldNotFound(-1, yys1429) + } // end switch yys1429 + } // end for yyj1429 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19485,16 +19879,16 @@ func (x *ExecAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1407 int - var yyb1407 bool - var yyhl1407 bool = l >= 0 - yyj1407++ - if yyhl1407 { - yyb1407 = yyj1407 > l + var yyj1432 int + var yyb1432 bool + var yyhl1432 bool = l >= 0 + yyj1432++ + if yyhl1432 { + yyb1432 = yyj1432 > l } else { - yyb1407 = r.CheckBreak() + yyb1432 = r.CheckBreak() } - if yyb1407 { + if yyb1432 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19502,26 +19896,26 @@ func (x *ExecAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1408 := &x.Command - yym1409 := z.DecBinary() - _ = yym1409 + yyv1433 := &x.Command + yym1434 := z.DecBinary() + _ = yym1434 if false { } else { - z.F.DecSliceStringX(yyv1408, false, d) + z.F.DecSliceStringX(yyv1433, false, d) } } for { - yyj1407++ - if yyhl1407 { - yyb1407 = yyj1407 > l + yyj1432++ + if yyhl1432 { + yyb1432 = yyj1432 > l } else { - yyb1407 = r.CheckBreak() + yyb1432 = r.CheckBreak() } - if yyb1407 { + if yyb1432 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1407-1, "") + z.DecStructFieldNotFound(yyj1432-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -19533,49 +19927,49 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1410 := z.EncBinary() - _ = yym1410 + yym1435 := z.EncBinary() + _ = yym1435 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1411 := !z.EncBinary() - yy2arr1411 := z.EncBasicHandle().StructToArray - var yyq1411 [8]bool - _, _, _ = yysep1411, yyq1411, yy2arr1411 - const yyr1411 bool = false - yyq1411[0] = x.Handler.Exec != nil && x.Exec != nil - yyq1411[1] = x.Handler.HTTPGet != nil && x.HTTPGet != nil - yyq1411[2] = x.Handler.TCPSocket != nil && x.TCPSocket != nil - yyq1411[3] = x.InitialDelaySeconds != 0 - yyq1411[4] = x.TimeoutSeconds != 0 - yyq1411[5] = x.PeriodSeconds != 0 - yyq1411[6] = x.SuccessThreshold != 0 - yyq1411[7] = x.FailureThreshold != 0 - var yynn1411 int - if yyr1411 || yy2arr1411 { + yysep1436 := !z.EncBinary() + yy2arr1436 := z.EncBasicHandle().StructToArray + var yyq1436 [8]bool + _, _, _ = yysep1436, yyq1436, yy2arr1436 + const yyr1436 bool = false + yyq1436[0] = x.Handler.Exec != nil && x.Exec != nil + yyq1436[1] = x.Handler.HTTPGet != nil && x.HTTPGet != nil + yyq1436[2] = x.Handler.TCPSocket != nil && x.TCPSocket != nil + yyq1436[3] = x.InitialDelaySeconds != 0 + yyq1436[4] = x.TimeoutSeconds != 0 + yyq1436[5] = x.PeriodSeconds != 0 + yyq1436[6] = x.SuccessThreshold != 0 + yyq1436[7] = x.FailureThreshold != 0 + var yynn1436 int + if yyr1436 || yy2arr1436 { r.EncodeArrayStart(8) } else { - yynn1411 = 0 - for _, b := range yyq1411 { + yynn1436 = 0 + for _, b := range yyq1436 { if b { - yynn1411++ + yynn1436++ } } - r.EncodeMapStart(yynn1411) - yynn1411 = 0 + r.EncodeMapStart(yynn1436) + yynn1436 = 0 } - var yyn1412 bool + var yyn1437 bool if x.Handler.Exec == nil { - yyn1412 = true - goto LABEL1412 + yyn1437 = true + goto LABEL1437 } - LABEL1412: - if yyr1411 || yy2arr1411 { - if yyn1412 { + LABEL1437: + if yyr1436 || yy2arr1436 { + if yyn1437 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1411[0] { + if yyq1436[0] { if x.Exec == nil { r.EncodeNil() } else { @@ -19586,11 +19980,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1411[0] { + if yyq1436[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1412 { + if yyn1437 { r.EncodeNil() } else { if x.Exec == nil { @@ -19601,18 +19995,18 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn1413 bool + var yyn1438 bool if x.Handler.HTTPGet == nil { - yyn1413 = true - goto LABEL1413 + yyn1438 = true + goto LABEL1438 } - LABEL1413: - if yyr1411 || yy2arr1411 { - if yyn1413 { + LABEL1438: + if yyr1436 || yy2arr1436 { + if yyn1438 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1411[1] { + if yyq1436[1] { if x.HTTPGet == nil { r.EncodeNil() } else { @@ -19623,11 +20017,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1411[1] { + if yyq1436[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("httpGet")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1413 { + if yyn1438 { r.EncodeNil() } else { if x.HTTPGet == nil { @@ -19638,18 +20032,18 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn1414 bool + var yyn1439 bool if x.Handler.TCPSocket == nil { - yyn1414 = true - goto LABEL1414 + yyn1439 = true + goto LABEL1439 } - LABEL1414: - if yyr1411 || yy2arr1411 { - if yyn1414 { + LABEL1439: + if yyr1436 || yy2arr1436 { + if yyn1439 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1411[2] { + if yyq1436[2] { if x.TCPSocket == nil { r.EncodeNil() } else { @@ -19660,11 +20054,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1411[2] { + if yyq1436[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tcpSocket")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1414 { + if yyn1439 { r.EncodeNil() } else { if x.TCPSocket == nil { @@ -19675,11 +20069,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1411 || yy2arr1411 { + if yyr1436 || yy2arr1436 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1411[3] { - yym1416 := z.EncBinary() - _ = yym1416 + if yyq1436[3] { + yym1441 := z.EncBinary() + _ = yym1441 if false { } else { r.EncodeInt(int64(x.InitialDelaySeconds)) @@ -19688,23 +20082,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1411[3] { + if yyq1436[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("initialDelaySeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1417 := z.EncBinary() - _ = yym1417 + yym1442 := z.EncBinary() + _ = yym1442 if false { } else { r.EncodeInt(int64(x.InitialDelaySeconds)) } } } - if yyr1411 || yy2arr1411 { + if yyr1436 || yy2arr1436 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1411[4] { - yym1419 := z.EncBinary() - _ = yym1419 + if yyq1436[4] { + yym1444 := z.EncBinary() + _ = yym1444 if false { } else { r.EncodeInt(int64(x.TimeoutSeconds)) @@ -19713,23 +20107,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1411[4] { + if yyq1436[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timeoutSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1420 := z.EncBinary() - _ = yym1420 + yym1445 := z.EncBinary() + _ = yym1445 if false { } else { r.EncodeInt(int64(x.TimeoutSeconds)) } } } - if yyr1411 || yy2arr1411 { + if yyr1436 || yy2arr1436 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1411[5] { - yym1422 := z.EncBinary() - _ = yym1422 + if yyq1436[5] { + yym1447 := z.EncBinary() + _ = yym1447 if false { } else { r.EncodeInt(int64(x.PeriodSeconds)) @@ -19738,23 +20132,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1411[5] { + if yyq1436[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("periodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1423 := z.EncBinary() - _ = yym1423 + yym1448 := z.EncBinary() + _ = yym1448 if false { } else { r.EncodeInt(int64(x.PeriodSeconds)) } } } - if yyr1411 || yy2arr1411 { + if yyr1436 || yy2arr1436 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1411[6] { - yym1425 := z.EncBinary() - _ = yym1425 + if yyq1436[6] { + yym1450 := z.EncBinary() + _ = yym1450 if false { } else { r.EncodeInt(int64(x.SuccessThreshold)) @@ -19763,23 +20157,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1411[6] { + if yyq1436[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("successThreshold")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1426 := z.EncBinary() - _ = yym1426 + yym1451 := z.EncBinary() + _ = yym1451 if false { } else { r.EncodeInt(int64(x.SuccessThreshold)) } } } - if yyr1411 || yy2arr1411 { + if yyr1436 || yy2arr1436 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1411[7] { - yym1428 := z.EncBinary() - _ = yym1428 + if yyq1436[7] { + yym1453 := z.EncBinary() + _ = yym1453 if false { } else { r.EncodeInt(int64(x.FailureThreshold)) @@ -19788,19 +20182,19 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1411[7] { + if yyq1436[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("failureThreshold")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1429 := z.EncBinary() - _ = yym1429 + yym1454 := z.EncBinary() + _ = yym1454 if false { } else { r.EncodeInt(int64(x.FailureThreshold)) } } } - if yyr1411 || yy2arr1411 { + if yyr1436 || yy2arr1436 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19813,25 +20207,25 @@ func (x *Probe) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1430 := z.DecBinary() - _ = yym1430 + yym1455 := z.DecBinary() + _ = yym1455 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1431 := r.ContainerType() - if yyct1431 == codecSelferValueTypeMap1234 { - yyl1431 := r.ReadMapStart() - if yyl1431 == 0 { + yyct1456 := r.ContainerType() + if yyct1456 == codecSelferValueTypeMap1234 { + yyl1456 := r.ReadMapStart() + if yyl1456 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1431, d) + x.codecDecodeSelfFromMap(yyl1456, d) } - } else if yyct1431 == codecSelferValueTypeArray1234 { - yyl1431 := r.ReadArrayStart() - if yyl1431 == 0 { + } else if yyct1456 == codecSelferValueTypeArray1234 { + yyl1456 := r.ReadArrayStart() + if yyl1456 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1431, d) + x.codecDecodeSelfFromArray(yyl1456, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19843,12 +20237,12 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1432Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1432Slc - var yyhl1432 bool = l >= 0 - for yyj1432 := 0; ; yyj1432++ { - if yyhl1432 { - if yyj1432 >= l { + var yys1457Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1457Slc + var yyhl1457 bool = l >= 0 + for yyj1457 := 0; ; yyj1457++ { + if yyhl1457 { + if yyj1457 >= l { break } } else { @@ -19857,10 +20251,10 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1432Slc = r.DecodeBytes(yys1432Slc, true, true) - yys1432 := string(yys1432Slc) + yys1457Slc = r.DecodeBytes(yys1457Slc, true, true) + yys1457 := string(yys1457Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1432 { + switch yys1457 { case "exec": if x.Handler.Exec == nil { x.Handler.Exec = new(ExecAction) @@ -19934,9 +20328,9 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FailureThreshold = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys1432) - } // end switch yys1432 - } // end for yyj1432 + z.DecStructFieldNotFound(-1, yys1457) + } // end switch yys1457 + } // end for yyj1457 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19944,19 +20338,19 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1441 int - var yyb1441 bool - var yyhl1441 bool = l >= 0 + var yyj1466 int + var yyb1466 bool + var yyhl1466 bool = l >= 0 if x.Handler.Exec == nil { x.Handler.Exec = new(ExecAction) } - yyj1441++ - if yyhl1441 { - yyb1441 = yyj1441 > l + yyj1466++ + if yyhl1466 { + yyb1466 = yyj1466 > l } else { - yyb1441 = r.CheckBreak() + yyb1466 = r.CheckBreak() } - if yyb1441 { + if yyb1466 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19974,13 +20368,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Handler.HTTPGet == nil { x.Handler.HTTPGet = new(HTTPGetAction) } - yyj1441++ - if yyhl1441 { - yyb1441 = yyj1441 > l + yyj1466++ + if yyhl1466 { + yyb1466 = yyj1466 > l } else { - yyb1441 = r.CheckBreak() + yyb1466 = r.CheckBreak() } - if yyb1441 { + if yyb1466 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19998,13 +20392,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Handler.TCPSocket == nil { x.Handler.TCPSocket = new(TCPSocketAction) } - yyj1441++ - if yyhl1441 { - yyb1441 = yyj1441 > l + yyj1466++ + if yyhl1466 { + yyb1466 = yyj1466 > l } else { - yyb1441 = r.CheckBreak() + yyb1466 = r.CheckBreak() } - if yyb1441 { + if yyb1466 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20019,13 +20413,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.TCPSocket.CodecDecodeSelf(d) } - yyj1441++ - if yyhl1441 { - yyb1441 = yyj1441 > l + yyj1466++ + if yyhl1466 { + yyb1466 = yyj1466 > l } else { - yyb1441 = r.CheckBreak() + yyb1466 = r.CheckBreak() } - if yyb1441 { + if yyb1466 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20035,13 +20429,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.InitialDelaySeconds = int32(r.DecodeInt(32)) } - yyj1441++ - if yyhl1441 { - yyb1441 = yyj1441 > l + yyj1466++ + if yyhl1466 { + yyb1466 = yyj1466 > l } else { - yyb1441 = r.CheckBreak() + yyb1466 = r.CheckBreak() } - if yyb1441 { + if yyb1466 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20051,13 +20445,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TimeoutSeconds = int32(r.DecodeInt(32)) } - yyj1441++ - if yyhl1441 { - yyb1441 = yyj1441 > l + yyj1466++ + if yyhl1466 { + yyb1466 = yyj1466 > l } else { - yyb1441 = r.CheckBreak() + yyb1466 = r.CheckBreak() } - if yyb1441 { + if yyb1466 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20067,13 +20461,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PeriodSeconds = int32(r.DecodeInt(32)) } - yyj1441++ - if yyhl1441 { - yyb1441 = yyj1441 > l + yyj1466++ + if yyhl1466 { + yyb1466 = yyj1466 > l } else { - yyb1441 = r.CheckBreak() + yyb1466 = r.CheckBreak() } - if yyb1441 { + if yyb1466 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20083,13 +20477,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SuccessThreshold = int32(r.DecodeInt(32)) } - yyj1441++ - if yyhl1441 { - yyb1441 = yyj1441 > l + yyj1466++ + if yyhl1466 { + yyb1466 = yyj1466 > l } else { - yyb1441 = r.CheckBreak() + yyb1466 = r.CheckBreak() } - if yyb1441 { + if yyb1466 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20100,17 +20494,17 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.FailureThreshold = int32(r.DecodeInt(32)) } for { - yyj1441++ - if yyhl1441 { - yyb1441 = yyj1441 > l + yyj1466++ + if yyhl1466 { + yyb1466 = yyj1466 > l } else { - yyb1441 = r.CheckBreak() + yyb1466 = r.CheckBreak() } - if yyb1441 { + if yyb1466 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1441-1, "") + z.DecStructFieldNotFound(yyj1466-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20119,8 +20513,8 @@ func (x PullPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1450 := z.EncBinary() - _ = yym1450 + yym1475 := z.EncBinary() + _ = yym1475 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -20132,8 +20526,8 @@ func (x *PullPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1451 := z.DecBinary() - _ = yym1451 + yym1476 := z.DecBinary() + _ = yym1476 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -20145,8 +20539,8 @@ func (x Capability) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1452 := z.EncBinary() - _ = yym1452 + yym1477 := z.EncBinary() + _ = yym1477 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -20158,8 +20552,8 @@ func (x *Capability) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1453 := z.DecBinary() - _ = yym1453 + yym1478 := z.DecBinary() + _ = yym1478 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -20174,39 +20568,39 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1454 := z.EncBinary() - _ = yym1454 + yym1479 := z.EncBinary() + _ = yym1479 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1455 := !z.EncBinary() - yy2arr1455 := z.EncBasicHandle().StructToArray - var yyq1455 [2]bool - _, _, _ = yysep1455, yyq1455, yy2arr1455 - const yyr1455 bool = false - yyq1455[0] = len(x.Add) != 0 - yyq1455[1] = len(x.Drop) != 0 - var yynn1455 int - if yyr1455 || yy2arr1455 { + yysep1480 := !z.EncBinary() + yy2arr1480 := z.EncBasicHandle().StructToArray + var yyq1480 [2]bool + _, _, _ = yysep1480, yyq1480, yy2arr1480 + const yyr1480 bool = false + yyq1480[0] = len(x.Add) != 0 + yyq1480[1] = len(x.Drop) != 0 + var yynn1480 int + if yyr1480 || yy2arr1480 { r.EncodeArrayStart(2) } else { - yynn1455 = 0 - for _, b := range yyq1455 { + yynn1480 = 0 + for _, b := range yyq1480 { if b { - yynn1455++ + yynn1480++ } } - r.EncodeMapStart(yynn1455) - yynn1455 = 0 + r.EncodeMapStart(yynn1480) + yynn1480 = 0 } - if yyr1455 || yy2arr1455 { + if yyr1480 || yy2arr1480 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1455[0] { + if yyq1480[0] { if x.Add == nil { r.EncodeNil() } else { - yym1457 := z.EncBinary() - _ = yym1457 + yym1482 := z.EncBinary() + _ = yym1482 if false { } else { h.encSliceCapability(([]Capability)(x.Add), e) @@ -20216,15 +20610,15 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1455[0] { + if yyq1480[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("add")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Add == nil { r.EncodeNil() } else { - yym1458 := z.EncBinary() - _ = yym1458 + yym1483 := z.EncBinary() + _ = yym1483 if false { } else { h.encSliceCapability(([]Capability)(x.Add), e) @@ -20232,14 +20626,14 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1455 || yy2arr1455 { + if yyr1480 || yy2arr1480 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1455[1] { + if yyq1480[1] { if x.Drop == nil { r.EncodeNil() } else { - yym1460 := z.EncBinary() - _ = yym1460 + yym1485 := z.EncBinary() + _ = yym1485 if false { } else { h.encSliceCapability(([]Capability)(x.Drop), e) @@ -20249,15 +20643,15 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1455[1] { + if yyq1480[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("drop")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Drop == nil { r.EncodeNil() } else { - yym1461 := z.EncBinary() - _ = yym1461 + yym1486 := z.EncBinary() + _ = yym1486 if false { } else { h.encSliceCapability(([]Capability)(x.Drop), e) @@ -20265,7 +20659,7 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1455 || yy2arr1455 { + if yyr1480 || yy2arr1480 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -20278,25 +20672,25 @@ func (x *Capabilities) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1462 := z.DecBinary() - _ = yym1462 + yym1487 := z.DecBinary() + _ = yym1487 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1463 := r.ContainerType() - if yyct1463 == codecSelferValueTypeMap1234 { - yyl1463 := r.ReadMapStart() - if yyl1463 == 0 { + yyct1488 := r.ContainerType() + if yyct1488 == codecSelferValueTypeMap1234 { + yyl1488 := r.ReadMapStart() + if yyl1488 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1463, d) + x.codecDecodeSelfFromMap(yyl1488, d) } - } else if yyct1463 == codecSelferValueTypeArray1234 { - yyl1463 := r.ReadArrayStart() - if yyl1463 == 0 { + } else if yyct1488 == codecSelferValueTypeArray1234 { + yyl1488 := r.ReadArrayStart() + if yyl1488 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1463, d) + x.codecDecodeSelfFromArray(yyl1488, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -20308,12 +20702,12 @@ func (x *Capabilities) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1464Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1464Slc - var yyhl1464 bool = l >= 0 - for yyj1464 := 0; ; yyj1464++ { - if yyhl1464 { - if yyj1464 >= l { + var yys1489Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1489Slc + var yyhl1489 bool = l >= 0 + for yyj1489 := 0; ; yyj1489++ { + if yyhl1489 { + if yyj1489 >= l { break } } else { @@ -20322,38 +20716,38 @@ func (x *Capabilities) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1464Slc = r.DecodeBytes(yys1464Slc, true, true) - yys1464 := string(yys1464Slc) + yys1489Slc = r.DecodeBytes(yys1489Slc, true, true) + yys1489 := string(yys1489Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1464 { + switch yys1489 { case "add": if r.TryDecodeAsNil() { x.Add = nil } else { - yyv1465 := &x.Add - yym1466 := z.DecBinary() - _ = yym1466 + yyv1490 := &x.Add + yym1491 := z.DecBinary() + _ = yym1491 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1465), d) + h.decSliceCapability((*[]Capability)(yyv1490), d) } } case "drop": if r.TryDecodeAsNil() { x.Drop = nil } else { - yyv1467 := &x.Drop - yym1468 := z.DecBinary() - _ = yym1468 + yyv1492 := &x.Drop + yym1493 := z.DecBinary() + _ = yym1493 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1467), d) + h.decSliceCapability((*[]Capability)(yyv1492), d) } } default: - z.DecStructFieldNotFound(-1, yys1464) - } // end switch yys1464 - } // end for yyj1464 + z.DecStructFieldNotFound(-1, yys1489) + } // end switch yys1489 + } // end for yyj1489 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20361,16 +20755,16 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1469 int - var yyb1469 bool - var yyhl1469 bool = l >= 0 - yyj1469++ - if yyhl1469 { - yyb1469 = yyj1469 > l + var yyj1494 int + var yyb1494 bool + var yyhl1494 bool = l >= 0 + yyj1494++ + if yyhl1494 { + yyb1494 = yyj1494 > l } else { - yyb1469 = r.CheckBreak() + yyb1494 = r.CheckBreak() } - if yyb1469 { + if yyb1494 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20378,21 +20772,21 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Add = nil } else { - yyv1470 := &x.Add - yym1471 := z.DecBinary() - _ = yym1471 + yyv1495 := &x.Add + yym1496 := z.DecBinary() + _ = yym1496 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1470), d) + h.decSliceCapability((*[]Capability)(yyv1495), d) } } - yyj1469++ - if yyhl1469 { - yyb1469 = yyj1469 > l + yyj1494++ + if yyhl1494 { + yyb1494 = yyj1494 > l } else { - yyb1469 = r.CheckBreak() + yyb1494 = r.CheckBreak() } - if yyb1469 { + if yyb1494 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20400,26 +20794,26 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Drop = nil } else { - yyv1472 := &x.Drop - yym1473 := z.DecBinary() - _ = yym1473 + yyv1497 := &x.Drop + yym1498 := z.DecBinary() + _ = yym1498 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1472), d) + h.decSliceCapability((*[]Capability)(yyv1497), d) } } for { - yyj1469++ - if yyhl1469 { - yyb1469 = yyj1469 > l + yyj1494++ + if yyhl1494 { + yyb1494 = yyj1494 > l } else { - yyb1469 = r.CheckBreak() + yyb1494 = r.CheckBreak() } - if yyb1469 { + if yyb1494 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1469-1, "") + z.DecStructFieldNotFound(yyj1494-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20431,34 +20825,34 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1474 := z.EncBinary() - _ = yym1474 + yym1499 := z.EncBinary() + _ = yym1499 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1475 := !z.EncBinary() - yy2arr1475 := z.EncBasicHandle().StructToArray - var yyq1475 [2]bool - _, _, _ = yysep1475, yyq1475, yy2arr1475 - const yyr1475 bool = false - yyq1475[0] = len(x.Limits) != 0 - yyq1475[1] = len(x.Requests) != 0 - var yynn1475 int - if yyr1475 || yy2arr1475 { + yysep1500 := !z.EncBinary() + yy2arr1500 := z.EncBasicHandle().StructToArray + var yyq1500 [2]bool + _, _, _ = yysep1500, yyq1500, yy2arr1500 + const yyr1500 bool = false + yyq1500[0] = len(x.Limits) != 0 + yyq1500[1] = len(x.Requests) != 0 + var yynn1500 int + if yyr1500 || yy2arr1500 { r.EncodeArrayStart(2) } else { - yynn1475 = 0 - for _, b := range yyq1475 { + yynn1500 = 0 + for _, b := range yyq1500 { if b { - yynn1475++ + yynn1500++ } } - r.EncodeMapStart(yynn1475) - yynn1475 = 0 + r.EncodeMapStart(yynn1500) + yynn1500 = 0 } - if yyr1475 || yy2arr1475 { + if yyr1500 || yy2arr1500 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1475[0] { + if yyq1500[0] { if x.Limits == nil { r.EncodeNil() } else { @@ -20468,7 +20862,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1475[0] { + if yyq1500[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("limits")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -20479,9 +20873,9 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1475 || yy2arr1475 { + if yyr1500 || yy2arr1500 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1475[1] { + if yyq1500[1] { if x.Requests == nil { r.EncodeNil() } else { @@ -20491,7 +20885,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1475[1] { + if yyq1500[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requests")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -20502,7 +20896,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1475 || yy2arr1475 { + if yyr1500 || yy2arr1500 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -20515,25 +20909,25 @@ func (x *ResourceRequirements) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1478 := z.DecBinary() - _ = yym1478 + yym1503 := z.DecBinary() + _ = yym1503 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1479 := r.ContainerType() - if yyct1479 == codecSelferValueTypeMap1234 { - yyl1479 := r.ReadMapStart() - if yyl1479 == 0 { + yyct1504 := r.ContainerType() + if yyct1504 == codecSelferValueTypeMap1234 { + yyl1504 := r.ReadMapStart() + if yyl1504 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1479, d) + x.codecDecodeSelfFromMap(yyl1504, d) } - } else if yyct1479 == codecSelferValueTypeArray1234 { - yyl1479 := r.ReadArrayStart() - if yyl1479 == 0 { + } else if yyct1504 == codecSelferValueTypeArray1234 { + yyl1504 := r.ReadArrayStart() + if yyl1504 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1479, d) + x.codecDecodeSelfFromArray(yyl1504, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -20545,12 +20939,12 @@ func (x *ResourceRequirements) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1480Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1480Slc - var yyhl1480 bool = l >= 0 - for yyj1480 := 0; ; yyj1480++ { - if yyhl1480 { - if yyj1480 >= l { + var yys1505Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1505Slc + var yyhl1505 bool = l >= 0 + for yyj1505 := 0; ; yyj1505++ { + if yyhl1505 { + if yyj1505 >= l { break } } else { @@ -20559,28 +20953,28 @@ func (x *ResourceRequirements) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1480Slc = r.DecodeBytes(yys1480Slc, true, true) - yys1480 := string(yys1480Slc) + yys1505Slc = r.DecodeBytes(yys1505Slc, true, true) + yys1505 := string(yys1505Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1480 { + switch yys1505 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv1481 := &x.Limits - yyv1481.CodecDecodeSelf(d) + yyv1506 := &x.Limits + yyv1506.CodecDecodeSelf(d) } case "requests": if r.TryDecodeAsNil() { x.Requests = nil } else { - yyv1482 := &x.Requests - yyv1482.CodecDecodeSelf(d) + yyv1507 := &x.Requests + yyv1507.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1480) - } // end switch yys1480 - } // end for yyj1480 + z.DecStructFieldNotFound(-1, yys1505) + } // end switch yys1505 + } // end for yyj1505 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20588,16 +20982,16 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1483 int - var yyb1483 bool - var yyhl1483 bool = l >= 0 - yyj1483++ - if yyhl1483 { - yyb1483 = yyj1483 > l + var yyj1508 int + var yyb1508 bool + var yyhl1508 bool = l >= 0 + yyj1508++ + if yyhl1508 { + yyb1508 = yyj1508 > l } else { - yyb1483 = r.CheckBreak() + yyb1508 = r.CheckBreak() } - if yyb1483 { + if yyb1508 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20605,16 +20999,16 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv1484 := &x.Limits - yyv1484.CodecDecodeSelf(d) + yyv1509 := &x.Limits + yyv1509.CodecDecodeSelf(d) } - yyj1483++ - if yyhl1483 { - yyb1483 = yyj1483 > l + yyj1508++ + if yyhl1508 { + yyb1508 = yyj1508 > l } else { - yyb1483 = r.CheckBreak() + yyb1508 = r.CheckBreak() } - if yyb1483 { + if yyb1508 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20622,21 +21016,21 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Requests = nil } else { - yyv1485 := &x.Requests - yyv1485.CodecDecodeSelf(d) + yyv1510 := &x.Requests + yyv1510.CodecDecodeSelf(d) } for { - yyj1483++ - if yyhl1483 { - yyb1483 = yyj1483 > l + yyj1508++ + if yyhl1508 { + yyb1508 = yyj1508 > l } else { - yyb1483 = r.CheckBreak() + yyb1508 = r.CheckBreak() } - if yyb1483 { + if yyb1508 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1483-1, "") + z.DecStructFieldNotFound(yyj1508-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20648,50 +21042,51 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1486 := z.EncBinary() - _ = yym1486 + yym1511 := z.EncBinary() + _ = yym1511 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1487 := !z.EncBinary() - yy2arr1487 := z.EncBasicHandle().StructToArray - var yyq1487 [18]bool - _, _, _ = yysep1487, yyq1487, yy2arr1487 - const yyr1487 bool = false - yyq1487[1] = x.Image != "" - yyq1487[2] = len(x.Command) != 0 - yyq1487[3] = len(x.Args) != 0 - yyq1487[4] = x.WorkingDir != "" - yyq1487[5] = len(x.Ports) != 0 - yyq1487[6] = len(x.Env) != 0 - yyq1487[7] = true - yyq1487[8] = len(x.VolumeMounts) != 0 - yyq1487[9] = x.LivenessProbe != nil - yyq1487[10] = x.ReadinessProbe != nil - yyq1487[11] = x.Lifecycle != nil - yyq1487[12] = x.TerminationMessagePath != "" - yyq1487[13] = x.ImagePullPolicy != "" - yyq1487[14] = x.SecurityContext != nil - yyq1487[15] = x.Stdin != false - yyq1487[16] = x.StdinOnce != false - yyq1487[17] = x.TTY != false - var yynn1487 int - if yyr1487 || yy2arr1487 { - r.EncodeArrayStart(18) + yysep1512 := !z.EncBinary() + yy2arr1512 := z.EncBasicHandle().StructToArray + var yyq1512 [19]bool + _, _, _ = yysep1512, yyq1512, yy2arr1512 + const yyr1512 bool = false + yyq1512[1] = x.Image != "" + yyq1512[2] = len(x.Command) != 0 + yyq1512[3] = len(x.Args) != 0 + yyq1512[4] = x.WorkingDir != "" + yyq1512[5] = len(x.Ports) != 0 + yyq1512[6] = len(x.EnvFrom) != 0 + yyq1512[7] = len(x.Env) != 0 + yyq1512[8] = true + yyq1512[9] = len(x.VolumeMounts) != 0 + yyq1512[10] = x.LivenessProbe != nil + yyq1512[11] = x.ReadinessProbe != nil + yyq1512[12] = x.Lifecycle != nil + yyq1512[13] = x.TerminationMessagePath != "" + yyq1512[14] = x.ImagePullPolicy != "" + yyq1512[15] = x.SecurityContext != nil + yyq1512[16] = x.Stdin != false + yyq1512[17] = x.StdinOnce != false + yyq1512[18] = x.TTY != false + var yynn1512 int + if yyr1512 || yy2arr1512 { + r.EncodeArrayStart(19) } else { - yynn1487 = 1 - for _, b := range yyq1487 { + yynn1512 = 1 + for _, b := range yyq1512 { if b { - yynn1487++ + yynn1512++ } } - r.EncodeMapStart(yynn1487) - yynn1487 = 0 + r.EncodeMapStart(yynn1512) + yynn1512 = 0 } - if yyr1487 || yy2arr1487 { + if yyr1512 || yy2arr1512 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1489 := z.EncBinary() - _ = yym1489 + yym1514 := z.EncBinary() + _ = yym1514 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -20700,18 +21095,18 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1490 := z.EncBinary() - _ = yym1490 + yym1515 := z.EncBinary() + _ = yym1515 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1487 || yy2arr1487 { + if yyr1512 || yy2arr1512 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1487[1] { - yym1492 := z.EncBinary() - _ = yym1492 + if yyq1512[1] { + yym1517 := z.EncBinary() + _ = yym1517 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) @@ -20720,26 +21115,26 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1487[1] { + if yyq1512[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("image")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1493 := z.EncBinary() - _ = yym1493 + yym1518 := z.EncBinary() + _ = yym1518 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) } } } - if yyr1487 || yy2arr1487 { + if yyr1512 || yy2arr1512 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1487[2] { + if yyq1512[2] { if x.Command == nil { r.EncodeNil() } else { - yym1495 := z.EncBinary() - _ = yym1495 + yym1520 := z.EncBinary() + _ = yym1520 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -20749,15 +21144,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1487[2] { + if yyq1512[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("command")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Command == nil { r.EncodeNil() } else { - yym1496 := z.EncBinary() - _ = yym1496 + yym1521 := z.EncBinary() + _ = yym1521 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -20765,14 +21160,14 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1487 || yy2arr1487 { + if yyr1512 || yy2arr1512 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1487[3] { + if yyq1512[3] { if x.Args == nil { r.EncodeNil() } else { - yym1498 := z.EncBinary() - _ = yym1498 + yym1523 := z.EncBinary() + _ = yym1523 if false { } else { z.F.EncSliceStringV(x.Args, false, e) @@ -20782,15 +21177,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1487[3] { + if yyq1512[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("args")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Args == nil { r.EncodeNil() } else { - yym1499 := z.EncBinary() - _ = yym1499 + yym1524 := z.EncBinary() + _ = yym1524 if false { } else { z.F.EncSliceStringV(x.Args, false, e) @@ -20798,11 +21193,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1487 || yy2arr1487 { + if yyr1512 || yy2arr1512 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1487[4] { - yym1501 := z.EncBinary() - _ = yym1501 + if yyq1512[4] { + yym1526 := z.EncBinary() + _ = yym1526 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.WorkingDir)) @@ -20811,26 +21206,26 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1487[4] { + if yyq1512[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("workingDir")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1502 := z.EncBinary() - _ = yym1502 + yym1527 := z.EncBinary() + _ = yym1527 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.WorkingDir)) } } } - if yyr1487 || yy2arr1487 { + if yyr1512 || yy2arr1512 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1487[5] { + if yyq1512[5] { if x.Ports == nil { r.EncodeNil() } else { - yym1504 := z.EncBinary() - _ = yym1504 + yym1529 := z.EncBinary() + _ = yym1529 if false { } else { h.encSliceContainerPort(([]ContainerPort)(x.Ports), e) @@ -20840,15 +21235,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1487[5] { + if yyq1512[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ports")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ports == nil { r.EncodeNil() } else { - yym1505 := z.EncBinary() - _ = yym1505 + yym1530 := z.EncBinary() + _ = yym1530 if false { } else { h.encSliceContainerPort(([]ContainerPort)(x.Ports), e) @@ -20856,14 +21251,47 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1487 || yy2arr1487 { + if yyr1512 || yy2arr1512 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1487[6] { + if yyq1512[6] { + if x.EnvFrom == nil { + r.EncodeNil() + } else { + yym1532 := z.EncBinary() + _ = yym1532 + if false { + } else { + h.encSliceEnvFromSource(([]EnvFromSource)(x.EnvFrom), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq1512[6] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("envFrom")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.EnvFrom == nil { + r.EncodeNil() + } else { + yym1533 := z.EncBinary() + _ = yym1533 + if false { + } else { + h.encSliceEnvFromSource(([]EnvFromSource)(x.EnvFrom), e) + } + } + } + } + if yyr1512 || yy2arr1512 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1512[7] { if x.Env == nil { r.EncodeNil() } else { - yym1507 := z.EncBinary() - _ = yym1507 + yym1535 := z.EncBinary() + _ = yym1535 if false { } else { h.encSliceEnvVar(([]EnvVar)(x.Env), e) @@ -20873,15 +21301,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1487[6] { + if yyq1512[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("env")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Env == nil { r.EncodeNil() } else { - yym1508 := z.EncBinary() - _ = yym1508 + yym1536 := z.EncBinary() + _ = yym1536 if false { } else { h.encSliceEnvVar(([]EnvVar)(x.Env), e) @@ -20889,31 +21317,31 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1487 || yy2arr1487 { + if yyr1512 || yy2arr1512 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1487[7] { - yy1510 := &x.Resources - yy1510.CodecEncodeSelf(e) + if yyq1512[8] { + yy1538 := &x.Resources + yy1538.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1487[7] { + if yyq1512[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resources")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1511 := &x.Resources - yy1511.CodecEncodeSelf(e) + yy1539 := &x.Resources + yy1539.CodecEncodeSelf(e) } } - if yyr1487 || yy2arr1487 { + if yyr1512 || yy2arr1512 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1487[8] { + if yyq1512[9] { if x.VolumeMounts == nil { r.EncodeNil() } else { - yym1513 := z.EncBinary() - _ = yym1513 + yym1541 := z.EncBinary() + _ = yym1541 if false { } else { h.encSliceVolumeMount(([]VolumeMount)(x.VolumeMounts), e) @@ -20923,15 +21351,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1487[8] { + if yyq1512[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumeMounts")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumeMounts == nil { r.EncodeNil() } else { - yym1514 := z.EncBinary() - _ = yym1514 + yym1542 := z.EncBinary() + _ = yym1542 if false { } else { h.encSliceVolumeMount(([]VolumeMount)(x.VolumeMounts), e) @@ -20939,9 +21367,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1487 || yy2arr1487 { + if yyr1512 || yy2arr1512 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1487[9] { + if yyq1512[10] { if x.LivenessProbe == nil { r.EncodeNil() } else { @@ -20951,7 +21379,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1487[9] { + if yyq1512[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("livenessProbe")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -20962,9 +21390,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1487 || yy2arr1487 { + if yyr1512 || yy2arr1512 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1487[10] { + if yyq1512[11] { if x.ReadinessProbe == nil { r.EncodeNil() } else { @@ -20974,7 +21402,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1487[10] { + if yyq1512[11] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readinessProbe")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -20985,9 +21413,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1487 || yy2arr1487 { + if yyr1512 || yy2arr1512 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1487[11] { + if yyq1512[12] { if x.Lifecycle == nil { r.EncodeNil() } else { @@ -20997,7 +21425,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1487[11] { + if yyq1512[12] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lifecycle")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -21008,11 +21436,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1487 || yy2arr1487 { + if yyr1512 || yy2arr1512 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1487[12] { - yym1519 := z.EncBinary() - _ = yym1519 + if yyq1512[13] { + yym1547 := z.EncBinary() + _ = yym1547 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TerminationMessagePath)) @@ -21021,36 +21449,36 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1487[12] { + if yyq1512[13] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminationMessagePath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1520 := z.EncBinary() - _ = yym1520 + yym1548 := z.EncBinary() + _ = yym1548 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TerminationMessagePath)) } } } - if yyr1487 || yy2arr1487 { + if yyr1512 || yy2arr1512 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1487[13] { + if yyq1512[14] { x.ImagePullPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1487[13] { + if yyq1512[14] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.ImagePullPolicy.CodecEncodeSelf(e) } } - if yyr1487 || yy2arr1487 { + if yyr1512 || yy2arr1512 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1487[14] { + if yyq1512[15] { if x.SecurityContext == nil { r.EncodeNil() } else { @@ -21060,7 +21488,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1487[14] { + if yyq1512[15] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("securityContext")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -21071,11 +21499,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1487 || yy2arr1487 { + if yyr1512 || yy2arr1512 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1487[15] { - yym1524 := z.EncBinary() - _ = yym1524 + if yyq1512[16] { + yym1552 := z.EncBinary() + _ = yym1552 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -21084,23 +21512,23 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1487[15] { + if yyq1512[16] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1525 := z.EncBinary() - _ = yym1525 + yym1553 := z.EncBinary() + _ = yym1553 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr1487 || yy2arr1487 { + if yyr1512 || yy2arr1512 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1487[16] { - yym1527 := z.EncBinary() - _ = yym1527 + if yyq1512[17] { + yym1555 := z.EncBinary() + _ = yym1555 if false { } else { r.EncodeBool(bool(x.StdinOnce)) @@ -21109,23 +21537,23 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1487[16] { + if yyq1512[17] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdinOnce")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1528 := z.EncBinary() - _ = yym1528 + yym1556 := z.EncBinary() + _ = yym1556 if false { } else { r.EncodeBool(bool(x.StdinOnce)) } } } - if yyr1487 || yy2arr1487 { + if yyr1512 || yy2arr1512 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1487[17] { - yym1530 := z.EncBinary() - _ = yym1530 + if yyq1512[18] { + yym1558 := z.EncBinary() + _ = yym1558 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -21134,19 +21562,19 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1487[17] { + if yyq1512[18] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1531 := z.EncBinary() - _ = yym1531 + yym1559 := z.EncBinary() + _ = yym1559 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr1487 || yy2arr1487 { + if yyr1512 || yy2arr1512 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21159,25 +21587,25 @@ func (x *Container) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1532 := z.DecBinary() - _ = yym1532 + yym1560 := z.DecBinary() + _ = yym1560 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1533 := r.ContainerType() - if yyct1533 == codecSelferValueTypeMap1234 { - yyl1533 := r.ReadMapStart() - if yyl1533 == 0 { + yyct1561 := r.ContainerType() + if yyct1561 == codecSelferValueTypeMap1234 { + yyl1561 := r.ReadMapStart() + if yyl1561 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1533, d) + x.codecDecodeSelfFromMap(yyl1561, d) } - } else if yyct1533 == codecSelferValueTypeArray1234 { - yyl1533 := r.ReadArrayStart() - if yyl1533 == 0 { + } else if yyct1561 == codecSelferValueTypeArray1234 { + yyl1561 := r.ReadArrayStart() + if yyl1561 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1533, d) + x.codecDecodeSelfFromArray(yyl1561, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21189,12 +21617,12 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1534Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1534Slc - var yyhl1534 bool = l >= 0 - for yyj1534 := 0; ; yyj1534++ { - if yyhl1534 { - if yyj1534 >= l { + var yys1562Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1562Slc + var yyhl1562 bool = l >= 0 + for yyj1562 := 0; ; yyj1562++ { + if yyhl1562 { + if yyj1562 >= l { break } } else { @@ -21203,10 +21631,10 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1534Slc = r.DecodeBytes(yys1534Slc, true, true) - yys1534 := string(yys1534Slc) + yys1562Slc = r.DecodeBytes(yys1562Slc, true, true) + yys1562 := string(yys1562Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1534 { + switch yys1562 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -21223,24 +21651,24 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1537 := &x.Command - yym1538 := z.DecBinary() - _ = yym1538 + yyv1565 := &x.Command + yym1566 := z.DecBinary() + _ = yym1566 if false { } else { - z.F.DecSliceStringX(yyv1537, false, d) + z.F.DecSliceStringX(yyv1565, false, d) } } case "args": if r.TryDecodeAsNil() { x.Args = nil } else { - yyv1539 := &x.Args - yym1540 := z.DecBinary() - _ = yym1540 + yyv1567 := &x.Args + yym1568 := z.DecBinary() + _ = yym1568 if false { } else { - z.F.DecSliceStringX(yyv1539, false, d) + z.F.DecSliceStringX(yyv1567, false, d) } } case "workingDir": @@ -21253,43 +21681,55 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1542 := &x.Ports - yym1543 := z.DecBinary() - _ = yym1543 + yyv1570 := &x.Ports + yym1571 := z.DecBinary() + _ = yym1571 if false { } else { - h.decSliceContainerPort((*[]ContainerPort)(yyv1542), d) + h.decSliceContainerPort((*[]ContainerPort)(yyv1570), d) + } + } + case "envFrom": + if r.TryDecodeAsNil() { + x.EnvFrom = nil + } else { + yyv1572 := &x.EnvFrom + yym1573 := z.DecBinary() + _ = yym1573 + if false { + } else { + h.decSliceEnvFromSource((*[]EnvFromSource)(yyv1572), d) } } case "env": if r.TryDecodeAsNil() { x.Env = nil } else { - yyv1544 := &x.Env - yym1545 := z.DecBinary() - _ = yym1545 + yyv1574 := &x.Env + yym1575 := z.DecBinary() + _ = yym1575 if false { } else { - h.decSliceEnvVar((*[]EnvVar)(yyv1544), d) + h.decSliceEnvVar((*[]EnvVar)(yyv1574), d) } } case "resources": if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv1546 := &x.Resources - yyv1546.CodecDecodeSelf(d) + yyv1576 := &x.Resources + yyv1576.CodecDecodeSelf(d) } case "volumeMounts": if r.TryDecodeAsNil() { x.VolumeMounts = nil } else { - yyv1547 := &x.VolumeMounts - yym1548 := z.DecBinary() - _ = yym1548 + yyv1577 := &x.VolumeMounts + yym1578 := z.DecBinary() + _ = yym1578 if false { } else { - h.decSliceVolumeMount((*[]VolumeMount)(yyv1547), d) + h.decSliceVolumeMount((*[]VolumeMount)(yyv1577), d) } } case "livenessProbe": @@ -21367,9 +21807,9 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TTY = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys1534) - } // end switch yys1534 - } // end for yyj1534 + z.DecStructFieldNotFound(-1, yys1562) + } // end switch yys1562 + } // end for yyj1562 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21377,16 +21817,16 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1558 int - var yyb1558 bool - var yyhl1558 bool = l >= 0 - yyj1558++ - if yyhl1558 { - yyb1558 = yyj1558 > l + var yyj1588 int + var yyb1588 bool + var yyhl1588 bool = l >= 0 + yyj1588++ + if yyhl1588 { + yyb1588 = yyj1588 > l } else { - yyb1558 = r.CheckBreak() + yyb1588 = r.CheckBreak() } - if yyb1558 { + if yyb1588 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21396,13 +21836,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1558++ - if yyhl1558 { - yyb1558 = yyj1558 > l + yyj1588++ + if yyhl1588 { + yyb1588 = yyj1588 > l } else { - yyb1558 = r.CheckBreak() + yyb1588 = r.CheckBreak() } - if yyb1558 { + if yyb1588 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21412,13 +21852,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Image = string(r.DecodeString()) } - yyj1558++ - if yyhl1558 { - yyb1558 = yyj1558 > l + yyj1588++ + if yyhl1588 { + yyb1588 = yyj1588 > l } else { - yyb1558 = r.CheckBreak() + yyb1588 = r.CheckBreak() } - if yyb1558 { + if yyb1588 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21426,21 +21866,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1561 := &x.Command - yym1562 := z.DecBinary() - _ = yym1562 + yyv1591 := &x.Command + yym1592 := z.DecBinary() + _ = yym1592 if false { } else { - z.F.DecSliceStringX(yyv1561, false, d) + z.F.DecSliceStringX(yyv1591, false, d) } } - yyj1558++ - if yyhl1558 { - yyb1558 = yyj1558 > l + yyj1588++ + if yyhl1588 { + yyb1588 = yyj1588 > l } else { - yyb1558 = r.CheckBreak() + yyb1588 = r.CheckBreak() } - if yyb1558 { + if yyb1588 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21448,21 +21888,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Args = nil } else { - yyv1563 := &x.Args - yym1564 := z.DecBinary() - _ = yym1564 + yyv1593 := &x.Args + yym1594 := z.DecBinary() + _ = yym1594 if false { } else { - z.F.DecSliceStringX(yyv1563, false, d) + z.F.DecSliceStringX(yyv1593, false, d) } } - yyj1558++ - if yyhl1558 { - yyb1558 = yyj1558 > l + yyj1588++ + if yyhl1588 { + yyb1588 = yyj1588 > l } else { - yyb1558 = r.CheckBreak() + yyb1588 = r.CheckBreak() } - if yyb1558 { + if yyb1588 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21472,13 +21912,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.WorkingDir = string(r.DecodeString()) } - yyj1558++ - if yyhl1558 { - yyb1558 = yyj1558 > l + yyj1588++ + if yyhl1588 { + yyb1588 = yyj1588 > l } else { - yyb1558 = r.CheckBreak() + yyb1588 = r.CheckBreak() } - if yyb1558 { + if yyb1588 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21486,21 +21926,43 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1566 := &x.Ports - yym1567 := z.DecBinary() - _ = yym1567 + yyv1596 := &x.Ports + yym1597 := z.DecBinary() + _ = yym1597 if false { } else { - h.decSliceContainerPort((*[]ContainerPort)(yyv1566), d) + h.decSliceContainerPort((*[]ContainerPort)(yyv1596), d) } } - yyj1558++ - if yyhl1558 { - yyb1558 = yyj1558 > l + yyj1588++ + if yyhl1588 { + yyb1588 = yyj1588 > l } else { - yyb1558 = r.CheckBreak() + yyb1588 = r.CheckBreak() } - if yyb1558 { + if yyb1588 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.EnvFrom = nil + } else { + yyv1598 := &x.EnvFrom + yym1599 := z.DecBinary() + _ = yym1599 + if false { + } else { + h.decSliceEnvFromSource((*[]EnvFromSource)(yyv1598), d) + } + } + yyj1588++ + if yyhl1588 { + yyb1588 = yyj1588 > l + } else { + yyb1588 = r.CheckBreak() + } + if yyb1588 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21508,21 +21970,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Env = nil } else { - yyv1568 := &x.Env - yym1569 := z.DecBinary() - _ = yym1569 + yyv1600 := &x.Env + yym1601 := z.DecBinary() + _ = yym1601 if false { } else { - h.decSliceEnvVar((*[]EnvVar)(yyv1568), d) + h.decSliceEnvVar((*[]EnvVar)(yyv1600), d) } } - yyj1558++ - if yyhl1558 { - yyb1558 = yyj1558 > l + yyj1588++ + if yyhl1588 { + yyb1588 = yyj1588 > l } else { - yyb1558 = r.CheckBreak() + yyb1588 = r.CheckBreak() } - if yyb1558 { + if yyb1588 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21530,16 +21992,16 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv1570 := &x.Resources - yyv1570.CodecDecodeSelf(d) + yyv1602 := &x.Resources + yyv1602.CodecDecodeSelf(d) } - yyj1558++ - if yyhl1558 { - yyb1558 = yyj1558 > l + yyj1588++ + if yyhl1588 { + yyb1588 = yyj1588 > l } else { - yyb1558 = r.CheckBreak() + yyb1588 = r.CheckBreak() } - if yyb1558 { + if yyb1588 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21547,21 +22009,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumeMounts = nil } else { - yyv1571 := &x.VolumeMounts - yym1572 := z.DecBinary() - _ = yym1572 + yyv1603 := &x.VolumeMounts + yym1604 := z.DecBinary() + _ = yym1604 if false { } else { - h.decSliceVolumeMount((*[]VolumeMount)(yyv1571), d) + h.decSliceVolumeMount((*[]VolumeMount)(yyv1603), d) } } - yyj1558++ - if yyhl1558 { - yyb1558 = yyj1558 > l + yyj1588++ + if yyhl1588 { + yyb1588 = yyj1588 > l } else { - yyb1558 = r.CheckBreak() + yyb1588 = r.CheckBreak() } - if yyb1558 { + if yyb1588 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21576,13 +22038,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.LivenessProbe.CodecDecodeSelf(d) } - yyj1558++ - if yyhl1558 { - yyb1558 = yyj1558 > l + yyj1588++ + if yyhl1588 { + yyb1588 = yyj1588 > l } else { - yyb1558 = r.CheckBreak() + yyb1588 = r.CheckBreak() } - if yyb1558 { + if yyb1588 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21597,13 +22059,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.ReadinessProbe.CodecDecodeSelf(d) } - yyj1558++ - if yyhl1558 { - yyb1558 = yyj1558 > l + yyj1588++ + if yyhl1588 { + yyb1588 = yyj1588 > l } else { - yyb1558 = r.CheckBreak() + yyb1588 = r.CheckBreak() } - if yyb1558 { + if yyb1588 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21618,13 +22080,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Lifecycle.CodecDecodeSelf(d) } - yyj1558++ - if yyhl1558 { - yyb1558 = yyj1558 > l + yyj1588++ + if yyhl1588 { + yyb1588 = yyj1588 > l } else { - yyb1558 = r.CheckBreak() + yyb1588 = r.CheckBreak() } - if yyb1558 { + if yyb1588 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21634,13 +22096,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TerminationMessagePath = string(r.DecodeString()) } - yyj1558++ - if yyhl1558 { - yyb1558 = yyj1558 > l + yyj1588++ + if yyhl1588 { + yyb1588 = yyj1588 > l } else { - yyb1558 = r.CheckBreak() + yyb1588 = r.CheckBreak() } - if yyb1558 { + if yyb1588 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21650,13 +22112,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ImagePullPolicy = PullPolicy(r.DecodeString()) } - yyj1558++ - if yyhl1558 { - yyb1558 = yyj1558 > l + yyj1588++ + if yyhl1588 { + yyb1588 = yyj1588 > l } else { - yyb1558 = r.CheckBreak() + yyb1588 = r.CheckBreak() } - if yyb1558 { + if yyb1588 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21671,13 +22133,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.SecurityContext.CodecDecodeSelf(d) } - yyj1558++ - if yyhl1558 { - yyb1558 = yyj1558 > l + yyj1588++ + if yyhl1588 { + yyb1588 = yyj1588 > l } else { - yyb1558 = r.CheckBreak() + yyb1588 = r.CheckBreak() } - if yyb1558 { + if yyb1588 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21687,13 +22149,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj1558++ - if yyhl1558 { - yyb1558 = yyj1558 > l + yyj1588++ + if yyhl1588 { + yyb1588 = yyj1588 > l } else { - yyb1558 = r.CheckBreak() + yyb1588 = r.CheckBreak() } - if yyb1558 { + if yyb1588 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21703,13 +22165,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.StdinOnce = bool(r.DecodeBool()) } - yyj1558++ - if yyhl1558 { - yyb1558 = yyj1558 > l + yyj1588++ + if yyhl1588 { + yyb1588 = yyj1588 > l } else { - yyb1558 = r.CheckBreak() + yyb1588 = r.CheckBreak() } - if yyb1558 { + if yyb1588 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21720,17 +22182,17 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.TTY = bool(r.DecodeBool()) } for { - yyj1558++ - if yyhl1558 { - yyb1558 = yyj1558 > l + yyj1588++ + if yyhl1588 { + yyb1588 = yyj1588 > l } else { - yyb1558 = r.CheckBreak() + yyb1588 = r.CheckBreak() } - if yyb1558 { + if yyb1588 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1558-1, "") + z.DecStructFieldNotFound(yyj1588-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21742,35 +22204,35 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1582 := z.EncBinary() - _ = yym1582 + yym1614 := z.EncBinary() + _ = yym1614 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1583 := !z.EncBinary() - yy2arr1583 := z.EncBasicHandle().StructToArray - var yyq1583 [3]bool - _, _, _ = yysep1583, yyq1583, yy2arr1583 - const yyr1583 bool = false - yyq1583[0] = x.Exec != nil - yyq1583[1] = x.HTTPGet != nil - yyq1583[2] = x.TCPSocket != nil - var yynn1583 int - if yyr1583 || yy2arr1583 { + yysep1615 := !z.EncBinary() + yy2arr1615 := z.EncBasicHandle().StructToArray + var yyq1615 [3]bool + _, _, _ = yysep1615, yyq1615, yy2arr1615 + const yyr1615 bool = false + yyq1615[0] = x.Exec != nil + yyq1615[1] = x.HTTPGet != nil + yyq1615[2] = x.TCPSocket != nil + var yynn1615 int + if yyr1615 || yy2arr1615 { r.EncodeArrayStart(3) } else { - yynn1583 = 0 - for _, b := range yyq1583 { + yynn1615 = 0 + for _, b := range yyq1615 { if b { - yynn1583++ + yynn1615++ } } - r.EncodeMapStart(yynn1583) - yynn1583 = 0 + r.EncodeMapStart(yynn1615) + yynn1615 = 0 } - if yyr1583 || yy2arr1583 { + if yyr1615 || yy2arr1615 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1583[0] { + if yyq1615[0] { if x.Exec == nil { r.EncodeNil() } else { @@ -21780,7 +22242,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1583[0] { + if yyq1615[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -21791,9 +22253,9 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1583 || yy2arr1583 { + if yyr1615 || yy2arr1615 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1583[1] { + if yyq1615[1] { if x.HTTPGet == nil { r.EncodeNil() } else { @@ -21803,7 +22265,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1583[1] { + if yyq1615[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("httpGet")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -21814,9 +22276,9 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1583 || yy2arr1583 { + if yyr1615 || yy2arr1615 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1583[2] { + if yyq1615[2] { if x.TCPSocket == nil { r.EncodeNil() } else { @@ -21826,7 +22288,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1583[2] { + if yyq1615[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tcpSocket")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -21837,7 +22299,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1583 || yy2arr1583 { + if yyr1615 || yy2arr1615 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21850,25 +22312,25 @@ func (x *Handler) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1587 := z.DecBinary() - _ = yym1587 + yym1619 := z.DecBinary() + _ = yym1619 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1588 := r.ContainerType() - if yyct1588 == codecSelferValueTypeMap1234 { - yyl1588 := r.ReadMapStart() - if yyl1588 == 0 { + yyct1620 := r.ContainerType() + if yyct1620 == codecSelferValueTypeMap1234 { + yyl1620 := r.ReadMapStart() + if yyl1620 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1588, d) + x.codecDecodeSelfFromMap(yyl1620, d) } - } else if yyct1588 == codecSelferValueTypeArray1234 { - yyl1588 := r.ReadArrayStart() - if yyl1588 == 0 { + } else if yyct1620 == codecSelferValueTypeArray1234 { + yyl1620 := r.ReadArrayStart() + if yyl1620 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1588, d) + x.codecDecodeSelfFromArray(yyl1620, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21880,12 +22342,12 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1589Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1589Slc - var yyhl1589 bool = l >= 0 - for yyj1589 := 0; ; yyj1589++ { - if yyhl1589 { - if yyj1589 >= l { + var yys1621Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1621Slc + var yyhl1621 bool = l >= 0 + for yyj1621 := 0; ; yyj1621++ { + if yyhl1621 { + if yyj1621 >= l { break } } else { @@ -21894,10 +22356,10 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1589Slc = r.DecodeBytes(yys1589Slc, true, true) - yys1589 := string(yys1589Slc) + yys1621Slc = r.DecodeBytes(yys1621Slc, true, true) + yys1621 := string(yys1621Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1589 { + switch yys1621 { case "exec": if r.TryDecodeAsNil() { if x.Exec != nil { @@ -21932,9 +22394,9 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TCPSocket.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1589) - } // end switch yys1589 - } // end for yyj1589 + z.DecStructFieldNotFound(-1, yys1621) + } // end switch yys1621 + } // end for yyj1621 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21942,16 +22404,16 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1593 int - var yyb1593 bool - var yyhl1593 bool = l >= 0 - yyj1593++ - if yyhl1593 { - yyb1593 = yyj1593 > l + var yyj1625 int + var yyb1625 bool + var yyhl1625 bool = l >= 0 + yyj1625++ + if yyhl1625 { + yyb1625 = yyj1625 > l } else { - yyb1593 = r.CheckBreak() + yyb1625 = r.CheckBreak() } - if yyb1593 { + if yyb1625 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21966,13 +22428,13 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Exec.CodecDecodeSelf(d) } - yyj1593++ - if yyhl1593 { - yyb1593 = yyj1593 > l + yyj1625++ + if yyhl1625 { + yyb1625 = yyj1625 > l } else { - yyb1593 = r.CheckBreak() + yyb1625 = r.CheckBreak() } - if yyb1593 { + if yyb1625 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21987,13 +22449,13 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.HTTPGet.CodecDecodeSelf(d) } - yyj1593++ - if yyhl1593 { - yyb1593 = yyj1593 > l + yyj1625++ + if yyhl1625 { + yyb1625 = yyj1625 > l } else { - yyb1593 = r.CheckBreak() + yyb1625 = r.CheckBreak() } - if yyb1593 { + if yyb1625 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22009,17 +22471,17 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.TCPSocket.CodecDecodeSelf(d) } for { - yyj1593++ - if yyhl1593 { - yyb1593 = yyj1593 > l + yyj1625++ + if yyhl1625 { + yyb1625 = yyj1625 > l } else { - yyb1593 = r.CheckBreak() + yyb1625 = r.CheckBreak() } - if yyb1593 { + if yyb1625 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1593-1, "") + z.DecStructFieldNotFound(yyj1625-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22031,34 +22493,34 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1597 := z.EncBinary() - _ = yym1597 + yym1629 := z.EncBinary() + _ = yym1629 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1598 := !z.EncBinary() - yy2arr1598 := z.EncBasicHandle().StructToArray - var yyq1598 [2]bool - _, _, _ = yysep1598, yyq1598, yy2arr1598 - const yyr1598 bool = false - yyq1598[0] = x.PostStart != nil - yyq1598[1] = x.PreStop != nil - var yynn1598 int - if yyr1598 || yy2arr1598 { + yysep1630 := !z.EncBinary() + yy2arr1630 := z.EncBasicHandle().StructToArray + var yyq1630 [2]bool + _, _, _ = yysep1630, yyq1630, yy2arr1630 + const yyr1630 bool = false + yyq1630[0] = x.PostStart != nil + yyq1630[1] = x.PreStop != nil + var yynn1630 int + if yyr1630 || yy2arr1630 { r.EncodeArrayStart(2) } else { - yynn1598 = 0 - for _, b := range yyq1598 { + yynn1630 = 0 + for _, b := range yyq1630 { if b { - yynn1598++ + yynn1630++ } } - r.EncodeMapStart(yynn1598) - yynn1598 = 0 + r.EncodeMapStart(yynn1630) + yynn1630 = 0 } - if yyr1598 || yy2arr1598 { + if yyr1630 || yy2arr1630 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1598[0] { + if yyq1630[0] { if x.PostStart == nil { r.EncodeNil() } else { @@ -22068,7 +22530,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1598[0] { + if yyq1630[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("postStart")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -22079,9 +22541,9 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1598 || yy2arr1598 { + if yyr1630 || yy2arr1630 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1598[1] { + if yyq1630[1] { if x.PreStop == nil { r.EncodeNil() } else { @@ -22091,7 +22553,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1598[1] { + if yyq1630[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preStop")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -22102,7 +22564,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1598 || yy2arr1598 { + if yyr1630 || yy2arr1630 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22115,25 +22577,25 @@ func (x *Lifecycle) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1601 := z.DecBinary() - _ = yym1601 + yym1633 := z.DecBinary() + _ = yym1633 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1602 := r.ContainerType() - if yyct1602 == codecSelferValueTypeMap1234 { - yyl1602 := r.ReadMapStart() - if yyl1602 == 0 { + yyct1634 := r.ContainerType() + if yyct1634 == codecSelferValueTypeMap1234 { + yyl1634 := r.ReadMapStart() + if yyl1634 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1602, d) + x.codecDecodeSelfFromMap(yyl1634, d) } - } else if yyct1602 == codecSelferValueTypeArray1234 { - yyl1602 := r.ReadArrayStart() - if yyl1602 == 0 { + } else if yyct1634 == codecSelferValueTypeArray1234 { + yyl1634 := r.ReadArrayStart() + if yyl1634 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1602, d) + x.codecDecodeSelfFromArray(yyl1634, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22145,12 +22607,12 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1603Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1603Slc - var yyhl1603 bool = l >= 0 - for yyj1603 := 0; ; yyj1603++ { - if yyhl1603 { - if yyj1603 >= l { + var yys1635Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1635Slc + var yyhl1635 bool = l >= 0 + for yyj1635 := 0; ; yyj1635++ { + if yyhl1635 { + if yyj1635 >= l { break } } else { @@ -22159,10 +22621,10 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1603Slc = r.DecodeBytes(yys1603Slc, true, true) - yys1603 := string(yys1603Slc) + yys1635Slc = r.DecodeBytes(yys1635Slc, true, true) + yys1635 := string(yys1635Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1603 { + switch yys1635 { case "postStart": if r.TryDecodeAsNil() { if x.PostStart != nil { @@ -22186,9 +22648,9 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.PreStop.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1603) - } // end switch yys1603 - } // end for yyj1603 + z.DecStructFieldNotFound(-1, yys1635) + } // end switch yys1635 + } // end for yyj1635 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -22196,16 +22658,16 @@ func (x *Lifecycle) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1606 int - var yyb1606 bool - var yyhl1606 bool = l >= 0 - yyj1606++ - if yyhl1606 { - yyb1606 = yyj1606 > l + var yyj1638 int + var yyb1638 bool + var yyhl1638 bool = l >= 0 + yyj1638++ + if yyhl1638 { + yyb1638 = yyj1638 > l } else { - yyb1606 = r.CheckBreak() + yyb1638 = r.CheckBreak() } - if yyb1606 { + if yyb1638 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22220,13 +22682,13 @@ func (x *Lifecycle) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.PostStart.CodecDecodeSelf(d) } - yyj1606++ - if yyhl1606 { - yyb1606 = yyj1606 > l + yyj1638++ + if yyhl1638 { + yyb1638 = yyj1638 > l } else { - yyb1606 = r.CheckBreak() + yyb1638 = r.CheckBreak() } - if yyb1606 { + if yyb1638 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22242,17 +22704,17 @@ func (x *Lifecycle) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.PreStop.CodecDecodeSelf(d) } for { - yyj1606++ - if yyhl1606 { - yyb1606 = yyj1606 > l + yyj1638++ + if yyhl1638 { + yyb1638 = yyj1638 > l } else { - yyb1606 = r.CheckBreak() + yyb1638 = r.CheckBreak() } - if yyb1606 { + if yyb1638 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1606-1, "") + z.DecStructFieldNotFound(yyj1638-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22261,8 +22723,8 @@ func (x ConditionStatus) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1609 := z.EncBinary() - _ = yym1609 + yym1641 := z.EncBinary() + _ = yym1641 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -22274,8 +22736,8 @@ func (x *ConditionStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1610 := z.DecBinary() - _ = yym1610 + yym1642 := z.DecBinary() + _ = yym1642 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -22290,36 +22752,36 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1611 := z.EncBinary() - _ = yym1611 + yym1643 := z.EncBinary() + _ = yym1643 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1612 := !z.EncBinary() - yy2arr1612 := z.EncBasicHandle().StructToArray - var yyq1612 [2]bool - _, _, _ = yysep1612, yyq1612, yy2arr1612 - const yyr1612 bool = false - yyq1612[0] = x.Reason != "" - yyq1612[1] = x.Message != "" - var yynn1612 int - if yyr1612 || yy2arr1612 { + yysep1644 := !z.EncBinary() + yy2arr1644 := z.EncBasicHandle().StructToArray + var yyq1644 [2]bool + _, _, _ = yysep1644, yyq1644, yy2arr1644 + const yyr1644 bool = false + yyq1644[0] = x.Reason != "" + yyq1644[1] = x.Message != "" + var yynn1644 int + if yyr1644 || yy2arr1644 { r.EncodeArrayStart(2) } else { - yynn1612 = 0 - for _, b := range yyq1612 { + yynn1644 = 0 + for _, b := range yyq1644 { if b { - yynn1612++ + yynn1644++ } } - r.EncodeMapStart(yynn1612) - yynn1612 = 0 + r.EncodeMapStart(yynn1644) + yynn1644 = 0 } - if yyr1612 || yy2arr1612 { + if yyr1644 || yy2arr1644 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1612[0] { - yym1614 := z.EncBinary() - _ = yym1614 + if yyq1644[0] { + yym1646 := z.EncBinary() + _ = yym1646 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -22328,23 +22790,23 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1612[0] { + if yyq1644[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1615 := z.EncBinary() - _ = yym1615 + yym1647 := z.EncBinary() + _ = yym1647 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1612 || yy2arr1612 { + if yyr1644 || yy2arr1644 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1612[1] { - yym1617 := z.EncBinary() - _ = yym1617 + if yyq1644[1] { + yym1649 := z.EncBinary() + _ = yym1649 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -22353,19 +22815,19 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1612[1] { + if yyq1644[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1618 := z.EncBinary() - _ = yym1618 + yym1650 := z.EncBinary() + _ = yym1650 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1612 || yy2arr1612 { + if yyr1644 || yy2arr1644 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22378,25 +22840,25 @@ func (x *ContainerStateWaiting) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1619 := z.DecBinary() - _ = yym1619 + yym1651 := z.DecBinary() + _ = yym1651 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1620 := r.ContainerType() - if yyct1620 == codecSelferValueTypeMap1234 { - yyl1620 := r.ReadMapStart() - if yyl1620 == 0 { + yyct1652 := r.ContainerType() + if yyct1652 == codecSelferValueTypeMap1234 { + yyl1652 := r.ReadMapStart() + if yyl1652 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1620, d) + x.codecDecodeSelfFromMap(yyl1652, d) } - } else if yyct1620 == codecSelferValueTypeArray1234 { - yyl1620 := r.ReadArrayStart() - if yyl1620 == 0 { + } else if yyct1652 == codecSelferValueTypeArray1234 { + yyl1652 := r.ReadArrayStart() + if yyl1652 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1620, d) + x.codecDecodeSelfFromArray(yyl1652, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22408,12 +22870,12 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1621Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1621Slc - var yyhl1621 bool = l >= 0 - for yyj1621 := 0; ; yyj1621++ { - if yyhl1621 { - if yyj1621 >= l { + var yys1653Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1653Slc + var yyhl1653 bool = l >= 0 + for yyj1653 := 0; ; yyj1653++ { + if yyhl1653 { + if yyj1653 >= l { break } } else { @@ -22422,10 +22884,10 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1621Slc = r.DecodeBytes(yys1621Slc, true, true) - yys1621 := string(yys1621Slc) + yys1653Slc = r.DecodeBytes(yys1653Slc, true, true) + yys1653 := string(yys1653Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1621 { + switch yys1653 { case "reason": if r.TryDecodeAsNil() { x.Reason = "" @@ -22439,9 +22901,9 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1621) - } // end switch yys1621 - } // end for yyj1621 + z.DecStructFieldNotFound(-1, yys1653) + } // end switch yys1653 + } // end for yyj1653 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -22449,16 +22911,16 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1624 int - var yyb1624 bool - var yyhl1624 bool = l >= 0 - yyj1624++ - if yyhl1624 { - yyb1624 = yyj1624 > l + var yyj1656 int + var yyb1656 bool + var yyhl1656 bool = l >= 0 + yyj1656++ + if yyhl1656 { + yyb1656 = yyj1656 > l } else { - yyb1624 = r.CheckBreak() + yyb1656 = r.CheckBreak() } - if yyb1624 { + if yyb1656 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22468,13 +22930,13 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Reason = string(r.DecodeString()) } - yyj1624++ - if yyhl1624 { - yyb1624 = yyj1624 > l + yyj1656++ + if yyhl1656 { + yyb1656 = yyj1656 > l } else { - yyb1624 = r.CheckBreak() + yyb1656 = r.CheckBreak() } - if yyb1624 { + if yyb1656 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22485,17 +22947,17 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec x.Message = string(r.DecodeString()) } for { - yyj1624++ - if yyhl1624 { - yyb1624 = yyj1624 > l + yyj1656++ + if yyhl1656 { + yyb1656 = yyj1656 > l } else { - yyb1624 = r.CheckBreak() + yyb1656 = r.CheckBreak() } - if yyb1624 { + if yyb1656 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1624-1, "") + z.DecStructFieldNotFound(yyj1656-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22507,373 +22969,34 @@ func (x *ContainerStateRunning) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1627 := z.EncBinary() - _ = yym1627 + yym1659 := z.EncBinary() + _ = yym1659 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1628 := !z.EncBinary() - yy2arr1628 := z.EncBasicHandle().StructToArray - var yyq1628 [1]bool - _, _, _ = yysep1628, yyq1628, yy2arr1628 - const yyr1628 bool = false - yyq1628[0] = true - var yynn1628 int - if yyr1628 || yy2arr1628 { + yysep1660 := !z.EncBinary() + yy2arr1660 := z.EncBasicHandle().StructToArray + var yyq1660 [1]bool + _, _, _ = yysep1660, yyq1660, yy2arr1660 + const yyr1660 bool = false + yyq1660[0] = true + var yynn1660 int + if yyr1660 || yy2arr1660 { r.EncodeArrayStart(1) } else { - yynn1628 = 0 - for _, b := range yyq1628 { + yynn1660 = 0 + for _, b := range yyq1660 { if b { - yynn1628++ + yynn1660++ } } - r.EncodeMapStart(yynn1628) - yynn1628 = 0 + r.EncodeMapStart(yynn1660) + yynn1660 = 0 } - if yyr1628 || yy2arr1628 { + if yyr1660 || yy2arr1660 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1628[0] { - yy1630 := &x.StartedAt - yym1631 := z.EncBinary() - _ = yym1631 - if false { - } else if z.HasExtensions() && z.EncExt(yy1630) { - } else if yym1631 { - z.EncBinaryMarshal(yy1630) - } else if !yym1631 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1630) - } else { - z.EncFallback(yy1630) - } - } else { - r.EncodeNil() - } - } else { - if yyq1628[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("startedAt")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1632 := &x.StartedAt - yym1633 := z.EncBinary() - _ = yym1633 - if false { - } else if z.HasExtensions() && z.EncExt(yy1632) { - } else if yym1633 { - z.EncBinaryMarshal(yy1632) - } else if !yym1633 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1632) - } else { - z.EncFallback(yy1632) - } - } - } - if yyr1628 || yy2arr1628 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *ContainerStateRunning) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym1634 := z.DecBinary() - _ = yym1634 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct1635 := r.ContainerType() - if yyct1635 == codecSelferValueTypeMap1234 { - yyl1635 := r.ReadMapStart() - if yyl1635 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl1635, d) - } - } else if yyct1635 == codecSelferValueTypeArray1234 { - yyl1635 := r.ReadArrayStart() - if yyl1635 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl1635, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *ContainerStateRunning) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys1636Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1636Slc - var yyhl1636 bool = l >= 0 - for yyj1636 := 0; ; yyj1636++ { - if yyhl1636 { - if yyj1636 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1636Slc = r.DecodeBytes(yys1636Slc, true, true) - yys1636 := string(yys1636Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1636 { - case "startedAt": - if r.TryDecodeAsNil() { - x.StartedAt = pkg2_v1.Time{} - } else { - yyv1637 := &x.StartedAt - yym1638 := z.DecBinary() - _ = yym1638 - if false { - } else if z.HasExtensions() && z.DecExt(yyv1637) { - } else if yym1638 { - z.DecBinaryUnmarshal(yyv1637) - } else if !yym1638 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1637) - } else { - z.DecFallback(yyv1637, false) - } - } - default: - z.DecStructFieldNotFound(-1, yys1636) - } // end switch yys1636 - } // end for yyj1636 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *ContainerStateRunning) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj1639 int - var yyb1639 bool - var yyhl1639 bool = l >= 0 - yyj1639++ - if yyhl1639 { - yyb1639 = yyj1639 > l - } else { - yyb1639 = r.CheckBreak() - } - if yyb1639 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.StartedAt = pkg2_v1.Time{} - } else { - yyv1640 := &x.StartedAt - yym1641 := z.DecBinary() - _ = yym1641 - if false { - } else if z.HasExtensions() && z.DecExt(yyv1640) { - } else if yym1641 { - z.DecBinaryUnmarshal(yyv1640) - } else if !yym1641 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1640) - } else { - z.DecFallback(yyv1640, false) - } - } - for { - yyj1639++ - if yyhl1639 { - yyb1639 = yyj1639 > l - } else { - yyb1639 = r.CheckBreak() - } - if yyb1639 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1639-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym1642 := z.EncBinary() - _ = yym1642 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep1643 := !z.EncBinary() - yy2arr1643 := z.EncBasicHandle().StructToArray - var yyq1643 [7]bool - _, _, _ = yysep1643, yyq1643, yy2arr1643 - const yyr1643 bool = false - yyq1643[1] = x.Signal != 0 - yyq1643[2] = x.Reason != "" - yyq1643[3] = x.Message != "" - yyq1643[4] = true - yyq1643[5] = true - yyq1643[6] = x.ContainerID != "" - var yynn1643 int - if yyr1643 || yy2arr1643 { - r.EncodeArrayStart(7) - } else { - yynn1643 = 1 - for _, b := range yyq1643 { - if b { - yynn1643++ - } - } - r.EncodeMapStart(yynn1643) - yynn1643 = 0 - } - if yyr1643 || yy2arr1643 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1645 := z.EncBinary() - _ = yym1645 - if false { - } else { - r.EncodeInt(int64(x.ExitCode)) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("exitCode")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1646 := z.EncBinary() - _ = yym1646 - if false { - } else { - r.EncodeInt(int64(x.ExitCode)) - } - } - if yyr1643 || yy2arr1643 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1643[1] { - yym1648 := z.EncBinary() - _ = yym1648 - if false { - } else { - r.EncodeInt(int64(x.Signal)) - } - } else { - r.EncodeInt(0) - } - } else { - if yyq1643[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("signal")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1649 := z.EncBinary() - _ = yym1649 - if false { - } else { - r.EncodeInt(int64(x.Signal)) - } - } - } - if yyr1643 || yy2arr1643 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1643[2] { - yym1651 := z.EncBinary() - _ = yym1651 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq1643[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("reason")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1652 := z.EncBinary() - _ = yym1652 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) - } - } - } - if yyr1643 || yy2arr1643 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1643[3] { - yym1654 := z.EncBinary() - _ = yym1654 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Message)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq1643[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("message")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1655 := z.EncBinary() - _ = yym1655 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Message)) - } - } - } - if yyr1643 || yy2arr1643 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1643[4] { - yy1657 := &x.StartedAt - yym1658 := z.EncBinary() - _ = yym1658 - if false { - } else if z.HasExtensions() && z.EncExt(yy1657) { - } else if yym1658 { - z.EncBinaryMarshal(yy1657) - } else if !yym1658 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1657) - } else { - z.EncFallback(yy1657) - } - } else { - r.EncodeNil() - } - } else { - if yyq1643[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("startedAt")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1659 := &x.StartedAt - yym1660 := z.EncBinary() - _ = yym1660 - if false { - } else if z.HasExtensions() && z.EncExt(yy1659) { - } else if yym1660 { - z.EncBinaryMarshal(yy1659) - } else if !yym1660 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1659) - } else { - z.EncFallback(yy1659) - } - } - } - if yyr1643 || yy2arr1643 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1643[5] { - yy1662 := &x.FinishedAt + if yyq1660[0] { + yy1662 := &x.StartedAt yym1663 := z.EncBinary() _ = yym1663 if false { @@ -22889,11 +23012,11 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1643[5] { + if yyq1660[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("finishedAt")) + r.EncodeString(codecSelferC_UTF81234, string("startedAt")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1664 := &x.FinishedAt + yy1664 := &x.StartedAt yym1665 := z.EncBinary() _ = yym1665 if false { @@ -22907,11 +23030,350 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1643 || yy2arr1643 { + if yyr1660 || yy2arr1660 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *ContainerStateRunning) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1666 := z.DecBinary() + _ = yym1666 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct1667 := r.ContainerType() + if yyct1667 == codecSelferValueTypeMap1234 { + yyl1667 := r.ReadMapStart() + if yyl1667 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl1667, d) + } + } else if yyct1667 == codecSelferValueTypeArray1234 { + yyl1667 := r.ReadArrayStart() + if yyl1667 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl1667, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *ContainerStateRunning) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys1668Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1668Slc + var yyhl1668 bool = l >= 0 + for yyj1668 := 0; ; yyj1668++ { + if yyhl1668 { + if yyj1668 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys1668Slc = r.DecodeBytes(yys1668Slc, true, true) + yys1668 := string(yys1668Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys1668 { + case "startedAt": + if r.TryDecodeAsNil() { + x.StartedAt = pkg2_v1.Time{} + } else { + yyv1669 := &x.StartedAt + yym1670 := z.DecBinary() + _ = yym1670 + if false { + } else if z.HasExtensions() && z.DecExt(yyv1669) { + } else if yym1670 { + z.DecBinaryUnmarshal(yyv1669) + } else if !yym1670 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1669) + } else { + z.DecFallback(yyv1669, false) + } + } + default: + z.DecStructFieldNotFound(-1, yys1668) + } // end switch yys1668 + } // end for yyj1668 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *ContainerStateRunning) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj1671 int + var yyb1671 bool + var yyhl1671 bool = l >= 0 + yyj1671++ + if yyhl1671 { + yyb1671 = yyj1671 > l + } else { + yyb1671 = r.CheckBreak() + } + if yyb1671 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.StartedAt = pkg2_v1.Time{} + } else { + yyv1672 := &x.StartedAt + yym1673 := z.DecBinary() + _ = yym1673 + if false { + } else if z.HasExtensions() && z.DecExt(yyv1672) { + } else if yym1673 { + z.DecBinaryUnmarshal(yyv1672) + } else if !yym1673 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1672) + } else { + z.DecFallback(yyv1672, false) + } + } + for { + yyj1671++ + if yyhl1671 { + yyb1671 = yyj1671 > l + } else { + yyb1671 = r.CheckBreak() + } + if yyb1671 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj1671-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym1674 := z.EncBinary() + _ = yym1674 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep1675 := !z.EncBinary() + yy2arr1675 := z.EncBasicHandle().StructToArray + var yyq1675 [7]bool + _, _, _ = yysep1675, yyq1675, yy2arr1675 + const yyr1675 bool = false + yyq1675[1] = x.Signal != 0 + yyq1675[2] = x.Reason != "" + yyq1675[3] = x.Message != "" + yyq1675[4] = true + yyq1675[5] = true + yyq1675[6] = x.ContainerID != "" + var yynn1675 int + if yyr1675 || yy2arr1675 { + r.EncodeArrayStart(7) + } else { + yynn1675 = 1 + for _, b := range yyq1675 { + if b { + yynn1675++ + } + } + r.EncodeMapStart(yynn1675) + yynn1675 = 0 + } + if yyr1675 || yy2arr1675 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1643[6] { - yym1667 := z.EncBinary() - _ = yym1667 + yym1677 := z.EncBinary() + _ = yym1677 + if false { + } else { + r.EncodeInt(int64(x.ExitCode)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("exitCode")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1678 := z.EncBinary() + _ = yym1678 + if false { + } else { + r.EncodeInt(int64(x.ExitCode)) + } + } + if yyr1675 || yy2arr1675 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1675[1] { + yym1680 := z.EncBinary() + _ = yym1680 + if false { + } else { + r.EncodeInt(int64(x.Signal)) + } + } else { + r.EncodeInt(0) + } + } else { + if yyq1675[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("signal")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1681 := z.EncBinary() + _ = yym1681 + if false { + } else { + r.EncodeInt(int64(x.Signal)) + } + } + } + if yyr1675 || yy2arr1675 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1675[2] { + yym1683 := z.EncBinary() + _ = yym1683 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq1675[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("reason")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1684 := z.EncBinary() + _ = yym1684 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + } + } + } + if yyr1675 || yy2arr1675 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1675[3] { + yym1686 := z.EncBinary() + _ = yym1686 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq1675[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("message")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1687 := z.EncBinary() + _ = yym1687 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } + } + } + if yyr1675 || yy2arr1675 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1675[4] { + yy1689 := &x.StartedAt + yym1690 := z.EncBinary() + _ = yym1690 + if false { + } else if z.HasExtensions() && z.EncExt(yy1689) { + } else if yym1690 { + z.EncBinaryMarshal(yy1689) + } else if !yym1690 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1689) + } else { + z.EncFallback(yy1689) + } + } else { + r.EncodeNil() + } + } else { + if yyq1675[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("startedAt")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy1691 := &x.StartedAt + yym1692 := z.EncBinary() + _ = yym1692 + if false { + } else if z.HasExtensions() && z.EncExt(yy1691) { + } else if yym1692 { + z.EncBinaryMarshal(yy1691) + } else if !yym1692 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1691) + } else { + z.EncFallback(yy1691) + } + } + } + if yyr1675 || yy2arr1675 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1675[5] { + yy1694 := &x.FinishedAt + yym1695 := z.EncBinary() + _ = yym1695 + if false { + } else if z.HasExtensions() && z.EncExt(yy1694) { + } else if yym1695 { + z.EncBinaryMarshal(yy1694) + } else if !yym1695 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1694) + } else { + z.EncFallback(yy1694) + } + } else { + r.EncodeNil() + } + } else { + if yyq1675[5] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("finishedAt")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy1696 := &x.FinishedAt + yym1697 := z.EncBinary() + _ = yym1697 + if false { + } else if z.HasExtensions() && z.EncExt(yy1696) { + } else if yym1697 { + z.EncBinaryMarshal(yy1696) + } else if !yym1697 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1696) + } else { + z.EncFallback(yy1696) + } + } + } + if yyr1675 || yy2arr1675 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1675[6] { + yym1699 := z.EncBinary() + _ = yym1699 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) @@ -22920,19 +23382,19 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1643[6] { + if yyq1675[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1668 := z.EncBinary() - _ = yym1668 + yym1700 := z.EncBinary() + _ = yym1700 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) } } } - if yyr1643 || yy2arr1643 { + if yyr1675 || yy2arr1675 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22945,25 +23407,25 @@ func (x *ContainerStateTerminated) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1669 := z.DecBinary() - _ = yym1669 + yym1701 := z.DecBinary() + _ = yym1701 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1670 := r.ContainerType() - if yyct1670 == codecSelferValueTypeMap1234 { - yyl1670 := r.ReadMapStart() - if yyl1670 == 0 { + yyct1702 := r.ContainerType() + if yyct1702 == codecSelferValueTypeMap1234 { + yyl1702 := r.ReadMapStart() + if yyl1702 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1670, d) + x.codecDecodeSelfFromMap(yyl1702, d) } - } else if yyct1670 == codecSelferValueTypeArray1234 { - yyl1670 := r.ReadArrayStart() - if yyl1670 == 0 { + } else if yyct1702 == codecSelferValueTypeArray1234 { + yyl1702 := r.ReadArrayStart() + if yyl1702 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1670, d) + x.codecDecodeSelfFromArray(yyl1702, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22975,12 +23437,12 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1671Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1671Slc - var yyhl1671 bool = l >= 0 - for yyj1671 := 0; ; yyj1671++ { - if yyhl1671 { - if yyj1671 >= l { + var yys1703Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1703Slc + var yyhl1703 bool = l >= 0 + for yyj1703 := 0; ; yyj1703++ { + if yyhl1703 { + if yyj1703 >= l { break } } else { @@ -22989,10 +23451,10 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1671Slc = r.DecodeBytes(yys1671Slc, true, true) - yys1671 := string(yys1671Slc) + yys1703Slc = r.DecodeBytes(yys1703Slc, true, true) + yys1703 := string(yys1703Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1671 { + switch yys1703 { case "exitCode": if r.TryDecodeAsNil() { x.ExitCode = 0 @@ -23021,34 +23483,34 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De if r.TryDecodeAsNil() { x.StartedAt = pkg2_v1.Time{} } else { - yyv1676 := &x.StartedAt - yym1677 := z.DecBinary() - _ = yym1677 + yyv1708 := &x.StartedAt + yym1709 := z.DecBinary() + _ = yym1709 if false { - } else if z.HasExtensions() && z.DecExt(yyv1676) { - } else if yym1677 { - z.DecBinaryUnmarshal(yyv1676) - } else if !yym1677 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1676) + } else if z.HasExtensions() && z.DecExt(yyv1708) { + } else if yym1709 { + z.DecBinaryUnmarshal(yyv1708) + } else if !yym1709 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1708) } else { - z.DecFallback(yyv1676, false) + z.DecFallback(yyv1708, false) } } case "finishedAt": if r.TryDecodeAsNil() { x.FinishedAt = pkg2_v1.Time{} } else { - yyv1678 := &x.FinishedAt - yym1679 := z.DecBinary() - _ = yym1679 + yyv1710 := &x.FinishedAt + yym1711 := z.DecBinary() + _ = yym1711 if false { - } else if z.HasExtensions() && z.DecExt(yyv1678) { - } else if yym1679 { - z.DecBinaryUnmarshal(yyv1678) - } else if !yym1679 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1678) + } else if z.HasExtensions() && z.DecExt(yyv1710) { + } else if yym1711 { + z.DecBinaryUnmarshal(yyv1710) + } else if !yym1711 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1710) } else { - z.DecFallback(yyv1678, false) + z.DecFallback(yyv1710, false) } } case "containerID": @@ -23058,9 +23520,9 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De x.ContainerID = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1671) - } // end switch yys1671 - } // end for yyj1671 + z.DecStructFieldNotFound(-1, yys1703) + } // end switch yys1703 + } // end for yyj1703 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23068,16 +23530,16 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1681 int - var yyb1681 bool - var yyhl1681 bool = l >= 0 - yyj1681++ - if yyhl1681 { - yyb1681 = yyj1681 > l + var yyj1713 int + var yyb1713 bool + var yyhl1713 bool = l >= 0 + yyj1713++ + if yyhl1713 { + yyb1713 = yyj1713 > l } else { - yyb1681 = r.CheckBreak() + yyb1713 = r.CheckBreak() } - if yyb1681 { + if yyb1713 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23087,13 +23549,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.ExitCode = int32(r.DecodeInt(32)) } - yyj1681++ - if yyhl1681 { - yyb1681 = yyj1681 > l + yyj1713++ + if yyhl1713 { + yyb1713 = yyj1713 > l } else { - yyb1681 = r.CheckBreak() + yyb1713 = r.CheckBreak() } - if yyb1681 { + if yyb1713 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23103,13 +23565,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Signal = int32(r.DecodeInt(32)) } - yyj1681++ - if yyhl1681 { - yyb1681 = yyj1681 > l + yyj1713++ + if yyhl1713 { + yyb1713 = yyj1713 > l } else { - yyb1681 = r.CheckBreak() + yyb1713 = r.CheckBreak() } - if yyb1681 { + if yyb1713 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23119,13 +23581,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Reason = string(r.DecodeString()) } - yyj1681++ - if yyhl1681 { - yyb1681 = yyj1681 > l + yyj1713++ + if yyhl1713 { + yyb1713 = yyj1713 > l } else { - yyb1681 = r.CheckBreak() + yyb1713 = r.CheckBreak() } - if yyb1681 { + if yyb1713 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23135,13 +23597,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Message = string(r.DecodeString()) } - yyj1681++ - if yyhl1681 { - yyb1681 = yyj1681 > l + yyj1713++ + if yyhl1713 { + yyb1713 = yyj1713 > l } else { - yyb1681 = r.CheckBreak() + yyb1713 = r.CheckBreak() } - if yyb1681 { + if yyb1713 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23149,26 +23611,26 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. if r.TryDecodeAsNil() { x.StartedAt = pkg2_v1.Time{} } else { - yyv1686 := &x.StartedAt - yym1687 := z.DecBinary() - _ = yym1687 + yyv1718 := &x.StartedAt + yym1719 := z.DecBinary() + _ = yym1719 if false { - } else if z.HasExtensions() && z.DecExt(yyv1686) { - } else if yym1687 { - z.DecBinaryUnmarshal(yyv1686) - } else if !yym1687 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1686) + } else if z.HasExtensions() && z.DecExt(yyv1718) { + } else if yym1719 { + z.DecBinaryUnmarshal(yyv1718) + } else if !yym1719 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1718) } else { - z.DecFallback(yyv1686, false) + z.DecFallback(yyv1718, false) } } - yyj1681++ - if yyhl1681 { - yyb1681 = yyj1681 > l + yyj1713++ + if yyhl1713 { + yyb1713 = yyj1713 > l } else { - yyb1681 = r.CheckBreak() + yyb1713 = r.CheckBreak() } - if yyb1681 { + if yyb1713 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23176,26 +23638,26 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. if r.TryDecodeAsNil() { x.FinishedAt = pkg2_v1.Time{} } else { - yyv1688 := &x.FinishedAt - yym1689 := z.DecBinary() - _ = yym1689 + yyv1720 := &x.FinishedAt + yym1721 := z.DecBinary() + _ = yym1721 if false { - } else if z.HasExtensions() && z.DecExt(yyv1688) { - } else if yym1689 { - z.DecBinaryUnmarshal(yyv1688) - } else if !yym1689 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1688) + } else if z.HasExtensions() && z.DecExt(yyv1720) { + } else if yym1721 { + z.DecBinaryUnmarshal(yyv1720) + } else if !yym1721 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1720) } else { - z.DecFallback(yyv1688, false) + z.DecFallback(yyv1720, false) } } - yyj1681++ - if yyhl1681 { - yyb1681 = yyj1681 > l + yyj1713++ + if yyhl1713 { + yyb1713 = yyj1713 > l } else { - yyb1681 = r.CheckBreak() + yyb1713 = r.CheckBreak() } - if yyb1681 { + if yyb1713 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23206,17 +23668,17 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. x.ContainerID = string(r.DecodeString()) } for { - yyj1681++ - if yyhl1681 { - yyb1681 = yyj1681 > l + yyj1713++ + if yyhl1713 { + yyb1713 = yyj1713 > l } else { - yyb1681 = r.CheckBreak() + yyb1713 = r.CheckBreak() } - if yyb1681 { + if yyb1713 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1681-1, "") + z.DecStructFieldNotFound(yyj1713-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23228,35 +23690,35 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1691 := z.EncBinary() - _ = yym1691 + yym1723 := z.EncBinary() + _ = yym1723 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1692 := !z.EncBinary() - yy2arr1692 := z.EncBasicHandle().StructToArray - var yyq1692 [3]bool - _, _, _ = yysep1692, yyq1692, yy2arr1692 - const yyr1692 bool = false - yyq1692[0] = x.Waiting != nil - yyq1692[1] = x.Running != nil - yyq1692[2] = x.Terminated != nil - var yynn1692 int - if yyr1692 || yy2arr1692 { + yysep1724 := !z.EncBinary() + yy2arr1724 := z.EncBasicHandle().StructToArray + var yyq1724 [3]bool + _, _, _ = yysep1724, yyq1724, yy2arr1724 + const yyr1724 bool = false + yyq1724[0] = x.Waiting != nil + yyq1724[1] = x.Running != nil + yyq1724[2] = x.Terminated != nil + var yynn1724 int + if yyr1724 || yy2arr1724 { r.EncodeArrayStart(3) } else { - yynn1692 = 0 - for _, b := range yyq1692 { + yynn1724 = 0 + for _, b := range yyq1724 { if b { - yynn1692++ + yynn1724++ } } - r.EncodeMapStart(yynn1692) - yynn1692 = 0 + r.EncodeMapStart(yynn1724) + yynn1724 = 0 } - if yyr1692 || yy2arr1692 { + if yyr1724 || yy2arr1724 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1692[0] { + if yyq1724[0] { if x.Waiting == nil { r.EncodeNil() } else { @@ -23266,7 +23728,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1692[0] { + if yyq1724[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("waiting")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -23277,9 +23739,9 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1692 || yy2arr1692 { + if yyr1724 || yy2arr1724 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1692[1] { + if yyq1724[1] { if x.Running == nil { r.EncodeNil() } else { @@ -23289,7 +23751,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1692[1] { + if yyq1724[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("running")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -23300,9 +23762,9 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1692 || yy2arr1692 { + if yyr1724 || yy2arr1724 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1692[2] { + if yyq1724[2] { if x.Terminated == nil { r.EncodeNil() } else { @@ -23312,7 +23774,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1692[2] { + if yyq1724[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminated")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -23323,7 +23785,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1692 || yy2arr1692 { + if yyr1724 || yy2arr1724 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23336,25 +23798,25 @@ func (x *ContainerState) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1696 := z.DecBinary() - _ = yym1696 + yym1728 := z.DecBinary() + _ = yym1728 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1697 := r.ContainerType() - if yyct1697 == codecSelferValueTypeMap1234 { - yyl1697 := r.ReadMapStart() - if yyl1697 == 0 { + yyct1729 := r.ContainerType() + if yyct1729 == codecSelferValueTypeMap1234 { + yyl1729 := r.ReadMapStart() + if yyl1729 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1697, d) + x.codecDecodeSelfFromMap(yyl1729, d) } - } else if yyct1697 == codecSelferValueTypeArray1234 { - yyl1697 := r.ReadArrayStart() - if yyl1697 == 0 { + } else if yyct1729 == codecSelferValueTypeArray1234 { + yyl1729 := r.ReadArrayStart() + if yyl1729 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1697, d) + x.codecDecodeSelfFromArray(yyl1729, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23366,12 +23828,12 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1698Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1698Slc - var yyhl1698 bool = l >= 0 - for yyj1698 := 0; ; yyj1698++ { - if yyhl1698 { - if yyj1698 >= l { + var yys1730Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1730Slc + var yyhl1730 bool = l >= 0 + for yyj1730 := 0; ; yyj1730++ { + if yyhl1730 { + if yyj1730 >= l { break } } else { @@ -23380,10 +23842,10 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1698Slc = r.DecodeBytes(yys1698Slc, true, true) - yys1698 := string(yys1698Slc) + yys1730Slc = r.DecodeBytes(yys1730Slc, true, true) + yys1730 := string(yys1730Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1698 { + switch yys1730 { case "waiting": if r.TryDecodeAsNil() { if x.Waiting != nil { @@ -23418,9 +23880,9 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Terminated.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1698) - } // end switch yys1698 - } // end for yyj1698 + z.DecStructFieldNotFound(-1, yys1730) + } // end switch yys1730 + } // end for yyj1730 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23428,16 +23890,16 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1702 int - var yyb1702 bool - var yyhl1702 bool = l >= 0 - yyj1702++ - if yyhl1702 { - yyb1702 = yyj1702 > l + var yyj1734 int + var yyb1734 bool + var yyhl1734 bool = l >= 0 + yyj1734++ + if yyhl1734 { + yyb1734 = yyj1734 > l } else { - yyb1702 = r.CheckBreak() + yyb1734 = r.CheckBreak() } - if yyb1702 { + if yyb1734 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23452,13 +23914,13 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Waiting.CodecDecodeSelf(d) } - yyj1702++ - if yyhl1702 { - yyb1702 = yyj1702 > l + yyj1734++ + if yyhl1734 { + yyb1734 = yyj1734 > l } else { - yyb1702 = r.CheckBreak() + yyb1734 = r.CheckBreak() } - if yyb1702 { + if yyb1734 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23473,13 +23935,13 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Running.CodecDecodeSelf(d) } - yyj1702++ - if yyhl1702 { - yyb1702 = yyj1702 > l + yyj1734++ + if yyhl1734 { + yyb1734 = yyj1734 > l } else { - yyb1702 = r.CheckBreak() + yyb1734 = r.CheckBreak() } - if yyb1702 { + if yyb1734 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23495,17 +23957,17 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Terminated.CodecDecodeSelf(d) } for { - yyj1702++ - if yyhl1702 { - yyb1702 = yyj1702 > l + yyj1734++ + if yyhl1734 { + yyb1734 = yyj1734 > l } else { - yyb1702 = r.CheckBreak() + yyb1734 = r.CheckBreak() } - if yyb1702 { + if yyb1734 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1702-1, "") + z.DecStructFieldNotFound(yyj1734-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23517,36 +23979,36 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1706 := z.EncBinary() - _ = yym1706 + yym1738 := z.EncBinary() + _ = yym1738 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1707 := !z.EncBinary() - yy2arr1707 := z.EncBasicHandle().StructToArray - var yyq1707 [8]bool - _, _, _ = yysep1707, yyq1707, yy2arr1707 - const yyr1707 bool = false - yyq1707[1] = true - yyq1707[2] = true - yyq1707[7] = x.ContainerID != "" - var yynn1707 int - if yyr1707 || yy2arr1707 { + yysep1739 := !z.EncBinary() + yy2arr1739 := z.EncBasicHandle().StructToArray + var yyq1739 [8]bool + _, _, _ = yysep1739, yyq1739, yy2arr1739 + const yyr1739 bool = false + yyq1739[1] = true + yyq1739[2] = true + yyq1739[7] = x.ContainerID != "" + var yynn1739 int + if yyr1739 || yy2arr1739 { r.EncodeArrayStart(8) } else { - yynn1707 = 5 - for _, b := range yyq1707 { + yynn1739 = 5 + for _, b := range yyq1739 { if b { - yynn1707++ + yynn1739++ } } - r.EncodeMapStart(yynn1707) - yynn1707 = 0 + r.EncodeMapStart(yynn1739) + yynn1739 = 0 } - if yyr1707 || yy2arr1707 { + if yyr1739 || yy2arr1739 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1709 := z.EncBinary() - _ = yym1709 + yym1741 := z.EncBinary() + _ = yym1741 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -23555,51 +24017,51 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1710 := z.EncBinary() - _ = yym1710 + yym1742 := z.EncBinary() + _ = yym1742 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1707 || yy2arr1707 { + if yyr1739 || yy2arr1739 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1707[1] { - yy1712 := &x.State - yy1712.CodecEncodeSelf(e) + if yyq1739[1] { + yy1744 := &x.State + yy1744.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1707[1] { + if yyq1739[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("state")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1713 := &x.State - yy1713.CodecEncodeSelf(e) + yy1745 := &x.State + yy1745.CodecEncodeSelf(e) } } - if yyr1707 || yy2arr1707 { + if yyr1739 || yy2arr1739 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1707[2] { - yy1715 := &x.LastTerminationState - yy1715.CodecEncodeSelf(e) + if yyq1739[2] { + yy1747 := &x.LastTerminationState + yy1747.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1707[2] { + if yyq1739[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastState")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1716 := &x.LastTerminationState - yy1716.CodecEncodeSelf(e) + yy1748 := &x.LastTerminationState + yy1748.CodecEncodeSelf(e) } } - if yyr1707 || yy2arr1707 { + if yyr1739 || yy2arr1739 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1718 := z.EncBinary() - _ = yym1718 + yym1750 := z.EncBinary() + _ = yym1750 if false { } else { r.EncodeBool(bool(x.Ready)) @@ -23608,17 +24070,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ready")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1719 := z.EncBinary() - _ = yym1719 + yym1751 := z.EncBinary() + _ = yym1751 if false { } else { r.EncodeBool(bool(x.Ready)) } } - if yyr1707 || yy2arr1707 { + if yyr1739 || yy2arr1739 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1721 := z.EncBinary() - _ = yym1721 + yym1753 := z.EncBinary() + _ = yym1753 if false { } else { r.EncodeInt(int64(x.RestartCount)) @@ -23627,17 +24089,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("restartCount")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1722 := z.EncBinary() - _ = yym1722 + yym1754 := z.EncBinary() + _ = yym1754 if false { } else { r.EncodeInt(int64(x.RestartCount)) } } - if yyr1707 || yy2arr1707 { + if yyr1739 || yy2arr1739 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1724 := z.EncBinary() - _ = yym1724 + yym1756 := z.EncBinary() + _ = yym1756 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) @@ -23646,17 +24108,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("image")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1725 := z.EncBinary() - _ = yym1725 + yym1757 := z.EncBinary() + _ = yym1757 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) } } - if yyr1707 || yy2arr1707 { + if yyr1739 || yy2arr1739 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1727 := z.EncBinary() - _ = yym1727 + yym1759 := z.EncBinary() + _ = yym1759 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ImageID)) @@ -23665,18 +24127,18 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imageID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1728 := z.EncBinary() - _ = yym1728 + yym1760 := z.EncBinary() + _ = yym1760 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ImageID)) } } - if yyr1707 || yy2arr1707 { + if yyr1739 || yy2arr1739 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1707[7] { - yym1730 := z.EncBinary() - _ = yym1730 + if yyq1739[7] { + yym1762 := z.EncBinary() + _ = yym1762 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) @@ -23685,19 +24147,19 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1707[7] { + if yyq1739[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1731 := z.EncBinary() - _ = yym1731 + yym1763 := z.EncBinary() + _ = yym1763 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) } } } - if yyr1707 || yy2arr1707 { + if yyr1739 || yy2arr1739 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23710,25 +24172,25 @@ func (x *ContainerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1732 := z.DecBinary() - _ = yym1732 + yym1764 := z.DecBinary() + _ = yym1764 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1733 := r.ContainerType() - if yyct1733 == codecSelferValueTypeMap1234 { - yyl1733 := r.ReadMapStart() - if yyl1733 == 0 { + yyct1765 := r.ContainerType() + if yyct1765 == codecSelferValueTypeMap1234 { + yyl1765 := r.ReadMapStart() + if yyl1765 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1733, d) + x.codecDecodeSelfFromMap(yyl1765, d) } - } else if yyct1733 == codecSelferValueTypeArray1234 { - yyl1733 := r.ReadArrayStart() - if yyl1733 == 0 { + } else if yyct1765 == codecSelferValueTypeArray1234 { + yyl1765 := r.ReadArrayStart() + if yyl1765 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1733, d) + x.codecDecodeSelfFromArray(yyl1765, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23740,12 +24202,12 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1734Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1734Slc - var yyhl1734 bool = l >= 0 - for yyj1734 := 0; ; yyj1734++ { - if yyhl1734 { - if yyj1734 >= l { + var yys1766Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1766Slc + var yyhl1766 bool = l >= 0 + for yyj1766 := 0; ; yyj1766++ { + if yyhl1766 { + if yyj1766 >= l { break } } else { @@ -23754,10 +24216,10 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1734Slc = r.DecodeBytes(yys1734Slc, true, true) - yys1734 := string(yys1734Slc) + yys1766Slc = r.DecodeBytes(yys1766Slc, true, true) + yys1766 := string(yys1766Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1734 { + switch yys1766 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -23768,15 +24230,15 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.State = ContainerState{} } else { - yyv1736 := &x.State - yyv1736.CodecDecodeSelf(d) + yyv1768 := &x.State + yyv1768.CodecDecodeSelf(d) } case "lastState": if r.TryDecodeAsNil() { x.LastTerminationState = ContainerState{} } else { - yyv1737 := &x.LastTerminationState - yyv1737.CodecDecodeSelf(d) + yyv1769 := &x.LastTerminationState + yyv1769.CodecDecodeSelf(d) } case "ready": if r.TryDecodeAsNil() { @@ -23809,9 +24271,9 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ContainerID = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1734) - } // end switch yys1734 - } // end for yyj1734 + z.DecStructFieldNotFound(-1, yys1766) + } // end switch yys1766 + } // end for yyj1766 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23819,16 +24281,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1743 int - var yyb1743 bool - var yyhl1743 bool = l >= 0 - yyj1743++ - if yyhl1743 { - yyb1743 = yyj1743 > l + var yyj1775 int + var yyb1775 bool + var yyhl1775 bool = l >= 0 + yyj1775++ + if yyhl1775 { + yyb1775 = yyj1775 > l } else { - yyb1743 = r.CheckBreak() + yyb1775 = r.CheckBreak() } - if yyb1743 { + if yyb1775 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23838,13 +24300,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj1743++ - if yyhl1743 { - yyb1743 = yyj1743 > l + yyj1775++ + if yyhl1775 { + yyb1775 = yyj1775 > l } else { - yyb1743 = r.CheckBreak() + yyb1775 = r.CheckBreak() } - if yyb1743 { + if yyb1775 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23852,16 +24314,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.State = ContainerState{} } else { - yyv1745 := &x.State - yyv1745.CodecDecodeSelf(d) + yyv1777 := &x.State + yyv1777.CodecDecodeSelf(d) } - yyj1743++ - if yyhl1743 { - yyb1743 = yyj1743 > l + yyj1775++ + if yyhl1775 { + yyb1775 = yyj1775 > l } else { - yyb1743 = r.CheckBreak() + yyb1775 = r.CheckBreak() } - if yyb1743 { + if yyb1775 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23869,16 +24331,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.LastTerminationState = ContainerState{} } else { - yyv1746 := &x.LastTerminationState - yyv1746.CodecDecodeSelf(d) + yyv1778 := &x.LastTerminationState + yyv1778.CodecDecodeSelf(d) } - yyj1743++ - if yyhl1743 { - yyb1743 = yyj1743 > l + yyj1775++ + if yyhl1775 { + yyb1775 = yyj1775 > l } else { - yyb1743 = r.CheckBreak() + yyb1775 = r.CheckBreak() } - if yyb1743 { + if yyb1775 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23888,13 +24350,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Ready = bool(r.DecodeBool()) } - yyj1743++ - if yyhl1743 { - yyb1743 = yyj1743 > l + yyj1775++ + if yyhl1775 { + yyb1775 = yyj1775 > l } else { - yyb1743 = r.CheckBreak() + yyb1775 = r.CheckBreak() } - if yyb1743 { + if yyb1775 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23904,13 +24366,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.RestartCount = int32(r.DecodeInt(32)) } - yyj1743++ - if yyhl1743 { - yyb1743 = yyj1743 > l + yyj1775++ + if yyhl1775 { + yyb1775 = yyj1775 > l } else { - yyb1743 = r.CheckBreak() + yyb1775 = r.CheckBreak() } - if yyb1743 { + if yyb1775 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23920,13 +24382,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Image = string(r.DecodeString()) } - yyj1743++ - if yyhl1743 { - yyb1743 = yyj1743 > l + yyj1775++ + if yyhl1775 { + yyb1775 = yyj1775 > l } else { - yyb1743 = r.CheckBreak() + yyb1775 = r.CheckBreak() } - if yyb1743 { + if yyb1775 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23936,13 +24398,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ImageID = string(r.DecodeString()) } - yyj1743++ - if yyhl1743 { - yyb1743 = yyj1743 > l + yyj1775++ + if yyhl1775 { + yyb1775 = yyj1775 > l } else { - yyb1743 = r.CheckBreak() + yyb1775 = r.CheckBreak() } - if yyb1743 { + if yyb1775 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23953,17 +24415,17 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.ContainerID = string(r.DecodeString()) } for { - yyj1743++ - if yyhl1743 { - yyb1743 = yyj1743 > l + yyj1775++ + if yyhl1775 { + yyb1775 = yyj1775 > l } else { - yyb1743 = r.CheckBreak() + yyb1775 = r.CheckBreak() } - if yyb1743 { + if yyb1775 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1743-1, "") + z.DecStructFieldNotFound(yyj1775-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23972,8 +24434,8 @@ func (x PodPhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1752 := z.EncBinary() - _ = yym1752 + yym1784 := z.EncBinary() + _ = yym1784 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -23985,8 +24447,8 @@ func (x *PodPhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1753 := z.DecBinary() - _ = yym1753 + yym1785 := z.DecBinary() + _ = yym1785 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -23998,8 +24460,8 @@ func (x PodConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1754 := z.EncBinary() - _ = yym1754 + yym1786 := z.EncBinary() + _ = yym1786 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -24011,8 +24473,8 @@ func (x *PodConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1755 := z.DecBinary() - _ = yym1755 + yym1787 := z.DecBinary() + _ = yym1787 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -24027,34 +24489,34 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1756 := z.EncBinary() - _ = yym1756 + yym1788 := z.EncBinary() + _ = yym1788 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1757 := !z.EncBinary() - yy2arr1757 := z.EncBasicHandle().StructToArray - var yyq1757 [6]bool - _, _, _ = yysep1757, yyq1757, yy2arr1757 - const yyr1757 bool = false - yyq1757[2] = true - yyq1757[3] = true - yyq1757[4] = x.Reason != "" - yyq1757[5] = x.Message != "" - var yynn1757 int - if yyr1757 || yy2arr1757 { + yysep1789 := !z.EncBinary() + yy2arr1789 := z.EncBasicHandle().StructToArray + var yyq1789 [6]bool + _, _, _ = yysep1789, yyq1789, yy2arr1789 + const yyr1789 bool = false + yyq1789[2] = true + yyq1789[3] = true + yyq1789[4] = x.Reason != "" + yyq1789[5] = x.Message != "" + var yynn1789 int + if yyr1789 || yy2arr1789 { r.EncodeArrayStart(6) } else { - yynn1757 = 2 - for _, b := range yyq1757 { + yynn1789 = 2 + for _, b := range yyq1789 { if b { - yynn1757++ + yynn1789++ } } - r.EncodeMapStart(yynn1757) - yynn1757 = 0 + r.EncodeMapStart(yynn1789) + yynn1789 = 0 } - if yyr1757 || yy2arr1757 { + if yyr1789 || yy2arr1789 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -24063,7 +24525,7 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr1757 || yy2arr1757 { + if yyr1789 || yy2arr1789 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -24072,85 +24534,85 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr1757 || yy2arr1757 { + if yyr1789 || yy2arr1789 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1757[2] { - yy1761 := &x.LastProbeTime - yym1762 := z.EncBinary() - _ = yym1762 + if yyq1789[2] { + yy1793 := &x.LastProbeTime + yym1794 := z.EncBinary() + _ = yym1794 if false { - } else if z.HasExtensions() && z.EncExt(yy1761) { - } else if yym1762 { - z.EncBinaryMarshal(yy1761) - } else if !yym1762 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1761) + } else if z.HasExtensions() && z.EncExt(yy1793) { + } else if yym1794 { + z.EncBinaryMarshal(yy1793) + } else if !yym1794 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1793) } else { - z.EncFallback(yy1761) + z.EncFallback(yy1793) } } else { r.EncodeNil() } } else { - if yyq1757[2] { + if yyq1789[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastProbeTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1763 := &x.LastProbeTime - yym1764 := z.EncBinary() - _ = yym1764 + yy1795 := &x.LastProbeTime + yym1796 := z.EncBinary() + _ = yym1796 if false { - } else if z.HasExtensions() && z.EncExt(yy1763) { - } else if yym1764 { - z.EncBinaryMarshal(yy1763) - } else if !yym1764 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1763) + } else if z.HasExtensions() && z.EncExt(yy1795) { + } else if yym1796 { + z.EncBinaryMarshal(yy1795) + } else if !yym1796 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1795) } else { - z.EncFallback(yy1763) + z.EncFallback(yy1795) } } } - if yyr1757 || yy2arr1757 { + if yyr1789 || yy2arr1789 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1757[3] { - yy1766 := &x.LastTransitionTime - yym1767 := z.EncBinary() - _ = yym1767 + if yyq1789[3] { + yy1798 := &x.LastTransitionTime + yym1799 := z.EncBinary() + _ = yym1799 if false { - } else if z.HasExtensions() && z.EncExt(yy1766) { - } else if yym1767 { - z.EncBinaryMarshal(yy1766) - } else if !yym1767 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1766) + } else if z.HasExtensions() && z.EncExt(yy1798) { + } else if yym1799 { + z.EncBinaryMarshal(yy1798) + } else if !yym1799 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1798) } else { - z.EncFallback(yy1766) + z.EncFallback(yy1798) } } else { r.EncodeNil() } } else { - if yyq1757[3] { + if yyq1789[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1768 := &x.LastTransitionTime - yym1769 := z.EncBinary() - _ = yym1769 + yy1800 := &x.LastTransitionTime + yym1801 := z.EncBinary() + _ = yym1801 if false { - } else if z.HasExtensions() && z.EncExt(yy1768) { - } else if yym1769 { - z.EncBinaryMarshal(yy1768) - } else if !yym1769 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1768) + } else if z.HasExtensions() && z.EncExt(yy1800) { + } else if yym1801 { + z.EncBinaryMarshal(yy1800) + } else if !yym1801 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1800) } else { - z.EncFallback(yy1768) + z.EncFallback(yy1800) } } } - if yyr1757 || yy2arr1757 { + if yyr1789 || yy2arr1789 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1757[4] { - yym1771 := z.EncBinary() - _ = yym1771 + if yyq1789[4] { + yym1803 := z.EncBinary() + _ = yym1803 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -24159,23 +24621,23 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1757[4] { + if yyq1789[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1772 := z.EncBinary() - _ = yym1772 + yym1804 := z.EncBinary() + _ = yym1804 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1757 || yy2arr1757 { + if yyr1789 || yy2arr1789 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1757[5] { - yym1774 := z.EncBinary() - _ = yym1774 + if yyq1789[5] { + yym1806 := z.EncBinary() + _ = yym1806 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -24184,19 +24646,19 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1757[5] { + if yyq1789[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1775 := z.EncBinary() - _ = yym1775 + yym1807 := z.EncBinary() + _ = yym1807 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1757 || yy2arr1757 { + if yyr1789 || yy2arr1789 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24209,25 +24671,25 @@ func (x *PodCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1776 := z.DecBinary() - _ = yym1776 + yym1808 := z.DecBinary() + _ = yym1808 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1777 := r.ContainerType() - if yyct1777 == codecSelferValueTypeMap1234 { - yyl1777 := r.ReadMapStart() - if yyl1777 == 0 { + yyct1809 := r.ContainerType() + if yyct1809 == codecSelferValueTypeMap1234 { + yyl1809 := r.ReadMapStart() + if yyl1809 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1777, d) + x.codecDecodeSelfFromMap(yyl1809, d) } - } else if yyct1777 == codecSelferValueTypeArray1234 { - yyl1777 := r.ReadArrayStart() - if yyl1777 == 0 { + } else if yyct1809 == codecSelferValueTypeArray1234 { + yyl1809 := r.ReadArrayStart() + if yyl1809 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1777, d) + x.codecDecodeSelfFromArray(yyl1809, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24239,12 +24701,12 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1778Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1778Slc - var yyhl1778 bool = l >= 0 - for yyj1778 := 0; ; yyj1778++ { - if yyhl1778 { - if yyj1778 >= l { + var yys1810Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1810Slc + var yyhl1810 bool = l >= 0 + for yyj1810 := 0; ; yyj1810++ { + if yyhl1810 { + if yyj1810 >= l { break } } else { @@ -24253,10 +24715,10 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1778Slc = r.DecodeBytes(yys1778Slc, true, true) - yys1778 := string(yys1778Slc) + yys1810Slc = r.DecodeBytes(yys1810Slc, true, true) + yys1810 := string(yys1810Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1778 { + switch yys1810 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -24273,34 +24735,34 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastProbeTime = pkg2_v1.Time{} } else { - yyv1781 := &x.LastProbeTime - yym1782 := z.DecBinary() - _ = yym1782 + yyv1813 := &x.LastProbeTime + yym1814 := z.DecBinary() + _ = yym1814 if false { - } else if z.HasExtensions() && z.DecExt(yyv1781) { - } else if yym1782 { - z.DecBinaryUnmarshal(yyv1781) - } else if !yym1782 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1781) + } else if z.HasExtensions() && z.DecExt(yyv1813) { + } else if yym1814 { + z.DecBinaryUnmarshal(yyv1813) + } else if !yym1814 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1813) } else { - z.DecFallback(yyv1781, false) + z.DecFallback(yyv1813, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_v1.Time{} } else { - yyv1783 := &x.LastTransitionTime - yym1784 := z.DecBinary() - _ = yym1784 + yyv1815 := &x.LastTransitionTime + yym1816 := z.DecBinary() + _ = yym1816 if false { - } else if z.HasExtensions() && z.DecExt(yyv1783) { - } else if yym1784 { - z.DecBinaryUnmarshal(yyv1783) - } else if !yym1784 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1783) + } else if z.HasExtensions() && z.DecExt(yyv1815) { + } else if yym1816 { + z.DecBinaryUnmarshal(yyv1815) + } else if !yym1816 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1815) } else { - z.DecFallback(yyv1783, false) + z.DecFallback(yyv1815, false) } } case "reason": @@ -24316,9 +24778,9 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1778) - } // end switch yys1778 - } // end for yyj1778 + z.DecStructFieldNotFound(-1, yys1810) + } // end switch yys1810 + } // end for yyj1810 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24326,16 +24788,16 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1787 int - var yyb1787 bool - var yyhl1787 bool = l >= 0 - yyj1787++ - if yyhl1787 { - yyb1787 = yyj1787 > l + var yyj1819 int + var yyb1819 bool + var yyhl1819 bool = l >= 0 + yyj1819++ + if yyhl1819 { + yyb1819 = yyj1819 > l } else { - yyb1787 = r.CheckBreak() + yyb1819 = r.CheckBreak() } - if yyb1787 { + if yyb1819 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24345,13 +24807,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = PodConditionType(r.DecodeString()) } - yyj1787++ - if yyhl1787 { - yyb1787 = yyj1787 > l + yyj1819++ + if yyhl1819 { + yyb1819 = yyj1819 > l } else { - yyb1787 = r.CheckBreak() + yyb1819 = r.CheckBreak() } - if yyb1787 { + if yyb1819 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24361,13 +24823,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj1787++ - if yyhl1787 { - yyb1787 = yyj1787 > l + yyj1819++ + if yyhl1819 { + yyb1819 = yyj1819 > l } else { - yyb1787 = r.CheckBreak() + yyb1819 = r.CheckBreak() } - if yyb1787 { + if yyb1819 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24375,26 +24837,26 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastProbeTime = pkg2_v1.Time{} } else { - yyv1790 := &x.LastProbeTime - yym1791 := z.DecBinary() - _ = yym1791 + yyv1822 := &x.LastProbeTime + yym1823 := z.DecBinary() + _ = yym1823 if false { - } else if z.HasExtensions() && z.DecExt(yyv1790) { - } else if yym1791 { - z.DecBinaryUnmarshal(yyv1790) - } else if !yym1791 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1790) + } else if z.HasExtensions() && z.DecExt(yyv1822) { + } else if yym1823 { + z.DecBinaryUnmarshal(yyv1822) + } else if !yym1823 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1822) } else { - z.DecFallback(yyv1790, false) + z.DecFallback(yyv1822, false) } } - yyj1787++ - if yyhl1787 { - yyb1787 = yyj1787 > l + yyj1819++ + if yyhl1819 { + yyb1819 = yyj1819 > l } else { - yyb1787 = r.CheckBreak() + yyb1819 = r.CheckBreak() } - if yyb1787 { + if yyb1819 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24402,26 +24864,26 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_v1.Time{} } else { - yyv1792 := &x.LastTransitionTime - yym1793 := z.DecBinary() - _ = yym1793 + yyv1824 := &x.LastTransitionTime + yym1825 := z.DecBinary() + _ = yym1825 if false { - } else if z.HasExtensions() && z.DecExt(yyv1792) { - } else if yym1793 { - z.DecBinaryUnmarshal(yyv1792) - } else if !yym1793 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1792) + } else if z.HasExtensions() && z.DecExt(yyv1824) { + } else if yym1825 { + z.DecBinaryUnmarshal(yyv1824) + } else if !yym1825 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1824) } else { - z.DecFallback(yyv1792, false) + z.DecFallback(yyv1824, false) } } - yyj1787++ - if yyhl1787 { - yyb1787 = yyj1787 > l + yyj1819++ + if yyhl1819 { + yyb1819 = yyj1819 > l } else { - yyb1787 = r.CheckBreak() + yyb1819 = r.CheckBreak() } - if yyb1787 { + if yyb1819 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24431,13 +24893,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj1787++ - if yyhl1787 { - yyb1787 = yyj1787 > l + yyj1819++ + if yyhl1819 { + yyb1819 = yyj1819 > l } else { - yyb1787 = r.CheckBreak() + yyb1819 = r.CheckBreak() } - if yyb1787 { + if yyb1819 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24448,17 +24910,17 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj1787++ - if yyhl1787 { - yyb1787 = yyj1787 > l + yyj1819++ + if yyhl1819 { + yyb1819 = yyj1819 > l } else { - yyb1787 = r.CheckBreak() + yyb1819 = r.CheckBreak() } - if yyb1787 { + if yyb1819 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1787-1, "") + z.DecStructFieldNotFound(yyj1819-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24467,8 +24929,8 @@ func (x RestartPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1796 := z.EncBinary() - _ = yym1796 + yym1828 := z.EncBinary() + _ = yym1828 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -24480,8 +24942,8 @@ func (x *RestartPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1797 := z.DecBinary() - _ = yym1797 + yym1829 := z.DecBinary() + _ = yym1829 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -24493,8 +24955,8 @@ func (x DNSPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1798 := z.EncBinary() - _ = yym1798 + yym1830 := z.EncBinary() + _ = yym1830 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -24506,8 +24968,8 @@ func (x *DNSPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1799 := z.DecBinary() - _ = yym1799 + yym1831 := z.DecBinary() + _ = yym1831 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -24522,36 +24984,36 @@ func (x *NodeSelector) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1800 := z.EncBinary() - _ = yym1800 + yym1832 := z.EncBinary() + _ = yym1832 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1801 := !z.EncBinary() - yy2arr1801 := z.EncBasicHandle().StructToArray - var yyq1801 [1]bool - _, _, _ = yysep1801, yyq1801, yy2arr1801 - const yyr1801 bool = false - var yynn1801 int - if yyr1801 || yy2arr1801 { + yysep1833 := !z.EncBinary() + yy2arr1833 := z.EncBasicHandle().StructToArray + var yyq1833 [1]bool + _, _, _ = yysep1833, yyq1833, yy2arr1833 + const yyr1833 bool = false + var yynn1833 int + if yyr1833 || yy2arr1833 { r.EncodeArrayStart(1) } else { - yynn1801 = 1 - for _, b := range yyq1801 { + yynn1833 = 1 + for _, b := range yyq1833 { if b { - yynn1801++ + yynn1833++ } } - r.EncodeMapStart(yynn1801) - yynn1801 = 0 + r.EncodeMapStart(yynn1833) + yynn1833 = 0 } - if yyr1801 || yy2arr1801 { + if yyr1833 || yy2arr1833 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.NodeSelectorTerms == nil { r.EncodeNil() } else { - yym1803 := z.EncBinary() - _ = yym1803 + yym1835 := z.EncBinary() + _ = yym1835 if false { } else { h.encSliceNodeSelectorTerm(([]NodeSelectorTerm)(x.NodeSelectorTerms), e) @@ -24564,15 +25026,15 @@ func (x *NodeSelector) CodecEncodeSelf(e *codec1978.Encoder) { if x.NodeSelectorTerms == nil { r.EncodeNil() } else { - yym1804 := z.EncBinary() - _ = yym1804 + yym1836 := z.EncBinary() + _ = yym1836 if false { } else { h.encSliceNodeSelectorTerm(([]NodeSelectorTerm)(x.NodeSelectorTerms), e) } } } - if yyr1801 || yy2arr1801 { + if yyr1833 || yy2arr1833 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24585,25 +25047,25 @@ func (x *NodeSelector) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1805 := z.DecBinary() - _ = yym1805 + yym1837 := z.DecBinary() + _ = yym1837 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1806 := r.ContainerType() - if yyct1806 == codecSelferValueTypeMap1234 { - yyl1806 := r.ReadMapStart() - if yyl1806 == 0 { + yyct1838 := r.ContainerType() + if yyct1838 == codecSelferValueTypeMap1234 { + yyl1838 := r.ReadMapStart() + if yyl1838 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1806, d) + x.codecDecodeSelfFromMap(yyl1838, d) } - } else if yyct1806 == codecSelferValueTypeArray1234 { - yyl1806 := r.ReadArrayStart() - if yyl1806 == 0 { + } else if yyct1838 == codecSelferValueTypeArray1234 { + yyl1838 := r.ReadArrayStart() + if yyl1838 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1806, d) + x.codecDecodeSelfFromArray(yyl1838, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24615,12 +25077,12 @@ func (x *NodeSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1807Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1807Slc - var yyhl1807 bool = l >= 0 - for yyj1807 := 0; ; yyj1807++ { - if yyhl1807 { - if yyj1807 >= l { + var yys1839Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1839Slc + var yyhl1839 bool = l >= 0 + for yyj1839 := 0; ; yyj1839++ { + if yyhl1839 { + if yyj1839 >= l { break } } else { @@ -24629,441 +25091,30 @@ func (x *NodeSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1807Slc = r.DecodeBytes(yys1807Slc, true, true) - yys1807 := string(yys1807Slc) + yys1839Slc = r.DecodeBytes(yys1839Slc, true, true) + yys1839 := string(yys1839Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1807 { + switch yys1839 { case "nodeSelectorTerms": if r.TryDecodeAsNil() { x.NodeSelectorTerms = nil } else { - yyv1808 := &x.NodeSelectorTerms - yym1809 := z.DecBinary() - _ = yym1809 - if false { - } else { - h.decSliceNodeSelectorTerm((*[]NodeSelectorTerm)(yyv1808), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys1807) - } // end switch yys1807 - } // end for yyj1807 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *NodeSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj1810 int - var yyb1810 bool - var yyhl1810 bool = l >= 0 - yyj1810++ - if yyhl1810 { - yyb1810 = yyj1810 > l - } else { - yyb1810 = r.CheckBreak() - } - if yyb1810 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.NodeSelectorTerms = nil - } else { - yyv1811 := &x.NodeSelectorTerms - yym1812 := z.DecBinary() - _ = yym1812 - if false { - } else { - h.decSliceNodeSelectorTerm((*[]NodeSelectorTerm)(yyv1811), d) - } - } - for { - yyj1810++ - if yyhl1810 { - yyb1810 = yyj1810 > l - } else { - yyb1810 = r.CheckBreak() - } - if yyb1810 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1810-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *NodeSelectorTerm) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym1813 := z.EncBinary() - _ = yym1813 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep1814 := !z.EncBinary() - yy2arr1814 := z.EncBasicHandle().StructToArray - var yyq1814 [1]bool - _, _, _ = yysep1814, yyq1814, yy2arr1814 - const yyr1814 bool = false - var yynn1814 int - if yyr1814 || yy2arr1814 { - r.EncodeArrayStart(1) - } else { - yynn1814 = 1 - for _, b := range yyq1814 { - if b { - yynn1814++ - } - } - r.EncodeMapStart(yynn1814) - yynn1814 = 0 - } - if yyr1814 || yy2arr1814 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if x.MatchExpressions == nil { - r.EncodeNil() - } else { - yym1816 := z.EncBinary() - _ = yym1816 - if false { - } else { - h.encSliceNodeSelectorRequirement(([]NodeSelectorRequirement)(x.MatchExpressions), e) - } - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("matchExpressions")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.MatchExpressions == nil { - r.EncodeNil() - } else { - yym1817 := z.EncBinary() - _ = yym1817 - if false { - } else { - h.encSliceNodeSelectorRequirement(([]NodeSelectorRequirement)(x.MatchExpressions), e) - } - } - } - if yyr1814 || yy2arr1814 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *NodeSelectorTerm) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym1818 := z.DecBinary() - _ = yym1818 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct1819 := r.ContainerType() - if yyct1819 == codecSelferValueTypeMap1234 { - yyl1819 := r.ReadMapStart() - if yyl1819 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl1819, d) - } - } else if yyct1819 == codecSelferValueTypeArray1234 { - yyl1819 := r.ReadArrayStart() - if yyl1819 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl1819, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *NodeSelectorTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys1820Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1820Slc - var yyhl1820 bool = l >= 0 - for yyj1820 := 0; ; yyj1820++ { - if yyhl1820 { - if yyj1820 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1820Slc = r.DecodeBytes(yys1820Slc, true, true) - yys1820 := string(yys1820Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1820 { - case "matchExpressions": - if r.TryDecodeAsNil() { - x.MatchExpressions = nil - } else { - yyv1821 := &x.MatchExpressions - yym1822 := z.DecBinary() - _ = yym1822 - if false { - } else { - h.decSliceNodeSelectorRequirement((*[]NodeSelectorRequirement)(yyv1821), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys1820) - } // end switch yys1820 - } // end for yyj1820 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *NodeSelectorTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj1823 int - var yyb1823 bool - var yyhl1823 bool = l >= 0 - yyj1823++ - if yyhl1823 { - yyb1823 = yyj1823 > l - } else { - yyb1823 = r.CheckBreak() - } - if yyb1823 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.MatchExpressions = nil - } else { - yyv1824 := &x.MatchExpressions - yym1825 := z.DecBinary() - _ = yym1825 - if false { - } else { - h.decSliceNodeSelectorRequirement((*[]NodeSelectorRequirement)(yyv1824), d) - } - } - for { - yyj1823++ - if yyhl1823 { - yyb1823 = yyj1823 > l - } else { - yyb1823 = r.CheckBreak() - } - if yyb1823 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1823-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym1826 := z.EncBinary() - _ = yym1826 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep1827 := !z.EncBinary() - yy2arr1827 := z.EncBasicHandle().StructToArray - var yyq1827 [3]bool - _, _, _ = yysep1827, yyq1827, yy2arr1827 - const yyr1827 bool = false - yyq1827[2] = len(x.Values) != 0 - var yynn1827 int - if yyr1827 || yy2arr1827 { - r.EncodeArrayStart(3) - } else { - yynn1827 = 2 - for _, b := range yyq1827 { - if b { - yynn1827++ - } - } - r.EncodeMapStart(yynn1827) - yynn1827 = 0 - } - if yyr1827 || yy2arr1827 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1829 := z.EncBinary() - _ = yym1829 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Key)) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("key")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1830 := z.EncBinary() - _ = yym1830 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Key)) - } - } - if yyr1827 || yy2arr1827 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - x.Operator.CodecEncodeSelf(e) - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("operator")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - x.Operator.CodecEncodeSelf(e) - } - if yyr1827 || yy2arr1827 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1827[2] { - if x.Values == nil { - r.EncodeNil() - } else { - yym1833 := z.EncBinary() - _ = yym1833 - if false { - } else { - z.F.EncSliceStringV(x.Values, false, e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq1827[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("values")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Values == nil { - r.EncodeNil() - } else { - yym1834 := z.EncBinary() - _ = yym1834 - if false { - } else { - z.F.EncSliceStringV(x.Values, false, e) - } - } - } - } - if yyr1827 || yy2arr1827 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *NodeSelectorRequirement) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym1835 := z.DecBinary() - _ = yym1835 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct1836 := r.ContainerType() - if yyct1836 == codecSelferValueTypeMap1234 { - yyl1836 := r.ReadMapStart() - if yyl1836 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl1836, d) - } - } else if yyct1836 == codecSelferValueTypeArray1234 { - yyl1836 := r.ReadArrayStart() - if yyl1836 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl1836, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *NodeSelectorRequirement) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys1837Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1837Slc - var yyhl1837 bool = l >= 0 - for yyj1837 := 0; ; yyj1837++ { - if yyhl1837 { - if yyj1837 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1837Slc = r.DecodeBytes(yys1837Slc, true, true) - yys1837 := string(yys1837Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1837 { - case "key": - if r.TryDecodeAsNil() { - x.Key = "" - } else { - x.Key = string(r.DecodeString()) - } - case "operator": - if r.TryDecodeAsNil() { - x.Operator = "" - } else { - x.Operator = NodeSelectorOperator(r.DecodeString()) - } - case "values": - if r.TryDecodeAsNil() { - x.Values = nil - } else { - yyv1840 := &x.Values + yyv1840 := &x.NodeSelectorTerms yym1841 := z.DecBinary() _ = yym1841 if false { } else { - z.F.DecSliceStringX(yyv1840, false, d) + h.decSliceNodeSelectorTerm((*[]NodeSelectorTerm)(yyv1840), d) } } default: - z.DecStructFieldNotFound(-1, yys1837) - } // end switch yys1837 - } // end for yyj1837 + z.DecStructFieldNotFound(-1, yys1839) + } // end switch yys1839 + } // end for yyj1839 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } -func (x *NodeSelectorRequirement) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { +func (x *NodeSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -25082,46 +25133,14 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromArray(l int, d *codec1978.D } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Key = "" + x.NodeSelectorTerms = nil } else { - x.Key = string(r.DecodeString()) - } - yyj1842++ - if yyhl1842 { - yyb1842 = yyj1842 > l - } else { - yyb1842 = r.CheckBreak() - } - if yyb1842 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Operator = "" - } else { - x.Operator = NodeSelectorOperator(r.DecodeString()) - } - yyj1842++ - if yyhl1842 { - yyb1842 = yyj1842 > l - } else { - yyb1842 = r.CheckBreak() - } - if yyb1842 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Values = nil - } else { - yyv1845 := &x.Values - yym1846 := z.DecBinary() - _ = yym1846 + yyv1843 := &x.NodeSelectorTerms + yym1844 := z.DecBinary() + _ = yym1844 if false { } else { - z.F.DecSliceStringX(yyv1845, false, d) + h.decSliceNodeSelectorTerm((*[]NodeSelectorTerm)(yyv1843), d) } } for { @@ -25140,12 +25159,455 @@ func (x *NodeSelectorRequirement) codecDecodeSelfFromArray(l int, d *codec1978.D z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } +func (x *NodeSelectorTerm) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym1845 := z.EncBinary() + _ = yym1845 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep1846 := !z.EncBinary() + yy2arr1846 := z.EncBasicHandle().StructToArray + var yyq1846 [1]bool + _, _, _ = yysep1846, yyq1846, yy2arr1846 + const yyr1846 bool = false + var yynn1846 int + if yyr1846 || yy2arr1846 { + r.EncodeArrayStart(1) + } else { + yynn1846 = 1 + for _, b := range yyq1846 { + if b { + yynn1846++ + } + } + r.EncodeMapStart(yynn1846) + yynn1846 = 0 + } + if yyr1846 || yy2arr1846 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if x.MatchExpressions == nil { + r.EncodeNil() + } else { + yym1848 := z.EncBinary() + _ = yym1848 + if false { + } else { + h.encSliceNodeSelectorRequirement(([]NodeSelectorRequirement)(x.MatchExpressions), e) + } + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("matchExpressions")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.MatchExpressions == nil { + r.EncodeNil() + } else { + yym1849 := z.EncBinary() + _ = yym1849 + if false { + } else { + h.encSliceNodeSelectorRequirement(([]NodeSelectorRequirement)(x.MatchExpressions), e) + } + } + } + if yyr1846 || yy2arr1846 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *NodeSelectorTerm) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1850 := z.DecBinary() + _ = yym1850 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct1851 := r.ContainerType() + if yyct1851 == codecSelferValueTypeMap1234 { + yyl1851 := r.ReadMapStart() + if yyl1851 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl1851, d) + } + } else if yyct1851 == codecSelferValueTypeArray1234 { + yyl1851 := r.ReadArrayStart() + if yyl1851 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl1851, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *NodeSelectorTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys1852Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1852Slc + var yyhl1852 bool = l >= 0 + for yyj1852 := 0; ; yyj1852++ { + if yyhl1852 { + if yyj1852 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys1852Slc = r.DecodeBytes(yys1852Slc, true, true) + yys1852 := string(yys1852Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys1852 { + case "matchExpressions": + if r.TryDecodeAsNil() { + x.MatchExpressions = nil + } else { + yyv1853 := &x.MatchExpressions + yym1854 := z.DecBinary() + _ = yym1854 + if false { + } else { + h.decSliceNodeSelectorRequirement((*[]NodeSelectorRequirement)(yyv1853), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys1852) + } // end switch yys1852 + } // end for yyj1852 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *NodeSelectorTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj1855 int + var yyb1855 bool + var yyhl1855 bool = l >= 0 + yyj1855++ + if yyhl1855 { + yyb1855 = yyj1855 > l + } else { + yyb1855 = r.CheckBreak() + } + if yyb1855 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.MatchExpressions = nil + } else { + yyv1856 := &x.MatchExpressions + yym1857 := z.DecBinary() + _ = yym1857 + if false { + } else { + h.decSliceNodeSelectorRequirement((*[]NodeSelectorRequirement)(yyv1856), d) + } + } + for { + yyj1855++ + if yyhl1855 { + yyb1855 = yyj1855 > l + } else { + yyb1855 = r.CheckBreak() + } + if yyb1855 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj1855-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym1858 := z.EncBinary() + _ = yym1858 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep1859 := !z.EncBinary() + yy2arr1859 := z.EncBasicHandle().StructToArray + var yyq1859 [3]bool + _, _, _ = yysep1859, yyq1859, yy2arr1859 + const yyr1859 bool = false + yyq1859[2] = len(x.Values) != 0 + var yynn1859 int + if yyr1859 || yy2arr1859 { + r.EncodeArrayStart(3) + } else { + yynn1859 = 2 + for _, b := range yyq1859 { + if b { + yynn1859++ + } + } + r.EncodeMapStart(yynn1859) + yynn1859 = 0 + } + if yyr1859 || yy2arr1859 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym1861 := z.EncBinary() + _ = yym1861 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Key)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("key")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1862 := z.EncBinary() + _ = yym1862 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Key)) + } + } + if yyr1859 || yy2arr1859 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + x.Operator.CodecEncodeSelf(e) + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("operator")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + x.Operator.CodecEncodeSelf(e) + } + if yyr1859 || yy2arr1859 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1859[2] { + if x.Values == nil { + r.EncodeNil() + } else { + yym1865 := z.EncBinary() + _ = yym1865 + if false { + } else { + z.F.EncSliceStringV(x.Values, false, e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq1859[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("values")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Values == nil { + r.EncodeNil() + } else { + yym1866 := z.EncBinary() + _ = yym1866 + if false { + } else { + z.F.EncSliceStringV(x.Values, false, e) + } + } + } + } + if yyr1859 || yy2arr1859 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *NodeSelectorRequirement) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1867 := z.DecBinary() + _ = yym1867 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct1868 := r.ContainerType() + if yyct1868 == codecSelferValueTypeMap1234 { + yyl1868 := r.ReadMapStart() + if yyl1868 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl1868, d) + } + } else if yyct1868 == codecSelferValueTypeArray1234 { + yyl1868 := r.ReadArrayStart() + if yyl1868 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl1868, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *NodeSelectorRequirement) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys1869Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1869Slc + var yyhl1869 bool = l >= 0 + for yyj1869 := 0; ; yyj1869++ { + if yyhl1869 { + if yyj1869 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys1869Slc = r.DecodeBytes(yys1869Slc, true, true) + yys1869 := string(yys1869Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys1869 { + case "key": + if r.TryDecodeAsNil() { + x.Key = "" + } else { + x.Key = string(r.DecodeString()) + } + case "operator": + if r.TryDecodeAsNil() { + x.Operator = "" + } else { + x.Operator = NodeSelectorOperator(r.DecodeString()) + } + case "values": + if r.TryDecodeAsNil() { + x.Values = nil + } else { + yyv1872 := &x.Values + yym1873 := z.DecBinary() + _ = yym1873 + if false { + } else { + z.F.DecSliceStringX(yyv1872, false, d) + } + } + default: + z.DecStructFieldNotFound(-1, yys1869) + } // end switch yys1869 + } // end for yyj1869 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *NodeSelectorRequirement) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj1874 int + var yyb1874 bool + var yyhl1874 bool = l >= 0 + yyj1874++ + if yyhl1874 { + yyb1874 = yyj1874 > l + } else { + yyb1874 = r.CheckBreak() + } + if yyb1874 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Key = "" + } else { + x.Key = string(r.DecodeString()) + } + yyj1874++ + if yyhl1874 { + yyb1874 = yyj1874 > l + } else { + yyb1874 = r.CheckBreak() + } + if yyb1874 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Operator = "" + } else { + x.Operator = NodeSelectorOperator(r.DecodeString()) + } + yyj1874++ + if yyhl1874 { + yyb1874 = yyj1874 > l + } else { + yyb1874 = r.CheckBreak() + } + if yyb1874 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Values = nil + } else { + yyv1877 := &x.Values + yym1878 := z.DecBinary() + _ = yym1878 + if false { + } else { + z.F.DecSliceStringX(yyv1877, false, d) + } + } + for { + yyj1874++ + if yyhl1874 { + yyb1874 = yyj1874 > l + } else { + yyb1874 = r.CheckBreak() + } + if yyb1874 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj1874-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + func (x NodeSelectorOperator) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1847 := z.EncBinary() - _ = yym1847 + yym1879 := z.EncBinary() + _ = yym1879 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -25157,8 +25619,8 @@ func (x *NodeSelectorOperator) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1848 := z.DecBinary() - _ = yym1848 + yym1880 := z.DecBinary() + _ = yym1880 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -25173,35 +25635,35 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1849 := z.EncBinary() - _ = yym1849 + yym1881 := z.EncBinary() + _ = yym1881 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1850 := !z.EncBinary() - yy2arr1850 := z.EncBasicHandle().StructToArray - var yyq1850 [3]bool - _, _, _ = yysep1850, yyq1850, yy2arr1850 - const yyr1850 bool = false - yyq1850[0] = x.NodeAffinity != nil - yyq1850[1] = x.PodAffinity != nil - yyq1850[2] = x.PodAntiAffinity != nil - var yynn1850 int - if yyr1850 || yy2arr1850 { + yysep1882 := !z.EncBinary() + yy2arr1882 := z.EncBasicHandle().StructToArray + var yyq1882 [3]bool + _, _, _ = yysep1882, yyq1882, yy2arr1882 + const yyr1882 bool = false + yyq1882[0] = x.NodeAffinity != nil + yyq1882[1] = x.PodAffinity != nil + yyq1882[2] = x.PodAntiAffinity != nil + var yynn1882 int + if yyr1882 || yy2arr1882 { r.EncodeArrayStart(3) } else { - yynn1850 = 0 - for _, b := range yyq1850 { + yynn1882 = 0 + for _, b := range yyq1882 { if b { - yynn1850++ + yynn1882++ } } - r.EncodeMapStart(yynn1850) - yynn1850 = 0 + r.EncodeMapStart(yynn1882) + yynn1882 = 0 } - if yyr1850 || yy2arr1850 { + if yyr1882 || yy2arr1882 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1850[0] { + if yyq1882[0] { if x.NodeAffinity == nil { r.EncodeNil() } else { @@ -25211,7 +25673,7 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1850[0] { + if yyq1882[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -25222,9 +25684,9 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1850 || yy2arr1850 { + if yyr1882 || yy2arr1882 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1850[1] { + if yyq1882[1] { if x.PodAffinity == nil { r.EncodeNil() } else { @@ -25234,7 +25696,7 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1850[1] { + if yyq1882[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -25245,9 +25707,9 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1850 || yy2arr1850 { + if yyr1882 || yy2arr1882 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1850[2] { + if yyq1882[2] { if x.PodAntiAffinity == nil { r.EncodeNil() } else { @@ -25257,7 +25719,7 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1850[2] { + if yyq1882[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podAntiAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -25268,7 +25730,7 @@ func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1850 || yy2arr1850 { + if yyr1882 || yy2arr1882 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25281,25 +25743,25 @@ func (x *Affinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1854 := z.DecBinary() - _ = yym1854 + yym1886 := z.DecBinary() + _ = yym1886 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1855 := r.ContainerType() - if yyct1855 == codecSelferValueTypeMap1234 { - yyl1855 := r.ReadMapStart() - if yyl1855 == 0 { + yyct1887 := r.ContainerType() + if yyct1887 == codecSelferValueTypeMap1234 { + yyl1887 := r.ReadMapStart() + if yyl1887 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1855, d) + x.codecDecodeSelfFromMap(yyl1887, d) } - } else if yyct1855 == codecSelferValueTypeArray1234 { - yyl1855 := r.ReadArrayStart() - if yyl1855 == 0 { + } else if yyct1887 == codecSelferValueTypeArray1234 { + yyl1887 := r.ReadArrayStart() + if yyl1887 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1855, d) + x.codecDecodeSelfFromArray(yyl1887, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25311,12 +25773,12 @@ func (x *Affinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1856Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1856Slc - var yyhl1856 bool = l >= 0 - for yyj1856 := 0; ; yyj1856++ { - if yyhl1856 { - if yyj1856 >= l { + var yys1888Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1888Slc + var yyhl1888 bool = l >= 0 + for yyj1888 := 0; ; yyj1888++ { + if yyhl1888 { + if yyj1888 >= l { break } } else { @@ -25325,10 +25787,10 @@ func (x *Affinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1856Slc = r.DecodeBytes(yys1856Slc, true, true) - yys1856 := string(yys1856Slc) + yys1888Slc = r.DecodeBytes(yys1888Slc, true, true) + yys1888 := string(yys1888Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1856 { + switch yys1888 { case "nodeAffinity": if r.TryDecodeAsNil() { if x.NodeAffinity != nil { @@ -25363,9 +25825,9 @@ func (x *Affinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.PodAntiAffinity.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1856) - } // end switch yys1856 - } // end for yyj1856 + z.DecStructFieldNotFound(-1, yys1888) + } // end switch yys1888 + } // end for yyj1888 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25373,16 +25835,16 @@ func (x *Affinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1860 int - var yyb1860 bool - var yyhl1860 bool = l >= 0 - yyj1860++ - if yyhl1860 { - yyb1860 = yyj1860 > l + var yyj1892 int + var yyb1892 bool + var yyhl1892 bool = l >= 0 + yyj1892++ + if yyhl1892 { + yyb1892 = yyj1892 > l } else { - yyb1860 = r.CheckBreak() + yyb1892 = r.CheckBreak() } - if yyb1860 { + if yyb1892 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25397,13 +25859,13 @@ func (x *Affinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.NodeAffinity.CodecDecodeSelf(d) } - yyj1860++ - if yyhl1860 { - yyb1860 = yyj1860 > l + yyj1892++ + if yyhl1892 { + yyb1892 = yyj1892 > l } else { - yyb1860 = r.CheckBreak() + yyb1892 = r.CheckBreak() } - if yyb1860 { + if yyb1892 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25418,13 +25880,13 @@ func (x *Affinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.PodAffinity.CodecDecodeSelf(d) } - yyj1860++ - if yyhl1860 { - yyb1860 = yyj1860 > l + yyj1892++ + if yyhl1892 { + yyb1892 = yyj1892 > l } else { - yyb1860 = r.CheckBreak() + yyb1892 = r.CheckBreak() } - if yyb1860 { + if yyb1892 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25440,17 +25902,17 @@ func (x *Affinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.PodAntiAffinity.CodecDecodeSelf(d) } for { - yyj1860++ - if yyhl1860 { - yyb1860 = yyj1860 > l + yyj1892++ + if yyhl1892 { + yyb1892 = yyj1892 > l } else { - yyb1860 = r.CheckBreak() + yyb1892 = r.CheckBreak() } - if yyb1860 { + if yyb1892 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1860-1, "") + z.DecStructFieldNotFound(yyj1892-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25462,39 +25924,39 @@ func (x *PodAffinity) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1864 := z.EncBinary() - _ = yym1864 + yym1896 := z.EncBinary() + _ = yym1896 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1865 := !z.EncBinary() - yy2arr1865 := z.EncBasicHandle().StructToArray - var yyq1865 [2]bool - _, _, _ = yysep1865, yyq1865, yy2arr1865 - const yyr1865 bool = false - yyq1865[0] = len(x.RequiredDuringSchedulingIgnoredDuringExecution) != 0 - yyq1865[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 - var yynn1865 int - if yyr1865 || yy2arr1865 { + yysep1897 := !z.EncBinary() + yy2arr1897 := z.EncBasicHandle().StructToArray + var yyq1897 [2]bool + _, _, _ = yysep1897, yyq1897, yy2arr1897 + const yyr1897 bool = false + yyq1897[0] = len(x.RequiredDuringSchedulingIgnoredDuringExecution) != 0 + yyq1897[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 + var yynn1897 int + if yyr1897 || yy2arr1897 { r.EncodeArrayStart(2) } else { - yynn1865 = 0 - for _, b := range yyq1865 { + yynn1897 = 0 + for _, b := range yyq1897 { if b { - yynn1865++ + yynn1897++ } } - r.EncodeMapStart(yynn1865) - yynn1865 = 0 + r.EncodeMapStart(yynn1897) + yynn1897 = 0 } - if yyr1865 || yy2arr1865 { + if yyr1897 || yy2arr1897 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1865[0] { + if yyq1897[0] { if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1867 := z.EncBinary() - _ = yym1867 + yym1899 := z.EncBinary() + _ = yym1899 if false { } else { h.encSlicePodAffinityTerm(([]PodAffinityTerm)(x.RequiredDuringSchedulingIgnoredDuringExecution), e) @@ -25504,15 +25966,15 @@ func (x *PodAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1865[0] { + if yyq1897[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requiredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1868 := z.EncBinary() - _ = yym1868 + yym1900 := z.EncBinary() + _ = yym1900 if false { } else { h.encSlicePodAffinityTerm(([]PodAffinityTerm)(x.RequiredDuringSchedulingIgnoredDuringExecution), e) @@ -25520,14 +25982,14 @@ func (x *PodAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1865 || yy2arr1865 { + if yyr1897 || yy2arr1897 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1865[1] { + if yyq1897[1] { if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1870 := z.EncBinary() - _ = yym1870 + yym1902 := z.EncBinary() + _ = yym1902 if false { } else { h.encSliceWeightedPodAffinityTerm(([]WeightedPodAffinityTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -25537,15 +25999,15 @@ func (x *PodAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1865[1] { + if yyq1897[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preferredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1871 := z.EncBinary() - _ = yym1871 + yym1903 := z.EncBinary() + _ = yym1903 if false { } else { h.encSliceWeightedPodAffinityTerm(([]WeightedPodAffinityTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -25553,7 +26015,7 @@ func (x *PodAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1865 || yy2arr1865 { + if yyr1897 || yy2arr1897 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25566,25 +26028,25 @@ func (x *PodAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1872 := z.DecBinary() - _ = yym1872 + yym1904 := z.DecBinary() + _ = yym1904 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1873 := r.ContainerType() - if yyct1873 == codecSelferValueTypeMap1234 { - yyl1873 := r.ReadMapStart() - if yyl1873 == 0 { + yyct1905 := r.ContainerType() + if yyct1905 == codecSelferValueTypeMap1234 { + yyl1905 := r.ReadMapStart() + if yyl1905 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1873, d) + x.codecDecodeSelfFromMap(yyl1905, d) } - } else if yyct1873 == codecSelferValueTypeArray1234 { - yyl1873 := r.ReadArrayStart() - if yyl1873 == 0 { + } else if yyct1905 == codecSelferValueTypeArray1234 { + yyl1905 := r.ReadArrayStart() + if yyl1905 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1873, d) + x.codecDecodeSelfFromArray(yyl1905, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25596,12 +26058,12 @@ func (x *PodAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1874Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1874Slc - var yyhl1874 bool = l >= 0 - for yyj1874 := 0; ; yyj1874++ { - if yyhl1874 { - if yyj1874 >= l { + var yys1906Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1906Slc + var yyhl1906 bool = l >= 0 + for yyj1906 := 0; ; yyj1906++ { + if yyhl1906 { + if yyj1906 >= l { break } } else { @@ -25610,38 +26072,38 @@ func (x *PodAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1874Slc = r.DecodeBytes(yys1874Slc, true, true) - yys1874 := string(yys1874Slc) + yys1906Slc = r.DecodeBytes(yys1906Slc, true, true) + yys1906 := string(yys1906Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1874 { + switch yys1906 { case "requiredDuringSchedulingIgnoredDuringExecution": if r.TryDecodeAsNil() { x.RequiredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1875 := &x.RequiredDuringSchedulingIgnoredDuringExecution - yym1876 := z.DecBinary() - _ = yym1876 + yyv1907 := &x.RequiredDuringSchedulingIgnoredDuringExecution + yym1908 := z.DecBinary() + _ = yym1908 if false { } else { - h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1875), d) + h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1907), d) } } case "preferredDuringSchedulingIgnoredDuringExecution": if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1877 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1878 := z.DecBinary() - _ = yym1878 + yyv1909 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1910 := z.DecBinary() + _ = yym1910 if false { } else { - h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1877), d) + h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1909), d) } } default: - z.DecStructFieldNotFound(-1, yys1874) - } // end switch yys1874 - } // end for yyj1874 + z.DecStructFieldNotFound(-1, yys1906) + } // end switch yys1906 + } // end for yyj1906 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25649,16 +26111,16 @@ func (x *PodAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1879 int - var yyb1879 bool - var yyhl1879 bool = l >= 0 - yyj1879++ - if yyhl1879 { - yyb1879 = yyj1879 > l + var yyj1911 int + var yyb1911 bool + var yyhl1911 bool = l >= 0 + yyj1911++ + if yyhl1911 { + yyb1911 = yyj1911 > l } else { - yyb1879 = r.CheckBreak() + yyb1911 = r.CheckBreak() } - if yyb1879 { + if yyb1911 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25666,21 +26128,21 @@ func (x *PodAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.RequiredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1880 := &x.RequiredDuringSchedulingIgnoredDuringExecution - yym1881 := z.DecBinary() - _ = yym1881 + yyv1912 := &x.RequiredDuringSchedulingIgnoredDuringExecution + yym1913 := z.DecBinary() + _ = yym1913 if false { } else { - h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1880), d) + h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1912), d) } } - yyj1879++ - if yyhl1879 { - yyb1879 = yyj1879 > l + yyj1911++ + if yyhl1911 { + yyb1911 = yyj1911 > l } else { - yyb1879 = r.CheckBreak() + yyb1911 = r.CheckBreak() } - if yyb1879 { + if yyb1911 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25688,26 +26150,26 @@ func (x *PodAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1882 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1883 := z.DecBinary() - _ = yym1883 + yyv1914 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1915 := z.DecBinary() + _ = yym1915 if false { } else { - h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1882), d) + h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1914), d) } } for { - yyj1879++ - if yyhl1879 { - yyb1879 = yyj1879 > l + yyj1911++ + if yyhl1911 { + yyb1911 = yyj1911 > l } else { - yyb1879 = r.CheckBreak() + yyb1911 = r.CheckBreak() } - if yyb1879 { + if yyb1911 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1879-1, "") + z.DecStructFieldNotFound(yyj1911-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25719,39 +26181,39 @@ func (x *PodAntiAffinity) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1884 := z.EncBinary() - _ = yym1884 + yym1916 := z.EncBinary() + _ = yym1916 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1885 := !z.EncBinary() - yy2arr1885 := z.EncBasicHandle().StructToArray - var yyq1885 [2]bool - _, _, _ = yysep1885, yyq1885, yy2arr1885 - const yyr1885 bool = false - yyq1885[0] = len(x.RequiredDuringSchedulingIgnoredDuringExecution) != 0 - yyq1885[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 - var yynn1885 int - if yyr1885 || yy2arr1885 { + yysep1917 := !z.EncBinary() + yy2arr1917 := z.EncBasicHandle().StructToArray + var yyq1917 [2]bool + _, _, _ = yysep1917, yyq1917, yy2arr1917 + const yyr1917 bool = false + yyq1917[0] = len(x.RequiredDuringSchedulingIgnoredDuringExecution) != 0 + yyq1917[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 + var yynn1917 int + if yyr1917 || yy2arr1917 { r.EncodeArrayStart(2) } else { - yynn1885 = 0 - for _, b := range yyq1885 { + yynn1917 = 0 + for _, b := range yyq1917 { if b { - yynn1885++ + yynn1917++ } } - r.EncodeMapStart(yynn1885) - yynn1885 = 0 + r.EncodeMapStart(yynn1917) + yynn1917 = 0 } - if yyr1885 || yy2arr1885 { + if yyr1917 || yy2arr1917 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1885[0] { + if yyq1917[0] { if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1887 := z.EncBinary() - _ = yym1887 + yym1919 := z.EncBinary() + _ = yym1919 if false { } else { h.encSlicePodAffinityTerm(([]PodAffinityTerm)(x.RequiredDuringSchedulingIgnoredDuringExecution), e) @@ -25761,15 +26223,15 @@ func (x *PodAntiAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1885[0] { + if yyq1917[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requiredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1888 := z.EncBinary() - _ = yym1888 + yym1920 := z.EncBinary() + _ = yym1920 if false { } else { h.encSlicePodAffinityTerm(([]PodAffinityTerm)(x.RequiredDuringSchedulingIgnoredDuringExecution), e) @@ -25777,14 +26239,14 @@ func (x *PodAntiAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1885 || yy2arr1885 { + if yyr1917 || yy2arr1917 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1885[1] { + if yyq1917[1] { if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1890 := z.EncBinary() - _ = yym1890 + yym1922 := z.EncBinary() + _ = yym1922 if false { } else { h.encSliceWeightedPodAffinityTerm(([]WeightedPodAffinityTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -25794,15 +26256,15 @@ func (x *PodAntiAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1885[1] { + if yyq1917[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preferredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1891 := z.EncBinary() - _ = yym1891 + yym1923 := z.EncBinary() + _ = yym1923 if false { } else { h.encSliceWeightedPodAffinityTerm(([]WeightedPodAffinityTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -25810,7 +26272,7 @@ func (x *PodAntiAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1885 || yy2arr1885 { + if yyr1917 || yy2arr1917 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25823,25 +26285,25 @@ func (x *PodAntiAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1892 := z.DecBinary() - _ = yym1892 + yym1924 := z.DecBinary() + _ = yym1924 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1893 := r.ContainerType() - if yyct1893 == codecSelferValueTypeMap1234 { - yyl1893 := r.ReadMapStart() - if yyl1893 == 0 { + yyct1925 := r.ContainerType() + if yyct1925 == codecSelferValueTypeMap1234 { + yyl1925 := r.ReadMapStart() + if yyl1925 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1893, d) + x.codecDecodeSelfFromMap(yyl1925, d) } - } else if yyct1893 == codecSelferValueTypeArray1234 { - yyl1893 := r.ReadArrayStart() - if yyl1893 == 0 { + } else if yyct1925 == codecSelferValueTypeArray1234 { + yyl1925 := r.ReadArrayStart() + if yyl1925 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1893, d) + x.codecDecodeSelfFromArray(yyl1925, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25853,12 +26315,12 @@ func (x *PodAntiAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1894Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1894Slc - var yyhl1894 bool = l >= 0 - for yyj1894 := 0; ; yyj1894++ { - if yyhl1894 { - if yyj1894 >= l { + var yys1926Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1926Slc + var yyhl1926 bool = l >= 0 + for yyj1926 := 0; ; yyj1926++ { + if yyhl1926 { + if yyj1926 >= l { break } } else { @@ -25867,38 +26329,38 @@ func (x *PodAntiAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1894Slc = r.DecodeBytes(yys1894Slc, true, true) - yys1894 := string(yys1894Slc) + yys1926Slc = r.DecodeBytes(yys1926Slc, true, true) + yys1926 := string(yys1926Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1894 { + switch yys1926 { case "requiredDuringSchedulingIgnoredDuringExecution": if r.TryDecodeAsNil() { x.RequiredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1895 := &x.RequiredDuringSchedulingIgnoredDuringExecution - yym1896 := z.DecBinary() - _ = yym1896 + yyv1927 := &x.RequiredDuringSchedulingIgnoredDuringExecution + yym1928 := z.DecBinary() + _ = yym1928 if false { } else { - h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1895), d) + h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1927), d) } } case "preferredDuringSchedulingIgnoredDuringExecution": if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1897 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1898 := z.DecBinary() - _ = yym1898 + yyv1929 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1930 := z.DecBinary() + _ = yym1930 if false { } else { - h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1897), d) + h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1929), d) } } default: - z.DecStructFieldNotFound(-1, yys1894) - } // end switch yys1894 - } // end for yyj1894 + z.DecStructFieldNotFound(-1, yys1926) + } // end switch yys1926 + } // end for yyj1926 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25906,16 +26368,16 @@ func (x *PodAntiAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1899 int - var yyb1899 bool - var yyhl1899 bool = l >= 0 - yyj1899++ - if yyhl1899 { - yyb1899 = yyj1899 > l + var yyj1931 int + var yyb1931 bool + var yyhl1931 bool = l >= 0 + yyj1931++ + if yyhl1931 { + yyb1931 = yyj1931 > l } else { - yyb1899 = r.CheckBreak() + yyb1931 = r.CheckBreak() } - if yyb1899 { + if yyb1931 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25923,21 +26385,21 @@ func (x *PodAntiAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.RequiredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1900 := &x.RequiredDuringSchedulingIgnoredDuringExecution - yym1901 := z.DecBinary() - _ = yym1901 + yyv1932 := &x.RequiredDuringSchedulingIgnoredDuringExecution + yym1933 := z.DecBinary() + _ = yym1933 if false { } else { - h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1900), d) + h.decSlicePodAffinityTerm((*[]PodAffinityTerm)(yyv1932), d) } } - yyj1899++ - if yyhl1899 { - yyb1899 = yyj1899 > l + yyj1931++ + if yyhl1931 { + yyb1931 = yyj1931 > l } else { - yyb1899 = r.CheckBreak() + yyb1931 = r.CheckBreak() } - if yyb1899 { + if yyb1931 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25945,26 +26407,26 @@ func (x *PodAntiAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1902 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1903 := z.DecBinary() - _ = yym1903 + yyv1934 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1935 := z.DecBinary() + _ = yym1935 if false { } else { - h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1902), d) + h.decSliceWeightedPodAffinityTerm((*[]WeightedPodAffinityTerm)(yyv1934), d) } } for { - yyj1899++ - if yyhl1899 { - yyb1899 = yyj1899 > l + yyj1931++ + if yyhl1931 { + yyb1931 = yyj1931 > l } else { - yyb1899 = r.CheckBreak() + yyb1931 = r.CheckBreak() } - if yyb1899 { + if yyb1931 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1899-1, "") + z.DecStructFieldNotFound(yyj1931-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25976,33 +26438,33 @@ func (x *WeightedPodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1904 := z.EncBinary() - _ = yym1904 + yym1936 := z.EncBinary() + _ = yym1936 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1905 := !z.EncBinary() - yy2arr1905 := z.EncBasicHandle().StructToArray - var yyq1905 [2]bool - _, _, _ = yysep1905, yyq1905, yy2arr1905 - const yyr1905 bool = false - var yynn1905 int - if yyr1905 || yy2arr1905 { + yysep1937 := !z.EncBinary() + yy2arr1937 := z.EncBasicHandle().StructToArray + var yyq1937 [2]bool + _, _, _ = yysep1937, yyq1937, yy2arr1937 + const yyr1937 bool = false + var yynn1937 int + if yyr1937 || yy2arr1937 { r.EncodeArrayStart(2) } else { - yynn1905 = 2 - for _, b := range yyq1905 { + yynn1937 = 2 + for _, b := range yyq1937 { if b { - yynn1905++ + yynn1937++ } } - r.EncodeMapStart(yynn1905) - yynn1905 = 0 + r.EncodeMapStart(yynn1937) + yynn1937 = 0 } - if yyr1905 || yy2arr1905 { + if yyr1937 || yy2arr1937 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1907 := z.EncBinary() - _ = yym1907 + yym1939 := z.EncBinary() + _ = yym1939 if false { } else { r.EncodeInt(int64(x.Weight)) @@ -26011,25 +26473,25 @@ func (x *WeightedPodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("weight")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1908 := z.EncBinary() - _ = yym1908 + yym1940 := z.EncBinary() + _ = yym1940 if false { } else { r.EncodeInt(int64(x.Weight)) } } - if yyr1905 || yy2arr1905 { + if yyr1937 || yy2arr1937 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1910 := &x.PodAffinityTerm - yy1910.CodecEncodeSelf(e) + yy1942 := &x.PodAffinityTerm + yy1942.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podAffinityTerm")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1911 := &x.PodAffinityTerm - yy1911.CodecEncodeSelf(e) + yy1943 := &x.PodAffinityTerm + yy1943.CodecEncodeSelf(e) } - if yyr1905 || yy2arr1905 { + if yyr1937 || yy2arr1937 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26042,25 +26504,25 @@ func (x *WeightedPodAffinityTerm) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1912 := z.DecBinary() - _ = yym1912 + yym1944 := z.DecBinary() + _ = yym1944 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1913 := r.ContainerType() - if yyct1913 == codecSelferValueTypeMap1234 { - yyl1913 := r.ReadMapStart() - if yyl1913 == 0 { + yyct1945 := r.ContainerType() + if yyct1945 == codecSelferValueTypeMap1234 { + yyl1945 := r.ReadMapStart() + if yyl1945 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1913, d) + x.codecDecodeSelfFromMap(yyl1945, d) } - } else if yyct1913 == codecSelferValueTypeArray1234 { - yyl1913 := r.ReadArrayStart() - if yyl1913 == 0 { + } else if yyct1945 == codecSelferValueTypeArray1234 { + yyl1945 := r.ReadArrayStart() + if yyl1945 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1913, d) + x.codecDecodeSelfFromArray(yyl1945, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26072,12 +26534,12 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1914Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1914Slc - var yyhl1914 bool = l >= 0 - for yyj1914 := 0; ; yyj1914++ { - if yyhl1914 { - if yyj1914 >= l { + var yys1946Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1946Slc + var yyhl1946 bool = l >= 0 + for yyj1946 := 0; ; yyj1946++ { + if yyhl1946 { + if yyj1946 >= l { break } } else { @@ -26086,10 +26548,10 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1914Slc = r.DecodeBytes(yys1914Slc, true, true) - yys1914 := string(yys1914Slc) + yys1946Slc = r.DecodeBytes(yys1946Slc, true, true) + yys1946 := string(yys1946Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1914 { + switch yys1946 { case "weight": if r.TryDecodeAsNil() { x.Weight = 0 @@ -26100,13 +26562,13 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.PodAffinityTerm = PodAffinityTerm{} } else { - yyv1916 := &x.PodAffinityTerm - yyv1916.CodecDecodeSelf(d) + yyv1948 := &x.PodAffinityTerm + yyv1948.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1914) - } // end switch yys1914 - } // end for yyj1914 + z.DecStructFieldNotFound(-1, yys1946) + } // end switch yys1946 + } // end for yyj1946 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -26114,16 +26576,16 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1917 int - var yyb1917 bool - var yyhl1917 bool = l >= 0 - yyj1917++ - if yyhl1917 { - yyb1917 = yyj1917 > l + var yyj1949 int + var yyb1949 bool + var yyhl1949 bool = l >= 0 + yyj1949++ + if yyhl1949 { + yyb1949 = yyj1949 > l } else { - yyb1917 = r.CheckBreak() + yyb1949 = r.CheckBreak() } - if yyb1917 { + if yyb1949 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26133,13 +26595,13 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.D } else { x.Weight = int32(r.DecodeInt(32)) } - yyj1917++ - if yyhl1917 { - yyb1917 = yyj1917 > l + yyj1949++ + if yyhl1949 { + yyb1949 = yyj1949 > l } else { - yyb1917 = r.CheckBreak() + yyb1949 = r.CheckBreak() } - if yyb1917 { + if yyb1949 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26147,21 +26609,21 @@ func (x *WeightedPodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.PodAffinityTerm = PodAffinityTerm{} } else { - yyv1919 := &x.PodAffinityTerm - yyv1919.CodecDecodeSelf(d) + yyv1951 := &x.PodAffinityTerm + yyv1951.CodecDecodeSelf(d) } for { - yyj1917++ - if yyhl1917 { - yyb1917 = yyj1917 > l + yyj1949++ + if yyhl1949 { + yyb1949 = yyj1949 > l } else { - yyb1917 = r.CheckBreak() + yyb1949 = r.CheckBreak() } - if yyb1917 { + if yyb1949 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1917-1, "") + z.DecStructFieldNotFound(yyj1949-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -26173,39 +26635,39 @@ func (x *PodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1920 := z.EncBinary() - _ = yym1920 + yym1952 := z.EncBinary() + _ = yym1952 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1921 := !z.EncBinary() - yy2arr1921 := z.EncBasicHandle().StructToArray - var yyq1921 [3]bool - _, _, _ = yysep1921, yyq1921, yy2arr1921 - const yyr1921 bool = false - yyq1921[0] = x.LabelSelector != nil - yyq1921[2] = x.TopologyKey != "" - var yynn1921 int - if yyr1921 || yy2arr1921 { + yysep1953 := !z.EncBinary() + yy2arr1953 := z.EncBasicHandle().StructToArray + var yyq1953 [3]bool + _, _, _ = yysep1953, yyq1953, yy2arr1953 + const yyr1953 bool = false + yyq1953[0] = x.LabelSelector != nil + yyq1953[2] = x.TopologyKey != "" + var yynn1953 int + if yyr1953 || yy2arr1953 { r.EncodeArrayStart(3) } else { - yynn1921 = 1 - for _, b := range yyq1921 { + yynn1953 = 1 + for _, b := range yyq1953 { if b { - yynn1921++ + yynn1953++ } } - r.EncodeMapStart(yynn1921) - yynn1921 = 0 + r.EncodeMapStart(yynn1953) + yynn1953 = 0 } - if yyr1921 || yy2arr1921 { + if yyr1953 || yy2arr1953 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1921[0] { + if yyq1953[0] { if x.LabelSelector == nil { r.EncodeNil() } else { - yym1923 := z.EncBinary() - _ = yym1923 + yym1955 := z.EncBinary() + _ = yym1955 if false { } else if z.HasExtensions() && z.EncExt(x.LabelSelector) { } else { @@ -26216,15 +26678,15 @@ func (x *PodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1921[0] { + if yyq1953[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("labelSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.LabelSelector == nil { r.EncodeNil() } else { - yym1924 := z.EncBinary() - _ = yym1924 + yym1956 := z.EncBinary() + _ = yym1956 if false { } else if z.HasExtensions() && z.EncExt(x.LabelSelector) { } else { @@ -26233,13 +26695,13 @@ func (x *PodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1921 || yy2arr1921 { + if yyr1953 || yy2arr1953 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Namespaces == nil { r.EncodeNil() } else { - yym1926 := z.EncBinary() - _ = yym1926 + yym1958 := z.EncBinary() + _ = yym1958 if false { } else { z.F.EncSliceStringV(x.Namespaces, false, e) @@ -26252,19 +26714,19 @@ func (x *PodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x.Namespaces == nil { r.EncodeNil() } else { - yym1927 := z.EncBinary() - _ = yym1927 + yym1959 := z.EncBinary() + _ = yym1959 if false { } else { z.F.EncSliceStringV(x.Namespaces, false, e) } } } - if yyr1921 || yy2arr1921 { + if yyr1953 || yy2arr1953 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1921[2] { - yym1929 := z.EncBinary() - _ = yym1929 + if yyq1953[2] { + yym1961 := z.EncBinary() + _ = yym1961 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TopologyKey)) @@ -26273,19 +26735,19 @@ func (x *PodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1921[2] { + if yyq1953[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("topologyKey")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1930 := z.EncBinary() - _ = yym1930 + yym1962 := z.EncBinary() + _ = yym1962 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TopologyKey)) } } } - if yyr1921 || yy2arr1921 { + if yyr1953 || yy2arr1953 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26298,25 +26760,25 @@ func (x *PodAffinityTerm) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1931 := z.DecBinary() - _ = yym1931 + yym1963 := z.DecBinary() + _ = yym1963 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1932 := r.ContainerType() - if yyct1932 == codecSelferValueTypeMap1234 { - yyl1932 := r.ReadMapStart() - if yyl1932 == 0 { + yyct1964 := r.ContainerType() + if yyct1964 == codecSelferValueTypeMap1234 { + yyl1964 := r.ReadMapStart() + if yyl1964 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1932, d) + x.codecDecodeSelfFromMap(yyl1964, d) } - } else if yyct1932 == codecSelferValueTypeArray1234 { - yyl1932 := r.ReadArrayStart() - if yyl1932 == 0 { + } else if yyct1964 == codecSelferValueTypeArray1234 { + yyl1964 := r.ReadArrayStart() + if yyl1964 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1932, d) + x.codecDecodeSelfFromArray(yyl1964, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26328,12 +26790,12 @@ func (x *PodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1933Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1933Slc - var yyhl1933 bool = l >= 0 - for yyj1933 := 0; ; yyj1933++ { - if yyhl1933 { - if yyj1933 >= l { + var yys1965Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1965Slc + var yyhl1965 bool = l >= 0 + for yyj1965 := 0; ; yyj1965++ { + if yyhl1965 { + if yyj1965 >= l { break } } else { @@ -26342,10 +26804,10 @@ func (x *PodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1933Slc = r.DecodeBytes(yys1933Slc, true, true) - yys1933 := string(yys1933Slc) + yys1965Slc = r.DecodeBytes(yys1965Slc, true, true) + yys1965 := string(yys1965Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1933 { + switch yys1965 { case "labelSelector": if r.TryDecodeAsNil() { if x.LabelSelector != nil { @@ -26355,8 +26817,8 @@ func (x *PodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.LabelSelector == nil { x.LabelSelector = new(pkg2_v1.LabelSelector) } - yym1935 := z.DecBinary() - _ = yym1935 + yym1967 := z.DecBinary() + _ = yym1967 if false { } else if z.HasExtensions() && z.DecExt(x.LabelSelector) { } else { @@ -26367,12 +26829,12 @@ func (x *PodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Namespaces = nil } else { - yyv1936 := &x.Namespaces - yym1937 := z.DecBinary() - _ = yym1937 + yyv1968 := &x.Namespaces + yym1969 := z.DecBinary() + _ = yym1969 if false { } else { - z.F.DecSliceStringX(yyv1936, false, d) + z.F.DecSliceStringX(yyv1968, false, d) } } case "topologyKey": @@ -26382,9 +26844,9 @@ func (x *PodAffinityTerm) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TopologyKey = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1933) - } // end switch yys1933 - } // end for yyj1933 + z.DecStructFieldNotFound(-1, yys1965) + } // end switch yys1965 + } // end for yyj1965 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -26392,16 +26854,16 @@ func (x *PodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1939 int - var yyb1939 bool - var yyhl1939 bool = l >= 0 - yyj1939++ - if yyhl1939 { - yyb1939 = yyj1939 > l + var yyj1971 int + var yyb1971 bool + var yyhl1971 bool = l >= 0 + yyj1971++ + if yyhl1971 { + yyb1971 = yyj1971 > l } else { - yyb1939 = r.CheckBreak() + yyb1971 = r.CheckBreak() } - if yyb1939 { + if yyb1971 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26414,21 +26876,21 @@ func (x *PodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.LabelSelector == nil { x.LabelSelector = new(pkg2_v1.LabelSelector) } - yym1941 := z.DecBinary() - _ = yym1941 + yym1973 := z.DecBinary() + _ = yym1973 if false { } else if z.HasExtensions() && z.DecExt(x.LabelSelector) { } else { z.DecFallback(x.LabelSelector, false) } } - yyj1939++ - if yyhl1939 { - yyb1939 = yyj1939 > l + yyj1971++ + if yyhl1971 { + yyb1971 = yyj1971 > l } else { - yyb1939 = r.CheckBreak() + yyb1971 = r.CheckBreak() } - if yyb1939 { + if yyb1971 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26436,21 +26898,21 @@ func (x *PodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Namespaces = nil } else { - yyv1942 := &x.Namespaces - yym1943 := z.DecBinary() - _ = yym1943 + yyv1974 := &x.Namespaces + yym1975 := z.DecBinary() + _ = yym1975 if false { } else { - z.F.DecSliceStringX(yyv1942, false, d) + z.F.DecSliceStringX(yyv1974, false, d) } } - yyj1939++ - if yyhl1939 { - yyb1939 = yyj1939 > l + yyj1971++ + if yyhl1971 { + yyb1971 = yyj1971 > l } else { - yyb1939 = r.CheckBreak() + yyb1971 = r.CheckBreak() } - if yyb1939 { + if yyb1971 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26461,17 +26923,17 @@ func (x *PodAffinityTerm) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.TopologyKey = string(r.DecodeString()) } for { - yyj1939++ - if yyhl1939 { - yyb1939 = yyj1939 > l + yyj1971++ + if yyhl1971 { + yyb1971 = yyj1971 > l } else { - yyb1939 = r.CheckBreak() + yyb1971 = r.CheckBreak() } - if yyb1939 { + if yyb1971 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1939-1, "") + z.DecStructFieldNotFound(yyj1971-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -26483,34 +26945,34 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1945 := z.EncBinary() - _ = yym1945 + yym1977 := z.EncBinary() + _ = yym1977 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1946 := !z.EncBinary() - yy2arr1946 := z.EncBasicHandle().StructToArray - var yyq1946 [2]bool - _, _, _ = yysep1946, yyq1946, yy2arr1946 - const yyr1946 bool = false - yyq1946[0] = x.RequiredDuringSchedulingIgnoredDuringExecution != nil - yyq1946[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 - var yynn1946 int - if yyr1946 || yy2arr1946 { + yysep1978 := !z.EncBinary() + yy2arr1978 := z.EncBasicHandle().StructToArray + var yyq1978 [2]bool + _, _, _ = yysep1978, yyq1978, yy2arr1978 + const yyr1978 bool = false + yyq1978[0] = x.RequiredDuringSchedulingIgnoredDuringExecution != nil + yyq1978[1] = len(x.PreferredDuringSchedulingIgnoredDuringExecution) != 0 + var yynn1978 int + if yyr1978 || yy2arr1978 { r.EncodeArrayStart(2) } else { - yynn1946 = 0 - for _, b := range yyq1946 { + yynn1978 = 0 + for _, b := range yyq1978 { if b { - yynn1946++ + yynn1978++ } } - r.EncodeMapStart(yynn1946) - yynn1946 = 0 + r.EncodeMapStart(yynn1978) + yynn1978 = 0 } - if yyr1946 || yy2arr1946 { + if yyr1978 || yy2arr1978 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1946[0] { + if yyq1978[0] { if x.RequiredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { @@ -26520,7 +26982,7 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1946[0] { + if yyq1978[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requiredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -26531,14 +26993,14 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1946 || yy2arr1946 { + if yyr1978 || yy2arr1978 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1946[1] { + if yyq1978[1] { if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1949 := z.EncBinary() - _ = yym1949 + yym1981 := z.EncBinary() + _ = yym1981 if false { } else { h.encSlicePreferredSchedulingTerm(([]PreferredSchedulingTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -26548,15 +27010,15 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1946[1] { + if yyq1978[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preferredDuringSchedulingIgnoredDuringExecution")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PreferredDuringSchedulingIgnoredDuringExecution == nil { r.EncodeNil() } else { - yym1950 := z.EncBinary() - _ = yym1950 + yym1982 := z.EncBinary() + _ = yym1982 if false { } else { h.encSlicePreferredSchedulingTerm(([]PreferredSchedulingTerm)(x.PreferredDuringSchedulingIgnoredDuringExecution), e) @@ -26564,7 +27026,7 @@ func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1946 || yy2arr1946 { + if yyr1978 || yy2arr1978 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26577,25 +27039,25 @@ func (x *NodeAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1951 := z.DecBinary() - _ = yym1951 + yym1983 := z.DecBinary() + _ = yym1983 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1952 := r.ContainerType() - if yyct1952 == codecSelferValueTypeMap1234 { - yyl1952 := r.ReadMapStart() - if yyl1952 == 0 { + yyct1984 := r.ContainerType() + if yyct1984 == codecSelferValueTypeMap1234 { + yyl1984 := r.ReadMapStart() + if yyl1984 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1952, d) + x.codecDecodeSelfFromMap(yyl1984, d) } - } else if yyct1952 == codecSelferValueTypeArray1234 { - yyl1952 := r.ReadArrayStart() - if yyl1952 == 0 { + } else if yyct1984 == codecSelferValueTypeArray1234 { + yyl1984 := r.ReadArrayStart() + if yyl1984 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1952, d) + x.codecDecodeSelfFromArray(yyl1984, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26607,12 +27069,12 @@ func (x *NodeAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1953Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1953Slc - var yyhl1953 bool = l >= 0 - for yyj1953 := 0; ; yyj1953++ { - if yyhl1953 { - if yyj1953 >= l { + var yys1985Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1985Slc + var yyhl1985 bool = l >= 0 + for yyj1985 := 0; ; yyj1985++ { + if yyhl1985 { + if yyj1985 >= l { break } } else { @@ -26621,10 +27083,10 @@ func (x *NodeAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1953Slc = r.DecodeBytes(yys1953Slc, true, true) - yys1953 := string(yys1953Slc) + yys1985Slc = r.DecodeBytes(yys1985Slc, true, true) + yys1985 := string(yys1985Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1953 { + switch yys1985 { case "requiredDuringSchedulingIgnoredDuringExecution": if r.TryDecodeAsNil() { if x.RequiredDuringSchedulingIgnoredDuringExecution != nil { @@ -26640,18 +27102,18 @@ func (x *NodeAffinity) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1955 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1956 := z.DecBinary() - _ = yym1956 + yyv1987 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1988 := z.DecBinary() + _ = yym1988 if false { } else { - h.decSlicePreferredSchedulingTerm((*[]PreferredSchedulingTerm)(yyv1955), d) + h.decSlicePreferredSchedulingTerm((*[]PreferredSchedulingTerm)(yyv1987), d) } } default: - z.DecStructFieldNotFound(-1, yys1953) - } // end switch yys1953 - } // end for yyj1953 + z.DecStructFieldNotFound(-1, yys1985) + } // end switch yys1985 + } // end for yyj1985 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -26659,16 +27121,16 @@ func (x *NodeAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1957 int - var yyb1957 bool - var yyhl1957 bool = l >= 0 - yyj1957++ - if yyhl1957 { - yyb1957 = yyj1957 > l + var yyj1989 int + var yyb1989 bool + var yyhl1989 bool = l >= 0 + yyj1989++ + if yyhl1989 { + yyb1989 = yyj1989 > l } else { - yyb1957 = r.CheckBreak() + yyb1989 = r.CheckBreak() } - if yyb1957 { + if yyb1989 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26683,13 +27145,13 @@ func (x *NodeAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.RequiredDuringSchedulingIgnoredDuringExecution.CodecDecodeSelf(d) } - yyj1957++ - if yyhl1957 { - yyb1957 = yyj1957 > l + yyj1989++ + if yyhl1989 { + yyb1989 = yyj1989 > l } else { - yyb1957 = r.CheckBreak() + yyb1989 = r.CheckBreak() } - if yyb1957 { + if yyb1989 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26697,26 +27159,26 @@ func (x *NodeAffinity) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PreferredDuringSchedulingIgnoredDuringExecution = nil } else { - yyv1959 := &x.PreferredDuringSchedulingIgnoredDuringExecution - yym1960 := z.DecBinary() - _ = yym1960 + yyv1991 := &x.PreferredDuringSchedulingIgnoredDuringExecution + yym1992 := z.DecBinary() + _ = yym1992 if false { } else { - h.decSlicePreferredSchedulingTerm((*[]PreferredSchedulingTerm)(yyv1959), d) + h.decSlicePreferredSchedulingTerm((*[]PreferredSchedulingTerm)(yyv1991), d) } } for { - yyj1957++ - if yyhl1957 { - yyb1957 = yyj1957 > l + yyj1989++ + if yyhl1989 { + yyb1989 = yyj1989 > l } else { - yyb1957 = r.CheckBreak() + yyb1989 = r.CheckBreak() } - if yyb1957 { + if yyb1989 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1957-1, "") + z.DecStructFieldNotFound(yyj1989-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -26728,33 +27190,33 @@ func (x *PreferredSchedulingTerm) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1961 := z.EncBinary() - _ = yym1961 + yym1993 := z.EncBinary() + _ = yym1993 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1962 := !z.EncBinary() - yy2arr1962 := z.EncBasicHandle().StructToArray - var yyq1962 [2]bool - _, _, _ = yysep1962, yyq1962, yy2arr1962 - const yyr1962 bool = false - var yynn1962 int - if yyr1962 || yy2arr1962 { + yysep1994 := !z.EncBinary() + yy2arr1994 := z.EncBasicHandle().StructToArray + var yyq1994 [2]bool + _, _, _ = yysep1994, yyq1994, yy2arr1994 + const yyr1994 bool = false + var yynn1994 int + if yyr1994 || yy2arr1994 { r.EncodeArrayStart(2) } else { - yynn1962 = 2 - for _, b := range yyq1962 { + yynn1994 = 2 + for _, b := range yyq1994 { if b { - yynn1962++ + yynn1994++ } } - r.EncodeMapStart(yynn1962) - yynn1962 = 0 + r.EncodeMapStart(yynn1994) + yynn1994 = 0 } - if yyr1962 || yy2arr1962 { + if yyr1994 || yy2arr1994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1964 := z.EncBinary() - _ = yym1964 + yym1996 := z.EncBinary() + _ = yym1996 if false { } else { r.EncodeInt(int64(x.Weight)) @@ -26763,25 +27225,25 @@ func (x *PreferredSchedulingTerm) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("weight")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1965 := z.EncBinary() - _ = yym1965 + yym1997 := z.EncBinary() + _ = yym1997 if false { } else { r.EncodeInt(int64(x.Weight)) } } - if yyr1962 || yy2arr1962 { + if yyr1994 || yy2arr1994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1967 := &x.Preference - yy1967.CodecEncodeSelf(e) + yy1999 := &x.Preference + yy1999.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preference")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1968 := &x.Preference - yy1968.CodecEncodeSelf(e) + yy2000 := &x.Preference + yy2000.CodecEncodeSelf(e) } - if yyr1962 || yy2arr1962 { + if yyr1994 || yy2arr1994 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26794,25 +27256,25 @@ func (x *PreferredSchedulingTerm) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1969 := z.DecBinary() - _ = yym1969 + yym2001 := z.DecBinary() + _ = yym2001 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1970 := r.ContainerType() - if yyct1970 == codecSelferValueTypeMap1234 { - yyl1970 := r.ReadMapStart() - if yyl1970 == 0 { + yyct2002 := r.ContainerType() + if yyct2002 == codecSelferValueTypeMap1234 { + yyl2002 := r.ReadMapStart() + if yyl2002 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1970, d) + x.codecDecodeSelfFromMap(yyl2002, d) } - } else if yyct1970 == codecSelferValueTypeArray1234 { - yyl1970 := r.ReadArrayStart() - if yyl1970 == 0 { + } else if yyct2002 == codecSelferValueTypeArray1234 { + yyl2002 := r.ReadArrayStart() + if yyl2002 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1970, d) + x.codecDecodeSelfFromArray(yyl2002, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26824,12 +27286,12 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1971Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1971Slc - var yyhl1971 bool = l >= 0 - for yyj1971 := 0; ; yyj1971++ { - if yyhl1971 { - if yyj1971 >= l { + var yys2003Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2003Slc + var yyhl2003 bool = l >= 0 + for yyj2003 := 0; ; yyj2003++ { + if yyhl2003 { + if yyj2003 >= l { break } } else { @@ -26838,10 +27300,10 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1971Slc = r.DecodeBytes(yys1971Slc, true, true) - yys1971 := string(yys1971Slc) + yys2003Slc = r.DecodeBytes(yys2003Slc, true, true) + yys2003 := string(yys2003Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1971 { + switch yys2003 { case "weight": if r.TryDecodeAsNil() { x.Weight = 0 @@ -26852,13 +27314,13 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromMap(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Preference = NodeSelectorTerm{} } else { - yyv1973 := &x.Preference - yyv1973.CodecDecodeSelf(d) + yyv2005 := &x.Preference + yyv2005.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1971) - } // end switch yys1971 - } // end for yyj1971 + z.DecStructFieldNotFound(-1, yys2003) + } // end switch yys2003 + } // end for yyj2003 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -26866,16 +27328,16 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromArray(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1974 int - var yyb1974 bool - var yyhl1974 bool = l >= 0 - yyj1974++ - if yyhl1974 { - yyb1974 = yyj1974 > l + var yyj2006 int + var yyb2006 bool + var yyhl2006 bool = l >= 0 + yyj2006++ + if yyhl2006 { + yyb2006 = yyj2006 > l } else { - yyb1974 = r.CheckBreak() + yyb2006 = r.CheckBreak() } - if yyb1974 { + if yyb2006 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26885,13 +27347,13 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromArray(l int, d *codec1978.D } else { x.Weight = int32(r.DecodeInt(32)) } - yyj1974++ - if yyhl1974 { - yyb1974 = yyj1974 > l + yyj2006++ + if yyhl2006 { + yyb2006 = yyj2006 > l } else { - yyb1974 = r.CheckBreak() + yyb2006 = r.CheckBreak() } - if yyb1974 { + if yyb2006 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26899,21 +27361,21 @@ func (x *PreferredSchedulingTerm) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Preference = NodeSelectorTerm{} } else { - yyv1976 := &x.Preference - yyv1976.CodecDecodeSelf(d) + yyv2008 := &x.Preference + yyv2008.CodecDecodeSelf(d) } for { - yyj1974++ - if yyhl1974 { - yyb1974 = yyj1974 > l + yyj2006++ + if yyhl2006 { + yyb2006 = yyj2006 > l } else { - yyb1974 = r.CheckBreak() + yyb2006 = r.CheckBreak() } - if yyb1974 { + if yyb2006 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1974-1, "") + z.DecStructFieldNotFound(yyj2006-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -26925,34 +27387,34 @@ func (x *Taint) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1977 := z.EncBinary() - _ = yym1977 + yym2009 := z.EncBinary() + _ = yym2009 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1978 := !z.EncBinary() - yy2arr1978 := z.EncBasicHandle().StructToArray - var yyq1978 [3]bool - _, _, _ = yysep1978, yyq1978, yy2arr1978 - const yyr1978 bool = false - yyq1978[1] = x.Value != "" - var yynn1978 int - if yyr1978 || yy2arr1978 { + yysep2010 := !z.EncBinary() + yy2arr2010 := z.EncBasicHandle().StructToArray + var yyq2010 [3]bool + _, _, _ = yysep2010, yyq2010, yy2arr2010 + const yyr2010 bool = false + yyq2010[1] = x.Value != "" + var yynn2010 int + if yyr2010 || yy2arr2010 { r.EncodeArrayStart(3) } else { - yynn1978 = 2 - for _, b := range yyq1978 { + yynn2010 = 2 + for _, b := range yyq2010 { if b { - yynn1978++ + yynn2010++ } } - r.EncodeMapStart(yynn1978) - yynn1978 = 0 + r.EncodeMapStart(yynn2010) + yynn2010 = 0 } - if yyr1978 || yy2arr1978 { + if yyr2010 || yy2arr2010 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1980 := z.EncBinary() - _ = yym1980 + yym2012 := z.EncBinary() + _ = yym2012 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) @@ -26961,18 +27423,18 @@ func (x *Taint) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("key")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1981 := z.EncBinary() - _ = yym1981 + yym2013 := z.EncBinary() + _ = yym2013 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) } } - if yyr1978 || yy2arr1978 { + if yyr2010 || yy2arr2010 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1978[1] { - yym1983 := z.EncBinary() - _ = yym1983 + if yyq2010[1] { + yym2015 := z.EncBinary() + _ = yym2015 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) @@ -26981,19 +27443,19 @@ func (x *Taint) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1978[1] { + if yyq2010[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("value")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1984 := z.EncBinary() - _ = yym1984 + yym2016 := z.EncBinary() + _ = yym2016 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) } } } - if yyr1978 || yy2arr1978 { + if yyr2010 || yy2arr2010 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Effect.CodecEncodeSelf(e) } else { @@ -27002,7 +27464,7 @@ func (x *Taint) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Effect.CodecEncodeSelf(e) } - if yyr1978 || yy2arr1978 { + if yyr2010 || yy2arr2010 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -27015,25 +27477,25 @@ func (x *Taint) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1986 := z.DecBinary() - _ = yym1986 + yym2018 := z.DecBinary() + _ = yym2018 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1987 := r.ContainerType() - if yyct1987 == codecSelferValueTypeMap1234 { - yyl1987 := r.ReadMapStart() - if yyl1987 == 0 { + yyct2019 := r.ContainerType() + if yyct2019 == codecSelferValueTypeMap1234 { + yyl2019 := r.ReadMapStart() + if yyl2019 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1987, d) + x.codecDecodeSelfFromMap(yyl2019, d) } - } else if yyct1987 == codecSelferValueTypeArray1234 { - yyl1987 := r.ReadArrayStart() - if yyl1987 == 0 { + } else if yyct2019 == codecSelferValueTypeArray1234 { + yyl2019 := r.ReadArrayStart() + if yyl2019 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1987, d) + x.codecDecodeSelfFromArray(yyl2019, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -27045,12 +27507,12 @@ func (x *Taint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1988Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1988Slc - var yyhl1988 bool = l >= 0 - for yyj1988 := 0; ; yyj1988++ { - if yyhl1988 { - if yyj1988 >= l { + var yys2020Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2020Slc + var yyhl2020 bool = l >= 0 + for yyj2020 := 0; ; yyj2020++ { + if yyhl2020 { + if yyj2020 >= l { break } } else { @@ -27059,10 +27521,10 @@ func (x *Taint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1988Slc = r.DecodeBytes(yys1988Slc, true, true) - yys1988 := string(yys1988Slc) + yys2020Slc = r.DecodeBytes(yys2020Slc, true, true) + yys2020 := string(yys2020Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1988 { + switch yys2020 { case "key": if r.TryDecodeAsNil() { x.Key = "" @@ -27082,9 +27544,9 @@ func (x *Taint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Effect = TaintEffect(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1988) - } // end switch yys1988 - } // end for yyj1988 + z.DecStructFieldNotFound(-1, yys2020) + } // end switch yys2020 + } // end for yyj2020 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -27092,16 +27554,16 @@ func (x *Taint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1992 int - var yyb1992 bool - var yyhl1992 bool = l >= 0 - yyj1992++ - if yyhl1992 { - yyb1992 = yyj1992 > l + var yyj2024 int + var yyb2024 bool + var yyhl2024 bool = l >= 0 + yyj2024++ + if yyhl2024 { + yyb2024 = yyj2024 > l } else { - yyb1992 = r.CheckBreak() + yyb2024 = r.CheckBreak() } - if yyb1992 { + if yyb2024 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27111,13 +27573,13 @@ func (x *Taint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Key = string(r.DecodeString()) } - yyj1992++ - if yyhl1992 { - yyb1992 = yyj1992 > l + yyj2024++ + if yyhl2024 { + yyb2024 = yyj2024 > l } else { - yyb1992 = r.CheckBreak() + yyb2024 = r.CheckBreak() } - if yyb1992 { + if yyb2024 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27127,13 +27589,13 @@ func (x *Taint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Value = string(r.DecodeString()) } - yyj1992++ - if yyhl1992 { - yyb1992 = yyj1992 > l + yyj2024++ + if yyhl2024 { + yyb2024 = yyj2024 > l } else { - yyb1992 = r.CheckBreak() + yyb2024 = r.CheckBreak() } - if yyb1992 { + if yyb2024 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27144,17 +27606,17 @@ func (x *Taint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Effect = TaintEffect(r.DecodeString()) } for { - yyj1992++ - if yyhl1992 { - yyb1992 = yyj1992 > l + yyj2024++ + if yyhl2024 { + yyb2024 = yyj2024 > l } else { - yyb1992 = r.CheckBreak() + yyb2024 = r.CheckBreak() } - if yyb1992 { + if yyb2024 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1992-1, "") + z.DecStructFieldNotFound(yyj2024-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -27163,8 +27625,8 @@ func (x TaintEffect) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1996 := z.EncBinary() - _ = yym1996 + yym2028 := z.EncBinary() + _ = yym2028 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -27176,8 +27638,8 @@ func (x *TaintEffect) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1997 := z.DecBinary() - _ = yym1997 + yym2029 := z.DecBinary() + _ = yym2029 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -27192,38 +27654,38 @@ func (x *Toleration) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1998 := z.EncBinary() - _ = yym1998 + yym2030 := z.EncBinary() + _ = yym2030 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1999 := !z.EncBinary() - yy2arr1999 := z.EncBasicHandle().StructToArray - var yyq1999 [4]bool - _, _, _ = yysep1999, yyq1999, yy2arr1999 - const yyr1999 bool = false - yyq1999[0] = x.Key != "" - yyq1999[1] = x.Operator != "" - yyq1999[2] = x.Value != "" - yyq1999[3] = x.Effect != "" - var yynn1999 int - if yyr1999 || yy2arr1999 { + yysep2031 := !z.EncBinary() + yy2arr2031 := z.EncBasicHandle().StructToArray + var yyq2031 [4]bool + _, _, _ = yysep2031, yyq2031, yy2arr2031 + const yyr2031 bool = false + yyq2031[0] = x.Key != "" + yyq2031[1] = x.Operator != "" + yyq2031[2] = x.Value != "" + yyq2031[3] = x.Effect != "" + var yynn2031 int + if yyr2031 || yy2arr2031 { r.EncodeArrayStart(4) } else { - yynn1999 = 0 - for _, b := range yyq1999 { + yynn2031 = 0 + for _, b := range yyq2031 { if b { - yynn1999++ + yynn2031++ } } - r.EncodeMapStart(yynn1999) - yynn1999 = 0 + r.EncodeMapStart(yynn2031) + yynn2031 = 0 } - if yyr1999 || yy2arr1999 { + if yyr2031 || yy2arr2031 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1999[0] { - yym2001 := z.EncBinary() - _ = yym2001 + if yyq2031[0] { + yym2033 := z.EncBinary() + _ = yym2033 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) @@ -27232,38 +27694,38 @@ func (x *Toleration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1999[0] { + if yyq2031[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("key")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2002 := z.EncBinary() - _ = yym2002 + yym2034 := z.EncBinary() + _ = yym2034 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Key)) } } } - if yyr1999 || yy2arr1999 { + if yyr2031 || yy2arr2031 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1999[1] { + if yyq2031[1] { x.Operator.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1999[1] { + if yyq2031[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("operator")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Operator.CodecEncodeSelf(e) } } - if yyr1999 || yy2arr1999 { + if yyr2031 || yy2arr2031 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1999[2] { - yym2005 := z.EncBinary() - _ = yym2005 + if yyq2031[2] { + yym2037 := z.EncBinary() + _ = yym2037 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) @@ -27272,34 +27734,34 @@ func (x *Toleration) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1999[2] { + if yyq2031[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("value")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2006 := z.EncBinary() - _ = yym2006 + yym2038 := z.EncBinary() + _ = yym2038 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) } } } - if yyr1999 || yy2arr1999 { + if yyr2031 || yy2arr2031 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1999[3] { + if yyq2031[3] { x.Effect.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1999[3] { + if yyq2031[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("effect")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Effect.CodecEncodeSelf(e) } } - if yyr1999 || yy2arr1999 { + if yyr2031 || yy2arr2031 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -27312,25 +27774,25 @@ func (x *Toleration) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2008 := z.DecBinary() - _ = yym2008 + yym2040 := z.DecBinary() + _ = yym2040 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2009 := r.ContainerType() - if yyct2009 == codecSelferValueTypeMap1234 { - yyl2009 := r.ReadMapStart() - if yyl2009 == 0 { + yyct2041 := r.ContainerType() + if yyct2041 == codecSelferValueTypeMap1234 { + yyl2041 := r.ReadMapStart() + if yyl2041 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2009, d) + x.codecDecodeSelfFromMap(yyl2041, d) } - } else if yyct2009 == codecSelferValueTypeArray1234 { - yyl2009 := r.ReadArrayStart() - if yyl2009 == 0 { + } else if yyct2041 == codecSelferValueTypeArray1234 { + yyl2041 := r.ReadArrayStart() + if yyl2041 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2009, d) + x.codecDecodeSelfFromArray(yyl2041, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -27342,12 +27804,12 @@ func (x *Toleration) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2010Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2010Slc - var yyhl2010 bool = l >= 0 - for yyj2010 := 0; ; yyj2010++ { - if yyhl2010 { - if yyj2010 >= l { + var yys2042Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2042Slc + var yyhl2042 bool = l >= 0 + for yyj2042 := 0; ; yyj2042++ { + if yyhl2042 { + if yyj2042 >= l { break } } else { @@ -27356,10 +27818,10 @@ func (x *Toleration) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2010Slc = r.DecodeBytes(yys2010Slc, true, true) - yys2010 := string(yys2010Slc) + yys2042Slc = r.DecodeBytes(yys2042Slc, true, true) + yys2042 := string(yys2042Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2010 { + switch yys2042 { case "key": if r.TryDecodeAsNil() { x.Key = "" @@ -27385,9 +27847,9 @@ func (x *Toleration) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Effect = TaintEffect(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2010) - } // end switch yys2010 - } // end for yyj2010 + z.DecStructFieldNotFound(-1, yys2042) + } // end switch yys2042 + } // end for yyj2042 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -27395,16 +27857,16 @@ func (x *Toleration) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2015 int - var yyb2015 bool - var yyhl2015 bool = l >= 0 - yyj2015++ - if yyhl2015 { - yyb2015 = yyj2015 > l + var yyj2047 int + var yyb2047 bool + var yyhl2047 bool = l >= 0 + yyj2047++ + if yyhl2047 { + yyb2047 = yyj2047 > l } else { - yyb2015 = r.CheckBreak() + yyb2047 = r.CheckBreak() } - if yyb2015 { + if yyb2047 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27414,13 +27876,13 @@ func (x *Toleration) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Key = string(r.DecodeString()) } - yyj2015++ - if yyhl2015 { - yyb2015 = yyj2015 > l + yyj2047++ + if yyhl2047 { + yyb2047 = yyj2047 > l } else { - yyb2015 = r.CheckBreak() + yyb2047 = r.CheckBreak() } - if yyb2015 { + if yyb2047 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27430,13 +27892,13 @@ func (x *Toleration) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Operator = TolerationOperator(r.DecodeString()) } - yyj2015++ - if yyhl2015 { - yyb2015 = yyj2015 > l + yyj2047++ + if yyhl2047 { + yyb2047 = yyj2047 > l } else { - yyb2015 = r.CheckBreak() + yyb2047 = r.CheckBreak() } - if yyb2015 { + if yyb2047 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27446,13 +27908,13 @@ func (x *Toleration) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Value = string(r.DecodeString()) } - yyj2015++ - if yyhl2015 { - yyb2015 = yyj2015 > l + yyj2047++ + if yyhl2047 { + yyb2047 = yyj2047 > l } else { - yyb2015 = r.CheckBreak() + yyb2047 = r.CheckBreak() } - if yyb2015 { + if yyb2047 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27463,17 +27925,17 @@ func (x *Toleration) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Effect = TaintEffect(r.DecodeString()) } for { - yyj2015++ - if yyhl2015 { - yyb2015 = yyj2015 > l + yyj2047++ + if yyhl2047 { + yyb2047 = yyj2047 > l } else { - yyb2015 = r.CheckBreak() + yyb2047 = r.CheckBreak() } - if yyb2015 { + if yyb2047 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2015-1, "") + z.DecStructFieldNotFound(yyj2047-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -27482,8 +27944,8 @@ func (x TolerationOperator) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2020 := z.EncBinary() - _ = yym2020 + yym2052 := z.EncBinary() + _ = yym2052 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -27495,8 +27957,8 @@ func (x *TolerationOperator) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2021 := z.DecBinary() - _ = yym2021 + yym2053 := z.DecBinary() + _ = yym2053 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -27511,54 +27973,54 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2022 := z.EncBinary() - _ = yym2022 + yym2054 := z.EncBinary() + _ = yym2054 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2023 := !z.EncBinary() - yy2arr2023 := z.EncBasicHandle().StructToArray - var yyq2023 [18]bool - _, _, _ = yysep2023, yyq2023, yy2arr2023 - const yyr2023 bool = false - yyq2023[0] = len(x.Volumes) != 0 - yyq2023[2] = x.RestartPolicy != "" - yyq2023[3] = x.TerminationGracePeriodSeconds != nil - yyq2023[4] = x.ActiveDeadlineSeconds != nil - yyq2023[5] = x.DNSPolicy != "" - yyq2023[6] = len(x.NodeSelector) != 0 - yyq2023[7] = x.ServiceAccountName != "" - yyq2023[8] = x.DeprecatedServiceAccount != "" - yyq2023[9] = x.NodeName != "" - yyq2023[10] = x.HostNetwork != false - yyq2023[11] = x.HostPID != false - yyq2023[12] = x.HostIPC != false - yyq2023[13] = x.SecurityContext != nil - yyq2023[14] = len(x.ImagePullSecrets) != 0 - yyq2023[15] = x.Hostname != "" - yyq2023[16] = x.Subdomain != "" - yyq2023[17] = x.Affinity != nil - var yynn2023 int - if yyr2023 || yy2arr2023 { + yysep2055 := !z.EncBinary() + yy2arr2055 := z.EncBasicHandle().StructToArray + var yyq2055 [18]bool + _, _, _ = yysep2055, yyq2055, yy2arr2055 + const yyr2055 bool = false + yyq2055[0] = len(x.Volumes) != 0 + yyq2055[2] = x.RestartPolicy != "" + yyq2055[3] = x.TerminationGracePeriodSeconds != nil + yyq2055[4] = x.ActiveDeadlineSeconds != nil + yyq2055[5] = x.DNSPolicy != "" + yyq2055[6] = len(x.NodeSelector) != 0 + yyq2055[7] = x.ServiceAccountName != "" + yyq2055[8] = x.DeprecatedServiceAccount != "" + yyq2055[9] = x.NodeName != "" + yyq2055[10] = x.HostNetwork != false + yyq2055[11] = x.HostPID != false + yyq2055[12] = x.HostIPC != false + yyq2055[13] = x.SecurityContext != nil + yyq2055[14] = len(x.ImagePullSecrets) != 0 + yyq2055[15] = x.Hostname != "" + yyq2055[16] = x.Subdomain != "" + yyq2055[17] = x.Affinity != nil + var yynn2055 int + if yyr2055 || yy2arr2055 { r.EncodeArrayStart(18) } else { - yynn2023 = 1 - for _, b := range yyq2023 { + yynn2055 = 1 + for _, b := range yyq2055 { if b { - yynn2023++ + yynn2055++ } } - r.EncodeMapStart(yynn2023) - yynn2023 = 0 + r.EncodeMapStart(yynn2055) + yynn2055 = 0 } - if yyr2023 || yy2arr2023 { + if yyr2055 || yy2arr2055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2023[0] { + if yyq2055[0] { if x.Volumes == nil { r.EncodeNil() } else { - yym2025 := z.EncBinary() - _ = yym2025 + yym2057 := z.EncBinary() + _ = yym2057 if false { } else { h.encSliceVolume(([]Volume)(x.Volumes), e) @@ -27568,15 +28030,15 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2023[0] { + if yyq2055[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Volumes == nil { r.EncodeNil() } else { - yym2026 := z.EncBinary() - _ = yym2026 + yym2058 := z.EncBinary() + _ = yym2058 if false { } else { h.encSliceVolume(([]Volume)(x.Volumes), e) @@ -27584,13 +28046,13 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2023 || yy2arr2023 { + if yyr2055 || yy2arr2055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Containers == nil { r.EncodeNil() } else { - yym2028 := z.EncBinary() - _ = yym2028 + yym2060 := z.EncBinary() + _ = yym2060 if false { } else { h.encSliceContainer(([]Container)(x.Containers), e) @@ -27603,122 +28065,122 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Containers == nil { r.EncodeNil() } else { - yym2029 := z.EncBinary() - _ = yym2029 + yym2061 := z.EncBinary() + _ = yym2061 if false { } else { h.encSliceContainer(([]Container)(x.Containers), e) } } } - if yyr2023 || yy2arr2023 { + if yyr2055 || yy2arr2055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2023[2] { + if yyq2055[2] { x.RestartPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2023[2] { + if yyq2055[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("restartPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.RestartPolicy.CodecEncodeSelf(e) } } - if yyr2023 || yy2arr2023 { + if yyr2055 || yy2arr2055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2023[3] { + if yyq2055[3] { if x.TerminationGracePeriodSeconds == nil { r.EncodeNil() } else { - yy2032 := *x.TerminationGracePeriodSeconds - yym2033 := z.EncBinary() - _ = yym2033 + yy2064 := *x.TerminationGracePeriodSeconds + yym2065 := z.EncBinary() + _ = yym2065 if false { } else { - r.EncodeInt(int64(yy2032)) + r.EncodeInt(int64(yy2064)) } } } else { r.EncodeNil() } } else { - if yyq2023[3] { + if yyq2055[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminationGracePeriodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TerminationGracePeriodSeconds == nil { r.EncodeNil() } else { - yy2034 := *x.TerminationGracePeriodSeconds - yym2035 := z.EncBinary() - _ = yym2035 + yy2066 := *x.TerminationGracePeriodSeconds + yym2067 := z.EncBinary() + _ = yym2067 if false { } else { - r.EncodeInt(int64(yy2034)) + r.EncodeInt(int64(yy2066)) } } } } - if yyr2023 || yy2arr2023 { + if yyr2055 || yy2arr2055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2023[4] { + if yyq2055[4] { if x.ActiveDeadlineSeconds == nil { r.EncodeNil() } else { - yy2037 := *x.ActiveDeadlineSeconds - yym2038 := z.EncBinary() - _ = yym2038 + yy2069 := *x.ActiveDeadlineSeconds + yym2070 := z.EncBinary() + _ = yym2070 if false { } else { - r.EncodeInt(int64(yy2037)) + r.EncodeInt(int64(yy2069)) } } } else { r.EncodeNil() } } else { - if yyq2023[4] { + if yyq2055[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("activeDeadlineSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ActiveDeadlineSeconds == nil { r.EncodeNil() } else { - yy2039 := *x.ActiveDeadlineSeconds - yym2040 := z.EncBinary() - _ = yym2040 + yy2071 := *x.ActiveDeadlineSeconds + yym2072 := z.EncBinary() + _ = yym2072 if false { } else { - r.EncodeInt(int64(yy2039)) + r.EncodeInt(int64(yy2071)) } } } } - if yyr2023 || yy2arr2023 { + if yyr2055 || yy2arr2055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2023[5] { + if yyq2055[5] { x.DNSPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2023[5] { + if yyq2055[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("dnsPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.DNSPolicy.CodecEncodeSelf(e) } } - if yyr2023 || yy2arr2023 { + if yyr2055 || yy2arr2055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2023[6] { + if yyq2055[6] { if x.NodeSelector == nil { r.EncodeNil() } else { - yym2043 := z.EncBinary() - _ = yym2043 + yym2075 := z.EncBinary() + _ = yym2075 if false { } else { z.F.EncMapStringStringV(x.NodeSelector, false, e) @@ -27728,15 +28190,15 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2023[6] { + if yyq2055[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NodeSelector == nil { r.EncodeNil() } else { - yym2044 := z.EncBinary() - _ = yym2044 + yym2076 := z.EncBinary() + _ = yym2076 if false { } else { z.F.EncMapStringStringV(x.NodeSelector, false, e) @@ -27744,11 +28206,11 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2023 || yy2arr2023 { + if yyr2055 || yy2arr2055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2023[7] { - yym2046 := z.EncBinary() - _ = yym2046 + if yyq2055[7] { + yym2078 := z.EncBinary() + _ = yym2078 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ServiceAccountName)) @@ -27757,23 +28219,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2023[7] { + if yyq2055[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("serviceAccountName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2047 := z.EncBinary() - _ = yym2047 + yym2079 := z.EncBinary() + _ = yym2079 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ServiceAccountName)) } } } - if yyr2023 || yy2arr2023 { + if yyr2055 || yy2arr2055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2023[8] { - yym2049 := z.EncBinary() - _ = yym2049 + if yyq2055[8] { + yym2081 := z.EncBinary() + _ = yym2081 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DeprecatedServiceAccount)) @@ -27782,23 +28244,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2023[8] { + if yyq2055[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("serviceAccount")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2050 := z.EncBinary() - _ = yym2050 + yym2082 := z.EncBinary() + _ = yym2082 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DeprecatedServiceAccount)) } } } - if yyr2023 || yy2arr2023 { + if yyr2055 || yy2arr2055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2023[9] { - yym2052 := z.EncBinary() - _ = yym2052 + if yyq2055[9] { + yym2084 := z.EncBinary() + _ = yym2084 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NodeName)) @@ -27807,23 +28269,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2023[9] { + if yyq2055[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2053 := z.EncBinary() - _ = yym2053 + yym2085 := z.EncBinary() + _ = yym2085 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NodeName)) } } } - if yyr2023 || yy2arr2023 { + if yyr2055 || yy2arr2055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2023[10] { - yym2055 := z.EncBinary() - _ = yym2055 + if yyq2055[10] { + yym2087 := z.EncBinary() + _ = yym2087 if false { } else { r.EncodeBool(bool(x.HostNetwork)) @@ -27832,23 +28294,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2023[10] { + if yyq2055[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostNetwork")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2056 := z.EncBinary() - _ = yym2056 + yym2088 := z.EncBinary() + _ = yym2088 if false { } else { r.EncodeBool(bool(x.HostNetwork)) } } } - if yyr2023 || yy2arr2023 { + if yyr2055 || yy2arr2055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2023[11] { - yym2058 := z.EncBinary() - _ = yym2058 + if yyq2055[11] { + yym2090 := z.EncBinary() + _ = yym2090 if false { } else { r.EncodeBool(bool(x.HostPID)) @@ -27857,23 +28319,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2023[11] { + if yyq2055[11] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2059 := z.EncBinary() - _ = yym2059 + yym2091 := z.EncBinary() + _ = yym2091 if false { } else { r.EncodeBool(bool(x.HostPID)) } } } - if yyr2023 || yy2arr2023 { + if yyr2055 || yy2arr2055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2023[12] { - yym2061 := z.EncBinary() - _ = yym2061 + if yyq2055[12] { + yym2093 := z.EncBinary() + _ = yym2093 if false { } else { r.EncodeBool(bool(x.HostIPC)) @@ -27882,21 +28344,21 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2023[12] { + if yyq2055[12] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostIPC")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2062 := z.EncBinary() - _ = yym2062 + yym2094 := z.EncBinary() + _ = yym2094 if false { } else { r.EncodeBool(bool(x.HostIPC)) } } } - if yyr2023 || yy2arr2023 { + if yyr2055 || yy2arr2055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2023[13] { + if yyq2055[13] { if x.SecurityContext == nil { r.EncodeNil() } else { @@ -27906,7 +28368,7 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2023[13] { + if yyq2055[13] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("securityContext")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -27917,14 +28379,14 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2023 || yy2arr2023 { + if yyr2055 || yy2arr2055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2023[14] { + if yyq2055[14] { if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2065 := z.EncBinary() - _ = yym2065 + yym2097 := z.EncBinary() + _ = yym2097 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -27934,15 +28396,15 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2023[14] { + if yyq2055[14] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2066 := z.EncBinary() - _ = yym2066 + yym2098 := z.EncBinary() + _ = yym2098 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -27950,11 +28412,11 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2023 || yy2arr2023 { + if yyr2055 || yy2arr2055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2023[15] { - yym2068 := z.EncBinary() - _ = yym2068 + if yyq2055[15] { + yym2100 := z.EncBinary() + _ = yym2100 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) @@ -27963,23 +28425,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2023[15] { + if yyq2055[15] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostname")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2069 := z.EncBinary() - _ = yym2069 + yym2101 := z.EncBinary() + _ = yym2101 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr2023 || yy2arr2023 { + if yyr2055 || yy2arr2055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2023[16] { - yym2071 := z.EncBinary() - _ = yym2071 + if yyq2055[16] { + yym2103 := z.EncBinary() + _ = yym2103 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Subdomain)) @@ -27988,21 +28450,21 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2023[16] { + if yyq2055[16] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("subdomain")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2072 := z.EncBinary() - _ = yym2072 + yym2104 := z.EncBinary() + _ = yym2104 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Subdomain)) } } } - if yyr2023 || yy2arr2023 { + if yyr2055 || yy2arr2055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2023[17] { + if yyq2055[17] { if x.Affinity == nil { r.EncodeNil() } else { @@ -28012,7 +28474,7 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2023[17] { + if yyq2055[17] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("affinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -28023,7 +28485,7 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2023 || yy2arr2023 { + if yyr2055 || yy2arr2055 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28036,25 +28498,25 @@ func (x *PodSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2074 := z.DecBinary() - _ = yym2074 + yym2106 := z.DecBinary() + _ = yym2106 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2075 := r.ContainerType() - if yyct2075 == codecSelferValueTypeMap1234 { - yyl2075 := r.ReadMapStart() - if yyl2075 == 0 { + yyct2107 := r.ContainerType() + if yyct2107 == codecSelferValueTypeMap1234 { + yyl2107 := r.ReadMapStart() + if yyl2107 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2075, d) + x.codecDecodeSelfFromMap(yyl2107, d) } - } else if yyct2075 == codecSelferValueTypeArray1234 { - yyl2075 := r.ReadArrayStart() - if yyl2075 == 0 { + } else if yyct2107 == codecSelferValueTypeArray1234 { + yyl2107 := r.ReadArrayStart() + if yyl2107 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2075, d) + x.codecDecodeSelfFromArray(yyl2107, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28066,12 +28528,12 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2076Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2076Slc - var yyhl2076 bool = l >= 0 - for yyj2076 := 0; ; yyj2076++ { - if yyhl2076 { - if yyj2076 >= l { + var yys2108Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2108Slc + var yyhl2108 bool = l >= 0 + for yyj2108 := 0; ; yyj2108++ { + if yyhl2108 { + if yyj2108 >= l { break } } else { @@ -28080,32 +28542,32 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2076Slc = r.DecodeBytes(yys2076Slc, true, true) - yys2076 := string(yys2076Slc) + yys2108Slc = r.DecodeBytes(yys2108Slc, true, true) + yys2108 := string(yys2108Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2076 { + switch yys2108 { case "volumes": if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv2077 := &x.Volumes - yym2078 := z.DecBinary() - _ = yym2078 + yyv2109 := &x.Volumes + yym2110 := z.DecBinary() + _ = yym2110 if false { } else { - h.decSliceVolume((*[]Volume)(yyv2077), d) + h.decSliceVolume((*[]Volume)(yyv2109), d) } } case "containers": if r.TryDecodeAsNil() { x.Containers = nil } else { - yyv2079 := &x.Containers - yym2080 := z.DecBinary() - _ = yym2080 + yyv2111 := &x.Containers + yym2112 := z.DecBinary() + _ = yym2112 if false { } else { - h.decSliceContainer((*[]Container)(yyv2079), d) + h.decSliceContainer((*[]Container)(yyv2111), d) } } case "restartPolicy": @@ -28123,8 +28585,8 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TerminationGracePeriodSeconds == nil { x.TerminationGracePeriodSeconds = new(int64) } - yym2083 := z.DecBinary() - _ = yym2083 + yym2115 := z.DecBinary() + _ = yym2115 if false { } else { *((*int64)(x.TerminationGracePeriodSeconds)) = int64(r.DecodeInt(64)) @@ -28139,8 +28601,8 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.ActiveDeadlineSeconds == nil { x.ActiveDeadlineSeconds = new(int64) } - yym2085 := z.DecBinary() - _ = yym2085 + yym2117 := z.DecBinary() + _ = yym2117 if false { } else { *((*int64)(x.ActiveDeadlineSeconds)) = int64(r.DecodeInt(64)) @@ -28156,12 +28618,12 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeSelector = nil } else { - yyv2087 := &x.NodeSelector - yym2088 := z.DecBinary() - _ = yym2088 + yyv2119 := &x.NodeSelector + yym2120 := z.DecBinary() + _ = yym2120 if false { } else { - z.F.DecMapStringStringX(yyv2087, false, d) + z.F.DecMapStringStringX(yyv2119, false, d) } } case "serviceAccountName": @@ -28215,12 +28677,12 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2096 := &x.ImagePullSecrets - yym2097 := z.DecBinary() - _ = yym2097 + yyv2128 := &x.ImagePullSecrets + yym2129 := z.DecBinary() + _ = yym2129 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2096), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2128), d) } } case "hostname": @@ -28247,9 +28709,9 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Affinity.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2076) - } // end switch yys2076 - } // end for yyj2076 + z.DecStructFieldNotFound(-1, yys2108) + } // end switch yys2108 + } // end for yyj2108 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28257,16 +28719,16 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2101 int - var yyb2101 bool - var yyhl2101 bool = l >= 0 - yyj2101++ - if yyhl2101 { - yyb2101 = yyj2101 > l + var yyj2133 int + var yyb2133 bool + var yyhl2133 bool = l >= 0 + yyj2133++ + if yyhl2133 { + yyb2133 = yyj2133 > l } else { - yyb2101 = r.CheckBreak() + yyb2133 = r.CheckBreak() } - if yyb2101 { + if yyb2133 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28274,21 +28736,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv2102 := &x.Volumes - yym2103 := z.DecBinary() - _ = yym2103 + yyv2134 := &x.Volumes + yym2135 := z.DecBinary() + _ = yym2135 if false { } else { - h.decSliceVolume((*[]Volume)(yyv2102), d) + h.decSliceVolume((*[]Volume)(yyv2134), d) } } - yyj2101++ - if yyhl2101 { - yyb2101 = yyj2101 > l + yyj2133++ + if yyhl2133 { + yyb2133 = yyj2133 > l } else { - yyb2101 = r.CheckBreak() + yyb2133 = r.CheckBreak() } - if yyb2101 { + if yyb2133 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28296,21 +28758,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Containers = nil } else { - yyv2104 := &x.Containers - yym2105 := z.DecBinary() - _ = yym2105 + yyv2136 := &x.Containers + yym2137 := z.DecBinary() + _ = yym2137 if false { } else { - h.decSliceContainer((*[]Container)(yyv2104), d) + h.decSliceContainer((*[]Container)(yyv2136), d) } } - yyj2101++ - if yyhl2101 { - yyb2101 = yyj2101 > l + yyj2133++ + if yyhl2133 { + yyb2133 = yyj2133 > l } else { - yyb2101 = r.CheckBreak() + yyb2133 = r.CheckBreak() } - if yyb2101 { + if yyb2133 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28320,13 +28782,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.RestartPolicy = RestartPolicy(r.DecodeString()) } - yyj2101++ - if yyhl2101 { - yyb2101 = yyj2101 > l + yyj2133++ + if yyhl2133 { + yyb2133 = yyj2133 > l } else { - yyb2101 = r.CheckBreak() + yyb2133 = r.CheckBreak() } - if yyb2101 { + if yyb2133 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28339,20 +28801,20 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TerminationGracePeriodSeconds == nil { x.TerminationGracePeriodSeconds = new(int64) } - yym2108 := z.DecBinary() - _ = yym2108 + yym2140 := z.DecBinary() + _ = yym2140 if false { } else { *((*int64)(x.TerminationGracePeriodSeconds)) = int64(r.DecodeInt(64)) } } - yyj2101++ - if yyhl2101 { - yyb2101 = yyj2101 > l + yyj2133++ + if yyhl2133 { + yyb2133 = yyj2133 > l } else { - yyb2101 = r.CheckBreak() + yyb2133 = r.CheckBreak() } - if yyb2101 { + if yyb2133 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28365,20 +28827,20 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.ActiveDeadlineSeconds == nil { x.ActiveDeadlineSeconds = new(int64) } - yym2110 := z.DecBinary() - _ = yym2110 + yym2142 := z.DecBinary() + _ = yym2142 if false { } else { *((*int64)(x.ActiveDeadlineSeconds)) = int64(r.DecodeInt(64)) } } - yyj2101++ - if yyhl2101 { - yyb2101 = yyj2101 > l + yyj2133++ + if yyhl2133 { + yyb2133 = yyj2133 > l } else { - yyb2101 = r.CheckBreak() + yyb2133 = r.CheckBreak() } - if yyb2101 { + if yyb2133 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28388,13 +28850,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.DNSPolicy = DNSPolicy(r.DecodeString()) } - yyj2101++ - if yyhl2101 { - yyb2101 = yyj2101 > l + yyj2133++ + if yyhl2133 { + yyb2133 = yyj2133 > l } else { - yyb2101 = r.CheckBreak() + yyb2133 = r.CheckBreak() } - if yyb2101 { + if yyb2133 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28402,21 +28864,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeSelector = nil } else { - yyv2112 := &x.NodeSelector - yym2113 := z.DecBinary() - _ = yym2113 + yyv2144 := &x.NodeSelector + yym2145 := z.DecBinary() + _ = yym2145 if false { } else { - z.F.DecMapStringStringX(yyv2112, false, d) + z.F.DecMapStringStringX(yyv2144, false, d) } } - yyj2101++ - if yyhl2101 { - yyb2101 = yyj2101 > l + yyj2133++ + if yyhl2133 { + yyb2133 = yyj2133 > l } else { - yyb2101 = r.CheckBreak() + yyb2133 = r.CheckBreak() } - if yyb2101 { + if yyb2133 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28426,13 +28888,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ServiceAccountName = string(r.DecodeString()) } - yyj2101++ - if yyhl2101 { - yyb2101 = yyj2101 > l + yyj2133++ + if yyhl2133 { + yyb2133 = yyj2133 > l } else { - yyb2101 = r.CheckBreak() + yyb2133 = r.CheckBreak() } - if yyb2101 { + if yyb2133 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28442,13 +28904,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.DeprecatedServiceAccount = string(r.DecodeString()) } - yyj2101++ - if yyhl2101 { - yyb2101 = yyj2101 > l + yyj2133++ + if yyhl2133 { + yyb2133 = yyj2133 > l } else { - yyb2101 = r.CheckBreak() + yyb2133 = r.CheckBreak() } - if yyb2101 { + if yyb2133 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28458,13 +28920,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.NodeName = string(r.DecodeString()) } - yyj2101++ - if yyhl2101 { - yyb2101 = yyj2101 > l + yyj2133++ + if yyhl2133 { + yyb2133 = yyj2133 > l } else { - yyb2101 = r.CheckBreak() + yyb2133 = r.CheckBreak() } - if yyb2101 { + if yyb2133 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28474,13 +28936,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostNetwork = bool(r.DecodeBool()) } - yyj2101++ - if yyhl2101 { - yyb2101 = yyj2101 > l + yyj2133++ + if yyhl2133 { + yyb2133 = yyj2133 > l } else { - yyb2101 = r.CheckBreak() + yyb2133 = r.CheckBreak() } - if yyb2101 { + if yyb2133 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28490,13 +28952,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostPID = bool(r.DecodeBool()) } - yyj2101++ - if yyhl2101 { - yyb2101 = yyj2101 > l + yyj2133++ + if yyhl2133 { + yyb2133 = yyj2133 > l } else { - yyb2101 = r.CheckBreak() + yyb2133 = r.CheckBreak() } - if yyb2101 { + if yyb2133 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28506,13 +28968,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostIPC = bool(r.DecodeBool()) } - yyj2101++ - if yyhl2101 { - yyb2101 = yyj2101 > l + yyj2133++ + if yyhl2133 { + yyb2133 = yyj2133 > l } else { - yyb2101 = r.CheckBreak() + yyb2133 = r.CheckBreak() } - if yyb2101 { + if yyb2133 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28527,13 +28989,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.SecurityContext.CodecDecodeSelf(d) } - yyj2101++ - if yyhl2101 { - yyb2101 = yyj2101 > l + yyj2133++ + if yyhl2133 { + yyb2133 = yyj2133 > l } else { - yyb2101 = r.CheckBreak() + yyb2133 = r.CheckBreak() } - if yyb2101 { + if yyb2133 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28541,21 +29003,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2121 := &x.ImagePullSecrets - yym2122 := z.DecBinary() - _ = yym2122 + yyv2153 := &x.ImagePullSecrets + yym2154 := z.DecBinary() + _ = yym2154 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2121), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2153), d) } } - yyj2101++ - if yyhl2101 { - yyb2101 = yyj2101 > l + yyj2133++ + if yyhl2133 { + yyb2133 = yyj2133 > l } else { - yyb2101 = r.CheckBreak() + yyb2133 = r.CheckBreak() } - if yyb2101 { + if yyb2133 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28565,13 +29027,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Hostname = string(r.DecodeString()) } - yyj2101++ - if yyhl2101 { - yyb2101 = yyj2101 > l + yyj2133++ + if yyhl2133 { + yyb2133 = yyj2133 > l } else { - yyb2101 = r.CheckBreak() + yyb2133 = r.CheckBreak() } - if yyb2101 { + if yyb2133 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28581,13 +29043,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Subdomain = string(r.DecodeString()) } - yyj2101++ - if yyhl2101 { - yyb2101 = yyj2101 > l + yyj2133++ + if yyhl2133 { + yyb2133 = yyj2133 > l } else { - yyb2101 = r.CheckBreak() + yyb2133 = r.CheckBreak() } - if yyb2101 { + if yyb2133 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28603,17 +29065,17 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Affinity.CodecDecodeSelf(d) } for { - yyj2101++ - if yyhl2101 { - yyb2101 = yyj2101 > l + yyj2133++ + if yyhl2133 { + yyb2133 = yyj2133 > l } else { - yyb2101 = r.CheckBreak() + yyb2133 = r.CheckBreak() } - if yyb2101 { + if yyb2133 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2101-1, "") + z.DecStructFieldNotFound(yyj2133-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28625,37 +29087,37 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2126 := z.EncBinary() - _ = yym2126 + yym2158 := z.EncBinary() + _ = yym2158 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2127 := !z.EncBinary() - yy2arr2127 := z.EncBasicHandle().StructToArray - var yyq2127 [5]bool - _, _, _ = yysep2127, yyq2127, yy2arr2127 - const yyr2127 bool = false - yyq2127[0] = x.SELinuxOptions != nil - yyq2127[1] = x.RunAsUser != nil - yyq2127[2] = x.RunAsNonRoot != nil - yyq2127[3] = len(x.SupplementalGroups) != 0 - yyq2127[4] = x.FSGroup != nil - var yynn2127 int - if yyr2127 || yy2arr2127 { + yysep2159 := !z.EncBinary() + yy2arr2159 := z.EncBasicHandle().StructToArray + var yyq2159 [5]bool + _, _, _ = yysep2159, yyq2159, yy2arr2159 + const yyr2159 bool = false + yyq2159[0] = x.SELinuxOptions != nil + yyq2159[1] = x.RunAsUser != nil + yyq2159[2] = x.RunAsNonRoot != nil + yyq2159[3] = len(x.SupplementalGroups) != 0 + yyq2159[4] = x.FSGroup != nil + var yynn2159 int + if yyr2159 || yy2arr2159 { r.EncodeArrayStart(5) } else { - yynn2127 = 0 - for _, b := range yyq2127 { + yynn2159 = 0 + for _, b := range yyq2159 { if b { - yynn2127++ + yynn2159++ } } - r.EncodeMapStart(yynn2127) - yynn2127 = 0 + r.EncodeMapStart(yynn2159) + yynn2159 = 0 } - if yyr2127 || yy2arr2127 { + if yyr2159 || yy2arr2159 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2127[0] { + if yyq2159[0] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -28665,7 +29127,7 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2127[0] { + if yyq2159[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -28676,84 +29138,84 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2127 || yy2arr2127 { + if yyr2159 || yy2arr2159 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2127[1] { + if yyq2159[1] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy2130 := *x.RunAsUser - yym2131 := z.EncBinary() - _ = yym2131 + yy2162 := *x.RunAsUser + yym2163 := z.EncBinary() + _ = yym2163 if false { } else { - r.EncodeInt(int64(yy2130)) + r.EncodeInt(int64(yy2162)) } } } else { r.EncodeNil() } } else { - if yyq2127[1] { + if yyq2159[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy2132 := *x.RunAsUser - yym2133 := z.EncBinary() - _ = yym2133 + yy2164 := *x.RunAsUser + yym2165 := z.EncBinary() + _ = yym2165 if false { } else { - r.EncodeInt(int64(yy2132)) + r.EncodeInt(int64(yy2164)) } } } } - if yyr2127 || yy2arr2127 { + if yyr2159 || yy2arr2159 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2127[2] { + if yyq2159[2] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy2135 := *x.RunAsNonRoot - yym2136 := z.EncBinary() - _ = yym2136 + yy2167 := *x.RunAsNonRoot + yym2168 := z.EncBinary() + _ = yym2168 if false { } else { - r.EncodeBool(bool(yy2135)) + r.EncodeBool(bool(yy2167)) } } } else { r.EncodeNil() } } else { - if yyq2127[2] { + if yyq2159[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy2137 := *x.RunAsNonRoot - yym2138 := z.EncBinary() - _ = yym2138 + yy2169 := *x.RunAsNonRoot + yym2170 := z.EncBinary() + _ = yym2170 if false { } else { - r.EncodeBool(bool(yy2137)) + r.EncodeBool(bool(yy2169)) } } } } - if yyr2127 || yy2arr2127 { + if yyr2159 || yy2arr2159 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2127[3] { + if yyq2159[3] { if x.SupplementalGroups == nil { r.EncodeNil() } else { - yym2140 := z.EncBinary() - _ = yym2140 + yym2172 := z.EncBinary() + _ = yym2172 if false { } else { z.F.EncSliceInt64V(x.SupplementalGroups, false, e) @@ -28763,15 +29225,15 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2127[3] { + if yyq2159[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("supplementalGroups")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SupplementalGroups == nil { r.EncodeNil() } else { - yym2141 := z.EncBinary() - _ = yym2141 + yym2173 := z.EncBinary() + _ = yym2173 if false { } else { z.F.EncSliceInt64V(x.SupplementalGroups, false, e) @@ -28779,42 +29241,42 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2127 || yy2arr2127 { + if yyr2159 || yy2arr2159 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2127[4] { + if yyq2159[4] { if x.FSGroup == nil { r.EncodeNil() } else { - yy2143 := *x.FSGroup - yym2144 := z.EncBinary() - _ = yym2144 + yy2175 := *x.FSGroup + yym2176 := z.EncBinary() + _ = yym2176 if false { } else { - r.EncodeInt(int64(yy2143)) + r.EncodeInt(int64(yy2175)) } } } else { r.EncodeNil() } } else { - if yyq2127[4] { + if yyq2159[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsGroup")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.FSGroup == nil { r.EncodeNil() } else { - yy2145 := *x.FSGroup - yym2146 := z.EncBinary() - _ = yym2146 + yy2177 := *x.FSGroup + yym2178 := z.EncBinary() + _ = yym2178 if false { } else { - r.EncodeInt(int64(yy2145)) + r.EncodeInt(int64(yy2177)) } } } } - if yyr2127 || yy2arr2127 { + if yyr2159 || yy2arr2159 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28827,25 +29289,25 @@ func (x *PodSecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2147 := z.DecBinary() - _ = yym2147 + yym2179 := z.DecBinary() + _ = yym2179 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2148 := r.ContainerType() - if yyct2148 == codecSelferValueTypeMap1234 { - yyl2148 := r.ReadMapStart() - if yyl2148 == 0 { + yyct2180 := r.ContainerType() + if yyct2180 == codecSelferValueTypeMap1234 { + yyl2180 := r.ReadMapStart() + if yyl2180 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2148, d) + x.codecDecodeSelfFromMap(yyl2180, d) } - } else if yyct2148 == codecSelferValueTypeArray1234 { - yyl2148 := r.ReadArrayStart() - if yyl2148 == 0 { + } else if yyct2180 == codecSelferValueTypeArray1234 { + yyl2180 := r.ReadArrayStart() + if yyl2180 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2148, d) + x.codecDecodeSelfFromArray(yyl2180, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28857,12 +29319,12 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2149Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2149Slc - var yyhl2149 bool = l >= 0 - for yyj2149 := 0; ; yyj2149++ { - if yyhl2149 { - if yyj2149 >= l { + var yys2181Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2181Slc + var yyhl2181 bool = l >= 0 + for yyj2181 := 0; ; yyj2181++ { + if yyhl2181 { + if yyj2181 >= l { break } } else { @@ -28871,10 +29333,10 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2149Slc = r.DecodeBytes(yys2149Slc, true, true) - yys2149 := string(yys2149Slc) + yys2181Slc = r.DecodeBytes(yys2181Slc, true, true) + yys2181 := string(yys2181Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2149 { + switch yys2181 { case "seLinuxOptions": if r.TryDecodeAsNil() { if x.SELinuxOptions != nil { @@ -28895,8 +29357,8 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym2152 := z.DecBinary() - _ = yym2152 + yym2184 := z.DecBinary() + _ = yym2184 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -28911,8 +29373,8 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym2154 := z.DecBinary() - _ = yym2154 + yym2186 := z.DecBinary() + _ = yym2186 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() @@ -28922,12 +29384,12 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.SupplementalGroups = nil } else { - yyv2155 := &x.SupplementalGroups - yym2156 := z.DecBinary() - _ = yym2156 + yyv2187 := &x.SupplementalGroups + yym2188 := z.DecBinary() + _ = yym2188 if false { } else { - z.F.DecSliceInt64X(yyv2155, false, d) + z.F.DecSliceInt64X(yyv2187, false, d) } } case "fsGroup": @@ -28939,17 +29401,17 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.FSGroup == nil { x.FSGroup = new(int64) } - yym2158 := z.DecBinary() - _ = yym2158 + yym2190 := z.DecBinary() + _ = yym2190 if false { } else { *((*int64)(x.FSGroup)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys2149) - } // end switch yys2149 - } // end for yyj2149 + z.DecStructFieldNotFound(-1, yys2181) + } // end switch yys2181 + } // end for yyj2181 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28957,16 +29419,16 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2159 int - var yyb2159 bool - var yyhl2159 bool = l >= 0 - yyj2159++ - if yyhl2159 { - yyb2159 = yyj2159 > l + var yyj2191 int + var yyb2191 bool + var yyhl2191 bool = l >= 0 + yyj2191++ + if yyhl2191 { + yyb2191 = yyj2191 > l } else { - yyb2159 = r.CheckBreak() + yyb2191 = r.CheckBreak() } - if yyb2159 { + if yyb2191 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28981,13 +29443,13 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj2159++ - if yyhl2159 { - yyb2159 = yyj2159 > l + yyj2191++ + if yyhl2191 { + yyb2191 = yyj2191 > l } else { - yyb2159 = r.CheckBreak() + yyb2191 = r.CheckBreak() } - if yyb2159 { + if yyb2191 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29000,20 +29462,20 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym2162 := z.DecBinary() - _ = yym2162 + yym2194 := z.DecBinary() + _ = yym2194 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj2159++ - if yyhl2159 { - yyb2159 = yyj2159 > l + yyj2191++ + if yyhl2191 { + yyb2191 = yyj2191 > l } else { - yyb2159 = r.CheckBreak() + yyb2191 = r.CheckBreak() } - if yyb2159 { + if yyb2191 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29026,20 +29488,20 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym2164 := z.DecBinary() - _ = yym2164 + yym2196 := z.DecBinary() + _ = yym2196 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } - yyj2159++ - if yyhl2159 { - yyb2159 = yyj2159 > l + yyj2191++ + if yyhl2191 { + yyb2191 = yyj2191 > l } else { - yyb2159 = r.CheckBreak() + yyb2191 = r.CheckBreak() } - if yyb2159 { + if yyb2191 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29047,21 +29509,21 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.SupplementalGroups = nil } else { - yyv2165 := &x.SupplementalGroups - yym2166 := z.DecBinary() - _ = yym2166 + yyv2197 := &x.SupplementalGroups + yym2198 := z.DecBinary() + _ = yym2198 if false { } else { - z.F.DecSliceInt64X(yyv2165, false, d) + z.F.DecSliceInt64X(yyv2197, false, d) } } - yyj2159++ - if yyhl2159 { - yyb2159 = yyj2159 > l + yyj2191++ + if yyhl2191 { + yyb2191 = yyj2191 > l } else { - yyb2159 = r.CheckBreak() + yyb2191 = r.CheckBreak() } - if yyb2159 { + if yyb2191 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29074,25 +29536,25 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.FSGroup == nil { x.FSGroup = new(int64) } - yym2168 := z.DecBinary() - _ = yym2168 + yym2200 := z.DecBinary() + _ = yym2200 if false { } else { *((*int64)(x.FSGroup)) = int64(r.DecodeInt(64)) } } for { - yyj2159++ - if yyhl2159 { - yyb2159 = yyj2159 > l + yyj2191++ + if yyhl2191 { + yyb2191 = yyj2191 > l } else { - yyb2159 = r.CheckBreak() + yyb2191 = r.CheckBreak() } - if yyb2159 { + if yyb2191 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2159-1, "") + z.DecStructFieldNotFound(yyj2191-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29101,8 +29563,8 @@ func (x PodQOSClass) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2169 := z.EncBinary() - _ = yym2169 + yym2201 := z.EncBinary() + _ = yym2201 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -29114,8 +29576,8 @@ func (x *PodQOSClass) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2170 := z.DecBinary() - _ = yym2170 + yym2202 := z.DecBinary() + _ = yym2202 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -29130,61 +29592,61 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2171 := z.EncBinary() - _ = yym2171 + yym2203 := z.EncBinary() + _ = yym2203 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2172 := !z.EncBinary() - yy2arr2172 := z.EncBasicHandle().StructToArray - var yyq2172 [9]bool - _, _, _ = yysep2172, yyq2172, yy2arr2172 - const yyr2172 bool = false - yyq2172[0] = x.Phase != "" - yyq2172[1] = len(x.Conditions) != 0 - yyq2172[2] = x.Message != "" - yyq2172[3] = x.Reason != "" - yyq2172[4] = x.HostIP != "" - yyq2172[5] = x.PodIP != "" - yyq2172[6] = x.StartTime != nil - yyq2172[7] = len(x.ContainerStatuses) != 0 - yyq2172[8] = x.QOSClass != "" - var yynn2172 int - if yyr2172 || yy2arr2172 { + yysep2204 := !z.EncBinary() + yy2arr2204 := z.EncBasicHandle().StructToArray + var yyq2204 [9]bool + _, _, _ = yysep2204, yyq2204, yy2arr2204 + const yyr2204 bool = false + yyq2204[0] = x.Phase != "" + yyq2204[1] = len(x.Conditions) != 0 + yyq2204[2] = x.Message != "" + yyq2204[3] = x.Reason != "" + yyq2204[4] = x.HostIP != "" + yyq2204[5] = x.PodIP != "" + yyq2204[6] = x.StartTime != nil + yyq2204[7] = len(x.ContainerStatuses) != 0 + yyq2204[8] = x.QOSClass != "" + var yynn2204 int + if yyr2204 || yy2arr2204 { r.EncodeArrayStart(9) } else { - yynn2172 = 0 - for _, b := range yyq2172 { + yynn2204 = 0 + for _, b := range yyq2204 { if b { - yynn2172++ + yynn2204++ } } - r.EncodeMapStart(yynn2172) - yynn2172 = 0 + r.EncodeMapStart(yynn2204) + yynn2204 = 0 } - if yyr2172 || yy2arr2172 { + if yyr2204 || yy2arr2204 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2172[0] { + if yyq2204[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2172[0] { + if yyq2204[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr2172 || yy2arr2172 { + if yyr2204 || yy2arr2204 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2172[1] { + if yyq2204[1] { if x.Conditions == nil { r.EncodeNil() } else { - yym2175 := z.EncBinary() - _ = yym2175 + yym2207 := z.EncBinary() + _ = yym2207 if false { } else { h.encSlicePodCondition(([]PodCondition)(x.Conditions), e) @@ -29194,15 +29656,15 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2172[1] { + if yyq2204[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym2176 := z.EncBinary() - _ = yym2176 + yym2208 := z.EncBinary() + _ = yym2208 if false { } else { h.encSlicePodCondition(([]PodCondition)(x.Conditions), e) @@ -29210,11 +29672,11 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2172 || yy2arr2172 { + if yyr2204 || yy2arr2204 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2172[2] { - yym2178 := z.EncBinary() - _ = yym2178 + if yyq2204[2] { + yym2210 := z.EncBinary() + _ = yym2210 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -29223,23 +29685,23 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2172[2] { + if yyq2204[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2179 := z.EncBinary() - _ = yym2179 + yym2211 := z.EncBinary() + _ = yym2211 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr2172 || yy2arr2172 { + if yyr2204 || yy2arr2204 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2172[3] { - yym2181 := z.EncBinary() - _ = yym2181 + if yyq2204[3] { + yym2213 := z.EncBinary() + _ = yym2213 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -29248,23 +29710,23 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2172[3] { + if yyq2204[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2182 := z.EncBinary() - _ = yym2182 + yym2214 := z.EncBinary() + _ = yym2214 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr2172 || yy2arr2172 { + if yyr2204 || yy2arr2204 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2172[4] { - yym2184 := z.EncBinary() - _ = yym2184 + if yyq2204[4] { + yym2216 := z.EncBinary() + _ = yym2216 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) @@ -29273,23 +29735,23 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2172[4] { + if yyq2204[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2185 := z.EncBinary() - _ = yym2185 + yym2217 := z.EncBinary() + _ = yym2217 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) } } } - if yyr2172 || yy2arr2172 { + if yyr2204 || yy2arr2204 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2172[5] { - yym2187 := z.EncBinary() - _ = yym2187 + if yyq2204[5] { + yym2219 := z.EncBinary() + _ = yym2219 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodIP)) @@ -29298,31 +29760,31 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2172[5] { + if yyq2204[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2188 := z.EncBinary() - _ = yym2188 + yym2220 := z.EncBinary() + _ = yym2220 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodIP)) } } } - if yyr2172 || yy2arr2172 { + if yyr2204 || yy2arr2204 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2172[6] { + if yyq2204[6] { if x.StartTime == nil { r.EncodeNil() } else { - yym2190 := z.EncBinary() - _ = yym2190 + yym2222 := z.EncBinary() + _ = yym2222 if false { } else if z.HasExtensions() && z.EncExt(x.StartTime) { - } else if yym2190 { + } else if yym2222 { z.EncBinaryMarshal(x.StartTime) - } else if !yym2190 && z.IsJSONHandle() { + } else if !yym2222 && z.IsJSONHandle() { z.EncJSONMarshal(x.StartTime) } else { z.EncFallback(x.StartTime) @@ -29332,20 +29794,20 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2172[6] { + if yyq2204[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("startTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.StartTime == nil { r.EncodeNil() } else { - yym2191 := z.EncBinary() - _ = yym2191 + yym2223 := z.EncBinary() + _ = yym2223 if false { } else if z.HasExtensions() && z.EncExt(x.StartTime) { - } else if yym2191 { + } else if yym2223 { z.EncBinaryMarshal(x.StartTime) - } else if !yym2191 && z.IsJSONHandle() { + } else if !yym2223 && z.IsJSONHandle() { z.EncJSONMarshal(x.StartTime) } else { z.EncFallback(x.StartTime) @@ -29353,14 +29815,14 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2172 || yy2arr2172 { + if yyr2204 || yy2arr2204 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2172[7] { + if yyq2204[7] { if x.ContainerStatuses == nil { r.EncodeNil() } else { - yym2193 := z.EncBinary() - _ = yym2193 + yym2225 := z.EncBinary() + _ = yym2225 if false { } else { h.encSliceContainerStatus(([]ContainerStatus)(x.ContainerStatuses), e) @@ -29370,15 +29832,15 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2172[7] { + if yyq2204[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerStatuses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ContainerStatuses == nil { r.EncodeNil() } else { - yym2194 := z.EncBinary() - _ = yym2194 + yym2226 := z.EncBinary() + _ = yym2226 if false { } else { h.encSliceContainerStatus(([]ContainerStatus)(x.ContainerStatuses), e) @@ -29386,22 +29848,22 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2172 || yy2arr2172 { + if yyr2204 || yy2arr2204 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2172[8] { + if yyq2204[8] { x.QOSClass.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2172[8] { + if yyq2204[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("qosClass")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.QOSClass.CodecEncodeSelf(e) } } - if yyr2172 || yy2arr2172 { + if yyr2204 || yy2arr2204 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29414,25 +29876,25 @@ func (x *PodStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2196 := z.DecBinary() - _ = yym2196 + yym2228 := z.DecBinary() + _ = yym2228 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2197 := r.ContainerType() - if yyct2197 == codecSelferValueTypeMap1234 { - yyl2197 := r.ReadMapStart() - if yyl2197 == 0 { + yyct2229 := r.ContainerType() + if yyct2229 == codecSelferValueTypeMap1234 { + yyl2229 := r.ReadMapStart() + if yyl2229 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2197, d) + x.codecDecodeSelfFromMap(yyl2229, d) } - } else if yyct2197 == codecSelferValueTypeArray1234 { - yyl2197 := r.ReadArrayStart() - if yyl2197 == 0 { + } else if yyct2229 == codecSelferValueTypeArray1234 { + yyl2229 := r.ReadArrayStart() + if yyl2229 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2197, d) + x.codecDecodeSelfFromArray(yyl2229, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29444,12 +29906,12 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2198Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2198Slc - var yyhl2198 bool = l >= 0 - for yyj2198 := 0; ; yyj2198++ { - if yyhl2198 { - if yyj2198 >= l { + var yys2230Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2230Slc + var yyhl2230 bool = l >= 0 + for yyj2230 := 0; ; yyj2230++ { + if yyhl2230 { + if yyj2230 >= l { break } } else { @@ -29458,10 +29920,10 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2198Slc = r.DecodeBytes(yys2198Slc, true, true) - yys2198 := string(yys2198Slc) + yys2230Slc = r.DecodeBytes(yys2230Slc, true, true) + yys2230 := string(yys2230Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2198 { + switch yys2230 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -29472,12 +29934,12 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2200 := &x.Conditions - yym2201 := z.DecBinary() - _ = yym2201 + yyv2232 := &x.Conditions + yym2233 := z.DecBinary() + _ = yym2233 if false { } else { - h.decSlicePodCondition((*[]PodCondition)(yyv2200), d) + h.decSlicePodCondition((*[]PodCondition)(yyv2232), d) } } case "message": @@ -29513,13 +29975,13 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.StartTime == nil { x.StartTime = new(pkg2_v1.Time) } - yym2207 := z.DecBinary() - _ = yym2207 + yym2239 := z.DecBinary() + _ = yym2239 if false { } else if z.HasExtensions() && z.DecExt(x.StartTime) { - } else if yym2207 { + } else if yym2239 { z.DecBinaryUnmarshal(x.StartTime) - } else if !yym2207 && z.IsJSONHandle() { + } else if !yym2239 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.StartTime) } else { z.DecFallback(x.StartTime, false) @@ -29529,12 +29991,12 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ContainerStatuses = nil } else { - yyv2208 := &x.ContainerStatuses - yym2209 := z.DecBinary() - _ = yym2209 + yyv2240 := &x.ContainerStatuses + yym2241 := z.DecBinary() + _ = yym2241 if false { } else { - h.decSliceContainerStatus((*[]ContainerStatus)(yyv2208), d) + h.decSliceContainerStatus((*[]ContainerStatus)(yyv2240), d) } } case "qosClass": @@ -29544,9 +30006,9 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.QOSClass = PodQOSClass(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2198) - } // end switch yys2198 - } // end for yyj2198 + z.DecStructFieldNotFound(-1, yys2230) + } // end switch yys2230 + } // end for yyj2230 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29554,16 +30016,16 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2211 int - var yyb2211 bool - var yyhl2211 bool = l >= 0 - yyj2211++ - if yyhl2211 { - yyb2211 = yyj2211 > l + var yyj2243 int + var yyb2243 bool + var yyhl2243 bool = l >= 0 + yyj2243++ + if yyhl2243 { + yyb2243 = yyj2243 > l } else { - yyb2211 = r.CheckBreak() + yyb2243 = r.CheckBreak() } - if yyb2211 { + if yyb2243 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29573,13 +30035,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = PodPhase(r.DecodeString()) } - yyj2211++ - if yyhl2211 { - yyb2211 = yyj2211 > l + yyj2243++ + if yyhl2243 { + yyb2243 = yyj2243 > l } else { - yyb2211 = r.CheckBreak() + yyb2243 = r.CheckBreak() } - if yyb2211 { + if yyb2243 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29587,21 +30049,21 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2213 := &x.Conditions - yym2214 := z.DecBinary() - _ = yym2214 + yyv2245 := &x.Conditions + yym2246 := z.DecBinary() + _ = yym2246 if false { } else { - h.decSlicePodCondition((*[]PodCondition)(yyv2213), d) + h.decSlicePodCondition((*[]PodCondition)(yyv2245), d) } } - yyj2211++ - if yyhl2211 { - yyb2211 = yyj2211 > l + yyj2243++ + if yyhl2243 { + yyb2243 = yyj2243 > l } else { - yyb2211 = r.CheckBreak() + yyb2243 = r.CheckBreak() } - if yyb2211 { + if yyb2243 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29611,13 +30073,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj2211++ - if yyhl2211 { - yyb2211 = yyj2211 > l + yyj2243++ + if yyhl2243 { + yyb2243 = yyj2243 > l } else { - yyb2211 = r.CheckBreak() + yyb2243 = r.CheckBreak() } - if yyb2211 { + if yyb2243 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29627,13 +30089,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj2211++ - if yyhl2211 { - yyb2211 = yyj2211 > l + yyj2243++ + if yyhl2243 { + yyb2243 = yyj2243 > l } else { - yyb2211 = r.CheckBreak() + yyb2243 = r.CheckBreak() } - if yyb2211 { + if yyb2243 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29643,13 +30105,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostIP = string(r.DecodeString()) } - yyj2211++ - if yyhl2211 { - yyb2211 = yyj2211 > l + yyj2243++ + if yyhl2243 { + yyb2243 = yyj2243 > l } else { - yyb2211 = r.CheckBreak() + yyb2243 = r.CheckBreak() } - if yyb2211 { + if yyb2243 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29659,13 +30121,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodIP = string(r.DecodeString()) } - yyj2211++ - if yyhl2211 { - yyb2211 = yyj2211 > l + yyj2243++ + if yyhl2243 { + yyb2243 = yyj2243 > l } else { - yyb2211 = r.CheckBreak() + yyb2243 = r.CheckBreak() } - if yyb2211 { + if yyb2243 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29678,25 +30140,25 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.StartTime == nil { x.StartTime = new(pkg2_v1.Time) } - yym2220 := z.DecBinary() - _ = yym2220 + yym2252 := z.DecBinary() + _ = yym2252 if false { } else if z.HasExtensions() && z.DecExt(x.StartTime) { - } else if yym2220 { + } else if yym2252 { z.DecBinaryUnmarshal(x.StartTime) - } else if !yym2220 && z.IsJSONHandle() { + } else if !yym2252 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.StartTime) } else { z.DecFallback(x.StartTime, false) } } - yyj2211++ - if yyhl2211 { - yyb2211 = yyj2211 > l + yyj2243++ + if yyhl2243 { + yyb2243 = yyj2243 > l } else { - yyb2211 = r.CheckBreak() + yyb2243 = r.CheckBreak() } - if yyb2211 { + if yyb2243 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29704,21 +30166,21 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ContainerStatuses = nil } else { - yyv2221 := &x.ContainerStatuses - yym2222 := z.DecBinary() - _ = yym2222 + yyv2253 := &x.ContainerStatuses + yym2254 := z.DecBinary() + _ = yym2254 if false { } else { - h.decSliceContainerStatus((*[]ContainerStatus)(yyv2221), d) + h.decSliceContainerStatus((*[]ContainerStatus)(yyv2253), d) } } - yyj2211++ - if yyhl2211 { - yyb2211 = yyj2211 > l + yyj2243++ + if yyhl2243 { + yyb2243 = yyj2243 > l } else { - yyb2211 = r.CheckBreak() + yyb2243 = r.CheckBreak() } - if yyb2211 { + if yyb2243 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29729,17 +30191,17 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.QOSClass = PodQOSClass(r.DecodeString()) } for { - yyj2211++ - if yyhl2211 { - yyb2211 = yyj2211 > l + yyj2243++ + if yyhl2243 { + yyb2243 = yyj2243 > l } else { - yyb2211 = r.CheckBreak() + yyb2243 = r.CheckBreak() } - if yyb2211 { + if yyb2243 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2211-1, "") + z.DecStructFieldNotFound(yyj2243-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29751,38 +30213,38 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2224 := z.EncBinary() - _ = yym2224 + yym2256 := z.EncBinary() + _ = yym2256 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2225 := !z.EncBinary() - yy2arr2225 := z.EncBasicHandle().StructToArray - var yyq2225 [4]bool - _, _, _ = yysep2225, yyq2225, yy2arr2225 - const yyr2225 bool = false - yyq2225[0] = x.Kind != "" - yyq2225[1] = x.APIVersion != "" - yyq2225[2] = true - yyq2225[3] = true - var yynn2225 int - if yyr2225 || yy2arr2225 { + yysep2257 := !z.EncBinary() + yy2arr2257 := z.EncBasicHandle().StructToArray + var yyq2257 [4]bool + _, _, _ = yysep2257, yyq2257, yy2arr2257 + const yyr2257 bool = false + yyq2257[0] = x.Kind != "" + yyq2257[1] = x.APIVersion != "" + yyq2257[2] = true + yyq2257[3] = true + var yynn2257 int + if yyr2257 || yy2arr2257 { r.EncodeArrayStart(4) } else { - yynn2225 = 0 - for _, b := range yyq2225 { + yynn2257 = 0 + for _, b := range yyq2257 { if b { - yynn2225++ + yynn2257++ } } - r.EncodeMapStart(yynn2225) - yynn2225 = 0 + r.EncodeMapStart(yynn2257) + yynn2257 = 0 } - if yyr2225 || yy2arr2225 { + if yyr2257 || yy2arr2257 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2225[0] { - yym2227 := z.EncBinary() - _ = yym2227 + if yyq2257[0] { + yym2259 := z.EncBinary() + _ = yym2259 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -29791,23 +30253,23 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2225[0] { + if yyq2257[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2228 := z.EncBinary() - _ = yym2228 + yym2260 := z.EncBinary() + _ = yym2260 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2225 || yy2arr2225 { + if yyr2257 || yy2arr2257 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2225[1] { - yym2230 := z.EncBinary() - _ = yym2230 + if yyq2257[1] { + yym2262 := z.EncBinary() + _ = yym2262 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -29816,53 +30278,53 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2225[1] { + if yyq2257[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2231 := z.EncBinary() - _ = yym2231 + yym2263 := z.EncBinary() + _ = yym2263 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2225 || yy2arr2225 { + if yyr2257 || yy2arr2257 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2225[2] { - yy2233 := &x.ObjectMeta - yy2233.CodecEncodeSelf(e) + if yyq2257[2] { + yy2265 := &x.ObjectMeta + yy2265.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2225[2] { + if yyq2257[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2234 := &x.ObjectMeta - yy2234.CodecEncodeSelf(e) + yy2266 := &x.ObjectMeta + yy2266.CodecEncodeSelf(e) } } - if yyr2225 || yy2arr2225 { + if yyr2257 || yy2arr2257 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2225[3] { - yy2236 := &x.Status - yy2236.CodecEncodeSelf(e) + if yyq2257[3] { + yy2268 := &x.Status + yy2268.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2225[3] { + if yyq2257[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2237 := &x.Status - yy2237.CodecEncodeSelf(e) + yy2269 := &x.Status + yy2269.CodecEncodeSelf(e) } } - if yyr2225 || yy2arr2225 { + if yyr2257 || yy2arr2257 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29875,25 +30337,25 @@ func (x *PodStatusResult) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2238 := z.DecBinary() - _ = yym2238 + yym2270 := z.DecBinary() + _ = yym2270 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2239 := r.ContainerType() - if yyct2239 == codecSelferValueTypeMap1234 { - yyl2239 := r.ReadMapStart() - if yyl2239 == 0 { + yyct2271 := r.ContainerType() + if yyct2271 == codecSelferValueTypeMap1234 { + yyl2271 := r.ReadMapStart() + if yyl2271 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2239, d) + x.codecDecodeSelfFromMap(yyl2271, d) } - } else if yyct2239 == codecSelferValueTypeArray1234 { - yyl2239 := r.ReadArrayStart() - if yyl2239 == 0 { + } else if yyct2271 == codecSelferValueTypeArray1234 { + yyl2271 := r.ReadArrayStart() + if yyl2271 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2239, d) + x.codecDecodeSelfFromArray(yyl2271, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29905,12 +30367,12 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2240Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2240Slc - var yyhl2240 bool = l >= 0 - for yyj2240 := 0; ; yyj2240++ { - if yyhl2240 { - if yyj2240 >= l { + var yys2272Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2272Slc + var yyhl2272 bool = l >= 0 + for yyj2272 := 0; ; yyj2272++ { + if yyhl2272 { + if yyj2272 >= l { break } } else { @@ -29919,10 +30381,10 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2240Slc = r.DecodeBytes(yys2240Slc, true, true) - yys2240 := string(yys2240Slc) + yys2272Slc = r.DecodeBytes(yys2272Slc, true, true) + yys2272 := string(yys2272Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2240 { + switch yys2272 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -29939,20 +30401,20 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2243 := &x.ObjectMeta - yyv2243.CodecDecodeSelf(d) + yyv2275 := &x.ObjectMeta + yyv2275.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv2244 := &x.Status - yyv2244.CodecDecodeSelf(d) + yyv2276 := &x.Status + yyv2276.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2240) - } // end switch yys2240 - } // end for yyj2240 + z.DecStructFieldNotFound(-1, yys2272) + } // end switch yys2272 + } // end for yyj2272 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29960,16 +30422,16 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2245 int - var yyb2245 bool - var yyhl2245 bool = l >= 0 - yyj2245++ - if yyhl2245 { - yyb2245 = yyj2245 > l + var yyj2277 int + var yyb2277 bool + var yyhl2277 bool = l >= 0 + yyj2277++ + if yyhl2277 { + yyb2277 = yyj2277 > l } else { - yyb2245 = r.CheckBreak() + yyb2277 = r.CheckBreak() } - if yyb2245 { + if yyb2277 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29979,13 +30441,13 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj2245++ - if yyhl2245 { - yyb2245 = yyj2245 > l + yyj2277++ + if yyhl2277 { + yyb2277 = yyj2277 > l } else { - yyb2245 = r.CheckBreak() + yyb2277 = r.CheckBreak() } - if yyb2245 { + if yyb2277 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29995,13 +30457,13 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj2245++ - if yyhl2245 { - yyb2245 = yyj2245 > l + yyj2277++ + if yyhl2277 { + yyb2277 = yyj2277 > l } else { - yyb2245 = r.CheckBreak() + yyb2277 = r.CheckBreak() } - if yyb2245 { + if yyb2277 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30009,16 +30471,16 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2248 := &x.ObjectMeta - yyv2248.CodecDecodeSelf(d) + yyv2280 := &x.ObjectMeta + yyv2280.CodecDecodeSelf(d) } - yyj2245++ - if yyhl2245 { - yyb2245 = yyj2245 > l + yyj2277++ + if yyhl2277 { + yyb2277 = yyj2277 > l } else { - yyb2245 = r.CheckBreak() + yyb2277 = r.CheckBreak() } - if yyb2245 { + if yyb2277 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30026,21 +30488,21 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv2249 := &x.Status - yyv2249.CodecDecodeSelf(d) + yyv2281 := &x.Status + yyv2281.CodecDecodeSelf(d) } for { - yyj2245++ - if yyhl2245 { - yyb2245 = yyj2245 > l + yyj2277++ + if yyhl2277 { + yyb2277 = yyj2277 > l } else { - yyb2245 = r.CheckBreak() + yyb2277 = r.CheckBreak() } - if yyb2245 { + if yyb2277 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2245-1, "") + z.DecStructFieldNotFound(yyj2277-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30052,39 +30514,39 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2250 := z.EncBinary() - _ = yym2250 + yym2282 := z.EncBinary() + _ = yym2282 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2251 := !z.EncBinary() - yy2arr2251 := z.EncBasicHandle().StructToArray - var yyq2251 [5]bool - _, _, _ = yysep2251, yyq2251, yy2arr2251 - const yyr2251 bool = false - yyq2251[0] = x.Kind != "" - yyq2251[1] = x.APIVersion != "" - yyq2251[2] = true - yyq2251[3] = true - yyq2251[4] = true - var yynn2251 int - if yyr2251 || yy2arr2251 { + yysep2283 := !z.EncBinary() + yy2arr2283 := z.EncBasicHandle().StructToArray + var yyq2283 [5]bool + _, _, _ = yysep2283, yyq2283, yy2arr2283 + const yyr2283 bool = false + yyq2283[0] = x.Kind != "" + yyq2283[1] = x.APIVersion != "" + yyq2283[2] = true + yyq2283[3] = true + yyq2283[4] = true + var yynn2283 int + if yyr2283 || yy2arr2283 { r.EncodeArrayStart(5) } else { - yynn2251 = 0 - for _, b := range yyq2251 { + yynn2283 = 0 + for _, b := range yyq2283 { if b { - yynn2251++ + yynn2283++ } } - r.EncodeMapStart(yynn2251) - yynn2251 = 0 + r.EncodeMapStart(yynn2283) + yynn2283 = 0 } - if yyr2251 || yy2arr2251 { + if yyr2283 || yy2arr2283 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2251[0] { - yym2253 := z.EncBinary() - _ = yym2253 + if yyq2283[0] { + yym2285 := z.EncBinary() + _ = yym2285 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -30093,23 +30555,23 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2251[0] { + if yyq2283[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2254 := z.EncBinary() - _ = yym2254 + yym2286 := z.EncBinary() + _ = yym2286 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2251 || yy2arr2251 { + if yyr2283 || yy2arr2283 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2251[1] { - yym2256 := z.EncBinary() - _ = yym2256 + if yyq2283[1] { + yym2288 := z.EncBinary() + _ = yym2288 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -30118,70 +30580,70 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2251[1] { + if yyq2283[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2257 := z.EncBinary() - _ = yym2257 + yym2289 := z.EncBinary() + _ = yym2289 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2251 || yy2arr2251 { + if yyr2283 || yy2arr2283 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2251[2] { - yy2259 := &x.ObjectMeta - yy2259.CodecEncodeSelf(e) + if yyq2283[2] { + yy2291 := &x.ObjectMeta + yy2291.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2251[2] { + if yyq2283[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2260 := &x.ObjectMeta - yy2260.CodecEncodeSelf(e) + yy2292 := &x.ObjectMeta + yy2292.CodecEncodeSelf(e) } } - if yyr2251 || yy2arr2251 { + if yyr2283 || yy2arr2283 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2251[3] { - yy2262 := &x.Spec - yy2262.CodecEncodeSelf(e) + if yyq2283[3] { + yy2294 := &x.Spec + yy2294.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2251[3] { + if yyq2283[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2263 := &x.Spec - yy2263.CodecEncodeSelf(e) + yy2295 := &x.Spec + yy2295.CodecEncodeSelf(e) } } - if yyr2251 || yy2arr2251 { + if yyr2283 || yy2arr2283 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2251[4] { - yy2265 := &x.Status - yy2265.CodecEncodeSelf(e) + if yyq2283[4] { + yy2297 := &x.Status + yy2297.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2251[4] { + if yyq2283[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2266 := &x.Status - yy2266.CodecEncodeSelf(e) + yy2298 := &x.Status + yy2298.CodecEncodeSelf(e) } } - if yyr2251 || yy2arr2251 { + if yyr2283 || yy2arr2283 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30194,25 +30656,25 @@ func (x *Pod) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2267 := z.DecBinary() - _ = yym2267 + yym2299 := z.DecBinary() + _ = yym2299 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2268 := r.ContainerType() - if yyct2268 == codecSelferValueTypeMap1234 { - yyl2268 := r.ReadMapStart() - if yyl2268 == 0 { + yyct2300 := r.ContainerType() + if yyct2300 == codecSelferValueTypeMap1234 { + yyl2300 := r.ReadMapStart() + if yyl2300 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2268, d) + x.codecDecodeSelfFromMap(yyl2300, d) } - } else if yyct2268 == codecSelferValueTypeArray1234 { - yyl2268 := r.ReadArrayStart() - if yyl2268 == 0 { + } else if yyct2300 == codecSelferValueTypeArray1234 { + yyl2300 := r.ReadArrayStart() + if yyl2300 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2268, d) + x.codecDecodeSelfFromArray(yyl2300, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30224,12 +30686,12 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2269Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2269Slc - var yyhl2269 bool = l >= 0 - for yyj2269 := 0; ; yyj2269++ { - if yyhl2269 { - if yyj2269 >= l { + var yys2301Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2301Slc + var yyhl2301 bool = l >= 0 + for yyj2301 := 0; ; yyj2301++ { + if yyhl2301 { + if yyj2301 >= l { break } } else { @@ -30238,10 +30700,10 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2269Slc = r.DecodeBytes(yys2269Slc, true, true) - yys2269 := string(yys2269Slc) + yys2301Slc = r.DecodeBytes(yys2301Slc, true, true) + yys2301 := string(yys2301Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2269 { + switch yys2301 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -30258,27 +30720,27 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2272 := &x.ObjectMeta - yyv2272.CodecDecodeSelf(d) + yyv2304 := &x.ObjectMeta + yyv2304.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv2273 := &x.Spec - yyv2273.CodecDecodeSelf(d) + yyv2305 := &x.Spec + yyv2305.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv2274 := &x.Status - yyv2274.CodecDecodeSelf(d) + yyv2306 := &x.Status + yyv2306.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2269) - } // end switch yys2269 - } // end for yyj2269 + z.DecStructFieldNotFound(-1, yys2301) + } // end switch yys2301 + } // end for yyj2301 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30286,16 +30748,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2275 int - var yyb2275 bool - var yyhl2275 bool = l >= 0 - yyj2275++ - if yyhl2275 { - yyb2275 = yyj2275 > l + var yyj2307 int + var yyb2307 bool + var yyhl2307 bool = l >= 0 + yyj2307++ + if yyhl2307 { + yyb2307 = yyj2307 > l } else { - yyb2275 = r.CheckBreak() + yyb2307 = r.CheckBreak() } - if yyb2275 { + if yyb2307 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30305,13 +30767,13 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2275++ - if yyhl2275 { - yyb2275 = yyj2275 > l + yyj2307++ + if yyhl2307 { + yyb2307 = yyj2307 > l } else { - yyb2275 = r.CheckBreak() + yyb2307 = r.CheckBreak() } - if yyb2275 { + if yyb2307 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30321,13 +30783,13 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2275++ - if yyhl2275 { - yyb2275 = yyj2275 > l + yyj2307++ + if yyhl2307 { + yyb2307 = yyj2307 > l } else { - yyb2275 = r.CheckBreak() + yyb2307 = r.CheckBreak() } - if yyb2275 { + if yyb2307 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30335,16 +30797,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2278 := &x.ObjectMeta - yyv2278.CodecDecodeSelf(d) + yyv2310 := &x.ObjectMeta + yyv2310.CodecDecodeSelf(d) } - yyj2275++ - if yyhl2275 { - yyb2275 = yyj2275 > l + yyj2307++ + if yyhl2307 { + yyb2307 = yyj2307 > l } else { - yyb2275 = r.CheckBreak() + yyb2307 = r.CheckBreak() } - if yyb2275 { + if yyb2307 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30352,16 +30814,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv2279 := &x.Spec - yyv2279.CodecDecodeSelf(d) + yyv2311 := &x.Spec + yyv2311.CodecDecodeSelf(d) } - yyj2275++ - if yyhl2275 { - yyb2275 = yyj2275 > l + yyj2307++ + if yyhl2307 { + yyb2307 = yyj2307 > l } else { - yyb2275 = r.CheckBreak() + yyb2307 = r.CheckBreak() } - if yyb2275 { + if yyb2307 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30369,370 +30831,26 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv2280 := &x.Status - yyv2280.CodecDecodeSelf(d) + yyv2312 := &x.Status + yyv2312.CodecDecodeSelf(d) } for { - yyj2275++ - if yyhl2275 { - yyb2275 = yyj2275 > l + yyj2307++ + if yyhl2307 { + yyb2307 = yyj2307 > l } else { - yyb2275 = r.CheckBreak() + yyb2307 = r.CheckBreak() } - if yyb2275 { + if yyb2307 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2275-1, "") + z.DecStructFieldNotFound(yyj2307-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym2281 := z.EncBinary() - _ = yym2281 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep2282 := !z.EncBinary() - yy2arr2282 := z.EncBasicHandle().StructToArray - var yyq2282 [4]bool - _, _, _ = yysep2282, yyq2282, yy2arr2282 - const yyr2282 bool = false - yyq2282[0] = x.Kind != "" - yyq2282[1] = x.APIVersion != "" - yyq2282[2] = true - var yynn2282 int - if yyr2282 || yy2arr2282 { - r.EncodeArrayStart(4) - } else { - yynn2282 = 1 - for _, b := range yyq2282 { - if b { - yynn2282++ - } - } - r.EncodeMapStart(yynn2282) - yynn2282 = 0 - } - if yyr2282 || yy2arr2282 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2282[0] { - yym2284 := z.EncBinary() - _ = yym2284 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2282[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2285 := z.EncBinary() - _ = yym2285 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2282 || yy2arr2282 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2282[1] { - yym2287 := z.EncBinary() - _ = yym2287 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2282[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2288 := z.EncBinary() - _ = yym2288 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr2282 || yy2arr2282 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2282[2] { - yy2290 := &x.ListMeta - yym2291 := z.EncBinary() - _ = yym2291 - if false { - } else if z.HasExtensions() && z.EncExt(yy2290) { - } else { - z.EncFallback(yy2290) - } - } else { - r.EncodeNil() - } - } else { - if yyq2282[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2292 := &x.ListMeta - yym2293 := z.EncBinary() - _ = yym2293 - if false { - } else if z.HasExtensions() && z.EncExt(yy2292) { - } else { - z.EncFallback(yy2292) - } - } - } - if yyr2282 || yy2arr2282 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if x.Items == nil { - r.EncodeNil() - } else { - yym2295 := z.EncBinary() - _ = yym2295 - if false { - } else { - h.encSlicePod(([]Pod)(x.Items), e) - } - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("items")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Items == nil { - r.EncodeNil() - } else { - yym2296 := z.EncBinary() - _ = yym2296 - if false { - } else { - h.encSlicePod(([]Pod)(x.Items), e) - } - } - } - if yyr2282 || yy2arr2282 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *PodList) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym2297 := z.DecBinary() - _ = yym2297 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct2298 := r.ContainerType() - if yyct2298 == codecSelferValueTypeMap1234 { - yyl2298 := r.ReadMapStart() - if yyl2298 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl2298, d) - } - } else if yyct2298 == codecSelferValueTypeArray1234 { - yyl2298 := r.ReadArrayStart() - if yyl2298 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl2298, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys2299Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2299Slc - var yyhl2299 bool = l >= 0 - for yyj2299 := 0; ; yyj2299++ { - if yyhl2299 { - if yyj2299 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2299Slc = r.DecodeBytes(yys2299Slc, true, true) - yys2299 := string(yys2299Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2299 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "metadata": - if r.TryDecodeAsNil() { - x.ListMeta = pkg2_v1.ListMeta{} - } else { - yyv2302 := &x.ListMeta - yym2303 := z.DecBinary() - _ = yym2303 - if false { - } else if z.HasExtensions() && z.DecExt(yyv2302) { - } else { - z.DecFallback(yyv2302, false) - } - } - case "items": - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv2304 := &x.Items - yym2305 := z.DecBinary() - _ = yym2305 - if false { - } else { - h.decSlicePod((*[]Pod)(yyv2304), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys2299) - } // end switch yys2299 - } // end for yyj2299 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj2306 int - var yyb2306 bool - var yyhl2306 bool = l >= 0 - yyj2306++ - if yyhl2306 { - yyb2306 = yyj2306 > l - } else { - yyb2306 = r.CheckBreak() - } - if yyb2306 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj2306++ - if yyhl2306 { - yyb2306 = yyj2306 > l - } else { - yyb2306 = r.CheckBreak() - } - if yyb2306 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj2306++ - if yyhl2306 { - yyb2306 = yyj2306 > l - } else { - yyb2306 = r.CheckBreak() - } - if yyb2306 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ListMeta = pkg2_v1.ListMeta{} - } else { - yyv2309 := &x.ListMeta - yym2310 := z.DecBinary() - _ = yym2310 - if false { - } else if z.HasExtensions() && z.DecExt(yyv2309) { - } else { - z.DecFallback(yyv2309, false) - } - } - yyj2306++ - if yyhl2306 { - yyb2306 = yyj2306 > l - } else { - yyb2306 = r.CheckBreak() - } - if yyb2306 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv2311 := &x.Items - yym2312 := z.DecBinary() - _ = yym2312 - if false { - } else { - h.decSlicePod((*[]Pod)(yyv2311), d) - } - } - for { - yyj2306++ - if yyhl2306 { - yyb2306 = yyj2306 > l - } else { - yyb2306 = r.CheckBreak() - } - if yyb2306 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2306-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *PodTemplateSpec) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -30746,16 +30864,17 @@ func (x *PodTemplateSpec) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep2314 := !z.EncBinary() yy2arr2314 := z.EncBasicHandle().StructToArray - var yyq2314 [2]bool + var yyq2314 [4]bool _, _, _ = yysep2314, yyq2314, yy2arr2314 const yyr2314 bool = false - yyq2314[0] = true - yyq2314[1] = true + yyq2314[0] = x.Kind != "" + yyq2314[1] = x.APIVersion != "" + yyq2314[2] = true var yynn2314 int if yyr2314 || yy2arr2314 { - r.EncodeArrayStart(2) + r.EncodeArrayStart(4) } else { - yynn2314 = 0 + yynn2314 = 1 for _, b := range yyq2314 { if b { yynn2314++ @@ -30767,599 +30886,92 @@ func (x *PodTemplateSpec) CodecEncodeSelf(e *codec1978.Encoder) { if yyr2314 || yy2arr2314 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if yyq2314[0] { - yy2316 := &x.ObjectMeta - yy2316.CodecEncodeSelf(e) + yym2316 := z.EncBinary() + _ = yym2316 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } } else { - r.EncodeNil() + r.EncodeString(codecSelferC_UTF81234, "") } } else { if yyq2314[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2317 := &x.ObjectMeta - yy2317.CodecEncodeSelf(e) + yym2317 := z.EncBinary() + _ = yym2317 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } } } if yyr2314 || yy2arr2314 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if yyq2314[1] { - yy2319 := &x.Spec - yy2319.CodecEncodeSelf(e) + yym2319 := z.EncBinary() + _ = yym2319 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } } else { - r.EncodeNil() + r.EncodeString(codecSelferC_UTF81234, "") } } else { if yyq2314[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("spec")) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2320 := &x.Spec - yy2320.CodecEncodeSelf(e) + yym2320 := z.EncBinary() + _ = yym2320 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } } } if yyr2314 || yy2arr2314 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *PodTemplateSpec) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym2321 := z.DecBinary() - _ = yym2321 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct2322 := r.ContainerType() - if yyct2322 == codecSelferValueTypeMap1234 { - yyl2322 := r.ReadMapStart() - if yyl2322 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl2322, d) - } - } else if yyct2322 == codecSelferValueTypeArray1234 { - yyl2322 := r.ReadArrayStart() - if yyl2322 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl2322, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *PodTemplateSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys2323Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2323Slc - var yyhl2323 bool = l >= 0 - for yyj2323 := 0; ; yyj2323++ { - if yyhl2323 { - if yyj2323 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2323Slc = r.DecodeBytes(yys2323Slc, true, true) - yys2323 := string(yys2323Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2323 { - case "metadata": - if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} - } else { - yyv2324 := &x.ObjectMeta - yyv2324.CodecDecodeSelf(d) - } - case "spec": - if r.TryDecodeAsNil() { - x.Spec = PodSpec{} - } else { - yyv2325 := &x.Spec - yyv2325.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys2323) - } // end switch yys2323 - } // end for yyj2323 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj2326 int - var yyb2326 bool - var yyhl2326 bool = l >= 0 - yyj2326++ - if yyhl2326 { - yyb2326 = yyj2326 > l - } else { - yyb2326 = r.CheckBreak() - } - if yyb2326 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} - } else { - yyv2327 := &x.ObjectMeta - yyv2327.CodecDecodeSelf(d) - } - yyj2326++ - if yyhl2326 { - yyb2326 = yyj2326 > l - } else { - yyb2326 = r.CheckBreak() - } - if yyb2326 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Spec = PodSpec{} - } else { - yyv2328 := &x.Spec - yyv2328.CodecDecodeSelf(d) - } - for { - yyj2326++ - if yyhl2326 { - yyb2326 = yyj2326 > l - } else { - yyb2326 = r.CheckBreak() - } - if yyb2326 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2326-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym2329 := z.EncBinary() - _ = yym2329 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep2330 := !z.EncBinary() - yy2arr2330 := z.EncBasicHandle().StructToArray - var yyq2330 [4]bool - _, _, _ = yysep2330, yyq2330, yy2arr2330 - const yyr2330 bool = false - yyq2330[0] = x.Kind != "" - yyq2330[1] = x.APIVersion != "" - yyq2330[2] = true - yyq2330[3] = true - var yynn2330 int - if yyr2330 || yy2arr2330 { - r.EncodeArrayStart(4) - } else { - yynn2330 = 0 - for _, b := range yyq2330 { - if b { - yynn2330++ - } - } - r.EncodeMapStart(yynn2330) - yynn2330 = 0 - } - if yyr2330 || yy2arr2330 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2330[0] { - yym2332 := z.EncBinary() - _ = yym2332 + if yyq2314[2] { + yy2322 := &x.ListMeta + yym2323 := z.EncBinary() + _ = yym2323 if false { + } else if z.HasExtensions() && z.EncExt(yy2322) { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + z.EncFallback(yy2322) } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2330[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2333 := z.EncBinary() - _ = yym2333 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2330 || yy2arr2330 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2330[1] { - yym2335 := z.EncBinary() - _ = yym2335 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2330[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2336 := z.EncBinary() - _ = yym2336 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr2330 || yy2arr2330 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2330[2] { - yy2338 := &x.ObjectMeta - yy2338.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2330[2] { + if yyq2314[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2339 := &x.ObjectMeta - yy2339.CodecEncodeSelf(e) - } - } - if yyr2330 || yy2arr2330 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2330[3] { - yy2341 := &x.Template - yy2341.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq2330[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("template")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2342 := &x.Template - yy2342.CodecEncodeSelf(e) - } - } - if yyr2330 || yy2arr2330 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *PodTemplate) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym2343 := z.DecBinary() - _ = yym2343 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct2344 := r.ContainerType() - if yyct2344 == codecSelferValueTypeMap1234 { - yyl2344 := r.ReadMapStart() - if yyl2344 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl2344, d) - } - } else if yyct2344 == codecSelferValueTypeArray1234 { - yyl2344 := r.ReadArrayStart() - if yyl2344 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl2344, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys2345Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2345Slc - var yyhl2345 bool = l >= 0 - for yyj2345 := 0; ; yyj2345++ { - if yyhl2345 { - if yyj2345 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2345Slc = r.DecodeBytes(yys2345Slc, true, true) - yys2345 := string(yys2345Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2345 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "metadata": - if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} - } else { - yyv2348 := &x.ObjectMeta - yyv2348.CodecDecodeSelf(d) - } - case "template": - if r.TryDecodeAsNil() { - x.Template = PodTemplateSpec{} - } else { - yyv2349 := &x.Template - yyv2349.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys2345) - } // end switch yys2345 - } // end for yyj2345 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj2350 int - var yyb2350 bool - var yyhl2350 bool = l >= 0 - yyj2350++ - if yyhl2350 { - yyb2350 = yyj2350 > l - } else { - yyb2350 = r.CheckBreak() - } - if yyb2350 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj2350++ - if yyhl2350 { - yyb2350 = yyj2350 > l - } else { - yyb2350 = r.CheckBreak() - } - if yyb2350 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj2350++ - if yyhl2350 { - yyb2350 = yyj2350 > l - } else { - yyb2350 = r.CheckBreak() - } - if yyb2350 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} - } else { - yyv2353 := &x.ObjectMeta - yyv2353.CodecDecodeSelf(d) - } - yyj2350++ - if yyhl2350 { - yyb2350 = yyj2350 > l - } else { - yyb2350 = r.CheckBreak() - } - if yyb2350 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Template = PodTemplateSpec{} - } else { - yyv2354 := &x.Template - yyv2354.CodecDecodeSelf(d) - } - for { - yyj2350++ - if yyhl2350 { - yyb2350 = yyj2350 > l - } else { - yyb2350 = r.CheckBreak() - } - if yyb2350 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2350-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym2355 := z.EncBinary() - _ = yym2355 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep2356 := !z.EncBinary() - yy2arr2356 := z.EncBasicHandle().StructToArray - var yyq2356 [4]bool - _, _, _ = yysep2356, yyq2356, yy2arr2356 - const yyr2356 bool = false - yyq2356[0] = x.Kind != "" - yyq2356[1] = x.APIVersion != "" - yyq2356[2] = true - var yynn2356 int - if yyr2356 || yy2arr2356 { - r.EncodeArrayStart(4) - } else { - yynn2356 = 1 - for _, b := range yyq2356 { - if b { - yynn2356++ - } - } - r.EncodeMapStart(yynn2356) - yynn2356 = 0 - } - if yyr2356 || yy2arr2356 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2356[0] { - yym2358 := z.EncBinary() - _ = yym2358 + yy2324 := &x.ListMeta + yym2325 := z.EncBinary() + _ = yym2325 if false { + } else if z.HasExtensions() && z.EncExt(yy2324) { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2356[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2359 := z.EncBinary() - _ = yym2359 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + z.EncFallback(yy2324) } } } - if yyr2356 || yy2arr2356 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2356[1] { - yym2361 := z.EncBinary() - _ = yym2361 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2356[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2362 := z.EncBinary() - _ = yym2362 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr2356 || yy2arr2356 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2356[2] { - yy2364 := &x.ListMeta - yym2365 := z.EncBinary() - _ = yym2365 - if false { - } else if z.HasExtensions() && z.EncExt(yy2364) { - } else { - z.EncFallback(yy2364) - } - } else { - r.EncodeNil() - } - } else { - if yyq2356[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2366 := &x.ListMeta - yym2367 := z.EncBinary() - _ = yym2367 - if false { - } else if z.HasExtensions() && z.EncExt(yy2366) { - } else { - z.EncFallback(yy2366) - } - } - } - if yyr2356 || yy2arr2356 { + if yyr2314 || yy2arr2314 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2369 := z.EncBinary() - _ = yym2369 + yym2327 := z.EncBinary() + _ = yym2327 if false { } else { - h.encSlicePodTemplate(([]PodTemplate)(x.Items), e) + h.encSlicePod(([]Pod)(x.Items), e) } } } else { @@ -31369,15 +30981,15 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2370 := z.EncBinary() - _ = yym2370 + yym2328 := z.EncBinary() + _ = yym2328 if false { } else { - h.encSlicePodTemplate(([]PodTemplate)(x.Items), e) + h.encSlicePod(([]Pod)(x.Items), e) } } } - if yyr2356 || yy2arr2356 { + if yyr2314 || yy2arr2314 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31386,29 +30998,29 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { } } -func (x *PodTemplateList) CodecDecodeSelf(d *codec1978.Decoder) { +func (x *PodList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2371 := z.DecBinary() - _ = yym2371 + yym2329 := z.DecBinary() + _ = yym2329 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2372 := r.ContainerType() - if yyct2372 == codecSelferValueTypeMap1234 { - yyl2372 := r.ReadMapStart() - if yyl2372 == 0 { + yyct2330 := r.ContainerType() + if yyct2330 == codecSelferValueTypeMap1234 { + yyl2330 := r.ReadMapStart() + if yyl2330 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2372, d) + x.codecDecodeSelfFromMap(yyl2330, d) } - } else if yyct2372 == codecSelferValueTypeArray1234 { - yyl2372 := r.ReadArrayStart() - if yyl2372 == 0 { + } else if yyct2330 == codecSelferValueTypeArray1234 { + yyl2330 := r.ReadArrayStart() + if yyl2330 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2372, d) + x.codecDecodeSelfFromArray(yyl2330, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31416,16 +31028,16 @@ func (x *PodTemplateList) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2373Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2373Slc - var yyhl2373 bool = l >= 0 - for yyj2373 := 0; ; yyj2373++ { - if yyhl2373 { - if yyj2373 >= l { + var yys2331Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2331Slc + var yyhl2331 bool = l >= 0 + for yyj2331 := 0; ; yyj2331++ { + if yyhl2331 { + if yyj2331 >= l { break } } else { @@ -31434,10 +31046,10 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2373Slc = r.DecodeBytes(yys2373Slc, true, true) - yys2373 := string(yys2373Slc) + yys2331Slc = r.DecodeBytes(yys2331Slc, true, true) + yys2331 := string(yys2331Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2373 { + switch yys2331 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -31454,48 +31066,48 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv2376 := &x.ListMeta - yym2377 := z.DecBinary() - _ = yym2377 + yyv2334 := &x.ListMeta + yym2335 := z.DecBinary() + _ = yym2335 if false { - } else if z.HasExtensions() && z.DecExt(yyv2376) { + } else if z.HasExtensions() && z.DecExt(yyv2334) { } else { - z.DecFallback(yyv2376, false) + z.DecFallback(yyv2334, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2378 := &x.Items - yym2379 := z.DecBinary() - _ = yym2379 + yyv2336 := &x.Items + yym2337 := z.DecBinary() + _ = yym2337 if false { } else { - h.decSlicePodTemplate((*[]PodTemplate)(yyv2378), d) + h.decSlicePod((*[]Pod)(yyv2336), d) } } default: - z.DecStructFieldNotFound(-1, yys2373) - } // end switch yys2373 - } // end for yyj2373 + z.DecStructFieldNotFound(-1, yys2331) + } // end switch yys2331 + } // end for yyj2331 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } -func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { +func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2380 int - var yyb2380 bool - var yyhl2380 bool = l >= 0 - yyj2380++ - if yyhl2380 { - yyb2380 = yyj2380 > l + var yyj2338 int + var yyb2338 bool + var yyhl2338 bool = l >= 0 + yyj2338++ + if yyhl2338 { + yyb2338 = yyj2338 > l } else { - yyb2380 = r.CheckBreak() + yyb2338 = r.CheckBreak() } - if yyb2380 { + if yyb2338 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31505,13 +31117,13 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj2380++ - if yyhl2380 { - yyb2380 = yyj2380 > l + yyj2338++ + if yyhl2338 { + yyb2338 = yyj2338 > l } else { - yyb2380 = r.CheckBreak() + yyb2338 = r.CheckBreak() } - if yyb2380 { + if yyb2338 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31521,13 +31133,13 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj2380++ - if yyhl2380 { - yyb2380 = yyj2380 > l + yyj2338++ + if yyhl2338 { + yyb2338 = yyj2338 > l } else { - yyb2380 = r.CheckBreak() + yyb2338 = r.CheckBreak() } - if yyb2380 { + if yyb2338 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31535,22 +31147,22 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv2383 := &x.ListMeta - yym2384 := z.DecBinary() - _ = yym2384 + yyv2341 := &x.ListMeta + yym2342 := z.DecBinary() + _ = yym2342 if false { - } else if z.HasExtensions() && z.DecExt(yyv2383) { + } else if z.HasExtensions() && z.DecExt(yyv2341) { } else { - z.DecFallback(yyv2383, false) + z.DecFallback(yyv2341, false) } } - yyj2380++ - if yyhl2380 { - yyb2380 = yyj2380 > l + yyj2338++ + if yyhl2338 { + yyb2338 = yyj2338 > l } else { - yyb2380 = r.CheckBreak() + yyb2338 = r.CheckBreak() } - if yyb2380 { + if yyb2338 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31558,31 +31170,537 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2385 := &x.Items - yym2386 := z.DecBinary() - _ = yym2386 + yyv2343 := &x.Items + yym2344 := z.DecBinary() + _ = yym2344 if false { } else { - h.decSlicePodTemplate((*[]PodTemplate)(yyv2385), d) + h.decSlicePod((*[]Pod)(yyv2343), d) } } for { - yyj2380++ - if yyhl2380 { - yyb2380 = yyj2380 > l + yyj2338++ + if yyhl2338 { + yyb2338 = yyj2338 > l } else { - yyb2380 = r.CheckBreak() + yyb2338 = r.CheckBreak() } - if yyb2380 { + if yyb2338 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2380-1, "") + z.DecStructFieldNotFound(yyj2338-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { +func (x *PodTemplateSpec) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym2345 := z.EncBinary() + _ = yym2345 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep2346 := !z.EncBinary() + yy2arr2346 := z.EncBasicHandle().StructToArray + var yyq2346 [2]bool + _, _, _ = yysep2346, yyq2346, yy2arr2346 + const yyr2346 bool = false + yyq2346[0] = true + yyq2346[1] = true + var yynn2346 int + if yyr2346 || yy2arr2346 { + r.EncodeArrayStart(2) + } else { + yynn2346 = 0 + for _, b := range yyq2346 { + if b { + yynn2346++ + } + } + r.EncodeMapStart(yynn2346) + yynn2346 = 0 + } + if yyr2346 || yy2arr2346 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2346[0] { + yy2348 := &x.ObjectMeta + yy2348.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq2346[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2349 := &x.ObjectMeta + yy2349.CodecEncodeSelf(e) + } + } + if yyr2346 || yy2arr2346 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2346[1] { + yy2351 := &x.Spec + yy2351.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq2346[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("spec")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2352 := &x.Spec + yy2352.CodecEncodeSelf(e) + } + } + if yyr2346 || yy2arr2346 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *PodTemplateSpec) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2353 := z.DecBinary() + _ = yym2353 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct2354 := r.ContainerType() + if yyct2354 == codecSelferValueTypeMap1234 { + yyl2354 := r.ReadMapStart() + if yyl2354 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl2354, d) + } + } else if yyct2354 == codecSelferValueTypeArray1234 { + yyl2354 := r.ReadArrayStart() + if yyl2354 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl2354, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *PodTemplateSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys2355Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2355Slc + var yyhl2355 bool = l >= 0 + for yyj2355 := 0; ; yyj2355++ { + if yyhl2355 { + if yyj2355 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys2355Slc = r.DecodeBytes(yys2355Slc, true, true) + yys2355 := string(yys2355Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys2355 { + case "metadata": + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv2356 := &x.ObjectMeta + yyv2356.CodecDecodeSelf(d) + } + case "spec": + if r.TryDecodeAsNil() { + x.Spec = PodSpec{} + } else { + yyv2357 := &x.Spec + yyv2357.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys2355) + } // end switch yys2355 + } // end for yyj2355 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj2358 int + var yyb2358 bool + var yyhl2358 bool = l >= 0 + yyj2358++ + if yyhl2358 { + yyb2358 = yyj2358 > l + } else { + yyb2358 = r.CheckBreak() + } + if yyb2358 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv2359 := &x.ObjectMeta + yyv2359.CodecDecodeSelf(d) + } + yyj2358++ + if yyhl2358 { + yyb2358 = yyj2358 > l + } else { + yyb2358 = r.CheckBreak() + } + if yyb2358 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Spec = PodSpec{} + } else { + yyv2360 := &x.Spec + yyv2360.CodecDecodeSelf(d) + } + for { + yyj2358++ + if yyhl2358 { + yyb2358 = yyj2358 > l + } else { + yyb2358 = r.CheckBreak() + } + if yyb2358 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj2358-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym2361 := z.EncBinary() + _ = yym2361 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep2362 := !z.EncBinary() + yy2arr2362 := z.EncBasicHandle().StructToArray + var yyq2362 [4]bool + _, _, _ = yysep2362, yyq2362, yy2arr2362 + const yyr2362 bool = false + yyq2362[0] = x.Kind != "" + yyq2362[1] = x.APIVersion != "" + yyq2362[2] = true + yyq2362[3] = true + var yynn2362 int + if yyr2362 || yy2arr2362 { + r.EncodeArrayStart(4) + } else { + yynn2362 = 0 + for _, b := range yyq2362 { + if b { + yynn2362++ + } + } + r.EncodeMapStart(yynn2362) + yynn2362 = 0 + } + if yyr2362 || yy2arr2362 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2362[0] { + yym2364 := z.EncBinary() + _ = yym2364 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2362[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2365 := z.EncBinary() + _ = yym2365 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr2362 || yy2arr2362 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2362[1] { + yym2367 := z.EncBinary() + _ = yym2367 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2362[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2368 := z.EncBinary() + _ = yym2368 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr2362 || yy2arr2362 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2362[2] { + yy2370 := &x.ObjectMeta + yy2370.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq2362[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2371 := &x.ObjectMeta + yy2371.CodecEncodeSelf(e) + } + } + if yyr2362 || yy2arr2362 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2362[3] { + yy2373 := &x.Template + yy2373.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq2362[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("template")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2374 := &x.Template + yy2374.CodecEncodeSelf(e) + } + } + if yyr2362 || yy2arr2362 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *PodTemplate) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2375 := z.DecBinary() + _ = yym2375 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct2376 := r.ContainerType() + if yyct2376 == codecSelferValueTypeMap1234 { + yyl2376 := r.ReadMapStart() + if yyl2376 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl2376, d) + } + } else if yyct2376 == codecSelferValueTypeArray1234 { + yyl2376 := r.ReadArrayStart() + if yyl2376 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl2376, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys2377Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2377Slc + var yyhl2377 bool = l >= 0 + for yyj2377 := 0; ; yyj2377++ { + if yyhl2377 { + if yyj2377 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys2377Slc = r.DecodeBytes(yys2377Slc, true, true) + yys2377 := string(yys2377Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys2377 { + case "kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "metadata": + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv2380 := &x.ObjectMeta + yyv2380.CodecDecodeSelf(d) + } + case "template": + if r.TryDecodeAsNil() { + x.Template = PodTemplateSpec{} + } else { + yyv2381 := &x.Template + yyv2381.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys2377) + } // end switch yys2377 + } // end for yyj2377 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj2382 int + var yyb2382 bool + var yyhl2382 bool = l >= 0 + yyj2382++ + if yyhl2382 { + yyb2382 = yyj2382 > l + } else { + yyb2382 = r.CheckBreak() + } + if yyb2382 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj2382++ + if yyhl2382 { + yyb2382 = yyj2382 > l + } else { + yyb2382 = r.CheckBreak() + } + if yyb2382 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj2382++ + if yyhl2382 { + yyb2382 = yyj2382 > l + } else { + yyb2382 = r.CheckBreak() + } + if yyb2382 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv2385 := &x.ObjectMeta + yyv2385.CodecDecodeSelf(d) + } + yyj2382++ + if yyhl2382 { + yyb2382 = yyj2382 > l + } else { + yyb2382 = r.CheckBreak() + } + if yyb2382 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Template = PodTemplateSpec{} + } else { + yyv2386 := &x.Template + yyv2386.CodecDecodeSelf(d) + } + for { + yyj2382++ + if yyhl2382 { + yyb2382 = yyj2382 > l + } else { + yyb2382 = r.CheckBreak() + } + if yyb2382 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj2382-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -31599,15 +31717,14 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { var yyq2388 [4]bool _, _, _ = yysep2388, yyq2388, yy2arr2388 const yyr2388 bool = false - yyq2388[0] = x.Replicas != nil - yyq2388[1] = x.MinReadySeconds != 0 - yyq2388[2] = len(x.Selector) != 0 - yyq2388[3] = x.Template != nil + yyq2388[0] = x.Kind != "" + yyq2388[1] = x.APIVersion != "" + yyq2388[2] = true var yynn2388 int if yyr2388 || yy2arr2388 { r.EncodeArrayStart(4) } else { - yynn2388 = 0 + yynn2388 = 1 for _, b := range yyq2388 { if b { yynn2388++ @@ -31619,75 +31736,63 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { if yyr2388 || yy2arr2388 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if yyq2388[0] { - if x.Replicas == nil { - r.EncodeNil() + yym2390 := z.EncBinary() + _ = yym2390 + if false { } else { - yy2390 := *x.Replicas - yym2391 := z.EncBinary() - _ = yym2391 - if false { - } else { - r.EncodeInt(int64(yy2390)) - } + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { - r.EncodeNil() + r.EncodeString(codecSelferC_UTF81234, "") } } else { if yyq2388[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("replicas")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Replicas == nil { - r.EncodeNil() + yym2391 := z.EncBinary() + _ = yym2391 + if false { } else { - yy2392 := *x.Replicas - yym2393 := z.EncBinary() - _ = yym2393 - if false { - } else { - r.EncodeInt(int64(yy2392)) - } + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } if yyr2388 || yy2arr2388 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if yyq2388[1] { - yym2395 := z.EncBinary() - _ = yym2395 + yym2393 := z.EncBinary() + _ = yym2393 if false { } else { - r.EncodeInt(int64(x.MinReadySeconds)) + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } else { - r.EncodeInt(0) + r.EncodeString(codecSelferC_UTF81234, "") } } else { if yyq2388[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("minReadySeconds")) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2396 := z.EncBinary() - _ = yym2396 + yym2394 := z.EncBinary() + _ = yym2394 if false { } else { - r.EncodeInt(int64(x.MinReadySeconds)) + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } if yyr2388 || yy2arr2388 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if yyq2388[2] { - if x.Selector == nil { - r.EncodeNil() + yy2396 := &x.ListMeta + yym2397 := z.EncBinary() + _ = yym2397 + if false { + } else if z.HasExtensions() && z.EncExt(yy2396) { } else { - yym2398 := z.EncBinary() - _ = yym2398 - if false { - } else { - z.F.EncMapStringStringV(x.Selector, false, e) - } + z.EncFallback(yy2396) } } else { r.EncodeNil() @@ -31695,40 +31800,42 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { } else { if yyq2388[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("selector")) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Selector == nil { - r.EncodeNil() + yy2398 := &x.ListMeta + yym2399 := z.EncBinary() + _ = yym2399 + if false { + } else if z.HasExtensions() && z.EncExt(yy2398) { } else { - yym2399 := z.EncBinary() - _ = yym2399 - if false { - } else { - z.F.EncMapStringStringV(x.Selector, false, e) - } + z.EncFallback(yy2398) } } } if yyr2388 || yy2arr2388 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2388[3] { - if x.Template == nil { - r.EncodeNil() - } else { - x.Template.CodecEncodeSelf(e) - } - } else { + if x.Items == nil { r.EncodeNil() + } else { + yym2401 := z.EncBinary() + _ = yym2401 + if false { + } else { + h.encSlicePodTemplate(([]PodTemplate)(x.Items), e) + } } } else { - if yyq2388[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("template")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Template == nil { - r.EncodeNil() + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("items")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Items == nil { + r.EncodeNil() + } else { + yym2402 := z.EncBinary() + _ = yym2402 + if false { } else { - x.Template.CodecEncodeSelf(e) + h.encSlicePodTemplate(([]PodTemplate)(x.Items), e) } } } @@ -31741,29 +31848,384 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } +func (x *PodTemplateList) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2403 := z.DecBinary() + _ = yym2403 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct2404 := r.ContainerType() + if yyct2404 == codecSelferValueTypeMap1234 { + yyl2404 := r.ReadMapStart() + if yyl2404 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl2404, d) + } + } else if yyct2404 == codecSelferValueTypeArray1234 { + yyl2404 := r.ReadArrayStart() + if yyl2404 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl2404, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys2405Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2405Slc + var yyhl2405 bool = l >= 0 + for yyj2405 := 0; ; yyj2405++ { + if yyhl2405 { + if yyj2405 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys2405Slc = r.DecodeBytes(yys2405Slc, true, true) + yys2405 := string(yys2405Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys2405 { + case "kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "metadata": + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_v1.ListMeta{} + } else { + yyv2408 := &x.ListMeta + yym2409 := z.DecBinary() + _ = yym2409 + if false { + } else if z.HasExtensions() && z.DecExt(yyv2408) { + } else { + z.DecFallback(yyv2408, false) + } + } + case "items": + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv2410 := &x.Items + yym2411 := z.DecBinary() + _ = yym2411 + if false { + } else { + h.decSlicePodTemplate((*[]PodTemplate)(yyv2410), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys2405) + } // end switch yys2405 + } // end for yyj2405 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj2412 int + var yyb2412 bool + var yyhl2412 bool = l >= 0 + yyj2412++ + if yyhl2412 { + yyb2412 = yyj2412 > l + } else { + yyb2412 = r.CheckBreak() + } + if yyb2412 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj2412++ + if yyhl2412 { + yyb2412 = yyj2412 > l + } else { + yyb2412 = r.CheckBreak() + } + if yyb2412 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj2412++ + if yyhl2412 { + yyb2412 = yyj2412 > l + } else { + yyb2412 = r.CheckBreak() + } + if yyb2412 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_v1.ListMeta{} + } else { + yyv2415 := &x.ListMeta + yym2416 := z.DecBinary() + _ = yym2416 + if false { + } else if z.HasExtensions() && z.DecExt(yyv2415) { + } else { + z.DecFallback(yyv2415, false) + } + } + yyj2412++ + if yyhl2412 { + yyb2412 = yyj2412 > l + } else { + yyb2412 = r.CheckBreak() + } + if yyb2412 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv2417 := &x.Items + yym2418 := z.DecBinary() + _ = yym2418 + if false { + } else { + h.decSlicePodTemplate((*[]PodTemplate)(yyv2417), d) + } + } + for { + yyj2412++ + if yyhl2412 { + yyb2412 = yyj2412 > l + } else { + yyb2412 = r.CheckBreak() + } + if yyb2412 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj2412-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym2419 := z.EncBinary() + _ = yym2419 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep2420 := !z.EncBinary() + yy2arr2420 := z.EncBasicHandle().StructToArray + var yyq2420 [4]bool + _, _, _ = yysep2420, yyq2420, yy2arr2420 + const yyr2420 bool = false + yyq2420[0] = x.Replicas != nil + yyq2420[1] = x.MinReadySeconds != 0 + yyq2420[2] = len(x.Selector) != 0 + yyq2420[3] = x.Template != nil + var yynn2420 int + if yyr2420 || yy2arr2420 { + r.EncodeArrayStart(4) + } else { + yynn2420 = 0 + for _, b := range yyq2420 { + if b { + yynn2420++ + } + } + r.EncodeMapStart(yynn2420) + yynn2420 = 0 + } + if yyr2420 || yy2arr2420 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2420[0] { + if x.Replicas == nil { + r.EncodeNil() + } else { + yy2422 := *x.Replicas + yym2423 := z.EncBinary() + _ = yym2423 + if false { + } else { + r.EncodeInt(int64(yy2422)) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2420[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("replicas")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Replicas == nil { + r.EncodeNil() + } else { + yy2424 := *x.Replicas + yym2425 := z.EncBinary() + _ = yym2425 + if false { + } else { + r.EncodeInt(int64(yy2424)) + } + } + } + } + if yyr2420 || yy2arr2420 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2420[1] { + yym2427 := z.EncBinary() + _ = yym2427 + if false { + } else { + r.EncodeInt(int64(x.MinReadySeconds)) + } + } else { + r.EncodeInt(0) + } + } else { + if yyq2420[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("minReadySeconds")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2428 := z.EncBinary() + _ = yym2428 + if false { + } else { + r.EncodeInt(int64(x.MinReadySeconds)) + } + } + } + if yyr2420 || yy2arr2420 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2420[2] { + if x.Selector == nil { + r.EncodeNil() + } else { + yym2430 := z.EncBinary() + _ = yym2430 + if false { + } else { + z.F.EncMapStringStringV(x.Selector, false, e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2420[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("selector")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Selector == nil { + r.EncodeNil() + } else { + yym2431 := z.EncBinary() + _ = yym2431 + if false { + } else { + z.F.EncMapStringStringV(x.Selector, false, e) + } + } + } + } + if yyr2420 || yy2arr2420 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2420[3] { + if x.Template == nil { + r.EncodeNil() + } else { + x.Template.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq2420[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("template")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Template == nil { + r.EncodeNil() + } else { + x.Template.CodecEncodeSelf(e) + } + } + } + if yyr2420 || yy2arr2420 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + func (x *ReplicationControllerSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2401 := z.DecBinary() - _ = yym2401 + yym2433 := z.DecBinary() + _ = yym2433 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2402 := r.ContainerType() - if yyct2402 == codecSelferValueTypeMap1234 { - yyl2402 := r.ReadMapStart() - if yyl2402 == 0 { + yyct2434 := r.ContainerType() + if yyct2434 == codecSelferValueTypeMap1234 { + yyl2434 := r.ReadMapStart() + if yyl2434 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2402, d) + x.codecDecodeSelfFromMap(yyl2434, d) } - } else if yyct2402 == codecSelferValueTypeArray1234 { - yyl2402 := r.ReadArrayStart() - if yyl2402 == 0 { + } else if yyct2434 == codecSelferValueTypeArray1234 { + yyl2434 := r.ReadArrayStart() + if yyl2434 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2402, d) + x.codecDecodeSelfFromArray(yyl2434, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31775,12 +32237,12 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2403Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2403Slc - var yyhl2403 bool = l >= 0 - for yyj2403 := 0; ; yyj2403++ { - if yyhl2403 { - if yyj2403 >= l { + var yys2435Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2435Slc + var yyhl2435 bool = l >= 0 + for yyj2435 := 0; ; yyj2435++ { + if yyhl2435 { + if yyj2435 >= l { break } } else { @@ -31789,10 +32251,10 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2403Slc = r.DecodeBytes(yys2403Slc, true, true) - yys2403 := string(yys2403Slc) + yys2435Slc = r.DecodeBytes(yys2435Slc, true, true) + yys2435 := string(yys2435Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2403 { + switch yys2435 { case "replicas": if r.TryDecodeAsNil() { if x.Replicas != nil { @@ -31802,8 +32264,8 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D if x.Replicas == nil { x.Replicas = new(int32) } - yym2405 := z.DecBinary() - _ = yym2405 + yym2437 := z.DecBinary() + _ = yym2437 if false { } else { *((*int32)(x.Replicas)) = int32(r.DecodeInt(32)) @@ -31819,12 +32281,12 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2407 := &x.Selector - yym2408 := z.DecBinary() - _ = yym2408 + yyv2439 := &x.Selector + yym2440 := z.DecBinary() + _ = yym2440 if false { } else { - z.F.DecMapStringStringX(yyv2407, false, d) + z.F.DecMapStringStringX(yyv2439, false, d) } } case "template": @@ -31839,9 +32301,9 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D x.Template.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2403) - } // end switch yys2403 - } // end for yyj2403 + z.DecStructFieldNotFound(-1, yys2435) + } // end switch yys2435 + } // end for yyj2435 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31849,16 +32311,16 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2410 int - var yyb2410 bool - var yyhl2410 bool = l >= 0 - yyj2410++ - if yyhl2410 { - yyb2410 = yyj2410 > l + var yyj2442 int + var yyb2442 bool + var yyhl2442 bool = l >= 0 + yyj2442++ + if yyhl2442 { + yyb2442 = yyj2442 > l } else { - yyb2410 = r.CheckBreak() + yyb2442 = r.CheckBreak() } - if yyb2410 { + if yyb2442 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31871,20 +32333,20 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 if x.Replicas == nil { x.Replicas = new(int32) } - yym2412 := z.DecBinary() - _ = yym2412 + yym2444 := z.DecBinary() + _ = yym2444 if false { } else { *((*int32)(x.Replicas)) = int32(r.DecodeInt(32)) } } - yyj2410++ - if yyhl2410 { - yyb2410 = yyj2410 > l + yyj2442++ + if yyhl2442 { + yyb2442 = yyj2442 > l } else { - yyb2410 = r.CheckBreak() + yyb2442 = r.CheckBreak() } - if yyb2410 { + if yyb2442 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31894,13 +32356,13 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.MinReadySeconds = int32(r.DecodeInt(32)) } - yyj2410++ - if yyhl2410 { - yyb2410 = yyj2410 > l + yyj2442++ + if yyhl2442 { + yyb2442 = yyj2442 > l } else { - yyb2410 = r.CheckBreak() + yyb2442 = r.CheckBreak() } - if yyb2410 { + if yyb2442 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31908,21 +32370,21 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2414 := &x.Selector - yym2415 := z.DecBinary() - _ = yym2415 + yyv2446 := &x.Selector + yym2447 := z.DecBinary() + _ = yym2447 if false { } else { - z.F.DecMapStringStringX(yyv2414, false, d) + z.F.DecMapStringStringX(yyv2446, false, d) } } - yyj2410++ - if yyhl2410 { - yyb2410 = yyj2410 > l + yyj2442++ + if yyhl2442 { + yyb2442 = yyj2442 > l } else { - yyb2410 = r.CheckBreak() + yyb2442 = r.CheckBreak() } - if yyb2410 { + if yyb2442 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31938,17 +32400,17 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 x.Template.CodecDecodeSelf(d) } for { - yyj2410++ - if yyhl2410 { - yyb2410 = yyj2410 > l + yyj2442++ + if yyhl2442 { + yyb2442 = yyj2442 > l } else { - yyb2410 = r.CheckBreak() + yyb2442 = r.CheckBreak() } - if yyb2410 { + if yyb2442 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2410-1, "") + z.DecStructFieldNotFound(yyj2442-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31960,38 +32422,38 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2417 := z.EncBinary() - _ = yym2417 + yym2449 := z.EncBinary() + _ = yym2449 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2418 := !z.EncBinary() - yy2arr2418 := z.EncBasicHandle().StructToArray - var yyq2418 [6]bool - _, _, _ = yysep2418, yyq2418, yy2arr2418 - const yyr2418 bool = false - yyq2418[1] = x.FullyLabeledReplicas != 0 - yyq2418[2] = x.ReadyReplicas != 0 - yyq2418[3] = x.AvailableReplicas != 0 - yyq2418[4] = x.ObservedGeneration != 0 - yyq2418[5] = len(x.Conditions) != 0 - var yynn2418 int - if yyr2418 || yy2arr2418 { + yysep2450 := !z.EncBinary() + yy2arr2450 := z.EncBasicHandle().StructToArray + var yyq2450 [6]bool + _, _, _ = yysep2450, yyq2450, yy2arr2450 + const yyr2450 bool = false + yyq2450[1] = x.FullyLabeledReplicas != 0 + yyq2450[2] = x.ReadyReplicas != 0 + yyq2450[3] = x.AvailableReplicas != 0 + yyq2450[4] = x.ObservedGeneration != 0 + yyq2450[5] = len(x.Conditions) != 0 + var yynn2450 int + if yyr2450 || yy2arr2450 { r.EncodeArrayStart(6) } else { - yynn2418 = 1 - for _, b := range yyq2418 { + yynn2450 = 1 + for _, b := range yyq2450 { if b { - yynn2418++ + yynn2450++ } } - r.EncodeMapStart(yynn2418) - yynn2418 = 0 + r.EncodeMapStart(yynn2450) + yynn2450 = 0 } - if yyr2418 || yy2arr2418 { + if yyr2450 || yy2arr2450 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2420 := z.EncBinary() - _ = yym2420 + yym2452 := z.EncBinary() + _ = yym2452 if false { } else { r.EncodeInt(int64(x.Replicas)) @@ -32000,18 +32462,18 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("replicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2421 := z.EncBinary() - _ = yym2421 + yym2453 := z.EncBinary() + _ = yym2453 if false { } else { r.EncodeInt(int64(x.Replicas)) } } - if yyr2418 || yy2arr2418 { + if yyr2450 || yy2arr2450 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2418[1] { - yym2423 := z.EncBinary() - _ = yym2423 + if yyq2450[1] { + yym2455 := z.EncBinary() + _ = yym2455 if false { } else { r.EncodeInt(int64(x.FullyLabeledReplicas)) @@ -32020,23 +32482,23 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2418[1] { + if yyq2450[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fullyLabeledReplicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2424 := z.EncBinary() - _ = yym2424 + yym2456 := z.EncBinary() + _ = yym2456 if false { } else { r.EncodeInt(int64(x.FullyLabeledReplicas)) } } } - if yyr2418 || yy2arr2418 { + if yyr2450 || yy2arr2450 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2418[2] { - yym2426 := z.EncBinary() - _ = yym2426 + if yyq2450[2] { + yym2458 := z.EncBinary() + _ = yym2458 if false { } else { r.EncodeInt(int64(x.ReadyReplicas)) @@ -32045,23 +32507,23 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2418[2] { + if yyq2450[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readyReplicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2427 := z.EncBinary() - _ = yym2427 + yym2459 := z.EncBinary() + _ = yym2459 if false { } else { r.EncodeInt(int64(x.ReadyReplicas)) } } } - if yyr2418 || yy2arr2418 { + if yyr2450 || yy2arr2450 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2418[3] { - yym2429 := z.EncBinary() - _ = yym2429 + if yyq2450[3] { + yym2461 := z.EncBinary() + _ = yym2461 if false { } else { r.EncodeInt(int64(x.AvailableReplicas)) @@ -32070,23 +32532,23 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2418[3] { + if yyq2450[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("availableReplicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2430 := z.EncBinary() - _ = yym2430 + yym2462 := z.EncBinary() + _ = yym2462 if false { } else { r.EncodeInt(int64(x.AvailableReplicas)) } } } - if yyr2418 || yy2arr2418 { + if yyr2450 || yy2arr2450 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2418[4] { - yym2432 := z.EncBinary() - _ = yym2432 + if yyq2450[4] { + yym2464 := z.EncBinary() + _ = yym2464 if false { } else { r.EncodeInt(int64(x.ObservedGeneration)) @@ -32095,26 +32557,26 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2418[4] { + if yyq2450[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("observedGeneration")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2433 := z.EncBinary() - _ = yym2433 + yym2465 := z.EncBinary() + _ = yym2465 if false { } else { r.EncodeInt(int64(x.ObservedGeneration)) } } } - if yyr2418 || yy2arr2418 { + if yyr2450 || yy2arr2450 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2418[5] { + if yyq2450[5] { if x.Conditions == nil { r.EncodeNil() } else { - yym2435 := z.EncBinary() - _ = yym2435 + yym2467 := z.EncBinary() + _ = yym2467 if false { } else { h.encSliceReplicationControllerCondition(([]ReplicationControllerCondition)(x.Conditions), e) @@ -32124,15 +32586,15 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2418[5] { + if yyq2450[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym2436 := z.EncBinary() - _ = yym2436 + yym2468 := z.EncBinary() + _ = yym2468 if false { } else { h.encSliceReplicationControllerCondition(([]ReplicationControllerCondition)(x.Conditions), e) @@ -32140,7 +32602,7 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2418 || yy2arr2418 { + if yyr2450 || yy2arr2450 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32153,25 +32615,25 @@ func (x *ReplicationControllerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2437 := z.DecBinary() - _ = yym2437 + yym2469 := z.DecBinary() + _ = yym2469 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2438 := r.ContainerType() - if yyct2438 == codecSelferValueTypeMap1234 { - yyl2438 := r.ReadMapStart() - if yyl2438 == 0 { + yyct2470 := r.ContainerType() + if yyct2470 == codecSelferValueTypeMap1234 { + yyl2470 := r.ReadMapStart() + if yyl2470 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2438, d) + x.codecDecodeSelfFromMap(yyl2470, d) } - } else if yyct2438 == codecSelferValueTypeArray1234 { - yyl2438 := r.ReadArrayStart() - if yyl2438 == 0 { + } else if yyct2470 == codecSelferValueTypeArray1234 { + yyl2470 := r.ReadArrayStart() + if yyl2470 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2438, d) + x.codecDecodeSelfFromArray(yyl2470, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32183,12 +32645,12 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2439Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2439Slc - var yyhl2439 bool = l >= 0 - for yyj2439 := 0; ; yyj2439++ { - if yyhl2439 { - if yyj2439 >= l { + var yys2471Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2471Slc + var yyhl2471 bool = l >= 0 + for yyj2471 := 0; ; yyj2471++ { + if yyhl2471 { + if yyj2471 >= l { break } } else { @@ -32197,10 +32659,10 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2439Slc = r.DecodeBytes(yys2439Slc, true, true) - yys2439 := string(yys2439Slc) + yys2471Slc = r.DecodeBytes(yys2471Slc, true, true) + yys2471 := string(yys2471Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2439 { + switch yys2471 { case "replicas": if r.TryDecodeAsNil() { x.Replicas = 0 @@ -32235,18 +32697,18 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2445 := &x.Conditions - yym2446 := z.DecBinary() - _ = yym2446 + yyv2477 := &x.Conditions + yym2478 := z.DecBinary() + _ = yym2478 if false { } else { - h.decSliceReplicationControllerCondition((*[]ReplicationControllerCondition)(yyv2445), d) + h.decSliceReplicationControllerCondition((*[]ReplicationControllerCondition)(yyv2477), d) } } default: - z.DecStructFieldNotFound(-1, yys2439) - } // end switch yys2439 - } // end for yyj2439 + z.DecStructFieldNotFound(-1, yys2471) + } // end switch yys2471 + } // end for yyj2471 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32254,16 +32716,16 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2447 int - var yyb2447 bool - var yyhl2447 bool = l >= 0 - yyj2447++ - if yyhl2447 { - yyb2447 = yyj2447 > l + var yyj2479 int + var yyb2479 bool + var yyhl2479 bool = l >= 0 + yyj2479++ + if yyhl2479 { + yyb2479 = yyj2479 > l } else { - yyb2447 = r.CheckBreak() + yyb2479 = r.CheckBreak() } - if yyb2447 { + if yyb2479 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32273,13 +32735,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.Replicas = int32(r.DecodeInt(32)) } - yyj2447++ - if yyhl2447 { - yyb2447 = yyj2447 > l + yyj2479++ + if yyhl2479 { + yyb2479 = yyj2479 > l } else { - yyb2447 = r.CheckBreak() + yyb2479 = r.CheckBreak() } - if yyb2447 { + if yyb2479 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32289,13 +32751,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.FullyLabeledReplicas = int32(r.DecodeInt(32)) } - yyj2447++ - if yyhl2447 { - yyb2447 = yyj2447 > l + yyj2479++ + if yyhl2479 { + yyb2479 = yyj2479 > l } else { - yyb2447 = r.CheckBreak() + yyb2479 = r.CheckBreak() } - if yyb2447 { + if yyb2479 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32305,13 +32767,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.ReadyReplicas = int32(r.DecodeInt(32)) } - yyj2447++ - if yyhl2447 { - yyb2447 = yyj2447 > l + yyj2479++ + if yyhl2479 { + yyb2479 = yyj2479 > l } else { - yyb2447 = r.CheckBreak() + yyb2479 = r.CheckBreak() } - if yyb2447 { + if yyb2479 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32321,13 +32783,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.AvailableReplicas = int32(r.DecodeInt(32)) } - yyj2447++ - if yyhl2447 { - yyb2447 = yyj2447 > l + yyj2479++ + if yyhl2479 { + yyb2479 = yyj2479 > l } else { - yyb2447 = r.CheckBreak() + yyb2479 = r.CheckBreak() } - if yyb2447 { + if yyb2479 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32337,13 +32799,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.ObservedGeneration = int64(r.DecodeInt(64)) } - yyj2447++ - if yyhl2447 { - yyb2447 = yyj2447 > l + yyj2479++ + if yyhl2479 { + yyb2479 = yyj2479 > l } else { - yyb2447 = r.CheckBreak() + yyb2479 = r.CheckBreak() } - if yyb2447 { + if yyb2479 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32351,26 +32813,26 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2453 := &x.Conditions - yym2454 := z.DecBinary() - _ = yym2454 + yyv2485 := &x.Conditions + yym2486 := z.DecBinary() + _ = yym2486 if false { } else { - h.decSliceReplicationControllerCondition((*[]ReplicationControllerCondition)(yyv2453), d) + h.decSliceReplicationControllerCondition((*[]ReplicationControllerCondition)(yyv2485), d) } } for { - yyj2447++ - if yyhl2447 { - yyb2447 = yyj2447 > l + yyj2479++ + if yyhl2479 { + yyb2479 = yyj2479 > l } else { - yyb2447 = r.CheckBreak() + yyb2479 = r.CheckBreak() } - if yyb2447 { + if yyb2479 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2447-1, "") + z.DecStructFieldNotFound(yyj2479-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32379,8 +32841,8 @@ func (x ReplicationControllerConditionType) CodecEncodeSelf(e *codec1978.Encoder var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2455 := z.EncBinary() - _ = yym2455 + yym2487 := z.EncBinary() + _ = yym2487 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -32392,8 +32854,8 @@ func (x *ReplicationControllerConditionType) CodecDecodeSelf(d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2456 := z.DecBinary() - _ = yym2456 + yym2488 := z.DecBinary() + _ = yym2488 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -32408,33 +32870,33 @@ func (x *ReplicationControllerCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2457 := z.EncBinary() - _ = yym2457 + yym2489 := z.EncBinary() + _ = yym2489 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2458 := !z.EncBinary() - yy2arr2458 := z.EncBasicHandle().StructToArray - var yyq2458 [5]bool - _, _, _ = yysep2458, yyq2458, yy2arr2458 - const yyr2458 bool = false - yyq2458[2] = true - yyq2458[3] = x.Reason != "" - yyq2458[4] = x.Message != "" - var yynn2458 int - if yyr2458 || yy2arr2458 { + yysep2490 := !z.EncBinary() + yy2arr2490 := z.EncBasicHandle().StructToArray + var yyq2490 [5]bool + _, _, _ = yysep2490, yyq2490, yy2arr2490 + const yyr2490 bool = false + yyq2490[2] = true + yyq2490[3] = x.Reason != "" + yyq2490[4] = x.Message != "" + var yynn2490 int + if yyr2490 || yy2arr2490 { r.EncodeArrayStart(5) } else { - yynn2458 = 2 - for _, b := range yyq2458 { + yynn2490 = 2 + for _, b := range yyq2490 { if b { - yynn2458++ + yynn2490++ } } - r.EncodeMapStart(yynn2458) - yynn2458 = 0 + r.EncodeMapStart(yynn2490) + yynn2490 = 0 } - if yyr2458 || yy2arr2458 { + if yyr2490 || yy2arr2490 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -32443,7 +32905,7 @@ func (x *ReplicationControllerCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr2458 || yy2arr2458 { + if yyr2490 || yy2arr2490 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -32452,48 +32914,48 @@ func (x *ReplicationControllerCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr2458 || yy2arr2458 { + if yyr2490 || yy2arr2490 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2458[2] { - yy2462 := &x.LastTransitionTime - yym2463 := z.EncBinary() - _ = yym2463 + if yyq2490[2] { + yy2494 := &x.LastTransitionTime + yym2495 := z.EncBinary() + _ = yym2495 if false { - } else if z.HasExtensions() && z.EncExt(yy2462) { - } else if yym2463 { - z.EncBinaryMarshal(yy2462) - } else if !yym2463 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2462) + } else if z.HasExtensions() && z.EncExt(yy2494) { + } else if yym2495 { + z.EncBinaryMarshal(yy2494) + } else if !yym2495 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2494) } else { - z.EncFallback(yy2462) + z.EncFallback(yy2494) } } else { r.EncodeNil() } } else { - if yyq2458[2] { + if yyq2490[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2464 := &x.LastTransitionTime - yym2465 := z.EncBinary() - _ = yym2465 + yy2496 := &x.LastTransitionTime + yym2497 := z.EncBinary() + _ = yym2497 if false { - } else if z.HasExtensions() && z.EncExt(yy2464) { - } else if yym2465 { - z.EncBinaryMarshal(yy2464) - } else if !yym2465 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2464) + } else if z.HasExtensions() && z.EncExt(yy2496) { + } else if yym2497 { + z.EncBinaryMarshal(yy2496) + } else if !yym2497 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2496) } else { - z.EncFallback(yy2464) + z.EncFallback(yy2496) } } } - if yyr2458 || yy2arr2458 { + if yyr2490 || yy2arr2490 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2458[3] { - yym2467 := z.EncBinary() - _ = yym2467 + if yyq2490[3] { + yym2499 := z.EncBinary() + _ = yym2499 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -32502,23 +32964,23 @@ func (x *ReplicationControllerCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2458[3] { + if yyq2490[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2468 := z.EncBinary() - _ = yym2468 + yym2500 := z.EncBinary() + _ = yym2500 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr2458 || yy2arr2458 { + if yyr2490 || yy2arr2490 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2458[4] { - yym2470 := z.EncBinary() - _ = yym2470 + if yyq2490[4] { + yym2502 := z.EncBinary() + _ = yym2502 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -32527,19 +32989,19 @@ func (x *ReplicationControllerCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2458[4] { + if yyq2490[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2471 := z.EncBinary() - _ = yym2471 + yym2503 := z.EncBinary() + _ = yym2503 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr2458 || yy2arr2458 { + if yyr2490 || yy2arr2490 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32552,25 +33014,25 @@ func (x *ReplicationControllerCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2472 := z.DecBinary() - _ = yym2472 + yym2504 := z.DecBinary() + _ = yym2504 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2473 := r.ContainerType() - if yyct2473 == codecSelferValueTypeMap1234 { - yyl2473 := r.ReadMapStart() - if yyl2473 == 0 { + yyct2505 := r.ContainerType() + if yyct2505 == codecSelferValueTypeMap1234 { + yyl2505 := r.ReadMapStart() + if yyl2505 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2473, d) + x.codecDecodeSelfFromMap(yyl2505, d) } - } else if yyct2473 == codecSelferValueTypeArray1234 { - yyl2473 := r.ReadArrayStart() - if yyl2473 == 0 { + } else if yyct2505 == codecSelferValueTypeArray1234 { + yyl2505 := r.ReadArrayStart() + if yyl2505 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2473, d) + x.codecDecodeSelfFromArray(yyl2505, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32582,12 +33044,12 @@ func (x *ReplicationControllerCondition) codecDecodeSelfFromMap(l int, d *codec1 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2474Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2474Slc - var yyhl2474 bool = l >= 0 - for yyj2474 := 0; ; yyj2474++ { - if yyhl2474 { - if yyj2474 >= l { + var yys2506Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2506Slc + var yyhl2506 bool = l >= 0 + for yyj2506 := 0; ; yyj2506++ { + if yyhl2506 { + if yyj2506 >= l { break } } else { @@ -32596,10 +33058,10 @@ func (x *ReplicationControllerCondition) codecDecodeSelfFromMap(l int, d *codec1 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2474Slc = r.DecodeBytes(yys2474Slc, true, true) - yys2474 := string(yys2474Slc) + yys2506Slc = r.DecodeBytes(yys2506Slc, true, true) + yys2506 := string(yys2506Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2474 { + switch yys2506 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -32616,17 +33078,17 @@ func (x *ReplicationControllerCondition) codecDecodeSelfFromMap(l int, d *codec1 if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_v1.Time{} } else { - yyv2477 := &x.LastTransitionTime - yym2478 := z.DecBinary() - _ = yym2478 + yyv2509 := &x.LastTransitionTime + yym2510 := z.DecBinary() + _ = yym2510 if false { - } else if z.HasExtensions() && z.DecExt(yyv2477) { - } else if yym2478 { - z.DecBinaryUnmarshal(yyv2477) - } else if !yym2478 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2477) + } else if z.HasExtensions() && z.DecExt(yyv2509) { + } else if yym2510 { + z.DecBinaryUnmarshal(yyv2509) + } else if !yym2510 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2509) } else { - z.DecFallback(yyv2477, false) + z.DecFallback(yyv2509, false) } } case "reason": @@ -32642,364 +33104,13 @@ func (x *ReplicationControllerCondition) codecDecodeSelfFromMap(l int, d *codec1 x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2474) - } // end switch yys2474 - } // end for yyj2474 + z.DecStructFieldNotFound(-1, yys2506) + } // end switch yys2506 + } // end for yyj2506 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } func (x *ReplicationControllerCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj2481 int - var yyb2481 bool - var yyhl2481 bool = l >= 0 - yyj2481++ - if yyhl2481 { - yyb2481 = yyj2481 > l - } else { - yyb2481 = r.CheckBreak() - } - if yyb2481 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = ReplicationControllerConditionType(r.DecodeString()) - } - yyj2481++ - if yyhl2481 { - yyb2481 = yyj2481 > l - } else { - yyb2481 = r.CheckBreak() - } - if yyb2481 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Status = "" - } else { - x.Status = ConditionStatus(r.DecodeString()) - } - yyj2481++ - if yyhl2481 { - yyb2481 = yyj2481 > l - } else { - yyb2481 = r.CheckBreak() - } - if yyb2481 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.LastTransitionTime = pkg2_v1.Time{} - } else { - yyv2484 := &x.LastTransitionTime - yym2485 := z.DecBinary() - _ = yym2485 - if false { - } else if z.HasExtensions() && z.DecExt(yyv2484) { - } else if yym2485 { - z.DecBinaryUnmarshal(yyv2484) - } else if !yym2485 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2484) - } else { - z.DecFallback(yyv2484, false) - } - } - yyj2481++ - if yyhl2481 { - yyb2481 = yyj2481 > l - } else { - yyb2481 = r.CheckBreak() - } - if yyb2481 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Reason = "" - } else { - x.Reason = string(r.DecodeString()) - } - yyj2481++ - if yyhl2481 { - yyb2481 = yyj2481 > l - } else { - yyb2481 = r.CheckBreak() - } - if yyb2481 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Message = "" - } else { - x.Message = string(r.DecodeString()) - } - for { - yyj2481++ - if yyhl2481 { - yyb2481 = yyj2481 > l - } else { - yyb2481 = r.CheckBreak() - } - if yyb2481 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2481-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym2488 := z.EncBinary() - _ = yym2488 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep2489 := !z.EncBinary() - yy2arr2489 := z.EncBasicHandle().StructToArray - var yyq2489 [5]bool - _, _, _ = yysep2489, yyq2489, yy2arr2489 - const yyr2489 bool = false - yyq2489[0] = x.Kind != "" - yyq2489[1] = x.APIVersion != "" - yyq2489[2] = true - yyq2489[3] = true - yyq2489[4] = true - var yynn2489 int - if yyr2489 || yy2arr2489 { - r.EncodeArrayStart(5) - } else { - yynn2489 = 0 - for _, b := range yyq2489 { - if b { - yynn2489++ - } - } - r.EncodeMapStart(yynn2489) - yynn2489 = 0 - } - if yyr2489 || yy2arr2489 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2489[0] { - yym2491 := z.EncBinary() - _ = yym2491 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2489[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2492 := z.EncBinary() - _ = yym2492 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2489 || yy2arr2489 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2489[1] { - yym2494 := z.EncBinary() - _ = yym2494 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2489[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2495 := z.EncBinary() - _ = yym2495 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr2489 || yy2arr2489 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2489[2] { - yy2497 := &x.ObjectMeta - yy2497.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq2489[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2498 := &x.ObjectMeta - yy2498.CodecEncodeSelf(e) - } - } - if yyr2489 || yy2arr2489 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2489[3] { - yy2500 := &x.Spec - yy2500.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq2489[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("spec")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2501 := &x.Spec - yy2501.CodecEncodeSelf(e) - } - } - if yyr2489 || yy2arr2489 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2489[4] { - yy2503 := &x.Status - yy2503.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq2489[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("status")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2504 := &x.Status - yy2504.CodecEncodeSelf(e) - } - } - if yyr2489 || yy2arr2489 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *ReplicationController) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym2505 := z.DecBinary() - _ = yym2505 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct2506 := r.ContainerType() - if yyct2506 == codecSelferValueTypeMap1234 { - yyl2506 := r.ReadMapStart() - if yyl2506 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl2506, d) - } - } else if yyct2506 == codecSelferValueTypeArray1234 { - yyl2506 := r.ReadArrayStart() - if yyl2506 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl2506, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys2507Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2507Slc - var yyhl2507 bool = l >= 0 - for yyj2507 := 0; ; yyj2507++ { - if yyhl2507 { - if yyj2507 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2507Slc = r.DecodeBytes(yys2507Slc, true, true) - yys2507 := string(yys2507Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2507 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "metadata": - if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} - } else { - yyv2510 := &x.ObjectMeta - yyv2510.CodecDecodeSelf(d) - } - case "spec": - if r.TryDecodeAsNil() { - x.Spec = ReplicationControllerSpec{} - } else { - yyv2511 := &x.Spec - yyv2511.CodecDecodeSelf(d) - } - case "status": - if r.TryDecodeAsNil() { - x.Status = ReplicationControllerStatus{} - } else { - yyv2512 := &x.Status - yyv2512.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys2507) - } // end switch yys2507 - } // end for yyj2507 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -33018,9 +33129,9 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Kind = "" + x.Type = "" } else { - x.Kind = string(r.DecodeString()) + x.Type = ReplicationControllerConditionType(r.DecodeString()) } yyj2513++ if yyhl2513 { @@ -33034,9 +33145,9 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.APIVersion = "" + x.Status = "" } else { - x.APIVersion = string(r.DecodeString()) + x.Status = ConditionStatus(r.DecodeString()) } yyj2513++ if yyhl2513 { @@ -33050,10 +33161,20 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} + x.LastTransitionTime = pkg2_v1.Time{} } else { - yyv2516 := &x.ObjectMeta - yyv2516.CodecDecodeSelf(d) + yyv2516 := &x.LastTransitionTime + yym2517 := z.DecBinary() + _ = yym2517 + if false { + } else if z.HasExtensions() && z.DecExt(yyv2516) { + } else if yym2517 { + z.DecBinaryUnmarshal(yyv2516) + } else if !yym2517 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2516) + } else { + z.DecFallback(yyv2516, false) + } } yyj2513++ if yyhl2513 { @@ -33067,10 +33188,9 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Spec = ReplicationControllerSpec{} + x.Reason = "" } else { - yyv2517 := &x.Spec - yyv2517.CodecDecodeSelf(d) + x.Reason = string(r.DecodeString()) } yyj2513++ if yyhl2513 { @@ -33084,10 +33204,9 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Status = ReplicationControllerStatus{} + x.Message = "" } else { - yyv2518 := &x.Status - yyv2518.CodecDecodeSelf(d) + x.Message = string(r.DecodeString()) } for { yyj2513++ @@ -33105,6 +33224,349 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } +func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym2520 := z.EncBinary() + _ = yym2520 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep2521 := !z.EncBinary() + yy2arr2521 := z.EncBasicHandle().StructToArray + var yyq2521 [5]bool + _, _, _ = yysep2521, yyq2521, yy2arr2521 + const yyr2521 bool = false + yyq2521[0] = x.Kind != "" + yyq2521[1] = x.APIVersion != "" + yyq2521[2] = true + yyq2521[3] = true + yyq2521[4] = true + var yynn2521 int + if yyr2521 || yy2arr2521 { + r.EncodeArrayStart(5) + } else { + yynn2521 = 0 + for _, b := range yyq2521 { + if b { + yynn2521++ + } + } + r.EncodeMapStart(yynn2521) + yynn2521 = 0 + } + if yyr2521 || yy2arr2521 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2521[0] { + yym2523 := z.EncBinary() + _ = yym2523 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2521[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2524 := z.EncBinary() + _ = yym2524 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr2521 || yy2arr2521 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2521[1] { + yym2526 := z.EncBinary() + _ = yym2526 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2521[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2527 := z.EncBinary() + _ = yym2527 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr2521 || yy2arr2521 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2521[2] { + yy2529 := &x.ObjectMeta + yy2529.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq2521[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2530 := &x.ObjectMeta + yy2530.CodecEncodeSelf(e) + } + } + if yyr2521 || yy2arr2521 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2521[3] { + yy2532 := &x.Spec + yy2532.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq2521[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("spec")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2533 := &x.Spec + yy2533.CodecEncodeSelf(e) + } + } + if yyr2521 || yy2arr2521 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2521[4] { + yy2535 := &x.Status + yy2535.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq2521[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("status")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2536 := &x.Status + yy2536.CodecEncodeSelf(e) + } + } + if yyr2521 || yy2arr2521 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *ReplicationController) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2537 := z.DecBinary() + _ = yym2537 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct2538 := r.ContainerType() + if yyct2538 == codecSelferValueTypeMap1234 { + yyl2538 := r.ReadMapStart() + if yyl2538 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl2538, d) + } + } else if yyct2538 == codecSelferValueTypeArray1234 { + yyl2538 := r.ReadArrayStart() + if yyl2538 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl2538, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys2539Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2539Slc + var yyhl2539 bool = l >= 0 + for yyj2539 := 0; ; yyj2539++ { + if yyhl2539 { + if yyj2539 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys2539Slc = r.DecodeBytes(yys2539Slc, true, true) + yys2539 := string(yys2539Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys2539 { + case "kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "metadata": + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv2542 := &x.ObjectMeta + yyv2542.CodecDecodeSelf(d) + } + case "spec": + if r.TryDecodeAsNil() { + x.Spec = ReplicationControllerSpec{} + } else { + yyv2543 := &x.Spec + yyv2543.CodecDecodeSelf(d) + } + case "status": + if r.TryDecodeAsNil() { + x.Status = ReplicationControllerStatus{} + } else { + yyv2544 := &x.Status + yyv2544.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys2539) + } // end switch yys2539 + } // end for yyj2539 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj2545 int + var yyb2545 bool + var yyhl2545 bool = l >= 0 + yyj2545++ + if yyhl2545 { + yyb2545 = yyj2545 > l + } else { + yyb2545 = r.CheckBreak() + } + if yyb2545 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj2545++ + if yyhl2545 { + yyb2545 = yyj2545 > l + } else { + yyb2545 = r.CheckBreak() + } + if yyb2545 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj2545++ + if yyhl2545 { + yyb2545 = yyj2545 > l + } else { + yyb2545 = r.CheckBreak() + } + if yyb2545 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv2548 := &x.ObjectMeta + yyv2548.CodecDecodeSelf(d) + } + yyj2545++ + if yyhl2545 { + yyb2545 = yyj2545 > l + } else { + yyb2545 = r.CheckBreak() + } + if yyb2545 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Spec = ReplicationControllerSpec{} + } else { + yyv2549 := &x.Spec + yyv2549.CodecDecodeSelf(d) + } + yyj2545++ + if yyhl2545 { + yyb2545 = yyj2545 > l + } else { + yyb2545 = r.CheckBreak() + } + if yyb2545 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Status = ReplicationControllerStatus{} + } else { + yyv2550 := &x.Status + yyv2550.CodecDecodeSelf(d) + } + for { + yyj2545++ + if yyhl2545 { + yyb2545 = yyj2545 > l + } else { + yyb2545 = r.CheckBreak() + } + if yyb2545 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj2545-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) @@ -33112,37 +33574,37 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2519 := z.EncBinary() - _ = yym2519 + yym2551 := z.EncBinary() + _ = yym2551 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2520 := !z.EncBinary() - yy2arr2520 := z.EncBasicHandle().StructToArray - var yyq2520 [4]bool - _, _, _ = yysep2520, yyq2520, yy2arr2520 - const yyr2520 bool = false - yyq2520[0] = x.Kind != "" - yyq2520[1] = x.APIVersion != "" - yyq2520[2] = true - var yynn2520 int - if yyr2520 || yy2arr2520 { + yysep2552 := !z.EncBinary() + yy2arr2552 := z.EncBasicHandle().StructToArray + var yyq2552 [4]bool + _, _, _ = yysep2552, yyq2552, yy2arr2552 + const yyr2552 bool = false + yyq2552[0] = x.Kind != "" + yyq2552[1] = x.APIVersion != "" + yyq2552[2] = true + var yynn2552 int + if yyr2552 || yy2arr2552 { r.EncodeArrayStart(4) } else { - yynn2520 = 1 - for _, b := range yyq2520 { + yynn2552 = 1 + for _, b := range yyq2552 { if b { - yynn2520++ + yynn2552++ } } - r.EncodeMapStart(yynn2520) - yynn2520 = 0 + r.EncodeMapStart(yynn2552) + yynn2552 = 0 } - if yyr2520 || yy2arr2520 { + if yyr2552 || yy2arr2552 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2520[0] { - yym2522 := z.EncBinary() - _ = yym2522 + if yyq2552[0] { + yym2554 := z.EncBinary() + _ = yym2554 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33151,23 +33613,23 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2520[0] { + if yyq2552[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2523 := z.EncBinary() - _ = yym2523 + yym2555 := z.EncBinary() + _ = yym2555 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2520 || yy2arr2520 { + if yyr2552 || yy2arr2552 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2520[1] { - yym2525 := z.EncBinary() - _ = yym2525 + if yyq2552[1] { + yym2557 := z.EncBinary() + _ = yym2557 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33176,54 +33638,54 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2520[1] { + if yyq2552[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2526 := z.EncBinary() - _ = yym2526 + yym2558 := z.EncBinary() + _ = yym2558 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2520 || yy2arr2520 { + if yyr2552 || yy2arr2552 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2520[2] { - yy2528 := &x.ListMeta - yym2529 := z.EncBinary() - _ = yym2529 + if yyq2552[2] { + yy2560 := &x.ListMeta + yym2561 := z.EncBinary() + _ = yym2561 if false { - } else if z.HasExtensions() && z.EncExt(yy2528) { + } else if z.HasExtensions() && z.EncExt(yy2560) { } else { - z.EncFallback(yy2528) + z.EncFallback(yy2560) } } else { r.EncodeNil() } } else { - if yyq2520[2] { + if yyq2552[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2530 := &x.ListMeta - yym2531 := z.EncBinary() - _ = yym2531 + yy2562 := &x.ListMeta + yym2563 := z.EncBinary() + _ = yym2563 if false { - } else if z.HasExtensions() && z.EncExt(yy2530) { + } else if z.HasExtensions() && z.EncExt(yy2562) { } else { - z.EncFallback(yy2530) + z.EncFallback(yy2562) } } } - if yyr2520 || yy2arr2520 { + if yyr2552 || yy2arr2552 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2533 := z.EncBinary() - _ = yym2533 + yym2565 := z.EncBinary() + _ = yym2565 if false { } else { h.encSliceReplicationController(([]ReplicationController)(x.Items), e) @@ -33236,15 +33698,15 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2534 := z.EncBinary() - _ = yym2534 + yym2566 := z.EncBinary() + _ = yym2566 if false { } else { h.encSliceReplicationController(([]ReplicationController)(x.Items), e) } } } - if yyr2520 || yy2arr2520 { + if yyr2552 || yy2arr2552 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33257,25 +33719,25 @@ func (x *ReplicationControllerList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2535 := z.DecBinary() - _ = yym2535 + yym2567 := z.DecBinary() + _ = yym2567 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2536 := r.ContainerType() - if yyct2536 == codecSelferValueTypeMap1234 { - yyl2536 := r.ReadMapStart() - if yyl2536 == 0 { + yyct2568 := r.ContainerType() + if yyct2568 == codecSelferValueTypeMap1234 { + yyl2568 := r.ReadMapStart() + if yyl2568 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2536, d) + x.codecDecodeSelfFromMap(yyl2568, d) } - } else if yyct2536 == codecSelferValueTypeArray1234 { - yyl2536 := r.ReadArrayStart() - if yyl2536 == 0 { + } else if yyct2568 == codecSelferValueTypeArray1234 { + yyl2568 := r.ReadArrayStart() + if yyl2568 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2536, d) + x.codecDecodeSelfFromArray(yyl2568, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33287,12 +33749,12 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2537Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2537Slc - var yyhl2537 bool = l >= 0 - for yyj2537 := 0; ; yyj2537++ { - if yyhl2537 { - if yyj2537 >= l { + var yys2569Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2569Slc + var yyhl2569 bool = l >= 0 + for yyj2569 := 0; ; yyj2569++ { + if yyhl2569 { + if yyj2569 >= l { break } } else { @@ -33301,10 +33763,10 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2537Slc = r.DecodeBytes(yys2537Slc, true, true) - yys2537 := string(yys2537Slc) + yys2569Slc = r.DecodeBytes(yys2569Slc, true, true) + yys2569 := string(yys2569Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2537 { + switch yys2569 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33321,494 +33783,35 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv2540 := &x.ListMeta - yym2541 := z.DecBinary() - _ = yym2541 + yyv2572 := &x.ListMeta + yym2573 := z.DecBinary() + _ = yym2573 if false { - } else if z.HasExtensions() && z.DecExt(yyv2540) { + } else if z.HasExtensions() && z.DecExt(yyv2572) { } else { - z.DecFallback(yyv2540, false) + z.DecFallback(yyv2572, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2542 := &x.Items - yym2543 := z.DecBinary() - _ = yym2543 - if false { - } else { - h.decSliceReplicationController((*[]ReplicationController)(yyv2542), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys2537) - } // end switch yys2537 - } // end for yyj2537 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj2544 int - var yyb2544 bool - var yyhl2544 bool = l >= 0 - yyj2544++ - if yyhl2544 { - yyb2544 = yyj2544 > l - } else { - yyb2544 = r.CheckBreak() - } - if yyb2544 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj2544++ - if yyhl2544 { - yyb2544 = yyj2544 > l - } else { - yyb2544 = r.CheckBreak() - } - if yyb2544 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj2544++ - if yyhl2544 { - yyb2544 = yyj2544 > l - } else { - yyb2544 = r.CheckBreak() - } - if yyb2544 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ListMeta = pkg2_v1.ListMeta{} - } else { - yyv2547 := &x.ListMeta - yym2548 := z.DecBinary() - _ = yym2548 - if false { - } else if z.HasExtensions() && z.DecExt(yyv2547) { - } else { - z.DecFallback(yyv2547, false) - } - } - yyj2544++ - if yyhl2544 { - yyb2544 = yyj2544 > l - } else { - yyb2544 = r.CheckBreak() - } - if yyb2544 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv2549 := &x.Items - yym2550 := z.DecBinary() - _ = yym2550 - if false { - } else { - h.decSliceReplicationController((*[]ReplicationController)(yyv2549), d) - } - } - for { - yyj2544++ - if yyhl2544 { - yyb2544 = yyj2544 > l - } else { - yyb2544 = r.CheckBreak() - } - if yyb2544 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2544-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x ServiceAffinity) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - yym2551 := z.EncBinary() - _ = yym2551 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x)) - } -} - -func (x *ServiceAffinity) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym2552 := z.DecBinary() - _ = yym2552 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - *((*string)(x)) = r.DecodeString() - } -} - -func (x ServiceType) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - yym2553 := z.EncBinary() - _ = yym2553 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x)) - } -} - -func (x *ServiceType) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym2554 := z.DecBinary() - _ = yym2554 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - *((*string)(x)) = r.DecodeString() - } -} - -func (x *ServiceStatus) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym2555 := z.EncBinary() - _ = yym2555 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep2556 := !z.EncBinary() - yy2arr2556 := z.EncBasicHandle().StructToArray - var yyq2556 [1]bool - _, _, _ = yysep2556, yyq2556, yy2arr2556 - const yyr2556 bool = false - yyq2556[0] = true - var yynn2556 int - if yyr2556 || yy2arr2556 { - r.EncodeArrayStart(1) - } else { - yynn2556 = 0 - for _, b := range yyq2556 { - if b { - yynn2556++ - } - } - r.EncodeMapStart(yynn2556) - yynn2556 = 0 - } - if yyr2556 || yy2arr2556 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2556[0] { - yy2558 := &x.LoadBalancer - yy2558.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq2556[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("loadBalancer")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2559 := &x.LoadBalancer - yy2559.CodecEncodeSelf(e) - } - } - if yyr2556 || yy2arr2556 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *ServiceStatus) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym2560 := z.DecBinary() - _ = yym2560 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct2561 := r.ContainerType() - if yyct2561 == codecSelferValueTypeMap1234 { - yyl2561 := r.ReadMapStart() - if yyl2561 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl2561, d) - } - } else if yyct2561 == codecSelferValueTypeArray1234 { - yyl2561 := r.ReadArrayStart() - if yyl2561 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl2561, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *ServiceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys2562Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2562Slc - var yyhl2562 bool = l >= 0 - for yyj2562 := 0; ; yyj2562++ { - if yyhl2562 { - if yyj2562 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2562Slc = r.DecodeBytes(yys2562Slc, true, true) - yys2562 := string(yys2562Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2562 { - case "loadBalancer": - if r.TryDecodeAsNil() { - x.LoadBalancer = LoadBalancerStatus{} - } else { - yyv2563 := &x.LoadBalancer - yyv2563.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys2562) - } // end switch yys2562 - } // end for yyj2562 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *ServiceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj2564 int - var yyb2564 bool - var yyhl2564 bool = l >= 0 - yyj2564++ - if yyhl2564 { - yyb2564 = yyj2564 > l - } else { - yyb2564 = r.CheckBreak() - } - if yyb2564 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.LoadBalancer = LoadBalancerStatus{} - } else { - yyv2565 := &x.LoadBalancer - yyv2565.CodecDecodeSelf(d) - } - for { - yyj2564++ - if yyhl2564 { - yyb2564 = yyj2564 > l - } else { - yyb2564 = r.CheckBreak() - } - if yyb2564 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2564-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym2566 := z.EncBinary() - _ = yym2566 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep2567 := !z.EncBinary() - yy2arr2567 := z.EncBasicHandle().StructToArray - var yyq2567 [1]bool - _, _, _ = yysep2567, yyq2567, yy2arr2567 - const yyr2567 bool = false - yyq2567[0] = len(x.Ingress) != 0 - var yynn2567 int - if yyr2567 || yy2arr2567 { - r.EncodeArrayStart(1) - } else { - yynn2567 = 0 - for _, b := range yyq2567 { - if b { - yynn2567++ - } - } - r.EncodeMapStart(yynn2567) - yynn2567 = 0 - } - if yyr2567 || yy2arr2567 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2567[0] { - if x.Ingress == nil { - r.EncodeNil() - } else { - yym2569 := z.EncBinary() - _ = yym2569 - if false { - } else { - h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq2567[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("ingress")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Ingress == nil { - r.EncodeNil() - } else { - yym2570 := z.EncBinary() - _ = yym2570 - if false { - } else { - h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) - } - } - } - } - if yyr2567 || yy2arr2567 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *LoadBalancerStatus) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym2571 := z.DecBinary() - _ = yym2571 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct2572 := r.ContainerType() - if yyct2572 == codecSelferValueTypeMap1234 { - yyl2572 := r.ReadMapStart() - if yyl2572 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl2572, d) - } - } else if yyct2572 == codecSelferValueTypeArray1234 { - yyl2572 := r.ReadArrayStart() - if yyl2572 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl2572, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *LoadBalancerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys2573Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2573Slc - var yyhl2573 bool = l >= 0 - for yyj2573 := 0; ; yyj2573++ { - if yyhl2573 { - if yyj2573 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2573Slc = r.DecodeBytes(yys2573Slc, true, true) - yys2573 := string(yys2573Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2573 { - case "ingress": - if r.TryDecodeAsNil() { - x.Ingress = nil - } else { - yyv2574 := &x.Ingress + yyv2574 := &x.Items yym2575 := z.DecBinary() _ = yym2575 if false { } else { - h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2574), d) + h.decSliceReplicationController((*[]ReplicationController)(yyv2574), d) } } default: - z.DecStructFieldNotFound(-1, yys2573) - } // end switch yys2573 - } // end for yyj2573 + z.DecStructFieldNotFound(-1, yys2569) + } // end switch yys2569 + } // end for yyj2569 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } -func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { +func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -33827,14 +33830,69 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decode } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Ingress = nil + x.Kind = "" } else { - yyv2577 := &x.Ingress - yym2578 := z.DecBinary() - _ = yym2578 + x.Kind = string(r.DecodeString()) + } + yyj2576++ + if yyhl2576 { + yyb2576 = yyj2576 > l + } else { + yyb2576 = r.CheckBreak() + } + if yyb2576 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj2576++ + if yyhl2576 { + yyb2576 = yyj2576 > l + } else { + yyb2576 = r.CheckBreak() + } + if yyb2576 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_v1.ListMeta{} + } else { + yyv2579 := &x.ListMeta + yym2580 := z.DecBinary() + _ = yym2580 + if false { + } else if z.HasExtensions() && z.DecExt(yyv2579) { + } else { + z.DecFallback(yyv2579, false) + } + } + yyj2576++ + if yyhl2576 { + yyb2576 = yyj2576 > l + } else { + yyb2576 = r.CheckBreak() + } + if yyb2576 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv2581 := &x.Items + yym2582 := z.DecBinary() + _ = yym2582 if false { } else { - h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2577), d) + h.decSliceReplicationController((*[]ReplicationController)(yyv2581), d) } } for { @@ -33853,6 +33911,410 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decode z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } +func (x ServiceAffinity) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + yym2583 := z.EncBinary() + _ = yym2583 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x)) + } +} + +func (x *ServiceAffinity) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2584 := z.DecBinary() + _ = yym2584 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + *((*string)(x)) = r.DecodeString() + } +} + +func (x ServiceType) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + yym2585 := z.EncBinary() + _ = yym2585 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x)) + } +} + +func (x *ServiceType) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2586 := z.DecBinary() + _ = yym2586 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + *((*string)(x)) = r.DecodeString() + } +} + +func (x *ServiceStatus) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym2587 := z.EncBinary() + _ = yym2587 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep2588 := !z.EncBinary() + yy2arr2588 := z.EncBasicHandle().StructToArray + var yyq2588 [1]bool + _, _, _ = yysep2588, yyq2588, yy2arr2588 + const yyr2588 bool = false + yyq2588[0] = true + var yynn2588 int + if yyr2588 || yy2arr2588 { + r.EncodeArrayStart(1) + } else { + yynn2588 = 0 + for _, b := range yyq2588 { + if b { + yynn2588++ + } + } + r.EncodeMapStart(yynn2588) + yynn2588 = 0 + } + if yyr2588 || yy2arr2588 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2588[0] { + yy2590 := &x.LoadBalancer + yy2590.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq2588[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("loadBalancer")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2591 := &x.LoadBalancer + yy2591.CodecEncodeSelf(e) + } + } + if yyr2588 || yy2arr2588 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *ServiceStatus) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2592 := z.DecBinary() + _ = yym2592 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct2593 := r.ContainerType() + if yyct2593 == codecSelferValueTypeMap1234 { + yyl2593 := r.ReadMapStart() + if yyl2593 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl2593, d) + } + } else if yyct2593 == codecSelferValueTypeArray1234 { + yyl2593 := r.ReadArrayStart() + if yyl2593 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl2593, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *ServiceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys2594Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2594Slc + var yyhl2594 bool = l >= 0 + for yyj2594 := 0; ; yyj2594++ { + if yyhl2594 { + if yyj2594 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys2594Slc = r.DecodeBytes(yys2594Slc, true, true) + yys2594 := string(yys2594Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys2594 { + case "loadBalancer": + if r.TryDecodeAsNil() { + x.LoadBalancer = LoadBalancerStatus{} + } else { + yyv2595 := &x.LoadBalancer + yyv2595.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys2594) + } // end switch yys2594 + } // end for yyj2594 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *ServiceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj2596 int + var yyb2596 bool + var yyhl2596 bool = l >= 0 + yyj2596++ + if yyhl2596 { + yyb2596 = yyj2596 > l + } else { + yyb2596 = r.CheckBreak() + } + if yyb2596 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.LoadBalancer = LoadBalancerStatus{} + } else { + yyv2597 := &x.LoadBalancer + yyv2597.CodecDecodeSelf(d) + } + for { + yyj2596++ + if yyhl2596 { + yyb2596 = yyj2596 > l + } else { + yyb2596 = r.CheckBreak() + } + if yyb2596 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj2596-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym2598 := z.EncBinary() + _ = yym2598 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep2599 := !z.EncBinary() + yy2arr2599 := z.EncBasicHandle().StructToArray + var yyq2599 [1]bool + _, _, _ = yysep2599, yyq2599, yy2arr2599 + const yyr2599 bool = false + yyq2599[0] = len(x.Ingress) != 0 + var yynn2599 int + if yyr2599 || yy2arr2599 { + r.EncodeArrayStart(1) + } else { + yynn2599 = 0 + for _, b := range yyq2599 { + if b { + yynn2599++ + } + } + r.EncodeMapStart(yynn2599) + yynn2599 = 0 + } + if yyr2599 || yy2arr2599 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2599[0] { + if x.Ingress == nil { + r.EncodeNil() + } else { + yym2601 := z.EncBinary() + _ = yym2601 + if false { + } else { + h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2599[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("ingress")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Ingress == nil { + r.EncodeNil() + } else { + yym2602 := z.EncBinary() + _ = yym2602 + if false { + } else { + h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) + } + } + } + } + if yyr2599 || yy2arr2599 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *LoadBalancerStatus) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2603 := z.DecBinary() + _ = yym2603 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct2604 := r.ContainerType() + if yyct2604 == codecSelferValueTypeMap1234 { + yyl2604 := r.ReadMapStart() + if yyl2604 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl2604, d) + } + } else if yyct2604 == codecSelferValueTypeArray1234 { + yyl2604 := r.ReadArrayStart() + if yyl2604 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl2604, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *LoadBalancerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys2605Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2605Slc + var yyhl2605 bool = l >= 0 + for yyj2605 := 0; ; yyj2605++ { + if yyhl2605 { + if yyj2605 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys2605Slc = r.DecodeBytes(yys2605Slc, true, true) + yys2605 := string(yys2605Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys2605 { + case "ingress": + if r.TryDecodeAsNil() { + x.Ingress = nil + } else { + yyv2606 := &x.Ingress + yym2607 := z.DecBinary() + _ = yym2607 + if false { + } else { + h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2606), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys2605) + } // end switch yys2605 + } // end for yyj2605 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj2608 int + var yyb2608 bool + var yyhl2608 bool = l >= 0 + yyj2608++ + if yyhl2608 { + yyb2608 = yyj2608 > l + } else { + yyb2608 = r.CheckBreak() + } + if yyb2608 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Ingress = nil + } else { + yyv2609 := &x.Ingress + yym2610 := z.DecBinary() + _ = yym2610 + if false { + } else { + h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2609), d) + } + } + for { + yyj2608++ + if yyhl2608 { + yyb2608 = yyj2608 > l + } else { + yyb2608 = r.CheckBreak() + } + if yyb2608 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj2608-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) @@ -33860,36 +34322,36 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2579 := z.EncBinary() - _ = yym2579 + yym2611 := z.EncBinary() + _ = yym2611 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2580 := !z.EncBinary() - yy2arr2580 := z.EncBasicHandle().StructToArray - var yyq2580 [2]bool - _, _, _ = yysep2580, yyq2580, yy2arr2580 - const yyr2580 bool = false - yyq2580[0] = x.IP != "" - yyq2580[1] = x.Hostname != "" - var yynn2580 int - if yyr2580 || yy2arr2580 { + yysep2612 := !z.EncBinary() + yy2arr2612 := z.EncBasicHandle().StructToArray + var yyq2612 [2]bool + _, _, _ = yysep2612, yyq2612, yy2arr2612 + const yyr2612 bool = false + yyq2612[0] = x.IP != "" + yyq2612[1] = x.Hostname != "" + var yynn2612 int + if yyr2612 || yy2arr2612 { r.EncodeArrayStart(2) } else { - yynn2580 = 0 - for _, b := range yyq2580 { + yynn2612 = 0 + for _, b := range yyq2612 { if b { - yynn2580++ + yynn2612++ } } - r.EncodeMapStart(yynn2580) - yynn2580 = 0 + r.EncodeMapStart(yynn2612) + yynn2612 = 0 } - if yyr2580 || yy2arr2580 { + if yyr2612 || yy2arr2612 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2580[0] { - yym2582 := z.EncBinary() - _ = yym2582 + if yyq2612[0] { + yym2614 := z.EncBinary() + _ = yym2614 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -33898,23 +34360,23 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2580[0] { + if yyq2612[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ip")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2583 := z.EncBinary() - _ = yym2583 + yym2615 := z.EncBinary() + _ = yym2615 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } } - if yyr2580 || yy2arr2580 { + if yyr2612 || yy2arr2612 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2580[1] { - yym2585 := z.EncBinary() - _ = yym2585 + if yyq2612[1] { + yym2617 := z.EncBinary() + _ = yym2617 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) @@ -33923,19 +34385,19 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2580[1] { + if yyq2612[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostname")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2586 := z.EncBinary() - _ = yym2586 + yym2618 := z.EncBinary() + _ = yym2618 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr2580 || yy2arr2580 { + if yyr2612 || yy2arr2612 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33948,25 +34410,25 @@ func (x *LoadBalancerIngress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2587 := z.DecBinary() - _ = yym2587 + yym2619 := z.DecBinary() + _ = yym2619 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2588 := r.ContainerType() - if yyct2588 == codecSelferValueTypeMap1234 { - yyl2588 := r.ReadMapStart() - if yyl2588 == 0 { + yyct2620 := r.ContainerType() + if yyct2620 == codecSelferValueTypeMap1234 { + yyl2620 := r.ReadMapStart() + if yyl2620 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2588, d) + x.codecDecodeSelfFromMap(yyl2620, d) } - } else if yyct2588 == codecSelferValueTypeArray1234 { - yyl2588 := r.ReadArrayStart() - if yyl2588 == 0 { + } else if yyct2620 == codecSelferValueTypeArray1234 { + yyl2620 := r.ReadArrayStart() + if yyl2620 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2588, d) + x.codecDecodeSelfFromArray(yyl2620, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33978,12 +34440,12 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2589Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2589Slc - var yyhl2589 bool = l >= 0 - for yyj2589 := 0; ; yyj2589++ { - if yyhl2589 { - if yyj2589 >= l { + var yys2621Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2621Slc + var yyhl2621 bool = l >= 0 + for yyj2621 := 0; ; yyj2621++ { + if yyhl2621 { + if yyj2621 >= l { break } } else { @@ -33992,10 +34454,10 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2589Slc = r.DecodeBytes(yys2589Slc, true, true) - yys2589 := string(yys2589Slc) + yys2621Slc = r.DecodeBytes(yys2621Slc, true, true) + yys2621 := string(yys2621Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2589 { + switch yys2621 { case "ip": if r.TryDecodeAsNil() { x.IP = "" @@ -34009,9 +34471,9 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Hostname = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2589) - } // end switch yys2589 - } // end for yyj2589 + z.DecStructFieldNotFound(-1, yys2621) + } // end switch yys2621 + } // end for yyj2621 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34019,16 +34481,16 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2592 int - var yyb2592 bool - var yyhl2592 bool = l >= 0 - yyj2592++ - if yyhl2592 { - yyb2592 = yyj2592 > l + var yyj2624 int + var yyb2624 bool + var yyhl2624 bool = l >= 0 + yyj2624++ + if yyhl2624 { + yyb2624 = yyj2624 > l } else { - yyb2592 = r.CheckBreak() + yyb2624 = r.CheckBreak() } - if yyb2592 { + if yyb2624 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34038,13 +34500,13 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.IP = string(r.DecodeString()) } - yyj2592++ - if yyhl2592 { - yyb2592 = yyj2592 > l + yyj2624++ + if yyhl2624 { + yyb2624 = yyj2624 > l } else { - yyb2592 = r.CheckBreak() + yyb2624 = r.CheckBreak() } - if yyb2592 { + if yyb2624 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34055,17 +34517,17 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Hostname = string(r.DecodeString()) } for { - yyj2592++ - if yyhl2592 { - yyb2592 = yyj2592 > l + yyj2624++ + if yyhl2624 { + yyb2624 = yyj2624 > l } else { - yyb2592 = r.CheckBreak() + yyb2624 = r.CheckBreak() } - if yyb2592 { + if yyb2624 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2592-1, "") + z.DecStructFieldNotFound(yyj2624-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34077,47 +34539,47 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2595 := z.EncBinary() - _ = yym2595 + yym2627 := z.EncBinary() + _ = yym2627 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2596 := !z.EncBinary() - yy2arr2596 := z.EncBasicHandle().StructToArray - var yyq2596 [10]bool - _, _, _ = yysep2596, yyq2596, yy2arr2596 - const yyr2596 bool = false - yyq2596[0] = len(x.Ports) != 0 - yyq2596[1] = len(x.Selector) != 0 - yyq2596[2] = x.ClusterIP != "" - yyq2596[3] = x.Type != "" - yyq2596[4] = len(x.ExternalIPs) != 0 - yyq2596[5] = len(x.DeprecatedPublicIPs) != 0 - yyq2596[6] = x.SessionAffinity != "" - yyq2596[7] = x.LoadBalancerIP != "" - yyq2596[8] = len(x.LoadBalancerSourceRanges) != 0 - yyq2596[9] = x.ExternalName != "" - var yynn2596 int - if yyr2596 || yy2arr2596 { + yysep2628 := !z.EncBinary() + yy2arr2628 := z.EncBasicHandle().StructToArray + var yyq2628 [10]bool + _, _, _ = yysep2628, yyq2628, yy2arr2628 + const yyr2628 bool = false + yyq2628[0] = len(x.Ports) != 0 + yyq2628[1] = len(x.Selector) != 0 + yyq2628[2] = x.ClusterIP != "" + yyq2628[3] = x.Type != "" + yyq2628[4] = len(x.ExternalIPs) != 0 + yyq2628[5] = len(x.DeprecatedPublicIPs) != 0 + yyq2628[6] = x.SessionAffinity != "" + yyq2628[7] = x.LoadBalancerIP != "" + yyq2628[8] = len(x.LoadBalancerSourceRanges) != 0 + yyq2628[9] = x.ExternalName != "" + var yynn2628 int + if yyr2628 || yy2arr2628 { r.EncodeArrayStart(10) } else { - yynn2596 = 0 - for _, b := range yyq2596 { + yynn2628 = 0 + for _, b := range yyq2628 { if b { - yynn2596++ + yynn2628++ } } - r.EncodeMapStart(yynn2596) - yynn2596 = 0 + r.EncodeMapStart(yynn2628) + yynn2628 = 0 } - if yyr2596 || yy2arr2596 { + if yyr2628 || yy2arr2628 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2596[0] { + if yyq2628[0] { if x.Ports == nil { r.EncodeNil() } else { - yym2598 := z.EncBinary() - _ = yym2598 + yym2630 := z.EncBinary() + _ = yym2630 if false { } else { h.encSliceServicePort(([]ServicePort)(x.Ports), e) @@ -34127,15 +34589,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2596[0] { + if yyq2628[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ports")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ports == nil { r.EncodeNil() } else { - yym2599 := z.EncBinary() - _ = yym2599 + yym2631 := z.EncBinary() + _ = yym2631 if false { } else { h.encSliceServicePort(([]ServicePort)(x.Ports), e) @@ -34143,14 +34605,14 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2596 || yy2arr2596 { + if yyr2628 || yy2arr2628 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2596[1] { + if yyq2628[1] { if x.Selector == nil { r.EncodeNil() } else { - yym2601 := z.EncBinary() - _ = yym2601 + yym2633 := z.EncBinary() + _ = yym2633 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -34160,15 +34622,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2596[1] { + if yyq2628[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("selector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Selector == nil { r.EncodeNil() } else { - yym2602 := z.EncBinary() - _ = yym2602 + yym2634 := z.EncBinary() + _ = yym2634 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -34176,11 +34638,11 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2596 || yy2arr2596 { + if yyr2628 || yy2arr2628 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2596[2] { - yym2604 := z.EncBinary() - _ = yym2604 + if yyq2628[2] { + yym2636 := z.EncBinary() + _ = yym2636 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterIP)) @@ -34189,41 +34651,41 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2596[2] { + if yyq2628[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("clusterIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2605 := z.EncBinary() - _ = yym2605 + yym2637 := z.EncBinary() + _ = yym2637 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterIP)) } } } - if yyr2596 || yy2arr2596 { + if yyr2628 || yy2arr2628 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2596[3] { + if yyq2628[3] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2596[3] { + if yyq2628[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr2596 || yy2arr2596 { + if yyr2628 || yy2arr2628 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2596[4] { + if yyq2628[4] { if x.ExternalIPs == nil { r.EncodeNil() } else { - yym2608 := z.EncBinary() - _ = yym2608 + yym2640 := z.EncBinary() + _ = yym2640 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -34233,15 +34695,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2596[4] { + if yyq2628[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalIPs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ExternalIPs == nil { r.EncodeNil() } else { - yym2609 := z.EncBinary() - _ = yym2609 + yym2641 := z.EncBinary() + _ = yym2641 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -34249,14 +34711,14 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2596 || yy2arr2596 { + if yyr2628 || yy2arr2628 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2596[5] { + if yyq2628[5] { if x.DeprecatedPublicIPs == nil { r.EncodeNil() } else { - yym2611 := z.EncBinary() - _ = yym2611 + yym2643 := z.EncBinary() + _ = yym2643 if false { } else { z.F.EncSliceStringV(x.DeprecatedPublicIPs, false, e) @@ -34266,15 +34728,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2596[5] { + if yyq2628[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("deprecatedPublicIPs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.DeprecatedPublicIPs == nil { r.EncodeNil() } else { - yym2612 := z.EncBinary() - _ = yym2612 + yym2644 := z.EncBinary() + _ = yym2644 if false { } else { z.F.EncSliceStringV(x.DeprecatedPublicIPs, false, e) @@ -34282,26 +34744,26 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2596 || yy2arr2596 { + if yyr2628 || yy2arr2628 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2596[6] { + if yyq2628[6] { x.SessionAffinity.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2596[6] { + if yyq2628[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sessionAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.SessionAffinity.CodecEncodeSelf(e) } } - if yyr2596 || yy2arr2596 { + if yyr2628 || yy2arr2628 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2596[7] { - yym2615 := z.EncBinary() - _ = yym2615 + if yyq2628[7] { + yym2647 := z.EncBinary() + _ = yym2647 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) @@ -34310,26 +34772,26 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2596[7] { + if yyq2628[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancerIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2616 := z.EncBinary() - _ = yym2616 + yym2648 := z.EncBinary() + _ = yym2648 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) } } } - if yyr2596 || yy2arr2596 { + if yyr2628 || yy2arr2628 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2596[8] { + if yyq2628[8] { if x.LoadBalancerSourceRanges == nil { r.EncodeNil() } else { - yym2618 := z.EncBinary() - _ = yym2618 + yym2650 := z.EncBinary() + _ = yym2650 if false { } else { z.F.EncSliceStringV(x.LoadBalancerSourceRanges, false, e) @@ -34339,15 +34801,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2596[8] { + if yyq2628[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancerSourceRanges")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.LoadBalancerSourceRanges == nil { r.EncodeNil() } else { - yym2619 := z.EncBinary() - _ = yym2619 + yym2651 := z.EncBinary() + _ = yym2651 if false { } else { z.F.EncSliceStringV(x.LoadBalancerSourceRanges, false, e) @@ -34355,11 +34817,11 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2596 || yy2arr2596 { + if yyr2628 || yy2arr2628 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2596[9] { - yym2621 := z.EncBinary() - _ = yym2621 + if yyq2628[9] { + yym2653 := z.EncBinary() + _ = yym2653 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalName)) @@ -34368,19 +34830,19 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2596[9] { + if yyq2628[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2622 := z.EncBinary() - _ = yym2622 + yym2654 := z.EncBinary() + _ = yym2654 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalName)) } } } - if yyr2596 || yy2arr2596 { + if yyr2628 || yy2arr2628 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34393,25 +34855,25 @@ func (x *ServiceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2623 := z.DecBinary() - _ = yym2623 + yym2655 := z.DecBinary() + _ = yym2655 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2624 := r.ContainerType() - if yyct2624 == codecSelferValueTypeMap1234 { - yyl2624 := r.ReadMapStart() - if yyl2624 == 0 { + yyct2656 := r.ContainerType() + if yyct2656 == codecSelferValueTypeMap1234 { + yyl2656 := r.ReadMapStart() + if yyl2656 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2624, d) + x.codecDecodeSelfFromMap(yyl2656, d) } - } else if yyct2624 == codecSelferValueTypeArray1234 { - yyl2624 := r.ReadArrayStart() - if yyl2624 == 0 { + } else if yyct2656 == codecSelferValueTypeArray1234 { + yyl2656 := r.ReadArrayStart() + if yyl2656 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2624, d) + x.codecDecodeSelfFromArray(yyl2656, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34423,12 +34885,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2625Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2625Slc - var yyhl2625 bool = l >= 0 - for yyj2625 := 0; ; yyj2625++ { - if yyhl2625 { - if yyj2625 >= l { + var yys2657Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2657Slc + var yyhl2657 bool = l >= 0 + for yyj2657 := 0; ; yyj2657++ { + if yyhl2657 { + if yyj2657 >= l { break } } else { @@ -34437,32 +34899,32 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2625Slc = r.DecodeBytes(yys2625Slc, true, true) - yys2625 := string(yys2625Slc) + yys2657Slc = r.DecodeBytes(yys2657Slc, true, true) + yys2657 := string(yys2657Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2625 { + switch yys2657 { case "ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2626 := &x.Ports - yym2627 := z.DecBinary() - _ = yym2627 + yyv2658 := &x.Ports + yym2659 := z.DecBinary() + _ = yym2659 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2626), d) + h.decSliceServicePort((*[]ServicePort)(yyv2658), d) } } case "selector": if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2628 := &x.Selector - yym2629 := z.DecBinary() - _ = yym2629 + yyv2660 := &x.Selector + yym2661 := z.DecBinary() + _ = yym2661 if false { } else { - z.F.DecMapStringStringX(yyv2628, false, d) + z.F.DecMapStringStringX(yyv2660, false, d) } } case "clusterIP": @@ -34481,24 +34943,24 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2632 := &x.ExternalIPs - yym2633 := z.DecBinary() - _ = yym2633 + yyv2664 := &x.ExternalIPs + yym2665 := z.DecBinary() + _ = yym2665 if false { } else { - z.F.DecSliceStringX(yyv2632, false, d) + z.F.DecSliceStringX(yyv2664, false, d) } } case "deprecatedPublicIPs": if r.TryDecodeAsNil() { x.DeprecatedPublicIPs = nil } else { - yyv2634 := &x.DeprecatedPublicIPs - yym2635 := z.DecBinary() - _ = yym2635 + yyv2666 := &x.DeprecatedPublicIPs + yym2667 := z.DecBinary() + _ = yym2667 if false { } else { - z.F.DecSliceStringX(yyv2634, false, d) + z.F.DecSliceStringX(yyv2666, false, d) } } case "sessionAffinity": @@ -34517,12 +34979,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancerSourceRanges = nil } else { - yyv2638 := &x.LoadBalancerSourceRanges - yym2639 := z.DecBinary() - _ = yym2639 + yyv2670 := &x.LoadBalancerSourceRanges + yym2671 := z.DecBinary() + _ = yym2671 if false { } else { - z.F.DecSliceStringX(yyv2638, false, d) + z.F.DecSliceStringX(yyv2670, false, d) } } case "externalName": @@ -34532,9 +34994,9 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ExternalName = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2625) - } // end switch yys2625 - } // end for yyj2625 + z.DecStructFieldNotFound(-1, yys2657) + } // end switch yys2657 + } // end for yyj2657 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34542,16 +35004,16 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2641 int - var yyb2641 bool - var yyhl2641 bool = l >= 0 - yyj2641++ - if yyhl2641 { - yyb2641 = yyj2641 > l + var yyj2673 int + var yyb2673 bool + var yyhl2673 bool = l >= 0 + yyj2673++ + if yyhl2673 { + yyb2673 = yyj2673 > l } else { - yyb2641 = r.CheckBreak() + yyb2673 = r.CheckBreak() } - if yyb2641 { + if yyb2673 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34559,21 +35021,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2642 := &x.Ports - yym2643 := z.DecBinary() - _ = yym2643 + yyv2674 := &x.Ports + yym2675 := z.DecBinary() + _ = yym2675 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2642), d) + h.decSliceServicePort((*[]ServicePort)(yyv2674), d) } } - yyj2641++ - if yyhl2641 { - yyb2641 = yyj2641 > l + yyj2673++ + if yyhl2673 { + yyb2673 = yyj2673 > l } else { - yyb2641 = r.CheckBreak() + yyb2673 = r.CheckBreak() } - if yyb2641 { + if yyb2673 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34581,21 +35043,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2644 := &x.Selector - yym2645 := z.DecBinary() - _ = yym2645 + yyv2676 := &x.Selector + yym2677 := z.DecBinary() + _ = yym2677 if false { } else { - z.F.DecMapStringStringX(yyv2644, false, d) + z.F.DecMapStringStringX(yyv2676, false, d) } } - yyj2641++ - if yyhl2641 { - yyb2641 = yyj2641 > l + yyj2673++ + if yyhl2673 { + yyb2673 = yyj2673 > l } else { - yyb2641 = r.CheckBreak() + yyb2673 = r.CheckBreak() } - if yyb2641 { + if yyb2673 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34605,13 +35067,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ClusterIP = string(r.DecodeString()) } - yyj2641++ - if yyhl2641 { - yyb2641 = yyj2641 > l + yyj2673++ + if yyhl2673 { + yyb2673 = yyj2673 > l } else { - yyb2641 = r.CheckBreak() + yyb2673 = r.CheckBreak() } - if yyb2641 { + if yyb2673 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34621,13 +35083,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = ServiceType(r.DecodeString()) } - yyj2641++ - if yyhl2641 { - yyb2641 = yyj2641 > l + yyj2673++ + if yyhl2673 { + yyb2673 = yyj2673 > l } else { - yyb2641 = r.CheckBreak() + yyb2673 = r.CheckBreak() } - if yyb2641 { + if yyb2673 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34635,21 +35097,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2648 := &x.ExternalIPs - yym2649 := z.DecBinary() - _ = yym2649 + yyv2680 := &x.ExternalIPs + yym2681 := z.DecBinary() + _ = yym2681 if false { } else { - z.F.DecSliceStringX(yyv2648, false, d) + z.F.DecSliceStringX(yyv2680, false, d) } } - yyj2641++ - if yyhl2641 { - yyb2641 = yyj2641 > l + yyj2673++ + if yyhl2673 { + yyb2673 = yyj2673 > l } else { - yyb2641 = r.CheckBreak() + yyb2673 = r.CheckBreak() } - if yyb2641 { + if yyb2673 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34657,21 +35119,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DeprecatedPublicIPs = nil } else { - yyv2650 := &x.DeprecatedPublicIPs - yym2651 := z.DecBinary() - _ = yym2651 + yyv2682 := &x.DeprecatedPublicIPs + yym2683 := z.DecBinary() + _ = yym2683 if false { } else { - z.F.DecSliceStringX(yyv2650, false, d) + z.F.DecSliceStringX(yyv2682, false, d) } } - yyj2641++ - if yyhl2641 { - yyb2641 = yyj2641 > l + yyj2673++ + if yyhl2673 { + yyb2673 = yyj2673 > l } else { - yyb2641 = r.CheckBreak() + yyb2673 = r.CheckBreak() } - if yyb2641 { + if yyb2673 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34681,13 +35143,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SessionAffinity = ServiceAffinity(r.DecodeString()) } - yyj2641++ - if yyhl2641 { - yyb2641 = yyj2641 > l + yyj2673++ + if yyhl2673 { + yyb2673 = yyj2673 > l } else { - yyb2641 = r.CheckBreak() + yyb2673 = r.CheckBreak() } - if yyb2641 { + if yyb2673 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34697,13 +35159,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.LoadBalancerIP = string(r.DecodeString()) } - yyj2641++ - if yyhl2641 { - yyb2641 = yyj2641 > l + yyj2673++ + if yyhl2673 { + yyb2673 = yyj2673 > l } else { - yyb2641 = r.CheckBreak() + yyb2673 = r.CheckBreak() } - if yyb2641 { + if yyb2673 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34711,21 +35173,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancerSourceRanges = nil } else { - yyv2654 := &x.LoadBalancerSourceRanges - yym2655 := z.DecBinary() - _ = yym2655 + yyv2686 := &x.LoadBalancerSourceRanges + yym2687 := z.DecBinary() + _ = yym2687 if false { } else { - z.F.DecSliceStringX(yyv2654, false, d) + z.F.DecSliceStringX(yyv2686, false, d) } } - yyj2641++ - if yyhl2641 { - yyb2641 = yyj2641 > l + yyj2673++ + if yyhl2673 { + yyb2673 = yyj2673 > l } else { - yyb2641 = r.CheckBreak() + yyb2673 = r.CheckBreak() } - if yyb2641 { + if yyb2673 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34736,17 +35198,17 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.ExternalName = string(r.DecodeString()) } for { - yyj2641++ - if yyhl2641 { - yyb2641 = yyj2641 > l + yyj2673++ + if yyhl2673 { + yyb2673 = yyj2673 > l } else { - yyb2641 = r.CheckBreak() + yyb2673 = r.CheckBreak() } - if yyb2641 { + if yyb2673 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2641-1, "") + z.DecStructFieldNotFound(yyj2673-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34758,38 +35220,38 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2657 := z.EncBinary() - _ = yym2657 + yym2689 := z.EncBinary() + _ = yym2689 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2658 := !z.EncBinary() - yy2arr2658 := z.EncBasicHandle().StructToArray - var yyq2658 [5]bool - _, _, _ = yysep2658, yyq2658, yy2arr2658 - const yyr2658 bool = false - yyq2658[0] = x.Name != "" - yyq2658[1] = x.Protocol != "" - yyq2658[3] = true - yyq2658[4] = x.NodePort != 0 - var yynn2658 int - if yyr2658 || yy2arr2658 { + yysep2690 := !z.EncBinary() + yy2arr2690 := z.EncBasicHandle().StructToArray + var yyq2690 [5]bool + _, _, _ = yysep2690, yyq2690, yy2arr2690 + const yyr2690 bool = false + yyq2690[0] = x.Name != "" + yyq2690[1] = x.Protocol != "" + yyq2690[3] = true + yyq2690[4] = x.NodePort != 0 + var yynn2690 int + if yyr2690 || yy2arr2690 { r.EncodeArrayStart(5) } else { - yynn2658 = 1 - for _, b := range yyq2658 { + yynn2690 = 1 + for _, b := range yyq2690 { if b { - yynn2658++ + yynn2690++ } } - r.EncodeMapStart(yynn2658) - yynn2658 = 0 + r.EncodeMapStart(yynn2690) + yynn2690 = 0 } - if yyr2658 || yy2arr2658 { + if yyr2690 || yy2arr2690 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2658[0] { - yym2660 := z.EncBinary() - _ = yym2660 + if yyq2690[0] { + yym2692 := z.EncBinary() + _ = yym2692 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -34798,37 +35260,37 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2658[0] { + if yyq2690[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2661 := z.EncBinary() - _ = yym2661 + yym2693 := z.EncBinary() + _ = yym2693 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr2658 || yy2arr2658 { + if yyr2690 || yy2arr2690 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2658[1] { + if yyq2690[1] { x.Protocol.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2658[1] { + if yyq2690[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } } - if yyr2658 || yy2arr2658 { + if yyr2690 || yy2arr2690 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2664 := z.EncBinary() - _ = yym2664 + yym2696 := z.EncBinary() + _ = yym2696 if false { } else { r.EncodeInt(int64(x.Port)) @@ -34837,51 +35299,51 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2665 := z.EncBinary() - _ = yym2665 + yym2697 := z.EncBinary() + _ = yym2697 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2658 || yy2arr2658 { + if yyr2690 || yy2arr2690 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2658[3] { - yy2667 := &x.TargetPort - yym2668 := z.EncBinary() - _ = yym2668 + if yyq2690[3] { + yy2699 := &x.TargetPort + yym2700 := z.EncBinary() + _ = yym2700 if false { - } else if z.HasExtensions() && z.EncExt(yy2667) { - } else if !yym2668 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2667) + } else if z.HasExtensions() && z.EncExt(yy2699) { + } else if !yym2700 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2699) } else { - z.EncFallback(yy2667) + z.EncFallback(yy2699) } } else { r.EncodeNil() } } else { - if yyq2658[3] { + if yyq2690[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2669 := &x.TargetPort - yym2670 := z.EncBinary() - _ = yym2670 + yy2701 := &x.TargetPort + yym2702 := z.EncBinary() + _ = yym2702 if false { - } else if z.HasExtensions() && z.EncExt(yy2669) { - } else if !yym2670 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2669) + } else if z.HasExtensions() && z.EncExt(yy2701) { + } else if !yym2702 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2701) } else { - z.EncFallback(yy2669) + z.EncFallback(yy2701) } } } - if yyr2658 || yy2arr2658 { + if yyr2690 || yy2arr2690 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2658[4] { - yym2672 := z.EncBinary() - _ = yym2672 + if yyq2690[4] { + yym2704 := z.EncBinary() + _ = yym2704 if false { } else { r.EncodeInt(int64(x.NodePort)) @@ -34890,19 +35352,19 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2658[4] { + if yyq2690[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodePort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2673 := z.EncBinary() - _ = yym2673 + yym2705 := z.EncBinary() + _ = yym2705 if false { } else { r.EncodeInt(int64(x.NodePort)) } } } - if yyr2658 || yy2arr2658 { + if yyr2690 || yy2arr2690 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34915,25 +35377,25 @@ func (x *ServicePort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2674 := z.DecBinary() - _ = yym2674 + yym2706 := z.DecBinary() + _ = yym2706 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2675 := r.ContainerType() - if yyct2675 == codecSelferValueTypeMap1234 { - yyl2675 := r.ReadMapStart() - if yyl2675 == 0 { + yyct2707 := r.ContainerType() + if yyct2707 == codecSelferValueTypeMap1234 { + yyl2707 := r.ReadMapStart() + if yyl2707 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2675, d) + x.codecDecodeSelfFromMap(yyl2707, d) } - } else if yyct2675 == codecSelferValueTypeArray1234 { - yyl2675 := r.ReadArrayStart() - if yyl2675 == 0 { + } else if yyct2707 == codecSelferValueTypeArray1234 { + yyl2707 := r.ReadArrayStart() + if yyl2707 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2675, d) + x.codecDecodeSelfFromArray(yyl2707, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34945,12 +35407,12 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2676Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2676Slc - var yyhl2676 bool = l >= 0 - for yyj2676 := 0; ; yyj2676++ { - if yyhl2676 { - if yyj2676 >= l { + var yys2708Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2708Slc + var yyhl2708 bool = l >= 0 + for yyj2708 := 0; ; yyj2708++ { + if yyhl2708 { + if yyj2708 >= l { break } } else { @@ -34959,10 +35421,10 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2676Slc = r.DecodeBytes(yys2676Slc, true, true) - yys2676 := string(yys2676Slc) + yys2708Slc = r.DecodeBytes(yys2708Slc, true, true) + yys2708 := string(yys2708Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2676 { + switch yys2708 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -34985,15 +35447,15 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg4_intstr.IntOrString{} } else { - yyv2680 := &x.TargetPort - yym2681 := z.DecBinary() - _ = yym2681 + yyv2712 := &x.TargetPort + yym2713 := z.DecBinary() + _ = yym2713 if false { - } else if z.HasExtensions() && z.DecExt(yyv2680) { - } else if !yym2681 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2680) + } else if z.HasExtensions() && z.DecExt(yyv2712) { + } else if !yym2713 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2712) } else { - z.DecFallback(yyv2680, false) + z.DecFallback(yyv2712, false) } } case "nodePort": @@ -35003,362 +35465,13 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2676) - } // end switch yys2676 - } // end for yyj2676 + z.DecStructFieldNotFound(-1, yys2708) + } // end switch yys2708 + } // end for yyj2708 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj2683 int - var yyb2683 bool - var yyhl2683 bool = l >= 0 - yyj2683++ - if yyhl2683 { - yyb2683 = yyj2683 > l - } else { - yyb2683 = r.CheckBreak() - } - if yyb2683 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = string(r.DecodeString()) - } - yyj2683++ - if yyhl2683 { - yyb2683 = yyj2683 > l - } else { - yyb2683 = r.CheckBreak() - } - if yyb2683 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Protocol = "" - } else { - x.Protocol = Protocol(r.DecodeString()) - } - yyj2683++ - if yyhl2683 { - yyb2683 = yyj2683 > l - } else { - yyb2683 = r.CheckBreak() - } - if yyb2683 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Port = 0 - } else { - x.Port = int32(r.DecodeInt(32)) - } - yyj2683++ - if yyhl2683 { - yyb2683 = yyj2683 > l - } else { - yyb2683 = r.CheckBreak() - } - if yyb2683 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.TargetPort = pkg4_intstr.IntOrString{} - } else { - yyv2687 := &x.TargetPort - yym2688 := z.DecBinary() - _ = yym2688 - if false { - } else if z.HasExtensions() && z.DecExt(yyv2687) { - } else if !yym2688 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2687) - } else { - z.DecFallback(yyv2687, false) - } - } - yyj2683++ - if yyhl2683 { - yyb2683 = yyj2683 > l - } else { - yyb2683 = r.CheckBreak() - } - if yyb2683 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.NodePort = 0 - } else { - x.NodePort = int32(r.DecodeInt(32)) - } - for { - yyj2683++ - if yyhl2683 { - yyb2683 = yyj2683 > l - } else { - yyb2683 = r.CheckBreak() - } - if yyb2683 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2683-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym2690 := z.EncBinary() - _ = yym2690 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep2691 := !z.EncBinary() - yy2arr2691 := z.EncBasicHandle().StructToArray - var yyq2691 [5]bool - _, _, _ = yysep2691, yyq2691, yy2arr2691 - const yyr2691 bool = false - yyq2691[0] = x.Kind != "" - yyq2691[1] = x.APIVersion != "" - yyq2691[2] = true - yyq2691[3] = true - yyq2691[4] = true - var yynn2691 int - if yyr2691 || yy2arr2691 { - r.EncodeArrayStart(5) - } else { - yynn2691 = 0 - for _, b := range yyq2691 { - if b { - yynn2691++ - } - } - r.EncodeMapStart(yynn2691) - yynn2691 = 0 - } - if yyr2691 || yy2arr2691 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2691[0] { - yym2693 := z.EncBinary() - _ = yym2693 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2691[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2694 := z.EncBinary() - _ = yym2694 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2691 || yy2arr2691 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2691[1] { - yym2696 := z.EncBinary() - _ = yym2696 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2691[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2697 := z.EncBinary() - _ = yym2697 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr2691 || yy2arr2691 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2691[2] { - yy2699 := &x.ObjectMeta - yy2699.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq2691[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2700 := &x.ObjectMeta - yy2700.CodecEncodeSelf(e) - } - } - if yyr2691 || yy2arr2691 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2691[3] { - yy2702 := &x.Spec - yy2702.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq2691[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("spec")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2703 := &x.Spec - yy2703.CodecEncodeSelf(e) - } - } - if yyr2691 || yy2arr2691 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2691[4] { - yy2705 := &x.Status - yy2705.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq2691[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("status")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2706 := &x.Status - yy2706.CodecEncodeSelf(e) - } - } - if yyr2691 || yy2arr2691 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *Service) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym2707 := z.DecBinary() - _ = yym2707 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct2708 := r.ContainerType() - if yyct2708 == codecSelferValueTypeMap1234 { - yyl2708 := r.ReadMapStart() - if yyl2708 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl2708, d) - } - } else if yyct2708 == codecSelferValueTypeArray1234 { - yyl2708 := r.ReadArrayStart() - if yyl2708 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl2708, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys2709Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2709Slc - var yyhl2709 bool = l >= 0 - for yyj2709 := 0; ; yyj2709++ { - if yyhl2709 { - if yyj2709 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2709Slc = r.DecodeBytes(yys2709Slc, true, true) - yys2709 := string(yys2709Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2709 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "metadata": - if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} - } else { - yyv2712 := &x.ObjectMeta - yyv2712.CodecDecodeSelf(d) - } - case "spec": - if r.TryDecodeAsNil() { - x.Spec = ServiceSpec{} - } else { - yyv2713 := &x.Spec - yyv2713.CodecDecodeSelf(d) - } - case "status": - if r.TryDecodeAsNil() { - x.Status = ServiceStatus{} - } else { - yyv2714 := &x.Status - yyv2714.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys2709) - } // end switch yys2709 - } // end for yyj2709 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -35377,9 +35490,9 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Kind = "" + x.Name = "" } else { - x.Kind = string(r.DecodeString()) + x.Name = string(r.DecodeString()) } yyj2715++ if yyhl2715 { @@ -35393,9 +35506,9 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.APIVersion = "" + x.Protocol = "" } else { - x.APIVersion = string(r.DecodeString()) + x.Protocol = Protocol(r.DecodeString()) } yyj2715++ if yyhl2715 { @@ -35409,10 +35522,9 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} + x.Port = 0 } else { - yyv2718 := &x.ObjectMeta - yyv2718.CodecDecodeSelf(d) + x.Port = int32(r.DecodeInt(32)) } yyj2715++ if yyhl2715 { @@ -35426,10 +35538,18 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Spec = ServiceSpec{} + x.TargetPort = pkg4_intstr.IntOrString{} } else { - yyv2719 := &x.Spec - yyv2719.CodecDecodeSelf(d) + yyv2719 := &x.TargetPort + yym2720 := z.DecBinary() + _ = yym2720 + if false { + } else if z.HasExtensions() && z.DecExt(yyv2719) { + } else if !yym2720 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2719) + } else { + z.DecFallback(yyv2719, false) + } } yyj2715++ if yyhl2715 { @@ -35443,10 +35563,9 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Status = ServiceStatus{} + x.NodePort = 0 } else { - yyv2720 := &x.Status - yyv2720.CodecDecodeSelf(d) + x.NodePort = int32(r.DecodeInt(32)) } for { yyj2715++ @@ -35464,69 +35583,71 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { +func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r if x == nil { r.EncodeNil() } else { - yym2721 := z.EncBinary() - _ = yym2721 + yym2722 := z.EncBinary() + _ = yym2722 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2722 := !z.EncBinary() - yy2arr2722 := z.EncBasicHandle().StructToArray - var yyq2722 [4]bool - _, _, _ = yysep2722, yyq2722, yy2arr2722 - const yyr2722 bool = false - yyq2722[0] = x.Kind != "" - yyq2722[1] = x.APIVersion != "" - yyq2722[2] = true - var yynn2722 int - if yyr2722 || yy2arr2722 { - r.EncodeArrayStart(4) + yysep2723 := !z.EncBinary() + yy2arr2723 := z.EncBasicHandle().StructToArray + var yyq2723 [5]bool + _, _, _ = yysep2723, yyq2723, yy2arr2723 + const yyr2723 bool = false + yyq2723[0] = x.Kind != "" + yyq2723[1] = x.APIVersion != "" + yyq2723[2] = true + yyq2723[3] = true + yyq2723[4] = true + var yynn2723 int + if yyr2723 || yy2arr2723 { + r.EncodeArrayStart(5) } else { - yynn2722 = 1 - for _, b := range yyq2722 { + yynn2723 = 0 + for _, b := range yyq2723 { if b { - yynn2722++ + yynn2723++ } } - r.EncodeMapStart(yynn2722) - yynn2722 = 0 + r.EncodeMapStart(yynn2723) + yynn2723 = 0 } - if yyr2722 || yy2arr2722 { + if yyr2723 || yy2arr2723 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2722[0] { - yym2724 := z.EncBinary() - _ = yym2724 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2722[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyq2723[0] { yym2725 := z.EncBinary() _ = yym2725 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2723[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2726 := z.EncBinary() + _ = yym2726 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } } } - if yyr2722 || yy2arr2722 { + if yyr2723 || yy2arr2723 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2722[1] { - yym2727 := z.EncBinary() - _ = yym2727 + if yyq2723[1] { + yym2728 := z.EncBinary() + _ = yym2728 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -35535,75 +35656,70 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2722[1] { + if yyq2723[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2728 := z.EncBinary() - _ = yym2728 + yym2729 := z.EncBinary() + _ = yym2729 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2722 || yy2arr2722 { + if yyr2723 || yy2arr2723 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2722[2] { - yy2730 := &x.ListMeta - yym2731 := z.EncBinary() - _ = yym2731 - if false { - } else if z.HasExtensions() && z.EncExt(yy2730) { - } else { - z.EncFallback(yy2730) - } + if yyq2723[2] { + yy2731 := &x.ObjectMeta + yy2731.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2722[2] { + if yyq2723[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2732 := &x.ListMeta - yym2733 := z.EncBinary() - _ = yym2733 - if false { - } else if z.HasExtensions() && z.EncExt(yy2732) { - } else { - z.EncFallback(yy2732) - } + yy2732 := &x.ObjectMeta + yy2732.CodecEncodeSelf(e) } } - if yyr2722 || yy2arr2722 { + if yyr2723 || yy2arr2723 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if x.Items == nil { - r.EncodeNil() + if yyq2723[3] { + yy2734 := &x.Spec + yy2734.CodecEncodeSelf(e) } else { - yym2735 := z.EncBinary() - _ = yym2735 - if false { - } else { - h.encSliceService(([]Service)(x.Items), e) - } + r.EncodeNil() } } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("items")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Items == nil { - r.EncodeNil() - } else { - yym2736 := z.EncBinary() - _ = yym2736 - if false { - } else { - h.encSliceService(([]Service)(x.Items), e) - } + if yyq2723[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("spec")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2735 := &x.Spec + yy2735.CodecEncodeSelf(e) } } - if yyr2722 || yy2arr2722 { + if yyr2723 || yy2arr2723 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2723[4] { + yy2737 := &x.Status + yy2737.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq2723[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("status")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2738 := &x.Status + yy2738.CodecEncodeSelf(e) + } + } + if yyr2723 || yy2arr2723 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35612,29 +35728,29 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { } } -func (x *ServiceList) CodecDecodeSelf(d *codec1978.Decoder) { +func (x *Service) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2737 := z.DecBinary() - _ = yym2737 + yym2739 := z.DecBinary() + _ = yym2739 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2738 := r.ContainerType() - if yyct2738 == codecSelferValueTypeMap1234 { - yyl2738 := r.ReadMapStart() - if yyl2738 == 0 { + yyct2740 := r.ContainerType() + if yyct2740 == codecSelferValueTypeMap1234 { + yyl2740 := r.ReadMapStart() + if yyl2740 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2738, d) + x.codecDecodeSelfFromMap(yyl2740, d) } - } else if yyct2738 == codecSelferValueTypeArray1234 { - yyl2738 := r.ReadArrayStart() - if yyl2738 == 0 { + } else if yyct2740 == codecSelferValueTypeArray1234 { + yyl2740 := r.ReadArrayStart() + if yyl2740 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2738, d) + x.codecDecodeSelfFromArray(yyl2740, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35642,16 +35758,16 @@ func (x *ServiceList) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2739Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2739Slc - var yyhl2739 bool = l >= 0 - for yyj2739 := 0; ; yyj2739++ { - if yyhl2739 { - if yyj2739 >= l { + var yys2741Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2741Slc + var yyhl2741 bool = l >= 0 + for yyj2741 := 0; ; yyj2741++ { + if yyhl2741 { + if yyj2741 >= l { break } } else { @@ -35660,10 +35776,10 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2739Slc = r.DecodeBytes(yys2739Slc, true, true) - yys2739 := string(yys2739Slc) + yys2741Slc = r.DecodeBytes(yys2741Slc, true, true) + yys2741 := string(yys2741Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2739 { + switch yys2741 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35678,50 +35794,46 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } case "metadata": if r.TryDecodeAsNil() { - x.ListMeta = pkg2_v1.ListMeta{} + x.ObjectMeta = ObjectMeta{} } else { - yyv2742 := &x.ListMeta - yym2743 := z.DecBinary() - _ = yym2743 - if false { - } else if z.HasExtensions() && z.DecExt(yyv2742) { - } else { - z.DecFallback(yyv2742, false) - } + yyv2744 := &x.ObjectMeta + yyv2744.CodecDecodeSelf(d) } - case "items": + case "spec": if r.TryDecodeAsNil() { - x.Items = nil + x.Spec = ServiceSpec{} } else { - yyv2744 := &x.Items - yym2745 := z.DecBinary() - _ = yym2745 - if false { - } else { - h.decSliceService((*[]Service)(yyv2744), d) - } + yyv2745 := &x.Spec + yyv2745.CodecDecodeSelf(d) + } + case "status": + if r.TryDecodeAsNil() { + x.Status = ServiceStatus{} + } else { + yyv2746 := &x.Status + yyv2746.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2739) - } // end switch yys2739 - } // end for yyj2739 + z.DecStructFieldNotFound(-1, yys2741) + } // end switch yys2741 + } // end for yyj2741 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } -func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { +func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2746 int - var yyb2746 bool - var yyhl2746 bool = l >= 0 - yyj2746++ - if yyhl2746 { - yyb2746 = yyj2746 > l + var yyj2747 int + var yyb2747 bool + var yyhl2747 bool = l >= 0 + yyj2747++ + if yyhl2747 { + yyb2747 = yyj2747 > l } else { - yyb2746 = r.CheckBreak() + yyb2747 = r.CheckBreak() } - if yyb2746 { + if yyb2747 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35731,13 +35843,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2746++ - if yyhl2746 { - yyb2746 = yyj2746 > l + yyj2747++ + if yyhl2747 { + yyb2747 = yyj2747 > l } else { - yyb2746 = r.CheckBreak() + yyb2747 = r.CheckBreak() } - if yyb2746 { + if yyb2747 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35747,68 +35859,74 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2746++ - if yyhl2746 { - yyb2746 = yyj2746 > l + yyj2747++ + if yyhl2747 { + yyb2747 = yyj2747 > l } else { - yyb2746 = r.CheckBreak() + yyb2747 = r.CheckBreak() } - if yyb2746 { + if yyb2747 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.ListMeta = pkg2_v1.ListMeta{} + x.ObjectMeta = ObjectMeta{} } else { - yyv2749 := &x.ListMeta - yym2750 := z.DecBinary() - _ = yym2750 - if false { - } else if z.HasExtensions() && z.DecExt(yyv2749) { - } else { - z.DecFallback(yyv2749, false) - } + yyv2750 := &x.ObjectMeta + yyv2750.CodecDecodeSelf(d) } - yyj2746++ - if yyhl2746 { - yyb2746 = yyj2746 > l + yyj2747++ + if yyhl2747 { + yyb2747 = yyj2747 > l } else { - yyb2746 = r.CheckBreak() + yyb2747 = r.CheckBreak() } - if yyb2746 { + if yyb2747 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Items = nil + x.Spec = ServiceSpec{} } else { - yyv2751 := &x.Items - yym2752 := z.DecBinary() - _ = yym2752 - if false { - } else { - h.decSliceService((*[]Service)(yyv2751), d) - } + yyv2751 := &x.Spec + yyv2751.CodecDecodeSelf(d) + } + yyj2747++ + if yyhl2747 { + yyb2747 = yyj2747 > l + } else { + yyb2747 = r.CheckBreak() + } + if yyb2747 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Status = ServiceStatus{} + } else { + yyv2752 := &x.Status + yyv2752.CodecDecodeSelf(d) } for { - yyj2746++ - if yyhl2746 { - yyb2746 = yyj2746 > l + yyj2747++ + if yyhl2747 { + yyb2747 = yyj2747 > l } else { - yyb2746 = r.CheckBreak() + yyb2747 = r.CheckBreak() } - if yyb2746 { + if yyb2747 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2746-1, "") + z.DecStructFieldNotFound(yyj2747-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { +func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -35822,19 +35940,17 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep2754 := !z.EncBinary() yy2arr2754 := z.EncBasicHandle().StructToArray - var yyq2754 [5]bool + var yyq2754 [4]bool _, _, _ = yysep2754, yyq2754, yy2arr2754 const yyr2754 bool = false yyq2754[0] = x.Kind != "" yyq2754[1] = x.APIVersion != "" yyq2754[2] = true - yyq2754[3] = len(x.Secrets) != 0 - yyq2754[4] = len(x.ImagePullSecrets) != 0 var yynn2754 int if yyr2754 || yy2arr2754 { - r.EncodeArrayStart(5) + r.EncodeArrayStart(4) } else { - yynn2754 = 0 + yynn2754 = 1 for _, b := range yyq2754 { if b { yynn2754++ @@ -35896,8 +36012,14 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { if yyr2754 || yy2arr2754 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if yyq2754[2] { - yy2762 := &x.ObjectMeta - yy2762.CodecEncodeSelf(e) + yy2762 := &x.ListMeta + yym2763 := z.EncBinary() + _ = yym2763 + if false { + } else if z.HasExtensions() && z.EncExt(yy2762) { + } else { + z.EncFallback(yy2762) + } } else { r.EncodeNil() } @@ -35906,425 +36028,26 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2763 := &x.ObjectMeta - yy2763.CodecEncodeSelf(e) - } - } - if yyr2754 || yy2arr2754 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2754[3] { - if x.Secrets == nil { - r.EncodeNil() + yy2764 := &x.ListMeta + yym2765 := z.EncBinary() + _ = yym2765 + if false { + } else if z.HasExtensions() && z.EncExt(yy2764) { } else { - yym2765 := z.EncBinary() - _ = yym2765 - if false { - } else { - h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq2754[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("secrets")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Secrets == nil { - r.EncodeNil() - } else { - yym2766 := z.EncBinary() - _ = yym2766 - if false { - } else { - h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) - } + z.EncFallback(yy2764) } } } if yyr2754 || yy2arr2754 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2754[4] { - if x.ImagePullSecrets == nil { - r.EncodeNil() - } else { - yym2768 := z.EncBinary() - _ = yym2768 - if false { - } else { - h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq2754[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.ImagePullSecrets == nil { - r.EncodeNil() - } else { - yym2769 := z.EncBinary() - _ = yym2769 - if false { - } else { - h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) - } - } - } - } - if yyr2754 || yy2arr2754 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *ServiceAccount) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym2770 := z.DecBinary() - _ = yym2770 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct2771 := r.ContainerType() - if yyct2771 == codecSelferValueTypeMap1234 { - yyl2771 := r.ReadMapStart() - if yyl2771 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl2771, d) - } - } else if yyct2771 == codecSelferValueTypeArray1234 { - yyl2771 := r.ReadArrayStart() - if yyl2771 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl2771, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys2772Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2772Slc - var yyhl2772 bool = l >= 0 - for yyj2772 := 0; ; yyj2772++ { - if yyhl2772 { - if yyj2772 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2772Slc = r.DecodeBytes(yys2772Slc, true, true) - yys2772 := string(yys2772Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2772 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "metadata": - if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} - } else { - yyv2775 := &x.ObjectMeta - yyv2775.CodecDecodeSelf(d) - } - case "secrets": - if r.TryDecodeAsNil() { - x.Secrets = nil - } else { - yyv2776 := &x.Secrets - yym2777 := z.DecBinary() - _ = yym2777 - if false { - } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2776), d) - } - } - case "imagePullSecrets": - if r.TryDecodeAsNil() { - x.ImagePullSecrets = nil - } else { - yyv2778 := &x.ImagePullSecrets - yym2779 := z.DecBinary() - _ = yym2779 - if false { - } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2778), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys2772) - } // end switch yys2772 - } // end for yyj2772 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj2780 int - var yyb2780 bool - var yyhl2780 bool = l >= 0 - yyj2780++ - if yyhl2780 { - yyb2780 = yyj2780 > l - } else { - yyb2780 = r.CheckBreak() - } - if yyb2780 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj2780++ - if yyhl2780 { - yyb2780 = yyj2780 > l - } else { - yyb2780 = r.CheckBreak() - } - if yyb2780 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj2780++ - if yyhl2780 { - yyb2780 = yyj2780 > l - } else { - yyb2780 = r.CheckBreak() - } - if yyb2780 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} - } else { - yyv2783 := &x.ObjectMeta - yyv2783.CodecDecodeSelf(d) - } - yyj2780++ - if yyhl2780 { - yyb2780 = yyj2780 > l - } else { - yyb2780 = r.CheckBreak() - } - if yyb2780 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Secrets = nil - } else { - yyv2784 := &x.Secrets - yym2785 := z.DecBinary() - _ = yym2785 - if false { - } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2784), d) - } - } - yyj2780++ - if yyhl2780 { - yyb2780 = yyj2780 > l - } else { - yyb2780 = r.CheckBreak() - } - if yyb2780 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ImagePullSecrets = nil - } else { - yyv2786 := &x.ImagePullSecrets - yym2787 := z.DecBinary() - _ = yym2787 - if false { - } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2786), d) - } - } - for { - yyj2780++ - if yyhl2780 { - yyb2780 = yyj2780 > l - } else { - yyb2780 = r.CheckBreak() - } - if yyb2780 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2780-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym2788 := z.EncBinary() - _ = yym2788 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep2789 := !z.EncBinary() - yy2arr2789 := z.EncBasicHandle().StructToArray - var yyq2789 [4]bool - _, _, _ = yysep2789, yyq2789, yy2arr2789 - const yyr2789 bool = false - yyq2789[0] = x.Kind != "" - yyq2789[1] = x.APIVersion != "" - yyq2789[2] = true - var yynn2789 int - if yyr2789 || yy2arr2789 { - r.EncodeArrayStart(4) - } else { - yynn2789 = 1 - for _, b := range yyq2789 { - if b { - yynn2789++ - } - } - r.EncodeMapStart(yynn2789) - yynn2789 = 0 - } - if yyr2789 || yy2arr2789 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2789[0] { - yym2791 := z.EncBinary() - _ = yym2791 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2789[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2792 := z.EncBinary() - _ = yym2792 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2789 || yy2arr2789 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2789[1] { - yym2794 := z.EncBinary() - _ = yym2794 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2789[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2795 := z.EncBinary() - _ = yym2795 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr2789 || yy2arr2789 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2789[2] { - yy2797 := &x.ListMeta - yym2798 := z.EncBinary() - _ = yym2798 - if false { - } else if z.HasExtensions() && z.EncExt(yy2797) { - } else { - z.EncFallback(yy2797) - } - } else { - r.EncodeNil() - } - } else { - if yyq2789[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2799 := &x.ListMeta - yym2800 := z.EncBinary() - _ = yym2800 - if false { - } else if z.HasExtensions() && z.EncExt(yy2799) { - } else { - z.EncFallback(yy2799) - } - } - } - if yyr2789 || yy2arr2789 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2802 := z.EncBinary() - _ = yym2802 + yym2767 := z.EncBinary() + _ = yym2767 if false { } else { - h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) + h.encSliceService(([]Service)(x.Items), e) } } } else { @@ -36334,15 +36057,15 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2803 := z.EncBinary() - _ = yym2803 + yym2768 := z.EncBinary() + _ = yym2768 if false { } else { - h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) + h.encSliceService(([]Service)(x.Items), e) } } } - if yyr2789 || yy2arr2789 { + if yyr2754 || yy2arr2754 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36351,29 +36074,29 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { } } -func (x *ServiceAccountList) CodecDecodeSelf(d *codec1978.Decoder) { +func (x *ServiceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2804 := z.DecBinary() - _ = yym2804 + yym2769 := z.DecBinary() + _ = yym2769 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2805 := r.ContainerType() - if yyct2805 == codecSelferValueTypeMap1234 { - yyl2805 := r.ReadMapStart() - if yyl2805 == 0 { + yyct2770 := r.ContainerType() + if yyct2770 == codecSelferValueTypeMap1234 { + yyl2770 := r.ReadMapStart() + if yyl2770 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2805, d) + x.codecDecodeSelfFromMap(yyl2770, d) } - } else if yyct2805 == codecSelferValueTypeArray1234 { - yyl2805 := r.ReadArrayStart() - if yyl2805 == 0 { + } else if yyct2770 == codecSelferValueTypeArray1234 { + yyl2770 := r.ReadArrayStart() + if yyl2770 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2805, d) + x.codecDecodeSelfFromArray(yyl2770, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36381,16 +36104,16 @@ func (x *ServiceAccountList) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2806Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2806Slc - var yyhl2806 bool = l >= 0 - for yyj2806 := 0; ; yyj2806++ { - if yyhl2806 { - if yyj2806 >= l { + var yys2771Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2771Slc + var yyhl2771 bool = l >= 0 + for yyj2771 := 0; ; yyj2771++ { + if yyhl2771 { + if yyj2771 >= l { break } } else { @@ -36399,10 +36122,10 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2806Slc = r.DecodeBytes(yys2806Slc, true, true) - yys2806 := string(yys2806Slc) + yys2771Slc = r.DecodeBytes(yys2771Slc, true, true) + yys2771 := string(yys2771Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2806 { + switch yys2771 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -36419,48 +36142,48 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv2809 := &x.ListMeta - yym2810 := z.DecBinary() - _ = yym2810 + yyv2774 := &x.ListMeta + yym2775 := z.DecBinary() + _ = yym2775 if false { - } else if z.HasExtensions() && z.DecExt(yyv2809) { + } else if z.HasExtensions() && z.DecExt(yyv2774) { } else { - z.DecFallback(yyv2809, false) + z.DecFallback(yyv2774, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2811 := &x.Items - yym2812 := z.DecBinary() - _ = yym2812 + yyv2776 := &x.Items + yym2777 := z.DecBinary() + _ = yym2777 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2811), d) + h.decSliceService((*[]Service)(yyv2776), d) } } default: - z.DecStructFieldNotFound(-1, yys2806) - } // end switch yys2806 - } // end for yyj2806 + z.DecStructFieldNotFound(-1, yys2771) + } // end switch yys2771 + } // end for yyj2771 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } -func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { +func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2813 int - var yyb2813 bool - var yyhl2813 bool = l >= 0 - yyj2813++ - if yyhl2813 { - yyb2813 = yyj2813 > l + var yyj2778 int + var yyb2778 bool + var yyhl2778 bool = l >= 0 + yyj2778++ + if yyhl2778 { + yyb2778 = yyj2778 > l } else { - yyb2813 = r.CheckBreak() + yyb2778 = r.CheckBreak() } - if yyb2813 { + if yyb2778 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36470,13 +36193,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Kind = string(r.DecodeString()) } - yyj2813++ - if yyhl2813 { - yyb2813 = yyj2813 > l + yyj2778++ + if yyhl2778 { + yyb2778 = yyj2778 > l } else { - yyb2813 = r.CheckBreak() + yyb2778 = r.CheckBreak() } - if yyb2813 { + if yyb2778 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36486,13 +36209,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.APIVersion = string(r.DecodeString()) } - yyj2813++ - if yyhl2813 { - yyb2813 = yyj2813 > l + yyj2778++ + if yyhl2778 { + yyb2778 = yyj2778 > l } else { - yyb2813 = r.CheckBreak() + yyb2778 = r.CheckBreak() } - if yyb2813 { + if yyb2778 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36500,22 +36223,22 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv2816 := &x.ListMeta - yym2817 := z.DecBinary() - _ = yym2817 + yyv2781 := &x.ListMeta + yym2782 := z.DecBinary() + _ = yym2782 if false { - } else if z.HasExtensions() && z.DecExt(yyv2816) { + } else if z.HasExtensions() && z.DecExt(yyv2781) { } else { - z.DecFallback(yyv2816, false) + z.DecFallback(yyv2781, false) } } - yyj2813++ - if yyhl2813 { - yyb2813 = yyj2813 > l + yyj2778++ + if yyhl2778 { + yyb2778 = yyj2778 > l } else { - yyb2813 = r.CheckBreak() + yyb2778 = r.CheckBreak() } - if yyb2813 { + if yyb2778 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36523,31 +36246,426 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2818 := &x.Items - yym2819 := z.DecBinary() - _ = yym2819 + yyv2783 := &x.Items + yym2784 := z.DecBinary() + _ = yym2784 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2818), d) + h.decSliceService((*[]Service)(yyv2783), d) } } for { - yyj2813++ - if yyhl2813 { - yyb2813 = yyj2813 > l + yyj2778++ + if yyhl2778 { + yyb2778 = yyj2778 > l } else { - yyb2813 = r.CheckBreak() + yyb2778 = r.CheckBreak() } - if yyb2813 { + if yyb2778 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2813-1, "") + z.DecStructFieldNotFound(yyj2778-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { +func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym2785 := z.EncBinary() + _ = yym2785 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep2786 := !z.EncBinary() + yy2arr2786 := z.EncBasicHandle().StructToArray + var yyq2786 [5]bool + _, _, _ = yysep2786, yyq2786, yy2arr2786 + const yyr2786 bool = false + yyq2786[0] = x.Kind != "" + yyq2786[1] = x.APIVersion != "" + yyq2786[2] = true + yyq2786[3] = len(x.Secrets) != 0 + yyq2786[4] = len(x.ImagePullSecrets) != 0 + var yynn2786 int + if yyr2786 || yy2arr2786 { + r.EncodeArrayStart(5) + } else { + yynn2786 = 0 + for _, b := range yyq2786 { + if b { + yynn2786++ + } + } + r.EncodeMapStart(yynn2786) + yynn2786 = 0 + } + if yyr2786 || yy2arr2786 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2786[0] { + yym2788 := z.EncBinary() + _ = yym2788 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2786[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2789 := z.EncBinary() + _ = yym2789 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr2786 || yy2arr2786 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2786[1] { + yym2791 := z.EncBinary() + _ = yym2791 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2786[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2792 := z.EncBinary() + _ = yym2792 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr2786 || yy2arr2786 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2786[2] { + yy2794 := &x.ObjectMeta + yy2794.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq2786[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2795 := &x.ObjectMeta + yy2795.CodecEncodeSelf(e) + } + } + if yyr2786 || yy2arr2786 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2786[3] { + if x.Secrets == nil { + r.EncodeNil() + } else { + yym2797 := z.EncBinary() + _ = yym2797 + if false { + } else { + h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2786[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("secrets")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Secrets == nil { + r.EncodeNil() + } else { + yym2798 := z.EncBinary() + _ = yym2798 + if false { + } else { + h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) + } + } + } + } + if yyr2786 || yy2arr2786 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2786[4] { + if x.ImagePullSecrets == nil { + r.EncodeNil() + } else { + yym2800 := z.EncBinary() + _ = yym2800 + if false { + } else { + h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2786[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.ImagePullSecrets == nil { + r.EncodeNil() + } else { + yym2801 := z.EncBinary() + _ = yym2801 + if false { + } else { + h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) + } + } + } + } + if yyr2786 || yy2arr2786 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *ServiceAccount) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2802 := z.DecBinary() + _ = yym2802 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct2803 := r.ContainerType() + if yyct2803 == codecSelferValueTypeMap1234 { + yyl2803 := r.ReadMapStart() + if yyl2803 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl2803, d) + } + } else if yyct2803 == codecSelferValueTypeArray1234 { + yyl2803 := r.ReadArrayStart() + if yyl2803 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl2803, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys2804Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2804Slc + var yyhl2804 bool = l >= 0 + for yyj2804 := 0; ; yyj2804++ { + if yyhl2804 { + if yyj2804 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys2804Slc = r.DecodeBytes(yys2804Slc, true, true) + yys2804 := string(yys2804Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys2804 { + case "kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "metadata": + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv2807 := &x.ObjectMeta + yyv2807.CodecDecodeSelf(d) + } + case "secrets": + if r.TryDecodeAsNil() { + x.Secrets = nil + } else { + yyv2808 := &x.Secrets + yym2809 := z.DecBinary() + _ = yym2809 + if false { + } else { + h.decSliceObjectReference((*[]ObjectReference)(yyv2808), d) + } + } + case "imagePullSecrets": + if r.TryDecodeAsNil() { + x.ImagePullSecrets = nil + } else { + yyv2810 := &x.ImagePullSecrets + yym2811 := z.DecBinary() + _ = yym2811 + if false { + } else { + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2810), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys2804) + } // end switch yys2804 + } // end for yyj2804 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj2812 int + var yyb2812 bool + var yyhl2812 bool = l >= 0 + yyj2812++ + if yyhl2812 { + yyb2812 = yyj2812 > l + } else { + yyb2812 = r.CheckBreak() + } + if yyb2812 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj2812++ + if yyhl2812 { + yyb2812 = yyj2812 > l + } else { + yyb2812 = r.CheckBreak() + } + if yyb2812 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj2812++ + if yyhl2812 { + yyb2812 = yyj2812 > l + } else { + yyb2812 = r.CheckBreak() + } + if yyb2812 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv2815 := &x.ObjectMeta + yyv2815.CodecDecodeSelf(d) + } + yyj2812++ + if yyhl2812 { + yyb2812 = yyj2812 > l + } else { + yyb2812 = r.CheckBreak() + } + if yyb2812 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Secrets = nil + } else { + yyv2816 := &x.Secrets + yym2817 := z.DecBinary() + _ = yym2817 + if false { + } else { + h.decSliceObjectReference((*[]ObjectReference)(yyv2816), d) + } + } + yyj2812++ + if yyhl2812 { + yyb2812 = yyj2812 > l + } else { + yyb2812 = r.CheckBreak() + } + if yyb2812 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ImagePullSecrets = nil + } else { + yyv2818 := &x.ImagePullSecrets + yym2819 := z.DecBinary() + _ = yym2819 + if false { + } else { + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2818), d) + } + } + for { + yyj2812++ + if yyhl2812 { + yyb2812 = yyj2812 > l + } else { + yyb2812 = r.CheckBreak() + } + if yyb2812 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj2812-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -36633,8 +36751,14 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if yyr2821 || yy2arr2821 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if yyq2821[2] { - yy2829 := &x.ObjectMeta - yy2829.CodecEncodeSelf(e) + yy2829 := &x.ListMeta + yym2830 := z.EncBinary() + _ = yym2830 + if false { + } else if z.HasExtensions() && z.EncExt(yy2829) { + } else { + z.EncFallback(yy2829) + } } else { r.EncodeNil() } @@ -36643,34 +36767,40 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2830 := &x.ObjectMeta - yy2830.CodecEncodeSelf(e) + yy2831 := &x.ListMeta + yym2832 := z.EncBinary() + _ = yym2832 + if false { + } else if z.HasExtensions() && z.EncExt(yy2831) { + } else { + z.EncFallback(yy2831) + } } } if yyr2821 || yy2arr2821 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if x.Subsets == nil { + if x.Items == nil { r.EncodeNil() } else { - yym2832 := z.EncBinary() - _ = yym2832 + yym2834 := z.EncBinary() + _ = yym2834 if false { } else { - h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) + h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) } } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("subsets")) + r.EncodeString(codecSelferC_UTF81234, string("items")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Subsets == nil { + if x.Items == nil { r.EncodeNil() } else { - yym2833 := z.EncBinary() - _ = yym2833 + yym2835 := z.EncBinary() + _ = yym2835 if false { } else { - h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) + h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) } } } @@ -36683,29 +36813,361 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { } } +func (x *ServiceAccountList) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2836 := z.DecBinary() + _ = yym2836 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct2837 := r.ContainerType() + if yyct2837 == codecSelferValueTypeMap1234 { + yyl2837 := r.ReadMapStart() + if yyl2837 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl2837, d) + } + } else if yyct2837 == codecSelferValueTypeArray1234 { + yyl2837 := r.ReadArrayStart() + if yyl2837 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl2837, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys2838Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2838Slc + var yyhl2838 bool = l >= 0 + for yyj2838 := 0; ; yyj2838++ { + if yyhl2838 { + if yyj2838 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys2838Slc = r.DecodeBytes(yys2838Slc, true, true) + yys2838 := string(yys2838Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys2838 { + case "kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "metadata": + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_v1.ListMeta{} + } else { + yyv2841 := &x.ListMeta + yym2842 := z.DecBinary() + _ = yym2842 + if false { + } else if z.HasExtensions() && z.DecExt(yyv2841) { + } else { + z.DecFallback(yyv2841, false) + } + } + case "items": + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv2843 := &x.Items + yym2844 := z.DecBinary() + _ = yym2844 + if false { + } else { + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2843), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys2838) + } // end switch yys2838 + } // end for yyj2838 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj2845 int + var yyb2845 bool + var yyhl2845 bool = l >= 0 + yyj2845++ + if yyhl2845 { + yyb2845 = yyj2845 > l + } else { + yyb2845 = r.CheckBreak() + } + if yyb2845 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj2845++ + if yyhl2845 { + yyb2845 = yyj2845 > l + } else { + yyb2845 = r.CheckBreak() + } + if yyb2845 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj2845++ + if yyhl2845 { + yyb2845 = yyj2845 > l + } else { + yyb2845 = r.CheckBreak() + } + if yyb2845 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_v1.ListMeta{} + } else { + yyv2848 := &x.ListMeta + yym2849 := z.DecBinary() + _ = yym2849 + if false { + } else if z.HasExtensions() && z.DecExt(yyv2848) { + } else { + z.DecFallback(yyv2848, false) + } + } + yyj2845++ + if yyhl2845 { + yyb2845 = yyj2845 > l + } else { + yyb2845 = r.CheckBreak() + } + if yyb2845 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv2850 := &x.Items + yym2851 := z.DecBinary() + _ = yym2851 + if false { + } else { + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2850), d) + } + } + for { + yyj2845++ + if yyhl2845 { + yyb2845 = yyj2845 > l + } else { + yyb2845 = r.CheckBreak() + } + if yyb2845 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj2845-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym2852 := z.EncBinary() + _ = yym2852 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep2853 := !z.EncBinary() + yy2arr2853 := z.EncBasicHandle().StructToArray + var yyq2853 [4]bool + _, _, _ = yysep2853, yyq2853, yy2arr2853 + const yyr2853 bool = false + yyq2853[0] = x.Kind != "" + yyq2853[1] = x.APIVersion != "" + yyq2853[2] = true + var yynn2853 int + if yyr2853 || yy2arr2853 { + r.EncodeArrayStart(4) + } else { + yynn2853 = 1 + for _, b := range yyq2853 { + if b { + yynn2853++ + } + } + r.EncodeMapStart(yynn2853) + yynn2853 = 0 + } + if yyr2853 || yy2arr2853 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2853[0] { + yym2855 := z.EncBinary() + _ = yym2855 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2853[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2856 := z.EncBinary() + _ = yym2856 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr2853 || yy2arr2853 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2853[1] { + yym2858 := z.EncBinary() + _ = yym2858 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2853[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2859 := z.EncBinary() + _ = yym2859 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr2853 || yy2arr2853 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2853[2] { + yy2861 := &x.ObjectMeta + yy2861.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq2853[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2862 := &x.ObjectMeta + yy2862.CodecEncodeSelf(e) + } + } + if yyr2853 || yy2arr2853 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if x.Subsets == nil { + r.EncodeNil() + } else { + yym2864 := z.EncBinary() + _ = yym2864 + if false { + } else { + h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) + } + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("subsets")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Subsets == nil { + r.EncodeNil() + } else { + yym2865 := z.EncBinary() + _ = yym2865 + if false { + } else { + h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) + } + } + } + if yyr2853 || yy2arr2853 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + func (x *Endpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2834 := z.DecBinary() - _ = yym2834 + yym2866 := z.DecBinary() + _ = yym2866 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2835 := r.ContainerType() - if yyct2835 == codecSelferValueTypeMap1234 { - yyl2835 := r.ReadMapStart() - if yyl2835 == 0 { + yyct2867 := r.ContainerType() + if yyct2867 == codecSelferValueTypeMap1234 { + yyl2867 := r.ReadMapStart() + if yyl2867 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2835, d) + x.codecDecodeSelfFromMap(yyl2867, d) } - } else if yyct2835 == codecSelferValueTypeArray1234 { - yyl2835 := r.ReadArrayStart() - if yyl2835 == 0 { + } else if yyct2867 == codecSelferValueTypeArray1234 { + yyl2867 := r.ReadArrayStart() + if yyl2867 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2835, d) + x.codecDecodeSelfFromArray(yyl2867, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36717,12 +37179,12 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2836Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2836Slc - var yyhl2836 bool = l >= 0 - for yyj2836 := 0; ; yyj2836++ { - if yyhl2836 { - if yyj2836 >= l { + var yys2868Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2868Slc + var yyhl2868 bool = l >= 0 + for yyj2868 := 0; ; yyj2868++ { + if yyhl2868 { + if yyj2868 >= l { break } } else { @@ -36731,10 +37193,10 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2836Slc = r.DecodeBytes(yys2836Slc, true, true) - yys2836 := string(yys2836Slc) + yys2868Slc = r.DecodeBytes(yys2868Slc, true, true) + yys2868 := string(yys2868Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2836 { + switch yys2868 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -36751,25 +37213,25 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2839 := &x.ObjectMeta - yyv2839.CodecDecodeSelf(d) + yyv2871 := &x.ObjectMeta + yyv2871.CodecDecodeSelf(d) } case "subsets": if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2840 := &x.Subsets - yym2841 := z.DecBinary() - _ = yym2841 + yyv2872 := &x.Subsets + yym2873 := z.DecBinary() + _ = yym2873 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2840), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2872), d) } } default: - z.DecStructFieldNotFound(-1, yys2836) - } // end switch yys2836 - } // end for yyj2836 + z.DecStructFieldNotFound(-1, yys2868) + } // end switch yys2868 + } // end for yyj2868 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36777,16 +37239,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2842 int - var yyb2842 bool - var yyhl2842 bool = l >= 0 - yyj2842++ - if yyhl2842 { - yyb2842 = yyj2842 > l + var yyj2874 int + var yyb2874 bool + var yyhl2874 bool = l >= 0 + yyj2874++ + if yyhl2874 { + yyb2874 = yyj2874 > l } else { - yyb2842 = r.CheckBreak() + yyb2874 = r.CheckBreak() } - if yyb2842 { + if yyb2874 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36796,13 +37258,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2842++ - if yyhl2842 { - yyb2842 = yyj2842 > l + yyj2874++ + if yyhl2874 { + yyb2874 = yyj2874 > l } else { - yyb2842 = r.CheckBreak() + yyb2874 = r.CheckBreak() } - if yyb2842 { + if yyb2874 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36812,13 +37274,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2842++ - if yyhl2842 { - yyb2842 = yyj2842 > l + yyj2874++ + if yyhl2874 { + yyb2874 = yyj2874 > l } else { - yyb2842 = r.CheckBreak() + yyb2874 = r.CheckBreak() } - if yyb2842 { + if yyb2874 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36826,16 +37288,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2845 := &x.ObjectMeta - yyv2845.CodecDecodeSelf(d) + yyv2877 := &x.ObjectMeta + yyv2877.CodecDecodeSelf(d) } - yyj2842++ - if yyhl2842 { - yyb2842 = yyj2842 > l + yyj2874++ + if yyhl2874 { + yyb2874 = yyj2874 > l } else { - yyb2842 = r.CheckBreak() + yyb2874 = r.CheckBreak() } - if yyb2842 { + if yyb2874 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36843,26 +37305,26 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2846 := &x.Subsets - yym2847 := z.DecBinary() - _ = yym2847 + yyv2878 := &x.Subsets + yym2879 := z.DecBinary() + _ = yym2879 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2846), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2878), d) } } for { - yyj2842++ - if yyhl2842 { - yyb2842 = yyj2842 > l + yyj2874++ + if yyhl2874 { + yyb2874 = yyj2874 > l } else { - yyb2842 = r.CheckBreak() + yyb2874 = r.CheckBreak() } - if yyb2842 { + if yyb2874 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2842-1, "") + z.DecStructFieldNotFound(yyj2874-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36874,40 +37336,40 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2848 := z.EncBinary() - _ = yym2848 + yym2880 := z.EncBinary() + _ = yym2880 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2849 := !z.EncBinary() - yy2arr2849 := z.EncBasicHandle().StructToArray - var yyq2849 [3]bool - _, _, _ = yysep2849, yyq2849, yy2arr2849 - const yyr2849 bool = false - yyq2849[0] = len(x.Addresses) != 0 - yyq2849[1] = len(x.NotReadyAddresses) != 0 - yyq2849[2] = len(x.Ports) != 0 - var yynn2849 int - if yyr2849 || yy2arr2849 { + yysep2881 := !z.EncBinary() + yy2arr2881 := z.EncBasicHandle().StructToArray + var yyq2881 [3]bool + _, _, _ = yysep2881, yyq2881, yy2arr2881 + const yyr2881 bool = false + yyq2881[0] = len(x.Addresses) != 0 + yyq2881[1] = len(x.NotReadyAddresses) != 0 + yyq2881[2] = len(x.Ports) != 0 + var yynn2881 int + if yyr2881 || yy2arr2881 { r.EncodeArrayStart(3) } else { - yynn2849 = 0 - for _, b := range yyq2849 { + yynn2881 = 0 + for _, b := range yyq2881 { if b { - yynn2849++ + yynn2881++ } } - r.EncodeMapStart(yynn2849) - yynn2849 = 0 + r.EncodeMapStart(yynn2881) + yynn2881 = 0 } - if yyr2849 || yy2arr2849 { + if yyr2881 || yy2arr2881 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2849[0] { + if yyq2881[0] { if x.Addresses == nil { r.EncodeNil() } else { - yym2851 := z.EncBinary() - _ = yym2851 + yym2883 := z.EncBinary() + _ = yym2883 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) @@ -36917,15 +37379,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2849[0] { + if yyq2881[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2852 := z.EncBinary() - _ = yym2852 + yym2884 := z.EncBinary() + _ = yym2884 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) @@ -36933,14 +37395,14 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2849 || yy2arr2849 { + if yyr2881 || yy2arr2881 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2849[1] { + if yyq2881[1] { if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2854 := z.EncBinary() - _ = yym2854 + yym2886 := z.EncBinary() + _ = yym2886 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) @@ -36950,15 +37412,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2849[1] { + if yyq2881[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("notReadyAddresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2855 := z.EncBinary() - _ = yym2855 + yym2887 := z.EncBinary() + _ = yym2887 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) @@ -36966,14 +37428,14 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2849 || yy2arr2849 { + if yyr2881 || yy2arr2881 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2849[2] { + if yyq2881[2] { if x.Ports == nil { r.EncodeNil() } else { - yym2857 := z.EncBinary() - _ = yym2857 + yym2889 := z.EncBinary() + _ = yym2889 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -36983,15 +37445,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2849[2] { + if yyq2881[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ports")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ports == nil { r.EncodeNil() } else { - yym2858 := z.EncBinary() - _ = yym2858 + yym2890 := z.EncBinary() + _ = yym2890 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -36999,7 +37461,7 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2849 || yy2arr2849 { + if yyr2881 || yy2arr2881 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37012,25 +37474,25 @@ func (x *EndpointSubset) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2859 := z.DecBinary() - _ = yym2859 + yym2891 := z.DecBinary() + _ = yym2891 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2860 := r.ContainerType() - if yyct2860 == codecSelferValueTypeMap1234 { - yyl2860 := r.ReadMapStart() - if yyl2860 == 0 { + yyct2892 := r.ContainerType() + if yyct2892 == codecSelferValueTypeMap1234 { + yyl2892 := r.ReadMapStart() + if yyl2892 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2860, d) + x.codecDecodeSelfFromMap(yyl2892, d) } - } else if yyct2860 == codecSelferValueTypeArray1234 { - yyl2860 := r.ReadArrayStart() - if yyl2860 == 0 { + } else if yyct2892 == codecSelferValueTypeArray1234 { + yyl2892 := r.ReadArrayStart() + if yyl2892 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2860, d) + x.codecDecodeSelfFromArray(yyl2892, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37042,12 +37504,12 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2861Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2861Slc - var yyhl2861 bool = l >= 0 - for yyj2861 := 0; ; yyj2861++ { - if yyhl2861 { - if yyj2861 >= l { + var yys2893Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2893Slc + var yyhl2893 bool = l >= 0 + for yyj2893 := 0; ; yyj2893++ { + if yyhl2893 { + if yyj2893 >= l { break } } else { @@ -37056,50 +37518,50 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2861Slc = r.DecodeBytes(yys2861Slc, true, true) - yys2861 := string(yys2861Slc) + yys2893Slc = r.DecodeBytes(yys2893Slc, true, true) + yys2893 := string(yys2893Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2861 { + switch yys2893 { case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2862 := &x.Addresses - yym2863 := z.DecBinary() - _ = yym2863 + yyv2894 := &x.Addresses + yym2895 := z.DecBinary() + _ = yym2895 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2862), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2894), d) } } case "notReadyAddresses": if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2864 := &x.NotReadyAddresses - yym2865 := z.DecBinary() - _ = yym2865 + yyv2896 := &x.NotReadyAddresses + yym2897 := z.DecBinary() + _ = yym2897 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2864), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2896), d) } } case "ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2866 := &x.Ports - yym2867 := z.DecBinary() - _ = yym2867 + yyv2898 := &x.Ports + yym2899 := z.DecBinary() + _ = yym2899 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2866), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2898), d) } } default: - z.DecStructFieldNotFound(-1, yys2861) - } // end switch yys2861 - } // end for yyj2861 + z.DecStructFieldNotFound(-1, yys2893) + } // end switch yys2893 + } // end for yyj2893 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37107,16 +37569,16 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2868 int - var yyb2868 bool - var yyhl2868 bool = l >= 0 - yyj2868++ - if yyhl2868 { - yyb2868 = yyj2868 > l + var yyj2900 int + var yyb2900 bool + var yyhl2900 bool = l >= 0 + yyj2900++ + if yyhl2900 { + yyb2900 = yyj2900 > l } else { - yyb2868 = r.CheckBreak() + yyb2900 = r.CheckBreak() } - if yyb2868 { + if yyb2900 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37124,21 +37586,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2869 := &x.Addresses - yym2870 := z.DecBinary() - _ = yym2870 + yyv2901 := &x.Addresses + yym2902 := z.DecBinary() + _ = yym2902 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2869), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2901), d) } } - yyj2868++ - if yyhl2868 { - yyb2868 = yyj2868 > l + yyj2900++ + if yyhl2900 { + yyb2900 = yyj2900 > l } else { - yyb2868 = r.CheckBreak() + yyb2900 = r.CheckBreak() } - if yyb2868 { + if yyb2900 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37146,21 +37608,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2871 := &x.NotReadyAddresses - yym2872 := z.DecBinary() - _ = yym2872 + yyv2903 := &x.NotReadyAddresses + yym2904 := z.DecBinary() + _ = yym2904 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2871), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2903), d) } } - yyj2868++ - if yyhl2868 { - yyb2868 = yyj2868 > l + yyj2900++ + if yyhl2900 { + yyb2900 = yyj2900 > l } else { - yyb2868 = r.CheckBreak() + yyb2900 = r.CheckBreak() } - if yyb2868 { + if yyb2900 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37168,26 +37630,26 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2873 := &x.Ports - yym2874 := z.DecBinary() - _ = yym2874 + yyv2905 := &x.Ports + yym2906 := z.DecBinary() + _ = yym2906 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2873), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2905), d) } } for { - yyj2868++ - if yyhl2868 { - yyb2868 = yyj2868 > l + yyj2900++ + if yyhl2900 { + yyb2900 = yyj2900 > l } else { - yyb2868 = r.CheckBreak() + yyb2900 = r.CheckBreak() } - if yyb2868 { + if yyb2900 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2868-1, "") + z.DecStructFieldNotFound(yyj2900-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37199,36 +37661,36 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2875 := z.EncBinary() - _ = yym2875 + yym2907 := z.EncBinary() + _ = yym2907 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2876 := !z.EncBinary() - yy2arr2876 := z.EncBasicHandle().StructToArray - var yyq2876 [4]bool - _, _, _ = yysep2876, yyq2876, yy2arr2876 - const yyr2876 bool = false - yyq2876[1] = x.Hostname != "" - yyq2876[2] = x.NodeName != nil - yyq2876[3] = x.TargetRef != nil - var yynn2876 int - if yyr2876 || yy2arr2876 { + yysep2908 := !z.EncBinary() + yy2arr2908 := z.EncBasicHandle().StructToArray + var yyq2908 [4]bool + _, _, _ = yysep2908, yyq2908, yy2arr2908 + const yyr2908 bool = false + yyq2908[1] = x.Hostname != "" + yyq2908[2] = x.NodeName != nil + yyq2908[3] = x.TargetRef != nil + var yynn2908 int + if yyr2908 || yy2arr2908 { r.EncodeArrayStart(4) } else { - yynn2876 = 1 - for _, b := range yyq2876 { + yynn2908 = 1 + for _, b := range yyq2908 { if b { - yynn2876++ + yynn2908++ } } - r.EncodeMapStart(yynn2876) - yynn2876 = 0 + r.EncodeMapStart(yynn2908) + yynn2908 = 0 } - if yyr2876 || yy2arr2876 { + if yyr2908 || yy2arr2908 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2878 := z.EncBinary() - _ = yym2878 + yym2910 := z.EncBinary() + _ = yym2910 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -37237,18 +37699,18 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ip")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2879 := z.EncBinary() - _ = yym2879 + yym2911 := z.EncBinary() + _ = yym2911 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } - if yyr2876 || yy2arr2876 { + if yyr2908 || yy2arr2908 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2876[1] { - yym2881 := z.EncBinary() - _ = yym2881 + if yyq2908[1] { + yym2913 := z.EncBinary() + _ = yym2913 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) @@ -37257,56 +37719,56 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2876[1] { + if yyq2908[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostname")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2882 := z.EncBinary() - _ = yym2882 + yym2914 := z.EncBinary() + _ = yym2914 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr2876 || yy2arr2876 { + if yyr2908 || yy2arr2908 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2876[2] { + if yyq2908[2] { if x.NodeName == nil { r.EncodeNil() } else { - yy2884 := *x.NodeName - yym2885 := z.EncBinary() - _ = yym2885 + yy2916 := *x.NodeName + yym2917 := z.EncBinary() + _ = yym2917 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy2884)) + r.EncodeString(codecSelferC_UTF81234, string(yy2916)) } } } else { r.EncodeNil() } } else { - if yyq2876[2] { + if yyq2908[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NodeName == nil { r.EncodeNil() } else { - yy2886 := *x.NodeName - yym2887 := z.EncBinary() - _ = yym2887 + yy2918 := *x.NodeName + yym2919 := z.EncBinary() + _ = yym2919 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy2886)) + r.EncodeString(codecSelferC_UTF81234, string(yy2918)) } } } } - if yyr2876 || yy2arr2876 { + if yyr2908 || yy2arr2908 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2876[3] { + if yyq2908[3] { if x.TargetRef == nil { r.EncodeNil() } else { @@ -37316,7 +37778,7 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2876[3] { + if yyq2908[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -37327,7 +37789,7 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2876 || yy2arr2876 { + if yyr2908 || yy2arr2908 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37340,25 +37802,25 @@ func (x *EndpointAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2889 := z.DecBinary() - _ = yym2889 + yym2921 := z.DecBinary() + _ = yym2921 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2890 := r.ContainerType() - if yyct2890 == codecSelferValueTypeMap1234 { - yyl2890 := r.ReadMapStart() - if yyl2890 == 0 { + yyct2922 := r.ContainerType() + if yyct2922 == codecSelferValueTypeMap1234 { + yyl2922 := r.ReadMapStart() + if yyl2922 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2890, d) + x.codecDecodeSelfFromMap(yyl2922, d) } - } else if yyct2890 == codecSelferValueTypeArray1234 { - yyl2890 := r.ReadArrayStart() - if yyl2890 == 0 { + } else if yyct2922 == codecSelferValueTypeArray1234 { + yyl2922 := r.ReadArrayStart() + if yyl2922 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2890, d) + x.codecDecodeSelfFromArray(yyl2922, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37370,12 +37832,12 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2891Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2891Slc - var yyhl2891 bool = l >= 0 - for yyj2891 := 0; ; yyj2891++ { - if yyhl2891 { - if yyj2891 >= l { + var yys2923Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2923Slc + var yyhl2923 bool = l >= 0 + for yyj2923 := 0; ; yyj2923++ { + if yyhl2923 { + if yyj2923 >= l { break } } else { @@ -37384,10 +37846,10 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2891Slc = r.DecodeBytes(yys2891Slc, true, true) - yys2891 := string(yys2891Slc) + yys2923Slc = r.DecodeBytes(yys2923Slc, true, true) + yys2923 := string(yys2923Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2891 { + switch yys2923 { case "ip": if r.TryDecodeAsNil() { x.IP = "" @@ -37409,8 +37871,8 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.NodeName == nil { x.NodeName = new(string) } - yym2895 := z.DecBinary() - _ = yym2895 + yym2927 := z.DecBinary() + _ = yym2927 if false { } else { *((*string)(x.NodeName)) = r.DecodeString() @@ -37428,9 +37890,9 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TargetRef.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2891) - } // end switch yys2891 - } // end for yyj2891 + z.DecStructFieldNotFound(-1, yys2923) + } // end switch yys2923 + } // end for yyj2923 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37438,16 +37900,16 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2897 int - var yyb2897 bool - var yyhl2897 bool = l >= 0 - yyj2897++ - if yyhl2897 { - yyb2897 = yyj2897 > l + var yyj2929 int + var yyb2929 bool + var yyhl2929 bool = l >= 0 + yyj2929++ + if yyhl2929 { + yyb2929 = yyj2929 > l } else { - yyb2897 = r.CheckBreak() + yyb2929 = r.CheckBreak() } - if yyb2897 { + if yyb2929 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37457,13 +37919,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.IP = string(r.DecodeString()) } - yyj2897++ - if yyhl2897 { - yyb2897 = yyj2897 > l + yyj2929++ + if yyhl2929 { + yyb2929 = yyj2929 > l } else { - yyb2897 = r.CheckBreak() + yyb2929 = r.CheckBreak() } - if yyb2897 { + if yyb2929 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37473,13 +37935,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Hostname = string(r.DecodeString()) } - yyj2897++ - if yyhl2897 { - yyb2897 = yyj2897 > l + yyj2929++ + if yyhl2929 { + yyb2929 = yyj2929 > l } else { - yyb2897 = r.CheckBreak() + yyb2929 = r.CheckBreak() } - if yyb2897 { + if yyb2929 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37492,20 +37954,20 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.NodeName == nil { x.NodeName = new(string) } - yym2901 := z.DecBinary() - _ = yym2901 + yym2933 := z.DecBinary() + _ = yym2933 if false { } else { *((*string)(x.NodeName)) = r.DecodeString() } } - yyj2897++ - if yyhl2897 { - yyb2897 = yyj2897 > l + yyj2929++ + if yyhl2929 { + yyb2929 = yyj2929 > l } else { - yyb2897 = r.CheckBreak() + yyb2929 = r.CheckBreak() } - if yyb2897 { + if yyb2929 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37521,17 +37983,17 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.TargetRef.CodecDecodeSelf(d) } for { - yyj2897++ - if yyhl2897 { - yyb2897 = yyj2897 > l + yyj2929++ + if yyhl2929 { + yyb2929 = yyj2929 > l } else { - yyb2897 = r.CheckBreak() + yyb2929 = r.CheckBreak() } - if yyb2897 { + if yyb2929 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2897-1, "") + z.DecStructFieldNotFound(yyj2929-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37543,36 +38005,36 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2903 := z.EncBinary() - _ = yym2903 + yym2935 := z.EncBinary() + _ = yym2935 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2904 := !z.EncBinary() - yy2arr2904 := z.EncBasicHandle().StructToArray - var yyq2904 [3]bool - _, _, _ = yysep2904, yyq2904, yy2arr2904 - const yyr2904 bool = false - yyq2904[0] = x.Name != "" - yyq2904[2] = x.Protocol != "" - var yynn2904 int - if yyr2904 || yy2arr2904 { + yysep2936 := !z.EncBinary() + yy2arr2936 := z.EncBasicHandle().StructToArray + var yyq2936 [3]bool + _, _, _ = yysep2936, yyq2936, yy2arr2936 + const yyr2936 bool = false + yyq2936[0] = x.Name != "" + yyq2936[2] = x.Protocol != "" + var yynn2936 int + if yyr2936 || yy2arr2936 { r.EncodeArrayStart(3) } else { - yynn2904 = 1 - for _, b := range yyq2904 { + yynn2936 = 1 + for _, b := range yyq2936 { if b { - yynn2904++ + yynn2936++ } } - r.EncodeMapStart(yynn2904) - yynn2904 = 0 + r.EncodeMapStart(yynn2936) + yynn2936 = 0 } - if yyr2904 || yy2arr2904 { + if yyr2936 || yy2arr2936 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2904[0] { - yym2906 := z.EncBinary() - _ = yym2906 + if yyq2936[0] { + yym2938 := z.EncBinary() + _ = yym2938 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -37581,22 +38043,22 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2904[0] { + if yyq2936[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2907 := z.EncBinary() - _ = yym2907 + yym2939 := z.EncBinary() + _ = yym2939 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr2904 || yy2arr2904 { + if yyr2936 || yy2arr2936 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2909 := z.EncBinary() - _ = yym2909 + yym2941 := z.EncBinary() + _ = yym2941 if false { } else { r.EncodeInt(int64(x.Port)) @@ -37605,29 +38067,29 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2910 := z.EncBinary() - _ = yym2910 + yym2942 := z.EncBinary() + _ = yym2942 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2904 || yy2arr2904 { + if yyr2936 || yy2arr2936 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2904[2] { + if yyq2936[2] { x.Protocol.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2904[2] { + if yyq2936[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } } - if yyr2904 || yy2arr2904 { + if yyr2936 || yy2arr2936 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37640,25 +38102,25 @@ func (x *EndpointPort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2912 := z.DecBinary() - _ = yym2912 + yym2944 := z.DecBinary() + _ = yym2944 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2913 := r.ContainerType() - if yyct2913 == codecSelferValueTypeMap1234 { - yyl2913 := r.ReadMapStart() - if yyl2913 == 0 { + yyct2945 := r.ContainerType() + if yyct2945 == codecSelferValueTypeMap1234 { + yyl2945 := r.ReadMapStart() + if yyl2945 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2913, d) + x.codecDecodeSelfFromMap(yyl2945, d) } - } else if yyct2913 == codecSelferValueTypeArray1234 { - yyl2913 := r.ReadArrayStart() - if yyl2913 == 0 { + } else if yyct2945 == codecSelferValueTypeArray1234 { + yyl2945 := r.ReadArrayStart() + if yyl2945 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2913, d) + x.codecDecodeSelfFromArray(yyl2945, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37670,12 +38132,12 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2914Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2914Slc - var yyhl2914 bool = l >= 0 - for yyj2914 := 0; ; yyj2914++ { - if yyhl2914 { - if yyj2914 >= l { + var yys2946Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2946Slc + var yyhl2946 bool = l >= 0 + for yyj2946 := 0; ; yyj2946++ { + if yyhl2946 { + if yyj2946 >= l { break } } else { @@ -37684,10 +38146,10 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2914Slc = r.DecodeBytes(yys2914Slc, true, true) - yys2914 := string(yys2914Slc) + yys2946Slc = r.DecodeBytes(yys2946Slc, true, true) + yys2946 := string(yys2946Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2914 { + switch yys2946 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -37707,9 +38169,9 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2914) - } // end switch yys2914 - } // end for yyj2914 + z.DecStructFieldNotFound(-1, yys2946) + } // end switch yys2946 + } // end for yyj2946 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37717,16 +38179,16 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2918 int - var yyb2918 bool - var yyhl2918 bool = l >= 0 - yyj2918++ - if yyhl2918 { - yyb2918 = yyj2918 > l + var yyj2950 int + var yyb2950 bool + var yyhl2950 bool = l >= 0 + yyj2950++ + if yyhl2950 { + yyb2950 = yyj2950 > l } else { - yyb2918 = r.CheckBreak() + yyb2950 = r.CheckBreak() } - if yyb2918 { + if yyb2950 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37736,13 +38198,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2918++ - if yyhl2918 { - yyb2918 = yyj2918 > l + yyj2950++ + if yyhl2950 { + yyb2950 = yyj2950 > l } else { - yyb2918 = r.CheckBreak() + yyb2950 = r.CheckBreak() } - if yyb2918 { + if yyb2950 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37752,13 +38214,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2918++ - if yyhl2918 { - yyb2918 = yyj2918 > l + yyj2950++ + if yyhl2950 { + yyb2950 = yyj2950 > l } else { - yyb2918 = r.CheckBreak() + yyb2950 = r.CheckBreak() } - if yyb2918 { + if yyb2950 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37769,366 +38231,22 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } for { - yyj2918++ - if yyhl2918 { - yyb2918 = yyj2918 > l + yyj2950++ + if yyhl2950 { + yyb2950 = yyj2950 > l } else { - yyb2918 = r.CheckBreak() + yyb2950 = r.CheckBreak() } - if yyb2918 { + if yyb2950 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2918-1, "") + z.DecStructFieldNotFound(yyj2950-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym2922 := z.EncBinary() - _ = yym2922 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep2923 := !z.EncBinary() - yy2arr2923 := z.EncBasicHandle().StructToArray - var yyq2923 [4]bool - _, _, _ = yysep2923, yyq2923, yy2arr2923 - const yyr2923 bool = false - yyq2923[0] = x.Kind != "" - yyq2923[1] = x.APIVersion != "" - yyq2923[2] = true - var yynn2923 int - if yyr2923 || yy2arr2923 { - r.EncodeArrayStart(4) - } else { - yynn2923 = 1 - for _, b := range yyq2923 { - if b { - yynn2923++ - } - } - r.EncodeMapStart(yynn2923) - yynn2923 = 0 - } - if yyr2923 || yy2arr2923 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2923[0] { - yym2925 := z.EncBinary() - _ = yym2925 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2923[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2926 := z.EncBinary() - _ = yym2926 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2923 || yy2arr2923 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2923[1] { - yym2928 := z.EncBinary() - _ = yym2928 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2923[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2929 := z.EncBinary() - _ = yym2929 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr2923 || yy2arr2923 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2923[2] { - yy2931 := &x.ListMeta - yym2932 := z.EncBinary() - _ = yym2932 - if false { - } else if z.HasExtensions() && z.EncExt(yy2931) { - } else { - z.EncFallback(yy2931) - } - } else { - r.EncodeNil() - } - } else { - if yyq2923[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2933 := &x.ListMeta - yym2934 := z.EncBinary() - _ = yym2934 - if false { - } else if z.HasExtensions() && z.EncExt(yy2933) { - } else { - z.EncFallback(yy2933) - } - } - } - if yyr2923 || yy2arr2923 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if x.Items == nil { - r.EncodeNil() - } else { - yym2936 := z.EncBinary() - _ = yym2936 - if false { - } else { - h.encSliceEndpoints(([]Endpoints)(x.Items), e) - } - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("items")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Items == nil { - r.EncodeNil() - } else { - yym2937 := z.EncBinary() - _ = yym2937 - if false { - } else { - h.encSliceEndpoints(([]Endpoints)(x.Items), e) - } - } - } - if yyr2923 || yy2arr2923 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *EndpointsList) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym2938 := z.DecBinary() - _ = yym2938 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct2939 := r.ContainerType() - if yyct2939 == codecSelferValueTypeMap1234 { - yyl2939 := r.ReadMapStart() - if yyl2939 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl2939, d) - } - } else if yyct2939 == codecSelferValueTypeArray1234 { - yyl2939 := r.ReadArrayStart() - if yyl2939 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl2939, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys2940Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2940Slc - var yyhl2940 bool = l >= 0 - for yyj2940 := 0; ; yyj2940++ { - if yyhl2940 { - if yyj2940 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2940Slc = r.DecodeBytes(yys2940Slc, true, true) - yys2940 := string(yys2940Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2940 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "metadata": - if r.TryDecodeAsNil() { - x.ListMeta = pkg2_v1.ListMeta{} - } else { - yyv2943 := &x.ListMeta - yym2944 := z.DecBinary() - _ = yym2944 - if false { - } else if z.HasExtensions() && z.DecExt(yyv2943) { - } else { - z.DecFallback(yyv2943, false) - } - } - case "items": - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv2945 := &x.Items - yym2946 := z.DecBinary() - _ = yym2946 - if false { - } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2945), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys2940) - } // end switch yys2940 - } // end for yyj2940 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj2947 int - var yyb2947 bool - var yyhl2947 bool = l >= 0 - yyj2947++ - if yyhl2947 { - yyb2947 = yyj2947 > l - } else { - yyb2947 = r.CheckBreak() - } - if yyb2947 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj2947++ - if yyhl2947 { - yyb2947 = yyj2947 > l - } else { - yyb2947 = r.CheckBreak() - } - if yyb2947 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj2947++ - if yyhl2947 { - yyb2947 = yyj2947 > l - } else { - yyb2947 = r.CheckBreak() - } - if yyb2947 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ListMeta = pkg2_v1.ListMeta{} - } else { - yyv2950 := &x.ListMeta - yym2951 := z.DecBinary() - _ = yym2951 - if false { - } else if z.HasExtensions() && z.DecExt(yyv2950) { - } else { - z.DecFallback(yyv2950, false) - } - } - yyj2947++ - if yyhl2947 { - yyb2947 = yyj2947 > l - } else { - yyb2947 = r.CheckBreak() - } - if yyb2947 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv2952 := &x.Items - yym2953 := z.DecBinary() - _ = yym2953 - if false { - } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2952), d) - } - } - for { - yyj2947++ - if yyhl2947 { - yyb2947 = yyj2947 > l - } else { - yyb2947 = r.CheckBreak() - } - if yyb2947 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2947-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -38145,15 +38263,14 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { var yyq2955 [4]bool _, _, _ = yysep2955, yyq2955, yy2arr2955 const yyr2955 bool = false - yyq2955[0] = x.PodCIDR != "" - yyq2955[1] = x.ExternalID != "" - yyq2955[2] = x.ProviderID != "" - yyq2955[3] = x.Unschedulable != false + yyq2955[0] = x.Kind != "" + yyq2955[1] = x.APIVersion != "" + yyq2955[2] = true var yynn2955 int if yyr2955 || yy2arr2955 { r.EncodeArrayStart(4) } else { - yynn2955 = 0 + yynn2955 = 1 for _, b := range yyq2955 { if b { yynn2955++ @@ -38169,7 +38286,7 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { _ = yym2957 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") @@ -38177,13 +38294,13 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } else { if yyq2955[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("podCIDR")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym2958 := z.EncBinary() _ = yym2958 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } @@ -38194,7 +38311,7 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { _ = yym2960 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } else { r.EncodeString(codecSelferC_UTF81234, "") @@ -38202,63 +38319,69 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } else { if yyq2955[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("externalID")) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym2961 := z.EncBinary() _ = yym2961 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } if yyr2955 || yy2arr2955 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if yyq2955[2] { - yym2963 := z.EncBinary() - _ = yym2963 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2955[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("providerID")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2963 := &x.ListMeta yym2964 := z.EncBinary() _ = yym2964 if false { + } else if z.HasExtensions() && z.EncExt(yy2963) { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) + z.EncFallback(yy2963) + } + } else { + r.EncodeNil() + } + } else { + if yyq2955[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2965 := &x.ListMeta + yym2966 := z.EncBinary() + _ = yym2966 + if false { + } else if z.HasExtensions() && z.EncExt(yy2965) { + } else { + z.EncFallback(yy2965) } } } if yyr2955 || yy2arr2955 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2955[3] { - yym2966 := z.EncBinary() - _ = yym2966 + if x.Items == nil { + r.EncodeNil() + } else { + yym2968 := z.EncBinary() + _ = yym2968 if false { } else { - r.EncodeBool(bool(x.Unschedulable)) + h.encSliceEndpoints(([]Endpoints)(x.Items), e) } - } else { - r.EncodeBool(false) } } else { - if yyq2955[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("unschedulable")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2967 := z.EncBinary() - _ = yym2967 + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("items")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Items == nil { + r.EncodeNil() + } else { + yym2969 := z.EncBinary() + _ = yym2969 if false { } else { - r.EncodeBool(bool(x.Unschedulable)) + h.encSliceEndpoints(([]Endpoints)(x.Items), e) } } } @@ -38271,29 +38394,368 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } +func (x *EndpointsList) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2970 := z.DecBinary() + _ = yym2970 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct2971 := r.ContainerType() + if yyct2971 == codecSelferValueTypeMap1234 { + yyl2971 := r.ReadMapStart() + if yyl2971 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl2971, d) + } + } else if yyct2971 == codecSelferValueTypeArray1234 { + yyl2971 := r.ReadArrayStart() + if yyl2971 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl2971, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys2972Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2972Slc + var yyhl2972 bool = l >= 0 + for yyj2972 := 0; ; yyj2972++ { + if yyhl2972 { + if yyj2972 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys2972Slc = r.DecodeBytes(yys2972Slc, true, true) + yys2972 := string(yys2972Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys2972 { + case "kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "metadata": + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_v1.ListMeta{} + } else { + yyv2975 := &x.ListMeta + yym2976 := z.DecBinary() + _ = yym2976 + if false { + } else if z.HasExtensions() && z.DecExt(yyv2975) { + } else { + z.DecFallback(yyv2975, false) + } + } + case "items": + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv2977 := &x.Items + yym2978 := z.DecBinary() + _ = yym2978 + if false { + } else { + h.decSliceEndpoints((*[]Endpoints)(yyv2977), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys2972) + } // end switch yys2972 + } // end for yyj2972 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj2979 int + var yyb2979 bool + var yyhl2979 bool = l >= 0 + yyj2979++ + if yyhl2979 { + yyb2979 = yyj2979 > l + } else { + yyb2979 = r.CheckBreak() + } + if yyb2979 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj2979++ + if yyhl2979 { + yyb2979 = yyj2979 > l + } else { + yyb2979 = r.CheckBreak() + } + if yyb2979 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj2979++ + if yyhl2979 { + yyb2979 = yyj2979 > l + } else { + yyb2979 = r.CheckBreak() + } + if yyb2979 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_v1.ListMeta{} + } else { + yyv2982 := &x.ListMeta + yym2983 := z.DecBinary() + _ = yym2983 + if false { + } else if z.HasExtensions() && z.DecExt(yyv2982) { + } else { + z.DecFallback(yyv2982, false) + } + } + yyj2979++ + if yyhl2979 { + yyb2979 = yyj2979 > l + } else { + yyb2979 = r.CheckBreak() + } + if yyb2979 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv2984 := &x.Items + yym2985 := z.DecBinary() + _ = yym2985 + if false { + } else { + h.decSliceEndpoints((*[]Endpoints)(yyv2984), d) + } + } + for { + yyj2979++ + if yyhl2979 { + yyb2979 = yyj2979 > l + } else { + yyb2979 = r.CheckBreak() + } + if yyb2979 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj2979-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym2986 := z.EncBinary() + _ = yym2986 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep2987 := !z.EncBinary() + yy2arr2987 := z.EncBasicHandle().StructToArray + var yyq2987 [4]bool + _, _, _ = yysep2987, yyq2987, yy2arr2987 + const yyr2987 bool = false + yyq2987[0] = x.PodCIDR != "" + yyq2987[1] = x.ExternalID != "" + yyq2987[2] = x.ProviderID != "" + yyq2987[3] = x.Unschedulable != false + var yynn2987 int + if yyr2987 || yy2arr2987 { + r.EncodeArrayStart(4) + } else { + yynn2987 = 0 + for _, b := range yyq2987 { + if b { + yynn2987++ + } + } + r.EncodeMapStart(yynn2987) + yynn2987 = 0 + } + if yyr2987 || yy2arr2987 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2987[0] { + yym2989 := z.EncBinary() + _ = yym2989 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2987[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("podCIDR")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2990 := z.EncBinary() + _ = yym2990 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) + } + } + } + if yyr2987 || yy2arr2987 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2987[1] { + yym2992 := z.EncBinary() + _ = yym2992 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2987[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("externalID")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2993 := z.EncBinary() + _ = yym2993 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) + } + } + } + if yyr2987 || yy2arr2987 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2987[2] { + yym2995 := z.EncBinary() + _ = yym2995 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2987[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("providerID")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2996 := z.EncBinary() + _ = yym2996 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) + } + } + } + if yyr2987 || yy2arr2987 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2987[3] { + yym2998 := z.EncBinary() + _ = yym2998 + if false { + } else { + r.EncodeBool(bool(x.Unschedulable)) + } + } else { + r.EncodeBool(false) + } + } else { + if yyq2987[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("unschedulable")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2999 := z.EncBinary() + _ = yym2999 + if false { + } else { + r.EncodeBool(bool(x.Unschedulable)) + } + } + } + if yyr2987 || yy2arr2987 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + func (x *NodeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2968 := z.DecBinary() - _ = yym2968 + yym3000 := z.DecBinary() + _ = yym3000 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2969 := r.ContainerType() - if yyct2969 == codecSelferValueTypeMap1234 { - yyl2969 := r.ReadMapStart() - if yyl2969 == 0 { + yyct3001 := r.ContainerType() + if yyct3001 == codecSelferValueTypeMap1234 { + yyl3001 := r.ReadMapStart() + if yyl3001 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2969, d) + x.codecDecodeSelfFromMap(yyl3001, d) } - } else if yyct2969 == codecSelferValueTypeArray1234 { - yyl2969 := r.ReadArrayStart() - if yyl2969 == 0 { + } else if yyct3001 == codecSelferValueTypeArray1234 { + yyl3001 := r.ReadArrayStart() + if yyl3001 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2969, d) + x.codecDecodeSelfFromArray(yyl3001, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38305,12 +38767,12 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2970Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2970Slc - var yyhl2970 bool = l >= 0 - for yyj2970 := 0; ; yyj2970++ { - if yyhl2970 { - if yyj2970 >= l { + var yys3002Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3002Slc + var yyhl3002 bool = l >= 0 + for yyj3002 := 0; ; yyj3002++ { + if yyhl3002 { + if yyj3002 >= l { break } } else { @@ -38319,10 +38781,10 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2970Slc = r.DecodeBytes(yys2970Slc, true, true) - yys2970 := string(yys2970Slc) + yys3002Slc = r.DecodeBytes(yys3002Slc, true, true) + yys3002 := string(yys3002Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2970 { + switch yys3002 { case "podCIDR": if r.TryDecodeAsNil() { x.PodCIDR = "" @@ -38348,9 +38810,9 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys2970) - } // end switch yys2970 - } // end for yyj2970 + z.DecStructFieldNotFound(-1, yys3002) + } // end switch yys3002 + } // end for yyj3002 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38358,16 +38820,16 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2975 int - var yyb2975 bool - var yyhl2975 bool = l >= 0 - yyj2975++ - if yyhl2975 { - yyb2975 = yyj2975 > l + var yyj3007 int + var yyb3007 bool + var yyhl3007 bool = l >= 0 + yyj3007++ + if yyhl3007 { + yyb3007 = yyj3007 > l } else { - yyb2975 = r.CheckBreak() + yyb3007 = r.CheckBreak() } - if yyb2975 { + if yyb3007 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38377,13 +38839,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodCIDR = string(r.DecodeString()) } - yyj2975++ - if yyhl2975 { - yyb2975 = yyj2975 > l + yyj3007++ + if yyhl3007 { + yyb3007 = yyj3007 > l } else { - yyb2975 = r.CheckBreak() + yyb3007 = r.CheckBreak() } - if yyb2975 { + if yyb3007 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38393,13 +38855,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ExternalID = string(r.DecodeString()) } - yyj2975++ - if yyhl2975 { - yyb2975 = yyj2975 > l + yyj3007++ + if yyhl3007 { + yyb3007 = yyj3007 > l } else { - yyb2975 = r.CheckBreak() + yyb3007 = r.CheckBreak() } - if yyb2975 { + if yyb3007 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38409,13 +38871,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ProviderID = string(r.DecodeString()) } - yyj2975++ - if yyhl2975 { - yyb2975 = yyj2975 > l + yyj3007++ + if yyhl3007 { + yyb3007 = yyj3007 > l } else { - yyb2975 = r.CheckBreak() + yyb3007 = r.CheckBreak() } - if yyb2975 { + if yyb3007 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38426,17 +38888,17 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } for { - yyj2975++ - if yyhl2975 { - yyb2975 = yyj2975 > l + yyj3007++ + if yyhl3007 { + yyb3007 = yyj3007 > l } else { - yyb2975 = r.CheckBreak() + yyb3007 = r.CheckBreak() } - if yyb2975 { + if yyb3007 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2975-1, "") + z.DecStructFieldNotFound(yyj3007-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38448,33 +38910,33 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2980 := z.EncBinary() - _ = yym2980 + yym3012 := z.EncBinary() + _ = yym3012 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2981 := !z.EncBinary() - yy2arr2981 := z.EncBasicHandle().StructToArray - var yyq2981 [1]bool - _, _, _ = yysep2981, yyq2981, yy2arr2981 - const yyr2981 bool = false - var yynn2981 int - if yyr2981 || yy2arr2981 { + yysep3013 := !z.EncBinary() + yy2arr3013 := z.EncBasicHandle().StructToArray + var yyq3013 [1]bool + _, _, _ = yysep3013, yyq3013, yy2arr3013 + const yyr3013 bool = false + var yynn3013 int + if yyr3013 || yy2arr3013 { r.EncodeArrayStart(1) } else { - yynn2981 = 1 - for _, b := range yyq2981 { + yynn3013 = 1 + for _, b := range yyq3013 { if b { - yynn2981++ + yynn3013++ } } - r.EncodeMapStart(yynn2981) - yynn2981 = 0 + r.EncodeMapStart(yynn3013) + yynn3013 = 0 } - if yyr2981 || yy2arr2981 { + if yyr3013 || yy2arr3013 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2983 := z.EncBinary() - _ = yym2983 + yym3015 := z.EncBinary() + _ = yym3015 if false { } else { r.EncodeInt(int64(x.Port)) @@ -38483,14 +38945,14 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2984 := z.EncBinary() - _ = yym2984 + yym3016 := z.EncBinary() + _ = yym3016 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2981 || yy2arr2981 { + if yyr3013 || yy2arr3013 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38503,25 +38965,25 @@ func (x *DaemonEndpoint) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2985 := z.DecBinary() - _ = yym2985 + yym3017 := z.DecBinary() + _ = yym3017 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2986 := r.ContainerType() - if yyct2986 == codecSelferValueTypeMap1234 { - yyl2986 := r.ReadMapStart() - if yyl2986 == 0 { + yyct3018 := r.ContainerType() + if yyct3018 == codecSelferValueTypeMap1234 { + yyl3018 := r.ReadMapStart() + if yyl3018 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2986, d) + x.codecDecodeSelfFromMap(yyl3018, d) } - } else if yyct2986 == codecSelferValueTypeArray1234 { - yyl2986 := r.ReadArrayStart() - if yyl2986 == 0 { + } else if yyct3018 == codecSelferValueTypeArray1234 { + yyl3018 := r.ReadArrayStart() + if yyl3018 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2986, d) + x.codecDecodeSelfFromArray(yyl3018, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38533,12 +38995,12 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2987Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2987Slc - var yyhl2987 bool = l >= 0 - for yyj2987 := 0; ; yyj2987++ { - if yyhl2987 { - if yyj2987 >= l { + var yys3019Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3019Slc + var yyhl3019 bool = l >= 0 + for yyj3019 := 0; ; yyj3019++ { + if yyhl3019 { + if yyj3019 >= l { break } } else { @@ -38547,10 +39009,10 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2987Slc = r.DecodeBytes(yys2987Slc, true, true) - yys2987 := string(yys2987Slc) + yys3019Slc = r.DecodeBytes(yys3019Slc, true, true) + yys3019 := string(yys3019Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2987 { + switch yys3019 { case "Port": if r.TryDecodeAsNil() { x.Port = 0 @@ -38558,9 +39020,9 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2987) - } // end switch yys2987 - } // end for yyj2987 + z.DecStructFieldNotFound(-1, yys3019) + } // end switch yys3019 + } // end for yyj3019 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38568,16 +39030,16 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2989 int - var yyb2989 bool - var yyhl2989 bool = l >= 0 - yyj2989++ - if yyhl2989 { - yyb2989 = yyj2989 > l + var yyj3021 int + var yyb3021 bool + var yyhl3021 bool = l >= 0 + yyj3021++ + if yyhl3021 { + yyb3021 = yyj3021 > l } else { - yyb2989 = r.CheckBreak() + yyb3021 = r.CheckBreak() } - if yyb2989 { + if yyb3021 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38588,17 +39050,17 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } for { - yyj2989++ - if yyhl2989 { - yyb2989 = yyj2989 > l + yyj3021++ + if yyhl3021 { + yyb3021 = yyj3021 > l } else { - yyb2989 = r.CheckBreak() + yyb3021 = r.CheckBreak() } - if yyb2989 { + if yyb3021 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2989-1, "") + z.DecStructFieldNotFound(yyj3021-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38610,48 +39072,48 @@ func (x *NodeDaemonEndpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2991 := z.EncBinary() - _ = yym2991 + yym3023 := z.EncBinary() + _ = yym3023 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2992 := !z.EncBinary() - yy2arr2992 := z.EncBasicHandle().StructToArray - var yyq2992 [1]bool - _, _, _ = yysep2992, yyq2992, yy2arr2992 - const yyr2992 bool = false - yyq2992[0] = true - var yynn2992 int - if yyr2992 || yy2arr2992 { + yysep3024 := !z.EncBinary() + yy2arr3024 := z.EncBasicHandle().StructToArray + var yyq3024 [1]bool + _, _, _ = yysep3024, yyq3024, yy2arr3024 + const yyr3024 bool = false + yyq3024[0] = true + var yynn3024 int + if yyr3024 || yy2arr3024 { r.EncodeArrayStart(1) } else { - yynn2992 = 0 - for _, b := range yyq2992 { + yynn3024 = 0 + for _, b := range yyq3024 { if b { - yynn2992++ + yynn3024++ } } - r.EncodeMapStart(yynn2992) - yynn2992 = 0 + r.EncodeMapStart(yynn3024) + yynn3024 = 0 } - if yyr2992 || yy2arr2992 { + if yyr3024 || yy2arr3024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2992[0] { - yy2994 := &x.KubeletEndpoint - yy2994.CodecEncodeSelf(e) + if yyq3024[0] { + yy3026 := &x.KubeletEndpoint + yy3026.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2992[0] { + if yyq3024[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletEndpoint")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2995 := &x.KubeletEndpoint - yy2995.CodecEncodeSelf(e) + yy3027 := &x.KubeletEndpoint + yy3027.CodecEncodeSelf(e) } } - if yyr2992 || yy2arr2992 { + if yyr3024 || yy2arr3024 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38664,25 +39126,25 @@ func (x *NodeDaemonEndpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2996 := z.DecBinary() - _ = yym2996 + yym3028 := z.DecBinary() + _ = yym3028 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2997 := r.ContainerType() - if yyct2997 == codecSelferValueTypeMap1234 { - yyl2997 := r.ReadMapStart() - if yyl2997 == 0 { + yyct3029 := r.ContainerType() + if yyct3029 == codecSelferValueTypeMap1234 { + yyl3029 := r.ReadMapStart() + if yyl3029 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2997, d) + x.codecDecodeSelfFromMap(yyl3029, d) } - } else if yyct2997 == codecSelferValueTypeArray1234 { - yyl2997 := r.ReadArrayStart() - if yyl2997 == 0 { + } else if yyct3029 == codecSelferValueTypeArray1234 { + yyl3029 := r.ReadArrayStart() + if yyl3029 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2997, d) + x.codecDecodeSelfFromArray(yyl3029, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38694,12 +39156,12 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2998Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2998Slc - var yyhl2998 bool = l >= 0 - for yyj2998 := 0; ; yyj2998++ { - if yyhl2998 { - if yyj2998 >= l { + var yys3030Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3030Slc + var yyhl3030 bool = l >= 0 + for yyj3030 := 0; ; yyj3030++ { + if yyhl3030 { + if yyj3030 >= l { break } } else { @@ -38708,21 +39170,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2998Slc = r.DecodeBytes(yys2998Slc, true, true) - yys2998 := string(yys2998Slc) + yys3030Slc = r.DecodeBytes(yys3030Slc, true, true) + yys3030 := string(yys3030Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2998 { + switch yys3030 { case "kubeletEndpoint": if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2999 := &x.KubeletEndpoint - yyv2999.CodecDecodeSelf(d) + yyv3031 := &x.KubeletEndpoint + yyv3031.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2998) - } // end switch yys2998 - } // end for yyj2998 + z.DecStructFieldNotFound(-1, yys3030) + } // end switch yys3030 + } // end for yyj3030 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38730,16 +39192,16 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3000 int - var yyb3000 bool - var yyhl3000 bool = l >= 0 - yyj3000++ - if yyhl3000 { - yyb3000 = yyj3000 > l + var yyj3032 int + var yyb3032 bool + var yyhl3032 bool = l >= 0 + yyj3032++ + if yyhl3032 { + yyb3032 = yyj3032 > l } else { - yyb3000 = r.CheckBreak() + yyb3032 = r.CheckBreak() } - if yyb3000 { + if yyb3032 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38747,21 +39209,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv3001 := &x.KubeletEndpoint - yyv3001.CodecDecodeSelf(d) + yyv3033 := &x.KubeletEndpoint + yyv3033.CodecDecodeSelf(d) } for { - yyj3000++ - if yyhl3000 { - yyb3000 = yyj3000 > l + yyj3032++ + if yyhl3032 { + yyb3032 = yyj3032 > l } else { - yyb3000 = r.CheckBreak() + yyb3032 = r.CheckBreak() } - if yyb3000 { + if yyb3032 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3000-1, "") + z.DecStructFieldNotFound(yyj3032-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38773,33 +39235,33 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3002 := z.EncBinary() - _ = yym3002 + yym3034 := z.EncBinary() + _ = yym3034 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3003 := !z.EncBinary() - yy2arr3003 := z.EncBasicHandle().StructToArray - var yyq3003 [10]bool - _, _, _ = yysep3003, yyq3003, yy2arr3003 - const yyr3003 bool = false - var yynn3003 int - if yyr3003 || yy2arr3003 { + yysep3035 := !z.EncBinary() + yy2arr3035 := z.EncBasicHandle().StructToArray + var yyq3035 [10]bool + _, _, _ = yysep3035, yyq3035, yy2arr3035 + const yyr3035 bool = false + var yynn3035 int + if yyr3035 || yy2arr3035 { r.EncodeArrayStart(10) } else { - yynn3003 = 10 - for _, b := range yyq3003 { + yynn3035 = 10 + for _, b := range yyq3035 { if b { - yynn3003++ + yynn3035++ } } - r.EncodeMapStart(yynn3003) - yynn3003 = 0 + r.EncodeMapStart(yynn3035) + yynn3035 = 0 } - if yyr3003 || yy2arr3003 { + if yyr3035 || yy2arr3035 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3005 := z.EncBinary() - _ = yym3005 + yym3037 := z.EncBinary() + _ = yym3037 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) @@ -38808,17 +39270,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("machineID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3006 := z.EncBinary() - _ = yym3006 + yym3038 := z.EncBinary() + _ = yym3038 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) } } - if yyr3003 || yy2arr3003 { + if yyr3035 || yy2arr3035 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3008 := z.EncBinary() - _ = yym3008 + yym3040 := z.EncBinary() + _ = yym3040 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) @@ -38827,17 +39289,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("systemUUID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3009 := z.EncBinary() - _ = yym3009 + yym3041 := z.EncBinary() + _ = yym3041 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) } } - if yyr3003 || yy2arr3003 { + if yyr3035 || yy2arr3035 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3011 := z.EncBinary() - _ = yym3011 + yym3043 := z.EncBinary() + _ = yym3043 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) @@ -38846,17 +39308,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("bootID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3012 := z.EncBinary() - _ = yym3012 + yym3044 := z.EncBinary() + _ = yym3044 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) } } - if yyr3003 || yy2arr3003 { + if yyr3035 || yy2arr3035 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3014 := z.EncBinary() - _ = yym3014 + yym3046 := z.EncBinary() + _ = yym3046 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) @@ -38865,17 +39327,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kernelVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3015 := z.EncBinary() - _ = yym3015 + yym3047 := z.EncBinary() + _ = yym3047 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) } } - if yyr3003 || yy2arr3003 { + if yyr3035 || yy2arr3035 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3017 := z.EncBinary() - _ = yym3017 + yym3049 := z.EncBinary() + _ = yym3049 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) @@ -38884,17 +39346,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("osImage")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3018 := z.EncBinary() - _ = yym3018 + yym3050 := z.EncBinary() + _ = yym3050 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) } } - if yyr3003 || yy2arr3003 { + if yyr3035 || yy2arr3035 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3020 := z.EncBinary() - _ = yym3020 + yym3052 := z.EncBinary() + _ = yym3052 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) @@ -38903,17 +39365,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerRuntimeVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3021 := z.EncBinary() - _ = yym3021 + yym3053 := z.EncBinary() + _ = yym3053 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) } } - if yyr3003 || yy2arr3003 { + if yyr3035 || yy2arr3035 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3023 := z.EncBinary() - _ = yym3023 + yym3055 := z.EncBinary() + _ = yym3055 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) @@ -38922,17 +39384,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3024 := z.EncBinary() - _ = yym3024 + yym3056 := z.EncBinary() + _ = yym3056 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) } } - if yyr3003 || yy2arr3003 { + if yyr3035 || yy2arr3035 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3026 := z.EncBinary() - _ = yym3026 + yym3058 := z.EncBinary() + _ = yym3058 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) @@ -38941,17 +39403,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeProxyVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3027 := z.EncBinary() - _ = yym3027 + yym3059 := z.EncBinary() + _ = yym3059 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) } } - if yyr3003 || yy2arr3003 { + if yyr3035 || yy2arr3035 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3029 := z.EncBinary() - _ = yym3029 + yym3061 := z.EncBinary() + _ = yym3061 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OperatingSystem)) @@ -38960,17 +39422,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("operatingSystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3030 := z.EncBinary() - _ = yym3030 + yym3062 := z.EncBinary() + _ = yym3062 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OperatingSystem)) } } - if yyr3003 || yy2arr3003 { + if yyr3035 || yy2arr3035 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3032 := z.EncBinary() - _ = yym3032 + yym3064 := z.EncBinary() + _ = yym3064 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Architecture)) @@ -38979,14 +39441,14 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("architecture")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3033 := z.EncBinary() - _ = yym3033 + yym3065 := z.EncBinary() + _ = yym3065 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Architecture)) } } - if yyr3003 || yy2arr3003 { + if yyr3035 || yy2arr3035 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38999,25 +39461,25 @@ func (x *NodeSystemInfo) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3034 := z.DecBinary() - _ = yym3034 + yym3066 := z.DecBinary() + _ = yym3066 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3035 := r.ContainerType() - if yyct3035 == codecSelferValueTypeMap1234 { - yyl3035 := r.ReadMapStart() - if yyl3035 == 0 { + yyct3067 := r.ContainerType() + if yyct3067 == codecSelferValueTypeMap1234 { + yyl3067 := r.ReadMapStart() + if yyl3067 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3035, d) + x.codecDecodeSelfFromMap(yyl3067, d) } - } else if yyct3035 == codecSelferValueTypeArray1234 { - yyl3035 := r.ReadArrayStart() - if yyl3035 == 0 { + } else if yyct3067 == codecSelferValueTypeArray1234 { + yyl3067 := r.ReadArrayStart() + if yyl3067 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3035, d) + x.codecDecodeSelfFromArray(yyl3067, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39029,12 +39491,12 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3036Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3036Slc - var yyhl3036 bool = l >= 0 - for yyj3036 := 0; ; yyj3036++ { - if yyhl3036 { - if yyj3036 >= l { + var yys3068Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3068Slc + var yyhl3068 bool = l >= 0 + for yyj3068 := 0; ; yyj3068++ { + if yyhl3068 { + if yyj3068 >= l { break } } else { @@ -39043,10 +39505,10 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3036Slc = r.DecodeBytes(yys3036Slc, true, true) - yys3036 := string(yys3036Slc) + yys3068Slc = r.DecodeBytes(yys3068Slc, true, true) + yys3068 := string(yys3068Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3036 { + switch yys3068 { case "machineID": if r.TryDecodeAsNil() { x.MachineID = "" @@ -39108,9 +39570,9 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Architecture = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3036) - } // end switch yys3036 - } // end for yyj3036 + z.DecStructFieldNotFound(-1, yys3068) + } // end switch yys3068 + } // end for yyj3068 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39118,16 +39580,16 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3047 int - var yyb3047 bool - var yyhl3047 bool = l >= 0 - yyj3047++ - if yyhl3047 { - yyb3047 = yyj3047 > l + var yyj3079 int + var yyb3079 bool + var yyhl3079 bool = l >= 0 + yyj3079++ + if yyhl3079 { + yyb3079 = yyj3079 > l } else { - yyb3047 = r.CheckBreak() + yyb3079 = r.CheckBreak() } - if yyb3047 { + if yyb3079 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39137,13 +39599,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.MachineID = string(r.DecodeString()) } - yyj3047++ - if yyhl3047 { - yyb3047 = yyj3047 > l + yyj3079++ + if yyhl3079 { + yyb3079 = yyj3079 > l } else { - yyb3047 = r.CheckBreak() + yyb3079 = r.CheckBreak() } - if yyb3047 { + if yyb3079 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39153,13 +39615,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SystemUUID = string(r.DecodeString()) } - yyj3047++ - if yyhl3047 { - yyb3047 = yyj3047 > l + yyj3079++ + if yyhl3079 { + yyb3079 = yyj3079 > l } else { - yyb3047 = r.CheckBreak() + yyb3079 = r.CheckBreak() } - if yyb3047 { + if yyb3079 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39169,13 +39631,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.BootID = string(r.DecodeString()) } - yyj3047++ - if yyhl3047 { - yyb3047 = yyj3047 > l + yyj3079++ + if yyhl3079 { + yyb3079 = yyj3079 > l } else { - yyb3047 = r.CheckBreak() + yyb3079 = r.CheckBreak() } - if yyb3047 { + if yyb3079 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39185,13 +39647,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KernelVersion = string(r.DecodeString()) } - yyj3047++ - if yyhl3047 { - yyb3047 = yyj3047 > l + yyj3079++ + if yyhl3079 { + yyb3079 = yyj3079 > l } else { - yyb3047 = r.CheckBreak() + yyb3079 = r.CheckBreak() } - if yyb3047 { + if yyb3079 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39201,13 +39663,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OSImage = string(r.DecodeString()) } - yyj3047++ - if yyhl3047 { - yyb3047 = yyj3047 > l + yyj3079++ + if yyhl3079 { + yyb3079 = yyj3079 > l } else { - yyb3047 = r.CheckBreak() + yyb3079 = r.CheckBreak() } - if yyb3047 { + if yyb3079 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39217,13 +39679,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ContainerRuntimeVersion = string(r.DecodeString()) } - yyj3047++ - if yyhl3047 { - yyb3047 = yyj3047 > l + yyj3079++ + if yyhl3079 { + yyb3079 = yyj3079 > l } else { - yyb3047 = r.CheckBreak() + yyb3079 = r.CheckBreak() } - if yyb3047 { + if yyb3079 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39233,13 +39695,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeletVersion = string(r.DecodeString()) } - yyj3047++ - if yyhl3047 { - yyb3047 = yyj3047 > l + yyj3079++ + if yyhl3079 { + yyb3079 = yyj3079 > l } else { - yyb3047 = r.CheckBreak() + yyb3079 = r.CheckBreak() } - if yyb3047 { + if yyb3079 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39249,13 +39711,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeProxyVersion = string(r.DecodeString()) } - yyj3047++ - if yyhl3047 { - yyb3047 = yyj3047 > l + yyj3079++ + if yyhl3079 { + yyb3079 = yyj3079 > l } else { - yyb3047 = r.CheckBreak() + yyb3079 = r.CheckBreak() } - if yyb3047 { + if yyb3079 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39265,13 +39727,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OperatingSystem = string(r.DecodeString()) } - yyj3047++ - if yyhl3047 { - yyb3047 = yyj3047 > l + yyj3079++ + if yyhl3079 { + yyb3079 = yyj3079 > l } else { - yyb3047 = r.CheckBreak() + yyb3079 = r.CheckBreak() } - if yyb3047 { + if yyb3079 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39282,17 +39744,17 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Architecture = string(r.DecodeString()) } for { - yyj3047++ - if yyhl3047 { - yyb3047 = yyj3047 > l + yyj3079++ + if yyhl3079 { + yyb3079 = yyj3079 > l } else { - yyb3047 = r.CheckBreak() + yyb3079 = r.CheckBreak() } - if yyb3047 { + if yyb3079 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3047-1, "") + z.DecStructFieldNotFound(yyj3079-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39304,42 +39766,42 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3058 := z.EncBinary() - _ = yym3058 + yym3090 := z.EncBinary() + _ = yym3090 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3059 := !z.EncBinary() - yy2arr3059 := z.EncBasicHandle().StructToArray - var yyq3059 [10]bool - _, _, _ = yysep3059, yyq3059, yy2arr3059 - const yyr3059 bool = false - yyq3059[0] = len(x.Capacity) != 0 - yyq3059[1] = len(x.Allocatable) != 0 - yyq3059[2] = x.Phase != "" - yyq3059[3] = len(x.Conditions) != 0 - yyq3059[4] = len(x.Addresses) != 0 - yyq3059[5] = true - yyq3059[6] = true - yyq3059[7] = len(x.Images) != 0 - yyq3059[8] = len(x.VolumesInUse) != 0 - yyq3059[9] = len(x.VolumesAttached) != 0 - var yynn3059 int - if yyr3059 || yy2arr3059 { + yysep3091 := !z.EncBinary() + yy2arr3091 := z.EncBasicHandle().StructToArray + var yyq3091 [10]bool + _, _, _ = yysep3091, yyq3091, yy2arr3091 + const yyr3091 bool = false + yyq3091[0] = len(x.Capacity) != 0 + yyq3091[1] = len(x.Allocatable) != 0 + yyq3091[2] = x.Phase != "" + yyq3091[3] = len(x.Conditions) != 0 + yyq3091[4] = len(x.Addresses) != 0 + yyq3091[5] = true + yyq3091[6] = true + yyq3091[7] = len(x.Images) != 0 + yyq3091[8] = len(x.VolumesInUse) != 0 + yyq3091[9] = len(x.VolumesAttached) != 0 + var yynn3091 int + if yyr3091 || yy2arr3091 { r.EncodeArrayStart(10) } else { - yynn3059 = 0 - for _, b := range yyq3059 { + yynn3091 = 0 + for _, b := range yyq3091 { if b { - yynn3059++ + yynn3091++ } } - r.EncodeMapStart(yynn3059) - yynn3059 = 0 + r.EncodeMapStart(yynn3091) + yynn3091 = 0 } - if yyr3059 || yy2arr3059 { + if yyr3091 || yy2arr3091 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3059[0] { + if yyq3091[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -39349,7 +39811,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3059[0] { + if yyq3091[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -39360,9 +39822,9 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3059 || yy2arr3059 { + if yyr3091 || yy2arr3091 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3059[1] { + if yyq3091[1] { if x.Allocatable == nil { r.EncodeNil() } else { @@ -39372,7 +39834,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3059[1] { + if yyq3091[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("allocatable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -39383,29 +39845,29 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3059 || yy2arr3059 { + if yyr3091 || yy2arr3091 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3059[2] { + if yyq3091[2] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3059[2] { + if yyq3091[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr3059 || yy2arr3059 { + if yyr3091 || yy2arr3091 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3059[3] { + if yyq3091[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym3064 := z.EncBinary() - _ = yym3064 + yym3096 := z.EncBinary() + _ = yym3096 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -39415,15 +39877,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3059[3] { + if yyq3091[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym3065 := z.EncBinary() - _ = yym3065 + yym3097 := z.EncBinary() + _ = yym3097 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -39431,14 +39893,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3059 || yy2arr3059 { + if yyr3091 || yy2arr3091 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3059[4] { + if yyq3091[4] { if x.Addresses == nil { r.EncodeNil() } else { - yym3067 := z.EncBinary() - _ = yym3067 + yym3099 := z.EncBinary() + _ = yym3099 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -39448,15 +39910,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3059[4] { + if yyq3091[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Addresses == nil { r.EncodeNil() } else { - yym3068 := z.EncBinary() - _ = yym3068 + yym3100 := z.EncBinary() + _ = yym3100 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -39464,48 +39926,48 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3059 || yy2arr3059 { + if yyr3091 || yy2arr3091 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3059[5] { - yy3070 := &x.DaemonEndpoints - yy3070.CodecEncodeSelf(e) + if yyq3091[5] { + yy3102 := &x.DaemonEndpoints + yy3102.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3059[5] { + if yyq3091[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("daemonEndpoints")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3071 := &x.DaemonEndpoints - yy3071.CodecEncodeSelf(e) + yy3103 := &x.DaemonEndpoints + yy3103.CodecEncodeSelf(e) } } - if yyr3059 || yy2arr3059 { + if yyr3091 || yy2arr3091 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3059[6] { - yy3073 := &x.NodeInfo - yy3073.CodecEncodeSelf(e) + if yyq3091[6] { + yy3105 := &x.NodeInfo + yy3105.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3059[6] { + if yyq3091[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeInfo")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3074 := &x.NodeInfo - yy3074.CodecEncodeSelf(e) + yy3106 := &x.NodeInfo + yy3106.CodecEncodeSelf(e) } } - if yyr3059 || yy2arr3059 { + if yyr3091 || yy2arr3091 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3059[7] { + if yyq3091[7] { if x.Images == nil { r.EncodeNil() } else { - yym3076 := z.EncBinary() - _ = yym3076 + yym3108 := z.EncBinary() + _ = yym3108 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -39515,15 +39977,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3059[7] { + if yyq3091[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("images")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Images == nil { r.EncodeNil() } else { - yym3077 := z.EncBinary() - _ = yym3077 + yym3109 := z.EncBinary() + _ = yym3109 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -39531,14 +39993,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3059 || yy2arr3059 { + if yyr3091 || yy2arr3091 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3059[8] { + if yyq3091[8] { if x.VolumesInUse == nil { r.EncodeNil() } else { - yym3079 := z.EncBinary() - _ = yym3079 + yym3111 := z.EncBinary() + _ = yym3111 if false { } else { h.encSliceUniqueVolumeName(([]UniqueVolumeName)(x.VolumesInUse), e) @@ -39548,15 +40010,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3059[8] { + if yyq3091[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumesInUse")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumesInUse == nil { r.EncodeNil() } else { - yym3080 := z.EncBinary() - _ = yym3080 + yym3112 := z.EncBinary() + _ = yym3112 if false { } else { h.encSliceUniqueVolumeName(([]UniqueVolumeName)(x.VolumesInUse), e) @@ -39564,14 +40026,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3059 || yy2arr3059 { + if yyr3091 || yy2arr3091 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3059[9] { + if yyq3091[9] { if x.VolumesAttached == nil { r.EncodeNil() } else { - yym3082 := z.EncBinary() - _ = yym3082 + yym3114 := z.EncBinary() + _ = yym3114 if false { } else { h.encSliceAttachedVolume(([]AttachedVolume)(x.VolumesAttached), e) @@ -39581,15 +40043,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3059[9] { + if yyq3091[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumesAttached")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumesAttached == nil { r.EncodeNil() } else { - yym3083 := z.EncBinary() - _ = yym3083 + yym3115 := z.EncBinary() + _ = yym3115 if false { } else { h.encSliceAttachedVolume(([]AttachedVolume)(x.VolumesAttached), e) @@ -39597,7 +40059,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3059 || yy2arr3059 { + if yyr3091 || yy2arr3091 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39610,25 +40072,25 @@ func (x *NodeStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3084 := z.DecBinary() - _ = yym3084 + yym3116 := z.DecBinary() + _ = yym3116 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3085 := r.ContainerType() - if yyct3085 == codecSelferValueTypeMap1234 { - yyl3085 := r.ReadMapStart() - if yyl3085 == 0 { + yyct3117 := r.ContainerType() + if yyct3117 == codecSelferValueTypeMap1234 { + yyl3117 := r.ReadMapStart() + if yyl3117 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3085, d) + x.codecDecodeSelfFromMap(yyl3117, d) } - } else if yyct3085 == codecSelferValueTypeArray1234 { - yyl3085 := r.ReadArrayStart() - if yyl3085 == 0 { + } else if yyct3117 == codecSelferValueTypeArray1234 { + yyl3117 := r.ReadArrayStart() + if yyl3117 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3085, d) + x.codecDecodeSelfFromArray(yyl3117, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39640,12 +40102,12 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3086Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3086Slc - var yyhl3086 bool = l >= 0 - for yyj3086 := 0; ; yyj3086++ { - if yyhl3086 { - if yyj3086 >= l { + var yys3118Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3118Slc + var yyhl3118 bool = l >= 0 + for yyj3118 := 0; ; yyj3118++ { + if yyhl3118 { + if yyj3118 >= l { break } } else { @@ -39654,23 +40116,23 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3086Slc = r.DecodeBytes(yys3086Slc, true, true) - yys3086 := string(yys3086Slc) + yys3118Slc = r.DecodeBytes(yys3118Slc, true, true) + yys3118 := string(yys3118Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3086 { + switch yys3118 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv3087 := &x.Capacity - yyv3087.CodecDecodeSelf(d) + yyv3119 := &x.Capacity + yyv3119.CodecDecodeSelf(d) } case "allocatable": if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv3088 := &x.Allocatable - yyv3088.CodecDecodeSelf(d) + yyv3120 := &x.Allocatable + yyv3120.CodecDecodeSelf(d) } case "phase": if r.TryDecodeAsNil() { @@ -39682,80 +40144,80 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv3090 := &x.Conditions - yym3091 := z.DecBinary() - _ = yym3091 + yyv3122 := &x.Conditions + yym3123 := z.DecBinary() + _ = yym3123 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv3090), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv3122), d) } } case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv3092 := &x.Addresses - yym3093 := z.DecBinary() - _ = yym3093 + yyv3124 := &x.Addresses + yym3125 := z.DecBinary() + _ = yym3125 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv3092), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv3124), d) } } case "daemonEndpoints": if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv3094 := &x.DaemonEndpoints - yyv3094.CodecDecodeSelf(d) + yyv3126 := &x.DaemonEndpoints + yyv3126.CodecDecodeSelf(d) } case "nodeInfo": if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv3095 := &x.NodeInfo - yyv3095.CodecDecodeSelf(d) + yyv3127 := &x.NodeInfo + yyv3127.CodecDecodeSelf(d) } case "images": if r.TryDecodeAsNil() { x.Images = nil } else { - yyv3096 := &x.Images - yym3097 := z.DecBinary() - _ = yym3097 + yyv3128 := &x.Images + yym3129 := z.DecBinary() + _ = yym3129 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv3096), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv3128), d) } } case "volumesInUse": if r.TryDecodeAsNil() { x.VolumesInUse = nil } else { - yyv3098 := &x.VolumesInUse - yym3099 := z.DecBinary() - _ = yym3099 + yyv3130 := &x.VolumesInUse + yym3131 := z.DecBinary() + _ = yym3131 if false { } else { - h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv3098), d) + h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv3130), d) } } case "volumesAttached": if r.TryDecodeAsNil() { x.VolumesAttached = nil } else { - yyv3100 := &x.VolumesAttached - yym3101 := z.DecBinary() - _ = yym3101 + yyv3132 := &x.VolumesAttached + yym3133 := z.DecBinary() + _ = yym3133 if false { } else { - h.decSliceAttachedVolume((*[]AttachedVolume)(yyv3100), d) + h.decSliceAttachedVolume((*[]AttachedVolume)(yyv3132), d) } } default: - z.DecStructFieldNotFound(-1, yys3086) - } // end switch yys3086 - } // end for yyj3086 + z.DecStructFieldNotFound(-1, yys3118) + } // end switch yys3118 + } // end for yyj3118 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39763,16 +40225,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3102 int - var yyb3102 bool - var yyhl3102 bool = l >= 0 - yyj3102++ - if yyhl3102 { - yyb3102 = yyj3102 > l + var yyj3134 int + var yyb3134 bool + var yyhl3134 bool = l >= 0 + yyj3134++ + if yyhl3134 { + yyb3134 = yyj3134 > l } else { - yyb3102 = r.CheckBreak() + yyb3134 = r.CheckBreak() } - if yyb3102 { + if yyb3134 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39780,16 +40242,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv3103 := &x.Capacity - yyv3103.CodecDecodeSelf(d) + yyv3135 := &x.Capacity + yyv3135.CodecDecodeSelf(d) } - yyj3102++ - if yyhl3102 { - yyb3102 = yyj3102 > l + yyj3134++ + if yyhl3134 { + yyb3134 = yyj3134 > l } else { - yyb3102 = r.CheckBreak() + yyb3134 = r.CheckBreak() } - if yyb3102 { + if yyb3134 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39797,16 +40259,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv3104 := &x.Allocatable - yyv3104.CodecDecodeSelf(d) + yyv3136 := &x.Allocatable + yyv3136.CodecDecodeSelf(d) } - yyj3102++ - if yyhl3102 { - yyb3102 = yyj3102 > l + yyj3134++ + if yyhl3134 { + yyb3134 = yyj3134 > l } else { - yyb3102 = r.CheckBreak() + yyb3134 = r.CheckBreak() } - if yyb3102 { + if yyb3134 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39816,13 +40278,13 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = NodePhase(r.DecodeString()) } - yyj3102++ - if yyhl3102 { - yyb3102 = yyj3102 > l + yyj3134++ + if yyhl3134 { + yyb3134 = yyj3134 > l } else { - yyb3102 = r.CheckBreak() + yyb3134 = r.CheckBreak() } - if yyb3102 { + if yyb3134 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39830,21 +40292,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv3106 := &x.Conditions - yym3107 := z.DecBinary() - _ = yym3107 + yyv3138 := &x.Conditions + yym3139 := z.DecBinary() + _ = yym3139 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv3106), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv3138), d) } } - yyj3102++ - if yyhl3102 { - yyb3102 = yyj3102 > l + yyj3134++ + if yyhl3134 { + yyb3134 = yyj3134 > l } else { - yyb3102 = r.CheckBreak() + yyb3134 = r.CheckBreak() } - if yyb3102 { + if yyb3134 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39852,21 +40314,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv3108 := &x.Addresses - yym3109 := z.DecBinary() - _ = yym3109 + yyv3140 := &x.Addresses + yym3141 := z.DecBinary() + _ = yym3141 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv3108), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv3140), d) } } - yyj3102++ - if yyhl3102 { - yyb3102 = yyj3102 > l + yyj3134++ + if yyhl3134 { + yyb3134 = yyj3134 > l } else { - yyb3102 = r.CheckBreak() + yyb3134 = r.CheckBreak() } - if yyb3102 { + if yyb3134 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39874,16 +40336,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv3110 := &x.DaemonEndpoints - yyv3110.CodecDecodeSelf(d) + yyv3142 := &x.DaemonEndpoints + yyv3142.CodecDecodeSelf(d) } - yyj3102++ - if yyhl3102 { - yyb3102 = yyj3102 > l + yyj3134++ + if yyhl3134 { + yyb3134 = yyj3134 > l } else { - yyb3102 = r.CheckBreak() + yyb3134 = r.CheckBreak() } - if yyb3102 { + if yyb3134 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39891,16 +40353,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv3111 := &x.NodeInfo - yyv3111.CodecDecodeSelf(d) + yyv3143 := &x.NodeInfo + yyv3143.CodecDecodeSelf(d) } - yyj3102++ - if yyhl3102 { - yyb3102 = yyj3102 > l + yyj3134++ + if yyhl3134 { + yyb3134 = yyj3134 > l } else { - yyb3102 = r.CheckBreak() + yyb3134 = r.CheckBreak() } - if yyb3102 { + if yyb3134 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39908,21 +40370,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Images = nil } else { - yyv3112 := &x.Images - yym3113 := z.DecBinary() - _ = yym3113 + yyv3144 := &x.Images + yym3145 := z.DecBinary() + _ = yym3145 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv3112), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv3144), d) } } - yyj3102++ - if yyhl3102 { - yyb3102 = yyj3102 > l + yyj3134++ + if yyhl3134 { + yyb3134 = yyj3134 > l } else { - yyb3102 = r.CheckBreak() + yyb3134 = r.CheckBreak() } - if yyb3102 { + if yyb3134 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39930,21 +40392,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumesInUse = nil } else { - yyv3114 := &x.VolumesInUse - yym3115 := z.DecBinary() - _ = yym3115 + yyv3146 := &x.VolumesInUse + yym3147 := z.DecBinary() + _ = yym3147 if false { } else { - h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv3114), d) + h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv3146), d) } } - yyj3102++ - if yyhl3102 { - yyb3102 = yyj3102 > l + yyj3134++ + if yyhl3134 { + yyb3134 = yyj3134 > l } else { - yyb3102 = r.CheckBreak() + yyb3134 = r.CheckBreak() } - if yyb3102 { + if yyb3134 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39952,26 +40414,26 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumesAttached = nil } else { - yyv3116 := &x.VolumesAttached - yym3117 := z.DecBinary() - _ = yym3117 + yyv3148 := &x.VolumesAttached + yym3149 := z.DecBinary() + _ = yym3149 if false { } else { - h.decSliceAttachedVolume((*[]AttachedVolume)(yyv3116), d) + h.decSliceAttachedVolume((*[]AttachedVolume)(yyv3148), d) } } for { - yyj3102++ - if yyhl3102 { - yyb3102 = yyj3102 > l + yyj3134++ + if yyhl3134 { + yyb3134 = yyj3134 > l } else { - yyb3102 = r.CheckBreak() + yyb3134 = r.CheckBreak() } - if yyb3102 { + if yyb3134 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3102-1, "") + z.DecStructFieldNotFound(yyj3134-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39980,8 +40442,8 @@ func (x UniqueVolumeName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3118 := z.EncBinary() - _ = yym3118 + yym3150 := z.EncBinary() + _ = yym3150 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39993,8 +40455,8 @@ func (x *UniqueVolumeName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3119 := z.DecBinary() - _ = yym3119 + yym3151 := z.DecBinary() + _ = yym3151 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40009,30 +40471,30 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3120 := z.EncBinary() - _ = yym3120 + yym3152 := z.EncBinary() + _ = yym3152 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3121 := !z.EncBinary() - yy2arr3121 := z.EncBasicHandle().StructToArray - var yyq3121 [2]bool - _, _, _ = yysep3121, yyq3121, yy2arr3121 - const yyr3121 bool = false - var yynn3121 int - if yyr3121 || yy2arr3121 { + yysep3153 := !z.EncBinary() + yy2arr3153 := z.EncBasicHandle().StructToArray + var yyq3153 [2]bool + _, _, _ = yysep3153, yyq3153, yy2arr3153 + const yyr3153 bool = false + var yynn3153 int + if yyr3153 || yy2arr3153 { r.EncodeArrayStart(2) } else { - yynn3121 = 2 - for _, b := range yyq3121 { + yynn3153 = 2 + for _, b := range yyq3153 { if b { - yynn3121++ + yynn3153++ } } - r.EncodeMapStart(yynn3121) - yynn3121 = 0 + r.EncodeMapStart(yynn3153) + yynn3153 = 0 } - if yyr3121 || yy2arr3121 { + if yyr3153 || yy2arr3153 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Name.CodecEncodeSelf(e) } else { @@ -40041,10 +40503,10 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Name.CodecEncodeSelf(e) } - if yyr3121 || yy2arr3121 { + if yyr3153 || yy2arr3153 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3124 := z.EncBinary() - _ = yym3124 + yym3156 := z.EncBinary() + _ = yym3156 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DevicePath)) @@ -40053,14 +40515,14 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("devicePath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3125 := z.EncBinary() - _ = yym3125 + yym3157 := z.EncBinary() + _ = yym3157 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DevicePath)) } } - if yyr3121 || yy2arr3121 { + if yyr3153 || yy2arr3153 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40073,25 +40535,25 @@ func (x *AttachedVolume) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3126 := z.DecBinary() - _ = yym3126 + yym3158 := z.DecBinary() + _ = yym3158 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3127 := r.ContainerType() - if yyct3127 == codecSelferValueTypeMap1234 { - yyl3127 := r.ReadMapStart() - if yyl3127 == 0 { + yyct3159 := r.ContainerType() + if yyct3159 == codecSelferValueTypeMap1234 { + yyl3159 := r.ReadMapStart() + if yyl3159 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3127, d) + x.codecDecodeSelfFromMap(yyl3159, d) } - } else if yyct3127 == codecSelferValueTypeArray1234 { - yyl3127 := r.ReadArrayStart() - if yyl3127 == 0 { + } else if yyct3159 == codecSelferValueTypeArray1234 { + yyl3159 := r.ReadArrayStart() + if yyl3159 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3127, d) + x.codecDecodeSelfFromArray(yyl3159, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40103,12 +40565,12 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3128Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3128Slc - var yyhl3128 bool = l >= 0 - for yyj3128 := 0; ; yyj3128++ { - if yyhl3128 { - if yyj3128 >= l { + var yys3160Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3160Slc + var yyhl3160 bool = l >= 0 + for yyj3160 := 0; ; yyj3160++ { + if yyhl3160 { + if yyj3160 >= l { break } } else { @@ -40117,10 +40579,10 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3128Slc = r.DecodeBytes(yys3128Slc, true, true) - yys3128 := string(yys3128Slc) + yys3160Slc = r.DecodeBytes(yys3160Slc, true, true) + yys3160 := string(yys3160Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3128 { + switch yys3160 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -40134,9 +40596,9 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.DevicePath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3128) - } // end switch yys3128 - } // end for yyj3128 + z.DecStructFieldNotFound(-1, yys3160) + } // end switch yys3160 + } // end for yyj3160 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40144,16 +40606,16 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3131 int - var yyb3131 bool - var yyhl3131 bool = l >= 0 - yyj3131++ - if yyhl3131 { - yyb3131 = yyj3131 > l + var yyj3163 int + var yyb3163 bool + var yyhl3163 bool = l >= 0 + yyj3163++ + if yyhl3163 { + yyb3163 = yyj3163 > l } else { - yyb3131 = r.CheckBreak() + yyb3163 = r.CheckBreak() } - if yyb3131 { + if yyb3163 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40163,13 +40625,13 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = UniqueVolumeName(r.DecodeString()) } - yyj3131++ - if yyhl3131 { - yyb3131 = yyj3131 > l + yyj3163++ + if yyhl3163 { + yyb3163 = yyj3163 > l } else { - yyb3131 = r.CheckBreak() + yyb3163 = r.CheckBreak() } - if yyb3131 { + if yyb3163 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40180,17 +40642,17 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.DevicePath = string(r.DecodeString()) } for { - yyj3131++ - if yyhl3131 { - yyb3131 = yyj3131 > l + yyj3163++ + if yyhl3163 { + yyb3163 = yyj3163 > l } else { - yyb3131 = r.CheckBreak() + yyb3163 = r.CheckBreak() } - if yyb3131 { + if yyb3163 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3131-1, "") + z.DecStructFieldNotFound(yyj3163-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40202,38 +40664,38 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3134 := z.EncBinary() - _ = yym3134 + yym3166 := z.EncBinary() + _ = yym3166 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3135 := !z.EncBinary() - yy2arr3135 := z.EncBasicHandle().StructToArray - var yyq3135 [1]bool - _, _, _ = yysep3135, yyq3135, yy2arr3135 - const yyr3135 bool = false - yyq3135[0] = len(x.PreferAvoidPods) != 0 - var yynn3135 int - if yyr3135 || yy2arr3135 { + yysep3167 := !z.EncBinary() + yy2arr3167 := z.EncBasicHandle().StructToArray + var yyq3167 [1]bool + _, _, _ = yysep3167, yyq3167, yy2arr3167 + const yyr3167 bool = false + yyq3167[0] = len(x.PreferAvoidPods) != 0 + var yynn3167 int + if yyr3167 || yy2arr3167 { r.EncodeArrayStart(1) } else { - yynn3135 = 0 - for _, b := range yyq3135 { + yynn3167 = 0 + for _, b := range yyq3167 { if b { - yynn3135++ + yynn3167++ } } - r.EncodeMapStart(yynn3135) - yynn3135 = 0 + r.EncodeMapStart(yynn3167) + yynn3167 = 0 } - if yyr3135 || yy2arr3135 { + if yyr3167 || yy2arr3167 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3135[0] { + if yyq3167[0] { if x.PreferAvoidPods == nil { r.EncodeNil() } else { - yym3137 := z.EncBinary() - _ = yym3137 + yym3169 := z.EncBinary() + _ = yym3169 if false { } else { h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) @@ -40243,15 +40705,15 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3135[0] { + if yyq3167[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preferAvoidPods")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PreferAvoidPods == nil { r.EncodeNil() } else { - yym3138 := z.EncBinary() - _ = yym3138 + yym3170 := z.EncBinary() + _ = yym3170 if false { } else { h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) @@ -40259,7 +40721,7 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3135 || yy2arr3135 { + if yyr3167 || yy2arr3167 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40272,25 +40734,25 @@ func (x *AvoidPods) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3139 := z.DecBinary() - _ = yym3139 + yym3171 := z.DecBinary() + _ = yym3171 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3140 := r.ContainerType() - if yyct3140 == codecSelferValueTypeMap1234 { - yyl3140 := r.ReadMapStart() - if yyl3140 == 0 { + yyct3172 := r.ContainerType() + if yyct3172 == codecSelferValueTypeMap1234 { + yyl3172 := r.ReadMapStart() + if yyl3172 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3140, d) + x.codecDecodeSelfFromMap(yyl3172, d) } - } else if yyct3140 == codecSelferValueTypeArray1234 { - yyl3140 := r.ReadArrayStart() - if yyl3140 == 0 { + } else if yyct3172 == codecSelferValueTypeArray1234 { + yyl3172 := r.ReadArrayStart() + if yyl3172 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3140, d) + x.codecDecodeSelfFromArray(yyl3172, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40302,12 +40764,12 @@ func (x *AvoidPods) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3141Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3141Slc - var yyhl3141 bool = l >= 0 - for yyj3141 := 0; ; yyj3141++ { - if yyhl3141 { - if yyj3141 >= l { + var yys3173Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3173Slc + var yyhl3173 bool = l >= 0 + for yyj3173 := 0; ; yyj3173++ { + if yyhl3173 { + if yyj3173 >= l { break } } else { @@ -40316,26 +40778,26 @@ func (x *AvoidPods) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3141Slc = r.DecodeBytes(yys3141Slc, true, true) - yys3141 := string(yys3141Slc) + yys3173Slc = r.DecodeBytes(yys3173Slc, true, true) + yys3173 := string(yys3173Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3141 { + switch yys3173 { case "preferAvoidPods": if r.TryDecodeAsNil() { x.PreferAvoidPods = nil } else { - yyv3142 := &x.PreferAvoidPods - yym3143 := z.DecBinary() - _ = yym3143 + yyv3174 := &x.PreferAvoidPods + yym3175 := z.DecBinary() + _ = yym3175 if false { } else { - h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv3142), d) + h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv3174), d) } } default: - z.DecStructFieldNotFound(-1, yys3141) - } // end switch yys3141 - } // end for yyj3141 + z.DecStructFieldNotFound(-1, yys3173) + } // end switch yys3173 + } // end for yyj3173 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40343,16 +40805,16 @@ func (x *AvoidPods) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3144 int - var yyb3144 bool - var yyhl3144 bool = l >= 0 - yyj3144++ - if yyhl3144 { - yyb3144 = yyj3144 > l + var yyj3176 int + var yyb3176 bool + var yyhl3176 bool = l >= 0 + yyj3176++ + if yyhl3176 { + yyb3176 = yyj3176 > l } else { - yyb3144 = r.CheckBreak() + yyb3176 = r.CheckBreak() } - if yyb3144 { + if yyb3176 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40360,26 +40822,26 @@ func (x *AvoidPods) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PreferAvoidPods = nil } else { - yyv3145 := &x.PreferAvoidPods - yym3146 := z.DecBinary() - _ = yym3146 + yyv3177 := &x.PreferAvoidPods + yym3178 := z.DecBinary() + _ = yym3178 if false { } else { - h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv3145), d) + h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv3177), d) } } for { - yyj3144++ - if yyhl3144 { - yyb3144 = yyj3144 > l + yyj3176++ + if yyhl3176 { + yyb3176 = yyj3176 > l } else { - yyb3144 = r.CheckBreak() + yyb3176 = r.CheckBreak() } - if yyb3144 { + if yyb3176 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3144-1, "") + z.DecStructFieldNotFound(yyj3176-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40391,85 +40853,85 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3147 := z.EncBinary() - _ = yym3147 + yym3179 := z.EncBinary() + _ = yym3179 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3148 := !z.EncBinary() - yy2arr3148 := z.EncBasicHandle().StructToArray - var yyq3148 [4]bool - _, _, _ = yysep3148, yyq3148, yy2arr3148 - const yyr3148 bool = false - yyq3148[1] = true - yyq3148[2] = x.Reason != "" - yyq3148[3] = x.Message != "" - var yynn3148 int - if yyr3148 || yy2arr3148 { + yysep3180 := !z.EncBinary() + yy2arr3180 := z.EncBasicHandle().StructToArray + var yyq3180 [4]bool + _, _, _ = yysep3180, yyq3180, yy2arr3180 + const yyr3180 bool = false + yyq3180[1] = true + yyq3180[2] = x.Reason != "" + yyq3180[3] = x.Message != "" + var yynn3180 int + if yyr3180 || yy2arr3180 { r.EncodeArrayStart(4) } else { - yynn3148 = 1 - for _, b := range yyq3148 { + yynn3180 = 1 + for _, b := range yyq3180 { if b { - yynn3148++ + yynn3180++ } } - r.EncodeMapStart(yynn3148) - yynn3148 = 0 + r.EncodeMapStart(yynn3180) + yynn3180 = 0 } - if yyr3148 || yy2arr3148 { + if yyr3180 || yy2arr3180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3150 := &x.PodSignature - yy3150.CodecEncodeSelf(e) + yy3182 := &x.PodSignature + yy3182.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podSignature")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3151 := &x.PodSignature - yy3151.CodecEncodeSelf(e) + yy3183 := &x.PodSignature + yy3183.CodecEncodeSelf(e) } - if yyr3148 || yy2arr3148 { + if yyr3180 || yy2arr3180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3148[1] { - yy3153 := &x.EvictionTime - yym3154 := z.EncBinary() - _ = yym3154 + if yyq3180[1] { + yy3185 := &x.EvictionTime + yym3186 := z.EncBinary() + _ = yym3186 if false { - } else if z.HasExtensions() && z.EncExt(yy3153) { - } else if yym3154 { - z.EncBinaryMarshal(yy3153) - } else if !yym3154 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3153) + } else if z.HasExtensions() && z.EncExt(yy3185) { + } else if yym3186 { + z.EncBinaryMarshal(yy3185) + } else if !yym3186 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3185) } else { - z.EncFallback(yy3153) + z.EncFallback(yy3185) } } else { r.EncodeNil() } } else { - if yyq3148[1] { + if yyq3180[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("evictionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3155 := &x.EvictionTime - yym3156 := z.EncBinary() - _ = yym3156 + yy3187 := &x.EvictionTime + yym3188 := z.EncBinary() + _ = yym3188 if false { - } else if z.HasExtensions() && z.EncExt(yy3155) { - } else if yym3156 { - z.EncBinaryMarshal(yy3155) - } else if !yym3156 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3155) + } else if z.HasExtensions() && z.EncExt(yy3187) { + } else if yym3188 { + z.EncBinaryMarshal(yy3187) + } else if !yym3188 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3187) } else { - z.EncFallback(yy3155) + z.EncFallback(yy3187) } } } - if yyr3148 || yy2arr3148 { + if yyr3180 || yy2arr3180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3148[2] { - yym3158 := z.EncBinary() - _ = yym3158 + if yyq3180[2] { + yym3190 := z.EncBinary() + _ = yym3190 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -40478,23 +40940,23 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3148[2] { + if yyq3180[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3159 := z.EncBinary() - _ = yym3159 + yym3191 := z.EncBinary() + _ = yym3191 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3148 || yy2arr3148 { + if yyr3180 || yy2arr3180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3148[3] { - yym3161 := z.EncBinary() - _ = yym3161 + if yyq3180[3] { + yym3193 := z.EncBinary() + _ = yym3193 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -40503,19 +40965,19 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3148[3] { + if yyq3180[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3162 := z.EncBinary() - _ = yym3162 + yym3194 := z.EncBinary() + _ = yym3194 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3148 || yy2arr3148 { + if yyr3180 || yy2arr3180 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40528,25 +40990,25 @@ func (x *PreferAvoidPodsEntry) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3163 := z.DecBinary() - _ = yym3163 + yym3195 := z.DecBinary() + _ = yym3195 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3164 := r.ContainerType() - if yyct3164 == codecSelferValueTypeMap1234 { - yyl3164 := r.ReadMapStart() - if yyl3164 == 0 { + yyct3196 := r.ContainerType() + if yyct3196 == codecSelferValueTypeMap1234 { + yyl3196 := r.ReadMapStart() + if yyl3196 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3164, d) + x.codecDecodeSelfFromMap(yyl3196, d) } - } else if yyct3164 == codecSelferValueTypeArray1234 { - yyl3164 := r.ReadArrayStart() - if yyl3164 == 0 { + } else if yyct3196 == codecSelferValueTypeArray1234 { + yyl3196 := r.ReadArrayStart() + if yyl3196 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3164, d) + x.codecDecodeSelfFromArray(yyl3196, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40558,12 +41020,12 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3165Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3165Slc - var yyhl3165 bool = l >= 0 - for yyj3165 := 0; ; yyj3165++ { - if yyhl3165 { - if yyj3165 >= l { + var yys3197Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3197Slc + var yyhl3197 bool = l >= 0 + for yyj3197 := 0; ; yyj3197++ { + if yyhl3197 { + if yyj3197 >= l { break } } else { @@ -40572,32 +41034,32 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3165Slc = r.DecodeBytes(yys3165Slc, true, true) - yys3165 := string(yys3165Slc) + yys3197Slc = r.DecodeBytes(yys3197Slc, true, true) + yys3197 := string(yys3197Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3165 { + switch yys3197 { case "podSignature": if r.TryDecodeAsNil() { x.PodSignature = PodSignature{} } else { - yyv3166 := &x.PodSignature - yyv3166.CodecDecodeSelf(d) + yyv3198 := &x.PodSignature + yyv3198.CodecDecodeSelf(d) } case "evictionTime": if r.TryDecodeAsNil() { x.EvictionTime = pkg2_v1.Time{} } else { - yyv3167 := &x.EvictionTime - yym3168 := z.DecBinary() - _ = yym3168 + yyv3199 := &x.EvictionTime + yym3200 := z.DecBinary() + _ = yym3200 if false { - } else if z.HasExtensions() && z.DecExt(yyv3167) { - } else if yym3168 { - z.DecBinaryUnmarshal(yyv3167) - } else if !yym3168 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3167) + } else if z.HasExtensions() && z.DecExt(yyv3199) { + } else if yym3200 { + z.DecBinaryUnmarshal(yyv3199) + } else if !yym3200 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3199) } else { - z.DecFallback(yyv3167, false) + z.DecFallback(yyv3199, false) } } case "reason": @@ -40613,9 +41075,9 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3165) - } // end switch yys3165 - } // end for yyj3165 + z.DecStructFieldNotFound(-1, yys3197) + } // end switch yys3197 + } // end for yyj3197 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40623,16 +41085,16 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3171 int - var yyb3171 bool - var yyhl3171 bool = l >= 0 - yyj3171++ - if yyhl3171 { - yyb3171 = yyj3171 > l + var yyj3203 int + var yyb3203 bool + var yyhl3203 bool = l >= 0 + yyj3203++ + if yyhl3203 { + yyb3203 = yyj3203 > l } else { - yyb3171 = r.CheckBreak() + yyb3203 = r.CheckBreak() } - if yyb3171 { + if yyb3203 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40640,16 +41102,16 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.PodSignature = PodSignature{} } else { - yyv3172 := &x.PodSignature - yyv3172.CodecDecodeSelf(d) + yyv3204 := &x.PodSignature + yyv3204.CodecDecodeSelf(d) } - yyj3171++ - if yyhl3171 { - yyb3171 = yyj3171 > l + yyj3203++ + if yyhl3203 { + yyb3203 = yyj3203 > l } else { - yyb3171 = r.CheckBreak() + yyb3203 = r.CheckBreak() } - if yyb3171 { + if yyb3203 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40657,26 +41119,26 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.EvictionTime = pkg2_v1.Time{} } else { - yyv3173 := &x.EvictionTime - yym3174 := z.DecBinary() - _ = yym3174 + yyv3205 := &x.EvictionTime + yym3206 := z.DecBinary() + _ = yym3206 if false { - } else if z.HasExtensions() && z.DecExt(yyv3173) { - } else if yym3174 { - z.DecBinaryUnmarshal(yyv3173) - } else if !yym3174 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3173) + } else if z.HasExtensions() && z.DecExt(yyv3205) { + } else if yym3206 { + z.DecBinaryUnmarshal(yyv3205) + } else if !yym3206 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3205) } else { - z.DecFallback(yyv3173, false) + z.DecFallback(yyv3205, false) } } - yyj3171++ - if yyhl3171 { - yyb3171 = yyj3171 > l + yyj3203++ + if yyhl3203 { + yyb3203 = yyj3203 > l } else { - yyb3171 = r.CheckBreak() + yyb3203 = r.CheckBreak() } - if yyb3171 { + if yyb3203 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40686,13 +41148,13 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.Reason = string(r.DecodeString()) } - yyj3171++ - if yyhl3171 { - yyb3171 = yyj3171 > l + yyj3203++ + if yyhl3203 { + yyb3203 = yyj3203 > l } else { - yyb3171 = r.CheckBreak() + yyb3203 = r.CheckBreak() } - if yyb3171 { + if yyb3203 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40703,17 +41165,17 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Message = string(r.DecodeString()) } for { - yyj3171++ - if yyhl3171 { - yyb3171 = yyj3171 > l + yyj3203++ + if yyhl3203 { + yyb3203 = yyj3203 > l } else { - yyb3171 = r.CheckBreak() + yyb3203 = r.CheckBreak() } - if yyb3171 { + if yyb3203 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3171-1, "") + z.DecStructFieldNotFound(yyj3203-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40725,38 +41187,38 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3177 := z.EncBinary() - _ = yym3177 + yym3209 := z.EncBinary() + _ = yym3209 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3178 := !z.EncBinary() - yy2arr3178 := z.EncBasicHandle().StructToArray - var yyq3178 [1]bool - _, _, _ = yysep3178, yyq3178, yy2arr3178 - const yyr3178 bool = false - yyq3178[0] = x.PodController != nil - var yynn3178 int - if yyr3178 || yy2arr3178 { + yysep3210 := !z.EncBinary() + yy2arr3210 := z.EncBasicHandle().StructToArray + var yyq3210 [1]bool + _, _, _ = yysep3210, yyq3210, yy2arr3210 + const yyr3210 bool = false + yyq3210[0] = x.PodController != nil + var yynn3210 int + if yyr3210 || yy2arr3210 { r.EncodeArrayStart(1) } else { - yynn3178 = 0 - for _, b := range yyq3178 { + yynn3210 = 0 + for _, b := range yyq3210 { if b { - yynn3178++ + yynn3210++ } } - r.EncodeMapStart(yynn3178) - yynn3178 = 0 + r.EncodeMapStart(yynn3210) + yynn3210 = 0 } - if yyr3178 || yy2arr3178 { + if yyr3210 || yy2arr3210 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3178[0] { + if yyq3210[0] { if x.PodController == nil { r.EncodeNil() } else { - yym3180 := z.EncBinary() - _ = yym3180 + yym3212 := z.EncBinary() + _ = yym3212 if false { } else if z.HasExtensions() && z.EncExt(x.PodController) { } else { @@ -40767,15 +41229,15 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3178[0] { + if yyq3210[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podController")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PodController == nil { r.EncodeNil() } else { - yym3181 := z.EncBinary() - _ = yym3181 + yym3213 := z.EncBinary() + _ = yym3213 if false { } else if z.HasExtensions() && z.EncExt(x.PodController) { } else { @@ -40784,7 +41246,7 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3178 || yy2arr3178 { + if yyr3210 || yy2arr3210 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40797,25 +41259,25 @@ func (x *PodSignature) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3182 := z.DecBinary() - _ = yym3182 + yym3214 := z.DecBinary() + _ = yym3214 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3183 := r.ContainerType() - if yyct3183 == codecSelferValueTypeMap1234 { - yyl3183 := r.ReadMapStart() - if yyl3183 == 0 { + yyct3215 := r.ContainerType() + if yyct3215 == codecSelferValueTypeMap1234 { + yyl3215 := r.ReadMapStart() + if yyl3215 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3183, d) + x.codecDecodeSelfFromMap(yyl3215, d) } - } else if yyct3183 == codecSelferValueTypeArray1234 { - yyl3183 := r.ReadArrayStart() - if yyl3183 == 0 { + } else if yyct3215 == codecSelferValueTypeArray1234 { + yyl3215 := r.ReadArrayStart() + if yyl3215 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3183, d) + x.codecDecodeSelfFromArray(yyl3215, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40827,12 +41289,12 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3184Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3184Slc - var yyhl3184 bool = l >= 0 - for yyj3184 := 0; ; yyj3184++ { - if yyhl3184 { - if yyj3184 >= l { + var yys3216Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3216Slc + var yyhl3216 bool = l >= 0 + for yyj3216 := 0; ; yyj3216++ { + if yyhl3216 { + if yyj3216 >= l { break } } else { @@ -40841,10 +41303,10 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3184Slc = r.DecodeBytes(yys3184Slc, true, true) - yys3184 := string(yys3184Slc) + yys3216Slc = r.DecodeBytes(yys3216Slc, true, true) + yys3216 := string(yys3216Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3184 { + switch yys3216 { case "podController": if r.TryDecodeAsNil() { if x.PodController != nil { @@ -40854,8 +41316,8 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.PodController == nil { x.PodController = new(pkg2_v1.OwnerReference) } - yym3186 := z.DecBinary() - _ = yym3186 + yym3218 := z.DecBinary() + _ = yym3218 if false { } else if z.HasExtensions() && z.DecExt(x.PodController) { } else { @@ -40863,9 +41325,9 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } default: - z.DecStructFieldNotFound(-1, yys3184) - } // end switch yys3184 - } // end for yyj3184 + z.DecStructFieldNotFound(-1, yys3216) + } // end switch yys3216 + } // end for yyj3216 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40873,16 +41335,16 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3187 int - var yyb3187 bool - var yyhl3187 bool = l >= 0 - yyj3187++ - if yyhl3187 { - yyb3187 = yyj3187 > l + var yyj3219 int + var yyb3219 bool + var yyhl3219 bool = l >= 0 + yyj3219++ + if yyhl3219 { + yyb3219 = yyj3219 > l } else { - yyb3187 = r.CheckBreak() + yyb3219 = r.CheckBreak() } - if yyb3187 { + if yyb3219 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40895,8 +41357,8 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.PodController == nil { x.PodController = new(pkg2_v1.OwnerReference) } - yym3189 := z.DecBinary() - _ = yym3189 + yym3221 := z.DecBinary() + _ = yym3221 if false { } else if z.HasExtensions() && z.DecExt(x.PodController) { } else { @@ -40904,17 +41366,17 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } } for { - yyj3187++ - if yyhl3187 { - yyb3187 = yyj3187 > l + yyj3219++ + if yyhl3219 { + yyb3219 = yyj3219 > l } else { - yyb3187 = r.CheckBreak() + yyb3219 = r.CheckBreak() } - if yyb3187 { + if yyb3219 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3187-1, "") + z.DecStructFieldNotFound(yyj3219-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40926,37 +41388,37 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3190 := z.EncBinary() - _ = yym3190 + yym3222 := z.EncBinary() + _ = yym3222 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3191 := !z.EncBinary() - yy2arr3191 := z.EncBasicHandle().StructToArray - var yyq3191 [2]bool - _, _, _ = yysep3191, yyq3191, yy2arr3191 - const yyr3191 bool = false - yyq3191[1] = x.SizeBytes != 0 - var yynn3191 int - if yyr3191 || yy2arr3191 { + yysep3223 := !z.EncBinary() + yy2arr3223 := z.EncBasicHandle().StructToArray + var yyq3223 [2]bool + _, _, _ = yysep3223, yyq3223, yy2arr3223 + const yyr3223 bool = false + yyq3223[1] = x.SizeBytes != 0 + var yynn3223 int + if yyr3223 || yy2arr3223 { r.EncodeArrayStart(2) } else { - yynn3191 = 1 - for _, b := range yyq3191 { + yynn3223 = 1 + for _, b := range yyq3223 { if b { - yynn3191++ + yynn3223++ } } - r.EncodeMapStart(yynn3191) - yynn3191 = 0 + r.EncodeMapStart(yynn3223) + yynn3223 = 0 } - if yyr3191 || yy2arr3191 { + if yyr3223 || yy2arr3223 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Names == nil { r.EncodeNil() } else { - yym3193 := z.EncBinary() - _ = yym3193 + yym3225 := z.EncBinary() + _ = yym3225 if false { } else { z.F.EncSliceStringV(x.Names, false, e) @@ -40969,19 +41431,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x.Names == nil { r.EncodeNil() } else { - yym3194 := z.EncBinary() - _ = yym3194 + yym3226 := z.EncBinary() + _ = yym3226 if false { } else { z.F.EncSliceStringV(x.Names, false, e) } } } - if yyr3191 || yy2arr3191 { + if yyr3223 || yy2arr3223 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3191[1] { - yym3196 := z.EncBinary() - _ = yym3196 + if yyq3223[1] { + yym3228 := z.EncBinary() + _ = yym3228 if false { } else { r.EncodeInt(int64(x.SizeBytes)) @@ -40990,19 +41452,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq3191[1] { + if yyq3223[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sizeBytes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3197 := z.EncBinary() - _ = yym3197 + yym3229 := z.EncBinary() + _ = yym3229 if false { } else { r.EncodeInt(int64(x.SizeBytes)) } } } - if yyr3191 || yy2arr3191 { + if yyr3223 || yy2arr3223 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41015,25 +41477,25 @@ func (x *ContainerImage) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3198 := z.DecBinary() - _ = yym3198 + yym3230 := z.DecBinary() + _ = yym3230 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3199 := r.ContainerType() - if yyct3199 == codecSelferValueTypeMap1234 { - yyl3199 := r.ReadMapStart() - if yyl3199 == 0 { + yyct3231 := r.ContainerType() + if yyct3231 == codecSelferValueTypeMap1234 { + yyl3231 := r.ReadMapStart() + if yyl3231 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3199, d) + x.codecDecodeSelfFromMap(yyl3231, d) } - } else if yyct3199 == codecSelferValueTypeArray1234 { - yyl3199 := r.ReadArrayStart() - if yyl3199 == 0 { + } else if yyct3231 == codecSelferValueTypeArray1234 { + yyl3231 := r.ReadArrayStart() + if yyl3231 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3199, d) + x.codecDecodeSelfFromArray(yyl3231, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41045,12 +41507,12 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3200Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3200Slc - var yyhl3200 bool = l >= 0 - for yyj3200 := 0; ; yyj3200++ { - if yyhl3200 { - if yyj3200 >= l { + var yys3232Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3232Slc + var yyhl3232 bool = l >= 0 + for yyj3232 := 0; ; yyj3232++ { + if yyhl3232 { + if yyj3232 >= l { break } } else { @@ -41059,20 +41521,20 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3200Slc = r.DecodeBytes(yys3200Slc, true, true) - yys3200 := string(yys3200Slc) + yys3232Slc = r.DecodeBytes(yys3232Slc, true, true) + yys3232 := string(yys3232Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3200 { + switch yys3232 { case "names": if r.TryDecodeAsNil() { x.Names = nil } else { - yyv3201 := &x.Names - yym3202 := z.DecBinary() - _ = yym3202 + yyv3233 := &x.Names + yym3234 := z.DecBinary() + _ = yym3234 if false { } else { - z.F.DecSliceStringX(yyv3201, false, d) + z.F.DecSliceStringX(yyv3233, false, d) } } case "sizeBytes": @@ -41082,9 +41544,9 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.SizeBytes = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys3200) - } // end switch yys3200 - } // end for yyj3200 + z.DecStructFieldNotFound(-1, yys3232) + } // end switch yys3232 + } // end for yyj3232 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41092,16 +41554,16 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3204 int - var yyb3204 bool - var yyhl3204 bool = l >= 0 - yyj3204++ - if yyhl3204 { - yyb3204 = yyj3204 > l + var yyj3236 int + var yyb3236 bool + var yyhl3236 bool = l >= 0 + yyj3236++ + if yyhl3236 { + yyb3236 = yyj3236 > l } else { - yyb3204 = r.CheckBreak() + yyb3236 = r.CheckBreak() } - if yyb3204 { + if yyb3236 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41109,21 +41571,21 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Names = nil } else { - yyv3205 := &x.Names - yym3206 := z.DecBinary() - _ = yym3206 + yyv3237 := &x.Names + yym3238 := z.DecBinary() + _ = yym3238 if false { } else { - z.F.DecSliceStringX(yyv3205, false, d) + z.F.DecSliceStringX(yyv3237, false, d) } } - yyj3204++ - if yyhl3204 { - yyb3204 = yyj3204 > l + yyj3236++ + if yyhl3236 { + yyb3236 = yyj3236 > l } else { - yyb3204 = r.CheckBreak() + yyb3236 = r.CheckBreak() } - if yyb3204 { + if yyb3236 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41134,17 +41596,17 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.SizeBytes = int64(r.DecodeInt(64)) } for { - yyj3204++ - if yyhl3204 { - yyb3204 = yyj3204 > l + yyj3236++ + if yyhl3236 { + yyb3236 = yyj3236 > l } else { - yyb3204 = r.CheckBreak() + yyb3236 = r.CheckBreak() } - if yyb3204 { + if yyb3236 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3204-1, "") + z.DecStructFieldNotFound(yyj3236-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41153,8 +41615,8 @@ func (x NodePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3208 := z.EncBinary() - _ = yym3208 + yym3240 := z.EncBinary() + _ = yym3240 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -41166,8 +41628,8 @@ func (x *NodePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3209 := z.DecBinary() - _ = yym3209 + yym3241 := z.DecBinary() + _ = yym3241 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -41179,8 +41641,8 @@ func (x NodeConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3210 := z.EncBinary() - _ = yym3210 + yym3242 := z.EncBinary() + _ = yym3242 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -41192,8 +41654,8 @@ func (x *NodeConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3211 := z.DecBinary() - _ = yym3211 + yym3243 := z.DecBinary() + _ = yym3243 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -41208,34 +41670,34 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3212 := z.EncBinary() - _ = yym3212 + yym3244 := z.EncBinary() + _ = yym3244 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3213 := !z.EncBinary() - yy2arr3213 := z.EncBasicHandle().StructToArray - var yyq3213 [6]bool - _, _, _ = yysep3213, yyq3213, yy2arr3213 - const yyr3213 bool = false - yyq3213[2] = true - yyq3213[3] = true - yyq3213[4] = x.Reason != "" - yyq3213[5] = x.Message != "" - var yynn3213 int - if yyr3213 || yy2arr3213 { + yysep3245 := !z.EncBinary() + yy2arr3245 := z.EncBasicHandle().StructToArray + var yyq3245 [6]bool + _, _, _ = yysep3245, yyq3245, yy2arr3245 + const yyr3245 bool = false + yyq3245[2] = true + yyq3245[3] = true + yyq3245[4] = x.Reason != "" + yyq3245[5] = x.Message != "" + var yynn3245 int + if yyr3245 || yy2arr3245 { r.EncodeArrayStart(6) } else { - yynn3213 = 2 - for _, b := range yyq3213 { + yynn3245 = 2 + for _, b := range yyq3245 { if b { - yynn3213++ + yynn3245++ } } - r.EncodeMapStart(yynn3213) - yynn3213 = 0 + r.EncodeMapStart(yynn3245) + yynn3245 = 0 } - if yyr3213 || yy2arr3213 { + if yyr3245 || yy2arr3245 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -41244,7 +41706,7 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3213 || yy2arr3213 { + if yyr3245 || yy2arr3245 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -41253,85 +41715,85 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr3213 || yy2arr3213 { + if yyr3245 || yy2arr3245 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3213[2] { - yy3217 := &x.LastHeartbeatTime - yym3218 := z.EncBinary() - _ = yym3218 + if yyq3245[2] { + yy3249 := &x.LastHeartbeatTime + yym3250 := z.EncBinary() + _ = yym3250 if false { - } else if z.HasExtensions() && z.EncExt(yy3217) { - } else if yym3218 { - z.EncBinaryMarshal(yy3217) - } else if !yym3218 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3217) + } else if z.HasExtensions() && z.EncExt(yy3249) { + } else if yym3250 { + z.EncBinaryMarshal(yy3249) + } else if !yym3250 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3249) } else { - z.EncFallback(yy3217) + z.EncFallback(yy3249) } } else { r.EncodeNil() } } else { - if yyq3213[2] { + if yyq3245[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastHeartbeatTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3219 := &x.LastHeartbeatTime - yym3220 := z.EncBinary() - _ = yym3220 + yy3251 := &x.LastHeartbeatTime + yym3252 := z.EncBinary() + _ = yym3252 if false { - } else if z.HasExtensions() && z.EncExt(yy3219) { - } else if yym3220 { - z.EncBinaryMarshal(yy3219) - } else if !yym3220 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3219) + } else if z.HasExtensions() && z.EncExt(yy3251) { + } else if yym3252 { + z.EncBinaryMarshal(yy3251) + } else if !yym3252 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3251) } else { - z.EncFallback(yy3219) + z.EncFallback(yy3251) } } } - if yyr3213 || yy2arr3213 { + if yyr3245 || yy2arr3245 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3213[3] { - yy3222 := &x.LastTransitionTime - yym3223 := z.EncBinary() - _ = yym3223 + if yyq3245[3] { + yy3254 := &x.LastTransitionTime + yym3255 := z.EncBinary() + _ = yym3255 if false { - } else if z.HasExtensions() && z.EncExt(yy3222) { - } else if yym3223 { - z.EncBinaryMarshal(yy3222) - } else if !yym3223 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3222) + } else if z.HasExtensions() && z.EncExt(yy3254) { + } else if yym3255 { + z.EncBinaryMarshal(yy3254) + } else if !yym3255 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3254) } else { - z.EncFallback(yy3222) + z.EncFallback(yy3254) } } else { r.EncodeNil() } } else { - if yyq3213[3] { + if yyq3245[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3224 := &x.LastTransitionTime - yym3225 := z.EncBinary() - _ = yym3225 + yy3256 := &x.LastTransitionTime + yym3257 := z.EncBinary() + _ = yym3257 if false { - } else if z.HasExtensions() && z.EncExt(yy3224) { - } else if yym3225 { - z.EncBinaryMarshal(yy3224) - } else if !yym3225 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3224) + } else if z.HasExtensions() && z.EncExt(yy3256) { + } else if yym3257 { + z.EncBinaryMarshal(yy3256) + } else if !yym3257 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3256) } else { - z.EncFallback(yy3224) + z.EncFallback(yy3256) } } } - if yyr3213 || yy2arr3213 { + if yyr3245 || yy2arr3245 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3213[4] { - yym3227 := z.EncBinary() - _ = yym3227 + if yyq3245[4] { + yym3259 := z.EncBinary() + _ = yym3259 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -41340,23 +41802,23 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3213[4] { + if yyq3245[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3228 := z.EncBinary() - _ = yym3228 + yym3260 := z.EncBinary() + _ = yym3260 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3213 || yy2arr3213 { + if yyr3245 || yy2arr3245 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3213[5] { - yym3230 := z.EncBinary() - _ = yym3230 + if yyq3245[5] { + yym3262 := z.EncBinary() + _ = yym3262 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -41365,19 +41827,19 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3213[5] { + if yyq3245[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3231 := z.EncBinary() - _ = yym3231 + yym3263 := z.EncBinary() + _ = yym3263 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3213 || yy2arr3213 { + if yyr3245 || yy2arr3245 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41390,25 +41852,25 @@ func (x *NodeCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3232 := z.DecBinary() - _ = yym3232 + yym3264 := z.DecBinary() + _ = yym3264 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3233 := r.ContainerType() - if yyct3233 == codecSelferValueTypeMap1234 { - yyl3233 := r.ReadMapStart() - if yyl3233 == 0 { + yyct3265 := r.ContainerType() + if yyct3265 == codecSelferValueTypeMap1234 { + yyl3265 := r.ReadMapStart() + if yyl3265 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3233, d) + x.codecDecodeSelfFromMap(yyl3265, d) } - } else if yyct3233 == codecSelferValueTypeArray1234 { - yyl3233 := r.ReadArrayStart() - if yyl3233 == 0 { + } else if yyct3265 == codecSelferValueTypeArray1234 { + yyl3265 := r.ReadArrayStart() + if yyl3265 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3233, d) + x.codecDecodeSelfFromArray(yyl3265, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41420,12 +41882,12 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3234Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3234Slc - var yyhl3234 bool = l >= 0 - for yyj3234 := 0; ; yyj3234++ { - if yyhl3234 { - if yyj3234 >= l { + var yys3266Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3266Slc + var yyhl3266 bool = l >= 0 + for yyj3266 := 0; ; yyj3266++ { + if yyhl3266 { + if yyj3266 >= l { break } } else { @@ -41434,10 +41896,10 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3234Slc = r.DecodeBytes(yys3234Slc, true, true) - yys3234 := string(yys3234Slc) + yys3266Slc = r.DecodeBytes(yys3266Slc, true, true) + yys3266 := string(yys3266Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3234 { + switch yys3266 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -41454,34 +41916,34 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_v1.Time{} } else { - yyv3237 := &x.LastHeartbeatTime - yym3238 := z.DecBinary() - _ = yym3238 + yyv3269 := &x.LastHeartbeatTime + yym3270 := z.DecBinary() + _ = yym3270 if false { - } else if z.HasExtensions() && z.DecExt(yyv3237) { - } else if yym3238 { - z.DecBinaryUnmarshal(yyv3237) - } else if !yym3238 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3237) + } else if z.HasExtensions() && z.DecExt(yyv3269) { + } else if yym3270 { + z.DecBinaryUnmarshal(yyv3269) + } else if !yym3270 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3269) } else { - z.DecFallback(yyv3237, false) + z.DecFallback(yyv3269, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_v1.Time{} } else { - yyv3239 := &x.LastTransitionTime - yym3240 := z.DecBinary() - _ = yym3240 + yyv3271 := &x.LastTransitionTime + yym3272 := z.DecBinary() + _ = yym3272 if false { - } else if z.HasExtensions() && z.DecExt(yyv3239) { - } else if yym3240 { - z.DecBinaryUnmarshal(yyv3239) - } else if !yym3240 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3239) + } else if z.HasExtensions() && z.DecExt(yyv3271) { + } else if yym3272 { + z.DecBinaryUnmarshal(yyv3271) + } else if !yym3272 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3271) } else { - z.DecFallback(yyv3239, false) + z.DecFallback(yyv3271, false) } } case "reason": @@ -41497,9 +41959,9 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3234) - } // end switch yys3234 - } // end for yyj3234 + z.DecStructFieldNotFound(-1, yys3266) + } // end switch yys3266 + } // end for yyj3266 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41507,16 +41969,16 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3243 int - var yyb3243 bool - var yyhl3243 bool = l >= 0 - yyj3243++ - if yyhl3243 { - yyb3243 = yyj3243 > l + var yyj3275 int + var yyb3275 bool + var yyhl3275 bool = l >= 0 + yyj3275++ + if yyhl3275 { + yyb3275 = yyj3275 > l } else { - yyb3243 = r.CheckBreak() + yyb3275 = r.CheckBreak() } - if yyb3243 { + if yyb3275 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41526,13 +41988,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeConditionType(r.DecodeString()) } - yyj3243++ - if yyhl3243 { - yyb3243 = yyj3243 > l + yyj3275++ + if yyhl3275 { + yyb3275 = yyj3275 > l } else { - yyb3243 = r.CheckBreak() + yyb3275 = r.CheckBreak() } - if yyb3243 { + if yyb3275 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41542,13 +42004,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj3243++ - if yyhl3243 { - yyb3243 = yyj3243 > l + yyj3275++ + if yyhl3275 { + yyb3275 = yyj3275 > l } else { - yyb3243 = r.CheckBreak() + yyb3275 = r.CheckBreak() } - if yyb3243 { + if yyb3275 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41556,26 +42018,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_v1.Time{} } else { - yyv3246 := &x.LastHeartbeatTime - yym3247 := z.DecBinary() - _ = yym3247 + yyv3278 := &x.LastHeartbeatTime + yym3279 := z.DecBinary() + _ = yym3279 if false { - } else if z.HasExtensions() && z.DecExt(yyv3246) { - } else if yym3247 { - z.DecBinaryUnmarshal(yyv3246) - } else if !yym3247 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3246) + } else if z.HasExtensions() && z.DecExt(yyv3278) { + } else if yym3279 { + z.DecBinaryUnmarshal(yyv3278) + } else if !yym3279 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3278) } else { - z.DecFallback(yyv3246, false) + z.DecFallback(yyv3278, false) } } - yyj3243++ - if yyhl3243 { - yyb3243 = yyj3243 > l + yyj3275++ + if yyhl3275 { + yyb3275 = yyj3275 > l } else { - yyb3243 = r.CheckBreak() + yyb3275 = r.CheckBreak() } - if yyb3243 { + if yyb3275 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41583,26 +42045,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_v1.Time{} } else { - yyv3248 := &x.LastTransitionTime - yym3249 := z.DecBinary() - _ = yym3249 + yyv3280 := &x.LastTransitionTime + yym3281 := z.DecBinary() + _ = yym3281 if false { - } else if z.HasExtensions() && z.DecExt(yyv3248) { - } else if yym3249 { - z.DecBinaryUnmarshal(yyv3248) - } else if !yym3249 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3248) + } else if z.HasExtensions() && z.DecExt(yyv3280) { + } else if yym3281 { + z.DecBinaryUnmarshal(yyv3280) + } else if !yym3281 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3280) } else { - z.DecFallback(yyv3248, false) + z.DecFallback(yyv3280, false) } } - yyj3243++ - if yyhl3243 { - yyb3243 = yyj3243 > l + yyj3275++ + if yyhl3275 { + yyb3275 = yyj3275 > l } else { - yyb3243 = r.CheckBreak() + yyb3275 = r.CheckBreak() } - if yyb3243 { + if yyb3275 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41612,13 +42074,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3243++ - if yyhl3243 { - yyb3243 = yyj3243 > l + yyj3275++ + if yyhl3275 { + yyb3275 = yyj3275 > l } else { - yyb3243 = r.CheckBreak() + yyb3275 = r.CheckBreak() } - if yyb3243 { + if yyb3275 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41629,17 +42091,17 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj3243++ - if yyhl3243 { - yyb3243 = yyj3243 > l + yyj3275++ + if yyhl3275 { + yyb3275 = yyj3275 > l } else { - yyb3243 = r.CheckBreak() + yyb3275 = r.CheckBreak() } - if yyb3243 { + if yyb3275 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3243-1, "") + z.DecStructFieldNotFound(yyj3275-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41648,8 +42110,8 @@ func (x NodeAddressType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3252 := z.EncBinary() - _ = yym3252 + yym3284 := z.EncBinary() + _ = yym3284 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -41661,8 +42123,8 @@ func (x *NodeAddressType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3253 := z.DecBinary() - _ = yym3253 + yym3285 := z.DecBinary() + _ = yym3285 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -41677,30 +42139,30 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3254 := z.EncBinary() - _ = yym3254 + yym3286 := z.EncBinary() + _ = yym3286 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3255 := !z.EncBinary() - yy2arr3255 := z.EncBasicHandle().StructToArray - var yyq3255 [2]bool - _, _, _ = yysep3255, yyq3255, yy2arr3255 - const yyr3255 bool = false - var yynn3255 int - if yyr3255 || yy2arr3255 { + yysep3287 := !z.EncBinary() + yy2arr3287 := z.EncBasicHandle().StructToArray + var yyq3287 [2]bool + _, _, _ = yysep3287, yyq3287, yy2arr3287 + const yyr3287 bool = false + var yynn3287 int + if yyr3287 || yy2arr3287 { r.EncodeArrayStart(2) } else { - yynn3255 = 2 - for _, b := range yyq3255 { + yynn3287 = 2 + for _, b := range yyq3287 { if b { - yynn3255++ + yynn3287++ } } - r.EncodeMapStart(yynn3255) - yynn3255 = 0 + r.EncodeMapStart(yynn3287) + yynn3287 = 0 } - if yyr3255 || yy2arr3255 { + if yyr3287 || yy2arr3287 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -41709,10 +42171,10 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3255 || yy2arr3255 { + if yyr3287 || yy2arr3287 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3258 := z.EncBinary() - _ = yym3258 + yym3290 := z.EncBinary() + _ = yym3290 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) @@ -41721,14 +42183,14 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("address")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3259 := z.EncBinary() - _ = yym3259 + yym3291 := z.EncBinary() + _ = yym3291 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) } } - if yyr3255 || yy2arr3255 { + if yyr3287 || yy2arr3287 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41741,25 +42203,25 @@ func (x *NodeAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3260 := z.DecBinary() - _ = yym3260 + yym3292 := z.DecBinary() + _ = yym3292 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3261 := r.ContainerType() - if yyct3261 == codecSelferValueTypeMap1234 { - yyl3261 := r.ReadMapStart() - if yyl3261 == 0 { + yyct3293 := r.ContainerType() + if yyct3293 == codecSelferValueTypeMap1234 { + yyl3293 := r.ReadMapStart() + if yyl3293 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3261, d) + x.codecDecodeSelfFromMap(yyl3293, d) } - } else if yyct3261 == codecSelferValueTypeArray1234 { - yyl3261 := r.ReadArrayStart() - if yyl3261 == 0 { + } else if yyct3293 == codecSelferValueTypeArray1234 { + yyl3293 := r.ReadArrayStart() + if yyl3293 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3261, d) + x.codecDecodeSelfFromArray(yyl3293, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41771,12 +42233,12 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3262Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3262Slc - var yyhl3262 bool = l >= 0 - for yyj3262 := 0; ; yyj3262++ { - if yyhl3262 { - if yyj3262 >= l { + var yys3294Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3294Slc + var yyhl3294 bool = l >= 0 + for yyj3294 := 0; ; yyj3294++ { + if yyhl3294 { + if yyj3294 >= l { break } } else { @@ -41785,10 +42247,10 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3262Slc = r.DecodeBytes(yys3262Slc, true, true) - yys3262 := string(yys3262Slc) + yys3294Slc = r.DecodeBytes(yys3294Slc, true, true) + yys3294 := string(yys3294Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3262 { + switch yys3294 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -41802,361 +42264,13 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3262) - } // end switch yys3262 - } // end for yyj3262 + z.DecStructFieldNotFound(-1, yys3294) + } // end switch yys3294 + } // end for yyj3294 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3265 int - var yyb3265 bool - var yyhl3265 bool = l >= 0 - yyj3265++ - if yyhl3265 { - yyb3265 = yyj3265 > l - } else { - yyb3265 = r.CheckBreak() - } - if yyb3265 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = NodeAddressType(r.DecodeString()) - } - yyj3265++ - if yyhl3265 { - yyb3265 = yyj3265 > l - } else { - yyb3265 = r.CheckBreak() - } - if yyb3265 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Address = "" - } else { - x.Address = string(r.DecodeString()) - } - for { - yyj3265++ - if yyhl3265 { - yyb3265 = yyj3265 > l - } else { - yyb3265 = r.CheckBreak() - } - if yyb3265 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3265-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x ResourceName) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - yym3268 := z.EncBinary() - _ = yym3268 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x)) - } -} - -func (x *ResourceName) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3269 := z.DecBinary() - _ = yym3269 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - *((*string)(x)) = r.DecodeString() - } -} - -func (x ResourceList) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3270 := z.EncBinary() - _ = yym3270 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - h.encResourceList((ResourceList)(x), e) - } - } -} - -func (x *ResourceList) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3271 := z.DecBinary() - _ = yym3271 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - h.decResourceList((*ResourceList)(x), d) - } -} - -func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3272 := z.EncBinary() - _ = yym3272 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3273 := !z.EncBinary() - yy2arr3273 := z.EncBasicHandle().StructToArray - var yyq3273 [5]bool - _, _, _ = yysep3273, yyq3273, yy2arr3273 - const yyr3273 bool = false - yyq3273[0] = x.Kind != "" - yyq3273[1] = x.APIVersion != "" - yyq3273[2] = true - yyq3273[3] = true - yyq3273[4] = true - var yynn3273 int - if yyr3273 || yy2arr3273 { - r.EncodeArrayStart(5) - } else { - yynn3273 = 0 - for _, b := range yyq3273 { - if b { - yynn3273++ - } - } - r.EncodeMapStart(yynn3273) - yynn3273 = 0 - } - if yyr3273 || yy2arr3273 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3273[0] { - yym3275 := z.EncBinary() - _ = yym3275 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3273[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3276 := z.EncBinary() - _ = yym3276 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3273 || yy2arr3273 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3273[1] { - yym3278 := z.EncBinary() - _ = yym3278 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3273[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3279 := z.EncBinary() - _ = yym3279 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr3273 || yy2arr3273 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3273[2] { - yy3281 := &x.ObjectMeta - yy3281.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq3273[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3282 := &x.ObjectMeta - yy3282.CodecEncodeSelf(e) - } - } - if yyr3273 || yy2arr3273 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3273[3] { - yy3284 := &x.Spec - yy3284.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq3273[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("spec")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3285 := &x.Spec - yy3285.CodecEncodeSelf(e) - } - } - if yyr3273 || yy2arr3273 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3273[4] { - yy3287 := &x.Status - yy3287.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq3273[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("status")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3288 := &x.Status - yy3288.CodecEncodeSelf(e) - } - } - if yyr3273 || yy2arr3273 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *Node) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3289 := z.DecBinary() - _ = yym3289 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3290 := r.ContainerType() - if yyct3290 == codecSelferValueTypeMap1234 { - yyl3290 := r.ReadMapStart() - if yyl3290 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3290, d) - } - } else if yyct3290 == codecSelferValueTypeArray1234 { - yyl3290 := r.ReadArrayStart() - if yyl3290 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3290, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3291Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3291Slc - var yyhl3291 bool = l >= 0 - for yyj3291 := 0; ; yyj3291++ { - if yyhl3291 { - if yyj3291 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3291Slc = r.DecodeBytes(yys3291Slc, true, true) - yys3291 := string(yys3291Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3291 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "metadata": - if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} - } else { - yyv3294 := &x.ObjectMeta - yyv3294.CodecDecodeSelf(d) - } - case "spec": - if r.TryDecodeAsNil() { - x.Spec = NodeSpec{} - } else { - yyv3295 := &x.Spec - yyv3295.CodecDecodeSelf(d) - } - case "status": - if r.TryDecodeAsNil() { - x.Status = NodeStatus{} - } else { - yyv3296 := &x.Status - yyv3296.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys3291) - } // end switch yys3291 - } // end for yyj3291 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -42175,9 +42289,9 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Kind = "" + x.Type = "" } else { - x.Kind = string(r.DecodeString()) + x.Type = NodeAddressType(r.DecodeString()) } yyj3297++ if yyhl3297 { @@ -42191,60 +42305,9 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.APIVersion = "" + x.Address = "" } else { - x.APIVersion = string(r.DecodeString()) - } - yyj3297++ - if yyhl3297 { - yyb3297 = yyj3297 > l - } else { - yyb3297 = r.CheckBreak() - } - if yyb3297 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} - } else { - yyv3300 := &x.ObjectMeta - yyv3300.CodecDecodeSelf(d) - } - yyj3297++ - if yyhl3297 { - yyb3297 = yyj3297 > l - } else { - yyb3297 = r.CheckBreak() - } - if yyb3297 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Spec = NodeSpec{} - } else { - yyv3301 := &x.Spec - yyv3301.CodecDecodeSelf(d) - } - yyj3297++ - if yyhl3297 { - yyb3297 = yyj3297 > l - } else { - yyb3297 = r.CheckBreak() - } - if yyb3297 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Status = NodeStatus{} - } else { - yyv3302 := &x.Status - yyv3302.CodecDecodeSelf(d) + x.Address = string(r.DecodeString()) } for { yyj3297++ @@ -42262,887 +42325,199 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { +func (x ResourceName) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + yym3300 := z.EncBinary() + _ = yym3300 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x)) + } +} + +func (x *ResourceName) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3301 := z.DecBinary() + _ = yym3301 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + *((*string)(x)) = r.DecodeString() + } +} + +func (x ResourceList) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r if x == nil { r.EncodeNil() } else { - yym3303 := z.EncBinary() - _ = yym3303 + yym3302 := z.EncBinary() + _ = yym3302 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3304 := !z.EncBinary() - yy2arr3304 := z.EncBasicHandle().StructToArray - var yyq3304 [4]bool - _, _, _ = yysep3304, yyq3304, yy2arr3304 - const yyr3304 bool = false - yyq3304[0] = x.Kind != "" - yyq3304[1] = x.APIVersion != "" - yyq3304[2] = true - var yynn3304 int - if yyr3304 || yy2arr3304 { - r.EncodeArrayStart(4) + h.encResourceList((ResourceList)(x), e) + } + } +} + +func (x *ResourceList) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3303 := z.DecBinary() + _ = yym3303 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + h.decResourceList((*ResourceList)(x), d) + } +} + +func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3304 := z.EncBinary() + _ = yym3304 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3305 := !z.EncBinary() + yy2arr3305 := z.EncBasicHandle().StructToArray + var yyq3305 [5]bool + _, _, _ = yysep3305, yyq3305, yy2arr3305 + const yyr3305 bool = false + yyq3305[0] = x.Kind != "" + yyq3305[1] = x.APIVersion != "" + yyq3305[2] = true + yyq3305[3] = true + yyq3305[4] = true + var yynn3305 int + if yyr3305 || yy2arr3305 { + r.EncodeArrayStart(5) } else { - yynn3304 = 1 - for _, b := range yyq3304 { + yynn3305 = 0 + for _, b := range yyq3305 { if b { - yynn3304++ + yynn3305++ } } - r.EncodeMapStart(yynn3304) - yynn3304 = 0 + r.EncodeMapStart(yynn3305) + yynn3305 = 0 } - if yyr3304 || yy2arr3304 { + if yyr3305 || yy2arr3305 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3304[0] { - yym3306 := z.EncBinary() - _ = yym3306 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3304[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyq3305[0] { yym3307 := z.EncBinary() _ = yym3307 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } - } - } - if yyr3304 || yy2arr3304 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3304[1] { - yym3309 := z.EncBinary() - _ = yym3309 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3304[1] { + if yyq3305[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3308 := z.EncBinary() + _ = yym3308 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3305 || yy2arr3305 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3305[1] { yym3310 := z.EncBinary() _ = yym3310 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } - } - } - if yyr3304 || yy2arr3304 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3304[2] { - yy3312 := &x.ListMeta - yym3313 := z.EncBinary() - _ = yym3313 - if false { - } else if z.HasExtensions() && z.EncExt(yy3312) { - } else { - z.EncFallback(yy3312) - } - } else { - r.EncodeNil() - } - } else { - if yyq3304[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3314 := &x.ListMeta - yym3315 := z.EncBinary() - _ = yym3315 - if false { - } else if z.HasExtensions() && z.EncExt(yy3314) { - } else { - z.EncFallback(yy3314) - } - } - } - if yyr3304 || yy2arr3304 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if x.Items == nil { - r.EncodeNil() - } else { - yym3317 := z.EncBinary() - _ = yym3317 - if false { - } else { - h.encSliceNode(([]Node)(x.Items), e) - } - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("items")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Items == nil { - r.EncodeNil() - } else { - yym3318 := z.EncBinary() - _ = yym3318 - if false { - } else { - h.encSliceNode(([]Node)(x.Items), e) - } - } - } - if yyr3304 || yy2arr3304 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *NodeList) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3319 := z.DecBinary() - _ = yym3319 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3320 := r.ContainerType() - if yyct3320 == codecSelferValueTypeMap1234 { - yyl3320 := r.ReadMapStart() - if yyl3320 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3320, d) - } - } else if yyct3320 == codecSelferValueTypeArray1234 { - yyl3320 := r.ReadArrayStart() - if yyl3320 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3320, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3321Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3321Slc - var yyhl3321 bool = l >= 0 - for yyj3321 := 0; ; yyj3321++ { - if yyhl3321 { - if yyj3321 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3321Slc = r.DecodeBytes(yys3321Slc, true, true) - yys3321 := string(yys3321Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3321 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "metadata": - if r.TryDecodeAsNil() { - x.ListMeta = pkg2_v1.ListMeta{} - } else { - yyv3324 := &x.ListMeta - yym3325 := z.DecBinary() - _ = yym3325 - if false { - } else if z.HasExtensions() && z.DecExt(yyv3324) { - } else { - z.DecFallback(yyv3324, false) - } - } - case "items": - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv3326 := &x.Items - yym3327 := z.DecBinary() - _ = yym3327 - if false { - } else { - h.decSliceNode((*[]Node)(yyv3326), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3321) - } // end switch yys3321 - } // end for yyj3321 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3328 int - var yyb3328 bool - var yyhl3328 bool = l >= 0 - yyj3328++ - if yyhl3328 { - yyb3328 = yyj3328 > l - } else { - yyb3328 = r.CheckBreak() - } - if yyb3328 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj3328++ - if yyhl3328 { - yyb3328 = yyj3328 > l - } else { - yyb3328 = r.CheckBreak() - } - if yyb3328 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj3328++ - if yyhl3328 { - yyb3328 = yyj3328 > l - } else { - yyb3328 = r.CheckBreak() - } - if yyb3328 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ListMeta = pkg2_v1.ListMeta{} - } else { - yyv3331 := &x.ListMeta - yym3332 := z.DecBinary() - _ = yym3332 - if false { - } else if z.HasExtensions() && z.DecExt(yyv3331) { - } else { - z.DecFallback(yyv3331, false) - } - } - yyj3328++ - if yyhl3328 { - yyb3328 = yyj3328 > l - } else { - yyb3328 = r.CheckBreak() - } - if yyb3328 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv3333 := &x.Items - yym3334 := z.DecBinary() - _ = yym3334 - if false { - } else { - h.decSliceNode((*[]Node)(yyv3333), d) - } - } - for { - yyj3328++ - if yyhl3328 { - yyb3328 = yyj3328 > l - } else { - yyb3328 = r.CheckBreak() - } - if yyb3328 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3328-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x FinalizerName) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - yym3335 := z.EncBinary() - _ = yym3335 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x)) - } -} - -func (x *FinalizerName) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3336 := z.DecBinary() - _ = yym3336 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - *((*string)(x)) = r.DecodeString() - } -} - -func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3337 := z.EncBinary() - _ = yym3337 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3338 := !z.EncBinary() - yy2arr3338 := z.EncBasicHandle().StructToArray - var yyq3338 [1]bool - _, _, _ = yysep3338, yyq3338, yy2arr3338 - const yyr3338 bool = false - yyq3338[0] = len(x.Finalizers) != 0 - var yynn3338 int - if yyr3338 || yy2arr3338 { - r.EncodeArrayStart(1) - } else { - yynn3338 = 0 - for _, b := range yyq3338 { - if b { - yynn3338++ - } - } - r.EncodeMapStart(yynn3338) - yynn3338 = 0 - } - if yyr3338 || yy2arr3338 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3338[0] { - if x.Finalizers == nil { - r.EncodeNil() - } else { - yym3340 := z.EncBinary() - _ = yym3340 - if false { - } else { - h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq3338[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("finalizers")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Finalizers == nil { - r.EncodeNil() - } else { - yym3341 := z.EncBinary() - _ = yym3341 - if false { - } else { - h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) - } - } - } - } - if yyr3338 || yy2arr3338 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *NamespaceSpec) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3342 := z.DecBinary() - _ = yym3342 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3343 := r.ContainerType() - if yyct3343 == codecSelferValueTypeMap1234 { - yyl3343 := r.ReadMapStart() - if yyl3343 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3343, d) - } - } else if yyct3343 == codecSelferValueTypeArray1234 { - yyl3343 := r.ReadArrayStart() - if yyl3343 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3343, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3344Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3344Slc - var yyhl3344 bool = l >= 0 - for yyj3344 := 0; ; yyj3344++ { - if yyhl3344 { - if yyj3344 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3344Slc = r.DecodeBytes(yys3344Slc, true, true) - yys3344 := string(yys3344Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3344 { - case "finalizers": - if r.TryDecodeAsNil() { - x.Finalizers = nil - } else { - yyv3345 := &x.Finalizers - yym3346 := z.DecBinary() - _ = yym3346 - if false { - } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv3345), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3344) - } // end switch yys3344 - } // end for yyj3344 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3347 int - var yyb3347 bool - var yyhl3347 bool = l >= 0 - yyj3347++ - if yyhl3347 { - yyb3347 = yyj3347 > l - } else { - yyb3347 = r.CheckBreak() - } - if yyb3347 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Finalizers = nil - } else { - yyv3348 := &x.Finalizers - yym3349 := z.DecBinary() - _ = yym3349 - if false { - } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv3348), d) - } - } - for { - yyj3347++ - if yyhl3347 { - yyb3347 = yyj3347 > l - } else { - yyb3347 = r.CheckBreak() - } - if yyb3347 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3347-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *NamespaceStatus) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3350 := z.EncBinary() - _ = yym3350 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3351 := !z.EncBinary() - yy2arr3351 := z.EncBasicHandle().StructToArray - var yyq3351 [1]bool - _, _, _ = yysep3351, yyq3351, yy2arr3351 - const yyr3351 bool = false - yyq3351[0] = x.Phase != "" - var yynn3351 int - if yyr3351 || yy2arr3351 { - r.EncodeArrayStart(1) - } else { - yynn3351 = 0 - for _, b := range yyq3351 { - if b { - yynn3351++ - } - } - r.EncodeMapStart(yynn3351) - yynn3351 = 0 - } - if yyr3351 || yy2arr3351 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3351[0] { - x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3351[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("phase")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - x.Phase.CodecEncodeSelf(e) - } - } - if yyr3351 || yy2arr3351 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *NamespaceStatus) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3353 := z.DecBinary() - _ = yym3353 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3354 := r.ContainerType() - if yyct3354 == codecSelferValueTypeMap1234 { - yyl3354 := r.ReadMapStart() - if yyl3354 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3354, d) - } - } else if yyct3354 == codecSelferValueTypeArray1234 { - yyl3354 := r.ReadArrayStart() - if yyl3354 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3354, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3355Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3355Slc - var yyhl3355 bool = l >= 0 - for yyj3355 := 0; ; yyj3355++ { - if yyhl3355 { - if yyj3355 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3355Slc = r.DecodeBytes(yys3355Slc, true, true) - yys3355 := string(yys3355Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3355 { - case "phase": - if r.TryDecodeAsNil() { - x.Phase = "" - } else { - x.Phase = NamespacePhase(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3355) - } // end switch yys3355 - } // end for yyj3355 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3357 int - var yyb3357 bool - var yyhl3357 bool = l >= 0 - yyj3357++ - if yyhl3357 { - yyb3357 = yyj3357 > l - } else { - yyb3357 = r.CheckBreak() - } - if yyb3357 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Phase = "" - } else { - x.Phase = NamespacePhase(r.DecodeString()) - } - for { - yyj3357++ - if yyhl3357 { - yyb3357 = yyj3357 > l - } else { - yyb3357 = r.CheckBreak() - } - if yyb3357 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3357-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x NamespacePhase) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - yym3359 := z.EncBinary() - _ = yym3359 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x)) - } -} - -func (x *NamespacePhase) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3360 := z.DecBinary() - _ = yym3360 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - *((*string)(x)) = r.DecodeString() - } -} - -func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3361 := z.EncBinary() - _ = yym3361 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3362 := !z.EncBinary() - yy2arr3362 := z.EncBasicHandle().StructToArray - var yyq3362 [5]bool - _, _, _ = yysep3362, yyq3362, yy2arr3362 - const yyr3362 bool = false - yyq3362[0] = x.Kind != "" - yyq3362[1] = x.APIVersion != "" - yyq3362[2] = true - yyq3362[3] = true - yyq3362[4] = true - var yynn3362 int - if yyr3362 || yy2arr3362 { - r.EncodeArrayStart(5) - } else { - yynn3362 = 0 - for _, b := range yyq3362 { - if b { - yynn3362++ - } - } - r.EncodeMapStart(yynn3362) - yynn3362 = 0 - } - if yyr3362 || yy2arr3362 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3362[0] { - yym3364 := z.EncBinary() - _ = yym3364 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3362[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3365 := z.EncBinary() - _ = yym3365 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3362 || yy2arr3362 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3362[1] { - yym3367 := z.EncBinary() - _ = yym3367 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3362[1] { + if yyq3305[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3368 := z.EncBinary() - _ = yym3368 + yym3311 := z.EncBinary() + _ = yym3311 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3362 || yy2arr3362 { + if yyr3305 || yy2arr3305 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3362[2] { - yy3370 := &x.ObjectMeta - yy3370.CodecEncodeSelf(e) + if yyq3305[2] { + yy3313 := &x.ObjectMeta + yy3313.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3362[2] { + if yyq3305[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3371 := &x.ObjectMeta - yy3371.CodecEncodeSelf(e) + yy3314 := &x.ObjectMeta + yy3314.CodecEncodeSelf(e) } } - if yyr3362 || yy2arr3362 { + if yyr3305 || yy2arr3305 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3362[3] { - yy3373 := &x.Spec - yy3373.CodecEncodeSelf(e) + if yyq3305[3] { + yy3316 := &x.Spec + yy3316.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3362[3] { + if yyq3305[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3374 := &x.Spec - yy3374.CodecEncodeSelf(e) + yy3317 := &x.Spec + yy3317.CodecEncodeSelf(e) } } - if yyr3362 || yy2arr3362 { + if yyr3305 || yy2arr3305 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3362[4] { - yy3376 := &x.Status - yy3376.CodecEncodeSelf(e) + if yyq3305[4] { + yy3319 := &x.Status + yy3319.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3362[4] { + if yyq3305[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3377 := &x.Status - yy3377.CodecEncodeSelf(e) + yy3320 := &x.Status + yy3320.CodecEncodeSelf(e) } } - if yyr3362 || yy2arr3362 { + if yyr3305 || yy2arr3305 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43151,29 +42526,29 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { } } -func (x *Namespace) CodecDecodeSelf(d *codec1978.Decoder) { +func (x *Node) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3378 := z.DecBinary() - _ = yym3378 + yym3321 := z.DecBinary() + _ = yym3321 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3379 := r.ContainerType() - if yyct3379 == codecSelferValueTypeMap1234 { - yyl3379 := r.ReadMapStart() - if yyl3379 == 0 { + yyct3322 := r.ContainerType() + if yyct3322 == codecSelferValueTypeMap1234 { + yyl3322 := r.ReadMapStart() + if yyl3322 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3379, d) + x.codecDecodeSelfFromMap(yyl3322, d) } - } else if yyct3379 == codecSelferValueTypeArray1234 { - yyl3379 := r.ReadArrayStart() - if yyl3379 == 0 { + } else if yyct3322 == codecSelferValueTypeArray1234 { + yyl3322 := r.ReadArrayStart() + if yyl3322 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3379, d) + x.codecDecodeSelfFromArray(yyl3322, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43181,16 +42556,16 @@ func (x *Namespace) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3380Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3380Slc - var yyhl3380 bool = l >= 0 - for yyj3380 := 0; ; yyj3380++ { - if yyhl3380 { - if yyj3380 >= l { + var yys3323Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3323Slc + var yyhl3323 bool = l >= 0 + for yyj3323 := 0; ; yyj3323++ { + if yyhl3323 { + if yyj3323 >= l { break } } else { @@ -43199,10 +42574,10 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3380Slc = r.DecodeBytes(yys3380Slc, true, true) - yys3380 := string(yys3380Slc) + yys3323Slc = r.DecodeBytes(yys3323Slc, true, true) + yys3323 := string(yys3323Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3380 { + switch yys3323 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43219,44 +42594,44 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3383 := &x.ObjectMeta - yyv3383.CodecDecodeSelf(d) + yyv3326 := &x.ObjectMeta + yyv3326.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { - x.Spec = NamespaceSpec{} + x.Spec = NodeSpec{} } else { - yyv3384 := &x.Spec - yyv3384.CodecDecodeSelf(d) + yyv3327 := &x.Spec + yyv3327.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { - x.Status = NamespaceStatus{} + x.Status = NodeStatus{} } else { - yyv3385 := &x.Status - yyv3385.CodecDecodeSelf(d) + yyv3328 := &x.Status + yyv3328.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3380) - } // end switch yys3380 - } // end for yyj3380 + z.DecStructFieldNotFound(-1, yys3323) + } // end switch yys3323 + } // end for yyj3323 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } -func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { +func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3386 int - var yyb3386 bool - var yyhl3386 bool = l >= 0 - yyj3386++ - if yyhl3386 { - yyb3386 = yyj3386 > l + var yyj3329 int + var yyb3329 bool + var yyhl3329 bool = l >= 0 + yyj3329++ + if yyhl3329 { + yyb3329 = yyj3329 > l } else { - yyb3386 = r.CheckBreak() + yyb3329 = r.CheckBreak() } - if yyb3386 { + if yyb3329 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43266,13 +42641,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3386++ - if yyhl3386 { - yyb3386 = yyj3386 > l + yyj3329++ + if yyhl3329 { + yyb3329 = yyj3329 > l } else { - yyb3386 = r.CheckBreak() + yyb3329 = r.CheckBreak() } - if yyb3386 { + if yyb3329 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43282,13 +42657,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3386++ - if yyhl3386 { - yyb3386 = yyj3386 > l + yyj3329++ + if yyhl3329 { + yyb3329 = yyj3329 > l } else { - yyb3386 = r.CheckBreak() + yyb3329 = r.CheckBreak() } - if yyb3386 { + if yyb3329 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43296,97 +42671,97 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3389 := &x.ObjectMeta - yyv3389.CodecDecodeSelf(d) + yyv3332 := &x.ObjectMeta + yyv3332.CodecDecodeSelf(d) } - yyj3386++ - if yyhl3386 { - yyb3386 = yyj3386 > l + yyj3329++ + if yyhl3329 { + yyb3329 = yyj3329 > l } else { - yyb3386 = r.CheckBreak() + yyb3329 = r.CheckBreak() } - if yyb3386 { + if yyb3329 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Spec = NamespaceSpec{} + x.Spec = NodeSpec{} } else { - yyv3390 := &x.Spec - yyv3390.CodecDecodeSelf(d) + yyv3333 := &x.Spec + yyv3333.CodecDecodeSelf(d) } - yyj3386++ - if yyhl3386 { - yyb3386 = yyj3386 > l + yyj3329++ + if yyhl3329 { + yyb3329 = yyj3329 > l } else { - yyb3386 = r.CheckBreak() + yyb3329 = r.CheckBreak() } - if yyb3386 { + if yyb3329 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Status = NamespaceStatus{} + x.Status = NodeStatus{} } else { - yyv3391 := &x.Status - yyv3391.CodecDecodeSelf(d) + yyv3334 := &x.Status + yyv3334.CodecDecodeSelf(d) } for { - yyj3386++ - if yyhl3386 { - yyb3386 = yyj3386 > l + yyj3329++ + if yyhl3329 { + yyb3329 = yyj3329 > l } else { - yyb3386 = r.CheckBreak() + yyb3329 = r.CheckBreak() } - if yyb3386 { + if yyb3329 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3386-1, "") + z.DecStructFieldNotFound(yyj3329-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { +func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r if x == nil { r.EncodeNil() } else { - yym3392 := z.EncBinary() - _ = yym3392 + yym3335 := z.EncBinary() + _ = yym3335 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3393 := !z.EncBinary() - yy2arr3393 := z.EncBasicHandle().StructToArray - var yyq3393 [4]bool - _, _, _ = yysep3393, yyq3393, yy2arr3393 - const yyr3393 bool = false - yyq3393[0] = x.Kind != "" - yyq3393[1] = x.APIVersion != "" - yyq3393[2] = true - var yynn3393 int - if yyr3393 || yy2arr3393 { + yysep3336 := !z.EncBinary() + yy2arr3336 := z.EncBasicHandle().StructToArray + var yyq3336 [4]bool + _, _, _ = yysep3336, yyq3336, yy2arr3336 + const yyr3336 bool = false + yyq3336[0] = x.Kind != "" + yyq3336[1] = x.APIVersion != "" + yyq3336[2] = true + var yynn3336 int + if yyr3336 || yy2arr3336 { r.EncodeArrayStart(4) } else { - yynn3393 = 1 - for _, b := range yyq3393 { + yynn3336 = 1 + for _, b := range yyq3336 { if b { - yynn3393++ + yynn3336++ } } - r.EncodeMapStart(yynn3393) - yynn3393 = 0 + r.EncodeMapStart(yynn3336) + yynn3336 = 0 } - if yyr3393 || yy2arr3393 { + if yyr3336 || yy2arr3336 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3393[0] { - yym3395 := z.EncBinary() - _ = yym3395 + if yyq3336[0] { + yym3338 := z.EncBinary() + _ = yym3338 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -43395,23 +42770,23 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3393[0] { + if yyq3336[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3396 := z.EncBinary() - _ = yym3396 + yym3339 := z.EncBinary() + _ = yym3339 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3393 || yy2arr3393 { + if yyr3336 || yy2arr3336 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3393[1] { - yym3398 := z.EncBinary() - _ = yym3398 + if yyq3336[1] { + yym3341 := z.EncBinary() + _ = yym3341 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43420,57 +42795,57 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3393[1] { + if yyq3336[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3399 := z.EncBinary() - _ = yym3399 + yym3342 := z.EncBinary() + _ = yym3342 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3393 || yy2arr3393 { + if yyr3336 || yy2arr3336 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3393[2] { - yy3401 := &x.ListMeta - yym3402 := z.EncBinary() - _ = yym3402 + if yyq3336[2] { + yy3344 := &x.ListMeta + yym3345 := z.EncBinary() + _ = yym3345 if false { - } else if z.HasExtensions() && z.EncExt(yy3401) { + } else if z.HasExtensions() && z.EncExt(yy3344) { } else { - z.EncFallback(yy3401) + z.EncFallback(yy3344) } } else { r.EncodeNil() } } else { - if yyq3393[2] { + if yyq3336[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3403 := &x.ListMeta - yym3404 := z.EncBinary() - _ = yym3404 + yy3346 := &x.ListMeta + yym3347 := z.EncBinary() + _ = yym3347 if false { - } else if z.HasExtensions() && z.EncExt(yy3403) { + } else if z.HasExtensions() && z.EncExt(yy3346) { } else { - z.EncFallback(yy3403) + z.EncFallback(yy3346) } } } - if yyr3393 || yy2arr3393 { + if yyr3336 || yy2arr3336 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3406 := z.EncBinary() - _ = yym3406 + yym3349 := z.EncBinary() + _ = yym3349 if false { } else { - h.encSliceNamespace(([]Namespace)(x.Items), e) + h.encSliceNode(([]Node)(x.Items), e) } } } else { @@ -43480,15 +42855,15 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3407 := z.EncBinary() - _ = yym3407 + yym3350 := z.EncBinary() + _ = yym3350 if false { } else { - h.encSliceNamespace(([]Namespace)(x.Items), e) + h.encSliceNode(([]Node)(x.Items), e) } } } - if yyr3393 || yy2arr3393 { + if yyr3336 || yy2arr3336 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43497,29 +42872,29 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { } } -func (x *NamespaceList) CodecDecodeSelf(d *codec1978.Decoder) { +func (x *NodeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3408 := z.DecBinary() - _ = yym3408 + yym3351 := z.DecBinary() + _ = yym3351 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3409 := r.ContainerType() - if yyct3409 == codecSelferValueTypeMap1234 { - yyl3409 := r.ReadMapStart() - if yyl3409 == 0 { + yyct3352 := r.ContainerType() + if yyct3352 == codecSelferValueTypeMap1234 { + yyl3352 := r.ReadMapStart() + if yyl3352 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3409, d) + x.codecDecodeSelfFromMap(yyl3352, d) } - } else if yyct3409 == codecSelferValueTypeArray1234 { - yyl3409 := r.ReadArrayStart() - if yyl3409 == 0 { + } else if yyct3352 == codecSelferValueTypeArray1234 { + yyl3352 := r.ReadArrayStart() + if yyl3352 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3409, d) + x.codecDecodeSelfFromArray(yyl3352, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43527,16 +42902,16 @@ func (x *NamespaceList) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3410Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3410Slc - var yyhl3410 bool = l >= 0 - for yyj3410 := 0; ; yyj3410++ { - if yyhl3410 { - if yyj3410 >= l { + var yys3353Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3353Slc + var yyhl3353 bool = l >= 0 + for yyj3353 := 0; ; yyj3353++ { + if yyhl3353 { + if yyj3353 >= l { break } } else { @@ -43545,10 +42920,10 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3410Slc = r.DecodeBytes(yys3410Slc, true, true) - yys3410 := string(yys3410Slc) + yys3353Slc = r.DecodeBytes(yys3353Slc, true, true) + yys3353 := string(yys3353Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3410 { + switch yys3353 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43565,48 +42940,48 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv3413 := &x.ListMeta - yym3414 := z.DecBinary() - _ = yym3414 + yyv3356 := &x.ListMeta + yym3357 := z.DecBinary() + _ = yym3357 if false { - } else if z.HasExtensions() && z.DecExt(yyv3413) { + } else if z.HasExtensions() && z.DecExt(yyv3356) { } else { - z.DecFallback(yyv3413, false) + z.DecFallback(yyv3356, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3415 := &x.Items - yym3416 := z.DecBinary() - _ = yym3416 + yyv3358 := &x.Items + yym3359 := z.DecBinary() + _ = yym3359 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv3415), d) + h.decSliceNode((*[]Node)(yyv3358), d) } } default: - z.DecStructFieldNotFound(-1, yys3410) - } // end switch yys3410 - } // end for yyj3410 + z.DecStructFieldNotFound(-1, yys3353) + } // end switch yys3353 + } // end for yyj3353 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } -func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { +func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3417 int - var yyb3417 bool - var yyhl3417 bool = l >= 0 - yyj3417++ - if yyhl3417 { - yyb3417 = yyj3417 > l + var yyj3360 int + var yyb3360 bool + var yyhl3360 bool = l >= 0 + yyj3360++ + if yyhl3360 { + yyb3360 = yyj3360 > l } else { - yyb3417 = r.CheckBreak() + yyb3360 = r.CheckBreak() } - if yyb3417 { + if yyb3360 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43616,13 +42991,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3417++ - if yyhl3417 { - yyb3417 = yyj3417 > l + yyj3360++ + if yyhl3360 { + yyb3360 = yyj3360 > l } else { - yyb3417 = r.CheckBreak() + yyb3360 = r.CheckBreak() } - if yyb3417 { + if yyb3360 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43632,13 +43007,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3417++ - if yyhl3417 { - yyb3417 = yyj3417 > l + yyj3360++ + if yyhl3360 { + yyb3360 = yyj3360 > l } else { - yyb3417 = r.CheckBreak() + yyb3360 = r.CheckBreak() } - if yyb3417 { + if yyb3360 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43646,22 +43021,22 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv3420 := &x.ListMeta - yym3421 := z.DecBinary() - _ = yym3421 + yyv3363 := &x.ListMeta + yym3364 := z.DecBinary() + _ = yym3364 if false { - } else if z.HasExtensions() && z.DecExt(yyv3420) { + } else if z.HasExtensions() && z.DecExt(yyv3363) { } else { - z.DecFallback(yyv3420, false) + z.DecFallback(yyv3363, false) } } - yyj3417++ - if yyhl3417 { - yyb3417 = yyj3417 > l + yyj3360++ + if yyhl3360 { + yyb3360 = yyj3360 > l } else { - yyb3417 = r.CheckBreak() + yyb3360 = r.CheckBreak() } - if yyb3417 { + if yyb3360 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43669,31 +43044,774 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3422 := &x.Items - yym3423 := z.DecBinary() - _ = yym3423 + yyv3365 := &x.Items + yym3366 := z.DecBinary() + _ = yym3366 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv3422), d) + h.decSliceNode((*[]Node)(yyv3365), d) } } for { - yyj3417++ - if yyhl3417 { - yyb3417 = yyj3417 > l + yyj3360++ + if yyhl3360 { + yyb3360 = yyj3360 > l } else { - yyb3417 = r.CheckBreak() + yyb3360 = r.CheckBreak() } - if yyb3417 { + if yyb3360 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3417-1, "") + z.DecStructFieldNotFound(yyj3360-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { +func (x FinalizerName) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + yym3367 := z.EncBinary() + _ = yym3367 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x)) + } +} + +func (x *FinalizerName) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3368 := z.DecBinary() + _ = yym3368 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + *((*string)(x)) = r.DecodeString() + } +} + +func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3369 := z.EncBinary() + _ = yym3369 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3370 := !z.EncBinary() + yy2arr3370 := z.EncBasicHandle().StructToArray + var yyq3370 [1]bool + _, _, _ = yysep3370, yyq3370, yy2arr3370 + const yyr3370 bool = false + yyq3370[0] = len(x.Finalizers) != 0 + var yynn3370 int + if yyr3370 || yy2arr3370 { + r.EncodeArrayStart(1) + } else { + yynn3370 = 0 + for _, b := range yyq3370 { + if b { + yynn3370++ + } + } + r.EncodeMapStart(yynn3370) + yynn3370 = 0 + } + if yyr3370 || yy2arr3370 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3370[0] { + if x.Finalizers == nil { + r.EncodeNil() + } else { + yym3372 := z.EncBinary() + _ = yym3372 + if false { + } else { + h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq3370[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("finalizers")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Finalizers == nil { + r.EncodeNil() + } else { + yym3373 := z.EncBinary() + _ = yym3373 + if false { + } else { + h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) + } + } + } + } + if yyr3370 || yy2arr3370 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *NamespaceSpec) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3374 := z.DecBinary() + _ = yym3374 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3375 := r.ContainerType() + if yyct3375 == codecSelferValueTypeMap1234 { + yyl3375 := r.ReadMapStart() + if yyl3375 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3375, d) + } + } else if yyct3375 == codecSelferValueTypeArray1234 { + yyl3375 := r.ReadArrayStart() + if yyl3375 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3375, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys3376Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3376Slc + var yyhl3376 bool = l >= 0 + for yyj3376 := 0; ; yyj3376++ { + if yyhl3376 { + if yyj3376 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3376Slc = r.DecodeBytes(yys3376Slc, true, true) + yys3376 := string(yys3376Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3376 { + case "finalizers": + if r.TryDecodeAsNil() { + x.Finalizers = nil + } else { + yyv3377 := &x.Finalizers + yym3378 := z.DecBinary() + _ = yym3378 + if false { + } else { + h.decSliceFinalizerName((*[]FinalizerName)(yyv3377), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3376) + } // end switch yys3376 + } // end for yyj3376 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3379 int + var yyb3379 bool + var yyhl3379 bool = l >= 0 + yyj3379++ + if yyhl3379 { + yyb3379 = yyj3379 > l + } else { + yyb3379 = r.CheckBreak() + } + if yyb3379 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Finalizers = nil + } else { + yyv3380 := &x.Finalizers + yym3381 := z.DecBinary() + _ = yym3381 + if false { + } else { + h.decSliceFinalizerName((*[]FinalizerName)(yyv3380), d) + } + } + for { + yyj3379++ + if yyhl3379 { + yyb3379 = yyj3379 > l + } else { + yyb3379 = r.CheckBreak() + } + if yyb3379 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3379-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *NamespaceStatus) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3382 := z.EncBinary() + _ = yym3382 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3383 := !z.EncBinary() + yy2arr3383 := z.EncBasicHandle().StructToArray + var yyq3383 [1]bool + _, _, _ = yysep3383, yyq3383, yy2arr3383 + const yyr3383 bool = false + yyq3383[0] = x.Phase != "" + var yynn3383 int + if yyr3383 || yy2arr3383 { + r.EncodeArrayStart(1) + } else { + yynn3383 = 0 + for _, b := range yyq3383 { + if b { + yynn3383++ + } + } + r.EncodeMapStart(yynn3383) + yynn3383 = 0 + } + if yyr3383 || yy2arr3383 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3383[0] { + x.Phase.CodecEncodeSelf(e) + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3383[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("phase")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + x.Phase.CodecEncodeSelf(e) + } + } + if yyr3383 || yy2arr3383 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *NamespaceStatus) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3385 := z.DecBinary() + _ = yym3385 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3386 := r.ContainerType() + if yyct3386 == codecSelferValueTypeMap1234 { + yyl3386 := r.ReadMapStart() + if yyl3386 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3386, d) + } + } else if yyct3386 == codecSelferValueTypeArray1234 { + yyl3386 := r.ReadArrayStart() + if yyl3386 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3386, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys3387Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3387Slc + var yyhl3387 bool = l >= 0 + for yyj3387 := 0; ; yyj3387++ { + if yyhl3387 { + if yyj3387 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3387Slc = r.DecodeBytes(yys3387Slc, true, true) + yys3387 := string(yys3387Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3387 { + case "phase": + if r.TryDecodeAsNil() { + x.Phase = "" + } else { + x.Phase = NamespacePhase(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3387) + } // end switch yys3387 + } // end for yyj3387 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3389 int + var yyb3389 bool + var yyhl3389 bool = l >= 0 + yyj3389++ + if yyhl3389 { + yyb3389 = yyj3389 > l + } else { + yyb3389 = r.CheckBreak() + } + if yyb3389 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Phase = "" + } else { + x.Phase = NamespacePhase(r.DecodeString()) + } + for { + yyj3389++ + if yyhl3389 { + yyb3389 = yyj3389 > l + } else { + yyb3389 = r.CheckBreak() + } + if yyb3389 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3389-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x NamespacePhase) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + yym3391 := z.EncBinary() + _ = yym3391 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x)) + } +} + +func (x *NamespacePhase) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3392 := z.DecBinary() + _ = yym3392 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + *((*string)(x)) = r.DecodeString() + } +} + +func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3393 := z.EncBinary() + _ = yym3393 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3394 := !z.EncBinary() + yy2arr3394 := z.EncBasicHandle().StructToArray + var yyq3394 [5]bool + _, _, _ = yysep3394, yyq3394, yy2arr3394 + const yyr3394 bool = false + yyq3394[0] = x.Kind != "" + yyq3394[1] = x.APIVersion != "" + yyq3394[2] = true + yyq3394[3] = true + yyq3394[4] = true + var yynn3394 int + if yyr3394 || yy2arr3394 { + r.EncodeArrayStart(5) + } else { + yynn3394 = 0 + for _, b := range yyq3394 { + if b { + yynn3394++ + } + } + r.EncodeMapStart(yynn3394) + yynn3394 = 0 + } + if yyr3394 || yy2arr3394 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3394[0] { + yym3396 := z.EncBinary() + _ = yym3396 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3394[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3397 := z.EncBinary() + _ = yym3397 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3394 || yy2arr3394 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3394[1] { + yym3399 := z.EncBinary() + _ = yym3399 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3394[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3400 := z.EncBinary() + _ = yym3400 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr3394 || yy2arr3394 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3394[2] { + yy3402 := &x.ObjectMeta + yy3402.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq3394[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3403 := &x.ObjectMeta + yy3403.CodecEncodeSelf(e) + } + } + if yyr3394 || yy2arr3394 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3394[3] { + yy3405 := &x.Spec + yy3405.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq3394[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("spec")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3406 := &x.Spec + yy3406.CodecEncodeSelf(e) + } + } + if yyr3394 || yy2arr3394 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3394[4] { + yy3408 := &x.Status + yy3408.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq3394[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("status")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3409 := &x.Status + yy3409.CodecEncodeSelf(e) + } + } + if yyr3394 || yy2arr3394 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *Namespace) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3410 := z.DecBinary() + _ = yym3410 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3411 := r.ContainerType() + if yyct3411 == codecSelferValueTypeMap1234 { + yyl3411 := r.ReadMapStart() + if yyl3411 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3411, d) + } + } else if yyct3411 == codecSelferValueTypeArray1234 { + yyl3411 := r.ReadArrayStart() + if yyl3411 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3411, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys3412Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3412Slc + var yyhl3412 bool = l >= 0 + for yyj3412 := 0; ; yyj3412++ { + if yyhl3412 { + if yyj3412 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3412Slc = r.DecodeBytes(yys3412Slc, true, true) + yys3412 := string(yys3412Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3412 { + case "kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "metadata": + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv3415 := &x.ObjectMeta + yyv3415.CodecDecodeSelf(d) + } + case "spec": + if r.TryDecodeAsNil() { + x.Spec = NamespaceSpec{} + } else { + yyv3416 := &x.Spec + yyv3416.CodecDecodeSelf(d) + } + case "status": + if r.TryDecodeAsNil() { + x.Status = NamespaceStatus{} + } else { + yyv3417 := &x.Status + yyv3417.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys3412) + } // end switch yys3412 + } // end for yyj3412 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3418 int + var yyb3418 bool + var yyhl3418 bool = l >= 0 + yyj3418++ + if yyhl3418 { + yyb3418 = yyj3418 > l + } else { + yyb3418 = r.CheckBreak() + } + if yyb3418 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj3418++ + if yyhl3418 { + yyb3418 = yyj3418 > l + } else { + yyb3418 = r.CheckBreak() + } + if yyb3418 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj3418++ + if yyhl3418 { + yyb3418 = yyj3418 > l + } else { + yyb3418 = r.CheckBreak() + } + if yyb3418 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv3421 := &x.ObjectMeta + yyv3421.CodecDecodeSelf(d) + } + yyj3418++ + if yyhl3418 { + yyb3418 = yyj3418 > l + } else { + yyb3418 = r.CheckBreak() + } + if yyb3418 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Spec = NamespaceSpec{} + } else { + yyv3422 := &x.Spec + yyv3422.CodecDecodeSelf(d) + } + yyj3418++ + if yyhl3418 { + yyb3418 = yyj3418 > l + } else { + yyb3418 = r.CheckBreak() + } + if yyb3418 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Status = NamespaceStatus{} + } else { + yyv3423 := &x.Status + yyv3423.CodecDecodeSelf(d) + } + for { + yyj3418++ + if yyhl3418 { + yyb3418 = yyj3418 > l + } else { + yyb3418 = r.CheckBreak() + } + if yyb3418 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3418-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -43779,8 +43897,14 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { if yyr3425 || yy2arr3425 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if yyq3425[2] { - yy3433 := &x.ObjectMeta - yy3433.CodecEncodeSelf(e) + yy3433 := &x.ListMeta + yym3434 := z.EncBinary() + _ = yym3434 + if false { + } else if z.HasExtensions() && z.EncExt(yy3433) { + } else { + z.EncFallback(yy3433) + } } else { r.EncodeNil() } @@ -43789,22 +43913,360 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3434 := &x.ObjectMeta - yy3434.CodecEncodeSelf(e) + yy3435 := &x.ListMeta + yym3436 := z.EncBinary() + _ = yym3436 + if false { + } else if z.HasExtensions() && z.EncExt(yy3435) { + } else { + z.EncFallback(yy3435) + } } } if yyr3425 || yy2arr3425 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3436 := &x.Target - yy3436.CodecEncodeSelf(e) + if x.Items == nil { + r.EncodeNil() + } else { + yym3438 := z.EncBinary() + _ = yym3438 + if false { + } else { + h.encSliceNamespace(([]Namespace)(x.Items), e) + } + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("items")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Items == nil { + r.EncodeNil() + } else { + yym3439 := z.EncBinary() + _ = yym3439 + if false { + } else { + h.encSliceNamespace(([]Namespace)(x.Items), e) + } + } + } + if yyr3425 || yy2arr3425 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *NamespaceList) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3440 := z.DecBinary() + _ = yym3440 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3441 := r.ContainerType() + if yyct3441 == codecSelferValueTypeMap1234 { + yyl3441 := r.ReadMapStart() + if yyl3441 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3441, d) + } + } else if yyct3441 == codecSelferValueTypeArray1234 { + yyl3441 := r.ReadArrayStart() + if yyl3441 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3441, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys3442Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3442Slc + var yyhl3442 bool = l >= 0 + for yyj3442 := 0; ; yyj3442++ { + if yyhl3442 { + if yyj3442 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3442Slc = r.DecodeBytes(yys3442Slc, true, true) + yys3442 := string(yys3442Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3442 { + case "kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "metadata": + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_v1.ListMeta{} + } else { + yyv3445 := &x.ListMeta + yym3446 := z.DecBinary() + _ = yym3446 + if false { + } else if z.HasExtensions() && z.DecExt(yyv3445) { + } else { + z.DecFallback(yyv3445, false) + } + } + case "items": + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv3447 := &x.Items + yym3448 := z.DecBinary() + _ = yym3448 + if false { + } else { + h.decSliceNamespace((*[]Namespace)(yyv3447), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3442) + } // end switch yys3442 + } // end for yyj3442 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3449 int + var yyb3449 bool + var yyhl3449 bool = l >= 0 + yyj3449++ + if yyhl3449 { + yyb3449 = yyj3449 > l + } else { + yyb3449 = r.CheckBreak() + } + if yyb3449 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj3449++ + if yyhl3449 { + yyb3449 = yyj3449 > l + } else { + yyb3449 = r.CheckBreak() + } + if yyb3449 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj3449++ + if yyhl3449 { + yyb3449 = yyj3449 > l + } else { + yyb3449 = r.CheckBreak() + } + if yyb3449 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_v1.ListMeta{} + } else { + yyv3452 := &x.ListMeta + yym3453 := z.DecBinary() + _ = yym3453 + if false { + } else if z.HasExtensions() && z.DecExt(yyv3452) { + } else { + z.DecFallback(yyv3452, false) + } + } + yyj3449++ + if yyhl3449 { + yyb3449 = yyj3449 > l + } else { + yyb3449 = r.CheckBreak() + } + if yyb3449 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv3454 := &x.Items + yym3455 := z.DecBinary() + _ = yym3455 + if false { + } else { + h.decSliceNamespace((*[]Namespace)(yyv3454), d) + } + } + for { + yyj3449++ + if yyhl3449 { + yyb3449 = yyj3449 > l + } else { + yyb3449 = r.CheckBreak() + } + if yyb3449 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3449-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3456 := z.EncBinary() + _ = yym3456 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3457 := !z.EncBinary() + yy2arr3457 := z.EncBasicHandle().StructToArray + var yyq3457 [4]bool + _, _, _ = yysep3457, yyq3457, yy2arr3457 + const yyr3457 bool = false + yyq3457[0] = x.Kind != "" + yyq3457[1] = x.APIVersion != "" + yyq3457[2] = true + var yynn3457 int + if yyr3457 || yy2arr3457 { + r.EncodeArrayStart(4) + } else { + yynn3457 = 1 + for _, b := range yyq3457 { + if b { + yynn3457++ + } + } + r.EncodeMapStart(yynn3457) + yynn3457 = 0 + } + if yyr3457 || yy2arr3457 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3457[0] { + yym3459 := z.EncBinary() + _ = yym3459 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3457[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3460 := z.EncBinary() + _ = yym3460 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3457 || yy2arr3457 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3457[1] { + yym3462 := z.EncBinary() + _ = yym3462 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3457[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3463 := z.EncBinary() + _ = yym3463 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr3457 || yy2arr3457 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3457[2] { + yy3465 := &x.ObjectMeta + yy3465.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq3457[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3466 := &x.ObjectMeta + yy3466.CodecEncodeSelf(e) + } + } + if yyr3457 || yy2arr3457 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy3468 := &x.Target + yy3468.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("target")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3437 := &x.Target - yy3437.CodecEncodeSelf(e) + yy3469 := &x.Target + yy3469.CodecEncodeSelf(e) } - if yyr3425 || yy2arr3425 { + if yyr3457 || yy2arr3457 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43817,25 +44279,25 @@ func (x *Binding) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3438 := z.DecBinary() - _ = yym3438 + yym3470 := z.DecBinary() + _ = yym3470 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3439 := r.ContainerType() - if yyct3439 == codecSelferValueTypeMap1234 { - yyl3439 := r.ReadMapStart() - if yyl3439 == 0 { + yyct3471 := r.ContainerType() + if yyct3471 == codecSelferValueTypeMap1234 { + yyl3471 := r.ReadMapStart() + if yyl3471 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3439, d) + x.codecDecodeSelfFromMap(yyl3471, d) } - } else if yyct3439 == codecSelferValueTypeArray1234 { - yyl3439 := r.ReadArrayStart() - if yyl3439 == 0 { + } else if yyct3471 == codecSelferValueTypeArray1234 { + yyl3471 := r.ReadArrayStart() + if yyl3471 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3439, d) + x.codecDecodeSelfFromArray(yyl3471, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43847,12 +44309,12 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3440Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3440Slc - var yyhl3440 bool = l >= 0 - for yyj3440 := 0; ; yyj3440++ { - if yyhl3440 { - if yyj3440 >= l { + var yys3472Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3472Slc + var yyhl3472 bool = l >= 0 + for yyj3472 := 0; ; yyj3472++ { + if yyhl3472 { + if yyj3472 >= l { break } } else { @@ -43861,10 +44323,10 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3440Slc = r.DecodeBytes(yys3440Slc, true, true) - yys3440 := string(yys3440Slc) + yys3472Slc = r.DecodeBytes(yys3472Slc, true, true) + yys3472 := string(yys3472Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3440 { + switch yys3472 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43881,20 +44343,20 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3443 := &x.ObjectMeta - yyv3443.CodecDecodeSelf(d) + yyv3475 := &x.ObjectMeta + yyv3475.CodecDecodeSelf(d) } case "target": if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv3444 := &x.Target - yyv3444.CodecDecodeSelf(d) + yyv3476 := &x.Target + yyv3476.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3440) - } // end switch yys3440 - } // end for yyj3440 + z.DecStructFieldNotFound(-1, yys3472) + } // end switch yys3472 + } // end for yyj3472 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43902,16 +44364,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3445 int - var yyb3445 bool - var yyhl3445 bool = l >= 0 - yyj3445++ - if yyhl3445 { - yyb3445 = yyj3445 > l + var yyj3477 int + var yyb3477 bool + var yyhl3477 bool = l >= 0 + yyj3477++ + if yyhl3477 { + yyb3477 = yyj3477 > l } else { - yyb3445 = r.CheckBreak() + yyb3477 = r.CheckBreak() } - if yyb3445 { + if yyb3477 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43921,13 +44383,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3445++ - if yyhl3445 { - yyb3445 = yyj3445 > l + yyj3477++ + if yyhl3477 { + yyb3477 = yyj3477 > l } else { - yyb3445 = r.CheckBreak() + yyb3477 = r.CheckBreak() } - if yyb3445 { + if yyb3477 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43937,13 +44399,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3445++ - if yyhl3445 { - yyb3445 = yyj3445 > l + yyj3477++ + if yyhl3477 { + yyb3477 = yyj3477 > l } else { - yyb3445 = r.CheckBreak() + yyb3477 = r.CheckBreak() } - if yyb3445 { + if yyb3477 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43951,16 +44413,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3448 := &x.ObjectMeta - yyv3448.CodecDecodeSelf(d) + yyv3480 := &x.ObjectMeta + yyv3480.CodecDecodeSelf(d) } - yyj3445++ - if yyhl3445 { - yyb3445 = yyj3445 > l + yyj3477++ + if yyhl3477 { + yyb3477 = yyj3477 > l } else { - yyb3445 = r.CheckBreak() + yyb3477 = r.CheckBreak() } - if yyb3445 { + if yyb3477 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43968,21 +44430,21 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv3449 := &x.Target - yyv3449.CodecDecodeSelf(d) + yyv3481 := &x.Target + yyv3481.CodecDecodeSelf(d) } for { - yyj3445++ - if yyhl3445 { - yyb3445 = yyj3445 > l + yyj3477++ + if yyhl3477 { + yyb3477 = yyj3477 > l } else { - yyb3445 = r.CheckBreak() + yyb3477 = r.CheckBreak() } - if yyb3445 { + if yyb3477 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3445-1, "") + z.DecStructFieldNotFound(yyj3477-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43994,68 +44456,68 @@ func (x *Preconditions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3450 := z.EncBinary() - _ = yym3450 + yym3482 := z.EncBinary() + _ = yym3482 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3451 := !z.EncBinary() - yy2arr3451 := z.EncBasicHandle().StructToArray - var yyq3451 [1]bool - _, _, _ = yysep3451, yyq3451, yy2arr3451 - const yyr3451 bool = false - yyq3451[0] = x.UID != nil - var yynn3451 int - if yyr3451 || yy2arr3451 { + yysep3483 := !z.EncBinary() + yy2arr3483 := z.EncBasicHandle().StructToArray + var yyq3483 [1]bool + _, _, _ = yysep3483, yyq3483, yy2arr3483 + const yyr3483 bool = false + yyq3483[0] = x.UID != nil + var yynn3483 int + if yyr3483 || yy2arr3483 { r.EncodeArrayStart(1) } else { - yynn3451 = 0 - for _, b := range yyq3451 { + yynn3483 = 0 + for _, b := range yyq3483 { if b { - yynn3451++ + yynn3483++ } } - r.EncodeMapStart(yynn3451) - yynn3451 = 0 + r.EncodeMapStart(yynn3483) + yynn3483 = 0 } - if yyr3451 || yy2arr3451 { + if yyr3483 || yy2arr3483 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3451[0] { + if yyq3483[0] { if x.UID == nil { r.EncodeNil() } else { - yy3453 := *x.UID - yym3454 := z.EncBinary() - _ = yym3454 + yy3485 := *x.UID + yym3486 := z.EncBinary() + _ = yym3486 if false { - } else if z.HasExtensions() && z.EncExt(yy3453) { + } else if z.HasExtensions() && z.EncExt(yy3485) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy3453)) + r.EncodeString(codecSelferC_UTF81234, string(yy3485)) } } } else { r.EncodeNil() } } else { - if yyq3451[0] { + if yyq3483[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.UID == nil { r.EncodeNil() } else { - yy3455 := *x.UID - yym3456 := z.EncBinary() - _ = yym3456 + yy3487 := *x.UID + yym3488 := z.EncBinary() + _ = yym3488 if false { - } else if z.HasExtensions() && z.EncExt(yy3455) { + } else if z.HasExtensions() && z.EncExt(yy3487) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy3455)) + r.EncodeString(codecSelferC_UTF81234, string(yy3487)) } } } } - if yyr3451 || yy2arr3451 { + if yyr3483 || yy2arr3483 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44068,25 +44530,25 @@ func (x *Preconditions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3457 := z.DecBinary() - _ = yym3457 + yym3489 := z.DecBinary() + _ = yym3489 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3458 := r.ContainerType() - if yyct3458 == codecSelferValueTypeMap1234 { - yyl3458 := r.ReadMapStart() - if yyl3458 == 0 { + yyct3490 := r.ContainerType() + if yyct3490 == codecSelferValueTypeMap1234 { + yyl3490 := r.ReadMapStart() + if yyl3490 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3458, d) + x.codecDecodeSelfFromMap(yyl3490, d) } - } else if yyct3458 == codecSelferValueTypeArray1234 { - yyl3458 := r.ReadArrayStart() - if yyl3458 == 0 { + } else if yyct3490 == codecSelferValueTypeArray1234 { + yyl3490 := r.ReadArrayStart() + if yyl3490 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3458, d) + x.codecDecodeSelfFromArray(yyl3490, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44098,12 +44560,12 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3459Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3459Slc - var yyhl3459 bool = l >= 0 - for yyj3459 := 0; ; yyj3459++ { - if yyhl3459 { - if yyj3459 >= l { + var yys3491Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3491Slc + var yyhl3491 bool = l >= 0 + for yyj3491 := 0; ; yyj3491++ { + if yyhl3491 { + if yyj3491 >= l { break } } else { @@ -44112,10 +44574,10 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3459Slc = r.DecodeBytes(yys3459Slc, true, true) - yys3459 := string(yys3459Slc) + yys3491Slc = r.DecodeBytes(yys3491Slc, true, true) + yys3491 := string(yys3491Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3459 { + switch yys3491 { case "uid": if r.TryDecodeAsNil() { if x.UID != nil { @@ -44125,8 +44587,8 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.UID == nil { x.UID = new(pkg1_types.UID) } - yym3461 := z.DecBinary() - _ = yym3461 + yym3493 := z.DecBinary() + _ = yym3493 if false { } else if z.HasExtensions() && z.DecExt(x.UID) { } else { @@ -44134,9 +44596,9 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } default: - z.DecStructFieldNotFound(-1, yys3459) - } // end switch yys3459 - } // end for yyj3459 + z.DecStructFieldNotFound(-1, yys3491) + } // end switch yys3491 + } // end for yyj3491 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44144,16 +44606,16 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3462 int - var yyb3462 bool - var yyhl3462 bool = l >= 0 - yyj3462++ - if yyhl3462 { - yyb3462 = yyj3462 > l + var yyj3494 int + var yyb3494 bool + var yyhl3494 bool = l >= 0 + yyj3494++ + if yyhl3494 { + yyb3494 = yyj3494 > l } else { - yyb3462 = r.CheckBreak() + yyb3494 = r.CheckBreak() } - if yyb3462 { + if yyb3494 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44166,8 +44628,8 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.UID == nil { x.UID = new(pkg1_types.UID) } - yym3464 := z.DecBinary() - _ = yym3464 + yym3496 := z.DecBinary() + _ = yym3496 if false { } else if z.HasExtensions() && z.DecExt(x.UID) { } else { @@ -44175,17 +44637,17 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } } for { - yyj3462++ - if yyhl3462 { - yyb3462 = yyj3462 > l + yyj3494++ + if yyhl3494 { + yyb3494 = yyj3494 > l } else { - yyb3462 = r.CheckBreak() + yyb3494 = r.CheckBreak() } - if yyb3462 { + if yyb3494 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3462-1, "") + z.DecStructFieldNotFound(yyj3494-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44197,39 +44659,39 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3465 := z.EncBinary() - _ = yym3465 + yym3497 := z.EncBinary() + _ = yym3497 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3466 := !z.EncBinary() - yy2arr3466 := z.EncBasicHandle().StructToArray - var yyq3466 [5]bool - _, _, _ = yysep3466, yyq3466, yy2arr3466 - const yyr3466 bool = false - yyq3466[0] = x.Kind != "" - yyq3466[1] = x.APIVersion != "" - yyq3466[2] = x.GracePeriodSeconds != nil - yyq3466[3] = x.Preconditions != nil - yyq3466[4] = x.OrphanDependents != nil - var yynn3466 int - if yyr3466 || yy2arr3466 { + yysep3498 := !z.EncBinary() + yy2arr3498 := z.EncBasicHandle().StructToArray + var yyq3498 [5]bool + _, _, _ = yysep3498, yyq3498, yy2arr3498 + const yyr3498 bool = false + yyq3498[0] = x.Kind != "" + yyq3498[1] = x.APIVersion != "" + yyq3498[2] = x.GracePeriodSeconds != nil + yyq3498[3] = x.Preconditions != nil + yyq3498[4] = x.OrphanDependents != nil + var yynn3498 int + if yyr3498 || yy2arr3498 { r.EncodeArrayStart(5) } else { - yynn3466 = 0 - for _, b := range yyq3466 { + yynn3498 = 0 + for _, b := range yyq3498 { if b { - yynn3466++ + yynn3498++ } } - r.EncodeMapStart(yynn3466) - yynn3466 = 0 + r.EncodeMapStart(yynn3498) + yynn3498 = 0 } - if yyr3466 || yy2arr3466 { + if yyr3498 || yy2arr3498 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3466[0] { - yym3468 := z.EncBinary() - _ = yym3468 + if yyq3498[0] { + yym3500 := z.EncBinary() + _ = yym3500 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44238,23 +44700,23 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3466[0] { + if yyq3498[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3469 := z.EncBinary() - _ = yym3469 + yym3501 := z.EncBinary() + _ = yym3501 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3466 || yy2arr3466 { + if yyr3498 || yy2arr3498 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3466[1] { - yym3471 := z.EncBinary() - _ = yym3471 + if yyq3498[1] { + yym3503 := z.EncBinary() + _ = yym3503 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44263,56 +44725,56 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3466[1] { + if yyq3498[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3472 := z.EncBinary() - _ = yym3472 + yym3504 := z.EncBinary() + _ = yym3504 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3466 || yy2arr3466 { + if yyr3498 || yy2arr3498 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3466[2] { + if yyq3498[2] { if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy3474 := *x.GracePeriodSeconds - yym3475 := z.EncBinary() - _ = yym3475 + yy3506 := *x.GracePeriodSeconds + yym3507 := z.EncBinary() + _ = yym3507 if false { } else { - r.EncodeInt(int64(yy3474)) + r.EncodeInt(int64(yy3506)) } } } else { r.EncodeNil() } } else { - if yyq3466[2] { + if yyq3498[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("gracePeriodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy3476 := *x.GracePeriodSeconds - yym3477 := z.EncBinary() - _ = yym3477 + yy3508 := *x.GracePeriodSeconds + yym3509 := z.EncBinary() + _ = yym3509 if false { } else { - r.EncodeInt(int64(yy3476)) + r.EncodeInt(int64(yy3508)) } } } } - if yyr3466 || yy2arr3466 { + if yyr3498 || yy2arr3498 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3466[3] { + if yyq3498[3] { if x.Preconditions == nil { r.EncodeNil() } else { @@ -44322,7 +44784,7 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3466[3] { + if yyq3498[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preconditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -44333,42 +44795,42 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3466 || yy2arr3466 { + if yyr3498 || yy2arr3498 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3466[4] { + if yyq3498[4] { if x.OrphanDependents == nil { r.EncodeNil() } else { - yy3480 := *x.OrphanDependents - yym3481 := z.EncBinary() - _ = yym3481 + yy3512 := *x.OrphanDependents + yym3513 := z.EncBinary() + _ = yym3513 if false { } else { - r.EncodeBool(bool(yy3480)) + r.EncodeBool(bool(yy3512)) } } } else { r.EncodeNil() } } else { - if yyq3466[4] { + if yyq3498[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("orphanDependents")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.OrphanDependents == nil { r.EncodeNil() } else { - yy3482 := *x.OrphanDependents - yym3483 := z.EncBinary() - _ = yym3483 + yy3514 := *x.OrphanDependents + yym3515 := z.EncBinary() + _ = yym3515 if false { } else { - r.EncodeBool(bool(yy3482)) + r.EncodeBool(bool(yy3514)) } } } } - if yyr3466 || yy2arr3466 { + if yyr3498 || yy2arr3498 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44381,25 +44843,25 @@ func (x *DeleteOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3484 := z.DecBinary() - _ = yym3484 + yym3516 := z.DecBinary() + _ = yym3516 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3485 := r.ContainerType() - if yyct3485 == codecSelferValueTypeMap1234 { - yyl3485 := r.ReadMapStart() - if yyl3485 == 0 { + yyct3517 := r.ContainerType() + if yyct3517 == codecSelferValueTypeMap1234 { + yyl3517 := r.ReadMapStart() + if yyl3517 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3485, d) + x.codecDecodeSelfFromMap(yyl3517, d) } - } else if yyct3485 == codecSelferValueTypeArray1234 { - yyl3485 := r.ReadArrayStart() - if yyl3485 == 0 { + } else if yyct3517 == codecSelferValueTypeArray1234 { + yyl3517 := r.ReadArrayStart() + if yyl3517 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3485, d) + x.codecDecodeSelfFromArray(yyl3517, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44411,12 +44873,12 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3486Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3486Slc - var yyhl3486 bool = l >= 0 - for yyj3486 := 0; ; yyj3486++ { - if yyhl3486 { - if yyj3486 >= l { + var yys3518Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3518Slc + var yyhl3518 bool = l >= 0 + for yyj3518 := 0; ; yyj3518++ { + if yyhl3518 { + if yyj3518 >= l { break } } else { @@ -44425,10 +44887,10 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3486Slc = r.DecodeBytes(yys3486Slc, true, true) - yys3486 := string(yys3486Slc) + yys3518Slc = r.DecodeBytes(yys3518Slc, true, true) + yys3518 := string(yys3518Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3486 { + switch yys3518 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44450,8 +44912,8 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym3490 := z.DecBinary() - _ = yym3490 + yym3522 := z.DecBinary() + _ = yym3522 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) @@ -44477,17 +44939,17 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.OrphanDependents == nil { x.OrphanDependents = new(bool) } - yym3493 := z.DecBinary() - _ = yym3493 + yym3525 := z.DecBinary() + _ = yym3525 if false { } else { *((*bool)(x.OrphanDependents)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3486) - } // end switch yys3486 - } // end for yyj3486 + z.DecStructFieldNotFound(-1, yys3518) + } // end switch yys3518 + } // end for yyj3518 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44495,16 +44957,16 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3494 int - var yyb3494 bool - var yyhl3494 bool = l >= 0 - yyj3494++ - if yyhl3494 { - yyb3494 = yyj3494 > l + var yyj3526 int + var yyb3526 bool + var yyhl3526 bool = l >= 0 + yyj3526++ + if yyhl3526 { + yyb3526 = yyj3526 > l } else { - yyb3494 = r.CheckBreak() + yyb3526 = r.CheckBreak() } - if yyb3494 { + if yyb3526 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44514,13 +44976,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3494++ - if yyhl3494 { - yyb3494 = yyj3494 > l + yyj3526++ + if yyhl3526 { + yyb3526 = yyj3526 > l } else { - yyb3494 = r.CheckBreak() + yyb3526 = r.CheckBreak() } - if yyb3494 { + if yyb3526 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44530,13 +44992,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3494++ - if yyhl3494 { - yyb3494 = yyj3494 > l + yyj3526++ + if yyhl3526 { + yyb3526 = yyj3526 > l } else { - yyb3494 = r.CheckBreak() + yyb3526 = r.CheckBreak() } - if yyb3494 { + if yyb3526 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44549,20 +45011,20 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym3498 := z.DecBinary() - _ = yym3498 + yym3530 := z.DecBinary() + _ = yym3530 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) } } - yyj3494++ - if yyhl3494 { - yyb3494 = yyj3494 > l + yyj3526++ + if yyhl3526 { + yyb3526 = yyj3526 > l } else { - yyb3494 = r.CheckBreak() + yyb3526 = r.CheckBreak() } - if yyb3494 { + if yyb3526 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44577,13 +45039,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Preconditions.CodecDecodeSelf(d) } - yyj3494++ - if yyhl3494 { - yyb3494 = yyj3494 > l + yyj3526++ + if yyhl3526 { + yyb3526 = yyj3526 > l } else { - yyb3494 = r.CheckBreak() + yyb3526 = r.CheckBreak() } - if yyb3494 { + if yyb3526 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44596,25 +45058,25 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.OrphanDependents == nil { x.OrphanDependents = new(bool) } - yym3501 := z.DecBinary() - _ = yym3501 + yym3533 := z.DecBinary() + _ = yym3533 if false { } else { *((*bool)(x.OrphanDependents)) = r.DecodeBool() } } for { - yyj3494++ - if yyhl3494 { - yyb3494 = yyj3494 > l + yyj3526++ + if yyhl3526 { + yyb3526 = yyj3526 > l } else { - yyb3494 = r.CheckBreak() + yyb3526 = r.CheckBreak() } - if yyb3494 { + if yyb3526 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3494-1, "") + z.DecStructFieldNotFound(yyj3526-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44626,41 +45088,41 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3502 := z.EncBinary() - _ = yym3502 + yym3534 := z.EncBinary() + _ = yym3534 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3503 := !z.EncBinary() - yy2arr3503 := z.EncBasicHandle().StructToArray - var yyq3503 [7]bool - _, _, _ = yysep3503, yyq3503, yy2arr3503 - const yyr3503 bool = false - yyq3503[0] = x.Kind != "" - yyq3503[1] = x.APIVersion != "" - yyq3503[2] = x.LabelSelector != "" - yyq3503[3] = x.FieldSelector != "" - yyq3503[4] = x.Watch != false - yyq3503[5] = x.ResourceVersion != "" - yyq3503[6] = x.TimeoutSeconds != nil - var yynn3503 int - if yyr3503 || yy2arr3503 { + yysep3535 := !z.EncBinary() + yy2arr3535 := z.EncBasicHandle().StructToArray + var yyq3535 [7]bool + _, _, _ = yysep3535, yyq3535, yy2arr3535 + const yyr3535 bool = false + yyq3535[0] = x.Kind != "" + yyq3535[1] = x.APIVersion != "" + yyq3535[2] = x.LabelSelector != "" + yyq3535[3] = x.FieldSelector != "" + yyq3535[4] = x.Watch != false + yyq3535[5] = x.ResourceVersion != "" + yyq3535[6] = x.TimeoutSeconds != nil + var yynn3535 int + if yyr3535 || yy2arr3535 { r.EncodeArrayStart(7) } else { - yynn3503 = 0 - for _, b := range yyq3503 { + yynn3535 = 0 + for _, b := range yyq3535 { if b { - yynn3503++ + yynn3535++ } } - r.EncodeMapStart(yynn3503) - yynn3503 = 0 + r.EncodeMapStart(yynn3535) + yynn3535 = 0 } - if yyr3503 || yy2arr3503 { + if yyr3535 || yy2arr3535 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3503[0] { - yym3505 := z.EncBinary() - _ = yym3505 + if yyq3535[0] { + yym3537 := z.EncBinary() + _ = yym3537 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44669,23 +45131,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3503[0] { + if yyq3535[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3506 := z.EncBinary() - _ = yym3506 + yym3538 := z.EncBinary() + _ = yym3538 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3503 || yy2arr3503 { + if yyr3535 || yy2arr3535 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3503[1] { - yym3508 := z.EncBinary() - _ = yym3508 + if yyq3535[1] { + yym3540 := z.EncBinary() + _ = yym3540 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44694,23 +45156,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3503[1] { + if yyq3535[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3509 := z.EncBinary() - _ = yym3509 + yym3541 := z.EncBinary() + _ = yym3541 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3503 || yy2arr3503 { + if yyr3535 || yy2arr3535 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3503[2] { - yym3511 := z.EncBinary() - _ = yym3511 + if yyq3535[2] { + yym3543 := z.EncBinary() + _ = yym3543 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LabelSelector)) @@ -44719,23 +45181,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3503[2] { + if yyq3535[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("labelSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3512 := z.EncBinary() - _ = yym3512 + yym3544 := z.EncBinary() + _ = yym3544 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LabelSelector)) } } } - if yyr3503 || yy2arr3503 { + if yyr3535 || yy2arr3535 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3503[3] { - yym3514 := z.EncBinary() - _ = yym3514 + if yyq3535[3] { + yym3546 := z.EncBinary() + _ = yym3546 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldSelector)) @@ -44744,23 +45206,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3503[3] { + if yyq3535[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3515 := z.EncBinary() - _ = yym3515 + yym3547 := z.EncBinary() + _ = yym3547 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldSelector)) } } } - if yyr3503 || yy2arr3503 { + if yyr3535 || yy2arr3535 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3503[4] { - yym3517 := z.EncBinary() - _ = yym3517 + if yyq3535[4] { + yym3549 := z.EncBinary() + _ = yym3549 if false { } else { r.EncodeBool(bool(x.Watch)) @@ -44769,23 +45231,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3503[4] { + if yyq3535[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("watch")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3518 := z.EncBinary() - _ = yym3518 + yym3550 := z.EncBinary() + _ = yym3550 if false { } else { r.EncodeBool(bool(x.Watch)) } } } - if yyr3503 || yy2arr3503 { + if yyr3535 || yy2arr3535 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3503[5] { - yym3520 := z.EncBinary() - _ = yym3520 + if yyq3535[5] { + yym3552 := z.EncBinary() + _ = yym3552 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -44794,54 +45256,54 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3503[5] { + if yyq3535[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3521 := z.EncBinary() - _ = yym3521 + yym3553 := z.EncBinary() + _ = yym3553 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr3503 || yy2arr3503 { + if yyr3535 || yy2arr3535 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3503[6] { + if yyq3535[6] { if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3523 := *x.TimeoutSeconds - yym3524 := z.EncBinary() - _ = yym3524 + yy3555 := *x.TimeoutSeconds + yym3556 := z.EncBinary() + _ = yym3556 if false { } else { - r.EncodeInt(int64(yy3523)) + r.EncodeInt(int64(yy3555)) } } } else { r.EncodeNil() } } else { - if yyq3503[6] { + if yyq3535[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timeoutSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3525 := *x.TimeoutSeconds - yym3526 := z.EncBinary() - _ = yym3526 + yy3557 := *x.TimeoutSeconds + yym3558 := z.EncBinary() + _ = yym3558 if false { } else { - r.EncodeInt(int64(yy3525)) + r.EncodeInt(int64(yy3557)) } } } } - if yyr3503 || yy2arr3503 { + if yyr3535 || yy2arr3535 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44854,25 +45316,25 @@ func (x *ListOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3527 := z.DecBinary() - _ = yym3527 + yym3559 := z.DecBinary() + _ = yym3559 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3528 := r.ContainerType() - if yyct3528 == codecSelferValueTypeMap1234 { - yyl3528 := r.ReadMapStart() - if yyl3528 == 0 { + yyct3560 := r.ContainerType() + if yyct3560 == codecSelferValueTypeMap1234 { + yyl3560 := r.ReadMapStart() + if yyl3560 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3528, d) + x.codecDecodeSelfFromMap(yyl3560, d) } - } else if yyct3528 == codecSelferValueTypeArray1234 { - yyl3528 := r.ReadArrayStart() - if yyl3528 == 0 { + } else if yyct3560 == codecSelferValueTypeArray1234 { + yyl3560 := r.ReadArrayStart() + if yyl3560 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3528, d) + x.codecDecodeSelfFromArray(yyl3560, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44884,12 +45346,12 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3529Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3529Slc - var yyhl3529 bool = l >= 0 - for yyj3529 := 0; ; yyj3529++ { - if yyhl3529 { - if yyj3529 >= l { + var yys3561Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3561Slc + var yyhl3561 bool = l >= 0 + for yyj3561 := 0; ; yyj3561++ { + if yyhl3561 { + if yyj3561 >= l { break } } else { @@ -44898,10 +45360,10 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3529Slc = r.DecodeBytes(yys3529Slc, true, true) - yys3529 := string(yys3529Slc) + yys3561Slc = r.DecodeBytes(yys3561Slc, true, true) + yys3561 := string(yys3561Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3529 { + switch yys3561 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44947,17 +45409,17 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3537 := z.DecBinary() - _ = yym3537 + yym3569 := z.DecBinary() + _ = yym3569 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3529) - } // end switch yys3529 - } // end for yyj3529 + z.DecStructFieldNotFound(-1, yys3561) + } // end switch yys3561 + } // end for yyj3561 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44965,16 +45427,16 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3538 int - var yyb3538 bool - var yyhl3538 bool = l >= 0 - yyj3538++ - if yyhl3538 { - yyb3538 = yyj3538 > l + var yyj3570 int + var yyb3570 bool + var yyhl3570 bool = l >= 0 + yyj3570++ + if yyhl3570 { + yyb3570 = yyj3570 > l } else { - yyb3538 = r.CheckBreak() + yyb3570 = r.CheckBreak() } - if yyb3538 { + if yyb3570 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44984,13 +45446,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3538++ - if yyhl3538 { - yyb3538 = yyj3538 > l + yyj3570++ + if yyhl3570 { + yyb3570 = yyj3570 > l } else { - yyb3538 = r.CheckBreak() + yyb3570 = r.CheckBreak() } - if yyb3538 { + if yyb3570 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45000,13 +45462,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3538++ - if yyhl3538 { - yyb3538 = yyj3538 > l + yyj3570++ + if yyhl3570 { + yyb3570 = yyj3570 > l } else { - yyb3538 = r.CheckBreak() + yyb3570 = r.CheckBreak() } - if yyb3538 { + if yyb3570 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45016,13 +45478,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.LabelSelector = string(r.DecodeString()) } - yyj3538++ - if yyhl3538 { - yyb3538 = yyj3538 > l + yyj3570++ + if yyhl3570 { + yyb3570 = yyj3570 > l } else { - yyb3538 = r.CheckBreak() + yyb3570 = r.CheckBreak() } - if yyb3538 { + if yyb3570 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45032,13 +45494,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.FieldSelector = string(r.DecodeString()) } - yyj3538++ - if yyhl3538 { - yyb3538 = yyj3538 > l + yyj3570++ + if yyhl3570 { + yyb3570 = yyj3570 > l } else { - yyb3538 = r.CheckBreak() + yyb3570 = r.CheckBreak() } - if yyb3538 { + if yyb3570 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45048,13 +45510,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Watch = bool(r.DecodeBool()) } - yyj3538++ - if yyhl3538 { - yyb3538 = yyj3538 > l + yyj3570++ + if yyhl3570 { + yyb3570 = yyj3570 > l } else { - yyb3538 = r.CheckBreak() + yyb3570 = r.CheckBreak() } - if yyb3538 { + if yyb3570 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45064,13 +45526,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3538++ - if yyhl3538 { - yyb3538 = yyj3538 > l + yyj3570++ + if yyhl3570 { + yyb3570 = yyj3570 > l } else { - yyb3538 = r.CheckBreak() + yyb3570 = r.CheckBreak() } - if yyb3538 { + if yyb3570 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45083,25 +45545,25 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3546 := z.DecBinary() - _ = yym3546 + yym3578 := z.DecBinary() + _ = yym3578 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } for { - yyj3538++ - if yyhl3538 { - yyb3538 = yyj3538 > l + yyj3570++ + if yyhl3570 { + yyb3570 = yyj3570 > l } else { - yyb3538 = r.CheckBreak() + yyb3570 = r.CheckBreak() } - if yyb3538 { + if yyb3570 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3538-1, "") + z.DecStructFieldNotFound(yyj3570-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45113,44 +45575,44 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3547 := z.EncBinary() - _ = yym3547 + yym3579 := z.EncBinary() + _ = yym3579 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3548 := !z.EncBinary() - yy2arr3548 := z.EncBasicHandle().StructToArray - var yyq3548 [10]bool - _, _, _ = yysep3548, yyq3548, yy2arr3548 - const yyr3548 bool = false - yyq3548[0] = x.Kind != "" - yyq3548[1] = x.APIVersion != "" - yyq3548[2] = x.Container != "" - yyq3548[3] = x.Follow != false - yyq3548[4] = x.Previous != false - yyq3548[5] = x.SinceSeconds != nil - yyq3548[6] = x.SinceTime != nil - yyq3548[7] = x.Timestamps != false - yyq3548[8] = x.TailLines != nil - yyq3548[9] = x.LimitBytes != nil - var yynn3548 int - if yyr3548 || yy2arr3548 { + yysep3580 := !z.EncBinary() + yy2arr3580 := z.EncBasicHandle().StructToArray + var yyq3580 [10]bool + _, _, _ = yysep3580, yyq3580, yy2arr3580 + const yyr3580 bool = false + yyq3580[0] = x.Kind != "" + yyq3580[1] = x.APIVersion != "" + yyq3580[2] = x.Container != "" + yyq3580[3] = x.Follow != false + yyq3580[4] = x.Previous != false + yyq3580[5] = x.SinceSeconds != nil + yyq3580[6] = x.SinceTime != nil + yyq3580[7] = x.Timestamps != false + yyq3580[8] = x.TailLines != nil + yyq3580[9] = x.LimitBytes != nil + var yynn3580 int + if yyr3580 || yy2arr3580 { r.EncodeArrayStart(10) } else { - yynn3548 = 0 - for _, b := range yyq3548 { + yynn3580 = 0 + for _, b := range yyq3580 { if b { - yynn3548++ + yynn3580++ } } - r.EncodeMapStart(yynn3548) - yynn3548 = 0 + r.EncodeMapStart(yynn3580) + yynn3580 = 0 } - if yyr3548 || yy2arr3548 { + if yyr3580 || yy2arr3580 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3548[0] { - yym3550 := z.EncBinary() - _ = yym3550 + if yyq3580[0] { + yym3582 := z.EncBinary() + _ = yym3582 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45159,23 +45621,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3548[0] { + if yyq3580[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3551 := z.EncBinary() - _ = yym3551 + yym3583 := z.EncBinary() + _ = yym3583 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3548 || yy2arr3548 { + if yyr3580 || yy2arr3580 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3548[1] { - yym3553 := z.EncBinary() - _ = yym3553 + if yyq3580[1] { + yym3585 := z.EncBinary() + _ = yym3585 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45184,23 +45646,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3548[1] { + if yyq3580[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3554 := z.EncBinary() - _ = yym3554 + yym3586 := z.EncBinary() + _ = yym3586 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3548 || yy2arr3548 { + if yyr3580 || yy2arr3580 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3548[2] { - yym3556 := z.EncBinary() - _ = yym3556 + if yyq3580[2] { + yym3588 := z.EncBinary() + _ = yym3588 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -45209,23 +45671,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3548[2] { + if yyq3580[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3557 := z.EncBinary() - _ = yym3557 + yym3589 := z.EncBinary() + _ = yym3589 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3548 || yy2arr3548 { + if yyr3580 || yy2arr3580 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3548[3] { - yym3559 := z.EncBinary() - _ = yym3559 + if yyq3580[3] { + yym3591 := z.EncBinary() + _ = yym3591 if false { } else { r.EncodeBool(bool(x.Follow)) @@ -45234,23 +45696,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3548[3] { + if yyq3580[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("follow")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3560 := z.EncBinary() - _ = yym3560 + yym3592 := z.EncBinary() + _ = yym3592 if false { } else { r.EncodeBool(bool(x.Follow)) } } } - if yyr3548 || yy2arr3548 { + if yyr3580 || yy2arr3580 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3548[4] { - yym3562 := z.EncBinary() - _ = yym3562 + if yyq3580[4] { + yym3594 := z.EncBinary() + _ = yym3594 if false { } else { r.EncodeBool(bool(x.Previous)) @@ -45259,66 +45721,66 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3548[4] { + if yyq3580[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("previous")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3563 := z.EncBinary() - _ = yym3563 + yym3595 := z.EncBinary() + _ = yym3595 if false { } else { r.EncodeBool(bool(x.Previous)) } } } - if yyr3548 || yy2arr3548 { + if yyr3580 || yy2arr3580 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3548[5] { + if yyq3580[5] { if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3565 := *x.SinceSeconds - yym3566 := z.EncBinary() - _ = yym3566 + yy3597 := *x.SinceSeconds + yym3598 := z.EncBinary() + _ = yym3598 if false { } else { - r.EncodeInt(int64(yy3565)) + r.EncodeInt(int64(yy3597)) } } } else { r.EncodeNil() } } else { - if yyq3548[5] { + if yyq3580[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sinceSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3567 := *x.SinceSeconds - yym3568 := z.EncBinary() - _ = yym3568 + yy3599 := *x.SinceSeconds + yym3600 := z.EncBinary() + _ = yym3600 if false { } else { - r.EncodeInt(int64(yy3567)) + r.EncodeInt(int64(yy3599)) } } } } - if yyr3548 || yy2arr3548 { + if yyr3580 || yy2arr3580 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3548[6] { + if yyq3580[6] { if x.SinceTime == nil { r.EncodeNil() } else { - yym3570 := z.EncBinary() - _ = yym3570 + yym3602 := z.EncBinary() + _ = yym3602 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3570 { + } else if yym3602 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3570 && z.IsJSONHandle() { + } else if !yym3602 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -45328,20 +45790,20 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3548[6] { + if yyq3580[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sinceTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SinceTime == nil { r.EncodeNil() } else { - yym3571 := z.EncBinary() - _ = yym3571 + yym3603 := z.EncBinary() + _ = yym3603 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3571 { + } else if yym3603 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3571 && z.IsJSONHandle() { + } else if !yym3603 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -45349,11 +45811,11 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3548 || yy2arr3548 { + if yyr3580 || yy2arr3580 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3548[7] { - yym3573 := z.EncBinary() - _ = yym3573 + if yyq3580[7] { + yym3605 := z.EncBinary() + _ = yym3605 if false { } else { r.EncodeBool(bool(x.Timestamps)) @@ -45362,89 +45824,89 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3548[7] { + if yyq3580[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timestamps")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3574 := z.EncBinary() - _ = yym3574 + yym3606 := z.EncBinary() + _ = yym3606 if false { } else { r.EncodeBool(bool(x.Timestamps)) } } } - if yyr3548 || yy2arr3548 { + if yyr3580 || yy2arr3580 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3548[8] { + if yyq3580[8] { if x.TailLines == nil { r.EncodeNil() } else { - yy3576 := *x.TailLines - yym3577 := z.EncBinary() - _ = yym3577 + yy3608 := *x.TailLines + yym3609 := z.EncBinary() + _ = yym3609 if false { } else { - r.EncodeInt(int64(yy3576)) + r.EncodeInt(int64(yy3608)) } } } else { r.EncodeNil() } } else { - if yyq3548[8] { + if yyq3580[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tailLines")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TailLines == nil { r.EncodeNil() } else { - yy3578 := *x.TailLines - yym3579 := z.EncBinary() - _ = yym3579 + yy3610 := *x.TailLines + yym3611 := z.EncBinary() + _ = yym3611 if false { } else { - r.EncodeInt(int64(yy3578)) + r.EncodeInt(int64(yy3610)) } } } } - if yyr3548 || yy2arr3548 { + if yyr3580 || yy2arr3580 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3548[9] { + if yyq3580[9] { if x.LimitBytes == nil { r.EncodeNil() } else { - yy3581 := *x.LimitBytes - yym3582 := z.EncBinary() - _ = yym3582 + yy3613 := *x.LimitBytes + yym3614 := z.EncBinary() + _ = yym3614 if false { } else { - r.EncodeInt(int64(yy3581)) + r.EncodeInt(int64(yy3613)) } } } else { r.EncodeNil() } } else { - if yyq3548[9] { + if yyq3580[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("limitBytes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.LimitBytes == nil { r.EncodeNil() } else { - yy3583 := *x.LimitBytes - yym3584 := z.EncBinary() - _ = yym3584 + yy3615 := *x.LimitBytes + yym3616 := z.EncBinary() + _ = yym3616 if false { } else { - r.EncodeInt(int64(yy3583)) + r.EncodeInt(int64(yy3615)) } } } } - if yyr3548 || yy2arr3548 { + if yyr3580 || yy2arr3580 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45457,25 +45919,25 @@ func (x *PodLogOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3585 := z.DecBinary() - _ = yym3585 + yym3617 := z.DecBinary() + _ = yym3617 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3586 := r.ContainerType() - if yyct3586 == codecSelferValueTypeMap1234 { - yyl3586 := r.ReadMapStart() - if yyl3586 == 0 { + yyct3618 := r.ContainerType() + if yyct3618 == codecSelferValueTypeMap1234 { + yyl3618 := r.ReadMapStart() + if yyl3618 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3586, d) + x.codecDecodeSelfFromMap(yyl3618, d) } - } else if yyct3586 == codecSelferValueTypeArray1234 { - yyl3586 := r.ReadArrayStart() - if yyl3586 == 0 { + } else if yyct3618 == codecSelferValueTypeArray1234 { + yyl3618 := r.ReadArrayStart() + if yyl3618 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3586, d) + x.codecDecodeSelfFromArray(yyl3618, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45487,12 +45949,12 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3587Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3587Slc - var yyhl3587 bool = l >= 0 - for yyj3587 := 0; ; yyj3587++ { - if yyhl3587 { - if yyj3587 >= l { + var yys3619Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3619Slc + var yyhl3619 bool = l >= 0 + for yyj3619 := 0; ; yyj3619++ { + if yyhl3619 { + if yyj3619 >= l { break } } else { @@ -45501,10 +45963,10 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3587Slc = r.DecodeBytes(yys3587Slc, true, true) - yys3587 := string(yys3587Slc) + yys3619Slc = r.DecodeBytes(yys3619Slc, true, true) + yys3619 := string(yys3619Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3587 { + switch yys3619 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45544,8 +46006,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3594 := z.DecBinary() - _ = yym3594 + yym3626 := z.DecBinary() + _ = yym3626 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) @@ -45560,13 +46022,13 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_v1.Time) } - yym3596 := z.DecBinary() - _ = yym3596 + yym3628 := z.DecBinary() + _ = yym3628 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3596 { + } else if yym3628 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3596 && z.IsJSONHandle() { + } else if !yym3628 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) @@ -45587,8 +46049,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3599 := z.DecBinary() - _ = yym3599 + yym3631 := z.DecBinary() + _ = yym3631 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) @@ -45603,17 +46065,17 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3601 := z.DecBinary() - _ = yym3601 + yym3633 := z.DecBinary() + _ = yym3633 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3587) - } // end switch yys3587 - } // end for yyj3587 + z.DecStructFieldNotFound(-1, yys3619) + } // end switch yys3619 + } // end for yyj3619 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45621,16 +46083,16 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3602 int - var yyb3602 bool - var yyhl3602 bool = l >= 0 - yyj3602++ - if yyhl3602 { - yyb3602 = yyj3602 > l + var yyj3634 int + var yyb3634 bool + var yyhl3634 bool = l >= 0 + yyj3634++ + if yyhl3634 { + yyb3634 = yyj3634 > l } else { - yyb3602 = r.CheckBreak() + yyb3634 = r.CheckBreak() } - if yyb3602 { + if yyb3634 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45640,13 +46102,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3602++ - if yyhl3602 { - yyb3602 = yyj3602 > l + yyj3634++ + if yyhl3634 { + yyb3634 = yyj3634 > l } else { - yyb3602 = r.CheckBreak() + yyb3634 = r.CheckBreak() } - if yyb3602 { + if yyb3634 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45656,13 +46118,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3602++ - if yyhl3602 { - yyb3602 = yyj3602 > l + yyj3634++ + if yyhl3634 { + yyb3634 = yyj3634 > l } else { - yyb3602 = r.CheckBreak() + yyb3634 = r.CheckBreak() } - if yyb3602 { + if yyb3634 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45672,13 +46134,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3602++ - if yyhl3602 { - yyb3602 = yyj3602 > l + yyj3634++ + if yyhl3634 { + yyb3634 = yyj3634 > l } else { - yyb3602 = r.CheckBreak() + yyb3634 = r.CheckBreak() } - if yyb3602 { + if yyb3634 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45688,13 +46150,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Follow = bool(r.DecodeBool()) } - yyj3602++ - if yyhl3602 { - yyb3602 = yyj3602 > l + yyj3634++ + if yyhl3634 { + yyb3634 = yyj3634 > l } else { - yyb3602 = r.CheckBreak() + yyb3634 = r.CheckBreak() } - if yyb3602 { + if yyb3634 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45704,13 +46166,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Previous = bool(r.DecodeBool()) } - yyj3602++ - if yyhl3602 { - yyb3602 = yyj3602 > l + yyj3634++ + if yyhl3634 { + yyb3634 = yyj3634 > l } else { - yyb3602 = r.CheckBreak() + yyb3634 = r.CheckBreak() } - if yyb3602 { + if yyb3634 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45723,20 +46185,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3609 := z.DecBinary() - _ = yym3609 + yym3641 := z.DecBinary() + _ = yym3641 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) } } - yyj3602++ - if yyhl3602 { - yyb3602 = yyj3602 > l + yyj3634++ + if yyhl3634 { + yyb3634 = yyj3634 > l } else { - yyb3602 = r.CheckBreak() + yyb3634 = r.CheckBreak() } - if yyb3602 { + if yyb3634 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45749,25 +46211,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_v1.Time) } - yym3611 := z.DecBinary() - _ = yym3611 + yym3643 := z.DecBinary() + _ = yym3643 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3611 { + } else if yym3643 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3611 && z.IsJSONHandle() { + } else if !yym3643 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) } } - yyj3602++ - if yyhl3602 { - yyb3602 = yyj3602 > l + yyj3634++ + if yyhl3634 { + yyb3634 = yyj3634 > l } else { - yyb3602 = r.CheckBreak() + yyb3634 = r.CheckBreak() } - if yyb3602 { + if yyb3634 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45777,13 +46239,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Timestamps = bool(r.DecodeBool()) } - yyj3602++ - if yyhl3602 { - yyb3602 = yyj3602 > l + yyj3634++ + if yyhl3634 { + yyb3634 = yyj3634 > l } else { - yyb3602 = r.CheckBreak() + yyb3634 = r.CheckBreak() } - if yyb3602 { + if yyb3634 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45796,20 +46258,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3614 := z.DecBinary() - _ = yym3614 + yym3646 := z.DecBinary() + _ = yym3646 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) } } - yyj3602++ - if yyhl3602 { - yyb3602 = yyj3602 > l + yyj3634++ + if yyhl3634 { + yyb3634 = yyj3634 > l } else { - yyb3602 = r.CheckBreak() + yyb3634 = r.CheckBreak() } - if yyb3602 { + if yyb3634 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45822,25 +46284,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3616 := z.DecBinary() - _ = yym3616 + yym3648 := z.DecBinary() + _ = yym3648 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } for { - yyj3602++ - if yyhl3602 { - yyb3602 = yyj3602 > l + yyj3634++ + if yyhl3634 { + yyb3634 = yyj3634 > l } else { - yyb3602 = r.CheckBreak() + yyb3634 = r.CheckBreak() } - if yyb3602 { + if yyb3634 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3602-1, "") + z.DecStructFieldNotFound(yyj3634-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45852,41 +46314,41 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3617 := z.EncBinary() - _ = yym3617 + yym3649 := z.EncBinary() + _ = yym3649 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3618 := !z.EncBinary() - yy2arr3618 := z.EncBasicHandle().StructToArray - var yyq3618 [7]bool - _, _, _ = yysep3618, yyq3618, yy2arr3618 - const yyr3618 bool = false - yyq3618[0] = x.Kind != "" - yyq3618[1] = x.APIVersion != "" - yyq3618[2] = x.Stdin != false - yyq3618[3] = x.Stdout != false - yyq3618[4] = x.Stderr != false - yyq3618[5] = x.TTY != false - yyq3618[6] = x.Container != "" - var yynn3618 int - if yyr3618 || yy2arr3618 { + yysep3650 := !z.EncBinary() + yy2arr3650 := z.EncBasicHandle().StructToArray + var yyq3650 [7]bool + _, _, _ = yysep3650, yyq3650, yy2arr3650 + const yyr3650 bool = false + yyq3650[0] = x.Kind != "" + yyq3650[1] = x.APIVersion != "" + yyq3650[2] = x.Stdin != false + yyq3650[3] = x.Stdout != false + yyq3650[4] = x.Stderr != false + yyq3650[5] = x.TTY != false + yyq3650[6] = x.Container != "" + var yynn3650 int + if yyr3650 || yy2arr3650 { r.EncodeArrayStart(7) } else { - yynn3618 = 0 - for _, b := range yyq3618 { + yynn3650 = 0 + for _, b := range yyq3650 { if b { - yynn3618++ + yynn3650++ } } - r.EncodeMapStart(yynn3618) - yynn3618 = 0 + r.EncodeMapStart(yynn3650) + yynn3650 = 0 } - if yyr3618 || yy2arr3618 { + if yyr3650 || yy2arr3650 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3618[0] { - yym3620 := z.EncBinary() - _ = yym3620 + if yyq3650[0] { + yym3652 := z.EncBinary() + _ = yym3652 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -45895,23 +46357,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3618[0] { + if yyq3650[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3621 := z.EncBinary() - _ = yym3621 + yym3653 := z.EncBinary() + _ = yym3653 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3618 || yy2arr3618 { + if yyr3650 || yy2arr3650 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3618[1] { - yym3623 := z.EncBinary() - _ = yym3623 + if yyq3650[1] { + yym3655 := z.EncBinary() + _ = yym3655 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -45920,23 +46382,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3618[1] { + if yyq3650[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3624 := z.EncBinary() - _ = yym3624 + yym3656 := z.EncBinary() + _ = yym3656 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3618 || yy2arr3618 { + if yyr3650 || yy2arr3650 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3618[2] { - yym3626 := z.EncBinary() - _ = yym3626 + if yyq3650[2] { + yym3658 := z.EncBinary() + _ = yym3658 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -45945,23 +46407,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3618[2] { + if yyq3650[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3627 := z.EncBinary() - _ = yym3627 + yym3659 := z.EncBinary() + _ = yym3659 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr3618 || yy2arr3618 { + if yyr3650 || yy2arr3650 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3618[3] { - yym3629 := z.EncBinary() - _ = yym3629 + if yyq3650[3] { + yym3661 := z.EncBinary() + _ = yym3661 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -45970,23 +46432,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3618[3] { + if yyq3650[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3630 := z.EncBinary() - _ = yym3630 + yym3662 := z.EncBinary() + _ = yym3662 if false { } else { r.EncodeBool(bool(x.Stdout)) } } } - if yyr3618 || yy2arr3618 { + if yyr3650 || yy2arr3650 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3618[4] { - yym3632 := z.EncBinary() - _ = yym3632 + if yyq3650[4] { + yym3664 := z.EncBinary() + _ = yym3664 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -45995,23 +46457,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3618[4] { + if yyq3650[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3633 := z.EncBinary() - _ = yym3633 + yym3665 := z.EncBinary() + _ = yym3665 if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr3618 || yy2arr3618 { + if yyr3650 || yy2arr3650 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3618[5] { - yym3635 := z.EncBinary() - _ = yym3635 + if yyq3650[5] { + yym3667 := z.EncBinary() + _ = yym3667 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -46020,23 +46482,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3618[5] { + if yyq3650[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3636 := z.EncBinary() - _ = yym3636 + yym3668 := z.EncBinary() + _ = yym3668 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr3618 || yy2arr3618 { + if yyr3650 || yy2arr3650 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3618[6] { - yym3638 := z.EncBinary() - _ = yym3638 + if yyq3650[6] { + yym3670 := z.EncBinary() + _ = yym3670 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -46045,19 +46507,19 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3618[6] { + if yyq3650[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3639 := z.EncBinary() - _ = yym3639 + yym3671 := z.EncBinary() + _ = yym3671 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3618 || yy2arr3618 { + if yyr3650 || yy2arr3650 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46070,25 +46532,25 @@ func (x *PodAttachOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3640 := z.DecBinary() - _ = yym3640 + yym3672 := z.DecBinary() + _ = yym3672 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3641 := r.ContainerType() - if yyct3641 == codecSelferValueTypeMap1234 { - yyl3641 := r.ReadMapStart() - if yyl3641 == 0 { + yyct3673 := r.ContainerType() + if yyct3673 == codecSelferValueTypeMap1234 { + yyl3673 := r.ReadMapStart() + if yyl3673 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3641, d) + x.codecDecodeSelfFromMap(yyl3673, d) } - } else if yyct3641 == codecSelferValueTypeArray1234 { - yyl3641 := r.ReadArrayStart() - if yyl3641 == 0 { + } else if yyct3673 == codecSelferValueTypeArray1234 { + yyl3673 := r.ReadArrayStart() + if yyl3673 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3641, d) + x.codecDecodeSelfFromArray(yyl3673, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46100,12 +46562,12 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3642Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3642Slc - var yyhl3642 bool = l >= 0 - for yyj3642 := 0; ; yyj3642++ { - if yyhl3642 { - if yyj3642 >= l { + var yys3674Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3674Slc + var yyhl3674 bool = l >= 0 + for yyj3674 := 0; ; yyj3674++ { + if yyhl3674 { + if yyj3674 >= l { break } } else { @@ -46114,10 +46576,10 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3642Slc = r.DecodeBytes(yys3642Slc, true, true) - yys3642 := string(yys3642Slc) + yys3674Slc = r.DecodeBytes(yys3674Slc, true, true) + yys3674 := string(yys3674Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3642 { + switch yys3674 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46161,9 +46623,9 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Container = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3642) - } // end switch yys3642 - } // end for yyj3642 + z.DecStructFieldNotFound(-1, yys3674) + } // end switch yys3674 + } // end for yyj3674 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46171,16 +46633,16 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3650 int - var yyb3650 bool - var yyhl3650 bool = l >= 0 - yyj3650++ - if yyhl3650 { - yyb3650 = yyj3650 > l + var yyj3682 int + var yyb3682 bool + var yyhl3682 bool = l >= 0 + yyj3682++ + if yyhl3682 { + yyb3682 = yyj3682 > l } else { - yyb3650 = r.CheckBreak() + yyb3682 = r.CheckBreak() } - if yyb3650 { + if yyb3682 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46190,13 +46652,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3650++ - if yyhl3650 { - yyb3650 = yyj3650 > l + yyj3682++ + if yyhl3682 { + yyb3682 = yyj3682 > l } else { - yyb3650 = r.CheckBreak() + yyb3682 = r.CheckBreak() } - if yyb3650 { + if yyb3682 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46206,13 +46668,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3650++ - if yyhl3650 { - yyb3650 = yyj3650 > l + yyj3682++ + if yyhl3682 { + yyb3682 = yyj3682 > l } else { - yyb3650 = r.CheckBreak() + yyb3682 = r.CheckBreak() } - if yyb3650 { + if yyb3682 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46222,13 +46684,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdin = bool(r.DecodeBool()) } - yyj3650++ - if yyhl3650 { - yyb3650 = yyj3650 > l + yyj3682++ + if yyhl3682 { + yyb3682 = yyj3682 > l } else { - yyb3650 = r.CheckBreak() + yyb3682 = r.CheckBreak() } - if yyb3650 { + if yyb3682 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46238,13 +46700,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdout = bool(r.DecodeBool()) } - yyj3650++ - if yyhl3650 { - yyb3650 = yyj3650 > l + yyj3682++ + if yyhl3682 { + yyb3682 = yyj3682 > l } else { - yyb3650 = r.CheckBreak() + yyb3682 = r.CheckBreak() } - if yyb3650 { + if yyb3682 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46254,13 +46716,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stderr = bool(r.DecodeBool()) } - yyj3650++ - if yyhl3650 { - yyb3650 = yyj3650 > l + yyj3682++ + if yyhl3682 { + yyb3682 = yyj3682 > l } else { - yyb3650 = r.CheckBreak() + yyb3682 = r.CheckBreak() } - if yyb3650 { + if yyb3682 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46270,13 +46732,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.TTY = bool(r.DecodeBool()) } - yyj3650++ - if yyhl3650 { - yyb3650 = yyj3650 > l + yyj3682++ + if yyhl3682 { + yyb3682 = yyj3682 > l } else { - yyb3650 = r.CheckBreak() + yyb3682 = r.CheckBreak() } - if yyb3650 { + if yyb3682 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46287,17 +46749,17 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Container = string(r.DecodeString()) } for { - yyj3650++ - if yyhl3650 { - yyb3650 = yyj3650 > l + yyj3682++ + if yyhl3682 { + yyb3682 = yyj3682 > l } else { - yyb3650 = r.CheckBreak() + yyb3682 = r.CheckBreak() } - if yyb3650 { + if yyb3682 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3650-1, "") + z.DecStructFieldNotFound(yyj3682-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46309,41 +46771,41 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3658 := z.EncBinary() - _ = yym3658 + yym3690 := z.EncBinary() + _ = yym3690 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3659 := !z.EncBinary() - yy2arr3659 := z.EncBasicHandle().StructToArray - var yyq3659 [8]bool - _, _, _ = yysep3659, yyq3659, yy2arr3659 - const yyr3659 bool = false - yyq3659[0] = x.Kind != "" - yyq3659[1] = x.APIVersion != "" - yyq3659[2] = x.Stdin != false - yyq3659[3] = x.Stdout != false - yyq3659[4] = x.Stderr != false - yyq3659[5] = x.TTY != false - yyq3659[6] = x.Container != "" - var yynn3659 int - if yyr3659 || yy2arr3659 { + yysep3691 := !z.EncBinary() + yy2arr3691 := z.EncBasicHandle().StructToArray + var yyq3691 [8]bool + _, _, _ = yysep3691, yyq3691, yy2arr3691 + const yyr3691 bool = false + yyq3691[0] = x.Kind != "" + yyq3691[1] = x.APIVersion != "" + yyq3691[2] = x.Stdin != false + yyq3691[3] = x.Stdout != false + yyq3691[4] = x.Stderr != false + yyq3691[5] = x.TTY != false + yyq3691[6] = x.Container != "" + var yynn3691 int + if yyr3691 || yy2arr3691 { r.EncodeArrayStart(8) } else { - yynn3659 = 1 - for _, b := range yyq3659 { + yynn3691 = 1 + for _, b := range yyq3691 { if b { - yynn3659++ + yynn3691++ } } - r.EncodeMapStart(yynn3659) - yynn3659 = 0 + r.EncodeMapStart(yynn3691) + yynn3691 = 0 } - if yyr3659 || yy2arr3659 { + if yyr3691 || yy2arr3691 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3659[0] { - yym3661 := z.EncBinary() - _ = yym3661 + if yyq3691[0] { + yym3693 := z.EncBinary() + _ = yym3693 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46352,23 +46814,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3659[0] { + if yyq3691[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3662 := z.EncBinary() - _ = yym3662 + yym3694 := z.EncBinary() + _ = yym3694 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3659 || yy2arr3659 { + if yyr3691 || yy2arr3691 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3659[1] { - yym3664 := z.EncBinary() - _ = yym3664 + if yyq3691[1] { + yym3696 := z.EncBinary() + _ = yym3696 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46377,23 +46839,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3659[1] { + if yyq3691[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3665 := z.EncBinary() - _ = yym3665 + yym3697 := z.EncBinary() + _ = yym3697 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3659 || yy2arr3659 { + if yyr3691 || yy2arr3691 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3659[2] { - yym3667 := z.EncBinary() - _ = yym3667 + if yyq3691[2] { + yym3699 := z.EncBinary() + _ = yym3699 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -46402,23 +46864,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3659[2] { + if yyq3691[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3668 := z.EncBinary() - _ = yym3668 + yym3700 := z.EncBinary() + _ = yym3700 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr3659 || yy2arr3659 { + if yyr3691 || yy2arr3691 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3659[3] { - yym3670 := z.EncBinary() - _ = yym3670 + if yyq3691[3] { + yym3702 := z.EncBinary() + _ = yym3702 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -46427,23 +46889,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3659[3] { + if yyq3691[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3671 := z.EncBinary() - _ = yym3671 + yym3703 := z.EncBinary() + _ = yym3703 if false { } else { r.EncodeBool(bool(x.Stdout)) } } } - if yyr3659 || yy2arr3659 { + if yyr3691 || yy2arr3691 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3659[4] { - yym3673 := z.EncBinary() - _ = yym3673 + if yyq3691[4] { + yym3705 := z.EncBinary() + _ = yym3705 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -46452,23 +46914,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3659[4] { + if yyq3691[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3674 := z.EncBinary() - _ = yym3674 + yym3706 := z.EncBinary() + _ = yym3706 if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr3659 || yy2arr3659 { + if yyr3691 || yy2arr3691 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3659[5] { - yym3676 := z.EncBinary() - _ = yym3676 + if yyq3691[5] { + yym3708 := z.EncBinary() + _ = yym3708 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -46477,23 +46939,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3659[5] { + if yyq3691[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3677 := z.EncBinary() - _ = yym3677 + yym3709 := z.EncBinary() + _ = yym3709 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr3659 || yy2arr3659 { + if yyr3691 || yy2arr3691 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3659[6] { - yym3679 := z.EncBinary() - _ = yym3679 + if yyq3691[6] { + yym3711 := z.EncBinary() + _ = yym3711 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -46502,25 +46964,25 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3659[6] { + if yyq3691[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3680 := z.EncBinary() - _ = yym3680 + yym3712 := z.EncBinary() + _ = yym3712 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3659 || yy2arr3659 { + if yyr3691 || yy2arr3691 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Command == nil { r.EncodeNil() } else { - yym3682 := z.EncBinary() - _ = yym3682 + yym3714 := z.EncBinary() + _ = yym3714 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -46533,15 +46995,15 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.Command == nil { r.EncodeNil() } else { - yym3683 := z.EncBinary() - _ = yym3683 + yym3715 := z.EncBinary() + _ = yym3715 if false { } else { z.F.EncSliceStringV(x.Command, false, e) } } } - if yyr3659 || yy2arr3659 { + if yyr3691 || yy2arr3691 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46554,25 +47016,25 @@ func (x *PodExecOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3684 := z.DecBinary() - _ = yym3684 + yym3716 := z.DecBinary() + _ = yym3716 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3685 := r.ContainerType() - if yyct3685 == codecSelferValueTypeMap1234 { - yyl3685 := r.ReadMapStart() - if yyl3685 == 0 { + yyct3717 := r.ContainerType() + if yyct3717 == codecSelferValueTypeMap1234 { + yyl3717 := r.ReadMapStart() + if yyl3717 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3685, d) + x.codecDecodeSelfFromMap(yyl3717, d) } - } else if yyct3685 == codecSelferValueTypeArray1234 { - yyl3685 := r.ReadArrayStart() - if yyl3685 == 0 { + } else if yyct3717 == codecSelferValueTypeArray1234 { + yyl3717 := r.ReadArrayStart() + if yyl3717 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3685, d) + x.codecDecodeSelfFromArray(yyl3717, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46584,12 +47046,12 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3686Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3686Slc - var yyhl3686 bool = l >= 0 - for yyj3686 := 0; ; yyj3686++ { - if yyhl3686 { - if yyj3686 >= l { + var yys3718Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3718Slc + var yyhl3718 bool = l >= 0 + for yyj3718 := 0; ; yyj3718++ { + if yyhl3718 { + if yyj3718 >= l { break } } else { @@ -46598,10 +47060,10 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3686Slc = r.DecodeBytes(yys3686Slc, true, true) - yys3686 := string(yys3686Slc) + yys3718Slc = r.DecodeBytes(yys3718Slc, true, true) + yys3718 := string(yys3718Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3686 { + switch yys3718 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46648,18 +47110,18 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3694 := &x.Command - yym3695 := z.DecBinary() - _ = yym3695 + yyv3726 := &x.Command + yym3727 := z.DecBinary() + _ = yym3727 if false { } else { - z.F.DecSliceStringX(yyv3694, false, d) + z.F.DecSliceStringX(yyv3726, false, d) } } default: - z.DecStructFieldNotFound(-1, yys3686) - } // end switch yys3686 - } // end for yyj3686 + z.DecStructFieldNotFound(-1, yys3718) + } // end switch yys3718 + } // end for yyj3718 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46667,16 +47129,16 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3696 int - var yyb3696 bool - var yyhl3696 bool = l >= 0 - yyj3696++ - if yyhl3696 { - yyb3696 = yyj3696 > l + var yyj3728 int + var yyb3728 bool + var yyhl3728 bool = l >= 0 + yyj3728++ + if yyhl3728 { + yyb3728 = yyj3728 > l } else { - yyb3696 = r.CheckBreak() + yyb3728 = r.CheckBreak() } - if yyb3696 { + if yyb3728 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46686,13 +47148,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3696++ - if yyhl3696 { - yyb3696 = yyj3696 > l + yyj3728++ + if yyhl3728 { + yyb3728 = yyj3728 > l } else { - yyb3696 = r.CheckBreak() + yyb3728 = r.CheckBreak() } - if yyb3696 { + if yyb3728 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46702,13 +47164,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3696++ - if yyhl3696 { - yyb3696 = yyj3696 > l + yyj3728++ + if yyhl3728 { + yyb3728 = yyj3728 > l } else { - yyb3696 = r.CheckBreak() + yyb3728 = r.CheckBreak() } - if yyb3696 { + if yyb3728 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46718,13 +47180,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj3696++ - if yyhl3696 { - yyb3696 = yyj3696 > l + yyj3728++ + if yyhl3728 { + yyb3728 = yyj3728 > l } else { - yyb3696 = r.CheckBreak() + yyb3728 = r.CheckBreak() } - if yyb3696 { + if yyb3728 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46734,13 +47196,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdout = bool(r.DecodeBool()) } - yyj3696++ - if yyhl3696 { - yyb3696 = yyj3696 > l + yyj3728++ + if yyhl3728 { + yyb3728 = yyj3728 > l } else { - yyb3696 = r.CheckBreak() + yyb3728 = r.CheckBreak() } - if yyb3696 { + if yyb3728 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46750,13 +47212,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stderr = bool(r.DecodeBool()) } - yyj3696++ - if yyhl3696 { - yyb3696 = yyj3696 > l + yyj3728++ + if yyhl3728 { + yyb3728 = yyj3728 > l } else { - yyb3696 = r.CheckBreak() + yyb3728 = r.CheckBreak() } - if yyb3696 { + if yyb3728 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46766,13 +47228,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TTY = bool(r.DecodeBool()) } - yyj3696++ - if yyhl3696 { - yyb3696 = yyj3696 > l + yyj3728++ + if yyhl3728 { + yyb3728 = yyj3728 > l } else { - yyb3696 = r.CheckBreak() + yyb3728 = r.CheckBreak() } - if yyb3696 { + if yyb3728 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46782,13 +47244,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3696++ - if yyhl3696 { - yyb3696 = yyj3696 > l + yyj3728++ + if yyhl3728 { + yyb3728 = yyj3728 > l } else { - yyb3696 = r.CheckBreak() + yyb3728 = r.CheckBreak() } - if yyb3696 { + if yyb3728 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46796,26 +47258,26 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3704 := &x.Command - yym3705 := z.DecBinary() - _ = yym3705 + yyv3736 := &x.Command + yym3737 := z.DecBinary() + _ = yym3737 if false { } else { - z.F.DecSliceStringX(yyv3704, false, d) + z.F.DecSliceStringX(yyv3736, false, d) } } for { - yyj3696++ - if yyhl3696 { - yyb3696 = yyj3696 > l + yyj3728++ + if yyhl3728 { + yyb3728 = yyj3728 > l } else { - yyb3696 = r.CheckBreak() + yyb3728 = r.CheckBreak() } - if yyb3696 { + if yyb3728 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3696-1, "") + z.DecStructFieldNotFound(yyj3728-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46827,37 +47289,37 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3706 := z.EncBinary() - _ = yym3706 + yym3738 := z.EncBinary() + _ = yym3738 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3707 := !z.EncBinary() - yy2arr3707 := z.EncBasicHandle().StructToArray - var yyq3707 [3]bool - _, _, _ = yysep3707, yyq3707, yy2arr3707 - const yyr3707 bool = false - yyq3707[0] = x.Kind != "" - yyq3707[1] = x.APIVersion != "" - yyq3707[2] = x.Path != "" - var yynn3707 int - if yyr3707 || yy2arr3707 { + yysep3739 := !z.EncBinary() + yy2arr3739 := z.EncBasicHandle().StructToArray + var yyq3739 [3]bool + _, _, _ = yysep3739, yyq3739, yy2arr3739 + const yyr3739 bool = false + yyq3739[0] = x.Kind != "" + yyq3739[1] = x.APIVersion != "" + yyq3739[2] = x.Path != "" + var yynn3739 int + if yyr3739 || yy2arr3739 { r.EncodeArrayStart(3) } else { - yynn3707 = 0 - for _, b := range yyq3707 { + yynn3739 = 0 + for _, b := range yyq3739 { if b { - yynn3707++ + yynn3739++ } } - r.EncodeMapStart(yynn3707) - yynn3707 = 0 + r.EncodeMapStart(yynn3739) + yynn3739 = 0 } - if yyr3707 || yy2arr3707 { + if yyr3739 || yy2arr3739 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3707[0] { - yym3709 := z.EncBinary() - _ = yym3709 + if yyq3739[0] { + yym3741 := z.EncBinary() + _ = yym3741 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -46866,23 +47328,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3707[0] { + if yyq3739[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3710 := z.EncBinary() - _ = yym3710 + yym3742 := z.EncBinary() + _ = yym3742 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3707 || yy2arr3707 { + if yyr3739 || yy2arr3739 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3707[1] { - yym3712 := z.EncBinary() - _ = yym3712 + if yyq3739[1] { + yym3744 := z.EncBinary() + _ = yym3744 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -46891,23 +47353,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3707[1] { + if yyq3739[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3713 := z.EncBinary() - _ = yym3713 + yym3745 := z.EncBinary() + _ = yym3745 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3707 || yy2arr3707 { + if yyr3739 || yy2arr3739 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3707[2] { - yym3715 := z.EncBinary() - _ = yym3715 + if yyq3739[2] { + yym3747 := z.EncBinary() + _ = yym3747 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -46916,19 +47378,19 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3707[2] { + if yyq3739[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3716 := z.EncBinary() - _ = yym3716 + yym3748 := z.EncBinary() + _ = yym3748 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr3707 || yy2arr3707 { + if yyr3739 || yy2arr3739 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46941,25 +47403,25 @@ func (x *PodProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3717 := z.DecBinary() - _ = yym3717 + yym3749 := z.DecBinary() + _ = yym3749 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3718 := r.ContainerType() - if yyct3718 == codecSelferValueTypeMap1234 { - yyl3718 := r.ReadMapStart() - if yyl3718 == 0 { + yyct3750 := r.ContainerType() + if yyct3750 == codecSelferValueTypeMap1234 { + yyl3750 := r.ReadMapStart() + if yyl3750 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3718, d) + x.codecDecodeSelfFromMap(yyl3750, d) } - } else if yyct3718 == codecSelferValueTypeArray1234 { - yyl3718 := r.ReadArrayStart() - if yyl3718 == 0 { + } else if yyct3750 == codecSelferValueTypeArray1234 { + yyl3750 := r.ReadArrayStart() + if yyl3750 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3718, d) + x.codecDecodeSelfFromArray(yyl3750, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46971,12 +47433,12 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3719Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3719Slc - var yyhl3719 bool = l >= 0 - for yyj3719 := 0; ; yyj3719++ { - if yyhl3719 { - if yyj3719 >= l { + var yys3751Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3751Slc + var yyhl3751 bool = l >= 0 + for yyj3751 := 0; ; yyj3751++ { + if yyhl3751 { + if yyj3751 >= l { break } } else { @@ -46985,10 +47447,10 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3719Slc = r.DecodeBytes(yys3719Slc, true, true) - yys3719 := string(yys3719Slc) + yys3751Slc = r.DecodeBytes(yys3751Slc, true, true) + yys3751 := string(yys3751Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3719 { + switch yys3751 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47008,9 +47470,9 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3719) - } // end switch yys3719 - } // end for yyj3719 + z.DecStructFieldNotFound(-1, yys3751) + } // end switch yys3751 + } // end for yyj3751 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47018,16 +47480,16 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3723 int - var yyb3723 bool - var yyhl3723 bool = l >= 0 - yyj3723++ - if yyhl3723 { - yyb3723 = yyj3723 > l + var yyj3755 int + var yyb3755 bool + var yyhl3755 bool = l >= 0 + yyj3755++ + if yyhl3755 { + yyb3755 = yyj3755 > l } else { - yyb3723 = r.CheckBreak() + yyb3755 = r.CheckBreak() } - if yyb3723 { + if yyb3755 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47037,13 +47499,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3723++ - if yyhl3723 { - yyb3723 = yyj3723 > l + yyj3755++ + if yyhl3755 { + yyb3755 = yyj3755 > l } else { - yyb3723 = r.CheckBreak() + yyb3755 = r.CheckBreak() } - if yyb3723 { + if yyb3755 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47053,13 +47515,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3723++ - if yyhl3723 { - yyb3723 = yyj3723 > l + yyj3755++ + if yyhl3755 { + yyb3755 = yyj3755 > l } else { - yyb3723 = r.CheckBreak() + yyb3755 = r.CheckBreak() } - if yyb3723 { + if yyb3755 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47070,17 +47532,17 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3723++ - if yyhl3723 { - yyb3723 = yyj3723 > l + yyj3755++ + if yyhl3755 { + yyb3755 = yyj3755 > l } else { - yyb3723 = r.CheckBreak() + yyb3755 = r.CheckBreak() } - if yyb3723 { + if yyb3755 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3723-1, "") + z.DecStructFieldNotFound(yyj3755-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47092,37 +47554,37 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3727 := z.EncBinary() - _ = yym3727 + yym3759 := z.EncBinary() + _ = yym3759 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3728 := !z.EncBinary() - yy2arr3728 := z.EncBasicHandle().StructToArray - var yyq3728 [3]bool - _, _, _ = yysep3728, yyq3728, yy2arr3728 - const yyr3728 bool = false - yyq3728[0] = x.Kind != "" - yyq3728[1] = x.APIVersion != "" - yyq3728[2] = x.Path != "" - var yynn3728 int - if yyr3728 || yy2arr3728 { + yysep3760 := !z.EncBinary() + yy2arr3760 := z.EncBasicHandle().StructToArray + var yyq3760 [3]bool + _, _, _ = yysep3760, yyq3760, yy2arr3760 + const yyr3760 bool = false + yyq3760[0] = x.Kind != "" + yyq3760[1] = x.APIVersion != "" + yyq3760[2] = x.Path != "" + var yynn3760 int + if yyr3760 || yy2arr3760 { r.EncodeArrayStart(3) } else { - yynn3728 = 0 - for _, b := range yyq3728 { + yynn3760 = 0 + for _, b := range yyq3760 { if b { - yynn3728++ + yynn3760++ } } - r.EncodeMapStart(yynn3728) - yynn3728 = 0 + r.EncodeMapStart(yynn3760) + yynn3760 = 0 } - if yyr3728 || yy2arr3728 { + if yyr3760 || yy2arr3760 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3728[0] { - yym3730 := z.EncBinary() - _ = yym3730 + if yyq3760[0] { + yym3762 := z.EncBinary() + _ = yym3762 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47131,23 +47593,23 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3728[0] { + if yyq3760[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3731 := z.EncBinary() - _ = yym3731 + yym3763 := z.EncBinary() + _ = yym3763 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3728 || yy2arr3728 { + if yyr3760 || yy2arr3760 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3728[1] { - yym3733 := z.EncBinary() - _ = yym3733 + if yyq3760[1] { + yym3765 := z.EncBinary() + _ = yym3765 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47156,23 +47618,23 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3728[1] { + if yyq3760[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3734 := z.EncBinary() - _ = yym3734 + yym3766 := z.EncBinary() + _ = yym3766 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3728 || yy2arr3728 { + if yyr3760 || yy2arr3760 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3728[2] { - yym3736 := z.EncBinary() - _ = yym3736 + if yyq3760[2] { + yym3768 := z.EncBinary() + _ = yym3768 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -47181,19 +47643,19 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3728[2] { + if yyq3760[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3737 := z.EncBinary() - _ = yym3737 + yym3769 := z.EncBinary() + _ = yym3769 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr3728 || yy2arr3728 { + if yyr3760 || yy2arr3760 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47206,25 +47668,25 @@ func (x *NodeProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3738 := z.DecBinary() - _ = yym3738 + yym3770 := z.DecBinary() + _ = yym3770 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3739 := r.ContainerType() - if yyct3739 == codecSelferValueTypeMap1234 { - yyl3739 := r.ReadMapStart() - if yyl3739 == 0 { + yyct3771 := r.ContainerType() + if yyct3771 == codecSelferValueTypeMap1234 { + yyl3771 := r.ReadMapStart() + if yyl3771 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3739, d) + x.codecDecodeSelfFromMap(yyl3771, d) } - } else if yyct3739 == codecSelferValueTypeArray1234 { - yyl3739 := r.ReadArrayStart() - if yyl3739 == 0 { + } else if yyct3771 == codecSelferValueTypeArray1234 { + yyl3771 := r.ReadArrayStart() + if yyl3771 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3739, d) + x.codecDecodeSelfFromArray(yyl3771, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47236,12 +47698,12 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3740Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3740Slc - var yyhl3740 bool = l >= 0 - for yyj3740 := 0; ; yyj3740++ { - if yyhl3740 { - if yyj3740 >= l { + var yys3772Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3772Slc + var yyhl3772 bool = l >= 0 + for yyj3772 := 0; ; yyj3772++ { + if yyhl3772 { + if yyj3772 >= l { break } } else { @@ -47250,10 +47712,10 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3740Slc = r.DecodeBytes(yys3740Slc, true, true) - yys3740 := string(yys3740Slc) + yys3772Slc = r.DecodeBytes(yys3772Slc, true, true) + yys3772 := string(yys3772Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3740 { + switch yys3772 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47273,9 +47735,9 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3740) - } // end switch yys3740 - } // end for yyj3740 + z.DecStructFieldNotFound(-1, yys3772) + } // end switch yys3772 + } // end for yyj3772 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47283,16 +47745,16 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3744 int - var yyb3744 bool - var yyhl3744 bool = l >= 0 - yyj3744++ - if yyhl3744 { - yyb3744 = yyj3744 > l + var yyj3776 int + var yyb3776 bool + var yyhl3776 bool = l >= 0 + yyj3776++ + if yyhl3776 { + yyb3776 = yyj3776 > l } else { - yyb3744 = r.CheckBreak() + yyb3776 = r.CheckBreak() } - if yyb3744 { + if yyb3776 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47302,13 +47764,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3744++ - if yyhl3744 { - yyb3744 = yyj3744 > l + yyj3776++ + if yyhl3776 { + yyb3776 = yyj3776 > l } else { - yyb3744 = r.CheckBreak() + yyb3776 = r.CheckBreak() } - if yyb3744 { + if yyb3776 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47318,13 +47780,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3744++ - if yyhl3744 { - yyb3744 = yyj3744 > l + yyj3776++ + if yyhl3776 { + yyb3776 = yyj3776 > l } else { - yyb3744 = r.CheckBreak() + yyb3776 = r.CheckBreak() } - if yyb3744 { + if yyb3776 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47335,17 +47797,17 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3744++ - if yyhl3744 { - yyb3744 = yyj3744 > l + yyj3776++ + if yyhl3776 { + yyb3776 = yyj3776 > l } else { - yyb3744 = r.CheckBreak() + yyb3776 = r.CheckBreak() } - if yyb3744 { + if yyb3776 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3744-1, "") + z.DecStructFieldNotFound(yyj3776-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47357,37 +47819,37 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3748 := z.EncBinary() - _ = yym3748 + yym3780 := z.EncBinary() + _ = yym3780 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3749 := !z.EncBinary() - yy2arr3749 := z.EncBasicHandle().StructToArray - var yyq3749 [3]bool - _, _, _ = yysep3749, yyq3749, yy2arr3749 - const yyr3749 bool = false - yyq3749[0] = x.Kind != "" - yyq3749[1] = x.APIVersion != "" - yyq3749[2] = x.Path != "" - var yynn3749 int - if yyr3749 || yy2arr3749 { + yysep3781 := !z.EncBinary() + yy2arr3781 := z.EncBasicHandle().StructToArray + var yyq3781 [3]bool + _, _, _ = yysep3781, yyq3781, yy2arr3781 + const yyr3781 bool = false + yyq3781[0] = x.Kind != "" + yyq3781[1] = x.APIVersion != "" + yyq3781[2] = x.Path != "" + var yynn3781 int + if yyr3781 || yy2arr3781 { r.EncodeArrayStart(3) } else { - yynn3749 = 0 - for _, b := range yyq3749 { + yynn3781 = 0 + for _, b := range yyq3781 { if b { - yynn3749++ + yynn3781++ } } - r.EncodeMapStart(yynn3749) - yynn3749 = 0 + r.EncodeMapStart(yynn3781) + yynn3781 = 0 } - if yyr3749 || yy2arr3749 { + if yyr3781 || yy2arr3781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3749[0] { - yym3751 := z.EncBinary() - _ = yym3751 + if yyq3781[0] { + yym3783 := z.EncBinary() + _ = yym3783 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47396,23 +47858,23 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3749[0] { + if yyq3781[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3752 := z.EncBinary() - _ = yym3752 + yym3784 := z.EncBinary() + _ = yym3784 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3749 || yy2arr3749 { + if yyr3781 || yy2arr3781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3749[1] { - yym3754 := z.EncBinary() - _ = yym3754 + if yyq3781[1] { + yym3786 := z.EncBinary() + _ = yym3786 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47421,23 +47883,23 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3749[1] { + if yyq3781[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3755 := z.EncBinary() - _ = yym3755 + yym3787 := z.EncBinary() + _ = yym3787 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3749 || yy2arr3749 { + if yyr3781 || yy2arr3781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3749[2] { - yym3757 := z.EncBinary() - _ = yym3757 + if yyq3781[2] { + yym3789 := z.EncBinary() + _ = yym3789 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -47446,19 +47908,19 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3749[2] { + if yyq3781[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3758 := z.EncBinary() - _ = yym3758 + yym3790 := z.EncBinary() + _ = yym3790 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr3749 || yy2arr3749 { + if yyr3781 || yy2arr3781 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47471,25 +47933,25 @@ func (x *ServiceProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3759 := z.DecBinary() - _ = yym3759 + yym3791 := z.DecBinary() + _ = yym3791 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3760 := r.ContainerType() - if yyct3760 == codecSelferValueTypeMap1234 { - yyl3760 := r.ReadMapStart() - if yyl3760 == 0 { + yyct3792 := r.ContainerType() + if yyct3792 == codecSelferValueTypeMap1234 { + yyl3792 := r.ReadMapStart() + if yyl3792 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3760, d) + x.codecDecodeSelfFromMap(yyl3792, d) } - } else if yyct3760 == codecSelferValueTypeArray1234 { - yyl3760 := r.ReadArrayStart() - if yyl3760 == 0 { + } else if yyct3792 == codecSelferValueTypeArray1234 { + yyl3792 := r.ReadArrayStart() + if yyl3792 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3760, d) + x.codecDecodeSelfFromArray(yyl3792, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47501,12 +47963,12 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3761Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3761Slc - var yyhl3761 bool = l >= 0 - for yyj3761 := 0; ; yyj3761++ { - if yyhl3761 { - if yyj3761 >= l { + var yys3793Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3793Slc + var yyhl3793 bool = l >= 0 + for yyj3793 := 0; ; yyj3793++ { + if yyhl3793 { + if yyj3793 >= l { break } } else { @@ -47515,10 +47977,10 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3761Slc = r.DecodeBytes(yys3761Slc, true, true) - yys3761 := string(yys3761Slc) + yys3793Slc = r.DecodeBytes(yys3793Slc, true, true) + yys3793 := string(yys3793Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3761 { + switch yys3793 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47538,9 +48000,9 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3761) - } // end switch yys3761 - } // end for yyj3761 + z.DecStructFieldNotFound(-1, yys3793) + } // end switch yys3793 + } // end for yyj3793 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47548,16 +48010,16 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3765 int - var yyb3765 bool - var yyhl3765 bool = l >= 0 - yyj3765++ - if yyhl3765 { - yyb3765 = yyj3765 > l + var yyj3797 int + var yyb3797 bool + var yyhl3797 bool = l >= 0 + yyj3797++ + if yyhl3797 { + yyb3797 = yyj3797 > l } else { - yyb3765 = r.CheckBreak() + yyb3797 = r.CheckBreak() } - if yyb3765 { + if yyb3797 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47567,13 +48029,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3765++ - if yyhl3765 { - yyb3765 = yyj3765 > l + yyj3797++ + if yyhl3797 { + yyb3797 = yyj3797 > l } else { - yyb3765 = r.CheckBreak() + yyb3797 = r.CheckBreak() } - if yyb3765 { + if yyb3797 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47583,13 +48045,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3765++ - if yyhl3765 { - yyb3765 = yyj3765 > l + yyj3797++ + if yyhl3797 { + yyb3797 = yyj3797 > l } else { - yyb3765 = r.CheckBreak() + yyb3797 = r.CheckBreak() } - if yyb3765 { + if yyb3797 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47600,17 +48062,17 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Path = string(r.DecodeString()) } for { - yyj3765++ - if yyhl3765 { - yyb3765 = yyj3765 > l + yyj3797++ + if yyhl3797 { + yyb3797 = yyj3797 > l } else { - yyb3765 = r.CheckBreak() + yyb3797 = r.CheckBreak() } - if yyb3765 { + if yyb3797 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3765-1, "") + z.DecStructFieldNotFound(yyj3797-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47622,41 +48084,41 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3769 := z.EncBinary() - _ = yym3769 + yym3801 := z.EncBinary() + _ = yym3801 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3770 := !z.EncBinary() - yy2arr3770 := z.EncBasicHandle().StructToArray - var yyq3770 [7]bool - _, _, _ = yysep3770, yyq3770, yy2arr3770 - const yyr3770 bool = false - yyq3770[0] = x.Kind != "" - yyq3770[1] = x.Namespace != "" - yyq3770[2] = x.Name != "" - yyq3770[3] = x.UID != "" - yyq3770[4] = x.APIVersion != "" - yyq3770[5] = x.ResourceVersion != "" - yyq3770[6] = x.FieldPath != "" - var yynn3770 int - if yyr3770 || yy2arr3770 { + yysep3802 := !z.EncBinary() + yy2arr3802 := z.EncBasicHandle().StructToArray + var yyq3802 [7]bool + _, _, _ = yysep3802, yyq3802, yy2arr3802 + const yyr3802 bool = false + yyq3802[0] = x.Kind != "" + yyq3802[1] = x.Namespace != "" + yyq3802[2] = x.Name != "" + yyq3802[3] = x.UID != "" + yyq3802[4] = x.APIVersion != "" + yyq3802[5] = x.ResourceVersion != "" + yyq3802[6] = x.FieldPath != "" + var yynn3802 int + if yyr3802 || yy2arr3802 { r.EncodeArrayStart(7) } else { - yynn3770 = 0 - for _, b := range yyq3770 { + yynn3802 = 0 + for _, b := range yyq3802 { if b { - yynn3770++ + yynn3802++ } } - r.EncodeMapStart(yynn3770) - yynn3770 = 0 + r.EncodeMapStart(yynn3802) + yynn3802 = 0 } - if yyr3770 || yy2arr3770 { + if yyr3802 || yy2arr3802 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3770[0] { - yym3772 := z.EncBinary() - _ = yym3772 + if yyq3802[0] { + yym3804 := z.EncBinary() + _ = yym3804 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -47665,23 +48127,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3770[0] { + if yyq3802[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3773 := z.EncBinary() - _ = yym3773 + yym3805 := z.EncBinary() + _ = yym3805 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3770 || yy2arr3770 { + if yyr3802 || yy2arr3802 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3770[1] { - yym3775 := z.EncBinary() - _ = yym3775 + if yyq3802[1] { + yym3807 := z.EncBinary() + _ = yym3807 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) @@ -47690,23 +48152,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3770[1] { + if yyq3802[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("namespace")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3776 := z.EncBinary() - _ = yym3776 + yym3808 := z.EncBinary() + _ = yym3808 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) } } } - if yyr3770 || yy2arr3770 { + if yyr3802 || yy2arr3802 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3770[2] { - yym3778 := z.EncBinary() - _ = yym3778 + if yyq3802[2] { + yym3810 := z.EncBinary() + _ = yym3810 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -47715,23 +48177,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3770[2] { + if yyq3802[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3779 := z.EncBinary() - _ = yym3779 + yym3811 := z.EncBinary() + _ = yym3811 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr3770 || yy2arr3770 { + if yyr3802 || yy2arr3802 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3770[3] { - yym3781 := z.EncBinary() - _ = yym3781 + if yyq3802[3] { + yym3813 := z.EncBinary() + _ = yym3813 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -47741,12 +48203,12 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3770[3] { + if yyq3802[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3782 := z.EncBinary() - _ = yym3782 + yym3814 := z.EncBinary() + _ = yym3814 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -47754,11 +48216,11 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3770 || yy2arr3770 { + if yyr3802 || yy2arr3802 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3770[4] { - yym3784 := z.EncBinary() - _ = yym3784 + if yyq3802[4] { + yym3816 := z.EncBinary() + _ = yym3816 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -47767,23 +48229,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3770[4] { + if yyq3802[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3785 := z.EncBinary() - _ = yym3785 + yym3817 := z.EncBinary() + _ = yym3817 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3770 || yy2arr3770 { + if yyr3802 || yy2arr3802 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3770[5] { - yym3787 := z.EncBinary() - _ = yym3787 + if yyq3802[5] { + yym3819 := z.EncBinary() + _ = yym3819 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -47792,23 +48254,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3770[5] { + if yyq3802[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3788 := z.EncBinary() - _ = yym3788 + yym3820 := z.EncBinary() + _ = yym3820 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr3770 || yy2arr3770 { + if yyr3802 || yy2arr3802 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3770[6] { - yym3790 := z.EncBinary() - _ = yym3790 + if yyq3802[6] { + yym3822 := z.EncBinary() + _ = yym3822 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) @@ -47817,19 +48279,19 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3770[6] { + if yyq3802[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3791 := z.EncBinary() - _ = yym3791 + yym3823 := z.EncBinary() + _ = yym3823 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } } - if yyr3770 || yy2arr3770 { + if yyr3802 || yy2arr3802 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47842,25 +48304,25 @@ func (x *ObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3792 := z.DecBinary() - _ = yym3792 + yym3824 := z.DecBinary() + _ = yym3824 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3793 := r.ContainerType() - if yyct3793 == codecSelferValueTypeMap1234 { - yyl3793 := r.ReadMapStart() - if yyl3793 == 0 { + yyct3825 := r.ContainerType() + if yyct3825 == codecSelferValueTypeMap1234 { + yyl3825 := r.ReadMapStart() + if yyl3825 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3793, d) + x.codecDecodeSelfFromMap(yyl3825, d) } - } else if yyct3793 == codecSelferValueTypeArray1234 { - yyl3793 := r.ReadArrayStart() - if yyl3793 == 0 { + } else if yyct3825 == codecSelferValueTypeArray1234 { + yyl3825 := r.ReadArrayStart() + if yyl3825 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3793, d) + x.codecDecodeSelfFromArray(yyl3825, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47872,12 +48334,12 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3794Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3794Slc - var yyhl3794 bool = l >= 0 - for yyj3794 := 0; ; yyj3794++ { - if yyhl3794 { - if yyj3794 >= l { + var yys3826Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3826Slc + var yyhl3826 bool = l >= 0 + for yyj3826 := 0; ; yyj3826++ { + if yyhl3826 { + if yyj3826 >= l { break } } else { @@ -47886,10 +48348,10 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3794Slc = r.DecodeBytes(yys3794Slc, true, true) - yys3794 := string(yys3794Slc) + yys3826Slc = r.DecodeBytes(yys3826Slc, true, true) + yys3826 := string(yys3826Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3794 { + switch yys3826 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47933,9 +48395,9 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FieldPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3794) - } // end switch yys3794 - } // end for yyj3794 + z.DecStructFieldNotFound(-1, yys3826) + } // end switch yys3826 + } // end for yyj3826 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47943,16 +48405,16 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3802 int - var yyb3802 bool - var yyhl3802 bool = l >= 0 - yyj3802++ - if yyhl3802 { - yyb3802 = yyj3802 > l + var yyj3834 int + var yyb3834 bool + var yyhl3834 bool = l >= 0 + yyj3834++ + if yyhl3834 { + yyb3834 = yyj3834 > l } else { - yyb3802 = r.CheckBreak() + yyb3834 = r.CheckBreak() } - if yyb3802 { + if yyb3834 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47962,13 +48424,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3802++ - if yyhl3802 { - yyb3802 = yyj3802 > l + yyj3834++ + if yyhl3834 { + yyb3834 = yyj3834 > l } else { - yyb3802 = r.CheckBreak() + yyb3834 = r.CheckBreak() } - if yyb3802 { + if yyb3834 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47978,13 +48440,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Namespace = string(r.DecodeString()) } - yyj3802++ - if yyhl3802 { - yyb3802 = yyj3802 > l + yyj3834++ + if yyhl3834 { + yyb3834 = yyj3834 > l } else { - yyb3802 = r.CheckBreak() + yyb3834 = r.CheckBreak() } - if yyb3802 { + if yyb3834 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47994,13 +48456,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj3802++ - if yyhl3802 { - yyb3802 = yyj3802 > l + yyj3834++ + if yyhl3834 { + yyb3834 = yyj3834 > l } else { - yyb3802 = r.CheckBreak() + yyb3834 = r.CheckBreak() } - if yyb3802 { + if yyb3834 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48010,13 +48472,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3802++ - if yyhl3802 { - yyb3802 = yyj3802 > l + yyj3834++ + if yyhl3834 { + yyb3834 = yyj3834 > l } else { - yyb3802 = r.CheckBreak() + yyb3834 = r.CheckBreak() } - if yyb3802 { + if yyb3834 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48026,13 +48488,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3802++ - if yyhl3802 { - yyb3802 = yyj3802 > l + yyj3834++ + if yyhl3834 { + yyb3834 = yyj3834 > l } else { - yyb3802 = r.CheckBreak() + yyb3834 = r.CheckBreak() } - if yyb3802 { + if yyb3834 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48042,13 +48504,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3802++ - if yyhl3802 { - yyb3802 = yyj3802 > l + yyj3834++ + if yyhl3834 { + yyb3834 = yyj3834 > l } else { - yyb3802 = r.CheckBreak() + yyb3834 = r.CheckBreak() } - if yyb3802 { + if yyb3834 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48059,450 +48521,22 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.FieldPath = string(r.DecodeString()) } for { - yyj3802++ - if yyhl3802 { - yyb3802 = yyj3802 > l + yyj3834++ + if yyhl3834 { + yyb3834 = yyj3834 > l } else { - yyb3802 = r.CheckBreak() + yyb3834 = r.CheckBreak() } - if yyb3802 { + if yyb3834 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3802-1, "") + z.DecStructFieldNotFound(yyj3834-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3810 := z.EncBinary() - _ = yym3810 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3811 := !z.EncBinary() - yy2arr3811 := z.EncBasicHandle().StructToArray - var yyq3811 [1]bool - _, _, _ = yysep3811, yyq3811, yy2arr3811 - const yyr3811 bool = false - yyq3811[0] = x.Name != "" - var yynn3811 int - if yyr3811 || yy2arr3811 { - r.EncodeArrayStart(1) - } else { - yynn3811 = 0 - for _, b := range yyq3811 { - if b { - yynn3811++ - } - } - r.EncodeMapStart(yynn3811) - yynn3811 = 0 - } - if yyr3811 || yy2arr3811 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3811[0] { - yym3813 := z.EncBinary() - _ = yym3813 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Name)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3811[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("name")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3814 := z.EncBinary() - _ = yym3814 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Name)) - } - } - } - if yyr3811 || yy2arr3811 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *LocalObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3815 := z.DecBinary() - _ = yym3815 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3816 := r.ContainerType() - if yyct3816 == codecSelferValueTypeMap1234 { - yyl3816 := r.ReadMapStart() - if yyl3816 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3816, d) - } - } else if yyct3816 == codecSelferValueTypeArray1234 { - yyl3816 := r.ReadArrayStart() - if yyl3816 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3816, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3817Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3817Slc - var yyhl3817 bool = l >= 0 - for yyj3817 := 0; ; yyj3817++ { - if yyhl3817 { - if yyj3817 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3817Slc = r.DecodeBytes(yys3817Slc, true, true) - yys3817 := string(yys3817Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3817 { - case "name": - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = string(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys3817) - } // end switch yys3817 - } // end for yyj3817 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3819 int - var yyb3819 bool - var yyhl3819 bool = l >= 0 - yyj3819++ - if yyhl3819 { - yyb3819 = yyj3819 > l - } else { - yyb3819 = r.CheckBreak() - } - if yyb3819 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = string(r.DecodeString()) - } - for { - yyj3819++ - if yyhl3819 { - yyb3819 = yyj3819 > l - } else { - yyb3819 = r.CheckBreak() - } - if yyb3819 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3819-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3821 := z.EncBinary() - _ = yym3821 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3822 := !z.EncBinary() - yy2arr3822 := z.EncBasicHandle().StructToArray - var yyq3822 [3]bool - _, _, _ = yysep3822, yyq3822, yy2arr3822 - const yyr3822 bool = false - yyq3822[0] = x.Kind != "" - yyq3822[1] = x.APIVersion != "" - yyq3822[2] = true - var yynn3822 int - if yyr3822 || yy2arr3822 { - r.EncodeArrayStart(3) - } else { - yynn3822 = 0 - for _, b := range yyq3822 { - if b { - yynn3822++ - } - } - r.EncodeMapStart(yynn3822) - yynn3822 = 0 - } - if yyr3822 || yy2arr3822 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3822[0] { - yym3824 := z.EncBinary() - _ = yym3824 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3822[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3825 := z.EncBinary() - _ = yym3825 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3822 || yy2arr3822 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3822[1] { - yym3827 := z.EncBinary() - _ = yym3827 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3822[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3828 := z.EncBinary() - _ = yym3828 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr3822 || yy2arr3822 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3822[2] { - yy3830 := &x.Reference - yy3830.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq3822[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("reference")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3831 := &x.Reference - yy3831.CodecEncodeSelf(e) - } - } - if yyr3822 || yy2arr3822 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *SerializedReference) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3832 := z.DecBinary() - _ = yym3832 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3833 := r.ContainerType() - if yyct3833 == codecSelferValueTypeMap1234 { - yyl3833 := r.ReadMapStart() - if yyl3833 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3833, d) - } - } else if yyct3833 == codecSelferValueTypeArray1234 { - yyl3833 := r.ReadArrayStart() - if yyl3833 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3833, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3834Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3834Slc - var yyhl3834 bool = l >= 0 - for yyj3834 := 0; ; yyj3834++ { - if yyhl3834 { - if yyj3834 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3834Slc = r.DecodeBytes(yys3834Slc, true, true) - yys3834 := string(yys3834Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3834 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "reference": - if r.TryDecodeAsNil() { - x.Reference = ObjectReference{} - } else { - yyv3837 := &x.Reference - yyv3837.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys3834) - } // end switch yys3834 - } // end for yyj3834 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3838 int - var yyb3838 bool - var yyhl3838 bool = l >= 0 - yyj3838++ - if yyhl3838 { - yyb3838 = yyj3838 > l - } else { - yyb3838 = r.CheckBreak() - } - if yyb3838 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj3838++ - if yyhl3838 { - yyb3838 = yyj3838 > l - } else { - yyb3838 = r.CheckBreak() - } - if yyb3838 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj3838++ - if yyhl3838 { - yyb3838 = yyj3838 > l - } else { - yyb3838 = r.CheckBreak() - } - if yyb3838 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Reference = ObjectReference{} - } else { - yyv3841 := &x.Reference - yyv3841.CodecDecodeSelf(d) - } - for { - yyj3838++ - if yyhl3838 { - yyb3838 = yyj3838 > l - } else { - yyb3838 = r.CheckBreak() - } - if yyb3838 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3838-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -48516,14 +48550,13 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep3843 := !z.EncBinary() yy2arr3843 := z.EncBasicHandle().StructToArray - var yyq3843 [2]bool + var yyq3843 [1]bool _, _, _ = yysep3843, yyq3843, yy2arr3843 const yyr3843 bool = false - yyq3843[0] = x.Component != "" - yyq3843[1] = x.Host != "" + yyq3843[0] = x.Name != "" var yynn3843 int if yyr3843 || yy2arr3843 { - r.EncodeArrayStart(2) + r.EncodeArrayStart(1) } else { yynn3843 = 0 for _, b := range yyq3843 { @@ -48541,7 +48574,7 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { _ = yym3845 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Component)) + r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } else { r.EncodeString(codecSelferC_UTF81234, "") @@ -48549,38 +48582,13 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { } else { if yyq3843[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("component")) + r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3846 := z.EncBinary() _ = yym3846 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Component)) - } - } - } - if yyr3843 || yy2arr3843 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3843[1] { - yym3848 := z.EncBinary() - _ = yym3848 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Host)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3843[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("host")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3849 := z.EncBinary() - _ = yym3849 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Host)) + r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } @@ -48593,29 +48601,483 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { } } +func (x *LocalObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3847 := z.DecBinary() + _ = yym3847 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3848 := r.ContainerType() + if yyct3848 == codecSelferValueTypeMap1234 { + yyl3848 := r.ReadMapStart() + if yyl3848 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3848, d) + } + } else if yyct3848 == codecSelferValueTypeArray1234 { + yyl3848 := r.ReadArrayStart() + if yyl3848 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3848, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys3849Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3849Slc + var yyhl3849 bool = l >= 0 + for yyj3849 := 0; ; yyj3849++ { + if yyhl3849 { + if yyj3849 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3849Slc = r.DecodeBytes(yys3849Slc, true, true) + yys3849 := string(yys3849Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3849 { + case "name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = string(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3849) + } // end switch yys3849 + } // end for yyj3849 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3851 int + var yyb3851 bool + var yyhl3851 bool = l >= 0 + yyj3851++ + if yyhl3851 { + yyb3851 = yyj3851 > l + } else { + yyb3851 = r.CheckBreak() + } + if yyb3851 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = string(r.DecodeString()) + } + for { + yyj3851++ + if yyhl3851 { + yyb3851 = yyj3851 > l + } else { + yyb3851 = r.CheckBreak() + } + if yyb3851 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3851-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3853 := z.EncBinary() + _ = yym3853 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3854 := !z.EncBinary() + yy2arr3854 := z.EncBasicHandle().StructToArray + var yyq3854 [3]bool + _, _, _ = yysep3854, yyq3854, yy2arr3854 + const yyr3854 bool = false + yyq3854[0] = x.Kind != "" + yyq3854[1] = x.APIVersion != "" + yyq3854[2] = true + var yynn3854 int + if yyr3854 || yy2arr3854 { + r.EncodeArrayStart(3) + } else { + yynn3854 = 0 + for _, b := range yyq3854 { + if b { + yynn3854++ + } + } + r.EncodeMapStart(yynn3854) + yynn3854 = 0 + } + if yyr3854 || yy2arr3854 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3854[0] { + yym3856 := z.EncBinary() + _ = yym3856 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3854[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3857 := z.EncBinary() + _ = yym3857 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3854 || yy2arr3854 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3854[1] { + yym3859 := z.EncBinary() + _ = yym3859 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3854[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3860 := z.EncBinary() + _ = yym3860 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr3854 || yy2arr3854 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3854[2] { + yy3862 := &x.Reference + yy3862.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq3854[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("reference")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3863 := &x.Reference + yy3863.CodecEncodeSelf(e) + } + } + if yyr3854 || yy2arr3854 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *SerializedReference) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3864 := z.DecBinary() + _ = yym3864 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3865 := r.ContainerType() + if yyct3865 == codecSelferValueTypeMap1234 { + yyl3865 := r.ReadMapStart() + if yyl3865 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3865, d) + } + } else if yyct3865 == codecSelferValueTypeArray1234 { + yyl3865 := r.ReadArrayStart() + if yyl3865 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3865, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys3866Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3866Slc + var yyhl3866 bool = l >= 0 + for yyj3866 := 0; ; yyj3866++ { + if yyhl3866 { + if yyj3866 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3866Slc = r.DecodeBytes(yys3866Slc, true, true) + yys3866 := string(yys3866Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3866 { + case "kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "reference": + if r.TryDecodeAsNil() { + x.Reference = ObjectReference{} + } else { + yyv3869 := &x.Reference + yyv3869.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys3866) + } // end switch yys3866 + } // end for yyj3866 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3870 int + var yyb3870 bool + var yyhl3870 bool = l >= 0 + yyj3870++ + if yyhl3870 { + yyb3870 = yyj3870 > l + } else { + yyb3870 = r.CheckBreak() + } + if yyb3870 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj3870++ + if yyhl3870 { + yyb3870 = yyj3870 > l + } else { + yyb3870 = r.CheckBreak() + } + if yyb3870 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj3870++ + if yyhl3870 { + yyb3870 = yyj3870 > l + } else { + yyb3870 = r.CheckBreak() + } + if yyb3870 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Reference = ObjectReference{} + } else { + yyv3873 := &x.Reference + yyv3873.CodecDecodeSelf(d) + } + for { + yyj3870++ + if yyhl3870 { + yyb3870 = yyj3870 > l + } else { + yyb3870 = r.CheckBreak() + } + if yyb3870 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3870-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3874 := z.EncBinary() + _ = yym3874 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3875 := !z.EncBinary() + yy2arr3875 := z.EncBasicHandle().StructToArray + var yyq3875 [2]bool + _, _, _ = yysep3875, yyq3875, yy2arr3875 + const yyr3875 bool = false + yyq3875[0] = x.Component != "" + yyq3875[1] = x.Host != "" + var yynn3875 int + if yyr3875 || yy2arr3875 { + r.EncodeArrayStart(2) + } else { + yynn3875 = 0 + for _, b := range yyq3875 { + if b { + yynn3875++ + } + } + r.EncodeMapStart(yynn3875) + yynn3875 = 0 + } + if yyr3875 || yy2arr3875 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3875[0] { + yym3877 := z.EncBinary() + _ = yym3877 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Component)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3875[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("component")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3878 := z.EncBinary() + _ = yym3878 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Component)) + } + } + } + if yyr3875 || yy2arr3875 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3875[1] { + yym3880 := z.EncBinary() + _ = yym3880 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Host)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3875[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("host")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3881 := z.EncBinary() + _ = yym3881 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Host)) + } + } + } + if yyr3875 || yy2arr3875 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + func (x *EventSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3850 := z.DecBinary() - _ = yym3850 + yym3882 := z.DecBinary() + _ = yym3882 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3851 := r.ContainerType() - if yyct3851 == codecSelferValueTypeMap1234 { - yyl3851 := r.ReadMapStart() - if yyl3851 == 0 { + yyct3883 := r.ContainerType() + if yyct3883 == codecSelferValueTypeMap1234 { + yyl3883 := r.ReadMapStart() + if yyl3883 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3851, d) + x.codecDecodeSelfFromMap(yyl3883, d) } - } else if yyct3851 == codecSelferValueTypeArray1234 { - yyl3851 := r.ReadArrayStart() - if yyl3851 == 0 { + } else if yyct3883 == codecSelferValueTypeArray1234 { + yyl3883 := r.ReadArrayStart() + if yyl3883 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3851, d) + x.codecDecodeSelfFromArray(yyl3883, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48627,12 +49089,12 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3852Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3852Slc - var yyhl3852 bool = l >= 0 - for yyj3852 := 0; ; yyj3852++ { - if yyhl3852 { - if yyj3852 >= l { + var yys3884Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3884Slc + var yyhl3884 bool = l >= 0 + for yyj3884 := 0; ; yyj3884++ { + if yyhl3884 { + if yyj3884 >= l { break } } else { @@ -48641,10 +49103,10 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3852Slc = r.DecodeBytes(yys3852Slc, true, true) - yys3852 := string(yys3852Slc) + yys3884Slc = r.DecodeBytes(yys3884Slc, true, true) + yys3884 := string(yys3884Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3852 { + switch yys3884 { case "component": if r.TryDecodeAsNil() { x.Component = "" @@ -48658,9 +49120,9 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3852) - } // end switch yys3852 - } // end for yyj3852 + z.DecStructFieldNotFound(-1, yys3884) + } // end switch yys3884 + } // end for yyj3884 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48668,16 +49130,16 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3855 int - var yyb3855 bool - var yyhl3855 bool = l >= 0 - yyj3855++ - if yyhl3855 { - yyb3855 = yyj3855 > l + var yyj3887 int + var yyb3887 bool + var yyhl3887 bool = l >= 0 + yyj3887++ + if yyhl3887 { + yyb3887 = yyj3887 > l } else { - yyb3855 = r.CheckBreak() + yyb3887 = r.CheckBreak() } - if yyb3855 { + if yyb3887 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48687,13 +49149,13 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Component = string(r.DecodeString()) } - yyj3855++ - if yyhl3855 { - yyb3855 = yyj3855 > l + yyj3887++ + if yyhl3887 { + yyb3887 = yyj3887 > l } else { - yyb3855 = r.CheckBreak() + yyb3887 = r.CheckBreak() } - if yyb3855 { + if yyb3887 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48704,17 +49166,17 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } for { - yyj3855++ - if yyhl3855 { - yyb3855 = yyj3855 > l + yyj3887++ + if yyhl3887 { + yyb3887 = yyj3887 > l } else { - yyb3855 = r.CheckBreak() + yyb3887 = r.CheckBreak() } - if yyb3855 { + if yyb3887 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3855-1, "") + z.DecStructFieldNotFound(yyj3887-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48726,43 +49188,43 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3858 := z.EncBinary() - _ = yym3858 + yym3890 := z.EncBinary() + _ = yym3890 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3859 := !z.EncBinary() - yy2arr3859 := z.EncBasicHandle().StructToArray - var yyq3859 [11]bool - _, _, _ = yysep3859, yyq3859, yy2arr3859 - const yyr3859 bool = false - yyq3859[0] = x.Kind != "" - yyq3859[1] = x.APIVersion != "" - yyq3859[4] = x.Reason != "" - yyq3859[5] = x.Message != "" - yyq3859[6] = true - yyq3859[7] = true - yyq3859[8] = true - yyq3859[9] = x.Count != 0 - yyq3859[10] = x.Type != "" - var yynn3859 int - if yyr3859 || yy2arr3859 { + yysep3891 := !z.EncBinary() + yy2arr3891 := z.EncBasicHandle().StructToArray + var yyq3891 [11]bool + _, _, _ = yysep3891, yyq3891, yy2arr3891 + const yyr3891 bool = false + yyq3891[0] = x.Kind != "" + yyq3891[1] = x.APIVersion != "" + yyq3891[4] = x.Reason != "" + yyq3891[5] = x.Message != "" + yyq3891[6] = true + yyq3891[7] = true + yyq3891[8] = true + yyq3891[9] = x.Count != 0 + yyq3891[10] = x.Type != "" + var yynn3891 int + if yyr3891 || yy2arr3891 { r.EncodeArrayStart(11) } else { - yynn3859 = 2 - for _, b := range yyq3859 { + yynn3891 = 2 + for _, b := range yyq3891 { if b { - yynn3859++ + yynn3891++ } } - r.EncodeMapStart(yynn3859) - yynn3859 = 0 + r.EncodeMapStart(yynn3891) + yynn3891 = 0 } - if yyr3859 || yy2arr3859 { + if yyr3891 || yy2arr3891 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3859[0] { - yym3861 := z.EncBinary() - _ = yym3861 + if yyq3891[0] { + yym3893 := z.EncBinary() + _ = yym3893 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -48771,23 +49233,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3859[0] { + if yyq3891[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3862 := z.EncBinary() - _ = yym3862 + yym3894 := z.EncBinary() + _ = yym3894 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3859 || yy2arr3859 { + if yyr3891 || yy2arr3891 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3859[1] { - yym3864 := z.EncBinary() - _ = yym3864 + if yyq3891[1] { + yym3896 := z.EncBinary() + _ = yym3896 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -48796,45 +49258,45 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3859[1] { + if yyq3891[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3865 := z.EncBinary() - _ = yym3865 + yym3897 := z.EncBinary() + _ = yym3897 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3859 || yy2arr3859 { + if yyr3891 || yy2arr3891 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3867 := &x.ObjectMeta - yy3867.CodecEncodeSelf(e) + yy3899 := &x.ObjectMeta + yy3899.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3868 := &x.ObjectMeta - yy3868.CodecEncodeSelf(e) + yy3900 := &x.ObjectMeta + yy3900.CodecEncodeSelf(e) } - if yyr3859 || yy2arr3859 { + if yyr3891 || yy2arr3891 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3870 := &x.InvolvedObject - yy3870.CodecEncodeSelf(e) + yy3902 := &x.InvolvedObject + yy3902.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("involvedObject")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3871 := &x.InvolvedObject - yy3871.CodecEncodeSelf(e) + yy3903 := &x.InvolvedObject + yy3903.CodecEncodeSelf(e) } - if yyr3859 || yy2arr3859 { + if yyr3891 || yy2arr3891 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3859[4] { - yym3873 := z.EncBinary() - _ = yym3873 + if yyq3891[4] { + yym3905 := z.EncBinary() + _ = yym3905 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -48843,23 +49305,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3859[4] { + if yyq3891[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3874 := z.EncBinary() - _ = yym3874 + yym3906 := z.EncBinary() + _ = yym3906 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3859 || yy2arr3859 { + if yyr3891 || yy2arr3891 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3859[5] { - yym3876 := z.EncBinary() - _ = yym3876 + if yyq3891[5] { + yym3908 := z.EncBinary() + _ = yym3908 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -48868,114 +49330,114 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3859[5] { + if yyq3891[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3877 := z.EncBinary() - _ = yym3877 + yym3909 := z.EncBinary() + _ = yym3909 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3859 || yy2arr3859 { + if yyr3891 || yy2arr3891 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3859[6] { - yy3879 := &x.Source - yy3879.CodecEncodeSelf(e) + if yyq3891[6] { + yy3911 := &x.Source + yy3911.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3859[6] { + if yyq3891[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("source")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3880 := &x.Source - yy3880.CodecEncodeSelf(e) + yy3912 := &x.Source + yy3912.CodecEncodeSelf(e) } } - if yyr3859 || yy2arr3859 { + if yyr3891 || yy2arr3891 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3859[7] { - yy3882 := &x.FirstTimestamp - yym3883 := z.EncBinary() - _ = yym3883 + if yyq3891[7] { + yy3914 := &x.FirstTimestamp + yym3915 := z.EncBinary() + _ = yym3915 if false { - } else if z.HasExtensions() && z.EncExt(yy3882) { - } else if yym3883 { - z.EncBinaryMarshal(yy3882) - } else if !yym3883 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3882) + } else if z.HasExtensions() && z.EncExt(yy3914) { + } else if yym3915 { + z.EncBinaryMarshal(yy3914) + } else if !yym3915 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3914) } else { - z.EncFallback(yy3882) + z.EncFallback(yy3914) } } else { r.EncodeNil() } } else { - if yyq3859[7] { + if yyq3891[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("firstTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3884 := &x.FirstTimestamp - yym3885 := z.EncBinary() - _ = yym3885 + yy3916 := &x.FirstTimestamp + yym3917 := z.EncBinary() + _ = yym3917 if false { - } else if z.HasExtensions() && z.EncExt(yy3884) { - } else if yym3885 { - z.EncBinaryMarshal(yy3884) - } else if !yym3885 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3884) + } else if z.HasExtensions() && z.EncExt(yy3916) { + } else if yym3917 { + z.EncBinaryMarshal(yy3916) + } else if !yym3917 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3916) } else { - z.EncFallback(yy3884) + z.EncFallback(yy3916) } } } - if yyr3859 || yy2arr3859 { + if yyr3891 || yy2arr3891 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3859[8] { - yy3887 := &x.LastTimestamp - yym3888 := z.EncBinary() - _ = yym3888 + if yyq3891[8] { + yy3919 := &x.LastTimestamp + yym3920 := z.EncBinary() + _ = yym3920 if false { - } else if z.HasExtensions() && z.EncExt(yy3887) { - } else if yym3888 { - z.EncBinaryMarshal(yy3887) - } else if !yym3888 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3887) + } else if z.HasExtensions() && z.EncExt(yy3919) { + } else if yym3920 { + z.EncBinaryMarshal(yy3919) + } else if !yym3920 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3919) } else { - z.EncFallback(yy3887) + z.EncFallback(yy3919) } } else { r.EncodeNil() } } else { - if yyq3859[8] { + if yyq3891[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3889 := &x.LastTimestamp - yym3890 := z.EncBinary() - _ = yym3890 + yy3921 := &x.LastTimestamp + yym3922 := z.EncBinary() + _ = yym3922 if false { - } else if z.HasExtensions() && z.EncExt(yy3889) { - } else if yym3890 { - z.EncBinaryMarshal(yy3889) - } else if !yym3890 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3889) + } else if z.HasExtensions() && z.EncExt(yy3921) { + } else if yym3922 { + z.EncBinaryMarshal(yy3921) + } else if !yym3922 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3921) } else { - z.EncFallback(yy3889) + z.EncFallback(yy3921) } } } - if yyr3859 || yy2arr3859 { + if yyr3891 || yy2arr3891 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3859[9] { - yym3892 := z.EncBinary() - _ = yym3892 + if yyq3891[9] { + yym3924 := z.EncBinary() + _ = yym3924 if false { } else { r.EncodeInt(int64(x.Count)) @@ -48984,23 +49446,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq3859[9] { + if yyq3891[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("count")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3893 := z.EncBinary() - _ = yym3893 + yym3925 := z.EncBinary() + _ = yym3925 if false { } else { r.EncodeInt(int64(x.Count)) } } } - if yyr3859 || yy2arr3859 { + if yyr3891 || yy2arr3891 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3859[10] { - yym3895 := z.EncBinary() - _ = yym3895 + if yyq3891[10] { + yym3927 := z.EncBinary() + _ = yym3927 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -49009,19 +49471,19 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3859[10] { + if yyq3891[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3896 := z.EncBinary() - _ = yym3896 + yym3928 := z.EncBinary() + _ = yym3928 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr3859 || yy2arr3859 { + if yyr3891 || yy2arr3891 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49034,25 +49496,25 @@ func (x *Event) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3897 := z.DecBinary() - _ = yym3897 + yym3929 := z.DecBinary() + _ = yym3929 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3898 := r.ContainerType() - if yyct3898 == codecSelferValueTypeMap1234 { - yyl3898 := r.ReadMapStart() - if yyl3898 == 0 { + yyct3930 := r.ContainerType() + if yyct3930 == codecSelferValueTypeMap1234 { + yyl3930 := r.ReadMapStart() + if yyl3930 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3898, d) + x.codecDecodeSelfFromMap(yyl3930, d) } - } else if yyct3898 == codecSelferValueTypeArray1234 { - yyl3898 := r.ReadArrayStart() - if yyl3898 == 0 { + } else if yyct3930 == codecSelferValueTypeArray1234 { + yyl3930 := r.ReadArrayStart() + if yyl3930 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3898, d) + x.codecDecodeSelfFromArray(yyl3930, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49064,12 +49526,12 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3899Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3899Slc - var yyhl3899 bool = l >= 0 - for yyj3899 := 0; ; yyj3899++ { - if yyhl3899 { - if yyj3899 >= l { + var yys3931Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3931Slc + var yyhl3931 bool = l >= 0 + for yyj3931 := 0; ; yyj3931++ { + if yyhl3931 { + if yyj3931 >= l { break } } else { @@ -49078,10 +49540,10 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3899Slc = r.DecodeBytes(yys3899Slc, true, true) - yys3899 := string(yys3899Slc) + yys3931Slc = r.DecodeBytes(yys3931Slc, true, true) + yys3931 := string(yys3931Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3899 { + switch yys3931 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -49098,15 +49560,15 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3902 := &x.ObjectMeta - yyv3902.CodecDecodeSelf(d) + yyv3934 := &x.ObjectMeta + yyv3934.CodecDecodeSelf(d) } case "involvedObject": if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3903 := &x.InvolvedObject - yyv3903.CodecDecodeSelf(d) + yyv3935 := &x.InvolvedObject + yyv3935.CodecDecodeSelf(d) } case "reason": if r.TryDecodeAsNil() { @@ -49124,41 +49586,41 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3906 := &x.Source - yyv3906.CodecDecodeSelf(d) + yyv3938 := &x.Source + yyv3938.CodecDecodeSelf(d) } case "firstTimestamp": if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_v1.Time{} } else { - yyv3907 := &x.FirstTimestamp - yym3908 := z.DecBinary() - _ = yym3908 + yyv3939 := &x.FirstTimestamp + yym3940 := z.DecBinary() + _ = yym3940 if false { - } else if z.HasExtensions() && z.DecExt(yyv3907) { - } else if yym3908 { - z.DecBinaryUnmarshal(yyv3907) - } else if !yym3908 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3907) + } else if z.HasExtensions() && z.DecExt(yyv3939) { + } else if yym3940 { + z.DecBinaryUnmarshal(yyv3939) + } else if !yym3940 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3939) } else { - z.DecFallback(yyv3907, false) + z.DecFallback(yyv3939, false) } } case "lastTimestamp": if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_v1.Time{} } else { - yyv3909 := &x.LastTimestamp - yym3910 := z.DecBinary() - _ = yym3910 + yyv3941 := &x.LastTimestamp + yym3942 := z.DecBinary() + _ = yym3942 if false { - } else if z.HasExtensions() && z.DecExt(yyv3909) { - } else if yym3910 { - z.DecBinaryUnmarshal(yyv3909) - } else if !yym3910 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3909) + } else if z.HasExtensions() && z.DecExt(yyv3941) { + } else if yym3942 { + z.DecBinaryUnmarshal(yyv3941) + } else if !yym3942 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3941) } else { - z.DecFallback(yyv3909, false) + z.DecFallback(yyv3941, false) } } case "count": @@ -49174,9 +49636,9 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3899) - } // end switch yys3899 - } // end for yyj3899 + z.DecStructFieldNotFound(-1, yys3931) + } // end switch yys3931 + } // end for yyj3931 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49184,16 +49646,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3913 int - var yyb3913 bool - var yyhl3913 bool = l >= 0 - yyj3913++ - if yyhl3913 { - yyb3913 = yyj3913 > l + var yyj3945 int + var yyb3945 bool + var yyhl3945 bool = l >= 0 + yyj3945++ + if yyhl3945 { + yyb3945 = yyj3945 > l } else { - yyb3913 = r.CheckBreak() + yyb3945 = r.CheckBreak() } - if yyb3913 { + if yyb3945 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49203,13 +49665,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3913++ - if yyhl3913 { - yyb3913 = yyj3913 > l + yyj3945++ + if yyhl3945 { + yyb3945 = yyj3945 > l } else { - yyb3913 = r.CheckBreak() + yyb3945 = r.CheckBreak() } - if yyb3913 { + if yyb3945 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49219,13 +49681,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3913++ - if yyhl3913 { - yyb3913 = yyj3913 > l + yyj3945++ + if yyhl3945 { + yyb3945 = yyj3945 > l } else { - yyb3913 = r.CheckBreak() + yyb3945 = r.CheckBreak() } - if yyb3913 { + if yyb3945 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49233,16 +49695,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3916 := &x.ObjectMeta - yyv3916.CodecDecodeSelf(d) + yyv3948 := &x.ObjectMeta + yyv3948.CodecDecodeSelf(d) } - yyj3913++ - if yyhl3913 { - yyb3913 = yyj3913 > l + yyj3945++ + if yyhl3945 { + yyb3945 = yyj3945 > l } else { - yyb3913 = r.CheckBreak() + yyb3945 = r.CheckBreak() } - if yyb3913 { + if yyb3945 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49250,16 +49712,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3917 := &x.InvolvedObject - yyv3917.CodecDecodeSelf(d) + yyv3949 := &x.InvolvedObject + yyv3949.CodecDecodeSelf(d) } - yyj3913++ - if yyhl3913 { - yyb3913 = yyj3913 > l + yyj3945++ + if yyhl3945 { + yyb3945 = yyj3945 > l } else { - yyb3913 = r.CheckBreak() + yyb3945 = r.CheckBreak() } - if yyb3913 { + if yyb3945 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49269,13 +49731,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3913++ - if yyhl3913 { - yyb3913 = yyj3913 > l + yyj3945++ + if yyhl3945 { + yyb3945 = yyj3945 > l } else { - yyb3913 = r.CheckBreak() + yyb3945 = r.CheckBreak() } - if yyb3913 { + if yyb3945 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49285,13 +49747,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj3913++ - if yyhl3913 { - yyb3913 = yyj3913 > l + yyj3945++ + if yyhl3945 { + yyb3945 = yyj3945 > l } else { - yyb3913 = r.CheckBreak() + yyb3945 = r.CheckBreak() } - if yyb3913 { + if yyb3945 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49299,16 +49761,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3920 := &x.Source - yyv3920.CodecDecodeSelf(d) + yyv3952 := &x.Source + yyv3952.CodecDecodeSelf(d) } - yyj3913++ - if yyhl3913 { - yyb3913 = yyj3913 > l + yyj3945++ + if yyhl3945 { + yyb3945 = yyj3945 > l } else { - yyb3913 = r.CheckBreak() + yyb3945 = r.CheckBreak() } - if yyb3913 { + if yyb3945 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49316,26 +49778,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_v1.Time{} } else { - yyv3921 := &x.FirstTimestamp - yym3922 := z.DecBinary() - _ = yym3922 + yyv3953 := &x.FirstTimestamp + yym3954 := z.DecBinary() + _ = yym3954 if false { - } else if z.HasExtensions() && z.DecExt(yyv3921) { - } else if yym3922 { - z.DecBinaryUnmarshal(yyv3921) - } else if !yym3922 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3921) + } else if z.HasExtensions() && z.DecExt(yyv3953) { + } else if yym3954 { + z.DecBinaryUnmarshal(yyv3953) + } else if !yym3954 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3953) } else { - z.DecFallback(yyv3921, false) + z.DecFallback(yyv3953, false) } } - yyj3913++ - if yyhl3913 { - yyb3913 = yyj3913 > l + yyj3945++ + if yyhl3945 { + yyb3945 = yyj3945 > l } else { - yyb3913 = r.CheckBreak() + yyb3945 = r.CheckBreak() } - if yyb3913 { + if yyb3945 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49343,26 +49805,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_v1.Time{} } else { - yyv3923 := &x.LastTimestamp - yym3924 := z.DecBinary() - _ = yym3924 + yyv3955 := &x.LastTimestamp + yym3956 := z.DecBinary() + _ = yym3956 if false { - } else if z.HasExtensions() && z.DecExt(yyv3923) { - } else if yym3924 { - z.DecBinaryUnmarshal(yyv3923) - } else if !yym3924 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3923) + } else if z.HasExtensions() && z.DecExt(yyv3955) { + } else if yym3956 { + z.DecBinaryUnmarshal(yyv3955) + } else if !yym3956 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3955) } else { - z.DecFallback(yyv3923, false) + z.DecFallback(yyv3955, false) } } - yyj3913++ - if yyhl3913 { - yyb3913 = yyj3913 > l + yyj3945++ + if yyhl3945 { + yyb3945 = yyj3945 > l } else { - yyb3913 = r.CheckBreak() + yyb3945 = r.CheckBreak() } - if yyb3913 { + if yyb3945 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49372,13 +49834,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Count = int32(r.DecodeInt(32)) } - yyj3913++ - if yyhl3913 { - yyb3913 = yyj3913 > l + yyj3945++ + if yyhl3945 { + yyb3945 = yyj3945 > l } else { - yyb3913 = r.CheckBreak() + yyb3945 = r.CheckBreak() } - if yyb3913 { + if yyb3945 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49389,366 +49851,22 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } for { - yyj3913++ - if yyhl3913 { - yyb3913 = yyj3913 > l + yyj3945++ + if yyhl3945 { + yyb3945 = yyj3945 > l } else { - yyb3913 = r.CheckBreak() + yyb3945 = r.CheckBreak() } - if yyb3913 { + if yyb3945 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3913-1, "") + z.DecStructFieldNotFound(yyj3945-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3927 := z.EncBinary() - _ = yym3927 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3928 := !z.EncBinary() - yy2arr3928 := z.EncBasicHandle().StructToArray - var yyq3928 [4]bool - _, _, _ = yysep3928, yyq3928, yy2arr3928 - const yyr3928 bool = false - yyq3928[0] = x.Kind != "" - yyq3928[1] = x.APIVersion != "" - yyq3928[2] = true - var yynn3928 int - if yyr3928 || yy2arr3928 { - r.EncodeArrayStart(4) - } else { - yynn3928 = 1 - for _, b := range yyq3928 { - if b { - yynn3928++ - } - } - r.EncodeMapStart(yynn3928) - yynn3928 = 0 - } - if yyr3928 || yy2arr3928 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3928[0] { - yym3930 := z.EncBinary() - _ = yym3930 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3928[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3931 := z.EncBinary() - _ = yym3931 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3928 || yy2arr3928 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3928[1] { - yym3933 := z.EncBinary() - _ = yym3933 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3928[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3934 := z.EncBinary() - _ = yym3934 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr3928 || yy2arr3928 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3928[2] { - yy3936 := &x.ListMeta - yym3937 := z.EncBinary() - _ = yym3937 - if false { - } else if z.HasExtensions() && z.EncExt(yy3936) { - } else { - z.EncFallback(yy3936) - } - } else { - r.EncodeNil() - } - } else { - if yyq3928[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3938 := &x.ListMeta - yym3939 := z.EncBinary() - _ = yym3939 - if false { - } else if z.HasExtensions() && z.EncExt(yy3938) { - } else { - z.EncFallback(yy3938) - } - } - } - if yyr3928 || yy2arr3928 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if x.Items == nil { - r.EncodeNil() - } else { - yym3941 := z.EncBinary() - _ = yym3941 - if false { - } else { - h.encSliceEvent(([]Event)(x.Items), e) - } - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("items")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Items == nil { - r.EncodeNil() - } else { - yym3942 := z.EncBinary() - _ = yym3942 - if false { - } else { - h.encSliceEvent(([]Event)(x.Items), e) - } - } - } - if yyr3928 || yy2arr3928 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *EventList) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3943 := z.DecBinary() - _ = yym3943 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3944 := r.ContainerType() - if yyct3944 == codecSelferValueTypeMap1234 { - yyl3944 := r.ReadMapStart() - if yyl3944 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3944, d) - } - } else if yyct3944 == codecSelferValueTypeArray1234 { - yyl3944 := r.ReadArrayStart() - if yyl3944 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3944, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3945Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3945Slc - var yyhl3945 bool = l >= 0 - for yyj3945 := 0; ; yyj3945++ { - if yyhl3945 { - if yyj3945 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3945Slc = r.DecodeBytes(yys3945Slc, true, true) - yys3945 := string(yys3945Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3945 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "metadata": - if r.TryDecodeAsNil() { - x.ListMeta = pkg2_v1.ListMeta{} - } else { - yyv3948 := &x.ListMeta - yym3949 := z.DecBinary() - _ = yym3949 - if false { - } else if z.HasExtensions() && z.DecExt(yyv3948) { - } else { - z.DecFallback(yyv3948, false) - } - } - case "items": - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv3950 := &x.Items - yym3951 := z.DecBinary() - _ = yym3951 - if false { - } else { - h.decSliceEvent((*[]Event)(yyv3950), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3945) - } // end switch yys3945 - } // end for yyj3945 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3952 int - var yyb3952 bool - var yyhl3952 bool = l >= 0 - yyj3952++ - if yyhl3952 { - yyb3952 = yyj3952 > l - } else { - yyb3952 = r.CheckBreak() - } - if yyb3952 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj3952++ - if yyhl3952 { - yyb3952 = yyj3952 > l - } else { - yyb3952 = r.CheckBreak() - } - if yyb3952 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj3952++ - if yyhl3952 { - yyb3952 = yyj3952 > l - } else { - yyb3952 = r.CheckBreak() - } - if yyb3952 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ListMeta = pkg2_v1.ListMeta{} - } else { - yyv3955 := &x.ListMeta - yym3956 := z.DecBinary() - _ = yym3956 - if false { - } else if z.HasExtensions() && z.DecExt(yyv3955) { - } else { - z.DecFallback(yyv3955, false) - } - } - yyj3952++ - if yyhl3952 { - yyb3952 = yyj3952 > l - } else { - yyb3952 = r.CheckBreak() - } - if yyb3952 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv3957 := &x.Items - yym3958 := z.DecBinary() - _ = yym3958 - if false { - } else { - h.decSliceEvent((*[]Event)(yyv3957), d) - } - } - for { - yyj3952++ - if yyhl3952 { - yyb3952 = yyj3952 > l - } else { - yyb3952 = r.CheckBreak() - } - if yyb3952 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3952-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -49869,7 +49987,7 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { _ = yym3973 if false { } else { - h.encSliceruntime_RawExtension(([]pkg5_runtime.RawExtension)(x.Items), e) + h.encSliceEvent(([]Event)(x.Items), e) } } } else { @@ -49883,7 +50001,7 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { _ = yym3974 if false { } else { - h.encSliceruntime_RawExtension(([]pkg5_runtime.RawExtension)(x.Items), e) + h.encSliceEvent(([]Event)(x.Items), e) } } } @@ -49896,7 +50014,7 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { } } -func (x *List) CodecDecodeSelf(d *codec1978.Decoder) { +func (x *EventList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -49926,7 +50044,7 @@ func (x *List) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -49982,7 +50100,7 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { _ = yym3983 if false { } else { - h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv3982), d) + h.decSliceEvent((*[]Event)(yyv3982), d) } } default: @@ -49992,7 +50110,7 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } -func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { +func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -50073,7 +50191,7 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { _ = yym3990 if false { } else { - h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv3989), d) + h.decSliceEvent((*[]Event)(yyv3989), d) } } for { @@ -50092,12 +50210,356 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } +func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3991 := z.EncBinary() + _ = yym3991 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3992 := !z.EncBinary() + yy2arr3992 := z.EncBasicHandle().StructToArray + var yyq3992 [4]bool + _, _, _ = yysep3992, yyq3992, yy2arr3992 + const yyr3992 bool = false + yyq3992[0] = x.Kind != "" + yyq3992[1] = x.APIVersion != "" + yyq3992[2] = true + var yynn3992 int + if yyr3992 || yy2arr3992 { + r.EncodeArrayStart(4) + } else { + yynn3992 = 1 + for _, b := range yyq3992 { + if b { + yynn3992++ + } + } + r.EncodeMapStart(yynn3992) + yynn3992 = 0 + } + if yyr3992 || yy2arr3992 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3992[0] { + yym3994 := z.EncBinary() + _ = yym3994 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3992[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3995 := z.EncBinary() + _ = yym3995 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3992 || yy2arr3992 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3992[1] { + yym3997 := z.EncBinary() + _ = yym3997 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3992[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3998 := z.EncBinary() + _ = yym3998 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr3992 || yy2arr3992 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3992[2] { + yy4000 := &x.ListMeta + yym4001 := z.EncBinary() + _ = yym4001 + if false { + } else if z.HasExtensions() && z.EncExt(yy4000) { + } else { + z.EncFallback(yy4000) + } + } else { + r.EncodeNil() + } + } else { + if yyq3992[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy4002 := &x.ListMeta + yym4003 := z.EncBinary() + _ = yym4003 + if false { + } else if z.HasExtensions() && z.EncExt(yy4002) { + } else { + z.EncFallback(yy4002) + } + } + } + if yyr3992 || yy2arr3992 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if x.Items == nil { + r.EncodeNil() + } else { + yym4005 := z.EncBinary() + _ = yym4005 + if false { + } else { + h.encSliceruntime_RawExtension(([]pkg5_runtime.RawExtension)(x.Items), e) + } + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("items")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Items == nil { + r.EncodeNil() + } else { + yym4006 := z.EncBinary() + _ = yym4006 + if false { + } else { + h.encSliceruntime_RawExtension(([]pkg5_runtime.RawExtension)(x.Items), e) + } + } + } + if yyr3992 || yy2arr3992 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *List) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym4007 := z.DecBinary() + _ = yym4007 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct4008 := r.ContainerType() + if yyct4008 == codecSelferValueTypeMap1234 { + yyl4008 := r.ReadMapStart() + if yyl4008 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl4008, d) + } + } else if yyct4008 == codecSelferValueTypeArray1234 { + yyl4008 := r.ReadArrayStart() + if yyl4008 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl4008, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys4009Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4009Slc + var yyhl4009 bool = l >= 0 + for yyj4009 := 0; ; yyj4009++ { + if yyhl4009 { + if yyj4009 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys4009Slc = r.DecodeBytes(yys4009Slc, true, true) + yys4009 := string(yys4009Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys4009 { + case "kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "metadata": + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_v1.ListMeta{} + } else { + yyv4012 := &x.ListMeta + yym4013 := z.DecBinary() + _ = yym4013 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4012) { + } else { + z.DecFallback(yyv4012, false) + } + } + case "items": + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv4014 := &x.Items + yym4015 := z.DecBinary() + _ = yym4015 + if false { + } else { + h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv4014), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys4009) + } // end switch yys4009 + } // end for yyj4009 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj4016 int + var yyb4016 bool + var yyhl4016 bool = l >= 0 + yyj4016++ + if yyhl4016 { + yyb4016 = yyj4016 > l + } else { + yyb4016 = r.CheckBreak() + } + if yyb4016 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj4016++ + if yyhl4016 { + yyb4016 = yyj4016 > l + } else { + yyb4016 = r.CheckBreak() + } + if yyb4016 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj4016++ + if yyhl4016 { + yyb4016 = yyj4016 > l + } else { + yyb4016 = r.CheckBreak() + } + if yyb4016 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_v1.ListMeta{} + } else { + yyv4019 := &x.ListMeta + yym4020 := z.DecBinary() + _ = yym4020 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4019) { + } else { + z.DecFallback(yyv4019, false) + } + } + yyj4016++ + if yyhl4016 { + yyb4016 = yyj4016 > l + } else { + yyb4016 = r.CheckBreak() + } + if yyb4016 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv4021 := &x.Items + yym4022 := z.DecBinary() + _ = yym4022 + if false { + } else { + h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv4021), d) + } + } + for { + yyj4016++ + if yyhl4016 { + yyb4016 = yyj4016 > l + } else { + yyb4016 = r.CheckBreak() + } + if yyb4016 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj4016-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + func (x LimitType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3991 := z.EncBinary() - _ = yym3991 + yym4023 := z.EncBinary() + _ = yym4023 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -50109,8 +50571,8 @@ func (x *LimitType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3992 := z.DecBinary() - _ = yym3992 + yym4024 := z.DecBinary() + _ = yym4024 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -50125,53 +50587,53 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3993 := z.EncBinary() - _ = yym3993 + yym4025 := z.EncBinary() + _ = yym4025 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3994 := !z.EncBinary() - yy2arr3994 := z.EncBasicHandle().StructToArray - var yyq3994 [6]bool - _, _, _ = yysep3994, yyq3994, yy2arr3994 - const yyr3994 bool = false - yyq3994[0] = x.Type != "" - yyq3994[1] = len(x.Max) != 0 - yyq3994[2] = len(x.Min) != 0 - yyq3994[3] = len(x.Default) != 0 - yyq3994[4] = len(x.DefaultRequest) != 0 - yyq3994[5] = len(x.MaxLimitRequestRatio) != 0 - var yynn3994 int - if yyr3994 || yy2arr3994 { + yysep4026 := !z.EncBinary() + yy2arr4026 := z.EncBasicHandle().StructToArray + var yyq4026 [6]bool + _, _, _ = yysep4026, yyq4026, yy2arr4026 + const yyr4026 bool = false + yyq4026[0] = x.Type != "" + yyq4026[1] = len(x.Max) != 0 + yyq4026[2] = len(x.Min) != 0 + yyq4026[3] = len(x.Default) != 0 + yyq4026[4] = len(x.DefaultRequest) != 0 + yyq4026[5] = len(x.MaxLimitRequestRatio) != 0 + var yynn4026 int + if yyr4026 || yy2arr4026 { r.EncodeArrayStart(6) } else { - yynn3994 = 0 - for _, b := range yyq3994 { + yynn4026 = 0 + for _, b := range yyq4026 { if b { - yynn3994++ + yynn4026++ } } - r.EncodeMapStart(yynn3994) - yynn3994 = 0 + r.EncodeMapStart(yynn4026) + yynn4026 = 0 } - if yyr3994 || yy2arr3994 { + if yyr4026 || yy2arr4026 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3994[0] { + if yyq4026[0] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3994[0] { + if yyq4026[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr3994 || yy2arr3994 { + if yyr4026 || yy2arr4026 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3994[1] { + if yyq4026[1] { if x.Max == nil { r.EncodeNil() } else { @@ -50181,7 +50643,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3994[1] { + if yyq4026[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("max")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -50192,9 +50654,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3994 || yy2arr3994 { + if yyr4026 || yy2arr4026 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3994[2] { + if yyq4026[2] { if x.Min == nil { r.EncodeNil() } else { @@ -50204,7 +50666,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3994[2] { + if yyq4026[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("min")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -50215,9 +50677,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3994 || yy2arr3994 { + if yyr4026 || yy2arr4026 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3994[3] { + if yyq4026[3] { if x.Default == nil { r.EncodeNil() } else { @@ -50227,7 +50689,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3994[3] { + if yyq4026[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("default")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -50238,9 +50700,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3994 || yy2arr3994 { + if yyr4026 || yy2arr4026 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3994[4] { + if yyq4026[4] { if x.DefaultRequest == nil { r.EncodeNil() } else { @@ -50250,7 +50712,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3994[4] { + if yyq4026[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultRequest")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -50261,9 +50723,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3994 || yy2arr3994 { + if yyr4026 || yy2arr4026 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3994[5] { + if yyq4026[5] { if x.MaxLimitRequestRatio == nil { r.EncodeNil() } else { @@ -50273,7 +50735,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3994[5] { + if yyq4026[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("maxLimitRequestRatio")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -50284,7 +50746,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3994 || yy2arr3994 { + if yyr4026 || yy2arr4026 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50297,25 +50759,25 @@ func (x *LimitRangeItem) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4001 := z.DecBinary() - _ = yym4001 + yym4033 := z.DecBinary() + _ = yym4033 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4002 := r.ContainerType() - if yyct4002 == codecSelferValueTypeMap1234 { - yyl4002 := r.ReadMapStart() - if yyl4002 == 0 { + yyct4034 := r.ContainerType() + if yyct4034 == codecSelferValueTypeMap1234 { + yyl4034 := r.ReadMapStart() + if yyl4034 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4002, d) + x.codecDecodeSelfFromMap(yyl4034, d) } - } else if yyct4002 == codecSelferValueTypeArray1234 { - yyl4002 := r.ReadArrayStart() - if yyl4002 == 0 { + } else if yyct4034 == codecSelferValueTypeArray1234 { + yyl4034 := r.ReadArrayStart() + if yyl4034 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4002, d) + x.codecDecodeSelfFromArray(yyl4034, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50327,12 +50789,12 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4003Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4003Slc - var yyhl4003 bool = l >= 0 - for yyj4003 := 0; ; yyj4003++ { - if yyhl4003 { - if yyj4003 >= l { + var yys4035Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4035Slc + var yyhl4035 bool = l >= 0 + for yyj4035 := 0; ; yyj4035++ { + if yyhl4035 { + if yyj4035 >= l { break } } else { @@ -50341,10 +50803,10 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4003Slc = r.DecodeBytes(yys4003Slc, true, true) - yys4003 := string(yys4003Slc) + yys4035Slc = r.DecodeBytes(yys4035Slc, true, true) + yys4035 := string(yys4035Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4003 { + switch yys4035 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -50355,41 +50817,41 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv4005 := &x.Max - yyv4005.CodecDecodeSelf(d) + yyv4037 := &x.Max + yyv4037.CodecDecodeSelf(d) } case "min": if r.TryDecodeAsNil() { x.Min = nil } else { - yyv4006 := &x.Min - yyv4006.CodecDecodeSelf(d) + yyv4038 := &x.Min + yyv4038.CodecDecodeSelf(d) } case "default": if r.TryDecodeAsNil() { x.Default = nil } else { - yyv4007 := &x.Default - yyv4007.CodecDecodeSelf(d) + yyv4039 := &x.Default + yyv4039.CodecDecodeSelf(d) } case "defaultRequest": if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv4008 := &x.DefaultRequest - yyv4008.CodecDecodeSelf(d) + yyv4040 := &x.DefaultRequest + yyv4040.CodecDecodeSelf(d) } case "maxLimitRequestRatio": if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv4009 := &x.MaxLimitRequestRatio - yyv4009.CodecDecodeSelf(d) + yyv4041 := &x.MaxLimitRequestRatio + yyv4041.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4003) - } // end switch yys4003 - } // end for yyj4003 + z.DecStructFieldNotFound(-1, yys4035) + } // end switch yys4035 + } // end for yyj4035 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50397,16 +50859,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4010 int - var yyb4010 bool - var yyhl4010 bool = l >= 0 - yyj4010++ - if yyhl4010 { - yyb4010 = yyj4010 > l + var yyj4042 int + var yyb4042 bool + var yyhl4042 bool = l >= 0 + yyj4042++ + if yyhl4042 { + yyb4042 = yyj4042 > l } else { - yyb4010 = r.CheckBreak() + yyb4042 = r.CheckBreak() } - if yyb4010 { + if yyb4042 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50416,13 +50878,13 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = LimitType(r.DecodeString()) } - yyj4010++ - if yyhl4010 { - yyb4010 = yyj4010 > l + yyj4042++ + if yyhl4042 { + yyb4042 = yyj4042 > l } else { - yyb4010 = r.CheckBreak() + yyb4042 = r.CheckBreak() } - if yyb4010 { + if yyb4042 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50430,16 +50892,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv4012 := &x.Max - yyv4012.CodecDecodeSelf(d) + yyv4044 := &x.Max + yyv4044.CodecDecodeSelf(d) } - yyj4010++ - if yyhl4010 { - yyb4010 = yyj4010 > l + yyj4042++ + if yyhl4042 { + yyb4042 = yyj4042 > l } else { - yyb4010 = r.CheckBreak() + yyb4042 = r.CheckBreak() } - if yyb4010 { + if yyb4042 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50447,16 +50909,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Min = nil } else { - yyv4013 := &x.Min - yyv4013.CodecDecodeSelf(d) + yyv4045 := &x.Min + yyv4045.CodecDecodeSelf(d) } - yyj4010++ - if yyhl4010 { - yyb4010 = yyj4010 > l + yyj4042++ + if yyhl4042 { + yyb4042 = yyj4042 > l } else { - yyb4010 = r.CheckBreak() + yyb4042 = r.CheckBreak() } - if yyb4010 { + if yyb4042 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50464,16 +50926,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Default = nil } else { - yyv4014 := &x.Default - yyv4014.CodecDecodeSelf(d) + yyv4046 := &x.Default + yyv4046.CodecDecodeSelf(d) } - yyj4010++ - if yyhl4010 { - yyb4010 = yyj4010 > l + yyj4042++ + if yyhl4042 { + yyb4042 = yyj4042 > l } else { - yyb4010 = r.CheckBreak() + yyb4042 = r.CheckBreak() } - if yyb4010 { + if yyb4042 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50481,16 +50943,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv4015 := &x.DefaultRequest - yyv4015.CodecDecodeSelf(d) + yyv4047 := &x.DefaultRequest + yyv4047.CodecDecodeSelf(d) } - yyj4010++ - if yyhl4010 { - yyb4010 = yyj4010 > l + yyj4042++ + if yyhl4042 { + yyb4042 = yyj4042 > l } else { - yyb4010 = r.CheckBreak() + yyb4042 = r.CheckBreak() } - if yyb4010 { + if yyb4042 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50498,21 +50960,21 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv4016 := &x.MaxLimitRequestRatio - yyv4016.CodecDecodeSelf(d) + yyv4048 := &x.MaxLimitRequestRatio + yyv4048.CodecDecodeSelf(d) } for { - yyj4010++ - if yyhl4010 { - yyb4010 = yyj4010 > l + yyj4042++ + if yyhl4042 { + yyb4042 = yyj4042 > l } else { - yyb4010 = r.CheckBreak() + yyb4042 = r.CheckBreak() } - if yyb4010 { + if yyb4042 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4010-1, "") + z.DecStructFieldNotFound(yyj4042-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50524,36 +50986,36 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4017 := z.EncBinary() - _ = yym4017 + yym4049 := z.EncBinary() + _ = yym4049 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4018 := !z.EncBinary() - yy2arr4018 := z.EncBasicHandle().StructToArray - var yyq4018 [1]bool - _, _, _ = yysep4018, yyq4018, yy2arr4018 - const yyr4018 bool = false - var yynn4018 int - if yyr4018 || yy2arr4018 { + yysep4050 := !z.EncBinary() + yy2arr4050 := z.EncBasicHandle().StructToArray + var yyq4050 [1]bool + _, _, _ = yysep4050, yyq4050, yy2arr4050 + const yyr4050 bool = false + var yynn4050 int + if yyr4050 || yy2arr4050 { r.EncodeArrayStart(1) } else { - yynn4018 = 1 - for _, b := range yyq4018 { + yynn4050 = 1 + for _, b := range yyq4050 { if b { - yynn4018++ + yynn4050++ } } - r.EncodeMapStart(yynn4018) - yynn4018 = 0 + r.EncodeMapStart(yynn4050) + yynn4050 = 0 } - if yyr4018 || yy2arr4018 { + if yyr4050 || yy2arr4050 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Limits == nil { r.EncodeNil() } else { - yym4020 := z.EncBinary() - _ = yym4020 + yym4052 := z.EncBinary() + _ = yym4052 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) @@ -50566,15 +51028,15 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Limits == nil { r.EncodeNil() } else { - yym4021 := z.EncBinary() - _ = yym4021 + yym4053 := z.EncBinary() + _ = yym4053 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) } } } - if yyr4018 || yy2arr4018 { + if yyr4050 || yy2arr4050 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50587,25 +51049,25 @@ func (x *LimitRangeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4022 := z.DecBinary() - _ = yym4022 + yym4054 := z.DecBinary() + _ = yym4054 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4023 := r.ContainerType() - if yyct4023 == codecSelferValueTypeMap1234 { - yyl4023 := r.ReadMapStart() - if yyl4023 == 0 { + yyct4055 := r.ContainerType() + if yyct4055 == codecSelferValueTypeMap1234 { + yyl4055 := r.ReadMapStart() + if yyl4055 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4023, d) + x.codecDecodeSelfFromMap(yyl4055, d) } - } else if yyct4023 == codecSelferValueTypeArray1234 { - yyl4023 := r.ReadArrayStart() - if yyl4023 == 0 { + } else if yyct4055 == codecSelferValueTypeArray1234 { + yyl4055 := r.ReadArrayStart() + if yyl4055 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4023, d) + x.codecDecodeSelfFromArray(yyl4055, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50617,12 +51079,12 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4024Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4024Slc - var yyhl4024 bool = l >= 0 - for yyj4024 := 0; ; yyj4024++ { - if yyhl4024 { - if yyj4024 >= l { + var yys4056Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4056Slc + var yyhl4056 bool = l >= 0 + for yyj4056 := 0; ; yyj4056++ { + if yyhl4056 { + if yyj4056 >= l { break } } else { @@ -50631,26 +51093,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4024Slc = r.DecodeBytes(yys4024Slc, true, true) - yys4024 := string(yys4024Slc) + yys4056Slc = r.DecodeBytes(yys4056Slc, true, true) + yys4056 := string(yys4056Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4024 { + switch yys4056 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv4025 := &x.Limits - yym4026 := z.DecBinary() - _ = yym4026 + yyv4057 := &x.Limits + yym4058 := z.DecBinary() + _ = yym4058 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv4025), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv4057), d) } } default: - z.DecStructFieldNotFound(-1, yys4024) - } // end switch yys4024 - } // end for yyj4024 + z.DecStructFieldNotFound(-1, yys4056) + } // end switch yys4056 + } // end for yyj4056 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50658,16 +51120,16 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4027 int - var yyb4027 bool - var yyhl4027 bool = l >= 0 - yyj4027++ - if yyhl4027 { - yyb4027 = yyj4027 > l + var yyj4059 int + var yyb4059 bool + var yyhl4059 bool = l >= 0 + yyj4059++ + if yyhl4059 { + yyb4059 = yyj4059 > l } else { - yyb4027 = r.CheckBreak() + yyb4059 = r.CheckBreak() } - if yyb4027 { + if yyb4059 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50675,26 +51137,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv4028 := &x.Limits - yym4029 := z.DecBinary() - _ = yym4029 + yyv4060 := &x.Limits + yym4061 := z.DecBinary() + _ = yym4061 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv4028), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv4060), d) } } for { - yyj4027++ - if yyhl4027 { - yyb4027 = yyj4027 > l + yyj4059++ + if yyhl4059 { + yyb4059 = yyj4059 > l } else { - yyb4027 = r.CheckBreak() + yyb4059 = r.CheckBreak() } - if yyb4027 { + if yyb4059 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4027-1, "") + z.DecStructFieldNotFound(yyj4059-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50706,38 +51168,38 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4030 := z.EncBinary() - _ = yym4030 + yym4062 := z.EncBinary() + _ = yym4062 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4031 := !z.EncBinary() - yy2arr4031 := z.EncBasicHandle().StructToArray - var yyq4031 [4]bool - _, _, _ = yysep4031, yyq4031, yy2arr4031 - const yyr4031 bool = false - yyq4031[0] = x.Kind != "" - yyq4031[1] = x.APIVersion != "" - yyq4031[2] = true - yyq4031[3] = true - var yynn4031 int - if yyr4031 || yy2arr4031 { + yysep4063 := !z.EncBinary() + yy2arr4063 := z.EncBasicHandle().StructToArray + var yyq4063 [4]bool + _, _, _ = yysep4063, yyq4063, yy2arr4063 + const yyr4063 bool = false + yyq4063[0] = x.Kind != "" + yyq4063[1] = x.APIVersion != "" + yyq4063[2] = true + yyq4063[3] = true + var yynn4063 int + if yyr4063 || yy2arr4063 { r.EncodeArrayStart(4) } else { - yynn4031 = 0 - for _, b := range yyq4031 { + yynn4063 = 0 + for _, b := range yyq4063 { if b { - yynn4031++ + yynn4063++ } } - r.EncodeMapStart(yynn4031) - yynn4031 = 0 + r.EncodeMapStart(yynn4063) + yynn4063 = 0 } - if yyr4031 || yy2arr4031 { + if yyr4063 || yy2arr4063 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4031[0] { - yym4033 := z.EncBinary() - _ = yym4033 + if yyq4063[0] { + yym4065 := z.EncBinary() + _ = yym4065 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -50746,23 +51208,23 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4031[0] { + if yyq4063[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4034 := z.EncBinary() - _ = yym4034 + yym4066 := z.EncBinary() + _ = yym4066 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4031 || yy2arr4031 { + if yyr4063 || yy2arr4063 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4031[1] { - yym4036 := z.EncBinary() - _ = yym4036 + if yyq4063[1] { + yym4068 := z.EncBinary() + _ = yym4068 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -50771,53 +51233,53 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4031[1] { + if yyq4063[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4037 := z.EncBinary() - _ = yym4037 + yym4069 := z.EncBinary() + _ = yym4069 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4031 || yy2arr4031 { + if yyr4063 || yy2arr4063 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4031[2] { - yy4039 := &x.ObjectMeta - yy4039.CodecEncodeSelf(e) + if yyq4063[2] { + yy4071 := &x.ObjectMeta + yy4071.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4031[2] { + if yyq4063[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4040 := &x.ObjectMeta - yy4040.CodecEncodeSelf(e) + yy4072 := &x.ObjectMeta + yy4072.CodecEncodeSelf(e) } } - if yyr4031 || yy2arr4031 { + if yyr4063 || yy2arr4063 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4031[3] { - yy4042 := &x.Spec - yy4042.CodecEncodeSelf(e) + if yyq4063[3] { + yy4074 := &x.Spec + yy4074.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4031[3] { + if yyq4063[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4043 := &x.Spec - yy4043.CodecEncodeSelf(e) + yy4075 := &x.Spec + yy4075.CodecEncodeSelf(e) } } - if yyr4031 || yy2arr4031 { + if yyr4063 || yy2arr4063 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50830,25 +51292,25 @@ func (x *LimitRange) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4044 := z.DecBinary() - _ = yym4044 + yym4076 := z.DecBinary() + _ = yym4076 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4045 := r.ContainerType() - if yyct4045 == codecSelferValueTypeMap1234 { - yyl4045 := r.ReadMapStart() - if yyl4045 == 0 { + yyct4077 := r.ContainerType() + if yyct4077 == codecSelferValueTypeMap1234 { + yyl4077 := r.ReadMapStart() + if yyl4077 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4045, d) + x.codecDecodeSelfFromMap(yyl4077, d) } - } else if yyct4045 == codecSelferValueTypeArray1234 { - yyl4045 := r.ReadArrayStart() - if yyl4045 == 0 { + } else if yyct4077 == codecSelferValueTypeArray1234 { + yyl4077 := r.ReadArrayStart() + if yyl4077 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4045, d) + x.codecDecodeSelfFromArray(yyl4077, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50860,12 +51322,12 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4046Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4046Slc - var yyhl4046 bool = l >= 0 - for yyj4046 := 0; ; yyj4046++ { - if yyhl4046 { - if yyj4046 >= l { + var yys4078Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4078Slc + var yyhl4078 bool = l >= 0 + for yyj4078 := 0; ; yyj4078++ { + if yyhl4078 { + if yyj4078 >= l { break } } else { @@ -50874,10 +51336,10 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4046Slc = r.DecodeBytes(yys4046Slc, true, true) - yys4046 := string(yys4046Slc) + yys4078Slc = r.DecodeBytes(yys4078Slc, true, true) + yys4078 := string(yys4078Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4046 { + switch yys4078 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50894,20 +51356,20 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4049 := &x.ObjectMeta - yyv4049.CodecDecodeSelf(d) + yyv4081 := &x.ObjectMeta + yyv4081.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv4050 := &x.Spec - yyv4050.CodecDecodeSelf(d) + yyv4082 := &x.Spec + yyv4082.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4046) - } // end switch yys4046 - } // end for yyj4046 + z.DecStructFieldNotFound(-1, yys4078) + } // end switch yys4078 + } // end for yyj4078 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50915,16 +51377,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4051 int - var yyb4051 bool - var yyhl4051 bool = l >= 0 - yyj4051++ - if yyhl4051 { - yyb4051 = yyj4051 > l + var yyj4083 int + var yyb4083 bool + var yyhl4083 bool = l >= 0 + yyj4083++ + if yyhl4083 { + yyb4083 = yyj4083 > l } else { - yyb4051 = r.CheckBreak() + yyb4083 = r.CheckBreak() } - if yyb4051 { + if yyb4083 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50934,13 +51396,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4051++ - if yyhl4051 { - yyb4051 = yyj4051 > l + yyj4083++ + if yyhl4083 { + yyb4083 = yyj4083 > l } else { - yyb4051 = r.CheckBreak() + yyb4083 = r.CheckBreak() } - if yyb4051 { + if yyb4083 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50950,13 +51412,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4051++ - if yyhl4051 { - yyb4051 = yyj4051 > l + yyj4083++ + if yyhl4083 { + yyb4083 = yyj4083 > l } else { - yyb4051 = r.CheckBreak() + yyb4083 = r.CheckBreak() } - if yyb4051 { + if yyb4083 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50964,16 +51426,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4054 := &x.ObjectMeta - yyv4054.CodecDecodeSelf(d) + yyv4086 := &x.ObjectMeta + yyv4086.CodecDecodeSelf(d) } - yyj4051++ - if yyhl4051 { - yyb4051 = yyj4051 > l + yyj4083++ + if yyhl4083 { + yyb4083 = yyj4083 > l } else { - yyb4051 = r.CheckBreak() + yyb4083 = r.CheckBreak() } - if yyb4051 { + if yyb4083 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50981,21 +51443,21 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv4055 := &x.Spec - yyv4055.CodecDecodeSelf(d) + yyv4087 := &x.Spec + yyv4087.CodecDecodeSelf(d) } for { - yyj4051++ - if yyhl4051 { - yyb4051 = yyj4051 > l + yyj4083++ + if yyhl4083 { + yyb4083 = yyj4083 > l } else { - yyb4051 = r.CheckBreak() + yyb4083 = r.CheckBreak() } - if yyb4051 { + if yyb4083 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4051-1, "") + z.DecStructFieldNotFound(yyj4083-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51007,37 +51469,37 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4056 := z.EncBinary() - _ = yym4056 + yym4088 := z.EncBinary() + _ = yym4088 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4057 := !z.EncBinary() - yy2arr4057 := z.EncBasicHandle().StructToArray - var yyq4057 [4]bool - _, _, _ = yysep4057, yyq4057, yy2arr4057 - const yyr4057 bool = false - yyq4057[0] = x.Kind != "" - yyq4057[1] = x.APIVersion != "" - yyq4057[2] = true - var yynn4057 int - if yyr4057 || yy2arr4057 { + yysep4089 := !z.EncBinary() + yy2arr4089 := z.EncBasicHandle().StructToArray + var yyq4089 [4]bool + _, _, _ = yysep4089, yyq4089, yy2arr4089 + const yyr4089 bool = false + yyq4089[0] = x.Kind != "" + yyq4089[1] = x.APIVersion != "" + yyq4089[2] = true + var yynn4089 int + if yyr4089 || yy2arr4089 { r.EncodeArrayStart(4) } else { - yynn4057 = 1 - for _, b := range yyq4057 { + yynn4089 = 1 + for _, b := range yyq4089 { if b { - yynn4057++ + yynn4089++ } } - r.EncodeMapStart(yynn4057) - yynn4057 = 0 + r.EncodeMapStart(yynn4089) + yynn4089 = 0 } - if yyr4057 || yy2arr4057 { + if yyr4089 || yy2arr4089 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4057[0] { - yym4059 := z.EncBinary() - _ = yym4059 + if yyq4089[0] { + yym4091 := z.EncBinary() + _ = yym4091 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -51046,23 +51508,23 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4057[0] { + if yyq4089[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4060 := z.EncBinary() - _ = yym4060 + yym4092 := z.EncBinary() + _ = yym4092 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4057 || yy2arr4057 { + if yyr4089 || yy2arr4089 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4057[1] { - yym4062 := z.EncBinary() - _ = yym4062 + if yyq4089[1] { + yym4094 := z.EncBinary() + _ = yym4094 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -51071,54 +51533,54 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4057[1] { + if yyq4089[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4063 := z.EncBinary() - _ = yym4063 + yym4095 := z.EncBinary() + _ = yym4095 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4057 || yy2arr4057 { + if yyr4089 || yy2arr4089 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4057[2] { - yy4065 := &x.ListMeta - yym4066 := z.EncBinary() - _ = yym4066 + if yyq4089[2] { + yy4097 := &x.ListMeta + yym4098 := z.EncBinary() + _ = yym4098 if false { - } else if z.HasExtensions() && z.EncExt(yy4065) { + } else if z.HasExtensions() && z.EncExt(yy4097) { } else { - z.EncFallback(yy4065) + z.EncFallback(yy4097) } } else { r.EncodeNil() } } else { - if yyq4057[2] { + if yyq4089[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4067 := &x.ListMeta - yym4068 := z.EncBinary() - _ = yym4068 + yy4099 := &x.ListMeta + yym4100 := z.EncBinary() + _ = yym4100 if false { - } else if z.HasExtensions() && z.EncExt(yy4067) { + } else if z.HasExtensions() && z.EncExt(yy4099) { } else { - z.EncFallback(yy4067) + z.EncFallback(yy4099) } } } - if yyr4057 || yy2arr4057 { + if yyr4089 || yy2arr4089 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4070 := z.EncBinary() - _ = yym4070 + yym4102 := z.EncBinary() + _ = yym4102 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) @@ -51131,15 +51593,15 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4071 := z.EncBinary() - _ = yym4071 + yym4103 := z.EncBinary() + _ = yym4103 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) } } } - if yyr4057 || yy2arr4057 { + if yyr4089 || yy2arr4089 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51152,25 +51614,25 @@ func (x *LimitRangeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4072 := z.DecBinary() - _ = yym4072 + yym4104 := z.DecBinary() + _ = yym4104 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4073 := r.ContainerType() - if yyct4073 == codecSelferValueTypeMap1234 { - yyl4073 := r.ReadMapStart() - if yyl4073 == 0 { + yyct4105 := r.ContainerType() + if yyct4105 == codecSelferValueTypeMap1234 { + yyl4105 := r.ReadMapStart() + if yyl4105 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4073, d) + x.codecDecodeSelfFromMap(yyl4105, d) } - } else if yyct4073 == codecSelferValueTypeArray1234 { - yyl4073 := r.ReadArrayStart() - if yyl4073 == 0 { + } else if yyct4105 == codecSelferValueTypeArray1234 { + yyl4105 := r.ReadArrayStart() + if yyl4105 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4073, d) + x.codecDecodeSelfFromArray(yyl4105, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51182,12 +51644,12 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4074Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4074Slc - var yyhl4074 bool = l >= 0 - for yyj4074 := 0; ; yyj4074++ { - if yyhl4074 { - if yyj4074 >= l { + var yys4106Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4106Slc + var yyhl4106 bool = l >= 0 + for yyj4106 := 0; ; yyj4106++ { + if yyhl4106 { + if yyj4106 >= l { break } } else { @@ -51196,10 +51658,10 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4074Slc = r.DecodeBytes(yys4074Slc, true, true) - yys4074 := string(yys4074Slc) + yys4106Slc = r.DecodeBytes(yys4106Slc, true, true) + yys4106 := string(yys4106Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4074 { + switch yys4106 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51216,31 +51678,31 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv4077 := &x.ListMeta - yym4078 := z.DecBinary() - _ = yym4078 + yyv4109 := &x.ListMeta + yym4110 := z.DecBinary() + _ = yym4110 if false { - } else if z.HasExtensions() && z.DecExt(yyv4077) { + } else if z.HasExtensions() && z.DecExt(yyv4109) { } else { - z.DecFallback(yyv4077, false) + z.DecFallback(yyv4109, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4079 := &x.Items - yym4080 := z.DecBinary() - _ = yym4080 + yyv4111 := &x.Items + yym4112 := z.DecBinary() + _ = yym4112 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv4079), d) + h.decSliceLimitRange((*[]LimitRange)(yyv4111), d) } } default: - z.DecStructFieldNotFound(-1, yys4074) - } // end switch yys4074 - } // end for yyj4074 + z.DecStructFieldNotFound(-1, yys4106) + } // end switch yys4106 + } // end for yyj4106 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51248,16 +51710,16 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4081 int - var yyb4081 bool - var yyhl4081 bool = l >= 0 - yyj4081++ - if yyhl4081 { - yyb4081 = yyj4081 > l + var yyj4113 int + var yyb4113 bool + var yyhl4113 bool = l >= 0 + yyj4113++ + if yyhl4113 { + yyb4113 = yyj4113 > l } else { - yyb4081 = r.CheckBreak() + yyb4113 = r.CheckBreak() } - if yyb4081 { + if yyb4113 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51267,13 +51729,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4081++ - if yyhl4081 { - yyb4081 = yyj4081 > l + yyj4113++ + if yyhl4113 { + yyb4113 = yyj4113 > l } else { - yyb4081 = r.CheckBreak() + yyb4113 = r.CheckBreak() } - if yyb4081 { + if yyb4113 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51283,13 +51745,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4081++ - if yyhl4081 { - yyb4081 = yyj4081 > l + yyj4113++ + if yyhl4113 { + yyb4113 = yyj4113 > l } else { - yyb4081 = r.CheckBreak() + yyb4113 = r.CheckBreak() } - if yyb4081 { + if yyb4113 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51297,22 +51759,22 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv4084 := &x.ListMeta - yym4085 := z.DecBinary() - _ = yym4085 + yyv4116 := &x.ListMeta + yym4117 := z.DecBinary() + _ = yym4117 if false { - } else if z.HasExtensions() && z.DecExt(yyv4084) { + } else if z.HasExtensions() && z.DecExt(yyv4116) { } else { - z.DecFallback(yyv4084, false) + z.DecFallback(yyv4116, false) } } - yyj4081++ - if yyhl4081 { - yyb4081 = yyj4081 > l + yyj4113++ + if yyhl4113 { + yyb4113 = yyj4113 > l } else { - yyb4081 = r.CheckBreak() + yyb4113 = r.CheckBreak() } - if yyb4081 { + if yyb4113 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51320,26 +51782,26 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4086 := &x.Items - yym4087 := z.DecBinary() - _ = yym4087 + yyv4118 := &x.Items + yym4119 := z.DecBinary() + _ = yym4119 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv4086), d) + h.decSliceLimitRange((*[]LimitRange)(yyv4118), d) } } for { - yyj4081++ - if yyhl4081 { - yyb4081 = yyj4081 > l + yyj4113++ + if yyhl4113 { + yyb4113 = yyj4113 > l } else { - yyb4081 = r.CheckBreak() + yyb4113 = r.CheckBreak() } - if yyb4081 { + if yyb4113 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4081-1, "") + z.DecStructFieldNotFound(yyj4113-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51348,8 +51810,8 @@ func (x ResourceQuotaScope) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4088 := z.EncBinary() - _ = yym4088 + yym4120 := z.EncBinary() + _ = yym4120 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -51361,8 +51823,8 @@ func (x *ResourceQuotaScope) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4089 := z.DecBinary() - _ = yym4089 + yym4121 := z.DecBinary() + _ = yym4121 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -51377,34 +51839,34 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4090 := z.EncBinary() - _ = yym4090 + yym4122 := z.EncBinary() + _ = yym4122 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4091 := !z.EncBinary() - yy2arr4091 := z.EncBasicHandle().StructToArray - var yyq4091 [2]bool - _, _, _ = yysep4091, yyq4091, yy2arr4091 - const yyr4091 bool = false - yyq4091[0] = len(x.Hard) != 0 - yyq4091[1] = len(x.Scopes) != 0 - var yynn4091 int - if yyr4091 || yy2arr4091 { + yysep4123 := !z.EncBinary() + yy2arr4123 := z.EncBasicHandle().StructToArray + var yyq4123 [2]bool + _, _, _ = yysep4123, yyq4123, yy2arr4123 + const yyr4123 bool = false + yyq4123[0] = len(x.Hard) != 0 + yyq4123[1] = len(x.Scopes) != 0 + var yynn4123 int + if yyr4123 || yy2arr4123 { r.EncodeArrayStart(2) } else { - yynn4091 = 0 - for _, b := range yyq4091 { + yynn4123 = 0 + for _, b := range yyq4123 { if b { - yynn4091++ + yynn4123++ } } - r.EncodeMapStart(yynn4091) - yynn4091 = 0 + r.EncodeMapStart(yynn4123) + yynn4123 = 0 } - if yyr4091 || yy2arr4091 { + if yyr4123 || yy2arr4123 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4091[0] { + if yyq4123[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -51414,7 +51876,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4091[0] { + if yyq4123[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -51425,14 +51887,14 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4091 || yy2arr4091 { + if yyr4123 || yy2arr4123 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4091[1] { + if yyq4123[1] { if x.Scopes == nil { r.EncodeNil() } else { - yym4094 := z.EncBinary() - _ = yym4094 + yym4126 := z.EncBinary() + _ = yym4126 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -51442,15 +51904,15 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4091[1] { + if yyq4123[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("scopes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Scopes == nil { r.EncodeNil() } else { - yym4095 := z.EncBinary() - _ = yym4095 + yym4127 := z.EncBinary() + _ = yym4127 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -51458,7 +51920,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4091 || yy2arr4091 { + if yyr4123 || yy2arr4123 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51471,25 +51933,25 @@ func (x *ResourceQuotaSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4096 := z.DecBinary() - _ = yym4096 + yym4128 := z.DecBinary() + _ = yym4128 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4097 := r.ContainerType() - if yyct4097 == codecSelferValueTypeMap1234 { - yyl4097 := r.ReadMapStart() - if yyl4097 == 0 { + yyct4129 := r.ContainerType() + if yyct4129 == codecSelferValueTypeMap1234 { + yyl4129 := r.ReadMapStart() + if yyl4129 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4097, d) + x.codecDecodeSelfFromMap(yyl4129, d) } - } else if yyct4097 == codecSelferValueTypeArray1234 { - yyl4097 := r.ReadArrayStart() - if yyl4097 == 0 { + } else if yyct4129 == codecSelferValueTypeArray1234 { + yyl4129 := r.ReadArrayStart() + if yyl4129 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4097, d) + x.codecDecodeSelfFromArray(yyl4129, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51501,12 +51963,12 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4098Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4098Slc - var yyhl4098 bool = l >= 0 - for yyj4098 := 0; ; yyj4098++ { - if yyhl4098 { - if yyj4098 >= l { + var yys4130Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4130Slc + var yyhl4130 bool = l >= 0 + for yyj4130 := 0; ; yyj4130++ { + if yyhl4130 { + if yyj4130 >= l { break } } else { @@ -51515,33 +51977,33 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4098Slc = r.DecodeBytes(yys4098Slc, true, true) - yys4098 := string(yys4098Slc) + yys4130Slc = r.DecodeBytes(yys4130Slc, true, true) + yys4130 := string(yys4130Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4098 { + switch yys4130 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4099 := &x.Hard - yyv4099.CodecDecodeSelf(d) + yyv4131 := &x.Hard + yyv4131.CodecDecodeSelf(d) } case "scopes": if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv4100 := &x.Scopes - yym4101 := z.DecBinary() - _ = yym4101 + yyv4132 := &x.Scopes + yym4133 := z.DecBinary() + _ = yym4133 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4100), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4132), d) } } default: - z.DecStructFieldNotFound(-1, yys4098) - } // end switch yys4098 - } // end for yyj4098 + z.DecStructFieldNotFound(-1, yys4130) + } // end switch yys4130 + } // end for yyj4130 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51549,16 +52011,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4102 int - var yyb4102 bool - var yyhl4102 bool = l >= 0 - yyj4102++ - if yyhl4102 { - yyb4102 = yyj4102 > l + var yyj4134 int + var yyb4134 bool + var yyhl4134 bool = l >= 0 + yyj4134++ + if yyhl4134 { + yyb4134 = yyj4134 > l } else { - yyb4102 = r.CheckBreak() + yyb4134 = r.CheckBreak() } - if yyb4102 { + if yyb4134 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51566,16 +52028,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4103 := &x.Hard - yyv4103.CodecDecodeSelf(d) + yyv4135 := &x.Hard + yyv4135.CodecDecodeSelf(d) } - yyj4102++ - if yyhl4102 { - yyb4102 = yyj4102 > l + yyj4134++ + if yyhl4134 { + yyb4134 = yyj4134 > l } else { - yyb4102 = r.CheckBreak() + yyb4134 = r.CheckBreak() } - if yyb4102 { + if yyb4134 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51583,26 +52045,26 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv4104 := &x.Scopes - yym4105 := z.DecBinary() - _ = yym4105 + yyv4136 := &x.Scopes + yym4137 := z.DecBinary() + _ = yym4137 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4104), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4136), d) } } for { - yyj4102++ - if yyhl4102 { - yyb4102 = yyj4102 > l + yyj4134++ + if yyhl4134 { + yyb4134 = yyj4134 > l } else { - yyb4102 = r.CheckBreak() + yyb4134 = r.CheckBreak() } - if yyb4102 { + if yyb4134 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4102-1, "") + z.DecStructFieldNotFound(yyj4134-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51614,34 +52076,34 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4106 := z.EncBinary() - _ = yym4106 + yym4138 := z.EncBinary() + _ = yym4138 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4107 := !z.EncBinary() - yy2arr4107 := z.EncBasicHandle().StructToArray - var yyq4107 [2]bool - _, _, _ = yysep4107, yyq4107, yy2arr4107 - const yyr4107 bool = false - yyq4107[0] = len(x.Hard) != 0 - yyq4107[1] = len(x.Used) != 0 - var yynn4107 int - if yyr4107 || yy2arr4107 { + yysep4139 := !z.EncBinary() + yy2arr4139 := z.EncBasicHandle().StructToArray + var yyq4139 [2]bool + _, _, _ = yysep4139, yyq4139, yy2arr4139 + const yyr4139 bool = false + yyq4139[0] = len(x.Hard) != 0 + yyq4139[1] = len(x.Used) != 0 + var yynn4139 int + if yyr4139 || yy2arr4139 { r.EncodeArrayStart(2) } else { - yynn4107 = 0 - for _, b := range yyq4107 { + yynn4139 = 0 + for _, b := range yyq4139 { if b { - yynn4107++ + yynn4139++ } } - r.EncodeMapStart(yynn4107) - yynn4107 = 0 + r.EncodeMapStart(yynn4139) + yynn4139 = 0 } - if yyr4107 || yy2arr4107 { + if yyr4139 || yy2arr4139 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4107[0] { + if yyq4139[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -51651,7 +52113,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4107[0] { + if yyq4139[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -51662,9 +52124,9 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4107 || yy2arr4107 { + if yyr4139 || yy2arr4139 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4107[1] { + if yyq4139[1] { if x.Used == nil { r.EncodeNil() } else { @@ -51674,7 +52136,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4107[1] { + if yyq4139[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("used")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -51685,7 +52147,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4107 || yy2arr4107 { + if yyr4139 || yy2arr4139 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51698,25 +52160,25 @@ func (x *ResourceQuotaStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4110 := z.DecBinary() - _ = yym4110 + yym4142 := z.DecBinary() + _ = yym4142 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4111 := r.ContainerType() - if yyct4111 == codecSelferValueTypeMap1234 { - yyl4111 := r.ReadMapStart() - if yyl4111 == 0 { + yyct4143 := r.ContainerType() + if yyct4143 == codecSelferValueTypeMap1234 { + yyl4143 := r.ReadMapStart() + if yyl4143 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4111, d) + x.codecDecodeSelfFromMap(yyl4143, d) } - } else if yyct4111 == codecSelferValueTypeArray1234 { - yyl4111 := r.ReadArrayStart() - if yyl4111 == 0 { + } else if yyct4143 == codecSelferValueTypeArray1234 { + yyl4143 := r.ReadArrayStart() + if yyl4143 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4111, d) + x.codecDecodeSelfFromArray(yyl4143, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51728,12 +52190,12 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4112Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4112Slc - var yyhl4112 bool = l >= 0 - for yyj4112 := 0; ; yyj4112++ { - if yyhl4112 { - if yyj4112 >= l { + var yys4144Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4144Slc + var yyhl4144 bool = l >= 0 + for yyj4144 := 0; ; yyj4144++ { + if yyhl4144 { + if yyj4144 >= l { break } } else { @@ -51742,28 +52204,28 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4112Slc = r.DecodeBytes(yys4112Slc, true, true) - yys4112 := string(yys4112Slc) + yys4144Slc = r.DecodeBytes(yys4144Slc, true, true) + yys4144 := string(yys4144Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4112 { + switch yys4144 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4113 := &x.Hard - yyv4113.CodecDecodeSelf(d) + yyv4145 := &x.Hard + yyv4145.CodecDecodeSelf(d) } case "used": if r.TryDecodeAsNil() { x.Used = nil } else { - yyv4114 := &x.Used - yyv4114.CodecDecodeSelf(d) + yyv4146 := &x.Used + yyv4146.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4112) - } // end switch yys4112 - } // end for yyj4112 + z.DecStructFieldNotFound(-1, yys4144) + } // end switch yys4144 + } // end for yyj4144 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51771,16 +52233,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4115 int - var yyb4115 bool - var yyhl4115 bool = l >= 0 - yyj4115++ - if yyhl4115 { - yyb4115 = yyj4115 > l + var yyj4147 int + var yyb4147 bool + var yyhl4147 bool = l >= 0 + yyj4147++ + if yyhl4147 { + yyb4147 = yyj4147 > l } else { - yyb4115 = r.CheckBreak() + yyb4147 = r.CheckBreak() } - if yyb4115 { + if yyb4147 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51788,16 +52250,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4116 := &x.Hard - yyv4116.CodecDecodeSelf(d) + yyv4148 := &x.Hard + yyv4148.CodecDecodeSelf(d) } - yyj4115++ - if yyhl4115 { - yyb4115 = yyj4115 > l + yyj4147++ + if yyhl4147 { + yyb4147 = yyj4147 > l } else { - yyb4115 = r.CheckBreak() + yyb4147 = r.CheckBreak() } - if yyb4115 { + if yyb4147 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51805,21 +52267,21 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Used = nil } else { - yyv4117 := &x.Used - yyv4117.CodecDecodeSelf(d) + yyv4149 := &x.Used + yyv4149.CodecDecodeSelf(d) } for { - yyj4115++ - if yyhl4115 { - yyb4115 = yyj4115 > l + yyj4147++ + if yyhl4147 { + yyb4147 = yyj4147 > l } else { - yyb4115 = r.CheckBreak() + yyb4147 = r.CheckBreak() } - if yyb4115 { + if yyb4147 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4115-1, "") + z.DecStructFieldNotFound(yyj4147-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51831,39 +52293,39 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4118 := z.EncBinary() - _ = yym4118 + yym4150 := z.EncBinary() + _ = yym4150 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4119 := !z.EncBinary() - yy2arr4119 := z.EncBasicHandle().StructToArray - var yyq4119 [5]bool - _, _, _ = yysep4119, yyq4119, yy2arr4119 - const yyr4119 bool = false - yyq4119[0] = x.Kind != "" - yyq4119[1] = x.APIVersion != "" - yyq4119[2] = true - yyq4119[3] = true - yyq4119[4] = true - var yynn4119 int - if yyr4119 || yy2arr4119 { + yysep4151 := !z.EncBinary() + yy2arr4151 := z.EncBasicHandle().StructToArray + var yyq4151 [5]bool + _, _, _ = yysep4151, yyq4151, yy2arr4151 + const yyr4151 bool = false + yyq4151[0] = x.Kind != "" + yyq4151[1] = x.APIVersion != "" + yyq4151[2] = true + yyq4151[3] = true + yyq4151[4] = true + var yynn4151 int + if yyr4151 || yy2arr4151 { r.EncodeArrayStart(5) } else { - yynn4119 = 0 - for _, b := range yyq4119 { + yynn4151 = 0 + for _, b := range yyq4151 { if b { - yynn4119++ + yynn4151++ } } - r.EncodeMapStart(yynn4119) - yynn4119 = 0 + r.EncodeMapStart(yynn4151) + yynn4151 = 0 } - if yyr4119 || yy2arr4119 { + if yyr4151 || yy2arr4151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4119[0] { - yym4121 := z.EncBinary() - _ = yym4121 + if yyq4151[0] { + yym4153 := z.EncBinary() + _ = yym4153 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -51872,23 +52334,23 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4119[0] { + if yyq4151[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4122 := z.EncBinary() - _ = yym4122 + yym4154 := z.EncBinary() + _ = yym4154 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4119 || yy2arr4119 { + if yyr4151 || yy2arr4151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4119[1] { - yym4124 := z.EncBinary() - _ = yym4124 + if yyq4151[1] { + yym4156 := z.EncBinary() + _ = yym4156 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -51897,70 +52359,70 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4119[1] { + if yyq4151[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4125 := z.EncBinary() - _ = yym4125 + yym4157 := z.EncBinary() + _ = yym4157 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4119 || yy2arr4119 { + if yyr4151 || yy2arr4151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4119[2] { - yy4127 := &x.ObjectMeta - yy4127.CodecEncodeSelf(e) + if yyq4151[2] { + yy4159 := &x.ObjectMeta + yy4159.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4119[2] { + if yyq4151[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4128 := &x.ObjectMeta - yy4128.CodecEncodeSelf(e) + yy4160 := &x.ObjectMeta + yy4160.CodecEncodeSelf(e) } } - if yyr4119 || yy2arr4119 { + if yyr4151 || yy2arr4151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4119[3] { - yy4130 := &x.Spec - yy4130.CodecEncodeSelf(e) + if yyq4151[3] { + yy4162 := &x.Spec + yy4162.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4119[3] { + if yyq4151[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4131 := &x.Spec - yy4131.CodecEncodeSelf(e) + yy4163 := &x.Spec + yy4163.CodecEncodeSelf(e) } } - if yyr4119 || yy2arr4119 { + if yyr4151 || yy2arr4151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4119[4] { - yy4133 := &x.Status - yy4133.CodecEncodeSelf(e) + if yyq4151[4] { + yy4165 := &x.Status + yy4165.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4119[4] { + if yyq4151[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4134 := &x.Status - yy4134.CodecEncodeSelf(e) + yy4166 := &x.Status + yy4166.CodecEncodeSelf(e) } } - if yyr4119 || yy2arr4119 { + if yyr4151 || yy2arr4151 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51973,25 +52435,25 @@ func (x *ResourceQuota) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4135 := z.DecBinary() - _ = yym4135 + yym4167 := z.DecBinary() + _ = yym4167 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4136 := r.ContainerType() - if yyct4136 == codecSelferValueTypeMap1234 { - yyl4136 := r.ReadMapStart() - if yyl4136 == 0 { + yyct4168 := r.ContainerType() + if yyct4168 == codecSelferValueTypeMap1234 { + yyl4168 := r.ReadMapStart() + if yyl4168 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4136, d) + x.codecDecodeSelfFromMap(yyl4168, d) } - } else if yyct4136 == codecSelferValueTypeArray1234 { - yyl4136 := r.ReadArrayStart() - if yyl4136 == 0 { + } else if yyct4168 == codecSelferValueTypeArray1234 { + yyl4168 := r.ReadArrayStart() + if yyl4168 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4136, d) + x.codecDecodeSelfFromArray(yyl4168, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52003,12 +52465,12 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4137Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4137Slc - var yyhl4137 bool = l >= 0 - for yyj4137 := 0; ; yyj4137++ { - if yyhl4137 { - if yyj4137 >= l { + var yys4169Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4169Slc + var yyhl4169 bool = l >= 0 + for yyj4169 := 0; ; yyj4169++ { + if yyhl4169 { + if yyj4169 >= l { break } } else { @@ -52017,10 +52479,10 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4137Slc = r.DecodeBytes(yys4137Slc, true, true) - yys4137 := string(yys4137Slc) + yys4169Slc = r.DecodeBytes(yys4169Slc, true, true) + yys4169 := string(yys4169Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4137 { + switch yys4169 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52037,27 +52499,27 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4140 := &x.ObjectMeta - yyv4140.CodecDecodeSelf(d) + yyv4172 := &x.ObjectMeta + yyv4172.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv4141 := &x.Spec - yyv4141.CodecDecodeSelf(d) + yyv4173 := &x.Spec + yyv4173.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv4142 := &x.Status - yyv4142.CodecDecodeSelf(d) + yyv4174 := &x.Status + yyv4174.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4137) - } // end switch yys4137 - } // end for yyj4137 + z.DecStructFieldNotFound(-1, yys4169) + } // end switch yys4169 + } // end for yyj4169 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52065,16 +52527,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4143 int - var yyb4143 bool - var yyhl4143 bool = l >= 0 - yyj4143++ - if yyhl4143 { - yyb4143 = yyj4143 > l + var yyj4175 int + var yyb4175 bool + var yyhl4175 bool = l >= 0 + yyj4175++ + if yyhl4175 { + yyb4175 = yyj4175 > l } else { - yyb4143 = r.CheckBreak() + yyb4175 = r.CheckBreak() } - if yyb4143 { + if yyb4175 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52084,13 +52546,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4143++ - if yyhl4143 { - yyb4143 = yyj4143 > l + yyj4175++ + if yyhl4175 { + yyb4175 = yyj4175 > l } else { - yyb4143 = r.CheckBreak() + yyb4175 = r.CheckBreak() } - if yyb4143 { + if yyb4175 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52100,13 +52562,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4143++ - if yyhl4143 { - yyb4143 = yyj4143 > l + yyj4175++ + if yyhl4175 { + yyb4175 = yyj4175 > l } else { - yyb4143 = r.CheckBreak() + yyb4175 = r.CheckBreak() } - if yyb4143 { + if yyb4175 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52114,16 +52576,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4146 := &x.ObjectMeta - yyv4146.CodecDecodeSelf(d) + yyv4178 := &x.ObjectMeta + yyv4178.CodecDecodeSelf(d) } - yyj4143++ - if yyhl4143 { - yyb4143 = yyj4143 > l + yyj4175++ + if yyhl4175 { + yyb4175 = yyj4175 > l } else { - yyb4143 = r.CheckBreak() + yyb4175 = r.CheckBreak() } - if yyb4143 { + if yyb4175 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52131,16 +52593,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv4147 := &x.Spec - yyv4147.CodecDecodeSelf(d) + yyv4179 := &x.Spec + yyv4179.CodecDecodeSelf(d) } - yyj4143++ - if yyhl4143 { - yyb4143 = yyj4143 > l + yyj4175++ + if yyhl4175 { + yyb4175 = yyj4175 > l } else { - yyb4143 = r.CheckBreak() + yyb4175 = r.CheckBreak() } - if yyb4143 { + if yyb4175 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52148,370 +52610,26 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv4148 := &x.Status - yyv4148.CodecDecodeSelf(d) + yyv4180 := &x.Status + yyv4180.CodecDecodeSelf(d) } for { - yyj4143++ - if yyhl4143 { - yyb4143 = yyj4143 > l + yyj4175++ + if yyhl4175 { + yyb4175 = yyj4175 > l } else { - yyb4143 = r.CheckBreak() + yyb4175 = r.CheckBreak() } - if yyb4143 { + if yyb4175 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4143-1, "") + z.DecStructFieldNotFound(yyj4175-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym4149 := z.EncBinary() - _ = yym4149 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep4150 := !z.EncBinary() - yy2arr4150 := z.EncBasicHandle().StructToArray - var yyq4150 [4]bool - _, _, _ = yysep4150, yyq4150, yy2arr4150 - const yyr4150 bool = false - yyq4150[0] = x.Kind != "" - yyq4150[1] = x.APIVersion != "" - yyq4150[2] = true - var yynn4150 int - if yyr4150 || yy2arr4150 { - r.EncodeArrayStart(4) - } else { - yynn4150 = 1 - for _, b := range yyq4150 { - if b { - yynn4150++ - } - } - r.EncodeMapStart(yynn4150) - yynn4150 = 0 - } - if yyr4150 || yy2arr4150 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4150[0] { - yym4152 := z.EncBinary() - _ = yym4152 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4150[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4153 := z.EncBinary() - _ = yym4153 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr4150 || yy2arr4150 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4150[1] { - yym4155 := z.EncBinary() - _ = yym4155 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4150[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4156 := z.EncBinary() - _ = yym4156 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr4150 || yy2arr4150 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4150[2] { - yy4158 := &x.ListMeta - yym4159 := z.EncBinary() - _ = yym4159 - if false { - } else if z.HasExtensions() && z.EncExt(yy4158) { - } else { - z.EncFallback(yy4158) - } - } else { - r.EncodeNil() - } - } else { - if yyq4150[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4160 := &x.ListMeta - yym4161 := z.EncBinary() - _ = yym4161 - if false { - } else if z.HasExtensions() && z.EncExt(yy4160) { - } else { - z.EncFallback(yy4160) - } - } - } - if yyr4150 || yy2arr4150 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if x.Items == nil { - r.EncodeNil() - } else { - yym4163 := z.EncBinary() - _ = yym4163 - if false { - } else { - h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) - } - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("items")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Items == nil { - r.EncodeNil() - } else { - yym4164 := z.EncBinary() - _ = yym4164 - if false { - } else { - h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) - } - } - } - if yyr4150 || yy2arr4150 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *ResourceQuotaList) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym4165 := z.DecBinary() - _ = yym4165 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct4166 := r.ContainerType() - if yyct4166 == codecSelferValueTypeMap1234 { - yyl4166 := r.ReadMapStart() - if yyl4166 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl4166, d) - } - } else if yyct4166 == codecSelferValueTypeArray1234 { - yyl4166 := r.ReadArrayStart() - if yyl4166 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl4166, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys4167Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4167Slc - var yyhl4167 bool = l >= 0 - for yyj4167 := 0; ; yyj4167++ { - if yyhl4167 { - if yyj4167 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4167Slc = r.DecodeBytes(yys4167Slc, true, true) - yys4167 := string(yys4167Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4167 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "metadata": - if r.TryDecodeAsNil() { - x.ListMeta = pkg2_v1.ListMeta{} - } else { - yyv4170 := &x.ListMeta - yym4171 := z.DecBinary() - _ = yym4171 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4170) { - } else { - z.DecFallback(yyv4170, false) - } - } - case "items": - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv4172 := &x.Items - yym4173 := z.DecBinary() - _ = yym4173 - if false { - } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4172), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys4167) - } // end switch yys4167 - } // end for yyj4167 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj4174 int - var yyb4174 bool - var yyhl4174 bool = l >= 0 - yyj4174++ - if yyhl4174 { - yyb4174 = yyj4174 > l - } else { - yyb4174 = r.CheckBreak() - } - if yyb4174 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj4174++ - if yyhl4174 { - yyb4174 = yyj4174 > l - } else { - yyb4174 = r.CheckBreak() - } - if yyb4174 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj4174++ - if yyhl4174 { - yyb4174 = yyj4174 > l - } else { - yyb4174 = r.CheckBreak() - } - if yyb4174 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ListMeta = pkg2_v1.ListMeta{} - } else { - yyv4177 := &x.ListMeta - yym4178 := z.DecBinary() - _ = yym4178 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4177) { - } else { - z.DecFallback(yyv4177, false) - } - } - yyj4174++ - if yyhl4174 { - yyb4174 = yyj4174 > l - } else { - yyb4174 = r.CheckBreak() - } - if yyb4174 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv4179 := &x.Items - yym4180 := z.DecBinary() - _ = yym4180 - if false { - } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4179), d) - } - } - for { - yyj4174++ - if yyhl4174 { - yyb4174 = yyj4174 > l - } else { - yyb4174 = r.CheckBreak() - } - if yyb4174 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4174-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -52525,20 +52643,17 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep4182 := !z.EncBinary() yy2arr4182 := z.EncBasicHandle().StructToArray - var yyq4182 [6]bool + var yyq4182 [4]bool _, _, _ = yysep4182, yyq4182, yy2arr4182 const yyr4182 bool = false yyq4182[0] = x.Kind != "" yyq4182[1] = x.APIVersion != "" yyq4182[2] = true - yyq4182[3] = len(x.Data) != 0 - yyq4182[4] = len(x.StringData) != 0 - yyq4182[5] = x.Type != "" var yynn4182 int if yyr4182 || yy2arr4182 { - r.EncodeArrayStart(6) + r.EncodeArrayStart(4) } else { - yynn4182 = 0 + yynn4182 = 1 for _, b := range yyq4182 { if b { yynn4182++ @@ -52600,8 +52715,14 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { if yyr4182 || yy2arr4182 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if yyq4182[2] { - yy4190 := &x.ObjectMeta - yy4190.CodecEncodeSelf(e) + yy4190 := &x.ListMeta + yym4191 := z.EncBinary() + _ = yym4191 + if false { + } else if z.HasExtensions() && z.EncExt(yy4190) { + } else { + z.EncFallback(yy4190) + } } else { r.EncodeNil() } @@ -52610,488 +52731,26 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4191 := &x.ObjectMeta - yy4191.CodecEncodeSelf(e) - } - } - if yyr4182 || yy2arr4182 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4182[3] { - if x.Data == nil { - r.EncodeNil() + yy4192 := &x.ListMeta + yym4193 := z.EncBinary() + _ = yym4193 + if false { + } else if z.HasExtensions() && z.EncExt(yy4192) { } else { - yym4193 := z.EncBinary() - _ = yym4193 - if false { - } else { - h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq4182[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("data")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Data == nil { - r.EncodeNil() - } else { - yym4194 := z.EncBinary() - _ = yym4194 - if false { - } else { - h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) - } + z.EncFallback(yy4192) } } } if yyr4182 || yy2arr4182 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4182[4] { - if x.StringData == nil { - r.EncodeNil() - } else { - yym4196 := z.EncBinary() - _ = yym4196 - if false { - } else { - z.F.EncMapStringStringV(x.StringData, false, e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq4182[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("stringData")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.StringData == nil { - r.EncodeNil() - } else { - yym4197 := z.EncBinary() - _ = yym4197 - if false { - } else { - z.F.EncMapStringStringV(x.StringData, false, e) - } - } - } - } - if yyr4182 || yy2arr4182 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4182[5] { - x.Type.CodecEncodeSelf(e) - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4182[5] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("type")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - x.Type.CodecEncodeSelf(e) - } - } - if yyr4182 || yy2arr4182 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *Secret) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym4199 := z.DecBinary() - _ = yym4199 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct4200 := r.ContainerType() - if yyct4200 == codecSelferValueTypeMap1234 { - yyl4200 := r.ReadMapStart() - if yyl4200 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl4200, d) - } - } else if yyct4200 == codecSelferValueTypeArray1234 { - yyl4200 := r.ReadArrayStart() - if yyl4200 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl4200, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys4201Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4201Slc - var yyhl4201 bool = l >= 0 - for yyj4201 := 0; ; yyj4201++ { - if yyhl4201 { - if yyj4201 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4201Slc = r.DecodeBytes(yys4201Slc, true, true) - yys4201 := string(yys4201Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4201 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "metadata": - if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} - } else { - yyv4204 := &x.ObjectMeta - yyv4204.CodecDecodeSelf(d) - } - case "data": - if r.TryDecodeAsNil() { - x.Data = nil - } else { - yyv4205 := &x.Data - yym4206 := z.DecBinary() - _ = yym4206 - if false { - } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4205), d) - } - } - case "stringData": - if r.TryDecodeAsNil() { - x.StringData = nil - } else { - yyv4207 := &x.StringData - yym4208 := z.DecBinary() - _ = yym4208 - if false { - } else { - z.F.DecMapStringStringX(yyv4207, false, d) - } - } - case "type": - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = SecretType(r.DecodeString()) - } - default: - z.DecStructFieldNotFound(-1, yys4201) - } // end switch yys4201 - } // end for yyj4201 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj4210 int - var yyb4210 bool - var yyhl4210 bool = l >= 0 - yyj4210++ - if yyhl4210 { - yyb4210 = yyj4210 > l - } else { - yyb4210 = r.CheckBreak() - } - if yyb4210 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj4210++ - if yyhl4210 { - yyb4210 = yyj4210 > l - } else { - yyb4210 = r.CheckBreak() - } - if yyb4210 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj4210++ - if yyhl4210 { - yyb4210 = yyj4210 > l - } else { - yyb4210 = r.CheckBreak() - } - if yyb4210 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} - } else { - yyv4213 := &x.ObjectMeta - yyv4213.CodecDecodeSelf(d) - } - yyj4210++ - if yyhl4210 { - yyb4210 = yyj4210 > l - } else { - yyb4210 = r.CheckBreak() - } - if yyb4210 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Data = nil - } else { - yyv4214 := &x.Data - yym4215 := z.DecBinary() - _ = yym4215 - if false { - } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4214), d) - } - } - yyj4210++ - if yyhl4210 { - yyb4210 = yyj4210 > l - } else { - yyb4210 = r.CheckBreak() - } - if yyb4210 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.StringData = nil - } else { - yyv4216 := &x.StringData - yym4217 := z.DecBinary() - _ = yym4217 - if false { - } else { - z.F.DecMapStringStringX(yyv4216, false, d) - } - } - yyj4210++ - if yyhl4210 { - yyb4210 = yyj4210 > l - } else { - yyb4210 = r.CheckBreak() - } - if yyb4210 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Type = "" - } else { - x.Type = SecretType(r.DecodeString()) - } - for { - yyj4210++ - if yyhl4210 { - yyb4210 = yyj4210 > l - } else { - yyb4210 = r.CheckBreak() - } - if yyb4210 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4210-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x SecretType) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - yym4219 := z.EncBinary() - _ = yym4219 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x)) - } -} - -func (x *SecretType) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym4220 := z.DecBinary() - _ = yym4220 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - *((*string)(x)) = r.DecodeString() - } -} - -func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym4221 := z.EncBinary() - _ = yym4221 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep4222 := !z.EncBinary() - yy2arr4222 := z.EncBasicHandle().StructToArray - var yyq4222 [4]bool - _, _, _ = yysep4222, yyq4222, yy2arr4222 - const yyr4222 bool = false - yyq4222[0] = x.Kind != "" - yyq4222[1] = x.APIVersion != "" - yyq4222[2] = true - var yynn4222 int - if yyr4222 || yy2arr4222 { - r.EncodeArrayStart(4) - } else { - yynn4222 = 1 - for _, b := range yyq4222 { - if b { - yynn4222++ - } - } - r.EncodeMapStart(yynn4222) - yynn4222 = 0 - } - if yyr4222 || yy2arr4222 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4222[0] { - yym4224 := z.EncBinary() - _ = yym4224 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4222[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4225 := z.EncBinary() - _ = yym4225 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr4222 || yy2arr4222 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4222[1] { - yym4227 := z.EncBinary() - _ = yym4227 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4222[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4228 := z.EncBinary() - _ = yym4228 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr4222 || yy2arr4222 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4222[2] { - yy4230 := &x.ListMeta - yym4231 := z.EncBinary() - _ = yym4231 - if false { - } else if z.HasExtensions() && z.EncExt(yy4230) { - } else { - z.EncFallback(yy4230) - } - } else { - r.EncodeNil() - } - } else { - if yyq4222[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4232 := &x.ListMeta - yym4233 := z.EncBinary() - _ = yym4233 - if false { - } else if z.HasExtensions() && z.EncExt(yy4232) { - } else { - z.EncFallback(yy4232) - } - } - } - if yyr4222 || yy2arr4222 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4235 := z.EncBinary() - _ = yym4235 + yym4195 := z.EncBinary() + _ = yym4195 if false { } else { - h.encSliceSecret(([]Secret)(x.Items), e) + h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) } } } else { @@ -53101,15 +52760,15 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4236 := z.EncBinary() - _ = yym4236 + yym4196 := z.EncBinary() + _ = yym4196 if false { } else { - h.encSliceSecret(([]Secret)(x.Items), e) + h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) } } } - if yyr4222 || yy2arr4222 { + if yyr4182 || yy2arr4182 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53118,29 +52777,29 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { } } -func (x *SecretList) CodecDecodeSelf(d *codec1978.Decoder) { +func (x *ResourceQuotaList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4237 := z.DecBinary() - _ = yym4237 + yym4197 := z.DecBinary() + _ = yym4197 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4238 := r.ContainerType() - if yyct4238 == codecSelferValueTypeMap1234 { - yyl4238 := r.ReadMapStart() - if yyl4238 == 0 { + yyct4198 := r.ContainerType() + if yyct4198 == codecSelferValueTypeMap1234 { + yyl4198 := r.ReadMapStart() + if yyl4198 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4238, d) + x.codecDecodeSelfFromMap(yyl4198, d) } - } else if yyct4238 == codecSelferValueTypeArray1234 { - yyl4238 := r.ReadArrayStart() - if yyl4238 == 0 { + } else if yyct4198 == codecSelferValueTypeArray1234 { + yyl4198 := r.ReadArrayStart() + if yyl4198 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4238, d) + x.codecDecodeSelfFromArray(yyl4198, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53148,16 +52807,16 @@ func (x *SecretList) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4239Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4239Slc - var yyhl4239 bool = l >= 0 - for yyj4239 := 0; ; yyj4239++ { - if yyhl4239 { - if yyj4239 >= l { + var yys4199Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4199Slc + var yyhl4199 bool = l >= 0 + for yyj4199 := 0; ; yyj4199++ { + if yyhl4199 { + if yyj4199 >= l { break } } else { @@ -53166,10 +52825,10 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4239Slc = r.DecodeBytes(yys4239Slc, true, true) - yys4239 := string(yys4239Slc) + yys4199Slc = r.DecodeBytes(yys4199Slc, true, true) + yys4199 := string(yys4199Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4239 { + switch yys4199 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -53186,48 +52845,48 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv4242 := &x.ListMeta - yym4243 := z.DecBinary() - _ = yym4243 + yyv4202 := &x.ListMeta + yym4203 := z.DecBinary() + _ = yym4203 if false { - } else if z.HasExtensions() && z.DecExt(yyv4242) { + } else if z.HasExtensions() && z.DecExt(yyv4202) { } else { - z.DecFallback(yyv4242, false) + z.DecFallback(yyv4202, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4244 := &x.Items - yym4245 := z.DecBinary() - _ = yym4245 + yyv4204 := &x.Items + yym4205 := z.DecBinary() + _ = yym4205 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4244), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4204), d) } } default: - z.DecStructFieldNotFound(-1, yys4239) - } // end switch yys4239 - } // end for yyj4239 + z.DecStructFieldNotFound(-1, yys4199) + } // end switch yys4199 + } // end for yyj4199 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } -func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { +func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4246 int - var yyb4246 bool - var yyhl4246 bool = l >= 0 - yyj4246++ - if yyhl4246 { - yyb4246 = yyj4246 > l + var yyj4206 int + var yyb4206 bool + var yyhl4206 bool = l >= 0 + yyj4206++ + if yyhl4206 { + yyb4206 = yyj4206 > l } else { - yyb4246 = r.CheckBreak() + yyb4206 = r.CheckBreak() } - if yyb4246 { + if yyb4206 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53237,13 +52896,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4246++ - if yyhl4246 { - yyb4246 = yyj4246 > l + yyj4206++ + if yyhl4206 { + yyb4206 = yyj4206 > l } else { - yyb4246 = r.CheckBreak() + yyb4206 = r.CheckBreak() } - if yyb4246 { + if yyb4206 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53253,13 +52912,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4246++ - if yyhl4246 { - yyb4246 = yyj4246 > l + yyj4206++ + if yyhl4206 { + yyb4206 = yyj4206 > l } else { - yyb4246 = r.CheckBreak() + yyb4206 = r.CheckBreak() } - if yyb4246 { + if yyb4206 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53267,22 +52926,22 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv4249 := &x.ListMeta - yym4250 := z.DecBinary() - _ = yym4250 + yyv4209 := &x.ListMeta + yym4210 := z.DecBinary() + _ = yym4210 if false { - } else if z.HasExtensions() && z.DecExt(yyv4249) { + } else if z.HasExtensions() && z.DecExt(yyv4209) { } else { - z.DecFallback(yyv4249, false) + z.DecFallback(yyv4209, false) } } - yyj4246++ - if yyhl4246 { - yyb4246 = yyj4246 > l + yyj4206++ + if yyhl4206 { + yyb4206 = yyj4206 > l } else { - yyb4246 = r.CheckBreak() + yyb4206 = r.CheckBreak() } - if yyb4246 { + if yyb4206 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53290,31 +52949,490 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4251 := &x.Items - yym4252 := z.DecBinary() - _ = yym4252 + yyv4211 := &x.Items + yym4212 := z.DecBinary() + _ = yym4212 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4251), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4211), d) } } for { - yyj4246++ - if yyhl4246 { - yyb4246 = yyj4246 > l + yyj4206++ + if yyhl4206 { + yyb4206 = yyj4206 > l } else { - yyb4246 = r.CheckBreak() + yyb4206 = r.CheckBreak() } - if yyb4246 { + if yyb4206 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4246-1, "") + z.DecStructFieldNotFound(yyj4206-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { +func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym4213 := z.EncBinary() + _ = yym4213 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep4214 := !z.EncBinary() + yy2arr4214 := z.EncBasicHandle().StructToArray + var yyq4214 [6]bool + _, _, _ = yysep4214, yyq4214, yy2arr4214 + const yyr4214 bool = false + yyq4214[0] = x.Kind != "" + yyq4214[1] = x.APIVersion != "" + yyq4214[2] = true + yyq4214[3] = len(x.Data) != 0 + yyq4214[4] = len(x.StringData) != 0 + yyq4214[5] = x.Type != "" + var yynn4214 int + if yyr4214 || yy2arr4214 { + r.EncodeArrayStart(6) + } else { + yynn4214 = 0 + for _, b := range yyq4214 { + if b { + yynn4214++ + } + } + r.EncodeMapStart(yynn4214) + yynn4214 = 0 + } + if yyr4214 || yy2arr4214 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4214[0] { + yym4216 := z.EncBinary() + _ = yym4216 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4214[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4217 := z.EncBinary() + _ = yym4217 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr4214 || yy2arr4214 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4214[1] { + yym4219 := z.EncBinary() + _ = yym4219 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4214[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4220 := z.EncBinary() + _ = yym4220 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr4214 || yy2arr4214 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4214[2] { + yy4222 := &x.ObjectMeta + yy4222.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq4214[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy4223 := &x.ObjectMeta + yy4223.CodecEncodeSelf(e) + } + } + if yyr4214 || yy2arr4214 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4214[3] { + if x.Data == nil { + r.EncodeNil() + } else { + yym4225 := z.EncBinary() + _ = yym4225 + if false { + } else { + h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq4214[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("data")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Data == nil { + r.EncodeNil() + } else { + yym4226 := z.EncBinary() + _ = yym4226 + if false { + } else { + h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) + } + } + } + } + if yyr4214 || yy2arr4214 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4214[4] { + if x.StringData == nil { + r.EncodeNil() + } else { + yym4228 := z.EncBinary() + _ = yym4228 + if false { + } else { + z.F.EncMapStringStringV(x.StringData, false, e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq4214[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("stringData")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.StringData == nil { + r.EncodeNil() + } else { + yym4229 := z.EncBinary() + _ = yym4229 + if false { + } else { + z.F.EncMapStringStringV(x.StringData, false, e) + } + } + } + } + if yyr4214 || yy2arr4214 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4214[5] { + x.Type.CodecEncodeSelf(e) + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4214[5] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("type")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + x.Type.CodecEncodeSelf(e) + } + } + if yyr4214 || yy2arr4214 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *Secret) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym4231 := z.DecBinary() + _ = yym4231 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct4232 := r.ContainerType() + if yyct4232 == codecSelferValueTypeMap1234 { + yyl4232 := r.ReadMapStart() + if yyl4232 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl4232, d) + } + } else if yyct4232 == codecSelferValueTypeArray1234 { + yyl4232 := r.ReadArrayStart() + if yyl4232 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl4232, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys4233Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4233Slc + var yyhl4233 bool = l >= 0 + for yyj4233 := 0; ; yyj4233++ { + if yyhl4233 { + if yyj4233 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys4233Slc = r.DecodeBytes(yys4233Slc, true, true) + yys4233 := string(yys4233Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys4233 { + case "kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "metadata": + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv4236 := &x.ObjectMeta + yyv4236.CodecDecodeSelf(d) + } + case "data": + if r.TryDecodeAsNil() { + x.Data = nil + } else { + yyv4237 := &x.Data + yym4238 := z.DecBinary() + _ = yym4238 + if false { + } else { + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4237), d) + } + } + case "stringData": + if r.TryDecodeAsNil() { + x.StringData = nil + } else { + yyv4239 := &x.StringData + yym4240 := z.DecBinary() + _ = yym4240 + if false { + } else { + z.F.DecMapStringStringX(yyv4239, false, d) + } + } + case "type": + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = SecretType(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys4233) + } // end switch yys4233 + } // end for yyj4233 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj4242 int + var yyb4242 bool + var yyhl4242 bool = l >= 0 + yyj4242++ + if yyhl4242 { + yyb4242 = yyj4242 > l + } else { + yyb4242 = r.CheckBreak() + } + if yyb4242 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj4242++ + if yyhl4242 { + yyb4242 = yyj4242 > l + } else { + yyb4242 = r.CheckBreak() + } + if yyb4242 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj4242++ + if yyhl4242 { + yyb4242 = yyj4242 > l + } else { + yyb4242 = r.CheckBreak() + } + if yyb4242 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv4245 := &x.ObjectMeta + yyv4245.CodecDecodeSelf(d) + } + yyj4242++ + if yyhl4242 { + yyb4242 = yyj4242 > l + } else { + yyb4242 = r.CheckBreak() + } + if yyb4242 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Data = nil + } else { + yyv4246 := &x.Data + yym4247 := z.DecBinary() + _ = yym4247 + if false { + } else { + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4246), d) + } + } + yyj4242++ + if yyhl4242 { + yyb4242 = yyj4242 > l + } else { + yyb4242 = r.CheckBreak() + } + if yyb4242 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.StringData = nil + } else { + yyv4248 := &x.StringData + yym4249 := z.DecBinary() + _ = yym4249 + if false { + } else { + z.F.DecMapStringStringX(yyv4248, false, d) + } + } + yyj4242++ + if yyhl4242 { + yyb4242 = yyj4242 > l + } else { + yyb4242 = r.CheckBreak() + } + if yyb4242 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = SecretType(r.DecodeString()) + } + for { + yyj4242++ + if yyhl4242 { + yyb4242 = yyj4242 > l + } else { + yyb4242 = r.CheckBreak() + } + if yyb4242 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj4242-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x SecretType) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + yym4251 := z.EncBinary() + _ = yym4251 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x)) + } +} + +func (x *SecretType) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym4252 := z.DecBinary() + _ = yym4252 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + *((*string)(x)) = r.DecodeString() + } +} + +func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r @@ -53334,12 +53452,11 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { yyq4254[0] = x.Kind != "" yyq4254[1] = x.APIVersion != "" yyq4254[2] = true - yyq4254[3] = len(x.Data) != 0 var yynn4254 int if yyr4254 || yy2arr4254 { r.EncodeArrayStart(4) } else { - yynn4254 = 0 + yynn4254 = 1 for _, b := range yyq4254 { if b { yynn4254++ @@ -53401,8 +53518,14 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { if yyr4254 || yy2arr4254 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if yyq4254[2] { - yy4262 := &x.ObjectMeta - yy4262.CodecEncodeSelf(e) + yy4262 := &x.ListMeta + yym4263 := z.EncBinary() + _ = yym4263 + if false { + } else if z.HasExtensions() && z.EncExt(yy4262) { + } else { + z.EncFallback(yy4262) + } } else { r.EncodeNil() } @@ -53411,358 +53534,26 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4263 := &x.ObjectMeta - yy4263.CodecEncodeSelf(e) - } - } - if yyr4254 || yy2arr4254 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4254[3] { - if x.Data == nil { - r.EncodeNil() + yy4264 := &x.ListMeta + yym4265 := z.EncBinary() + _ = yym4265 + if false { + } else if z.HasExtensions() && z.EncExt(yy4264) { } else { - yym4265 := z.EncBinary() - _ = yym4265 - if false { - } else { - z.F.EncMapStringStringV(x.Data, false, e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq4254[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("data")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Data == nil { - r.EncodeNil() - } else { - yym4266 := z.EncBinary() - _ = yym4266 - if false { - } else { - z.F.EncMapStringStringV(x.Data, false, e) - } + z.EncFallback(yy4264) } } } if yyr4254 || yy2arr4254 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *ConfigMap) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym4267 := z.DecBinary() - _ = yym4267 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct4268 := r.ContainerType() - if yyct4268 == codecSelferValueTypeMap1234 { - yyl4268 := r.ReadMapStart() - if yyl4268 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl4268, d) - } - } else if yyct4268 == codecSelferValueTypeArray1234 { - yyl4268 := r.ReadArrayStart() - if yyl4268 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl4268, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys4269Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4269Slc - var yyhl4269 bool = l >= 0 - for yyj4269 := 0; ; yyj4269++ { - if yyhl4269 { - if yyj4269 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4269Slc = r.DecodeBytes(yys4269Slc, true, true) - yys4269 := string(yys4269Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4269 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "metadata": - if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} - } else { - yyv4272 := &x.ObjectMeta - yyv4272.CodecDecodeSelf(d) - } - case "data": - if r.TryDecodeAsNil() { - x.Data = nil - } else { - yyv4273 := &x.Data - yym4274 := z.DecBinary() - _ = yym4274 - if false { - } else { - z.F.DecMapStringStringX(yyv4273, false, d) - } - } - default: - z.DecStructFieldNotFound(-1, yys4269) - } // end switch yys4269 - } // end for yyj4269 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj4275 int - var yyb4275 bool - var yyhl4275 bool = l >= 0 - yyj4275++ - if yyhl4275 { - yyb4275 = yyj4275 > l - } else { - yyb4275 = r.CheckBreak() - } - if yyb4275 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj4275++ - if yyhl4275 { - yyb4275 = yyj4275 > l - } else { - yyb4275 = r.CheckBreak() - } - if yyb4275 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj4275++ - if yyhl4275 { - yyb4275 = yyj4275 > l - } else { - yyb4275 = r.CheckBreak() - } - if yyb4275 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} - } else { - yyv4278 := &x.ObjectMeta - yyv4278.CodecDecodeSelf(d) - } - yyj4275++ - if yyhl4275 { - yyb4275 = yyj4275 > l - } else { - yyb4275 = r.CheckBreak() - } - if yyb4275 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Data = nil - } else { - yyv4279 := &x.Data - yym4280 := z.DecBinary() - _ = yym4280 - if false { - } else { - z.F.DecMapStringStringX(yyv4279, false, d) - } - } - for { - yyj4275++ - if yyhl4275 { - yyb4275 = yyj4275 > l - } else { - yyb4275 = r.CheckBreak() - } - if yyb4275 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4275-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym4281 := z.EncBinary() - _ = yym4281 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep4282 := !z.EncBinary() - yy2arr4282 := z.EncBasicHandle().StructToArray - var yyq4282 [4]bool - _, _, _ = yysep4282, yyq4282, yy2arr4282 - const yyr4282 bool = false - yyq4282[0] = x.Kind != "" - yyq4282[1] = x.APIVersion != "" - yyq4282[2] = true - var yynn4282 int - if yyr4282 || yy2arr4282 { - r.EncodeArrayStart(4) - } else { - yynn4282 = 1 - for _, b := range yyq4282 { - if b { - yynn4282++ - } - } - r.EncodeMapStart(yynn4282) - yynn4282 = 0 - } - if yyr4282 || yy2arr4282 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4282[0] { - yym4284 := z.EncBinary() - _ = yym4284 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4282[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4285 := z.EncBinary() - _ = yym4285 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr4282 || yy2arr4282 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4282[1] { - yym4287 := z.EncBinary() - _ = yym4287 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4282[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4288 := z.EncBinary() - _ = yym4288 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr4282 || yy2arr4282 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4282[2] { - yy4290 := &x.ListMeta - yym4291 := z.EncBinary() - _ = yym4291 - if false { - } else if z.HasExtensions() && z.EncExt(yy4290) { - } else { - z.EncFallback(yy4290) - } - } else { - r.EncodeNil() - } - } else { - if yyq4282[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4292 := &x.ListMeta - yym4293 := z.EncBinary() - _ = yym4293 - if false { - } else if z.HasExtensions() && z.EncExt(yy4292) { - } else { - z.EncFallback(yy4292) - } - } - } - if yyr4282 || yy2arr4282 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4295 := z.EncBinary() - _ = yym4295 + yym4267 := z.EncBinary() + _ = yym4267 if false { } else { - h.encSliceConfigMap(([]ConfigMap)(x.Items), e) + h.encSliceSecret(([]Secret)(x.Items), e) } } } else { @@ -53772,15 +53563,15 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4296 := z.EncBinary() - _ = yym4296 + yym4268 := z.EncBinary() + _ = yym4268 if false { } else { - h.encSliceConfigMap(([]ConfigMap)(x.Items), e) + h.encSliceSecret(([]Secret)(x.Items), e) } } } - if yyr4282 || yy2arr4282 { + if yyr4254 || yy2arr4254 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53789,29 +53580,29 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { } } -func (x *ConfigMapList) CodecDecodeSelf(d *codec1978.Decoder) { +func (x *SecretList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4297 := z.DecBinary() - _ = yym4297 + yym4269 := z.DecBinary() + _ = yym4269 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4298 := r.ContainerType() - if yyct4298 == codecSelferValueTypeMap1234 { - yyl4298 := r.ReadMapStart() - if yyl4298 == 0 { + yyct4270 := r.ContainerType() + if yyct4270 == codecSelferValueTypeMap1234 { + yyl4270 := r.ReadMapStart() + if yyl4270 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4298, d) + x.codecDecodeSelfFromMap(yyl4270, d) } - } else if yyct4298 == codecSelferValueTypeArray1234 { - yyl4298 := r.ReadArrayStart() - if yyl4298 == 0 { + } else if yyct4270 == codecSelferValueTypeArray1234 { + yyl4270 := r.ReadArrayStart() + if yyl4270 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4298, d) + x.codecDecodeSelfFromArray(yyl4270, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53819,16 +53610,16 @@ func (x *ConfigMapList) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4299Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4299Slc - var yyhl4299 bool = l >= 0 - for yyj4299 := 0; ; yyj4299++ { - if yyhl4299 { - if yyj4299 >= l { + var yys4271Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4271Slc + var yyhl4271 bool = l >= 0 + for yyj4271 := 0; ; yyj4271++ { + if yyhl4271 { + if yyj4271 >= l { break } } else { @@ -53837,10 +53628,10 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4299Slc = r.DecodeBytes(yys4299Slc, true, true) - yys4299 := string(yys4299Slc) + yys4271Slc = r.DecodeBytes(yys4271Slc, true, true) + yys4271 := string(yys4271Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4299 { + switch yys4271 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -53857,48 +53648,48 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv4302 := &x.ListMeta - yym4303 := z.DecBinary() - _ = yym4303 + yyv4274 := &x.ListMeta + yym4275 := z.DecBinary() + _ = yym4275 if false { - } else if z.HasExtensions() && z.DecExt(yyv4302) { + } else if z.HasExtensions() && z.DecExt(yyv4274) { } else { - z.DecFallback(yyv4302, false) + z.DecFallback(yyv4274, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4304 := &x.Items - yym4305 := z.DecBinary() - _ = yym4305 + yyv4276 := &x.Items + yym4277 := z.DecBinary() + _ = yym4277 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4304), d) + h.decSliceSecret((*[]Secret)(yyv4276), d) } } default: - z.DecStructFieldNotFound(-1, yys4299) - } // end switch yys4299 - } // end for yyj4299 + z.DecStructFieldNotFound(-1, yys4271) + } // end switch yys4271 + } // end for yyj4271 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } -func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { +func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4306 int - var yyb4306 bool - var yyhl4306 bool = l >= 0 - yyj4306++ - if yyhl4306 { - yyb4306 = yyj4306 > l + var yyj4278 int + var yyb4278 bool + var yyhl4278 bool = l >= 0 + yyj4278++ + if yyhl4278 { + yyb4278 = yyj4278 > l } else { - yyb4306 = r.CheckBreak() + yyb4278 = r.CheckBreak() } - if yyb4306 { + if yyb4278 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53908,13 +53699,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4306++ - if yyhl4306 { - yyb4306 = yyj4306 > l + yyj4278++ + if yyhl4278 { + yyb4278 = yyj4278 > l } else { - yyb4306 = r.CheckBreak() + yyb4278 = r.CheckBreak() } - if yyb4306 { + if yyb4278 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53924,13 +53715,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4306++ - if yyhl4306 { - yyb4306 = yyj4306 > l + yyj4278++ + if yyhl4278 { + yyb4278 = yyj4278 > l } else { - yyb4306 = r.CheckBreak() + yyb4278 = r.CheckBreak() } - if yyb4306 { + if yyb4278 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53938,22 +53729,22 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv4309 := &x.ListMeta - yym4310 := z.DecBinary() - _ = yym4310 + yyv4281 := &x.ListMeta + yym4282 := z.DecBinary() + _ = yym4282 if false { - } else if z.HasExtensions() && z.DecExt(yyv4309) { + } else if z.HasExtensions() && z.DecExt(yyv4281) { } else { - z.DecFallback(yyv4309, false) + z.DecFallback(yyv4281, false) } } - yyj4306++ - if yyhl4306 { - yyb4306 = yyj4306 > l + yyj4278++ + if yyhl4278 { + yyb4278 = yyj4278 > l } else { - yyb4306 = r.CheckBreak() + yyb4278 = r.CheckBreak() } - if yyb4306 { + if yyb4278 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53961,26 +53752,697 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4311 := &x.Items + yyv4283 := &x.Items + yym4284 := z.DecBinary() + _ = yym4284 + if false { + } else { + h.decSliceSecret((*[]Secret)(yyv4283), d) + } + } + for { + yyj4278++ + if yyhl4278 { + yyb4278 = yyj4278 > l + } else { + yyb4278 = r.CheckBreak() + } + if yyb4278 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj4278-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym4285 := z.EncBinary() + _ = yym4285 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep4286 := !z.EncBinary() + yy2arr4286 := z.EncBasicHandle().StructToArray + var yyq4286 [4]bool + _, _, _ = yysep4286, yyq4286, yy2arr4286 + const yyr4286 bool = false + yyq4286[0] = x.Kind != "" + yyq4286[1] = x.APIVersion != "" + yyq4286[2] = true + yyq4286[3] = len(x.Data) != 0 + var yynn4286 int + if yyr4286 || yy2arr4286 { + r.EncodeArrayStart(4) + } else { + yynn4286 = 0 + for _, b := range yyq4286 { + if b { + yynn4286++ + } + } + r.EncodeMapStart(yynn4286) + yynn4286 = 0 + } + if yyr4286 || yy2arr4286 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4286[0] { + yym4288 := z.EncBinary() + _ = yym4288 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4286[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4289 := z.EncBinary() + _ = yym4289 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr4286 || yy2arr4286 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4286[1] { + yym4291 := z.EncBinary() + _ = yym4291 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4286[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4292 := z.EncBinary() + _ = yym4292 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr4286 || yy2arr4286 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4286[2] { + yy4294 := &x.ObjectMeta + yy4294.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq4286[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy4295 := &x.ObjectMeta + yy4295.CodecEncodeSelf(e) + } + } + if yyr4286 || yy2arr4286 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4286[3] { + if x.Data == nil { + r.EncodeNil() + } else { + yym4297 := z.EncBinary() + _ = yym4297 + if false { + } else { + z.F.EncMapStringStringV(x.Data, false, e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq4286[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("data")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Data == nil { + r.EncodeNil() + } else { + yym4298 := z.EncBinary() + _ = yym4298 + if false { + } else { + z.F.EncMapStringStringV(x.Data, false, e) + } + } + } + } + if yyr4286 || yy2arr4286 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *ConfigMap) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym4299 := z.DecBinary() + _ = yym4299 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct4300 := r.ContainerType() + if yyct4300 == codecSelferValueTypeMap1234 { + yyl4300 := r.ReadMapStart() + if yyl4300 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl4300, d) + } + } else if yyct4300 == codecSelferValueTypeArray1234 { + yyl4300 := r.ReadArrayStart() + if yyl4300 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl4300, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys4301Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4301Slc + var yyhl4301 bool = l >= 0 + for yyj4301 := 0; ; yyj4301++ { + if yyhl4301 { + if yyj4301 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys4301Slc = r.DecodeBytes(yys4301Slc, true, true) + yys4301 := string(yys4301Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys4301 { + case "kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "metadata": + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv4304 := &x.ObjectMeta + yyv4304.CodecDecodeSelf(d) + } + case "data": + if r.TryDecodeAsNil() { + x.Data = nil + } else { + yyv4305 := &x.Data + yym4306 := z.DecBinary() + _ = yym4306 + if false { + } else { + z.F.DecMapStringStringX(yyv4305, false, d) + } + } + default: + z.DecStructFieldNotFound(-1, yys4301) + } // end switch yys4301 + } // end for yyj4301 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj4307 int + var yyb4307 bool + var yyhl4307 bool = l >= 0 + yyj4307++ + if yyhl4307 { + yyb4307 = yyj4307 > l + } else { + yyb4307 = r.CheckBreak() + } + if yyb4307 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj4307++ + if yyhl4307 { + yyb4307 = yyj4307 > l + } else { + yyb4307 = r.CheckBreak() + } + if yyb4307 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj4307++ + if yyhl4307 { + yyb4307 = yyj4307 > l + } else { + yyb4307 = r.CheckBreak() + } + if yyb4307 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv4310 := &x.ObjectMeta + yyv4310.CodecDecodeSelf(d) + } + yyj4307++ + if yyhl4307 { + yyb4307 = yyj4307 > l + } else { + yyb4307 = r.CheckBreak() + } + if yyb4307 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Data = nil + } else { + yyv4311 := &x.Data yym4312 := z.DecBinary() _ = yym4312 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4311), d) + z.F.DecMapStringStringX(yyv4311, false, d) } } for { - yyj4306++ - if yyhl4306 { - yyb4306 = yyj4306 > l + yyj4307++ + if yyhl4307 { + yyb4307 = yyj4307 > l } else { - yyb4306 = r.CheckBreak() + yyb4307 = r.CheckBreak() } - if yyb4306 { + if yyb4307 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4306-1, "") + z.DecStructFieldNotFound(yyj4307-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym4313 := z.EncBinary() + _ = yym4313 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep4314 := !z.EncBinary() + yy2arr4314 := z.EncBasicHandle().StructToArray + var yyq4314 [4]bool + _, _, _ = yysep4314, yyq4314, yy2arr4314 + const yyr4314 bool = false + yyq4314[0] = x.Kind != "" + yyq4314[1] = x.APIVersion != "" + yyq4314[2] = true + var yynn4314 int + if yyr4314 || yy2arr4314 { + r.EncodeArrayStart(4) + } else { + yynn4314 = 1 + for _, b := range yyq4314 { + if b { + yynn4314++ + } + } + r.EncodeMapStart(yynn4314) + yynn4314 = 0 + } + if yyr4314 || yy2arr4314 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4314[0] { + yym4316 := z.EncBinary() + _ = yym4316 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4314[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4317 := z.EncBinary() + _ = yym4317 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr4314 || yy2arr4314 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4314[1] { + yym4319 := z.EncBinary() + _ = yym4319 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4314[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4320 := z.EncBinary() + _ = yym4320 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr4314 || yy2arr4314 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4314[2] { + yy4322 := &x.ListMeta + yym4323 := z.EncBinary() + _ = yym4323 + if false { + } else if z.HasExtensions() && z.EncExt(yy4322) { + } else { + z.EncFallback(yy4322) + } + } else { + r.EncodeNil() + } + } else { + if yyq4314[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy4324 := &x.ListMeta + yym4325 := z.EncBinary() + _ = yym4325 + if false { + } else if z.HasExtensions() && z.EncExt(yy4324) { + } else { + z.EncFallback(yy4324) + } + } + } + if yyr4314 || yy2arr4314 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if x.Items == nil { + r.EncodeNil() + } else { + yym4327 := z.EncBinary() + _ = yym4327 + if false { + } else { + h.encSliceConfigMap(([]ConfigMap)(x.Items), e) + } + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("items")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Items == nil { + r.EncodeNil() + } else { + yym4328 := z.EncBinary() + _ = yym4328 + if false { + } else { + h.encSliceConfigMap(([]ConfigMap)(x.Items), e) + } + } + } + if yyr4314 || yy2arr4314 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *ConfigMapList) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym4329 := z.DecBinary() + _ = yym4329 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct4330 := r.ContainerType() + if yyct4330 == codecSelferValueTypeMap1234 { + yyl4330 := r.ReadMapStart() + if yyl4330 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl4330, d) + } + } else if yyct4330 == codecSelferValueTypeArray1234 { + yyl4330 := r.ReadArrayStart() + if yyl4330 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl4330, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys4331Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4331Slc + var yyhl4331 bool = l >= 0 + for yyj4331 := 0; ; yyj4331++ { + if yyhl4331 { + if yyj4331 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys4331Slc = r.DecodeBytes(yys4331Slc, true, true) + yys4331 := string(yys4331Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys4331 { + case "kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "metadata": + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_v1.ListMeta{} + } else { + yyv4334 := &x.ListMeta + yym4335 := z.DecBinary() + _ = yym4335 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4334) { + } else { + z.DecFallback(yyv4334, false) + } + } + case "items": + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv4336 := &x.Items + yym4337 := z.DecBinary() + _ = yym4337 + if false { + } else { + h.decSliceConfigMap((*[]ConfigMap)(yyv4336), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys4331) + } // end switch yys4331 + } // end for yyj4331 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj4338 int + var yyb4338 bool + var yyhl4338 bool = l >= 0 + yyj4338++ + if yyhl4338 { + yyb4338 = yyj4338 > l + } else { + yyb4338 = r.CheckBreak() + } + if yyb4338 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj4338++ + if yyhl4338 { + yyb4338 = yyj4338 > l + } else { + yyb4338 = r.CheckBreak() + } + if yyb4338 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj4338++ + if yyhl4338 { + yyb4338 = yyj4338 > l + } else { + yyb4338 = r.CheckBreak() + } + if yyb4338 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_v1.ListMeta{} + } else { + yyv4341 := &x.ListMeta + yym4342 := z.DecBinary() + _ = yym4342 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4341) { + } else { + z.DecFallback(yyv4341, false) + } + } + yyj4338++ + if yyhl4338 { + yyb4338 = yyj4338 > l + } else { + yyb4338 = r.CheckBreak() + } + if yyb4338 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv4343 := &x.Items + yym4344 := z.DecBinary() + _ = yym4344 + if false { + } else { + h.decSliceConfigMap((*[]ConfigMap)(yyv4343), d) + } + } + for { + yyj4338++ + if yyhl4338 { + yyb4338 = yyj4338 > l + } else { + yyb4338 = r.CheckBreak() + } + if yyb4338 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj4338-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53989,8 +54451,8 @@ func (x ComponentConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4313 := z.EncBinary() - _ = yym4313 + yym4345 := z.EncBinary() + _ = yym4345 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -54002,8 +54464,8 @@ func (x *ComponentConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4314 := z.DecBinary() - _ = yym4314 + yym4346 := z.DecBinary() + _ = yym4346 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -54018,32 +54480,32 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4315 := z.EncBinary() - _ = yym4315 + yym4347 := z.EncBinary() + _ = yym4347 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4316 := !z.EncBinary() - yy2arr4316 := z.EncBasicHandle().StructToArray - var yyq4316 [4]bool - _, _, _ = yysep4316, yyq4316, yy2arr4316 - const yyr4316 bool = false - yyq4316[2] = x.Message != "" - yyq4316[3] = x.Error != "" - var yynn4316 int - if yyr4316 || yy2arr4316 { + yysep4348 := !z.EncBinary() + yy2arr4348 := z.EncBasicHandle().StructToArray + var yyq4348 [4]bool + _, _, _ = yysep4348, yyq4348, yy2arr4348 + const yyr4348 bool = false + yyq4348[2] = x.Message != "" + yyq4348[3] = x.Error != "" + var yynn4348 int + if yyr4348 || yy2arr4348 { r.EncodeArrayStart(4) } else { - yynn4316 = 2 - for _, b := range yyq4316 { + yynn4348 = 2 + for _, b := range yyq4348 { if b { - yynn4316++ + yynn4348++ } } - r.EncodeMapStart(yynn4316) - yynn4316 = 0 + r.EncodeMapStart(yynn4348) + yynn4348 = 0 } - if yyr4316 || yy2arr4316 { + if yyr4348 || yy2arr4348 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -54052,7 +54514,7 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr4316 || yy2arr4316 { + if yyr4348 || yy2arr4348 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -54061,11 +54523,11 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr4316 || yy2arr4316 { + if yyr4348 || yy2arr4348 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4316[2] { - yym4320 := z.EncBinary() - _ = yym4320 + if yyq4348[2] { + yym4352 := z.EncBinary() + _ = yym4352 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -54074,23 +54536,23 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4316[2] { + if yyq4348[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4321 := z.EncBinary() - _ = yym4321 + yym4353 := z.EncBinary() + _ = yym4353 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr4316 || yy2arr4316 { + if yyr4348 || yy2arr4348 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4316[3] { - yym4323 := z.EncBinary() - _ = yym4323 + if yyq4348[3] { + yym4355 := z.EncBinary() + _ = yym4355 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) @@ -54099,19 +54561,19 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4316[3] { + if yyq4348[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("error")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4324 := z.EncBinary() - _ = yym4324 + yym4356 := z.EncBinary() + _ = yym4356 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) } } } - if yyr4316 || yy2arr4316 { + if yyr4348 || yy2arr4348 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54124,25 +54586,25 @@ func (x *ComponentCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4325 := z.DecBinary() - _ = yym4325 + yym4357 := z.DecBinary() + _ = yym4357 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4326 := r.ContainerType() - if yyct4326 == codecSelferValueTypeMap1234 { - yyl4326 := r.ReadMapStart() - if yyl4326 == 0 { + yyct4358 := r.ContainerType() + if yyct4358 == codecSelferValueTypeMap1234 { + yyl4358 := r.ReadMapStart() + if yyl4358 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4326, d) + x.codecDecodeSelfFromMap(yyl4358, d) } - } else if yyct4326 == codecSelferValueTypeArray1234 { - yyl4326 := r.ReadArrayStart() - if yyl4326 == 0 { + } else if yyct4358 == codecSelferValueTypeArray1234 { + yyl4358 := r.ReadArrayStart() + if yyl4358 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4326, d) + x.codecDecodeSelfFromArray(yyl4358, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54154,12 +54616,12 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4327Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4327Slc - var yyhl4327 bool = l >= 0 - for yyj4327 := 0; ; yyj4327++ { - if yyhl4327 { - if yyj4327 >= l { + var yys4359Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4359Slc + var yyhl4359 bool = l >= 0 + for yyj4359 := 0; ; yyj4359++ { + if yyhl4359 { + if yyj4359 >= l { break } } else { @@ -54168,10 +54630,10 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4327Slc = r.DecodeBytes(yys4327Slc, true, true) - yys4327 := string(yys4327Slc) + yys4359Slc = r.DecodeBytes(yys4359Slc, true, true) + yys4359 := string(yys4359Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4327 { + switch yys4359 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -54197,9 +54659,9 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.Error = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4327) - } // end switch yys4327 - } // end for yyj4327 + z.DecStructFieldNotFound(-1, yys4359) + } // end switch yys4359 + } // end for yyj4359 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54207,16 +54669,16 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4332 int - var yyb4332 bool - var yyhl4332 bool = l >= 0 - yyj4332++ - if yyhl4332 { - yyb4332 = yyj4332 > l + var yyj4364 int + var yyb4364 bool + var yyhl4364 bool = l >= 0 + yyj4364++ + if yyhl4364 { + yyb4364 = yyj4364 > l } else { - yyb4332 = r.CheckBreak() + yyb4364 = r.CheckBreak() } - if yyb4332 { + if yyb4364 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54226,13 +54688,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Type = ComponentConditionType(r.DecodeString()) } - yyj4332++ - if yyhl4332 { - yyb4332 = yyj4332 > l + yyj4364++ + if yyhl4364 { + yyb4364 = yyj4364 > l } else { - yyb4332 = r.CheckBreak() + yyb4364 = r.CheckBreak() } - if yyb4332 { + if yyb4364 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54242,13 +54704,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj4332++ - if yyhl4332 { - yyb4332 = yyj4332 > l + yyj4364++ + if yyhl4364 { + yyb4364 = yyj4364 > l } else { - yyb4332 = r.CheckBreak() + yyb4364 = r.CheckBreak() } - if yyb4332 { + if yyb4364 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54258,13 +54720,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Message = string(r.DecodeString()) } - yyj4332++ - if yyhl4332 { - yyb4332 = yyj4332 > l + yyj4364++ + if yyhl4364 { + yyb4364 = yyj4364 > l } else { - yyb4332 = r.CheckBreak() + yyb4364 = r.CheckBreak() } - if yyb4332 { + if yyb4364 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54275,17 +54737,17 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.Error = string(r.DecodeString()) } for { - yyj4332++ - if yyhl4332 { - yyb4332 = yyj4332 > l + yyj4364++ + if yyhl4364 { + yyb4364 = yyj4364 > l } else { - yyb4332 = r.CheckBreak() + yyb4364 = r.CheckBreak() } - if yyb4332 { + if yyb4364 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4332-1, "") + z.DecStructFieldNotFound(yyj4364-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54297,38 +54759,38 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4337 := z.EncBinary() - _ = yym4337 + yym4369 := z.EncBinary() + _ = yym4369 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4338 := !z.EncBinary() - yy2arr4338 := z.EncBasicHandle().StructToArray - var yyq4338 [4]bool - _, _, _ = yysep4338, yyq4338, yy2arr4338 - const yyr4338 bool = false - yyq4338[0] = x.Kind != "" - yyq4338[1] = x.APIVersion != "" - yyq4338[2] = true - yyq4338[3] = len(x.Conditions) != 0 - var yynn4338 int - if yyr4338 || yy2arr4338 { + yysep4370 := !z.EncBinary() + yy2arr4370 := z.EncBasicHandle().StructToArray + var yyq4370 [4]bool + _, _, _ = yysep4370, yyq4370, yy2arr4370 + const yyr4370 bool = false + yyq4370[0] = x.Kind != "" + yyq4370[1] = x.APIVersion != "" + yyq4370[2] = true + yyq4370[3] = len(x.Conditions) != 0 + var yynn4370 int + if yyr4370 || yy2arr4370 { r.EncodeArrayStart(4) } else { - yynn4338 = 0 - for _, b := range yyq4338 { + yynn4370 = 0 + for _, b := range yyq4370 { if b { - yynn4338++ + yynn4370++ } } - r.EncodeMapStart(yynn4338) - yynn4338 = 0 + r.EncodeMapStart(yynn4370) + yynn4370 = 0 } - if yyr4338 || yy2arr4338 { + if yyr4370 || yy2arr4370 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4338[0] { - yym4340 := z.EncBinary() - _ = yym4340 + if yyq4370[0] { + yym4372 := z.EncBinary() + _ = yym4372 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -54337,23 +54799,23 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4338[0] { + if yyq4370[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4341 := z.EncBinary() - _ = yym4341 + yym4373 := z.EncBinary() + _ = yym4373 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4338 || yy2arr4338 { + if yyr4370 || yy2arr4370 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4338[1] { - yym4343 := z.EncBinary() - _ = yym4343 + if yyq4370[1] { + yym4375 := z.EncBinary() + _ = yym4375 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -54362,43 +54824,43 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4338[1] { + if yyq4370[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4344 := z.EncBinary() - _ = yym4344 + yym4376 := z.EncBinary() + _ = yym4376 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4338 || yy2arr4338 { + if yyr4370 || yy2arr4370 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4338[2] { - yy4346 := &x.ObjectMeta - yy4346.CodecEncodeSelf(e) + if yyq4370[2] { + yy4378 := &x.ObjectMeta + yy4378.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4338[2] { + if yyq4370[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4347 := &x.ObjectMeta - yy4347.CodecEncodeSelf(e) + yy4379 := &x.ObjectMeta + yy4379.CodecEncodeSelf(e) } } - if yyr4338 || yy2arr4338 { + if yyr4370 || yy2arr4370 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4338[3] { + if yyq4370[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym4349 := z.EncBinary() - _ = yym4349 + yym4381 := z.EncBinary() + _ = yym4381 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -54408,15 +54870,15 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4338[3] { + if yyq4370[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym4350 := z.EncBinary() - _ = yym4350 + yym4382 := z.EncBinary() + _ = yym4382 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -54424,7 +54886,7 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4338 || yy2arr4338 { + if yyr4370 || yy2arr4370 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54437,25 +54899,25 @@ func (x *ComponentStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4351 := z.DecBinary() - _ = yym4351 + yym4383 := z.DecBinary() + _ = yym4383 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4352 := r.ContainerType() - if yyct4352 == codecSelferValueTypeMap1234 { - yyl4352 := r.ReadMapStart() - if yyl4352 == 0 { + yyct4384 := r.ContainerType() + if yyct4384 == codecSelferValueTypeMap1234 { + yyl4384 := r.ReadMapStart() + if yyl4384 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4352, d) + x.codecDecodeSelfFromMap(yyl4384, d) } - } else if yyct4352 == codecSelferValueTypeArray1234 { - yyl4352 := r.ReadArrayStart() - if yyl4352 == 0 { + } else if yyct4384 == codecSelferValueTypeArray1234 { + yyl4384 := r.ReadArrayStart() + if yyl4384 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4352, d) + x.codecDecodeSelfFromArray(yyl4384, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54467,12 +54929,12 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4353Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4353Slc - var yyhl4353 bool = l >= 0 - for yyj4353 := 0; ; yyj4353++ { - if yyhl4353 { - if yyj4353 >= l { + var yys4385Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4385Slc + var yyhl4385 bool = l >= 0 + for yyj4385 := 0; ; yyj4385++ { + if yyhl4385 { + if yyj4385 >= l { break } } else { @@ -54481,10 +54943,10 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4353Slc = r.DecodeBytes(yys4353Slc, true, true) - yys4353 := string(yys4353Slc) + yys4385Slc = r.DecodeBytes(yys4385Slc, true, true) + yys4385 := string(yys4385Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4353 { + switch yys4385 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -54501,25 +54963,25 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4356 := &x.ObjectMeta - yyv4356.CodecDecodeSelf(d) + yyv4388 := &x.ObjectMeta + yyv4388.CodecDecodeSelf(d) } case "conditions": if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4357 := &x.Conditions - yym4358 := z.DecBinary() - _ = yym4358 + yyv4389 := &x.Conditions + yym4390 := z.DecBinary() + _ = yym4390 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4357), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4389), d) } } default: - z.DecStructFieldNotFound(-1, yys4353) - } // end switch yys4353 - } // end for yyj4353 + z.DecStructFieldNotFound(-1, yys4385) + } // end switch yys4385 + } // end for yyj4385 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54527,16 +54989,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4359 int - var yyb4359 bool - var yyhl4359 bool = l >= 0 - yyj4359++ - if yyhl4359 { - yyb4359 = yyj4359 > l + var yyj4391 int + var yyb4391 bool + var yyhl4391 bool = l >= 0 + yyj4391++ + if yyhl4391 { + yyb4391 = yyj4391 > l } else { - yyb4359 = r.CheckBreak() + yyb4391 = r.CheckBreak() } - if yyb4359 { + if yyb4391 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54546,13 +55008,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4359++ - if yyhl4359 { - yyb4359 = yyj4359 > l + yyj4391++ + if yyhl4391 { + yyb4391 = yyj4391 > l } else { - yyb4359 = r.CheckBreak() + yyb4391 = r.CheckBreak() } - if yyb4359 { + if yyb4391 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54562,13 +55024,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4359++ - if yyhl4359 { - yyb4359 = yyj4359 > l + yyj4391++ + if yyhl4391 { + yyb4391 = yyj4391 > l } else { - yyb4359 = r.CheckBreak() + yyb4391 = r.CheckBreak() } - if yyb4359 { + if yyb4391 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54576,16 +55038,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4362 := &x.ObjectMeta - yyv4362.CodecDecodeSelf(d) + yyv4394 := &x.ObjectMeta + yyv4394.CodecDecodeSelf(d) } - yyj4359++ - if yyhl4359 { - yyb4359 = yyj4359 > l + yyj4391++ + if yyhl4391 { + yyb4391 = yyj4391 > l } else { - yyb4359 = r.CheckBreak() + yyb4391 = r.CheckBreak() } - if yyb4359 { + if yyb4391 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54593,26 +55055,26 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4363 := &x.Conditions - yym4364 := z.DecBinary() - _ = yym4364 + yyv4395 := &x.Conditions + yym4396 := z.DecBinary() + _ = yym4396 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4363), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4395), d) } } for { - yyj4359++ - if yyhl4359 { - yyb4359 = yyj4359 > l + yyj4391++ + if yyhl4391 { + yyb4391 = yyj4391 > l } else { - yyb4359 = r.CheckBreak() + yyb4391 = r.CheckBreak() } - if yyb4359 { + if yyb4391 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4359-1, "") + z.DecStructFieldNotFound(yyj4391-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54624,37 +55086,37 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4365 := z.EncBinary() - _ = yym4365 + yym4397 := z.EncBinary() + _ = yym4397 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4366 := !z.EncBinary() - yy2arr4366 := z.EncBasicHandle().StructToArray - var yyq4366 [4]bool - _, _, _ = yysep4366, yyq4366, yy2arr4366 - const yyr4366 bool = false - yyq4366[0] = x.Kind != "" - yyq4366[1] = x.APIVersion != "" - yyq4366[2] = true - var yynn4366 int - if yyr4366 || yy2arr4366 { + yysep4398 := !z.EncBinary() + yy2arr4398 := z.EncBasicHandle().StructToArray + var yyq4398 [4]bool + _, _, _ = yysep4398, yyq4398, yy2arr4398 + const yyr4398 bool = false + yyq4398[0] = x.Kind != "" + yyq4398[1] = x.APIVersion != "" + yyq4398[2] = true + var yynn4398 int + if yyr4398 || yy2arr4398 { r.EncodeArrayStart(4) } else { - yynn4366 = 1 - for _, b := range yyq4366 { + yynn4398 = 1 + for _, b := range yyq4398 { if b { - yynn4366++ + yynn4398++ } } - r.EncodeMapStart(yynn4366) - yynn4366 = 0 + r.EncodeMapStart(yynn4398) + yynn4398 = 0 } - if yyr4366 || yy2arr4366 { + if yyr4398 || yy2arr4398 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4366[0] { - yym4368 := z.EncBinary() - _ = yym4368 + if yyq4398[0] { + yym4400 := z.EncBinary() + _ = yym4400 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -54663,23 +55125,23 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4366[0] { + if yyq4398[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4369 := z.EncBinary() - _ = yym4369 + yym4401 := z.EncBinary() + _ = yym4401 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4366 || yy2arr4366 { + if yyr4398 || yy2arr4398 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4366[1] { - yym4371 := z.EncBinary() - _ = yym4371 + if yyq4398[1] { + yym4403 := z.EncBinary() + _ = yym4403 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -54688,54 +55150,54 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4366[1] { + if yyq4398[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4372 := z.EncBinary() - _ = yym4372 + yym4404 := z.EncBinary() + _ = yym4404 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4366 || yy2arr4366 { + if yyr4398 || yy2arr4398 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4366[2] { - yy4374 := &x.ListMeta - yym4375 := z.EncBinary() - _ = yym4375 + if yyq4398[2] { + yy4406 := &x.ListMeta + yym4407 := z.EncBinary() + _ = yym4407 if false { - } else if z.HasExtensions() && z.EncExt(yy4374) { + } else if z.HasExtensions() && z.EncExt(yy4406) { } else { - z.EncFallback(yy4374) + z.EncFallback(yy4406) } } else { r.EncodeNil() } } else { - if yyq4366[2] { + if yyq4398[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4376 := &x.ListMeta - yym4377 := z.EncBinary() - _ = yym4377 + yy4408 := &x.ListMeta + yym4409 := z.EncBinary() + _ = yym4409 if false { - } else if z.HasExtensions() && z.EncExt(yy4376) { + } else if z.HasExtensions() && z.EncExt(yy4408) { } else { - z.EncFallback(yy4376) + z.EncFallback(yy4408) } } } - if yyr4366 || yy2arr4366 { + if yyr4398 || yy2arr4398 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4379 := z.EncBinary() - _ = yym4379 + yym4411 := z.EncBinary() + _ = yym4411 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) @@ -54748,15 +55210,15 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4380 := z.EncBinary() - _ = yym4380 + yym4412 := z.EncBinary() + _ = yym4412 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) } } } - if yyr4366 || yy2arr4366 { + if yyr4398 || yy2arr4398 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54769,25 +55231,25 @@ func (x *ComponentStatusList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4381 := z.DecBinary() - _ = yym4381 + yym4413 := z.DecBinary() + _ = yym4413 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4382 := r.ContainerType() - if yyct4382 == codecSelferValueTypeMap1234 { - yyl4382 := r.ReadMapStart() - if yyl4382 == 0 { + yyct4414 := r.ContainerType() + if yyct4414 == codecSelferValueTypeMap1234 { + yyl4414 := r.ReadMapStart() + if yyl4414 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4382, d) + x.codecDecodeSelfFromMap(yyl4414, d) } - } else if yyct4382 == codecSelferValueTypeArray1234 { - yyl4382 := r.ReadArrayStart() - if yyl4382 == 0 { + } else if yyct4414 == codecSelferValueTypeArray1234 { + yyl4414 := r.ReadArrayStart() + if yyl4414 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4382, d) + x.codecDecodeSelfFromArray(yyl4414, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54799,12 +55261,12 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4383Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4383Slc - var yyhl4383 bool = l >= 0 - for yyj4383 := 0; ; yyj4383++ { - if yyhl4383 { - if yyj4383 >= l { + var yys4415Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4415Slc + var yyhl4415 bool = l >= 0 + for yyj4415 := 0; ; yyj4415++ { + if yyhl4415 { + if yyj4415 >= l { break } } else { @@ -54813,10 +55275,10 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4383Slc = r.DecodeBytes(yys4383Slc, true, true) - yys4383 := string(yys4383Slc) + yys4415Slc = r.DecodeBytes(yys4415Slc, true, true) + yys4415 := string(yys4415Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4383 { + switch yys4415 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -54833,31 +55295,31 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv4386 := &x.ListMeta - yym4387 := z.DecBinary() - _ = yym4387 + yyv4418 := &x.ListMeta + yym4419 := z.DecBinary() + _ = yym4419 if false { - } else if z.HasExtensions() && z.DecExt(yyv4386) { + } else if z.HasExtensions() && z.DecExt(yyv4418) { } else { - z.DecFallback(yyv4386, false) + z.DecFallback(yyv4418, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4388 := &x.Items - yym4389 := z.DecBinary() - _ = yym4389 + yyv4420 := &x.Items + yym4421 := z.DecBinary() + _ = yym4421 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4388), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4420), d) } } default: - z.DecStructFieldNotFound(-1, yys4383) - } // end switch yys4383 - } // end for yyj4383 + z.DecStructFieldNotFound(-1, yys4415) + } // end switch yys4415 + } // end for yyj4415 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54865,16 +55327,16 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4390 int - var yyb4390 bool - var yyhl4390 bool = l >= 0 - yyj4390++ - if yyhl4390 { - yyb4390 = yyj4390 > l + var yyj4422 int + var yyb4422 bool + var yyhl4422 bool = l >= 0 + yyj4422++ + if yyhl4422 { + yyb4422 = yyj4422 > l } else { - yyb4390 = r.CheckBreak() + yyb4422 = r.CheckBreak() } - if yyb4390 { + if yyb4422 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54884,13 +55346,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj4390++ - if yyhl4390 { - yyb4390 = yyj4390 > l + yyj4422++ + if yyhl4422 { + yyb4422 = yyj4422 > l } else { - yyb4390 = r.CheckBreak() + yyb4422 = r.CheckBreak() } - if yyb4390 { + if yyb4422 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54900,13 +55362,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj4390++ - if yyhl4390 { - yyb4390 = yyj4390 > l + yyj4422++ + if yyhl4422 { + yyb4422 = yyj4422 > l } else { - yyb4390 = r.CheckBreak() + yyb4422 = r.CheckBreak() } - if yyb4390 { + if yyb4422 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54914,22 +55376,22 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv4393 := &x.ListMeta - yym4394 := z.DecBinary() - _ = yym4394 + yyv4425 := &x.ListMeta + yym4426 := z.DecBinary() + _ = yym4426 if false { - } else if z.HasExtensions() && z.DecExt(yyv4393) { + } else if z.HasExtensions() && z.DecExt(yyv4425) { } else { - z.DecFallback(yyv4393, false) + z.DecFallback(yyv4425, false) } } - yyj4390++ - if yyhl4390 { - yyb4390 = yyj4390 > l + yyj4422++ + if yyhl4422 { + yyb4422 = yyj4422 > l } else { - yyb4390 = r.CheckBreak() + yyb4422 = r.CheckBreak() } - if yyb4390 { + if yyb4422 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54937,26 +55399,26 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4395 := &x.Items - yym4396 := z.DecBinary() - _ = yym4396 + yyv4427 := &x.Items + yym4428 := z.DecBinary() + _ = yym4428 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4395), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4427), d) } } for { - yyj4390++ - if yyhl4390 { - yyb4390 = yyj4390 > l + yyj4422++ + if yyhl4422 { + yyb4422 = yyj4422 > l } else { - yyb4390 = r.CheckBreak() + yyb4422 = r.CheckBreak() } - if yyb4390 { + if yyb4422 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4390-1, "") + z.DecStructFieldNotFound(yyj4422-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54968,39 +55430,39 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4397 := z.EncBinary() - _ = yym4397 + yym4429 := z.EncBinary() + _ = yym4429 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4398 := !z.EncBinary() - yy2arr4398 := z.EncBasicHandle().StructToArray - var yyq4398 [2]bool - _, _, _ = yysep4398, yyq4398, yy2arr4398 - const yyr4398 bool = false - yyq4398[0] = len(x.Items) != 0 - yyq4398[1] = x.DefaultMode != nil - var yynn4398 int - if yyr4398 || yy2arr4398 { + yysep4430 := !z.EncBinary() + yy2arr4430 := z.EncBasicHandle().StructToArray + var yyq4430 [2]bool + _, _, _ = yysep4430, yyq4430, yy2arr4430 + const yyr4430 bool = false + yyq4430[0] = len(x.Items) != 0 + yyq4430[1] = x.DefaultMode != nil + var yynn4430 int + if yyr4430 || yy2arr4430 { r.EncodeArrayStart(2) } else { - yynn4398 = 0 - for _, b := range yyq4398 { + yynn4430 = 0 + for _, b := range yyq4430 { if b { - yynn4398++ + yynn4430++ } } - r.EncodeMapStart(yynn4398) - yynn4398 = 0 + r.EncodeMapStart(yynn4430) + yynn4430 = 0 } - if yyr4398 || yy2arr4398 { + if yyr4430 || yy2arr4430 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4398[0] { + if yyq4430[0] { if x.Items == nil { r.EncodeNil() } else { - yym4400 := z.EncBinary() - _ = yym4400 + yym4432 := z.EncBinary() + _ = yym4432 if false { } else { h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) @@ -55010,15 +55472,15 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4398[0] { + if yyq4430[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("items")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Items == nil { r.EncodeNil() } else { - yym4401 := z.EncBinary() - _ = yym4401 + yym4433 := z.EncBinary() + _ = yym4433 if false { } else { h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) @@ -55026,42 +55488,42 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4398 || yy2arr4398 { + if yyr4430 || yy2arr4430 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4398[1] { + if yyq4430[1] { if x.DefaultMode == nil { r.EncodeNil() } else { - yy4403 := *x.DefaultMode - yym4404 := z.EncBinary() - _ = yym4404 + yy4435 := *x.DefaultMode + yym4436 := z.EncBinary() + _ = yym4436 if false { } else { - r.EncodeInt(int64(yy4403)) + r.EncodeInt(int64(yy4435)) } } } else { r.EncodeNil() } } else { - if yyq4398[1] { + if yyq4430[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultMode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.DefaultMode == nil { r.EncodeNil() } else { - yy4405 := *x.DefaultMode - yym4406 := z.EncBinary() - _ = yym4406 + yy4437 := *x.DefaultMode + yym4438 := z.EncBinary() + _ = yym4438 if false { } else { - r.EncodeInt(int64(yy4405)) + r.EncodeInt(int64(yy4437)) } } } } - if yyr4398 || yy2arr4398 { + if yyr4430 || yy2arr4430 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -55074,25 +55536,25 @@ func (x *DownwardAPIVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4407 := z.DecBinary() - _ = yym4407 + yym4439 := z.DecBinary() + _ = yym4439 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4408 := r.ContainerType() - if yyct4408 == codecSelferValueTypeMap1234 { - yyl4408 := r.ReadMapStart() - if yyl4408 == 0 { + yyct4440 := r.ContainerType() + if yyct4440 == codecSelferValueTypeMap1234 { + yyl4440 := r.ReadMapStart() + if yyl4440 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4408, d) + x.codecDecodeSelfFromMap(yyl4440, d) } - } else if yyct4408 == codecSelferValueTypeArray1234 { - yyl4408 := r.ReadArrayStart() - if yyl4408 == 0 { + } else if yyct4440 == codecSelferValueTypeArray1234 { + yyl4440 := r.ReadArrayStart() + if yyl4440 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4408, d) + x.codecDecodeSelfFromArray(yyl4440, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -55104,12 +55566,12 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4409Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4409Slc - var yyhl4409 bool = l >= 0 - for yyj4409 := 0; ; yyj4409++ { - if yyhl4409 { - if yyj4409 >= l { + var yys4441Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4441Slc + var yyhl4441 bool = l >= 0 + for yyj4441 := 0; ; yyj4441++ { + if yyhl4441 { + if yyj4441 >= l { break } } else { @@ -55118,20 +55580,20 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4409Slc = r.DecodeBytes(yys4409Slc, true, true) - yys4409 := string(yys4409Slc) + yys4441Slc = r.DecodeBytes(yys4441Slc, true, true) + yys4441 := string(yys4441Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4409 { + switch yys4441 { case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4410 := &x.Items - yym4411 := z.DecBinary() - _ = yym4411 + yyv4442 := &x.Items + yym4443 := z.DecBinary() + _ = yym4443 if false { } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4410), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4442), d) } } case "defaultMode": @@ -55143,17 +55605,17 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym4413 := z.DecBinary() - _ = yym4413 + yym4445 := z.DecBinary() + _ = yym4445 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys4409) - } // end switch yys4409 - } // end for yyj4409 + z.DecStructFieldNotFound(-1, yys4441) + } // end switch yys4441 + } // end for yyj4441 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -55161,16 +55623,16 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4414 int - var yyb4414 bool - var yyhl4414 bool = l >= 0 - yyj4414++ - if yyhl4414 { - yyb4414 = yyj4414 > l + var yyj4446 int + var yyb4446 bool + var yyhl4446 bool = l >= 0 + yyj4446++ + if yyhl4446 { + yyb4446 = yyj4446 > l } else { - yyb4414 = r.CheckBreak() + yyb4446 = r.CheckBreak() } - if yyb4414 { + if yyb4446 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55178,21 +55640,21 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4415 := &x.Items - yym4416 := z.DecBinary() - _ = yym4416 + yyv4447 := &x.Items + yym4448 := z.DecBinary() + _ = yym4448 if false { } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4415), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4447), d) } } - yyj4414++ - if yyhl4414 { - yyb4414 = yyj4414 > l + yyj4446++ + if yyhl4446 { + yyb4446 = yyj4446 > l } else { - yyb4414 = r.CheckBreak() + yyb4446 = r.CheckBreak() } - if yyb4414 { + if yyb4446 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55205,25 +55667,25 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym4418 := z.DecBinary() - _ = yym4418 + yym4450 := z.DecBinary() + _ = yym4450 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } for { - yyj4414++ - if yyhl4414 { - yyb4414 = yyj4414 > l + yyj4446++ + if yyhl4446 { + yyb4446 = yyj4446 > l } else { - yyb4414 = r.CheckBreak() + yyb4446 = r.CheckBreak() } - if yyb4414 { + if yyb4446 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4414-1, "") + z.DecStructFieldNotFound(yyj4446-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55235,36 +55697,36 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4419 := z.EncBinary() - _ = yym4419 + yym4451 := z.EncBinary() + _ = yym4451 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4420 := !z.EncBinary() - yy2arr4420 := z.EncBasicHandle().StructToArray - var yyq4420 [4]bool - _, _, _ = yysep4420, yyq4420, yy2arr4420 - const yyr4420 bool = false - yyq4420[1] = x.FieldRef != nil - yyq4420[2] = x.ResourceFieldRef != nil - yyq4420[3] = x.Mode != nil - var yynn4420 int - if yyr4420 || yy2arr4420 { + yysep4452 := !z.EncBinary() + yy2arr4452 := z.EncBasicHandle().StructToArray + var yyq4452 [4]bool + _, _, _ = yysep4452, yyq4452, yy2arr4452 + const yyr4452 bool = false + yyq4452[1] = x.FieldRef != nil + yyq4452[2] = x.ResourceFieldRef != nil + yyq4452[3] = x.Mode != nil + var yynn4452 int + if yyr4452 || yy2arr4452 { r.EncodeArrayStart(4) } else { - yynn4420 = 1 - for _, b := range yyq4420 { + yynn4452 = 1 + for _, b := range yyq4452 { if b { - yynn4420++ + yynn4452++ } } - r.EncodeMapStart(yynn4420) - yynn4420 = 0 + r.EncodeMapStart(yynn4452) + yynn4452 = 0 } - if yyr4420 || yy2arr4420 { + if yyr4452 || yy2arr4452 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym4422 := z.EncBinary() - _ = yym4422 + yym4454 := z.EncBinary() + _ = yym4454 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -55273,16 +55735,16 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4423 := z.EncBinary() - _ = yym4423 + yym4455 := z.EncBinary() + _ = yym4455 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr4420 || yy2arr4420 { + if yyr4452 || yy2arr4452 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4420[1] { + if yyq4452[1] { if x.FieldRef == nil { r.EncodeNil() } else { @@ -55292,7 +55754,7 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4420[1] { + if yyq4452[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -55303,9 +55765,9 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4420 || yy2arr4420 { + if yyr4452 || yy2arr4452 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4420[2] { + if yyq4452[2] { if x.ResourceFieldRef == nil { r.EncodeNil() } else { @@ -55315,7 +55777,7 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4420[2] { + if yyq4452[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceFieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -55326,42 +55788,42 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4420 || yy2arr4420 { + if yyr4452 || yy2arr4452 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4420[3] { + if yyq4452[3] { if x.Mode == nil { r.EncodeNil() } else { - yy4427 := *x.Mode - yym4428 := z.EncBinary() - _ = yym4428 + yy4459 := *x.Mode + yym4460 := z.EncBinary() + _ = yym4460 if false { } else { - r.EncodeInt(int64(yy4427)) + r.EncodeInt(int64(yy4459)) } } } else { r.EncodeNil() } } else { - if yyq4420[3] { + if yyq4452[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("mode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Mode == nil { r.EncodeNil() } else { - yy4429 := *x.Mode - yym4430 := z.EncBinary() - _ = yym4430 + yy4461 := *x.Mode + yym4462 := z.EncBinary() + _ = yym4462 if false { } else { - r.EncodeInt(int64(yy4429)) + r.EncodeInt(int64(yy4461)) } } } } - if yyr4420 || yy2arr4420 { + if yyr4452 || yy2arr4452 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -55374,25 +55836,25 @@ func (x *DownwardAPIVolumeFile) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4431 := z.DecBinary() - _ = yym4431 + yym4463 := z.DecBinary() + _ = yym4463 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4432 := r.ContainerType() - if yyct4432 == codecSelferValueTypeMap1234 { - yyl4432 := r.ReadMapStart() - if yyl4432 == 0 { + yyct4464 := r.ContainerType() + if yyct4464 == codecSelferValueTypeMap1234 { + yyl4464 := r.ReadMapStart() + if yyl4464 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4432, d) + x.codecDecodeSelfFromMap(yyl4464, d) } - } else if yyct4432 == codecSelferValueTypeArray1234 { - yyl4432 := r.ReadArrayStart() - if yyl4432 == 0 { + } else if yyct4464 == codecSelferValueTypeArray1234 { + yyl4464 := r.ReadArrayStart() + if yyl4464 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4432, d) + x.codecDecodeSelfFromArray(yyl4464, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -55404,12 +55866,12 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4433Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4433Slc - var yyhl4433 bool = l >= 0 - for yyj4433 := 0; ; yyj4433++ { - if yyhl4433 { - if yyj4433 >= l { + var yys4465Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4465Slc + var yyhl4465 bool = l >= 0 + for yyj4465 := 0; ; yyj4465++ { + if yyhl4465 { + if yyj4465 >= l { break } } else { @@ -55418,10 +55880,10 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4433Slc = r.DecodeBytes(yys4433Slc, true, true) - yys4433 := string(yys4433Slc) + yys4465Slc = r.DecodeBytes(yys4465Slc, true, true) + yys4465 := string(yys4465Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4433 { + switch yys4465 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -55459,17 +55921,17 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod if x.Mode == nil { x.Mode = new(int32) } - yym4438 := z.DecBinary() - _ = yym4438 + yym4470 := z.DecBinary() + _ = yym4470 if false { } else { *((*int32)(x.Mode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys4433) - } // end switch yys4433 - } // end for yyj4433 + z.DecStructFieldNotFound(-1, yys4465) + } // end switch yys4465 + } // end for yyj4465 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -55477,16 +55939,16 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4439 int - var yyb4439 bool - var yyhl4439 bool = l >= 0 - yyj4439++ - if yyhl4439 { - yyb4439 = yyj4439 > l + var yyj4471 int + var yyb4471 bool + var yyhl4471 bool = l >= 0 + yyj4471++ + if yyhl4471 { + yyb4471 = yyj4471 > l } else { - yyb4439 = r.CheckBreak() + yyb4471 = r.CheckBreak() } - if yyb4439 { + if yyb4471 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55496,13 +55958,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Path = string(r.DecodeString()) } - yyj4439++ - if yyhl4439 { - yyb4439 = yyj4439 > l + yyj4471++ + if yyhl4471 { + yyb4471 = yyj4471 > l } else { - yyb4439 = r.CheckBreak() + yyb4471 = r.CheckBreak() } - if yyb4439 { + if yyb4471 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55517,13 +55979,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } x.FieldRef.CodecDecodeSelf(d) } - yyj4439++ - if yyhl4439 { - yyb4439 = yyj4439 > l + yyj4471++ + if yyhl4471 { + yyb4471 = yyj4471 > l } else { - yyb4439 = r.CheckBreak() + yyb4471 = r.CheckBreak() } - if yyb4439 { + if yyb4471 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55538,13 +56000,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } x.ResourceFieldRef.CodecDecodeSelf(d) } - yyj4439++ - if yyhl4439 { - yyb4439 = yyj4439 > l + yyj4471++ + if yyhl4471 { + yyb4471 = yyj4471 > l } else { - yyb4439 = r.CheckBreak() + yyb4471 = r.CheckBreak() } - if yyb4439 { + if yyb4471 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55557,25 +56019,25 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec if x.Mode == nil { x.Mode = new(int32) } - yym4444 := z.DecBinary() - _ = yym4444 + yym4476 := z.DecBinary() + _ = yym4476 if false { } else { *((*int32)(x.Mode)) = int32(r.DecodeInt(32)) } } for { - yyj4439++ - if yyhl4439 { - yyb4439 = yyj4439 > l + yyj4471++ + if yyhl4471 { + yyb4471 = yyj4471 > l } else { - yyb4439 = r.CheckBreak() + yyb4471 = r.CheckBreak() } - if yyb4439 { + if yyb4471 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4439-1, "") + z.DecStructFieldNotFound(yyj4471-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55587,38 +56049,38 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4445 := z.EncBinary() - _ = yym4445 + yym4477 := z.EncBinary() + _ = yym4477 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4446 := !z.EncBinary() - yy2arr4446 := z.EncBasicHandle().StructToArray - var yyq4446 [6]bool - _, _, _ = yysep4446, yyq4446, yy2arr4446 - const yyr4446 bool = false - yyq4446[0] = x.Capabilities != nil - yyq4446[1] = x.Privileged != nil - yyq4446[2] = x.SELinuxOptions != nil - yyq4446[3] = x.RunAsUser != nil - yyq4446[4] = x.RunAsNonRoot != nil - yyq4446[5] = x.ReadOnlyRootFilesystem != nil - var yynn4446 int - if yyr4446 || yy2arr4446 { + yysep4478 := !z.EncBinary() + yy2arr4478 := z.EncBasicHandle().StructToArray + var yyq4478 [6]bool + _, _, _ = yysep4478, yyq4478, yy2arr4478 + const yyr4478 bool = false + yyq4478[0] = x.Capabilities != nil + yyq4478[1] = x.Privileged != nil + yyq4478[2] = x.SELinuxOptions != nil + yyq4478[3] = x.RunAsUser != nil + yyq4478[4] = x.RunAsNonRoot != nil + yyq4478[5] = x.ReadOnlyRootFilesystem != nil + var yynn4478 int + if yyr4478 || yy2arr4478 { r.EncodeArrayStart(6) } else { - yynn4446 = 0 - for _, b := range yyq4446 { + yynn4478 = 0 + for _, b := range yyq4478 { if b { - yynn4446++ + yynn4478++ } } - r.EncodeMapStart(yynn4446) - yynn4446 = 0 + r.EncodeMapStart(yynn4478) + yynn4478 = 0 } - if yyr4446 || yy2arr4446 { + if yyr4478 || yy2arr4478 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4446[0] { + if yyq4478[0] { if x.Capabilities == nil { r.EncodeNil() } else { @@ -55628,7 +56090,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4446[0] { + if yyq4478[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -55639,44 +56101,44 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4446 || yy2arr4446 { + if yyr4478 || yy2arr4478 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4446[1] { + if yyq4478[1] { if x.Privileged == nil { r.EncodeNil() } else { - yy4449 := *x.Privileged - yym4450 := z.EncBinary() - _ = yym4450 + yy4481 := *x.Privileged + yym4482 := z.EncBinary() + _ = yym4482 if false { } else { - r.EncodeBool(bool(yy4449)) + r.EncodeBool(bool(yy4481)) } } } else { r.EncodeNil() } } else { - if yyq4446[1] { + if yyq4478[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("privileged")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Privileged == nil { r.EncodeNil() } else { - yy4451 := *x.Privileged - yym4452 := z.EncBinary() - _ = yym4452 + yy4483 := *x.Privileged + yym4484 := z.EncBinary() + _ = yym4484 if false { } else { - r.EncodeBool(bool(yy4451)) + r.EncodeBool(bool(yy4483)) } } } } - if yyr4446 || yy2arr4446 { + if yyr4478 || yy2arr4478 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4446[2] { + if yyq4478[2] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -55686,7 +56148,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4446[2] { + if yyq4478[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -55697,112 +56159,112 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4446 || yy2arr4446 { + if yyr4478 || yy2arr4478 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4446[3] { + if yyq4478[3] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy4455 := *x.RunAsUser - yym4456 := z.EncBinary() - _ = yym4456 + yy4487 := *x.RunAsUser + yym4488 := z.EncBinary() + _ = yym4488 if false { } else { - r.EncodeInt(int64(yy4455)) + r.EncodeInt(int64(yy4487)) } } } else { r.EncodeNil() } } else { - if yyq4446[3] { + if yyq4478[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy4457 := *x.RunAsUser - yym4458 := z.EncBinary() - _ = yym4458 + yy4489 := *x.RunAsUser + yym4490 := z.EncBinary() + _ = yym4490 if false { } else { - r.EncodeInt(int64(yy4457)) + r.EncodeInt(int64(yy4489)) } } } } - if yyr4446 || yy2arr4446 { + if yyr4478 || yy2arr4478 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4446[4] { + if yyq4478[4] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4460 := *x.RunAsNonRoot - yym4461 := z.EncBinary() - _ = yym4461 + yy4492 := *x.RunAsNonRoot + yym4493 := z.EncBinary() + _ = yym4493 if false { } else { - r.EncodeBool(bool(yy4460)) + r.EncodeBool(bool(yy4492)) } } } else { r.EncodeNil() } } else { - if yyq4446[4] { + if yyq4478[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4462 := *x.RunAsNonRoot - yym4463 := z.EncBinary() - _ = yym4463 + yy4494 := *x.RunAsNonRoot + yym4495 := z.EncBinary() + _ = yym4495 if false { } else { - r.EncodeBool(bool(yy4462)) + r.EncodeBool(bool(yy4494)) } } } } - if yyr4446 || yy2arr4446 { + if yyr4478 || yy2arr4478 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4446[5] { + if yyq4478[5] { if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4465 := *x.ReadOnlyRootFilesystem - yym4466 := z.EncBinary() - _ = yym4466 + yy4497 := *x.ReadOnlyRootFilesystem + yym4498 := z.EncBinary() + _ = yym4498 if false { } else { - r.EncodeBool(bool(yy4465)) + r.EncodeBool(bool(yy4497)) } } } else { r.EncodeNil() } } else { - if yyq4446[5] { + if yyq4478[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnlyRootFilesystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4467 := *x.ReadOnlyRootFilesystem - yym4468 := z.EncBinary() - _ = yym4468 + yy4499 := *x.ReadOnlyRootFilesystem + yym4500 := z.EncBinary() + _ = yym4500 if false { } else { - r.EncodeBool(bool(yy4467)) + r.EncodeBool(bool(yy4499)) } } } } - if yyr4446 || yy2arr4446 { + if yyr4478 || yy2arr4478 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -55815,25 +56277,25 @@ func (x *SecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4469 := z.DecBinary() - _ = yym4469 + yym4501 := z.DecBinary() + _ = yym4501 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4470 := r.ContainerType() - if yyct4470 == codecSelferValueTypeMap1234 { - yyl4470 := r.ReadMapStart() - if yyl4470 == 0 { + yyct4502 := r.ContainerType() + if yyct4502 == codecSelferValueTypeMap1234 { + yyl4502 := r.ReadMapStart() + if yyl4502 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4470, d) + x.codecDecodeSelfFromMap(yyl4502, d) } - } else if yyct4470 == codecSelferValueTypeArray1234 { - yyl4470 := r.ReadArrayStart() - if yyl4470 == 0 { + } else if yyct4502 == codecSelferValueTypeArray1234 { + yyl4502 := r.ReadArrayStart() + if yyl4502 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4470, d) + x.codecDecodeSelfFromArray(yyl4502, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -55845,12 +56307,12 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4471Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4471Slc - var yyhl4471 bool = l >= 0 - for yyj4471 := 0; ; yyj4471++ { - if yyhl4471 { - if yyj4471 >= l { + var yys4503Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4503Slc + var yyhl4503 bool = l >= 0 + for yyj4503 := 0; ; yyj4503++ { + if yyhl4503 { + if yyj4503 >= l { break } } else { @@ -55859,10 +56321,10 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4471Slc = r.DecodeBytes(yys4471Slc, true, true) - yys4471 := string(yys4471Slc) + yys4503Slc = r.DecodeBytes(yys4503Slc, true, true) + yys4503 := string(yys4503Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4471 { + switch yys4503 { case "capabilities": if r.TryDecodeAsNil() { if x.Capabilities != nil { @@ -55883,8 +56345,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Privileged == nil { x.Privileged = new(bool) } - yym4474 := z.DecBinary() - _ = yym4474 + yym4506 := z.DecBinary() + _ = yym4506 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() @@ -55910,8 +56372,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4477 := z.DecBinary() - _ = yym4477 + yym4509 := z.DecBinary() + _ = yym4509 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -55926,8 +56388,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4479 := z.DecBinary() - _ = yym4479 + yym4511 := z.DecBinary() + _ = yym4511 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() @@ -55942,17 +56404,17 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4481 := z.DecBinary() - _ = yym4481 + yym4513 := z.DecBinary() + _ = yym4513 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys4471) - } // end switch yys4471 - } // end for yyj4471 + z.DecStructFieldNotFound(-1, yys4503) + } // end switch yys4503 + } // end for yyj4503 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -55960,16 +56422,16 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4482 int - var yyb4482 bool - var yyhl4482 bool = l >= 0 - yyj4482++ - if yyhl4482 { - yyb4482 = yyj4482 > l + var yyj4514 int + var yyb4514 bool + var yyhl4514 bool = l >= 0 + yyj4514++ + if yyhl4514 { + yyb4514 = yyj4514 > l } else { - yyb4482 = r.CheckBreak() + yyb4514 = r.CheckBreak() } - if yyb4482 { + if yyb4514 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55984,13 +56446,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.Capabilities.CodecDecodeSelf(d) } - yyj4482++ - if yyhl4482 { - yyb4482 = yyj4482 > l + yyj4514++ + if yyhl4514 { + yyb4514 = yyj4514 > l } else { - yyb4482 = r.CheckBreak() + yyb4514 = r.CheckBreak() } - if yyb4482 { + if yyb4514 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56003,20 +56465,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.Privileged == nil { x.Privileged = new(bool) } - yym4485 := z.DecBinary() - _ = yym4485 + yym4517 := z.DecBinary() + _ = yym4517 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() } } - yyj4482++ - if yyhl4482 { - yyb4482 = yyj4482 > l + yyj4514++ + if yyhl4514 { + yyb4514 = yyj4514 > l } else { - yyb4482 = r.CheckBreak() + yyb4514 = r.CheckBreak() } - if yyb4482 { + if yyb4514 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56031,13 +56493,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj4482++ - if yyhl4482 { - yyb4482 = yyj4482 > l + yyj4514++ + if yyhl4514 { + yyb4514 = yyj4514 > l } else { - yyb4482 = r.CheckBreak() + yyb4514 = r.CheckBreak() } - if yyb4482 { + if yyb4514 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56050,20 +56512,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4488 := z.DecBinary() - _ = yym4488 + yym4520 := z.DecBinary() + _ = yym4520 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj4482++ - if yyhl4482 { - yyb4482 = yyj4482 > l + yyj4514++ + if yyhl4514 { + yyb4514 = yyj4514 > l } else { - yyb4482 = r.CheckBreak() + yyb4514 = r.CheckBreak() } - if yyb4482 { + if yyb4514 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56076,20 +56538,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4490 := z.DecBinary() - _ = yym4490 + yym4522 := z.DecBinary() + _ = yym4522 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } - yyj4482++ - if yyhl4482 { - yyb4482 = yyj4482 > l + yyj4514++ + if yyhl4514 { + yyb4514 = yyj4514 > l } else { - yyb4482 = r.CheckBreak() + yyb4514 = r.CheckBreak() } - if yyb4482 { + if yyb4514 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56102,25 +56564,25 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4492 := z.DecBinary() - _ = yym4492 + yym4524 := z.DecBinary() + _ = yym4524 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } for { - yyj4482++ - if yyhl4482 { - yyb4482 = yyj4482 > l + yyj4514++ + if yyhl4514 { + yyb4514 = yyj4514 > l } else { - yyb4482 = r.CheckBreak() + yyb4514 = r.CheckBreak() } - if yyb4482 { + if yyb4514 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4482-1, "") + z.DecStructFieldNotFound(yyj4514-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56132,38 +56594,38 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4493 := z.EncBinary() - _ = yym4493 + yym4525 := z.EncBinary() + _ = yym4525 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4494 := !z.EncBinary() - yy2arr4494 := z.EncBasicHandle().StructToArray - var yyq4494 [4]bool - _, _, _ = yysep4494, yyq4494, yy2arr4494 - const yyr4494 bool = false - yyq4494[0] = x.User != "" - yyq4494[1] = x.Role != "" - yyq4494[2] = x.Type != "" - yyq4494[3] = x.Level != "" - var yynn4494 int - if yyr4494 || yy2arr4494 { + yysep4526 := !z.EncBinary() + yy2arr4526 := z.EncBasicHandle().StructToArray + var yyq4526 [4]bool + _, _, _ = yysep4526, yyq4526, yy2arr4526 + const yyr4526 bool = false + yyq4526[0] = x.User != "" + yyq4526[1] = x.Role != "" + yyq4526[2] = x.Type != "" + yyq4526[3] = x.Level != "" + var yynn4526 int + if yyr4526 || yy2arr4526 { r.EncodeArrayStart(4) } else { - yynn4494 = 0 - for _, b := range yyq4494 { + yynn4526 = 0 + for _, b := range yyq4526 { if b { - yynn4494++ + yynn4526++ } } - r.EncodeMapStart(yynn4494) - yynn4494 = 0 + r.EncodeMapStart(yynn4526) + yynn4526 = 0 } - if yyr4494 || yy2arr4494 { + if yyr4526 || yy2arr4526 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4494[0] { - yym4496 := z.EncBinary() - _ = yym4496 + if yyq4526[0] { + yym4528 := z.EncBinary() + _ = yym4528 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) @@ -56172,23 +56634,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4494[0] { + if yyq4526[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4497 := z.EncBinary() - _ = yym4497 + yym4529 := z.EncBinary() + _ = yym4529 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } } - if yyr4494 || yy2arr4494 { + if yyr4526 || yy2arr4526 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4494[1] { - yym4499 := z.EncBinary() - _ = yym4499 + if yyq4526[1] { + yym4531 := z.EncBinary() + _ = yym4531 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) @@ -56197,23 +56659,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4494[1] { + if yyq4526[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("role")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4500 := z.EncBinary() - _ = yym4500 + yym4532 := z.EncBinary() + _ = yym4532 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) } } } - if yyr4494 || yy2arr4494 { + if yyr4526 || yy2arr4526 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4494[2] { - yym4502 := z.EncBinary() - _ = yym4502 + if yyq4526[2] { + yym4534 := z.EncBinary() + _ = yym4534 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -56222,23 +56684,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4494[2] { + if yyq4526[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4503 := z.EncBinary() - _ = yym4503 + yym4535 := z.EncBinary() + _ = yym4535 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr4494 || yy2arr4494 { + if yyr4526 || yy2arr4526 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4494[3] { - yym4505 := z.EncBinary() - _ = yym4505 + if yyq4526[3] { + yym4537 := z.EncBinary() + _ = yym4537 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) @@ -56247,19 +56709,19 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4494[3] { + if yyq4526[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("level")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4506 := z.EncBinary() - _ = yym4506 + yym4538 := z.EncBinary() + _ = yym4538 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) } } } - if yyr4494 || yy2arr4494 { + if yyr4526 || yy2arr4526 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -56272,25 +56734,25 @@ func (x *SELinuxOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4507 := z.DecBinary() - _ = yym4507 + yym4539 := z.DecBinary() + _ = yym4539 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4508 := r.ContainerType() - if yyct4508 == codecSelferValueTypeMap1234 { - yyl4508 := r.ReadMapStart() - if yyl4508 == 0 { + yyct4540 := r.ContainerType() + if yyct4540 == codecSelferValueTypeMap1234 { + yyl4540 := r.ReadMapStart() + if yyl4540 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4508, d) + x.codecDecodeSelfFromMap(yyl4540, d) } - } else if yyct4508 == codecSelferValueTypeArray1234 { - yyl4508 := r.ReadArrayStart() - if yyl4508 == 0 { + } else if yyct4540 == codecSelferValueTypeArray1234 { + yyl4540 := r.ReadArrayStart() + if yyl4540 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4508, d) + x.codecDecodeSelfFromArray(yyl4540, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -56302,12 +56764,12 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4509Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4509Slc - var yyhl4509 bool = l >= 0 - for yyj4509 := 0; ; yyj4509++ { - if yyhl4509 { - if yyj4509 >= l { + var yys4541Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4541Slc + var yyhl4541 bool = l >= 0 + for yyj4541 := 0; ; yyj4541++ { + if yyhl4541 { + if yyj4541 >= l { break } } else { @@ -56316,10 +56778,10 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4509Slc = r.DecodeBytes(yys4509Slc, true, true) - yys4509 := string(yys4509Slc) + yys4541Slc = r.DecodeBytes(yys4541Slc, true, true) + yys4541 := string(yys4541Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4509 { + switch yys4541 { case "user": if r.TryDecodeAsNil() { x.User = "" @@ -56345,9 +56807,9 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4509) - } // end switch yys4509 - } // end for yyj4509 + z.DecStructFieldNotFound(-1, yys4541) + } // end switch yys4541 + } // end for yyj4541 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -56355,16 +56817,16 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4514 int - var yyb4514 bool - var yyhl4514 bool = l >= 0 - yyj4514++ - if yyhl4514 { - yyb4514 = yyj4514 > l + var yyj4546 int + var yyb4546 bool + var yyhl4546 bool = l >= 0 + yyj4546++ + if yyhl4546 { + yyb4546 = yyj4546 > l } else { - yyb4514 = r.CheckBreak() + yyb4546 = r.CheckBreak() } - if yyb4514 { + if yyb4546 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56374,13 +56836,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.User = string(r.DecodeString()) } - yyj4514++ - if yyhl4514 { - yyb4514 = yyj4514 > l + yyj4546++ + if yyhl4546 { + yyb4546 = yyj4546 > l } else { - yyb4514 = r.CheckBreak() + yyb4546 = r.CheckBreak() } - if yyb4514 { + if yyb4546 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56390,13 +56852,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Role = string(r.DecodeString()) } - yyj4514++ - if yyhl4514 { - yyb4514 = yyj4514 > l + yyj4546++ + if yyhl4546 { + yyb4546 = yyj4546 > l } else { - yyb4514 = r.CheckBreak() + yyb4546 = r.CheckBreak() } - if yyb4514 { + if yyb4546 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56406,13 +56868,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = string(r.DecodeString()) } - yyj4514++ - if yyhl4514 { - yyb4514 = yyj4514 > l + yyj4546++ + if yyhl4546 { + yyb4546 = yyj4546 > l } else { - yyb4514 = r.CheckBreak() + yyb4546 = r.CheckBreak() } - if yyb4514 { + if yyb4546 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56423,17 +56885,17 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } for { - yyj4514++ - if yyhl4514 { - yyb4514 = yyj4514 > l + yyj4546++ + if yyhl4546 { + yyb4546 = yyj4546 > l } else { - yyb4514 = r.CheckBreak() + yyb4546 = r.CheckBreak() } - if yyb4514 { + if yyb4546 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4514-1, "") + z.DecStructFieldNotFound(yyj4546-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56445,37 +56907,37 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4519 := z.EncBinary() - _ = yym4519 + yym4551 := z.EncBinary() + _ = yym4551 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4520 := !z.EncBinary() - yy2arr4520 := z.EncBasicHandle().StructToArray - var yyq4520 [5]bool - _, _, _ = yysep4520, yyq4520, yy2arr4520 - const yyr4520 bool = false - yyq4520[0] = x.Kind != "" - yyq4520[1] = x.APIVersion != "" - yyq4520[2] = true - var yynn4520 int - if yyr4520 || yy2arr4520 { + yysep4552 := !z.EncBinary() + yy2arr4552 := z.EncBasicHandle().StructToArray + var yyq4552 [5]bool + _, _, _ = yysep4552, yyq4552, yy2arr4552 + const yyr4552 bool = false + yyq4552[0] = x.Kind != "" + yyq4552[1] = x.APIVersion != "" + yyq4552[2] = true + var yynn4552 int + if yyr4552 || yy2arr4552 { r.EncodeArrayStart(5) } else { - yynn4520 = 2 - for _, b := range yyq4520 { + yynn4552 = 2 + for _, b := range yyq4552 { if b { - yynn4520++ + yynn4552++ } } - r.EncodeMapStart(yynn4520) - yynn4520 = 0 + r.EncodeMapStart(yynn4552) + yynn4552 = 0 } - if yyr4520 || yy2arr4520 { + if yyr4552 || yy2arr4552 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4520[0] { - yym4522 := z.EncBinary() - _ = yym4522 + if yyq4552[0] { + yym4554 := z.EncBinary() + _ = yym4554 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -56484,23 +56946,23 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4520[0] { + if yyq4552[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4523 := z.EncBinary() - _ = yym4523 + yym4555 := z.EncBinary() + _ = yym4555 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr4520 || yy2arr4520 { + if yyr4552 || yy2arr4552 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4520[1] { - yym4525 := z.EncBinary() - _ = yym4525 + if yyq4552[1] { + yym4557 := z.EncBinary() + _ = yym4557 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -56509,39 +56971,39 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4520[1] { + if yyq4552[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4526 := z.EncBinary() - _ = yym4526 + yym4558 := z.EncBinary() + _ = yym4558 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4520 || yy2arr4520 { + if yyr4552 || yy2arr4552 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4520[2] { - yy4528 := &x.ObjectMeta - yy4528.CodecEncodeSelf(e) + if yyq4552[2] { + yy4560 := &x.ObjectMeta + yy4560.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4520[2] { + if yyq4552[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4529 := &x.ObjectMeta - yy4529.CodecEncodeSelf(e) + yy4561 := &x.ObjectMeta + yy4561.CodecEncodeSelf(e) } } - if yyr4520 || yy2arr4520 { + if yyr4552 || yy2arr4552 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym4531 := z.EncBinary() - _ = yym4531 + yym4563 := z.EncBinary() + _ = yym4563 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) @@ -56550,20 +57012,20 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("range")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4532 := z.EncBinary() - _ = yym4532 + yym4564 := z.EncBinary() + _ = yym4564 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) } } - if yyr4520 || yy2arr4520 { + if yyr4552 || yy2arr4552 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Data == nil { r.EncodeNil() } else { - yym4534 := z.EncBinary() - _ = yym4534 + yym4566 := z.EncBinary() + _ = yym4566 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) @@ -56576,15 +57038,15 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x.Data == nil { r.EncodeNil() } else { - yym4535 := z.EncBinary() - _ = yym4535 + yym4567 := z.EncBinary() + _ = yym4567 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) } } } - if yyr4520 || yy2arr4520 { + if yyr4552 || yy2arr4552 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -56597,25 +57059,25 @@ func (x *RangeAllocation) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4536 := z.DecBinary() - _ = yym4536 + yym4568 := z.DecBinary() + _ = yym4568 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4537 := r.ContainerType() - if yyct4537 == codecSelferValueTypeMap1234 { - yyl4537 := r.ReadMapStart() - if yyl4537 == 0 { + yyct4569 := r.ContainerType() + if yyct4569 == codecSelferValueTypeMap1234 { + yyl4569 := r.ReadMapStart() + if yyl4569 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4537, d) + x.codecDecodeSelfFromMap(yyl4569, d) } - } else if yyct4537 == codecSelferValueTypeArray1234 { - yyl4537 := r.ReadArrayStart() - if yyl4537 == 0 { + } else if yyct4569 == codecSelferValueTypeArray1234 { + yyl4569 := r.ReadArrayStart() + if yyl4569 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4537, d) + x.codecDecodeSelfFromArray(yyl4569, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -56627,12 +57089,12 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4538Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4538Slc - var yyhl4538 bool = l >= 0 - for yyj4538 := 0; ; yyj4538++ { - if yyhl4538 { - if yyj4538 >= l { + var yys4570Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4570Slc + var yyhl4570 bool = l >= 0 + for yyj4570 := 0; ; yyj4570++ { + if yyhl4570 { + if yyj4570 >= l { break } } else { @@ -56641,10 +57103,10 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4538Slc = r.DecodeBytes(yys4538Slc, true, true) - yys4538 := string(yys4538Slc) + yys4570Slc = r.DecodeBytes(yys4570Slc, true, true) + yys4570 := string(yys4570Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4538 { + switch yys4570 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -56661,8 +57123,8 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4541 := &x.ObjectMeta - yyv4541.CodecDecodeSelf(d) + yyv4573 := &x.ObjectMeta + yyv4573.CodecDecodeSelf(d) } case "range": if r.TryDecodeAsNil() { @@ -56674,18 +57136,18 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4543 := &x.Data - yym4544 := z.DecBinary() - _ = yym4544 + yyv4575 := &x.Data + yym4576 := z.DecBinary() + _ = yym4576 if false { } else { - *yyv4543 = r.DecodeBytes(*(*[]byte)(yyv4543), false, false) + *yyv4575 = r.DecodeBytes(*(*[]byte)(yyv4575), false, false) } } default: - z.DecStructFieldNotFound(-1, yys4538) - } // end switch yys4538 - } // end for yyj4538 + z.DecStructFieldNotFound(-1, yys4570) + } // end switch yys4570 + } // end for yyj4570 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -56693,16 +57155,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4545 int - var yyb4545 bool - var yyhl4545 bool = l >= 0 - yyj4545++ - if yyhl4545 { - yyb4545 = yyj4545 > l + var yyj4577 int + var yyb4577 bool + var yyhl4577 bool = l >= 0 + yyj4577++ + if yyhl4577 { + yyb4577 = yyj4577 > l } else { - yyb4545 = r.CheckBreak() + yyb4577 = r.CheckBreak() } - if yyb4545 { + if yyb4577 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56712,13 +57174,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4545++ - if yyhl4545 { - yyb4545 = yyj4545 > l + yyj4577++ + if yyhl4577 { + yyb4577 = yyj4577 > l } else { - yyb4545 = r.CheckBreak() + yyb4577 = r.CheckBreak() } - if yyb4545 { + if yyb4577 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56728,13 +57190,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4545++ - if yyhl4545 { - yyb4545 = yyj4545 > l + yyj4577++ + if yyhl4577 { + yyb4577 = yyj4577 > l } else { - yyb4545 = r.CheckBreak() + yyb4577 = r.CheckBreak() } - if yyb4545 { + if yyb4577 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56742,16 +57204,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4548 := &x.ObjectMeta - yyv4548.CodecDecodeSelf(d) + yyv4580 := &x.ObjectMeta + yyv4580.CodecDecodeSelf(d) } - yyj4545++ - if yyhl4545 { - yyb4545 = yyj4545 > l + yyj4577++ + if yyhl4577 { + yyb4577 = yyj4577 > l } else { - yyb4545 = r.CheckBreak() + yyb4577 = r.CheckBreak() } - if yyb4545 { + if yyb4577 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56761,13 +57223,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Range = string(r.DecodeString()) } - yyj4545++ - if yyhl4545 { - yyb4545 = yyj4545 > l + yyj4577++ + if yyhl4577 { + yyb4577 = yyj4577 > l } else { - yyb4545 = r.CheckBreak() + yyb4577 = r.CheckBreak() } - if yyb4545 { + if yyb4577 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56775,26 +57237,26 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4550 := &x.Data - yym4551 := z.DecBinary() - _ = yym4551 + yyv4582 := &x.Data + yym4583 := z.DecBinary() + _ = yym4583 if false { } else { - *yyv4550 = r.DecodeBytes(*(*[]byte)(yyv4550), false, false) + *yyv4582 = r.DecodeBytes(*(*[]byte)(yyv4582), false, false) } } for { - yyj4545++ - if yyhl4545 { - yyb4545 = yyj4545 > l + yyj4577++ + if yyhl4577 { + yyb4577 = yyj4577 > l } else { - yyb4545 = r.CheckBreak() + yyb4577 = r.CheckBreak() } - if yyb4545 { + if yyb4577 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4545-1, "") + z.DecStructFieldNotFound(yyj4577-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56804,15 +57266,15 @@ func (x codecSelfer1234) encSlicev1_OwnerReference(v []pkg2_v1.OwnerReference, e z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4552 := range v { + for _, yyv4584 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4553 := &yyv4552 - yym4554 := z.EncBinary() - _ = yym4554 + yy4585 := &yyv4584 + yym4586 := z.EncBinary() + _ = yym4586 if false { - } else if z.HasExtensions() && z.EncExt(yy4553) { + } else if z.HasExtensions() && z.EncExt(yy4585) { } else { - z.EncFallback(yy4553) + z.EncFallback(yy4585) } } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) @@ -56823,601 +57285,12 @@ func (x codecSelfer1234) decSlicev1_OwnerReference(v *[]pkg2_v1.OwnerReference, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4555 := *v - yyh4555, yyl4555 := z.DecSliceHelperStart() - var yyc4555 bool - if yyl4555 == 0 { - if yyv4555 == nil { - yyv4555 = []pkg2_v1.OwnerReference{} - yyc4555 = true - } else if len(yyv4555) != 0 { - yyv4555 = yyv4555[:0] - yyc4555 = true - } - } else if yyl4555 > 0 { - var yyrr4555, yyrl4555 int - var yyrt4555 bool - if yyl4555 > cap(yyv4555) { - - yyrg4555 := len(yyv4555) > 0 - yyv24555 := yyv4555 - yyrl4555, yyrt4555 = z.DecInferLen(yyl4555, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4555 { - if yyrl4555 <= cap(yyv4555) { - yyv4555 = yyv4555[:yyrl4555] - } else { - yyv4555 = make([]pkg2_v1.OwnerReference, yyrl4555) - } - } else { - yyv4555 = make([]pkg2_v1.OwnerReference, yyrl4555) - } - yyc4555 = true - yyrr4555 = len(yyv4555) - if yyrg4555 { - copy(yyv4555, yyv24555) - } - } else if yyl4555 != len(yyv4555) { - yyv4555 = yyv4555[:yyl4555] - yyc4555 = true - } - yyj4555 := 0 - for ; yyj4555 < yyrr4555; yyj4555++ { - yyh4555.ElemContainerState(yyj4555) - if r.TryDecodeAsNil() { - yyv4555[yyj4555] = pkg2_v1.OwnerReference{} - } else { - yyv4556 := &yyv4555[yyj4555] - yym4557 := z.DecBinary() - _ = yym4557 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4556) { - } else { - z.DecFallback(yyv4556, false) - } - } - - } - if yyrt4555 { - for ; yyj4555 < yyl4555; yyj4555++ { - yyv4555 = append(yyv4555, pkg2_v1.OwnerReference{}) - yyh4555.ElemContainerState(yyj4555) - if r.TryDecodeAsNil() { - yyv4555[yyj4555] = pkg2_v1.OwnerReference{} - } else { - yyv4558 := &yyv4555[yyj4555] - yym4559 := z.DecBinary() - _ = yym4559 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4558) { - } else { - z.DecFallback(yyv4558, false) - } - } - - } - } - - } else { - yyj4555 := 0 - for ; !r.CheckBreak(); yyj4555++ { - - if yyj4555 >= len(yyv4555) { - yyv4555 = append(yyv4555, pkg2_v1.OwnerReference{}) // var yyz4555 pkg2_v1.OwnerReference - yyc4555 = true - } - yyh4555.ElemContainerState(yyj4555) - if yyj4555 < len(yyv4555) { - if r.TryDecodeAsNil() { - yyv4555[yyj4555] = pkg2_v1.OwnerReference{} - } else { - yyv4560 := &yyv4555[yyj4555] - yym4561 := z.DecBinary() - _ = yym4561 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4560) { - } else { - z.DecFallback(yyv4560, false) - } - } - - } else { - z.DecSwallow() - } - - } - if yyj4555 < len(yyv4555) { - yyv4555 = yyv4555[:yyj4555] - yyc4555 = true - } else if yyj4555 == 0 && yyv4555 == nil { - yyv4555 = []pkg2_v1.OwnerReference{} - yyc4555 = true - } - } - yyh4555.End() - if yyc4555 { - *v = yyv4555 - } -} - -func (x codecSelfer1234) encSlicePersistentVolumeAccessMode(v []PersistentVolumeAccessMode, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4562 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4562.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolumeAccessMode, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4563 := *v - yyh4563, yyl4563 := z.DecSliceHelperStart() - var yyc4563 bool - if yyl4563 == 0 { - if yyv4563 == nil { - yyv4563 = []PersistentVolumeAccessMode{} - yyc4563 = true - } else if len(yyv4563) != 0 { - yyv4563 = yyv4563[:0] - yyc4563 = true - } - } else if yyl4563 > 0 { - var yyrr4563, yyrl4563 int - var yyrt4563 bool - if yyl4563 > cap(yyv4563) { - - yyrl4563, yyrt4563 = z.DecInferLen(yyl4563, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4563 { - if yyrl4563 <= cap(yyv4563) { - yyv4563 = yyv4563[:yyrl4563] - } else { - yyv4563 = make([]PersistentVolumeAccessMode, yyrl4563) - } - } else { - yyv4563 = make([]PersistentVolumeAccessMode, yyrl4563) - } - yyc4563 = true - yyrr4563 = len(yyv4563) - } else if yyl4563 != len(yyv4563) { - yyv4563 = yyv4563[:yyl4563] - yyc4563 = true - } - yyj4563 := 0 - for ; yyj4563 < yyrr4563; yyj4563++ { - yyh4563.ElemContainerState(yyj4563) - if r.TryDecodeAsNil() { - yyv4563[yyj4563] = "" - } else { - yyv4563[yyj4563] = PersistentVolumeAccessMode(r.DecodeString()) - } - - } - if yyrt4563 { - for ; yyj4563 < yyl4563; yyj4563++ { - yyv4563 = append(yyv4563, "") - yyh4563.ElemContainerState(yyj4563) - if r.TryDecodeAsNil() { - yyv4563[yyj4563] = "" - } else { - yyv4563[yyj4563] = PersistentVolumeAccessMode(r.DecodeString()) - } - - } - } - - } else { - yyj4563 := 0 - for ; !r.CheckBreak(); yyj4563++ { - - if yyj4563 >= len(yyv4563) { - yyv4563 = append(yyv4563, "") // var yyz4563 PersistentVolumeAccessMode - yyc4563 = true - } - yyh4563.ElemContainerState(yyj4563) - if yyj4563 < len(yyv4563) { - if r.TryDecodeAsNil() { - yyv4563[yyj4563] = "" - } else { - yyv4563[yyj4563] = PersistentVolumeAccessMode(r.DecodeString()) - } - - } else { - z.DecSwallow() - } - - } - if yyj4563 < len(yyv4563) { - yyv4563 = yyv4563[:yyj4563] - yyc4563 = true - } else if yyj4563 == 0 && yyv4563 == nil { - yyv4563 = []PersistentVolumeAccessMode{} - yyc4563 = true - } - } - yyh4563.End() - if yyc4563 { - *v = yyv4563 - } -} - -func (x codecSelfer1234) encSlicePersistentVolume(v []PersistentVolume, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4567 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4568 := &yyv4567 - yy4568.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4569 := *v - yyh4569, yyl4569 := z.DecSliceHelperStart() - var yyc4569 bool - if yyl4569 == 0 { - if yyv4569 == nil { - yyv4569 = []PersistentVolume{} - yyc4569 = true - } else if len(yyv4569) != 0 { - yyv4569 = yyv4569[:0] - yyc4569 = true - } - } else if yyl4569 > 0 { - var yyrr4569, yyrl4569 int - var yyrt4569 bool - if yyl4569 > cap(yyv4569) { - - yyrg4569 := len(yyv4569) > 0 - yyv24569 := yyv4569 - yyrl4569, yyrt4569 = z.DecInferLen(yyl4569, z.DecBasicHandle().MaxInitLen, 496) - if yyrt4569 { - if yyrl4569 <= cap(yyv4569) { - yyv4569 = yyv4569[:yyrl4569] - } else { - yyv4569 = make([]PersistentVolume, yyrl4569) - } - } else { - yyv4569 = make([]PersistentVolume, yyrl4569) - } - yyc4569 = true - yyrr4569 = len(yyv4569) - if yyrg4569 { - copy(yyv4569, yyv24569) - } - } else if yyl4569 != len(yyv4569) { - yyv4569 = yyv4569[:yyl4569] - yyc4569 = true - } - yyj4569 := 0 - for ; yyj4569 < yyrr4569; yyj4569++ { - yyh4569.ElemContainerState(yyj4569) - if r.TryDecodeAsNil() { - yyv4569[yyj4569] = PersistentVolume{} - } else { - yyv4570 := &yyv4569[yyj4569] - yyv4570.CodecDecodeSelf(d) - } - - } - if yyrt4569 { - for ; yyj4569 < yyl4569; yyj4569++ { - yyv4569 = append(yyv4569, PersistentVolume{}) - yyh4569.ElemContainerState(yyj4569) - if r.TryDecodeAsNil() { - yyv4569[yyj4569] = PersistentVolume{} - } else { - yyv4571 := &yyv4569[yyj4569] - yyv4571.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4569 := 0 - for ; !r.CheckBreak(); yyj4569++ { - - if yyj4569 >= len(yyv4569) { - yyv4569 = append(yyv4569, PersistentVolume{}) // var yyz4569 PersistentVolume - yyc4569 = true - } - yyh4569.ElemContainerState(yyj4569) - if yyj4569 < len(yyv4569) { - if r.TryDecodeAsNil() { - yyv4569[yyj4569] = PersistentVolume{} - } else { - yyv4572 := &yyv4569[yyj4569] - yyv4572.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4569 < len(yyv4569) { - yyv4569 = yyv4569[:yyj4569] - yyc4569 = true - } else if yyj4569 == 0 && yyv4569 == nil { - yyv4569 = []PersistentVolume{} - yyc4569 = true - } - } - yyh4569.End() - if yyc4569 { - *v = yyv4569 - } -} - -func (x codecSelfer1234) encSlicePersistentVolumeClaim(v []PersistentVolumeClaim, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4573 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4574 := &yyv4573 - yy4574.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClaim, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4575 := *v - yyh4575, yyl4575 := z.DecSliceHelperStart() - var yyc4575 bool - if yyl4575 == 0 { - if yyv4575 == nil { - yyv4575 = []PersistentVolumeClaim{} - yyc4575 = true - } else if len(yyv4575) != 0 { - yyv4575 = yyv4575[:0] - yyc4575 = true - } - } else if yyl4575 > 0 { - var yyrr4575, yyrl4575 int - var yyrt4575 bool - if yyl4575 > cap(yyv4575) { - - yyrg4575 := len(yyv4575) > 0 - yyv24575 := yyv4575 - yyrl4575, yyrt4575 = z.DecInferLen(yyl4575, z.DecBasicHandle().MaxInitLen, 368) - if yyrt4575 { - if yyrl4575 <= cap(yyv4575) { - yyv4575 = yyv4575[:yyrl4575] - } else { - yyv4575 = make([]PersistentVolumeClaim, yyrl4575) - } - } else { - yyv4575 = make([]PersistentVolumeClaim, yyrl4575) - } - yyc4575 = true - yyrr4575 = len(yyv4575) - if yyrg4575 { - copy(yyv4575, yyv24575) - } - } else if yyl4575 != len(yyv4575) { - yyv4575 = yyv4575[:yyl4575] - yyc4575 = true - } - yyj4575 := 0 - for ; yyj4575 < yyrr4575; yyj4575++ { - yyh4575.ElemContainerState(yyj4575) - if r.TryDecodeAsNil() { - yyv4575[yyj4575] = PersistentVolumeClaim{} - } else { - yyv4576 := &yyv4575[yyj4575] - yyv4576.CodecDecodeSelf(d) - } - - } - if yyrt4575 { - for ; yyj4575 < yyl4575; yyj4575++ { - yyv4575 = append(yyv4575, PersistentVolumeClaim{}) - yyh4575.ElemContainerState(yyj4575) - if r.TryDecodeAsNil() { - yyv4575[yyj4575] = PersistentVolumeClaim{} - } else { - yyv4577 := &yyv4575[yyj4575] - yyv4577.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4575 := 0 - for ; !r.CheckBreak(); yyj4575++ { - - if yyj4575 >= len(yyv4575) { - yyv4575 = append(yyv4575, PersistentVolumeClaim{}) // var yyz4575 PersistentVolumeClaim - yyc4575 = true - } - yyh4575.ElemContainerState(yyj4575) - if yyj4575 < len(yyv4575) { - if r.TryDecodeAsNil() { - yyv4575[yyj4575] = PersistentVolumeClaim{} - } else { - yyv4578 := &yyv4575[yyj4575] - yyv4578.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4575 < len(yyv4575) { - yyv4575 = yyv4575[:yyj4575] - yyc4575 = true - } else if yyj4575 == 0 && yyv4575 == nil { - yyv4575 = []PersistentVolumeClaim{} - yyc4575 = true - } - } - yyh4575.End() - if yyc4575 { - *v = yyv4575 - } -} - -func (x codecSelfer1234) encSliceKeyToPath(v []KeyToPath, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4579 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4580 := &yyv4579 - yy4580.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4581 := *v - yyh4581, yyl4581 := z.DecSliceHelperStart() - var yyc4581 bool - if yyl4581 == 0 { - if yyv4581 == nil { - yyv4581 = []KeyToPath{} - yyc4581 = true - } else if len(yyv4581) != 0 { - yyv4581 = yyv4581[:0] - yyc4581 = true - } - } else if yyl4581 > 0 { - var yyrr4581, yyrl4581 int - var yyrt4581 bool - if yyl4581 > cap(yyv4581) { - - yyrg4581 := len(yyv4581) > 0 - yyv24581 := yyv4581 - yyrl4581, yyrt4581 = z.DecInferLen(yyl4581, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4581 { - if yyrl4581 <= cap(yyv4581) { - yyv4581 = yyv4581[:yyrl4581] - } else { - yyv4581 = make([]KeyToPath, yyrl4581) - } - } else { - yyv4581 = make([]KeyToPath, yyrl4581) - } - yyc4581 = true - yyrr4581 = len(yyv4581) - if yyrg4581 { - copy(yyv4581, yyv24581) - } - } else if yyl4581 != len(yyv4581) { - yyv4581 = yyv4581[:yyl4581] - yyc4581 = true - } - yyj4581 := 0 - for ; yyj4581 < yyrr4581; yyj4581++ { - yyh4581.ElemContainerState(yyj4581) - if r.TryDecodeAsNil() { - yyv4581[yyj4581] = KeyToPath{} - } else { - yyv4582 := &yyv4581[yyj4581] - yyv4582.CodecDecodeSelf(d) - } - - } - if yyrt4581 { - for ; yyj4581 < yyl4581; yyj4581++ { - yyv4581 = append(yyv4581, KeyToPath{}) - yyh4581.ElemContainerState(yyj4581) - if r.TryDecodeAsNil() { - yyv4581[yyj4581] = KeyToPath{} - } else { - yyv4583 := &yyv4581[yyj4581] - yyv4583.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4581 := 0 - for ; !r.CheckBreak(); yyj4581++ { - - if yyj4581 >= len(yyv4581) { - yyv4581 = append(yyv4581, KeyToPath{}) // var yyz4581 KeyToPath - yyc4581 = true - } - yyh4581.ElemContainerState(yyj4581) - if yyj4581 < len(yyv4581) { - if r.TryDecodeAsNil() { - yyv4581[yyj4581] = KeyToPath{} - } else { - yyv4584 := &yyv4581[yyj4581] - yyv4584.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4581 < len(yyv4581) { - yyv4581 = yyv4581[:yyj4581] - yyc4581 = true - } else if yyj4581 == 0 && yyv4581 == nil { - yyv4581 = []KeyToPath{} - yyc4581 = true - } - } - yyh4581.End() - if yyc4581 { - *v = yyv4581 - } -} - -func (x codecSelfer1234) encSliceHTTPHeader(v []HTTPHeader, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4585 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4586 := &yyv4585 - yy4586.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yyv4587 := *v yyh4587, yyl4587 := z.DecSliceHelperStart() var yyc4587 bool if yyl4587 == 0 { if yyv4587 == nil { - yyv4587 = []HTTPHeader{} + yyv4587 = []pkg2_v1.OwnerReference{} yyc4587 = true } else if len(yyv4587) != 0 { yyv4587 = yyv4587[:0] @@ -57430,15 +57303,15 @@ func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decode yyrg4587 := len(yyv4587) > 0 yyv24587 := yyv4587 - yyrl4587, yyrt4587 = z.DecInferLen(yyl4587, z.DecBasicHandle().MaxInitLen, 32) + yyrl4587, yyrt4587 = z.DecInferLen(yyl4587, z.DecBasicHandle().MaxInitLen, 72) if yyrt4587 { if yyrl4587 <= cap(yyv4587) { yyv4587 = yyv4587[:yyrl4587] } else { - yyv4587 = make([]HTTPHeader, yyrl4587) + yyv4587 = make([]pkg2_v1.OwnerReference, yyrl4587) } } else { - yyv4587 = make([]HTTPHeader, yyrl4587) + yyv4587 = make([]pkg2_v1.OwnerReference, yyrl4587) } yyc4587 = true yyrr4587 = len(yyv4587) @@ -57453,22 +57326,34 @@ func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decode for ; yyj4587 < yyrr4587; yyj4587++ { yyh4587.ElemContainerState(yyj4587) if r.TryDecodeAsNil() { - yyv4587[yyj4587] = HTTPHeader{} + yyv4587[yyj4587] = pkg2_v1.OwnerReference{} } else { yyv4588 := &yyv4587[yyj4587] - yyv4588.CodecDecodeSelf(d) + yym4589 := z.DecBinary() + _ = yym4589 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4588) { + } else { + z.DecFallback(yyv4588, false) + } } } if yyrt4587 { for ; yyj4587 < yyl4587; yyj4587++ { - yyv4587 = append(yyv4587, HTTPHeader{}) + yyv4587 = append(yyv4587, pkg2_v1.OwnerReference{}) yyh4587.ElemContainerState(yyj4587) if r.TryDecodeAsNil() { - yyv4587[yyj4587] = HTTPHeader{} + yyv4587[yyj4587] = pkg2_v1.OwnerReference{} } else { - yyv4589 := &yyv4587[yyj4587] - yyv4589.CodecDecodeSelf(d) + yyv4590 := &yyv4587[yyj4587] + yym4591 := z.DecBinary() + _ = yym4591 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4590) { + } else { + z.DecFallback(yyv4590, false) + } } } @@ -57479,16 +57364,22 @@ func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decode for ; !r.CheckBreak(); yyj4587++ { if yyj4587 >= len(yyv4587) { - yyv4587 = append(yyv4587, HTTPHeader{}) // var yyz4587 HTTPHeader + yyv4587 = append(yyv4587, pkg2_v1.OwnerReference{}) // var yyz4587 pkg2_v1.OwnerReference yyc4587 = true } yyh4587.ElemContainerState(yyj4587) if yyj4587 < len(yyv4587) { if r.TryDecodeAsNil() { - yyv4587[yyj4587] = HTTPHeader{} + yyv4587[yyj4587] = pkg2_v1.OwnerReference{} } else { - yyv4590 := &yyv4587[yyj4587] - yyv4590.CodecDecodeSelf(d) + yyv4592 := &yyv4587[yyj4587] + yym4593 := z.DecBinary() + _ = yym4593 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4592) { + } else { + z.DecFallback(yyv4592, false) + } } } else { @@ -57500,7 +57391,7 @@ func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decode yyv4587 = yyv4587[:yyj4587] yyc4587 = true } else if yyj4587 == 0 && yyv4587 == nil { - yyv4587 = []HTTPHeader{} + yyv4587 = []pkg2_v1.OwnerReference{} yyc4587 = true } } @@ -57510,14 +57401,585 @@ func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decode } } +func (x codecSelfer1234) encSlicePersistentVolumeAccessMode(v []PersistentVolumeAccessMode, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4594 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yyv4594.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolumeAccessMode, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4595 := *v + yyh4595, yyl4595 := z.DecSliceHelperStart() + var yyc4595 bool + if yyl4595 == 0 { + if yyv4595 == nil { + yyv4595 = []PersistentVolumeAccessMode{} + yyc4595 = true + } else if len(yyv4595) != 0 { + yyv4595 = yyv4595[:0] + yyc4595 = true + } + } else if yyl4595 > 0 { + var yyrr4595, yyrl4595 int + var yyrt4595 bool + if yyl4595 > cap(yyv4595) { + + yyrl4595, yyrt4595 = z.DecInferLen(yyl4595, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4595 { + if yyrl4595 <= cap(yyv4595) { + yyv4595 = yyv4595[:yyrl4595] + } else { + yyv4595 = make([]PersistentVolumeAccessMode, yyrl4595) + } + } else { + yyv4595 = make([]PersistentVolumeAccessMode, yyrl4595) + } + yyc4595 = true + yyrr4595 = len(yyv4595) + } else if yyl4595 != len(yyv4595) { + yyv4595 = yyv4595[:yyl4595] + yyc4595 = true + } + yyj4595 := 0 + for ; yyj4595 < yyrr4595; yyj4595++ { + yyh4595.ElemContainerState(yyj4595) + if r.TryDecodeAsNil() { + yyv4595[yyj4595] = "" + } else { + yyv4595[yyj4595] = PersistentVolumeAccessMode(r.DecodeString()) + } + + } + if yyrt4595 { + for ; yyj4595 < yyl4595; yyj4595++ { + yyv4595 = append(yyv4595, "") + yyh4595.ElemContainerState(yyj4595) + if r.TryDecodeAsNil() { + yyv4595[yyj4595] = "" + } else { + yyv4595[yyj4595] = PersistentVolumeAccessMode(r.DecodeString()) + } + + } + } + + } else { + yyj4595 := 0 + for ; !r.CheckBreak(); yyj4595++ { + + if yyj4595 >= len(yyv4595) { + yyv4595 = append(yyv4595, "") // var yyz4595 PersistentVolumeAccessMode + yyc4595 = true + } + yyh4595.ElemContainerState(yyj4595) + if yyj4595 < len(yyv4595) { + if r.TryDecodeAsNil() { + yyv4595[yyj4595] = "" + } else { + yyv4595[yyj4595] = PersistentVolumeAccessMode(r.DecodeString()) + } + + } else { + z.DecSwallow() + } + + } + if yyj4595 < len(yyv4595) { + yyv4595 = yyv4595[:yyj4595] + yyc4595 = true + } else if yyj4595 == 0 && yyv4595 == nil { + yyv4595 = []PersistentVolumeAccessMode{} + yyc4595 = true + } + } + yyh4595.End() + if yyc4595 { + *v = yyv4595 + } +} + +func (x codecSelfer1234) encSlicePersistentVolume(v []PersistentVolume, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4599 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4600 := &yyv4599 + yy4600.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4601 := *v + yyh4601, yyl4601 := z.DecSliceHelperStart() + var yyc4601 bool + if yyl4601 == 0 { + if yyv4601 == nil { + yyv4601 = []PersistentVolume{} + yyc4601 = true + } else if len(yyv4601) != 0 { + yyv4601 = yyv4601[:0] + yyc4601 = true + } + } else if yyl4601 > 0 { + var yyrr4601, yyrl4601 int + var yyrt4601 bool + if yyl4601 > cap(yyv4601) { + + yyrg4601 := len(yyv4601) > 0 + yyv24601 := yyv4601 + yyrl4601, yyrt4601 = z.DecInferLen(yyl4601, z.DecBasicHandle().MaxInitLen, 496) + if yyrt4601 { + if yyrl4601 <= cap(yyv4601) { + yyv4601 = yyv4601[:yyrl4601] + } else { + yyv4601 = make([]PersistentVolume, yyrl4601) + } + } else { + yyv4601 = make([]PersistentVolume, yyrl4601) + } + yyc4601 = true + yyrr4601 = len(yyv4601) + if yyrg4601 { + copy(yyv4601, yyv24601) + } + } else if yyl4601 != len(yyv4601) { + yyv4601 = yyv4601[:yyl4601] + yyc4601 = true + } + yyj4601 := 0 + for ; yyj4601 < yyrr4601; yyj4601++ { + yyh4601.ElemContainerState(yyj4601) + if r.TryDecodeAsNil() { + yyv4601[yyj4601] = PersistentVolume{} + } else { + yyv4602 := &yyv4601[yyj4601] + yyv4602.CodecDecodeSelf(d) + } + + } + if yyrt4601 { + for ; yyj4601 < yyl4601; yyj4601++ { + yyv4601 = append(yyv4601, PersistentVolume{}) + yyh4601.ElemContainerState(yyj4601) + if r.TryDecodeAsNil() { + yyv4601[yyj4601] = PersistentVolume{} + } else { + yyv4603 := &yyv4601[yyj4601] + yyv4603.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4601 := 0 + for ; !r.CheckBreak(); yyj4601++ { + + if yyj4601 >= len(yyv4601) { + yyv4601 = append(yyv4601, PersistentVolume{}) // var yyz4601 PersistentVolume + yyc4601 = true + } + yyh4601.ElemContainerState(yyj4601) + if yyj4601 < len(yyv4601) { + if r.TryDecodeAsNil() { + yyv4601[yyj4601] = PersistentVolume{} + } else { + yyv4604 := &yyv4601[yyj4601] + yyv4604.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4601 < len(yyv4601) { + yyv4601 = yyv4601[:yyj4601] + yyc4601 = true + } else if yyj4601 == 0 && yyv4601 == nil { + yyv4601 = []PersistentVolume{} + yyc4601 = true + } + } + yyh4601.End() + if yyc4601 { + *v = yyv4601 + } +} + +func (x codecSelfer1234) encSlicePersistentVolumeClaim(v []PersistentVolumeClaim, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4605 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4606 := &yyv4605 + yy4606.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClaim, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4607 := *v + yyh4607, yyl4607 := z.DecSliceHelperStart() + var yyc4607 bool + if yyl4607 == 0 { + if yyv4607 == nil { + yyv4607 = []PersistentVolumeClaim{} + yyc4607 = true + } else if len(yyv4607) != 0 { + yyv4607 = yyv4607[:0] + yyc4607 = true + } + } else if yyl4607 > 0 { + var yyrr4607, yyrl4607 int + var yyrt4607 bool + if yyl4607 > cap(yyv4607) { + + yyrg4607 := len(yyv4607) > 0 + yyv24607 := yyv4607 + yyrl4607, yyrt4607 = z.DecInferLen(yyl4607, z.DecBasicHandle().MaxInitLen, 368) + if yyrt4607 { + if yyrl4607 <= cap(yyv4607) { + yyv4607 = yyv4607[:yyrl4607] + } else { + yyv4607 = make([]PersistentVolumeClaim, yyrl4607) + } + } else { + yyv4607 = make([]PersistentVolumeClaim, yyrl4607) + } + yyc4607 = true + yyrr4607 = len(yyv4607) + if yyrg4607 { + copy(yyv4607, yyv24607) + } + } else if yyl4607 != len(yyv4607) { + yyv4607 = yyv4607[:yyl4607] + yyc4607 = true + } + yyj4607 := 0 + for ; yyj4607 < yyrr4607; yyj4607++ { + yyh4607.ElemContainerState(yyj4607) + if r.TryDecodeAsNil() { + yyv4607[yyj4607] = PersistentVolumeClaim{} + } else { + yyv4608 := &yyv4607[yyj4607] + yyv4608.CodecDecodeSelf(d) + } + + } + if yyrt4607 { + for ; yyj4607 < yyl4607; yyj4607++ { + yyv4607 = append(yyv4607, PersistentVolumeClaim{}) + yyh4607.ElemContainerState(yyj4607) + if r.TryDecodeAsNil() { + yyv4607[yyj4607] = PersistentVolumeClaim{} + } else { + yyv4609 := &yyv4607[yyj4607] + yyv4609.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4607 := 0 + for ; !r.CheckBreak(); yyj4607++ { + + if yyj4607 >= len(yyv4607) { + yyv4607 = append(yyv4607, PersistentVolumeClaim{}) // var yyz4607 PersistentVolumeClaim + yyc4607 = true + } + yyh4607.ElemContainerState(yyj4607) + if yyj4607 < len(yyv4607) { + if r.TryDecodeAsNil() { + yyv4607[yyj4607] = PersistentVolumeClaim{} + } else { + yyv4610 := &yyv4607[yyj4607] + yyv4610.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4607 < len(yyv4607) { + yyv4607 = yyv4607[:yyj4607] + yyc4607 = true + } else if yyj4607 == 0 && yyv4607 == nil { + yyv4607 = []PersistentVolumeClaim{} + yyc4607 = true + } + } + yyh4607.End() + if yyc4607 { + *v = yyv4607 + } +} + +func (x codecSelfer1234) encSliceKeyToPath(v []KeyToPath, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4611 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4612 := &yyv4611 + yy4612.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4613 := *v + yyh4613, yyl4613 := z.DecSliceHelperStart() + var yyc4613 bool + if yyl4613 == 0 { + if yyv4613 == nil { + yyv4613 = []KeyToPath{} + yyc4613 = true + } else if len(yyv4613) != 0 { + yyv4613 = yyv4613[:0] + yyc4613 = true + } + } else if yyl4613 > 0 { + var yyrr4613, yyrl4613 int + var yyrt4613 bool + if yyl4613 > cap(yyv4613) { + + yyrg4613 := len(yyv4613) > 0 + yyv24613 := yyv4613 + yyrl4613, yyrt4613 = z.DecInferLen(yyl4613, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4613 { + if yyrl4613 <= cap(yyv4613) { + yyv4613 = yyv4613[:yyrl4613] + } else { + yyv4613 = make([]KeyToPath, yyrl4613) + } + } else { + yyv4613 = make([]KeyToPath, yyrl4613) + } + yyc4613 = true + yyrr4613 = len(yyv4613) + if yyrg4613 { + copy(yyv4613, yyv24613) + } + } else if yyl4613 != len(yyv4613) { + yyv4613 = yyv4613[:yyl4613] + yyc4613 = true + } + yyj4613 := 0 + for ; yyj4613 < yyrr4613; yyj4613++ { + yyh4613.ElemContainerState(yyj4613) + if r.TryDecodeAsNil() { + yyv4613[yyj4613] = KeyToPath{} + } else { + yyv4614 := &yyv4613[yyj4613] + yyv4614.CodecDecodeSelf(d) + } + + } + if yyrt4613 { + for ; yyj4613 < yyl4613; yyj4613++ { + yyv4613 = append(yyv4613, KeyToPath{}) + yyh4613.ElemContainerState(yyj4613) + if r.TryDecodeAsNil() { + yyv4613[yyj4613] = KeyToPath{} + } else { + yyv4615 := &yyv4613[yyj4613] + yyv4615.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4613 := 0 + for ; !r.CheckBreak(); yyj4613++ { + + if yyj4613 >= len(yyv4613) { + yyv4613 = append(yyv4613, KeyToPath{}) // var yyz4613 KeyToPath + yyc4613 = true + } + yyh4613.ElemContainerState(yyj4613) + if yyj4613 < len(yyv4613) { + if r.TryDecodeAsNil() { + yyv4613[yyj4613] = KeyToPath{} + } else { + yyv4616 := &yyv4613[yyj4613] + yyv4616.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4613 < len(yyv4613) { + yyv4613 = yyv4613[:yyj4613] + yyc4613 = true + } else if yyj4613 == 0 && yyv4613 == nil { + yyv4613 = []KeyToPath{} + yyc4613 = true + } + } + yyh4613.End() + if yyc4613 { + *v = yyv4613 + } +} + +func (x codecSelfer1234) encSliceHTTPHeader(v []HTTPHeader, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4617 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4618 := &yyv4617 + yy4618.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4619 := *v + yyh4619, yyl4619 := z.DecSliceHelperStart() + var yyc4619 bool + if yyl4619 == 0 { + if yyv4619 == nil { + yyv4619 = []HTTPHeader{} + yyc4619 = true + } else if len(yyv4619) != 0 { + yyv4619 = yyv4619[:0] + yyc4619 = true + } + } else if yyl4619 > 0 { + var yyrr4619, yyrl4619 int + var yyrt4619 bool + if yyl4619 > cap(yyv4619) { + + yyrg4619 := len(yyv4619) > 0 + yyv24619 := yyv4619 + yyrl4619, yyrt4619 = z.DecInferLen(yyl4619, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4619 { + if yyrl4619 <= cap(yyv4619) { + yyv4619 = yyv4619[:yyrl4619] + } else { + yyv4619 = make([]HTTPHeader, yyrl4619) + } + } else { + yyv4619 = make([]HTTPHeader, yyrl4619) + } + yyc4619 = true + yyrr4619 = len(yyv4619) + if yyrg4619 { + copy(yyv4619, yyv24619) + } + } else if yyl4619 != len(yyv4619) { + yyv4619 = yyv4619[:yyl4619] + yyc4619 = true + } + yyj4619 := 0 + for ; yyj4619 < yyrr4619; yyj4619++ { + yyh4619.ElemContainerState(yyj4619) + if r.TryDecodeAsNil() { + yyv4619[yyj4619] = HTTPHeader{} + } else { + yyv4620 := &yyv4619[yyj4619] + yyv4620.CodecDecodeSelf(d) + } + + } + if yyrt4619 { + for ; yyj4619 < yyl4619; yyj4619++ { + yyv4619 = append(yyv4619, HTTPHeader{}) + yyh4619.ElemContainerState(yyj4619) + if r.TryDecodeAsNil() { + yyv4619[yyj4619] = HTTPHeader{} + } else { + yyv4621 := &yyv4619[yyj4619] + yyv4621.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4619 := 0 + for ; !r.CheckBreak(); yyj4619++ { + + if yyj4619 >= len(yyv4619) { + yyv4619 = append(yyv4619, HTTPHeader{}) // var yyz4619 HTTPHeader + yyc4619 = true + } + yyh4619.ElemContainerState(yyj4619) + if yyj4619 < len(yyv4619) { + if r.TryDecodeAsNil() { + yyv4619[yyj4619] = HTTPHeader{} + } else { + yyv4622 := &yyv4619[yyj4619] + yyv4622.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4619 < len(yyv4619) { + yyv4619 = yyv4619[:yyj4619] + yyc4619 = true + } else if yyj4619 == 0 && yyv4619 == nil { + yyv4619 = []HTTPHeader{} + yyc4619 = true + } + } + yyh4619.End() + if yyc4619 { + *v = yyv4619 + } +} + func (x codecSelfer1234) encSliceCapability(v []Capability, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4591 := range v { + for _, yyv4623 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4591.CodecEncodeSelf(e) + yyv4623.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57527,75 +57989,75 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4592 := *v - yyh4592, yyl4592 := z.DecSliceHelperStart() - var yyc4592 bool - if yyl4592 == 0 { - if yyv4592 == nil { - yyv4592 = []Capability{} - yyc4592 = true - } else if len(yyv4592) != 0 { - yyv4592 = yyv4592[:0] - yyc4592 = true + yyv4624 := *v + yyh4624, yyl4624 := z.DecSliceHelperStart() + var yyc4624 bool + if yyl4624 == 0 { + if yyv4624 == nil { + yyv4624 = []Capability{} + yyc4624 = true + } else if len(yyv4624) != 0 { + yyv4624 = yyv4624[:0] + yyc4624 = true } - } else if yyl4592 > 0 { - var yyrr4592, yyrl4592 int - var yyrt4592 bool - if yyl4592 > cap(yyv4592) { + } else if yyl4624 > 0 { + var yyrr4624, yyrl4624 int + var yyrt4624 bool + if yyl4624 > cap(yyv4624) { - yyrl4592, yyrt4592 = z.DecInferLen(yyl4592, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4592 { - if yyrl4592 <= cap(yyv4592) { - yyv4592 = yyv4592[:yyrl4592] + yyrl4624, yyrt4624 = z.DecInferLen(yyl4624, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4624 { + if yyrl4624 <= cap(yyv4624) { + yyv4624 = yyv4624[:yyrl4624] } else { - yyv4592 = make([]Capability, yyrl4592) + yyv4624 = make([]Capability, yyrl4624) } } else { - yyv4592 = make([]Capability, yyrl4592) + yyv4624 = make([]Capability, yyrl4624) } - yyc4592 = true - yyrr4592 = len(yyv4592) - } else if yyl4592 != len(yyv4592) { - yyv4592 = yyv4592[:yyl4592] - yyc4592 = true + yyc4624 = true + yyrr4624 = len(yyv4624) + } else if yyl4624 != len(yyv4624) { + yyv4624 = yyv4624[:yyl4624] + yyc4624 = true } - yyj4592 := 0 - for ; yyj4592 < yyrr4592; yyj4592++ { - yyh4592.ElemContainerState(yyj4592) + yyj4624 := 0 + for ; yyj4624 < yyrr4624; yyj4624++ { + yyh4624.ElemContainerState(yyj4624) if r.TryDecodeAsNil() { - yyv4592[yyj4592] = "" + yyv4624[yyj4624] = "" } else { - yyv4592[yyj4592] = Capability(r.DecodeString()) + yyv4624[yyj4624] = Capability(r.DecodeString()) } } - if yyrt4592 { - for ; yyj4592 < yyl4592; yyj4592++ { - yyv4592 = append(yyv4592, "") - yyh4592.ElemContainerState(yyj4592) + if yyrt4624 { + for ; yyj4624 < yyl4624; yyj4624++ { + yyv4624 = append(yyv4624, "") + yyh4624.ElemContainerState(yyj4624) if r.TryDecodeAsNil() { - yyv4592[yyj4592] = "" + yyv4624[yyj4624] = "" } else { - yyv4592[yyj4592] = Capability(r.DecodeString()) + yyv4624[yyj4624] = Capability(r.DecodeString()) } } } } else { - yyj4592 := 0 - for ; !r.CheckBreak(); yyj4592++ { + yyj4624 := 0 + for ; !r.CheckBreak(); yyj4624++ { - if yyj4592 >= len(yyv4592) { - yyv4592 = append(yyv4592, "") // var yyz4592 Capability - yyc4592 = true + if yyj4624 >= len(yyv4624) { + yyv4624 = append(yyv4624, "") // var yyz4624 Capability + yyc4624 = true } - yyh4592.ElemContainerState(yyj4592) - if yyj4592 < len(yyv4592) { + yyh4624.ElemContainerState(yyj4624) + if yyj4624 < len(yyv4624) { if r.TryDecodeAsNil() { - yyv4592[yyj4592] = "" + yyv4624[yyj4624] = "" } else { - yyv4592[yyj4592] = Capability(r.DecodeString()) + yyv4624[yyj4624] = Capability(r.DecodeString()) } } else { @@ -57603,17 +58065,17 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode } } - if yyj4592 < len(yyv4592) { - yyv4592 = yyv4592[:yyj4592] - yyc4592 = true - } else if yyj4592 == 0 && yyv4592 == nil { - yyv4592 = []Capability{} - yyc4592 = true + if yyj4624 < len(yyv4624) { + yyv4624 = yyv4624[:yyj4624] + yyc4624 = true + } else if yyj4624 == 0 && yyv4624 == nil { + yyv4624 = []Capability{} + yyc4624 = true } } - yyh4592.End() - if yyc4592 { - *v = yyv4592 + yyh4624.End() + if yyc4624 { + *v = yyv4624 } } @@ -57622,10 +58084,10 @@ func (x codecSelfer1234) encSliceContainerPort(v []ContainerPort, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4596 := range v { + for _, yyv4628 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4597 := &yyv4596 - yy4597.CodecEncodeSelf(e) + yy4629 := &yyv4628 + yy4629.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57635,83 +58097,83 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4598 := *v - yyh4598, yyl4598 := z.DecSliceHelperStart() - var yyc4598 bool - if yyl4598 == 0 { - if yyv4598 == nil { - yyv4598 = []ContainerPort{} - yyc4598 = true - } else if len(yyv4598) != 0 { - yyv4598 = yyv4598[:0] - yyc4598 = true + yyv4630 := *v + yyh4630, yyl4630 := z.DecSliceHelperStart() + var yyc4630 bool + if yyl4630 == 0 { + if yyv4630 == nil { + yyv4630 = []ContainerPort{} + yyc4630 = true + } else if len(yyv4630) != 0 { + yyv4630 = yyv4630[:0] + yyc4630 = true } - } else if yyl4598 > 0 { - var yyrr4598, yyrl4598 int - var yyrt4598 bool - if yyl4598 > cap(yyv4598) { + } else if yyl4630 > 0 { + var yyrr4630, yyrl4630 int + var yyrt4630 bool + if yyl4630 > cap(yyv4630) { - yyrg4598 := len(yyv4598) > 0 - yyv24598 := yyv4598 - yyrl4598, yyrt4598 = z.DecInferLen(yyl4598, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4598 { - if yyrl4598 <= cap(yyv4598) { - yyv4598 = yyv4598[:yyrl4598] + yyrg4630 := len(yyv4630) > 0 + yyv24630 := yyv4630 + yyrl4630, yyrt4630 = z.DecInferLen(yyl4630, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4630 { + if yyrl4630 <= cap(yyv4630) { + yyv4630 = yyv4630[:yyrl4630] } else { - yyv4598 = make([]ContainerPort, yyrl4598) + yyv4630 = make([]ContainerPort, yyrl4630) } } else { - yyv4598 = make([]ContainerPort, yyrl4598) + yyv4630 = make([]ContainerPort, yyrl4630) } - yyc4598 = true - yyrr4598 = len(yyv4598) - if yyrg4598 { - copy(yyv4598, yyv24598) + yyc4630 = true + yyrr4630 = len(yyv4630) + if yyrg4630 { + copy(yyv4630, yyv24630) } - } else if yyl4598 != len(yyv4598) { - yyv4598 = yyv4598[:yyl4598] - yyc4598 = true + } else if yyl4630 != len(yyv4630) { + yyv4630 = yyv4630[:yyl4630] + yyc4630 = true } - yyj4598 := 0 - for ; yyj4598 < yyrr4598; yyj4598++ { - yyh4598.ElemContainerState(yyj4598) + yyj4630 := 0 + for ; yyj4630 < yyrr4630; yyj4630++ { + yyh4630.ElemContainerState(yyj4630) if r.TryDecodeAsNil() { - yyv4598[yyj4598] = ContainerPort{} + yyv4630[yyj4630] = ContainerPort{} } else { - yyv4599 := &yyv4598[yyj4598] - yyv4599.CodecDecodeSelf(d) + yyv4631 := &yyv4630[yyj4630] + yyv4631.CodecDecodeSelf(d) } } - if yyrt4598 { - for ; yyj4598 < yyl4598; yyj4598++ { - yyv4598 = append(yyv4598, ContainerPort{}) - yyh4598.ElemContainerState(yyj4598) + if yyrt4630 { + for ; yyj4630 < yyl4630; yyj4630++ { + yyv4630 = append(yyv4630, ContainerPort{}) + yyh4630.ElemContainerState(yyj4630) if r.TryDecodeAsNil() { - yyv4598[yyj4598] = ContainerPort{} + yyv4630[yyj4630] = ContainerPort{} } else { - yyv4600 := &yyv4598[yyj4598] - yyv4600.CodecDecodeSelf(d) + yyv4632 := &yyv4630[yyj4630] + yyv4632.CodecDecodeSelf(d) } } } } else { - yyj4598 := 0 - for ; !r.CheckBreak(); yyj4598++ { + yyj4630 := 0 + for ; !r.CheckBreak(); yyj4630++ { - if yyj4598 >= len(yyv4598) { - yyv4598 = append(yyv4598, ContainerPort{}) // var yyz4598 ContainerPort - yyc4598 = true + if yyj4630 >= len(yyv4630) { + yyv4630 = append(yyv4630, ContainerPort{}) // var yyz4630 ContainerPort + yyc4630 = true } - yyh4598.ElemContainerState(yyj4598) - if yyj4598 < len(yyv4598) { + yyh4630.ElemContainerState(yyj4630) + if yyj4630 < len(yyv4630) { if r.TryDecodeAsNil() { - yyv4598[yyj4598] = ContainerPort{} + yyv4630[yyj4630] = ContainerPort{} } else { - yyv4601 := &yyv4598[yyj4598] - yyv4601.CodecDecodeSelf(d) + yyv4633 := &yyv4630[yyj4630] + yyv4633.CodecDecodeSelf(d) } } else { @@ -57719,17 +58181,133 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. } } - if yyj4598 < len(yyv4598) { - yyv4598 = yyv4598[:yyj4598] - yyc4598 = true - } else if yyj4598 == 0 && yyv4598 == nil { - yyv4598 = []ContainerPort{} - yyc4598 = true + if yyj4630 < len(yyv4630) { + yyv4630 = yyv4630[:yyj4630] + yyc4630 = true + } else if yyj4630 == 0 && yyv4630 == nil { + yyv4630 = []ContainerPort{} + yyc4630 = true } } - yyh4598.End() - if yyc4598 { - *v = yyv4598 + yyh4630.End() + if yyc4630 { + *v = yyv4630 + } +} + +func (x codecSelfer1234) encSliceEnvFromSource(v []EnvFromSource, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4634 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4635 := &yyv4634 + yy4635.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceEnvFromSource(v *[]EnvFromSource, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4636 := *v + yyh4636, yyl4636 := z.DecSliceHelperStart() + var yyc4636 bool + if yyl4636 == 0 { + if yyv4636 == nil { + yyv4636 = []EnvFromSource{} + yyc4636 = true + } else if len(yyv4636) != 0 { + yyv4636 = yyv4636[:0] + yyc4636 = true + } + } else if yyl4636 > 0 { + var yyrr4636, yyrl4636 int + var yyrt4636 bool + if yyl4636 > cap(yyv4636) { + + yyrg4636 := len(yyv4636) > 0 + yyv24636 := yyv4636 + yyrl4636, yyrt4636 = z.DecInferLen(yyl4636, z.DecBasicHandle().MaxInitLen, 24) + if yyrt4636 { + if yyrl4636 <= cap(yyv4636) { + yyv4636 = yyv4636[:yyrl4636] + } else { + yyv4636 = make([]EnvFromSource, yyrl4636) + } + } else { + yyv4636 = make([]EnvFromSource, yyrl4636) + } + yyc4636 = true + yyrr4636 = len(yyv4636) + if yyrg4636 { + copy(yyv4636, yyv24636) + } + } else if yyl4636 != len(yyv4636) { + yyv4636 = yyv4636[:yyl4636] + yyc4636 = true + } + yyj4636 := 0 + for ; yyj4636 < yyrr4636; yyj4636++ { + yyh4636.ElemContainerState(yyj4636) + if r.TryDecodeAsNil() { + yyv4636[yyj4636] = EnvFromSource{} + } else { + yyv4637 := &yyv4636[yyj4636] + yyv4637.CodecDecodeSelf(d) + } + + } + if yyrt4636 { + for ; yyj4636 < yyl4636; yyj4636++ { + yyv4636 = append(yyv4636, EnvFromSource{}) + yyh4636.ElemContainerState(yyj4636) + if r.TryDecodeAsNil() { + yyv4636[yyj4636] = EnvFromSource{} + } else { + yyv4638 := &yyv4636[yyj4636] + yyv4638.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4636 := 0 + for ; !r.CheckBreak(); yyj4636++ { + + if yyj4636 >= len(yyv4636) { + yyv4636 = append(yyv4636, EnvFromSource{}) // var yyz4636 EnvFromSource + yyc4636 = true + } + yyh4636.ElemContainerState(yyj4636) + if yyj4636 < len(yyv4636) { + if r.TryDecodeAsNil() { + yyv4636[yyj4636] = EnvFromSource{} + } else { + yyv4639 := &yyv4636[yyj4636] + yyv4639.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4636 < len(yyv4636) { + yyv4636 = yyv4636[:yyj4636] + yyc4636 = true + } else if yyj4636 == 0 && yyv4636 == nil { + yyv4636 = []EnvFromSource{} + yyc4636 = true + } + } + yyh4636.End() + if yyc4636 { + *v = yyv4636 } } @@ -57738,10 +58316,10 @@ func (x codecSelfer1234) encSliceEnvVar(v []EnvVar, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4602 := range v { + for _, yyv4640 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4603 := &yyv4602 - yy4603.CodecEncodeSelf(e) + yy4641 := &yyv4640 + yy4641.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57751,83 +58329,83 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4604 := *v - yyh4604, yyl4604 := z.DecSliceHelperStart() - var yyc4604 bool - if yyl4604 == 0 { - if yyv4604 == nil { - yyv4604 = []EnvVar{} - yyc4604 = true - } else if len(yyv4604) != 0 { - yyv4604 = yyv4604[:0] - yyc4604 = true + yyv4642 := *v + yyh4642, yyl4642 := z.DecSliceHelperStart() + var yyc4642 bool + if yyl4642 == 0 { + if yyv4642 == nil { + yyv4642 = []EnvVar{} + yyc4642 = true + } else if len(yyv4642) != 0 { + yyv4642 = yyv4642[:0] + yyc4642 = true } - } else if yyl4604 > 0 { - var yyrr4604, yyrl4604 int - var yyrt4604 bool - if yyl4604 > cap(yyv4604) { + } else if yyl4642 > 0 { + var yyrr4642, yyrl4642 int + var yyrt4642 bool + if yyl4642 > cap(yyv4642) { - yyrg4604 := len(yyv4604) > 0 - yyv24604 := yyv4604 - yyrl4604, yyrt4604 = z.DecInferLen(yyl4604, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4604 { - if yyrl4604 <= cap(yyv4604) { - yyv4604 = yyv4604[:yyrl4604] + yyrg4642 := len(yyv4642) > 0 + yyv24642 := yyv4642 + yyrl4642, yyrt4642 = z.DecInferLen(yyl4642, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4642 { + if yyrl4642 <= cap(yyv4642) { + yyv4642 = yyv4642[:yyrl4642] } else { - yyv4604 = make([]EnvVar, yyrl4604) + yyv4642 = make([]EnvVar, yyrl4642) } } else { - yyv4604 = make([]EnvVar, yyrl4604) + yyv4642 = make([]EnvVar, yyrl4642) } - yyc4604 = true - yyrr4604 = len(yyv4604) - if yyrg4604 { - copy(yyv4604, yyv24604) + yyc4642 = true + yyrr4642 = len(yyv4642) + if yyrg4642 { + copy(yyv4642, yyv24642) } - } else if yyl4604 != len(yyv4604) { - yyv4604 = yyv4604[:yyl4604] - yyc4604 = true + } else if yyl4642 != len(yyv4642) { + yyv4642 = yyv4642[:yyl4642] + yyc4642 = true } - yyj4604 := 0 - for ; yyj4604 < yyrr4604; yyj4604++ { - yyh4604.ElemContainerState(yyj4604) + yyj4642 := 0 + for ; yyj4642 < yyrr4642; yyj4642++ { + yyh4642.ElemContainerState(yyj4642) if r.TryDecodeAsNil() { - yyv4604[yyj4604] = EnvVar{} + yyv4642[yyj4642] = EnvVar{} } else { - yyv4605 := &yyv4604[yyj4604] - yyv4605.CodecDecodeSelf(d) + yyv4643 := &yyv4642[yyj4642] + yyv4643.CodecDecodeSelf(d) } } - if yyrt4604 { - for ; yyj4604 < yyl4604; yyj4604++ { - yyv4604 = append(yyv4604, EnvVar{}) - yyh4604.ElemContainerState(yyj4604) + if yyrt4642 { + for ; yyj4642 < yyl4642; yyj4642++ { + yyv4642 = append(yyv4642, EnvVar{}) + yyh4642.ElemContainerState(yyj4642) if r.TryDecodeAsNil() { - yyv4604[yyj4604] = EnvVar{} + yyv4642[yyj4642] = EnvVar{} } else { - yyv4606 := &yyv4604[yyj4604] - yyv4606.CodecDecodeSelf(d) + yyv4644 := &yyv4642[yyj4642] + yyv4644.CodecDecodeSelf(d) } } } } else { - yyj4604 := 0 - for ; !r.CheckBreak(); yyj4604++ { + yyj4642 := 0 + for ; !r.CheckBreak(); yyj4642++ { - if yyj4604 >= len(yyv4604) { - yyv4604 = append(yyv4604, EnvVar{}) // var yyz4604 EnvVar - yyc4604 = true + if yyj4642 >= len(yyv4642) { + yyv4642 = append(yyv4642, EnvVar{}) // var yyz4642 EnvVar + yyc4642 = true } - yyh4604.ElemContainerState(yyj4604) - if yyj4604 < len(yyv4604) { + yyh4642.ElemContainerState(yyj4642) + if yyj4642 < len(yyv4642) { if r.TryDecodeAsNil() { - yyv4604[yyj4604] = EnvVar{} + yyv4642[yyj4642] = EnvVar{} } else { - yyv4607 := &yyv4604[yyj4604] - yyv4607.CodecDecodeSelf(d) + yyv4645 := &yyv4642[yyj4642] + yyv4645.CodecDecodeSelf(d) } } else { @@ -57835,17 +58413,17 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { } } - if yyj4604 < len(yyv4604) { - yyv4604 = yyv4604[:yyj4604] - yyc4604 = true - } else if yyj4604 == 0 && yyv4604 == nil { - yyv4604 = []EnvVar{} - yyc4604 = true + if yyj4642 < len(yyv4642) { + yyv4642 = yyv4642[:yyj4642] + yyc4642 = true + } else if yyj4642 == 0 && yyv4642 == nil { + yyv4642 = []EnvVar{} + yyc4642 = true } } - yyh4604.End() - if yyc4604 { - *v = yyv4604 + yyh4642.End() + if yyc4642 { + *v = yyv4642 } } @@ -57854,10 +58432,10 @@ func (x codecSelfer1234) encSliceVolumeMount(v []VolumeMount, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4608 := range v { + for _, yyv4646 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4609 := &yyv4608 - yy4609.CodecEncodeSelf(e) + yy4647 := &yyv4646 + yy4647.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57867,83 +58445,83 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4610 := *v - yyh4610, yyl4610 := z.DecSliceHelperStart() - var yyc4610 bool - if yyl4610 == 0 { - if yyv4610 == nil { - yyv4610 = []VolumeMount{} - yyc4610 = true - } else if len(yyv4610) != 0 { - yyv4610 = yyv4610[:0] - yyc4610 = true + yyv4648 := *v + yyh4648, yyl4648 := z.DecSliceHelperStart() + var yyc4648 bool + if yyl4648 == 0 { + if yyv4648 == nil { + yyv4648 = []VolumeMount{} + yyc4648 = true + } else if len(yyv4648) != 0 { + yyv4648 = yyv4648[:0] + yyc4648 = true } - } else if yyl4610 > 0 { - var yyrr4610, yyrl4610 int - var yyrt4610 bool - if yyl4610 > cap(yyv4610) { + } else if yyl4648 > 0 { + var yyrr4648, yyrl4648 int + var yyrt4648 bool + if yyl4648 > cap(yyv4648) { - yyrg4610 := len(yyv4610) > 0 - yyv24610 := yyv4610 - yyrl4610, yyrt4610 = z.DecInferLen(yyl4610, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4610 { - if yyrl4610 <= cap(yyv4610) { - yyv4610 = yyv4610[:yyrl4610] + yyrg4648 := len(yyv4648) > 0 + yyv24648 := yyv4648 + yyrl4648, yyrt4648 = z.DecInferLen(yyl4648, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4648 { + if yyrl4648 <= cap(yyv4648) { + yyv4648 = yyv4648[:yyrl4648] } else { - yyv4610 = make([]VolumeMount, yyrl4610) + yyv4648 = make([]VolumeMount, yyrl4648) } } else { - yyv4610 = make([]VolumeMount, yyrl4610) + yyv4648 = make([]VolumeMount, yyrl4648) } - yyc4610 = true - yyrr4610 = len(yyv4610) - if yyrg4610 { - copy(yyv4610, yyv24610) + yyc4648 = true + yyrr4648 = len(yyv4648) + if yyrg4648 { + copy(yyv4648, yyv24648) } - } else if yyl4610 != len(yyv4610) { - yyv4610 = yyv4610[:yyl4610] - yyc4610 = true + } else if yyl4648 != len(yyv4648) { + yyv4648 = yyv4648[:yyl4648] + yyc4648 = true } - yyj4610 := 0 - for ; yyj4610 < yyrr4610; yyj4610++ { - yyh4610.ElemContainerState(yyj4610) + yyj4648 := 0 + for ; yyj4648 < yyrr4648; yyj4648++ { + yyh4648.ElemContainerState(yyj4648) if r.TryDecodeAsNil() { - yyv4610[yyj4610] = VolumeMount{} + yyv4648[yyj4648] = VolumeMount{} } else { - yyv4611 := &yyv4610[yyj4610] - yyv4611.CodecDecodeSelf(d) + yyv4649 := &yyv4648[yyj4648] + yyv4649.CodecDecodeSelf(d) } } - if yyrt4610 { - for ; yyj4610 < yyl4610; yyj4610++ { - yyv4610 = append(yyv4610, VolumeMount{}) - yyh4610.ElemContainerState(yyj4610) + if yyrt4648 { + for ; yyj4648 < yyl4648; yyj4648++ { + yyv4648 = append(yyv4648, VolumeMount{}) + yyh4648.ElemContainerState(yyj4648) if r.TryDecodeAsNil() { - yyv4610[yyj4610] = VolumeMount{} + yyv4648[yyj4648] = VolumeMount{} } else { - yyv4612 := &yyv4610[yyj4610] - yyv4612.CodecDecodeSelf(d) + yyv4650 := &yyv4648[yyj4648] + yyv4650.CodecDecodeSelf(d) } } } } else { - yyj4610 := 0 - for ; !r.CheckBreak(); yyj4610++ { + yyj4648 := 0 + for ; !r.CheckBreak(); yyj4648++ { - if yyj4610 >= len(yyv4610) { - yyv4610 = append(yyv4610, VolumeMount{}) // var yyz4610 VolumeMount - yyc4610 = true + if yyj4648 >= len(yyv4648) { + yyv4648 = append(yyv4648, VolumeMount{}) // var yyz4648 VolumeMount + yyc4648 = true } - yyh4610.ElemContainerState(yyj4610) - if yyj4610 < len(yyv4610) { + yyh4648.ElemContainerState(yyj4648) + if yyj4648 < len(yyv4648) { if r.TryDecodeAsNil() { - yyv4610[yyj4610] = VolumeMount{} + yyv4648[yyj4648] = VolumeMount{} } else { - yyv4613 := &yyv4610[yyj4610] - yyv4613.CodecDecodeSelf(d) + yyv4651 := &yyv4648[yyj4648] + yyv4651.CodecDecodeSelf(d) } } else { @@ -57951,17 +58529,17 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco } } - if yyj4610 < len(yyv4610) { - yyv4610 = yyv4610[:yyj4610] - yyc4610 = true - } else if yyj4610 == 0 && yyv4610 == nil { - yyv4610 = []VolumeMount{} - yyc4610 = true + if yyj4648 < len(yyv4648) { + yyv4648 = yyv4648[:yyj4648] + yyc4648 = true + } else if yyj4648 == 0 && yyv4648 == nil { + yyv4648 = []VolumeMount{} + yyc4648 = true } } - yyh4610.End() - if yyc4610 { - *v = yyv4610 + yyh4648.End() + if yyc4648 { + *v = yyv4648 } } @@ -57970,10 +58548,10 @@ func (x codecSelfer1234) encSliceNodeSelectorTerm(v []NodeSelectorTerm, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4614 := range v { + for _, yyv4652 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4615 := &yyv4614 - yy4615.CodecEncodeSelf(e) + yy4653 := &yyv4652 + yy4653.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57983,83 +58561,83 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4616 := *v - yyh4616, yyl4616 := z.DecSliceHelperStart() - var yyc4616 bool - if yyl4616 == 0 { - if yyv4616 == nil { - yyv4616 = []NodeSelectorTerm{} - yyc4616 = true - } else if len(yyv4616) != 0 { - yyv4616 = yyv4616[:0] - yyc4616 = true + yyv4654 := *v + yyh4654, yyl4654 := z.DecSliceHelperStart() + var yyc4654 bool + if yyl4654 == 0 { + if yyv4654 == nil { + yyv4654 = []NodeSelectorTerm{} + yyc4654 = true + } else if len(yyv4654) != 0 { + yyv4654 = yyv4654[:0] + yyc4654 = true } - } else if yyl4616 > 0 { - var yyrr4616, yyrl4616 int - var yyrt4616 bool - if yyl4616 > cap(yyv4616) { + } else if yyl4654 > 0 { + var yyrr4654, yyrl4654 int + var yyrt4654 bool + if yyl4654 > cap(yyv4654) { - yyrg4616 := len(yyv4616) > 0 - yyv24616 := yyv4616 - yyrl4616, yyrt4616 = z.DecInferLen(yyl4616, z.DecBasicHandle().MaxInitLen, 24) - if yyrt4616 { - if yyrl4616 <= cap(yyv4616) { - yyv4616 = yyv4616[:yyrl4616] + yyrg4654 := len(yyv4654) > 0 + yyv24654 := yyv4654 + yyrl4654, yyrt4654 = z.DecInferLen(yyl4654, z.DecBasicHandle().MaxInitLen, 24) + if yyrt4654 { + if yyrl4654 <= cap(yyv4654) { + yyv4654 = yyv4654[:yyrl4654] } else { - yyv4616 = make([]NodeSelectorTerm, yyrl4616) + yyv4654 = make([]NodeSelectorTerm, yyrl4654) } } else { - yyv4616 = make([]NodeSelectorTerm, yyrl4616) + yyv4654 = make([]NodeSelectorTerm, yyrl4654) } - yyc4616 = true - yyrr4616 = len(yyv4616) - if yyrg4616 { - copy(yyv4616, yyv24616) + yyc4654 = true + yyrr4654 = len(yyv4654) + if yyrg4654 { + copy(yyv4654, yyv24654) } - } else if yyl4616 != len(yyv4616) { - yyv4616 = yyv4616[:yyl4616] - yyc4616 = true + } else if yyl4654 != len(yyv4654) { + yyv4654 = yyv4654[:yyl4654] + yyc4654 = true } - yyj4616 := 0 - for ; yyj4616 < yyrr4616; yyj4616++ { - yyh4616.ElemContainerState(yyj4616) + yyj4654 := 0 + for ; yyj4654 < yyrr4654; yyj4654++ { + yyh4654.ElemContainerState(yyj4654) if r.TryDecodeAsNil() { - yyv4616[yyj4616] = NodeSelectorTerm{} + yyv4654[yyj4654] = NodeSelectorTerm{} } else { - yyv4617 := &yyv4616[yyj4616] - yyv4617.CodecDecodeSelf(d) + yyv4655 := &yyv4654[yyj4654] + yyv4655.CodecDecodeSelf(d) } } - if yyrt4616 { - for ; yyj4616 < yyl4616; yyj4616++ { - yyv4616 = append(yyv4616, NodeSelectorTerm{}) - yyh4616.ElemContainerState(yyj4616) + if yyrt4654 { + for ; yyj4654 < yyl4654; yyj4654++ { + yyv4654 = append(yyv4654, NodeSelectorTerm{}) + yyh4654.ElemContainerState(yyj4654) if r.TryDecodeAsNil() { - yyv4616[yyj4616] = NodeSelectorTerm{} + yyv4654[yyj4654] = NodeSelectorTerm{} } else { - yyv4618 := &yyv4616[yyj4616] - yyv4618.CodecDecodeSelf(d) + yyv4656 := &yyv4654[yyj4654] + yyv4656.CodecDecodeSelf(d) } } } } else { - yyj4616 := 0 - for ; !r.CheckBreak(); yyj4616++ { + yyj4654 := 0 + for ; !r.CheckBreak(); yyj4654++ { - if yyj4616 >= len(yyv4616) { - yyv4616 = append(yyv4616, NodeSelectorTerm{}) // var yyz4616 NodeSelectorTerm - yyc4616 = true + if yyj4654 >= len(yyv4654) { + yyv4654 = append(yyv4654, NodeSelectorTerm{}) // var yyz4654 NodeSelectorTerm + yyc4654 = true } - yyh4616.ElemContainerState(yyj4616) - if yyj4616 < len(yyv4616) { + yyh4654.ElemContainerState(yyj4654) + if yyj4654 < len(yyv4654) { if r.TryDecodeAsNil() { - yyv4616[yyj4616] = NodeSelectorTerm{} + yyv4654[yyj4654] = NodeSelectorTerm{} } else { - yyv4619 := &yyv4616[yyj4616] - yyv4619.CodecDecodeSelf(d) + yyv4657 := &yyv4654[yyj4654] + yyv4657.CodecDecodeSelf(d) } } else { @@ -58067,17 +58645,17 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code } } - if yyj4616 < len(yyv4616) { - yyv4616 = yyv4616[:yyj4616] - yyc4616 = true - } else if yyj4616 == 0 && yyv4616 == nil { - yyv4616 = []NodeSelectorTerm{} - yyc4616 = true + if yyj4654 < len(yyv4654) { + yyv4654 = yyv4654[:yyj4654] + yyc4654 = true + } else if yyj4654 == 0 && yyv4654 == nil { + yyv4654 = []NodeSelectorTerm{} + yyc4654 = true } } - yyh4616.End() - if yyc4616 { - *v = yyv4616 + yyh4654.End() + if yyc4654 { + *v = yyv4654 } } @@ -58086,10 +58664,10 @@ func (x codecSelfer1234) encSliceNodeSelectorRequirement(v []NodeSelectorRequire z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4620 := range v { + for _, yyv4658 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4621 := &yyv4620 - yy4621.CodecEncodeSelf(e) + yy4659 := &yyv4658 + yy4659.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58099,83 +58677,83 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4622 := *v - yyh4622, yyl4622 := z.DecSliceHelperStart() - var yyc4622 bool - if yyl4622 == 0 { - if yyv4622 == nil { - yyv4622 = []NodeSelectorRequirement{} - yyc4622 = true - } else if len(yyv4622) != 0 { - yyv4622 = yyv4622[:0] - yyc4622 = true + yyv4660 := *v + yyh4660, yyl4660 := z.DecSliceHelperStart() + var yyc4660 bool + if yyl4660 == 0 { + if yyv4660 == nil { + yyv4660 = []NodeSelectorRequirement{} + yyc4660 = true + } else if len(yyv4660) != 0 { + yyv4660 = yyv4660[:0] + yyc4660 = true } - } else if yyl4622 > 0 { - var yyrr4622, yyrl4622 int - var yyrt4622 bool - if yyl4622 > cap(yyv4622) { + } else if yyl4660 > 0 { + var yyrr4660, yyrl4660 int + var yyrt4660 bool + if yyl4660 > cap(yyv4660) { - yyrg4622 := len(yyv4622) > 0 - yyv24622 := yyv4622 - yyrl4622, yyrt4622 = z.DecInferLen(yyl4622, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4622 { - if yyrl4622 <= cap(yyv4622) { - yyv4622 = yyv4622[:yyrl4622] + yyrg4660 := len(yyv4660) > 0 + yyv24660 := yyv4660 + yyrl4660, yyrt4660 = z.DecInferLen(yyl4660, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4660 { + if yyrl4660 <= cap(yyv4660) { + yyv4660 = yyv4660[:yyrl4660] } else { - yyv4622 = make([]NodeSelectorRequirement, yyrl4622) + yyv4660 = make([]NodeSelectorRequirement, yyrl4660) } } else { - yyv4622 = make([]NodeSelectorRequirement, yyrl4622) + yyv4660 = make([]NodeSelectorRequirement, yyrl4660) } - yyc4622 = true - yyrr4622 = len(yyv4622) - if yyrg4622 { - copy(yyv4622, yyv24622) + yyc4660 = true + yyrr4660 = len(yyv4660) + if yyrg4660 { + copy(yyv4660, yyv24660) } - } else if yyl4622 != len(yyv4622) { - yyv4622 = yyv4622[:yyl4622] - yyc4622 = true + } else if yyl4660 != len(yyv4660) { + yyv4660 = yyv4660[:yyl4660] + yyc4660 = true } - yyj4622 := 0 - for ; yyj4622 < yyrr4622; yyj4622++ { - yyh4622.ElemContainerState(yyj4622) + yyj4660 := 0 + for ; yyj4660 < yyrr4660; yyj4660++ { + yyh4660.ElemContainerState(yyj4660) if r.TryDecodeAsNil() { - yyv4622[yyj4622] = NodeSelectorRequirement{} + yyv4660[yyj4660] = NodeSelectorRequirement{} } else { - yyv4623 := &yyv4622[yyj4622] - yyv4623.CodecDecodeSelf(d) + yyv4661 := &yyv4660[yyj4660] + yyv4661.CodecDecodeSelf(d) } } - if yyrt4622 { - for ; yyj4622 < yyl4622; yyj4622++ { - yyv4622 = append(yyv4622, NodeSelectorRequirement{}) - yyh4622.ElemContainerState(yyj4622) + if yyrt4660 { + for ; yyj4660 < yyl4660; yyj4660++ { + yyv4660 = append(yyv4660, NodeSelectorRequirement{}) + yyh4660.ElemContainerState(yyj4660) if r.TryDecodeAsNil() { - yyv4622[yyj4622] = NodeSelectorRequirement{} + yyv4660[yyj4660] = NodeSelectorRequirement{} } else { - yyv4624 := &yyv4622[yyj4622] - yyv4624.CodecDecodeSelf(d) + yyv4662 := &yyv4660[yyj4660] + yyv4662.CodecDecodeSelf(d) } } } } else { - yyj4622 := 0 - for ; !r.CheckBreak(); yyj4622++ { + yyj4660 := 0 + for ; !r.CheckBreak(); yyj4660++ { - if yyj4622 >= len(yyv4622) { - yyv4622 = append(yyv4622, NodeSelectorRequirement{}) // var yyz4622 NodeSelectorRequirement - yyc4622 = true + if yyj4660 >= len(yyv4660) { + yyv4660 = append(yyv4660, NodeSelectorRequirement{}) // var yyz4660 NodeSelectorRequirement + yyc4660 = true } - yyh4622.ElemContainerState(yyj4622) - if yyj4622 < len(yyv4622) { + yyh4660.ElemContainerState(yyj4660) + if yyj4660 < len(yyv4660) { if r.TryDecodeAsNil() { - yyv4622[yyj4622] = NodeSelectorRequirement{} + yyv4660[yyj4660] = NodeSelectorRequirement{} } else { - yyv4625 := &yyv4622[yyj4622] - yyv4625.CodecDecodeSelf(d) + yyv4663 := &yyv4660[yyj4660] + yyv4663.CodecDecodeSelf(d) } } else { @@ -58183,17 +58761,17 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir } } - if yyj4622 < len(yyv4622) { - yyv4622 = yyv4622[:yyj4622] - yyc4622 = true - } else if yyj4622 == 0 && yyv4622 == nil { - yyv4622 = []NodeSelectorRequirement{} - yyc4622 = true + if yyj4660 < len(yyv4660) { + yyv4660 = yyv4660[:yyj4660] + yyc4660 = true + } else if yyj4660 == 0 && yyv4660 == nil { + yyv4660 = []NodeSelectorRequirement{} + yyc4660 = true } } - yyh4622.End() - if yyc4622 { - *v = yyv4622 + yyh4660.End() + if yyc4660 { + *v = yyv4660 } } @@ -58202,10 +58780,10 @@ func (x codecSelfer1234) encSlicePodAffinityTerm(v []PodAffinityTerm, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4626 := range v { + for _, yyv4664 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4627 := &yyv4626 - yy4627.CodecEncodeSelf(e) + yy4665 := &yyv4664 + yy4665.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58215,83 +58793,83 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4628 := *v - yyh4628, yyl4628 := z.DecSliceHelperStart() - var yyc4628 bool - if yyl4628 == 0 { - if yyv4628 == nil { - yyv4628 = []PodAffinityTerm{} - yyc4628 = true - } else if len(yyv4628) != 0 { - yyv4628 = yyv4628[:0] - yyc4628 = true + yyv4666 := *v + yyh4666, yyl4666 := z.DecSliceHelperStart() + var yyc4666 bool + if yyl4666 == 0 { + if yyv4666 == nil { + yyv4666 = []PodAffinityTerm{} + yyc4666 = true + } else if len(yyv4666) != 0 { + yyv4666 = yyv4666[:0] + yyc4666 = true } - } else if yyl4628 > 0 { - var yyrr4628, yyrl4628 int - var yyrt4628 bool - if yyl4628 > cap(yyv4628) { + } else if yyl4666 > 0 { + var yyrr4666, yyrl4666 int + var yyrt4666 bool + if yyl4666 > cap(yyv4666) { - yyrg4628 := len(yyv4628) > 0 - yyv24628 := yyv4628 - yyrl4628, yyrt4628 = z.DecInferLen(yyl4628, z.DecBasicHandle().MaxInitLen, 48) - if yyrt4628 { - if yyrl4628 <= cap(yyv4628) { - yyv4628 = yyv4628[:yyrl4628] + yyrg4666 := len(yyv4666) > 0 + yyv24666 := yyv4666 + yyrl4666, yyrt4666 = z.DecInferLen(yyl4666, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4666 { + if yyrl4666 <= cap(yyv4666) { + yyv4666 = yyv4666[:yyrl4666] } else { - yyv4628 = make([]PodAffinityTerm, yyrl4628) + yyv4666 = make([]PodAffinityTerm, yyrl4666) } } else { - yyv4628 = make([]PodAffinityTerm, yyrl4628) + yyv4666 = make([]PodAffinityTerm, yyrl4666) } - yyc4628 = true - yyrr4628 = len(yyv4628) - if yyrg4628 { - copy(yyv4628, yyv24628) + yyc4666 = true + yyrr4666 = len(yyv4666) + if yyrg4666 { + copy(yyv4666, yyv24666) } - } else if yyl4628 != len(yyv4628) { - yyv4628 = yyv4628[:yyl4628] - yyc4628 = true + } else if yyl4666 != len(yyv4666) { + yyv4666 = yyv4666[:yyl4666] + yyc4666 = true } - yyj4628 := 0 - for ; yyj4628 < yyrr4628; yyj4628++ { - yyh4628.ElemContainerState(yyj4628) + yyj4666 := 0 + for ; yyj4666 < yyrr4666; yyj4666++ { + yyh4666.ElemContainerState(yyj4666) if r.TryDecodeAsNil() { - yyv4628[yyj4628] = PodAffinityTerm{} + yyv4666[yyj4666] = PodAffinityTerm{} } else { - yyv4629 := &yyv4628[yyj4628] - yyv4629.CodecDecodeSelf(d) + yyv4667 := &yyv4666[yyj4666] + yyv4667.CodecDecodeSelf(d) } } - if yyrt4628 { - for ; yyj4628 < yyl4628; yyj4628++ { - yyv4628 = append(yyv4628, PodAffinityTerm{}) - yyh4628.ElemContainerState(yyj4628) + if yyrt4666 { + for ; yyj4666 < yyl4666; yyj4666++ { + yyv4666 = append(yyv4666, PodAffinityTerm{}) + yyh4666.ElemContainerState(yyj4666) if r.TryDecodeAsNil() { - yyv4628[yyj4628] = PodAffinityTerm{} + yyv4666[yyj4666] = PodAffinityTerm{} } else { - yyv4630 := &yyv4628[yyj4628] - yyv4630.CodecDecodeSelf(d) + yyv4668 := &yyv4666[yyj4666] + yyv4668.CodecDecodeSelf(d) } } } } else { - yyj4628 := 0 - for ; !r.CheckBreak(); yyj4628++ { + yyj4666 := 0 + for ; !r.CheckBreak(); yyj4666++ { - if yyj4628 >= len(yyv4628) { - yyv4628 = append(yyv4628, PodAffinityTerm{}) // var yyz4628 PodAffinityTerm - yyc4628 = true + if yyj4666 >= len(yyv4666) { + yyv4666 = append(yyv4666, PodAffinityTerm{}) // var yyz4666 PodAffinityTerm + yyc4666 = true } - yyh4628.ElemContainerState(yyj4628) - if yyj4628 < len(yyv4628) { + yyh4666.ElemContainerState(yyj4666) + if yyj4666 < len(yyv4666) { if r.TryDecodeAsNil() { - yyv4628[yyj4628] = PodAffinityTerm{} + yyv4666[yyj4666] = PodAffinityTerm{} } else { - yyv4631 := &yyv4628[yyj4628] - yyv4631.CodecDecodeSelf(d) + yyv4669 := &yyv4666[yyj4666] + yyv4669.CodecDecodeSelf(d) } } else { @@ -58299,17 +58877,17 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 } } - if yyj4628 < len(yyv4628) { - yyv4628 = yyv4628[:yyj4628] - yyc4628 = true - } else if yyj4628 == 0 && yyv4628 == nil { - yyv4628 = []PodAffinityTerm{} - yyc4628 = true + if yyj4666 < len(yyv4666) { + yyv4666 = yyv4666[:yyj4666] + yyc4666 = true + } else if yyj4666 == 0 && yyv4666 == nil { + yyv4666 = []PodAffinityTerm{} + yyc4666 = true } } - yyh4628.End() - if yyc4628 { - *v = yyv4628 + yyh4666.End() + if yyc4666 { + *v = yyv4666 } } @@ -58318,10 +58896,10 @@ func (x codecSelfer1234) encSliceWeightedPodAffinityTerm(v []WeightedPodAffinity z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4632 := range v { + for _, yyv4670 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4633 := &yyv4632 - yy4633.CodecEncodeSelf(e) + yy4671 := &yyv4670 + yy4671.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58331,83 +58909,83 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4634 := *v - yyh4634, yyl4634 := z.DecSliceHelperStart() - var yyc4634 bool - if yyl4634 == 0 { - if yyv4634 == nil { - yyv4634 = []WeightedPodAffinityTerm{} - yyc4634 = true - } else if len(yyv4634) != 0 { - yyv4634 = yyv4634[:0] - yyc4634 = true + yyv4672 := *v + yyh4672, yyl4672 := z.DecSliceHelperStart() + var yyc4672 bool + if yyl4672 == 0 { + if yyv4672 == nil { + yyv4672 = []WeightedPodAffinityTerm{} + yyc4672 = true + } else if len(yyv4672) != 0 { + yyv4672 = yyv4672[:0] + yyc4672 = true } - } else if yyl4634 > 0 { - var yyrr4634, yyrl4634 int - var yyrt4634 bool - if yyl4634 > cap(yyv4634) { + } else if yyl4672 > 0 { + var yyrr4672, yyrl4672 int + var yyrt4672 bool + if yyl4672 > cap(yyv4672) { - yyrg4634 := len(yyv4634) > 0 - yyv24634 := yyv4634 - yyrl4634, yyrt4634 = z.DecInferLen(yyl4634, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4634 { - if yyrl4634 <= cap(yyv4634) { - yyv4634 = yyv4634[:yyrl4634] + yyrg4672 := len(yyv4672) > 0 + yyv24672 := yyv4672 + yyrl4672, yyrt4672 = z.DecInferLen(yyl4672, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4672 { + if yyrl4672 <= cap(yyv4672) { + yyv4672 = yyv4672[:yyrl4672] } else { - yyv4634 = make([]WeightedPodAffinityTerm, yyrl4634) + yyv4672 = make([]WeightedPodAffinityTerm, yyrl4672) } } else { - yyv4634 = make([]WeightedPodAffinityTerm, yyrl4634) + yyv4672 = make([]WeightedPodAffinityTerm, yyrl4672) } - yyc4634 = true - yyrr4634 = len(yyv4634) - if yyrg4634 { - copy(yyv4634, yyv24634) + yyc4672 = true + yyrr4672 = len(yyv4672) + if yyrg4672 { + copy(yyv4672, yyv24672) } - } else if yyl4634 != len(yyv4634) { - yyv4634 = yyv4634[:yyl4634] - yyc4634 = true + } else if yyl4672 != len(yyv4672) { + yyv4672 = yyv4672[:yyl4672] + yyc4672 = true } - yyj4634 := 0 - for ; yyj4634 < yyrr4634; yyj4634++ { - yyh4634.ElemContainerState(yyj4634) + yyj4672 := 0 + for ; yyj4672 < yyrr4672; yyj4672++ { + yyh4672.ElemContainerState(yyj4672) if r.TryDecodeAsNil() { - yyv4634[yyj4634] = WeightedPodAffinityTerm{} + yyv4672[yyj4672] = WeightedPodAffinityTerm{} } else { - yyv4635 := &yyv4634[yyj4634] - yyv4635.CodecDecodeSelf(d) + yyv4673 := &yyv4672[yyj4672] + yyv4673.CodecDecodeSelf(d) } } - if yyrt4634 { - for ; yyj4634 < yyl4634; yyj4634++ { - yyv4634 = append(yyv4634, WeightedPodAffinityTerm{}) - yyh4634.ElemContainerState(yyj4634) + if yyrt4672 { + for ; yyj4672 < yyl4672; yyj4672++ { + yyv4672 = append(yyv4672, WeightedPodAffinityTerm{}) + yyh4672.ElemContainerState(yyj4672) if r.TryDecodeAsNil() { - yyv4634[yyj4634] = WeightedPodAffinityTerm{} + yyv4672[yyj4672] = WeightedPodAffinityTerm{} } else { - yyv4636 := &yyv4634[yyj4634] - yyv4636.CodecDecodeSelf(d) + yyv4674 := &yyv4672[yyj4672] + yyv4674.CodecDecodeSelf(d) } } } } else { - yyj4634 := 0 - for ; !r.CheckBreak(); yyj4634++ { + yyj4672 := 0 + for ; !r.CheckBreak(); yyj4672++ { - if yyj4634 >= len(yyv4634) { - yyv4634 = append(yyv4634, WeightedPodAffinityTerm{}) // var yyz4634 WeightedPodAffinityTerm - yyc4634 = true + if yyj4672 >= len(yyv4672) { + yyv4672 = append(yyv4672, WeightedPodAffinityTerm{}) // var yyz4672 WeightedPodAffinityTerm + yyc4672 = true } - yyh4634.ElemContainerState(yyj4634) - if yyj4634 < len(yyv4634) { + yyh4672.ElemContainerState(yyj4672) + if yyj4672 < len(yyv4672) { if r.TryDecodeAsNil() { - yyv4634[yyj4634] = WeightedPodAffinityTerm{} + yyv4672[yyj4672] = WeightedPodAffinityTerm{} } else { - yyv4637 := &yyv4634[yyj4634] - yyv4637.CodecDecodeSelf(d) + yyv4675 := &yyv4672[yyj4672] + yyv4675.CodecDecodeSelf(d) } } else { @@ -58415,17 +58993,17 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit } } - if yyj4634 < len(yyv4634) { - yyv4634 = yyv4634[:yyj4634] - yyc4634 = true - } else if yyj4634 == 0 && yyv4634 == nil { - yyv4634 = []WeightedPodAffinityTerm{} - yyc4634 = true + if yyj4672 < len(yyv4672) { + yyv4672 = yyv4672[:yyj4672] + yyc4672 = true + } else if yyj4672 == 0 && yyv4672 == nil { + yyv4672 = []WeightedPodAffinityTerm{} + yyc4672 = true } } - yyh4634.End() - if yyc4634 { - *v = yyv4634 + yyh4672.End() + if yyc4672 { + *v = yyv4672 } } @@ -58434,10 +59012,10 @@ func (x codecSelfer1234) encSlicePreferredSchedulingTerm(v []PreferredScheduling z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4638 := range v { + for _, yyv4676 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4639 := &yyv4638 - yy4639.CodecEncodeSelf(e) + yy4677 := &yyv4676 + yy4677.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58447,83 +59025,83 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4640 := *v - yyh4640, yyl4640 := z.DecSliceHelperStart() - var yyc4640 bool - if yyl4640 == 0 { - if yyv4640 == nil { - yyv4640 = []PreferredSchedulingTerm{} - yyc4640 = true - } else if len(yyv4640) != 0 { - yyv4640 = yyv4640[:0] - yyc4640 = true + yyv4678 := *v + yyh4678, yyl4678 := z.DecSliceHelperStart() + var yyc4678 bool + if yyl4678 == 0 { + if yyv4678 == nil { + yyv4678 = []PreferredSchedulingTerm{} + yyc4678 = true + } else if len(yyv4678) != 0 { + yyv4678 = yyv4678[:0] + yyc4678 = true } - } else if yyl4640 > 0 { - var yyrr4640, yyrl4640 int - var yyrt4640 bool - if yyl4640 > cap(yyv4640) { + } else if yyl4678 > 0 { + var yyrr4678, yyrl4678 int + var yyrt4678 bool + if yyl4678 > cap(yyv4678) { - yyrg4640 := len(yyv4640) > 0 - yyv24640 := yyv4640 - yyrl4640, yyrt4640 = z.DecInferLen(yyl4640, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4640 { - if yyrl4640 <= cap(yyv4640) { - yyv4640 = yyv4640[:yyrl4640] + yyrg4678 := len(yyv4678) > 0 + yyv24678 := yyv4678 + yyrl4678, yyrt4678 = z.DecInferLen(yyl4678, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4678 { + if yyrl4678 <= cap(yyv4678) { + yyv4678 = yyv4678[:yyrl4678] } else { - yyv4640 = make([]PreferredSchedulingTerm, yyrl4640) + yyv4678 = make([]PreferredSchedulingTerm, yyrl4678) } } else { - yyv4640 = make([]PreferredSchedulingTerm, yyrl4640) + yyv4678 = make([]PreferredSchedulingTerm, yyrl4678) } - yyc4640 = true - yyrr4640 = len(yyv4640) - if yyrg4640 { - copy(yyv4640, yyv24640) + yyc4678 = true + yyrr4678 = len(yyv4678) + if yyrg4678 { + copy(yyv4678, yyv24678) } - } else if yyl4640 != len(yyv4640) { - yyv4640 = yyv4640[:yyl4640] - yyc4640 = true + } else if yyl4678 != len(yyv4678) { + yyv4678 = yyv4678[:yyl4678] + yyc4678 = true } - yyj4640 := 0 - for ; yyj4640 < yyrr4640; yyj4640++ { - yyh4640.ElemContainerState(yyj4640) + yyj4678 := 0 + for ; yyj4678 < yyrr4678; yyj4678++ { + yyh4678.ElemContainerState(yyj4678) if r.TryDecodeAsNil() { - yyv4640[yyj4640] = PreferredSchedulingTerm{} + yyv4678[yyj4678] = PreferredSchedulingTerm{} } else { - yyv4641 := &yyv4640[yyj4640] - yyv4641.CodecDecodeSelf(d) + yyv4679 := &yyv4678[yyj4678] + yyv4679.CodecDecodeSelf(d) } } - if yyrt4640 { - for ; yyj4640 < yyl4640; yyj4640++ { - yyv4640 = append(yyv4640, PreferredSchedulingTerm{}) - yyh4640.ElemContainerState(yyj4640) + if yyrt4678 { + for ; yyj4678 < yyl4678; yyj4678++ { + yyv4678 = append(yyv4678, PreferredSchedulingTerm{}) + yyh4678.ElemContainerState(yyj4678) if r.TryDecodeAsNil() { - yyv4640[yyj4640] = PreferredSchedulingTerm{} + yyv4678[yyj4678] = PreferredSchedulingTerm{} } else { - yyv4642 := &yyv4640[yyj4640] - yyv4642.CodecDecodeSelf(d) + yyv4680 := &yyv4678[yyj4678] + yyv4680.CodecDecodeSelf(d) } } } } else { - yyj4640 := 0 - for ; !r.CheckBreak(); yyj4640++ { + yyj4678 := 0 + for ; !r.CheckBreak(); yyj4678++ { - if yyj4640 >= len(yyv4640) { - yyv4640 = append(yyv4640, PreferredSchedulingTerm{}) // var yyz4640 PreferredSchedulingTerm - yyc4640 = true + if yyj4678 >= len(yyv4678) { + yyv4678 = append(yyv4678, PreferredSchedulingTerm{}) // var yyz4678 PreferredSchedulingTerm + yyc4678 = true } - yyh4640.ElemContainerState(yyj4640) - if yyj4640 < len(yyv4640) { + yyh4678.ElemContainerState(yyj4678) + if yyj4678 < len(yyv4678) { if r.TryDecodeAsNil() { - yyv4640[yyj4640] = PreferredSchedulingTerm{} + yyv4678[yyj4678] = PreferredSchedulingTerm{} } else { - yyv4643 := &yyv4640[yyj4640] - yyv4643.CodecDecodeSelf(d) + yyv4681 := &yyv4678[yyj4678] + yyv4681.CodecDecodeSelf(d) } } else { @@ -58531,17 +59109,17 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin } } - if yyj4640 < len(yyv4640) { - yyv4640 = yyv4640[:yyj4640] - yyc4640 = true - } else if yyj4640 == 0 && yyv4640 == nil { - yyv4640 = []PreferredSchedulingTerm{} - yyc4640 = true + if yyj4678 < len(yyv4678) { + yyv4678 = yyv4678[:yyj4678] + yyc4678 = true + } else if yyj4678 == 0 && yyv4678 == nil { + yyv4678 = []PreferredSchedulingTerm{} + yyc4678 = true } } - yyh4640.End() - if yyc4640 { - *v = yyv4640 + yyh4678.End() + if yyc4678 { + *v = yyv4678 } } @@ -58550,10 +59128,10 @@ func (x codecSelfer1234) encSliceVolume(v []Volume, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4644 := range v { + for _, yyv4682 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4645 := &yyv4644 - yy4645.CodecEncodeSelf(e) + yy4683 := &yyv4682 + yy4683.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58563,83 +59141,83 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4646 := *v - yyh4646, yyl4646 := z.DecSliceHelperStart() - var yyc4646 bool - if yyl4646 == 0 { - if yyv4646 == nil { - yyv4646 = []Volume{} - yyc4646 = true - } else if len(yyv4646) != 0 { - yyv4646 = yyv4646[:0] - yyc4646 = true + yyv4684 := *v + yyh4684, yyl4684 := z.DecSliceHelperStart() + var yyc4684 bool + if yyl4684 == 0 { + if yyv4684 == nil { + yyv4684 = []Volume{} + yyc4684 = true + } else if len(yyv4684) != 0 { + yyv4684 = yyv4684[:0] + yyc4684 = true } - } else if yyl4646 > 0 { - var yyrr4646, yyrl4646 int - var yyrt4646 bool - if yyl4646 > cap(yyv4646) { + } else if yyl4684 > 0 { + var yyrr4684, yyrl4684 int + var yyrt4684 bool + if yyl4684 > cap(yyv4684) { - yyrg4646 := len(yyv4646) > 0 - yyv24646 := yyv4646 - yyrl4646, yyrt4646 = z.DecInferLen(yyl4646, z.DecBasicHandle().MaxInitLen, 200) - if yyrt4646 { - if yyrl4646 <= cap(yyv4646) { - yyv4646 = yyv4646[:yyrl4646] + yyrg4684 := len(yyv4684) > 0 + yyv24684 := yyv4684 + yyrl4684, yyrt4684 = z.DecInferLen(yyl4684, z.DecBasicHandle().MaxInitLen, 200) + if yyrt4684 { + if yyrl4684 <= cap(yyv4684) { + yyv4684 = yyv4684[:yyrl4684] } else { - yyv4646 = make([]Volume, yyrl4646) + yyv4684 = make([]Volume, yyrl4684) } } else { - yyv4646 = make([]Volume, yyrl4646) + yyv4684 = make([]Volume, yyrl4684) } - yyc4646 = true - yyrr4646 = len(yyv4646) - if yyrg4646 { - copy(yyv4646, yyv24646) + yyc4684 = true + yyrr4684 = len(yyv4684) + if yyrg4684 { + copy(yyv4684, yyv24684) } - } else if yyl4646 != len(yyv4646) { - yyv4646 = yyv4646[:yyl4646] - yyc4646 = true + } else if yyl4684 != len(yyv4684) { + yyv4684 = yyv4684[:yyl4684] + yyc4684 = true } - yyj4646 := 0 - for ; yyj4646 < yyrr4646; yyj4646++ { - yyh4646.ElemContainerState(yyj4646) + yyj4684 := 0 + for ; yyj4684 < yyrr4684; yyj4684++ { + yyh4684.ElemContainerState(yyj4684) if r.TryDecodeAsNil() { - yyv4646[yyj4646] = Volume{} + yyv4684[yyj4684] = Volume{} } else { - yyv4647 := &yyv4646[yyj4646] - yyv4647.CodecDecodeSelf(d) + yyv4685 := &yyv4684[yyj4684] + yyv4685.CodecDecodeSelf(d) } } - if yyrt4646 { - for ; yyj4646 < yyl4646; yyj4646++ { - yyv4646 = append(yyv4646, Volume{}) - yyh4646.ElemContainerState(yyj4646) + if yyrt4684 { + for ; yyj4684 < yyl4684; yyj4684++ { + yyv4684 = append(yyv4684, Volume{}) + yyh4684.ElemContainerState(yyj4684) if r.TryDecodeAsNil() { - yyv4646[yyj4646] = Volume{} + yyv4684[yyj4684] = Volume{} } else { - yyv4648 := &yyv4646[yyj4646] - yyv4648.CodecDecodeSelf(d) + yyv4686 := &yyv4684[yyj4684] + yyv4686.CodecDecodeSelf(d) } } } } else { - yyj4646 := 0 - for ; !r.CheckBreak(); yyj4646++ { + yyj4684 := 0 + for ; !r.CheckBreak(); yyj4684++ { - if yyj4646 >= len(yyv4646) { - yyv4646 = append(yyv4646, Volume{}) // var yyz4646 Volume - yyc4646 = true + if yyj4684 >= len(yyv4684) { + yyv4684 = append(yyv4684, Volume{}) // var yyz4684 Volume + yyc4684 = true } - yyh4646.ElemContainerState(yyj4646) - if yyj4646 < len(yyv4646) { + yyh4684.ElemContainerState(yyj4684) + if yyj4684 < len(yyv4684) { if r.TryDecodeAsNil() { - yyv4646[yyj4646] = Volume{} + yyv4684[yyj4684] = Volume{} } else { - yyv4649 := &yyv4646[yyj4646] - yyv4649.CodecDecodeSelf(d) + yyv4687 := &yyv4684[yyj4684] + yyv4687.CodecDecodeSelf(d) } } else { @@ -58647,17 +59225,17 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { } } - if yyj4646 < len(yyv4646) { - yyv4646 = yyv4646[:yyj4646] - yyc4646 = true - } else if yyj4646 == 0 && yyv4646 == nil { - yyv4646 = []Volume{} - yyc4646 = true + if yyj4684 < len(yyv4684) { + yyv4684 = yyv4684[:yyj4684] + yyc4684 = true + } else if yyj4684 == 0 && yyv4684 == nil { + yyv4684 = []Volume{} + yyc4684 = true } } - yyh4646.End() - if yyc4646 { - *v = yyv4646 + yyh4684.End() + if yyc4684 { + *v = yyv4684 } } @@ -58666,10 +59244,10 @@ func (x codecSelfer1234) encSliceContainer(v []Container, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4650 := range v { + for _, yyv4688 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4651 := &yyv4650 - yy4651.CodecEncodeSelf(e) + yy4689 := &yyv4688 + yy4689.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58679,83 +59257,83 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4652 := *v - yyh4652, yyl4652 := z.DecSliceHelperStart() - var yyc4652 bool - if yyl4652 == 0 { - if yyv4652 == nil { - yyv4652 = []Container{} - yyc4652 = true - } else if len(yyv4652) != 0 { - yyv4652 = yyv4652[:0] - yyc4652 = true + yyv4690 := *v + yyh4690, yyl4690 := z.DecSliceHelperStart() + var yyc4690 bool + if yyl4690 == 0 { + if yyv4690 == nil { + yyv4690 = []Container{} + yyc4690 = true + } else if len(yyv4690) != 0 { + yyv4690 = yyv4690[:0] + yyc4690 = true } - } else if yyl4652 > 0 { - var yyrr4652, yyrl4652 int - var yyrt4652 bool - if yyl4652 > cap(yyv4652) { + } else if yyl4690 > 0 { + var yyrr4690, yyrl4690 int + var yyrt4690 bool + if yyl4690 > cap(yyv4690) { - yyrg4652 := len(yyv4652) > 0 - yyv24652 := yyv4652 - yyrl4652, yyrt4652 = z.DecInferLen(yyl4652, z.DecBasicHandle().MaxInitLen, 256) - if yyrt4652 { - if yyrl4652 <= cap(yyv4652) { - yyv4652 = yyv4652[:yyrl4652] + yyrg4690 := len(yyv4690) > 0 + yyv24690 := yyv4690 + yyrl4690, yyrt4690 = z.DecInferLen(yyl4690, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4690 { + if yyrl4690 <= cap(yyv4690) { + yyv4690 = yyv4690[:yyrl4690] } else { - yyv4652 = make([]Container, yyrl4652) + yyv4690 = make([]Container, yyrl4690) } } else { - yyv4652 = make([]Container, yyrl4652) + yyv4690 = make([]Container, yyrl4690) } - yyc4652 = true - yyrr4652 = len(yyv4652) - if yyrg4652 { - copy(yyv4652, yyv24652) + yyc4690 = true + yyrr4690 = len(yyv4690) + if yyrg4690 { + copy(yyv4690, yyv24690) } - } else if yyl4652 != len(yyv4652) { - yyv4652 = yyv4652[:yyl4652] - yyc4652 = true + } else if yyl4690 != len(yyv4690) { + yyv4690 = yyv4690[:yyl4690] + yyc4690 = true } - yyj4652 := 0 - for ; yyj4652 < yyrr4652; yyj4652++ { - yyh4652.ElemContainerState(yyj4652) + yyj4690 := 0 + for ; yyj4690 < yyrr4690; yyj4690++ { + yyh4690.ElemContainerState(yyj4690) if r.TryDecodeAsNil() { - yyv4652[yyj4652] = Container{} + yyv4690[yyj4690] = Container{} } else { - yyv4653 := &yyv4652[yyj4652] - yyv4653.CodecDecodeSelf(d) + yyv4691 := &yyv4690[yyj4690] + yyv4691.CodecDecodeSelf(d) } } - if yyrt4652 { - for ; yyj4652 < yyl4652; yyj4652++ { - yyv4652 = append(yyv4652, Container{}) - yyh4652.ElemContainerState(yyj4652) + if yyrt4690 { + for ; yyj4690 < yyl4690; yyj4690++ { + yyv4690 = append(yyv4690, Container{}) + yyh4690.ElemContainerState(yyj4690) if r.TryDecodeAsNil() { - yyv4652[yyj4652] = Container{} + yyv4690[yyj4690] = Container{} } else { - yyv4654 := &yyv4652[yyj4652] - yyv4654.CodecDecodeSelf(d) + yyv4692 := &yyv4690[yyj4690] + yyv4692.CodecDecodeSelf(d) } } } } else { - yyj4652 := 0 - for ; !r.CheckBreak(); yyj4652++ { + yyj4690 := 0 + for ; !r.CheckBreak(); yyj4690++ { - if yyj4652 >= len(yyv4652) { - yyv4652 = append(yyv4652, Container{}) // var yyz4652 Container - yyc4652 = true + if yyj4690 >= len(yyv4690) { + yyv4690 = append(yyv4690, Container{}) // var yyz4690 Container + yyc4690 = true } - yyh4652.ElemContainerState(yyj4652) - if yyj4652 < len(yyv4652) { + yyh4690.ElemContainerState(yyj4690) + if yyj4690 < len(yyv4690) { if r.TryDecodeAsNil() { - yyv4652[yyj4652] = Container{} + yyv4690[yyj4690] = Container{} } else { - yyv4655 := &yyv4652[yyj4652] - yyv4655.CodecDecodeSelf(d) + yyv4693 := &yyv4690[yyj4690] + yyv4693.CodecDecodeSelf(d) } } else { @@ -58763,17 +59341,17 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) } } - if yyj4652 < len(yyv4652) { - yyv4652 = yyv4652[:yyj4652] - yyc4652 = true - } else if yyj4652 == 0 && yyv4652 == nil { - yyv4652 = []Container{} - yyc4652 = true + if yyj4690 < len(yyv4690) { + yyv4690 = yyv4690[:yyj4690] + yyc4690 = true + } else if yyj4690 == 0 && yyv4690 == nil { + yyv4690 = []Container{} + yyc4690 = true } } - yyh4652.End() - if yyc4652 { - *v = yyv4652 + yyh4690.End() + if yyc4690 { + *v = yyv4690 } } @@ -58782,10 +59360,10 @@ func (x codecSelfer1234) encSliceLocalObjectReference(v []LocalObjectReference, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4656 := range v { + for _, yyv4694 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4657 := &yyv4656 - yy4657.CodecEncodeSelf(e) + yy4695 := &yyv4694 + yy4695.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58795,83 +59373,83 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4658 := *v - yyh4658, yyl4658 := z.DecSliceHelperStart() - var yyc4658 bool - if yyl4658 == 0 { - if yyv4658 == nil { - yyv4658 = []LocalObjectReference{} - yyc4658 = true - } else if len(yyv4658) != 0 { - yyv4658 = yyv4658[:0] - yyc4658 = true + yyv4696 := *v + yyh4696, yyl4696 := z.DecSliceHelperStart() + var yyc4696 bool + if yyl4696 == 0 { + if yyv4696 == nil { + yyv4696 = []LocalObjectReference{} + yyc4696 = true + } else if len(yyv4696) != 0 { + yyv4696 = yyv4696[:0] + yyc4696 = true } - } else if yyl4658 > 0 { - var yyrr4658, yyrl4658 int - var yyrt4658 bool - if yyl4658 > cap(yyv4658) { + } else if yyl4696 > 0 { + var yyrr4696, yyrl4696 int + var yyrt4696 bool + if yyl4696 > cap(yyv4696) { - yyrg4658 := len(yyv4658) > 0 - yyv24658 := yyv4658 - yyrl4658, yyrt4658 = z.DecInferLen(yyl4658, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4658 { - if yyrl4658 <= cap(yyv4658) { - yyv4658 = yyv4658[:yyrl4658] + yyrg4696 := len(yyv4696) > 0 + yyv24696 := yyv4696 + yyrl4696, yyrt4696 = z.DecInferLen(yyl4696, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4696 { + if yyrl4696 <= cap(yyv4696) { + yyv4696 = yyv4696[:yyrl4696] } else { - yyv4658 = make([]LocalObjectReference, yyrl4658) + yyv4696 = make([]LocalObjectReference, yyrl4696) } } else { - yyv4658 = make([]LocalObjectReference, yyrl4658) + yyv4696 = make([]LocalObjectReference, yyrl4696) } - yyc4658 = true - yyrr4658 = len(yyv4658) - if yyrg4658 { - copy(yyv4658, yyv24658) + yyc4696 = true + yyrr4696 = len(yyv4696) + if yyrg4696 { + copy(yyv4696, yyv24696) } - } else if yyl4658 != len(yyv4658) { - yyv4658 = yyv4658[:yyl4658] - yyc4658 = true + } else if yyl4696 != len(yyv4696) { + yyv4696 = yyv4696[:yyl4696] + yyc4696 = true } - yyj4658 := 0 - for ; yyj4658 < yyrr4658; yyj4658++ { - yyh4658.ElemContainerState(yyj4658) + yyj4696 := 0 + for ; yyj4696 < yyrr4696; yyj4696++ { + yyh4696.ElemContainerState(yyj4696) if r.TryDecodeAsNil() { - yyv4658[yyj4658] = LocalObjectReference{} + yyv4696[yyj4696] = LocalObjectReference{} } else { - yyv4659 := &yyv4658[yyj4658] - yyv4659.CodecDecodeSelf(d) + yyv4697 := &yyv4696[yyj4696] + yyv4697.CodecDecodeSelf(d) } } - if yyrt4658 { - for ; yyj4658 < yyl4658; yyj4658++ { - yyv4658 = append(yyv4658, LocalObjectReference{}) - yyh4658.ElemContainerState(yyj4658) + if yyrt4696 { + for ; yyj4696 < yyl4696; yyj4696++ { + yyv4696 = append(yyv4696, LocalObjectReference{}) + yyh4696.ElemContainerState(yyj4696) if r.TryDecodeAsNil() { - yyv4658[yyj4658] = LocalObjectReference{} + yyv4696[yyj4696] = LocalObjectReference{} } else { - yyv4660 := &yyv4658[yyj4658] - yyv4660.CodecDecodeSelf(d) + yyv4698 := &yyv4696[yyj4696] + yyv4698.CodecDecodeSelf(d) } } } } else { - yyj4658 := 0 - for ; !r.CheckBreak(); yyj4658++ { + yyj4696 := 0 + for ; !r.CheckBreak(); yyj4696++ { - if yyj4658 >= len(yyv4658) { - yyv4658 = append(yyv4658, LocalObjectReference{}) // var yyz4658 LocalObjectReference - yyc4658 = true + if yyj4696 >= len(yyv4696) { + yyv4696 = append(yyv4696, LocalObjectReference{}) // var yyz4696 LocalObjectReference + yyc4696 = true } - yyh4658.ElemContainerState(yyj4658) - if yyj4658 < len(yyv4658) { + yyh4696.ElemContainerState(yyj4696) + if yyj4696 < len(yyv4696) { if r.TryDecodeAsNil() { - yyv4658[yyj4658] = LocalObjectReference{} + yyv4696[yyj4696] = LocalObjectReference{} } else { - yyv4661 := &yyv4658[yyj4658] - yyv4661.CodecDecodeSelf(d) + yyv4699 := &yyv4696[yyj4696] + yyv4699.CodecDecodeSelf(d) } } else { @@ -58879,17 +59457,17 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, } } - if yyj4658 < len(yyv4658) { - yyv4658 = yyv4658[:yyj4658] - yyc4658 = true - } else if yyj4658 == 0 && yyv4658 == nil { - yyv4658 = []LocalObjectReference{} - yyc4658 = true + if yyj4696 < len(yyv4696) { + yyv4696 = yyv4696[:yyj4696] + yyc4696 = true + } else if yyj4696 == 0 && yyv4696 == nil { + yyv4696 = []LocalObjectReference{} + yyc4696 = true } } - yyh4658.End() - if yyc4658 { - *v = yyv4658 + yyh4696.End() + if yyc4696 { + *v = yyv4696 } } @@ -58898,10 +59476,10 @@ func (x codecSelfer1234) encSlicePodCondition(v []PodCondition, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4662 := range v { + for _, yyv4700 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4663 := &yyv4662 - yy4663.CodecEncodeSelf(e) + yy4701 := &yyv4700 + yy4701.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58911,83 +59489,83 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4664 := *v - yyh4664, yyl4664 := z.DecSliceHelperStart() - var yyc4664 bool - if yyl4664 == 0 { - if yyv4664 == nil { - yyv4664 = []PodCondition{} - yyc4664 = true - } else if len(yyv4664) != 0 { - yyv4664 = yyv4664[:0] - yyc4664 = true + yyv4702 := *v + yyh4702, yyl4702 := z.DecSliceHelperStart() + var yyc4702 bool + if yyl4702 == 0 { + if yyv4702 == nil { + yyv4702 = []PodCondition{} + yyc4702 = true + } else if len(yyv4702) != 0 { + yyv4702 = yyv4702[:0] + yyc4702 = true } - } else if yyl4664 > 0 { - var yyrr4664, yyrl4664 int - var yyrt4664 bool - if yyl4664 > cap(yyv4664) { + } else if yyl4702 > 0 { + var yyrr4702, yyrl4702 int + var yyrt4702 bool + if yyl4702 > cap(yyv4702) { - yyrg4664 := len(yyv4664) > 0 - yyv24664 := yyv4664 - yyrl4664, yyrt4664 = z.DecInferLen(yyl4664, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4664 { - if yyrl4664 <= cap(yyv4664) { - yyv4664 = yyv4664[:yyrl4664] + yyrg4702 := len(yyv4702) > 0 + yyv24702 := yyv4702 + yyrl4702, yyrt4702 = z.DecInferLen(yyl4702, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4702 { + if yyrl4702 <= cap(yyv4702) { + yyv4702 = yyv4702[:yyrl4702] } else { - yyv4664 = make([]PodCondition, yyrl4664) + yyv4702 = make([]PodCondition, yyrl4702) } } else { - yyv4664 = make([]PodCondition, yyrl4664) + yyv4702 = make([]PodCondition, yyrl4702) } - yyc4664 = true - yyrr4664 = len(yyv4664) - if yyrg4664 { - copy(yyv4664, yyv24664) + yyc4702 = true + yyrr4702 = len(yyv4702) + if yyrg4702 { + copy(yyv4702, yyv24702) } - } else if yyl4664 != len(yyv4664) { - yyv4664 = yyv4664[:yyl4664] - yyc4664 = true + } else if yyl4702 != len(yyv4702) { + yyv4702 = yyv4702[:yyl4702] + yyc4702 = true } - yyj4664 := 0 - for ; yyj4664 < yyrr4664; yyj4664++ { - yyh4664.ElemContainerState(yyj4664) + yyj4702 := 0 + for ; yyj4702 < yyrr4702; yyj4702++ { + yyh4702.ElemContainerState(yyj4702) if r.TryDecodeAsNil() { - yyv4664[yyj4664] = PodCondition{} + yyv4702[yyj4702] = PodCondition{} } else { - yyv4665 := &yyv4664[yyj4664] - yyv4665.CodecDecodeSelf(d) + yyv4703 := &yyv4702[yyj4702] + yyv4703.CodecDecodeSelf(d) } } - if yyrt4664 { - for ; yyj4664 < yyl4664; yyj4664++ { - yyv4664 = append(yyv4664, PodCondition{}) - yyh4664.ElemContainerState(yyj4664) + if yyrt4702 { + for ; yyj4702 < yyl4702; yyj4702++ { + yyv4702 = append(yyv4702, PodCondition{}) + yyh4702.ElemContainerState(yyj4702) if r.TryDecodeAsNil() { - yyv4664[yyj4664] = PodCondition{} + yyv4702[yyj4702] = PodCondition{} } else { - yyv4666 := &yyv4664[yyj4664] - yyv4666.CodecDecodeSelf(d) + yyv4704 := &yyv4702[yyj4702] + yyv4704.CodecDecodeSelf(d) } } } } else { - yyj4664 := 0 - for ; !r.CheckBreak(); yyj4664++ { + yyj4702 := 0 + for ; !r.CheckBreak(); yyj4702++ { - if yyj4664 >= len(yyv4664) { - yyv4664 = append(yyv4664, PodCondition{}) // var yyz4664 PodCondition - yyc4664 = true + if yyj4702 >= len(yyv4702) { + yyv4702 = append(yyv4702, PodCondition{}) // var yyz4702 PodCondition + yyc4702 = true } - yyh4664.ElemContainerState(yyj4664) - if yyj4664 < len(yyv4664) { + yyh4702.ElemContainerState(yyj4702) + if yyj4702 < len(yyv4702) { if r.TryDecodeAsNil() { - yyv4664[yyj4664] = PodCondition{} + yyv4702[yyj4702] = PodCondition{} } else { - yyv4667 := &yyv4664[yyj4664] - yyv4667.CodecDecodeSelf(d) + yyv4705 := &yyv4702[yyj4702] + yyv4705.CodecDecodeSelf(d) } } else { @@ -58995,17 +59573,17 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De } } - if yyj4664 < len(yyv4664) { - yyv4664 = yyv4664[:yyj4664] - yyc4664 = true - } else if yyj4664 == 0 && yyv4664 == nil { - yyv4664 = []PodCondition{} - yyc4664 = true + if yyj4702 < len(yyv4702) { + yyv4702 = yyv4702[:yyj4702] + yyc4702 = true + } else if yyj4702 == 0 && yyv4702 == nil { + yyv4702 = []PodCondition{} + yyc4702 = true } } - yyh4664.End() - if yyc4664 { - *v = yyv4664 + yyh4702.End() + if yyc4702 { + *v = yyv4702 } } @@ -59014,10 +59592,10 @@ func (x codecSelfer1234) encSliceContainerStatus(v []ContainerStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4668 := range v { + for _, yyv4706 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4669 := &yyv4668 - yy4669.CodecEncodeSelf(e) + yy4707 := &yyv4706 + yy4707.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59027,83 +59605,83 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4670 := *v - yyh4670, yyl4670 := z.DecSliceHelperStart() - var yyc4670 bool - if yyl4670 == 0 { - if yyv4670 == nil { - yyv4670 = []ContainerStatus{} - yyc4670 = true - } else if len(yyv4670) != 0 { - yyv4670 = yyv4670[:0] - yyc4670 = true + yyv4708 := *v + yyh4708, yyl4708 := z.DecSliceHelperStart() + var yyc4708 bool + if yyl4708 == 0 { + if yyv4708 == nil { + yyv4708 = []ContainerStatus{} + yyc4708 = true + } else if len(yyv4708) != 0 { + yyv4708 = yyv4708[:0] + yyc4708 = true } - } else if yyl4670 > 0 { - var yyrr4670, yyrl4670 int - var yyrt4670 bool - if yyl4670 > cap(yyv4670) { + } else if yyl4708 > 0 { + var yyrr4708, yyrl4708 int + var yyrt4708 bool + if yyl4708 > cap(yyv4708) { - yyrg4670 := len(yyv4670) > 0 - yyv24670 := yyv4670 - yyrl4670, yyrt4670 = z.DecInferLen(yyl4670, z.DecBasicHandle().MaxInitLen, 120) - if yyrt4670 { - if yyrl4670 <= cap(yyv4670) { - yyv4670 = yyv4670[:yyrl4670] + yyrg4708 := len(yyv4708) > 0 + yyv24708 := yyv4708 + yyrl4708, yyrt4708 = z.DecInferLen(yyl4708, z.DecBasicHandle().MaxInitLen, 120) + if yyrt4708 { + if yyrl4708 <= cap(yyv4708) { + yyv4708 = yyv4708[:yyrl4708] } else { - yyv4670 = make([]ContainerStatus, yyrl4670) + yyv4708 = make([]ContainerStatus, yyrl4708) } } else { - yyv4670 = make([]ContainerStatus, yyrl4670) + yyv4708 = make([]ContainerStatus, yyrl4708) } - yyc4670 = true - yyrr4670 = len(yyv4670) - if yyrg4670 { - copy(yyv4670, yyv24670) + yyc4708 = true + yyrr4708 = len(yyv4708) + if yyrg4708 { + copy(yyv4708, yyv24708) } - } else if yyl4670 != len(yyv4670) { - yyv4670 = yyv4670[:yyl4670] - yyc4670 = true + } else if yyl4708 != len(yyv4708) { + yyv4708 = yyv4708[:yyl4708] + yyc4708 = true } - yyj4670 := 0 - for ; yyj4670 < yyrr4670; yyj4670++ { - yyh4670.ElemContainerState(yyj4670) + yyj4708 := 0 + for ; yyj4708 < yyrr4708; yyj4708++ { + yyh4708.ElemContainerState(yyj4708) if r.TryDecodeAsNil() { - yyv4670[yyj4670] = ContainerStatus{} + yyv4708[yyj4708] = ContainerStatus{} } else { - yyv4671 := &yyv4670[yyj4670] - yyv4671.CodecDecodeSelf(d) + yyv4709 := &yyv4708[yyj4708] + yyv4709.CodecDecodeSelf(d) } } - if yyrt4670 { - for ; yyj4670 < yyl4670; yyj4670++ { - yyv4670 = append(yyv4670, ContainerStatus{}) - yyh4670.ElemContainerState(yyj4670) + if yyrt4708 { + for ; yyj4708 < yyl4708; yyj4708++ { + yyv4708 = append(yyv4708, ContainerStatus{}) + yyh4708.ElemContainerState(yyj4708) if r.TryDecodeAsNil() { - yyv4670[yyj4670] = ContainerStatus{} + yyv4708[yyj4708] = ContainerStatus{} } else { - yyv4672 := &yyv4670[yyj4670] - yyv4672.CodecDecodeSelf(d) + yyv4710 := &yyv4708[yyj4708] + yyv4710.CodecDecodeSelf(d) } } } } else { - yyj4670 := 0 - for ; !r.CheckBreak(); yyj4670++ { + yyj4708 := 0 + for ; !r.CheckBreak(); yyj4708++ { - if yyj4670 >= len(yyv4670) { - yyv4670 = append(yyv4670, ContainerStatus{}) // var yyz4670 ContainerStatus - yyc4670 = true + if yyj4708 >= len(yyv4708) { + yyv4708 = append(yyv4708, ContainerStatus{}) // var yyz4708 ContainerStatus + yyc4708 = true } - yyh4670.ElemContainerState(yyj4670) - if yyj4670 < len(yyv4670) { + yyh4708.ElemContainerState(yyj4708) + if yyj4708 < len(yyv4708) { if r.TryDecodeAsNil() { - yyv4670[yyj4670] = ContainerStatus{} + yyv4708[yyj4708] = ContainerStatus{} } else { - yyv4673 := &yyv4670[yyj4670] - yyv4673.CodecDecodeSelf(d) + yyv4711 := &yyv4708[yyj4708] + yyv4711.CodecDecodeSelf(d) } } else { @@ -59111,17 +59689,17 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 } } - if yyj4670 < len(yyv4670) { - yyv4670 = yyv4670[:yyj4670] - yyc4670 = true - } else if yyj4670 == 0 && yyv4670 == nil { - yyv4670 = []ContainerStatus{} - yyc4670 = true + if yyj4708 < len(yyv4708) { + yyv4708 = yyv4708[:yyj4708] + yyc4708 = true + } else if yyj4708 == 0 && yyv4708 == nil { + yyv4708 = []ContainerStatus{} + yyc4708 = true } } - yyh4670.End() - if yyc4670 { - *v = yyv4670 + yyh4708.End() + if yyc4708 { + *v = yyv4708 } } @@ -59130,10 +59708,10 @@ func (x codecSelfer1234) encSlicePod(v []Pod, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4674 := range v { + for _, yyv4712 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4675 := &yyv4674 - yy4675.CodecEncodeSelf(e) + yy4713 := &yyv4712 + yy4713.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59143,83 +59721,83 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4676 := *v - yyh4676, yyl4676 := z.DecSliceHelperStart() - var yyc4676 bool - if yyl4676 == 0 { - if yyv4676 == nil { - yyv4676 = []Pod{} - yyc4676 = true - } else if len(yyv4676) != 0 { - yyv4676 = yyv4676[:0] - yyc4676 = true + yyv4714 := *v + yyh4714, yyl4714 := z.DecSliceHelperStart() + var yyc4714 bool + if yyl4714 == 0 { + if yyv4714 == nil { + yyv4714 = []Pod{} + yyc4714 = true + } else if len(yyv4714) != 0 { + yyv4714 = yyv4714[:0] + yyc4714 = true } - } else if yyl4676 > 0 { - var yyrr4676, yyrl4676 int - var yyrt4676 bool - if yyl4676 > cap(yyv4676) { + } else if yyl4714 > 0 { + var yyrr4714, yyrl4714 int + var yyrt4714 bool + if yyl4714 > cap(yyv4714) { - yyrg4676 := len(yyv4676) > 0 - yyv24676 := yyv4676 - yyrl4676, yyrt4676 = z.DecInferLen(yyl4676, z.DecBasicHandle().MaxInitLen, 688) - if yyrt4676 { - if yyrl4676 <= cap(yyv4676) { - yyv4676 = yyv4676[:yyrl4676] + yyrg4714 := len(yyv4714) > 0 + yyv24714 := yyv4714 + yyrl4714, yyrt4714 = z.DecInferLen(yyl4714, z.DecBasicHandle().MaxInitLen, 688) + if yyrt4714 { + if yyrl4714 <= cap(yyv4714) { + yyv4714 = yyv4714[:yyrl4714] } else { - yyv4676 = make([]Pod, yyrl4676) + yyv4714 = make([]Pod, yyrl4714) } } else { - yyv4676 = make([]Pod, yyrl4676) + yyv4714 = make([]Pod, yyrl4714) } - yyc4676 = true - yyrr4676 = len(yyv4676) - if yyrg4676 { - copy(yyv4676, yyv24676) + yyc4714 = true + yyrr4714 = len(yyv4714) + if yyrg4714 { + copy(yyv4714, yyv24714) } - } else if yyl4676 != len(yyv4676) { - yyv4676 = yyv4676[:yyl4676] - yyc4676 = true + } else if yyl4714 != len(yyv4714) { + yyv4714 = yyv4714[:yyl4714] + yyc4714 = true } - yyj4676 := 0 - for ; yyj4676 < yyrr4676; yyj4676++ { - yyh4676.ElemContainerState(yyj4676) + yyj4714 := 0 + for ; yyj4714 < yyrr4714; yyj4714++ { + yyh4714.ElemContainerState(yyj4714) if r.TryDecodeAsNil() { - yyv4676[yyj4676] = Pod{} + yyv4714[yyj4714] = Pod{} } else { - yyv4677 := &yyv4676[yyj4676] - yyv4677.CodecDecodeSelf(d) + yyv4715 := &yyv4714[yyj4714] + yyv4715.CodecDecodeSelf(d) } } - if yyrt4676 { - for ; yyj4676 < yyl4676; yyj4676++ { - yyv4676 = append(yyv4676, Pod{}) - yyh4676.ElemContainerState(yyj4676) + if yyrt4714 { + for ; yyj4714 < yyl4714; yyj4714++ { + yyv4714 = append(yyv4714, Pod{}) + yyh4714.ElemContainerState(yyj4714) if r.TryDecodeAsNil() { - yyv4676[yyj4676] = Pod{} + yyv4714[yyj4714] = Pod{} } else { - yyv4678 := &yyv4676[yyj4676] - yyv4678.CodecDecodeSelf(d) + yyv4716 := &yyv4714[yyj4714] + yyv4716.CodecDecodeSelf(d) } } } } else { - yyj4676 := 0 - for ; !r.CheckBreak(); yyj4676++ { + yyj4714 := 0 + for ; !r.CheckBreak(); yyj4714++ { - if yyj4676 >= len(yyv4676) { - yyv4676 = append(yyv4676, Pod{}) // var yyz4676 Pod - yyc4676 = true + if yyj4714 >= len(yyv4714) { + yyv4714 = append(yyv4714, Pod{}) // var yyz4714 Pod + yyc4714 = true } - yyh4676.ElemContainerState(yyj4676) - if yyj4676 < len(yyv4676) { + yyh4714.ElemContainerState(yyj4714) + if yyj4714 < len(yyv4714) { if r.TryDecodeAsNil() { - yyv4676[yyj4676] = Pod{} + yyv4714[yyj4714] = Pod{} } else { - yyv4679 := &yyv4676[yyj4676] - yyv4679.CodecDecodeSelf(d) + yyv4717 := &yyv4714[yyj4714] + yyv4717.CodecDecodeSelf(d) } } else { @@ -59227,17 +59805,17 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { } } - if yyj4676 < len(yyv4676) { - yyv4676 = yyv4676[:yyj4676] - yyc4676 = true - } else if yyj4676 == 0 && yyv4676 == nil { - yyv4676 = []Pod{} - yyc4676 = true + if yyj4714 < len(yyv4714) { + yyv4714 = yyv4714[:yyj4714] + yyc4714 = true + } else if yyj4714 == 0 && yyv4714 == nil { + yyv4714 = []Pod{} + yyc4714 = true } } - yyh4676.End() - if yyc4676 { - *v = yyv4676 + yyh4714.End() + if yyc4714 { + *v = yyv4714 } } @@ -59246,10 +59824,10 @@ func (x codecSelfer1234) encSlicePodTemplate(v []PodTemplate, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4680 := range v { + for _, yyv4718 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4681 := &yyv4680 - yy4681.CodecEncodeSelf(e) + yy4719 := &yyv4718 + yy4719.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59259,83 +59837,83 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4682 := *v - yyh4682, yyl4682 := z.DecSliceHelperStart() - var yyc4682 bool - if yyl4682 == 0 { - if yyv4682 == nil { - yyv4682 = []PodTemplate{} - yyc4682 = true - } else if len(yyv4682) != 0 { - yyv4682 = yyv4682[:0] - yyc4682 = true + yyv4720 := *v + yyh4720, yyl4720 := z.DecSliceHelperStart() + var yyc4720 bool + if yyl4720 == 0 { + if yyv4720 == nil { + yyv4720 = []PodTemplate{} + yyc4720 = true + } else if len(yyv4720) != 0 { + yyv4720 = yyv4720[:0] + yyc4720 = true } - } else if yyl4682 > 0 { - var yyrr4682, yyrl4682 int - var yyrt4682 bool - if yyl4682 > cap(yyv4682) { + } else if yyl4720 > 0 { + var yyrr4720, yyrl4720 int + var yyrt4720 bool + if yyl4720 > cap(yyv4720) { - yyrg4682 := len(yyv4682) > 0 - yyv24682 := yyv4682 - yyrl4682, yyrt4682 = z.DecInferLen(yyl4682, z.DecBasicHandle().MaxInitLen, 736) - if yyrt4682 { - if yyrl4682 <= cap(yyv4682) { - yyv4682 = yyv4682[:yyrl4682] + yyrg4720 := len(yyv4720) > 0 + yyv24720 := yyv4720 + yyrl4720, yyrt4720 = z.DecInferLen(yyl4720, z.DecBasicHandle().MaxInitLen, 736) + if yyrt4720 { + if yyrl4720 <= cap(yyv4720) { + yyv4720 = yyv4720[:yyrl4720] } else { - yyv4682 = make([]PodTemplate, yyrl4682) + yyv4720 = make([]PodTemplate, yyrl4720) } } else { - yyv4682 = make([]PodTemplate, yyrl4682) + yyv4720 = make([]PodTemplate, yyrl4720) } - yyc4682 = true - yyrr4682 = len(yyv4682) - if yyrg4682 { - copy(yyv4682, yyv24682) + yyc4720 = true + yyrr4720 = len(yyv4720) + if yyrg4720 { + copy(yyv4720, yyv24720) } - } else if yyl4682 != len(yyv4682) { - yyv4682 = yyv4682[:yyl4682] - yyc4682 = true + } else if yyl4720 != len(yyv4720) { + yyv4720 = yyv4720[:yyl4720] + yyc4720 = true } - yyj4682 := 0 - for ; yyj4682 < yyrr4682; yyj4682++ { - yyh4682.ElemContainerState(yyj4682) + yyj4720 := 0 + for ; yyj4720 < yyrr4720; yyj4720++ { + yyh4720.ElemContainerState(yyj4720) if r.TryDecodeAsNil() { - yyv4682[yyj4682] = PodTemplate{} + yyv4720[yyj4720] = PodTemplate{} } else { - yyv4683 := &yyv4682[yyj4682] - yyv4683.CodecDecodeSelf(d) + yyv4721 := &yyv4720[yyj4720] + yyv4721.CodecDecodeSelf(d) } } - if yyrt4682 { - for ; yyj4682 < yyl4682; yyj4682++ { - yyv4682 = append(yyv4682, PodTemplate{}) - yyh4682.ElemContainerState(yyj4682) + if yyrt4720 { + for ; yyj4720 < yyl4720; yyj4720++ { + yyv4720 = append(yyv4720, PodTemplate{}) + yyh4720.ElemContainerState(yyj4720) if r.TryDecodeAsNil() { - yyv4682[yyj4682] = PodTemplate{} + yyv4720[yyj4720] = PodTemplate{} } else { - yyv4684 := &yyv4682[yyj4682] - yyv4684.CodecDecodeSelf(d) + yyv4722 := &yyv4720[yyj4720] + yyv4722.CodecDecodeSelf(d) } } } } else { - yyj4682 := 0 - for ; !r.CheckBreak(); yyj4682++ { + yyj4720 := 0 + for ; !r.CheckBreak(); yyj4720++ { - if yyj4682 >= len(yyv4682) { - yyv4682 = append(yyv4682, PodTemplate{}) // var yyz4682 PodTemplate - yyc4682 = true + if yyj4720 >= len(yyv4720) { + yyv4720 = append(yyv4720, PodTemplate{}) // var yyz4720 PodTemplate + yyc4720 = true } - yyh4682.ElemContainerState(yyj4682) - if yyj4682 < len(yyv4682) { + yyh4720.ElemContainerState(yyj4720) + if yyj4720 < len(yyv4720) { if r.TryDecodeAsNil() { - yyv4682[yyj4682] = PodTemplate{} + yyv4720[yyj4720] = PodTemplate{} } else { - yyv4685 := &yyv4682[yyj4682] - yyv4685.CodecDecodeSelf(d) + yyv4723 := &yyv4720[yyj4720] + yyv4723.CodecDecodeSelf(d) } } else { @@ -59343,17 +59921,17 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco } } - if yyj4682 < len(yyv4682) { - yyv4682 = yyv4682[:yyj4682] - yyc4682 = true - } else if yyj4682 == 0 && yyv4682 == nil { - yyv4682 = []PodTemplate{} - yyc4682 = true + if yyj4720 < len(yyv4720) { + yyv4720 = yyv4720[:yyj4720] + yyc4720 = true + } else if yyj4720 == 0 && yyv4720 == nil { + yyv4720 = []PodTemplate{} + yyc4720 = true } } - yyh4682.End() - if yyc4682 { - *v = yyv4682 + yyh4720.End() + if yyc4720 { + *v = yyv4720 } } @@ -59362,10 +59940,10 @@ func (x codecSelfer1234) encSliceReplicationControllerCondition(v []ReplicationC z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4686 := range v { + for _, yyv4724 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4687 := &yyv4686 - yy4687.CodecEncodeSelf(e) + yy4725 := &yyv4724 + yy4725.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59375,83 +59953,83 @@ func (x codecSelfer1234) decSliceReplicationControllerCondition(v *[]Replication z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4688 := *v - yyh4688, yyl4688 := z.DecSliceHelperStart() - var yyc4688 bool - if yyl4688 == 0 { - if yyv4688 == nil { - yyv4688 = []ReplicationControllerCondition{} - yyc4688 = true - } else if len(yyv4688) != 0 { - yyv4688 = yyv4688[:0] - yyc4688 = true + yyv4726 := *v + yyh4726, yyl4726 := z.DecSliceHelperStart() + var yyc4726 bool + if yyl4726 == 0 { + if yyv4726 == nil { + yyv4726 = []ReplicationControllerCondition{} + yyc4726 = true + } else if len(yyv4726) != 0 { + yyv4726 = yyv4726[:0] + yyc4726 = true } - } else if yyl4688 > 0 { - var yyrr4688, yyrl4688 int - var yyrt4688 bool - if yyl4688 > cap(yyv4688) { + } else if yyl4726 > 0 { + var yyrr4726, yyrl4726 int + var yyrt4726 bool + if yyl4726 > cap(yyv4726) { - yyrg4688 := len(yyv4688) > 0 - yyv24688 := yyv4688 - yyrl4688, yyrt4688 = z.DecInferLen(yyl4688, z.DecBasicHandle().MaxInitLen, 88) - if yyrt4688 { - if yyrl4688 <= cap(yyv4688) { - yyv4688 = yyv4688[:yyrl4688] + yyrg4726 := len(yyv4726) > 0 + yyv24726 := yyv4726 + yyrl4726, yyrt4726 = z.DecInferLen(yyl4726, z.DecBasicHandle().MaxInitLen, 88) + if yyrt4726 { + if yyrl4726 <= cap(yyv4726) { + yyv4726 = yyv4726[:yyrl4726] } else { - yyv4688 = make([]ReplicationControllerCondition, yyrl4688) + yyv4726 = make([]ReplicationControllerCondition, yyrl4726) } } else { - yyv4688 = make([]ReplicationControllerCondition, yyrl4688) + yyv4726 = make([]ReplicationControllerCondition, yyrl4726) } - yyc4688 = true - yyrr4688 = len(yyv4688) - if yyrg4688 { - copy(yyv4688, yyv24688) + yyc4726 = true + yyrr4726 = len(yyv4726) + if yyrg4726 { + copy(yyv4726, yyv24726) } - } else if yyl4688 != len(yyv4688) { - yyv4688 = yyv4688[:yyl4688] - yyc4688 = true + } else if yyl4726 != len(yyv4726) { + yyv4726 = yyv4726[:yyl4726] + yyc4726 = true } - yyj4688 := 0 - for ; yyj4688 < yyrr4688; yyj4688++ { - yyh4688.ElemContainerState(yyj4688) + yyj4726 := 0 + for ; yyj4726 < yyrr4726; yyj4726++ { + yyh4726.ElemContainerState(yyj4726) if r.TryDecodeAsNil() { - yyv4688[yyj4688] = ReplicationControllerCondition{} + yyv4726[yyj4726] = ReplicationControllerCondition{} } else { - yyv4689 := &yyv4688[yyj4688] - yyv4689.CodecDecodeSelf(d) + yyv4727 := &yyv4726[yyj4726] + yyv4727.CodecDecodeSelf(d) } } - if yyrt4688 { - for ; yyj4688 < yyl4688; yyj4688++ { - yyv4688 = append(yyv4688, ReplicationControllerCondition{}) - yyh4688.ElemContainerState(yyj4688) + if yyrt4726 { + for ; yyj4726 < yyl4726; yyj4726++ { + yyv4726 = append(yyv4726, ReplicationControllerCondition{}) + yyh4726.ElemContainerState(yyj4726) if r.TryDecodeAsNil() { - yyv4688[yyj4688] = ReplicationControllerCondition{} + yyv4726[yyj4726] = ReplicationControllerCondition{} } else { - yyv4690 := &yyv4688[yyj4688] - yyv4690.CodecDecodeSelf(d) + yyv4728 := &yyv4726[yyj4726] + yyv4728.CodecDecodeSelf(d) } } } } else { - yyj4688 := 0 - for ; !r.CheckBreak(); yyj4688++ { + yyj4726 := 0 + for ; !r.CheckBreak(); yyj4726++ { - if yyj4688 >= len(yyv4688) { - yyv4688 = append(yyv4688, ReplicationControllerCondition{}) // var yyz4688 ReplicationControllerCondition - yyc4688 = true + if yyj4726 >= len(yyv4726) { + yyv4726 = append(yyv4726, ReplicationControllerCondition{}) // var yyz4726 ReplicationControllerCondition + yyc4726 = true } - yyh4688.ElemContainerState(yyj4688) - if yyj4688 < len(yyv4688) { + yyh4726.ElemContainerState(yyj4726) + if yyj4726 < len(yyv4726) { if r.TryDecodeAsNil() { - yyv4688[yyj4688] = ReplicationControllerCondition{} + yyv4726[yyj4726] = ReplicationControllerCondition{} } else { - yyv4691 := &yyv4688[yyj4688] - yyv4691.CodecDecodeSelf(d) + yyv4729 := &yyv4726[yyj4726] + yyv4729.CodecDecodeSelf(d) } } else { @@ -59459,17 +60037,17 @@ func (x codecSelfer1234) decSliceReplicationControllerCondition(v *[]Replication } } - if yyj4688 < len(yyv4688) { - yyv4688 = yyv4688[:yyj4688] - yyc4688 = true - } else if yyj4688 == 0 && yyv4688 == nil { - yyv4688 = []ReplicationControllerCondition{} - yyc4688 = true + if yyj4726 < len(yyv4726) { + yyv4726 = yyv4726[:yyj4726] + yyc4726 = true + } else if yyj4726 == 0 && yyv4726 == nil { + yyv4726 = []ReplicationControllerCondition{} + yyc4726 = true } } - yyh4688.End() - if yyc4688 { - *v = yyv4688 + yyh4726.End() + if yyc4726 { + *v = yyv4726 } } @@ -59478,10 +60056,10 @@ func (x codecSelfer1234) encSliceReplicationController(v []ReplicationController z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4692 := range v { + for _, yyv4730 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4693 := &yyv4692 - yy4693.CodecEncodeSelf(e) + yy4731 := &yyv4730 + yy4731.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59491,83 +60069,83 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4694 := *v - yyh4694, yyl4694 := z.DecSliceHelperStart() - var yyc4694 bool - if yyl4694 == 0 { - if yyv4694 == nil { - yyv4694 = []ReplicationController{} - yyc4694 = true - } else if len(yyv4694) != 0 { - yyv4694 = yyv4694[:0] - yyc4694 = true + yyv4732 := *v + yyh4732, yyl4732 := z.DecSliceHelperStart() + var yyc4732 bool + if yyl4732 == 0 { + if yyv4732 == nil { + yyv4732 = []ReplicationController{} + yyc4732 = true + } else if len(yyv4732) != 0 { + yyv4732 = yyv4732[:0] + yyc4732 = true } - } else if yyl4694 > 0 { - var yyrr4694, yyrl4694 int - var yyrt4694 bool - if yyl4694 > cap(yyv4694) { + } else if yyl4732 > 0 { + var yyrr4732, yyrl4732 int + var yyrt4732 bool + if yyl4732 > cap(yyv4732) { - yyrg4694 := len(yyv4694) > 0 - yyv24694 := yyv4694 - yyrl4694, yyrt4694 = z.DecInferLen(yyl4694, z.DecBasicHandle().MaxInitLen, 336) - if yyrt4694 { - if yyrl4694 <= cap(yyv4694) { - yyv4694 = yyv4694[:yyrl4694] + yyrg4732 := len(yyv4732) > 0 + yyv24732 := yyv4732 + yyrl4732, yyrt4732 = z.DecInferLen(yyl4732, z.DecBasicHandle().MaxInitLen, 336) + if yyrt4732 { + if yyrl4732 <= cap(yyv4732) { + yyv4732 = yyv4732[:yyrl4732] } else { - yyv4694 = make([]ReplicationController, yyrl4694) + yyv4732 = make([]ReplicationController, yyrl4732) } } else { - yyv4694 = make([]ReplicationController, yyrl4694) + yyv4732 = make([]ReplicationController, yyrl4732) } - yyc4694 = true - yyrr4694 = len(yyv4694) - if yyrg4694 { - copy(yyv4694, yyv24694) + yyc4732 = true + yyrr4732 = len(yyv4732) + if yyrg4732 { + copy(yyv4732, yyv24732) } - } else if yyl4694 != len(yyv4694) { - yyv4694 = yyv4694[:yyl4694] - yyc4694 = true + } else if yyl4732 != len(yyv4732) { + yyv4732 = yyv4732[:yyl4732] + yyc4732 = true } - yyj4694 := 0 - for ; yyj4694 < yyrr4694; yyj4694++ { - yyh4694.ElemContainerState(yyj4694) + yyj4732 := 0 + for ; yyj4732 < yyrr4732; yyj4732++ { + yyh4732.ElemContainerState(yyj4732) if r.TryDecodeAsNil() { - yyv4694[yyj4694] = ReplicationController{} + yyv4732[yyj4732] = ReplicationController{} } else { - yyv4695 := &yyv4694[yyj4694] - yyv4695.CodecDecodeSelf(d) + yyv4733 := &yyv4732[yyj4732] + yyv4733.CodecDecodeSelf(d) } } - if yyrt4694 { - for ; yyj4694 < yyl4694; yyj4694++ { - yyv4694 = append(yyv4694, ReplicationController{}) - yyh4694.ElemContainerState(yyj4694) + if yyrt4732 { + for ; yyj4732 < yyl4732; yyj4732++ { + yyv4732 = append(yyv4732, ReplicationController{}) + yyh4732.ElemContainerState(yyj4732) if r.TryDecodeAsNil() { - yyv4694[yyj4694] = ReplicationController{} + yyv4732[yyj4732] = ReplicationController{} } else { - yyv4696 := &yyv4694[yyj4694] - yyv4696.CodecDecodeSelf(d) + yyv4734 := &yyv4732[yyj4732] + yyv4734.CodecDecodeSelf(d) } } } } else { - yyj4694 := 0 - for ; !r.CheckBreak(); yyj4694++ { + yyj4732 := 0 + for ; !r.CheckBreak(); yyj4732++ { - if yyj4694 >= len(yyv4694) { - yyv4694 = append(yyv4694, ReplicationController{}) // var yyz4694 ReplicationController - yyc4694 = true + if yyj4732 >= len(yyv4732) { + yyv4732 = append(yyv4732, ReplicationController{}) // var yyz4732 ReplicationController + yyc4732 = true } - yyh4694.ElemContainerState(yyj4694) - if yyj4694 < len(yyv4694) { + yyh4732.ElemContainerState(yyj4732) + if yyj4732 < len(yyv4732) { if r.TryDecodeAsNil() { - yyv4694[yyj4694] = ReplicationController{} + yyv4732[yyj4732] = ReplicationController{} } else { - yyv4697 := &yyv4694[yyj4694] - yyv4697.CodecDecodeSelf(d) + yyv4735 := &yyv4732[yyj4732] + yyv4735.CodecDecodeSelf(d) } } else { @@ -59575,17 +60153,17 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle } } - if yyj4694 < len(yyv4694) { - yyv4694 = yyv4694[:yyj4694] - yyc4694 = true - } else if yyj4694 == 0 && yyv4694 == nil { - yyv4694 = []ReplicationController{} - yyc4694 = true + if yyj4732 < len(yyv4732) { + yyv4732 = yyv4732[:yyj4732] + yyc4732 = true + } else if yyj4732 == 0 && yyv4732 == nil { + yyv4732 = []ReplicationController{} + yyc4732 = true } } - yyh4694.End() - if yyc4694 { - *v = yyv4694 + yyh4732.End() + if yyc4732 { + *v = yyv4732 } } @@ -59594,10 +60172,10 @@ func (x codecSelfer1234) encSliceLoadBalancerIngress(v []LoadBalancerIngress, e z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4698 := range v { + for _, yyv4736 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4699 := &yyv4698 - yy4699.CodecEncodeSelf(e) + yy4737 := &yyv4736 + yy4737.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59607,83 +60185,83 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4700 := *v - yyh4700, yyl4700 := z.DecSliceHelperStart() - var yyc4700 bool - if yyl4700 == 0 { - if yyv4700 == nil { - yyv4700 = []LoadBalancerIngress{} - yyc4700 = true - } else if len(yyv4700) != 0 { - yyv4700 = yyv4700[:0] - yyc4700 = true + yyv4738 := *v + yyh4738, yyl4738 := z.DecSliceHelperStart() + var yyc4738 bool + if yyl4738 == 0 { + if yyv4738 == nil { + yyv4738 = []LoadBalancerIngress{} + yyc4738 = true + } else if len(yyv4738) != 0 { + yyv4738 = yyv4738[:0] + yyc4738 = true } - } else if yyl4700 > 0 { - var yyrr4700, yyrl4700 int - var yyrt4700 bool - if yyl4700 > cap(yyv4700) { + } else if yyl4738 > 0 { + var yyrr4738, yyrl4738 int + var yyrt4738 bool + if yyl4738 > cap(yyv4738) { - yyrg4700 := len(yyv4700) > 0 - yyv24700 := yyv4700 - yyrl4700, yyrt4700 = z.DecInferLen(yyl4700, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4700 { - if yyrl4700 <= cap(yyv4700) { - yyv4700 = yyv4700[:yyrl4700] + yyrg4738 := len(yyv4738) > 0 + yyv24738 := yyv4738 + yyrl4738, yyrt4738 = z.DecInferLen(yyl4738, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4738 { + if yyrl4738 <= cap(yyv4738) { + yyv4738 = yyv4738[:yyrl4738] } else { - yyv4700 = make([]LoadBalancerIngress, yyrl4700) + yyv4738 = make([]LoadBalancerIngress, yyrl4738) } } else { - yyv4700 = make([]LoadBalancerIngress, yyrl4700) + yyv4738 = make([]LoadBalancerIngress, yyrl4738) } - yyc4700 = true - yyrr4700 = len(yyv4700) - if yyrg4700 { - copy(yyv4700, yyv24700) + yyc4738 = true + yyrr4738 = len(yyv4738) + if yyrg4738 { + copy(yyv4738, yyv24738) } - } else if yyl4700 != len(yyv4700) { - yyv4700 = yyv4700[:yyl4700] - yyc4700 = true + } else if yyl4738 != len(yyv4738) { + yyv4738 = yyv4738[:yyl4738] + yyc4738 = true } - yyj4700 := 0 - for ; yyj4700 < yyrr4700; yyj4700++ { - yyh4700.ElemContainerState(yyj4700) + yyj4738 := 0 + for ; yyj4738 < yyrr4738; yyj4738++ { + yyh4738.ElemContainerState(yyj4738) if r.TryDecodeAsNil() { - yyv4700[yyj4700] = LoadBalancerIngress{} + yyv4738[yyj4738] = LoadBalancerIngress{} } else { - yyv4701 := &yyv4700[yyj4700] - yyv4701.CodecDecodeSelf(d) + yyv4739 := &yyv4738[yyj4738] + yyv4739.CodecDecodeSelf(d) } } - if yyrt4700 { - for ; yyj4700 < yyl4700; yyj4700++ { - yyv4700 = append(yyv4700, LoadBalancerIngress{}) - yyh4700.ElemContainerState(yyj4700) + if yyrt4738 { + for ; yyj4738 < yyl4738; yyj4738++ { + yyv4738 = append(yyv4738, LoadBalancerIngress{}) + yyh4738.ElemContainerState(yyj4738) if r.TryDecodeAsNil() { - yyv4700[yyj4700] = LoadBalancerIngress{} + yyv4738[yyj4738] = LoadBalancerIngress{} } else { - yyv4702 := &yyv4700[yyj4700] - yyv4702.CodecDecodeSelf(d) + yyv4740 := &yyv4738[yyj4738] + yyv4740.CodecDecodeSelf(d) } } } } else { - yyj4700 := 0 - for ; !r.CheckBreak(); yyj4700++ { + yyj4738 := 0 + for ; !r.CheckBreak(); yyj4738++ { - if yyj4700 >= len(yyv4700) { - yyv4700 = append(yyv4700, LoadBalancerIngress{}) // var yyz4700 LoadBalancerIngress - yyc4700 = true + if yyj4738 >= len(yyv4738) { + yyv4738 = append(yyv4738, LoadBalancerIngress{}) // var yyz4738 LoadBalancerIngress + yyc4738 = true } - yyh4700.ElemContainerState(yyj4700) - if yyj4700 < len(yyv4700) { + yyh4738.ElemContainerState(yyj4738) + if yyj4738 < len(yyv4738) { if r.TryDecodeAsNil() { - yyv4700[yyj4700] = LoadBalancerIngress{} + yyv4738[yyj4738] = LoadBalancerIngress{} } else { - yyv4703 := &yyv4700[yyj4700] - yyv4703.CodecDecodeSelf(d) + yyv4741 := &yyv4738[yyj4738] + yyv4741.CodecDecodeSelf(d) } } else { @@ -59691,17 +60269,17 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d } } - if yyj4700 < len(yyv4700) { - yyv4700 = yyv4700[:yyj4700] - yyc4700 = true - } else if yyj4700 == 0 && yyv4700 == nil { - yyv4700 = []LoadBalancerIngress{} - yyc4700 = true + if yyj4738 < len(yyv4738) { + yyv4738 = yyv4738[:yyj4738] + yyc4738 = true + } else if yyj4738 == 0 && yyv4738 == nil { + yyv4738 = []LoadBalancerIngress{} + yyc4738 = true } } - yyh4700.End() - if yyc4700 { - *v = yyv4700 + yyh4738.End() + if yyc4738 { + *v = yyv4738 } } @@ -59710,10 +60288,10 @@ func (x codecSelfer1234) encSliceServicePort(v []ServicePort, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4704 := range v { + for _, yyv4742 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4705 := &yyv4704 - yy4705.CodecEncodeSelf(e) + yy4743 := &yyv4742 + yy4743.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59723,83 +60301,83 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4706 := *v - yyh4706, yyl4706 := z.DecSliceHelperStart() - var yyc4706 bool - if yyl4706 == 0 { - if yyv4706 == nil { - yyv4706 = []ServicePort{} - yyc4706 = true - } else if len(yyv4706) != 0 { - yyv4706 = yyv4706[:0] - yyc4706 = true + yyv4744 := *v + yyh4744, yyl4744 := z.DecSliceHelperStart() + var yyc4744 bool + if yyl4744 == 0 { + if yyv4744 == nil { + yyv4744 = []ServicePort{} + yyc4744 = true + } else if len(yyv4744) != 0 { + yyv4744 = yyv4744[:0] + yyc4744 = true } - } else if yyl4706 > 0 { - var yyrr4706, yyrl4706 int - var yyrt4706 bool - if yyl4706 > cap(yyv4706) { + } else if yyl4744 > 0 { + var yyrr4744, yyrl4744 int + var yyrt4744 bool + if yyl4744 > cap(yyv4744) { - yyrg4706 := len(yyv4706) > 0 - yyv24706 := yyv4706 - yyrl4706, yyrt4706 = z.DecInferLen(yyl4706, z.DecBasicHandle().MaxInitLen, 80) - if yyrt4706 { - if yyrl4706 <= cap(yyv4706) { - yyv4706 = yyv4706[:yyrl4706] + yyrg4744 := len(yyv4744) > 0 + yyv24744 := yyv4744 + yyrl4744, yyrt4744 = z.DecInferLen(yyl4744, z.DecBasicHandle().MaxInitLen, 80) + if yyrt4744 { + if yyrl4744 <= cap(yyv4744) { + yyv4744 = yyv4744[:yyrl4744] } else { - yyv4706 = make([]ServicePort, yyrl4706) + yyv4744 = make([]ServicePort, yyrl4744) } } else { - yyv4706 = make([]ServicePort, yyrl4706) + yyv4744 = make([]ServicePort, yyrl4744) } - yyc4706 = true - yyrr4706 = len(yyv4706) - if yyrg4706 { - copy(yyv4706, yyv24706) + yyc4744 = true + yyrr4744 = len(yyv4744) + if yyrg4744 { + copy(yyv4744, yyv24744) } - } else if yyl4706 != len(yyv4706) { - yyv4706 = yyv4706[:yyl4706] - yyc4706 = true + } else if yyl4744 != len(yyv4744) { + yyv4744 = yyv4744[:yyl4744] + yyc4744 = true } - yyj4706 := 0 - for ; yyj4706 < yyrr4706; yyj4706++ { - yyh4706.ElemContainerState(yyj4706) + yyj4744 := 0 + for ; yyj4744 < yyrr4744; yyj4744++ { + yyh4744.ElemContainerState(yyj4744) if r.TryDecodeAsNil() { - yyv4706[yyj4706] = ServicePort{} + yyv4744[yyj4744] = ServicePort{} } else { - yyv4707 := &yyv4706[yyj4706] - yyv4707.CodecDecodeSelf(d) + yyv4745 := &yyv4744[yyj4744] + yyv4745.CodecDecodeSelf(d) } } - if yyrt4706 { - for ; yyj4706 < yyl4706; yyj4706++ { - yyv4706 = append(yyv4706, ServicePort{}) - yyh4706.ElemContainerState(yyj4706) + if yyrt4744 { + for ; yyj4744 < yyl4744; yyj4744++ { + yyv4744 = append(yyv4744, ServicePort{}) + yyh4744.ElemContainerState(yyj4744) if r.TryDecodeAsNil() { - yyv4706[yyj4706] = ServicePort{} + yyv4744[yyj4744] = ServicePort{} } else { - yyv4708 := &yyv4706[yyj4706] - yyv4708.CodecDecodeSelf(d) + yyv4746 := &yyv4744[yyj4744] + yyv4746.CodecDecodeSelf(d) } } } } else { - yyj4706 := 0 - for ; !r.CheckBreak(); yyj4706++ { + yyj4744 := 0 + for ; !r.CheckBreak(); yyj4744++ { - if yyj4706 >= len(yyv4706) { - yyv4706 = append(yyv4706, ServicePort{}) // var yyz4706 ServicePort - yyc4706 = true + if yyj4744 >= len(yyv4744) { + yyv4744 = append(yyv4744, ServicePort{}) // var yyz4744 ServicePort + yyc4744 = true } - yyh4706.ElemContainerState(yyj4706) - if yyj4706 < len(yyv4706) { + yyh4744.ElemContainerState(yyj4744) + if yyj4744 < len(yyv4744) { if r.TryDecodeAsNil() { - yyv4706[yyj4706] = ServicePort{} + yyv4744[yyj4744] = ServicePort{} } else { - yyv4709 := &yyv4706[yyj4706] - yyv4709.CodecDecodeSelf(d) + yyv4747 := &yyv4744[yyj4744] + yyv4747.CodecDecodeSelf(d) } } else { @@ -59807,17 +60385,17 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco } } - if yyj4706 < len(yyv4706) { - yyv4706 = yyv4706[:yyj4706] - yyc4706 = true - } else if yyj4706 == 0 && yyv4706 == nil { - yyv4706 = []ServicePort{} - yyc4706 = true + if yyj4744 < len(yyv4744) { + yyv4744 = yyv4744[:yyj4744] + yyc4744 = true + } else if yyj4744 == 0 && yyv4744 == nil { + yyv4744 = []ServicePort{} + yyc4744 = true } } - yyh4706.End() - if yyc4706 { - *v = yyv4706 + yyh4744.End() + if yyc4744 { + *v = yyv4744 } } @@ -59826,10 +60404,10 @@ func (x codecSelfer1234) encSliceService(v []Service, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4710 := range v { + for _, yyv4748 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4711 := &yyv4710 - yy4711.CodecEncodeSelf(e) + yy4749 := &yyv4748 + yy4749.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59839,83 +60417,83 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4712 := *v - yyh4712, yyl4712 := z.DecSliceHelperStart() - var yyc4712 bool - if yyl4712 == 0 { - if yyv4712 == nil { - yyv4712 = []Service{} - yyc4712 = true - } else if len(yyv4712) != 0 { - yyv4712 = yyv4712[:0] - yyc4712 = true + yyv4750 := *v + yyh4750, yyl4750 := z.DecSliceHelperStart() + var yyc4750 bool + if yyl4750 == 0 { + if yyv4750 == nil { + yyv4750 = []Service{} + yyc4750 = true + } else if len(yyv4750) != 0 { + yyv4750 = yyv4750[:0] + yyc4750 = true } - } else if yyl4712 > 0 { - var yyrr4712, yyrl4712 int - var yyrt4712 bool - if yyl4712 > cap(yyv4712) { + } else if yyl4750 > 0 { + var yyrr4750, yyrl4750 int + var yyrt4750 bool + if yyl4750 > cap(yyv4750) { - yyrg4712 := len(yyv4712) > 0 - yyv24712 := yyv4712 - yyrl4712, yyrt4712 = z.DecInferLen(yyl4712, z.DecBasicHandle().MaxInitLen, 464) - if yyrt4712 { - if yyrl4712 <= cap(yyv4712) { - yyv4712 = yyv4712[:yyrl4712] + yyrg4750 := len(yyv4750) > 0 + yyv24750 := yyv4750 + yyrl4750, yyrt4750 = z.DecInferLen(yyl4750, z.DecBasicHandle().MaxInitLen, 464) + if yyrt4750 { + if yyrl4750 <= cap(yyv4750) { + yyv4750 = yyv4750[:yyrl4750] } else { - yyv4712 = make([]Service, yyrl4712) + yyv4750 = make([]Service, yyrl4750) } } else { - yyv4712 = make([]Service, yyrl4712) + yyv4750 = make([]Service, yyrl4750) } - yyc4712 = true - yyrr4712 = len(yyv4712) - if yyrg4712 { - copy(yyv4712, yyv24712) + yyc4750 = true + yyrr4750 = len(yyv4750) + if yyrg4750 { + copy(yyv4750, yyv24750) } - } else if yyl4712 != len(yyv4712) { - yyv4712 = yyv4712[:yyl4712] - yyc4712 = true + } else if yyl4750 != len(yyv4750) { + yyv4750 = yyv4750[:yyl4750] + yyc4750 = true } - yyj4712 := 0 - for ; yyj4712 < yyrr4712; yyj4712++ { - yyh4712.ElemContainerState(yyj4712) + yyj4750 := 0 + for ; yyj4750 < yyrr4750; yyj4750++ { + yyh4750.ElemContainerState(yyj4750) if r.TryDecodeAsNil() { - yyv4712[yyj4712] = Service{} + yyv4750[yyj4750] = Service{} } else { - yyv4713 := &yyv4712[yyj4712] - yyv4713.CodecDecodeSelf(d) + yyv4751 := &yyv4750[yyj4750] + yyv4751.CodecDecodeSelf(d) } } - if yyrt4712 { - for ; yyj4712 < yyl4712; yyj4712++ { - yyv4712 = append(yyv4712, Service{}) - yyh4712.ElemContainerState(yyj4712) + if yyrt4750 { + for ; yyj4750 < yyl4750; yyj4750++ { + yyv4750 = append(yyv4750, Service{}) + yyh4750.ElemContainerState(yyj4750) if r.TryDecodeAsNil() { - yyv4712[yyj4712] = Service{} + yyv4750[yyj4750] = Service{} } else { - yyv4714 := &yyv4712[yyj4712] - yyv4714.CodecDecodeSelf(d) + yyv4752 := &yyv4750[yyj4750] + yyv4752.CodecDecodeSelf(d) } } } } else { - yyj4712 := 0 - for ; !r.CheckBreak(); yyj4712++ { + yyj4750 := 0 + for ; !r.CheckBreak(); yyj4750++ { - if yyj4712 >= len(yyv4712) { - yyv4712 = append(yyv4712, Service{}) // var yyz4712 Service - yyc4712 = true + if yyj4750 >= len(yyv4750) { + yyv4750 = append(yyv4750, Service{}) // var yyz4750 Service + yyc4750 = true } - yyh4712.ElemContainerState(yyj4712) - if yyj4712 < len(yyv4712) { + yyh4750.ElemContainerState(yyj4750) + if yyj4750 < len(yyv4750) { if r.TryDecodeAsNil() { - yyv4712[yyj4712] = Service{} + yyv4750[yyj4750] = Service{} } else { - yyv4715 := &yyv4712[yyj4712] - yyv4715.CodecDecodeSelf(d) + yyv4753 := &yyv4750[yyj4750] + yyv4753.CodecDecodeSelf(d) } } else { @@ -59923,17 +60501,17 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { } } - if yyj4712 < len(yyv4712) { - yyv4712 = yyv4712[:yyj4712] - yyc4712 = true - } else if yyj4712 == 0 && yyv4712 == nil { - yyv4712 = []Service{} - yyc4712 = true + if yyj4750 < len(yyv4750) { + yyv4750 = yyv4750[:yyj4750] + yyc4750 = true + } else if yyj4750 == 0 && yyv4750 == nil { + yyv4750 = []Service{} + yyc4750 = true } } - yyh4712.End() - if yyc4712 { - *v = yyv4712 + yyh4750.End() + if yyc4750 { + *v = yyv4750 } } @@ -59942,10 +60520,10 @@ func (x codecSelfer1234) encSliceObjectReference(v []ObjectReference, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4716 := range v { + for _, yyv4754 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4717 := &yyv4716 - yy4717.CodecEncodeSelf(e) + yy4755 := &yyv4754 + yy4755.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59955,83 +60533,83 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4718 := *v - yyh4718, yyl4718 := z.DecSliceHelperStart() - var yyc4718 bool - if yyl4718 == 0 { - if yyv4718 == nil { - yyv4718 = []ObjectReference{} - yyc4718 = true - } else if len(yyv4718) != 0 { - yyv4718 = yyv4718[:0] - yyc4718 = true + yyv4756 := *v + yyh4756, yyl4756 := z.DecSliceHelperStart() + var yyc4756 bool + if yyl4756 == 0 { + if yyv4756 == nil { + yyv4756 = []ObjectReference{} + yyc4756 = true + } else if len(yyv4756) != 0 { + yyv4756 = yyv4756[:0] + yyc4756 = true } - } else if yyl4718 > 0 { - var yyrr4718, yyrl4718 int - var yyrt4718 bool - if yyl4718 > cap(yyv4718) { + } else if yyl4756 > 0 { + var yyrr4756, yyrl4756 int + var yyrt4756 bool + if yyl4756 > cap(yyv4756) { - yyrg4718 := len(yyv4718) > 0 - yyv24718 := yyv4718 - yyrl4718, yyrt4718 = z.DecInferLen(yyl4718, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4718 { - if yyrl4718 <= cap(yyv4718) { - yyv4718 = yyv4718[:yyrl4718] + yyrg4756 := len(yyv4756) > 0 + yyv24756 := yyv4756 + yyrl4756, yyrt4756 = z.DecInferLen(yyl4756, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4756 { + if yyrl4756 <= cap(yyv4756) { + yyv4756 = yyv4756[:yyrl4756] } else { - yyv4718 = make([]ObjectReference, yyrl4718) + yyv4756 = make([]ObjectReference, yyrl4756) } } else { - yyv4718 = make([]ObjectReference, yyrl4718) + yyv4756 = make([]ObjectReference, yyrl4756) } - yyc4718 = true - yyrr4718 = len(yyv4718) - if yyrg4718 { - copy(yyv4718, yyv24718) + yyc4756 = true + yyrr4756 = len(yyv4756) + if yyrg4756 { + copy(yyv4756, yyv24756) } - } else if yyl4718 != len(yyv4718) { - yyv4718 = yyv4718[:yyl4718] - yyc4718 = true + } else if yyl4756 != len(yyv4756) { + yyv4756 = yyv4756[:yyl4756] + yyc4756 = true } - yyj4718 := 0 - for ; yyj4718 < yyrr4718; yyj4718++ { - yyh4718.ElemContainerState(yyj4718) + yyj4756 := 0 + for ; yyj4756 < yyrr4756; yyj4756++ { + yyh4756.ElemContainerState(yyj4756) if r.TryDecodeAsNil() { - yyv4718[yyj4718] = ObjectReference{} + yyv4756[yyj4756] = ObjectReference{} } else { - yyv4719 := &yyv4718[yyj4718] - yyv4719.CodecDecodeSelf(d) + yyv4757 := &yyv4756[yyj4756] + yyv4757.CodecDecodeSelf(d) } } - if yyrt4718 { - for ; yyj4718 < yyl4718; yyj4718++ { - yyv4718 = append(yyv4718, ObjectReference{}) - yyh4718.ElemContainerState(yyj4718) + if yyrt4756 { + for ; yyj4756 < yyl4756; yyj4756++ { + yyv4756 = append(yyv4756, ObjectReference{}) + yyh4756.ElemContainerState(yyj4756) if r.TryDecodeAsNil() { - yyv4718[yyj4718] = ObjectReference{} + yyv4756[yyj4756] = ObjectReference{} } else { - yyv4720 := &yyv4718[yyj4718] - yyv4720.CodecDecodeSelf(d) + yyv4758 := &yyv4756[yyj4756] + yyv4758.CodecDecodeSelf(d) } } } } else { - yyj4718 := 0 - for ; !r.CheckBreak(); yyj4718++ { + yyj4756 := 0 + for ; !r.CheckBreak(); yyj4756++ { - if yyj4718 >= len(yyv4718) { - yyv4718 = append(yyv4718, ObjectReference{}) // var yyz4718 ObjectReference - yyc4718 = true + if yyj4756 >= len(yyv4756) { + yyv4756 = append(yyv4756, ObjectReference{}) // var yyz4756 ObjectReference + yyc4756 = true } - yyh4718.ElemContainerState(yyj4718) - if yyj4718 < len(yyv4718) { + yyh4756.ElemContainerState(yyj4756) + if yyj4756 < len(yyv4756) { if r.TryDecodeAsNil() { - yyv4718[yyj4718] = ObjectReference{} + yyv4756[yyj4756] = ObjectReference{} } else { - yyv4721 := &yyv4718[yyj4718] - yyv4721.CodecDecodeSelf(d) + yyv4759 := &yyv4756[yyj4756] + yyv4759.CodecDecodeSelf(d) } } else { @@ -60039,17 +60617,17 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 } } - if yyj4718 < len(yyv4718) { - yyv4718 = yyv4718[:yyj4718] - yyc4718 = true - } else if yyj4718 == 0 && yyv4718 == nil { - yyv4718 = []ObjectReference{} - yyc4718 = true + if yyj4756 < len(yyv4756) { + yyv4756 = yyv4756[:yyj4756] + yyc4756 = true + } else if yyj4756 == 0 && yyv4756 == nil { + yyv4756 = []ObjectReference{} + yyc4756 = true } } - yyh4718.End() - if yyc4718 { - *v = yyv4718 + yyh4756.End() + if yyc4756 { + *v = yyv4756 } } @@ -60058,10 +60636,10 @@ func (x codecSelfer1234) encSliceServiceAccount(v []ServiceAccount, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4722 := range v { + for _, yyv4760 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4723 := &yyv4722 - yy4723.CodecEncodeSelf(e) + yy4761 := &yyv4760 + yy4761.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60071,83 +60649,83 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4724 := *v - yyh4724, yyl4724 := z.DecSliceHelperStart() - var yyc4724 bool - if yyl4724 == 0 { - if yyv4724 == nil { - yyv4724 = []ServiceAccount{} - yyc4724 = true - } else if len(yyv4724) != 0 { - yyv4724 = yyv4724[:0] - yyc4724 = true + yyv4762 := *v + yyh4762, yyl4762 := z.DecSliceHelperStart() + var yyc4762 bool + if yyl4762 == 0 { + if yyv4762 == nil { + yyv4762 = []ServiceAccount{} + yyc4762 = true + } else if len(yyv4762) != 0 { + yyv4762 = yyv4762[:0] + yyc4762 = true } - } else if yyl4724 > 0 { - var yyrr4724, yyrl4724 int - var yyrt4724 bool - if yyl4724 > cap(yyv4724) { + } else if yyl4762 > 0 { + var yyrr4762, yyrl4762 int + var yyrt4762 bool + if yyl4762 > cap(yyv4762) { - yyrg4724 := len(yyv4724) > 0 - yyv24724 := yyv4724 - yyrl4724, yyrt4724 = z.DecInferLen(yyl4724, z.DecBasicHandle().MaxInitLen, 304) - if yyrt4724 { - if yyrl4724 <= cap(yyv4724) { - yyv4724 = yyv4724[:yyrl4724] + yyrg4762 := len(yyv4762) > 0 + yyv24762 := yyv4762 + yyrl4762, yyrt4762 = z.DecInferLen(yyl4762, z.DecBasicHandle().MaxInitLen, 304) + if yyrt4762 { + if yyrl4762 <= cap(yyv4762) { + yyv4762 = yyv4762[:yyrl4762] } else { - yyv4724 = make([]ServiceAccount, yyrl4724) + yyv4762 = make([]ServiceAccount, yyrl4762) } } else { - yyv4724 = make([]ServiceAccount, yyrl4724) + yyv4762 = make([]ServiceAccount, yyrl4762) } - yyc4724 = true - yyrr4724 = len(yyv4724) - if yyrg4724 { - copy(yyv4724, yyv24724) + yyc4762 = true + yyrr4762 = len(yyv4762) + if yyrg4762 { + copy(yyv4762, yyv24762) } - } else if yyl4724 != len(yyv4724) { - yyv4724 = yyv4724[:yyl4724] - yyc4724 = true + } else if yyl4762 != len(yyv4762) { + yyv4762 = yyv4762[:yyl4762] + yyc4762 = true } - yyj4724 := 0 - for ; yyj4724 < yyrr4724; yyj4724++ { - yyh4724.ElemContainerState(yyj4724) + yyj4762 := 0 + for ; yyj4762 < yyrr4762; yyj4762++ { + yyh4762.ElemContainerState(yyj4762) if r.TryDecodeAsNil() { - yyv4724[yyj4724] = ServiceAccount{} + yyv4762[yyj4762] = ServiceAccount{} } else { - yyv4725 := &yyv4724[yyj4724] - yyv4725.CodecDecodeSelf(d) + yyv4763 := &yyv4762[yyj4762] + yyv4763.CodecDecodeSelf(d) } } - if yyrt4724 { - for ; yyj4724 < yyl4724; yyj4724++ { - yyv4724 = append(yyv4724, ServiceAccount{}) - yyh4724.ElemContainerState(yyj4724) + if yyrt4762 { + for ; yyj4762 < yyl4762; yyj4762++ { + yyv4762 = append(yyv4762, ServiceAccount{}) + yyh4762.ElemContainerState(yyj4762) if r.TryDecodeAsNil() { - yyv4724[yyj4724] = ServiceAccount{} + yyv4762[yyj4762] = ServiceAccount{} } else { - yyv4726 := &yyv4724[yyj4724] - yyv4726.CodecDecodeSelf(d) + yyv4764 := &yyv4762[yyj4762] + yyv4764.CodecDecodeSelf(d) } } } } else { - yyj4724 := 0 - for ; !r.CheckBreak(); yyj4724++ { + yyj4762 := 0 + for ; !r.CheckBreak(); yyj4762++ { - if yyj4724 >= len(yyv4724) { - yyv4724 = append(yyv4724, ServiceAccount{}) // var yyz4724 ServiceAccount - yyc4724 = true + if yyj4762 >= len(yyv4762) { + yyv4762 = append(yyv4762, ServiceAccount{}) // var yyz4762 ServiceAccount + yyc4762 = true } - yyh4724.ElemContainerState(yyj4724) - if yyj4724 < len(yyv4724) { + yyh4762.ElemContainerState(yyj4762) + if yyj4762 < len(yyv4762) { if r.TryDecodeAsNil() { - yyv4724[yyj4724] = ServiceAccount{} + yyv4762[yyj4762] = ServiceAccount{} } else { - yyv4727 := &yyv4724[yyj4724] - yyv4727.CodecDecodeSelf(d) + yyv4765 := &yyv4762[yyj4762] + yyv4765.CodecDecodeSelf(d) } } else { @@ -60155,17 +60733,17 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 } } - if yyj4724 < len(yyv4724) { - yyv4724 = yyv4724[:yyj4724] - yyc4724 = true - } else if yyj4724 == 0 && yyv4724 == nil { - yyv4724 = []ServiceAccount{} - yyc4724 = true + if yyj4762 < len(yyv4762) { + yyv4762 = yyv4762[:yyj4762] + yyc4762 = true + } else if yyj4762 == 0 && yyv4762 == nil { + yyv4762 = []ServiceAccount{} + yyc4762 = true } } - yyh4724.End() - if yyc4724 { - *v = yyv4724 + yyh4762.End() + if yyc4762 { + *v = yyv4762 } } @@ -60174,10 +60752,10 @@ func (x codecSelfer1234) encSliceEndpointSubset(v []EndpointSubset, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4728 := range v { + for _, yyv4766 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4729 := &yyv4728 - yy4729.CodecEncodeSelf(e) + yy4767 := &yyv4766 + yy4767.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60187,83 +60765,83 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4730 := *v - yyh4730, yyl4730 := z.DecSliceHelperStart() - var yyc4730 bool - if yyl4730 == 0 { - if yyv4730 == nil { - yyv4730 = []EndpointSubset{} - yyc4730 = true - } else if len(yyv4730) != 0 { - yyv4730 = yyv4730[:0] - yyc4730 = true + yyv4768 := *v + yyh4768, yyl4768 := z.DecSliceHelperStart() + var yyc4768 bool + if yyl4768 == 0 { + if yyv4768 == nil { + yyv4768 = []EndpointSubset{} + yyc4768 = true + } else if len(yyv4768) != 0 { + yyv4768 = yyv4768[:0] + yyc4768 = true } - } else if yyl4730 > 0 { - var yyrr4730, yyrl4730 int - var yyrt4730 bool - if yyl4730 > cap(yyv4730) { + } else if yyl4768 > 0 { + var yyrr4768, yyrl4768 int + var yyrt4768 bool + if yyl4768 > cap(yyv4768) { - yyrg4730 := len(yyv4730) > 0 - yyv24730 := yyv4730 - yyrl4730, yyrt4730 = z.DecInferLen(yyl4730, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4730 { - if yyrl4730 <= cap(yyv4730) { - yyv4730 = yyv4730[:yyrl4730] + yyrg4768 := len(yyv4768) > 0 + yyv24768 := yyv4768 + yyrl4768, yyrt4768 = z.DecInferLen(yyl4768, z.DecBasicHandle().MaxInitLen, 72) + if yyrt4768 { + if yyrl4768 <= cap(yyv4768) { + yyv4768 = yyv4768[:yyrl4768] } else { - yyv4730 = make([]EndpointSubset, yyrl4730) + yyv4768 = make([]EndpointSubset, yyrl4768) } } else { - yyv4730 = make([]EndpointSubset, yyrl4730) + yyv4768 = make([]EndpointSubset, yyrl4768) } - yyc4730 = true - yyrr4730 = len(yyv4730) - if yyrg4730 { - copy(yyv4730, yyv24730) + yyc4768 = true + yyrr4768 = len(yyv4768) + if yyrg4768 { + copy(yyv4768, yyv24768) } - } else if yyl4730 != len(yyv4730) { - yyv4730 = yyv4730[:yyl4730] - yyc4730 = true + } else if yyl4768 != len(yyv4768) { + yyv4768 = yyv4768[:yyl4768] + yyc4768 = true } - yyj4730 := 0 - for ; yyj4730 < yyrr4730; yyj4730++ { - yyh4730.ElemContainerState(yyj4730) + yyj4768 := 0 + for ; yyj4768 < yyrr4768; yyj4768++ { + yyh4768.ElemContainerState(yyj4768) if r.TryDecodeAsNil() { - yyv4730[yyj4730] = EndpointSubset{} + yyv4768[yyj4768] = EndpointSubset{} } else { - yyv4731 := &yyv4730[yyj4730] - yyv4731.CodecDecodeSelf(d) + yyv4769 := &yyv4768[yyj4768] + yyv4769.CodecDecodeSelf(d) } } - if yyrt4730 { - for ; yyj4730 < yyl4730; yyj4730++ { - yyv4730 = append(yyv4730, EndpointSubset{}) - yyh4730.ElemContainerState(yyj4730) + if yyrt4768 { + for ; yyj4768 < yyl4768; yyj4768++ { + yyv4768 = append(yyv4768, EndpointSubset{}) + yyh4768.ElemContainerState(yyj4768) if r.TryDecodeAsNil() { - yyv4730[yyj4730] = EndpointSubset{} + yyv4768[yyj4768] = EndpointSubset{} } else { - yyv4732 := &yyv4730[yyj4730] - yyv4732.CodecDecodeSelf(d) + yyv4770 := &yyv4768[yyj4768] + yyv4770.CodecDecodeSelf(d) } } } } else { - yyj4730 := 0 - for ; !r.CheckBreak(); yyj4730++ { + yyj4768 := 0 + for ; !r.CheckBreak(); yyj4768++ { - if yyj4730 >= len(yyv4730) { - yyv4730 = append(yyv4730, EndpointSubset{}) // var yyz4730 EndpointSubset - yyc4730 = true + if yyj4768 >= len(yyv4768) { + yyv4768 = append(yyv4768, EndpointSubset{}) // var yyz4768 EndpointSubset + yyc4768 = true } - yyh4730.ElemContainerState(yyj4730) - if yyj4730 < len(yyv4730) { + yyh4768.ElemContainerState(yyj4768) + if yyj4768 < len(yyv4768) { if r.TryDecodeAsNil() { - yyv4730[yyj4730] = EndpointSubset{} + yyv4768[yyj4768] = EndpointSubset{} } else { - yyv4733 := &yyv4730[yyj4730] - yyv4733.CodecDecodeSelf(d) + yyv4771 := &yyv4768[yyj4768] + yyv4771.CodecDecodeSelf(d) } } else { @@ -60271,17 +60849,17 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 } } - if yyj4730 < len(yyv4730) { - yyv4730 = yyv4730[:yyj4730] - yyc4730 = true - } else if yyj4730 == 0 && yyv4730 == nil { - yyv4730 = []EndpointSubset{} - yyc4730 = true + if yyj4768 < len(yyv4768) { + yyv4768 = yyv4768[:yyj4768] + yyc4768 = true + } else if yyj4768 == 0 && yyv4768 == nil { + yyv4768 = []EndpointSubset{} + yyc4768 = true } } - yyh4730.End() - if yyc4730 { - *v = yyv4730 + yyh4768.End() + if yyc4768 { + *v = yyv4768 } } @@ -60290,10 +60868,10 @@ func (x codecSelfer1234) encSliceEndpointAddress(v []EndpointAddress, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4734 := range v { + for _, yyv4772 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4735 := &yyv4734 - yy4735.CodecEncodeSelf(e) + yy4773 := &yyv4772 + yy4773.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60303,83 +60881,83 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4736 := *v - yyh4736, yyl4736 := z.DecSliceHelperStart() - var yyc4736 bool - if yyl4736 == 0 { - if yyv4736 == nil { - yyv4736 = []EndpointAddress{} - yyc4736 = true - } else if len(yyv4736) != 0 { - yyv4736 = yyv4736[:0] - yyc4736 = true + yyv4774 := *v + yyh4774, yyl4774 := z.DecSliceHelperStart() + var yyc4774 bool + if yyl4774 == 0 { + if yyv4774 == nil { + yyv4774 = []EndpointAddress{} + yyc4774 = true + } else if len(yyv4774) != 0 { + yyv4774 = yyv4774[:0] + yyc4774 = true } - } else if yyl4736 > 0 { - var yyrr4736, yyrl4736 int - var yyrt4736 bool - if yyl4736 > cap(yyv4736) { + } else if yyl4774 > 0 { + var yyrr4774, yyrl4774 int + var yyrt4774 bool + if yyl4774 > cap(yyv4774) { - yyrg4736 := len(yyv4736) > 0 - yyv24736 := yyv4736 - yyrl4736, yyrt4736 = z.DecInferLen(yyl4736, z.DecBasicHandle().MaxInitLen, 48) - if yyrt4736 { - if yyrl4736 <= cap(yyv4736) { - yyv4736 = yyv4736[:yyrl4736] + yyrg4774 := len(yyv4774) > 0 + yyv24774 := yyv4774 + yyrl4774, yyrt4774 = z.DecInferLen(yyl4774, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4774 { + if yyrl4774 <= cap(yyv4774) { + yyv4774 = yyv4774[:yyrl4774] } else { - yyv4736 = make([]EndpointAddress, yyrl4736) + yyv4774 = make([]EndpointAddress, yyrl4774) } } else { - yyv4736 = make([]EndpointAddress, yyrl4736) + yyv4774 = make([]EndpointAddress, yyrl4774) } - yyc4736 = true - yyrr4736 = len(yyv4736) - if yyrg4736 { - copy(yyv4736, yyv24736) + yyc4774 = true + yyrr4774 = len(yyv4774) + if yyrg4774 { + copy(yyv4774, yyv24774) } - } else if yyl4736 != len(yyv4736) { - yyv4736 = yyv4736[:yyl4736] - yyc4736 = true + } else if yyl4774 != len(yyv4774) { + yyv4774 = yyv4774[:yyl4774] + yyc4774 = true } - yyj4736 := 0 - for ; yyj4736 < yyrr4736; yyj4736++ { - yyh4736.ElemContainerState(yyj4736) + yyj4774 := 0 + for ; yyj4774 < yyrr4774; yyj4774++ { + yyh4774.ElemContainerState(yyj4774) if r.TryDecodeAsNil() { - yyv4736[yyj4736] = EndpointAddress{} + yyv4774[yyj4774] = EndpointAddress{} } else { - yyv4737 := &yyv4736[yyj4736] - yyv4737.CodecDecodeSelf(d) + yyv4775 := &yyv4774[yyj4774] + yyv4775.CodecDecodeSelf(d) } } - if yyrt4736 { - for ; yyj4736 < yyl4736; yyj4736++ { - yyv4736 = append(yyv4736, EndpointAddress{}) - yyh4736.ElemContainerState(yyj4736) + if yyrt4774 { + for ; yyj4774 < yyl4774; yyj4774++ { + yyv4774 = append(yyv4774, EndpointAddress{}) + yyh4774.ElemContainerState(yyj4774) if r.TryDecodeAsNil() { - yyv4736[yyj4736] = EndpointAddress{} + yyv4774[yyj4774] = EndpointAddress{} } else { - yyv4738 := &yyv4736[yyj4736] - yyv4738.CodecDecodeSelf(d) + yyv4776 := &yyv4774[yyj4774] + yyv4776.CodecDecodeSelf(d) } } } } else { - yyj4736 := 0 - for ; !r.CheckBreak(); yyj4736++ { + yyj4774 := 0 + for ; !r.CheckBreak(); yyj4774++ { - if yyj4736 >= len(yyv4736) { - yyv4736 = append(yyv4736, EndpointAddress{}) // var yyz4736 EndpointAddress - yyc4736 = true + if yyj4774 >= len(yyv4774) { + yyv4774 = append(yyv4774, EndpointAddress{}) // var yyz4774 EndpointAddress + yyc4774 = true } - yyh4736.ElemContainerState(yyj4736) - if yyj4736 < len(yyv4736) { + yyh4774.ElemContainerState(yyj4774) + if yyj4774 < len(yyv4774) { if r.TryDecodeAsNil() { - yyv4736[yyj4736] = EndpointAddress{} + yyv4774[yyj4774] = EndpointAddress{} } else { - yyv4739 := &yyv4736[yyj4736] - yyv4739.CodecDecodeSelf(d) + yyv4777 := &yyv4774[yyj4774] + yyv4777.CodecDecodeSelf(d) } } else { @@ -60387,17 +60965,17 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 } } - if yyj4736 < len(yyv4736) { - yyv4736 = yyv4736[:yyj4736] - yyc4736 = true - } else if yyj4736 == 0 && yyv4736 == nil { - yyv4736 = []EndpointAddress{} - yyc4736 = true + if yyj4774 < len(yyv4774) { + yyv4774 = yyv4774[:yyj4774] + yyc4774 = true + } else if yyj4774 == 0 && yyv4774 == nil { + yyv4774 = []EndpointAddress{} + yyc4774 = true } } - yyh4736.End() - if yyc4736 { - *v = yyv4736 + yyh4774.End() + if yyc4774 { + *v = yyv4774 } } @@ -60406,10 +60984,10 @@ func (x codecSelfer1234) encSliceEndpointPort(v []EndpointPort, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4740 := range v { + for _, yyv4778 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4741 := &yyv4740 - yy4741.CodecEncodeSelf(e) + yy4779 := &yyv4778 + yy4779.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60419,83 +60997,83 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4742 := *v - yyh4742, yyl4742 := z.DecSliceHelperStart() - var yyc4742 bool - if yyl4742 == 0 { - if yyv4742 == nil { - yyv4742 = []EndpointPort{} - yyc4742 = true - } else if len(yyv4742) != 0 { - yyv4742 = yyv4742[:0] - yyc4742 = true + yyv4780 := *v + yyh4780, yyl4780 := z.DecSliceHelperStart() + var yyc4780 bool + if yyl4780 == 0 { + if yyv4780 == nil { + yyv4780 = []EndpointPort{} + yyc4780 = true + } else if len(yyv4780) != 0 { + yyv4780 = yyv4780[:0] + yyc4780 = true } - } else if yyl4742 > 0 { - var yyrr4742, yyrl4742 int - var yyrt4742 bool - if yyl4742 > cap(yyv4742) { + } else if yyl4780 > 0 { + var yyrr4780, yyrl4780 int + var yyrt4780 bool + if yyl4780 > cap(yyv4780) { - yyrg4742 := len(yyv4742) > 0 - yyv24742 := yyv4742 - yyrl4742, yyrt4742 = z.DecInferLen(yyl4742, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4742 { - if yyrl4742 <= cap(yyv4742) { - yyv4742 = yyv4742[:yyrl4742] + yyrg4780 := len(yyv4780) > 0 + yyv24780 := yyv4780 + yyrl4780, yyrt4780 = z.DecInferLen(yyl4780, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4780 { + if yyrl4780 <= cap(yyv4780) { + yyv4780 = yyv4780[:yyrl4780] } else { - yyv4742 = make([]EndpointPort, yyrl4742) + yyv4780 = make([]EndpointPort, yyrl4780) } } else { - yyv4742 = make([]EndpointPort, yyrl4742) + yyv4780 = make([]EndpointPort, yyrl4780) } - yyc4742 = true - yyrr4742 = len(yyv4742) - if yyrg4742 { - copy(yyv4742, yyv24742) + yyc4780 = true + yyrr4780 = len(yyv4780) + if yyrg4780 { + copy(yyv4780, yyv24780) } - } else if yyl4742 != len(yyv4742) { - yyv4742 = yyv4742[:yyl4742] - yyc4742 = true + } else if yyl4780 != len(yyv4780) { + yyv4780 = yyv4780[:yyl4780] + yyc4780 = true } - yyj4742 := 0 - for ; yyj4742 < yyrr4742; yyj4742++ { - yyh4742.ElemContainerState(yyj4742) + yyj4780 := 0 + for ; yyj4780 < yyrr4780; yyj4780++ { + yyh4780.ElemContainerState(yyj4780) if r.TryDecodeAsNil() { - yyv4742[yyj4742] = EndpointPort{} + yyv4780[yyj4780] = EndpointPort{} } else { - yyv4743 := &yyv4742[yyj4742] - yyv4743.CodecDecodeSelf(d) + yyv4781 := &yyv4780[yyj4780] + yyv4781.CodecDecodeSelf(d) } } - if yyrt4742 { - for ; yyj4742 < yyl4742; yyj4742++ { - yyv4742 = append(yyv4742, EndpointPort{}) - yyh4742.ElemContainerState(yyj4742) + if yyrt4780 { + for ; yyj4780 < yyl4780; yyj4780++ { + yyv4780 = append(yyv4780, EndpointPort{}) + yyh4780.ElemContainerState(yyj4780) if r.TryDecodeAsNil() { - yyv4742[yyj4742] = EndpointPort{} + yyv4780[yyj4780] = EndpointPort{} } else { - yyv4744 := &yyv4742[yyj4742] - yyv4744.CodecDecodeSelf(d) + yyv4782 := &yyv4780[yyj4780] + yyv4782.CodecDecodeSelf(d) } } } } else { - yyj4742 := 0 - for ; !r.CheckBreak(); yyj4742++ { + yyj4780 := 0 + for ; !r.CheckBreak(); yyj4780++ { - if yyj4742 >= len(yyv4742) { - yyv4742 = append(yyv4742, EndpointPort{}) // var yyz4742 EndpointPort - yyc4742 = true + if yyj4780 >= len(yyv4780) { + yyv4780 = append(yyv4780, EndpointPort{}) // var yyz4780 EndpointPort + yyc4780 = true } - yyh4742.ElemContainerState(yyj4742) - if yyj4742 < len(yyv4742) { + yyh4780.ElemContainerState(yyj4780) + if yyj4780 < len(yyv4780) { if r.TryDecodeAsNil() { - yyv4742[yyj4742] = EndpointPort{} + yyv4780[yyj4780] = EndpointPort{} } else { - yyv4745 := &yyv4742[yyj4742] - yyv4745.CodecDecodeSelf(d) + yyv4783 := &yyv4780[yyj4780] + yyv4783.CodecDecodeSelf(d) } } else { @@ -60503,17 +61081,17 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De } } - if yyj4742 < len(yyv4742) { - yyv4742 = yyv4742[:yyj4742] - yyc4742 = true - } else if yyj4742 == 0 && yyv4742 == nil { - yyv4742 = []EndpointPort{} - yyc4742 = true + if yyj4780 < len(yyv4780) { + yyv4780 = yyv4780[:yyj4780] + yyc4780 = true + } else if yyj4780 == 0 && yyv4780 == nil { + yyv4780 = []EndpointPort{} + yyc4780 = true } } - yyh4742.End() - if yyc4742 { - *v = yyv4742 + yyh4780.End() + if yyc4780 { + *v = yyv4780 } } @@ -60522,10 +61100,10 @@ func (x codecSelfer1234) encSliceEndpoints(v []Endpoints, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4746 := range v { + for _, yyv4784 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4747 := &yyv4746 - yy4747.CodecEncodeSelf(e) + yy4785 := &yyv4784 + yy4785.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60535,83 +61113,83 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4748 := *v - yyh4748, yyl4748 := z.DecSliceHelperStart() - var yyc4748 bool - if yyl4748 == 0 { - if yyv4748 == nil { - yyv4748 = []Endpoints{} - yyc4748 = true - } else if len(yyv4748) != 0 { - yyv4748 = yyv4748[:0] - yyc4748 = true + yyv4786 := *v + yyh4786, yyl4786 := z.DecSliceHelperStart() + var yyc4786 bool + if yyl4786 == 0 { + if yyv4786 == nil { + yyv4786 = []Endpoints{} + yyc4786 = true + } else if len(yyv4786) != 0 { + yyv4786 = yyv4786[:0] + yyc4786 = true } - } else if yyl4748 > 0 { - var yyrr4748, yyrl4748 int - var yyrt4748 bool - if yyl4748 > cap(yyv4748) { + } else if yyl4786 > 0 { + var yyrr4786, yyrl4786 int + var yyrt4786 bool + if yyl4786 > cap(yyv4786) { - yyrg4748 := len(yyv4748) > 0 - yyv24748 := yyv4748 - yyrl4748, yyrt4748 = z.DecInferLen(yyl4748, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4748 { - if yyrl4748 <= cap(yyv4748) { - yyv4748 = yyv4748[:yyrl4748] + yyrg4786 := len(yyv4786) > 0 + yyv24786 := yyv4786 + yyrl4786, yyrt4786 = z.DecInferLen(yyl4786, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4786 { + if yyrl4786 <= cap(yyv4786) { + yyv4786 = yyv4786[:yyrl4786] } else { - yyv4748 = make([]Endpoints, yyrl4748) + yyv4786 = make([]Endpoints, yyrl4786) } } else { - yyv4748 = make([]Endpoints, yyrl4748) + yyv4786 = make([]Endpoints, yyrl4786) } - yyc4748 = true - yyrr4748 = len(yyv4748) - if yyrg4748 { - copy(yyv4748, yyv24748) + yyc4786 = true + yyrr4786 = len(yyv4786) + if yyrg4786 { + copy(yyv4786, yyv24786) } - } else if yyl4748 != len(yyv4748) { - yyv4748 = yyv4748[:yyl4748] - yyc4748 = true + } else if yyl4786 != len(yyv4786) { + yyv4786 = yyv4786[:yyl4786] + yyc4786 = true } - yyj4748 := 0 - for ; yyj4748 < yyrr4748; yyj4748++ { - yyh4748.ElemContainerState(yyj4748) + yyj4786 := 0 + for ; yyj4786 < yyrr4786; yyj4786++ { + yyh4786.ElemContainerState(yyj4786) if r.TryDecodeAsNil() { - yyv4748[yyj4748] = Endpoints{} + yyv4786[yyj4786] = Endpoints{} } else { - yyv4749 := &yyv4748[yyj4748] - yyv4749.CodecDecodeSelf(d) + yyv4787 := &yyv4786[yyj4786] + yyv4787.CodecDecodeSelf(d) } } - if yyrt4748 { - for ; yyj4748 < yyl4748; yyj4748++ { - yyv4748 = append(yyv4748, Endpoints{}) - yyh4748.ElemContainerState(yyj4748) + if yyrt4786 { + for ; yyj4786 < yyl4786; yyj4786++ { + yyv4786 = append(yyv4786, Endpoints{}) + yyh4786.ElemContainerState(yyj4786) if r.TryDecodeAsNil() { - yyv4748[yyj4748] = Endpoints{} + yyv4786[yyj4786] = Endpoints{} } else { - yyv4750 := &yyv4748[yyj4748] - yyv4750.CodecDecodeSelf(d) + yyv4788 := &yyv4786[yyj4786] + yyv4788.CodecDecodeSelf(d) } } } } else { - yyj4748 := 0 - for ; !r.CheckBreak(); yyj4748++ { + yyj4786 := 0 + for ; !r.CheckBreak(); yyj4786++ { - if yyj4748 >= len(yyv4748) { - yyv4748 = append(yyv4748, Endpoints{}) // var yyz4748 Endpoints - yyc4748 = true + if yyj4786 >= len(yyv4786) { + yyv4786 = append(yyv4786, Endpoints{}) // var yyz4786 Endpoints + yyc4786 = true } - yyh4748.ElemContainerState(yyj4748) - if yyj4748 < len(yyv4748) { + yyh4786.ElemContainerState(yyj4786) + if yyj4786 < len(yyv4786) { if r.TryDecodeAsNil() { - yyv4748[yyj4748] = Endpoints{} + yyv4786[yyj4786] = Endpoints{} } else { - yyv4751 := &yyv4748[yyj4748] - yyv4751.CodecDecodeSelf(d) + yyv4789 := &yyv4786[yyj4786] + yyv4789.CodecDecodeSelf(d) } } else { @@ -60619,17 +61197,17 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) } } - if yyj4748 < len(yyv4748) { - yyv4748 = yyv4748[:yyj4748] - yyc4748 = true - } else if yyj4748 == 0 && yyv4748 == nil { - yyv4748 = []Endpoints{} - yyc4748 = true + if yyj4786 < len(yyv4786) { + yyv4786 = yyv4786[:yyj4786] + yyc4786 = true + } else if yyj4786 == 0 && yyv4786 == nil { + yyv4786 = []Endpoints{} + yyc4786 = true } } - yyh4748.End() - if yyc4748 { - *v = yyv4748 + yyh4786.End() + if yyc4786 { + *v = yyv4786 } } @@ -60638,10 +61216,10 @@ func (x codecSelfer1234) encSliceNodeCondition(v []NodeCondition, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4752 := range v { + for _, yyv4790 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4753 := &yyv4752 - yy4753.CodecEncodeSelf(e) + yy4791 := &yyv4790 + yy4791.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60651,83 +61229,83 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4754 := *v - yyh4754, yyl4754 := z.DecSliceHelperStart() - var yyc4754 bool - if yyl4754 == 0 { - if yyv4754 == nil { - yyv4754 = []NodeCondition{} - yyc4754 = true - } else if len(yyv4754) != 0 { - yyv4754 = yyv4754[:0] - yyc4754 = true + yyv4792 := *v + yyh4792, yyl4792 := z.DecSliceHelperStart() + var yyc4792 bool + if yyl4792 == 0 { + if yyv4792 == nil { + yyv4792 = []NodeCondition{} + yyc4792 = true + } else if len(yyv4792) != 0 { + yyv4792 = yyv4792[:0] + yyc4792 = true } - } else if yyl4754 > 0 { - var yyrr4754, yyrl4754 int - var yyrt4754 bool - if yyl4754 > cap(yyv4754) { + } else if yyl4792 > 0 { + var yyrr4792, yyrl4792 int + var yyrt4792 bool + if yyl4792 > cap(yyv4792) { - yyrg4754 := len(yyv4754) > 0 - yyv24754 := yyv4754 - yyrl4754, yyrt4754 = z.DecInferLen(yyl4754, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4754 { - if yyrl4754 <= cap(yyv4754) { - yyv4754 = yyv4754[:yyrl4754] + yyrg4792 := len(yyv4792) > 0 + yyv24792 := yyv4792 + yyrl4792, yyrt4792 = z.DecInferLen(yyl4792, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4792 { + if yyrl4792 <= cap(yyv4792) { + yyv4792 = yyv4792[:yyrl4792] } else { - yyv4754 = make([]NodeCondition, yyrl4754) + yyv4792 = make([]NodeCondition, yyrl4792) } } else { - yyv4754 = make([]NodeCondition, yyrl4754) + yyv4792 = make([]NodeCondition, yyrl4792) } - yyc4754 = true - yyrr4754 = len(yyv4754) - if yyrg4754 { - copy(yyv4754, yyv24754) + yyc4792 = true + yyrr4792 = len(yyv4792) + if yyrg4792 { + copy(yyv4792, yyv24792) } - } else if yyl4754 != len(yyv4754) { - yyv4754 = yyv4754[:yyl4754] - yyc4754 = true + } else if yyl4792 != len(yyv4792) { + yyv4792 = yyv4792[:yyl4792] + yyc4792 = true } - yyj4754 := 0 - for ; yyj4754 < yyrr4754; yyj4754++ { - yyh4754.ElemContainerState(yyj4754) + yyj4792 := 0 + for ; yyj4792 < yyrr4792; yyj4792++ { + yyh4792.ElemContainerState(yyj4792) if r.TryDecodeAsNil() { - yyv4754[yyj4754] = NodeCondition{} + yyv4792[yyj4792] = NodeCondition{} } else { - yyv4755 := &yyv4754[yyj4754] - yyv4755.CodecDecodeSelf(d) + yyv4793 := &yyv4792[yyj4792] + yyv4793.CodecDecodeSelf(d) } } - if yyrt4754 { - for ; yyj4754 < yyl4754; yyj4754++ { - yyv4754 = append(yyv4754, NodeCondition{}) - yyh4754.ElemContainerState(yyj4754) + if yyrt4792 { + for ; yyj4792 < yyl4792; yyj4792++ { + yyv4792 = append(yyv4792, NodeCondition{}) + yyh4792.ElemContainerState(yyj4792) if r.TryDecodeAsNil() { - yyv4754[yyj4754] = NodeCondition{} + yyv4792[yyj4792] = NodeCondition{} } else { - yyv4756 := &yyv4754[yyj4754] - yyv4756.CodecDecodeSelf(d) + yyv4794 := &yyv4792[yyj4792] + yyv4794.CodecDecodeSelf(d) } } } } else { - yyj4754 := 0 - for ; !r.CheckBreak(); yyj4754++ { + yyj4792 := 0 + for ; !r.CheckBreak(); yyj4792++ { - if yyj4754 >= len(yyv4754) { - yyv4754 = append(yyv4754, NodeCondition{}) // var yyz4754 NodeCondition - yyc4754 = true + if yyj4792 >= len(yyv4792) { + yyv4792 = append(yyv4792, NodeCondition{}) // var yyz4792 NodeCondition + yyc4792 = true } - yyh4754.ElemContainerState(yyj4754) - if yyj4754 < len(yyv4754) { + yyh4792.ElemContainerState(yyj4792) + if yyj4792 < len(yyv4792) { if r.TryDecodeAsNil() { - yyv4754[yyj4754] = NodeCondition{} + yyv4792[yyj4792] = NodeCondition{} } else { - yyv4757 := &yyv4754[yyj4754] - yyv4757.CodecDecodeSelf(d) + yyv4795 := &yyv4792[yyj4792] + yyv4795.CodecDecodeSelf(d) } } else { @@ -60735,17 +61313,17 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. } } - if yyj4754 < len(yyv4754) { - yyv4754 = yyv4754[:yyj4754] - yyc4754 = true - } else if yyj4754 == 0 && yyv4754 == nil { - yyv4754 = []NodeCondition{} - yyc4754 = true + if yyj4792 < len(yyv4792) { + yyv4792 = yyv4792[:yyj4792] + yyc4792 = true + } else if yyj4792 == 0 && yyv4792 == nil { + yyv4792 = []NodeCondition{} + yyc4792 = true } } - yyh4754.End() - if yyc4754 { - *v = yyv4754 + yyh4792.End() + if yyc4792 { + *v = yyv4792 } } @@ -60754,10 +61332,10 @@ func (x codecSelfer1234) encSliceNodeAddress(v []NodeAddress, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4758 := range v { + for _, yyv4796 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4759 := &yyv4758 - yy4759.CodecEncodeSelf(e) + yy4797 := &yyv4796 + yy4797.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60767,83 +61345,83 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4760 := *v - yyh4760, yyl4760 := z.DecSliceHelperStart() - var yyc4760 bool - if yyl4760 == 0 { - if yyv4760 == nil { - yyv4760 = []NodeAddress{} - yyc4760 = true - } else if len(yyv4760) != 0 { - yyv4760 = yyv4760[:0] - yyc4760 = true + yyv4798 := *v + yyh4798, yyl4798 := z.DecSliceHelperStart() + var yyc4798 bool + if yyl4798 == 0 { + if yyv4798 == nil { + yyv4798 = []NodeAddress{} + yyc4798 = true + } else if len(yyv4798) != 0 { + yyv4798 = yyv4798[:0] + yyc4798 = true } - } else if yyl4760 > 0 { - var yyrr4760, yyrl4760 int - var yyrt4760 bool - if yyl4760 > cap(yyv4760) { + } else if yyl4798 > 0 { + var yyrr4798, yyrl4798 int + var yyrt4798 bool + if yyl4798 > cap(yyv4798) { - yyrg4760 := len(yyv4760) > 0 - yyv24760 := yyv4760 - yyrl4760, yyrt4760 = z.DecInferLen(yyl4760, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4760 { - if yyrl4760 <= cap(yyv4760) { - yyv4760 = yyv4760[:yyrl4760] + yyrg4798 := len(yyv4798) > 0 + yyv24798 := yyv4798 + yyrl4798, yyrt4798 = z.DecInferLen(yyl4798, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4798 { + if yyrl4798 <= cap(yyv4798) { + yyv4798 = yyv4798[:yyrl4798] } else { - yyv4760 = make([]NodeAddress, yyrl4760) + yyv4798 = make([]NodeAddress, yyrl4798) } } else { - yyv4760 = make([]NodeAddress, yyrl4760) + yyv4798 = make([]NodeAddress, yyrl4798) } - yyc4760 = true - yyrr4760 = len(yyv4760) - if yyrg4760 { - copy(yyv4760, yyv24760) + yyc4798 = true + yyrr4798 = len(yyv4798) + if yyrg4798 { + copy(yyv4798, yyv24798) } - } else if yyl4760 != len(yyv4760) { - yyv4760 = yyv4760[:yyl4760] - yyc4760 = true + } else if yyl4798 != len(yyv4798) { + yyv4798 = yyv4798[:yyl4798] + yyc4798 = true } - yyj4760 := 0 - for ; yyj4760 < yyrr4760; yyj4760++ { - yyh4760.ElemContainerState(yyj4760) + yyj4798 := 0 + for ; yyj4798 < yyrr4798; yyj4798++ { + yyh4798.ElemContainerState(yyj4798) if r.TryDecodeAsNil() { - yyv4760[yyj4760] = NodeAddress{} + yyv4798[yyj4798] = NodeAddress{} } else { - yyv4761 := &yyv4760[yyj4760] - yyv4761.CodecDecodeSelf(d) + yyv4799 := &yyv4798[yyj4798] + yyv4799.CodecDecodeSelf(d) } } - if yyrt4760 { - for ; yyj4760 < yyl4760; yyj4760++ { - yyv4760 = append(yyv4760, NodeAddress{}) - yyh4760.ElemContainerState(yyj4760) + if yyrt4798 { + for ; yyj4798 < yyl4798; yyj4798++ { + yyv4798 = append(yyv4798, NodeAddress{}) + yyh4798.ElemContainerState(yyj4798) if r.TryDecodeAsNil() { - yyv4760[yyj4760] = NodeAddress{} + yyv4798[yyj4798] = NodeAddress{} } else { - yyv4762 := &yyv4760[yyj4760] - yyv4762.CodecDecodeSelf(d) + yyv4800 := &yyv4798[yyj4798] + yyv4800.CodecDecodeSelf(d) } } } } else { - yyj4760 := 0 - for ; !r.CheckBreak(); yyj4760++ { + yyj4798 := 0 + for ; !r.CheckBreak(); yyj4798++ { - if yyj4760 >= len(yyv4760) { - yyv4760 = append(yyv4760, NodeAddress{}) // var yyz4760 NodeAddress - yyc4760 = true + if yyj4798 >= len(yyv4798) { + yyv4798 = append(yyv4798, NodeAddress{}) // var yyz4798 NodeAddress + yyc4798 = true } - yyh4760.ElemContainerState(yyj4760) - if yyj4760 < len(yyv4760) { + yyh4798.ElemContainerState(yyj4798) + if yyj4798 < len(yyv4798) { if r.TryDecodeAsNil() { - yyv4760[yyj4760] = NodeAddress{} + yyv4798[yyj4798] = NodeAddress{} } else { - yyv4763 := &yyv4760[yyj4760] - yyv4763.CodecDecodeSelf(d) + yyv4801 := &yyv4798[yyj4798] + yyv4801.CodecDecodeSelf(d) } } else { @@ -60851,17 +61429,17 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco } } - if yyj4760 < len(yyv4760) { - yyv4760 = yyv4760[:yyj4760] - yyc4760 = true - } else if yyj4760 == 0 && yyv4760 == nil { - yyv4760 = []NodeAddress{} - yyc4760 = true + if yyj4798 < len(yyv4798) { + yyv4798 = yyv4798[:yyj4798] + yyc4798 = true + } else if yyj4798 == 0 && yyv4798 == nil { + yyv4798 = []NodeAddress{} + yyc4798 = true } } - yyh4760.End() - if yyc4760 { - *v = yyv4760 + yyh4798.End() + if yyc4798 { + *v = yyv4798 } } @@ -60870,10 +61448,10 @@ func (x codecSelfer1234) encSliceContainerImage(v []ContainerImage, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4764 := range v { + for _, yyv4802 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4765 := &yyv4764 - yy4765.CodecEncodeSelf(e) + yy4803 := &yyv4802 + yy4803.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60883,696 +61461,12 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4766 := *v - yyh4766, yyl4766 := z.DecSliceHelperStart() - var yyc4766 bool - if yyl4766 == 0 { - if yyv4766 == nil { - yyv4766 = []ContainerImage{} - yyc4766 = true - } else if len(yyv4766) != 0 { - yyv4766 = yyv4766[:0] - yyc4766 = true - } - } else if yyl4766 > 0 { - var yyrr4766, yyrl4766 int - var yyrt4766 bool - if yyl4766 > cap(yyv4766) { - - yyrg4766 := len(yyv4766) > 0 - yyv24766 := yyv4766 - yyrl4766, yyrt4766 = z.DecInferLen(yyl4766, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4766 { - if yyrl4766 <= cap(yyv4766) { - yyv4766 = yyv4766[:yyrl4766] - } else { - yyv4766 = make([]ContainerImage, yyrl4766) - } - } else { - yyv4766 = make([]ContainerImage, yyrl4766) - } - yyc4766 = true - yyrr4766 = len(yyv4766) - if yyrg4766 { - copy(yyv4766, yyv24766) - } - } else if yyl4766 != len(yyv4766) { - yyv4766 = yyv4766[:yyl4766] - yyc4766 = true - } - yyj4766 := 0 - for ; yyj4766 < yyrr4766; yyj4766++ { - yyh4766.ElemContainerState(yyj4766) - if r.TryDecodeAsNil() { - yyv4766[yyj4766] = ContainerImage{} - } else { - yyv4767 := &yyv4766[yyj4766] - yyv4767.CodecDecodeSelf(d) - } - - } - if yyrt4766 { - for ; yyj4766 < yyl4766; yyj4766++ { - yyv4766 = append(yyv4766, ContainerImage{}) - yyh4766.ElemContainerState(yyj4766) - if r.TryDecodeAsNil() { - yyv4766[yyj4766] = ContainerImage{} - } else { - yyv4768 := &yyv4766[yyj4766] - yyv4768.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4766 := 0 - for ; !r.CheckBreak(); yyj4766++ { - - if yyj4766 >= len(yyv4766) { - yyv4766 = append(yyv4766, ContainerImage{}) // var yyz4766 ContainerImage - yyc4766 = true - } - yyh4766.ElemContainerState(yyj4766) - if yyj4766 < len(yyv4766) { - if r.TryDecodeAsNil() { - yyv4766[yyj4766] = ContainerImage{} - } else { - yyv4769 := &yyv4766[yyj4766] - yyv4769.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4766 < len(yyv4766) { - yyv4766 = yyv4766[:yyj4766] - yyc4766 = true - } else if yyj4766 == 0 && yyv4766 == nil { - yyv4766 = []ContainerImage{} - yyc4766 = true - } - } - yyh4766.End() - if yyc4766 { - *v = yyv4766 - } -} - -func (x codecSelfer1234) encSliceUniqueVolumeName(v []UniqueVolumeName, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4770 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4770.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4771 := *v - yyh4771, yyl4771 := z.DecSliceHelperStart() - var yyc4771 bool - if yyl4771 == 0 { - if yyv4771 == nil { - yyv4771 = []UniqueVolumeName{} - yyc4771 = true - } else if len(yyv4771) != 0 { - yyv4771 = yyv4771[:0] - yyc4771 = true - } - } else if yyl4771 > 0 { - var yyrr4771, yyrl4771 int - var yyrt4771 bool - if yyl4771 > cap(yyv4771) { - - yyrl4771, yyrt4771 = z.DecInferLen(yyl4771, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4771 { - if yyrl4771 <= cap(yyv4771) { - yyv4771 = yyv4771[:yyrl4771] - } else { - yyv4771 = make([]UniqueVolumeName, yyrl4771) - } - } else { - yyv4771 = make([]UniqueVolumeName, yyrl4771) - } - yyc4771 = true - yyrr4771 = len(yyv4771) - } else if yyl4771 != len(yyv4771) { - yyv4771 = yyv4771[:yyl4771] - yyc4771 = true - } - yyj4771 := 0 - for ; yyj4771 < yyrr4771; yyj4771++ { - yyh4771.ElemContainerState(yyj4771) - if r.TryDecodeAsNil() { - yyv4771[yyj4771] = "" - } else { - yyv4771[yyj4771] = UniqueVolumeName(r.DecodeString()) - } - - } - if yyrt4771 { - for ; yyj4771 < yyl4771; yyj4771++ { - yyv4771 = append(yyv4771, "") - yyh4771.ElemContainerState(yyj4771) - if r.TryDecodeAsNil() { - yyv4771[yyj4771] = "" - } else { - yyv4771[yyj4771] = UniqueVolumeName(r.DecodeString()) - } - - } - } - - } else { - yyj4771 := 0 - for ; !r.CheckBreak(); yyj4771++ { - - if yyj4771 >= len(yyv4771) { - yyv4771 = append(yyv4771, "") // var yyz4771 UniqueVolumeName - yyc4771 = true - } - yyh4771.ElemContainerState(yyj4771) - if yyj4771 < len(yyv4771) { - if r.TryDecodeAsNil() { - yyv4771[yyj4771] = "" - } else { - yyv4771[yyj4771] = UniqueVolumeName(r.DecodeString()) - } - - } else { - z.DecSwallow() - } - - } - if yyj4771 < len(yyv4771) { - yyv4771 = yyv4771[:yyj4771] - yyc4771 = true - } else if yyj4771 == 0 && yyv4771 == nil { - yyv4771 = []UniqueVolumeName{} - yyc4771 = true - } - } - yyh4771.End() - if yyc4771 { - *v = yyv4771 - } -} - -func (x codecSelfer1234) encSliceAttachedVolume(v []AttachedVolume, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4775 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4776 := &yyv4775 - yy4776.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4777 := *v - yyh4777, yyl4777 := z.DecSliceHelperStart() - var yyc4777 bool - if yyl4777 == 0 { - if yyv4777 == nil { - yyv4777 = []AttachedVolume{} - yyc4777 = true - } else if len(yyv4777) != 0 { - yyv4777 = yyv4777[:0] - yyc4777 = true - } - } else if yyl4777 > 0 { - var yyrr4777, yyrl4777 int - var yyrt4777 bool - if yyl4777 > cap(yyv4777) { - - yyrg4777 := len(yyv4777) > 0 - yyv24777 := yyv4777 - yyrl4777, yyrt4777 = z.DecInferLen(yyl4777, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4777 { - if yyrl4777 <= cap(yyv4777) { - yyv4777 = yyv4777[:yyrl4777] - } else { - yyv4777 = make([]AttachedVolume, yyrl4777) - } - } else { - yyv4777 = make([]AttachedVolume, yyrl4777) - } - yyc4777 = true - yyrr4777 = len(yyv4777) - if yyrg4777 { - copy(yyv4777, yyv24777) - } - } else if yyl4777 != len(yyv4777) { - yyv4777 = yyv4777[:yyl4777] - yyc4777 = true - } - yyj4777 := 0 - for ; yyj4777 < yyrr4777; yyj4777++ { - yyh4777.ElemContainerState(yyj4777) - if r.TryDecodeAsNil() { - yyv4777[yyj4777] = AttachedVolume{} - } else { - yyv4778 := &yyv4777[yyj4777] - yyv4778.CodecDecodeSelf(d) - } - - } - if yyrt4777 { - for ; yyj4777 < yyl4777; yyj4777++ { - yyv4777 = append(yyv4777, AttachedVolume{}) - yyh4777.ElemContainerState(yyj4777) - if r.TryDecodeAsNil() { - yyv4777[yyj4777] = AttachedVolume{} - } else { - yyv4779 := &yyv4777[yyj4777] - yyv4779.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4777 := 0 - for ; !r.CheckBreak(); yyj4777++ { - - if yyj4777 >= len(yyv4777) { - yyv4777 = append(yyv4777, AttachedVolume{}) // var yyz4777 AttachedVolume - yyc4777 = true - } - yyh4777.ElemContainerState(yyj4777) - if yyj4777 < len(yyv4777) { - if r.TryDecodeAsNil() { - yyv4777[yyj4777] = AttachedVolume{} - } else { - yyv4780 := &yyv4777[yyj4777] - yyv4780.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4777 < len(yyv4777) { - yyv4777 = yyv4777[:yyj4777] - yyc4777 = true - } else if yyj4777 == 0 && yyv4777 == nil { - yyv4777 = []AttachedVolume{} - yyc4777 = true - } - } - yyh4777.End() - if yyc4777 { - *v = yyv4777 - } -} - -func (x codecSelfer1234) encSlicePreferAvoidPodsEntry(v []PreferAvoidPodsEntry, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4781 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4782 := &yyv4781 - yy4782.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4783 := *v - yyh4783, yyl4783 := z.DecSliceHelperStart() - var yyc4783 bool - if yyl4783 == 0 { - if yyv4783 == nil { - yyv4783 = []PreferAvoidPodsEntry{} - yyc4783 = true - } else if len(yyv4783) != 0 { - yyv4783 = yyv4783[:0] - yyc4783 = true - } - } else if yyl4783 > 0 { - var yyrr4783, yyrl4783 int - var yyrt4783 bool - if yyl4783 > cap(yyv4783) { - - yyrg4783 := len(yyv4783) > 0 - yyv24783 := yyv4783 - yyrl4783, yyrt4783 = z.DecInferLen(yyl4783, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4783 { - if yyrl4783 <= cap(yyv4783) { - yyv4783 = yyv4783[:yyrl4783] - } else { - yyv4783 = make([]PreferAvoidPodsEntry, yyrl4783) - } - } else { - yyv4783 = make([]PreferAvoidPodsEntry, yyrl4783) - } - yyc4783 = true - yyrr4783 = len(yyv4783) - if yyrg4783 { - copy(yyv4783, yyv24783) - } - } else if yyl4783 != len(yyv4783) { - yyv4783 = yyv4783[:yyl4783] - yyc4783 = true - } - yyj4783 := 0 - for ; yyj4783 < yyrr4783; yyj4783++ { - yyh4783.ElemContainerState(yyj4783) - if r.TryDecodeAsNil() { - yyv4783[yyj4783] = PreferAvoidPodsEntry{} - } else { - yyv4784 := &yyv4783[yyj4783] - yyv4784.CodecDecodeSelf(d) - } - - } - if yyrt4783 { - for ; yyj4783 < yyl4783; yyj4783++ { - yyv4783 = append(yyv4783, PreferAvoidPodsEntry{}) - yyh4783.ElemContainerState(yyj4783) - if r.TryDecodeAsNil() { - yyv4783[yyj4783] = PreferAvoidPodsEntry{} - } else { - yyv4785 := &yyv4783[yyj4783] - yyv4785.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4783 := 0 - for ; !r.CheckBreak(); yyj4783++ { - - if yyj4783 >= len(yyv4783) { - yyv4783 = append(yyv4783, PreferAvoidPodsEntry{}) // var yyz4783 PreferAvoidPodsEntry - yyc4783 = true - } - yyh4783.ElemContainerState(yyj4783) - if yyj4783 < len(yyv4783) { - if r.TryDecodeAsNil() { - yyv4783[yyj4783] = PreferAvoidPodsEntry{} - } else { - yyv4786 := &yyv4783[yyj4783] - yyv4786.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4783 < len(yyv4783) { - yyv4783 = yyv4783[:yyj4783] - yyc4783 = true - } else if yyj4783 == 0 && yyv4783 == nil { - yyv4783 = []PreferAvoidPodsEntry{} - yyc4783 = true - } - } - yyh4783.End() - if yyc4783 { - *v = yyv4783 - } -} - -func (x codecSelfer1234) encResourceList(v ResourceList, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeMapStart(len(v)) - for yyk4787, yyv4787 := range v { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - yyk4787.CodecEncodeSelf(e) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4788 := &yyv4787 - yym4789 := z.EncBinary() - _ = yym4789 - if false { - } else if z.HasExtensions() && z.EncExt(yy4788) { - } else if !yym4789 && z.IsJSONHandle() { - z.EncJSONMarshal(yy4788) - } else { - z.EncFallback(yy4788) - } - } - z.EncSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x codecSelfer1234) decResourceList(v *ResourceList, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4790 := *v - yyl4790 := r.ReadMapStart() - yybh4790 := z.DecBasicHandle() - if yyv4790 == nil { - yyrl4790, _ := z.DecInferLen(yyl4790, yybh4790.MaxInitLen, 72) - yyv4790 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4790) - *v = yyv4790 - } - var yymk4790 ResourceName - var yymv4790 pkg3_resource.Quantity - var yymg4790 bool - if yybh4790.MapValueReset { - yymg4790 = true - } - if yyl4790 > 0 { - for yyj4790 := 0; yyj4790 < yyl4790; yyj4790++ { - z.DecSendContainerState(codecSelfer_containerMapKey1234) - if r.TryDecodeAsNil() { - yymk4790 = "" - } else { - yymk4790 = ResourceName(r.DecodeString()) - } - - if yymg4790 { - yymv4790 = yyv4790[yymk4790] - } else { - yymv4790 = pkg3_resource.Quantity{} - } - z.DecSendContainerState(codecSelfer_containerMapValue1234) - if r.TryDecodeAsNil() { - yymv4790 = pkg3_resource.Quantity{} - } else { - yyv4792 := &yymv4790 - yym4793 := z.DecBinary() - _ = yym4793 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4792) { - } else if !yym4793 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4792) - } else { - z.DecFallback(yyv4792, false) - } - } - - if yyv4790 != nil { - yyv4790[yymk4790] = yymv4790 - } - } - } else if yyl4790 < 0 { - for yyj4790 := 0; !r.CheckBreak(); yyj4790++ { - z.DecSendContainerState(codecSelfer_containerMapKey1234) - if r.TryDecodeAsNil() { - yymk4790 = "" - } else { - yymk4790 = ResourceName(r.DecodeString()) - } - - if yymg4790 { - yymv4790 = yyv4790[yymk4790] - } else { - yymv4790 = pkg3_resource.Quantity{} - } - z.DecSendContainerState(codecSelfer_containerMapValue1234) - if r.TryDecodeAsNil() { - yymv4790 = pkg3_resource.Quantity{} - } else { - yyv4795 := &yymv4790 - yym4796 := z.DecBinary() - _ = yym4796 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4795) { - } else if !yym4796 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4795) - } else { - z.DecFallback(yyv4795, false) - } - } - - if yyv4790 != nil { - yyv4790[yymk4790] = yymv4790 - } - } - } // else len==0: TODO: Should we clear map entries? - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x codecSelfer1234) encSliceNode(v []Node, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4797 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4798 := &yyv4797 - yy4798.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv4799 := *v - yyh4799, yyl4799 := z.DecSliceHelperStart() - var yyc4799 bool - if yyl4799 == 0 { - if yyv4799 == nil { - yyv4799 = []Node{} - yyc4799 = true - } else if len(yyv4799) != 0 { - yyv4799 = yyv4799[:0] - yyc4799 = true - } - } else if yyl4799 > 0 { - var yyrr4799, yyrl4799 int - var yyrt4799 bool - if yyl4799 > cap(yyv4799) { - - yyrg4799 := len(yyv4799) > 0 - yyv24799 := yyv4799 - yyrl4799, yyrt4799 = z.DecInferLen(yyl4799, z.DecBasicHandle().MaxInitLen, 632) - if yyrt4799 { - if yyrl4799 <= cap(yyv4799) { - yyv4799 = yyv4799[:yyrl4799] - } else { - yyv4799 = make([]Node, yyrl4799) - } - } else { - yyv4799 = make([]Node, yyrl4799) - } - yyc4799 = true - yyrr4799 = len(yyv4799) - if yyrg4799 { - copy(yyv4799, yyv24799) - } - } else if yyl4799 != len(yyv4799) { - yyv4799 = yyv4799[:yyl4799] - yyc4799 = true - } - yyj4799 := 0 - for ; yyj4799 < yyrr4799; yyj4799++ { - yyh4799.ElemContainerState(yyj4799) - if r.TryDecodeAsNil() { - yyv4799[yyj4799] = Node{} - } else { - yyv4800 := &yyv4799[yyj4799] - yyv4800.CodecDecodeSelf(d) - } - - } - if yyrt4799 { - for ; yyj4799 < yyl4799; yyj4799++ { - yyv4799 = append(yyv4799, Node{}) - yyh4799.ElemContainerState(yyj4799) - if r.TryDecodeAsNil() { - yyv4799[yyj4799] = Node{} - } else { - yyv4801 := &yyv4799[yyj4799] - yyv4801.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj4799 := 0 - for ; !r.CheckBreak(); yyj4799++ { - - if yyj4799 >= len(yyv4799) { - yyv4799 = append(yyv4799, Node{}) // var yyz4799 Node - yyc4799 = true - } - yyh4799.ElemContainerState(yyj4799) - if yyj4799 < len(yyv4799) { - if r.TryDecodeAsNil() { - yyv4799[yyj4799] = Node{} - } else { - yyv4802 := &yyv4799[yyj4799] - yyv4802.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj4799 < len(yyv4799) { - yyv4799 = yyv4799[:yyj4799] - yyc4799 = true - } else if yyj4799 == 0 && yyv4799 == nil { - yyv4799 = []Node{} - yyc4799 = true - } - } - yyh4799.End() - if yyc4799 { - *v = yyv4799 - } -} - -func (x codecSelfer1234) encSliceFinalizerName(v []FinalizerName, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv4803 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4803.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yyv4804 := *v yyh4804, yyl4804 := z.DecSliceHelperStart() var yyc4804 bool if yyl4804 == 0 { if yyv4804 == nil { - yyv4804 = []FinalizerName{} + yyv4804 = []ContainerImage{} yyc4804 = true } else if len(yyv4804) != 0 { yyv4804 = yyv4804[:0] @@ -61583,18 +61477,23 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. var yyrt4804 bool if yyl4804 > cap(yyv4804) { - yyrl4804, yyrt4804 = z.DecInferLen(yyl4804, z.DecBasicHandle().MaxInitLen, 16) + yyrg4804 := len(yyv4804) > 0 + yyv24804 := yyv4804 + yyrl4804, yyrt4804 = z.DecInferLen(yyl4804, z.DecBasicHandle().MaxInitLen, 32) if yyrt4804 { if yyrl4804 <= cap(yyv4804) { yyv4804 = yyv4804[:yyrl4804] } else { - yyv4804 = make([]FinalizerName, yyrl4804) + yyv4804 = make([]ContainerImage, yyrl4804) } } else { - yyv4804 = make([]FinalizerName, yyrl4804) + yyv4804 = make([]ContainerImage, yyrl4804) } yyc4804 = true yyrr4804 = len(yyv4804) + if yyrg4804 { + copy(yyv4804, yyv24804) + } } else if yyl4804 != len(yyv4804) { yyv4804 = yyv4804[:yyl4804] yyc4804 = true @@ -61603,20 +61502,22 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. for ; yyj4804 < yyrr4804; yyj4804++ { yyh4804.ElemContainerState(yyj4804) if r.TryDecodeAsNil() { - yyv4804[yyj4804] = "" + yyv4804[yyj4804] = ContainerImage{} } else { - yyv4804[yyj4804] = FinalizerName(r.DecodeString()) + yyv4805 := &yyv4804[yyj4804] + yyv4805.CodecDecodeSelf(d) } } if yyrt4804 { for ; yyj4804 < yyl4804; yyj4804++ { - yyv4804 = append(yyv4804, "") + yyv4804 = append(yyv4804, ContainerImage{}) yyh4804.ElemContainerState(yyj4804) if r.TryDecodeAsNil() { - yyv4804[yyj4804] = "" + yyv4804[yyj4804] = ContainerImage{} } else { - yyv4804[yyj4804] = FinalizerName(r.DecodeString()) + yyv4806 := &yyv4804[yyj4804] + yyv4806.CodecDecodeSelf(d) } } @@ -61627,15 +61528,16 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. for ; !r.CheckBreak(); yyj4804++ { if yyj4804 >= len(yyv4804) { - yyv4804 = append(yyv4804, "") // var yyz4804 FinalizerName + yyv4804 = append(yyv4804, ContainerImage{}) // var yyz4804 ContainerImage yyc4804 = true } yyh4804.ElemContainerState(yyj4804) if yyj4804 < len(yyv4804) { if r.TryDecodeAsNil() { - yyv4804[yyj4804] = "" + yyv4804[yyj4804] = ContainerImage{} } else { - yyv4804[yyj4804] = FinalizerName(r.DecodeString()) + yyv4807 := &yyv4804[yyj4804] + yyv4807.CodecDecodeSelf(d) } } else { @@ -61647,7 +61549,7 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. yyv4804 = yyv4804[:yyj4804] yyc4804 = true } else if yyj4804 == 0 && yyv4804 == nil { - yyv4804 = []FinalizerName{} + yyv4804 = []ContainerImage{} yyc4804 = true } } @@ -61657,15 +61559,691 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. } } -func (x codecSelfer1234) encSliceNamespace(v []Namespace, e *codec1978.Encoder) { +func (x codecSelfer1234) encSliceUniqueVolumeName(v []UniqueVolumeName, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) for _, yyv4808 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4809 := &yyv4808 - yy4809.CodecEncodeSelf(e) + yyv4808.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4809 := *v + yyh4809, yyl4809 := z.DecSliceHelperStart() + var yyc4809 bool + if yyl4809 == 0 { + if yyv4809 == nil { + yyv4809 = []UniqueVolumeName{} + yyc4809 = true + } else if len(yyv4809) != 0 { + yyv4809 = yyv4809[:0] + yyc4809 = true + } + } else if yyl4809 > 0 { + var yyrr4809, yyrl4809 int + var yyrt4809 bool + if yyl4809 > cap(yyv4809) { + + yyrl4809, yyrt4809 = z.DecInferLen(yyl4809, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4809 { + if yyrl4809 <= cap(yyv4809) { + yyv4809 = yyv4809[:yyrl4809] + } else { + yyv4809 = make([]UniqueVolumeName, yyrl4809) + } + } else { + yyv4809 = make([]UniqueVolumeName, yyrl4809) + } + yyc4809 = true + yyrr4809 = len(yyv4809) + } else if yyl4809 != len(yyv4809) { + yyv4809 = yyv4809[:yyl4809] + yyc4809 = true + } + yyj4809 := 0 + for ; yyj4809 < yyrr4809; yyj4809++ { + yyh4809.ElemContainerState(yyj4809) + if r.TryDecodeAsNil() { + yyv4809[yyj4809] = "" + } else { + yyv4809[yyj4809] = UniqueVolumeName(r.DecodeString()) + } + + } + if yyrt4809 { + for ; yyj4809 < yyl4809; yyj4809++ { + yyv4809 = append(yyv4809, "") + yyh4809.ElemContainerState(yyj4809) + if r.TryDecodeAsNil() { + yyv4809[yyj4809] = "" + } else { + yyv4809[yyj4809] = UniqueVolumeName(r.DecodeString()) + } + + } + } + + } else { + yyj4809 := 0 + for ; !r.CheckBreak(); yyj4809++ { + + if yyj4809 >= len(yyv4809) { + yyv4809 = append(yyv4809, "") // var yyz4809 UniqueVolumeName + yyc4809 = true + } + yyh4809.ElemContainerState(yyj4809) + if yyj4809 < len(yyv4809) { + if r.TryDecodeAsNil() { + yyv4809[yyj4809] = "" + } else { + yyv4809[yyj4809] = UniqueVolumeName(r.DecodeString()) + } + + } else { + z.DecSwallow() + } + + } + if yyj4809 < len(yyv4809) { + yyv4809 = yyv4809[:yyj4809] + yyc4809 = true + } else if yyj4809 == 0 && yyv4809 == nil { + yyv4809 = []UniqueVolumeName{} + yyc4809 = true + } + } + yyh4809.End() + if yyc4809 { + *v = yyv4809 + } +} + +func (x codecSelfer1234) encSliceAttachedVolume(v []AttachedVolume, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4813 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4814 := &yyv4813 + yy4814.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4815 := *v + yyh4815, yyl4815 := z.DecSliceHelperStart() + var yyc4815 bool + if yyl4815 == 0 { + if yyv4815 == nil { + yyv4815 = []AttachedVolume{} + yyc4815 = true + } else if len(yyv4815) != 0 { + yyv4815 = yyv4815[:0] + yyc4815 = true + } + } else if yyl4815 > 0 { + var yyrr4815, yyrl4815 int + var yyrt4815 bool + if yyl4815 > cap(yyv4815) { + + yyrg4815 := len(yyv4815) > 0 + yyv24815 := yyv4815 + yyrl4815, yyrt4815 = z.DecInferLen(yyl4815, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4815 { + if yyrl4815 <= cap(yyv4815) { + yyv4815 = yyv4815[:yyrl4815] + } else { + yyv4815 = make([]AttachedVolume, yyrl4815) + } + } else { + yyv4815 = make([]AttachedVolume, yyrl4815) + } + yyc4815 = true + yyrr4815 = len(yyv4815) + if yyrg4815 { + copy(yyv4815, yyv24815) + } + } else if yyl4815 != len(yyv4815) { + yyv4815 = yyv4815[:yyl4815] + yyc4815 = true + } + yyj4815 := 0 + for ; yyj4815 < yyrr4815; yyj4815++ { + yyh4815.ElemContainerState(yyj4815) + if r.TryDecodeAsNil() { + yyv4815[yyj4815] = AttachedVolume{} + } else { + yyv4816 := &yyv4815[yyj4815] + yyv4816.CodecDecodeSelf(d) + } + + } + if yyrt4815 { + for ; yyj4815 < yyl4815; yyj4815++ { + yyv4815 = append(yyv4815, AttachedVolume{}) + yyh4815.ElemContainerState(yyj4815) + if r.TryDecodeAsNil() { + yyv4815[yyj4815] = AttachedVolume{} + } else { + yyv4817 := &yyv4815[yyj4815] + yyv4817.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4815 := 0 + for ; !r.CheckBreak(); yyj4815++ { + + if yyj4815 >= len(yyv4815) { + yyv4815 = append(yyv4815, AttachedVolume{}) // var yyz4815 AttachedVolume + yyc4815 = true + } + yyh4815.ElemContainerState(yyj4815) + if yyj4815 < len(yyv4815) { + if r.TryDecodeAsNil() { + yyv4815[yyj4815] = AttachedVolume{} + } else { + yyv4818 := &yyv4815[yyj4815] + yyv4818.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4815 < len(yyv4815) { + yyv4815 = yyv4815[:yyj4815] + yyc4815 = true + } else if yyj4815 == 0 && yyv4815 == nil { + yyv4815 = []AttachedVolume{} + yyc4815 = true + } + } + yyh4815.End() + if yyc4815 { + *v = yyv4815 + } +} + +func (x codecSelfer1234) encSlicePreferAvoidPodsEntry(v []PreferAvoidPodsEntry, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4819 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4820 := &yyv4819 + yy4820.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4821 := *v + yyh4821, yyl4821 := z.DecSliceHelperStart() + var yyc4821 bool + if yyl4821 == 0 { + if yyv4821 == nil { + yyv4821 = []PreferAvoidPodsEntry{} + yyc4821 = true + } else if len(yyv4821) != 0 { + yyv4821 = yyv4821[:0] + yyc4821 = true + } + } else if yyl4821 > 0 { + var yyrr4821, yyrl4821 int + var yyrt4821 bool + if yyl4821 > cap(yyv4821) { + + yyrg4821 := len(yyv4821) > 0 + yyv24821 := yyv4821 + yyrl4821, yyrt4821 = z.DecInferLen(yyl4821, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4821 { + if yyrl4821 <= cap(yyv4821) { + yyv4821 = yyv4821[:yyrl4821] + } else { + yyv4821 = make([]PreferAvoidPodsEntry, yyrl4821) + } + } else { + yyv4821 = make([]PreferAvoidPodsEntry, yyrl4821) + } + yyc4821 = true + yyrr4821 = len(yyv4821) + if yyrg4821 { + copy(yyv4821, yyv24821) + } + } else if yyl4821 != len(yyv4821) { + yyv4821 = yyv4821[:yyl4821] + yyc4821 = true + } + yyj4821 := 0 + for ; yyj4821 < yyrr4821; yyj4821++ { + yyh4821.ElemContainerState(yyj4821) + if r.TryDecodeAsNil() { + yyv4821[yyj4821] = PreferAvoidPodsEntry{} + } else { + yyv4822 := &yyv4821[yyj4821] + yyv4822.CodecDecodeSelf(d) + } + + } + if yyrt4821 { + for ; yyj4821 < yyl4821; yyj4821++ { + yyv4821 = append(yyv4821, PreferAvoidPodsEntry{}) + yyh4821.ElemContainerState(yyj4821) + if r.TryDecodeAsNil() { + yyv4821[yyj4821] = PreferAvoidPodsEntry{} + } else { + yyv4823 := &yyv4821[yyj4821] + yyv4823.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4821 := 0 + for ; !r.CheckBreak(); yyj4821++ { + + if yyj4821 >= len(yyv4821) { + yyv4821 = append(yyv4821, PreferAvoidPodsEntry{}) // var yyz4821 PreferAvoidPodsEntry + yyc4821 = true + } + yyh4821.ElemContainerState(yyj4821) + if yyj4821 < len(yyv4821) { + if r.TryDecodeAsNil() { + yyv4821[yyj4821] = PreferAvoidPodsEntry{} + } else { + yyv4824 := &yyv4821[yyj4821] + yyv4824.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4821 < len(yyv4821) { + yyv4821 = yyv4821[:yyj4821] + yyc4821 = true + } else if yyj4821 == 0 && yyv4821 == nil { + yyv4821 = []PreferAvoidPodsEntry{} + yyc4821 = true + } + } + yyh4821.End() + if yyc4821 { + *v = yyv4821 + } +} + +func (x codecSelfer1234) encResourceList(v ResourceList, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeMapStart(len(v)) + for yyk4825, yyv4825 := range v { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + yyk4825.CodecEncodeSelf(e) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy4826 := &yyv4825 + yym4827 := z.EncBinary() + _ = yym4827 + if false { + } else if z.HasExtensions() && z.EncExt(yy4826) { + } else if !yym4827 && z.IsJSONHandle() { + z.EncJSONMarshal(yy4826) + } else { + z.EncFallback(yy4826) + } + } + z.EncSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x codecSelfer1234) decResourceList(v *ResourceList, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4828 := *v + yyl4828 := r.ReadMapStart() + yybh4828 := z.DecBasicHandle() + if yyv4828 == nil { + yyrl4828, _ := z.DecInferLen(yyl4828, yybh4828.MaxInitLen, 72) + yyv4828 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4828) + *v = yyv4828 + } + var yymk4828 ResourceName + var yymv4828 pkg3_resource.Quantity + var yymg4828 bool + if yybh4828.MapValueReset { + yymg4828 = true + } + if yyl4828 > 0 { + for yyj4828 := 0; yyj4828 < yyl4828; yyj4828++ { + z.DecSendContainerState(codecSelfer_containerMapKey1234) + if r.TryDecodeAsNil() { + yymk4828 = "" + } else { + yymk4828 = ResourceName(r.DecodeString()) + } + + if yymg4828 { + yymv4828 = yyv4828[yymk4828] + } else { + yymv4828 = pkg3_resource.Quantity{} + } + z.DecSendContainerState(codecSelfer_containerMapValue1234) + if r.TryDecodeAsNil() { + yymv4828 = pkg3_resource.Quantity{} + } else { + yyv4830 := &yymv4828 + yym4831 := z.DecBinary() + _ = yym4831 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4830) { + } else if !yym4831 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4830) + } else { + z.DecFallback(yyv4830, false) + } + } + + if yyv4828 != nil { + yyv4828[yymk4828] = yymv4828 + } + } + } else if yyl4828 < 0 { + for yyj4828 := 0; !r.CheckBreak(); yyj4828++ { + z.DecSendContainerState(codecSelfer_containerMapKey1234) + if r.TryDecodeAsNil() { + yymk4828 = "" + } else { + yymk4828 = ResourceName(r.DecodeString()) + } + + if yymg4828 { + yymv4828 = yyv4828[yymk4828] + } else { + yymv4828 = pkg3_resource.Quantity{} + } + z.DecSendContainerState(codecSelfer_containerMapValue1234) + if r.TryDecodeAsNil() { + yymv4828 = pkg3_resource.Quantity{} + } else { + yyv4833 := &yymv4828 + yym4834 := z.DecBinary() + _ = yym4834 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4833) { + } else if !yym4834 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4833) + } else { + z.DecFallback(yyv4833, false) + } + } + + if yyv4828 != nil { + yyv4828[yymk4828] = yymv4828 + } + } + } // else len==0: TODO: Should we clear map entries? + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x codecSelfer1234) encSliceNode(v []Node, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4835 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4836 := &yyv4835 + yy4836.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4837 := *v + yyh4837, yyl4837 := z.DecSliceHelperStart() + var yyc4837 bool + if yyl4837 == 0 { + if yyv4837 == nil { + yyv4837 = []Node{} + yyc4837 = true + } else if len(yyv4837) != 0 { + yyv4837 = yyv4837[:0] + yyc4837 = true + } + } else if yyl4837 > 0 { + var yyrr4837, yyrl4837 int + var yyrt4837 bool + if yyl4837 > cap(yyv4837) { + + yyrg4837 := len(yyv4837) > 0 + yyv24837 := yyv4837 + yyrl4837, yyrt4837 = z.DecInferLen(yyl4837, z.DecBasicHandle().MaxInitLen, 632) + if yyrt4837 { + if yyrl4837 <= cap(yyv4837) { + yyv4837 = yyv4837[:yyrl4837] + } else { + yyv4837 = make([]Node, yyrl4837) + } + } else { + yyv4837 = make([]Node, yyrl4837) + } + yyc4837 = true + yyrr4837 = len(yyv4837) + if yyrg4837 { + copy(yyv4837, yyv24837) + } + } else if yyl4837 != len(yyv4837) { + yyv4837 = yyv4837[:yyl4837] + yyc4837 = true + } + yyj4837 := 0 + for ; yyj4837 < yyrr4837; yyj4837++ { + yyh4837.ElemContainerState(yyj4837) + if r.TryDecodeAsNil() { + yyv4837[yyj4837] = Node{} + } else { + yyv4838 := &yyv4837[yyj4837] + yyv4838.CodecDecodeSelf(d) + } + + } + if yyrt4837 { + for ; yyj4837 < yyl4837; yyj4837++ { + yyv4837 = append(yyv4837, Node{}) + yyh4837.ElemContainerState(yyj4837) + if r.TryDecodeAsNil() { + yyv4837[yyj4837] = Node{} + } else { + yyv4839 := &yyv4837[yyj4837] + yyv4839.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj4837 := 0 + for ; !r.CheckBreak(); yyj4837++ { + + if yyj4837 >= len(yyv4837) { + yyv4837 = append(yyv4837, Node{}) // var yyz4837 Node + yyc4837 = true + } + yyh4837.ElemContainerState(yyj4837) + if yyj4837 < len(yyv4837) { + if r.TryDecodeAsNil() { + yyv4837[yyj4837] = Node{} + } else { + yyv4840 := &yyv4837[yyj4837] + yyv4840.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj4837 < len(yyv4837) { + yyv4837 = yyv4837[:yyj4837] + yyc4837 = true + } else if yyj4837 == 0 && yyv4837 == nil { + yyv4837 = []Node{} + yyc4837 = true + } + } + yyh4837.End() + if yyc4837 { + *v = yyv4837 + } +} + +func (x codecSelfer1234) encSliceFinalizerName(v []FinalizerName, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4841 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yyv4841.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv4842 := *v + yyh4842, yyl4842 := z.DecSliceHelperStart() + var yyc4842 bool + if yyl4842 == 0 { + if yyv4842 == nil { + yyv4842 = []FinalizerName{} + yyc4842 = true + } else if len(yyv4842) != 0 { + yyv4842 = yyv4842[:0] + yyc4842 = true + } + } else if yyl4842 > 0 { + var yyrr4842, yyrl4842 int + var yyrt4842 bool + if yyl4842 > cap(yyv4842) { + + yyrl4842, yyrt4842 = z.DecInferLen(yyl4842, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4842 { + if yyrl4842 <= cap(yyv4842) { + yyv4842 = yyv4842[:yyrl4842] + } else { + yyv4842 = make([]FinalizerName, yyrl4842) + } + } else { + yyv4842 = make([]FinalizerName, yyrl4842) + } + yyc4842 = true + yyrr4842 = len(yyv4842) + } else if yyl4842 != len(yyv4842) { + yyv4842 = yyv4842[:yyl4842] + yyc4842 = true + } + yyj4842 := 0 + for ; yyj4842 < yyrr4842; yyj4842++ { + yyh4842.ElemContainerState(yyj4842) + if r.TryDecodeAsNil() { + yyv4842[yyj4842] = "" + } else { + yyv4842[yyj4842] = FinalizerName(r.DecodeString()) + } + + } + if yyrt4842 { + for ; yyj4842 < yyl4842; yyj4842++ { + yyv4842 = append(yyv4842, "") + yyh4842.ElemContainerState(yyj4842) + if r.TryDecodeAsNil() { + yyv4842[yyj4842] = "" + } else { + yyv4842[yyj4842] = FinalizerName(r.DecodeString()) + } + + } + } + + } else { + yyj4842 := 0 + for ; !r.CheckBreak(); yyj4842++ { + + if yyj4842 >= len(yyv4842) { + yyv4842 = append(yyv4842, "") // var yyz4842 FinalizerName + yyc4842 = true + } + yyh4842.ElemContainerState(yyj4842) + if yyj4842 < len(yyv4842) { + if r.TryDecodeAsNil() { + yyv4842[yyj4842] = "" + } else { + yyv4842[yyj4842] = FinalizerName(r.DecodeString()) + } + + } else { + z.DecSwallow() + } + + } + if yyj4842 < len(yyv4842) { + yyv4842 = yyv4842[:yyj4842] + yyc4842 = true + } else if yyj4842 == 0 && yyv4842 == nil { + yyv4842 = []FinalizerName{} + yyc4842 = true + } + } + yyh4842.End() + if yyc4842 { + *v = yyv4842 + } +} + +func (x codecSelfer1234) encSliceNamespace(v []Namespace, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv4846 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy4847 := &yyv4846 + yy4847.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61675,83 +62253,83 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4810 := *v - yyh4810, yyl4810 := z.DecSliceHelperStart() - var yyc4810 bool - if yyl4810 == 0 { - if yyv4810 == nil { - yyv4810 = []Namespace{} - yyc4810 = true - } else if len(yyv4810) != 0 { - yyv4810 = yyv4810[:0] - yyc4810 = true + yyv4848 := *v + yyh4848, yyl4848 := z.DecSliceHelperStart() + var yyc4848 bool + if yyl4848 == 0 { + if yyv4848 == nil { + yyv4848 = []Namespace{} + yyc4848 = true + } else if len(yyv4848) != 0 { + yyv4848 = yyv4848[:0] + yyc4848 = true } - } else if yyl4810 > 0 { - var yyrr4810, yyrl4810 int - var yyrt4810 bool - if yyl4810 > cap(yyv4810) { + } else if yyl4848 > 0 { + var yyrr4848, yyrl4848 int + var yyrt4848 bool + if yyl4848 > cap(yyv4848) { - yyrg4810 := len(yyv4810) > 0 - yyv24810 := yyv4810 - yyrl4810, yyrt4810 = z.DecInferLen(yyl4810, z.DecBasicHandle().MaxInitLen, 296) - if yyrt4810 { - if yyrl4810 <= cap(yyv4810) { - yyv4810 = yyv4810[:yyrl4810] + yyrg4848 := len(yyv4848) > 0 + yyv24848 := yyv4848 + yyrl4848, yyrt4848 = z.DecInferLen(yyl4848, z.DecBasicHandle().MaxInitLen, 296) + if yyrt4848 { + if yyrl4848 <= cap(yyv4848) { + yyv4848 = yyv4848[:yyrl4848] } else { - yyv4810 = make([]Namespace, yyrl4810) + yyv4848 = make([]Namespace, yyrl4848) } } else { - yyv4810 = make([]Namespace, yyrl4810) + yyv4848 = make([]Namespace, yyrl4848) } - yyc4810 = true - yyrr4810 = len(yyv4810) - if yyrg4810 { - copy(yyv4810, yyv24810) + yyc4848 = true + yyrr4848 = len(yyv4848) + if yyrg4848 { + copy(yyv4848, yyv24848) } - } else if yyl4810 != len(yyv4810) { - yyv4810 = yyv4810[:yyl4810] - yyc4810 = true + } else if yyl4848 != len(yyv4848) { + yyv4848 = yyv4848[:yyl4848] + yyc4848 = true } - yyj4810 := 0 - for ; yyj4810 < yyrr4810; yyj4810++ { - yyh4810.ElemContainerState(yyj4810) + yyj4848 := 0 + for ; yyj4848 < yyrr4848; yyj4848++ { + yyh4848.ElemContainerState(yyj4848) if r.TryDecodeAsNil() { - yyv4810[yyj4810] = Namespace{} + yyv4848[yyj4848] = Namespace{} } else { - yyv4811 := &yyv4810[yyj4810] - yyv4811.CodecDecodeSelf(d) + yyv4849 := &yyv4848[yyj4848] + yyv4849.CodecDecodeSelf(d) } } - if yyrt4810 { - for ; yyj4810 < yyl4810; yyj4810++ { - yyv4810 = append(yyv4810, Namespace{}) - yyh4810.ElemContainerState(yyj4810) + if yyrt4848 { + for ; yyj4848 < yyl4848; yyj4848++ { + yyv4848 = append(yyv4848, Namespace{}) + yyh4848.ElemContainerState(yyj4848) if r.TryDecodeAsNil() { - yyv4810[yyj4810] = Namespace{} + yyv4848[yyj4848] = Namespace{} } else { - yyv4812 := &yyv4810[yyj4810] - yyv4812.CodecDecodeSelf(d) + yyv4850 := &yyv4848[yyj4848] + yyv4850.CodecDecodeSelf(d) } } } } else { - yyj4810 := 0 - for ; !r.CheckBreak(); yyj4810++ { + yyj4848 := 0 + for ; !r.CheckBreak(); yyj4848++ { - if yyj4810 >= len(yyv4810) { - yyv4810 = append(yyv4810, Namespace{}) // var yyz4810 Namespace - yyc4810 = true + if yyj4848 >= len(yyv4848) { + yyv4848 = append(yyv4848, Namespace{}) // var yyz4848 Namespace + yyc4848 = true } - yyh4810.ElemContainerState(yyj4810) - if yyj4810 < len(yyv4810) { + yyh4848.ElemContainerState(yyj4848) + if yyj4848 < len(yyv4848) { if r.TryDecodeAsNil() { - yyv4810[yyj4810] = Namespace{} + yyv4848[yyj4848] = Namespace{} } else { - yyv4813 := &yyv4810[yyj4810] - yyv4813.CodecDecodeSelf(d) + yyv4851 := &yyv4848[yyj4848] + yyv4851.CodecDecodeSelf(d) } } else { @@ -61759,17 +62337,17 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) } } - if yyj4810 < len(yyv4810) { - yyv4810 = yyv4810[:yyj4810] - yyc4810 = true - } else if yyj4810 == 0 && yyv4810 == nil { - yyv4810 = []Namespace{} - yyc4810 = true + if yyj4848 < len(yyv4848) { + yyv4848 = yyv4848[:yyj4848] + yyc4848 = true + } else if yyj4848 == 0 && yyv4848 == nil { + yyv4848 = []Namespace{} + yyc4848 = true } } - yyh4810.End() - if yyc4810 { - *v = yyv4810 + yyh4848.End() + if yyc4848 { + *v = yyv4848 } } @@ -61778,10 +62356,10 @@ func (x codecSelfer1234) encSliceEvent(v []Event, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4814 := range v { + for _, yyv4852 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4815 := &yyv4814 - yy4815.CodecEncodeSelf(e) + yy4853 := &yyv4852 + yy4853.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61791,83 +62369,83 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4816 := *v - yyh4816, yyl4816 := z.DecSliceHelperStart() - var yyc4816 bool - if yyl4816 == 0 { - if yyv4816 == nil { - yyv4816 = []Event{} - yyc4816 = true - } else if len(yyv4816) != 0 { - yyv4816 = yyv4816[:0] - yyc4816 = true + yyv4854 := *v + yyh4854, yyl4854 := z.DecSliceHelperStart() + var yyc4854 bool + if yyl4854 == 0 { + if yyv4854 == nil { + yyv4854 = []Event{} + yyc4854 = true + } else if len(yyv4854) != 0 { + yyv4854 = yyv4854[:0] + yyc4854 = true } - } else if yyl4816 > 0 { - var yyrr4816, yyrl4816 int - var yyrt4816 bool - if yyl4816 > cap(yyv4816) { + } else if yyl4854 > 0 { + var yyrr4854, yyrl4854 int + var yyrt4854 bool + if yyl4854 > cap(yyv4854) { - yyrg4816 := len(yyv4816) > 0 - yyv24816 := yyv4816 - yyrl4816, yyrt4816 = z.DecInferLen(yyl4816, z.DecBasicHandle().MaxInitLen, 504) - if yyrt4816 { - if yyrl4816 <= cap(yyv4816) { - yyv4816 = yyv4816[:yyrl4816] + yyrg4854 := len(yyv4854) > 0 + yyv24854 := yyv4854 + yyrl4854, yyrt4854 = z.DecInferLen(yyl4854, z.DecBasicHandle().MaxInitLen, 504) + if yyrt4854 { + if yyrl4854 <= cap(yyv4854) { + yyv4854 = yyv4854[:yyrl4854] } else { - yyv4816 = make([]Event, yyrl4816) + yyv4854 = make([]Event, yyrl4854) } } else { - yyv4816 = make([]Event, yyrl4816) + yyv4854 = make([]Event, yyrl4854) } - yyc4816 = true - yyrr4816 = len(yyv4816) - if yyrg4816 { - copy(yyv4816, yyv24816) + yyc4854 = true + yyrr4854 = len(yyv4854) + if yyrg4854 { + copy(yyv4854, yyv24854) } - } else if yyl4816 != len(yyv4816) { - yyv4816 = yyv4816[:yyl4816] - yyc4816 = true + } else if yyl4854 != len(yyv4854) { + yyv4854 = yyv4854[:yyl4854] + yyc4854 = true } - yyj4816 := 0 - for ; yyj4816 < yyrr4816; yyj4816++ { - yyh4816.ElemContainerState(yyj4816) + yyj4854 := 0 + for ; yyj4854 < yyrr4854; yyj4854++ { + yyh4854.ElemContainerState(yyj4854) if r.TryDecodeAsNil() { - yyv4816[yyj4816] = Event{} + yyv4854[yyj4854] = Event{} } else { - yyv4817 := &yyv4816[yyj4816] - yyv4817.CodecDecodeSelf(d) + yyv4855 := &yyv4854[yyj4854] + yyv4855.CodecDecodeSelf(d) } } - if yyrt4816 { - for ; yyj4816 < yyl4816; yyj4816++ { - yyv4816 = append(yyv4816, Event{}) - yyh4816.ElemContainerState(yyj4816) + if yyrt4854 { + for ; yyj4854 < yyl4854; yyj4854++ { + yyv4854 = append(yyv4854, Event{}) + yyh4854.ElemContainerState(yyj4854) if r.TryDecodeAsNil() { - yyv4816[yyj4816] = Event{} + yyv4854[yyj4854] = Event{} } else { - yyv4818 := &yyv4816[yyj4816] - yyv4818.CodecDecodeSelf(d) + yyv4856 := &yyv4854[yyj4854] + yyv4856.CodecDecodeSelf(d) } } } } else { - yyj4816 := 0 - for ; !r.CheckBreak(); yyj4816++ { + yyj4854 := 0 + for ; !r.CheckBreak(); yyj4854++ { - if yyj4816 >= len(yyv4816) { - yyv4816 = append(yyv4816, Event{}) // var yyz4816 Event - yyc4816 = true + if yyj4854 >= len(yyv4854) { + yyv4854 = append(yyv4854, Event{}) // var yyz4854 Event + yyc4854 = true } - yyh4816.ElemContainerState(yyj4816) - if yyj4816 < len(yyv4816) { + yyh4854.ElemContainerState(yyj4854) + if yyj4854 < len(yyv4854) { if r.TryDecodeAsNil() { - yyv4816[yyj4816] = Event{} + yyv4854[yyj4854] = Event{} } else { - yyv4819 := &yyv4816[yyj4816] - yyv4819.CodecDecodeSelf(d) + yyv4857 := &yyv4854[yyj4854] + yyv4857.CodecDecodeSelf(d) } } else { @@ -61875,17 +62453,17 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { } } - if yyj4816 < len(yyv4816) { - yyv4816 = yyv4816[:yyj4816] - yyc4816 = true - } else if yyj4816 == 0 && yyv4816 == nil { - yyv4816 = []Event{} - yyc4816 = true + if yyj4854 < len(yyv4854) { + yyv4854 = yyv4854[:yyj4854] + yyc4854 = true + } else if yyj4854 == 0 && yyv4854 == nil { + yyv4854 = []Event{} + yyc4854 = true } } - yyh4816.End() - if yyc4816 { - *v = yyv4816 + yyh4854.End() + if yyc4854 { + *v = yyv4854 } } @@ -61894,17 +62472,17 @@ func (x codecSelfer1234) encSliceruntime_RawExtension(v []pkg5_runtime.RawExtens z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4820 := range v { + for _, yyv4858 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4821 := &yyv4820 - yym4822 := z.EncBinary() - _ = yym4822 + yy4859 := &yyv4858 + yym4860 := z.EncBinary() + _ = yym4860 if false { - } else if z.HasExtensions() && z.EncExt(yy4821) { - } else if !yym4822 && z.IsJSONHandle() { - z.EncJSONMarshal(yy4821) + } else if z.HasExtensions() && z.EncExt(yy4859) { + } else if !yym4860 && z.IsJSONHandle() { + z.EncJSONMarshal(yy4859) } else { - z.EncFallback(yy4821) + z.EncFallback(yy4859) } } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) @@ -61915,78 +62493,78 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg5_runtime.RawExten z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4823 := *v - yyh4823, yyl4823 := z.DecSliceHelperStart() - var yyc4823 bool - if yyl4823 == 0 { - if yyv4823 == nil { - yyv4823 = []pkg5_runtime.RawExtension{} - yyc4823 = true - } else if len(yyv4823) != 0 { - yyv4823 = yyv4823[:0] - yyc4823 = true + yyv4861 := *v + yyh4861, yyl4861 := z.DecSliceHelperStart() + var yyc4861 bool + if yyl4861 == 0 { + if yyv4861 == nil { + yyv4861 = []pkg5_runtime.RawExtension{} + yyc4861 = true + } else if len(yyv4861) != 0 { + yyv4861 = yyv4861[:0] + yyc4861 = true } - } else if yyl4823 > 0 { - var yyrr4823, yyrl4823 int - var yyrt4823 bool - if yyl4823 > cap(yyv4823) { + } else if yyl4861 > 0 { + var yyrr4861, yyrl4861 int + var yyrt4861 bool + if yyl4861 > cap(yyv4861) { - yyrg4823 := len(yyv4823) > 0 - yyv24823 := yyv4823 - yyrl4823, yyrt4823 = z.DecInferLen(yyl4823, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4823 { - if yyrl4823 <= cap(yyv4823) { - yyv4823 = yyv4823[:yyrl4823] + yyrg4861 := len(yyv4861) > 0 + yyv24861 := yyv4861 + yyrl4861, yyrt4861 = z.DecInferLen(yyl4861, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4861 { + if yyrl4861 <= cap(yyv4861) { + yyv4861 = yyv4861[:yyrl4861] } else { - yyv4823 = make([]pkg5_runtime.RawExtension, yyrl4823) + yyv4861 = make([]pkg5_runtime.RawExtension, yyrl4861) } } else { - yyv4823 = make([]pkg5_runtime.RawExtension, yyrl4823) + yyv4861 = make([]pkg5_runtime.RawExtension, yyrl4861) } - yyc4823 = true - yyrr4823 = len(yyv4823) - if yyrg4823 { - copy(yyv4823, yyv24823) + yyc4861 = true + yyrr4861 = len(yyv4861) + if yyrg4861 { + copy(yyv4861, yyv24861) } - } else if yyl4823 != len(yyv4823) { - yyv4823 = yyv4823[:yyl4823] - yyc4823 = true + } else if yyl4861 != len(yyv4861) { + yyv4861 = yyv4861[:yyl4861] + yyc4861 = true } - yyj4823 := 0 - for ; yyj4823 < yyrr4823; yyj4823++ { - yyh4823.ElemContainerState(yyj4823) + yyj4861 := 0 + for ; yyj4861 < yyrr4861; yyj4861++ { + yyh4861.ElemContainerState(yyj4861) if r.TryDecodeAsNil() { - yyv4823[yyj4823] = pkg5_runtime.RawExtension{} + yyv4861[yyj4861] = pkg5_runtime.RawExtension{} } else { - yyv4824 := &yyv4823[yyj4823] - yym4825 := z.DecBinary() - _ = yym4825 + yyv4862 := &yyv4861[yyj4861] + yym4863 := z.DecBinary() + _ = yym4863 if false { - } else if z.HasExtensions() && z.DecExt(yyv4824) { - } else if !yym4825 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4824) + } else if z.HasExtensions() && z.DecExt(yyv4862) { + } else if !yym4863 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4862) } else { - z.DecFallback(yyv4824, false) + z.DecFallback(yyv4862, false) } } } - if yyrt4823 { - for ; yyj4823 < yyl4823; yyj4823++ { - yyv4823 = append(yyv4823, pkg5_runtime.RawExtension{}) - yyh4823.ElemContainerState(yyj4823) + if yyrt4861 { + for ; yyj4861 < yyl4861; yyj4861++ { + yyv4861 = append(yyv4861, pkg5_runtime.RawExtension{}) + yyh4861.ElemContainerState(yyj4861) if r.TryDecodeAsNil() { - yyv4823[yyj4823] = pkg5_runtime.RawExtension{} + yyv4861[yyj4861] = pkg5_runtime.RawExtension{} } else { - yyv4826 := &yyv4823[yyj4823] - yym4827 := z.DecBinary() - _ = yym4827 + yyv4864 := &yyv4861[yyj4861] + yym4865 := z.DecBinary() + _ = yym4865 if false { - } else if z.HasExtensions() && z.DecExt(yyv4826) { - } else if !yym4827 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4826) + } else if z.HasExtensions() && z.DecExt(yyv4864) { + } else if !yym4865 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4864) } else { - z.DecFallback(yyv4826, false) + z.DecFallback(yyv4864, false) } } @@ -61994,27 +62572,27 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg5_runtime.RawExten } } else { - yyj4823 := 0 - for ; !r.CheckBreak(); yyj4823++ { + yyj4861 := 0 + for ; !r.CheckBreak(); yyj4861++ { - if yyj4823 >= len(yyv4823) { - yyv4823 = append(yyv4823, pkg5_runtime.RawExtension{}) // var yyz4823 pkg5_runtime.RawExtension - yyc4823 = true + if yyj4861 >= len(yyv4861) { + yyv4861 = append(yyv4861, pkg5_runtime.RawExtension{}) // var yyz4861 pkg5_runtime.RawExtension + yyc4861 = true } - yyh4823.ElemContainerState(yyj4823) - if yyj4823 < len(yyv4823) { + yyh4861.ElemContainerState(yyj4861) + if yyj4861 < len(yyv4861) { if r.TryDecodeAsNil() { - yyv4823[yyj4823] = pkg5_runtime.RawExtension{} + yyv4861[yyj4861] = pkg5_runtime.RawExtension{} } else { - yyv4828 := &yyv4823[yyj4823] - yym4829 := z.DecBinary() - _ = yym4829 + yyv4866 := &yyv4861[yyj4861] + yym4867 := z.DecBinary() + _ = yym4867 if false { - } else if z.HasExtensions() && z.DecExt(yyv4828) { - } else if !yym4829 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4828) + } else if z.HasExtensions() && z.DecExt(yyv4866) { + } else if !yym4867 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4866) } else { - z.DecFallback(yyv4828, false) + z.DecFallback(yyv4866, false) } } @@ -62023,17 +62601,17 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg5_runtime.RawExten } } - if yyj4823 < len(yyv4823) { - yyv4823 = yyv4823[:yyj4823] - yyc4823 = true - } else if yyj4823 == 0 && yyv4823 == nil { - yyv4823 = []pkg5_runtime.RawExtension{} - yyc4823 = true + if yyj4861 < len(yyv4861) { + yyv4861 = yyv4861[:yyj4861] + yyc4861 = true + } else if yyj4861 == 0 && yyv4861 == nil { + yyv4861 = []pkg5_runtime.RawExtension{} + yyc4861 = true } } - yyh4823.End() - if yyc4823 { - *v = yyv4823 + yyh4861.End() + if yyc4861 { + *v = yyv4861 } } @@ -62042,10 +62620,10 @@ func (x codecSelfer1234) encSliceLimitRangeItem(v []LimitRangeItem, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4830 := range v { + for _, yyv4868 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4831 := &yyv4830 - yy4831.CodecEncodeSelf(e) + yy4869 := &yyv4868 + yy4869.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62055,83 +62633,83 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4832 := *v - yyh4832, yyl4832 := z.DecSliceHelperStart() - var yyc4832 bool - if yyl4832 == 0 { - if yyv4832 == nil { - yyv4832 = []LimitRangeItem{} - yyc4832 = true - } else if len(yyv4832) != 0 { - yyv4832 = yyv4832[:0] - yyc4832 = true + yyv4870 := *v + yyh4870, yyl4870 := z.DecSliceHelperStart() + var yyc4870 bool + if yyl4870 == 0 { + if yyv4870 == nil { + yyv4870 = []LimitRangeItem{} + yyc4870 = true + } else if len(yyv4870) != 0 { + yyv4870 = yyv4870[:0] + yyc4870 = true } - } else if yyl4832 > 0 { - var yyrr4832, yyrl4832 int - var yyrt4832 bool - if yyl4832 > cap(yyv4832) { + } else if yyl4870 > 0 { + var yyrr4870, yyrl4870 int + var yyrt4870 bool + if yyl4870 > cap(yyv4870) { - yyrg4832 := len(yyv4832) > 0 - yyv24832 := yyv4832 - yyrl4832, yyrt4832 = z.DecInferLen(yyl4832, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4832 { - if yyrl4832 <= cap(yyv4832) { - yyv4832 = yyv4832[:yyrl4832] + yyrg4870 := len(yyv4870) > 0 + yyv24870 := yyv4870 + yyrl4870, yyrt4870 = z.DecInferLen(yyl4870, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4870 { + if yyrl4870 <= cap(yyv4870) { + yyv4870 = yyv4870[:yyrl4870] } else { - yyv4832 = make([]LimitRangeItem, yyrl4832) + yyv4870 = make([]LimitRangeItem, yyrl4870) } } else { - yyv4832 = make([]LimitRangeItem, yyrl4832) + yyv4870 = make([]LimitRangeItem, yyrl4870) } - yyc4832 = true - yyrr4832 = len(yyv4832) - if yyrg4832 { - copy(yyv4832, yyv24832) + yyc4870 = true + yyrr4870 = len(yyv4870) + if yyrg4870 { + copy(yyv4870, yyv24870) } - } else if yyl4832 != len(yyv4832) { - yyv4832 = yyv4832[:yyl4832] - yyc4832 = true + } else if yyl4870 != len(yyv4870) { + yyv4870 = yyv4870[:yyl4870] + yyc4870 = true } - yyj4832 := 0 - for ; yyj4832 < yyrr4832; yyj4832++ { - yyh4832.ElemContainerState(yyj4832) + yyj4870 := 0 + for ; yyj4870 < yyrr4870; yyj4870++ { + yyh4870.ElemContainerState(yyj4870) if r.TryDecodeAsNil() { - yyv4832[yyj4832] = LimitRangeItem{} + yyv4870[yyj4870] = LimitRangeItem{} } else { - yyv4833 := &yyv4832[yyj4832] - yyv4833.CodecDecodeSelf(d) + yyv4871 := &yyv4870[yyj4870] + yyv4871.CodecDecodeSelf(d) } } - if yyrt4832 { - for ; yyj4832 < yyl4832; yyj4832++ { - yyv4832 = append(yyv4832, LimitRangeItem{}) - yyh4832.ElemContainerState(yyj4832) + if yyrt4870 { + for ; yyj4870 < yyl4870; yyj4870++ { + yyv4870 = append(yyv4870, LimitRangeItem{}) + yyh4870.ElemContainerState(yyj4870) if r.TryDecodeAsNil() { - yyv4832[yyj4832] = LimitRangeItem{} + yyv4870[yyj4870] = LimitRangeItem{} } else { - yyv4834 := &yyv4832[yyj4832] - yyv4834.CodecDecodeSelf(d) + yyv4872 := &yyv4870[yyj4870] + yyv4872.CodecDecodeSelf(d) } } } } else { - yyj4832 := 0 - for ; !r.CheckBreak(); yyj4832++ { + yyj4870 := 0 + for ; !r.CheckBreak(); yyj4870++ { - if yyj4832 >= len(yyv4832) { - yyv4832 = append(yyv4832, LimitRangeItem{}) // var yyz4832 LimitRangeItem - yyc4832 = true + if yyj4870 >= len(yyv4870) { + yyv4870 = append(yyv4870, LimitRangeItem{}) // var yyz4870 LimitRangeItem + yyc4870 = true } - yyh4832.ElemContainerState(yyj4832) - if yyj4832 < len(yyv4832) { + yyh4870.ElemContainerState(yyj4870) + if yyj4870 < len(yyv4870) { if r.TryDecodeAsNil() { - yyv4832[yyj4832] = LimitRangeItem{} + yyv4870[yyj4870] = LimitRangeItem{} } else { - yyv4835 := &yyv4832[yyj4832] - yyv4835.CodecDecodeSelf(d) + yyv4873 := &yyv4870[yyj4870] + yyv4873.CodecDecodeSelf(d) } } else { @@ -62139,17 +62717,17 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 } } - if yyj4832 < len(yyv4832) { - yyv4832 = yyv4832[:yyj4832] - yyc4832 = true - } else if yyj4832 == 0 && yyv4832 == nil { - yyv4832 = []LimitRangeItem{} - yyc4832 = true + if yyj4870 < len(yyv4870) { + yyv4870 = yyv4870[:yyj4870] + yyc4870 = true + } else if yyj4870 == 0 && yyv4870 == nil { + yyv4870 = []LimitRangeItem{} + yyc4870 = true } } - yyh4832.End() - if yyc4832 { - *v = yyv4832 + yyh4870.End() + if yyc4870 { + *v = yyv4870 } } @@ -62158,10 +62736,10 @@ func (x codecSelfer1234) encSliceLimitRange(v []LimitRange, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4836 := range v { + for _, yyv4874 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4837 := &yyv4836 - yy4837.CodecEncodeSelf(e) + yy4875 := &yyv4874 + yy4875.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62171,83 +62749,83 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4838 := *v - yyh4838, yyl4838 := z.DecSliceHelperStart() - var yyc4838 bool - if yyl4838 == 0 { - if yyv4838 == nil { - yyv4838 = []LimitRange{} - yyc4838 = true - } else if len(yyv4838) != 0 { - yyv4838 = yyv4838[:0] - yyc4838 = true + yyv4876 := *v + yyh4876, yyl4876 := z.DecSliceHelperStart() + var yyc4876 bool + if yyl4876 == 0 { + if yyv4876 == nil { + yyv4876 = []LimitRange{} + yyc4876 = true + } else if len(yyv4876) != 0 { + yyv4876 = yyv4876[:0] + yyc4876 = true } - } else if yyl4838 > 0 { - var yyrr4838, yyrl4838 int - var yyrt4838 bool - if yyl4838 > cap(yyv4838) { + } else if yyl4876 > 0 { + var yyrr4876, yyrl4876 int + var yyrt4876 bool + if yyl4876 > cap(yyv4876) { - yyrg4838 := len(yyv4838) > 0 - yyv24838 := yyv4838 - yyrl4838, yyrt4838 = z.DecInferLen(yyl4838, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4838 { - if yyrl4838 <= cap(yyv4838) { - yyv4838 = yyv4838[:yyrl4838] + yyrg4876 := len(yyv4876) > 0 + yyv24876 := yyv4876 + yyrl4876, yyrt4876 = z.DecInferLen(yyl4876, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4876 { + if yyrl4876 <= cap(yyv4876) { + yyv4876 = yyv4876[:yyrl4876] } else { - yyv4838 = make([]LimitRange, yyrl4838) + yyv4876 = make([]LimitRange, yyrl4876) } } else { - yyv4838 = make([]LimitRange, yyrl4838) + yyv4876 = make([]LimitRange, yyrl4876) } - yyc4838 = true - yyrr4838 = len(yyv4838) - if yyrg4838 { - copy(yyv4838, yyv24838) + yyc4876 = true + yyrr4876 = len(yyv4876) + if yyrg4876 { + copy(yyv4876, yyv24876) } - } else if yyl4838 != len(yyv4838) { - yyv4838 = yyv4838[:yyl4838] - yyc4838 = true + } else if yyl4876 != len(yyv4876) { + yyv4876 = yyv4876[:yyl4876] + yyc4876 = true } - yyj4838 := 0 - for ; yyj4838 < yyrr4838; yyj4838++ { - yyh4838.ElemContainerState(yyj4838) + yyj4876 := 0 + for ; yyj4876 < yyrr4876; yyj4876++ { + yyh4876.ElemContainerState(yyj4876) if r.TryDecodeAsNil() { - yyv4838[yyj4838] = LimitRange{} + yyv4876[yyj4876] = LimitRange{} } else { - yyv4839 := &yyv4838[yyj4838] - yyv4839.CodecDecodeSelf(d) + yyv4877 := &yyv4876[yyj4876] + yyv4877.CodecDecodeSelf(d) } } - if yyrt4838 { - for ; yyj4838 < yyl4838; yyj4838++ { - yyv4838 = append(yyv4838, LimitRange{}) - yyh4838.ElemContainerState(yyj4838) + if yyrt4876 { + for ; yyj4876 < yyl4876; yyj4876++ { + yyv4876 = append(yyv4876, LimitRange{}) + yyh4876.ElemContainerState(yyj4876) if r.TryDecodeAsNil() { - yyv4838[yyj4838] = LimitRange{} + yyv4876[yyj4876] = LimitRange{} } else { - yyv4840 := &yyv4838[yyj4838] - yyv4840.CodecDecodeSelf(d) + yyv4878 := &yyv4876[yyj4876] + yyv4878.CodecDecodeSelf(d) } } } } else { - yyj4838 := 0 - for ; !r.CheckBreak(); yyj4838++ { + yyj4876 := 0 + for ; !r.CheckBreak(); yyj4876++ { - if yyj4838 >= len(yyv4838) { - yyv4838 = append(yyv4838, LimitRange{}) // var yyz4838 LimitRange - yyc4838 = true + if yyj4876 >= len(yyv4876) { + yyv4876 = append(yyv4876, LimitRange{}) // var yyz4876 LimitRange + yyc4876 = true } - yyh4838.ElemContainerState(yyj4838) - if yyj4838 < len(yyv4838) { + yyh4876.ElemContainerState(yyj4876) + if yyj4876 < len(yyv4876) { if r.TryDecodeAsNil() { - yyv4838[yyj4838] = LimitRange{} + yyv4876[yyj4876] = LimitRange{} } else { - yyv4841 := &yyv4838[yyj4838] - yyv4841.CodecDecodeSelf(d) + yyv4879 := &yyv4876[yyj4876] + yyv4879.CodecDecodeSelf(d) } } else { @@ -62255,17 +62833,17 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode } } - if yyj4838 < len(yyv4838) { - yyv4838 = yyv4838[:yyj4838] - yyc4838 = true - } else if yyj4838 == 0 && yyv4838 == nil { - yyv4838 = []LimitRange{} - yyc4838 = true + if yyj4876 < len(yyv4876) { + yyv4876 = yyv4876[:yyj4876] + yyc4876 = true + } else if yyj4876 == 0 && yyv4876 == nil { + yyv4876 = []LimitRange{} + yyc4876 = true } } - yyh4838.End() - if yyc4838 { - *v = yyv4838 + yyh4876.End() + if yyc4876 { + *v = yyv4876 } } @@ -62274,9 +62852,9 @@ func (x codecSelfer1234) encSliceResourceQuotaScope(v []ResourceQuotaScope, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4842 := range v { + for _, yyv4880 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4842.CodecEncodeSelf(e) + yyv4880.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62286,75 +62864,75 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4843 := *v - yyh4843, yyl4843 := z.DecSliceHelperStart() - var yyc4843 bool - if yyl4843 == 0 { - if yyv4843 == nil { - yyv4843 = []ResourceQuotaScope{} - yyc4843 = true - } else if len(yyv4843) != 0 { - yyv4843 = yyv4843[:0] - yyc4843 = true + yyv4881 := *v + yyh4881, yyl4881 := z.DecSliceHelperStart() + var yyc4881 bool + if yyl4881 == 0 { + if yyv4881 == nil { + yyv4881 = []ResourceQuotaScope{} + yyc4881 = true + } else if len(yyv4881) != 0 { + yyv4881 = yyv4881[:0] + yyc4881 = true } - } else if yyl4843 > 0 { - var yyrr4843, yyrl4843 int - var yyrt4843 bool - if yyl4843 > cap(yyv4843) { + } else if yyl4881 > 0 { + var yyrr4881, yyrl4881 int + var yyrt4881 bool + if yyl4881 > cap(yyv4881) { - yyrl4843, yyrt4843 = z.DecInferLen(yyl4843, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4843 { - if yyrl4843 <= cap(yyv4843) { - yyv4843 = yyv4843[:yyrl4843] + yyrl4881, yyrt4881 = z.DecInferLen(yyl4881, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4881 { + if yyrl4881 <= cap(yyv4881) { + yyv4881 = yyv4881[:yyrl4881] } else { - yyv4843 = make([]ResourceQuotaScope, yyrl4843) + yyv4881 = make([]ResourceQuotaScope, yyrl4881) } } else { - yyv4843 = make([]ResourceQuotaScope, yyrl4843) + yyv4881 = make([]ResourceQuotaScope, yyrl4881) } - yyc4843 = true - yyrr4843 = len(yyv4843) - } else if yyl4843 != len(yyv4843) { - yyv4843 = yyv4843[:yyl4843] - yyc4843 = true + yyc4881 = true + yyrr4881 = len(yyv4881) + } else if yyl4881 != len(yyv4881) { + yyv4881 = yyv4881[:yyl4881] + yyc4881 = true } - yyj4843 := 0 - for ; yyj4843 < yyrr4843; yyj4843++ { - yyh4843.ElemContainerState(yyj4843) + yyj4881 := 0 + for ; yyj4881 < yyrr4881; yyj4881++ { + yyh4881.ElemContainerState(yyj4881) if r.TryDecodeAsNil() { - yyv4843[yyj4843] = "" + yyv4881[yyj4881] = "" } else { - yyv4843[yyj4843] = ResourceQuotaScope(r.DecodeString()) + yyv4881[yyj4881] = ResourceQuotaScope(r.DecodeString()) } } - if yyrt4843 { - for ; yyj4843 < yyl4843; yyj4843++ { - yyv4843 = append(yyv4843, "") - yyh4843.ElemContainerState(yyj4843) + if yyrt4881 { + for ; yyj4881 < yyl4881; yyj4881++ { + yyv4881 = append(yyv4881, "") + yyh4881.ElemContainerState(yyj4881) if r.TryDecodeAsNil() { - yyv4843[yyj4843] = "" + yyv4881[yyj4881] = "" } else { - yyv4843[yyj4843] = ResourceQuotaScope(r.DecodeString()) + yyv4881[yyj4881] = ResourceQuotaScope(r.DecodeString()) } } } } else { - yyj4843 := 0 - for ; !r.CheckBreak(); yyj4843++ { + yyj4881 := 0 + for ; !r.CheckBreak(); yyj4881++ { - if yyj4843 >= len(yyv4843) { - yyv4843 = append(yyv4843, "") // var yyz4843 ResourceQuotaScope - yyc4843 = true + if yyj4881 >= len(yyv4881) { + yyv4881 = append(yyv4881, "") // var yyz4881 ResourceQuotaScope + yyc4881 = true } - yyh4843.ElemContainerState(yyj4843) - if yyj4843 < len(yyv4843) { + yyh4881.ElemContainerState(yyj4881) + if yyj4881 < len(yyv4881) { if r.TryDecodeAsNil() { - yyv4843[yyj4843] = "" + yyv4881[yyj4881] = "" } else { - yyv4843[yyj4843] = ResourceQuotaScope(r.DecodeString()) + yyv4881[yyj4881] = ResourceQuotaScope(r.DecodeString()) } } else { @@ -62362,17 +62940,17 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * } } - if yyj4843 < len(yyv4843) { - yyv4843 = yyv4843[:yyj4843] - yyc4843 = true - } else if yyj4843 == 0 && yyv4843 == nil { - yyv4843 = []ResourceQuotaScope{} - yyc4843 = true + if yyj4881 < len(yyv4881) { + yyv4881 = yyv4881[:yyj4881] + yyc4881 = true + } else if yyj4881 == 0 && yyv4881 == nil { + yyv4881 = []ResourceQuotaScope{} + yyc4881 = true } } - yyh4843.End() - if yyc4843 { - *v = yyv4843 + yyh4881.End() + if yyc4881 { + *v = yyv4881 } } @@ -62381,10 +62959,10 @@ func (x codecSelfer1234) encSliceResourceQuota(v []ResourceQuota, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4847 := range v { + for _, yyv4885 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4848 := &yyv4847 - yy4848.CodecEncodeSelf(e) + yy4886 := &yyv4885 + yy4886.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62394,83 +62972,83 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4849 := *v - yyh4849, yyl4849 := z.DecSliceHelperStart() - var yyc4849 bool - if yyl4849 == 0 { - if yyv4849 == nil { - yyv4849 = []ResourceQuota{} - yyc4849 = true - } else if len(yyv4849) != 0 { - yyv4849 = yyv4849[:0] - yyc4849 = true + yyv4887 := *v + yyh4887, yyl4887 := z.DecSliceHelperStart() + var yyc4887 bool + if yyl4887 == 0 { + if yyv4887 == nil { + yyv4887 = []ResourceQuota{} + yyc4887 = true + } else if len(yyv4887) != 0 { + yyv4887 = yyv4887[:0] + yyc4887 = true } - } else if yyl4849 > 0 { - var yyrr4849, yyrl4849 int - var yyrt4849 bool - if yyl4849 > cap(yyv4849) { + } else if yyl4887 > 0 { + var yyrr4887, yyrl4887 int + var yyrt4887 bool + if yyl4887 > cap(yyv4887) { - yyrg4849 := len(yyv4849) > 0 - yyv24849 := yyv4849 - yyrl4849, yyrt4849 = z.DecInferLen(yyl4849, z.DecBasicHandle().MaxInitLen, 304) - if yyrt4849 { - if yyrl4849 <= cap(yyv4849) { - yyv4849 = yyv4849[:yyrl4849] + yyrg4887 := len(yyv4887) > 0 + yyv24887 := yyv4887 + yyrl4887, yyrt4887 = z.DecInferLen(yyl4887, z.DecBasicHandle().MaxInitLen, 304) + if yyrt4887 { + if yyrl4887 <= cap(yyv4887) { + yyv4887 = yyv4887[:yyrl4887] } else { - yyv4849 = make([]ResourceQuota, yyrl4849) + yyv4887 = make([]ResourceQuota, yyrl4887) } } else { - yyv4849 = make([]ResourceQuota, yyrl4849) + yyv4887 = make([]ResourceQuota, yyrl4887) } - yyc4849 = true - yyrr4849 = len(yyv4849) - if yyrg4849 { - copy(yyv4849, yyv24849) + yyc4887 = true + yyrr4887 = len(yyv4887) + if yyrg4887 { + copy(yyv4887, yyv24887) } - } else if yyl4849 != len(yyv4849) { - yyv4849 = yyv4849[:yyl4849] - yyc4849 = true + } else if yyl4887 != len(yyv4887) { + yyv4887 = yyv4887[:yyl4887] + yyc4887 = true } - yyj4849 := 0 - for ; yyj4849 < yyrr4849; yyj4849++ { - yyh4849.ElemContainerState(yyj4849) + yyj4887 := 0 + for ; yyj4887 < yyrr4887; yyj4887++ { + yyh4887.ElemContainerState(yyj4887) if r.TryDecodeAsNil() { - yyv4849[yyj4849] = ResourceQuota{} + yyv4887[yyj4887] = ResourceQuota{} } else { - yyv4850 := &yyv4849[yyj4849] - yyv4850.CodecDecodeSelf(d) + yyv4888 := &yyv4887[yyj4887] + yyv4888.CodecDecodeSelf(d) } } - if yyrt4849 { - for ; yyj4849 < yyl4849; yyj4849++ { - yyv4849 = append(yyv4849, ResourceQuota{}) - yyh4849.ElemContainerState(yyj4849) + if yyrt4887 { + for ; yyj4887 < yyl4887; yyj4887++ { + yyv4887 = append(yyv4887, ResourceQuota{}) + yyh4887.ElemContainerState(yyj4887) if r.TryDecodeAsNil() { - yyv4849[yyj4849] = ResourceQuota{} + yyv4887[yyj4887] = ResourceQuota{} } else { - yyv4851 := &yyv4849[yyj4849] - yyv4851.CodecDecodeSelf(d) + yyv4889 := &yyv4887[yyj4887] + yyv4889.CodecDecodeSelf(d) } } } } else { - yyj4849 := 0 - for ; !r.CheckBreak(); yyj4849++ { + yyj4887 := 0 + for ; !r.CheckBreak(); yyj4887++ { - if yyj4849 >= len(yyv4849) { - yyv4849 = append(yyv4849, ResourceQuota{}) // var yyz4849 ResourceQuota - yyc4849 = true + if yyj4887 >= len(yyv4887) { + yyv4887 = append(yyv4887, ResourceQuota{}) // var yyz4887 ResourceQuota + yyc4887 = true } - yyh4849.ElemContainerState(yyj4849) - if yyj4849 < len(yyv4849) { + yyh4887.ElemContainerState(yyj4887) + if yyj4887 < len(yyv4887) { if r.TryDecodeAsNil() { - yyv4849[yyj4849] = ResourceQuota{} + yyv4887[yyj4887] = ResourceQuota{} } else { - yyv4852 := &yyv4849[yyj4849] - yyv4852.CodecDecodeSelf(d) + yyv4890 := &yyv4887[yyj4887] + yyv4890.CodecDecodeSelf(d) } } else { @@ -62478,17 +63056,17 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. } } - if yyj4849 < len(yyv4849) { - yyv4849 = yyv4849[:yyj4849] - yyc4849 = true - } else if yyj4849 == 0 && yyv4849 == nil { - yyv4849 = []ResourceQuota{} - yyc4849 = true + if yyj4887 < len(yyv4887) { + yyv4887 = yyv4887[:yyj4887] + yyc4887 = true + } else if yyj4887 == 0 && yyv4887 == nil { + yyv4887 = []ResourceQuota{} + yyc4887 = true } } - yyh4849.End() - if yyc4849 { - *v = yyv4849 + yyh4887.End() + if yyc4887 { + *v = yyv4887 } } @@ -62497,23 +63075,23 @@ func (x codecSelfer1234) encMapstringSliceuint8(v map[string][]uint8, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4853, yyv4853 := range v { + for yyk4891, yyv4891 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yym4854 := z.EncBinary() - _ = yym4854 + yym4892 := z.EncBinary() + _ = yym4892 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yyk4853)) + r.EncodeString(codecSelferC_UTF81234, string(yyk4891)) } z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyv4853 == nil { + if yyv4891 == nil { r.EncodeNil() } else { - yym4855 := z.EncBinary() - _ = yym4855 + yym4893 := z.EncBinary() + _ = yym4893 if false { } else { - r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4853)) + r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4891)) } } } @@ -62525,80 +63103,80 @@ func (x codecSelfer1234) decMapstringSliceuint8(v *map[string][]uint8, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4856 := *v - yyl4856 := r.ReadMapStart() - yybh4856 := z.DecBasicHandle() - if yyv4856 == nil { - yyrl4856, _ := z.DecInferLen(yyl4856, yybh4856.MaxInitLen, 40) - yyv4856 = make(map[string][]uint8, yyrl4856) - *v = yyv4856 + yyv4894 := *v + yyl4894 := r.ReadMapStart() + yybh4894 := z.DecBasicHandle() + if yyv4894 == nil { + yyrl4894, _ := z.DecInferLen(yyl4894, yybh4894.MaxInitLen, 40) + yyv4894 = make(map[string][]uint8, yyrl4894) + *v = yyv4894 } - var yymk4856 string - var yymv4856 []uint8 - var yymg4856 bool - if yybh4856.MapValueReset { - yymg4856 = true + var yymk4894 string + var yymv4894 []uint8 + var yymg4894 bool + if yybh4894.MapValueReset { + yymg4894 = true } - if yyl4856 > 0 { - for yyj4856 := 0; yyj4856 < yyl4856; yyj4856++ { + if yyl4894 > 0 { + for yyj4894 := 0; yyj4894 < yyl4894; yyj4894++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4856 = "" + yymk4894 = "" } else { - yymk4856 = string(r.DecodeString()) + yymk4894 = string(r.DecodeString()) } - if yymg4856 { - yymv4856 = yyv4856[yymk4856] + if yymg4894 { + yymv4894 = yyv4894[yymk4894] } else { - yymv4856 = nil + yymv4894 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4856 = nil + yymv4894 = nil } else { - yyv4858 := &yymv4856 - yym4859 := z.DecBinary() - _ = yym4859 + yyv4896 := &yymv4894 + yym4897 := z.DecBinary() + _ = yym4897 if false { } else { - *yyv4858 = r.DecodeBytes(*(*[]byte)(yyv4858), false, false) + *yyv4896 = r.DecodeBytes(*(*[]byte)(yyv4896), false, false) } } - if yyv4856 != nil { - yyv4856[yymk4856] = yymv4856 + if yyv4894 != nil { + yyv4894[yymk4894] = yymv4894 } } - } else if yyl4856 < 0 { - for yyj4856 := 0; !r.CheckBreak(); yyj4856++ { + } else if yyl4894 < 0 { + for yyj4894 := 0; !r.CheckBreak(); yyj4894++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4856 = "" + yymk4894 = "" } else { - yymk4856 = string(r.DecodeString()) + yymk4894 = string(r.DecodeString()) } - if yymg4856 { - yymv4856 = yyv4856[yymk4856] + if yymg4894 { + yymv4894 = yyv4894[yymk4894] } else { - yymv4856 = nil + yymv4894 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4856 = nil + yymv4894 = nil } else { - yyv4861 := &yymv4856 - yym4862 := z.DecBinary() - _ = yym4862 + yyv4899 := &yymv4894 + yym4900 := z.DecBinary() + _ = yym4900 if false { } else { - *yyv4861 = r.DecodeBytes(*(*[]byte)(yyv4861), false, false) + *yyv4899 = r.DecodeBytes(*(*[]byte)(yyv4899), false, false) } } - if yyv4856 != nil { - yyv4856[yymk4856] = yymv4856 + if yyv4894 != nil { + yyv4894[yymk4894] = yymv4894 } } } // else len==0: TODO: Should we clear map entries? @@ -62610,10 +63188,10 @@ func (x codecSelfer1234) encSliceSecret(v []Secret, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4863 := range v { + for _, yyv4901 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4864 := &yyv4863 - yy4864.CodecEncodeSelf(e) + yy4902 := &yyv4901 + yy4902.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62623,83 +63201,83 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4865 := *v - yyh4865, yyl4865 := z.DecSliceHelperStart() - var yyc4865 bool - if yyl4865 == 0 { - if yyv4865 == nil { - yyv4865 = []Secret{} - yyc4865 = true - } else if len(yyv4865) != 0 { - yyv4865 = yyv4865[:0] - yyc4865 = true + yyv4903 := *v + yyh4903, yyl4903 := z.DecSliceHelperStart() + var yyc4903 bool + if yyl4903 == 0 { + if yyv4903 == nil { + yyv4903 = []Secret{} + yyc4903 = true + } else if len(yyv4903) != 0 { + yyv4903 = yyv4903[:0] + yyc4903 = true } - } else if yyl4865 > 0 { - var yyrr4865, yyrl4865 int - var yyrt4865 bool - if yyl4865 > cap(yyv4865) { + } else if yyl4903 > 0 { + var yyrr4903, yyrl4903 int + var yyrt4903 bool + if yyl4903 > cap(yyv4903) { - yyrg4865 := len(yyv4865) > 0 - yyv24865 := yyv4865 - yyrl4865, yyrt4865 = z.DecInferLen(yyl4865, z.DecBasicHandle().MaxInitLen, 288) - if yyrt4865 { - if yyrl4865 <= cap(yyv4865) { - yyv4865 = yyv4865[:yyrl4865] + yyrg4903 := len(yyv4903) > 0 + yyv24903 := yyv4903 + yyrl4903, yyrt4903 = z.DecInferLen(yyl4903, z.DecBasicHandle().MaxInitLen, 288) + if yyrt4903 { + if yyrl4903 <= cap(yyv4903) { + yyv4903 = yyv4903[:yyrl4903] } else { - yyv4865 = make([]Secret, yyrl4865) + yyv4903 = make([]Secret, yyrl4903) } } else { - yyv4865 = make([]Secret, yyrl4865) + yyv4903 = make([]Secret, yyrl4903) } - yyc4865 = true - yyrr4865 = len(yyv4865) - if yyrg4865 { - copy(yyv4865, yyv24865) + yyc4903 = true + yyrr4903 = len(yyv4903) + if yyrg4903 { + copy(yyv4903, yyv24903) } - } else if yyl4865 != len(yyv4865) { - yyv4865 = yyv4865[:yyl4865] - yyc4865 = true + } else if yyl4903 != len(yyv4903) { + yyv4903 = yyv4903[:yyl4903] + yyc4903 = true } - yyj4865 := 0 - for ; yyj4865 < yyrr4865; yyj4865++ { - yyh4865.ElemContainerState(yyj4865) + yyj4903 := 0 + for ; yyj4903 < yyrr4903; yyj4903++ { + yyh4903.ElemContainerState(yyj4903) if r.TryDecodeAsNil() { - yyv4865[yyj4865] = Secret{} + yyv4903[yyj4903] = Secret{} } else { - yyv4866 := &yyv4865[yyj4865] - yyv4866.CodecDecodeSelf(d) + yyv4904 := &yyv4903[yyj4903] + yyv4904.CodecDecodeSelf(d) } } - if yyrt4865 { - for ; yyj4865 < yyl4865; yyj4865++ { - yyv4865 = append(yyv4865, Secret{}) - yyh4865.ElemContainerState(yyj4865) + if yyrt4903 { + for ; yyj4903 < yyl4903; yyj4903++ { + yyv4903 = append(yyv4903, Secret{}) + yyh4903.ElemContainerState(yyj4903) if r.TryDecodeAsNil() { - yyv4865[yyj4865] = Secret{} + yyv4903[yyj4903] = Secret{} } else { - yyv4867 := &yyv4865[yyj4865] - yyv4867.CodecDecodeSelf(d) + yyv4905 := &yyv4903[yyj4903] + yyv4905.CodecDecodeSelf(d) } } } } else { - yyj4865 := 0 - for ; !r.CheckBreak(); yyj4865++ { + yyj4903 := 0 + for ; !r.CheckBreak(); yyj4903++ { - if yyj4865 >= len(yyv4865) { - yyv4865 = append(yyv4865, Secret{}) // var yyz4865 Secret - yyc4865 = true + if yyj4903 >= len(yyv4903) { + yyv4903 = append(yyv4903, Secret{}) // var yyz4903 Secret + yyc4903 = true } - yyh4865.ElemContainerState(yyj4865) - if yyj4865 < len(yyv4865) { + yyh4903.ElemContainerState(yyj4903) + if yyj4903 < len(yyv4903) { if r.TryDecodeAsNil() { - yyv4865[yyj4865] = Secret{} + yyv4903[yyj4903] = Secret{} } else { - yyv4868 := &yyv4865[yyj4865] - yyv4868.CodecDecodeSelf(d) + yyv4906 := &yyv4903[yyj4903] + yyv4906.CodecDecodeSelf(d) } } else { @@ -62707,17 +63285,17 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { } } - if yyj4865 < len(yyv4865) { - yyv4865 = yyv4865[:yyj4865] - yyc4865 = true - } else if yyj4865 == 0 && yyv4865 == nil { - yyv4865 = []Secret{} - yyc4865 = true + if yyj4903 < len(yyv4903) { + yyv4903 = yyv4903[:yyj4903] + yyc4903 = true + } else if yyj4903 == 0 && yyv4903 == nil { + yyv4903 = []Secret{} + yyc4903 = true } } - yyh4865.End() - if yyc4865 { - *v = yyv4865 + yyh4903.End() + if yyc4903 { + *v = yyv4903 } } @@ -62726,10 +63304,10 @@ func (x codecSelfer1234) encSliceConfigMap(v []ConfigMap, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4869 := range v { + for _, yyv4907 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4870 := &yyv4869 - yy4870.CodecEncodeSelf(e) + yy4908 := &yyv4907 + yy4908.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62739,83 +63317,83 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4871 := *v - yyh4871, yyl4871 := z.DecSliceHelperStart() - var yyc4871 bool - if yyl4871 == 0 { - if yyv4871 == nil { - yyv4871 = []ConfigMap{} - yyc4871 = true - } else if len(yyv4871) != 0 { - yyv4871 = yyv4871[:0] - yyc4871 = true + yyv4909 := *v + yyh4909, yyl4909 := z.DecSliceHelperStart() + var yyc4909 bool + if yyl4909 == 0 { + if yyv4909 == nil { + yyv4909 = []ConfigMap{} + yyc4909 = true + } else if len(yyv4909) != 0 { + yyv4909 = yyv4909[:0] + yyc4909 = true } - } else if yyl4871 > 0 { - var yyrr4871, yyrl4871 int - var yyrt4871 bool - if yyl4871 > cap(yyv4871) { + } else if yyl4909 > 0 { + var yyrr4909, yyrl4909 int + var yyrt4909 bool + if yyl4909 > cap(yyv4909) { - yyrg4871 := len(yyv4871) > 0 - yyv24871 := yyv4871 - yyrl4871, yyrt4871 = z.DecInferLen(yyl4871, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4871 { - if yyrl4871 <= cap(yyv4871) { - yyv4871 = yyv4871[:yyrl4871] + yyrg4909 := len(yyv4909) > 0 + yyv24909 := yyv4909 + yyrl4909, yyrt4909 = z.DecInferLen(yyl4909, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4909 { + if yyrl4909 <= cap(yyv4909) { + yyv4909 = yyv4909[:yyrl4909] } else { - yyv4871 = make([]ConfigMap, yyrl4871) + yyv4909 = make([]ConfigMap, yyrl4909) } } else { - yyv4871 = make([]ConfigMap, yyrl4871) + yyv4909 = make([]ConfigMap, yyrl4909) } - yyc4871 = true - yyrr4871 = len(yyv4871) - if yyrg4871 { - copy(yyv4871, yyv24871) + yyc4909 = true + yyrr4909 = len(yyv4909) + if yyrg4909 { + copy(yyv4909, yyv24909) } - } else if yyl4871 != len(yyv4871) { - yyv4871 = yyv4871[:yyl4871] - yyc4871 = true + } else if yyl4909 != len(yyv4909) { + yyv4909 = yyv4909[:yyl4909] + yyc4909 = true } - yyj4871 := 0 - for ; yyj4871 < yyrr4871; yyj4871++ { - yyh4871.ElemContainerState(yyj4871) + yyj4909 := 0 + for ; yyj4909 < yyrr4909; yyj4909++ { + yyh4909.ElemContainerState(yyj4909) if r.TryDecodeAsNil() { - yyv4871[yyj4871] = ConfigMap{} + yyv4909[yyj4909] = ConfigMap{} } else { - yyv4872 := &yyv4871[yyj4871] - yyv4872.CodecDecodeSelf(d) + yyv4910 := &yyv4909[yyj4909] + yyv4910.CodecDecodeSelf(d) } } - if yyrt4871 { - for ; yyj4871 < yyl4871; yyj4871++ { - yyv4871 = append(yyv4871, ConfigMap{}) - yyh4871.ElemContainerState(yyj4871) + if yyrt4909 { + for ; yyj4909 < yyl4909; yyj4909++ { + yyv4909 = append(yyv4909, ConfigMap{}) + yyh4909.ElemContainerState(yyj4909) if r.TryDecodeAsNil() { - yyv4871[yyj4871] = ConfigMap{} + yyv4909[yyj4909] = ConfigMap{} } else { - yyv4873 := &yyv4871[yyj4871] - yyv4873.CodecDecodeSelf(d) + yyv4911 := &yyv4909[yyj4909] + yyv4911.CodecDecodeSelf(d) } } } } else { - yyj4871 := 0 - for ; !r.CheckBreak(); yyj4871++ { + yyj4909 := 0 + for ; !r.CheckBreak(); yyj4909++ { - if yyj4871 >= len(yyv4871) { - yyv4871 = append(yyv4871, ConfigMap{}) // var yyz4871 ConfigMap - yyc4871 = true + if yyj4909 >= len(yyv4909) { + yyv4909 = append(yyv4909, ConfigMap{}) // var yyz4909 ConfigMap + yyc4909 = true } - yyh4871.ElemContainerState(yyj4871) - if yyj4871 < len(yyv4871) { + yyh4909.ElemContainerState(yyj4909) + if yyj4909 < len(yyv4909) { if r.TryDecodeAsNil() { - yyv4871[yyj4871] = ConfigMap{} + yyv4909[yyj4909] = ConfigMap{} } else { - yyv4874 := &yyv4871[yyj4871] - yyv4874.CodecDecodeSelf(d) + yyv4912 := &yyv4909[yyj4909] + yyv4912.CodecDecodeSelf(d) } } else { @@ -62823,17 +63401,17 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) } } - if yyj4871 < len(yyv4871) { - yyv4871 = yyv4871[:yyj4871] - yyc4871 = true - } else if yyj4871 == 0 && yyv4871 == nil { - yyv4871 = []ConfigMap{} - yyc4871 = true + if yyj4909 < len(yyv4909) { + yyv4909 = yyv4909[:yyj4909] + yyc4909 = true + } else if yyj4909 == 0 && yyv4909 == nil { + yyv4909 = []ConfigMap{} + yyc4909 = true } } - yyh4871.End() - if yyc4871 { - *v = yyv4871 + yyh4909.End() + if yyc4909 { + *v = yyv4909 } } @@ -62842,10 +63420,10 @@ func (x codecSelfer1234) encSliceComponentCondition(v []ComponentCondition, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4875 := range v { + for _, yyv4913 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4876 := &yyv4875 - yy4876.CodecEncodeSelf(e) + yy4914 := &yyv4913 + yy4914.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62855,83 +63433,83 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4877 := *v - yyh4877, yyl4877 := z.DecSliceHelperStart() - var yyc4877 bool - if yyl4877 == 0 { - if yyv4877 == nil { - yyv4877 = []ComponentCondition{} - yyc4877 = true - } else if len(yyv4877) != 0 { - yyv4877 = yyv4877[:0] - yyc4877 = true + yyv4915 := *v + yyh4915, yyl4915 := z.DecSliceHelperStart() + var yyc4915 bool + if yyl4915 == 0 { + if yyv4915 == nil { + yyv4915 = []ComponentCondition{} + yyc4915 = true + } else if len(yyv4915) != 0 { + yyv4915 = yyv4915[:0] + yyc4915 = true } - } else if yyl4877 > 0 { - var yyrr4877, yyrl4877 int - var yyrt4877 bool - if yyl4877 > cap(yyv4877) { + } else if yyl4915 > 0 { + var yyrr4915, yyrl4915 int + var yyrt4915 bool + if yyl4915 > cap(yyv4915) { - yyrg4877 := len(yyv4877) > 0 - yyv24877 := yyv4877 - yyrl4877, yyrt4877 = z.DecInferLen(yyl4877, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4877 { - if yyrl4877 <= cap(yyv4877) { - yyv4877 = yyv4877[:yyrl4877] + yyrg4915 := len(yyv4915) > 0 + yyv24915 := yyv4915 + yyrl4915, yyrt4915 = z.DecInferLen(yyl4915, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4915 { + if yyrl4915 <= cap(yyv4915) { + yyv4915 = yyv4915[:yyrl4915] } else { - yyv4877 = make([]ComponentCondition, yyrl4877) + yyv4915 = make([]ComponentCondition, yyrl4915) } } else { - yyv4877 = make([]ComponentCondition, yyrl4877) + yyv4915 = make([]ComponentCondition, yyrl4915) } - yyc4877 = true - yyrr4877 = len(yyv4877) - if yyrg4877 { - copy(yyv4877, yyv24877) + yyc4915 = true + yyrr4915 = len(yyv4915) + if yyrg4915 { + copy(yyv4915, yyv24915) } - } else if yyl4877 != len(yyv4877) { - yyv4877 = yyv4877[:yyl4877] - yyc4877 = true + } else if yyl4915 != len(yyv4915) { + yyv4915 = yyv4915[:yyl4915] + yyc4915 = true } - yyj4877 := 0 - for ; yyj4877 < yyrr4877; yyj4877++ { - yyh4877.ElemContainerState(yyj4877) + yyj4915 := 0 + for ; yyj4915 < yyrr4915; yyj4915++ { + yyh4915.ElemContainerState(yyj4915) if r.TryDecodeAsNil() { - yyv4877[yyj4877] = ComponentCondition{} + yyv4915[yyj4915] = ComponentCondition{} } else { - yyv4878 := &yyv4877[yyj4877] - yyv4878.CodecDecodeSelf(d) + yyv4916 := &yyv4915[yyj4915] + yyv4916.CodecDecodeSelf(d) } } - if yyrt4877 { - for ; yyj4877 < yyl4877; yyj4877++ { - yyv4877 = append(yyv4877, ComponentCondition{}) - yyh4877.ElemContainerState(yyj4877) + if yyrt4915 { + for ; yyj4915 < yyl4915; yyj4915++ { + yyv4915 = append(yyv4915, ComponentCondition{}) + yyh4915.ElemContainerState(yyj4915) if r.TryDecodeAsNil() { - yyv4877[yyj4877] = ComponentCondition{} + yyv4915[yyj4915] = ComponentCondition{} } else { - yyv4879 := &yyv4877[yyj4877] - yyv4879.CodecDecodeSelf(d) + yyv4917 := &yyv4915[yyj4915] + yyv4917.CodecDecodeSelf(d) } } } } else { - yyj4877 := 0 - for ; !r.CheckBreak(); yyj4877++ { + yyj4915 := 0 + for ; !r.CheckBreak(); yyj4915++ { - if yyj4877 >= len(yyv4877) { - yyv4877 = append(yyv4877, ComponentCondition{}) // var yyz4877 ComponentCondition - yyc4877 = true + if yyj4915 >= len(yyv4915) { + yyv4915 = append(yyv4915, ComponentCondition{}) // var yyz4915 ComponentCondition + yyc4915 = true } - yyh4877.ElemContainerState(yyj4877) - if yyj4877 < len(yyv4877) { + yyh4915.ElemContainerState(yyj4915) + if yyj4915 < len(yyv4915) { if r.TryDecodeAsNil() { - yyv4877[yyj4877] = ComponentCondition{} + yyv4915[yyj4915] = ComponentCondition{} } else { - yyv4880 := &yyv4877[yyj4877] - yyv4880.CodecDecodeSelf(d) + yyv4918 := &yyv4915[yyj4915] + yyv4918.CodecDecodeSelf(d) } } else { @@ -62939,17 +63517,17 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * } } - if yyj4877 < len(yyv4877) { - yyv4877 = yyv4877[:yyj4877] - yyc4877 = true - } else if yyj4877 == 0 && yyv4877 == nil { - yyv4877 = []ComponentCondition{} - yyc4877 = true + if yyj4915 < len(yyv4915) { + yyv4915 = yyv4915[:yyj4915] + yyc4915 = true + } else if yyj4915 == 0 && yyv4915 == nil { + yyv4915 = []ComponentCondition{} + yyc4915 = true } } - yyh4877.End() - if yyc4877 { - *v = yyv4877 + yyh4915.End() + if yyc4915 { + *v = yyv4915 } } @@ -62958,10 +63536,10 @@ func (x codecSelfer1234) encSliceComponentStatus(v []ComponentStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4881 := range v { + for _, yyv4919 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4882 := &yyv4881 - yy4882.CodecEncodeSelf(e) + yy4920 := &yyv4919 + yy4920.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62971,83 +63549,83 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4883 := *v - yyh4883, yyl4883 := z.DecSliceHelperStart() - var yyc4883 bool - if yyl4883 == 0 { - if yyv4883 == nil { - yyv4883 = []ComponentStatus{} - yyc4883 = true - } else if len(yyv4883) != 0 { - yyv4883 = yyv4883[:0] - yyc4883 = true + yyv4921 := *v + yyh4921, yyl4921 := z.DecSliceHelperStart() + var yyc4921 bool + if yyl4921 == 0 { + if yyv4921 == nil { + yyv4921 = []ComponentStatus{} + yyc4921 = true + } else if len(yyv4921) != 0 { + yyv4921 = yyv4921[:0] + yyc4921 = true } - } else if yyl4883 > 0 { - var yyrr4883, yyrl4883 int - var yyrt4883 bool - if yyl4883 > cap(yyv4883) { + } else if yyl4921 > 0 { + var yyrr4921, yyrl4921 int + var yyrt4921 bool + if yyl4921 > cap(yyv4921) { - yyrg4883 := len(yyv4883) > 0 - yyv24883 := yyv4883 - yyrl4883, yyrt4883 = z.DecInferLen(yyl4883, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4883 { - if yyrl4883 <= cap(yyv4883) { - yyv4883 = yyv4883[:yyrl4883] + yyrg4921 := len(yyv4921) > 0 + yyv24921 := yyv4921 + yyrl4921, yyrt4921 = z.DecInferLen(yyl4921, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4921 { + if yyrl4921 <= cap(yyv4921) { + yyv4921 = yyv4921[:yyrl4921] } else { - yyv4883 = make([]ComponentStatus, yyrl4883) + yyv4921 = make([]ComponentStatus, yyrl4921) } } else { - yyv4883 = make([]ComponentStatus, yyrl4883) + yyv4921 = make([]ComponentStatus, yyrl4921) } - yyc4883 = true - yyrr4883 = len(yyv4883) - if yyrg4883 { - copy(yyv4883, yyv24883) + yyc4921 = true + yyrr4921 = len(yyv4921) + if yyrg4921 { + copy(yyv4921, yyv24921) } - } else if yyl4883 != len(yyv4883) { - yyv4883 = yyv4883[:yyl4883] - yyc4883 = true + } else if yyl4921 != len(yyv4921) { + yyv4921 = yyv4921[:yyl4921] + yyc4921 = true } - yyj4883 := 0 - for ; yyj4883 < yyrr4883; yyj4883++ { - yyh4883.ElemContainerState(yyj4883) + yyj4921 := 0 + for ; yyj4921 < yyrr4921; yyj4921++ { + yyh4921.ElemContainerState(yyj4921) if r.TryDecodeAsNil() { - yyv4883[yyj4883] = ComponentStatus{} + yyv4921[yyj4921] = ComponentStatus{} } else { - yyv4884 := &yyv4883[yyj4883] - yyv4884.CodecDecodeSelf(d) + yyv4922 := &yyv4921[yyj4921] + yyv4922.CodecDecodeSelf(d) } } - if yyrt4883 { - for ; yyj4883 < yyl4883; yyj4883++ { - yyv4883 = append(yyv4883, ComponentStatus{}) - yyh4883.ElemContainerState(yyj4883) + if yyrt4921 { + for ; yyj4921 < yyl4921; yyj4921++ { + yyv4921 = append(yyv4921, ComponentStatus{}) + yyh4921.ElemContainerState(yyj4921) if r.TryDecodeAsNil() { - yyv4883[yyj4883] = ComponentStatus{} + yyv4921[yyj4921] = ComponentStatus{} } else { - yyv4885 := &yyv4883[yyj4883] - yyv4885.CodecDecodeSelf(d) + yyv4923 := &yyv4921[yyj4921] + yyv4923.CodecDecodeSelf(d) } } } } else { - yyj4883 := 0 - for ; !r.CheckBreak(); yyj4883++ { + yyj4921 := 0 + for ; !r.CheckBreak(); yyj4921++ { - if yyj4883 >= len(yyv4883) { - yyv4883 = append(yyv4883, ComponentStatus{}) // var yyz4883 ComponentStatus - yyc4883 = true + if yyj4921 >= len(yyv4921) { + yyv4921 = append(yyv4921, ComponentStatus{}) // var yyz4921 ComponentStatus + yyc4921 = true } - yyh4883.ElemContainerState(yyj4883) - if yyj4883 < len(yyv4883) { + yyh4921.ElemContainerState(yyj4921) + if yyj4921 < len(yyv4921) { if r.TryDecodeAsNil() { - yyv4883[yyj4883] = ComponentStatus{} + yyv4921[yyj4921] = ComponentStatus{} } else { - yyv4886 := &yyv4883[yyj4883] - yyv4886.CodecDecodeSelf(d) + yyv4924 := &yyv4921[yyj4921] + yyv4924.CodecDecodeSelf(d) } } else { @@ -63055,17 +63633,17 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 } } - if yyj4883 < len(yyv4883) { - yyv4883 = yyv4883[:yyj4883] - yyc4883 = true - } else if yyj4883 == 0 && yyv4883 == nil { - yyv4883 = []ComponentStatus{} - yyc4883 = true + if yyj4921 < len(yyv4921) { + yyv4921 = yyv4921[:yyj4921] + yyc4921 = true + } else if yyj4921 == 0 && yyv4921 == nil { + yyv4921 = []ComponentStatus{} + yyc4921 = true } } - yyh4883.End() - if yyc4883 { - *v = yyv4883 + yyh4921.End() + if yyc4921 { + *v = yyv4921 } } @@ -63074,10 +63652,10 @@ func (x codecSelfer1234) encSliceDownwardAPIVolumeFile(v []DownwardAPIVolumeFile z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4887 := range v { + for _, yyv4925 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4888 := &yyv4887 - yy4888.CodecEncodeSelf(e) + yy4926 := &yyv4925 + yy4926.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -63087,83 +63665,83 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4889 := *v - yyh4889, yyl4889 := z.DecSliceHelperStart() - var yyc4889 bool - if yyl4889 == 0 { - if yyv4889 == nil { - yyv4889 = []DownwardAPIVolumeFile{} - yyc4889 = true - } else if len(yyv4889) != 0 { - yyv4889 = yyv4889[:0] - yyc4889 = true + yyv4927 := *v + yyh4927, yyl4927 := z.DecSliceHelperStart() + var yyc4927 bool + if yyl4927 == 0 { + if yyv4927 == nil { + yyv4927 = []DownwardAPIVolumeFile{} + yyc4927 = true + } else if len(yyv4927) != 0 { + yyv4927 = yyv4927[:0] + yyc4927 = true } - } else if yyl4889 > 0 { - var yyrr4889, yyrl4889 int - var yyrt4889 bool - if yyl4889 > cap(yyv4889) { + } else if yyl4927 > 0 { + var yyrr4927, yyrl4927 int + var yyrt4927 bool + if yyl4927 > cap(yyv4927) { - yyrg4889 := len(yyv4889) > 0 - yyv24889 := yyv4889 - yyrl4889, yyrt4889 = z.DecInferLen(yyl4889, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4889 { - if yyrl4889 <= cap(yyv4889) { - yyv4889 = yyv4889[:yyrl4889] + yyrg4927 := len(yyv4927) > 0 + yyv24927 := yyv4927 + yyrl4927, yyrt4927 = z.DecInferLen(yyl4927, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4927 { + if yyrl4927 <= cap(yyv4927) { + yyv4927 = yyv4927[:yyrl4927] } else { - yyv4889 = make([]DownwardAPIVolumeFile, yyrl4889) + yyv4927 = make([]DownwardAPIVolumeFile, yyrl4927) } } else { - yyv4889 = make([]DownwardAPIVolumeFile, yyrl4889) + yyv4927 = make([]DownwardAPIVolumeFile, yyrl4927) } - yyc4889 = true - yyrr4889 = len(yyv4889) - if yyrg4889 { - copy(yyv4889, yyv24889) + yyc4927 = true + yyrr4927 = len(yyv4927) + if yyrg4927 { + copy(yyv4927, yyv24927) } - } else if yyl4889 != len(yyv4889) { - yyv4889 = yyv4889[:yyl4889] - yyc4889 = true + } else if yyl4927 != len(yyv4927) { + yyv4927 = yyv4927[:yyl4927] + yyc4927 = true } - yyj4889 := 0 - for ; yyj4889 < yyrr4889; yyj4889++ { - yyh4889.ElemContainerState(yyj4889) + yyj4927 := 0 + for ; yyj4927 < yyrr4927; yyj4927++ { + yyh4927.ElemContainerState(yyj4927) if r.TryDecodeAsNil() { - yyv4889[yyj4889] = DownwardAPIVolumeFile{} + yyv4927[yyj4927] = DownwardAPIVolumeFile{} } else { - yyv4890 := &yyv4889[yyj4889] - yyv4890.CodecDecodeSelf(d) + yyv4928 := &yyv4927[yyj4927] + yyv4928.CodecDecodeSelf(d) } } - if yyrt4889 { - for ; yyj4889 < yyl4889; yyj4889++ { - yyv4889 = append(yyv4889, DownwardAPIVolumeFile{}) - yyh4889.ElemContainerState(yyj4889) + if yyrt4927 { + for ; yyj4927 < yyl4927; yyj4927++ { + yyv4927 = append(yyv4927, DownwardAPIVolumeFile{}) + yyh4927.ElemContainerState(yyj4927) if r.TryDecodeAsNil() { - yyv4889[yyj4889] = DownwardAPIVolumeFile{} + yyv4927[yyj4927] = DownwardAPIVolumeFile{} } else { - yyv4891 := &yyv4889[yyj4889] - yyv4891.CodecDecodeSelf(d) + yyv4929 := &yyv4927[yyj4927] + yyv4929.CodecDecodeSelf(d) } } } } else { - yyj4889 := 0 - for ; !r.CheckBreak(); yyj4889++ { + yyj4927 := 0 + for ; !r.CheckBreak(); yyj4927++ { - if yyj4889 >= len(yyv4889) { - yyv4889 = append(yyv4889, DownwardAPIVolumeFile{}) // var yyz4889 DownwardAPIVolumeFile - yyc4889 = true + if yyj4927 >= len(yyv4927) { + yyv4927 = append(yyv4927, DownwardAPIVolumeFile{}) // var yyz4927 DownwardAPIVolumeFile + yyc4927 = true } - yyh4889.ElemContainerState(yyj4889) - if yyj4889 < len(yyv4889) { + yyh4927.ElemContainerState(yyj4927) + if yyj4927 < len(yyv4927) { if r.TryDecodeAsNil() { - yyv4889[yyj4889] = DownwardAPIVolumeFile{} + yyv4927[yyj4927] = DownwardAPIVolumeFile{} } else { - yyv4892 := &yyv4889[yyj4889] - yyv4892.CodecDecodeSelf(d) + yyv4930 := &yyv4927[yyj4927] + yyv4930.CodecDecodeSelf(d) } } else { @@ -63171,16 +63749,16 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil } } - if yyj4889 < len(yyv4889) { - yyv4889 = yyv4889[:yyj4889] - yyc4889 = true - } else if yyj4889 == 0 && yyv4889 == nil { - yyv4889 = []DownwardAPIVolumeFile{} - yyc4889 = true + if yyj4927 < len(yyv4927) { + yyv4927 = yyv4927[:yyj4927] + yyc4927 = true + } else if yyj4927 == 0 && yyv4927 == nil { + yyv4927 = []DownwardAPIVolumeFile{} + yyc4927 = true } } - yyh4889.End() - if yyc4889 { - *v = yyv4889 + yyh4927.End() + if yyc4927 { + *v = yyv4927 } } diff --git a/pkg/api/v1/types_swagger_doc_generated.go b/pkg/api/v1/types_swagger_doc_generated.go index d7dbcea4006..c15d1992ca9 100644 --- a/pkg/api/v1/types_swagger_doc_generated.go +++ b/pkg/api/v1/types_swagger_doc_generated.go @@ -180,6 +180,14 @@ func (ConfigMap) SwaggerDoc() map[string]string { return map_ConfigMap } +var map_ConfigMapEnvSource = map[string]string{ + "": "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.", +} + +func (ConfigMapEnvSource) SwaggerDoc() map[string]string { + return map_ConfigMapEnvSource +} + var map_ConfigMapKeySelector = map[string]string{ "": "Selects a key from a ConfigMap.", "key": "The key to select.", @@ -217,6 +225,7 @@ var map_Container = map[string]string{ "args": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/containers#containers-and-commands", "workingDir": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.", "ports": "List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Cannot be updated.", + "envFrom": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. An invalid key will prevent the container from starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", "env": "List of environment variables to set in the container. Cannot be updated.", "resources": "Compute Resources required by this container. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#resources", "volumeMounts": "Pod volumes to mount into the container's filesystem. Cannot be updated.", @@ -424,6 +433,16 @@ func (EndpointsList) SwaggerDoc() map[string]string { return map_EndpointsList } +var map_EnvFromSource = map[string]string{ + "": "EnvFromSource represents the source of a set of ConfigMaps", + "prefix": "An optional identifer to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.", + "configMapRef": "The ConfigMap to select from", +} + +func (EnvFromSource) SwaggerDoc() map[string]string { + return map_EnvFromSource +} + var map_EnvVar = map[string]string{ "": "EnvVar represents an environment variable present in a Container.", "name": "Name of the environment variable. Must be a C_IDENTIFIER.", diff --git a/pkg/api/v1/zz_generated.conversion.go b/pkg/api/v1/zz_generated.conversion.go index f2c057fd610..b7dc9d14761 100644 --- a/pkg/api/v1/zz_generated.conversion.go +++ b/pkg/api/v1/zz_generated.conversion.go @@ -65,6 +65,8 @@ func RegisterConversions(scheme *runtime.Scheme) error { Convert_api_ComponentStatusList_To_v1_ComponentStatusList, Convert_v1_ConfigMap_To_api_ConfigMap, Convert_api_ConfigMap_To_v1_ConfigMap, + Convert_v1_ConfigMapEnvSource_To_api_ConfigMapEnvSource, + Convert_api_ConfigMapEnvSource_To_v1_ConfigMapEnvSource, Convert_v1_ConfigMapKeySelector_To_api_ConfigMapKeySelector, Convert_api_ConfigMapKeySelector_To_v1_ConfigMapKeySelector, Convert_v1_ConfigMapList_To_api_ConfigMapList, @@ -107,6 +109,8 @@ func RegisterConversions(scheme *runtime.Scheme) error { Convert_api_Endpoints_To_v1_Endpoints, Convert_v1_EndpointsList_To_api_EndpointsList, Convert_api_EndpointsList_To_v1_EndpointsList, + Convert_v1_EnvFromSource_To_api_EnvFromSource, + Convert_api_EnvFromSource_To_v1_EnvFromSource, Convert_v1_EnvVar_To_api_EnvVar, Convert_api_EnvVar_To_v1_EnvVar, Convert_v1_EnvVarSource_To_api_EnvVarSource, @@ -674,6 +678,28 @@ func Convert_api_ConfigMap_To_v1_ConfigMap(in *api.ConfigMap, out *ConfigMap, s return autoConvert_api_ConfigMap_To_v1_ConfigMap(in, out, s) } +func autoConvert_v1_ConfigMapEnvSource_To_api_ConfigMapEnvSource(in *ConfigMapEnvSource, out *api.ConfigMapEnvSource, s conversion.Scope) error { + if err := Convert_v1_LocalObjectReference_To_api_LocalObjectReference(&in.LocalObjectReference, &out.LocalObjectReference, s); err != nil { + return err + } + return nil +} + +func Convert_v1_ConfigMapEnvSource_To_api_ConfigMapEnvSource(in *ConfigMapEnvSource, out *api.ConfigMapEnvSource, s conversion.Scope) error { + return autoConvert_v1_ConfigMapEnvSource_To_api_ConfigMapEnvSource(in, out, s) +} + +func autoConvert_api_ConfigMapEnvSource_To_v1_ConfigMapEnvSource(in *api.ConfigMapEnvSource, out *ConfigMapEnvSource, s conversion.Scope) error { + if err := Convert_api_LocalObjectReference_To_v1_LocalObjectReference(&in.LocalObjectReference, &out.LocalObjectReference, s); err != nil { + return err + } + return nil +} + +func Convert_api_ConfigMapEnvSource_To_v1_ConfigMapEnvSource(in *api.ConfigMapEnvSource, out *ConfigMapEnvSource, s conversion.Scope) error { + return autoConvert_api_ConfigMapEnvSource_To_v1_ConfigMapEnvSource(in, out, s) +} + func autoConvert_v1_ConfigMapKeySelector_To_api_ConfigMapKeySelector(in *ConfigMapKeySelector, out *api.ConfigMapKeySelector, s conversion.Scope) error { if err := Convert_v1_LocalObjectReference_To_api_LocalObjectReference(&in.LocalObjectReference, &out.LocalObjectReference, s); err != nil { return err @@ -751,6 +777,7 @@ func autoConvert_v1_Container_To_api_Container(in *Container, out *api.Container out.Args = *(*[]string)(unsafe.Pointer(&in.Args)) out.WorkingDir = in.WorkingDir out.Ports = *(*[]api.ContainerPort)(unsafe.Pointer(&in.Ports)) + out.EnvFrom = *(*[]api.EnvFromSource)(unsafe.Pointer(&in.EnvFrom)) out.Env = *(*[]api.EnvVar)(unsafe.Pointer(&in.Env)) if err := Convert_v1_ResourceRequirements_To_api_ResourceRequirements(&in.Resources, &out.Resources, s); err != nil { return err @@ -779,6 +806,7 @@ func autoConvert_api_Container_To_v1_Container(in *api.Container, out *Container out.Args = *(*[]string)(unsafe.Pointer(&in.Args)) out.WorkingDir = in.WorkingDir out.Ports = *(*[]ContainerPort)(unsafe.Pointer(&in.Ports)) + out.EnvFrom = *(*[]EnvFromSource)(unsafe.Pointer(&in.EnvFrom)) out.Env = *(*[]EnvVar)(unsafe.Pointer(&in.Env)) if err := Convert_api_ResourceRequirements_To_v1_ResourceRequirements(&in.Resources, &out.Resources, s); err != nil { return err @@ -1190,6 +1218,26 @@ func Convert_api_EndpointsList_To_v1_EndpointsList(in *api.EndpointsList, out *E return autoConvert_api_EndpointsList_To_v1_EndpointsList(in, out, s) } +func autoConvert_v1_EnvFromSource_To_api_EnvFromSource(in *EnvFromSource, out *api.EnvFromSource, s conversion.Scope) error { + out.Prefix = in.Prefix + out.ConfigMapRef = (*api.ConfigMapEnvSource)(unsafe.Pointer(in.ConfigMapRef)) + return nil +} + +func Convert_v1_EnvFromSource_To_api_EnvFromSource(in *EnvFromSource, out *api.EnvFromSource, s conversion.Scope) error { + return autoConvert_v1_EnvFromSource_To_api_EnvFromSource(in, out, s) +} + +func autoConvert_api_EnvFromSource_To_v1_EnvFromSource(in *api.EnvFromSource, out *EnvFromSource, s conversion.Scope) error { + out.Prefix = in.Prefix + out.ConfigMapRef = (*ConfigMapEnvSource)(unsafe.Pointer(in.ConfigMapRef)) + return nil +} + +func Convert_api_EnvFromSource_To_v1_EnvFromSource(in *api.EnvFromSource, out *EnvFromSource, s conversion.Scope) error { + return autoConvert_api_EnvFromSource_To_v1_EnvFromSource(in, out, s) +} + func autoConvert_v1_EnvVar_To_api_EnvVar(in *EnvVar, out *api.EnvVar, s conversion.Scope) error { out.Name = in.Name out.Value = in.Value diff --git a/pkg/api/v1/zz_generated.deepcopy.go b/pkg/api/v1/zz_generated.deepcopy.go index 491b9c2b419..8525468f091 100644 --- a/pkg/api/v1/zz_generated.deepcopy.go +++ b/pkg/api/v1/zz_generated.deepcopy.go @@ -50,6 +50,7 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error { conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_ComponentStatus, InType: reflect.TypeOf(&ComponentStatus{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_ComponentStatusList, InType: reflect.TypeOf(&ComponentStatusList{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_ConfigMap, InType: reflect.TypeOf(&ConfigMap{})}, + conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_ConfigMapEnvSource, InType: reflect.TypeOf(&ConfigMapEnvSource{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_ConfigMapKeySelector, InType: reflect.TypeOf(&ConfigMapKeySelector{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_ConfigMapList, InType: reflect.TypeOf(&ConfigMapList{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_ConfigMapVolumeSource, InType: reflect.TypeOf(&ConfigMapVolumeSource{})}, @@ -71,6 +72,7 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error { conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_EndpointSubset, InType: reflect.TypeOf(&EndpointSubset{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_Endpoints, InType: reflect.TypeOf(&Endpoints{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_EndpointsList, InType: reflect.TypeOf(&EndpointsList{})}, + conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_EnvFromSource, InType: reflect.TypeOf(&EnvFromSource{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_EnvVar, InType: reflect.TypeOf(&EnvVar{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_EnvVarSource, InType: reflect.TypeOf(&EnvVarSource{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_v1_Event, InType: reflect.TypeOf(&Event{})}, @@ -464,6 +466,15 @@ func DeepCopy_v1_ConfigMap(in interface{}, out interface{}, c *conversion.Cloner } } +func DeepCopy_v1_ConfigMapEnvSource(in interface{}, out interface{}, c *conversion.Cloner) error { + { + in := in.(*ConfigMapEnvSource) + out := out.(*ConfigMapEnvSource) + out.LocalObjectReference = in.LocalObjectReference + return nil + } +} + func DeepCopy_v1_ConfigMapKeySelector(in interface{}, out interface{}, c *conversion.Cloner) error { { in := in.(*ConfigMapKeySelector) @@ -552,6 +563,17 @@ func DeepCopy_v1_Container(in interface{}, out interface{}, c *conversion.Cloner } else { out.Ports = nil } + if in.EnvFrom != nil { + in, out := &in.EnvFrom, &out.EnvFrom + *out = make([]EnvFromSource, len(*in)) + for i := range *in { + if err := DeepCopy_v1_EnvFromSource(&(*in)[i], &(*out)[i], c); err != nil { + return err + } + } + } else { + out.EnvFrom = nil + } if in.Env != nil { in, out := &in.Env, &out.Env *out = make([]EnvVar, len(*in)) @@ -962,6 +984,22 @@ func DeepCopy_v1_EndpointsList(in interface{}, out interface{}, c *conversion.Cl } } +func DeepCopy_v1_EnvFromSource(in interface{}, out interface{}, c *conversion.Cloner) error { + { + in := in.(*EnvFromSource) + out := out.(*EnvFromSource) + out.Prefix = in.Prefix + if in.ConfigMapRef != nil { + in, out := &in.ConfigMapRef, &out.ConfigMapRef + *out = new(ConfigMapEnvSource) + **out = **in + } else { + out.ConfigMapRef = nil + } + return nil + } +} + func DeepCopy_v1_EnvVar(in interface{}, out interface{}, c *conversion.Cloner) error { { in := in.(*EnvVar) diff --git a/pkg/api/zz_generated.deepcopy.go b/pkg/api/zz_generated.deepcopy.go index 4fefb8c7d80..7743f30f4a1 100644 --- a/pkg/api/zz_generated.deepcopy.go +++ b/pkg/api/zz_generated.deepcopy.go @@ -52,6 +52,7 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error { conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_ComponentStatus, InType: reflect.TypeOf(&ComponentStatus{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_ComponentStatusList, InType: reflect.TypeOf(&ComponentStatusList{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_ConfigMap, InType: reflect.TypeOf(&ConfigMap{})}, + conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_ConfigMapEnvSource, InType: reflect.TypeOf(&ConfigMapEnvSource{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_ConfigMapKeySelector, InType: reflect.TypeOf(&ConfigMapKeySelector{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_ConfigMapList, InType: reflect.TypeOf(&ConfigMapList{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_ConfigMapVolumeSource, InType: reflect.TypeOf(&ConfigMapVolumeSource{})}, @@ -74,6 +75,7 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error { conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_EndpointSubset, InType: reflect.TypeOf(&EndpointSubset{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_Endpoints, InType: reflect.TypeOf(&Endpoints{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_EndpointsList, InType: reflect.TypeOf(&EndpointsList{})}, + conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_EnvFromSource, InType: reflect.TypeOf(&EnvFromSource{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_EnvVar, InType: reflect.TypeOf(&EnvVar{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_EnvVarSource, InType: reflect.TypeOf(&EnvVarSource{})}, conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_Event, InType: reflect.TypeOf(&Event{})}, @@ -467,6 +469,15 @@ func DeepCopy_api_ConfigMap(in interface{}, out interface{}, c *conversion.Clone } } +func DeepCopy_api_ConfigMapEnvSource(in interface{}, out interface{}, c *conversion.Cloner) error { + { + in := in.(*ConfigMapEnvSource) + out := out.(*ConfigMapEnvSource) + out.LocalObjectReference = in.LocalObjectReference + return nil + } +} + func DeepCopy_api_ConfigMapKeySelector(in interface{}, out interface{}, c *conversion.Cloner) error { { in := in.(*ConfigMapKeySelector) @@ -555,6 +566,17 @@ func DeepCopy_api_Container(in interface{}, out interface{}, c *conversion.Clone } else { out.Ports = nil } + if in.EnvFrom != nil { + in, out := &in.EnvFrom, &out.EnvFrom + *out = make([]EnvFromSource, len(*in)) + for i := range *in { + if err := DeepCopy_api_EnvFromSource(&(*in)[i], &(*out)[i], c); err != nil { + return err + } + } + } else { + out.EnvFrom = nil + } if in.Env != nil { in, out := &in.Env, &out.Env *out = make([]EnvVar, len(*in)) @@ -988,6 +1010,22 @@ func DeepCopy_api_EndpointsList(in interface{}, out interface{}, c *conversion.C } } +func DeepCopy_api_EnvFromSource(in interface{}, out interface{}, c *conversion.Cloner) error { + { + in := in.(*EnvFromSource) + out := out.(*EnvFromSource) + out.Prefix = in.Prefix + if in.ConfigMapRef != nil { + in, out := &in.ConfigMapRef, &out.ConfigMapRef + *out = new(ConfigMapEnvSource) + **out = **in + } else { + out.ConfigMapRef = nil + } + return nil + } +} + func DeepCopy_api_EnvVar(in interface{}, out interface{}, c *conversion.Cloner) error { { in := in.(*EnvVar) diff --git a/pkg/generated/openapi/zz_generated.openapi.go b/pkg/generated/openapi/zz_generated.openapi.go index 53c8be43bfa..8d24b273a48 100644 --- a/pkg/generated/openapi/zz_generated.openapi.go +++ b/pkg/generated/openapi/zz_generated.openapi.go @@ -797,6 +797,15 @@ var OpenAPIDefinitions *common.OpenAPIDefinitions = &common.OpenAPIDefinitions{ Dependencies: []string{ "v1.ObjectMeta"}, }, + "v1.ConfigMapEnvSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.", + Properties: map[string]spec.Schema{}, + }, + }, + Dependencies: []string{}, + }, "v1.ConfigMapKeySelector": { Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -944,6 +953,19 @@ var OpenAPIDefinitions *common.OpenAPIDefinitions = &common.OpenAPIDefinitions{ }, }, }, + "envFrom": { + SchemaProps: spec.SchemaProps{ + Description: "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. An invalid key will prevent the container from starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: spec.MustCreateRef("#/definitions/v1.EnvFromSource"), + }, + }, + }, + }, + }, "env": { SchemaProps: spec.SchemaProps{ Description: "List of environment variables to set in the container. Cannot be updated.", @@ -1040,7 +1062,7 @@ var OpenAPIDefinitions *common.OpenAPIDefinitions = &common.OpenAPIDefinitions{ }, }, Dependencies: []string{ - "v1.ContainerPort", "v1.EnvVar", "v1.Lifecycle", "v1.Probe", "v1.ResourceRequirements", "v1.SecurityContext", "v1.VolumeMount"}, + "v1.ContainerPort", "v1.EnvFromSource", "v1.EnvVar", "v1.Lifecycle", "v1.Probe", "v1.ResourceRequirements", "v1.SecurityContext", "v1.VolumeMount"}, }, "v1.ContainerImage": { Schema: spec.Schema{ @@ -1682,6 +1704,30 @@ var OpenAPIDefinitions *common.OpenAPIDefinitions = &common.OpenAPIDefinitions{ Dependencies: []string{ "v1.Endpoints", "v1.ListMeta"}, }, + "v1.EnvFromSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "EnvFromSource represents the source of a set of ConfigMaps", + Properties: map[string]spec.Schema{ + "prefix": { + SchemaProps: spec.SchemaProps{ + Description: "An optional identifer to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.", + Type: []string{"string"}, + Format: "", + }, + }, + "configMapRef": { + SchemaProps: spec.SchemaProps{ + Description: "The ConfigMap to select from", + Ref: spec.MustCreateRef("#/definitions/v1.ConfigMapEnvSource"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "v1.ConfigMapEnvSource"}, + }, "v1.EnvVar": { Schema: spec.Schema{ SchemaProps: spec.SchemaProps{