From 997b33e2fc9847a67da9857d2fa6329960979794 Mon Sep 17 00:00:00 2001 From: Pengfei Ni Date: Tue, 12 Dec 2017 13:00:24 +0800 Subject: [PATCH] Generate cri apis automatically --- .../apis/cri/v1alpha1/runtime/api.pb.go | 1340 +++++++++++------ 1 file changed, 899 insertions(+), 441 deletions(-) diff --git a/pkg/kubelet/apis/cri/v1alpha1/runtime/api.pb.go b/pkg/kubelet/apis/cri/v1alpha1/runtime/api.pb.go index edcb6fb7a9..84ccd5e41b 100644 --- a/pkg/kubelet/apis/cri/v1alpha1/runtime/api.pb.go +++ b/pkg/kubelet/apis/cri/v1alpha1/runtime/api.pb.go @@ -60,6 +60,8 @@ limitations under the License. Capability LinuxContainerSecurityContext LinuxContainerConfig + WindowsContainerConfig + WindowsContainerResources ContainerMetadata Device ContainerConfig @@ -1547,6 +1549,69 @@ func (m *LinuxContainerConfig) GetSecurityContext() *LinuxContainerSecurityConte return nil } +// WindowsContainerConfig contains platform-specific configuration for +// Windows-based containers. +type WindowsContainerConfig struct { + // Resources specification for the container. + Resources *WindowsContainerResources `protobuf:"bytes,1,opt,name=resources" json:"resources,omitempty"` +} + +func (m *WindowsContainerConfig) Reset() { *m = WindowsContainerConfig{} } +func (*WindowsContainerConfig) ProtoMessage() {} +func (*WindowsContainerConfig) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{35} } + +func (m *WindowsContainerConfig) GetResources() *WindowsContainerResources { + if m != nil { + return m.Resources + } + return nil +} + +// WindowsContainerResources specifies Windows specific configuration for +// resources. +type WindowsContainerResources struct { + // CPU shares (relative weight vs. other containers). Default: 0 (not specified). + CpuShares int64 `protobuf:"varint,1,opt,name=cpu_shares,json=cpuShares,proto3" json:"cpu_shares,omitempty"` + // Number of CPUs available to the container. Default: 0 (not specified). + CpuCount int64 `protobuf:"varint,2,opt,name=cpu_count,json=cpuCount,proto3" json:"cpu_count,omitempty"` + // Specifies the portion of processor cycles that this container can use as a percentage times 100. + CpuMaximum int64 `protobuf:"varint,3,opt,name=cpu_maximum,json=cpuMaximum,proto3" json:"cpu_maximum,omitempty"` + // Memory limit in bytes. Default: 0 (not specified). + MemoryLimitInBytes int64 `protobuf:"varint,4,opt,name=memory_limit_in_bytes,json=memoryLimitInBytes,proto3" json:"memory_limit_in_bytes,omitempty"` +} + +func (m *WindowsContainerResources) Reset() { *m = WindowsContainerResources{} } +func (*WindowsContainerResources) ProtoMessage() {} +func (*WindowsContainerResources) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{36} } + +func (m *WindowsContainerResources) GetCpuShares() int64 { + if m != nil { + return m.CpuShares + } + return 0 +} + +func (m *WindowsContainerResources) GetCpuCount() int64 { + if m != nil { + return m.CpuCount + } + return 0 +} + +func (m *WindowsContainerResources) GetCpuMaximum() int64 { + if m != nil { + return m.CpuMaximum + } + return 0 +} + +func (m *WindowsContainerResources) GetMemoryLimitInBytes() int64 { + if m != nil { + return m.MemoryLimitInBytes + } + return 0 +} + // ContainerMetadata holds all necessary information for building the container // name. The container runtime is encouraged to expose the metadata in its user // interface for better user experience. E.g., runtime can construct a unique @@ -1561,7 +1626,7 @@ type ContainerMetadata struct { func (m *ContainerMetadata) Reset() { *m = ContainerMetadata{} } func (*ContainerMetadata) ProtoMessage() {} -func (*ContainerMetadata) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{35} } +func (*ContainerMetadata) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{37} } func (m *ContainerMetadata) GetName() string { if m != nil { @@ -1592,7 +1657,7 @@ type Device struct { func (m *Device) Reset() { *m = Device{} } func (*Device) ProtoMessage() {} -func (*Device) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{36} } +func (*Device) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{38} } func (m *Device) GetContainerPath() string { if m != nil { @@ -1675,11 +1740,13 @@ type ContainerConfig struct { Tty bool `protobuf:"varint,14,opt,name=tty,proto3" json:"tty,omitempty"` // Configuration specific to Linux containers. Linux *LinuxContainerConfig `protobuf:"bytes,15,opt,name=linux" json:"linux,omitempty"` + // Configuration specific to Windows containers. + Windows *WindowsContainerConfig `protobuf:"bytes,16,opt,name=windows" json:"windows,omitempty"` } func (m *ContainerConfig) Reset() { *m = ContainerConfig{} } func (*ContainerConfig) ProtoMessage() {} -func (*ContainerConfig) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{37} } +func (*ContainerConfig) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{39} } func (m *ContainerConfig) GetMetadata() *ContainerMetadata { if m != nil { @@ -1786,6 +1853,13 @@ func (m *ContainerConfig) GetLinux() *LinuxContainerConfig { return nil } +func (m *ContainerConfig) GetWindows() *WindowsContainerConfig { + if m != nil { + return m.Windows + } + return nil +} + type CreateContainerRequest struct { // ID of the PodSandbox in which the container should be created. PodSandboxId string `protobuf:"bytes,1,opt,name=pod_sandbox_id,json=podSandboxId,proto3" json:"pod_sandbox_id,omitempty"` @@ -1800,7 +1874,7 @@ type CreateContainerRequest struct { func (m *CreateContainerRequest) Reset() { *m = CreateContainerRequest{} } func (*CreateContainerRequest) ProtoMessage() {} -func (*CreateContainerRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{38} } +func (*CreateContainerRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{40} } func (m *CreateContainerRequest) GetPodSandboxId() string { if m != nil { @@ -1830,7 +1904,7 @@ type CreateContainerResponse struct { func (m *CreateContainerResponse) Reset() { *m = CreateContainerResponse{} } func (*CreateContainerResponse) ProtoMessage() {} -func (*CreateContainerResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{39} } +func (*CreateContainerResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{41} } func (m *CreateContainerResponse) GetContainerId() string { if m != nil { @@ -1846,7 +1920,7 @@ type StartContainerRequest struct { func (m *StartContainerRequest) Reset() { *m = StartContainerRequest{} } func (*StartContainerRequest) ProtoMessage() {} -func (*StartContainerRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{40} } +func (*StartContainerRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{42} } func (m *StartContainerRequest) GetContainerId() string { if m != nil { @@ -1860,7 +1934,7 @@ type StartContainerResponse struct { func (m *StartContainerResponse) Reset() { *m = StartContainerResponse{} } func (*StartContainerResponse) ProtoMessage() {} -func (*StartContainerResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{41} } +func (*StartContainerResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{43} } type StopContainerRequest struct { // ID of the container to stop. @@ -1872,7 +1946,7 @@ type StopContainerRequest struct { func (m *StopContainerRequest) Reset() { *m = StopContainerRequest{} } func (*StopContainerRequest) ProtoMessage() {} -func (*StopContainerRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{42} } +func (*StopContainerRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{44} } func (m *StopContainerRequest) GetContainerId() string { if m != nil { @@ -1893,7 +1967,7 @@ type StopContainerResponse struct { func (m *StopContainerResponse) Reset() { *m = StopContainerResponse{} } func (*StopContainerResponse) ProtoMessage() {} -func (*StopContainerResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{43} } +func (*StopContainerResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{45} } type RemoveContainerRequest struct { // ID of the container to remove. @@ -1902,7 +1976,7 @@ type RemoveContainerRequest struct { func (m *RemoveContainerRequest) Reset() { *m = RemoveContainerRequest{} } func (*RemoveContainerRequest) ProtoMessage() {} -func (*RemoveContainerRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{44} } +func (*RemoveContainerRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{46} } func (m *RemoveContainerRequest) GetContainerId() string { if m != nil { @@ -1916,7 +1990,7 @@ type RemoveContainerResponse struct { func (m *RemoveContainerResponse) Reset() { *m = RemoveContainerResponse{} } func (*RemoveContainerResponse) ProtoMessage() {} -func (*RemoveContainerResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{45} } +func (*RemoveContainerResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{47} } // ContainerStateValue is the wrapper of ContainerState. type ContainerStateValue struct { @@ -1926,7 +2000,7 @@ type ContainerStateValue struct { func (m *ContainerStateValue) Reset() { *m = ContainerStateValue{} } func (*ContainerStateValue) ProtoMessage() {} -func (*ContainerStateValue) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{46} } +func (*ContainerStateValue) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{48} } func (m *ContainerStateValue) GetState() ContainerState { if m != nil { @@ -1952,7 +2026,7 @@ type ContainerFilter struct { func (m *ContainerFilter) Reset() { *m = ContainerFilter{} } func (*ContainerFilter) ProtoMessage() {} -func (*ContainerFilter) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{47} } +func (*ContainerFilter) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{49} } func (m *ContainerFilter) GetId() string { if m != nil { @@ -1988,7 +2062,7 @@ type ListContainersRequest struct { func (m *ListContainersRequest) Reset() { *m = ListContainersRequest{} } func (*ListContainersRequest) ProtoMessage() {} -func (*ListContainersRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{48} } +func (*ListContainersRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{50} } func (m *ListContainersRequest) GetFilter() *ContainerFilter { if m != nil { @@ -2027,7 +2101,7 @@ type Container struct { func (m *Container) Reset() { *m = Container{} } func (*Container) ProtoMessage() {} -func (*Container) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{49} } +func (*Container) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{51} } func (m *Container) GetId() string { if m != nil { @@ -2099,7 +2173,7 @@ type ListContainersResponse struct { func (m *ListContainersResponse) Reset() { *m = ListContainersResponse{} } func (*ListContainersResponse) ProtoMessage() {} -func (*ListContainersResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{50} } +func (*ListContainersResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{52} } func (m *ListContainersResponse) GetContainers() []*Container { if m != nil { @@ -2117,7 +2191,7 @@ type ContainerStatusRequest struct { func (m *ContainerStatusRequest) Reset() { *m = ContainerStatusRequest{} } func (*ContainerStatusRequest) ProtoMessage() {} -func (*ContainerStatusRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{51} } +func (*ContainerStatusRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{53} } func (m *ContainerStatusRequest) GetContainerId() string { if m != nil { @@ -2174,7 +2248,7 @@ type ContainerStatus struct { func (m *ContainerStatus) Reset() { *m = ContainerStatus{} } func (*ContainerStatus) ProtoMessage() {} -func (*ContainerStatus) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{52} } +func (*ContainerStatus) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{54} } func (m *ContainerStatus) GetId() string { if m != nil { @@ -2293,7 +2367,7 @@ type ContainerStatusResponse struct { func (m *ContainerStatusResponse) Reset() { *m = ContainerStatusResponse{} } func (*ContainerStatusResponse) ProtoMessage() {} -func (*ContainerStatusResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{53} } +func (*ContainerStatusResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{55} } func (m *ContainerStatusResponse) GetStatus() *ContainerStatus { if m != nil { @@ -2319,7 +2393,7 @@ type UpdateContainerResourcesRequest struct { func (m *UpdateContainerResourcesRequest) Reset() { *m = UpdateContainerResourcesRequest{} } func (*UpdateContainerResourcesRequest) ProtoMessage() {} func (*UpdateContainerResourcesRequest) Descriptor() ([]byte, []int) { - return fileDescriptorApi, []int{54} + return fileDescriptorApi, []int{56} } func (m *UpdateContainerResourcesRequest) GetContainerId() string { @@ -2342,7 +2416,7 @@ type UpdateContainerResourcesResponse struct { func (m *UpdateContainerResourcesResponse) Reset() { *m = UpdateContainerResourcesResponse{} } func (*UpdateContainerResourcesResponse) ProtoMessage() {} func (*UpdateContainerResourcesResponse) Descriptor() ([]byte, []int) { - return fileDescriptorApi, []int{55} + return fileDescriptorApi, []int{57} } type ExecSyncRequest struct { @@ -2356,7 +2430,7 @@ type ExecSyncRequest struct { func (m *ExecSyncRequest) Reset() { *m = ExecSyncRequest{} } func (*ExecSyncRequest) ProtoMessage() {} -func (*ExecSyncRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{56} } +func (*ExecSyncRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{58} } func (m *ExecSyncRequest) GetContainerId() string { if m != nil { @@ -2390,7 +2464,7 @@ type ExecSyncResponse struct { func (m *ExecSyncResponse) Reset() { *m = ExecSyncResponse{} } func (*ExecSyncResponse) ProtoMessage() {} -func (*ExecSyncResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{57} } +func (*ExecSyncResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{59} } func (m *ExecSyncResponse) GetStdout() []byte { if m != nil { @@ -2436,7 +2510,7 @@ type ExecRequest struct { func (m *ExecRequest) Reset() { *m = ExecRequest{} } func (*ExecRequest) ProtoMessage() {} -func (*ExecRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{58} } +func (*ExecRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{60} } func (m *ExecRequest) GetContainerId() string { if m != nil { @@ -2487,7 +2561,7 @@ type ExecResponse struct { func (m *ExecResponse) Reset() { *m = ExecResponse{} } func (*ExecResponse) ProtoMessage() {} -func (*ExecResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{59} } +func (*ExecResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{61} } func (m *ExecResponse) GetUrl() string { if m != nil { @@ -2518,7 +2592,7 @@ type AttachRequest struct { func (m *AttachRequest) Reset() { *m = AttachRequest{} } func (*AttachRequest) ProtoMessage() {} -func (*AttachRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{60} } +func (*AttachRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{62} } func (m *AttachRequest) GetContainerId() string { if m != nil { @@ -2562,7 +2636,7 @@ type AttachResponse struct { func (m *AttachResponse) Reset() { *m = AttachResponse{} } func (*AttachResponse) ProtoMessage() {} -func (*AttachResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{61} } +func (*AttachResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{63} } func (m *AttachResponse) GetUrl() string { if m != nil { @@ -2580,7 +2654,7 @@ type PortForwardRequest struct { func (m *PortForwardRequest) Reset() { *m = PortForwardRequest{} } func (*PortForwardRequest) ProtoMessage() {} -func (*PortForwardRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{62} } +func (*PortForwardRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{64} } func (m *PortForwardRequest) GetPodSandboxId() string { if m != nil { @@ -2603,7 +2677,7 @@ type PortForwardResponse struct { func (m *PortForwardResponse) Reset() { *m = PortForwardResponse{} } func (*PortForwardResponse) ProtoMessage() {} -func (*PortForwardResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{63} } +func (*PortForwardResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{65} } func (m *PortForwardResponse) GetUrl() string { if m != nil { @@ -2619,7 +2693,7 @@ type ImageFilter struct { func (m *ImageFilter) Reset() { *m = ImageFilter{} } func (*ImageFilter) ProtoMessage() {} -func (*ImageFilter) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{64} } +func (*ImageFilter) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{66} } func (m *ImageFilter) GetImage() *ImageSpec { if m != nil { @@ -2635,7 +2709,7 @@ type ListImagesRequest struct { func (m *ListImagesRequest) Reset() { *m = ListImagesRequest{} } func (*ListImagesRequest) ProtoMessage() {} -func (*ListImagesRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{65} } +func (*ListImagesRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{67} } func (m *ListImagesRequest) GetFilter() *ImageFilter { if m != nil { @@ -2665,7 +2739,7 @@ type Image struct { func (m *Image) Reset() { *m = Image{} } func (*Image) ProtoMessage() {} -func (*Image) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{66} } +func (*Image) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{68} } func (m *Image) GetId() string { if m != nil { @@ -2716,7 +2790,7 @@ type ListImagesResponse struct { func (m *ListImagesResponse) Reset() { *m = ListImagesResponse{} } func (*ListImagesResponse) ProtoMessage() {} -func (*ListImagesResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{67} } +func (*ListImagesResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{69} } func (m *ListImagesResponse) GetImages() []*Image { if m != nil { @@ -2734,7 +2808,7 @@ type ImageStatusRequest struct { func (m *ImageStatusRequest) Reset() { *m = ImageStatusRequest{} } func (*ImageStatusRequest) ProtoMessage() {} -func (*ImageStatusRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{68} } +func (*ImageStatusRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{70} } func (m *ImageStatusRequest) GetImage() *ImageSpec { if m != nil { @@ -2762,7 +2836,7 @@ type ImageStatusResponse struct { func (m *ImageStatusResponse) Reset() { *m = ImageStatusResponse{} } func (*ImageStatusResponse) ProtoMessage() {} -func (*ImageStatusResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{69} } +func (*ImageStatusResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{71} } func (m *ImageStatusResponse) GetImage() *Image { if m != nil { @@ -2793,7 +2867,7 @@ type AuthConfig struct { func (m *AuthConfig) Reset() { *m = AuthConfig{} } func (*AuthConfig) ProtoMessage() {} -func (*AuthConfig) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{70} } +func (*AuthConfig) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{72} } func (m *AuthConfig) GetUsername() string { if m != nil { @@ -2848,7 +2922,7 @@ type PullImageRequest struct { func (m *PullImageRequest) Reset() { *m = PullImageRequest{} } func (*PullImageRequest) ProtoMessage() {} -func (*PullImageRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{71} } +func (*PullImageRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{73} } func (m *PullImageRequest) GetImage() *ImageSpec { if m != nil { @@ -2879,7 +2953,7 @@ type PullImageResponse struct { func (m *PullImageResponse) Reset() { *m = PullImageResponse{} } func (*PullImageResponse) ProtoMessage() {} -func (*PullImageResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{72} } +func (*PullImageResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{74} } func (m *PullImageResponse) GetImageRef() string { if m != nil { @@ -2895,7 +2969,7 @@ type RemoveImageRequest struct { func (m *RemoveImageRequest) Reset() { *m = RemoveImageRequest{} } func (*RemoveImageRequest) ProtoMessage() {} -func (*RemoveImageRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{73} } +func (*RemoveImageRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{75} } func (m *RemoveImageRequest) GetImage() *ImageSpec { if m != nil { @@ -2909,7 +2983,7 @@ type RemoveImageResponse struct { func (m *RemoveImageResponse) Reset() { *m = RemoveImageResponse{} } func (*RemoveImageResponse) ProtoMessage() {} -func (*RemoveImageResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{74} } +func (*RemoveImageResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{76} } type NetworkConfig struct { // CIDR to use for pod IP addresses. @@ -2918,7 +2992,7 @@ type NetworkConfig struct { func (m *NetworkConfig) Reset() { *m = NetworkConfig{} } func (*NetworkConfig) ProtoMessage() {} -func (*NetworkConfig) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{75} } +func (*NetworkConfig) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{77} } func (m *NetworkConfig) GetPodCidr() string { if m != nil { @@ -2933,7 +3007,7 @@ type RuntimeConfig struct { func (m *RuntimeConfig) Reset() { *m = RuntimeConfig{} } func (*RuntimeConfig) ProtoMessage() {} -func (*RuntimeConfig) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{76} } +func (*RuntimeConfig) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{78} } func (m *RuntimeConfig) GetNetworkConfig() *NetworkConfig { if m != nil { @@ -2948,7 +3022,7 @@ type UpdateRuntimeConfigRequest struct { func (m *UpdateRuntimeConfigRequest) Reset() { *m = UpdateRuntimeConfigRequest{} } func (*UpdateRuntimeConfigRequest) ProtoMessage() {} -func (*UpdateRuntimeConfigRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{77} } +func (*UpdateRuntimeConfigRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{79} } func (m *UpdateRuntimeConfigRequest) GetRuntimeConfig() *RuntimeConfig { if m != nil { @@ -2962,7 +3036,7 @@ type UpdateRuntimeConfigResponse struct { func (m *UpdateRuntimeConfigResponse) Reset() { *m = UpdateRuntimeConfigResponse{} } func (*UpdateRuntimeConfigResponse) ProtoMessage() {} -func (*UpdateRuntimeConfigResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{78} } +func (*UpdateRuntimeConfigResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{80} } // RuntimeCondition contains condition information for the runtime. // There are 2 kinds of runtime conditions: @@ -2990,7 +3064,7 @@ type RuntimeCondition struct { func (m *RuntimeCondition) Reset() { *m = RuntimeCondition{} } func (*RuntimeCondition) ProtoMessage() {} -func (*RuntimeCondition) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{79} } +func (*RuntimeCondition) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{81} } func (m *RuntimeCondition) GetType() string { if m != nil { @@ -3028,7 +3102,7 @@ type RuntimeStatus struct { func (m *RuntimeStatus) Reset() { *m = RuntimeStatus{} } func (*RuntimeStatus) ProtoMessage() {} -func (*RuntimeStatus) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{80} } +func (*RuntimeStatus) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{82} } func (m *RuntimeStatus) GetConditions() []*RuntimeCondition { if m != nil { @@ -3044,7 +3118,7 @@ type StatusRequest struct { func (m *StatusRequest) Reset() { *m = StatusRequest{} } func (*StatusRequest) ProtoMessage() {} -func (*StatusRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{81} } +func (*StatusRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{83} } func (m *StatusRequest) GetVerbose() bool { if m != nil { @@ -3065,7 +3139,7 @@ type StatusResponse struct { func (m *StatusResponse) Reset() { *m = StatusResponse{} } func (*StatusResponse) ProtoMessage() {} -func (*StatusResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{82} } +func (*StatusResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{84} } func (m *StatusResponse) GetStatus() *RuntimeStatus { if m != nil { @@ -3086,7 +3160,7 @@ type ImageFsInfoRequest struct { func (m *ImageFsInfoRequest) Reset() { *m = ImageFsInfoRequest{} } func (*ImageFsInfoRequest) ProtoMessage() {} -func (*ImageFsInfoRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{83} } +func (*ImageFsInfoRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{85} } // UInt64Value is the wrapper of uint64. type UInt64Value struct { @@ -3096,7 +3170,7 @@ type UInt64Value struct { func (m *UInt64Value) Reset() { *m = UInt64Value{} } func (*UInt64Value) ProtoMessage() {} -func (*UInt64Value) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{84} } +func (*UInt64Value) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{86} } func (m *UInt64Value) GetValue() uint64 { if m != nil { @@ -3113,7 +3187,7 @@ type StorageIdentifier struct { func (m *StorageIdentifier) Reset() { *m = StorageIdentifier{} } func (*StorageIdentifier) ProtoMessage() {} -func (*StorageIdentifier) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{85} } +func (*StorageIdentifier) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{87} } func (m *StorageIdentifier) GetUuid() string { if m != nil { @@ -3140,7 +3214,7 @@ type FilesystemUsage struct { func (m *FilesystemUsage) Reset() { *m = FilesystemUsage{} } func (*FilesystemUsage) ProtoMessage() {} -func (*FilesystemUsage) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{86} } +func (*FilesystemUsage) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{88} } func (m *FilesystemUsage) GetTimestamp() int64 { if m != nil { @@ -3177,7 +3251,7 @@ type ImageFsInfoResponse struct { func (m *ImageFsInfoResponse) Reset() { *m = ImageFsInfoResponse{} } func (*ImageFsInfoResponse) ProtoMessage() {} -func (*ImageFsInfoResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{87} } +func (*ImageFsInfoResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{89} } func (m *ImageFsInfoResponse) GetImageFilesystems() []*FilesystemUsage { if m != nil { @@ -3193,7 +3267,7 @@ type ContainerStatsRequest struct { func (m *ContainerStatsRequest) Reset() { *m = ContainerStatsRequest{} } func (*ContainerStatsRequest) ProtoMessage() {} -func (*ContainerStatsRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{88} } +func (*ContainerStatsRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{90} } func (m *ContainerStatsRequest) GetContainerId() string { if m != nil { @@ -3209,7 +3283,7 @@ type ContainerStatsResponse struct { func (m *ContainerStatsResponse) Reset() { *m = ContainerStatsResponse{} } func (*ContainerStatsResponse) ProtoMessage() {} -func (*ContainerStatsResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{89} } +func (*ContainerStatsResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{91} } func (m *ContainerStatsResponse) GetStats() *ContainerStats { if m != nil { @@ -3225,7 +3299,7 @@ type ListContainerStatsRequest struct { func (m *ListContainerStatsRequest) Reset() { *m = ListContainerStatsRequest{} } func (*ListContainerStatsRequest) ProtoMessage() {} -func (*ListContainerStatsRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{90} } +func (*ListContainerStatsRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{92} } func (m *ListContainerStatsRequest) GetFilter() *ContainerStatsFilter { if m != nil { @@ -3249,7 +3323,7 @@ type ContainerStatsFilter struct { func (m *ContainerStatsFilter) Reset() { *m = ContainerStatsFilter{} } func (*ContainerStatsFilter) ProtoMessage() {} -func (*ContainerStatsFilter) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{91} } +func (*ContainerStatsFilter) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{93} } func (m *ContainerStatsFilter) GetId() string { if m != nil { @@ -3279,7 +3353,7 @@ type ListContainerStatsResponse struct { func (m *ListContainerStatsResponse) Reset() { *m = ListContainerStatsResponse{} } func (*ListContainerStatsResponse) ProtoMessage() {} -func (*ListContainerStatsResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{92} } +func (*ListContainerStatsResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{94} } func (m *ListContainerStatsResponse) GetStats() []*ContainerStats { if m != nil { @@ -3305,7 +3379,7 @@ type ContainerAttributes struct { func (m *ContainerAttributes) Reset() { *m = ContainerAttributes{} } func (*ContainerAttributes) ProtoMessage() {} -func (*ContainerAttributes) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{93} } +func (*ContainerAttributes) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{95} } func (m *ContainerAttributes) GetId() string { if m != nil { @@ -3349,7 +3423,7 @@ type ContainerStats struct { func (m *ContainerStats) Reset() { *m = ContainerStats{} } func (*ContainerStats) ProtoMessage() {} -func (*ContainerStats) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{94} } +func (*ContainerStats) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{96} } func (m *ContainerStats) GetAttributes() *ContainerAttributes { if m != nil { @@ -3389,7 +3463,7 @@ type CpuUsage struct { func (m *CpuUsage) Reset() { *m = CpuUsage{} } func (*CpuUsage) ProtoMessage() {} -func (*CpuUsage) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{95} } +func (*CpuUsage) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{97} } func (m *CpuUsage) GetTimestamp() int64 { if m != nil { @@ -3415,7 +3489,7 @@ type MemoryUsage struct { func (m *MemoryUsage) Reset() { *m = MemoryUsage{} } func (*MemoryUsage) ProtoMessage() {} -func (*MemoryUsage) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{96} } +func (*MemoryUsage) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{98} } func (m *MemoryUsage) GetTimestamp() int64 { if m != nil { @@ -3438,7 +3512,7 @@ type ReopenContainerLogRequest struct { func (m *ReopenContainerLogRequest) Reset() { *m = ReopenContainerLogRequest{} } func (*ReopenContainerLogRequest) ProtoMessage() {} -func (*ReopenContainerLogRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{97} } +func (*ReopenContainerLogRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{99} } func (m *ReopenContainerLogRequest) GetContainerId() string { if m != nil { @@ -3452,7 +3526,7 @@ type ReopenContainerLogResponse struct { func (m *ReopenContainerLogResponse) Reset() { *m = ReopenContainerLogResponse{} } func (*ReopenContainerLogResponse) ProtoMessage() {} -func (*ReopenContainerLogResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{98} } +func (*ReopenContainerLogResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{100} } func init() { proto.RegisterType((*VersionRequest)(nil), "runtime.VersionRequest") @@ -3490,6 +3564,8 @@ func init() { proto.RegisterType((*Capability)(nil), "runtime.Capability") proto.RegisterType((*LinuxContainerSecurityContext)(nil), "runtime.LinuxContainerSecurityContext") proto.RegisterType((*LinuxContainerConfig)(nil), "runtime.LinuxContainerConfig") + proto.RegisterType((*WindowsContainerConfig)(nil), "runtime.WindowsContainerConfig") + proto.RegisterType((*WindowsContainerResources)(nil), "runtime.WindowsContainerResources") proto.RegisterType((*ContainerMetadata)(nil), "runtime.ContainerMetadata") proto.RegisterType((*Device)(nil), "runtime.Device") proto.RegisterType((*ContainerConfig)(nil), "runtime.ContainerConfig") @@ -6177,6 +6253,72 @@ func (m *LinuxContainerConfig) MarshalTo(dAtA []byte) (int, error) { return i, nil } +func (m *WindowsContainerConfig) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalTo(dAtA) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *WindowsContainerConfig) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + if m.Resources != nil { + dAtA[i] = 0xa + i++ + i = encodeVarintApi(dAtA, i, uint64(m.Resources.Size())) + n28, err := m.Resources.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err + } + i += n28 + } + return i, nil +} + +func (m *WindowsContainerResources) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalTo(dAtA) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *WindowsContainerResources) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + if m.CpuShares != 0 { + dAtA[i] = 0x8 + i++ + i = encodeVarintApi(dAtA, i, uint64(m.CpuShares)) + } + if m.CpuCount != 0 { + dAtA[i] = 0x10 + i++ + i = encodeVarintApi(dAtA, i, uint64(m.CpuCount)) + } + if m.CpuMaximum != 0 { + dAtA[i] = 0x18 + i++ + i = encodeVarintApi(dAtA, i, uint64(m.CpuMaximum)) + } + if m.MemoryLimitInBytes != 0 { + dAtA[i] = 0x20 + i++ + i = encodeVarintApi(dAtA, i, uint64(m.MemoryLimitInBytes)) + } + return i, nil +} + func (m *ContainerMetadata) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -6261,21 +6403,21 @@ func (m *ContainerConfig) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Metadata.Size())) - n28, err := m.Metadata.MarshalTo(dAtA[i:]) + n29, err := m.Metadata.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n28 + i += n29 } if m.Image != nil { dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.Image.Size())) - n29, err := m.Image.MarshalTo(dAtA[i:]) + n30, err := m.Image.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n29 + i += n30 } if len(m.Command) > 0 { for _, s := range m.Command { @@ -6423,11 +6565,23 @@ func (m *ContainerConfig) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x7a i++ i = encodeVarintApi(dAtA, i, uint64(m.Linux.Size())) - n30, err := m.Linux.MarshalTo(dAtA[i:]) + n31, err := m.Linux.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n30 + i += n31 + } + if m.Windows != nil { + dAtA[i] = 0x82 + i++ + dAtA[i] = 0x1 + i++ + i = encodeVarintApi(dAtA, i, uint64(m.Windows.Size())) + n32, err := m.Windows.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err + } + i += n32 } return i, nil } @@ -6457,21 +6611,21 @@ func (m *CreateContainerRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.Config.Size())) - n31, err := m.Config.MarshalTo(dAtA[i:]) + n33, err := m.Config.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n31 + i += n33 } if m.SandboxConfig != nil { dAtA[i] = 0x1a i++ i = encodeVarintApi(dAtA, i, uint64(m.SandboxConfig.Size())) - n32, err := m.SandboxConfig.MarshalTo(dAtA[i:]) + n34, err := m.SandboxConfig.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n32 + i += n34 } return i, nil } @@ -6679,11 +6833,11 @@ func (m *ContainerFilter) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.State.Size())) - n33, err := m.State.MarshalTo(dAtA[i:]) + n35, err := m.State.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n33 + i += n35 } if len(m.PodSandboxId) > 0 { dAtA[i] = 0x1a @@ -6730,11 +6884,11 @@ func (m *ListContainersRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Filter.Size())) - n34, err := m.Filter.MarshalTo(dAtA[i:]) + n36, err := m.Filter.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n34 + i += n36 } return i, nil } @@ -6770,21 +6924,21 @@ func (m *Container) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1a i++ i = encodeVarintApi(dAtA, i, uint64(m.Metadata.Size())) - n35, err := m.Metadata.MarshalTo(dAtA[i:]) + n37, err := m.Metadata.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n35 + i += n37 } if m.Image != nil { dAtA[i] = 0x22 i++ i = encodeVarintApi(dAtA, i, uint64(m.Image.Size())) - n36, err := m.Image.MarshalTo(dAtA[i:]) + n38, err := m.Image.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n36 + i += n38 } if len(m.ImageRef) > 0 { dAtA[i] = 0x2a @@ -6928,11 +7082,11 @@ func (m *ContainerStatus) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.Metadata.Size())) - n37, err := m.Metadata.MarshalTo(dAtA[i:]) + n39, err := m.Metadata.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n37 + i += n39 } if m.State != 0 { dAtA[i] = 0x18 @@ -6963,11 +7117,11 @@ func (m *ContainerStatus) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x42 i++ i = encodeVarintApi(dAtA, i, uint64(m.Image.Size())) - n38, err := m.Image.MarshalTo(dAtA[i:]) + n40, err := m.Image.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n38 + i += n40 } if len(m.ImageRef) > 0 { dAtA[i] = 0x4a @@ -7061,11 +7215,11 @@ func (m *ContainerStatusResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Status.Size())) - n39, err := m.Status.MarshalTo(dAtA[i:]) + n41, err := m.Status.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n39 + i += n41 } if len(m.Info) > 0 { for k := range m.Info { @@ -7112,11 +7266,11 @@ func (m *UpdateContainerResourcesRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.Linux.Size())) - n40, err := m.Linux.MarshalTo(dAtA[i:]) + n42, err := m.Linux.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n40 + i += n42 } return i, nil } @@ -7431,22 +7585,22 @@ func (m *PortForwardRequest) MarshalTo(dAtA []byte) (int, error) { i += copy(dAtA[i:], m.PodSandboxId) } if len(m.Port) > 0 { - dAtA42 := make([]byte, len(m.Port)*10) - var j41 int + dAtA44 := make([]byte, len(m.Port)*10) + var j43 int for _, num1 := range m.Port { num := uint64(num1) for num >= 1<<7 { - dAtA42[j41] = uint8(uint64(num)&0x7f | 0x80) + dAtA44[j43] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j41++ + j43++ } - dAtA42[j41] = uint8(num) - j41++ + dAtA44[j43] = uint8(num) + j43++ } dAtA[i] = 0x12 i++ - i = encodeVarintApi(dAtA, i, uint64(j41)) - i += copy(dAtA[i:], dAtA42[:j41]) + i = encodeVarintApi(dAtA, i, uint64(j43)) + i += copy(dAtA[i:], dAtA44[:j43]) } return i, nil } @@ -7494,11 +7648,11 @@ func (m *ImageFilter) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Image.Size())) - n43, err := m.Image.MarshalTo(dAtA[i:]) + n45, err := m.Image.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n43 + i += n45 } return i, nil } @@ -7522,11 +7676,11 @@ func (m *ListImagesRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Filter.Size())) - n44, err := m.Filter.MarshalTo(dAtA[i:]) + n46, err := m.Filter.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n44 + i += n46 } return i, nil } @@ -7591,11 +7745,11 @@ func (m *Image) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2a i++ i = encodeVarintApi(dAtA, i, uint64(m.Uid.Size())) - n45, err := m.Uid.MarshalTo(dAtA[i:]) + n47, err := m.Uid.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n45 + i += n47 } if len(m.Username) > 0 { dAtA[i] = 0x32 @@ -7655,11 +7809,11 @@ func (m *ImageStatusRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Image.Size())) - n46, err := m.Image.MarshalTo(dAtA[i:]) + n48, err := m.Image.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n46 + i += n48 } if m.Verbose { dAtA[i] = 0x10 @@ -7693,11 +7847,11 @@ func (m *ImageStatusResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Image.Size())) - n47, err := m.Image.MarshalTo(dAtA[i:]) + n49, err := m.Image.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n47 + i += n49 } if len(m.Info) > 0 { for k := range m.Info { @@ -7792,31 +7946,31 @@ func (m *PullImageRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Image.Size())) - n48, err := m.Image.MarshalTo(dAtA[i:]) + n50, err := m.Image.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n48 + i += n50 } if m.Auth != nil { dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.Auth.Size())) - n49, err := m.Auth.MarshalTo(dAtA[i:]) + n51, err := m.Auth.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n49 + i += n51 } if m.SandboxConfig != nil { dAtA[i] = 0x1a i++ i = encodeVarintApi(dAtA, i, uint64(m.SandboxConfig.Size())) - n50, err := m.SandboxConfig.MarshalTo(dAtA[i:]) + n52, err := m.SandboxConfig.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n50 + i += n52 } return i, nil } @@ -7864,11 +8018,11 @@ func (m *RemoveImageRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Image.Size())) - n51, err := m.Image.MarshalTo(dAtA[i:]) + n53, err := m.Image.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n51 + i += n53 } return i, nil } @@ -7934,11 +8088,11 @@ func (m *RuntimeConfig) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.NetworkConfig.Size())) - n52, err := m.NetworkConfig.MarshalTo(dAtA[i:]) + n54, err := m.NetworkConfig.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n52 + i += n54 } return i, nil } @@ -7962,11 +8116,11 @@ func (m *UpdateRuntimeConfigRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.RuntimeConfig.Size())) - n53, err := m.RuntimeConfig.MarshalTo(dAtA[i:]) + n55, err := m.RuntimeConfig.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n53 + i += n55 } return i, nil } @@ -8112,11 +8266,11 @@ func (m *StatusResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Status.Size())) - n54, err := m.Status.MarshalTo(dAtA[i:]) + n56, err := m.Status.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n54 + i += n56 } if len(m.Info) > 0 { for k := range m.Info { @@ -8227,31 +8381,31 @@ func (m *FilesystemUsage) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.StorageId.Size())) - n55, err := m.StorageId.MarshalTo(dAtA[i:]) + n57, err := m.StorageId.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n55 + i += n57 } if m.UsedBytes != nil { dAtA[i] = 0x1a i++ i = encodeVarintApi(dAtA, i, uint64(m.UsedBytes.Size())) - n56, err := m.UsedBytes.MarshalTo(dAtA[i:]) + n58, err := m.UsedBytes.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n56 + i += n58 } if m.InodesUsed != nil { dAtA[i] = 0x22 i++ i = encodeVarintApi(dAtA, i, uint64(m.InodesUsed.Size())) - n57, err := m.InodesUsed.MarshalTo(dAtA[i:]) + n59, err := m.InodesUsed.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n57 + i += n59 } return i, nil } @@ -8329,11 +8483,11 @@ func (m *ContainerStatsResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Stats.Size())) - n58, err := m.Stats.MarshalTo(dAtA[i:]) + n60, err := m.Stats.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n58 + i += n60 } return i, nil } @@ -8357,11 +8511,11 @@ func (m *ListContainerStatsRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Filter.Size())) - n59, err := m.Filter.MarshalTo(dAtA[i:]) + n61, err := m.Filter.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n59 + i += n61 } return i, nil } @@ -8468,11 +8622,11 @@ func (m *ContainerAttributes) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.Metadata.Size())) - n60, err := m.Metadata.MarshalTo(dAtA[i:]) + n62, err := m.Metadata.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n60 + i += n62 } if len(m.Labels) > 0 { for k := range m.Labels { @@ -8530,42 +8684,42 @@ func (m *ContainerStats) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Attributes.Size())) - n61, err := m.Attributes.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err - } - i += n61 - } - if m.Cpu != nil { - dAtA[i] = 0x12 - i++ - i = encodeVarintApi(dAtA, i, uint64(m.Cpu.Size())) - n62, err := m.Cpu.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err - } - i += n62 - } - if m.Memory != nil { - dAtA[i] = 0x1a - i++ - i = encodeVarintApi(dAtA, i, uint64(m.Memory.Size())) - n63, err := m.Memory.MarshalTo(dAtA[i:]) + n63, err := m.Attributes.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n63 } - if m.WritableLayer != nil { - dAtA[i] = 0x22 + if m.Cpu != nil { + dAtA[i] = 0x12 i++ - i = encodeVarintApi(dAtA, i, uint64(m.WritableLayer.Size())) - n64, err := m.WritableLayer.MarshalTo(dAtA[i:]) + i = encodeVarintApi(dAtA, i, uint64(m.Cpu.Size())) + n64, err := m.Cpu.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n64 } + if m.Memory != nil { + dAtA[i] = 0x1a + i++ + i = encodeVarintApi(dAtA, i, uint64(m.Memory.Size())) + n65, err := m.Memory.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err + } + i += n65 + } + if m.WritableLayer != nil { + dAtA[i] = 0x22 + i++ + i = encodeVarintApi(dAtA, i, uint64(m.WritableLayer.Size())) + n66, err := m.WritableLayer.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err + } + i += n66 + } return i, nil } @@ -8593,11 +8747,11 @@ func (m *CpuUsage) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.UsageCoreNanoSeconds.Size())) - n65, err := m.UsageCoreNanoSeconds.MarshalTo(dAtA[i:]) + n67, err := m.UsageCoreNanoSeconds.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n65 + i += n67 } return i, nil } @@ -8626,11 +8780,11 @@ func (m *MemoryUsage) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.WorkingSetBytes.Size())) - n66, err := m.WorkingSetBytes.MarshalTo(dAtA[i:]) + n68, err := m.WorkingSetBytes.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n66 + i += n68 } return i, nil } @@ -9355,6 +9509,34 @@ func (m *LinuxContainerConfig) Size() (n int) { return n } +func (m *WindowsContainerConfig) Size() (n int) { + var l int + _ = l + if m.Resources != nil { + l = m.Resources.Size() + n += 1 + l + sovApi(uint64(l)) + } + return n +} + +func (m *WindowsContainerResources) Size() (n int) { + var l int + _ = l + if m.CpuShares != 0 { + n += 1 + sovApi(uint64(m.CpuShares)) + } + if m.CpuCount != 0 { + n += 1 + sovApi(uint64(m.CpuCount)) + } + if m.CpuMaximum != 0 { + n += 1 + sovApi(uint64(m.CpuMaximum)) + } + if m.MemoryLimitInBytes != 0 { + n += 1 + sovApi(uint64(m.MemoryLimitInBytes)) + } + return n +} + func (m *ContainerMetadata) Size() (n int) { var l int _ = l @@ -9464,6 +9646,10 @@ func (m *ContainerConfig) Size() (n int) { l = m.Linux.Size() n += 1 + l + sovApi(uint64(l)) } + if m.Windows != nil { + l = m.Windows.Size() + n += 2 + l + sovApi(uint64(l)) + } return n } @@ -10909,6 +11095,29 @@ func (this *LinuxContainerConfig) String() string { }, "") return s } +func (this *WindowsContainerConfig) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&WindowsContainerConfig{`, + `Resources:` + strings.Replace(fmt.Sprintf("%v", this.Resources), "WindowsContainerResources", "WindowsContainerResources", 1) + `,`, + `}`, + }, "") + return s +} +func (this *WindowsContainerResources) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&WindowsContainerResources{`, + `CpuShares:` + fmt.Sprintf("%v", this.CpuShares) + `,`, + `CpuCount:` + fmt.Sprintf("%v", this.CpuCount) + `,`, + `CpuMaximum:` + fmt.Sprintf("%v", this.CpuMaximum) + `,`, + `MemoryLimitInBytes:` + fmt.Sprintf("%v", this.MemoryLimitInBytes) + `,`, + `}`, + }, "") + return s +} func (this *ContainerMetadata) String() string { if this == nil { return "nil" @@ -10972,6 +11181,7 @@ func (this *ContainerConfig) String() string { `StdinOnce:` + fmt.Sprintf("%v", this.StdinOnce) + `,`, `Tty:` + fmt.Sprintf("%v", this.Tty) + `,`, `Linux:` + strings.Replace(fmt.Sprintf("%v", this.Linux), "LinuxContainerConfig", "LinuxContainerConfig", 1) + `,`, + `Windows:` + strings.Replace(fmt.Sprintf("%v", this.Windows), "WindowsContainerConfig", "WindowsContainerConfig", 1) + `,`, `}`, }, "") return s @@ -17195,6 +17405,215 @@ func (m *LinuxContainerConfig) Unmarshal(dAtA []byte) error { } return nil } +func (m *WindowsContainerConfig) 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: WindowsContainerConfig: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: WindowsContainerConfig: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Resources", 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 > l { + return io.ErrUnexpectedEOF + } + if m.Resources == nil { + m.Resources = &WindowsContainerResources{} + } + if err := m.Resources.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *WindowsContainerResources) 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: WindowsContainerResources: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: WindowsContainerResources: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field CpuShares", wireType) + } + m.CpuShares = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.CpuShares |= (int64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field CpuCount", wireType) + } + m.CpuCount = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.CpuCount |= (int64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field CpuMaximum", wireType) + } + m.CpuMaximum = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.CpuMaximum |= (int64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + case 4: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field MemoryLimitInBytes", wireType) + } + m.MemoryLimitInBytes = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.MemoryLimitInBytes |= (int64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + default: + iNdEx = preIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *ContainerMetadata) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -18059,6 +18478,39 @@ func (m *ContainerConfig) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 16: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Windows", 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 > l { + return io.ErrUnexpectedEOF + } + if m.Windows == nil { + m.Windows = &WindowsContainerConfig{} + } + if err := m.Windows.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipApi(dAtA[iNdEx:]) @@ -25853,282 +26305,288 @@ var ( func init() { proto.RegisterFile("api.proto", fileDescriptorApi) } var fileDescriptorApi = []byte{ - // 4431 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5b, 0xcd, 0x6f, 0x1c, 0x47, - 0x76, 0xe7, 0xcc, 0xf0, 0x63, 0xe6, 0x0d, 0x67, 0x38, 0x2c, 0x51, 0xe4, 0x70, 0x24, 0x51, 0x54, - 0xcb, 0x92, 0x25, 0xed, 0x4a, 0x96, 0xe9, 0xb5, 0x14, 0xcb, 0xb6, 0xe4, 0x31, 0x49, 0x29, 0xb4, - 0x24, 0x92, 0xdb, 0x43, 0x7a, 0x6d, 0x6c, 0x80, 0x4e, 0x73, 0xba, 0x38, 0x6c, 0x7b, 0xa6, 0xab, - 0xdd, 0x1f, 0x92, 0x18, 0xe4, 0x90, 0x5c, 0x82, 0x20, 0x40, 0x80, 0xcd, 0x31, 0x39, 0xe5, 0x10, - 0x60, 0x91, 0x4b, 0x10, 0x04, 0x41, 0x90, 0x3f, 0x20, 0x48, 0xf6, 0xb2, 0x40, 0x4e, 0x41, 0x72, - 0xcb, 0x2a, 0x87, 0x1c, 0x02, 0xe4, 0x6f, 0x58, 0xd4, 0x57, 0x77, 0xf5, 0xd7, 0x88, 0x94, 0xbd, - 0x6b, 0x9d, 0xa6, 0xeb, 0xd5, 0xab, 0x57, 0xaf, 0xaa, 0x5e, 0xbd, 0x7a, 0xef, 0x57, 0x35, 0x50, - 0x33, 0x5d, 0xfb, 0x96, 0xeb, 0x91, 0x80, 0xa0, 0x19, 0x2f, 0x74, 0x02, 0x7b, 0x84, 0x3b, 0x37, - 0x07, 0x76, 0x70, 0x14, 0x1e, 0xdc, 0xea, 0x93, 0xd1, 0x3b, 0x03, 0x32, 0x20, 0xef, 0xb0, 0xfa, - 0x83, 0xf0, 0x90, 0x95, 0x58, 0x81, 0x7d, 0xf1, 0x76, 0xda, 0x0d, 0x68, 0x7e, 0x8e, 0x3d, 0xdf, - 0x26, 0x8e, 0x8e, 0xbf, 0x09, 0xb1, 0x1f, 0xa0, 0x36, 0xcc, 0x3c, 0xe3, 0x94, 0x76, 0x69, 0xb5, - 0x74, 0xad, 0xa6, 0xcb, 0xa2, 0xf6, 0xf3, 0x12, 0xcc, 0x45, 0xcc, 0xbe, 0x4b, 0x1c, 0x1f, 0x17, - 0x73, 0xa3, 0x4b, 0x30, 0x2b, 0x74, 0x32, 0x1c, 0x73, 0x84, 0xdb, 0x65, 0x56, 0x5d, 0x17, 0xb4, - 0x6d, 0x73, 0x84, 0xd1, 0xdb, 0x30, 0x27, 0x59, 0xa4, 0x90, 0x0a, 0xe3, 0x6a, 0x0a, 0xb2, 0xe8, - 0x0d, 0xdd, 0x82, 0x33, 0x92, 0xd1, 0x74, 0xed, 0x88, 0x79, 0x92, 0x31, 0xcf, 0x8b, 0xaa, 0xae, - 0x6b, 0x0b, 0x7e, 0xed, 0xa7, 0x50, 0xdb, 0xd8, 0xee, 0xad, 0x13, 0xe7, 0xd0, 0x1e, 0x50, 0x15, - 0x7d, 0xec, 0xd1, 0x36, 0xed, 0xd2, 0x6a, 0x85, 0xaa, 0x28, 0x8a, 0xa8, 0x03, 0x55, 0x1f, 0x9b, - 0x5e, 0xff, 0x08, 0xfb, 0xed, 0x32, 0xab, 0x8a, 0xca, 0xb4, 0x15, 0x71, 0x03, 0x9b, 0x38, 0x7e, - 0xbb, 0xc2, 0x5b, 0x89, 0xa2, 0xf6, 0x97, 0x25, 0xa8, 0xef, 0x12, 0x2f, 0x78, 0x6a, 0xba, 0xae, - 0xed, 0x0c, 0xd0, 0x4d, 0xa8, 0xb2, 0xb9, 0xec, 0x93, 0x21, 0x9b, 0x83, 0xe6, 0xda, 0xfc, 0x2d, - 0xa1, 0xd2, 0xad, 0x5d, 0x51, 0xa1, 0x47, 0x2c, 0xe8, 0x0a, 0x34, 0xfb, 0xc4, 0x09, 0x4c, 0xdb, - 0xc1, 0x9e, 0xe1, 0x12, 0x2f, 0x60, 0x33, 0x33, 0xa5, 0x37, 0x22, 0x2a, 0x15, 0x8e, 0xce, 0x41, - 0xed, 0x88, 0xf8, 0x01, 0xe7, 0xa8, 0x30, 0x8e, 0x2a, 0x25, 0xb0, 0xca, 0x25, 0x98, 0x61, 0x95, - 0xb6, 0x2b, 0xe6, 0x60, 0x9a, 0x16, 0xb7, 0x5c, 0xed, 0x97, 0x25, 0x98, 0x7a, 0x4a, 0x42, 0x27, - 0x48, 0x75, 0x63, 0x06, 0x47, 0x62, 0x7d, 0x94, 0x6e, 0xcc, 0xe0, 0x28, 0xee, 0x86, 0x72, 0xf0, - 0x25, 0xe2, 0xdd, 0xd0, 0xca, 0x0e, 0x54, 0x3d, 0x6c, 0x5a, 0xc4, 0x19, 0x1e, 0x33, 0x15, 0xaa, - 0x7a, 0x54, 0xa6, 0x6b, 0xe7, 0xe3, 0xa1, 0xed, 0x84, 0x2f, 0x0c, 0x0f, 0x0f, 0xcd, 0x03, 0x3c, - 0x64, 0xaa, 0x54, 0xf5, 0xa6, 0x20, 0xeb, 0x9c, 0x8a, 0x3e, 0x84, 0xba, 0xeb, 0x11, 0xd7, 0x1c, - 0x98, 0x74, 0xfa, 0xda, 0x53, 0x6c, 0x86, 0x96, 0xa3, 0x19, 0x62, 0xda, 0xee, 0xc6, 0x0c, 0xba, - 0xca, 0xad, 0x7d, 0x05, 0x73, 0xd4, 0x52, 0x7c, 0xd7, 0xec, 0xe3, 0x1d, 0x36, 0xff, 0xd4, 0xae, - 0x98, 0xc6, 0x0e, 0x0e, 0x9e, 0x13, 0xef, 0x6b, 0x36, 0xac, 0xaa, 0x5e, 0xa7, 0xb4, 0x6d, 0x4e, - 0x42, 0xcb, 0x50, 0xe5, 0x83, 0xb2, 0x2d, 0x36, 0xa6, 0xaa, 0xce, 0xa6, 0x6b, 0xd7, 0xb6, 0xa2, - 0x2a, 0xdb, 0xed, 0x8b, 0x21, 0xcd, 0xf0, 0xa9, 0xeb, 0x6b, 0x1a, 0xc0, 0x96, 0x13, 0xdc, 0xf9, - 0xd1, 0xe7, 0xe6, 0x30, 0xc4, 0x68, 0x01, 0xa6, 0x9e, 0xd1, 0x0f, 0x26, 0xbf, 0xa2, 0xf3, 0x82, - 0xf6, 0x27, 0x15, 0x38, 0xf7, 0x84, 0x8e, 0xae, 0x67, 0x3a, 0xd6, 0x01, 0x79, 0xd1, 0xc3, 0xfd, - 0xd0, 0xb3, 0x83, 0xe3, 0x75, 0xe2, 0x04, 0xf8, 0x45, 0x80, 0x36, 0x61, 0xde, 0x91, 0xfa, 0x1a, - 0xd2, 0x7e, 0xa8, 0x84, 0xfa, 0x5a, 0x3b, 0x1a, 0x72, 0x6a, 0x44, 0x7a, 0xcb, 0x49, 0x12, 0x7c, - 0xf4, 0x20, 0x9e, 0x5c, 0x29, 0xa4, 0xcc, 0x84, 0x2c, 0x46, 0x42, 0x7a, 0x9b, 0x4c, 0x0f, 0x21, - 0x42, 0x4e, 0xba, 0x14, 0xf0, 0x1e, 0xd0, 0x8d, 0x66, 0x98, 0xbe, 0x11, 0xfa, 0xd8, 0x63, 0x23, - 0xad, 0xaf, 0x9d, 0x89, 0x1a, 0xc7, 0xe3, 0xd4, 0x6b, 0x5e, 0xe8, 0x74, 0xfd, 0x7d, 0x1f, 0x7b, - 0x6c, 0x3b, 0x8a, 0xe5, 0x35, 0x3c, 0x42, 0x82, 0x43, 0x5f, 0x2e, 0xa9, 0x24, 0xeb, 0x8c, 0x8a, - 0xde, 0x81, 0x33, 0x7e, 0xe8, 0xba, 0x43, 0x3c, 0xc2, 0x4e, 0x60, 0x0e, 0x8d, 0x81, 0x47, 0x42, - 0xd7, 0x6f, 0x4f, 0xad, 0x56, 0xae, 0x55, 0x74, 0xa4, 0x56, 0x3d, 0x62, 0x35, 0x68, 0x05, 0xc0, - 0xf5, 0xec, 0x67, 0xf6, 0x10, 0x0f, 0xb0, 0xd5, 0x9e, 0x66, 0x42, 0x15, 0x0a, 0xba, 0x0d, 0x0b, - 0x3e, 0xee, 0xf7, 0xc9, 0xc8, 0x35, 0x5c, 0x8f, 0x1c, 0xda, 0x43, 0xcc, 0x0d, 0x72, 0x86, 0x19, - 0x24, 0x12, 0x75, 0xbb, 0xbc, 0x8a, 0x9a, 0xa6, 0xf6, 0xb3, 0x32, 0x9c, 0x65, 0x13, 0xb0, 0x4b, - 0x2c, 0xb1, 0x16, 0x62, 0xbb, 0x5f, 0x86, 0x46, 0x9f, 0x29, 0x64, 0xb8, 0xa6, 0x87, 0x9d, 0x40, - 0xd8, 0xfd, 0x2c, 0x27, 0xee, 0x32, 0x1a, 0xda, 0x81, 0x96, 0x2f, 0x96, 0xce, 0xe8, 0xf3, 0xb5, - 0x13, 0x33, 0xfc, 0x56, 0x34, 0x49, 0x63, 0xd6, 0x59, 0x9f, 0xf3, 0x33, 0x0b, 0x3f, 0xe3, 0x1f, - 0xfb, 0xfd, 0x60, 0xc8, 0xdd, 0x45, 0x7d, 0xed, 0x07, 0x49, 0x39, 0x69, 0x35, 0x6f, 0xf5, 0x38, - 0xf7, 0xa6, 0x13, 0x78, 0xc7, 0xba, 0x6c, 0xdb, 0xb9, 0x07, 0xb3, 0x6a, 0x05, 0x6a, 0x41, 0xe5, - 0x6b, 0x7c, 0x2c, 0x86, 0x40, 0x3f, 0x63, 0xbb, 0xe4, 0x9b, 0x95, 0x17, 0xee, 0x95, 0x7f, 0xa7, - 0xa4, 0x79, 0x80, 0xe2, 0x5e, 0x9e, 0xe2, 0xc0, 0xb4, 0xcc, 0xc0, 0x44, 0x08, 0x26, 0x99, 0xfb, - 0xe5, 0x22, 0xd8, 0x37, 0x95, 0x1a, 0x8a, 0xad, 0x51, 0xd3, 0xe9, 0x27, 0x3a, 0x0f, 0xb5, 0xc8, - 0x08, 0x85, 0x0f, 0x8e, 0x09, 0xd4, 0x17, 0x9a, 0x41, 0x80, 0x47, 0x6e, 0xc0, 0x0c, 0xa2, 0xa1, - 0xcb, 0xa2, 0xf6, 0xcf, 0x93, 0xd0, 0xca, 0xac, 0xc0, 0x5d, 0xa8, 0x8e, 0x44, 0xf7, 0xc2, 0xf6, - 0xcf, 0xc5, 0x0e, 0x31, 0xa3, 0xa1, 0x1e, 0x31, 0x53, 0x7f, 0x43, 0x37, 0xa3, 0x72, 0x5c, 0x44, - 0x65, 0xba, 0xac, 0x43, 0x32, 0x30, 0x2c, 0xdb, 0xc3, 0xfd, 0x80, 0x78, 0xc7, 0x42, 0xcb, 0xd9, - 0x21, 0x19, 0x6c, 0x48, 0x1a, 0x7a, 0x17, 0xc0, 0x72, 0x7c, 0xba, 0xa2, 0x87, 0xf6, 0x80, 0xe9, - 0x5a, 0x5f, 0x43, 0x51, 0xdf, 0xd1, 0x91, 0xa0, 0xd7, 0x2c, 0xc7, 0x17, 0xca, 0x7e, 0x00, 0x0d, - 0xea, 0x62, 0x8d, 0x11, 0xf7, 0xe6, 0xdc, 0x8a, 0xeb, 0x6b, 0x0b, 0x8a, 0xc6, 0x91, 0xab, 0xd7, - 0x67, 0xdd, 0xb8, 0xe0, 0xa3, 0x8f, 0x61, 0x9a, 0xb9, 0x38, 0xbf, 0x3d, 0xcd, 0xda, 0x5c, 0xc9, - 0x19, 0xa5, 0x58, 0xed, 0x27, 0x8c, 0x8f, 0x2f, 0xb6, 0x68, 0x84, 0x9e, 0x40, 0xdd, 0x74, 0x1c, - 0x12, 0x98, 0x7c, 0x83, 0xcf, 0x30, 0x19, 0x37, 0x8a, 0x65, 0x74, 0x63, 0x66, 0x2e, 0x48, 0x6d, - 0x8e, 0x7e, 0x04, 0x53, 0xcc, 0x03, 0xb4, 0xab, 0x6c, 0xd4, 0x2b, 0xe3, 0xcd, 0x4f, 0xe7, 0xcc, - 0x9d, 0x0f, 0xa0, 0xae, 0xa8, 0x76, 0x1a, 0x73, 0xeb, 0xdc, 0x87, 0x56, 0x5a, 0xa3, 0x53, 0x99, - 0xeb, 0x16, 0x2c, 0xe8, 0xa1, 0x13, 0x2b, 0x26, 0xe3, 0x8f, 0x77, 0x61, 0x5a, 0xac, 0x1f, 0xb7, - 0x9d, 0xe5, 0xc2, 0x19, 0xd1, 0x05, 0xa3, 0xf6, 0x31, 0x9c, 0x4d, 0x89, 0x12, 0xd1, 0xc9, 0x5b, - 0xd0, 0x74, 0x89, 0x65, 0xf8, 0x9c, 0x6c, 0xd8, 0x96, 0x74, 0x06, 0x6e, 0xc4, 0xbb, 0x65, 0xd1, - 0xe6, 0xbd, 0x80, 0xb8, 0x59, 0x55, 0x4e, 0xd6, 0xbc, 0x0d, 0x8b, 0xe9, 0xe6, 0xbc, 0x7b, 0xed, - 0x01, 0x2c, 0xe9, 0x78, 0x44, 0x9e, 0xe1, 0xd7, 0x15, 0xdd, 0x81, 0x76, 0x56, 0x80, 0x10, 0xfe, - 0x25, 0x2c, 0xc5, 0xd4, 0x5e, 0x60, 0x06, 0xa1, 0x7f, 0x2a, 0xe1, 0x22, 0x74, 0x3b, 0x20, 0x3e, - 0x96, 0x87, 0xa4, 0x28, 0x6a, 0xd7, 0x55, 0xd1, 0xe2, 0x50, 0xe5, 0x3d, 0xa0, 0x26, 0x94, 0x6d, - 0x57, 0x88, 0x2b, 0xdb, 0xae, 0xf6, 0x00, 0x6a, 0xd1, 0x71, 0x86, 0xd6, 0xe2, 0x98, 0xa9, 0xfc, - 0x8a, 0x33, 0x2f, 0x8a, 0xa6, 0x1e, 0x67, 0xfc, 0xb8, 0xe8, 0x69, 0x0d, 0x20, 0xf2, 0x40, 0xf2, - 0x0c, 0x45, 0x59, 0x79, 0xba, 0xc2, 0xa5, 0xfd, 0x4d, 0xc2, 0x1d, 0x29, 0x2a, 0x5b, 0x91, 0xca, - 0x56, 0xc2, 0x3d, 0x95, 0x4f, 0xe3, 0x9e, 0x6e, 0xc1, 0x94, 0x1f, 0x98, 0x01, 0x77, 0x90, 0x4d, - 0x65, 0x70, 0xc9, 0x2e, 0xb1, 0xce, 0xd9, 0xd0, 0x05, 0x80, 0xbe, 0x87, 0xcd, 0x00, 0x5b, 0x86, - 0xc9, 0x3d, 0x67, 0x45, 0xaf, 0x09, 0x4a, 0x37, 0x40, 0xf7, 0x60, 0x46, 0xc6, 0x30, 0x53, 0x4c, - 0x8d, 0xd5, 0x1c, 0x81, 0x89, 0xd9, 0xd7, 0x65, 0x83, 0x78, 0xb7, 0x4f, 0x8f, 0xdf, 0xed, 0xa2, - 0x1d, 0x67, 0x56, 0x1c, 0xd6, 0x4c, 0xa1, 0xc3, 0xe2, 0x2d, 0x4e, 0xe2, 0xb0, 0xaa, 0x85, 0x0e, - 0x4b, 0xc8, 0x18, 0xeb, 0xb0, 0xbe, 0x4f, 0xd7, 0xf3, 0x6f, 0x25, 0x68, 0x67, 0xf7, 0x8e, 0xf0, - 0x19, 0xef, 0xc2, 0xb4, 0xcf, 0x28, 0x63, 0xfc, 0x8f, 0x68, 0x22, 0x18, 0xd1, 0x03, 0x98, 0xb4, - 0x9d, 0x43, 0xc2, 0x72, 0x08, 0xf5, 0xe4, 0x2f, 0xea, 0xe3, 0xd6, 0x96, 0x73, 0x48, 0xf8, 0x94, - 0xb0, 0x86, 0x9d, 0xbb, 0x50, 0x8b, 0x48, 0xa7, 0x1a, 0xc9, 0x43, 0x58, 0x48, 0x19, 0x1f, 0x8f, - 0x5e, 0x23, 0x53, 0x2d, 0x9d, 0xc8, 0x54, 0xb5, 0xff, 0x2f, 0xa9, 0x1b, 0xe7, 0xa1, 0x3d, 0x0c, - 0xb0, 0x97, 0xd9, 0x38, 0xef, 0x49, 0xa1, 0x7c, 0xd7, 0x5c, 0x28, 0x12, 0xca, 0x03, 0x4b, 0xb1, - 0x09, 0x7a, 0xd0, 0x64, 0xe6, 0x63, 0xf8, 0x78, 0xc8, 0x4e, 0x69, 0x11, 0x1f, 0xfd, 0x30, 0xa7, - 0x35, 0xef, 0x97, 0xdb, 0x5e, 0x4f, 0xb0, 0xf3, 0x69, 0x6a, 0x0c, 0x55, 0x5a, 0xe7, 0x13, 0x40, - 0x59, 0xa6, 0x53, 0x4d, 0xdc, 0x67, 0xd4, 0xed, 0xd0, 0x6c, 0x2a, 0xe7, 0xf8, 0x39, 0x64, 0x6a, - 0x8c, 0x59, 0x7e, 0xae, 0xa7, 0x2e, 0x18, 0xb5, 0xbf, 0xae, 0x00, 0xc4, 0x95, 0x6f, 0xac, 0xbf, - 0xb9, 0x1b, 0xed, 0x7e, 0x1e, 0xe2, 0x5c, 0xcc, 0x91, 0x97, 0xbb, 0xef, 0x1f, 0x26, 0xf7, 0x3d, - 0x0f, 0x76, 0xde, 0xca, 0x6b, 0xfd, 0xc6, 0xee, 0xf8, 0x75, 0x58, 0x4c, 0x2f, 0xb7, 0xd8, 0xee, - 0xd7, 0x61, 0xca, 0x0e, 0xf0, 0x88, 0x63, 0x03, 0x6a, 0x8e, 0xa4, 0xf0, 0x72, 0x0e, 0xed, 0x12, - 0xd4, 0xb6, 0x46, 0xe6, 0x00, 0xf7, 0x5c, 0xdc, 0xa7, 0x7d, 0xd9, 0xb4, 0x20, 0xfa, 0xe7, 0x05, - 0x6d, 0x0d, 0xaa, 0x8f, 0xf1, 0x31, 0xdf, 0x83, 0x27, 0xd4, 0x4f, 0xfb, 0xf3, 0x32, 0x2c, 0x31, - 0xb7, 0xbd, 0x2e, 0x33, 0x73, 0x1d, 0xfb, 0x24, 0xf4, 0xfa, 0xd8, 0x67, 0x4b, 0xea, 0x86, 0x86, - 0x8b, 0x3d, 0x9b, 0x58, 0x22, 0x15, 0xad, 0xf5, 0xdd, 0x70, 0x97, 0x11, 0x68, 0xf6, 0x4e, 0xab, - 0xbf, 0x09, 0x89, 0xb0, 0xad, 0x8a, 0x5e, 0xed, 0xbb, 0xe1, 0x8f, 0x69, 0x59, 0xb6, 0xf5, 0x8f, - 0x4c, 0x0f, 0xfb, 0xcc, 0x86, 0x78, 0xdb, 0x1e, 0x23, 0xa0, 0x77, 0xe1, 0xec, 0x08, 0x8f, 0x88, - 0x77, 0x6c, 0x0c, 0xed, 0x91, 0x1d, 0x18, 0xb6, 0x63, 0x1c, 0x1c, 0x07, 0xd8, 0x17, 0x86, 0x83, - 0x78, 0xe5, 0x13, 0x5a, 0xb7, 0xe5, 0x7c, 0x4a, 0x6b, 0x90, 0x06, 0x0d, 0x42, 0x46, 0x86, 0xdf, - 0x27, 0x1e, 0x36, 0x4c, 0xeb, 0x2b, 0x76, 0x6e, 0x55, 0xf4, 0x3a, 0x21, 0xa3, 0x1e, 0xa5, 0x75, - 0xad, 0xaf, 0xd0, 0x45, 0xa8, 0xf7, 0xdd, 0xd0, 0xc7, 0x81, 0x41, 0x7f, 0xd8, 0xf9, 0x54, 0xd3, - 0x81, 0x93, 0xd6, 0xdd, 0xd0, 0x57, 0x18, 0x46, 0x74, 0xda, 0x67, 0x54, 0x86, 0xa7, 0x74, 0x9a, - 0x4d, 0x68, 0x24, 0x92, 0x5b, 0x9a, 0xc2, 0xb0, 0x2c, 0x56, 0xa4, 0x30, 0xf4, 0x9b, 0xd2, 0x3c, - 0x32, 0x94, 0x33, 0xc9, 0xbe, 0x29, 0x2d, 0x38, 0x76, 0x65, 0xfe, 0xc2, 0xbe, 0xe9, 0x94, 0x0f, - 0xf1, 0x33, 0x01, 0x4e, 0xd4, 0x74, 0x5e, 0xd0, 0x2c, 0x80, 0x75, 0xd3, 0x35, 0x0f, 0xec, 0xa1, - 0x1d, 0x1c, 0xa3, 0xeb, 0xd0, 0x32, 0x2d, 0xcb, 0xe8, 0x4b, 0x8a, 0x8d, 0x25, 0x52, 0x34, 0x67, - 0x5a, 0xd6, 0xba, 0x42, 0x46, 0x3f, 0x80, 0x79, 0xcb, 0x23, 0x6e, 0x92, 0x97, 0x43, 0x47, 0x2d, - 0x5a, 0xa1, 0x32, 0x6b, 0xff, 0x34, 0x09, 0x17, 0x92, 0x0b, 0x9b, 0x86, 0x0b, 0xee, 0xc2, 0x6c, - 0xaa, 0xd7, 0x64, 0x9e, 0x1e, 0x2b, 0xa9, 0x27, 0x18, 0x53, 0x09, 0x75, 0x39, 0x93, 0x50, 0xe7, - 0xe2, 0x10, 0x95, 0xef, 0x02, 0x87, 0x98, 0xfc, 0x36, 0x38, 0xc4, 0xd4, 0x89, 0x70, 0x88, 0xab, - 0x0c, 0x16, 0x94, 0x8d, 0x58, 0x36, 0xc8, 0xcd, 0xa8, 0x11, 0xf1, 0x38, 0x12, 0x3e, 0x4c, 0xe1, - 0x15, 0x33, 0xa7, 0xc1, 0x2b, 0xaa, 0x85, 0x78, 0x05, 0xb5, 0x08, 0xd7, 0x35, 0xbd, 0x11, 0xf1, - 0x24, 0x20, 0xd1, 0xae, 0x31, 0x15, 0xe6, 0x24, 0x5d, 0x80, 0x11, 0x85, 0xd0, 0x05, 0x14, 0x41, - 0x17, 0x68, 0x15, 0x66, 0x1d, 0x62, 0x38, 0xf8, 0xb9, 0x41, 0x17, 0xcc, 0x6f, 0xd7, 0xf9, 0xea, - 0x39, 0x64, 0x1b, 0x3f, 0xdf, 0xa5, 0x14, 0xed, 0x6f, 0x4b, 0xb0, 0x90, 0x34, 0x1c, 0x91, 0xac, - 0xde, 0x87, 0x9a, 0x27, 0x7d, 0x83, 0x30, 0x96, 0xd5, 0x64, 0xe8, 0x97, 0xf5, 0x21, 0x7a, 0xdc, - 0x04, 0xfd, 0xb8, 0x10, 0xf6, 0xb8, 0x5a, 0x20, 0xe6, 0x55, 0xc0, 0x87, 0xd6, 0x85, 0xf9, 0x88, - 0x79, 0x2c, 0xe8, 0xa0, 0x80, 0x08, 0xe5, 0x24, 0x88, 0xe0, 0xc0, 0xf4, 0x06, 0x7e, 0x66, 0xf7, - 0xf1, 0x77, 0x02, 0x5a, 0xae, 0x42, 0xdd, 0xc5, 0xde, 0xc8, 0xf6, 0xfd, 0xc8, 0xe8, 0x6b, 0xba, - 0x4a, 0xd2, 0xfe, 0x6b, 0x0a, 0xe6, 0xd2, 0x33, 0x7b, 0x27, 0x83, 0x59, 0x74, 0xe2, 0x5d, 0x98, - 0x1e, 0x9f, 0x72, 0x46, 0x5f, 0x93, 0xc7, 0x40, 0x39, 0x95, 0xa0, 0x44, 0x27, 0x85, 0x38, 0x1a, - 0xe8, 0xf8, 0xfb, 0x64, 0x34, 0x32, 0x1d, 0x4b, 0x02, 0xca, 0xa2, 0x48, 0x67, 0xcb, 0xf4, 0x06, - 0x74, 0x6b, 0x51, 0x32, 0xfb, 0xa6, 0x5e, 0x92, 0x06, 0xfa, 0xb6, 0xc3, 0x20, 0x0f, 0xb6, 0x71, - 0x6a, 0x3a, 0x08, 0xd2, 0x86, 0xed, 0xa1, 0x2b, 0x30, 0x89, 0x9d, 0x67, 0xf2, 0x34, 0x8e, 0x11, - 0x67, 0x79, 0xfc, 0xe8, 0xac, 0x1a, 0x5d, 0x85, 0xe9, 0x11, 0x09, 0x9d, 0x40, 0x86, 0xfc, 0xcd, - 0x24, 0xf0, 0xaa, 0x8b, 0x5a, 0x74, 0x1d, 0x66, 0x2c, 0xb6, 0x06, 0x32, 0xae, 0x9f, 0x8b, 0x61, - 0x13, 0x46, 0xd7, 0x65, 0x3d, 0xfa, 0x28, 0x8a, 0x23, 0x6a, 0xa9, 0x48, 0x20, 0x35, 0xa9, 0xb9, - 0xc1, 0xc4, 0xe3, 0x64, 0x30, 0x01, 0x4c, 0xc4, 0xf5, 0x42, 0x11, 0xe3, 0x41, 0x8f, 0x65, 0xa8, - 0x0e, 0xc9, 0x80, 0xdb, 0x41, 0x9d, 0x5f, 0x3f, 0x0c, 0xc9, 0x80, 0x99, 0xc1, 0x02, 0x0d, 0x9e, - 0x2c, 0xdb, 0x69, 0xcf, 0xb2, 0xed, 0xc5, 0x0b, 0xf4, 0x4c, 0x64, 0x1f, 0x06, 0x71, 0xfa, 0xb8, - 0xdd, 0x60, 0x55, 0x35, 0x46, 0xd9, 0x71, 0xfa, 0xec, 0xc8, 0x0e, 0x82, 0xe3, 0x76, 0x93, 0xd1, - 0xe9, 0x27, 0x8d, 0x79, 0x79, 0xa2, 0x35, 0x97, 0x8a, 0x79, 0xf3, 0xf6, 0xe7, 0x1b, 0x80, 0xaa, - 0xfc, 0x43, 0x09, 0x16, 0xd7, 0x59, 0xc8, 0xa7, 0x78, 0x82, 0xd3, 0xa0, 0x02, 0xb7, 0x23, 0xf8, - 0x25, 0x9d, 0xc2, 0xa7, 0x07, 0x2b, 0xf8, 0xd0, 0x27, 0xd0, 0x94, 0x32, 0x45, 0xcb, 0xca, 0xab, - 0x80, 0x9b, 0x86, 0xaf, 0x16, 0xb5, 0x8f, 0x60, 0x29, 0xa3, 0xb3, 0x08, 0xcf, 0x2e, 0xc1, 0x6c, - 0xec, 0x11, 0x22, 0x95, 0xeb, 0x11, 0x6d, 0xcb, 0xd2, 0xee, 0xc1, 0xd9, 0x5e, 0x60, 0x7a, 0x41, - 0x66, 0xc0, 0x27, 0x68, 0xcb, 0xb0, 0x9b, 0x64, 0x5b, 0x01, 0xaf, 0xf4, 0x60, 0xa1, 0x17, 0x10, - 0xf7, 0x35, 0x84, 0xd2, 0x9d, 0x4e, 0x87, 0x4d, 0xc2, 0x40, 0xc4, 0x64, 0xb2, 0xa8, 0x2d, 0x71, - 0xa4, 0x29, 0xdb, 0xdb, 0x87, 0xb0, 0xc8, 0x81, 0x9e, 0xd7, 0x19, 0xc4, 0xb2, 0x84, 0x99, 0xb2, - 0x72, 0x37, 0xe0, 0x4c, 0xec, 0xca, 0xe3, 0xf4, 0xf0, 0x66, 0x32, 0x3d, 0x5c, 0xca, 0xae, 0x71, - 0x22, 0x3b, 0xfc, 0x8b, 0xb2, 0xe2, 0x30, 0x0b, 0x92, 0xc3, 0xb5, 0x64, 0x72, 0x78, 0xbe, 0x40, - 0x64, 0x22, 0x37, 0xcc, 0x5a, 0x64, 0x25, 0xc7, 0x22, 0xf5, 0x4c, 0x06, 0x39, 0x99, 0xca, 0xb3, - 0x53, 0xba, 0xfd, 0x56, 0x12, 0xc8, 0x2d, 0x9e, 0x40, 0x46, 0x5d, 0x47, 0xe0, 0xdb, 0xed, 0x54, - 0x02, 0xd9, 0x2e, 0x52, 0x33, 0xca, 0x1f, 0xff, 0x74, 0x12, 0x6a, 0x51, 0x5d, 0x66, 0x62, 0xb3, - 0x93, 0x54, 0xce, 0x99, 0x24, 0xf5, 0xfc, 0xaa, 0xbc, 0xce, 0xf9, 0x35, 0xf9, 0xaa, 0xf3, 0xeb, - 0x1c, 0xd4, 0xd8, 0x87, 0xe1, 0xe1, 0x43, 0x71, 0x1e, 0x55, 0x19, 0x41, 0xc7, 0x87, 0xb1, 0x41, - 0x4d, 0x9f, 0xc4, 0xa0, 0x52, 0x99, 0xea, 0x4c, 0x3a, 0x53, 0xbd, 0x13, 0x9d, 0x30, 0xfc, 0x2c, - 0x5a, 0xc9, 0x8a, 0xcb, 0x3d, 0x5b, 0x36, 0x93, 0x67, 0x0b, 0x3f, 0x9e, 0x2e, 0xe7, 0x34, 0x7e, - 0x63, 0xf3, 0xd4, 0x27, 0x3c, 0x4f, 0x55, 0xad, 0x4a, 0x38, 0xc2, 0x35, 0x80, 0x68, 0xcf, 0xcb, - 0x64, 0x15, 0x65, 0x87, 0xa6, 0x2b, 0x5c, 0xda, 0x3e, 0x2c, 0x26, 0xe6, 0x3f, 0x46, 0x88, 0x4f, - 0xe6, 0xc5, 0x0a, 0xe0, 0xe1, 0x7f, 0x55, 0xe3, 0xa7, 0x02, 0x90, 0xf5, 0x4e, 0x06, 0xf4, 0x38, - 0x99, 0x3d, 0xde, 0x4c, 0x62, 0x1e, 0xa7, 0x33, 0xa4, 0x0c, 0xe4, 0xc1, 0x8e, 0x7b, 0xd3, 0x13, - 0xd5, 0x3c, 0x5b, 0xad, 0x09, 0x4a, 0x37, 0xa0, 0x41, 0xd6, 0xa1, 0xed, 0xd8, 0xfe, 0x11, 0xaf, - 0x9f, 0x66, 0xf5, 0x20, 0x49, 0x5d, 0x76, 0x09, 0x8f, 0x5f, 0xd8, 0x81, 0xd1, 0x27, 0x16, 0x66, - 0x66, 0x3a, 0xa5, 0x57, 0x29, 0x61, 0x9d, 0x58, 0x38, 0xde, 0x3a, 0xd5, 0x53, 0x6d, 0x9d, 0x5a, - 0x6a, 0xeb, 0x2c, 0xc2, 0xb4, 0x87, 0x4d, 0x9f, 0x38, 0x22, 0x65, 0x10, 0x25, 0x3a, 0xff, 0x23, - 0xec, 0xfb, 0xb4, 0x03, 0x11, 0xda, 0x88, 0xa2, 0x12, 0x80, 0xcd, 0x16, 0x05, 0x60, 0x63, 0x50, - 0xdc, 0x54, 0x00, 0xd6, 0x28, 0x0a, 0xc0, 0x4e, 0x02, 0xe2, 0x2a, 0xe1, 0x65, 0x73, 0x6c, 0x78, - 0xa9, 0x06, 0x6a, 0x73, 0x89, 0x40, 0xed, 0xfb, 0xdc, 0x6d, 0xff, 0x52, 0x82, 0xa5, 0xcc, 0x06, - 0x11, 0xfb, 0xed, 0x76, 0x0a, 0x06, 0x6e, 0x17, 0xcd, 0x50, 0x84, 0x02, 0xdf, 0x4f, 0xa0, 0xc0, - 0x37, 0x0a, 0xf9, 0xbf, 0x73, 0x10, 0xf8, 0x0f, 0xe1, 0xe2, 0xbe, 0x6b, 0xa5, 0xc2, 0x27, 0x91, - 0xfc, 0x9d, 0x7c, 0xbf, 0xdf, 0x91, 0x91, 0x6e, 0xf9, 0x84, 0x79, 0x25, 0x67, 0xd7, 0x34, 0x58, - 0x2d, 0xee, 0x5d, 0x84, 0x21, 0xbf, 0x0f, 0x73, 0x9b, 0x2f, 0x70, 0xbf, 0x77, 0xec, 0xf4, 0x4f, - 0xa1, 0x51, 0x0b, 0x2a, 0xfd, 0x91, 0x25, 0xe0, 0x15, 0xfa, 0xa9, 0x46, 0x56, 0x95, 0x64, 0x64, - 0x65, 0x40, 0x2b, 0xee, 0x41, 0x2c, 0xe1, 0x22, 0x5d, 0x42, 0x8b, 0x32, 0x53, 0xe1, 0xb3, 0xba, - 0x28, 0x09, 0x3a, 0xf6, 0x3c, 0x36, 0x54, 0x4e, 0xc7, 0x9e, 0x97, 0xdc, 0xed, 0x95, 0xe4, 0x6e, - 0xd7, 0xfe, 0xaa, 0x04, 0x75, 0xda, 0xc3, 0xb7, 0xd2, 0x5f, 0xe4, 0x17, 0x95, 0x38, 0xbf, 0x88, - 0xd2, 0x94, 0x49, 0x35, 0x4d, 0x89, 0x35, 0x9f, 0x62, 0xe4, 0xac, 0xe6, 0xd3, 0x11, 0x1d, 0x7b, - 0x9e, 0xb6, 0x0a, 0xb3, 0x5c, 0x37, 0x31, 0xf2, 0x16, 0x54, 0x42, 0x6f, 0x28, 0xad, 0x27, 0xf4, - 0x86, 0xda, 0x9f, 0x95, 0xa0, 0xd1, 0x0d, 0x02, 0xb3, 0x7f, 0x74, 0x8a, 0x01, 0x44, 0xca, 0x95, - 0x55, 0xe5, 0xb2, 0x83, 0x88, 0xd5, 0x9d, 0x2c, 0x50, 0x77, 0x2a, 0xa1, 0xae, 0x06, 0x4d, 0xa9, - 0x4b, 0xa1, 0xc2, 0xdb, 0x80, 0x76, 0x89, 0x17, 0x3c, 0x24, 0xde, 0x73, 0xd3, 0xb3, 0x4e, 0x97, - 0xc3, 0x20, 0x98, 0x14, 0x0f, 0xab, 0x2a, 0xd7, 0xa6, 0x74, 0xf6, 0xad, 0xbd, 0x0d, 0x67, 0x12, - 0xf2, 0x0a, 0x3b, 0xbe, 0x0b, 0x75, 0xe6, 0xc0, 0x45, 0x9c, 0x7b, 0x4d, 0xc5, 0x79, 0xc7, 0x79, - 0x79, 0xad, 0x0b, 0xf3, 0xf4, 0xec, 0x66, 0xf4, 0x68, 0xe3, 0xfd, 0x30, 0x15, 0x0d, 0x2e, 0x24, - 0xdb, 0xa7, 0x22, 0xc1, 0xbf, 0x2b, 0xc1, 0x14, 0xa3, 0x67, 0xce, 0xd3, 0x73, 0x50, 0xf3, 0xb0, - 0x4b, 0x8c, 0xc0, 0x1c, 0x44, 0x6f, 0xd5, 0x28, 0x61, 0xcf, 0x1c, 0xf8, 0xec, 0xa9, 0x1d, 0xad, - 0xb4, 0xec, 0x01, 0xf6, 0x03, 0xf9, 0x60, 0xad, 0x4e, 0x69, 0x1b, 0x9c, 0x44, 0xa7, 0xc4, 0xb7, - 0xff, 0x80, 0x87, 0x79, 0x93, 0x3a, 0xfb, 0x46, 0x57, 0xf8, 0x33, 0x90, 0x31, 0xa0, 0x1c, 0x7b, - 0x1b, 0xd2, 0x81, 0x6a, 0x0a, 0x87, 0x8b, 0xca, 0xda, 0x47, 0x80, 0xd4, 0x31, 0x8b, 0x49, 0xbd, - 0x0a, 0xd3, 0x6c, 0x4a, 0x64, 0x9c, 0xd2, 0x4c, 0x0e, 0x5a, 0x17, 0xb5, 0xda, 0x17, 0x80, 0xf8, - 0x2c, 0x26, 0x62, 0x93, 0x13, 0xcf, 0xf8, 0x98, 0x10, 0xe5, 0xef, 0x4b, 0x70, 0x26, 0x21, 0x3a, - 0x7a, 0x10, 0x90, 0x90, 0x9d, 0x56, 0x4c, 0xc8, 0xbd, 0x97, 0xf0, 0xe4, 0x57, 0x53, 0x0a, 0xfc, - 0x86, 0xbc, 0xf8, 0x2f, 0x4b, 0x00, 0xdd, 0x30, 0x38, 0x12, 0x80, 0x94, 0x3a, 0xeb, 0xa5, 0xe4, - 0xac, 0xd3, 0x3a, 0xd7, 0xf4, 0xfd, 0xe7, 0xc4, 0x93, 0xc9, 0x40, 0x54, 0x66, 0x60, 0x52, 0x18, - 0x1c, 0x49, 0x10, 0x9c, 0x7e, 0xa3, 0x2b, 0xd0, 0xe4, 0x4f, 0x1e, 0x0d, 0xd3, 0xb2, 0x3c, 0xec, - 0xfb, 0x02, 0x0d, 0x6f, 0x70, 0x6a, 0x97, 0x13, 0x29, 0x9b, 0x6d, 0x61, 0x27, 0xb0, 0x83, 0x63, - 0x23, 0x20, 0x5f, 0x63, 0x47, 0x84, 0xf9, 0x0d, 0x49, 0xdd, 0xa3, 0x44, 0xca, 0xe6, 0xe1, 0x81, - 0xed, 0x07, 0x9e, 0x64, 0x93, 0xe8, 0xac, 0xa0, 0x32, 0x36, 0xed, 0xe7, 0x25, 0x68, 0xed, 0x86, - 0xc3, 0x21, 0x9f, 0xd9, 0x53, 0xaf, 0xed, 0xdb, 0x62, 0x1c, 0xe5, 0x94, 0x75, 0xc6, 0x53, 0x24, - 0x06, 0xf7, 0xed, 0xe1, 0x87, 0xdb, 0x30, 0xaf, 0x28, 0x2a, 0x2c, 0x25, 0x11, 0xb3, 0x95, 0x92, - 0x31, 0x9b, 0x76, 0x1f, 0x10, 0xcf, 0xb8, 0x5f, 0x6f, 0x70, 0xda, 0x59, 0x38, 0x93, 0x68, 0x2f, - 0x8e, 0xc9, 0x1b, 0xd0, 0x10, 0xf7, 0xfd, 0xc2, 0x08, 0x96, 0xa1, 0x4a, 0xdd, 0x5d, 0xdf, 0xb6, - 0xe4, 0xed, 0xc7, 0x8c, 0x4b, 0xac, 0x75, 0xdb, 0xf2, 0xb4, 0x6d, 0x68, 0xe8, 0x5c, 0xbc, 0xe0, - 0xfd, 0x18, 0x9a, 0xe2, 0x75, 0x80, 0x91, 0x78, 0x3f, 0x13, 0x43, 0xf5, 0x09, 0xd9, 0x7a, 0xc3, - 0x51, 0x8b, 0xda, 0x4f, 0xa1, 0xc3, 0x8f, 0xf1, 0x84, 0x54, 0x39, 0xb4, 0x8f, 0x41, 0x3e, 0xc9, - 0x2d, 0x12, 0x9e, 0x6c, 0xd6, 0xf0, 0xd4, 0xa2, 0x76, 0x01, 0xce, 0xe5, 0x0a, 0x17, 0xe3, 0x76, - 0xa1, 0x15, 0x57, 0x58, 0xb6, 0xbc, 0xf4, 0x61, 0x97, 0x39, 0x25, 0xe5, 0x32, 0x67, 0x31, 0x8a, - 0xc9, 0xca, 0xf2, 0x3c, 0x61, 0x91, 0x57, 0x1c, 0x42, 0x57, 0x8a, 0x42, 0xe8, 0xc9, 0x44, 0x08, - 0xad, 0x7d, 0x16, 0xcd, 0x9e, 0xc8, 0x5f, 0x3e, 0x60, 0xe9, 0x15, 0xef, 0x5b, 0xba, 0xad, 0xe5, - 0x9c, 0xc1, 0x71, 0x0e, 0x5d, 0x61, 0xd6, 0xae, 0x43, 0x23, 0xe9, 0xc0, 0x14, 0xb7, 0x54, 0xca, - 0xb8, 0xa5, 0x66, 0xca, 0x23, 0xdd, 0x4a, 0xc5, 0x99, 0x99, 0x19, 0x4d, 0x45, 0x99, 0xef, 0x27, - 0x7c, 0xd3, 0xa5, 0xf8, 0x1e, 0xe6, 0x37, 0xe4, 0x96, 0x16, 0x84, 0x8f, 0x7e, 0xe8, 0xd3, 0xf6, - 0x62, 0x88, 0xda, 0x65, 0xa8, 0xef, 0x17, 0x3d, 0x96, 0x9d, 0x94, 0x17, 0x9b, 0x6f, 0xc3, 0x7c, - 0x2f, 0x20, 0x9e, 0x39, 0xc0, 0x5b, 0xcc, 0x81, 0x1c, 0xda, 0xfc, 0xe2, 0x2e, 0x0c, 0xa3, 0xa3, - 0x8d, 0x7d, 0x6b, 0xff, 0x51, 0x82, 0xb9, 0x87, 0xf6, 0x10, 0xfb, 0xc7, 0x7e, 0x80, 0x47, 0xfb, - 0x2c, 0xc9, 0x39, 0x0f, 0x35, 0x3a, 0x2e, 0x3f, 0x30, 0x47, 0xae, 0xbc, 0xf8, 0x8c, 0x08, 0x74, - 0xb9, 0x7c, 0x2e, 0x5a, 0x02, 0x22, 0x6a, 0x82, 0x99, 0xe9, 0x95, 0x26, 0x7d, 0x82, 0x84, 0xde, - 0x03, 0x08, 0x7d, 0x6c, 0x89, 0xcb, 0xce, 0x4a, 0xea, 0x54, 0xde, 0x57, 0xaf, 0xa4, 0x28, 0x1f, - 0xbf, 0xf9, 0x7c, 0x1f, 0xea, 0xb6, 0x43, 0x2c, 0xcc, 0xae, 0xa4, 0x2c, 0x01, 0x96, 0xe4, 0xb7, - 0x02, 0xce, 0xb8, 0xef, 0x63, 0x4b, 0xfb, 0x3d, 0x71, 0x0a, 0xc9, 0xc9, 0x13, 0x6b, 0xbe, 0x09, - 0xf3, 0xdc, 0xb7, 0x1c, 0x46, 0x83, 0x96, 0x36, 0x17, 0xa7, 0x19, 0xa9, 0x09, 0xd1, 0x5b, 0xb6, - 0x08, 0x18, 0x64, 0x0b, 0xed, 0x1e, 0x9c, 0x4d, 0xe4, 0x16, 0xa7, 0x88, 0xf6, 0xb5, 0x47, 0x29, - 0x68, 0x20, 0x36, 0x48, 0x91, 0x81, 0x4b, 0x7b, 0x2c, 0xc8, 0xc0, 0x7d, 0x9e, 0x81, 0xfb, 0x9a, - 0x0e, 0xcb, 0x09, 0xc4, 0x22, 0xa1, 0xc8, 0xfb, 0xa9, 0xe8, 0xe7, 0x42, 0x81, 0xb0, 0x54, 0x18, - 0xf4, 0xbf, 0x25, 0x58, 0xc8, 0x63, 0x78, 0x4d, 0x6c, 0xec, 0x27, 0x05, 0x4f, 0x50, 0x6e, 0x8f, - 0xd5, 0xe6, 0xb7, 0x82, 0x22, 0x3e, 0x86, 0x4e, 0xde, 0xec, 0x65, 0x97, 0xa2, 0x72, 0x82, 0xa5, - 0xf8, 0xbf, 0xb2, 0x82, 0xf6, 0x76, 0x83, 0xc0, 0xb3, 0x0f, 0x42, 0x6a, 0xbc, 0xdf, 0x15, 0x36, - 0xf3, 0x49, 0x84, 0x3b, 0xf0, 0xf9, 0xbb, 0x96, 0x6d, 0x15, 0xf7, 0x9a, 0x8b, 0x3d, 0xec, 0x24, - 0xb1, 0x07, 0x8e, 0xe3, 0xde, 0x1c, 0x2b, 0xe6, 0x8d, 0x85, 0xea, 0x5e, 0x96, 0xa0, 0x99, 0x5c, - 0x07, 0xf4, 0x11, 0x80, 0x19, 0x69, 0x2e, 0x4c, 0xfe, 0xfc, 0xb8, 0xd1, 0xe9, 0x0a, 0x3f, 0xba, - 0x0c, 0x95, 0xbe, 0x1b, 0x8a, 0x15, 0x89, 0x2f, 0xf4, 0xd6, 0xdd, 0x90, 0x3b, 0x00, 0x5a, 0x4b, - 0xf3, 0x09, 0xfe, 0x30, 0x23, 0xe3, 0xb9, 0x9e, 0x32, 0x32, 0x67, 0x15, 0x3c, 0xe8, 0x01, 0x34, - 0x9f, 0x7b, 0x76, 0x60, 0x1e, 0x0c, 0xb1, 0x31, 0x34, 0x8f, 0xb1, 0x27, 0x3c, 0x57, 0xb1, 0x97, - 0x69, 0x48, 0xfe, 0x27, 0x94, 0x5d, 0x0b, 0xa1, 0x2a, 0xfb, 0x7f, 0x85, 0x47, 0x7e, 0x0c, 0x4b, - 0x21, 0x65, 0x33, 0xd8, 0xe3, 0x10, 0xc7, 0x74, 0x88, 0xe1, 0x63, 0x7a, 0x4a, 0xca, 0xb7, 0xa0, - 0xf9, 0xde, 0x72, 0x81, 0x35, 0x5a, 0x27, 0x1e, 0xde, 0x36, 0x1d, 0xd2, 0xe3, 0x2d, 0xb4, 0x11, - 0xd4, 0x95, 0xe1, 0xbc, 0xa2, 0xe7, 0x4f, 0x60, 0x5e, 0x5e, 0x95, 0xfa, 0x38, 0x10, 0x7e, 0x7d, - 0x5c, 0x9f, 0x73, 0x82, 0xbd, 0x87, 0x03, 0xe6, 0xdd, 0xb5, 0xfb, 0xb0, 0xac, 0x63, 0xe2, 0x62, - 0x27, 0x5a, 0xa2, 0x27, 0x64, 0x70, 0x0a, 0x67, 0x7a, 0x1e, 0x3a, 0x79, 0xed, 0xf9, 0x2e, 0xbe, - 0x71, 0x1e, 0xaa, 0xf2, 0x6f, 0x40, 0x68, 0x06, 0x2a, 0x7b, 0xeb, 0xbb, 0xad, 0x09, 0xfa, 0xb1, - 0xbf, 0xb1, 0xdb, 0x2a, 0xdd, 0x18, 0x41, 0x2b, 0xfd, 0x17, 0x18, 0xb4, 0x04, 0x67, 0x76, 0xf5, - 0x9d, 0xdd, 0xee, 0xa3, 0xee, 0xde, 0xd6, 0xce, 0xb6, 0xb1, 0xab, 0x6f, 0x7d, 0xde, 0xdd, 0xdb, - 0x6c, 0x4d, 0xa0, 0x4b, 0x70, 0x41, 0xad, 0xf8, 0xdd, 0x9d, 0xde, 0x9e, 0xb1, 0xb7, 0x63, 0xac, - 0xef, 0x6c, 0xef, 0x75, 0xb7, 0xb6, 0x37, 0xf5, 0x56, 0x09, 0x5d, 0x80, 0x65, 0x95, 0xe5, 0xd3, - 0xad, 0x8d, 0x2d, 0x7d, 0x73, 0x9d, 0x7e, 0x77, 0x9f, 0xb4, 0xca, 0x37, 0xee, 0xc1, 0x5c, 0xea, - 0xf5, 0x18, 0x9a, 0x87, 0x46, 0xaf, 0xbb, 0xbd, 0xf1, 0xe9, 0xce, 0x17, 0x86, 0xbe, 0xd9, 0xdd, - 0xf8, 0xb2, 0x35, 0x81, 0x16, 0xa0, 0x25, 0x49, 0xdb, 0x3b, 0x7b, 0x9c, 0x5a, 0xba, 0xf1, 0x75, - 0xca, 0xe0, 0x31, 0x3a, 0x0b, 0xf3, 0x51, 0xdf, 0xc6, 0xba, 0xbe, 0xd9, 0xdd, 0xdb, 0xdc, 0x68, - 0x4d, 0x24, 0xc9, 0xfa, 0xfe, 0xf6, 0xf6, 0xd6, 0xf6, 0xa3, 0x56, 0x89, 0x4a, 0x8d, 0xc9, 0x9b, - 0x5f, 0x6c, 0x51, 0xe6, 0x72, 0x92, 0x79, 0x7f, 0xfb, 0xf1, 0xf6, 0xce, 0x4f, 0xb6, 0x5b, 0x95, - 0xb5, 0x7f, 0x6c, 0x42, 0x53, 0x46, 0x40, 0xd8, 0x63, 0xaf, 0x03, 0xee, 0xc3, 0x8c, 0xfc, 0x43, - 0x58, 0xec, 0x0a, 0x93, 0xff, 0x5e, 0xeb, 0xb4, 0xb3, 0x15, 0x22, 0xc8, 0x9c, 0x40, 0xbb, 0x2c, - 0xe8, 0x53, 0x5e, 0xea, 0x5d, 0x50, 0x63, 0xad, 0xcc, 0x53, 0xc0, 0xce, 0x4a, 0x51, 0x75, 0x24, - 0xb1, 0x47, 0xc3, 0x39, 0xf5, 0xe9, 0x37, 0x5a, 0x51, 0x83, 0x90, 0xec, 0x93, 0xf2, 0xce, 0xc5, - 0xc2, 0xfa, 0x48, 0xe8, 0x97, 0xd0, 0x4a, 0x3f, 0xfa, 0x46, 0x31, 0x1a, 0x57, 0xf0, 0xa0, 0xbc, - 0x73, 0x69, 0x0c, 0x87, 0x2a, 0x3a, 0xf3, 0x3c, 0x7a, 0x75, 0xcc, 0x73, 0xd5, 0xb4, 0xe8, 0xa2, - 0x07, 0xad, 0x7c, 0x2a, 0x92, 0x2f, 0xec, 0x90, 0xfa, 0x28, 0x39, 0xe7, 0xa5, 0xa5, 0x32, 0x15, - 0xf9, 0x4f, 0xf3, 0xb4, 0x09, 0xf4, 0x39, 0xcc, 0xa5, 0x2e, 0x86, 0x51, 0xdc, 0x2a, 0xff, 0x9a, - 0xbb, 0xb3, 0x5a, 0xcc, 0x90, 0x5c, 0x37, 0xf5, 0xda, 0x37, 0xb1, 0x6e, 0x39, 0x77, 0xc9, 0x89, - 0x75, 0xcb, 0xbd, 0x2f, 0x66, 0xe6, 0x95, 0xb8, 0xdc, 0x55, 0xcc, 0x2b, 0xef, 0x26, 0xb9, 0xb3, - 0x52, 0x54, 0xad, 0x0e, 0x3f, 0x75, 0xb1, 0xab, 0x0c, 0x3f, 0xff, 0xbe, 0xb8, 0xb3, 0x5a, 0xcc, - 0x90, 0x5e, 0xab, 0xf8, 0x96, 0x29, 0xb5, 0x56, 0x99, 0x4b, 0xcd, 0xd4, 0x5a, 0x65, 0xaf, 0xa7, - 0xc4, 0x5a, 0xa5, 0x2e, 0x85, 0x2e, 0x16, 0x63, 0xe0, 0x99, 0xb5, 0xca, 0x07, 0xc9, 0xb5, 0x09, - 0xf4, 0x0d, 0xb4, 0x8b, 0xf0, 0x65, 0x14, 0x47, 0x20, 0xaf, 0x00, 0xc0, 0x3b, 0xd7, 0x4f, 0xc0, - 0x19, 0x75, 0x69, 0xd0, 0xf4, 0x3e, 0xed, 0xcf, 0x91, 0xa6, 0xcc, 0x6c, 0xc1, 0x61, 0xd1, 0xb9, - 0x3c, 0x96, 0x27, 0xea, 0xa0, 0x0b, 0x55, 0x89, 0x56, 0xa3, 0xd8, 0x63, 0xa5, 0x20, 0xf2, 0xce, - 0x72, 0x4e, 0x4d, 0x24, 0xe2, 0x7d, 0x98, 0xa4, 0x54, 0xb4, 0x90, 0x60, 0x92, 0x4d, 0xcf, 0xa6, - 0xa8, 0x51, 0xb3, 0x0f, 0x61, 0x9a, 0x43, 0xaf, 0x28, 0x4e, 0x34, 0x13, 0xb8, 0x70, 0x67, 0x29, - 0x43, 0x8f, 0x1a, 0x7f, 0xc6, 0xff, 0xf8, 0x2a, 0x30, 0x54, 0x74, 0x2e, 0xf1, 0x1f, 0xa9, 0x24, - 0x52, 0xdb, 0x39, 0x9f, 0x5f, 0xa9, 0xda, 0x60, 0x2a, 0x7a, 0x5a, 0x29, 0x0a, 0x6f, 0x33, 0x36, - 0x98, 0x1f, 0x2e, 0xf3, 0x85, 0xcb, 0x86, 0xd3, 0xca, 0xc2, 0x15, 0x66, 0x2a, 0xca, 0xc2, 0x15, - 0xc7, 0xe3, 0xda, 0x04, 0x3a, 0x80, 0x33, 0x39, 0x40, 0x06, 0xba, 0x9c, 0xb2, 0xae, 0x3c, 0x0c, - 0xa5, 0xf3, 0xd6, 0x78, 0x26, 0x75, 0x89, 0xc4, 0xfe, 0x59, 0xcc, 0x64, 0xf7, 0xe9, 0x25, 0x4a, - 0xef, 0x96, 0xb5, 0x3f, 0xae, 0xc0, 0x2c, 0x87, 0x9b, 0xc4, 0xa1, 0xf9, 0x08, 0x20, 0x46, 0x68, - 0x51, 0x27, 0x31, 0xcc, 0x04, 0x54, 0xdd, 0x39, 0x97, 0x5b, 0xa7, 0x2e, 0xbe, 0x82, 0x7f, 0x2a, - 0x8b, 0x9f, 0x85, 0x70, 0x95, 0xc5, 0xcf, 0x81, 0x4c, 0xb5, 0x09, 0xb4, 0x01, 0xb5, 0x08, 0x71, - 0x43, 0x0a, 0x50, 0x97, 0x82, 0x0b, 0x3b, 0x9d, 0xbc, 0x2a, 0x55, 0x23, 0x05, 0x45, 0x53, 0x34, - 0xca, 0x62, 0x73, 0x8a, 0x46, 0x79, 0xc0, 0x5b, 0x3c, 0x3a, 0x9e, 0xa9, 0xa7, 0x47, 0x97, 0x00, - 0x3f, 0xd2, 0xa3, 0x4b, 0x26, 0xf7, 0xda, 0xc4, 0xa7, 0xe7, 0x7f, 0xf1, 0xab, 0x95, 0xd2, 0x7f, - 0xfe, 0x6a, 0x65, 0xe2, 0x8f, 0x5e, 0xae, 0x94, 0x7e, 0xf1, 0x72, 0xa5, 0xf4, 0xef, 0x2f, 0x57, - 0x4a, 0xff, 0xfd, 0x72, 0xa5, 0xf4, 0xb3, 0xff, 0x59, 0x99, 0x38, 0x98, 0x66, 0xff, 0x04, 0x7f, - 0xef, 0xd7, 0x01, 0x00, 0x00, 0xff, 0xff, 0x9a, 0x71, 0xce, 0x4a, 0xbd, 0x3f, 0x00, 0x00, + // 4515 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x3b, 0x5d, 0x6f, 0x1c, 0x47, + 0x72, 0xdc, 0x5d, 0x7e, 0xec, 0xd6, 0x72, 0x97, 0xcb, 0x16, 0x45, 0x2e, 0x57, 0x12, 0x45, 0x8d, + 0x6c, 0x59, 0xd2, 0x9d, 0x64, 0x99, 0x3e, 0x4b, 0xb1, 0x6c, 0x4b, 0x5a, 0x93, 0x94, 0x42, 0x4b, + 0x22, 0x79, 0xb3, 0xa4, 0x3f, 0x72, 0x01, 0x26, 0xc3, 0x9d, 0xe6, 0x72, 0xec, 0xdd, 0xe9, 0xf1, + 0x7c, 0x48, 0x62, 0x90, 0x87, 0xe4, 0x25, 0x08, 0x02, 0x04, 0xb8, 0x00, 0x79, 0x49, 0x9e, 0xf2, + 0x10, 0xe0, 0x10, 0x04, 0x08, 0x82, 0x20, 0x08, 0xf2, 0x03, 0x82, 0xe4, 0x5e, 0x0e, 0xc8, 0x53, + 0x90, 0xc7, 0x9c, 0xf2, 0x90, 0x87, 0x00, 0xf9, 0x0d, 0x87, 0xfe, 0x9a, 0xe9, 0xf9, 0x5a, 0x91, + 0xb2, 0xef, 0xec, 0xa7, 0x9d, 0xae, 0xae, 0xae, 0xae, 0xae, 0xaa, 0xae, 0xae, 0xaa, 0xee, 0x85, + 0x9a, 0xe9, 0xda, 0x37, 0x5d, 0x8f, 0x04, 0x04, 0xcd, 0x78, 0xa1, 0x13, 0xd8, 0x23, 0xdc, 0xb9, + 0x31, 0xb0, 0x83, 0xa3, 0xf0, 0xe0, 0x66, 0x9f, 0x8c, 0xde, 0x1e, 0x90, 0x01, 0x79, 0x9b, 0xf5, + 0x1f, 0x84, 0x87, 0xac, 0xc5, 0x1a, 0xec, 0x8b, 0x8f, 0xd3, 0xae, 0x43, 0xf3, 0x53, 0xec, 0xf9, + 0x36, 0x71, 0x74, 0xfc, 0x75, 0x88, 0xfd, 0x00, 0xb5, 0x61, 0xe6, 0x19, 0x87, 0xb4, 0x4b, 0xab, + 0xa5, 0xab, 0x35, 0x5d, 0x36, 0xb5, 0x9f, 0x95, 0x60, 0x2e, 0x42, 0xf6, 0x5d, 0xe2, 0xf8, 0xb8, + 0x18, 0x1b, 0x5d, 0x82, 0x59, 0xc1, 0x93, 0xe1, 0x98, 0x23, 0xdc, 0x2e, 0xb3, 0xee, 0xba, 0x80, + 0x6d, 0x9b, 0x23, 0x8c, 0xde, 0x82, 0x39, 0x89, 0x22, 0x89, 0x54, 0x18, 0x56, 0x53, 0x80, 0xc5, + 0x6c, 0xe8, 0x26, 0x9c, 0x91, 0x88, 0xa6, 0x6b, 0x47, 0xc8, 0x93, 0x0c, 0x79, 0x5e, 0x74, 0x75, + 0x5d, 0x5b, 0xe0, 0x6b, 0x3f, 0x81, 0xda, 0xc6, 0x76, 0x6f, 0x9d, 0x38, 0x87, 0xf6, 0x80, 0xb2, + 0xe8, 0x63, 0x8f, 0x8e, 0x69, 0x97, 0x56, 0x2b, 0x94, 0x45, 0xd1, 0x44, 0x1d, 0xa8, 0xfa, 0xd8, + 0xf4, 0xfa, 0x47, 0xd8, 0x6f, 0x97, 0x59, 0x57, 0xd4, 0xa6, 0xa3, 0x88, 0x1b, 0xd8, 0xc4, 0xf1, + 0xdb, 0x15, 0x3e, 0x4a, 0x34, 0xb5, 0xbf, 0x2c, 0x41, 0x7d, 0x97, 0x78, 0xc1, 0x53, 0xd3, 0x75, + 0x6d, 0x67, 0x80, 0x6e, 0x40, 0x95, 0xc9, 0xb2, 0x4f, 0x86, 0x4c, 0x06, 0xcd, 0xb5, 0xf9, 0x9b, + 0x82, 0xa5, 0x9b, 0xbb, 0xa2, 0x43, 0x8f, 0x50, 0xd0, 0x9b, 0xd0, 0xec, 0x13, 0x27, 0x30, 0x6d, + 0x07, 0x7b, 0x86, 0x4b, 0xbc, 0x80, 0x49, 0x66, 0x4a, 0x6f, 0x44, 0x50, 0x4a, 0x1c, 0x9d, 0x83, + 0xda, 0x11, 0xf1, 0x03, 0x8e, 0x51, 0x61, 0x18, 0x55, 0x0a, 0x60, 0x9d, 0x4b, 0x30, 0xc3, 0x3a, + 0x6d, 0x57, 0xc8, 0x60, 0x9a, 0x36, 0xb7, 0x5c, 0xed, 0x17, 0x25, 0x98, 0x7a, 0x4a, 0x42, 0x27, + 0x48, 0x4d, 0x63, 0x06, 0x47, 0x42, 0x3f, 0xca, 0x34, 0x66, 0x70, 0x14, 0x4f, 0x43, 0x31, 0xb8, + 0x8a, 0xf8, 0x34, 0xb4, 0xb3, 0x03, 0x55, 0x0f, 0x9b, 0x16, 0x71, 0x86, 0xc7, 0x8c, 0x85, 0xaa, + 0x1e, 0xb5, 0xa9, 0xee, 0x7c, 0x3c, 0xb4, 0x9d, 0xf0, 0x85, 0xe1, 0xe1, 0xa1, 0x79, 0x80, 0x87, + 0x8c, 0x95, 0xaa, 0xde, 0x14, 0x60, 0x9d, 0x43, 0xd1, 0x07, 0x50, 0x77, 0x3d, 0xe2, 0x9a, 0x03, + 0x93, 0x8a, 0xaf, 0x3d, 0xc5, 0x24, 0xb4, 0x1c, 0x49, 0x88, 0x71, 0xbb, 0x1b, 0x23, 0xe8, 0x2a, + 0xb6, 0xf6, 0x25, 0xcc, 0x51, 0x4b, 0xf1, 0x5d, 0xb3, 0x8f, 0x77, 0x98, 0xfc, 0xa9, 0x5d, 0x31, + 0x8e, 0x1d, 0x1c, 0x3c, 0x27, 0xde, 0x57, 0x6c, 0x59, 0x55, 0xbd, 0x4e, 0x61, 0xdb, 0x1c, 0x84, + 0x96, 0xa1, 0xca, 0x17, 0x65, 0x5b, 0x6c, 0x4d, 0x55, 0x9d, 0x89, 0x6b, 0xd7, 0xb6, 0xa2, 0x2e, + 0xdb, 0xed, 0x8b, 0x25, 0xcd, 0x70, 0xd1, 0xf5, 0x35, 0x0d, 0x60, 0xcb, 0x09, 0x6e, 0xff, 0xe8, + 0x53, 0x73, 0x18, 0x62, 0xb4, 0x00, 0x53, 0xcf, 0xe8, 0x07, 0xa3, 0x5f, 0xd1, 0x79, 0x43, 0xfb, + 0xe3, 0x0a, 0x9c, 0x7b, 0x42, 0x57, 0xd7, 0x33, 0x1d, 0xeb, 0x80, 0xbc, 0xe8, 0xe1, 0x7e, 0xe8, + 0xd9, 0xc1, 0xf1, 0x3a, 0x71, 0x02, 0xfc, 0x22, 0x40, 0x9b, 0x30, 0xef, 0x48, 0x7e, 0x0d, 0x69, + 0x3f, 0x94, 0x42, 0x7d, 0xad, 0x1d, 0x2d, 0x39, 0xb5, 0x22, 0xbd, 0xe5, 0x24, 0x01, 0x3e, 0xba, + 0x1f, 0x0b, 0x57, 0x12, 0x29, 0x33, 0x22, 0x8b, 0x11, 0x91, 0xde, 0x26, 0xe3, 0x43, 0x90, 0x90, + 0x42, 0x97, 0x04, 0xde, 0x05, 0xba, 0xd1, 0x0c, 0xd3, 0x37, 0x42, 0x1f, 0x7b, 0x6c, 0xa5, 0xf5, + 0xb5, 0x33, 0xd1, 0xe0, 0x78, 0x9d, 0x7a, 0xcd, 0x0b, 0x9d, 0xae, 0xbf, 0xef, 0x63, 0x8f, 0x6d, + 0x47, 0xa1, 0x5e, 0xc3, 0x23, 0x24, 0x38, 0xf4, 0xa5, 0x4a, 0x25, 0x58, 0x67, 0x50, 0xf4, 0x36, + 0x9c, 0xf1, 0x43, 0xd7, 0x1d, 0xe2, 0x11, 0x76, 0x02, 0x73, 0x68, 0x0c, 0x3c, 0x12, 0xba, 0x7e, + 0x7b, 0x6a, 0xb5, 0x72, 0xb5, 0xa2, 0x23, 0xb5, 0xeb, 0x11, 0xeb, 0x41, 0x2b, 0x00, 0xae, 0x67, + 0x3f, 0xb3, 0x87, 0x78, 0x80, 0xad, 0xf6, 0x34, 0x23, 0xaa, 0x40, 0xd0, 0x2d, 0x58, 0xf0, 0x71, + 0xbf, 0x4f, 0x46, 0xae, 0xe1, 0x7a, 0xe4, 0xd0, 0x1e, 0x62, 0x6e, 0x90, 0x33, 0xcc, 0x20, 0x91, + 0xe8, 0xdb, 0xe5, 0x5d, 0xd4, 0x34, 0xb5, 0x9f, 0x96, 0xe1, 0x2c, 0x13, 0xc0, 0x2e, 0xb1, 0x84, + 0x2e, 0xc4, 0x76, 0xbf, 0x0c, 0x8d, 0x3e, 0x63, 0xc8, 0x70, 0x4d, 0x0f, 0x3b, 0x81, 0xb0, 0xfb, + 0x59, 0x0e, 0xdc, 0x65, 0x30, 0xb4, 0x03, 0x2d, 0x5f, 0xa8, 0xce, 0xe8, 0x73, 0xdd, 0x09, 0x09, + 0xbf, 0x11, 0x09, 0x69, 0x8c, 0x9e, 0xf5, 0x39, 0x3f, 0xa3, 0xf8, 0x19, 0xff, 0xd8, 0xef, 0x07, + 0x43, 0xee, 0x2e, 0xea, 0x6b, 0x3f, 0x48, 0xd2, 0x49, 0xb3, 0x79, 0xb3, 0xc7, 0xb1, 0x37, 0x9d, + 0xc0, 0x3b, 0xd6, 0xe5, 0xd8, 0xce, 0x5d, 0x98, 0x55, 0x3b, 0x50, 0x0b, 0x2a, 0x5f, 0xe1, 0x63, + 0xb1, 0x04, 0xfa, 0x19, 0xdb, 0x25, 0xdf, 0xac, 0xbc, 0x71, 0xb7, 0xfc, 0x5b, 0x25, 0xcd, 0x03, + 0x14, 0xcf, 0xf2, 0x14, 0x07, 0xa6, 0x65, 0x06, 0x26, 0x42, 0x30, 0xc9, 0xdc, 0x2f, 0x27, 0xc1, + 0xbe, 0x29, 0xd5, 0x50, 0x6c, 0x8d, 0x9a, 0x4e, 0x3f, 0xd1, 0x79, 0xa8, 0x45, 0x46, 0x28, 0x7c, + 0x70, 0x0c, 0xa0, 0xbe, 0xd0, 0x0c, 0x02, 0x3c, 0x72, 0x03, 0x66, 0x10, 0x0d, 0x5d, 0x36, 0xb5, + 0x7f, 0x99, 0x84, 0x56, 0x46, 0x03, 0x77, 0xa0, 0x3a, 0x12, 0xd3, 0x0b, 0xdb, 0x3f, 0x17, 0x3b, + 0xc4, 0x0c, 0x87, 0x7a, 0x84, 0x4c, 0xfd, 0x0d, 0xdd, 0x8c, 0xca, 0x71, 0x11, 0xb5, 0xa9, 0x5a, + 0x87, 0x64, 0x60, 0x58, 0xb6, 0x87, 0xfb, 0x01, 0xf1, 0x8e, 0x05, 0x97, 0xb3, 0x43, 0x32, 0xd8, + 0x90, 0x30, 0xf4, 0x0e, 0x80, 0xe5, 0xf8, 0x54, 0xa3, 0x87, 0xf6, 0x80, 0xf1, 0x5a, 0x5f, 0x43, + 0xd1, 0xdc, 0xd1, 0x91, 0xa0, 0xd7, 0x2c, 0xc7, 0x17, 0xcc, 0xbe, 0x0f, 0x0d, 0xea, 0x62, 0x8d, + 0x11, 0xf7, 0xe6, 0xdc, 0x8a, 0xeb, 0x6b, 0x0b, 0x0a, 0xc7, 0x91, 0xab, 0xd7, 0x67, 0xdd, 0xb8, + 0xe1, 0xa3, 0x8f, 0x60, 0x9a, 0xb9, 0x38, 0xbf, 0x3d, 0xcd, 0xc6, 0xbc, 0x99, 0xb3, 0x4a, 0xa1, + 0xed, 0x27, 0x0c, 0x8f, 0x2b, 0x5b, 0x0c, 0x42, 0x4f, 0xa0, 0x6e, 0x3a, 0x0e, 0x09, 0x4c, 0xbe, + 0xc1, 0x67, 0x18, 0x8d, 0xeb, 0xc5, 0x34, 0xba, 0x31, 0x32, 0x27, 0xa4, 0x0e, 0x47, 0x3f, 0x82, + 0x29, 0xe6, 0x01, 0xda, 0x55, 0xb6, 0xea, 0x95, 0xf1, 0xe6, 0xa7, 0x73, 0xe4, 0xce, 0xfb, 0x50, + 0x57, 0x58, 0x3b, 0x8d, 0xb9, 0x75, 0xee, 0x41, 0x2b, 0xcd, 0xd1, 0xa9, 0xcc, 0x75, 0x0b, 0x16, + 0xf4, 0xd0, 0x89, 0x19, 0x93, 0xf1, 0xc7, 0x3b, 0x30, 0x2d, 0xf4, 0xc7, 0x6d, 0x67, 0xb9, 0x50, + 0x22, 0xba, 0x40, 0xd4, 0x3e, 0x82, 0xb3, 0x29, 0x52, 0x22, 0x3a, 0x79, 0x03, 0x9a, 0x2e, 0xb1, + 0x0c, 0x9f, 0x83, 0x0d, 0xdb, 0x92, 0xce, 0xc0, 0x8d, 0x70, 0xb7, 0x2c, 0x3a, 0xbc, 0x17, 0x10, + 0x37, 0xcb, 0xca, 0xc9, 0x86, 0xb7, 0x61, 0x31, 0x3d, 0x9c, 0x4f, 0xaf, 0xdd, 0x87, 0x25, 0x1d, + 0x8f, 0xc8, 0x33, 0xfc, 0xba, 0xa4, 0x3b, 0xd0, 0xce, 0x12, 0x10, 0xc4, 0xbf, 0x80, 0xa5, 0x18, + 0xda, 0x0b, 0xcc, 0x20, 0xf4, 0x4f, 0x45, 0x5c, 0x84, 0x6e, 0x07, 0xc4, 0xc7, 0xf2, 0x90, 0x14, + 0x4d, 0xed, 0x9a, 0x4a, 0x5a, 0x1c, 0xaa, 0x7c, 0x06, 0xd4, 0x84, 0xb2, 0xed, 0x0a, 0x72, 0x65, + 0xdb, 0xd5, 0xee, 0x43, 0x2d, 0x3a, 0xce, 0xd0, 0x5a, 0x1c, 0x33, 0x95, 0x5f, 0x71, 0xe6, 0x45, + 0xd1, 0xd4, 0xe3, 0x8c, 0x1f, 0x17, 0x33, 0xad, 0x01, 0x44, 0x1e, 0x48, 0x9e, 0xa1, 0x28, 0x4b, + 0x4f, 0x57, 0xb0, 0xb4, 0xbf, 0x49, 0xb8, 0x23, 0x85, 0x65, 0x2b, 0x62, 0xd9, 0x4a, 0xb8, 0xa7, + 0xf2, 0x69, 0xdc, 0xd3, 0x4d, 0x98, 0xf2, 0x03, 0x33, 0xe0, 0x0e, 0xb2, 0xa9, 0x2c, 0x2e, 0x39, + 0x25, 0xd6, 0x39, 0x1a, 0xba, 0x00, 0xd0, 0xf7, 0xb0, 0x19, 0x60, 0xcb, 0x30, 0xb9, 0xe7, 0xac, + 0xe8, 0x35, 0x01, 0xe9, 0x06, 0xe8, 0x2e, 0xcc, 0xc8, 0x18, 0x66, 0x8a, 0xb1, 0xb1, 0x9a, 0x43, + 0x30, 0x21, 0x7d, 0x5d, 0x0e, 0x88, 0x77, 0xfb, 0xf4, 0xf8, 0xdd, 0x2e, 0xc6, 0x71, 0x64, 0xc5, + 0x61, 0xcd, 0x14, 0x3a, 0x2c, 0x3e, 0xe2, 0x24, 0x0e, 0xab, 0x5a, 0xe8, 0xb0, 0x04, 0x8d, 0xb1, + 0x0e, 0xeb, 0xbb, 0x74, 0x3d, 0xff, 0x5e, 0x82, 0x76, 0x76, 0xef, 0x08, 0x9f, 0xf1, 0x0e, 0x4c, + 0xfb, 0x0c, 0x32, 0xc6, 0xff, 0x88, 0x21, 0x02, 0x11, 0xdd, 0x87, 0x49, 0xdb, 0x39, 0x24, 0x2c, + 0x87, 0x50, 0x4f, 0xfe, 0xa2, 0x39, 0x6e, 0x6e, 0x39, 0x87, 0x84, 0x8b, 0x84, 0x0d, 0xec, 0xdc, + 0x81, 0x5a, 0x04, 0x3a, 0xd5, 0x4a, 0x1e, 0xc2, 0x42, 0xca, 0xf8, 0x78, 0xf4, 0x1a, 0x99, 0x6a, + 0xe9, 0x44, 0xa6, 0xaa, 0xfd, 0x7f, 0x49, 0xdd, 0x38, 0x0f, 0xed, 0x61, 0x80, 0xbd, 0xcc, 0xc6, + 0x79, 0x57, 0x12, 0xe5, 0xbb, 0xe6, 0x42, 0x11, 0x51, 0x1e, 0x58, 0x8a, 0x4d, 0xd0, 0x83, 0x26, + 0x33, 0x1f, 0xc3, 0xc7, 0x43, 0x76, 0x4a, 0x8b, 0xf8, 0xe8, 0x87, 0x39, 0xa3, 0xf9, 0xbc, 0xdc, + 0xf6, 0x7a, 0x02, 0x9d, 0x8b, 0xa9, 0x31, 0x54, 0x61, 0x9d, 0x07, 0x80, 0xb2, 0x48, 0xa7, 0x12, + 0xdc, 0x27, 0xd4, 0xed, 0xd0, 0x6c, 0x2a, 0xe7, 0xf8, 0x39, 0x64, 0x6c, 0x8c, 0x51, 0x3f, 0xe7, + 0x53, 0x17, 0x88, 0xda, 0x5f, 0x57, 0x00, 0xe2, 0xce, 0xef, 0xad, 0xbf, 0xb9, 0x13, 0xed, 0x7e, + 0x1e, 0xe2, 0x5c, 0xcc, 0xa1, 0x97, 0xbb, 0xef, 0x1f, 0x26, 0xf7, 0x3d, 0x0f, 0x76, 0xde, 0xc8, + 0x1b, 0xfd, 0xbd, 0xdd, 0xf1, 0xeb, 0xb0, 0x98, 0x56, 0xb7, 0xd8, 0xee, 0xd7, 0x60, 0xca, 0x0e, + 0xf0, 0x88, 0xd7, 0x06, 0xd4, 0x1c, 0x49, 0xc1, 0xe5, 0x18, 0xda, 0x25, 0xa8, 0x6d, 0x8d, 0xcc, + 0x01, 0xee, 0xb9, 0xb8, 0x4f, 0xe7, 0xb2, 0x69, 0x43, 0xcc, 0xcf, 0x1b, 0xda, 0x1a, 0x54, 0x1f, + 0xe3, 0x63, 0xbe, 0x07, 0x4f, 0xc8, 0x9f, 0xf6, 0x67, 0x65, 0x58, 0x62, 0x6e, 0x7b, 0x5d, 0x66, + 0xe6, 0x3a, 0xf6, 0x49, 0xe8, 0xf5, 0xb1, 0xcf, 0x54, 0xea, 0x86, 0x86, 0x8b, 0x3d, 0x9b, 0x58, + 0x22, 0x15, 0xad, 0xf5, 0xdd, 0x70, 0x97, 0x01, 0x68, 0xf6, 0x4e, 0xbb, 0xbf, 0x0e, 0x89, 0xb0, + 0xad, 0x8a, 0x5e, 0xed, 0xbb, 0xe1, 0x8f, 0x69, 0x5b, 0x8e, 0xf5, 0x8f, 0x4c, 0x0f, 0xfb, 0xcc, + 0x86, 0xf8, 0xd8, 0x1e, 0x03, 0xa0, 0x77, 0xe0, 0xec, 0x08, 0x8f, 0x88, 0x77, 0x6c, 0x0c, 0xed, + 0x91, 0x1d, 0x18, 0xb6, 0x63, 0x1c, 0x1c, 0x07, 0xd8, 0x17, 0x86, 0x83, 0x78, 0xe7, 0x13, 0xda, + 0xb7, 0xe5, 0x7c, 0x4c, 0x7b, 0x90, 0x06, 0x0d, 0x42, 0x46, 0x86, 0xdf, 0x27, 0x1e, 0x36, 0x4c, + 0xeb, 0x4b, 0x76, 0x6e, 0x55, 0xf4, 0x3a, 0x21, 0xa3, 0x1e, 0x85, 0x75, 0xad, 0x2f, 0xd1, 0x45, + 0xa8, 0xf7, 0xdd, 0xd0, 0xc7, 0x81, 0x41, 0x7f, 0xd8, 0xf9, 0x54, 0xd3, 0x81, 0x83, 0xd6, 0xdd, + 0xd0, 0x57, 0x10, 0x46, 0x54, 0xec, 0x33, 0x2a, 0xc2, 0x53, 0x2a, 0x66, 0x13, 0x1a, 0x89, 0xe4, + 0x96, 0xa6, 0x30, 0x2c, 0x8b, 0x15, 0x29, 0x0c, 0xfd, 0xa6, 0x30, 0x8f, 0x0c, 0xa5, 0x24, 0xd9, + 0x37, 0x85, 0x05, 0xc7, 0xae, 0xcc, 0x5f, 0xd8, 0x37, 0x15, 0xf9, 0x10, 0x3f, 0x13, 0xc5, 0x89, + 0x9a, 0xce, 0x1b, 0x9a, 0x05, 0xb0, 0x6e, 0xba, 0xe6, 0x81, 0x3d, 0xb4, 0x83, 0x63, 0x74, 0x0d, + 0x5a, 0xa6, 0x65, 0x19, 0x7d, 0x09, 0xb1, 0xb1, 0xac, 0x14, 0xcd, 0x99, 0x96, 0xb5, 0xae, 0x80, + 0xd1, 0x0f, 0x60, 0xde, 0xf2, 0x88, 0x9b, 0xc4, 0xe5, 0xa5, 0xa3, 0x16, 0xed, 0x50, 0x91, 0xb5, + 0x7f, 0x9e, 0x84, 0x0b, 0x49, 0xc5, 0xa6, 0xcb, 0x05, 0x77, 0x60, 0x36, 0x35, 0x6b, 0x32, 0x4f, + 0x8f, 0x99, 0xd4, 0x13, 0x88, 0xa9, 0x84, 0xba, 0x9c, 0x49, 0xa8, 0x73, 0xeb, 0x10, 0x95, 0x6f, + 0xa3, 0x0e, 0x31, 0xf9, 0x4d, 0xea, 0x10, 0x53, 0x27, 0xaa, 0x43, 0x5c, 0x61, 0x65, 0x41, 0x39, + 0x88, 0x65, 0x83, 0xdc, 0x8c, 0x1a, 0x11, 0x8e, 0x23, 0xcb, 0x87, 0xa9, 0x7a, 0xc5, 0xcc, 0x69, + 0xea, 0x15, 0xd5, 0xc2, 0x7a, 0x05, 0xb5, 0x08, 0xd7, 0x35, 0xbd, 0x11, 0xf1, 0x64, 0x41, 0xa2, + 0x5d, 0x63, 0x2c, 0xcc, 0x49, 0xb8, 0x28, 0x46, 0x14, 0x96, 0x2e, 0xa0, 0xa8, 0x74, 0x81, 0x56, + 0x61, 0xd6, 0x21, 0x86, 0x83, 0x9f, 0x1b, 0x54, 0x61, 0x7e, 0xbb, 0xce, 0xb5, 0xe7, 0x90, 0x6d, + 0xfc, 0x7c, 0x97, 0x42, 0xb4, 0xbf, 0x2d, 0xc1, 0x42, 0xd2, 0x70, 0x44, 0xb2, 0x7a, 0x0f, 0x6a, + 0x9e, 0xf4, 0x0d, 0xc2, 0x58, 0x56, 0x93, 0xa1, 0x5f, 0xd6, 0x87, 0xe8, 0xf1, 0x10, 0xf4, 0xe3, + 0xc2, 0xb2, 0xc7, 0x95, 0x02, 0x32, 0xaf, 0x2a, 0x7c, 0x68, 0xbf, 0x03, 0x8b, 0x9f, 0xd9, 0x8e, + 0x45, 0x9e, 0xfb, 0x69, 0x66, 0x1f, 0x64, 0x99, 0xd5, 0xa2, 0x59, 0xd2, 0x63, 0xf2, 0xd8, 0xd5, + 0xfe, 0xae, 0x04, 0xcb, 0x85, 0x88, 0x29, 0xff, 0x56, 0x4a, 0xfb, 0x37, 0xe1, 0x1b, 0xfb, 0x24, + 0x74, 0x02, 0xc5, 0x37, 0xae, 0xb3, 0xea, 0x28, 0x77, 0x42, 0xc6, 0xc8, 0x7c, 0x61, 0x8f, 0xc2, + 0x91, 0x70, 0x8e, 0x94, 0xdc, 0x53, 0x0e, 0x79, 0x0d, 0xef, 0xa8, 0x75, 0x61, 0x3e, 0xe2, 0x72, + 0x6c, 0xf9, 0x45, 0x29, 0xa7, 0x94, 0x93, 0xe5, 0x14, 0x07, 0xa6, 0x37, 0xf0, 0x33, 0xbb, 0x8f, + 0xbf, 0x95, 0xf2, 0xed, 0x2a, 0xd4, 0x5d, 0xec, 0x8d, 0x6c, 0xdf, 0x8f, 0xb6, 0x7f, 0x4d, 0x57, + 0x41, 0xda, 0x5f, 0x4c, 0xc3, 0x5c, 0x5a, 0x6d, 0xb7, 0x33, 0xd5, 0x9b, 0x4e, 0xec, 0x8f, 0xd2, + 0xeb, 0x53, 0xa2, 0x95, 0xab, 0xf2, 0x40, 0x2c, 0xa7, 0x52, 0xb5, 0xe8, 0xcc, 0x14, 0x87, 0x24, + 0x5d, 0x7f, 0x9f, 0x8c, 0x46, 0xa6, 0x63, 0xc9, 0xd2, 0xba, 0x68, 0x52, 0x69, 0x99, 0xde, 0x80, + 0x0a, 0x99, 0x82, 0xd9, 0x37, 0x55, 0x15, 0x4d, 0x79, 0x6c, 0x87, 0x15, 0x7f, 0x98, 0x0b, 0xa9, + 0xe9, 0x20, 0x40, 0x1b, 0xb6, 0x87, 0xde, 0x84, 0x49, 0xec, 0x3c, 0x93, 0x71, 0x49, 0x5c, 0x7b, + 0x97, 0x07, 0xb1, 0xce, 0xba, 0xd1, 0x15, 0x98, 0x1e, 0x51, 0xdd, 0xcb, 0xe4, 0xa7, 0x99, 0x2c, + 0x41, 0xeb, 0xa2, 0x17, 0x5d, 0x83, 0x19, 0x8b, 0xe9, 0x40, 0x66, 0x38, 0x73, 0x71, 0x01, 0x89, + 0xc1, 0x75, 0xd9, 0x8f, 0x3e, 0x8c, 0x22, 0xaa, 0x5a, 0x2a, 0x26, 0x4a, 0x09, 0x35, 0x37, 0xac, + 0x7a, 0x9c, 0x0c, 0xab, 0x80, 0x91, 0xb8, 0x56, 0x48, 0x62, 0x7c, 0xf9, 0x67, 0x19, 0xaa, 0x43, + 0x32, 0xe0, 0x76, 0x50, 0xe7, 0x17, 0x31, 0x43, 0x32, 0x60, 0x66, 0xb0, 0x40, 0xc3, 0x48, 0xcb, + 0x76, 0xda, 0xb3, 0xcc, 0xd1, 0xf0, 0x06, 0xdd, 0x3d, 0xec, 0xc3, 0x20, 0x4e, 0x1f, 0xb7, 0x1b, + 0xac, 0xab, 0xc6, 0x20, 0x3b, 0x4e, 0x9f, 0x05, 0x2f, 0x41, 0x70, 0xdc, 0x6e, 0x32, 0x38, 0xfd, + 0xa4, 0xd1, 0x3f, 0x4f, 0x39, 0xe7, 0x52, 0xd1, 0x7f, 0x9e, 0xa7, 0x92, 0x19, 0xe7, 0xfb, 0x30, + 0xf3, 0x9c, 0x6f, 0xe0, 0x76, 0x8b, 0x0d, 0xbb, 0x58, 0xe8, 0x01, 0xc4, 0x40, 0x89, 0xff, 0x5d, + 0x46, 0x8b, 0xff, 0x58, 0x82, 0xc5, 0x75, 0x16, 0x37, 0x2b, 0x6e, 0xe7, 0x34, 0xa5, 0x95, 0x5b, + 0x51, 0x0d, 0x2b, 0x5d, 0x07, 0x49, 0x2f, 0x57, 0xe0, 0xa1, 0x07, 0xd0, 0x94, 0x34, 0xc5, 0xc8, + 0xca, 0xab, 0xaa, 0x5f, 0x0d, 0x5f, 0x6d, 0x6a, 0x1f, 0xc2, 0x52, 0x86, 0x67, 0x11, 0xe3, 0x5e, + 0x82, 0xd9, 0xd8, 0x99, 0x44, 0x2c, 0xd7, 0x23, 0xd8, 0x96, 0xa5, 0xdd, 0x85, 0xb3, 0xbd, 0xc0, + 0xf4, 0x82, 0xcc, 0x82, 0x4f, 0x30, 0x96, 0x15, 0xc0, 0x92, 0x63, 0x45, 0x8d, 0xaa, 0x07, 0x0b, + 0xbd, 0x80, 0xb8, 0xaf, 0x41, 0x94, 0x3a, 0x09, 0xba, 0x6c, 0x12, 0x4a, 0xe7, 0x2d, 0x9b, 0xda, + 0x12, 0x2f, 0xd7, 0x65, 0x67, 0xfb, 0x00, 0x16, 0x79, 0xb5, 0xec, 0x75, 0x16, 0xb1, 0x2c, 0x6b, + 0x75, 0x59, 0xba, 0x1b, 0x70, 0x26, 0x3e, 0x0f, 0xe3, 0x1c, 0xfb, 0x46, 0x32, 0xc7, 0x5e, 0xca, + 0xea, 0x38, 0x91, 0x62, 0xff, 0x79, 0x59, 0xf1, 0xb5, 0x05, 0x19, 0xf6, 0x5a, 0x32, 0xc3, 0x3e, + 0x5f, 0x40, 0x32, 0x91, 0x60, 0x67, 0x2d, 0xb2, 0x92, 0x63, 0x91, 0x7a, 0x26, 0x0d, 0x9f, 0x4c, + 0x15, 0x2b, 0x52, 0xbc, 0xfd, 0x46, 0xb2, 0xf0, 0x2d, 0x9e, 0x85, 0x47, 0x53, 0x47, 0x15, 0xcc, + 0x5b, 0xa9, 0x2c, 0xbc, 0x5d, 0xc4, 0x66, 0x94, 0x84, 0xff, 0xc9, 0x24, 0xd4, 0xa2, 0xbe, 0x8c, + 0x60, 0xb3, 0x42, 0x2a, 0xe7, 0x08, 0x49, 0x3d, 0xfa, 0x2a, 0xaf, 0x73, 0xf4, 0x4d, 0xbe, 0xea, + 0xe8, 0x3b, 0x07, 0x35, 0xf6, 0x61, 0x78, 0xf8, 0x50, 0x1c, 0x65, 0x55, 0x06, 0xd0, 0xf1, 0x61, + 0x6c, 0x50, 0xd3, 0x27, 0x31, 0xa8, 0x54, 0xba, 0x3f, 0x93, 0x4e, 0xf7, 0x6f, 0x47, 0x87, 0x13, + 0x3f, 0xc6, 0x56, 0xb2, 0xe4, 0x72, 0x8f, 0xa5, 0xcd, 0xe4, 0xb1, 0xc4, 0x4f, 0xb6, 0xcb, 0x39, + 0x83, 0xbf, 0xb7, 0xc9, 0xfe, 0x13, 0x9e, 0xec, 0xab, 0x56, 0x25, 0x1c, 0xe1, 0x1a, 0x40, 0xb4, + 0xe7, 0x65, 0xc6, 0x8f, 0xb2, 0x4b, 0xd3, 0x15, 0x2c, 0x6d, 0x1f, 0x16, 0x13, 0xf2, 0x8f, 0xcb, + 0xec, 0x27, 0xf3, 0x62, 0x05, 0x35, 0xf6, 0x7f, 0x9b, 0x52, 0xdc, 0x41, 0x41, 0xa5, 0xfa, 0x76, + 0xa6, 0x72, 0x74, 0x32, 0x7b, 0xbc, 0x91, 0x2c, 0x1c, 0x9d, 0xce, 0x90, 0x32, 0x75, 0x23, 0x16, + 0x29, 0x98, 0x9e, 0xe8, 0xe6, 0x29, 0x7f, 0x4d, 0x40, 0xba, 0x2c, 0x94, 0x3e, 0xb4, 0x1d, 0xdb, + 0x3f, 0xe2, 0xfd, 0xd3, 0x3c, 0x94, 0x96, 0xa0, 0x2e, 0x7b, 0xc9, 0x80, 0x5f, 0xd8, 0x81, 0xd1, + 0x27, 0x16, 0x66, 0x66, 0x3a, 0xa5, 0x57, 0x29, 0x60, 0x9d, 0x58, 0x38, 0xde, 0x3a, 0xd5, 0x53, + 0x6d, 0x9d, 0x5a, 0x6a, 0xeb, 0x2c, 0xc2, 0xb4, 0x87, 0x4d, 0x9f, 0x38, 0x22, 0xef, 0x12, 0x2d, + 0x2a, 0xff, 0x11, 0xf6, 0x7d, 0x3a, 0x81, 0x88, 0x8a, 0x44, 0x53, 0x89, 0xdd, 0x66, 0x8b, 0x62, + 0xb7, 0x31, 0xa5, 0xf0, 0x54, 0xec, 0xd6, 0x28, 0x8a, 0xdd, 0x4e, 0x52, 0x09, 0x57, 0x22, 0xd3, + 0xe6, 0xd8, 0xc8, 0x54, 0x8d, 0xf1, 0xe6, 0x12, 0x31, 0xde, 0x77, 0xb9, 0xdb, 0xfe, 0xb5, 0x04, + 0x4b, 0x99, 0x0d, 0x22, 0xf6, 0xdb, 0xad, 0x54, 0x2d, 0xbd, 0x5d, 0x24, 0xa1, 0xa8, 0x94, 0x7e, + 0x2f, 0x51, 0x4a, 0xbf, 0x5e, 0x88, 0xff, 0xad, 0x57, 0xd2, 0xff, 0x00, 0x2e, 0xee, 0xbb, 0x56, + 0x2a, 0x7c, 0x12, 0x29, 0xe9, 0xc9, 0xf7, 0xfb, 0x6d, 0x19, 0x24, 0x97, 0x4f, 0x98, 0x9c, 0x73, + 0x74, 0x4d, 0x83, 0xd5, 0xe2, 0xd9, 0x45, 0x18, 0xf2, 0x7b, 0x30, 0xb7, 0xf9, 0x02, 0xf7, 0x7b, + 0xc7, 0x4e, 0xff, 0x14, 0x1c, 0xb5, 0xa0, 0xd2, 0x1f, 0x59, 0xa2, 0x46, 0x45, 0x3f, 0xd5, 0xc8, + 0xaa, 0x92, 0x8c, 0xac, 0x0c, 0x68, 0xc5, 0x33, 0x08, 0x15, 0x2e, 0x52, 0x15, 0x5a, 0x14, 0x99, + 0x12, 0x9f, 0xd5, 0x45, 0x4b, 0xc0, 0xb1, 0xe7, 0xb1, 0xa5, 0x72, 0x38, 0xf6, 0xbc, 0xe4, 0x6e, + 0xaf, 0x24, 0x77, 0xbb, 0xf6, 0x57, 0x25, 0xa8, 0xd3, 0x19, 0xbe, 0x11, 0xff, 0x22, 0x35, 0xa9, + 0xc4, 0xa9, 0x49, 0x94, 0xe1, 0x4c, 0xaa, 0x19, 0x4e, 0xcc, 0xf9, 0x14, 0x03, 0x67, 0x39, 0x9f, + 0x8e, 0xe0, 0xd8, 0xf3, 0xb4, 0x55, 0x98, 0xe5, 0xbc, 0x89, 0x95, 0xb7, 0xa0, 0x12, 0x7a, 0x43, + 0x69, 0x3d, 0xa1, 0x37, 0xd4, 0xfe, 0xb4, 0x04, 0x8d, 0x6e, 0x10, 0x98, 0xfd, 0xa3, 0x53, 0x2c, + 0x20, 0x62, 0xae, 0xac, 0x32, 0x97, 0x5d, 0x44, 0xcc, 0xee, 0x64, 0x01, 0xbb, 0x53, 0x09, 0x76, + 0x35, 0x68, 0x4a, 0x5e, 0x0a, 0x19, 0xde, 0x06, 0xb4, 0x4b, 0xbc, 0xe0, 0x21, 0xf1, 0x9e, 0x9b, + 0x9e, 0x75, 0xba, 0x1c, 0x06, 0xc1, 0xa4, 0x78, 0x9d, 0x56, 0xb9, 0x3a, 0xa5, 0xb3, 0x6f, 0xed, + 0x2d, 0x38, 0x93, 0xa0, 0x57, 0x38, 0xf1, 0x1d, 0xa8, 0x33, 0x07, 0x2e, 0xe2, 0xdc, 0xab, 0x6a, + 0xb1, 0x7c, 0x9c, 0x97, 0xd7, 0xba, 0x30, 0x4f, 0xcf, 0x6e, 0x06, 0x8f, 0x36, 0xde, 0x0f, 0x53, + 0xd1, 0xe0, 0x42, 0x72, 0x7c, 0x2a, 0x12, 0xfc, 0xfb, 0x12, 0x4c, 0x31, 0x78, 0xe6, 0x3c, 0x3d, + 0x07, 0x35, 0x0f, 0xbb, 0xc4, 0x08, 0xcc, 0x41, 0xf4, 0xe0, 0x8f, 0x02, 0xf6, 0xcc, 0x81, 0xcf, + 0xde, 0x2b, 0xd2, 0x4e, 0xcb, 0x1e, 0x60, 0x3f, 0x90, 0xaf, 0xfe, 0xea, 0x14, 0xb6, 0xc1, 0x41, + 0x54, 0x24, 0xbe, 0xfd, 0xfb, 0x3c, 0xcc, 0x9b, 0xd4, 0xd9, 0x37, 0x7a, 0x93, 0xbf, 0xa5, 0x19, + 0x53, 0xd9, 0x64, 0x0f, 0x6c, 0x3a, 0x50, 0x4d, 0x15, 0x33, 0xa3, 0xb6, 0xf6, 0x21, 0x20, 0x75, + 0xcd, 0x42, 0xa8, 0x57, 0x60, 0x9a, 0x89, 0x44, 0xc6, 0x29, 0xcd, 0xe4, 0xa2, 0x75, 0xd1, 0xab, + 0x7d, 0x0e, 0x88, 0x4b, 0x31, 0x11, 0x9b, 0x9c, 0x58, 0xe2, 0x63, 0x42, 0x94, 0x7f, 0x28, 0xc1, + 0x99, 0x04, 0xe9, 0xe8, 0x55, 0x45, 0x82, 0x76, 0x9a, 0x31, 0x41, 0xf7, 0x6e, 0xc2, 0x93, 0x5f, + 0x49, 0x31, 0xf0, 0x6b, 0xf2, 0xe2, 0xbf, 0x28, 0x01, 0x74, 0xc3, 0xe0, 0x48, 0xd4, 0xb2, 0x54, + 0xa9, 0x97, 0x92, 0x52, 0xa7, 0x7d, 0xae, 0xe9, 0xfb, 0xcf, 0x89, 0x27, 0x93, 0x81, 0xa8, 0xcd, + 0xea, 0x50, 0x61, 0x70, 0x24, 0x6f, 0x12, 0xe8, 0x37, 0x7a, 0x13, 0x9a, 0xfc, 0xdd, 0xa8, 0x61, + 0x5a, 0x96, 0x87, 0x7d, 0x5f, 0x5c, 0x29, 0x34, 0x38, 0xb4, 0xcb, 0x81, 0x14, 0xcd, 0xb6, 0xb0, + 0x13, 0xd8, 0xc1, 0xb1, 0x11, 0x90, 0xaf, 0xb0, 0x23, 0xc2, 0xfc, 0x86, 0x84, 0xee, 0x51, 0x20, + 0x45, 0xf3, 0xf0, 0xc0, 0xf6, 0x03, 0x4f, 0xa2, 0xc9, 0x12, 0xb7, 0x80, 0x32, 0x34, 0xed, 0x67, + 0x25, 0x68, 0xed, 0x86, 0xc3, 0x21, 0x97, 0xec, 0xa9, 0x75, 0xfb, 0x96, 0x58, 0x47, 0x39, 0x65, + 0x9d, 0xb1, 0x88, 0xc4, 0xe2, 0xbe, 0x79, 0xf9, 0xe1, 0x16, 0xcc, 0x2b, 0x8c, 0x0a, 0x4b, 0x49, + 0xc4, 0x6c, 0xa5, 0x64, 0xcc, 0xa6, 0xdd, 0x03, 0xc4, 0x33, 0xee, 0xd7, 0x5b, 0x9c, 0x76, 0x16, + 0xce, 0x24, 0xc6, 0x8b, 0x63, 0xf2, 0x3a, 0x34, 0xc4, 0xa3, 0x09, 0x61, 0x04, 0xcb, 0x50, 0xa5, + 0xee, 0xae, 0x6f, 0x5b, 0xf2, 0x0a, 0x69, 0xc6, 0x25, 0xd6, 0xba, 0x6d, 0x79, 0xda, 0x36, 0x34, + 0x74, 0x4e, 0x5e, 0xe0, 0x7e, 0x04, 0x4d, 0xf1, 0xc4, 0xc2, 0x48, 0x3c, 0x42, 0x8a, 0xef, 0x3b, + 0x12, 0xb4, 0xf5, 0x86, 0xa3, 0x36, 0xb5, 0x9f, 0x40, 0x87, 0x1f, 0xe3, 0x09, 0xaa, 0x72, 0x69, + 0x1f, 0x81, 0x7c, 0xd7, 0x5c, 0x44, 0x3c, 0x39, 0xac, 0xe1, 0xa9, 0x4d, 0xed, 0x02, 0x9c, 0xcb, + 0x25, 0x2e, 0xd6, 0xed, 0x42, 0x2b, 0xee, 0xb0, 0x6c, 0x79, 0x73, 0xc6, 0x6e, 0xc4, 0x4a, 0xca, + 0x8d, 0xd8, 0x62, 0x14, 0x93, 0x95, 0xe5, 0x79, 0xc2, 0x22, 0xaf, 0x38, 0x84, 0xae, 0x14, 0x85, + 0xd0, 0x93, 0x89, 0x10, 0x5a, 0xfb, 0x24, 0x92, 0x9e, 0xc8, 0x5f, 0xde, 0x67, 0xe9, 0x15, 0x9f, + 0x5b, 0xba, 0xad, 0xe5, 0x9c, 0xc5, 0x71, 0x0c, 0x5d, 0x41, 0xd6, 0xae, 0x41, 0x23, 0xe9, 0xc0, + 0x14, 0xb7, 0x54, 0xca, 0xb8, 0xa5, 0x66, 0xca, 0x23, 0xdd, 0x4c, 0xc5, 0x99, 0x19, 0x89, 0xa6, + 0xa2, 0xcc, 0xf7, 0x12, 0xbe, 0xe9, 0x52, 0x7c, 0x99, 0xf5, 0x6b, 0x72, 0x4b, 0x0b, 0xc2, 0x47, + 0x3f, 0xf4, 0xe9, 0x78, 0xb1, 0x44, 0xed, 0x32, 0xd4, 0xf7, 0x8b, 0x5e, 0x1c, 0x4f, 0xca, 0xdb, + 0xe1, 0xb7, 0x60, 0xbe, 0x17, 0x10, 0xcf, 0x1c, 0xe0, 0x2d, 0xe6, 0x40, 0x0e, 0x6d, 0x7e, 0xfb, + 0x19, 0x86, 0xd1, 0xd1, 0xc6, 0xbe, 0xb5, 0xff, 0x2c, 0xc1, 0xdc, 0x43, 0x7b, 0x88, 0xfd, 0x63, + 0x3f, 0xc0, 0xa3, 0x7d, 0x96, 0xe4, 0x9c, 0x87, 0x1a, 0x5d, 0x97, 0x1f, 0x98, 0x23, 0x57, 0xde, + 0x90, 0x44, 0x00, 0xaa, 0x2e, 0x9f, 0x93, 0x96, 0x05, 0x11, 0x35, 0xc1, 0xcc, 0xcc, 0x4a, 0x93, + 0x3e, 0x01, 0x42, 0xef, 0x02, 0x84, 0x3e, 0xb6, 0xc4, 0x9d, 0x48, 0x25, 0x75, 0x2a, 0xef, 0xab, + 0xf7, 0x7a, 0x14, 0x8f, 0x5f, 0x1f, 0xbf, 0x07, 0x75, 0xdb, 0x21, 0x16, 0x66, 0xf7, 0x7a, 0x96, + 0x28, 0x96, 0xe4, 0x8f, 0x02, 0x8e, 0xb8, 0xef, 0x63, 0x4b, 0xfb, 0x5d, 0x71, 0x0a, 0x49, 0xe1, + 0x09, 0x9d, 0x6f, 0xc2, 0x3c, 0xf7, 0x2d, 0x87, 0xd1, 0xa2, 0xa5, 0xcd, 0xc5, 0x69, 0x46, 0x4a, + 0x20, 0x7a, 0xcb, 0x16, 0x01, 0x83, 0x1c, 0xa1, 0xdd, 0x85, 0xb3, 0x89, 0xdc, 0xe2, 0x14, 0xd1, + 0xbe, 0xf6, 0x28, 0x55, 0x1a, 0x88, 0x0d, 0x52, 0x64, 0xe0, 0xd2, 0x1e, 0x0b, 0x32, 0x70, 0x9f, + 0x67, 0xe0, 0xbe, 0xa6, 0xc3, 0x72, 0xa2, 0x62, 0x91, 0x60, 0xe4, 0xbd, 0x54, 0xf4, 0x73, 0xa1, + 0x80, 0x58, 0x2a, 0x0c, 0xfa, 0xdf, 0x12, 0x2c, 0xe4, 0x21, 0xbc, 0x66, 0x6d, 0xec, 0xb3, 0x82, + 0x77, 0x3c, 0xb7, 0xc6, 0x72, 0xf3, 0x1b, 0xa9, 0x22, 0x3e, 0x86, 0x4e, 0x9e, 0xf4, 0xb2, 0xaa, + 0xa8, 0x9c, 0x40, 0x15, 0xff, 0x57, 0x56, 0xaa, 0xbd, 0xdd, 0x20, 0xf0, 0xec, 0x83, 0x90, 0x1a, + 0xef, 0xb7, 0x55, 0x9b, 0x79, 0x10, 0xd5, 0x1d, 0xb8, 0xfc, 0xae, 0x66, 0x47, 0xc5, 0xb3, 0xe6, + 0xd6, 0x1e, 0x76, 0x92, 0xb5, 0x07, 0x5e, 0xc7, 0xbd, 0x31, 0x96, 0xcc, 0xf7, 0xb6, 0x54, 0xf7, + 0xb2, 0x04, 0xcd, 0xa4, 0x1e, 0xd0, 0x87, 0x00, 0x66, 0xc4, 0xb9, 0x30, 0xf9, 0xf3, 0xe3, 0x56, + 0xa7, 0x2b, 0xf8, 0xe8, 0x32, 0x54, 0xfa, 0x6e, 0x28, 0x34, 0x12, 0xdf, 0x05, 0xae, 0xbb, 0x21, + 0x77, 0x00, 0xb4, 0x97, 0xe6, 0x13, 0xfc, 0xfe, 0x36, 0xe3, 0xb9, 0x9e, 0x32, 0x30, 0x47, 0x15, + 0x38, 0xe8, 0x3e, 0x34, 0x9f, 0x7b, 0x76, 0x60, 0x1e, 0x0c, 0xb1, 0x31, 0x34, 0x8f, 0xb1, 0x27, + 0x3c, 0x57, 0xb1, 0x97, 0x69, 0x48, 0xfc, 0x27, 0x14, 0x5d, 0x0b, 0xa1, 0x2a, 0xe7, 0x7f, 0x85, + 0x47, 0x7e, 0x0c, 0x4b, 0x21, 0x45, 0x33, 0xd8, 0x0b, 0x1b, 0xc7, 0x74, 0x88, 0xe1, 0x63, 0x7a, + 0x4a, 0xca, 0x07, 0xb5, 0xf9, 0xde, 0x72, 0x81, 0x0d, 0x5a, 0x27, 0x1e, 0xde, 0x36, 0x1d, 0xd2, + 0xe3, 0x23, 0xb4, 0x11, 0xd4, 0x95, 0xe5, 0xbc, 0x62, 0xe6, 0x07, 0x30, 0x2f, 0x6f, 0x59, 0x7d, + 0x1c, 0x08, 0xbf, 0x3e, 0x6e, 0xce, 0x39, 0x81, 0xde, 0xc3, 0x01, 0xbf, 0xfe, 0xbe, 0x07, 0xcb, + 0x3a, 0x26, 0x2e, 0x76, 0x22, 0x15, 0x3d, 0x21, 0x83, 0x53, 0x38, 0xd3, 0xf3, 0xd0, 0xc9, 0x1b, + 0xcf, 0x77, 0xf1, 0xf5, 0xf3, 0x50, 0x95, 0xff, 0xa5, 0x42, 0x33, 0x50, 0xd9, 0x5b, 0xdf, 0x6d, + 0x4d, 0xd0, 0x8f, 0xfd, 0x8d, 0xdd, 0x56, 0xe9, 0xfa, 0x08, 0x5a, 0xe9, 0xff, 0x11, 0xa1, 0x25, + 0x38, 0xb3, 0xab, 0xef, 0xec, 0x76, 0x1f, 0x75, 0xf7, 0xb6, 0x76, 0xb6, 0x8d, 0x5d, 0x7d, 0xeb, + 0xd3, 0xee, 0xde, 0x66, 0x6b, 0x02, 0x5d, 0x82, 0x0b, 0x6a, 0xc7, 0x6f, 0xef, 0xf4, 0xf6, 0x8c, + 0xbd, 0x1d, 0x63, 0x7d, 0x67, 0x7b, 0xaf, 0xbb, 0xb5, 0xbd, 0xa9, 0xb7, 0x4a, 0xe8, 0x02, 0x2c, + 0xab, 0x28, 0x1f, 0x6f, 0x6d, 0x6c, 0xe9, 0x9b, 0xeb, 0xf4, 0xbb, 0xfb, 0xa4, 0x55, 0xbe, 0x7e, + 0x17, 0xe6, 0x52, 0x4f, 0xf0, 0xd0, 0x3c, 0x34, 0x7a, 0xdd, 0xed, 0x8d, 0x8f, 0x77, 0x3e, 0x37, + 0xf4, 0xcd, 0xee, 0xc6, 0x17, 0xad, 0x09, 0xb4, 0x00, 0x2d, 0x09, 0xda, 0xde, 0xd9, 0xe3, 0xd0, + 0xd2, 0xf5, 0xaf, 0x52, 0x06, 0x8f, 0xd1, 0x59, 0x98, 0x8f, 0xe6, 0x36, 0xd6, 0xf5, 0xcd, 0xee, + 0xde, 0xe6, 0x46, 0x6b, 0x22, 0x09, 0xd6, 0xf7, 0xb7, 0xb7, 0xb7, 0xb6, 0x1f, 0xb5, 0x4a, 0x94, + 0x6a, 0x0c, 0xde, 0xfc, 0x7c, 0x8b, 0x22, 0x97, 0x93, 0xc8, 0xfb, 0xdb, 0x8f, 0xb7, 0x77, 0x3e, + 0xdb, 0x6e, 0x55, 0xd6, 0xfe, 0xa9, 0x09, 0x4d, 0x19, 0x01, 0x61, 0x8f, 0x3d, 0x2c, 0xb8, 0x07, + 0x33, 0xf2, 0x5f, 0x75, 0xb1, 0x2b, 0x4c, 0xfe, 0x05, 0xb0, 0xd3, 0xce, 0x76, 0x88, 0x20, 0x73, + 0x02, 0xed, 0xb2, 0xa0, 0x4f, 0x79, 0xee, 0x78, 0x41, 0x8d, 0xb5, 0x32, 0xef, 0x29, 0x3b, 0x2b, + 0x45, 0xdd, 0x11, 0xc5, 0x1e, 0x0d, 0xe7, 0xd4, 0xf7, 0xf3, 0x68, 0x45, 0x0d, 0x42, 0xb2, 0xef, + 0xf2, 0x3b, 0x17, 0x0b, 0xfb, 0x23, 0xa2, 0x5f, 0x40, 0x2b, 0xfd, 0x72, 0x1e, 0xc5, 0xd5, 0xb8, + 0x82, 0x57, 0xf9, 0x9d, 0x4b, 0x63, 0x30, 0x54, 0xd2, 0x99, 0x37, 0xe6, 0xab, 0x63, 0xde, 0xfc, + 0xa6, 0x49, 0x17, 0xbd, 0x0a, 0xe6, 0xa2, 0x48, 0x3e, 0x53, 0x44, 0xea, 0xcb, 0xee, 0x9c, 0xe7, + 0xaa, 0x8a, 0x28, 0xf2, 0xdf, 0x37, 0x6a, 0x13, 0xe8, 0x53, 0x98, 0x4b, 0x5d, 0x0c, 0xa3, 0x78, + 0x54, 0xfe, 0x35, 0x77, 0x67, 0xb5, 0x18, 0x21, 0xa9, 0x37, 0xf5, 0xda, 0x37, 0xa1, 0xb7, 0x9c, + 0xbb, 0xe4, 0x84, 0xde, 0x72, 0xef, 0x8b, 0x99, 0x79, 0x25, 0x2e, 0x77, 0x15, 0xf3, 0xca, 0xbb, + 0x49, 0xee, 0xac, 0x14, 0x75, 0xab, 0xcb, 0x4f, 0x5d, 0xec, 0x2a, 0xcb, 0xcf, 0xbf, 0x2f, 0xee, + 0xac, 0x16, 0x23, 0xa4, 0x75, 0x15, 0xdf, 0x32, 0xa5, 0x74, 0x95, 0xb9, 0xd4, 0x4c, 0xe9, 0x2a, + 0x7b, 0x3d, 0x25, 0x74, 0x95, 0xba, 0x14, 0xba, 0x58, 0x5c, 0x03, 0xcf, 0xe8, 0x2a, 0xbf, 0x48, + 0xae, 0x4d, 0xa0, 0xaf, 0xa1, 0x5d, 0x54, 0x5f, 0x46, 0x71, 0x04, 0xf2, 0x8a, 0x02, 0x78, 0xe7, + 0xda, 0x09, 0x30, 0xa3, 0x29, 0x0d, 0x9a, 0xde, 0xa7, 0xfd, 0x39, 0xd2, 0x14, 0xc9, 0x16, 0x1c, + 0x16, 0x9d, 0xcb, 0x63, 0x71, 0xa2, 0x09, 0xba, 0x50, 0x95, 0xd5, 0x6a, 0x14, 0x7b, 0xac, 0x54, + 0x89, 0xbc, 0xb3, 0x9c, 0xd3, 0x13, 0x91, 0x78, 0x0f, 0x26, 0x29, 0x14, 0x2d, 0x24, 0x90, 0xe4, + 0xd0, 0xb3, 0x29, 0x68, 0x34, 0xec, 0x03, 0x98, 0xe6, 0xa5, 0x57, 0x14, 0x27, 0x9a, 0x89, 0xba, + 0x70, 0x67, 0x29, 0x03, 0x8f, 0x06, 0x7f, 0xc2, 0xff, 0x3d, 0x2c, 0x6a, 0xa8, 0xe8, 0x5c, 0xe2, + 0x8f, 0x66, 0xc9, 0x4a, 0x6d, 0xe7, 0x7c, 0x7e, 0xa7, 0x6a, 0x83, 0xa9, 0xe8, 0x69, 0xa5, 0x28, + 0xbc, 0xcd, 0xd8, 0x60, 0x7e, 0xb8, 0xcc, 0x15, 0x97, 0x0d, 0xa7, 0x15, 0xc5, 0x15, 0x66, 0x2a, + 0x8a, 0xe2, 0x8a, 0xe3, 0x71, 0x6d, 0x02, 0x1d, 0xc0, 0x99, 0x9c, 0x42, 0x06, 0xba, 0x9c, 0xb2, + 0xae, 0xbc, 0x1a, 0x4a, 0xe7, 0x8d, 0xf1, 0x48, 0xaa, 0x8a, 0xc4, 0xfe, 0x59, 0xcc, 0x64, 0xf7, + 0x69, 0x15, 0xa5, 0x77, 0xcb, 0xda, 0x1f, 0x55, 0x60, 0x96, 0x97, 0x9b, 0xc4, 0xa1, 0xf9, 0x08, + 0x20, 0xae, 0xd0, 0xa2, 0x4e, 0x62, 0x99, 0x89, 0x52, 0x75, 0xe7, 0x5c, 0x6e, 0x9f, 0xaa, 0x7c, + 0xa5, 0xfe, 0xa9, 0x28, 0x3f, 0x5b, 0xc2, 0x55, 0x94, 0x9f, 0x53, 0x32, 0xd5, 0x26, 0xd0, 0x06, + 0xd4, 0xa2, 0x8a, 0x1b, 0x52, 0x0a, 0x75, 0xa9, 0x72, 0x61, 0xa7, 0x93, 0xd7, 0xa5, 0x72, 0xa4, + 0x54, 0xd1, 0x14, 0x8e, 0xb2, 0xb5, 0x39, 0x85, 0xa3, 0xbc, 0xc2, 0x5b, 0xbc, 0x3a, 0x9e, 0xa9, + 0xa7, 0x57, 0x97, 0x28, 0x7e, 0xa4, 0x57, 0x97, 0x4c, 0xee, 0xb5, 0x89, 0x8f, 0xcf, 0xff, 0xfc, + 0x97, 0x2b, 0xa5, 0xff, 0xfa, 0xe5, 0xca, 0xc4, 0x1f, 0xbe, 0x5c, 0x29, 0xfd, 0xfc, 0xe5, 0x4a, + 0xe9, 0x3f, 0x5e, 0xae, 0x94, 0xfe, 0xfb, 0xe5, 0x4a, 0xe9, 0xa7, 0xff, 0xb3, 0x32, 0x71, 0x30, + 0xcd, 0xfe, 0x4e, 0xff, 0xee, 0xaf, 0x02, 0x00, 0x00, 0xff, 0xff, 0x56, 0x55, 0xe2, 0xa2, 0x02, + 0x41, 0x00, 0x00, }