diff --git a/pkg/features/kube_features.go b/pkg/features/kube_features.go index 57c32b278f7..db394d985a3 100644 --- a/pkg/features/kube_features.go +++ b/pkg/features/kube_features.go @@ -805,6 +805,13 @@ const ( // Allows kube-proxy to run in Overlay mode for Windows WinOverlay featuregate.Feature = "WinOverlay" + // owner: @marosset + // kep: https://kep.k8s.io/3503 + // alpha: v1.26 + // + // Enables support for joining Windows containers to a hosts' network namespace. + WindowsHostNetwork featuregate.Feature = "WindowsHostNetwork" + // owner: @marosset // alpha: v1.22 // beta: v1.23 @@ -1051,6 +1058,8 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS WinOverlay: {Default: true, PreRelease: featuregate.Beta}, + WindowsHostNetwork: {Default: true, PreRelease: featuregate.Alpha}, + WindowsHostProcessContainers: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // remove in 1.28 NodeInclusionPolicyInPodTopologySpread: {Default: false, PreRelease: featuregate.Alpha}, diff --git a/pkg/kubelet/kuberuntime/kuberuntime_sandbox.go b/pkg/kubelet/kuberuntime/kuberuntime_sandbox.go index 5e312a63563..b821c1d6080 100644 --- a/pkg/kubelet/kuberuntime/kuberuntime_sandbox.go +++ b/pkg/kubelet/kuberuntime/kuberuntime_sandbox.go @@ -25,8 +25,10 @@ import ( v1 "k8s.io/api/core/v1" kubetypes "k8s.io/apimachinery/pkg/types" + utilfeature "k8s.io/apiserver/pkg/util/feature" runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1" "k8s.io/klog/v2" + "k8s.io/kubernetes/pkg/features" kubecontainer "k8s.io/kubernetes/pkg/kubelet/container" runtimeutil "k8s.io/kubernetes/pkg/kubelet/kuberuntime/util" "k8s.io/kubernetes/pkg/kubelet/types" @@ -232,6 +234,15 @@ func (m *kubeGenericRuntimeManager) generatePodSandboxWindowsConfig(pod *v1.Pod) SecurityContext: &runtimeapi.WindowsSandboxSecurityContext{}, } + if utilfeature.DefaultFeatureGate.Enabled(features.WindowsHostNetwork) { + wc.SecurityContext.NamespaceOptions = &runtimeapi.WindowsNamespaceOption{} + if kubecontainer.IsHostNetworkPod(pod) { + wc.SecurityContext.NamespaceOptions.Network = runtimeapi.NamespaceMode_NODE + } else { + wc.SecurityContext.NamespaceOptions.Network = runtimeapi.NamespaceMode_POD + } + } + // If all of the containers in a pod are HostProcess containers, set the pod's HostProcess field // explicitly because the container runtime requires this information at sandbox creation time. if kubecontainer.HasWindowsHostProcessContainer(pod) { diff --git a/pkg/kubelet/kuberuntime/kuberuntime_sandbox_test.go b/pkg/kubelet/kuberuntime/kuberuntime_sandbox_test.go index d3b47063ebd..931733f2b08 100644 --- a/pkg/kubelet/kuberuntime/kuberuntime_sandbox_test.go +++ b/pkg/kubelet/kuberuntime/kuberuntime_sandbox_test.go @@ -27,7 +27,10 @@ import ( "github.com/stretchr/testify/require" v1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + utilfeature "k8s.io/apiserver/pkg/util/feature" + featuregatetesting "k8s.io/component-base/featuregate/testing" runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1" + "k8s.io/kubernetes/pkg/features" containertest "k8s.io/kubernetes/pkg/kubelet/container/testing" "k8s.io/kubernetes/pkg/kubelet/runtimeclass" rctest "k8s.io/kubernetes/pkg/kubelet/runtimeclass/testing" @@ -171,7 +174,7 @@ func newSeccompPod(podFieldProfile, containerFieldProfile *v1.SeccompProfile, po return pod } -func TestGeneratePodSandboxWindowsConfig(t *testing.T) { +func TestGeneratePodSandboxWindowsConfig_HostProcess(t *testing.T) { _, _, m, err := createTestRuntimeManager() require.NoError(t, err) @@ -339,13 +342,93 @@ func TestGeneratePodSandboxWindowsConfig(t *testing.T) { for _, testCase := range testCases { t.Run(testCase.name, func(t *testing.T) { + defer featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.WindowsHostNetwork, false)() pod := &v1.Pod{} pod.Spec = *testCase.podSpec wc, err := m.generatePodSandboxWindowsConfig(pod) - assert.Equal(t, wc, testCase.expectedWindowsConfig) - assert.Equal(t, err, testCase.expectedError) + assert.Equal(t, testCase.expectedWindowsConfig, wc) + assert.Equal(t, testCase.expectedError, err) + }) + } +} + +func TestGeneratePodSandboxWindowsConfig_HostNetwork(t *testing.T) { + _, _, m, err := createTestRuntimeManager() + require.NoError(t, err) + + const containerName = "container" + + testCases := []struct { + name string + hostNetworkFeatureEnabled bool + podSpec *v1.PodSpec + expectedWindowsConfig *runtimeapi.WindowsPodSandboxConfig + }{ + { + name: "feature disabled, hostNetwork=false", + hostNetworkFeatureEnabled: false, + podSpec: &v1.PodSpec{ + HostNetwork: false, + Containers: []v1.Container{{Name: containerName}}, + }, + expectedWindowsConfig: &runtimeapi.WindowsPodSandboxConfig{ + SecurityContext: &runtimeapi.WindowsSandboxSecurityContext{}, + }, + }, + { + name: "feature disabled, hostNetwork=true", + hostNetworkFeatureEnabled: false, + podSpec: &v1.PodSpec{ + HostNetwork: true, + Containers: []v1.Container{{Name: containerName}}, + }, + expectedWindowsConfig: &runtimeapi.WindowsPodSandboxConfig{ + SecurityContext: &runtimeapi.WindowsSandboxSecurityContext{}, + }}, + { + name: "feature enabled, hostNetwork=false", + hostNetworkFeatureEnabled: true, + podSpec: &v1.PodSpec{ + HostNetwork: false, + Containers: []v1.Container{{Name: containerName}}, + }, + expectedWindowsConfig: &runtimeapi.WindowsPodSandboxConfig{ + SecurityContext: &runtimeapi.WindowsSandboxSecurityContext{ + NamespaceOptions: &runtimeapi.WindowsNamespaceOption{ + Network: runtimeapi.NamespaceMode_POD, + }, + }, + }, + }, + { + name: "feature enabled, hostNetwork=true", + hostNetworkFeatureEnabled: true, + podSpec: &v1.PodSpec{ + HostNetwork: true, + Containers: []v1.Container{{Name: containerName}}, + }, + expectedWindowsConfig: &runtimeapi.WindowsPodSandboxConfig{ + SecurityContext: &runtimeapi.WindowsSandboxSecurityContext{ + NamespaceOptions: &runtimeapi.WindowsNamespaceOption{ + Network: runtimeapi.NamespaceMode_NODE, + }, + }, + }, + }, + } + + for _, testCase := range testCases { + t.Run(testCase.name, func(t *testing.T) { + defer featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.WindowsHostNetwork, testCase.hostNetworkFeatureEnabled)() + pod := &v1.Pod{} + pod.Spec = *testCase.podSpec + + wc, err := m.generatePodSandboxWindowsConfig(pod) + + assert.Equal(t, testCase.expectedWindowsConfig, wc) + assert.Equal(t, nil, err) }) } } diff --git a/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go b/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go index e0615587a00..ab24bd63cb9 100644 --- a/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go +++ b/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go @@ -4110,6 +4110,54 @@ func (m *LinuxContainerConfig) GetSecurityContext() *LinuxContainerSecurityConte return nil } +// WindowsNamespaceOption provides options for Windows namespaces. +type WindowsNamespaceOption struct { + // Network namespace for this container/sandbox. + // Namespaces currently set by the kubelet: POD, NODE + Network NamespaceMode `protobuf:"varint,1,opt,name=network,proto3,enum=runtime.v1.NamespaceMode" json:"network,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *WindowsNamespaceOption) Reset() { *m = WindowsNamespaceOption{} } +func (*WindowsNamespaceOption) ProtoMessage() {} +func (*WindowsNamespaceOption) Descriptor() ([]byte, []int) { + return fileDescriptor_00212fb1f9d3bf1c, []int{55} +} +func (m *WindowsNamespaceOption) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *WindowsNamespaceOption) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_WindowsNamespaceOption.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *WindowsNamespaceOption) XXX_Merge(src proto.Message) { + xxx_messageInfo_WindowsNamespaceOption.Merge(m, src) +} +func (m *WindowsNamespaceOption) XXX_Size() int { + return m.Size() +} +func (m *WindowsNamespaceOption) XXX_DiscardUnknown() { + xxx_messageInfo_WindowsNamespaceOption.DiscardUnknown(m) +} + +var xxx_messageInfo_WindowsNamespaceOption proto.InternalMessageInfo + +func (m *WindowsNamespaceOption) GetNetwork() NamespaceMode { + if m != nil { + return m.Network + } + return NamespaceMode_POD +} + // WindowsSandboxSecurityContext holds platform-specific configurations that will be // applied to a sandbox. // These settings will only apply to the sandbox container. @@ -4121,15 +4169,17 @@ type WindowsSandboxSecurityContext struct { // The contents of the GMSA credential spec to use to run this container. CredentialSpec string `protobuf:"bytes,2,opt,name=credential_spec,json=credentialSpec,proto3" json:"credential_spec,omitempty"` // Indicates whether the container requested to run as a HostProcess container. - HostProcess bool `protobuf:"varint,3,opt,name=host_process,json=hostProcess,proto3" json:"host_process,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_sizecache int32 `json:"-"` + HostProcess bool `protobuf:"varint,3,opt,name=host_process,json=hostProcess,proto3" json:"host_process,omitempty"` + // Configuration for the sandbox's namespaces + NamespaceOptions *WindowsNamespaceOption `protobuf:"bytes,4,opt,name=namespace_options,json=namespaceOptions,proto3" json:"namespace_options,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *WindowsSandboxSecurityContext) Reset() { *m = WindowsSandboxSecurityContext{} } func (*WindowsSandboxSecurityContext) ProtoMessage() {} func (*WindowsSandboxSecurityContext) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{55} + return fileDescriptor_00212fb1f9d3bf1c, []int{56} } func (m *WindowsSandboxSecurityContext) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4179,6 +4229,13 @@ func (m *WindowsSandboxSecurityContext) GetHostProcess() bool { return false } +func (m *WindowsSandboxSecurityContext) GetNamespaceOptions() *WindowsNamespaceOption { + if m != nil { + return m.NamespaceOptions + } + return nil +} + // WindowsPodSandboxConfig holds platform-specific configurations for Windows // host platforms and Windows-based containers. type WindowsPodSandboxConfig struct { @@ -4191,7 +4248,7 @@ type WindowsPodSandboxConfig struct { func (m *WindowsPodSandboxConfig) Reset() { *m = WindowsPodSandboxConfig{} } func (*WindowsPodSandboxConfig) ProtoMessage() {} func (*WindowsPodSandboxConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{56} + return fileDescriptor_00212fb1f9d3bf1c, []int{57} } func (m *WindowsPodSandboxConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4244,7 +4301,7 @@ type WindowsContainerSecurityContext struct { func (m *WindowsContainerSecurityContext) Reset() { *m = WindowsContainerSecurityContext{} } func (*WindowsContainerSecurityContext) ProtoMessage() {} func (*WindowsContainerSecurityContext) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{57} + return fileDescriptor_00212fb1f9d3bf1c, []int{58} } func (m *WindowsContainerSecurityContext) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4308,7 +4365,7 @@ type WindowsContainerConfig struct { func (m *WindowsContainerConfig) Reset() { *m = WindowsContainerConfig{} } func (*WindowsContainerConfig) ProtoMessage() {} func (*WindowsContainerConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{58} + return fileDescriptor_00212fb1f9d3bf1c, []int{59} } func (m *WindowsContainerConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4371,7 +4428,7 @@ type WindowsContainerResources struct { func (m *WindowsContainerResources) Reset() { *m = WindowsContainerResources{} } func (*WindowsContainerResources) ProtoMessage() {} func (*WindowsContainerResources) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{59} + return fileDescriptor_00212fb1f9d3bf1c, []int{60} } func (m *WindowsContainerResources) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4452,7 +4509,7 @@ type ContainerMetadata struct { func (m *ContainerMetadata) Reset() { *m = ContainerMetadata{} } func (*ContainerMetadata) ProtoMessage() {} func (*ContainerMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{60} + return fileDescriptor_00212fb1f9d3bf1c, []int{61} } func (m *ContainerMetadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4513,7 +4570,7 @@ type Device struct { func (m *Device) Reset() { *m = Device{} } func (*Device) ProtoMessage() {} func (*Device) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{61} + return fileDescriptor_00212fb1f9d3bf1c, []int{62} } func (m *Device) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4632,7 +4689,7 @@ type ContainerConfig struct { func (m *ContainerConfig) Reset() { *m = ContainerConfig{} } func (*ContainerConfig) ProtoMessage() {} func (*ContainerConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{62} + return fileDescriptor_00212fb1f9d3bf1c, []int{63} } func (m *ContainerConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4790,7 +4847,7 @@ type CreateContainerRequest struct { func (m *CreateContainerRequest) Reset() { *m = CreateContainerRequest{} } func (*CreateContainerRequest) ProtoMessage() {} func (*CreateContainerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{63} + return fileDescriptor_00212fb1f9d3bf1c, []int{64} } func (m *CreateContainerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4850,7 +4907,7 @@ type CreateContainerResponse struct { func (m *CreateContainerResponse) Reset() { *m = CreateContainerResponse{} } func (*CreateContainerResponse) ProtoMessage() {} func (*CreateContainerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{64} + return fileDescriptor_00212fb1f9d3bf1c, []int{65} } func (m *CreateContainerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4896,7 +4953,7 @@ type StartContainerRequest struct { func (m *StartContainerRequest) Reset() { *m = StartContainerRequest{} } func (*StartContainerRequest) ProtoMessage() {} func (*StartContainerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{65} + return fileDescriptor_00212fb1f9d3bf1c, []int{66} } func (m *StartContainerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4940,7 +4997,7 @@ type StartContainerResponse struct { func (m *StartContainerResponse) Reset() { *m = StartContainerResponse{} } func (*StartContainerResponse) ProtoMessage() {} func (*StartContainerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{66} + return fileDescriptor_00212fb1f9d3bf1c, []int{67} } func (m *StartContainerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4982,7 +5039,7 @@ type StopContainerRequest struct { func (m *StopContainerRequest) Reset() { *m = StopContainerRequest{} } func (*StopContainerRequest) ProtoMessage() {} func (*StopContainerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{67} + return fileDescriptor_00212fb1f9d3bf1c, []int{68} } func (m *StopContainerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5033,7 +5090,7 @@ type StopContainerResponse struct { func (m *StopContainerResponse) Reset() { *m = StopContainerResponse{} } func (*StopContainerResponse) ProtoMessage() {} func (*StopContainerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{68} + return fileDescriptor_00212fb1f9d3bf1c, []int{69} } func (m *StopContainerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5072,7 +5129,7 @@ type RemoveContainerRequest struct { func (m *RemoveContainerRequest) Reset() { *m = RemoveContainerRequest{} } func (*RemoveContainerRequest) ProtoMessage() {} func (*RemoveContainerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{69} + return fileDescriptor_00212fb1f9d3bf1c, []int{70} } func (m *RemoveContainerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5116,7 +5173,7 @@ type RemoveContainerResponse struct { func (m *RemoveContainerResponse) Reset() { *m = RemoveContainerResponse{} } func (*RemoveContainerResponse) ProtoMessage() {} func (*RemoveContainerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{70} + return fileDescriptor_00212fb1f9d3bf1c, []int{71} } func (m *RemoveContainerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5156,7 +5213,7 @@ type ContainerStateValue struct { func (m *ContainerStateValue) Reset() { *m = ContainerStateValue{} } func (*ContainerStateValue) ProtoMessage() {} func (*ContainerStateValue) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{71} + return fileDescriptor_00212fb1f9d3bf1c, []int{72} } func (m *ContainerStateValue) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5212,7 +5269,7 @@ type ContainerFilter struct { func (m *ContainerFilter) Reset() { *m = ContainerFilter{} } func (*ContainerFilter) ProtoMessage() {} func (*ContainerFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{72} + return fileDescriptor_00212fb1f9d3bf1c, []int{73} } func (m *ContainerFilter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5278,7 +5335,7 @@ type ListContainersRequest struct { func (m *ListContainersRequest) Reset() { *m = ListContainersRequest{} } func (*ListContainersRequest) ProtoMessage() {} func (*ListContainersRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{73} + return fileDescriptor_00212fb1f9d3bf1c, []int{74} } func (m *ListContainersRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5347,7 +5404,7 @@ type Container struct { func (m *Container) Reset() { *m = Container{} } func (*Container) ProtoMessage() {} func (*Container) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{74} + return fileDescriptor_00212fb1f9d3bf1c, []int{75} } func (m *Container) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5449,7 +5506,7 @@ type ListContainersResponse struct { func (m *ListContainersResponse) Reset() { *m = ListContainersResponse{} } func (*ListContainersResponse) ProtoMessage() {} func (*ListContainersResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{75} + return fileDescriptor_00212fb1f9d3bf1c, []int{76} } func (m *ListContainersResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5497,7 +5554,7 @@ type ContainerStatusRequest struct { func (m *ContainerStatusRequest) Reset() { *m = ContainerStatusRequest{} } func (*ContainerStatusRequest) ProtoMessage() {} func (*ContainerStatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{76} + return fileDescriptor_00212fb1f9d3bf1c, []int{77} } func (m *ContainerStatusRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5586,7 +5643,7 @@ type ContainerStatus struct { func (m *ContainerStatus) Reset() { *m = ContainerStatus{} } func (*ContainerStatus) ProtoMessage() {} func (*ContainerStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{77} + return fileDescriptor_00212fb1f9d3bf1c, []int{78} } func (m *ContainerStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5742,7 +5799,7 @@ type ContainerStatusResponse struct { func (m *ContainerStatusResponse) Reset() { *m = ContainerStatusResponse{} } func (*ContainerStatusResponse) ProtoMessage() {} func (*ContainerStatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{78} + return fileDescriptor_00212fb1f9d3bf1c, []int{79} } func (m *ContainerStatusResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5798,7 +5855,7 @@ type ContainerResources struct { func (m *ContainerResources) Reset() { *m = ContainerResources{} } func (*ContainerResources) ProtoMessage() {} func (*ContainerResources) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{79} + return fileDescriptor_00212fb1f9d3bf1c, []int{80} } func (m *ContainerResources) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5859,7 +5916,7 @@ type UpdateContainerResourcesRequest struct { func (m *UpdateContainerResourcesRequest) Reset() { *m = UpdateContainerResourcesRequest{} } func (*UpdateContainerResourcesRequest) ProtoMessage() {} func (*UpdateContainerResourcesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{80} + return fileDescriptor_00212fb1f9d3bf1c, []int{81} } func (m *UpdateContainerResourcesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5924,7 +5981,7 @@ type UpdateContainerResourcesResponse struct { func (m *UpdateContainerResourcesResponse) Reset() { *m = UpdateContainerResourcesResponse{} } func (*UpdateContainerResourcesResponse) ProtoMessage() {} func (*UpdateContainerResourcesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{81} + return fileDescriptor_00212fb1f9d3bf1c, []int{82} } func (m *UpdateContainerResourcesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5967,7 +6024,7 @@ type ExecSyncRequest struct { func (m *ExecSyncRequest) Reset() { *m = ExecSyncRequest{} } func (*ExecSyncRequest) ProtoMessage() {} func (*ExecSyncRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{82} + return fileDescriptor_00212fb1f9d3bf1c, []int{83} } func (m *ExecSyncRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6031,7 +6088,7 @@ type ExecSyncResponse struct { func (m *ExecSyncResponse) Reset() { *m = ExecSyncResponse{} } func (*ExecSyncResponse) ProtoMessage() {} func (*ExecSyncResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{83} + return fileDescriptor_00212fb1f9d3bf1c, []int{84} } func (m *ExecSyncResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6107,7 +6164,7 @@ type ExecRequest struct { func (m *ExecRequest) Reset() { *m = ExecRequest{} } func (*ExecRequest) ProtoMessage() {} func (*ExecRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{84} + return fileDescriptor_00212fb1f9d3bf1c, []int{85} } func (m *ExecRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6188,7 +6245,7 @@ type ExecResponse struct { func (m *ExecResponse) Reset() { *m = ExecResponse{} } func (*ExecResponse) ProtoMessage() {} func (*ExecResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{85} + return fileDescriptor_00212fb1f9d3bf1c, []int{86} } func (m *ExecResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6249,7 +6306,7 @@ type AttachRequest struct { func (m *AttachRequest) Reset() { *m = AttachRequest{} } func (*AttachRequest) ProtoMessage() {} func (*AttachRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{86} + return fileDescriptor_00212fb1f9d3bf1c, []int{87} } func (m *AttachRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6323,7 +6380,7 @@ type AttachResponse struct { func (m *AttachResponse) Reset() { *m = AttachResponse{} } func (*AttachResponse) ProtoMessage() {} func (*AttachResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{87} + return fileDescriptor_00212fb1f9d3bf1c, []int{88} } func (m *AttachResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6371,7 +6428,7 @@ type PortForwardRequest struct { func (m *PortForwardRequest) Reset() { *m = PortForwardRequest{} } func (*PortForwardRequest) ProtoMessage() {} func (*PortForwardRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{88} + return fileDescriptor_00212fb1f9d3bf1c, []int{89} } func (m *PortForwardRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6424,7 +6481,7 @@ type PortForwardResponse struct { func (m *PortForwardResponse) Reset() { *m = PortForwardResponse{} } func (*PortForwardResponse) ProtoMessage() {} func (*PortForwardResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{89} + return fileDescriptor_00212fb1f9d3bf1c, []int{90} } func (m *PortForwardResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6470,7 +6527,7 @@ type ImageFilter struct { func (m *ImageFilter) Reset() { *m = ImageFilter{} } func (*ImageFilter) ProtoMessage() {} func (*ImageFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{90} + return fileDescriptor_00212fb1f9d3bf1c, []int{91} } func (m *ImageFilter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6516,7 +6573,7 @@ type ListImagesRequest struct { func (m *ListImagesRequest) Reset() { *m = ListImagesRequest{} } func (*ListImagesRequest) ProtoMessage() {} func (*ListImagesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{91} + return fileDescriptor_00212fb1f9d3bf1c, []int{92} } func (m *ListImagesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6582,7 +6639,7 @@ type Image struct { func (m *Image) Reset() { *m = Image{} } func (*Image) ProtoMessage() {} func (*Image) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{92} + return fileDescriptor_00212fb1f9d3bf1c, []int{93} } func (m *Image) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6677,7 +6734,7 @@ type ListImagesResponse struct { func (m *ListImagesResponse) Reset() { *m = ListImagesResponse{} } func (*ListImagesResponse) ProtoMessage() {} func (*ListImagesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{93} + return fileDescriptor_00212fb1f9d3bf1c, []int{94} } func (m *ListImagesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6725,7 +6782,7 @@ type ImageStatusRequest struct { func (m *ImageStatusRequest) Reset() { *m = ImageStatusRequest{} } func (*ImageStatusRequest) ProtoMessage() {} func (*ImageStatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{94} + return fileDescriptor_00212fb1f9d3bf1c, []int{95} } func (m *ImageStatusRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6783,7 +6840,7 @@ type ImageStatusResponse struct { func (m *ImageStatusResponse) Reset() { *m = ImageStatusResponse{} } func (*ImageStatusResponse) ProtoMessage() {} func (*ImageStatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{95} + return fileDescriptor_00212fb1f9d3bf1c, []int{96} } func (m *ImageStatusResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6844,7 +6901,7 @@ type AuthConfig struct { func (m *AuthConfig) Reset() { *m = AuthConfig{} } func (*AuthConfig) ProtoMessage() {} func (*AuthConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{96} + return fileDescriptor_00212fb1f9d3bf1c, []int{97} } func (m *AuthConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6929,7 +6986,7 @@ type PullImageRequest struct { func (m *PullImageRequest) Reset() { *m = PullImageRequest{} } func (*PullImageRequest) ProtoMessage() {} func (*PullImageRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{97} + return fileDescriptor_00212fb1f9d3bf1c, []int{98} } func (m *PullImageRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6990,7 +7047,7 @@ type PullImageResponse struct { func (m *PullImageResponse) Reset() { *m = PullImageResponse{} } func (*PullImageResponse) ProtoMessage() {} func (*PullImageResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{98} + return fileDescriptor_00212fb1f9d3bf1c, []int{99} } func (m *PullImageResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7036,7 +7093,7 @@ type RemoveImageRequest struct { func (m *RemoveImageRequest) Reset() { *m = RemoveImageRequest{} } func (*RemoveImageRequest) ProtoMessage() {} func (*RemoveImageRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{99} + return fileDescriptor_00212fb1f9d3bf1c, []int{100} } func (m *RemoveImageRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7080,7 +7137,7 @@ type RemoveImageResponse struct { func (m *RemoveImageResponse) Reset() { *m = RemoveImageResponse{} } func (*RemoveImageResponse) ProtoMessage() {} func (*RemoveImageResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{100} + return fileDescriptor_00212fb1f9d3bf1c, []int{101} } func (m *RemoveImageResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7120,7 +7177,7 @@ type NetworkConfig struct { func (m *NetworkConfig) Reset() { *m = NetworkConfig{} } func (*NetworkConfig) ProtoMessage() {} func (*NetworkConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{101} + return fileDescriptor_00212fb1f9d3bf1c, []int{102} } func (m *NetworkConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7165,7 +7222,7 @@ type RuntimeConfig struct { func (m *RuntimeConfig) Reset() { *m = RuntimeConfig{} } func (*RuntimeConfig) ProtoMessage() {} func (*RuntimeConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{102} + return fileDescriptor_00212fb1f9d3bf1c, []int{103} } func (m *RuntimeConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7210,7 +7267,7 @@ type UpdateRuntimeConfigRequest struct { func (m *UpdateRuntimeConfigRequest) Reset() { *m = UpdateRuntimeConfigRequest{} } func (*UpdateRuntimeConfigRequest) ProtoMessage() {} func (*UpdateRuntimeConfigRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{103} + return fileDescriptor_00212fb1f9d3bf1c, []int{104} } func (m *UpdateRuntimeConfigRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7254,7 +7311,7 @@ type UpdateRuntimeConfigResponse struct { func (m *UpdateRuntimeConfigResponse) Reset() { *m = UpdateRuntimeConfigResponse{} } func (*UpdateRuntimeConfigResponse) ProtoMessage() {} func (*UpdateRuntimeConfigResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{104} + return fileDescriptor_00212fb1f9d3bf1c, []int{105} } func (m *UpdateRuntimeConfigResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7313,7 +7370,7 @@ type RuntimeCondition struct { func (m *RuntimeCondition) Reset() { *m = RuntimeCondition{} } func (*RuntimeCondition) ProtoMessage() {} func (*RuntimeCondition) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{105} + return fileDescriptor_00212fb1f9d3bf1c, []int{106} } func (m *RuntimeCondition) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7381,7 +7438,7 @@ type RuntimeStatus struct { func (m *RuntimeStatus) Reset() { *m = RuntimeStatus{} } func (*RuntimeStatus) ProtoMessage() {} func (*RuntimeStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{106} + return fileDescriptor_00212fb1f9d3bf1c, []int{107} } func (m *RuntimeStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7427,7 +7484,7 @@ type StatusRequest struct { func (m *StatusRequest) Reset() { *m = StatusRequest{} } func (*StatusRequest) ProtoMessage() {} func (*StatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{107} + return fileDescriptor_00212fb1f9d3bf1c, []int{108} } func (m *StatusRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7478,7 +7535,7 @@ type StatusResponse struct { func (m *StatusResponse) Reset() { *m = StatusResponse{} } func (*StatusResponse) ProtoMessage() {} func (*StatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{108} + return fileDescriptor_00212fb1f9d3bf1c, []int{109} } func (m *StatusResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7529,7 +7586,7 @@ type ImageFsInfoRequest struct { func (m *ImageFsInfoRequest) Reset() { *m = ImageFsInfoRequest{} } func (*ImageFsInfoRequest) ProtoMessage() {} func (*ImageFsInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{109} + return fileDescriptor_00212fb1f9d3bf1c, []int{110} } func (m *ImageFsInfoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7569,7 +7626,7 @@ type UInt64Value struct { func (m *UInt64Value) Reset() { *m = UInt64Value{} } func (*UInt64Value) ProtoMessage() {} func (*UInt64Value) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{110} + return fileDescriptor_00212fb1f9d3bf1c, []int{111} } func (m *UInt64Value) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7616,7 +7673,7 @@ type FilesystemIdentifier struct { func (m *FilesystemIdentifier) Reset() { *m = FilesystemIdentifier{} } func (*FilesystemIdentifier) ProtoMessage() {} func (*FilesystemIdentifier) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{111} + return fileDescriptor_00212fb1f9d3bf1c, []int{112} } func (m *FilesystemIdentifier) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7673,7 +7730,7 @@ type FilesystemUsage struct { func (m *FilesystemUsage) Reset() { *m = FilesystemUsage{} } func (*FilesystemUsage) ProtoMessage() {} func (*FilesystemUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{112} + return fileDescriptor_00212fb1f9d3bf1c, []int{113} } func (m *FilesystemUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7747,7 +7804,7 @@ type WindowsFilesystemUsage struct { func (m *WindowsFilesystemUsage) Reset() { *m = WindowsFilesystemUsage{} } func (*WindowsFilesystemUsage) ProtoMessage() {} func (*WindowsFilesystemUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{113} + return fileDescriptor_00212fb1f9d3bf1c, []int{114} } func (m *WindowsFilesystemUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7807,7 +7864,7 @@ type ImageFsInfoResponse struct { func (m *ImageFsInfoResponse) Reset() { *m = ImageFsInfoResponse{} } func (*ImageFsInfoResponse) ProtoMessage() {} func (*ImageFsInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{114} + return fileDescriptor_00212fb1f9d3bf1c, []int{115} } func (m *ImageFsInfoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7853,7 +7910,7 @@ type ContainerStatsRequest struct { func (m *ContainerStatsRequest) Reset() { *m = ContainerStatsRequest{} } func (*ContainerStatsRequest) ProtoMessage() {} func (*ContainerStatsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{115} + return fileDescriptor_00212fb1f9d3bf1c, []int{116} } func (m *ContainerStatsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7899,7 +7956,7 @@ type ContainerStatsResponse struct { func (m *ContainerStatsResponse) Reset() { *m = ContainerStatsResponse{} } func (*ContainerStatsResponse) ProtoMessage() {} func (*ContainerStatsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{116} + return fileDescriptor_00212fb1f9d3bf1c, []int{117} } func (m *ContainerStatsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7945,7 +8002,7 @@ type ListContainerStatsRequest struct { func (m *ListContainerStatsRequest) Reset() { *m = ListContainerStatsRequest{} } func (*ListContainerStatsRequest) ProtoMessage() {} func (*ListContainerStatsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{117} + return fileDescriptor_00212fb1f9d3bf1c, []int{118} } func (m *ListContainerStatsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7999,7 +8056,7 @@ type ContainerStatsFilter struct { func (m *ContainerStatsFilter) Reset() { *m = ContainerStatsFilter{} } func (*ContainerStatsFilter) ProtoMessage() {} func (*ContainerStatsFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{118} + return fileDescriptor_00212fb1f9d3bf1c, []int{119} } func (m *ContainerStatsFilter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8059,7 +8116,7 @@ type ListContainerStatsResponse struct { func (m *ListContainerStatsResponse) Reset() { *m = ListContainerStatsResponse{} } func (*ListContainerStatsResponse) ProtoMessage() {} func (*ListContainerStatsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{119} + return fileDescriptor_00212fb1f9d3bf1c, []int{120} } func (m *ListContainerStatsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8115,7 +8172,7 @@ type ContainerAttributes struct { func (m *ContainerAttributes) Reset() { *m = ContainerAttributes{} } func (*ContainerAttributes) ProtoMessage() {} func (*ContainerAttributes) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{120} + return fileDescriptor_00212fb1f9d3bf1c, []int{121} } func (m *ContainerAttributes) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8189,7 +8246,7 @@ type ContainerStats struct { func (m *ContainerStats) Reset() { *m = ContainerStats{} } func (*ContainerStats) ProtoMessage() {} func (*ContainerStats) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{121} + return fileDescriptor_00212fb1f9d3bf1c, []int{122} } func (m *ContainerStats) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8263,7 +8320,7 @@ type WindowsContainerStats struct { func (m *WindowsContainerStats) Reset() { *m = WindowsContainerStats{} } func (*WindowsContainerStats) ProtoMessage() {} func (*WindowsContainerStats) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{122} + return fileDescriptor_00212fb1f9d3bf1c, []int{123} } func (m *WindowsContainerStats) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8336,7 +8393,7 @@ type CpuUsage struct { func (m *CpuUsage) Reset() { *m = CpuUsage{} } func (*CpuUsage) ProtoMessage() {} func (*CpuUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{123} + return fileDescriptor_00212fb1f9d3bf1c, []int{124} } func (m *CpuUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8402,7 +8459,7 @@ type WindowsCpuUsage struct { func (m *WindowsCpuUsage) Reset() { *m = WindowsCpuUsage{} } func (*WindowsCpuUsage) ProtoMessage() {} func (*WindowsCpuUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{124} + return fileDescriptor_00212fb1f9d3bf1c, []int{125} } func (m *WindowsCpuUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8475,7 +8532,7 @@ type MemoryUsage struct { func (m *MemoryUsage) Reset() { *m = MemoryUsage{} } func (*MemoryUsage) ProtoMessage() {} func (*MemoryUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{125} + return fileDescriptor_00212fb1f9d3bf1c, []int{126} } func (m *MemoryUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8570,7 +8627,7 @@ type WindowsMemoryUsage struct { func (m *WindowsMemoryUsage) Reset() { *m = WindowsMemoryUsage{} } func (*WindowsMemoryUsage) ProtoMessage() {} func (*WindowsMemoryUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{126} + return fileDescriptor_00212fb1f9d3bf1c, []int{127} } func (m *WindowsMemoryUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8637,7 +8694,7 @@ type ReopenContainerLogRequest struct { func (m *ReopenContainerLogRequest) Reset() { *m = ReopenContainerLogRequest{} } func (*ReopenContainerLogRequest) ProtoMessage() {} func (*ReopenContainerLogRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{127} + return fileDescriptor_00212fb1f9d3bf1c, []int{128} } func (m *ReopenContainerLogRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8681,7 +8738,7 @@ type ReopenContainerLogResponse struct { func (m *ReopenContainerLogResponse) Reset() { *m = ReopenContainerLogResponse{} } func (*ReopenContainerLogResponse) ProtoMessage() {} func (*ReopenContainerLogResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{128} + return fileDescriptor_00212fb1f9d3bf1c, []int{129} } func (m *ReopenContainerLogResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8726,7 +8783,7 @@ type CheckpointContainerRequest struct { func (m *CheckpointContainerRequest) Reset() { *m = CheckpointContainerRequest{} } func (*CheckpointContainerRequest) ProtoMessage() {} func (*CheckpointContainerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{129} + return fileDescriptor_00212fb1f9d3bf1c, []int{130} } func (m *CheckpointContainerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8784,7 +8841,7 @@ type CheckpointContainerResponse struct { func (m *CheckpointContainerResponse) Reset() { *m = CheckpointContainerResponse{} } func (*CheckpointContainerResponse) ProtoMessage() {} func (*CheckpointContainerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{130} + return fileDescriptor_00212fb1f9d3bf1c, []int{131} } func (m *CheckpointContainerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8821,7 +8878,7 @@ type GetEventsRequest struct { func (m *GetEventsRequest) Reset() { *m = GetEventsRequest{} } func (*GetEventsRequest) ProtoMessage() {} func (*GetEventsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{131} + return fileDescriptor_00212fb1f9d3bf1c, []int{132} } func (m *GetEventsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8866,7 +8923,7 @@ type ContainerEventResponse struct { func (m *ContainerEventResponse) Reset() { *m = ContainerEventResponse{} } func (*ContainerEventResponse) ProtoMessage() {} func (*ContainerEventResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{132} + return fileDescriptor_00212fb1f9d3bf1c, []int{133} } func (m *ContainerEventResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9000,6 +9057,7 @@ func init() { proto.RegisterType((*Capability)(nil), "runtime.v1.Capability") proto.RegisterType((*LinuxContainerSecurityContext)(nil), "runtime.v1.LinuxContainerSecurityContext") proto.RegisterType((*LinuxContainerConfig)(nil), "runtime.v1.LinuxContainerConfig") + proto.RegisterType((*WindowsNamespaceOption)(nil), "runtime.v1.WindowsNamespaceOption") proto.RegisterType((*WindowsSandboxSecurityContext)(nil), "runtime.v1.WindowsSandboxSecurityContext") proto.RegisterType((*WindowsPodSandboxConfig)(nil), "runtime.v1.WindowsPodSandboxConfig") proto.RegisterType((*WindowsContainerSecurityContext)(nil), "runtime.v1.WindowsContainerSecurityContext") @@ -9097,395 +9155,396 @@ func init() { func init() { proto.RegisterFile("api.proto", fileDescriptor_00212fb1f9d3bf1c) } var fileDescriptor_00212fb1f9d3bf1c = []byte{ - // 6196 bytes of a gzipped FileDescriptorProto + // 6216 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x7d, 0x4d, 0x6c, 0x1c, 0xc9, 0x75, 0x30, 0x7b, 0x66, 0x48, 0xce, 0x3c, 0x72, 0x86, 0xc3, 0x12, 0x45, 0x8e, 0x86, 0xfa, 0x6d, 0x79, 0x77, 0xf5, 0xb3, 0xa2, 0xb4, 0x5a, 0xed, 0x5a, 0x92, 0xb5, 0xbb, 0x1a, 0x91, 0x5c, 0x89, 0x6b, 0x89, 0x1c, 0x37, 0x49, 0xf9, 0xef, 0x83, 0xfb, 0x6b, 0x4d, 0x17, 0x87, 0xbd, 0x9a, 0xe9, - 0x6e, 0x77, 0xf7, 0x48, 0xa2, 0x4f, 0x39, 0x26, 0x3e, 0x19, 0x70, 0x1c, 0x03, 0x46, 0x90, 0x20, + 0x6e, 0x77, 0xf7, 0x48, 0xa2, 0x4f, 0x39, 0x26, 0x3e, 0x19, 0x48, 0x1c, 0x03, 0x46, 0x90, 0x20, 0x87, 0x20, 0x01, 0x72, 0x70, 0x2e, 0x09, 0x0c, 0x04, 0x49, 0x80, 0x20, 0x30, 0x9c, 0x00, 0x06, - 0x7c, 0x48, 0x00, 0x1f, 0x02, 0xc4, 0xde, 0xdc, 0x72, 0xc8, 0x25, 0x3e, 0xe4, 0x14, 0x07, 0xf5, - 0xd7, 0xdd, 0xd5, 0xdd, 0xd3, 0x33, 0xe4, 0xae, 0x77, 0xe5, 0x13, 0xa7, 0x5f, 0xbd, 0xf7, 0xea, - 0xd5, 0xab, 0x57, 0xaf, 0x5f, 0xd5, 0x7b, 0xd5, 0x84, 0x8a, 0xe1, 0x5a, 0x2b, 0xae, 0xe7, 0x04, - 0x0e, 0x02, 0x6f, 0x60, 0x07, 0x56, 0x1f, 0xaf, 0x3c, 0x7b, 0xa3, 0x79, 0xa5, 0x6b, 0x05, 0xfb, - 0x83, 0x27, 0x2b, 0x1d, 0xa7, 0x7f, 0xb5, 0xeb, 0x74, 0x9d, 0xab, 0x14, 0xe5, 0xc9, 0x60, 0x8f, - 0x3e, 0xd1, 0x07, 0xfa, 0x8b, 0x91, 0xaa, 0x97, 0xa0, 0xf6, 0x18, 0x7b, 0xbe, 0xe5, 0xd8, 0x1a, - 0xfe, 0xe6, 0x00, 0xfb, 0x01, 0x6a, 0xc0, 0xf4, 0x33, 0x06, 0x69, 0x28, 0x67, 0x95, 0x0b, 0x15, - 0x4d, 0x3c, 0xaa, 0x7f, 0xa6, 0xc0, 0x5c, 0x88, 0xec, 0xbb, 0x8e, 0xed, 0xe3, 0xe1, 0xd8, 0xe8, - 0x1c, 0xcc, 0x72, 0xb1, 0x74, 0xdb, 0xe8, 0xe3, 0x46, 0x81, 0x36, 0xcf, 0x70, 0xd8, 0xa6, 0xd1, - 0xc7, 0xe8, 0x35, 0x98, 0x13, 0x28, 0x82, 0x49, 0x91, 0x62, 0xd5, 0x38, 0x98, 0xf7, 0x86, 0x56, - 0xe0, 0x98, 0x40, 0x34, 0x5c, 0x2b, 0x44, 0x2e, 0x51, 0xe4, 0x79, 0xde, 0xd4, 0x72, 0x2d, 0x8e, + 0x7c, 0x48, 0x00, 0x1f, 0x02, 0xc4, 0xde, 0xe4, 0x94, 0x43, 0x2e, 0xf1, 0x21, 0xa7, 0x38, 0xa8, + 0xbf, 0xee, 0xae, 0xee, 0x9e, 0x9e, 0x21, 0x57, 0xde, 0x5d, 0x9f, 0x38, 0xf5, 0xea, 0xbd, 0x57, + 0xaf, 0x5e, 0xbd, 0x7a, 0xfd, 0xaa, 0xde, 0xeb, 0x26, 0x54, 0x0c, 0xd7, 0x5a, 0x71, 0x3d, 0x27, + 0x70, 0x10, 0x78, 0x03, 0x3b, 0xb0, 0xfa, 0x78, 0xe5, 0xd9, 0x1b, 0xcd, 0x2b, 0x5d, 0x2b, 0xd8, + 0x1f, 0x3c, 0x59, 0xe9, 0x38, 0xfd, 0xab, 0x5d, 0xa7, 0xeb, 0x5c, 0xa5, 0x28, 0x4f, 0x06, 0x7b, + 0xb4, 0x45, 0x1b, 0xf4, 0x17, 0x23, 0x55, 0x2f, 0x41, 0xed, 0x31, 0xf6, 0x7c, 0xcb, 0xb1, 0x35, + 0xfc, 0xcd, 0x01, 0xf6, 0x03, 0xd4, 0x80, 0xe9, 0x67, 0x0c, 0xd2, 0x50, 0xce, 0x2a, 0x17, 0x2a, + 0x9a, 0x68, 0xaa, 0x7f, 0xaa, 0xc0, 0x5c, 0x88, 0xec, 0xbb, 0x8e, 0xed, 0xe3, 0xe1, 0xd8, 0xe8, + 0x1c, 0xcc, 0x72, 0xb1, 0x74, 0xdb, 0xe8, 0xe3, 0x46, 0x81, 0x76, 0xcf, 0x70, 0xd8, 0xa6, 0xd1, + 0xc7, 0xe8, 0x35, 0x98, 0x13, 0x28, 0x82, 0x49, 0x91, 0x62, 0xd5, 0x38, 0x98, 0x8f, 0x86, 0x56, + 0xe0, 0x98, 0x40, 0x34, 0x5c, 0x2b, 0x44, 0x2e, 0x51, 0xe4, 0x79, 0xde, 0xd5, 0x72, 0x2d, 0x8e, 0xaf, 0x7e, 0x1d, 0x2a, 0x6b, 0x9b, 0xdb, 0xab, 0x8e, 0xbd, 0x67, 0x75, 0x89, 0x88, 0x3e, 0xf6, - 0x08, 0x4d, 0x43, 0x39, 0x5b, 0x24, 0x22, 0xf2, 0x47, 0xd4, 0x84, 0xb2, 0x8f, 0x0d, 0xaf, 0xb3, - 0x8f, 0xfd, 0x46, 0x81, 0x36, 0x85, 0xcf, 0x84, 0xca, 0x71, 0x03, 0xcb, 0xb1, 0xfd, 0x46, 0x91, - 0x51, 0xf1, 0x47, 0xf5, 0x0f, 0x15, 0x98, 0x69, 0x3b, 0x5e, 0xf0, 0xc8, 0x70, 0x5d, 0xcb, 0xee, - 0xa2, 0x6b, 0x50, 0xa6, 0xba, 0xec, 0x38, 0x3d, 0xaa, 0x83, 0xda, 0xf5, 0x85, 0x95, 0x68, 0x42, - 0x56, 0xda, 0xbc, 0x4d, 0x0b, 0xb1, 0xd0, 0x2b, 0x50, 0xeb, 0x38, 0x76, 0x60, 0x58, 0x36, 0xf6, - 0x74, 0xd7, 0xf1, 0x02, 0xaa, 0x9c, 0x49, 0xad, 0x1a, 0x42, 0x09, 0x7f, 0xb4, 0x0c, 0x95, 0x7d, - 0xc7, 0x0f, 0x18, 0x46, 0x91, 0x62, 0x94, 0x09, 0x80, 0x36, 0x2e, 0xc1, 0x34, 0x6d, 0xb4, 0x5c, - 0xae, 0x86, 0x29, 0xf2, 0xb8, 0xe1, 0xaa, 0x3f, 0x53, 0x60, 0xf2, 0x91, 0x33, 0xb0, 0x83, 0x44, - 0x37, 0x46, 0xb0, 0xcf, 0xa7, 0x28, 0xd6, 0x8d, 0x11, 0xec, 0x47, 0xdd, 0x10, 0x0c, 0x36, 0x4b, - 0xac, 0x1b, 0xd2, 0xd8, 0x84, 0xb2, 0x87, 0x0d, 0xd3, 0xb1, 0x7b, 0x07, 0x54, 0x84, 0xb2, 0x16, - 0x3e, 0x93, 0xe9, 0xf3, 0x71, 0xcf, 0xb2, 0x07, 0x2f, 0x74, 0x0f, 0xf7, 0x8c, 0x27, 0xb8, 0x47, - 0x45, 0x29, 0x6b, 0x35, 0x0e, 0xd6, 0x18, 0x14, 0xbd, 0x0b, 0x33, 0xae, 0xe7, 0xb8, 0x46, 0xd7, - 0x20, 0x1a, 0x6c, 0x4c, 0x52, 0x25, 0x9d, 0x8c, 0x2b, 0x89, 0x0a, 0xdc, 0x8e, 0x70, 0xb4, 0x38, - 0x81, 0xaa, 0x43, 0x65, 0x63, 0x4d, 0xa8, 0x3b, 0x1c, 0xb8, 0x49, 0x87, 0x53, 0xe5, 0x03, 0x37, - 0x89, 0xc1, 0x45, 0xc3, 0xb5, 0x4c, 0x3a, 0x94, 0xaa, 0x36, 0x13, 0xc2, 0x36, 0x4c, 0xb4, 0x08, - 0x53, 0x3d, 0x6c, 0x77, 0x83, 0x7d, 0x3a, 0x96, 0xaa, 0xc6, 0x9f, 0xd4, 0xdf, 0x57, 0xa0, 0xba, - 0xeb, 0x63, 0x8f, 0x58, 0xa5, 0xef, 0x1a, 0x1d, 0x8c, 0xae, 0x40, 0xa9, 0xef, 0x98, 0x98, 0x4f, - 0xe8, 0x89, 0xb8, 0xac, 0x21, 0xd2, 0x23, 0xc7, 0xc4, 0x1a, 0x45, 0x43, 0x17, 0xa1, 0x34, 0xb0, - 0x4c, 0x66, 0x45, 0x33, 0xd7, 0x8f, 0xc7, 0xd1, 0x43, 0xc9, 0x35, 0x8a, 0x42, 0x50, 0xbb, 0x04, - 0xb5, 0x98, 0x8b, 0x4a, 0x50, 0xd4, 0x5f, 0x2b, 0x30, 0x17, 0xf6, 0xb6, 0x45, 0xcd, 0x0f, 0xbd, - 0x09, 0xd3, 0x36, 0x0e, 0x9e, 0x3b, 0xde, 0xd3, 0xd1, 0xb2, 0x09, 0x4c, 0x74, 0x19, 0x8a, 0x2e, - 0xd7, 0x48, 0x2e, 0x01, 0xc1, 0x22, 0xc8, 0x96, 0xdb, 0xa1, 0x1a, 0xca, 0x47, 0xb6, 0xdc, 0x0e, - 0x31, 0x9e, 0xc0, 0xf0, 0xba, 0x98, 0xce, 0x07, 0x33, 0xc4, 0x32, 0x03, 0x6c, 0x98, 0xe8, 0x2e, - 0xd4, 0x06, 0x3e, 0xf6, 0x6c, 0x5f, 0x17, 0x4b, 0x89, 0x4c, 0xfd, 0x8c, 0xcc, 0x54, 0xd2, 0xbb, - 0x56, 0x65, 0x04, 0x5b, 0x7c, 0xad, 0xa9, 0x00, 0x1b, 0x76, 0xf0, 0xf6, 0x8d, 0xc7, 0x46, 0x6f, - 0x80, 0xd1, 0x02, 0x4c, 0x3e, 0x23, 0x3f, 0xe8, 0xc8, 0x8b, 0x1a, 0x7b, 0x50, 0xff, 0xb6, 0x04, - 0xcb, 0x0f, 0x89, 0xb9, 0x6d, 0x1b, 0xb6, 0xf9, 0xc4, 0x79, 0xb1, 0x8d, 0x3b, 0x03, 0xcf, 0x0a, - 0x0e, 0x56, 0x1d, 0x3b, 0xc0, 0x2f, 0x02, 0xf4, 0x00, 0xe6, 0x6d, 0xc1, 0x3f, 0x14, 0x44, 0xa1, - 0x82, 0x2c, 0x67, 0x8e, 0x8e, 0x75, 0xae, 0xd5, 0x6d, 0x19, 0xe0, 0xa3, 0x7b, 0x91, 0xc1, 0x0b, - 0x3e, 0x85, 0xf4, 0x80, 0xb6, 0xd7, 0xa9, 0x34, 0x9c, 0x8b, 0x58, 0x0b, 0x82, 0xc7, 0xdb, 0x40, - 0x5c, 0xa0, 0x6e, 0xf8, 0x3a, 0x19, 0x29, 0xd5, 0xf2, 0xcc, 0xf5, 0x45, 0xc9, 0x0a, 0xc2, 0x01, - 0x6b, 0x15, 0x6f, 0x60, 0xb7, 0x7c, 0xa2, 0x21, 0x74, 0x93, 0xba, 0x53, 0x42, 0xd7, 0xf5, 0x9c, - 0x81, 0xdb, 0x28, 0xe7, 0x12, 0x02, 0x25, 0xbc, 0x4f, 0x30, 0xa9, 0x97, 0xe5, 0x4b, 0x56, 0xf7, - 0x1c, 0x27, 0xd8, 0xf3, 0xc5, 0x32, 0x15, 0x60, 0x8d, 0x42, 0xd1, 0x55, 0x38, 0xe6, 0x0f, 0x5c, - 0xb7, 0x87, 0xfb, 0xd8, 0x0e, 0x8c, 0x1e, 0xeb, 0x88, 0xcc, 0x59, 0xf1, 0x42, 0x51, 0x43, 0xf1, - 0x26, 0xca, 0xd8, 0x47, 0xa7, 0x01, 0x5c, 0xcf, 0x7a, 0x66, 0xf5, 0x70, 0x17, 0x9b, 0x8d, 0x29, - 0xca, 0x34, 0x06, 0x41, 0x6f, 0x11, 0xcf, 0xdb, 0xe9, 0x38, 0x7d, 0xb7, 0x51, 0x49, 0xeb, 0x5b, - 0xcc, 0x53, 0xdb, 0x73, 0xf6, 0xac, 0x1e, 0xd6, 0x04, 0x2e, 0xfa, 0x3c, 0x94, 0x0d, 0xd7, 0x35, - 0xbc, 0xbe, 0xe3, 0x35, 0x60, 0x34, 0x5d, 0x88, 0x8c, 0x6e, 0xc0, 0x02, 0xe7, 0xa1, 0xbb, 0xac, - 0x91, 0x39, 0xb5, 0x69, 0x62, 0x97, 0xf7, 0x0a, 0x0d, 0x45, 0x43, 0xbc, 0x9d, 0xd3, 0x12, 0x17, - 0xa7, 0xfe, 0xa3, 0x02, 0x73, 0x09, 0x9e, 0xe8, 0x03, 0x98, 0x15, 0x1c, 0x82, 0x03, 0x57, 0xb8, - 0x81, 0xd7, 0x72, 0xc4, 0x58, 0xe1, 0x7f, 0x77, 0x0e, 0x5c, 0x4c, 0xbd, 0x97, 0x78, 0x40, 0xe7, - 0xa1, 0xda, 0x73, 0x3a, 0x46, 0x8f, 0x7a, 0x2d, 0x0f, 0xef, 0x71, 0x1f, 0x3b, 0x1b, 0x02, 0x35, - 0xbc, 0xa7, 0xde, 0x85, 0x99, 0x18, 0x03, 0x84, 0xa0, 0xa6, 0xb1, 0xae, 0xd6, 0xf0, 0x9e, 0x31, - 0xe8, 0x05, 0xf5, 0x09, 0x54, 0x03, 0xd8, 0xb5, 0x3b, 0xe4, 0x9d, 0x66, 0x63, 0xb3, 0xae, 0xa0, - 0x2a, 0x54, 0x1e, 0x0a, 0x16, 0xf5, 0x82, 0xfa, 0x83, 0x22, 0x1c, 0xa7, 0x86, 0xd7, 0x76, 0x4c, - 0xbe, 0x12, 0xf8, 0x0b, 0xf0, 0x3c, 0x54, 0x3b, 0x74, 0x2e, 0x75, 0xd7, 0xf0, 0xb0, 0x1d, 0xf0, - 0xd7, 0xc0, 0x2c, 0x03, 0xb6, 0x29, 0x0c, 0x69, 0x50, 0xf7, 0xf9, 0x88, 0xf4, 0x0e, 0x5b, 0x39, - 0xdc, 0xb8, 0xa5, 0x51, 0xe7, 0x2c, 0x34, 0x6d, 0xce, 0x4f, 0xad, 0xbc, 0x69, 0xff, 0xc0, 0xef, - 0x04, 0x3d, 0xe1, 0xed, 0x56, 0x52, 0xac, 0x92, 0xc2, 0xae, 0x6c, 0x33, 0x82, 0x75, 0x3b, 0xf0, - 0x0e, 0x34, 0x41, 0x8e, 0xde, 0x83, 0xb2, 0xf3, 0x0c, 0x7b, 0xfb, 0xd8, 0x60, 0x5e, 0x66, 0xe6, - 0xfa, 0xf9, 0x14, 0xab, 0x55, 0xe1, 0xe8, 0x35, 0xec, 0x3b, 0x03, 0xaf, 0x83, 0x7d, 0x2d, 0x24, - 0x42, 0x2d, 0xa8, 0x78, 0x02, 0xcc, 0xbd, 0xd0, 0x58, 0x1c, 0x22, 0xaa, 0xe6, 0x6d, 0x98, 0x8d, - 0x0b, 0x87, 0xea, 0x50, 0x7c, 0x8a, 0x0f, 0xb8, 0x32, 0xc9, 0xcf, 0xc8, 0x3f, 0xb1, 0x19, 0x66, - 0x0f, 0xb7, 0x0b, 0x37, 0x15, 0xd5, 0x03, 0x14, 0x8d, 0xf4, 0x11, 0x0e, 0x0c, 0xd3, 0x08, 0x0c, - 0x84, 0xa0, 0x44, 0x43, 0x23, 0xc6, 0x82, 0xfe, 0x26, 0x5c, 0x07, 0xdc, 0x55, 0x57, 0x34, 0xf2, - 0x13, 0x9d, 0x84, 0x4a, 0xe8, 0x89, 0x78, 0x7c, 0x14, 0x01, 0x48, 0x9c, 0x62, 0x04, 0x01, 0xee, - 0xbb, 0x01, 0x55, 0x4c, 0x55, 0x13, 0x8f, 0xea, 0xef, 0x4d, 0x42, 0x3d, 0x65, 0x0b, 0xb7, 0xa1, - 0xdc, 0xe7, 0xdd, 0x73, 0x1f, 0x78, 0x5a, 0x0a, 0x56, 0x52, 0x42, 0x6a, 0x21, 0x3e, 0x89, 0x05, - 0x88, 0xad, 0xc5, 0xa2, 0xb9, 0xf0, 0x99, 0x19, 0x79, 0x57, 0x37, 0x2d, 0x0f, 0x77, 0x02, 0xc7, - 0x3b, 0xe0, 0x82, 0xce, 0xf6, 0x9c, 0xee, 0x9a, 0x80, 0xa1, 0x1b, 0x00, 0xa6, 0xed, 0xeb, 0xd4, - 0x86, 0xbb, 0x7c, 0x1e, 0xa5, 0x17, 0x60, 0x18, 0xb4, 0x69, 0x15, 0xd3, 0xf6, 0xb9, 0xc8, 0x77, - 0xa0, 0x4a, 0x22, 0x20, 0xbd, 0xcf, 0xde, 0x8d, 0xcc, 0x21, 0xcd, 0x5c, 0x5f, 0x92, 0xe5, 0x0e, - 0xe3, 0x31, 0x6d, 0xd6, 0x8d, 0x1e, 0x7c, 0x74, 0x17, 0xa6, 0x68, 0x10, 0xe2, 0x37, 0xa6, 0x28, - 0xd9, 0x85, 0xec, 0xe1, 0x72, 0xeb, 0x7b, 0x48, 0x51, 0x99, 0xf1, 0x71, 0x3a, 0xb4, 0x05, 0x33, - 0x86, 0x6d, 0x3b, 0x81, 0xc1, 0x3c, 0xfe, 0x34, 0x65, 0x73, 0x25, 0x97, 0x4d, 0x2b, 0xc2, 0x67, - 0xbc, 0xe2, 0x1c, 0xd0, 0xe7, 0x61, 0x92, 0xbe, 0x12, 0xb8, 0x0f, 0x3f, 0x37, 0x72, 0x51, 0x68, - 0x0c, 0x1f, 0xbd, 0x03, 0xd3, 0xcf, 0x2d, 0xdb, 0x74, 0x9e, 0xfb, 0xdc, 0x9f, 0x4a, 0x26, 0xfc, - 0x65, 0xd6, 0x94, 0x22, 0x16, 0x34, 0xcd, 0x5b, 0x30, 0x13, 0x1b, 0xdf, 0x61, 0xec, 0xb7, 0xf9, - 0x2e, 0xd4, 0x93, 0x63, 0x3a, 0x94, 0xfd, 0x0f, 0x60, 0x41, 0x1b, 0xd8, 0x91, 0x68, 0x62, 0xb3, - 0x71, 0x03, 0xa6, 0xb8, 0x35, 0x30, 0x63, 0x3c, 0x99, 0xa7, 0x56, 0x8d, 0xe3, 0xc6, 0xf7, 0x0d, - 0xfb, 0x86, 0x6d, 0xf6, 0xb0, 0xc7, 0x7b, 0x14, 0xfb, 0x86, 0x07, 0x0c, 0xaa, 0xbe, 0x03, 0xc7, - 0x13, 0xdd, 0xf2, 0x6d, 0xcb, 0xe7, 0xa0, 0xe6, 0x3a, 0xa6, 0xee, 0x33, 0xb0, 0x88, 0x25, 0x2b, - 0xc4, 0x76, 0x04, 0xee, 0x86, 0x49, 0xc8, 0xb7, 0x03, 0xc7, 0x4d, 0x8b, 0x3d, 0x1e, 0x79, 0x03, - 0x16, 0x93, 0xe4, 0xac, 0x7b, 0xf5, 0x3d, 0x58, 0xd2, 0x70, 0xdf, 0x79, 0x86, 0x8f, 0xca, 0xba, - 0x09, 0x8d, 0x34, 0x03, 0xce, 0xfc, 0xab, 0xb0, 0x14, 0x41, 0xb7, 0x03, 0x23, 0x18, 0xf8, 0x87, - 0x62, 0xce, 0xf7, 0x74, 0x4f, 0x1c, 0x9f, 0x4d, 0x64, 0x59, 0x13, 0x8f, 0xea, 0x12, 0x4c, 0xb6, - 0x1d, 0x73, 0xa3, 0x8d, 0x6a, 0x50, 0xb0, 0x5c, 0x4e, 0x5c, 0xb0, 0x5c, 0xb5, 0x13, 0xef, 0x73, - 0x93, 0x45, 0x9d, 0xac, 0xeb, 0x24, 0x2a, 0xba, 0x09, 0x35, 0xc3, 0x34, 0x2d, 0x62, 0x48, 0x46, - 0x4f, 0xb7, 0x5c, 0x11, 0x34, 0xcf, 0x27, 0xa6, 0x7e, 0xa3, 0xad, 0x55, 0x23, 0xc4, 0x0d, 0xd7, - 0x57, 0xef, 0x41, 0x25, 0x0a, 0xd0, 0xdf, 0x8a, 0xf6, 0x67, 0x85, 0xd1, 0xb1, 0x5c, 0xb8, 0x79, - 0xdb, 0x4c, 0xbd, 0x24, 0xb9, 0x98, 0x6f, 0x01, 0x84, 0x4e, 0x55, 0x84, 0x87, 0xc7, 0x33, 0x59, - 0x6a, 0x31, 0x44, 0xf5, 0xdf, 0x4b, 0x71, 0x27, 0x1b, 0x1b, 0xb2, 0x19, 0x0e, 0xd9, 0x94, 0x9c, - 0x6e, 0xe1, 0x90, 0x4e, 0xf7, 0x0d, 0x98, 0xf4, 0x03, 0x23, 0xc0, 0x3c, 0x1e, 0x5f, 0xce, 0x26, - 0x24, 0x1d, 0x63, 0x8d, 0x61, 0xa2, 0x53, 0x00, 0x1d, 0x0f, 0x1b, 0x01, 0x36, 0x75, 0x83, 0xbd, - 0x15, 0x8a, 0x5a, 0x85, 0x43, 0x5a, 0x01, 0xf1, 0x22, 0x62, 0x07, 0x91, 0xf1, 0x22, 0x1c, 0x32, - 0x8d, 0xd1, 0x5e, 0x22, 0xf4, 0x5e, 0x53, 0x23, 0xbd, 0x17, 0x27, 0xe5, 0xde, 0x2b, 0xf2, 0xc4, - 0xd3, 0x79, 0x9e, 0x98, 0x11, 0x8d, 0xe3, 0x89, 0xcb, 0x79, 0x9e, 0x98, 0xb3, 0xc9, 0xf7, 0xc4, - 0x19, 0x8e, 0xa4, 0x92, 0xe5, 0x48, 0x3e, 0x4b, 0xd7, 0xf9, 0x53, 0x05, 0x1a, 0xe9, 0xf5, 0xcc, - 0xfd, 0xd8, 0x0d, 0x98, 0xf2, 0x29, 0x24, 0xdf, 0x7f, 0x72, 0x2a, 0x8e, 0x8b, 0xee, 0x41, 0xc9, - 0xb2, 0xf7, 0x1c, 0xbe, 0xf0, 0x56, 0x72, 0x69, 0x78, 0x4f, 0x2b, 0x1b, 0xf6, 0x9e, 0xc3, 0x34, - 0x48, 0x69, 0x9b, 0x9f, 0x87, 0x4a, 0x08, 0x3a, 0xd4, 0x78, 0x36, 0x60, 0x21, 0x61, 0xb7, 0x6c, - 0x73, 0x17, 0x1a, 0xba, 0x32, 0xae, 0xa1, 0xab, 0xbf, 0x52, 0xe2, 0x8b, 0xef, 0x7d, 0xab, 0x17, - 0x60, 0x2f, 0xb5, 0xf8, 0xde, 0x16, 0x7c, 0xd9, 0xca, 0x3b, 0x9b, 0xc3, 0x97, 0xed, 0x9d, 0xf8, - 0x2a, 0x7a, 0x0c, 0x35, 0x6a, 0x76, 0xba, 0x8f, 0x7b, 0x34, 0x7e, 0xe1, 0x31, 0xec, 0xd5, 0x6c, - 0x06, 0xac, 0x77, 0x66, 0xb6, 0xdb, 0x9c, 0x82, 0xe9, 0xab, 0xda, 0x8b, 0xc3, 0x9a, 0x77, 0x01, - 0xa5, 0x91, 0x0e, 0xa5, 0xc1, 0x47, 0xc4, 0x87, 0xf9, 0x41, 0xe6, 0xdb, 0x74, 0x8f, 0x8a, 0x91, - 0x6f, 0x0d, 0x4c, 0x54, 0x8d, 0xe3, 0xaa, 0xff, 0x5a, 0x04, 0x88, 0x1a, 0x5f, 0x72, 0xe7, 0x75, - 0x3b, 0x74, 0x22, 0x2c, 0x0a, 0x54, 0xb3, 0x59, 0x66, 0xba, 0x8f, 0x0d, 0xd9, 0x7d, 0xb0, 0x78, - 0xf0, 0xb5, 0x21, 0x0c, 0x0e, 0xed, 0x38, 0xa6, 0x5f, 0x36, 0xc7, 0xf1, 0x3e, 0x2c, 0x26, 0xcd, - 0x84, 0x7b, 0x8d, 0xd7, 0x61, 0xd2, 0x0a, 0x70, 0x9f, 0x9d, 0x87, 0x26, 0x0e, 0x11, 0x62, 0xe8, - 0x0c, 0x49, 0x7d, 0x17, 0x16, 0xe5, 0xb9, 0x3a, 0x5c, 0x38, 0xa1, 0x3e, 0x4c, 0xc6, 0x23, 0x91, - 0xfb, 0xe2, 0xf6, 0x91, 0x79, 0x1c, 0x93, 0xa4, 0x61, 0x98, 0xea, 0x8f, 0x15, 0x38, 0x9e, 0x68, - 0x1a, 0xb2, 0xf0, 0xbf, 0x9e, 0x5a, 0xc0, 0xcc, 0xdf, 0xdd, 0xc8, 0xe9, 0xe5, 0x53, 0x5c, 0xc5, - 0x5f, 0x86, 0xa6, 0x3c, 0x3d, 0x92, 0x6a, 0x6f, 0x25, 0x96, 0xf2, 0xb9, 0x91, 0x42, 0x87, 0xeb, - 0xb9, 0x0d, 0xcb, 0x99, 0x8c, 0xd3, 0x3a, 0x2f, 0x8e, 0xa9, 0xf3, 0xff, 0x29, 0xc4, 0x7d, 0x76, - 0x2b, 0x08, 0x3c, 0xeb, 0xc9, 0x20, 0xc0, 0x9f, 0x6c, 0xa0, 0xb3, 0x16, 0xae, 0x6c, 0xe6, 0x67, - 0x5f, 0xcf, 0xa6, 0x8c, 0x7a, 0xcf, 0x5c, 0xe3, 0xdb, 0xf2, 0x1a, 0x2f, 0x51, 0x56, 0x6f, 0x8c, - 0x64, 0x95, 0xbb, 0xda, 0x3f, 0xcb, 0x45, 0xfc, 0x4f, 0x0a, 0xcc, 0x25, 0x66, 0x05, 0xdd, 0x05, - 0x30, 0x42, 0xd1, 0xb9, 0x7d, 0x9c, 0x1d, 0x35, 0x44, 0x2d, 0x46, 0x43, 0xde, 0x89, 0x2c, 0x86, - 0xcb, 0x78, 0x27, 0x66, 0xc4, 0x70, 0x61, 0x08, 0x77, 0x27, 0xda, 0x80, 0xb2, 0x83, 0x4b, 0x35, - 0x77, 0x03, 0xca, 0x68, 0x05, 0x89, 0xfa, 0xdd, 0x02, 0x2c, 0x64, 0x71, 0x47, 0xaf, 0x42, 0xb1, - 0xe3, 0x0e, 0xf8, 0x48, 0xa4, 0xe4, 0xc9, 0xaa, 0x3b, 0xd8, 0xf5, 0x8d, 0x2e, 0xd6, 0x08, 0x02, - 0xba, 0x0a, 0x53, 0x7d, 0xdc, 0x77, 0xbc, 0x03, 0x2e, 0xb7, 0x74, 0x04, 0xf0, 0x88, 0xb6, 0x30, - 0x6c, 0x8e, 0x86, 0xae, 0x47, 0xa1, 0x2e, 0x93, 0xb7, 0x21, 0x45, 0xf4, 0xac, 0x89, 0x91, 0x84, - 0xf1, 0xed, 0x75, 0x98, 0x76, 0x3d, 0xa7, 0x83, 0x7d, 0x9f, 0x9f, 0x50, 0x34, 0x12, 0xd9, 0x1c, - 0xd2, 0xc4, 0x69, 0x38, 0x22, 0xba, 0x0d, 0x10, 0xa6, 0x19, 0xc4, 0x9b, 0xa9, 0x29, 0x8d, 0x43, - 0xb4, 0x32, 0x95, 0xc4, 0xb0, 0xd5, 0x1f, 0x15, 0x60, 0x31, 0x5b, 0x73, 0xe8, 0x4a, 0x5c, 0x2f, - 0xcb, 0x19, 0xaa, 0x96, 0xd5, 0xf3, 0x76, 0x42, 0x3d, 0xa7, 0x33, 0x28, 0xb2, 0xb4, 0x74, 0x2b, - 0xa9, 0xa5, 0x33, 0x19, 0x84, 0xd9, 0xca, 0xba, 0x95, 0x54, 0x56, 0x16, 0x69, 0xb6, 0xce, 0x5a, - 0x19, 0x3a, 0x3b, 0x97, 0x35, 0xc6, 0xe1, 0xaa, 0xfb, 0x7b, 0x05, 0x66, 0xe3, 0x72, 0xa1, 0x93, - 0x50, 0x21, 0xd4, 0x7e, 0x60, 0xf4, 0x5d, 0x9e, 0x24, 0x88, 0x00, 0x68, 0x13, 0xe6, 0x4d, 0x76, - 0x9a, 0xaa, 0x5b, 0x76, 0x80, 0xbd, 0x3d, 0xa3, 0x23, 0xa2, 0xc2, 0x73, 0x19, 0x76, 0xb1, 0x21, - 0x70, 0x98, 0xe0, 0x75, 0x4e, 0x1b, 0x82, 0xc9, 0x08, 0x42, 0x3e, 0xc2, 0x6b, 0x8d, 0xc1, 0x28, - 0x46, 0xa4, 0xfe, 0x8b, 0x02, 0xc7, 0x32, 0x14, 0x3c, 0x62, 0x20, 0xbb, 0xc3, 0x07, 0x72, 0x61, - 0xf8, 0xd4, 0x8d, 0x1c, 0xcf, 0x83, 0x8c, 0xf1, 0x8c, 0xcf, 0x2f, 0x3e, 0xac, 0x5f, 0x2b, 0x70, - 0x3c, 0x13, 0x2b, 0xf3, 0xc8, 0xf3, 0x3a, 0x94, 0xbd, 0x17, 0xfa, 0x93, 0x83, 0x00, 0xfb, 0x59, - 0x0b, 0x7b, 0x37, 0x96, 0xd7, 0x98, 0xf6, 0x5e, 0xdc, 0x23, 0x78, 0xe8, 0x06, 0x54, 0xbc, 0x17, - 0x3a, 0xf6, 0x3c, 0xc7, 0x13, 0xbe, 0x68, 0x28, 0x51, 0xd9, 0x7b, 0xb1, 0x4e, 0x11, 0x49, 0x4f, - 0x81, 0xe8, 0xa9, 0x34, 0xa2, 0xa7, 0x20, 0xea, 0x29, 0x08, 0x7b, 0x9a, 0x1c, 0xd1, 0x53, 0xc0, - 0x7b, 0x52, 0xff, 0xbc, 0x00, 0x27, 0xf3, 0xd4, 0xf5, 0x89, 0x29, 0x62, 0x1d, 0x90, 0xf7, 0x42, - 0x77, 0x8d, 0xce, 0x53, 0x1c, 0xf8, 0xba, 0xe9, 0x39, 0xae, 0x8b, 0xcd, 0x51, 0x1a, 0xa9, 0x7b, - 0x2f, 0xda, 0x8c, 0x62, 0x8d, 0x11, 0x1c, 0x49, 0x33, 0xeb, 0x80, 0x82, 0x74, 0xd7, 0x23, 0x54, - 0x54, 0x0f, 0x12, 0x5d, 0xab, 0x1f, 0xc2, 0x6c, 0xdc, 0x43, 0x8c, 0xb0, 0xfd, 0x3b, 0x50, 0xe5, - 0x1e, 0x44, 0xef, 0x38, 0x03, 0x3b, 0x18, 0xa5, 0xa8, 0x59, 0x8e, 0xbd, 0x4a, 0x90, 0xd5, 0x6f, - 0x86, 0xcb, 0xed, 0x53, 0xeb, 0xf2, 0x2f, 0x14, 0xa8, 0x6c, 0xf4, 0x8d, 0x2e, 0xde, 0x76, 0x71, - 0x87, 0xbc, 0xe9, 0x2d, 0xf2, 0xc0, 0xe7, 0x9d, 0x3d, 0xa0, 0x07, 0x72, 0xd4, 0xc2, 0xe2, 0xd4, - 0x57, 0xa5, 0xdc, 0x9e, 0xe0, 0x30, 0x22, 0x54, 0xf9, 0xb8, 0xf1, 0xc6, 0x75, 0x28, 0x7f, 0x11, - 0x1f, 0xb0, 0x1d, 0xf9, 0x98, 0x74, 0xea, 0xf7, 0x4a, 0xb0, 0x34, 0x24, 0x7f, 0x42, 0xb7, 0x73, - 0xee, 0x40, 0x77, 0xb1, 0x67, 0x39, 0xa6, 0x50, 0x6d, 0xc7, 0x1d, 0xb4, 0x29, 0x00, 0x2d, 0x03, - 0x79, 0xd0, 0xbf, 0x39, 0x70, 0x78, 0xc4, 0x58, 0xd4, 0xca, 0x1d, 0x77, 0xf0, 0x25, 0xf2, 0x2c, - 0x68, 0xfd, 0x7d, 0xc3, 0xc3, 0x6c, 0x91, 0x33, 0xda, 0x6d, 0x0a, 0x40, 0x6f, 0xc0, 0x71, 0xf6, - 0x02, 0xd3, 0x7b, 0x56, 0xdf, 0x22, 0xae, 0x30, 0x66, 0xbf, 0x45, 0x0d, 0xb1, 0xc6, 0x87, 0xa4, - 0x6d, 0xc3, 0x66, 0x16, 0xab, 0x42, 0xd5, 0x71, 0xfa, 0xba, 0xdf, 0x71, 0x3c, 0xac, 0x1b, 0xe6, - 0x87, 0xd4, 0x58, 0x8b, 0xda, 0x8c, 0xe3, 0xf4, 0xb7, 0x09, 0xac, 0x65, 0x7e, 0x88, 0xce, 0xc0, - 0x4c, 0xc7, 0x1d, 0xf8, 0x38, 0xd0, 0xc9, 0x1f, 0x7a, 0xca, 0x55, 0xd1, 0x80, 0x81, 0x56, 0xdd, - 0x81, 0x1f, 0x43, 0xe8, 0x93, 0x3d, 0xd4, 0x74, 0x1c, 0xe1, 0x11, 0xee, 0xd3, 0x34, 0xf1, 0xfe, - 0xa0, 0x8b, 0x5d, 0xa3, 0x8b, 0x99, 0x68, 0xe2, 0xa8, 0x4a, 0x4a, 0x13, 0x3f, 0xe0, 0x28, 0x54, - 0x40, 0xad, 0xb6, 0x1f, 0x7f, 0xf4, 0xd1, 0x07, 0x30, 0x3d, 0xb0, 0xad, 0x3d, 0x0b, 0x9b, 0x8d, - 0x0a, 0xa5, 0xbd, 0x36, 0x46, 0xb6, 0x6a, 0x65, 0x97, 0x91, 0xf0, 0xe4, 0x19, 0x67, 0x80, 0x6e, - 0x43, 0x93, 0x2b, 0xca, 0x7f, 0x6e, 0xb8, 0x49, 0x6d, 0x01, 0x55, 0xc1, 0x22, 0xc3, 0xd8, 0x7e, - 0x6e, 0xb8, 0x71, 0x8d, 0x35, 0x6f, 0xc3, 0x6c, 0x9c, 0xe9, 0xa1, 0x6c, 0xe9, 0x1e, 0x54, 0xa5, - 0x41, 0x92, 0xd9, 0xa6, 0x4a, 0xf1, 0xad, 0x6f, 0x89, 0x05, 0x50, 0x26, 0x80, 0x6d, 0xeb, 0x5b, - 0x34, 0xb9, 0x4f, 0x25, 0xa3, 0x7c, 0x4a, 0x1a, 0x7b, 0x50, 0x0d, 0xa8, 0x4a, 0xf9, 0x74, 0xe2, - 0x37, 0x69, 0xe2, 0x9c, 0xfb, 0x4d, 0xf2, 0x9b, 0xc0, 0x3c, 0xa7, 0x27, 0x24, 0xa0, 0xbf, 0x09, - 0x8c, 0x66, 0x6e, 0x59, 0x1e, 0x8a, 0xfe, 0xa6, 0x5d, 0xe0, 0x67, 0xbc, 0x4c, 0xa5, 0xa2, 0xb1, - 0x07, 0xf5, 0x8f, 0x14, 0x80, 0x55, 0xc3, 0x35, 0x9e, 0x58, 0x3d, 0x2b, 0x38, 0x40, 0x17, 0xa1, - 0x6e, 0x98, 0xa6, 0xde, 0x11, 0x10, 0x0b, 0x8b, 0xba, 0xa1, 0x39, 0xc3, 0x34, 0x57, 0x63, 0x60, - 0x74, 0x19, 0xe6, 0x89, 0xd7, 0x93, 0x71, 0x59, 0x21, 0x51, 0x9d, 0x34, 0x48, 0xc8, 0x37, 0xa1, - 0x41, 0xf8, 0x1a, 0xfd, 0x27, 0x16, 0xb6, 0x03, 0x99, 0x86, 0x55, 0x18, 0x2d, 0x1a, 0xa6, 0xd9, - 0x62, 0xcd, 0x71, 0x4a, 0xf5, 0xef, 0xa6, 0xe0, 0x94, 0x3c, 0xe3, 0xc9, 0x12, 0x87, 0xdb, 0x30, - 0x9b, 0x90, 0x37, 0x55, 0x1c, 0x10, 0x8d, 0x50, 0x93, 0x70, 0x13, 0x49, 0xfc, 0x42, 0x2a, 0x89, - 0x9f, 0x59, 0x3e, 0x51, 0xfc, 0x84, 0xca, 0x27, 0x4a, 0x1f, 0xb3, 0x7c, 0x62, 0xf2, 0xa8, 0xe5, - 0x13, 0xb3, 0x63, 0x97, 0x4f, 0xbc, 0x4a, 0x8f, 0x7a, 0x44, 0x8f, 0xf4, 0x9d, 0xcd, 0x7c, 0x42, - 0x35, 0xe4, 0x6e, 0x8b, 0x62, 0xb6, 0x44, 0x99, 0xc5, 0xf4, 0x61, 0xca, 0x2c, 0xca, 0x43, 0xcb, - 0x2c, 0xce, 0xc2, 0xac, 0xed, 0xe8, 0x36, 0x7e, 0xae, 0x93, 0x69, 0xf1, 0x1b, 0x33, 0x6c, 0x8e, - 0x6c, 0x67, 0x13, 0x3f, 0x6f, 0x13, 0x08, 0x3a, 0x07, 0xb3, 0x7d, 0xc3, 0x7f, 0x8a, 0x4d, 0x5a, - 0xef, 0xe0, 0x37, 0xaa, 0xd4, 0x9e, 0x66, 0x18, 0xac, 0x4d, 0x40, 0xe8, 0x15, 0x08, 0xe5, 0xe0, - 0x48, 0x35, 0x8a, 0x54, 0x15, 0x50, 0x86, 0x16, 0x2b, 0xd9, 0x98, 0x3b, 0x62, 0xc9, 0x46, 0xfd, - 0x30, 0x25, 0x1b, 0x57, 0xa0, 0x2e, 0x7e, 0x8b, 0x9a, 0x0d, 0x76, 0x04, 0x4f, 0xcb, 0x35, 0xe6, - 0x44, 0x9b, 0xa8, 0xcb, 0x18, 0x56, 0xe1, 0x01, 0xb9, 0x15, 0x1e, 0x3f, 0x54, 0xf8, 0xc6, 0x33, - 0x5c, 0x40, 0x3c, 0xb5, 0x2c, 0x55, 0x05, 0x28, 0x47, 0xa9, 0x0a, 0x40, 0x3b, 0x43, 0xeb, 0x26, - 0x2e, 0x0e, 0xe7, 0x34, 0xaa, 0x72, 0x42, 0xfd, 0xae, 0x02, 0xa7, 0x78, 0xa0, 0x32, 0xa4, 0xaa, - 0x29, 0xc3, 0x2c, 0x95, 0x21, 0x66, 0xd9, 0xf1, 0xb0, 0x89, 0xed, 0xc0, 0x32, 0x7a, 0xba, 0xef, - 0xe2, 0x8e, 0xc8, 0x95, 0x46, 0x60, 0x1a, 0x99, 0x9c, 0x83, 0x59, 0x56, 0x06, 0xc8, 0xf7, 0x73, - 0xac, 0xda, 0x6f, 0x86, 0x56, 0x02, 0x32, 0x90, 0xea, 0xc0, 0xd2, 0x90, 0x24, 0x73, 0xa6, 0x1a, - 0x94, 0xb4, 0x1a, 0x72, 0xc7, 0x94, 0x56, 0xc3, 0xf7, 0x14, 0x38, 0x93, 0xda, 0x06, 0xbe, 0x04, - 0x8a, 0xf8, 0x2b, 0x25, 0xdc, 0xb3, 0x27, 0x4d, 0x6a, 0x35, 0x6d, 0x52, 0xaf, 0xe4, 0xed, 0x6a, - 0x33, 0x8d, 0xea, 0xf1, 0x50, 0xa3, 0xba, 0x9c, 0xbb, 0x43, 0x1e, 0xa5, 0xcf, 0x7f, 0x53, 0xe0, - 0xc4, 0x50, 0x01, 0x12, 0xf1, 0x96, 0x92, 0x8c, 0xb7, 0x78, 0xac, 0x16, 0x85, 0xc0, 0x2c, 0x56, - 0xa3, 0x51, 0x2e, 0x0f, 0x8a, 0xf4, 0xbe, 0xf1, 0xc2, 0xea, 0x0f, 0xfa, 0x3c, 0x58, 0x23, 0xec, - 0x1e, 0x31, 0xc8, 0x51, 0xa2, 0xb5, 0xab, 0xb0, 0xc0, 0x1c, 0x29, 0x0d, 0x18, 0x22, 0x0a, 0x16, - 0xb4, 0xcd, 0xb3, 0x36, 0x12, 0x3b, 0x70, 0x02, 0xb5, 0x05, 0xf3, 0xe1, 0xb0, 0x72, 0x8b, 0x6c, - 0x62, 0x45, 0x33, 0x05, 0xb9, 0x68, 0xc6, 0x86, 0xa9, 0x35, 0xfc, 0xcc, 0xea, 0xe0, 0x4f, 0xa4, - 0x7a, 0xf6, 0x2c, 0xcc, 0xb8, 0xd8, 0xeb, 0x5b, 0xbe, 0x1f, 0xbe, 0x35, 0x2b, 0x5a, 0x1c, 0xa4, - 0xfe, 0x70, 0x0a, 0xe6, 0x92, 0x26, 0x74, 0x2b, 0x55, 0xa3, 0x73, 0x2a, 0xf3, 0x2c, 0x29, 0xe3, - 0x10, 0xf5, 0xb2, 0xd8, 0x5e, 0x14, 0xd2, 0x09, 0xec, 0x70, 0x0b, 0x21, 0x76, 0x1d, 0x0d, 0x98, - 0xee, 0x38, 0xfd, 0xbe, 0x61, 0x9b, 0xa2, 0xc4, 0x99, 0x3f, 0x12, 0x9d, 0x19, 0x5e, 0x97, 0x1d, - 0x9f, 0x56, 0x34, 0xfa, 0x9b, 0xcc, 0x30, 0xd9, 0xc6, 0x5a, 0x36, 0xad, 0xf2, 0xa1, 0x93, 0x50, - 0xd1, 0x80, 0x83, 0xd6, 0x2c, 0x0f, 0x5d, 0x80, 0x12, 0xb6, 0x9f, 0x89, 0xbc, 0x8a, 0x74, 0x8c, - 0x27, 0xb6, 0x14, 0x1a, 0xc5, 0x40, 0x17, 0x61, 0xaa, 0x4f, 0xac, 0x46, 0x64, 0x82, 0xe7, 0x53, - 0xa5, 0xc0, 0x1a, 0x47, 0x40, 0xaf, 0xc3, 0xb4, 0x49, 0xe7, 0x43, 0xc4, 0xd0, 0x48, 0xaa, 0x17, - 0xa2, 0x4d, 0x9a, 0x40, 0x41, 0xef, 0x85, 0x67, 0xc8, 0x95, 0x74, 0x72, 0x27, 0xa1, 0xe6, 0xcc, - 0xe3, 0xe3, 0x4d, 0x79, 0x23, 0x06, 0xe9, 0x93, 0xe8, 0x24, 0x97, 0xfc, 0x3c, 0xd1, 0x09, 0x28, - 0xf7, 0x9c, 0x2e, 0x33, 0x8e, 0x19, 0x56, 0x1f, 0xdf, 0x73, 0xba, 0xd4, 0x36, 0x16, 0x60, 0xd2, - 0x0f, 0x4c, 0xcb, 0xa6, 0xa1, 0x48, 0x59, 0x63, 0x0f, 0x64, 0x0d, 0xd2, 0x1f, 0xba, 0x63, 0x77, - 0x70, 0xa3, 0x4a, 0x9b, 0x2a, 0x14, 0xb2, 0x65, 0x77, 0xe8, 0x96, 0x2c, 0x08, 0x0e, 0x1a, 0x35, - 0x0a, 0x27, 0x3f, 0xa3, 0xa3, 0xdc, 0xb9, 0x21, 0x47, 0xb9, 0x09, 0x81, 0x33, 0x8e, 0x72, 0xeb, - 0x43, 0x8f, 0x72, 0x93, 0xb4, 0x2f, 0x43, 0x29, 0xd1, 0x8f, 0x14, 0x58, 0x5c, 0xa5, 0xf9, 0xc0, - 0x98, 0x0b, 0x3b, 0x4c, 0x79, 0xcb, 0x9b, 0x61, 0xcd, 0x51, 0x46, 0xe1, 0x48, 0x72, 0xc4, 0xa2, - 0xe4, 0x68, 0x15, 0x6a, 0x82, 0x2d, 0x27, 0x2e, 0x8e, 0x51, 0xb0, 0x54, 0xf5, 0xe3, 0x8f, 0xea, - 0x1d, 0x58, 0x4a, 0x49, 0xce, 0xb3, 0x32, 0xc9, 0xe2, 0x75, 0x26, 0x78, 0xbc, 0x78, 0x5d, 0xbd, - 0x0d, 0xc7, 0xb7, 0x03, 0xc3, 0x0b, 0x52, 0xc3, 0x1e, 0x83, 0x96, 0x96, 0x22, 0xc9, 0xb4, 0xbc, - 0x5a, 0x68, 0x1b, 0x16, 0xb6, 0x03, 0xc7, 0x3d, 0x02, 0x53, 0xe2, 0x3f, 0xc8, 0xc8, 0x9d, 0x81, - 0x78, 0x1d, 0x88, 0x47, 0x75, 0x89, 0x15, 0x4e, 0xa5, 0x7b, 0xfb, 0x02, 0x2c, 0xb2, 0xba, 0xa5, - 0xa3, 0x0c, 0xe2, 0x84, 0xa8, 0x9a, 0x4a, 0xf3, 0xbd, 0x0f, 0xc7, 0xa4, 0x73, 0x62, 0x5e, 0x53, - 0x70, 0x4d, 0xae, 0x29, 0x18, 0x7e, 0x24, 0x1f, 0x96, 0x14, 0x7c, 0xbf, 0x10, 0xf3, 0xc7, 0x43, - 0x12, 0x8b, 0x6f, 0xc9, 0x15, 0x05, 0x67, 0x86, 0x73, 0x95, 0x0a, 0x0a, 0xd2, 0xd6, 0x59, 0xcc, - 0xb0, 0xce, 0xdd, 0x54, 0xd6, 0xb2, 0x94, 0xae, 0xd2, 0x48, 0x48, 0xf8, 0xa9, 0xe4, 0x2b, 0x1f, - 0xb2, 0xaa, 0x83, 0xb0, 0xeb, 0x30, 0x55, 0xf9, 0x66, 0x22, 0x55, 0xb9, 0x9c, 0x23, 0x69, 0x98, - 0xa4, 0xfc, 0x7e, 0x09, 0x2a, 0x61, 0x5b, 0x4a, 0xc3, 0x69, 0x55, 0x15, 0x32, 0x54, 0x15, 0x7f, - 0x4f, 0x16, 0x8f, 0xf8, 0x9e, 0x2c, 0x8d, 0xf1, 0x9e, 0x5c, 0x86, 0x0a, 0xfd, 0x41, 0x8b, 0xb7, - 0xd9, 0x7b, 0xaf, 0x4c, 0x01, 0x1a, 0xde, 0x8b, 0x4c, 0x6c, 0x6a, 0x4c, 0x13, 0x4b, 0x54, 0x38, - 0x4c, 0x27, 0x2b, 0x1c, 0x6e, 0x85, 0xef, 0xb0, 0x72, 0x3a, 0xa3, 0x10, 0x72, 0xcc, 0x7c, 0x7b, - 0x25, 0x8e, 0x11, 0x2b, 0xe9, 0x63, 0xc4, 0x88, 0xfe, 0xa5, 0xcd, 0x78, 0x6e, 0xb1, 0xb2, 0x85, - 0xb8, 0x9d, 0x71, 0x1f, 0xf9, 0x96, 0x94, 0x31, 0x52, 0xd2, 0xf7, 0x67, 0x22, 0xbf, 0x10, 0xcf, - 0x12, 0xed, 0xc2, 0xa2, 0x34, 0x11, 0x51, 0x39, 0xe4, 0x78, 0x3e, 0x6e, 0x48, 0x2d, 0xe4, 0x1f, - 0xc4, 0x23, 0xb7, 0x21, 0x85, 0x7f, 0xb7, 0x52, 0xf9, 0xf0, 0xb1, 0x2d, 0xf4, 0x9a, 0x5c, 0x3a, - 0x73, 0x68, 0xbb, 0x4a, 0x55, 0xce, 0xd0, 0xc8, 0xc2, 0xf0, 0x78, 0x33, 0x8b, 0xa1, 0x2b, 0x1c, - 0xd2, 0xa2, 0x01, 0xfc, 0x9e, 0x65, 0x5b, 0xfe, 0x3e, 0x6b, 0x9f, 0x62, 0x01, 0xbc, 0x00, 0xb5, - 0xe8, 0xe1, 0x1d, 0x7e, 0x61, 0x05, 0x7a, 0xc7, 0x31, 0x31, 0xb5, 0xda, 0x49, 0xad, 0x4c, 0x00, - 0xab, 0x8e, 0x89, 0xa3, 0xf5, 0x54, 0x3e, 0xec, 0x7a, 0xaa, 0x24, 0xd6, 0xd3, 0x22, 0x4c, 0x79, - 0xd8, 0xf0, 0x1d, 0x9b, 0xed, 0xe9, 0x35, 0xfe, 0x44, 0x26, 0xa2, 0x8f, 0x7d, 0x9f, 0xf4, 0xc1, - 0x03, 0x29, 0xfe, 0x18, 0x0b, 0xfa, 0x66, 0x73, 0x82, 0xbe, 0x9c, 0xb2, 0xc2, 0x44, 0xd0, 0x57, - 0xcd, 0x09, 0xfa, 0xc6, 0xaa, 0x2a, 0x8c, 0xc2, 0xdb, 0xda, 0xa8, 0xf0, 0x36, 0x1e, 0x1f, 0xce, - 0xc9, 0xf1, 0xe1, 0x9d, 0xf8, 0x46, 0xb2, 0x9e, 0x4e, 0xe8, 0xe6, 0x5f, 0x56, 0xf8, 0x0c, 0x17, - 0xf0, 0x3f, 0x2b, 0xb0, 0x94, 0x5a, 0x70, 0x7c, 0x09, 0xbf, 0x99, 0xa8, 0x57, 0x5c, 0xce, 0xd1, - 0x72, 0x58, 0xae, 0xd8, 0x92, 0xca, 0x15, 0xaf, 0xe4, 0x91, 0x7c, 0xe2, 0xd5, 0x8a, 0xdf, 0x51, - 0x00, 0x65, 0x6c, 0x95, 0x6f, 0x89, 0xa8, 0xfb, 0x10, 0x87, 0x46, 0x3c, 0xf0, 0x7e, 0x2f, 0x0a, - 0xbc, 0x0b, 0x87, 0x39, 0x1e, 0x08, 0xcb, 0x28, 0x7e, 0x51, 0x80, 0x33, 0xbb, 0xae, 0x99, 0x08, - 0x23, 0x39, 0xd6, 0xf8, 0x9e, 0xed, 0x96, 0x5c, 0x03, 0x72, 0xc4, 0x21, 0x14, 0x8f, 0x32, 0x04, - 0xf4, 0x8d, 0xac, 0x2a, 0x9d, 0x3b, 0x52, 0x3e, 0x2d, 0x7f, 0x80, 0xbf, 0xe1, 0x2c, 0x98, 0x0a, - 0x67, 0x87, 0x0b, 0xc0, 0x43, 0xce, 0xff, 0x0f, 0x73, 0xeb, 0x2f, 0x70, 0x67, 0xfb, 0xc0, 0xee, - 0x1c, 0x42, 0xeb, 0x75, 0x28, 0x76, 0xfa, 0x26, 0x4f, 0x12, 0x90, 0x9f, 0xf1, 0x28, 0xba, 0x28, - 0x47, 0xd1, 0x3a, 0xd4, 0xa3, 0x1e, 0xf8, 0x02, 0x5a, 0x24, 0x0b, 0xc8, 0x24, 0xc8, 0x84, 0xf9, - 0xac, 0xc6, 0x9f, 0x38, 0x1c, 0x7b, 0xec, 0x26, 0x04, 0x83, 0x63, 0xcf, 0x93, 0xbd, 0x76, 0x51, - 0xf6, 0xda, 0xea, 0x0f, 0x14, 0x98, 0x21, 0x3d, 0x7c, 0x2c, 0xf9, 0xf9, 0x96, 0xb4, 0x18, 0x6d, - 0x49, 0xc3, 0x9d, 0x6d, 0x29, 0xbe, 0xb3, 0x8d, 0x24, 0x9f, 0xa4, 0xe0, 0xb4, 0xe4, 0x53, 0x21, - 0x1c, 0x7b, 0x9e, 0x7a, 0x16, 0x66, 0x99, 0x6c, 0x7c, 0xe4, 0x75, 0x28, 0x0e, 0xbc, 0x9e, 0x98, - 0xbf, 0x81, 0xd7, 0x53, 0xbf, 0xad, 0x40, 0xb5, 0x15, 0x04, 0x46, 0x67, 0xff, 0x10, 0x03, 0x08, - 0x85, 0x2b, 0xc4, 0x85, 0x4b, 0x0f, 0x22, 0x12, 0xb7, 0x34, 0x44, 0xdc, 0x49, 0x49, 0x5c, 0x15, - 0x6a, 0x42, 0x96, 0xa1, 0x02, 0x6f, 0x02, 0x6a, 0x3b, 0x5e, 0xf0, 0xbe, 0xe3, 0x3d, 0x37, 0x3c, - 0xf3, 0x70, 0xbb, 0x56, 0x04, 0x25, 0x7e, 0x53, 0xbc, 0x78, 0x61, 0x52, 0xa3, 0xbf, 0xd5, 0xd7, - 0xe0, 0x98, 0xc4, 0x6f, 0x68, 0xc7, 0xb7, 0x61, 0x86, 0xbe, 0x85, 0xf9, 0x86, 0xe6, 0x72, 0x3c, - 0x09, 0x3d, 0xe2, 0x6d, 0xad, 0xae, 0xc1, 0x3c, 0x89, 0xc7, 0x28, 0x3c, 0xf4, 0x2f, 0x57, 0x13, - 0x31, 0xff, 0x52, 0x8a, 0x45, 0x22, 0xde, 0xff, 0x95, 0x02, 0x93, 0x14, 0x9e, 0x8a, 0x91, 0x96, - 0xc9, 0x7b, 0xce, 0x75, 0xf4, 0xc0, 0xe8, 0x86, 0xb7, 0xf0, 0x09, 0x60, 0xc7, 0xe8, 0xd2, 0xc4, - 0x06, 0x6d, 0x34, 0xad, 0x2e, 0xf6, 0x03, 0x91, 0x28, 0x9b, 0x21, 0xb0, 0x35, 0x06, 0x22, 0x8a, - 0xa1, 0xf9, 0xc4, 0x12, 0x4d, 0x1b, 0xd2, 0xdf, 0xe8, 0x02, 0xbb, 0x44, 0x97, 0x9f, 0x1d, 0xa2, - 0x97, 0xeb, 0x9a, 0x50, 0x4e, 0xa4, 0x75, 0xc2, 0x67, 0x74, 0x11, 0x4a, 0xf4, 0x98, 0x78, 0x3a, - 0x4f, 0x4b, 0x14, 0x85, 0x58, 0x85, 0x6b, 0xd9, 0x36, 0x36, 0x69, 0x00, 0x54, 0xd6, 0xf8, 0x93, - 0xfa, 0x1e, 0xa0, 0xb8, 0xf2, 0xf8, 0x04, 0x5d, 0x84, 0x29, 0xaa, 0x5b, 0x11, 0xc4, 0xce, 0xa7, - 0x58, 0x6b, 0x1c, 0x41, 0xfd, 0x3a, 0x20, 0xd6, 0x97, 0x14, 0xb8, 0x1e, 0x66, 0x02, 0x73, 0x42, - 0xd8, 0xbf, 0x56, 0xe0, 0x98, 0xc4, 0x9d, 0xcb, 0xf7, 0x9a, 0xcc, 0x3e, 0x43, 0x3c, 0xce, 0xfa, - 0x1d, 0xe9, 0xcd, 0x7c, 0x31, 0x2d, 0xc6, 0x6f, 0xe8, 0xad, 0xfc, 0x53, 0x05, 0xa0, 0x35, 0x08, - 0xf6, 0xf9, 0x81, 0x69, 0x7c, 0x12, 0x95, 0xc4, 0x24, 0x36, 0xa1, 0xec, 0x1a, 0xbe, 0xff, 0xdc, - 0xf1, 0xc4, 0x26, 0x32, 0x7c, 0xa6, 0xc7, 0x9c, 0x03, 0xfe, 0x31, 0x80, 0x8a, 0x46, 0x7f, 0xa3, - 0x57, 0xa0, 0xc6, 0x3e, 0x0f, 0xa1, 0x1b, 0xa6, 0xe9, 0x89, 0xc2, 0xb6, 0x8a, 0x56, 0x65, 0xd0, - 0x16, 0x03, 0x12, 0x34, 0x8b, 0x26, 0x0d, 0x82, 0x03, 0x3d, 0x70, 0x9e, 0x62, 0x9b, 0x6f, 0x0c, - 0xab, 0x02, 0xba, 0x43, 0x80, 0x2c, 0xeb, 0xd6, 0xb5, 0xfc, 0xc0, 0x13, 0x68, 0x22, 0x77, 0xc8, - 0xa1, 0x14, 0x4d, 0xfd, 0x4b, 0x05, 0xea, 0xed, 0x41, 0xaf, 0xc7, 0x94, 0x7b, 0x94, 0x49, 0xbe, - 0xc4, 0x87, 0x52, 0x48, 0x9b, 0x7c, 0xa4, 0x28, 0x3e, 0xc4, 0x4f, 0xe4, 0x2c, 0xeb, 0x1a, 0xcc, - 0xc7, 0x24, 0xe6, 0x86, 0x23, 0x45, 0xf6, 0x8a, 0x1c, 0xd9, 0xab, 0x2d, 0x40, 0xec, 0xf8, 0xe6, - 0xc8, 0xa3, 0x54, 0x8f, 0xc3, 0x31, 0x89, 0x05, 0x7f, 0x15, 0x5f, 0x82, 0x2a, 0x2f, 0xb2, 0xe2, - 0x06, 0x71, 0x02, 0xca, 0xc4, 0xa5, 0x76, 0x2c, 0x53, 0x14, 0x0a, 0x4c, 0xbb, 0x8e, 0xb9, 0x6a, - 0x99, 0x9e, 0xfa, 0x25, 0xa8, 0xf2, 0x9b, 0xd5, 0x1c, 0xf7, 0x2e, 0xd4, 0x78, 0x35, 0xa3, 0x2e, - 0x5d, 0x45, 0x3c, 0x91, 0x51, 0xc9, 0x27, 0x54, 0x61, 0xc7, 0x1f, 0xd5, 0x6f, 0x40, 0x93, 0x45, - 0x0b, 0x12, 0x63, 0x31, 0xc0, 0xbb, 0x20, 0xee, 0x04, 0xe4, 0xf0, 0x97, 0x29, 0xab, 0x5e, 0xfc, - 0x51, 0x3d, 0x05, 0xcb, 0x99, 0xfc, 0xf9, 0xe8, 0x5d, 0xa8, 0x47, 0x0d, 0xec, 0xbe, 0x5c, 0x58, - 0xfd, 0xa0, 0xc4, 0xaa, 0x1f, 0x16, 0xc3, 0xd8, 0xbb, 0x20, 0xde, 0x5c, 0x34, 0xbc, 0x8e, 0x76, - 0x5c, 0xc5, 0x61, 0x3b, 0xae, 0x92, 0xb4, 0xe3, 0x52, 0x1f, 0x85, 0x3a, 0xe4, 0xfb, 0xde, 0x3b, - 0x74, 0x67, 0xce, 0xfa, 0x16, 0x4e, 0xed, 0x64, 0xf6, 0xf8, 0x18, 0x92, 0x16, 0xc3, 0x57, 0x2f, - 0x42, 0x55, 0x76, 0x6f, 0x31, 0x8f, 0xa5, 0xa4, 0x3c, 0x56, 0x2d, 0xe1, 0xac, 0xde, 0x48, 0x6c, - 0x29, 0xb2, 0xf4, 0x9a, 0xd8, 0x50, 0xdc, 0x94, 0xdc, 0xd6, 0xe7, 0xa4, 0x4c, 0xf5, 0x6f, 0xc8, - 0x63, 0x2d, 0x70, 0x3f, 0xfe, 0xbe, 0x4f, 0xe8, 0xf9, 0x40, 0xd5, 0xf3, 0x30, 0xb3, 0x3b, 0xec, - 0xfb, 0x16, 0x25, 0x51, 0x5e, 0xf5, 0x36, 0x2c, 0xbc, 0x6f, 0xf5, 0xb0, 0x7f, 0xe0, 0x07, 0xb8, - 0xbf, 0x41, 0xdd, 0xcb, 0x9e, 0x85, 0x3d, 0x74, 0x1a, 0x80, 0xee, 0x22, 0x5d, 0xc7, 0x0a, 0xef, - 0xf4, 0xc7, 0x20, 0xea, 0xcf, 0x15, 0x98, 0x8b, 0x08, 0xc7, 0x29, 0x74, 0x7b, 0x0b, 0x26, 0xf7, - 0x7c, 0x71, 0xda, 0x96, 0xc8, 0x25, 0x64, 0x89, 0xa0, 0x95, 0xf6, 0xfc, 0x0d, 0x13, 0xbd, 0x0d, - 0x30, 0xf0, 0xb1, 0xc9, 0xb3, 0x73, 0x23, 0x4a, 0x0f, 0x2b, 0x04, 0x95, 0xe5, 0xf7, 0x6e, 0xc2, - 0x8c, 0x65, 0x3b, 0x26, 0xa6, 0x99, 0x5b, 0x73, 0x54, 0xd9, 0x21, 0x30, 0xdc, 0x5d, 0x1f, 0x9b, - 0xea, 0x9f, 0x46, 0xf9, 0xd7, 0x97, 0x79, 0x84, 0xaa, 0xce, 0xdf, 0xaf, 0x62, 0xd6, 0xb9, 0xc9, - 0x3e, 0x80, 0x79, 0xe6, 0x26, 0xf7, 0xc2, 0x2e, 0x33, 0xaf, 0x63, 0x24, 0xc6, 0xa6, 0xd5, 0x2d, - 0x1e, 0x59, 0x09, 0x22, 0xf5, 0x36, 0x1c, 0x4f, 0xd4, 0x47, 0x8f, 0x7f, 0x9c, 0xfe, 0x41, 0xe2, - 0x5c, 0x2c, 0x5a, 0x52, 0xd7, 0xe4, 0x6b, 0x39, 0x79, 0x95, 0xec, 0xfc, 0x86, 0xc8, 0x2e, 0x9c, - 0x90, 0x0e, 0xed, 0x24, 0x59, 0x6e, 0x26, 0x82, 0xc5, 0xb3, 0xc3, 0xf9, 0x25, 0xa2, 0xc6, 0xff, - 0x54, 0x60, 0x21, 0x0b, 0xe1, 0x88, 0x07, 0xc6, 0x5f, 0x1b, 0x72, 0xa5, 0xef, 0xcd, 0x51, 0x02, - 0x7d, 0x2a, 0x07, 0xec, 0x9b, 0xec, 0x42, 0xd0, 0xe8, 0x39, 0x29, 0x8e, 0x37, 0x27, 0xbf, 0x2a, - 0xc4, 0x92, 0x22, 0x39, 0x97, 0x76, 0x3e, 0xc6, 0x21, 0xe5, 0x6a, 0xe2, 0xce, 0xce, 0xe5, 0x4c, - 0xc2, 0x11, 0x57, 0x76, 0xb4, 0xac, 0xc3, 0x80, 0x6b, 0xa3, 0x38, 0xbd, 0xb4, 0xe7, 0xd7, 0xff, - 0xa5, 0x40, 0x4d, 0x9e, 0x10, 0xf4, 0x5e, 0xc6, 0x85, 0x9d, 0x33, 0x23, 0x06, 0x28, 0xdd, 0xd7, - 0xe1, 0x17, 0x64, 0x0a, 0xe3, 0x5f, 0x90, 0x29, 0x8e, 0x77, 0x41, 0xe6, 0x1e, 0xd4, 0x9e, 0x7b, - 0x56, 0x60, 0x3c, 0xe9, 0x61, 0xbd, 0x67, 0x1c, 0x60, 0x8f, 0x7b, 0xe1, 0x5c, 0x37, 0x54, 0x15, - 0x24, 0x0f, 0x09, 0x85, 0xfa, 0xed, 0x02, 0x1c, 0xcf, 0xbc, 0xab, 0xf1, 0xf1, 0xc7, 0x7d, 0x25, - 0x3e, 0xee, 0xc3, 0x5c, 0x80, 0x29, 0x1e, 0xea, 0x02, 0xcc, 0xc6, 0x10, 0x2d, 0x64, 0xa5, 0xc4, - 0x47, 0x28, 0xe3, 0x6f, 0x14, 0x28, 0x0b, 0xa1, 0x46, 0x5e, 0x47, 0x59, 0x1a, 0x10, 0x34, 0x9d, - 0x56, 0x23, 0xdb, 0x86, 0xed, 0xe8, 0x3e, 0x26, 0x61, 0xd1, 0xc8, 0xe2, 0xff, 0x05, 0x4a, 0xb7, - 0xea, 0x78, 0x78, 0xd3, 0xb0, 0x9d, 0x6d, 0x46, 0x84, 0x5a, 0x50, 0x67, 0xfc, 0x28, 0x2b, 0xc2, - 0x74, 0xe4, 0xab, 0xaa, 0x46, 0x09, 0x08, 0x13, 0xc2, 0xcc, 0x57, 0xff, 0x41, 0x81, 0xb9, 0x84, - 0x66, 0x7f, 0xfb, 0x06, 0xf1, 0x27, 0x45, 0x98, 0x89, 0xcd, 0xf2, 0x88, 0x01, 0xac, 0xc2, 0xbc, - 0x28, 0x6b, 0xf1, 0x71, 0x30, 0xde, 0xe5, 0x8b, 0x39, 0x4e, 0xb1, 0x8d, 0x03, 0x16, 0xc9, 0xdc, - 0x85, 0x39, 0xe3, 0x99, 0x61, 0xf5, 0xa8, 0x05, 0x8d, 0x15, 0x24, 0xd4, 0x42, 0xfc, 0x30, 0x16, - 0x62, 0xe3, 0x1e, 0xeb, 0x0a, 0x06, 0x50, 0xdc, 0xe8, 0x26, 0x8c, 0xef, 0xc7, 0x4a, 0xa3, 0x72, - 0x6f, 0xc2, 0xf8, 0x7e, 0xd8, 0x1f, 0x2d, 0xc5, 0xa6, 0x57, 0x80, 0x7c, 0xfe, 0x2d, 0x87, 0xe1, - 0xfd, 0x11, 0xdc, 0xf7, 0x29, 0x2a, 0x51, 0x58, 0xdf, 0xf8, 0xd0, 0xf1, 0xf4, 0x38, 0xfd, 0xf4, - 0x08, 0x85, 0x51, 0x8a, 0x76, 0xc8, 0x44, 0xfd, 0x6f, 0x05, 0x50, 0x7a, 0x41, 0xfe, 0xd6, 0x4c, - 0x55, 0x7c, 0xe8, 0xa5, 0xb1, 0x55, 0xa7, 0xbe, 0x0b, 0x27, 0x34, 0xec, 0xb8, 0xd8, 0x0e, 0xfd, - 0xde, 0x43, 0xa7, 0x7b, 0x88, 0x88, 0xed, 0x24, 0x34, 0xb3, 0xe8, 0xf9, 0x3e, 0x70, 0x00, 0xcd, - 0xd5, 0x7d, 0xdc, 0x79, 0x4a, 0xa3, 0xff, 0xa3, 0xd4, 0x73, 0x34, 0xa1, 0xdc, 0x73, 0x3a, 0xec, - 0x1b, 0x8d, 0xfc, 0xa8, 0x44, 0x3c, 0xe7, 0x9c, 0x52, 0x9f, 0x82, 0xe5, 0xcc, 0x6e, 0xb9, 0x54, - 0x08, 0xea, 0xf7, 0x71, 0xb0, 0xfe, 0x0c, 0xdb, 0x61, 0x40, 0xa8, 0xfe, 0xaf, 0x12, 0x0b, 0x3d, - 0x69, 0xd3, 0x21, 0xea, 0x60, 0x50, 0x1b, 0x16, 0x22, 0x14, 0x4c, 0xa8, 0xd9, 0x37, 0xda, 0xd8, - 0xd7, 0x0d, 0xb3, 0x73, 0x64, 0xb4, 0x13, 0xfa, 0x69, 0x36, 0xd4, 0x49, 0xc1, 0x12, 0x99, 0xd3, - 0x62, 0x32, 0x73, 0xda, 0x86, 0x85, 0x78, 0x70, 0x19, 0x06, 0x4b, 0xa5, 0xb1, 0x6e, 0x38, 0x23, - 0x37, 0x05, 0xbb, 0xf4, 0x2a, 0x94, 0xc5, 0x67, 0x41, 0xd1, 0x34, 0x14, 0x77, 0x56, 0xdb, 0xf5, - 0x09, 0xf2, 0x63, 0x77, 0xad, 0x5d, 0x57, 0x50, 0x19, 0x4a, 0xdb, 0xab, 0x3b, 0xed, 0x7a, 0xe1, - 0x52, 0x1f, 0xea, 0xc9, 0x2f, 0x63, 0xa2, 0x25, 0x38, 0xd6, 0xd6, 0xb6, 0xda, 0xad, 0xfb, 0xad, - 0x9d, 0x8d, 0xad, 0x4d, 0xbd, 0xad, 0x6d, 0x3c, 0x6e, 0xed, 0xac, 0xd7, 0x27, 0xd0, 0x39, 0x38, - 0x15, 0x6f, 0x78, 0xb0, 0xb5, 0xbd, 0xa3, 0xef, 0x6c, 0xe9, 0xab, 0x5b, 0x9b, 0x3b, 0xad, 0x8d, - 0xcd, 0x75, 0xad, 0xae, 0xa0, 0x53, 0x70, 0x22, 0x8e, 0x72, 0x6f, 0x63, 0x6d, 0x43, 0x5b, 0x5f, - 0x25, 0xbf, 0x5b, 0x0f, 0xeb, 0x85, 0x4b, 0xef, 0x40, 0x55, 0xfa, 0xc4, 0x23, 0x11, 0xa9, 0xbd, - 0xb5, 0x56, 0x9f, 0x40, 0x55, 0xa8, 0xc4, 0xf9, 0x94, 0xa1, 0xb4, 0xb9, 0xb5, 0xb6, 0x5e, 0x2f, - 0x20, 0x80, 0xa9, 0x9d, 0x96, 0x76, 0x7f, 0x7d, 0xa7, 0x5e, 0xbc, 0x74, 0x3b, 0x79, 0x55, 0x19, - 0xa3, 0x79, 0xa8, 0x6e, 0xb7, 0x36, 0xd7, 0xee, 0x6d, 0x7d, 0x45, 0xd7, 0xd6, 0x5b, 0x6b, 0x5f, - 0xad, 0x4f, 0xa0, 0x05, 0xa8, 0x0b, 0xd0, 0xe6, 0xd6, 0x0e, 0x83, 0x2a, 0x97, 0x9e, 0x26, 0x82, - 0x26, 0x8c, 0x8e, 0xc3, 0x7c, 0xd8, 0xa5, 0xbe, 0xaa, 0xad, 0xb7, 0x76, 0xd6, 0x89, 0x24, 0x12, - 0x58, 0xdb, 0xdd, 0xdc, 0xdc, 0xd8, 0xbc, 0x5f, 0x57, 0x08, 0xd7, 0x08, 0xbc, 0xfe, 0x95, 0x0d, - 0x82, 0x5c, 0x90, 0x91, 0x77, 0x37, 0xbf, 0xb8, 0xb9, 0xf5, 0xe5, 0xcd, 0x7a, 0xf1, 0xd2, 0xef, - 0xc6, 0x93, 0x7a, 0x91, 0x19, 0x2c, 0xc3, 0x52, 0xaa, 0x47, 0x7d, 0xfd, 0xf1, 0xfa, 0xe6, 0x4e, - 0x7d, 0x42, 0x6e, 0xdc, 0xde, 0x69, 0x69, 0x51, 0xa3, 0x92, 0x6c, 0xdc, 0x6a, 0xb7, 0xc3, 0xc6, - 0x82, 0xdc, 0xb8, 0xb6, 0xfe, 0x70, 0x3d, 0xa2, 0x2c, 0x5e, 0xff, 0x71, 0xf4, 0xa5, 0xbf, 0x6d, - 0xec, 0xd1, 0xc2, 0xd3, 0x35, 0x98, 0x16, 0xdf, 0xbd, 0x95, 0xa2, 0x7c, 0xf9, 0x3b, 0xbd, 0xcd, - 0xe5, 0xcc, 0x36, 0xbe, 0xea, 0x26, 0xd0, 0x63, 0x7a, 0x46, 0x13, 0xfb, 0xae, 0xc7, 0xd9, 0xc4, - 0xb9, 0x48, 0xea, 0xf3, 0x21, 0xcd, 0x73, 0x39, 0x18, 0x21, 0xdf, 0xaf, 0x42, 0x4d, 0xfe, 0xa8, - 0x15, 0x3a, 0x27, 0x9f, 0x9f, 0x64, 0x7c, 0x2f, 0xab, 0xa9, 0xe6, 0xa1, 0x84, 0xac, 0x75, 0xa8, - 0x27, 0x3f, 0x6a, 0x85, 0xa4, 0xb4, 0xe4, 0x90, 0x6f, 0x66, 0x35, 0x3f, 0x97, 0x8f, 0x14, 0xef, - 0x20, 0xf5, 0xad, 0xa6, 0xf3, 0xf9, 0x5f, 0xbf, 0xc9, 0xe8, 0x60, 0xd8, 0x27, 0x72, 0x98, 0x72, - 0xe4, 0x4f, 0x2f, 0xa0, 0xc4, 0xe7, 0x91, 0x32, 0xbe, 0xda, 0x22, 0x2b, 0x27, 0xfb, 0x8b, 0x1d, - 0xea, 0x04, 0xfa, 0x7f, 0x30, 0x97, 0xa8, 0x1d, 0x44, 0x12, 0x61, 0x76, 0x49, 0x64, 0xf3, 0x7c, - 0x2e, 0x8e, 0x3c, 0xab, 0xf1, 0xfa, 0xc0, 0xe4, 0xac, 0x66, 0xd4, 0x1d, 0x26, 0x67, 0x35, 0xb3, - 0xbc, 0x90, 0x1a, 0xa2, 0x54, 0x0b, 0x28, 0x1b, 0x62, 0x56, 0xed, 0x61, 0xf3, 0x5c, 0x0e, 0x46, - 0x5c, 0x21, 0x89, 0x6a, 0x40, 0x59, 0x21, 0xd9, 0x75, 0x86, 0xcd, 0xf3, 0xb9, 0x38, 0xc9, 0x99, - 0x8c, 0xaa, 0x90, 0xd2, 0x33, 0x99, 0xaa, 0x84, 0x4b, 0xcf, 0x64, 0xba, 0x88, 0x89, 0xcf, 0x64, - 0xa2, 0x6e, 0x48, 0xcd, 0xad, 0x69, 0xc8, 0x9a, 0xc9, 0xec, 0xba, 0x07, 0x75, 0x02, 0x3d, 0x87, - 0xc6, 0xb0, 0xd4, 0x35, 0xba, 0x7c, 0x88, 0x0c, 0x7b, 0xf3, 0xf5, 0xf1, 0x90, 0xc3, 0x8e, 0x31, - 0xa0, 0x74, 0x70, 0x82, 0x5e, 0x91, 0xd5, 0x3d, 0x24, 0xf8, 0x69, 0xbe, 0x3a, 0x0a, 0x2d, 0xec, - 0xe6, 0x3e, 0x94, 0x45, 0x52, 0x1c, 0x49, 0x2e, 0x30, 0x91, 0x8c, 0x6f, 0x9e, 0xcc, 0x6e, 0x0c, - 0x19, 0x7d, 0x01, 0x4a, 0x04, 0x8a, 0x96, 0x92, 0x78, 0x82, 0x41, 0x23, 0xdd, 0x10, 0x12, 0xb7, - 0x60, 0x8a, 0x65, 0x7b, 0x91, 0x74, 0xdc, 0x2c, 0x65, 0xa3, 0x9b, 0xcd, 0xac, 0xa6, 0x90, 0x45, - 0x9b, 0x7d, 0x45, 0x9c, 0x27, 0x6f, 0xd1, 0xe9, 0xe4, 0xe7, 0x2c, 0xe5, 0x2c, 0x71, 0xf3, 0xcc, - 0xd0, 0xf6, 0xb8, 0xcd, 0x26, 0x36, 0xe0, 0xe7, 0x72, 0x4e, 0x89, 0xb2, 0x6c, 0x36, 0xfb, 0xec, - 0x89, 0x4d, 0x6e, 0xfa, 0x6c, 0x4a, 0x9e, 0xdc, 0xa1, 0xe7, 0x7f, 0xf2, 0xe4, 0x0e, 0x3f, 0xe2, - 0x62, 0x4b, 0x23, 0xf9, 0x0d, 0x0c, 0x35, 0xef, 0xfb, 0x34, 0x59, 0x4b, 0x63, 0xc8, 0x77, 0x6f, - 0xd4, 0x09, 0xb4, 0x0f, 0xc7, 0x32, 0x3e, 0x8c, 0x83, 0x5e, 0x1d, 0xee, 0x7f, 0xa5, 0x5e, 0x5e, - 0x1b, 0x89, 0x17, 0xef, 0x29, 0x23, 0x63, 0x23, 0xf7, 0x34, 0x3c, 0x65, 0x24, 0xf7, 0x94, 0x97, - 0xfa, 0xa1, 0x86, 0xc8, 0x7d, 0xc8, 0x89, 0xac, 0x34, 0x46, 0x86, 0x21, 0xa6, 0x3c, 0xc6, 0x3e, - 0x1c, 0xcb, 0x08, 0xe0, 0x65, 0x61, 0x87, 0x6f, 0x2c, 0x64, 0x61, 0xf3, 0x76, 0x02, 0x13, 0xe8, - 0x6b, 0x80, 0xee, 0xe3, 0x40, 0x8e, 0xbc, 0x7c, 0x24, 0x2d, 0xd4, 0xe4, 0x5e, 0x61, 0x88, 0x7d, - 0x4a, 0x9b, 0x06, 0x75, 0xe2, 0x9a, 0x72, 0xfd, 0x8f, 0x8b, 0x30, 0xcb, 0xf2, 0x85, 0x3c, 0x8c, - 0x7a, 0x04, 0x10, 0xa5, 0xde, 0xd1, 0xa9, 0xe4, 0xe4, 0x49, 0xf5, 0x0c, 0xcd, 0xd3, 0xc3, 0x9a, - 0xe3, 0xcb, 0x35, 0x96, 0xd2, 0x96, 0x97, 0x6b, 0x3a, 0x43, 0x2f, 0x2f, 0xd7, 0x8c, 0x5c, 0xb8, - 0x3a, 0x81, 0x3e, 0x80, 0x4a, 0x98, 0x41, 0x95, 0x95, 0x90, 0x4c, 0x05, 0x37, 0x4f, 0x0d, 0x69, - 0x8d, 0x4b, 0x17, 0x4b, 0x8c, 0xca, 0xd2, 0xa5, 0x93, 0xae, 0xb2, 0x74, 0x59, 0x19, 0xd5, 0x68, - 0xbc, 0x2c, 0x75, 0x91, 0x31, 0x5e, 0x29, 0x93, 0x95, 0x31, 0x5e, 0x39, 0xe7, 0xa1, 0x4e, 0xdc, - 0xbb, 0xfb, 0x93, 0x5f, 0x9e, 0x56, 0x7e, 0xfe, 0xcb, 0xd3, 0x13, 0xbf, 0xf3, 0xd1, 0x69, 0xe5, - 0x27, 0x1f, 0x9d, 0x56, 0x7e, 0xf6, 0xd1, 0x69, 0xe5, 0x17, 0x1f, 0x9d, 0x56, 0xbe, 0xf3, 0x1f, - 0xa7, 0x27, 0xbe, 0xa6, 0x3e, 0xbd, 0xe9, 0xaf, 0x58, 0xce, 0xd5, 0x8e, 0x67, 0x5d, 0x31, 0x5c, - 0xeb, 0xaa, 0xfb, 0xb4, 0x7b, 0xd5, 0x70, 0x2d, 0xff, 0x2a, 0xe7, 0x7b, 0xf5, 0xd9, 0x1b, 0x4f, - 0xa6, 0xe8, 0x7f, 0x50, 0x78, 0xf3, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x42, 0x20, 0xbd, 0xc5, - 0xfb, 0x62, 0x00, 0x00, + 0x08, 0x4d, 0x43, 0x39, 0x5b, 0x24, 0x22, 0xf2, 0x26, 0x6a, 0x42, 0xd9, 0xc7, 0x86, 0xd7, 0xd9, + 0xc7, 0x7e, 0xa3, 0x40, 0xbb, 0xc2, 0x36, 0xa1, 0x72, 0xdc, 0xc0, 0x72, 0x6c, 0xbf, 0x51, 0x64, + 0x54, 0xbc, 0xa9, 0xfe, 0x81, 0x02, 0x33, 0x6d, 0xc7, 0x0b, 0x1e, 0x19, 0xae, 0x6b, 0xd9, 0x5d, + 0x74, 0x0d, 0xca, 0x54, 0x97, 0x1d, 0xa7, 0x47, 0x75, 0x50, 0xbb, 0xbe, 0xb0, 0x12, 0x2d, 0xc8, + 0x4a, 0x9b, 0xf7, 0x69, 0x21, 0x16, 0x7a, 0x05, 0x6a, 0x1d, 0xc7, 0x0e, 0x0c, 0xcb, 0xc6, 0x9e, + 0xee, 0x3a, 0x5e, 0x40, 0x95, 0x33, 0xa9, 0x55, 0x43, 0x28, 0xe1, 0x8f, 0x96, 0xa1, 0xb2, 0xef, + 0xf8, 0x01, 0xc3, 0x28, 0x52, 0x8c, 0x32, 0x01, 0xd0, 0xce, 0x25, 0x98, 0xa6, 0x9d, 0x96, 0xcb, + 0xd5, 0x30, 0x45, 0x9a, 0x1b, 0xae, 0xfa, 0x53, 0x05, 0x26, 0x1f, 0x39, 0x03, 0x3b, 0x48, 0x0c, + 0x63, 0x04, 0xfb, 0x7c, 0x89, 0x62, 0xc3, 0x18, 0xc1, 0x7e, 0x34, 0x0c, 0xc1, 0x60, 0xab, 0xc4, + 0x86, 0x21, 0x9d, 0x4d, 0x28, 0x7b, 0xd8, 0x30, 0x1d, 0xbb, 0x77, 0x40, 0x45, 0x28, 0x6b, 0x61, + 0x9b, 0x2c, 0x9f, 0x8f, 0x7b, 0x96, 0x3d, 0x78, 0xa1, 0x7b, 0xb8, 0x67, 0x3c, 0xc1, 0x3d, 0x2a, + 0x4a, 0x59, 0xab, 0x71, 0xb0, 0xc6, 0xa0, 0xe8, 0x5d, 0x98, 0x71, 0x3d, 0xc7, 0x35, 0xba, 0x06, + 0xd1, 0x60, 0x63, 0x92, 0x2a, 0xe9, 0x64, 0x5c, 0x49, 0x54, 0xe0, 0x76, 0x84, 0xa3, 0xc5, 0x09, + 0x54, 0x1d, 0x2a, 0x1b, 0x6b, 0x42, 0xdd, 0xe1, 0xc4, 0x4d, 0x3a, 0x9d, 0x2a, 0x9f, 0xb8, 0x49, + 0x0c, 0x2e, 0x9a, 0xae, 0x65, 0xd2, 0xa9, 0x54, 0xb5, 0x99, 0x10, 0xb6, 0x61, 0xa2, 0x45, 0x98, + 0xea, 0x61, 0xbb, 0x1b, 0xec, 0xd3, 0xb9, 0x54, 0x35, 0xde, 0x52, 0x7f, 0x4f, 0x81, 0xea, 0xae, + 0x8f, 0x3d, 0x62, 0x95, 0xbe, 0x6b, 0x74, 0x30, 0xba, 0x02, 0xa5, 0xbe, 0x63, 0x62, 0xbe, 0xa0, + 0x27, 0xe2, 0xb2, 0x86, 0x48, 0x8f, 0x1c, 0x13, 0x6b, 0x14, 0x0d, 0x5d, 0x84, 0xd2, 0xc0, 0x32, + 0x99, 0x15, 0xcd, 0x5c, 0x3f, 0x1e, 0x47, 0x0f, 0x25, 0xd7, 0x28, 0x0a, 0x41, 0xed, 0x12, 0xd4, + 0x62, 0x2e, 0x2a, 0x41, 0x51, 0x7f, 0xa5, 0xc0, 0x5c, 0x38, 0xda, 0x16, 0x35, 0x3f, 0xf4, 0x26, + 0x4c, 0xdb, 0x38, 0x78, 0xee, 0x78, 0x4f, 0x47, 0xcb, 0x26, 0x30, 0xd1, 0x65, 0x28, 0xba, 0x5c, + 0x23, 0xb9, 0x04, 0x04, 0x8b, 0x20, 0x5b, 0x6e, 0x87, 0x6a, 0x28, 0x1f, 0xd9, 0x72, 0x3b, 0xc4, + 0x78, 0x02, 0xc3, 0xeb, 0x62, 0xba, 0x1e, 0xcc, 0x10, 0xcb, 0x0c, 0xb0, 0x61, 0xa2, 0xbb, 0x50, + 0x1b, 0xf8, 0xd8, 0xb3, 0x7d, 0x5d, 0x6c, 0x25, 0xb2, 0xf4, 0x33, 0x32, 0x53, 0x49, 0xef, 0x5a, + 0x95, 0x11, 0x6c, 0xf1, 0xbd, 0xa6, 0x02, 0x6c, 0xd8, 0xc1, 0xdb, 0x37, 0x1e, 0x1b, 0xbd, 0x01, + 0x46, 0x0b, 0x30, 0xf9, 0x8c, 0xfc, 0xa0, 0x33, 0x2f, 0x6a, 0xac, 0xa1, 0xfe, 0x4d, 0x09, 0x96, + 0x1f, 0x12, 0x73, 0xdb, 0x36, 0x6c, 0xf3, 0x89, 0xf3, 0x62, 0x1b, 0x77, 0x06, 0x9e, 0x15, 0x1c, + 0xac, 0x3a, 0x76, 0x80, 0x5f, 0x04, 0xe8, 0x01, 0xcc, 0xdb, 0x82, 0x7f, 0x28, 0x88, 0x42, 0x05, + 0x59, 0xce, 0x9c, 0x1d, 0x1b, 0x5c, 0xab, 0xdb, 0x32, 0xc0, 0x47, 0xf7, 0x22, 0x83, 0x17, 0x7c, + 0x0a, 0xe9, 0x09, 0x6d, 0xaf, 0x53, 0x69, 0x38, 0x17, 0xb1, 0x17, 0x04, 0x8f, 0xb7, 0x81, 0xb8, + 0x40, 0xdd, 0xf0, 0x75, 0x32, 0x53, 0xaa, 0xe5, 0x99, 0xeb, 0x8b, 0x92, 0x15, 0x84, 0x13, 0xd6, + 0x2a, 0xde, 0xc0, 0x6e, 0xf9, 0x44, 0x43, 0xe8, 0x26, 0x75, 0xa7, 0x84, 0xae, 0xeb, 0x39, 0x03, + 0xb7, 0x51, 0xce, 0x25, 0x04, 0x4a, 0x78, 0x9f, 0x60, 0x52, 0x2f, 0xcb, 0xb7, 0xac, 0xee, 0x39, + 0x4e, 0xb0, 0xe7, 0x8b, 0x6d, 0x2a, 0xc0, 0x1a, 0x85, 0xa2, 0xab, 0x70, 0xcc, 0x1f, 0xb8, 0x6e, + 0x0f, 0xf7, 0xb1, 0x1d, 0x18, 0x3d, 0x36, 0x10, 0x59, 0xb3, 0xe2, 0x85, 0xa2, 0x86, 0xe2, 0x5d, + 0x94, 0xb1, 0x8f, 0x4e, 0x03, 0xb8, 0x9e, 0xf5, 0xcc, 0xea, 0xe1, 0x2e, 0x36, 0x1b, 0x53, 0x94, + 0x69, 0x0c, 0x82, 0xde, 0x22, 0x9e, 0xb7, 0xd3, 0x71, 0xfa, 0x6e, 0xa3, 0x92, 0xd6, 0xb7, 0x58, + 0xa7, 0xb6, 0xe7, 0xec, 0x59, 0x3d, 0xac, 0x09, 0x5c, 0xf4, 0x79, 0x28, 0x1b, 0xae, 0x6b, 0x78, + 0x7d, 0xc7, 0x6b, 0xc0, 0x68, 0xba, 0x10, 0x19, 0xdd, 0x80, 0x05, 0xce, 0x43, 0x77, 0x59, 0x27, + 0x73, 0x6a, 0xd3, 0xc4, 0x2e, 0xef, 0x15, 0x1a, 0x8a, 0x86, 0x78, 0x3f, 0xa7, 0x25, 0x2e, 0x4e, + 0xfd, 0x07, 0x05, 0xe6, 0x12, 0x3c, 0xd1, 0x07, 0x30, 0x2b, 0x38, 0x04, 0x07, 0xae, 0x70, 0x03, + 0xaf, 0xe5, 0x88, 0xb1, 0xc2, 0xff, 0xee, 0x1c, 0xb8, 0x98, 0x7a, 0x2f, 0xd1, 0x40, 0xe7, 0xa1, + 0xda, 0x73, 0x3a, 0x46, 0x8f, 0x7a, 0x2d, 0x0f, 0xef, 0x71, 0x1f, 0x3b, 0x1b, 0x02, 0x35, 0xbc, + 0xa7, 0xde, 0x85, 0x99, 0x18, 0x03, 0x84, 0xa0, 0xa6, 0xb1, 0xa1, 0xd6, 0xf0, 0x9e, 0x31, 0xe8, + 0x05, 0xf5, 0x09, 0x54, 0x03, 0xd8, 0xb5, 0x3b, 0xe4, 0x99, 0x66, 0x63, 0xb3, 0xae, 0xa0, 0x2a, + 0x54, 0x1e, 0x0a, 0x16, 0xf5, 0x82, 0xfa, 0xfd, 0x22, 0x1c, 0xa7, 0x86, 0xd7, 0x76, 0x4c, 0xbe, + 0x13, 0xf8, 0x03, 0xf0, 0x3c, 0x54, 0x3b, 0x74, 0x2d, 0x75, 0xd7, 0xf0, 0xb0, 0x1d, 0xf0, 0xc7, + 0xc0, 0x2c, 0x03, 0xb6, 0x29, 0x0c, 0x69, 0x50, 0xf7, 0xf9, 0x8c, 0xf4, 0x0e, 0xdb, 0x39, 0xdc, + 0xb8, 0xa5, 0x59, 0xe7, 0x6c, 0x34, 0x6d, 0xce, 0x4f, 0xed, 0xbc, 0x69, 0xff, 0xc0, 0xef, 0x04, + 0x3d, 0xe1, 0xed, 0x56, 0x52, 0xac, 0x92, 0xc2, 0xae, 0x6c, 0x33, 0x82, 0x75, 0x3b, 0xf0, 0x0e, + 0x34, 0x41, 0x8e, 0xde, 0x83, 0xb2, 0xf3, 0x0c, 0x7b, 0xfb, 0xd8, 0x60, 0x5e, 0x66, 0xe6, 0xfa, + 0xf9, 0x14, 0xab, 0x55, 0xe1, 0xe8, 0x35, 0xec, 0x3b, 0x03, 0xaf, 0x83, 0x7d, 0x2d, 0x24, 0x42, + 0x2d, 0xa8, 0x78, 0x02, 0xcc, 0xbd, 0xd0, 0x58, 0x1c, 0x22, 0xaa, 0xe6, 0x6d, 0x98, 0x8d, 0x0b, + 0x87, 0xea, 0x50, 0x7c, 0x8a, 0x0f, 0xb8, 0x32, 0xc9, 0xcf, 0xc8, 0x3f, 0xb1, 0x15, 0x66, 0x8d, + 0xdb, 0x85, 0x9b, 0x8a, 0xea, 0x01, 0x8a, 0x66, 0xfa, 0x08, 0x07, 0x86, 0x69, 0x04, 0x06, 0x42, + 0x50, 0xa2, 0xa1, 0x11, 0x63, 0x41, 0x7f, 0x13, 0xae, 0x03, 0xee, 0xaa, 0x2b, 0x1a, 0xf9, 0x89, + 0x4e, 0x42, 0x25, 0xf4, 0x44, 0x3c, 0x3e, 0x8a, 0x00, 0x24, 0x4e, 0x31, 0x82, 0x00, 0xf7, 0xdd, + 0x80, 0x2a, 0xa6, 0xaa, 0x89, 0xa6, 0xfa, 0x3b, 0x93, 0x50, 0x4f, 0xd9, 0xc2, 0x6d, 0x28, 0xf7, + 0xf9, 0xf0, 0xdc, 0x07, 0x9e, 0x96, 0x82, 0x95, 0x94, 0x90, 0x5a, 0x88, 0x4f, 0x62, 0x01, 0x62, + 0x6b, 0xb1, 0x68, 0x2e, 0x6c, 0x33, 0x23, 0xef, 0xea, 0xa6, 0xe5, 0xe1, 0x4e, 0xe0, 0x78, 0x07, + 0x5c, 0xd0, 0xd9, 0x9e, 0xd3, 0x5d, 0x13, 0x30, 0x74, 0x03, 0xc0, 0xb4, 0x7d, 0x9d, 0xda, 0x70, + 0x97, 0xaf, 0xa3, 0xf4, 0x00, 0x0c, 0x83, 0x36, 0xad, 0x62, 0xda, 0x3e, 0x17, 0xf9, 0x0e, 0x54, + 0x49, 0x04, 0xa4, 0xf7, 0xd9, 0xb3, 0x91, 0x39, 0xa4, 0x99, 0xeb, 0x4b, 0xb2, 0xdc, 0x61, 0x3c, + 0xa6, 0xcd, 0xba, 0x51, 0xc3, 0x47, 0x77, 0x61, 0x8a, 0x06, 0x21, 0x7e, 0x63, 0x8a, 0x92, 0x5d, + 0xc8, 0x9e, 0x2e, 0xb7, 0xbe, 0x87, 0x14, 0x95, 0x19, 0x1f, 0xa7, 0x43, 0x5b, 0x30, 0x63, 0xd8, + 0xb6, 0x13, 0x18, 0xcc, 0xe3, 0x4f, 0x53, 0x36, 0x57, 0x72, 0xd9, 0xb4, 0x22, 0x7c, 0xc6, 0x2b, + 0xce, 0x01, 0x7d, 0x1e, 0x26, 0xe9, 0x23, 0x81, 0xfb, 0xf0, 0x73, 0x23, 0x37, 0x85, 0xc6, 0xf0, + 0xd1, 0x3b, 0x30, 0xfd, 0xdc, 0xb2, 0x4d, 0xe7, 0xb9, 0xcf, 0xfd, 0xa9, 0x64, 0xc2, 0x5f, 0x66, + 0x5d, 0x29, 0x62, 0x41, 0xd3, 0xbc, 0x05, 0x33, 0xb1, 0xf9, 0x1d, 0xc6, 0x7e, 0x9b, 0xef, 0x42, + 0x3d, 0x39, 0xa7, 0x43, 0xd9, 0xff, 0x00, 0x16, 0xb4, 0x81, 0x1d, 0x89, 0x26, 0x0e, 0x1b, 0x37, + 0x60, 0x8a, 0x5b, 0x03, 0x33, 0xc6, 0x93, 0x79, 0x6a, 0xd5, 0x38, 0x6e, 0xfc, 0xdc, 0xb0, 0x6f, + 0xd8, 0x66, 0x0f, 0x7b, 0x7c, 0x44, 0x71, 0x6e, 0x78, 0xc0, 0xa0, 0xea, 0x3b, 0x70, 0x3c, 0x31, + 0x2c, 0x3f, 0xb6, 0x7c, 0x0e, 0x6a, 0xae, 0x63, 0xea, 0x3e, 0x03, 0x8b, 0x58, 0xb2, 0x42, 0x6c, + 0x47, 0xe0, 0x6e, 0x98, 0x84, 0x7c, 0x3b, 0x70, 0xdc, 0xb4, 0xd8, 0xe3, 0x91, 0x37, 0x60, 0x31, + 0x49, 0xce, 0x86, 0x57, 0xdf, 0x83, 0x25, 0x0d, 0xf7, 0x9d, 0x67, 0xf8, 0xa8, 0xac, 0x9b, 0xd0, + 0x48, 0x33, 0xe0, 0xcc, 0xbf, 0x0a, 0x4b, 0x11, 0x74, 0x3b, 0x30, 0x82, 0x81, 0x7f, 0x28, 0xe6, + 0xfc, 0x4c, 0xf7, 0xc4, 0xf1, 0xd9, 0x42, 0x96, 0x35, 0xd1, 0x54, 0x97, 0x60, 0xb2, 0xed, 0x98, + 0x1b, 0x6d, 0x54, 0x83, 0x82, 0xe5, 0x72, 0xe2, 0x82, 0xe5, 0xaa, 0x9d, 0xf8, 0x98, 0x9b, 0x2c, + 0xea, 0x64, 0x43, 0x27, 0x51, 0xd1, 0x4d, 0xa8, 0x19, 0xa6, 0x69, 0x11, 0x43, 0x32, 0x7a, 0xba, + 0xe5, 0x8a, 0xa0, 0x79, 0x3e, 0xb1, 0xf4, 0x1b, 0x6d, 0xad, 0x1a, 0x21, 0x6e, 0xb8, 0xbe, 0x7a, + 0x0f, 0x2a, 0x51, 0x80, 0xfe, 0x56, 0x74, 0x3e, 0x2b, 0x8c, 0x8e, 0xe5, 0xc2, 0xc3, 0xdb, 0x66, + 0xea, 0x21, 0xc9, 0xc5, 0x7c, 0x0b, 0x20, 0x74, 0xaa, 0x22, 0x3c, 0x3c, 0x9e, 0xc9, 0x52, 0x8b, + 0x21, 0xaa, 0xff, 0x56, 0x8a, 0x3b, 0xd9, 0xd8, 0x94, 0xcd, 0x70, 0xca, 0xa6, 0xe4, 0x74, 0x0b, + 0x87, 0x74, 0xba, 0x6f, 0xc0, 0xa4, 0x1f, 0x18, 0x01, 0xe6, 0xf1, 0xf8, 0x72, 0x36, 0x21, 0x19, + 0x18, 0x6b, 0x0c, 0x13, 0x9d, 0x02, 0xe8, 0x78, 0xd8, 0x08, 0xb0, 0xa9, 0x1b, 0xec, 0xa9, 0x50, + 0xd4, 0x2a, 0x1c, 0xd2, 0x0a, 0x88, 0x17, 0x11, 0x27, 0x88, 0x8c, 0x07, 0xe1, 0x90, 0x65, 0x8c, + 0xce, 0x12, 0xa1, 0xf7, 0x9a, 0x1a, 0xe9, 0xbd, 0x38, 0x29, 0xf7, 0x5e, 0x91, 0x27, 0x9e, 0xce, + 0xf3, 0xc4, 0x8c, 0x68, 0x1c, 0x4f, 0x5c, 0xce, 0xf3, 0xc4, 0x9c, 0x4d, 0xbe, 0x27, 0xce, 0x70, + 0x24, 0x95, 0x2c, 0x47, 0xf2, 0x69, 0xba, 0xce, 0x9f, 0x28, 0xd0, 0x48, 0xef, 0x67, 0xee, 0xc7, + 0x6e, 0xc0, 0x94, 0x4f, 0x21, 0xf9, 0xfe, 0x93, 0x53, 0x71, 0x5c, 0x74, 0x0f, 0x4a, 0x96, 0xbd, + 0xe7, 0xf0, 0x8d, 0xb7, 0x92, 0x4b, 0xc3, 0x47, 0x5a, 0xd9, 0xb0, 0xf7, 0x1c, 0xa6, 0x41, 0x4a, + 0xdb, 0xfc, 0x3c, 0x54, 0x42, 0xd0, 0xa1, 0xe6, 0xb3, 0x01, 0x0b, 0x09, 0xbb, 0x65, 0x87, 0xbb, + 0xd0, 0xd0, 0x95, 0x71, 0x0d, 0x5d, 0xfd, 0xa5, 0x12, 0xdf, 0x7c, 0xef, 0x5b, 0xbd, 0x00, 0x7b, + 0xa9, 0xcd, 0xf7, 0xb6, 0xe0, 0xcb, 0x76, 0xde, 0xd9, 0x1c, 0xbe, 0xec, 0xec, 0xc4, 0x77, 0xd1, + 0x63, 0xa8, 0x51, 0xb3, 0xd3, 0x7d, 0xdc, 0xa3, 0xf1, 0x0b, 0x8f, 0x61, 0xaf, 0x66, 0x33, 0x60, + 0xa3, 0x33, 0xb3, 0xdd, 0xe6, 0x14, 0x4c, 0x5f, 0xd5, 0x5e, 0x1c, 0xd6, 0xbc, 0x0b, 0x28, 0x8d, + 0x74, 0x28, 0x0d, 0x3e, 0x22, 0x3e, 0xcc, 0x0f, 0x32, 0x9f, 0xa6, 0x7b, 0x54, 0x8c, 0x7c, 0x6b, + 0x60, 0xa2, 0x6a, 0x1c, 0x57, 0xfd, 0x97, 0x22, 0x40, 0xd4, 0xf9, 0x19, 0x77, 0x5e, 0xb7, 0x43, + 0x27, 0xc2, 0xa2, 0x40, 0x35, 0x9b, 0x65, 0xa6, 0xfb, 0xd8, 0x90, 0xdd, 0x07, 0x8b, 0x07, 0x5f, + 0x1b, 0xc2, 0xe0, 0xd0, 0x8e, 0x63, 0xfa, 0xb3, 0xe6, 0x38, 0xde, 0x87, 0xc5, 0xa4, 0x99, 0x70, + 0xaf, 0xf1, 0x3a, 0x4c, 0x5a, 0x01, 0xee, 0xb3, 0xfb, 0xd0, 0xc4, 0x25, 0x42, 0x0c, 0x9d, 0x21, + 0xa9, 0xef, 0xc2, 0xa2, 0xbc, 0x56, 0x87, 0x0b, 0x27, 0xd4, 0x87, 0xc9, 0x78, 0x24, 0x72, 0x5f, + 0xdc, 0x3e, 0x32, 0xaf, 0x63, 0x92, 0x34, 0x0c, 0x53, 0xfd, 0x91, 0x02, 0xc7, 0x13, 0x5d, 0x43, + 0x36, 0xfe, 0xd7, 0x53, 0x1b, 0x98, 0xf9, 0xbb, 0x1b, 0x39, 0xa3, 0x7c, 0x82, 0xbb, 0xf8, 0xcb, + 0xd0, 0x94, 0x97, 0x47, 0x52, 0xed, 0xad, 0xc4, 0x56, 0x3e, 0x37, 0x52, 0xe8, 0x70, 0x3f, 0xb7, + 0x61, 0x39, 0x93, 0x71, 0x5a, 0xe7, 0xc5, 0x31, 0x75, 0xfe, 0x3f, 0x85, 0xb8, 0xcf, 0x6e, 0x05, + 0x81, 0x67, 0x3d, 0x19, 0x04, 0xf8, 0xe5, 0x06, 0x3a, 0x6b, 0xe1, 0xce, 0x66, 0x7e, 0xf6, 0xf5, + 0x6c, 0xca, 0x68, 0xf4, 0xcc, 0x3d, 0xbe, 0x2d, 0xef, 0xf1, 0x12, 0x65, 0xf5, 0xc6, 0x48, 0x56, + 0xb9, 0xbb, 0xfd, 0xd3, 0xdc, 0xc4, 0xff, 0xa8, 0xc0, 0x5c, 0x62, 0x55, 0xd0, 0x5d, 0x00, 0x23, + 0x14, 0x9d, 0xdb, 0xc7, 0xd9, 0x51, 0x53, 0xd4, 0x62, 0x34, 0xe4, 0x99, 0xc8, 0x62, 0xb8, 0x8c, + 0x67, 0x62, 0x46, 0x0c, 0x17, 0x86, 0x70, 0x77, 0xa2, 0x03, 0x28, 0xbb, 0xb8, 0x54, 0x73, 0x0f, + 0xa0, 0x8c, 0x56, 0x90, 0xa8, 0xbf, 0x5b, 0x80, 0x85, 0x2c, 0xee, 0xe8, 0x55, 0x28, 0x76, 0xdc, + 0x01, 0x9f, 0x89, 0x94, 0x3c, 0x59, 0x75, 0x07, 0xbb, 0xbe, 0xd1, 0xc5, 0x1a, 0x41, 0x40, 0x57, + 0x61, 0xaa, 0x8f, 0xfb, 0x8e, 0x77, 0xc0, 0xe5, 0x96, 0xae, 0x00, 0x1e, 0xd1, 0x1e, 0x86, 0xcd, + 0xd1, 0xd0, 0xf5, 0x28, 0xd4, 0x65, 0xf2, 0x36, 0xa4, 0x88, 0x9e, 0x75, 0x31, 0x92, 0x30, 0xbe, + 0xbd, 0x0e, 0xd3, 0xae, 0xe7, 0x74, 0xb0, 0xef, 0xf3, 0x1b, 0x8a, 0x46, 0x22, 0x9b, 0x43, 0xba, + 0x38, 0x0d, 0x47, 0x44, 0xb7, 0x01, 0xc2, 0x34, 0x83, 0x78, 0x32, 0x35, 0xa5, 0x79, 0x88, 0x5e, + 0xa6, 0x92, 0x18, 0xb6, 0xfa, 0xc3, 0x02, 0x2c, 0x66, 0x6b, 0x0e, 0x5d, 0x89, 0xeb, 0x65, 0x39, + 0x43, 0xd5, 0xb2, 0x7a, 0xde, 0x4e, 0xa8, 0xe7, 0x74, 0x06, 0x45, 0x96, 0x96, 0x6e, 0x25, 0xb5, + 0x74, 0x26, 0x83, 0x30, 0x5b, 0x59, 0xb7, 0x92, 0xca, 0xca, 0x22, 0xcd, 0xd6, 0x59, 0x2b, 0x43, + 0x67, 0xe7, 0xb2, 0xe6, 0x38, 0x5c, 0x75, 0x7f, 0xa7, 0xc0, 0x6c, 0x5c, 0x2e, 0x74, 0x12, 0x2a, + 0x84, 0xda, 0x0f, 0x8c, 0xbe, 0xcb, 0x93, 0x04, 0x11, 0x00, 0x6d, 0xc2, 0xbc, 0xc9, 0x6e, 0x53, + 0x75, 0xcb, 0x0e, 0xb0, 0xb7, 0x67, 0x74, 0x44, 0x54, 0x78, 0x2e, 0xc3, 0x2e, 0x36, 0x04, 0x0e, + 0x13, 0xbc, 0xce, 0x69, 0x43, 0x30, 0x99, 0x41, 0xc8, 0x47, 0x78, 0xad, 0x31, 0x18, 0xc5, 0x88, + 0xd4, 0x7f, 0x56, 0xe0, 0x58, 0x86, 0x82, 0x47, 0x4c, 0x64, 0x77, 0xf8, 0x44, 0x2e, 0x0c, 0x5f, + 0xba, 0x91, 0xf3, 0x79, 0x90, 0x31, 0x9f, 0xf1, 0xf9, 0xc5, 0xa7, 0xf5, 0x2b, 0x05, 0x8e, 0x67, + 0x62, 0x65, 0x5e, 0x79, 0x5e, 0x87, 0xb2, 0xf7, 0x42, 0x7f, 0x72, 0x10, 0x60, 0x3f, 0x6b, 0x63, + 0xef, 0xc6, 0xf2, 0x1a, 0xd3, 0xde, 0x8b, 0x7b, 0x04, 0x0f, 0xdd, 0x80, 0x8a, 0xf7, 0x42, 0xc7, + 0x9e, 0xe7, 0x78, 0xc2, 0x17, 0x0d, 0x25, 0x2a, 0x7b, 0x2f, 0xd6, 0x29, 0x22, 0x19, 0x29, 0x10, + 0x23, 0x95, 0x46, 0x8c, 0x14, 0x44, 0x23, 0x05, 0xe1, 0x48, 0x93, 0x23, 0x46, 0x0a, 0xf8, 0x48, + 0xea, 0x9f, 0x15, 0xe0, 0x64, 0x9e, 0xba, 0x5e, 0x9a, 0x22, 0xd6, 0x01, 0x79, 0x2f, 0x74, 0xd7, + 0xe8, 0x3c, 0xc5, 0x81, 0xaf, 0x9b, 0x9e, 0xe3, 0xba, 0xd8, 0x1c, 0xa5, 0x91, 0xba, 0xf7, 0xa2, + 0xcd, 0x28, 0xd6, 0x18, 0xc1, 0x91, 0x34, 0xb3, 0x0e, 0x28, 0x48, 0x0f, 0x3d, 0x42, 0x45, 0xf5, + 0x20, 0x31, 0xb4, 0xfa, 0x21, 0xcc, 0xc6, 0x3d, 0xc4, 0x08, 0xdb, 0xbf, 0x03, 0x55, 0xee, 0x41, + 0xf4, 0x8e, 0x33, 0xb0, 0x83, 0x51, 0x8a, 0x9a, 0xe5, 0xd8, 0xab, 0x04, 0x59, 0xfd, 0x66, 0xb8, + 0xdd, 0x3e, 0xb1, 0x21, 0xff, 0x5c, 0x81, 0xca, 0x46, 0xdf, 0xe8, 0xe2, 0x6d, 0x17, 0x77, 0xc8, + 0x93, 0xde, 0x22, 0x0d, 0xbe, 0xee, 0xac, 0x81, 0x1e, 0xc8, 0x51, 0x0b, 0x8b, 0x53, 0x5f, 0x95, + 0x72, 0x7b, 0x82, 0xc3, 0x88, 0x50, 0xe5, 0xe3, 0xc6, 0x1b, 0xd7, 0xa1, 0xfc, 0x45, 0x7c, 0xc0, + 0x4e, 0xe4, 0x63, 0xd2, 0xa9, 0xdf, 0x2d, 0xc1, 0xd2, 0x90, 0xfc, 0x09, 0x3d, 0xce, 0xb9, 0x03, + 0xdd, 0xc5, 0x9e, 0xe5, 0x98, 0x42, 0xb5, 0x1d, 0x77, 0xd0, 0xa6, 0x00, 0xb4, 0x0c, 0xa4, 0xa1, + 0x7f, 0x73, 0xe0, 0xf0, 0x88, 0xb1, 0xa8, 0x95, 0x3b, 0xee, 0xe0, 0x4b, 0xa4, 0x2d, 0x68, 0xfd, + 0x7d, 0xc3, 0xc3, 0x6c, 0x93, 0x33, 0xda, 0x6d, 0x0a, 0x40, 0x6f, 0xc0, 0x71, 0xf6, 0x00, 0xd3, + 0x7b, 0x56, 0xdf, 0x22, 0xae, 0x30, 0x66, 0xbf, 0x45, 0x0d, 0xb1, 0xce, 0x87, 0xa4, 0x6f, 0xc3, + 0x66, 0x16, 0xab, 0x42, 0xd5, 0x71, 0xfa, 0xba, 0xdf, 0x71, 0x3c, 0xac, 0x1b, 0xe6, 0x87, 0xd4, + 0x58, 0x8b, 0xda, 0x8c, 0xe3, 0xf4, 0xb7, 0x09, 0xac, 0x65, 0x7e, 0x88, 0xce, 0xc0, 0x4c, 0xc7, + 0x1d, 0xf8, 0x38, 0xd0, 0xc9, 0x1f, 0x7a, 0xcb, 0x55, 0xd1, 0x80, 0x81, 0x56, 0xdd, 0x81, 0x1f, + 0x43, 0xe8, 0x93, 0x33, 0xd4, 0x74, 0x1c, 0xe1, 0x11, 0xee, 0xd3, 0x34, 0xf1, 0xfe, 0xa0, 0x8b, + 0x5d, 0xa3, 0x8b, 0x99, 0x68, 0xe2, 0xaa, 0x4a, 0x4a, 0x13, 0x3f, 0xe0, 0x28, 0x54, 0x40, 0xad, + 0xb6, 0x1f, 0x6f, 0xfa, 0xe8, 0x03, 0x98, 0x1e, 0xd8, 0xd6, 0x9e, 0x85, 0xcd, 0x46, 0x85, 0xd2, + 0x5e, 0x1b, 0x23, 0x5b, 0xb5, 0xb2, 0xcb, 0x48, 0x78, 0xf2, 0x8c, 0x33, 0x40, 0xb7, 0xa1, 0xc9, + 0x15, 0xe5, 0x3f, 0x37, 0xdc, 0xa4, 0xb6, 0x80, 0xaa, 0x60, 0x91, 0x61, 0x6c, 0x3f, 0x37, 0xdc, + 0xb8, 0xc6, 0x9a, 0xb7, 0x61, 0x36, 0xce, 0xf4, 0x50, 0xb6, 0x74, 0x0f, 0xaa, 0xd2, 0x24, 0xc9, + 0x6a, 0x53, 0xa5, 0xf8, 0xd6, 0xb7, 0xc4, 0x06, 0x28, 0x13, 0xc0, 0xb6, 0xf5, 0x2d, 0x9a, 0xdc, + 0xa7, 0x92, 0x51, 0x3e, 0x25, 0x8d, 0x35, 0x54, 0x03, 0xaa, 0x52, 0x3e, 0x9d, 0xf8, 0x4d, 0x9a, + 0x38, 0xe7, 0x7e, 0x93, 0xfc, 0x26, 0x30, 0xcf, 0xe9, 0x09, 0x09, 0xe8, 0x6f, 0x02, 0xa3, 0x99, + 0x5b, 0x96, 0x87, 0xa2, 0xbf, 0xe9, 0x10, 0xf8, 0x19, 0x2f, 0x53, 0xa9, 0x68, 0xac, 0xa1, 0xfe, + 0xa1, 0x02, 0xb0, 0x6a, 0xb8, 0xc6, 0x13, 0xab, 0x67, 0x05, 0x07, 0xe8, 0x22, 0xd4, 0x0d, 0xd3, + 0xd4, 0x3b, 0x02, 0x62, 0x61, 0x51, 0x37, 0x34, 0x67, 0x98, 0xe6, 0x6a, 0x0c, 0x8c, 0x2e, 0xc3, + 0x3c, 0xf1, 0x7a, 0x32, 0x2e, 0x2b, 0x24, 0xaa, 0x93, 0x0e, 0x09, 0xf9, 0x26, 0x34, 0x08, 0x5f, + 0xa3, 0xff, 0xc4, 0xc2, 0x76, 0x20, 0xd3, 0xb0, 0x0a, 0xa3, 0x45, 0xc3, 0x34, 0x5b, 0xac, 0x3b, + 0x4e, 0xa9, 0xfe, 0xed, 0x14, 0x9c, 0x92, 0x57, 0x3c, 0x59, 0xe2, 0x70, 0x1b, 0x66, 0x13, 0xf2, + 0xa6, 0x8a, 0x03, 0xa2, 0x19, 0x6a, 0x12, 0x6e, 0x22, 0x89, 0x5f, 0x48, 0x25, 0xf1, 0x33, 0xcb, + 0x27, 0x8a, 0x2f, 0xa9, 0x7c, 0xa2, 0xf4, 0x31, 0xcb, 0x27, 0x26, 0x8f, 0x5a, 0x3e, 0x31, 0x3b, + 0x76, 0xf9, 0xc4, 0xab, 0xf4, 0xaa, 0x47, 0x8c, 0x48, 0x9f, 0xd9, 0xcc, 0x27, 0x54, 0x43, 0xee, + 0xb6, 0x28, 0x66, 0x4b, 0x94, 0x59, 0x4c, 0x1f, 0xa6, 0xcc, 0xa2, 0x3c, 0xb4, 0xcc, 0xe2, 0x2c, + 0xcc, 0xda, 0x8e, 0x6e, 0xe3, 0xe7, 0x3a, 0x59, 0x16, 0xbf, 0x31, 0xc3, 0xd6, 0xc8, 0x76, 0x36, + 0xf1, 0xf3, 0x36, 0x81, 0xa0, 0x73, 0x30, 0xdb, 0x37, 0xfc, 0xa7, 0xd8, 0xa4, 0xf5, 0x0e, 0x7e, + 0xa3, 0x4a, 0xed, 0x69, 0x86, 0xc1, 0xda, 0x04, 0x84, 0x5e, 0x81, 0x50, 0x0e, 0x8e, 0x54, 0xa3, + 0x48, 0x55, 0x01, 0x65, 0x68, 0xb1, 0x92, 0x8d, 0xb9, 0x23, 0x96, 0x6c, 0xd4, 0x0f, 0x53, 0xb2, + 0x71, 0x05, 0xea, 0xe2, 0xb7, 0xa8, 0xd9, 0x60, 0x57, 0xf0, 0xb4, 0x5c, 0x63, 0x4e, 0xf4, 0x89, + 0xba, 0x8c, 0x61, 0x15, 0x1e, 0x90, 0x5b, 0xe1, 0xf1, 0x03, 0x85, 0x1f, 0x3c, 0xc3, 0x0d, 0xc4, + 0x53, 0xcb, 0x52, 0x55, 0x80, 0x72, 0x94, 0xaa, 0x00, 0xb4, 0x33, 0xb4, 0x6e, 0xe2, 0xe2, 0x70, + 0x4e, 0xa3, 0x2a, 0x27, 0xd4, 0x47, 0xe1, 0x99, 0xf0, 0x65, 0xd4, 0x7f, 0xa9, 0xff, 0xa1, 0xc0, + 0x29, 0xce, 0x6f, 0x48, 0x91, 0x54, 0x86, 0x95, 0x2b, 0x43, 0xac, 0xbc, 0xe3, 0x61, 0x13, 0xdb, + 0x81, 0x65, 0xf4, 0x74, 0xdf, 0xc5, 0x1d, 0x91, 0x7a, 0x8d, 0xc0, 0x34, 0xd0, 0x39, 0x07, 0xb3, + 0xac, 0xaa, 0x90, 0x1f, 0x0f, 0x59, 0xf1, 0xe0, 0x0c, 0x2d, 0x2c, 0xe4, 0x27, 0xc0, 0xad, 0x2c, + 0xcf, 0x52, 0x1a, 0x7a, 0xaf, 0x30, 0xd2, 0xc1, 0xa8, 0x0e, 0x2c, 0x0d, 0x49, 0x82, 0x67, 0x2e, + 0x93, 0x92, 0x5e, 0xa6, 0x5c, 0x25, 0xa5, 0x97, 0xe9, 0xbb, 0x0a, 0x9c, 0x49, 0x1d, 0x53, 0x3f, + 0x7d, 0xcd, 0xaa, 0x7f, 0xa9, 0x84, 0xf6, 0x93, 0x34, 0xf9, 0xd5, 0xb4, 0xc9, 0xbf, 0x92, 0x77, + 0xea, 0xce, 0x34, 0xfa, 0xc7, 0x43, 0x8d, 0xfe, 0x72, 0xee, 0x09, 0x7e, 0x94, 0x3e, 0xff, 0x55, + 0x81, 0x13, 0x43, 0x05, 0x48, 0xc4, 0x83, 0x4a, 0x32, 0x1e, 0xe4, 0xb1, 0x64, 0x14, 0xa2, 0xb3, + 0x58, 0x92, 0x46, 0xe1, 0x3c, 0x68, 0xd3, 0xfb, 0xc6, 0x0b, 0xab, 0x3f, 0xe8, 0xf3, 0x60, 0x92, + 0xb0, 0x7b, 0xc4, 0x20, 0x47, 0x89, 0x26, 0xaf, 0xc2, 0x02, 0x73, 0xf4, 0x34, 0xa0, 0x89, 0x28, + 0x58, 0x50, 0x39, 0xcf, 0xfa, 0x48, 0x6c, 0xc3, 0x09, 0xd4, 0x16, 0xcc, 0x87, 0xd3, 0xca, 0x2d, + 0x02, 0x8a, 0x15, 0xf5, 0x14, 0xe4, 0xa2, 0x1e, 0x1b, 0xa6, 0xd6, 0xf0, 0x33, 0xab, 0x83, 0x5f, + 0x4a, 0x75, 0xef, 0x59, 0x98, 0x71, 0xb1, 0xd7, 0xb7, 0x7c, 0x3f, 0x7c, 0xaa, 0x57, 0xb4, 0x38, + 0x48, 0xfd, 0xc1, 0x14, 0xcc, 0x25, 0x4d, 0xe8, 0x56, 0xaa, 0x86, 0xe8, 0x54, 0xe6, 0x5d, 0x57, + 0xc6, 0x25, 0xef, 0x65, 0x71, 0xfc, 0x29, 0xa4, 0x13, 0xec, 0xe1, 0x11, 0x47, 0x9c, 0x8a, 0x1a, + 0x30, 0xdd, 0x71, 0xfa, 0x7d, 0xc3, 0x36, 0x45, 0x09, 0x36, 0x6f, 0x12, 0x9d, 0x19, 0x5e, 0x97, + 0x5d, 0xef, 0x56, 0x34, 0xfa, 0x9b, 0xac, 0x30, 0xf1, 0x75, 0x96, 0x4d, 0xab, 0x90, 0xe8, 0x22, + 0x54, 0x34, 0xe0, 0xa0, 0x35, 0xcb, 0x43, 0x17, 0xa0, 0x84, 0xed, 0x67, 0x22, 0xef, 0x23, 0x5d, + 0x33, 0x8a, 0x23, 0x8f, 0x46, 0x31, 0xd0, 0x45, 0x98, 0xea, 0x13, 0xab, 0x11, 0x99, 0xea, 0xf9, + 0x54, 0xa9, 0xb2, 0xc6, 0x11, 0xd0, 0xeb, 0x30, 0x6d, 0xd2, 0xf5, 0x10, 0x31, 0x3e, 0x92, 0xea, + 0x99, 0x68, 0x97, 0x26, 0x50, 0xd0, 0x7b, 0xe1, 0x1d, 0x77, 0x25, 0x9d, 0x7c, 0x4a, 0xa8, 0x39, + 0xf3, 0x7a, 0x7b, 0x53, 0x3e, 0x28, 0x42, 0xfa, 0xa6, 0x3c, 0xc9, 0x25, 0x3f, 0x8f, 0x75, 0x02, + 0xca, 0x3d, 0xa7, 0xcb, 0x8c, 0x63, 0x86, 0xd5, 0xef, 0xf7, 0x9c, 0x2e, 0xb5, 0x8d, 0x05, 0x98, + 0xf4, 0x03, 0xd3, 0xb2, 0x69, 0xa8, 0x54, 0xd6, 0x58, 0x83, 0xec, 0x41, 0xfa, 0x43, 0x77, 0xec, + 0x0e, 0x6e, 0x54, 0x69, 0x57, 0x85, 0x42, 0xb6, 0xec, 0x0e, 0x3d, 0x32, 0x06, 0xc1, 0x41, 0xa3, + 0x46, 0xe1, 0xe4, 0x67, 0x74, 0xd5, 0x3c, 0x37, 0xe4, 0xaa, 0x39, 0x21, 0x70, 0xc6, 0x55, 0x73, + 0x7d, 0xe8, 0x23, 0x21, 0x49, 0xfb, 0x59, 0x28, 0x75, 0xfa, 0xa1, 0x02, 0x8b, 0xab, 0x34, 0x5f, + 0x19, 0x73, 0x61, 0x87, 0x29, 0xbf, 0x79, 0x33, 0xac, 0x89, 0xca, 0x28, 0x6c, 0x49, 0xce, 0x58, + 0x94, 0x44, 0xad, 0x42, 0x4d, 0xb0, 0xe5, 0xc4, 0xc5, 0x31, 0x0a, 0xaa, 0xaa, 0x7e, 0xbc, 0xa9, + 0xde, 0x81, 0xa5, 0x94, 0xe4, 0x3c, 0x6b, 0x94, 0x2c, 0xae, 0x67, 0x82, 0xc7, 0x8b, 0xeb, 0xd5, + 0xdb, 0x70, 0x7c, 0x3b, 0x30, 0xbc, 0x20, 0x35, 0xed, 0x31, 0x68, 0x69, 0xa9, 0x94, 0x4c, 0xcb, + 0xab, 0x99, 0xb6, 0x61, 0x61, 0x3b, 0x70, 0xdc, 0x23, 0x30, 0x25, 0xfe, 0x83, 0xcc, 0xdc, 0x19, + 0x88, 0xc7, 0x81, 0x68, 0xaa, 0x4b, 0xac, 0xb0, 0x2b, 0x3d, 0xda, 0x17, 0x60, 0x91, 0xd5, 0x55, + 0x1d, 0x65, 0x12, 0x27, 0x44, 0x55, 0x57, 0x9a, 0xef, 0x7d, 0x38, 0x26, 0xdd, 0x63, 0xf3, 0x9a, + 0x87, 0x6b, 0x72, 0xcd, 0xc3, 0xf0, 0x94, 0x41, 0x58, 0xf2, 0xf0, 0xbd, 0x42, 0xcc, 0x1f, 0x0f, + 0x49, 0x7c, 0xbe, 0x25, 0x57, 0x3c, 0x9c, 0x19, 0xce, 0x55, 0x2a, 0x78, 0x48, 0x5b, 0x67, 0x31, + 0xc3, 0x3a, 0x77, 0x53, 0x59, 0xd5, 0x52, 0xba, 0x8a, 0x24, 0x21, 0xe1, 0x27, 0x92, 0x4f, 0x7d, + 0xc8, 0xaa, 0x22, 0xc2, 0xa1, 0xc3, 0x54, 0xea, 0x9b, 0x89, 0x54, 0xea, 0x72, 0x8e, 0xa4, 0x61, + 0x12, 0xf5, 0x7b, 0x25, 0xa8, 0x84, 0x7d, 0x29, 0x0d, 0xa7, 0x55, 0x55, 0xc8, 0x50, 0x55, 0xfc, + 0x39, 0x59, 0x3c, 0xe2, 0x73, 0xb2, 0x34, 0xc6, 0x73, 0x72, 0x19, 0x2a, 0xf4, 0x07, 0x2d, 0x2e, + 0x67, 0xcf, 0xbd, 0x32, 0x05, 0x68, 0x78, 0x2f, 0x32, 0xb1, 0xa9, 0x31, 0x4d, 0x2c, 0x51, 0x81, + 0x31, 0x9d, 0xac, 0xc0, 0xb8, 0x15, 0x3e, 0xc3, 0xca, 0xe9, 0x8c, 0x47, 0xc8, 0x31, 0xf3, 0xe9, + 0x95, 0xb8, 0xe6, 0xac, 0xa4, 0xaf, 0x39, 0x23, 0xfa, 0xcf, 0x6c, 0x46, 0x76, 0x8b, 0x95, 0x55, + 0xc4, 0xed, 0x8c, 0xfb, 0xc8, 0xb7, 0xa4, 0x8c, 0x96, 0x92, 0x7e, 0xbf, 0x27, 0xf2, 0x0b, 0xf1, + 0x2c, 0xd6, 0x2e, 0x2c, 0x4a, 0x0b, 0x11, 0x95, 0x6b, 0x8e, 0xe7, 0xe3, 0x86, 0xd4, 0x6a, 0xfe, + 0x7e, 0x3c, 0x72, 0x1b, 0x52, 0x98, 0x78, 0x2b, 0x95, 0xaf, 0x1f, 0xdb, 0x42, 0xaf, 0xc9, 0xa5, + 0x3d, 0x87, 0xb6, 0xab, 0x54, 0x65, 0x0f, 0x8d, 0x2c, 0x0c, 0x8f, 0x77, 0xb3, 0x18, 0xba, 0xc2, + 0x21, 0x2d, 0x1a, 0xc0, 0xef, 0x59, 0xb6, 0xe5, 0xef, 0xb3, 0xfe, 0x29, 0x16, 0xc0, 0x0b, 0x50, + 0x8b, 0x5e, 0x2e, 0xe2, 0x17, 0x56, 0xa0, 0x77, 0x1c, 0x13, 0x53, 0xab, 0x9d, 0xd4, 0xca, 0x04, + 0xb0, 0xea, 0x98, 0x38, 0xda, 0x4f, 0xe5, 0xc3, 0xee, 0xa7, 0x4a, 0x62, 0x3f, 0x2d, 0xc2, 0x94, + 0x87, 0x0d, 0xdf, 0xb1, 0xd9, 0x9d, 0x83, 0xc6, 0x5b, 0x64, 0x21, 0xfa, 0xd8, 0xf7, 0xc9, 0x18, + 0x3c, 0x90, 0xe2, 0xcd, 0x58, 0xd0, 0x37, 0x9b, 0x13, 0xf4, 0xe5, 0x94, 0x3d, 0x26, 0x82, 0xbe, + 0x6a, 0x4e, 0xd0, 0x37, 0x56, 0xd5, 0x63, 0x14, 0xde, 0xd6, 0x46, 0x85, 0xb7, 0xf1, 0xf8, 0x70, + 0x4e, 0x8e, 0x0f, 0xef, 0xc4, 0x0f, 0x92, 0xf5, 0x74, 0xc2, 0x39, 0xff, 0x65, 0x8a, 0x4f, 0x71, + 0x03, 0xff, 0x93, 0x02, 0x4b, 0xa9, 0x0d, 0xc7, 0xb7, 0xf0, 0x9b, 0x89, 0x7a, 0xca, 0xe5, 0x1c, + 0x2d, 0x87, 0xe5, 0x94, 0x2d, 0xa9, 0x9c, 0xf2, 0x4a, 0x1e, 0xc9, 0x4b, 0xaf, 0xa6, 0xfc, 0x8e, + 0x02, 0x28, 0xe3, 0xa8, 0x7c, 0x4b, 0x44, 0xdd, 0x87, 0xb8, 0xd4, 0xe2, 0x81, 0xf7, 0x7b, 0x51, + 0xe0, 0x5d, 0x38, 0xcc, 0xf5, 0x40, 0x58, 0xe6, 0xf1, 0xf3, 0x02, 0x9c, 0xd9, 0x75, 0xcd, 0x44, + 0x18, 0xc9, 0xb1, 0xc6, 0xf7, 0x6c, 0xb7, 0xe4, 0x1a, 0x95, 0x23, 0x4e, 0xa1, 0x78, 0x94, 0x29, + 0xa0, 0x6f, 0x64, 0x55, 0x11, 0xdd, 0x91, 0xf2, 0x7d, 0xf9, 0x13, 0xfc, 0x35, 0x67, 0xe9, 0x54, + 0x38, 0x3b, 0x5c, 0x00, 0x1e, 0x72, 0xfe, 0x7f, 0x98, 0x5b, 0x7f, 0x81, 0x3b, 0xdb, 0x07, 0x76, + 0xe7, 0x10, 0x5a, 0xaf, 0x43, 0xb1, 0xd3, 0x37, 0x79, 0x12, 0x83, 0xfc, 0x8c, 0x47, 0xd1, 0x45, + 0x39, 0x8a, 0xd6, 0xa1, 0x1e, 0x8d, 0xc0, 0x37, 0xd0, 0x22, 0xd9, 0x40, 0x26, 0x41, 0x26, 0xcc, + 0x67, 0x35, 0xde, 0xe2, 0x70, 0xec, 0xb1, 0x37, 0x35, 0x18, 0x1c, 0x7b, 0x9e, 0xec, 0xb5, 0x8b, + 0xb2, 0xd7, 0x56, 0xbf, 0xaf, 0xc0, 0x0c, 0x19, 0xe1, 0x63, 0xc9, 0xcf, 0x8f, 0xa4, 0xc5, 0xe8, + 0x48, 0x1a, 0x9e, 0x6c, 0x4b, 0xf1, 0x93, 0x6d, 0x24, 0xf9, 0x24, 0x05, 0xa7, 0x25, 0x9f, 0x0a, + 0xe1, 0xd8, 0xf3, 0xd4, 0xb3, 0x30, 0xcb, 0x64, 0xe3, 0x33, 0xaf, 0x43, 0x71, 0xe0, 0xf5, 0xc4, + 0xfa, 0x0d, 0xbc, 0x9e, 0xfa, 0x6d, 0x05, 0xaa, 0xad, 0x20, 0x30, 0x3a, 0xfb, 0x87, 0x98, 0x40, + 0x28, 0x5c, 0x21, 0x2e, 0x5c, 0x7a, 0x12, 0x91, 0xb8, 0xa5, 0x21, 0xe2, 0x4e, 0x4a, 0xe2, 0xaa, + 0x50, 0x13, 0xb2, 0x0c, 0x15, 0x78, 0x13, 0x50, 0xdb, 0xf1, 0x82, 0xf7, 0x1d, 0xef, 0xb9, 0xe1, + 0x99, 0x87, 0x3b, 0xb5, 0x22, 0x28, 0xf1, 0x37, 0xd9, 0x8b, 0x17, 0x26, 0x35, 0xfa, 0x5b, 0x7d, + 0x0d, 0x8e, 0x49, 0xfc, 0x86, 0x0e, 0x7c, 0x1b, 0x66, 0xe8, 0x53, 0x98, 0x1f, 0x68, 0x2e, 0xc7, + 0x93, 0xe4, 0x23, 0x9e, 0xd6, 0xea, 0x1a, 0xcc, 0x93, 0x78, 0x8c, 0xc2, 0x43, 0xff, 0x72, 0x35, + 0x11, 0xf3, 0x2f, 0xa5, 0x58, 0x24, 0xe2, 0xfd, 0x5f, 0x2a, 0x30, 0x49, 0xe1, 0xa9, 0x18, 0x69, + 0x99, 0x3c, 0xe7, 0x5c, 0x47, 0x0f, 0x8c, 0x6e, 0xf8, 0x95, 0x00, 0x02, 0xd8, 0x31, 0xba, 0x34, + 0xf1, 0x42, 0x3b, 0x4d, 0xab, 0x8b, 0xfd, 0x40, 0x24, 0xf2, 0x66, 0x08, 0x6c, 0x8d, 0x81, 0x88, + 0x62, 0x68, 0xbe, 0xb3, 0x44, 0xd3, 0x9a, 0xf4, 0x37, 0xba, 0xc0, 0x5e, 0xf2, 0xcb, 0xcf, 0x5e, + 0xd1, 0x97, 0xff, 0x9a, 0x50, 0x4e, 0xa4, 0x9d, 0xc2, 0x36, 0xba, 0x08, 0x25, 0x7a, 0x4d, 0x3c, + 0x9d, 0xa7, 0x25, 0x8a, 0x42, 0xac, 0xc2, 0xb5, 0x6c, 0x1b, 0x9b, 0x34, 0x00, 0x2a, 0x6b, 0xbc, + 0xa5, 0xbe, 0x07, 0x28, 0xae, 0x3c, 0xbe, 0x40, 0x17, 0x61, 0x8a, 0xea, 0x56, 0x04, 0xb1, 0xf3, + 0x29, 0xd6, 0x1a, 0x47, 0x50, 0xbf, 0x0e, 0x88, 0x8d, 0x25, 0x05, 0xae, 0x87, 0x59, 0xc0, 0x9c, + 0x10, 0xf6, 0xaf, 0x14, 0x38, 0x26, 0x71, 0xe7, 0xf2, 0xbd, 0x26, 0xb3, 0xcf, 0x10, 0x8f, 0xb3, + 0x7e, 0x47, 0x7a, 0x32, 0x5f, 0x4c, 0x8b, 0xf1, 0x6b, 0x7a, 0x2a, 0xff, 0x44, 0x01, 0x68, 0x0d, + 0x82, 0x7d, 0x7e, 0x61, 0x1a, 0x5f, 0x44, 0x25, 0xb1, 0x88, 0x4d, 0x28, 0xbb, 0x86, 0xef, 0x3f, + 0x77, 0x3c, 0x71, 0x88, 0x0c, 0xdb, 0xf4, 0x9a, 0x73, 0xc0, 0x3f, 0x56, 0x50, 0xd1, 0xe8, 0x6f, + 0xf4, 0x0a, 0xd4, 0xd8, 0xe7, 0x2b, 0x74, 0xc3, 0x34, 0x3d, 0x51, 0x78, 0x57, 0xd1, 0xaa, 0x0c, + 0xda, 0x62, 0x40, 0x82, 0x66, 0xd1, 0xa4, 0x41, 0x70, 0xa0, 0x07, 0xce, 0x53, 0x6c, 0xf3, 0x83, + 0x61, 0x55, 0x40, 0x77, 0x08, 0x90, 0x65, 0x05, 0xbb, 0x96, 0x1f, 0x78, 0x02, 0x4d, 0xe4, 0x36, + 0x39, 0x94, 0xa2, 0xa9, 0x7f, 0xa1, 0x40, 0xbd, 0x3d, 0xe8, 0xf5, 0x98, 0x72, 0x8f, 0xb2, 0xc8, + 0x97, 0xf8, 0x54, 0x0a, 0x69, 0x93, 0x8f, 0x14, 0xc5, 0xa7, 0xf8, 0x52, 0xee, 0xb2, 0xae, 0xc1, + 0x7c, 0x4c, 0x62, 0x6e, 0x38, 0x52, 0x64, 0xaf, 0xc8, 0x91, 0xbd, 0xda, 0x02, 0xc4, 0xae, 0x6f, + 0x8e, 0x3c, 0x4b, 0xf5, 0x38, 0x1c, 0x93, 0x58, 0xf0, 0x47, 0xf1, 0x25, 0xa8, 0xf2, 0x22, 0x30, + 0x6e, 0x10, 0x27, 0xa0, 0x4c, 0x5c, 0x6a, 0xc7, 0x32, 0x45, 0x21, 0xc3, 0xb4, 0xeb, 0x98, 0xab, + 0x96, 0xe9, 0xa9, 0x5f, 0x82, 0x2a, 0x7f, 0xf3, 0x9b, 0xe3, 0xde, 0x85, 0x1a, 0x4f, 0xe3, 0xe9, + 0xd2, 0xab, 0x92, 0x27, 0x32, 0x2a, 0x0d, 0x85, 0x2a, 0xec, 0x78, 0x53, 0xfd, 0x06, 0x34, 0x59, + 0xb4, 0x20, 0x31, 0x16, 0x13, 0xbc, 0x0b, 0xe2, 0x9d, 0x85, 0x1c, 0xfe, 0x32, 0x65, 0xd5, 0x8b, + 0x37, 0xd5, 0x53, 0xb0, 0x9c, 0xc9, 0x9f, 0xcf, 0xde, 0x85, 0x7a, 0xd4, 0xc1, 0xde, 0xe7, 0x0b, + 0xab, 0x33, 0x94, 0x58, 0x75, 0xc6, 0x62, 0x18, 0x7b, 0x17, 0xc4, 0x93, 0x8b, 0x86, 0xd7, 0xd1, + 0x89, 0xab, 0x38, 0xec, 0xc4, 0x55, 0x92, 0x4e, 0x5c, 0xea, 0xa3, 0x50, 0x87, 0xfc, 0xdc, 0x7b, + 0x87, 0x9e, 0xcc, 0xd9, 0xd8, 0xc2, 0xa9, 0x9d, 0xcc, 0x9e, 0x1f, 0x43, 0xd2, 0x62, 0xf8, 0xea, + 0x45, 0xa8, 0xca, 0xee, 0x2d, 0xe6, 0xb1, 0x94, 0x94, 0xc7, 0xaa, 0x25, 0x9c, 0xd5, 0x1b, 0x89, + 0x23, 0x45, 0x96, 0x5e, 0x13, 0x07, 0x8a, 0x9b, 0x92, 0xdb, 0xfa, 0x9c, 0x94, 0x49, 0xff, 0x35, + 0x79, 0xac, 0x05, 0xee, 0xc7, 0xdf, 0xf7, 0x09, 0x3d, 0x9f, 0xa8, 0x7a, 0x1e, 0x66, 0x76, 0x87, + 0x7d, 0x7f, 0xa3, 0x24, 0xca, 0xbf, 0xde, 0x86, 0x85, 0xf7, 0xad, 0x1e, 0xf6, 0x0f, 0xfc, 0x00, + 0xf7, 0x37, 0xa8, 0x7b, 0xd9, 0xb3, 0xb0, 0x87, 0x4e, 0x03, 0xd0, 0x53, 0xa4, 0xeb, 0x58, 0xe1, + 0x37, 0x07, 0x62, 0x10, 0xf5, 0x67, 0x0a, 0xcc, 0x45, 0x84, 0xe3, 0x14, 0xe2, 0xbd, 0x05, 0x93, + 0x7b, 0xbe, 0xb8, 0x6d, 0x4b, 0xe4, 0x12, 0xb2, 0x44, 0xd0, 0x4a, 0x7b, 0xfe, 0x86, 0x89, 0xde, + 0x06, 0x18, 0xf8, 0xd8, 0xe4, 0xd9, 0xb9, 0x11, 0xa5, 0x91, 0x15, 0x82, 0xca, 0xf2, 0x7b, 0x37, + 0x61, 0xc6, 0xb2, 0x1d, 0x13, 0xd3, 0xcc, 0xad, 0x39, 0xaa, 0x2c, 0x12, 0x18, 0xee, 0xae, 0x8f, + 0x4d, 0xf5, 0x4f, 0xa2, 0xfc, 0xeb, 0x67, 0x79, 0x86, 0xaa, 0xce, 0x9f, 0xaf, 0x62, 0xd5, 0xb9, + 0xc9, 0x3e, 0x80, 0x79, 0xe6, 0x26, 0xf7, 0xc2, 0x21, 0x33, 0x5f, 0x17, 0x49, 0xcc, 0x4d, 0xab, + 0x5b, 0x3c, 0xb2, 0x12, 0x44, 0xea, 0x6d, 0x38, 0x9e, 0xa8, 0xdf, 0x1e, 0xff, 0x3a, 0xfd, 0x83, + 0xc4, 0xbd, 0x58, 0xb4, 0xa5, 0xae, 0xc9, 0xaf, 0x0d, 0xe5, 0x55, 0xda, 0xf3, 0x37, 0x58, 0x76, + 0xe1, 0x84, 0x74, 0x69, 0x27, 0xc9, 0x72, 0x33, 0x11, 0x2c, 0x9e, 0x1d, 0xce, 0x2f, 0x11, 0x35, + 0xfe, 0xa7, 0x02, 0x0b, 0x59, 0x08, 0x47, 0xbc, 0x30, 0xfe, 0xda, 0x90, 0x57, 0x0e, 0xdf, 0x1c, + 0x25, 0xd0, 0x27, 0x72, 0xc1, 0xbe, 0xc9, 0x5e, 0x58, 0x1a, 0xbd, 0x26, 0xc5, 0xf1, 0xd6, 0xe4, + 0x97, 0x85, 0x58, 0x52, 0x24, 0xe7, 0xa5, 0xa2, 0x8f, 0x71, 0x49, 0xb9, 0x9a, 0x78, 0xa7, 0xe8, + 0x72, 0x26, 0xe1, 0x88, 0x57, 0x8a, 0xb4, 0xac, 0xcb, 0x80, 0x6b, 0xa3, 0x38, 0x7d, 0x66, 0xef, + 0xaf, 0xff, 0x4b, 0x81, 0x9a, 0xbc, 0x20, 0xe8, 0xbd, 0x8c, 0x17, 0x8a, 0xce, 0x8c, 0x98, 0xa0, + 0xf4, 0x3e, 0x11, 0x7f, 0x81, 0xa7, 0x30, 0xfe, 0x0b, 0x3c, 0xc5, 0xf1, 0x5e, 0xe0, 0xb9, 0x07, + 0xb5, 0xe7, 0x9e, 0x15, 0x18, 0x4f, 0x7a, 0x58, 0xef, 0x19, 0x07, 0xd8, 0xe3, 0x5e, 0x38, 0xd7, + 0x0d, 0x55, 0x05, 0xc9, 0x43, 0x42, 0xa1, 0x7e, 0xbb, 0x00, 0xc7, 0x33, 0xdf, 0x25, 0xf9, 0xf8, + 0xf3, 0xbe, 0x12, 0x9f, 0xf7, 0x61, 0x5e, 0xd0, 0x29, 0x1e, 0xea, 0x05, 0x9d, 0x8d, 0x21, 0x5a, + 0xc8, 0x4a, 0x89, 0x8f, 0x50, 0xc6, 0x5f, 0x2b, 0x50, 0x16, 0x42, 0x8d, 0x7c, 0x5d, 0x66, 0x69, + 0x40, 0xd0, 0x74, 0x5a, 0x2d, 0x6d, 0x1b, 0xb6, 0xa3, 0xfb, 0x98, 0x84, 0x45, 0x23, 0x5f, 0x4e, + 0x58, 0xa0, 0x74, 0xab, 0x8e, 0x87, 0x37, 0x0d, 0xdb, 0xd9, 0x66, 0x44, 0xa8, 0x05, 0x75, 0xc6, + 0x8f, 0xb2, 0x22, 0x4c, 0x47, 0x3e, 0xaa, 0x6a, 0x94, 0x80, 0x30, 0x21, 0xcc, 0x7c, 0xf5, 0xef, + 0x15, 0x98, 0x4b, 0x68, 0xf6, 0x37, 0x6f, 0x12, 0x7f, 0x5c, 0x84, 0x99, 0xd8, 0x2a, 0x8f, 0x98, + 0xc0, 0x2a, 0xcc, 0x8b, 0xb2, 0x16, 0x1f, 0x07, 0xe3, 0xbd, 0x1c, 0x32, 0xc7, 0x29, 0xb6, 0x71, + 0xc0, 0x22, 0x99, 0xbb, 0x30, 0x67, 0x3c, 0x33, 0xac, 0x1e, 0xb5, 0xa0, 0xb1, 0x82, 0x84, 0x5a, + 0x88, 0x1f, 0xc6, 0x42, 0x6c, 0xde, 0x63, 0xbd, 0x22, 0x02, 0x14, 0x37, 0x7a, 0x53, 0xc7, 0xf7, + 0x63, 0xa5, 0x51, 0xb9, 0x6f, 0xea, 0xf8, 0x7e, 0x38, 0x1e, 0x2d, 0x15, 0xa7, 0xaf, 0x28, 0xf9, + 0xfc, 0x5b, 0x13, 0xc3, 0xc7, 0x23, 0xb8, 0xef, 0x53, 0x54, 0xa2, 0xb0, 0xbe, 0xf1, 0xa1, 0xe3, + 0xe9, 0x71, 0xfa, 0xe9, 0x11, 0x0a, 0xa3, 0x14, 0xed, 0x90, 0x89, 0xfa, 0xdf, 0x0a, 0xa0, 0xf4, + 0x86, 0xfc, 0x8d, 0x59, 0xaa, 0xf8, 0xd4, 0x4b, 0x63, 0xab, 0x4e, 0x7d, 0x17, 0x4e, 0x68, 0xd8, + 0x71, 0xb1, 0x1d, 0xfa, 0xbd, 0x87, 0x4e, 0xf7, 0x10, 0x11, 0xdb, 0x49, 0x68, 0x66, 0xd1, 0xf3, + 0x73, 0xe0, 0x00, 0x9a, 0xab, 0xfb, 0xb8, 0xf3, 0x94, 0x46, 0xff, 0x47, 0xa9, 0xe7, 0x68, 0x42, + 0xb9, 0xe7, 0x74, 0xd8, 0x37, 0x24, 0xf9, 0x55, 0x89, 0x68, 0xe7, 0xdc, 0x52, 0x9f, 0x82, 0xe5, + 0xcc, 0x61, 0xb9, 0x54, 0x08, 0xea, 0xf7, 0x71, 0xb0, 0xfe, 0x0c, 0xdb, 0x61, 0x40, 0xa8, 0xfe, + 0xaf, 0x12, 0x0b, 0x3d, 0x69, 0xd7, 0x21, 0xea, 0x60, 0x50, 0x1b, 0x16, 0x22, 0x14, 0x4c, 0xa8, + 0xd9, 0x37, 0xe4, 0xd8, 0xd7, 0x17, 0xb3, 0x73, 0x64, 0x74, 0x10, 0xfa, 0xe9, 0x38, 0xd4, 0x49, + 0xc1, 0x12, 0x99, 0xd3, 0x62, 0x32, 0x73, 0xda, 0x86, 0x85, 0x78, 0x70, 0x19, 0x06, 0x4b, 0xa5, + 0xb1, 0xde, 0xc0, 0x46, 0x6e, 0x0a, 0x76, 0xe9, 0x55, 0x28, 0x8b, 0xcf, 0x96, 0xa2, 0x69, 0x28, + 0xee, 0xac, 0xb6, 0xeb, 0x13, 0xe4, 0xc7, 0xee, 0x5a, 0xbb, 0xae, 0xa0, 0x32, 0x94, 0xb6, 0x57, + 0x77, 0xda, 0xf5, 0xc2, 0xa5, 0x3e, 0xd4, 0x93, 0x5f, 0xee, 0x44, 0x4b, 0x70, 0xac, 0xad, 0x6d, + 0xb5, 0x5b, 0xf7, 0x5b, 0x3b, 0x1b, 0x5b, 0x9b, 0x7a, 0x5b, 0xdb, 0x78, 0xdc, 0xda, 0x59, 0xaf, + 0x4f, 0xa0, 0x73, 0x70, 0x2a, 0xde, 0xf1, 0x60, 0x6b, 0x7b, 0x47, 0xdf, 0xd9, 0xd2, 0x57, 0xb7, + 0x36, 0x77, 0x5a, 0x1b, 0x9b, 0xeb, 0x5a, 0x5d, 0x41, 0xa7, 0xe0, 0x44, 0x1c, 0xe5, 0xde, 0xc6, + 0xda, 0x86, 0xb6, 0xbe, 0x4a, 0x7e, 0xb7, 0x1e, 0xd6, 0x0b, 0x97, 0xde, 0x81, 0xaa, 0x54, 0xe0, + 0x4c, 0x44, 0x6a, 0x6f, 0xad, 0xd5, 0x27, 0x50, 0x15, 0x2a, 0x71, 0x3e, 0x65, 0x28, 0x6d, 0x6e, + 0xad, 0xad, 0xd7, 0x0b, 0x08, 0x60, 0x6a, 0xa7, 0xa5, 0xdd, 0x5f, 0xdf, 0xa9, 0x17, 0x2f, 0xdd, + 0x4e, 0xbe, 0x4a, 0x8d, 0xd1, 0x3c, 0x54, 0xb7, 0x5b, 0x9b, 0x6b, 0xf7, 0xb6, 0xbe, 0xa2, 0x6b, + 0xeb, 0xad, 0xb5, 0xaf, 0xd6, 0x27, 0xd0, 0x02, 0xd4, 0x05, 0x68, 0x73, 0x6b, 0x87, 0x41, 0x95, + 0x4b, 0x4f, 0x13, 0x41, 0x13, 0x46, 0xc7, 0x61, 0x3e, 0x1c, 0x52, 0x5f, 0xd5, 0xd6, 0x5b, 0x3b, + 0xeb, 0x44, 0x12, 0x09, 0xac, 0xed, 0x6e, 0x6e, 0x6e, 0x6c, 0xde, 0xaf, 0x2b, 0x84, 0x6b, 0x04, + 0x5e, 0xff, 0xca, 0x06, 0x41, 0x2e, 0xc8, 0xc8, 0xbb, 0x9b, 0x5f, 0xdc, 0xdc, 0xfa, 0xf2, 0x66, + 0xbd, 0x78, 0xe9, 0xb7, 0xe3, 0x49, 0xbd, 0xc8, 0x0c, 0x96, 0x61, 0x29, 0x35, 0xa2, 0xbe, 0xfe, + 0x78, 0x7d, 0x73, 0xa7, 0x3e, 0x21, 0x77, 0x6e, 0xef, 0xb4, 0xb4, 0xa8, 0x53, 0x49, 0x76, 0x6e, + 0xb5, 0xdb, 0x61, 0x67, 0x41, 0xee, 0x5c, 0x5b, 0x7f, 0xb8, 0x1e, 0x51, 0x16, 0xaf, 0xff, 0x28, + 0xfa, 0x12, 0xe1, 0x36, 0xf6, 0x68, 0xe1, 0xe9, 0x1a, 0x4c, 0x8b, 0xef, 0xf2, 0x4a, 0x51, 0xbe, + 0xfc, 0x1d, 0xe1, 0xe6, 0x72, 0x66, 0x1f, 0xdf, 0x75, 0x13, 0xe8, 0x31, 0xbd, 0xa3, 0x89, 0x7d, + 0x77, 0xe4, 0x6c, 0xe2, 0x5e, 0x24, 0xf5, 0x79, 0x93, 0xe6, 0xb9, 0x1c, 0x8c, 0x90, 0xef, 0x57, + 0xa1, 0x26, 0x7f, 0x74, 0x0b, 0x9d, 0x93, 0xef, 0x4f, 0x32, 0xbe, 0xe7, 0xd5, 0x54, 0xf3, 0x50, + 0x42, 0xd6, 0x3a, 0xd4, 0x93, 0x1f, 0xdd, 0x42, 0x52, 0x5a, 0x72, 0xc8, 0x37, 0xbd, 0x9a, 0x9f, + 0xcb, 0x47, 0x8a, 0x0f, 0x90, 0xfa, 0x96, 0xd4, 0xf9, 0xfc, 0xaf, 0xf3, 0x64, 0x0c, 0x30, 0xec, + 0x13, 0x3e, 0x4c, 0x39, 0xf2, 0xa7, 0x21, 0x50, 0xe2, 0xf3, 0x4d, 0x19, 0x5f, 0x95, 0x91, 0x95, + 0x93, 0xfd, 0x45, 0x11, 0x75, 0x02, 0xfd, 0x3f, 0x98, 0x4b, 0xd4, 0x0e, 0x22, 0x89, 0x30, 0xbb, + 0x24, 0xb2, 0x79, 0x3e, 0x17, 0x47, 0x5e, 0xd5, 0x78, 0x7d, 0x60, 0x72, 0x55, 0x33, 0xea, 0x0e, + 0x93, 0xab, 0x9a, 0x59, 0x5e, 0x48, 0x0d, 0x51, 0xaa, 0x05, 0x94, 0x0d, 0x31, 0xab, 0xf6, 0xb0, + 0x79, 0x2e, 0x07, 0x23, 0xae, 0x90, 0x44, 0x35, 0xa0, 0xac, 0x90, 0xec, 0x3a, 0xc3, 0xe6, 0xf9, + 0x5c, 0x9c, 0xe4, 0x4a, 0x46, 0x55, 0x48, 0xe9, 0x95, 0x4c, 0x55, 0xc2, 0xa5, 0x57, 0x32, 0x5d, + 0xc4, 0xc4, 0x57, 0x32, 0x51, 0x37, 0xa4, 0xe6, 0xd6, 0x34, 0x64, 0xad, 0x64, 0x76, 0xdd, 0x83, + 0x3a, 0x81, 0x9e, 0x43, 0x63, 0x58, 0xea, 0x1a, 0x5d, 0x3e, 0x44, 0x86, 0xbd, 0xf9, 0xfa, 0x78, + 0xc8, 0xe1, 0xc0, 0x18, 0x50, 0x3a, 0x38, 0x41, 0xaf, 0xc8, 0xea, 0x1e, 0x12, 0xfc, 0x34, 0x5f, + 0x1d, 0x85, 0x16, 0x0e, 0x73, 0x1f, 0xca, 0x22, 0x29, 0x8e, 0x24, 0x17, 0x98, 0x48, 0xc6, 0x37, + 0x4f, 0x66, 0x77, 0x86, 0x8c, 0xbe, 0x00, 0x25, 0x02, 0x45, 0x4b, 0x49, 0x3c, 0xc1, 0xa0, 0x91, + 0xee, 0x08, 0x89, 0x5b, 0x30, 0xc5, 0xb2, 0xbd, 0x48, 0xba, 0x6e, 0x96, 0xb2, 0xd1, 0xcd, 0x66, + 0x56, 0x57, 0xc8, 0xa2, 0xcd, 0xbe, 0x72, 0xce, 0x93, 0xb7, 0xe8, 0x74, 0xf2, 0x73, 0x9b, 0x72, + 0x96, 0xb8, 0x79, 0x66, 0x68, 0x7f, 0xdc, 0x66, 0x13, 0x07, 0xf0, 0x73, 0x39, 0xb7, 0x44, 0x59, + 0x36, 0x9b, 0x7d, 0xf7, 0xc4, 0x16, 0x37, 0x7d, 0x37, 0x25, 0x2f, 0xee, 0xd0, 0xfb, 0x3f, 0x79, + 0x71, 0x87, 0x5f, 0x71, 0xb1, 0xad, 0x91, 0xfc, 0x46, 0x87, 0x9a, 0xf7, 0xfd, 0x9c, 0xac, 0xad, + 0x31, 0xe4, 0xbb, 0x3c, 0xea, 0x04, 0xda, 0x87, 0x63, 0x19, 0x1f, 0xee, 0x41, 0xaf, 0x0e, 0xf7, + 0xbf, 0xd2, 0x28, 0xaf, 0x8d, 0xc4, 0x8b, 0x8f, 0x94, 0x91, 0xb1, 0x91, 0x47, 0x1a, 0x9e, 0x32, + 0x92, 0x47, 0xca, 0x4b, 0xfd, 0x50, 0x43, 0xe4, 0x3e, 0xe4, 0x44, 0x56, 0x1a, 0x23, 0xc3, 0x10, + 0x53, 0x1e, 0x63, 0x1f, 0x8e, 0x65, 0x04, 0xf0, 0xb2, 0xb0, 0xc3, 0x0f, 0x16, 0xb2, 0xb0, 0x79, + 0x27, 0x81, 0x09, 0xf4, 0x35, 0x40, 0xf7, 0x71, 0x20, 0x47, 0x5e, 0x3e, 0x92, 0x36, 0x6a, 0xf2, + 0xac, 0x30, 0xc4, 0x3e, 0xa5, 0x43, 0x83, 0x3a, 0x71, 0x4d, 0xb9, 0xfe, 0x47, 0x45, 0x98, 0x65, + 0xf9, 0x42, 0x1e, 0x46, 0x3d, 0x02, 0x88, 0x52, 0xef, 0xe8, 0x54, 0x72, 0xf1, 0xa4, 0x7a, 0x86, + 0xe6, 0xe9, 0x61, 0xdd, 0xf1, 0xed, 0x1a, 0x4b, 0x69, 0xcb, 0xdb, 0x35, 0x9d, 0xa1, 0x97, 0xb7, + 0x6b, 0x46, 0x2e, 0x5c, 0x9d, 0x40, 0x1f, 0x40, 0x25, 0xcc, 0xa0, 0xca, 0x4a, 0x48, 0xa6, 0x82, + 0x9b, 0xa7, 0x86, 0xf4, 0xc6, 0xa5, 0x8b, 0x25, 0x46, 0x65, 0xe9, 0xd2, 0x49, 0x57, 0x59, 0xba, + 0xac, 0x8c, 0x6a, 0x34, 0x5f, 0x96, 0xba, 0xc8, 0x98, 0xaf, 0x94, 0xc9, 0xca, 0x98, 0xaf, 0x9c, + 0xf3, 0x50, 0x27, 0xee, 0xdd, 0xfd, 0xf1, 0x2f, 0x4e, 0x2b, 0x3f, 0xfb, 0xc5, 0xe9, 0x89, 0xdf, + 0xfa, 0xe8, 0xb4, 0xf2, 0xe3, 0x8f, 0x4e, 0x2b, 0x3f, 0xfd, 0xe8, 0xb4, 0xf2, 0xf3, 0x8f, 0x4e, + 0x2b, 0xdf, 0xf9, 0xf7, 0xd3, 0x13, 0x5f, 0x53, 0x9f, 0xde, 0xf4, 0x57, 0x2c, 0xe7, 0x6a, 0xc7, + 0xb3, 0xae, 0x18, 0xae, 0x75, 0xd5, 0x7d, 0xda, 0xbd, 0x6a, 0xb8, 0x96, 0x7f, 0x95, 0xf3, 0xbd, + 0xfa, 0xec, 0x8d, 0x27, 0x53, 0xf4, 0x3f, 0x3c, 0xbc, 0xf9, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, + 0xc8, 0xcb, 0xbc, 0xe2, 0x9b, 0x63, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -13902,6 +13961,34 @@ func (m *LinuxContainerConfig) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *WindowsNamespaceOption) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *WindowsNamespaceOption) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *WindowsNamespaceOption) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Network != 0 { + i = encodeVarintApi(dAtA, i, uint64(m.Network)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + func (m *WindowsSandboxSecurityContext) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -13922,6 +14009,18 @@ func (m *WindowsSandboxSecurityContext) MarshalToSizedBuffer(dAtA []byte) (int, _ = i var l int _ = l + if m.NamespaceOptions != nil { + { + size, err := m.NamespaceOptions.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + } if m.HostProcess { i-- if m.HostProcess { @@ -15678,21 +15777,21 @@ func (m *PortForwardRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { var l int _ = l if len(m.Port) > 0 { - dAtA86 := make([]byte, len(m.Port)*10) - var j85 int + dAtA87 := make([]byte, len(m.Port)*10) + var j86 int for _, num1 := range m.Port { num := uint64(num1) for num >= 1<<7 { - dAtA86[j85] = uint8(uint64(num)&0x7f | 0x80) + dAtA87[j86] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j85++ + j86++ } - dAtA86[j85] = uint8(num) - j85++ + dAtA87[j86] = uint8(num) + j86++ } - i -= j85 - copy(dAtA[i:], dAtA86[:j85]) - i = encodeVarintApi(dAtA, i, uint64(j85)) + i -= j86 + copy(dAtA[i:], dAtA87[:j86]) + i = encodeVarintApi(dAtA, i, uint64(j86)) i-- dAtA[i] = 0x12 } @@ -18943,6 +19042,18 @@ func (m *LinuxContainerConfig) Size() (n int) { return n } +func (m *WindowsNamespaceOption) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Network != 0 { + n += 1 + sovApi(uint64(m.Network)) + } + return n +} + func (m *WindowsSandboxSecurityContext) Size() (n int) { if m == nil { return 0 @@ -18960,6 +19071,10 @@ func (m *WindowsSandboxSecurityContext) Size() (n int) { if m.HostProcess { n += 2 } + if m.NamespaceOptions != nil { + l = m.NamespaceOptions.Size() + n += 1 + l + sovApi(uint64(l)) + } return n } @@ -21355,6 +21470,16 @@ func (this *LinuxContainerConfig) String() string { }, "") return s } +func (this *WindowsNamespaceOption) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&WindowsNamespaceOption{`, + `Network:` + fmt.Sprintf("%v", this.Network) + `,`, + `}`, + }, "") + return s +} func (this *WindowsSandboxSecurityContext) String() string { if this == nil { return "nil" @@ -21363,6 +21488,7 @@ func (this *WindowsSandboxSecurityContext) String() string { `RunAsUsername:` + fmt.Sprintf("%v", this.RunAsUsername) + `,`, `CredentialSpec:` + fmt.Sprintf("%v", this.CredentialSpec) + `,`, `HostProcess:` + fmt.Sprintf("%v", this.HostProcess) + `,`, + `NamespaceOptions:` + strings.Replace(this.NamespaceOptions.String(), "WindowsNamespaceOption", "WindowsNamespaceOption", 1) + `,`, `}`, }, "") return s @@ -32116,6 +32242,75 @@ func (m *LinuxContainerConfig) Unmarshal(dAtA []byte) error { } return nil } +func (m *WindowsNamespaceOption) 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 ErrIntOverflowApi + } + 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: WindowsNamespaceOption: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: WindowsNamespaceOption: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Network", wireType) + } + m.Network = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Network |= NamespaceMode(b&0x7F) << shift + if b < 0x80 { + break + } + } + default: + iNdEx = preIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *WindowsSandboxSecurityContext) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -32229,6 +32424,42 @@ func (m *WindowsSandboxSecurityContext) Unmarshal(dAtA []byte) error { } } m.HostProcess = bool(v != 0) + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field NamespaceOptions", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.NamespaceOptions == nil { + m.NamespaceOptions = &WindowsNamespaceOption{} + } + if err := m.NamespaceOptions.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipApi(dAtA[iNdEx:]) diff --git a/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto b/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto index 9a2172bcdf9..5ad75e1c569 100644 --- a/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto +++ b/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto @@ -900,6 +900,13 @@ message LinuxContainerConfig { LinuxContainerSecurityContext security_context = 2; } +// WindowsNamespaceOption provides options for Windows namespaces. +message WindowsNamespaceOption { + // Network namespace for this container/sandbox. + // Namespaces currently set by the kubelet: POD, NODE + NamespaceMode network = 1; +} + // WindowsSandboxSecurityContext holds platform-specific configurations that will be // applied to a sandbox. // These settings will only apply to the sandbox container. @@ -914,6 +921,9 @@ message WindowsSandboxSecurityContext { // Indicates whether the container requested to run as a HostProcess container. bool host_process = 3; + + // Configuration for the sandbox's namespaces + WindowsNamespaceOption namespace_options = 4; } // WindowsPodSandboxConfig holds platform-specific configurations for Windows