From 295a9753a154e395e329b347f5444b722006917f Mon Sep 17 00:00:00 2001 From: James Sturtevant Date: Fri, 21 Oct 2022 20:13:26 +0000 Subject: [PATCH] Add Windows Podsandbox Stats Signed-off-by: James Sturtevant --- .../cri-api/pkg/apis/runtime/v1/api.pb.go | 3568 ++++++++++++++--- .../cri-api/pkg/apis/runtime/v1/api.proto | 94 +- 2 files changed, 3177 insertions(+), 485 deletions(-) diff --git a/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go b/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go index ca7f142290b..e0615587a00 100644 --- a/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go +++ b/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go @@ -2900,8 +2900,18 @@ func (m *LinuxPodSandboxStats) GetContainers() []*ContainerStats { // WindowsPodSandboxStats provides the resource usage statistics for a pod sandbox on windows type WindowsPodSandboxStats struct { - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_sizecache int32 `json:"-"` + // CPU usage gathered for the pod sandbox. + Cpu *WindowsCpuUsage `protobuf:"bytes,1,opt,name=cpu,proto3" json:"cpu,omitempty"` + // Memory usage gathered for the pod sandbox. + Memory *WindowsMemoryUsage `protobuf:"bytes,2,opt,name=memory,proto3" json:"memory,omitempty"` + // Network usage gathered for the pod sandbox + Network *WindowsNetworkUsage `protobuf:"bytes,3,opt,name=network,proto3" json:"network,omitempty"` + // Stats pertaining to processes in the pod sandbox. + Process *WindowsProcessUsage `protobuf:"bytes,4,opt,name=process,proto3" json:"process,omitempty"` + // Stats of containers in the measured pod sandbox. + Containers []*WindowsContainerStats `protobuf:"bytes,5,rep,name=containers,proto3" json:"containers,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *WindowsPodSandboxStats) Reset() { *m = WindowsPodSandboxStats{} } @@ -2936,9 +2946,44 @@ func (m *WindowsPodSandboxStats) XXX_DiscardUnknown() { var xxx_messageInfo_WindowsPodSandboxStats proto.InternalMessageInfo +func (m *WindowsPodSandboxStats) GetCpu() *WindowsCpuUsage { + if m != nil { + return m.Cpu + } + return nil +} + +func (m *WindowsPodSandboxStats) GetMemory() *WindowsMemoryUsage { + if m != nil { + return m.Memory + } + return nil +} + +func (m *WindowsPodSandboxStats) GetNetwork() *WindowsNetworkUsage { + if m != nil { + return m.Network + } + return nil +} + +func (m *WindowsPodSandboxStats) GetProcess() *WindowsProcessUsage { + if m != nil { + return m.Process + } + return nil +} + +func (m *WindowsPodSandboxStats) GetContainers() []*WindowsContainerStats { + if m != nil { + return m.Containers + } + return nil +} + // NetworkUsage contains data about network resources. type NetworkUsage struct { - // The time at which these stats were updated. + // Timestamp in nanoseconds at which the information were collected. Must be > 0. Timestamp int64 `protobuf:"varint,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"` // Stats for the default network interface. DefaultInterface *NetworkInterfaceUsage `protobuf:"bytes,2,opt,name=default_interface,json=defaultInterface,proto3" json:"default_interface,omitempty"` @@ -3001,6 +3046,71 @@ func (m *NetworkUsage) GetInterfaces() []*NetworkInterfaceUsage { return nil } +// WindowsNetworkUsage contains data about network resources specific to Windows. +type WindowsNetworkUsage struct { + // Timestamp in nanoseconds at which the information were collected. Must be > 0. + Timestamp int64 `protobuf:"varint,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"` + // Stats for the default network interface. + DefaultInterface *WindowsNetworkInterfaceUsage `protobuf:"bytes,2,opt,name=default_interface,json=defaultInterface,proto3" json:"default_interface,omitempty"` + // Stats for all found network interfaces, excluding the default. + Interfaces []*WindowsNetworkInterfaceUsage `protobuf:"bytes,3,rep,name=interfaces,proto3" json:"interfaces,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *WindowsNetworkUsage) Reset() { *m = WindowsNetworkUsage{} } +func (*WindowsNetworkUsage) ProtoMessage() {} +func (*WindowsNetworkUsage) Descriptor() ([]byte, []int) { + return fileDescriptor_00212fb1f9d3bf1c, []int{42} +} +func (m *WindowsNetworkUsage) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *WindowsNetworkUsage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_WindowsNetworkUsage.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *WindowsNetworkUsage) XXX_Merge(src proto.Message) { + xxx_messageInfo_WindowsNetworkUsage.Merge(m, src) +} +func (m *WindowsNetworkUsage) XXX_Size() int { + return m.Size() +} +func (m *WindowsNetworkUsage) XXX_DiscardUnknown() { + xxx_messageInfo_WindowsNetworkUsage.DiscardUnknown(m) +} + +var xxx_messageInfo_WindowsNetworkUsage proto.InternalMessageInfo + +func (m *WindowsNetworkUsage) GetTimestamp() int64 { + if m != nil { + return m.Timestamp + } + return 0 +} + +func (m *WindowsNetworkUsage) GetDefaultInterface() *WindowsNetworkInterfaceUsage { + if m != nil { + return m.DefaultInterface + } + return nil +} + +func (m *WindowsNetworkUsage) GetInterfaces() []*WindowsNetworkInterfaceUsage { + if m != nil { + return m.Interfaces + } + return nil +} + // NetworkInterfaceUsage contains resource value data about a network interface. type NetworkInterfaceUsage struct { // The name of the network interface. @@ -3020,7 +3130,7 @@ type NetworkInterfaceUsage struct { func (m *NetworkInterfaceUsage) Reset() { *m = NetworkInterfaceUsage{} } func (*NetworkInterfaceUsage) ProtoMessage() {} func (*NetworkInterfaceUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{42} + return fileDescriptor_00212fb1f9d3bf1c, []int{43} } func (m *NetworkInterfaceUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3084,9 +3194,92 @@ func (m *NetworkInterfaceUsage) GetTxErrors() *UInt64Value { return nil } +// WindowsNetworkInterfaceUsage contains resource value data about a network interface specific for Windows. +type WindowsNetworkInterfaceUsage struct { + // The name of the network interface. + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + // Cumulative count of bytes received. + RxBytes *UInt64Value `protobuf:"bytes,2,opt,name=rx_bytes,json=rxBytes,proto3" json:"rx_bytes,omitempty"` + // Cumulative count of receive errors encountered. + RxPacketsDropped *UInt64Value `protobuf:"bytes,3,opt,name=rx_packets_dropped,json=rxPacketsDropped,proto3" json:"rx_packets_dropped,omitempty"` + // Cumulative count of bytes transmitted. + TxBytes *UInt64Value `protobuf:"bytes,4,opt,name=tx_bytes,json=txBytes,proto3" json:"tx_bytes,omitempty"` + // Cumulative count of transmit errors encountered. + TxPacketsDropped *UInt64Value `protobuf:"bytes,5,opt,name=tx_packets_dropped,json=txPacketsDropped,proto3" json:"tx_packets_dropped,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *WindowsNetworkInterfaceUsage) Reset() { *m = WindowsNetworkInterfaceUsage{} } +func (*WindowsNetworkInterfaceUsage) ProtoMessage() {} +func (*WindowsNetworkInterfaceUsage) Descriptor() ([]byte, []int) { + return fileDescriptor_00212fb1f9d3bf1c, []int{44} +} +func (m *WindowsNetworkInterfaceUsage) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *WindowsNetworkInterfaceUsage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_WindowsNetworkInterfaceUsage.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *WindowsNetworkInterfaceUsage) XXX_Merge(src proto.Message) { + xxx_messageInfo_WindowsNetworkInterfaceUsage.Merge(m, src) +} +func (m *WindowsNetworkInterfaceUsage) XXX_Size() int { + return m.Size() +} +func (m *WindowsNetworkInterfaceUsage) XXX_DiscardUnknown() { + xxx_messageInfo_WindowsNetworkInterfaceUsage.DiscardUnknown(m) +} + +var xxx_messageInfo_WindowsNetworkInterfaceUsage proto.InternalMessageInfo + +func (m *WindowsNetworkInterfaceUsage) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +func (m *WindowsNetworkInterfaceUsage) GetRxBytes() *UInt64Value { + if m != nil { + return m.RxBytes + } + return nil +} + +func (m *WindowsNetworkInterfaceUsage) GetRxPacketsDropped() *UInt64Value { + if m != nil { + return m.RxPacketsDropped + } + return nil +} + +func (m *WindowsNetworkInterfaceUsage) GetTxBytes() *UInt64Value { + if m != nil { + return m.TxBytes + } + return nil +} + +func (m *WindowsNetworkInterfaceUsage) GetTxPacketsDropped() *UInt64Value { + if m != nil { + return m.TxPacketsDropped + } + return nil +} + // ProcessUsage are stats pertaining to processes. type ProcessUsage struct { - // The time at which these stats were updated. + // Timestamp in nanoseconds at which the information were collected. Must be > 0. Timestamp int64 `protobuf:"varint,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"` // Number of processes. ProcessCount *UInt64Value `protobuf:"bytes,2,opt,name=process_count,json=processCount,proto3" json:"process_count,omitempty"` @@ -3097,7 +3290,7 @@ type ProcessUsage struct { func (m *ProcessUsage) Reset() { *m = ProcessUsage{} } func (*ProcessUsage) ProtoMessage() {} func (*ProcessUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{43} + return fileDescriptor_00212fb1f9d3bf1c, []int{45} } func (m *ProcessUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3140,6 +3333,62 @@ func (m *ProcessUsage) GetProcessCount() *UInt64Value { return nil } +// WindowsProcessUsage are stats pertaining to processes specific to Windows. +type WindowsProcessUsage struct { + // Timestamp in nanoseconds at which the information were collected. Must be > 0. + Timestamp int64 `protobuf:"varint,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"` + // Number of processes. + ProcessCount *UInt64Value `protobuf:"bytes,2,opt,name=process_count,json=processCount,proto3" json:"process_count,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *WindowsProcessUsage) Reset() { *m = WindowsProcessUsage{} } +func (*WindowsProcessUsage) ProtoMessage() {} +func (*WindowsProcessUsage) Descriptor() ([]byte, []int) { + return fileDescriptor_00212fb1f9d3bf1c, []int{46} +} +func (m *WindowsProcessUsage) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *WindowsProcessUsage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_WindowsProcessUsage.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *WindowsProcessUsage) XXX_Merge(src proto.Message) { + xxx_messageInfo_WindowsProcessUsage.Merge(m, src) +} +func (m *WindowsProcessUsage) XXX_Size() int { + return m.Size() +} +func (m *WindowsProcessUsage) XXX_DiscardUnknown() { + xxx_messageInfo_WindowsProcessUsage.DiscardUnknown(m) +} + +var xxx_messageInfo_WindowsProcessUsage proto.InternalMessageInfo + +func (m *WindowsProcessUsage) GetTimestamp() int64 { + if m != nil { + return m.Timestamp + } + return 0 +} + +func (m *WindowsProcessUsage) GetProcessCount() *UInt64Value { + if m != nil { + return m.ProcessCount + } + return nil +} + // ImageSpec is an internal representation of an image. type ImageSpec struct { // Container's Image field (e.g. imageID or imageDigest). @@ -3155,7 +3404,7 @@ type ImageSpec struct { func (m *ImageSpec) Reset() { *m = ImageSpec{} } func (*ImageSpec) ProtoMessage() {} func (*ImageSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{44} + return fileDescriptor_00212fb1f9d3bf1c, []int{47} } func (m *ImageSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3208,7 +3457,7 @@ type KeyValue struct { func (m *KeyValue) Reset() { *m = KeyValue{} } func (*KeyValue) ProtoMessage() {} func (*KeyValue) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{45} + return fileDescriptor_00212fb1f9d3bf1c, []int{48} } func (m *KeyValue) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3283,7 +3532,7 @@ type LinuxContainerResources struct { func (m *LinuxContainerResources) Reset() { *m = LinuxContainerResources{} } func (*LinuxContainerResources) ProtoMessage() {} func (*LinuxContainerResources) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{46} + return fileDescriptor_00212fb1f9d3bf1c, []int{49} } func (m *LinuxContainerResources) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3398,7 +3647,7 @@ type HugepageLimit struct { func (m *HugepageLimit) Reset() { *m = HugepageLimit{} } func (*HugepageLimit) ProtoMessage() {} func (*HugepageLimit) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{47} + return fileDescriptor_00212fb1f9d3bf1c, []int{50} } func (m *HugepageLimit) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3454,7 +3703,7 @@ type SELinuxOption struct { func (m *SELinuxOption) Reset() { *m = SELinuxOption{} } func (*SELinuxOption) ProtoMessage() {} func (*SELinuxOption) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{48} + return fileDescriptor_00212fb1f9d3bf1c, []int{51} } func (m *SELinuxOption) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3533,7 +3782,7 @@ type Capability struct { func (m *Capability) Reset() { *m = Capability{} } func (*Capability) ProtoMessage() {} func (*Capability) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{49} + return fileDescriptor_00212fb1f9d3bf1c, []int{52} } func (m *Capability) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3661,7 +3910,7 @@ type LinuxContainerSecurityContext struct { func (m *LinuxContainerSecurityContext) Reset() { *m = LinuxContainerSecurityContext{} } func (*LinuxContainerSecurityContext) ProtoMessage() {} func (*LinuxContainerSecurityContext) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{50} + return fileDescriptor_00212fb1f9d3bf1c, []int{53} } func (m *LinuxContainerSecurityContext) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3818,7 +4067,7 @@ type LinuxContainerConfig struct { func (m *LinuxContainerConfig) Reset() { *m = LinuxContainerConfig{} } func (*LinuxContainerConfig) ProtoMessage() {} func (*LinuxContainerConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{51} + return fileDescriptor_00212fb1f9d3bf1c, []int{54} } func (m *LinuxContainerConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3880,7 +4129,7 @@ type WindowsSandboxSecurityContext struct { func (m *WindowsSandboxSecurityContext) Reset() { *m = WindowsSandboxSecurityContext{} } func (*WindowsSandboxSecurityContext) ProtoMessage() {} func (*WindowsSandboxSecurityContext) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{52} + return fileDescriptor_00212fb1f9d3bf1c, []int{55} } func (m *WindowsSandboxSecurityContext) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3942,7 +4191,7 @@ type WindowsPodSandboxConfig struct { func (m *WindowsPodSandboxConfig) Reset() { *m = WindowsPodSandboxConfig{} } func (*WindowsPodSandboxConfig) ProtoMessage() {} func (*WindowsPodSandboxConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{53} + return fileDescriptor_00212fb1f9d3bf1c, []int{56} } func (m *WindowsPodSandboxConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3995,7 +4244,7 @@ type WindowsContainerSecurityContext struct { func (m *WindowsContainerSecurityContext) Reset() { *m = WindowsContainerSecurityContext{} } func (*WindowsContainerSecurityContext) ProtoMessage() {} func (*WindowsContainerSecurityContext) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{54} + return fileDescriptor_00212fb1f9d3bf1c, []int{57} } func (m *WindowsContainerSecurityContext) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4059,7 +4308,7 @@ type WindowsContainerConfig struct { func (m *WindowsContainerConfig) Reset() { *m = WindowsContainerConfig{} } func (*WindowsContainerConfig) ProtoMessage() {} func (*WindowsContainerConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{55} + return fileDescriptor_00212fb1f9d3bf1c, []int{58} } func (m *WindowsContainerConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4122,7 +4371,7 @@ type WindowsContainerResources struct { func (m *WindowsContainerResources) Reset() { *m = WindowsContainerResources{} } func (*WindowsContainerResources) ProtoMessage() {} func (*WindowsContainerResources) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{56} + return fileDescriptor_00212fb1f9d3bf1c, []int{59} } func (m *WindowsContainerResources) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4203,7 +4452,7 @@ type ContainerMetadata struct { func (m *ContainerMetadata) Reset() { *m = ContainerMetadata{} } func (*ContainerMetadata) ProtoMessage() {} func (*ContainerMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{57} + return fileDescriptor_00212fb1f9d3bf1c, []int{60} } func (m *ContainerMetadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4264,7 +4513,7 @@ type Device struct { func (m *Device) Reset() { *m = Device{} } func (*Device) ProtoMessage() {} func (*Device) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{58} + return fileDescriptor_00212fb1f9d3bf1c, []int{61} } func (m *Device) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4383,7 +4632,7 @@ type ContainerConfig struct { func (m *ContainerConfig) Reset() { *m = ContainerConfig{} } func (*ContainerConfig) ProtoMessage() {} func (*ContainerConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{59} + return fileDescriptor_00212fb1f9d3bf1c, []int{62} } func (m *ContainerConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4541,7 +4790,7 @@ type CreateContainerRequest struct { func (m *CreateContainerRequest) Reset() { *m = CreateContainerRequest{} } func (*CreateContainerRequest) ProtoMessage() {} func (*CreateContainerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{60} + return fileDescriptor_00212fb1f9d3bf1c, []int{63} } func (m *CreateContainerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4601,7 +4850,7 @@ type CreateContainerResponse struct { func (m *CreateContainerResponse) Reset() { *m = CreateContainerResponse{} } func (*CreateContainerResponse) ProtoMessage() {} func (*CreateContainerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{61} + return fileDescriptor_00212fb1f9d3bf1c, []int{64} } func (m *CreateContainerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4647,7 +4896,7 @@ type StartContainerRequest struct { func (m *StartContainerRequest) Reset() { *m = StartContainerRequest{} } func (*StartContainerRequest) ProtoMessage() {} func (*StartContainerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{62} + return fileDescriptor_00212fb1f9d3bf1c, []int{65} } func (m *StartContainerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4691,7 +4940,7 @@ type StartContainerResponse struct { func (m *StartContainerResponse) Reset() { *m = StartContainerResponse{} } func (*StartContainerResponse) ProtoMessage() {} func (*StartContainerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{63} + return fileDescriptor_00212fb1f9d3bf1c, []int{66} } func (m *StartContainerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4733,7 +4982,7 @@ type StopContainerRequest struct { func (m *StopContainerRequest) Reset() { *m = StopContainerRequest{} } func (*StopContainerRequest) ProtoMessage() {} func (*StopContainerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{64} + return fileDescriptor_00212fb1f9d3bf1c, []int{67} } func (m *StopContainerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4784,7 +5033,7 @@ type StopContainerResponse struct { func (m *StopContainerResponse) Reset() { *m = StopContainerResponse{} } func (*StopContainerResponse) ProtoMessage() {} func (*StopContainerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{65} + return fileDescriptor_00212fb1f9d3bf1c, []int{68} } func (m *StopContainerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4823,7 +5072,7 @@ type RemoveContainerRequest struct { func (m *RemoveContainerRequest) Reset() { *m = RemoveContainerRequest{} } func (*RemoveContainerRequest) ProtoMessage() {} func (*RemoveContainerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{66} + return fileDescriptor_00212fb1f9d3bf1c, []int{69} } func (m *RemoveContainerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4867,7 +5116,7 @@ type RemoveContainerResponse struct { func (m *RemoveContainerResponse) Reset() { *m = RemoveContainerResponse{} } func (*RemoveContainerResponse) ProtoMessage() {} func (*RemoveContainerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{67} + return fileDescriptor_00212fb1f9d3bf1c, []int{70} } func (m *RemoveContainerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4907,7 +5156,7 @@ type ContainerStateValue struct { func (m *ContainerStateValue) Reset() { *m = ContainerStateValue{} } func (*ContainerStateValue) ProtoMessage() {} func (*ContainerStateValue) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{68} + return fileDescriptor_00212fb1f9d3bf1c, []int{71} } func (m *ContainerStateValue) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4963,7 +5212,7 @@ type ContainerFilter struct { func (m *ContainerFilter) Reset() { *m = ContainerFilter{} } func (*ContainerFilter) ProtoMessage() {} func (*ContainerFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{69} + return fileDescriptor_00212fb1f9d3bf1c, []int{72} } func (m *ContainerFilter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5029,7 +5278,7 @@ type ListContainersRequest struct { func (m *ListContainersRequest) Reset() { *m = ListContainersRequest{} } func (*ListContainersRequest) ProtoMessage() {} func (*ListContainersRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{70} + return fileDescriptor_00212fb1f9d3bf1c, []int{73} } func (m *ListContainersRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5098,7 +5347,7 @@ type Container struct { func (m *Container) Reset() { *m = Container{} } func (*Container) ProtoMessage() {} func (*Container) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{71} + return fileDescriptor_00212fb1f9d3bf1c, []int{74} } func (m *Container) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5200,7 +5449,7 @@ type ListContainersResponse struct { func (m *ListContainersResponse) Reset() { *m = ListContainersResponse{} } func (*ListContainersResponse) ProtoMessage() {} func (*ListContainersResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{72} + return fileDescriptor_00212fb1f9d3bf1c, []int{75} } func (m *ListContainersResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5248,7 +5497,7 @@ type ContainerStatusRequest struct { func (m *ContainerStatusRequest) Reset() { *m = ContainerStatusRequest{} } func (*ContainerStatusRequest) ProtoMessage() {} func (*ContainerStatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{73} + return fileDescriptor_00212fb1f9d3bf1c, []int{76} } func (m *ContainerStatusRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5337,7 +5586,7 @@ type ContainerStatus struct { func (m *ContainerStatus) Reset() { *m = ContainerStatus{} } func (*ContainerStatus) ProtoMessage() {} func (*ContainerStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{74} + return fileDescriptor_00212fb1f9d3bf1c, []int{77} } func (m *ContainerStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5493,7 +5742,7 @@ type ContainerStatusResponse struct { func (m *ContainerStatusResponse) Reset() { *m = ContainerStatusResponse{} } func (*ContainerStatusResponse) ProtoMessage() {} func (*ContainerStatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{75} + return fileDescriptor_00212fb1f9d3bf1c, []int{78} } func (m *ContainerStatusResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5549,7 +5798,7 @@ type ContainerResources struct { func (m *ContainerResources) Reset() { *m = ContainerResources{} } func (*ContainerResources) ProtoMessage() {} func (*ContainerResources) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{76} + return fileDescriptor_00212fb1f9d3bf1c, []int{79} } func (m *ContainerResources) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5610,7 +5859,7 @@ type UpdateContainerResourcesRequest struct { func (m *UpdateContainerResourcesRequest) Reset() { *m = UpdateContainerResourcesRequest{} } func (*UpdateContainerResourcesRequest) ProtoMessage() {} func (*UpdateContainerResourcesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{77} + return fileDescriptor_00212fb1f9d3bf1c, []int{80} } func (m *UpdateContainerResourcesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5675,7 +5924,7 @@ type UpdateContainerResourcesResponse struct { func (m *UpdateContainerResourcesResponse) Reset() { *m = UpdateContainerResourcesResponse{} } func (*UpdateContainerResourcesResponse) ProtoMessage() {} func (*UpdateContainerResourcesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{78} + return fileDescriptor_00212fb1f9d3bf1c, []int{81} } func (m *UpdateContainerResourcesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5718,7 +5967,7 @@ type ExecSyncRequest struct { func (m *ExecSyncRequest) Reset() { *m = ExecSyncRequest{} } func (*ExecSyncRequest) ProtoMessage() {} func (*ExecSyncRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{79} + return fileDescriptor_00212fb1f9d3bf1c, []int{82} } func (m *ExecSyncRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5782,7 +6031,7 @@ type ExecSyncResponse struct { func (m *ExecSyncResponse) Reset() { *m = ExecSyncResponse{} } func (*ExecSyncResponse) ProtoMessage() {} func (*ExecSyncResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{80} + return fileDescriptor_00212fb1f9d3bf1c, []int{83} } func (m *ExecSyncResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5858,7 +6107,7 @@ type ExecRequest struct { func (m *ExecRequest) Reset() { *m = ExecRequest{} } func (*ExecRequest) ProtoMessage() {} func (*ExecRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{81} + return fileDescriptor_00212fb1f9d3bf1c, []int{84} } func (m *ExecRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5939,7 +6188,7 @@ type ExecResponse struct { func (m *ExecResponse) Reset() { *m = ExecResponse{} } func (*ExecResponse) ProtoMessage() {} func (*ExecResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{82} + return fileDescriptor_00212fb1f9d3bf1c, []int{85} } func (m *ExecResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6000,7 +6249,7 @@ type AttachRequest struct { func (m *AttachRequest) Reset() { *m = AttachRequest{} } func (*AttachRequest) ProtoMessage() {} func (*AttachRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{83} + return fileDescriptor_00212fb1f9d3bf1c, []int{86} } func (m *AttachRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6074,7 +6323,7 @@ type AttachResponse struct { func (m *AttachResponse) Reset() { *m = AttachResponse{} } func (*AttachResponse) ProtoMessage() {} func (*AttachResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{84} + return fileDescriptor_00212fb1f9d3bf1c, []int{87} } func (m *AttachResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6122,7 +6371,7 @@ type PortForwardRequest struct { func (m *PortForwardRequest) Reset() { *m = PortForwardRequest{} } func (*PortForwardRequest) ProtoMessage() {} func (*PortForwardRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{85} + return fileDescriptor_00212fb1f9d3bf1c, []int{88} } func (m *PortForwardRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6175,7 +6424,7 @@ type PortForwardResponse struct { func (m *PortForwardResponse) Reset() { *m = PortForwardResponse{} } func (*PortForwardResponse) ProtoMessage() {} func (*PortForwardResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{86} + return fileDescriptor_00212fb1f9d3bf1c, []int{89} } func (m *PortForwardResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6221,7 +6470,7 @@ type ImageFilter struct { func (m *ImageFilter) Reset() { *m = ImageFilter{} } func (*ImageFilter) ProtoMessage() {} func (*ImageFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{87} + return fileDescriptor_00212fb1f9d3bf1c, []int{90} } func (m *ImageFilter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6267,7 +6516,7 @@ type ListImagesRequest struct { func (m *ListImagesRequest) Reset() { *m = ListImagesRequest{} } func (*ListImagesRequest) ProtoMessage() {} func (*ListImagesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{88} + return fileDescriptor_00212fb1f9d3bf1c, []int{91} } func (m *ListImagesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6333,7 +6582,7 @@ type Image struct { func (m *Image) Reset() { *m = Image{} } func (*Image) ProtoMessage() {} func (*Image) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{89} + return fileDescriptor_00212fb1f9d3bf1c, []int{92} } func (m *Image) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6428,7 +6677,7 @@ type ListImagesResponse struct { func (m *ListImagesResponse) Reset() { *m = ListImagesResponse{} } func (*ListImagesResponse) ProtoMessage() {} func (*ListImagesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{90} + return fileDescriptor_00212fb1f9d3bf1c, []int{93} } func (m *ListImagesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6476,7 +6725,7 @@ type ImageStatusRequest struct { func (m *ImageStatusRequest) Reset() { *m = ImageStatusRequest{} } func (*ImageStatusRequest) ProtoMessage() {} func (*ImageStatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{91} + return fileDescriptor_00212fb1f9d3bf1c, []int{94} } func (m *ImageStatusRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6534,7 +6783,7 @@ type ImageStatusResponse struct { func (m *ImageStatusResponse) Reset() { *m = ImageStatusResponse{} } func (*ImageStatusResponse) ProtoMessage() {} func (*ImageStatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{92} + return fileDescriptor_00212fb1f9d3bf1c, []int{95} } func (m *ImageStatusResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6595,7 +6844,7 @@ type AuthConfig struct { func (m *AuthConfig) Reset() { *m = AuthConfig{} } func (*AuthConfig) ProtoMessage() {} func (*AuthConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{93} + return fileDescriptor_00212fb1f9d3bf1c, []int{96} } func (m *AuthConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6680,7 +6929,7 @@ type PullImageRequest struct { func (m *PullImageRequest) Reset() { *m = PullImageRequest{} } func (*PullImageRequest) ProtoMessage() {} func (*PullImageRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{94} + return fileDescriptor_00212fb1f9d3bf1c, []int{97} } func (m *PullImageRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6741,7 +6990,7 @@ type PullImageResponse struct { func (m *PullImageResponse) Reset() { *m = PullImageResponse{} } func (*PullImageResponse) ProtoMessage() {} func (*PullImageResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{95} + return fileDescriptor_00212fb1f9d3bf1c, []int{98} } func (m *PullImageResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6787,7 +7036,7 @@ type RemoveImageRequest struct { func (m *RemoveImageRequest) Reset() { *m = RemoveImageRequest{} } func (*RemoveImageRequest) ProtoMessage() {} func (*RemoveImageRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{96} + return fileDescriptor_00212fb1f9d3bf1c, []int{99} } func (m *RemoveImageRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6831,7 +7080,7 @@ type RemoveImageResponse struct { func (m *RemoveImageResponse) Reset() { *m = RemoveImageResponse{} } func (*RemoveImageResponse) ProtoMessage() {} func (*RemoveImageResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{97} + return fileDescriptor_00212fb1f9d3bf1c, []int{100} } func (m *RemoveImageResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6871,7 +7120,7 @@ type NetworkConfig struct { func (m *NetworkConfig) Reset() { *m = NetworkConfig{} } func (*NetworkConfig) ProtoMessage() {} func (*NetworkConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{98} + return fileDescriptor_00212fb1f9d3bf1c, []int{101} } func (m *NetworkConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6916,7 +7165,7 @@ type RuntimeConfig struct { func (m *RuntimeConfig) Reset() { *m = RuntimeConfig{} } func (*RuntimeConfig) ProtoMessage() {} func (*RuntimeConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{99} + return fileDescriptor_00212fb1f9d3bf1c, []int{102} } func (m *RuntimeConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6961,7 +7210,7 @@ type UpdateRuntimeConfigRequest struct { func (m *UpdateRuntimeConfigRequest) Reset() { *m = UpdateRuntimeConfigRequest{} } func (*UpdateRuntimeConfigRequest) ProtoMessage() {} func (*UpdateRuntimeConfigRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{100} + return fileDescriptor_00212fb1f9d3bf1c, []int{103} } func (m *UpdateRuntimeConfigRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7005,7 +7254,7 @@ type UpdateRuntimeConfigResponse struct { func (m *UpdateRuntimeConfigResponse) Reset() { *m = UpdateRuntimeConfigResponse{} } func (*UpdateRuntimeConfigResponse) ProtoMessage() {} func (*UpdateRuntimeConfigResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{101} + return fileDescriptor_00212fb1f9d3bf1c, []int{104} } func (m *UpdateRuntimeConfigResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7064,7 +7313,7 @@ type RuntimeCondition struct { func (m *RuntimeCondition) Reset() { *m = RuntimeCondition{} } func (*RuntimeCondition) ProtoMessage() {} func (*RuntimeCondition) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{102} + return fileDescriptor_00212fb1f9d3bf1c, []int{105} } func (m *RuntimeCondition) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7132,7 +7381,7 @@ type RuntimeStatus struct { func (m *RuntimeStatus) Reset() { *m = RuntimeStatus{} } func (*RuntimeStatus) ProtoMessage() {} func (*RuntimeStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{103} + return fileDescriptor_00212fb1f9d3bf1c, []int{106} } func (m *RuntimeStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7178,7 +7427,7 @@ type StatusRequest struct { func (m *StatusRequest) Reset() { *m = StatusRequest{} } func (*StatusRequest) ProtoMessage() {} func (*StatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{104} + return fileDescriptor_00212fb1f9d3bf1c, []int{107} } func (m *StatusRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7229,7 +7478,7 @@ type StatusResponse struct { func (m *StatusResponse) Reset() { *m = StatusResponse{} } func (*StatusResponse) ProtoMessage() {} func (*StatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{105} + return fileDescriptor_00212fb1f9d3bf1c, []int{108} } func (m *StatusResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7280,7 +7529,7 @@ type ImageFsInfoRequest struct { func (m *ImageFsInfoRequest) Reset() { *m = ImageFsInfoRequest{} } func (*ImageFsInfoRequest) ProtoMessage() {} func (*ImageFsInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{106} + return fileDescriptor_00212fb1f9d3bf1c, []int{109} } func (m *ImageFsInfoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7320,7 +7569,7 @@ type UInt64Value struct { func (m *UInt64Value) Reset() { *m = UInt64Value{} } func (*UInt64Value) ProtoMessage() {} func (*UInt64Value) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{107} + return fileDescriptor_00212fb1f9d3bf1c, []int{110} } func (m *UInt64Value) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7367,7 +7616,7 @@ type FilesystemIdentifier struct { func (m *FilesystemIdentifier) Reset() { *m = FilesystemIdentifier{} } func (*FilesystemIdentifier) ProtoMessage() {} func (*FilesystemIdentifier) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{108} + return fileDescriptor_00212fb1f9d3bf1c, []int{111} } func (m *FilesystemIdentifier) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7424,7 +7673,7 @@ type FilesystemUsage struct { func (m *FilesystemUsage) Reset() { *m = FilesystemUsage{} } func (*FilesystemUsage) ProtoMessage() {} func (*FilesystemUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{109} + return fileDescriptor_00212fb1f9d3bf1c, []int{112} } func (m *FilesystemUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7481,6 +7730,73 @@ func (m *FilesystemUsage) GetInodesUsed() *UInt64Value { return nil } +// WindowsFilesystemUsage provides the filesystem usage information specific to Windows. +type WindowsFilesystemUsage struct { + // Timestamp in nanoseconds at which the information were collected. Must be > 0. + Timestamp int64 `protobuf:"varint,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"` + // The unique identifier of the filesystem. + FsId *FilesystemIdentifier `protobuf:"bytes,2,opt,name=fs_id,json=fsId,proto3" json:"fs_id,omitempty"` + // UsedBytes represents the bytes used for images on the filesystem. + // This may differ from the total bytes used on the filesystem and may not + // equal CapacityBytes - AvailableBytes. + UsedBytes *UInt64Value `protobuf:"bytes,3,opt,name=used_bytes,json=usedBytes,proto3" json:"used_bytes,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *WindowsFilesystemUsage) Reset() { *m = WindowsFilesystemUsage{} } +func (*WindowsFilesystemUsage) ProtoMessage() {} +func (*WindowsFilesystemUsage) Descriptor() ([]byte, []int) { + return fileDescriptor_00212fb1f9d3bf1c, []int{113} +} +func (m *WindowsFilesystemUsage) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *WindowsFilesystemUsage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_WindowsFilesystemUsage.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *WindowsFilesystemUsage) XXX_Merge(src proto.Message) { + xxx_messageInfo_WindowsFilesystemUsage.Merge(m, src) +} +func (m *WindowsFilesystemUsage) XXX_Size() int { + return m.Size() +} +func (m *WindowsFilesystemUsage) XXX_DiscardUnknown() { + xxx_messageInfo_WindowsFilesystemUsage.DiscardUnknown(m) +} + +var xxx_messageInfo_WindowsFilesystemUsage proto.InternalMessageInfo + +func (m *WindowsFilesystemUsage) GetTimestamp() int64 { + if m != nil { + return m.Timestamp + } + return 0 +} + +func (m *WindowsFilesystemUsage) GetFsId() *FilesystemIdentifier { + if m != nil { + return m.FsId + } + return nil +} + +func (m *WindowsFilesystemUsage) GetUsedBytes() *UInt64Value { + if m != nil { + return m.UsedBytes + } + return nil +} + type ImageFsInfoResponse struct { // Information of image filesystem(s). ImageFilesystems []*FilesystemUsage `protobuf:"bytes,1,rep,name=image_filesystems,json=imageFilesystems,proto3" json:"image_filesystems,omitempty"` @@ -7491,7 +7807,7 @@ type ImageFsInfoResponse struct { func (m *ImageFsInfoResponse) Reset() { *m = ImageFsInfoResponse{} } func (*ImageFsInfoResponse) ProtoMessage() {} func (*ImageFsInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{110} + return fileDescriptor_00212fb1f9d3bf1c, []int{114} } func (m *ImageFsInfoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7537,7 +7853,7 @@ type ContainerStatsRequest struct { func (m *ContainerStatsRequest) Reset() { *m = ContainerStatsRequest{} } func (*ContainerStatsRequest) ProtoMessage() {} func (*ContainerStatsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{111} + return fileDescriptor_00212fb1f9d3bf1c, []int{115} } func (m *ContainerStatsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7583,7 +7899,7 @@ type ContainerStatsResponse struct { func (m *ContainerStatsResponse) Reset() { *m = ContainerStatsResponse{} } func (*ContainerStatsResponse) ProtoMessage() {} func (*ContainerStatsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{112} + return fileDescriptor_00212fb1f9d3bf1c, []int{116} } func (m *ContainerStatsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7629,7 +7945,7 @@ type ListContainerStatsRequest struct { func (m *ListContainerStatsRequest) Reset() { *m = ListContainerStatsRequest{} } func (*ListContainerStatsRequest) ProtoMessage() {} func (*ListContainerStatsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{113} + return fileDescriptor_00212fb1f9d3bf1c, []int{117} } func (m *ListContainerStatsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7683,7 +7999,7 @@ type ContainerStatsFilter struct { func (m *ContainerStatsFilter) Reset() { *m = ContainerStatsFilter{} } func (*ContainerStatsFilter) ProtoMessage() {} func (*ContainerStatsFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{114} + return fileDescriptor_00212fb1f9d3bf1c, []int{118} } func (m *ContainerStatsFilter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7743,7 +8059,7 @@ type ListContainerStatsResponse struct { func (m *ListContainerStatsResponse) Reset() { *m = ListContainerStatsResponse{} } func (*ListContainerStatsResponse) ProtoMessage() {} func (*ListContainerStatsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{115} + return fileDescriptor_00212fb1f9d3bf1c, []int{119} } func (m *ListContainerStatsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7799,7 +8115,7 @@ type ContainerAttributes struct { func (m *ContainerAttributes) Reset() { *m = ContainerAttributes{} } func (*ContainerAttributes) ProtoMessage() {} func (*ContainerAttributes) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{116} + return fileDescriptor_00212fb1f9d3bf1c, []int{120} } func (m *ContainerAttributes) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7873,7 +8189,7 @@ type ContainerStats struct { func (m *ContainerStats) Reset() { *m = ContainerStats{} } func (*ContainerStats) ProtoMessage() {} func (*ContainerStats) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{117} + return fileDescriptor_00212fb1f9d3bf1c, []int{121} } func (m *ContainerStats) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7930,6 +8246,80 @@ func (m *ContainerStats) GetWritableLayer() *FilesystemUsage { return nil } +// WindowsContainerStats provides the resource usage statistics for a container specific for Windows +type WindowsContainerStats struct { + // Information of the container. + Attributes *ContainerAttributes `protobuf:"bytes,1,opt,name=attributes,proto3" json:"attributes,omitempty"` + // CPU usage gathered from the container. + Cpu *WindowsCpuUsage `protobuf:"bytes,2,opt,name=cpu,proto3" json:"cpu,omitempty"` + // Memory usage gathered from the container. + Memory *WindowsMemoryUsage `protobuf:"bytes,3,opt,name=memory,proto3" json:"memory,omitempty"` + // Usage of the writable layer. + WritableLayer *WindowsFilesystemUsage `protobuf:"bytes,4,opt,name=writable_layer,json=writableLayer,proto3" json:"writable_layer,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *WindowsContainerStats) Reset() { *m = WindowsContainerStats{} } +func (*WindowsContainerStats) ProtoMessage() {} +func (*WindowsContainerStats) Descriptor() ([]byte, []int) { + return fileDescriptor_00212fb1f9d3bf1c, []int{122} +} +func (m *WindowsContainerStats) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *WindowsContainerStats) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_WindowsContainerStats.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *WindowsContainerStats) XXX_Merge(src proto.Message) { + xxx_messageInfo_WindowsContainerStats.Merge(m, src) +} +func (m *WindowsContainerStats) XXX_Size() int { + return m.Size() +} +func (m *WindowsContainerStats) XXX_DiscardUnknown() { + xxx_messageInfo_WindowsContainerStats.DiscardUnknown(m) +} + +var xxx_messageInfo_WindowsContainerStats proto.InternalMessageInfo + +func (m *WindowsContainerStats) GetAttributes() *ContainerAttributes { + if m != nil { + return m.Attributes + } + return nil +} + +func (m *WindowsContainerStats) GetCpu() *WindowsCpuUsage { + if m != nil { + return m.Cpu + } + return nil +} + +func (m *WindowsContainerStats) GetMemory() *WindowsMemoryUsage { + if m != nil { + return m.Memory + } + return nil +} + +func (m *WindowsContainerStats) GetWritableLayer() *WindowsFilesystemUsage { + if m != nil { + return m.WritableLayer + } + return nil +} + // CpuUsage provides the CPU usage information. type CpuUsage struct { // Timestamp in nanoseconds at which the information were collected. Must be > 0. @@ -7946,7 +8336,7 @@ type CpuUsage struct { func (m *CpuUsage) Reset() { *m = CpuUsage{} } func (*CpuUsage) ProtoMessage() {} func (*CpuUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{118} + return fileDescriptor_00212fb1f9d3bf1c, []int{123} } func (m *CpuUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7996,6 +8386,72 @@ func (m *CpuUsage) GetUsageNanoCores() *UInt64Value { return nil } +// WindowsCpuUsage provides the CPU usage information specific to Windows +type WindowsCpuUsage struct { + // Timestamp in nanoseconds at which the information were collected. Must be > 0. + Timestamp int64 `protobuf:"varint,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"` + // Cumulative CPU usage (sum across all cores) since object creation. + UsageCoreNanoSeconds *UInt64Value `protobuf:"bytes,2,opt,name=usage_core_nano_seconds,json=usageCoreNanoSeconds,proto3" json:"usage_core_nano_seconds,omitempty"` + // Total CPU usage (sum of all cores) averaged over the sample window. + // The "core" unit can be interpreted as CPU core-nanoseconds per second. + UsageNanoCores *UInt64Value `protobuf:"bytes,3,opt,name=usage_nano_cores,json=usageNanoCores,proto3" json:"usage_nano_cores,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *WindowsCpuUsage) Reset() { *m = WindowsCpuUsage{} } +func (*WindowsCpuUsage) ProtoMessage() {} +func (*WindowsCpuUsage) Descriptor() ([]byte, []int) { + return fileDescriptor_00212fb1f9d3bf1c, []int{124} +} +func (m *WindowsCpuUsage) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *WindowsCpuUsage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_WindowsCpuUsage.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *WindowsCpuUsage) XXX_Merge(src proto.Message) { + xxx_messageInfo_WindowsCpuUsage.Merge(m, src) +} +func (m *WindowsCpuUsage) XXX_Size() int { + return m.Size() +} +func (m *WindowsCpuUsage) XXX_DiscardUnknown() { + xxx_messageInfo_WindowsCpuUsage.DiscardUnknown(m) +} + +var xxx_messageInfo_WindowsCpuUsage proto.InternalMessageInfo + +func (m *WindowsCpuUsage) GetTimestamp() int64 { + if m != nil { + return m.Timestamp + } + return 0 +} + +func (m *WindowsCpuUsage) GetUsageCoreNanoSeconds() *UInt64Value { + if m != nil { + return m.UsageCoreNanoSeconds + } + return nil +} + +func (m *WindowsCpuUsage) GetUsageNanoCores() *UInt64Value { + if m != nil { + return m.UsageNanoCores + } + return nil +} + // MemoryUsage provides the memory usage information. type MemoryUsage struct { // Timestamp in nanoseconds at which the information were collected. Must be > 0. @@ -8019,7 +8475,7 @@ type MemoryUsage struct { func (m *MemoryUsage) Reset() { *m = MemoryUsage{} } func (*MemoryUsage) ProtoMessage() {} func (*MemoryUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{119} + return fileDescriptor_00212fb1f9d3bf1c, []int{125} } func (m *MemoryUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8097,6 +8553,80 @@ func (m *MemoryUsage) GetMajorPageFaults() *UInt64Value { return nil } +// WindowsMemoryUsage provides the memory usage information specific to Windows +type WindowsMemoryUsage struct { + // Timestamp in nanoseconds at which the information were collected. Must be > 0. + Timestamp int64 `protobuf:"varint,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"` + // The amount of working set memory in bytes. + WorkingSetBytes *UInt64Value `protobuf:"bytes,2,opt,name=working_set_bytes,json=workingSetBytes,proto3" json:"working_set_bytes,omitempty"` + // Available memory for use. This is defined as the memory limit - workingSetBytes. + AvailableBytes *UInt64Value `protobuf:"bytes,3,opt,name=available_bytes,json=availableBytes,proto3" json:"available_bytes,omitempty"` + // Cumulative number of page faults. + PageFaults *UInt64Value `protobuf:"bytes,4,opt,name=page_faults,json=pageFaults,proto3" json:"page_faults,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *WindowsMemoryUsage) Reset() { *m = WindowsMemoryUsage{} } +func (*WindowsMemoryUsage) ProtoMessage() {} +func (*WindowsMemoryUsage) Descriptor() ([]byte, []int) { + return fileDescriptor_00212fb1f9d3bf1c, []int{126} +} +func (m *WindowsMemoryUsage) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *WindowsMemoryUsage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_WindowsMemoryUsage.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *WindowsMemoryUsage) XXX_Merge(src proto.Message) { + xxx_messageInfo_WindowsMemoryUsage.Merge(m, src) +} +func (m *WindowsMemoryUsage) XXX_Size() int { + return m.Size() +} +func (m *WindowsMemoryUsage) XXX_DiscardUnknown() { + xxx_messageInfo_WindowsMemoryUsage.DiscardUnknown(m) +} + +var xxx_messageInfo_WindowsMemoryUsage proto.InternalMessageInfo + +func (m *WindowsMemoryUsage) GetTimestamp() int64 { + if m != nil { + return m.Timestamp + } + return 0 +} + +func (m *WindowsMemoryUsage) GetWorkingSetBytes() *UInt64Value { + if m != nil { + return m.WorkingSetBytes + } + return nil +} + +func (m *WindowsMemoryUsage) GetAvailableBytes() *UInt64Value { + if m != nil { + return m.AvailableBytes + } + return nil +} + +func (m *WindowsMemoryUsage) GetPageFaults() *UInt64Value { + if m != nil { + return m.PageFaults + } + return nil +} + type ReopenContainerLogRequest struct { // ID of the container for which to reopen the log. ContainerId string `protobuf:"bytes,1,opt,name=container_id,json=containerId,proto3" json:"container_id,omitempty"` @@ -8107,7 +8637,7 @@ type ReopenContainerLogRequest struct { func (m *ReopenContainerLogRequest) Reset() { *m = ReopenContainerLogRequest{} } func (*ReopenContainerLogRequest) ProtoMessage() {} func (*ReopenContainerLogRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{120} + return fileDescriptor_00212fb1f9d3bf1c, []int{127} } func (m *ReopenContainerLogRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8151,7 +8681,7 @@ type ReopenContainerLogResponse struct { func (m *ReopenContainerLogResponse) Reset() { *m = ReopenContainerLogResponse{} } func (*ReopenContainerLogResponse) ProtoMessage() {} func (*ReopenContainerLogResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{121} + return fileDescriptor_00212fb1f9d3bf1c, []int{128} } func (m *ReopenContainerLogResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8196,7 +8726,7 @@ type CheckpointContainerRequest struct { func (m *CheckpointContainerRequest) Reset() { *m = CheckpointContainerRequest{} } func (*CheckpointContainerRequest) ProtoMessage() {} func (*CheckpointContainerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{122} + return fileDescriptor_00212fb1f9d3bf1c, []int{129} } func (m *CheckpointContainerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8254,7 +8784,7 @@ type CheckpointContainerResponse struct { func (m *CheckpointContainerResponse) Reset() { *m = CheckpointContainerResponse{} } func (*CheckpointContainerResponse) ProtoMessage() {} func (*CheckpointContainerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{123} + return fileDescriptor_00212fb1f9d3bf1c, []int{130} } func (m *CheckpointContainerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8291,7 +8821,7 @@ type GetEventsRequest struct { func (m *GetEventsRequest) Reset() { *m = GetEventsRequest{} } func (*GetEventsRequest) ProtoMessage() {} func (*GetEventsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{124} + return fileDescriptor_00212fb1f9d3bf1c, []int{131} } func (m *GetEventsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8336,7 +8866,7 @@ type ContainerEventResponse struct { func (m *ContainerEventResponse) Reset() { *m = ContainerEventResponse{} } func (*ContainerEventResponse) ProtoMessage() {} func (*ContainerEventResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{125} + return fileDescriptor_00212fb1f9d3bf1c, []int{132} } func (m *ContainerEventResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8455,8 +8985,11 @@ func init() { proto.RegisterType((*LinuxPodSandboxStats)(nil), "runtime.v1.LinuxPodSandboxStats") proto.RegisterType((*WindowsPodSandboxStats)(nil), "runtime.v1.WindowsPodSandboxStats") proto.RegisterType((*NetworkUsage)(nil), "runtime.v1.NetworkUsage") + proto.RegisterType((*WindowsNetworkUsage)(nil), "runtime.v1.WindowsNetworkUsage") proto.RegisterType((*NetworkInterfaceUsage)(nil), "runtime.v1.NetworkInterfaceUsage") + proto.RegisterType((*WindowsNetworkInterfaceUsage)(nil), "runtime.v1.WindowsNetworkInterfaceUsage") proto.RegisterType((*ProcessUsage)(nil), "runtime.v1.ProcessUsage") + proto.RegisterType((*WindowsProcessUsage)(nil), "runtime.v1.WindowsProcessUsage") proto.RegisterType((*ImageSpec)(nil), "runtime.v1.ImageSpec") proto.RegisterMapType((map[string]string)(nil), "runtime.v1.ImageSpec.AnnotationsEntry") proto.RegisterType((*KeyValue)(nil), "runtime.v1.KeyValue") @@ -8536,6 +9069,7 @@ func init() { proto.RegisterType((*UInt64Value)(nil), "runtime.v1.UInt64Value") proto.RegisterType((*FilesystemIdentifier)(nil), "runtime.v1.FilesystemIdentifier") proto.RegisterType((*FilesystemUsage)(nil), "runtime.v1.FilesystemUsage") + proto.RegisterType((*WindowsFilesystemUsage)(nil), "runtime.v1.WindowsFilesystemUsage") proto.RegisterType((*ImageFsInfoResponse)(nil), "runtime.v1.ImageFsInfoResponse") proto.RegisterType((*ContainerStatsRequest)(nil), "runtime.v1.ContainerStatsRequest") proto.RegisterType((*ContainerStatsResponse)(nil), "runtime.v1.ContainerStatsResponse") @@ -8547,8 +9081,11 @@ func init() { proto.RegisterMapType((map[string]string)(nil), "runtime.v1.ContainerAttributes.AnnotationsEntry") proto.RegisterMapType((map[string]string)(nil), "runtime.v1.ContainerAttributes.LabelsEntry") proto.RegisterType((*ContainerStats)(nil), "runtime.v1.ContainerStats") + proto.RegisterType((*WindowsContainerStats)(nil), "runtime.v1.WindowsContainerStats") proto.RegisterType((*CpuUsage)(nil), "runtime.v1.CpuUsage") + proto.RegisterType((*WindowsCpuUsage)(nil), "runtime.v1.WindowsCpuUsage") proto.RegisterType((*MemoryUsage)(nil), "runtime.v1.MemoryUsage") + proto.RegisterType((*WindowsMemoryUsage)(nil), "runtime.v1.WindowsMemoryUsage") proto.RegisterType((*ReopenContainerLogRequest)(nil), "runtime.v1.ReopenContainerLogRequest") proto.RegisterType((*ReopenContainerLogResponse)(nil), "runtime.v1.ReopenContainerLogResponse") proto.RegisterType((*CheckpointContainerRequest)(nil), "runtime.v1.CheckpointContainerRequest") @@ -8560,382 +9097,395 @@ func init() { func init() { proto.RegisterFile("api.proto", fileDescriptor_00212fb1f9d3bf1c) } var fileDescriptor_00212fb1f9d3bf1c = []byte{ - // 5988 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x7c, 0x4d, 0x70, 0x1b, 0xc9, - 0x75, 0x30, 0x07, 0x00, 0x49, 0xe0, 0x81, 0x00, 0xc1, 0x16, 0x45, 0x42, 0xa0, 0xa4, 0x95, 0x46, - 0xde, 0x1f, 0x49, 0xbb, 0x94, 0x56, 0xab, 0x5d, 0x4b, 0xb2, 0x76, 0x57, 0x10, 0xc9, 0xd5, 0x72, - 0x2d, 0x91, 0xf0, 0x80, 0x94, 0xff, 0xbe, 0xf2, 0x7c, 0x23, 0x4c, 0x13, 0x9c, 0x15, 0x30, 0x33, - 0x9e, 0x19, 0x48, 0xa2, 0x4f, 0xdf, 0xf1, 0x4b, 0x4e, 0xae, 0x72, 0x1c, 0x57, 0xb9, 0x52, 0x49, - 0xe5, 0x94, 0x43, 0x0e, 0xce, 0x25, 0xa9, 0x54, 0xa5, 0x92, 0x5c, 0x52, 0x2e, 0x27, 0x55, 0xae, - 0xf2, 0x25, 0x55, 0x3e, 0xa4, 0x2a, 0xf6, 0xe6, 0x96, 0x43, 0x4e, 0x3e, 0xe4, 0x14, 0xa7, 0xfa, - 0x6f, 0x66, 0x7a, 0x66, 0x30, 0x00, 0xb9, 0x6b, 0xef, 0x9e, 0x80, 0x79, 0xfd, 0xde, 0xeb, 0xd7, - 0xaf, 0x5f, 0xbf, 0x7e, 0xdd, 0xef, 0xcd, 0x40, 0xc5, 0x70, 0xad, 0x75, 0xd7, 0x73, 0x02, 0x07, - 0x81, 0x37, 0xb2, 0x03, 0x6b, 0x88, 0xd7, 0x9f, 0xbd, 0xd9, 0x7a, 0xa3, 0x6f, 0x05, 0x87, 0xa3, - 0x27, 0xeb, 0x3d, 0x67, 0x78, 0xad, 0xef, 0xf4, 0x9d, 0x6b, 0x14, 0xe5, 0xc9, 0xe8, 0x80, 0x3e, - 0xd1, 0x07, 0xfa, 0x8f, 0x91, 0xaa, 0x57, 0xa0, 0xfe, 0x18, 0x7b, 0xbe, 0xe5, 0xd8, 0x1a, 0xfe, - 0xee, 0x08, 0xfb, 0x01, 0x6a, 0xc2, 0xfc, 0x33, 0x06, 0x69, 0x2a, 0x17, 0x94, 0xd7, 0x2a, 0x9a, - 0x78, 0x54, 0xff, 0x42, 0x81, 0xc5, 0x10, 0xd9, 0x77, 0x1d, 0xdb, 0xc7, 0xe3, 0xb1, 0xd1, 0x45, - 0x58, 0xe0, 0x62, 0xe9, 0xb6, 0x31, 0xc4, 0xcd, 0x02, 0x6d, 0xae, 0x72, 0xd8, 0x8e, 0x31, 0xc4, - 0xe8, 0x55, 0x58, 0x14, 0x28, 0x82, 0x49, 0x91, 0x62, 0xd5, 0x39, 0x98, 0xf7, 0x86, 0xd6, 0xe1, - 0x94, 0x40, 0x34, 0x5c, 0x2b, 0x44, 0x2e, 0x51, 0xe4, 0x25, 0xde, 0xd4, 0x76, 0x2d, 0x8e, 0xaf, - 0x7e, 0x1b, 0x2a, 0x9b, 0x3b, 0xdd, 0x0d, 0xc7, 0x3e, 0xb0, 0xfa, 0x44, 0x44, 0x1f, 0x7b, 0x84, - 0xa6, 0xa9, 0x5c, 0x28, 0x12, 0x11, 0xf9, 0x23, 0x6a, 0x41, 0xd9, 0xc7, 0x86, 0xd7, 0x3b, 0xc4, - 0x7e, 0xb3, 0x40, 0x9b, 0xc2, 0x67, 0x42, 0xe5, 0xb8, 0x81, 0xe5, 0xd8, 0x7e, 0xb3, 0xc8, 0xa8, - 0xf8, 0xa3, 0xfa, 0x27, 0x0a, 0x54, 0x3b, 0x8e, 0x17, 0x3c, 0x32, 0x5c, 0xd7, 0xb2, 0xfb, 0xe8, - 0x3a, 0x94, 0xa9, 0x2e, 0x7b, 0xce, 0x80, 0xea, 0xa0, 0x7e, 0x63, 0x79, 0x3d, 0x9a, 0x90, 0xf5, - 0x0e, 0x6f, 0xd3, 0x42, 0x2c, 0xf4, 0x32, 0xd4, 0x7b, 0x8e, 0x1d, 0x18, 0x96, 0x8d, 0x3d, 0xdd, - 0x75, 0xbc, 0x80, 0x2a, 0x67, 0x56, 0xab, 0x85, 0x50, 0xc2, 0x1f, 0xad, 0x41, 0xe5, 0xd0, 0xf1, - 0x03, 0x86, 0x51, 0xa4, 0x18, 0x65, 0x02, 0xa0, 0x8d, 0xab, 0x30, 0x4f, 0x1b, 0x2d, 0x97, 0xab, - 0x61, 0x8e, 0x3c, 0x6e, 0xbb, 0xea, 0x2f, 0x14, 0x98, 0x7d, 0xe4, 0x8c, 0xec, 0x20, 0xd1, 0x8d, - 0x11, 0x1c, 0xf2, 0x29, 0x8a, 0x75, 0x63, 0x04, 0x87, 0x51, 0x37, 0x04, 0x83, 0xcd, 0x12, 0xeb, - 0x86, 0x34, 0xb6, 0xa0, 0xec, 0x61, 0xc3, 0x74, 0xec, 0xc1, 0x11, 0x15, 0xa1, 0xac, 0x85, 0xcf, - 0x64, 0xfa, 0x7c, 0x3c, 0xb0, 0xec, 0xd1, 0x0b, 0xdd, 0xc3, 0x03, 0xe3, 0x09, 0x1e, 0x50, 0x51, - 0xca, 0x5a, 0x9d, 0x83, 0x35, 0x06, 0x45, 0xef, 0x41, 0xd5, 0xf5, 0x1c, 0xd7, 0xe8, 0x1b, 0x44, - 0x83, 0xcd, 0x59, 0xaa, 0xa4, 0xb3, 0x71, 0x25, 0x51, 0x81, 0x3b, 0x11, 0x8e, 0x16, 0x27, 0x50, - 0x75, 0xa8, 0x6c, 0x6f, 0x0a, 0x75, 0x87, 0x03, 0x37, 0xe9, 0x70, 0x6a, 0x7c, 0xe0, 0x26, 0x31, - 0xb8, 0x68, 0xb8, 0x96, 0x49, 0x87, 0x52, 0xd3, 0xaa, 0x21, 0x6c, 0xdb, 0x44, 0x2b, 0x30, 0x37, - 0xc0, 0x76, 0x3f, 0x38, 0xa4, 0x63, 0xa9, 0x69, 0xfc, 0x49, 0xfd, 0x23, 0x05, 0x6a, 0xfb, 0x3e, - 0xf6, 0x88, 0x55, 0xfa, 0xae, 0xd1, 0xc3, 0xe8, 0x0d, 0x28, 0x0d, 0x1d, 0x13, 0xf3, 0x09, 0x3d, - 0x13, 0x97, 0x35, 0x44, 0x7a, 0xe4, 0x98, 0x58, 0xa3, 0x68, 0xe8, 0x32, 0x94, 0x46, 0x96, 0xc9, - 0xac, 0xa8, 0x7a, 0xe3, 0x74, 0x1c, 0x3d, 0x94, 0x5c, 0xa3, 0x28, 0x04, 0xb5, 0x4f, 0x50, 0x8b, - 0xb9, 0xa8, 0x04, 0x45, 0xfd, 0xad, 0x02, 0x8b, 0x61, 0x6f, 0xbb, 0xd4, 0xfc, 0xd0, 0x5b, 0x30, - 0x6f, 0xe3, 0xe0, 0xb9, 0xe3, 0x3d, 0x9d, 0x2c, 0x9b, 0xc0, 0x44, 0x57, 0xa1, 0xe8, 0x72, 0x8d, - 0xe4, 0x12, 0x10, 0x2c, 0x82, 0x6c, 0xb9, 0x3d, 0xaa, 0xa1, 0x7c, 0x64, 0xcb, 0xed, 0x11, 0xe3, - 0x09, 0x0c, 0xaf, 0x8f, 0xe9, 0x7c, 0x30, 0x43, 0x2c, 0x33, 0xc0, 0xb6, 0x89, 0xee, 0x41, 0x7d, - 0xe4, 0x63, 0xcf, 0xf6, 0x75, 0xb1, 0x94, 0xc8, 0xd4, 0x57, 0x65, 0xa6, 0x92, 0xde, 0xb5, 0x1a, - 0x23, 0xd8, 0xe5, 0x6b, 0x4d, 0x05, 0xd8, 0xb6, 0x83, 0x77, 0x6e, 0x3e, 0x36, 0x06, 0x23, 0x8c, - 0x96, 0x61, 0xf6, 0x19, 0xf9, 0x43, 0x47, 0x5e, 0xd4, 0xd8, 0x83, 0xfa, 0xf7, 0x25, 0x58, 0x7b, - 0x48, 0xcc, 0xad, 0x6b, 0xd8, 0xe6, 0x13, 0xe7, 0x45, 0x17, 0xf7, 0x46, 0x9e, 0x15, 0x1c, 0x6d, - 0x38, 0x76, 0x80, 0x5f, 0x04, 0xe8, 0x43, 0x58, 0xb2, 0x05, 0xff, 0x50, 0x10, 0x85, 0x0a, 0xb2, - 0x96, 0x39, 0x3a, 0xd6, 0xb9, 0xd6, 0xb0, 0x65, 0x80, 0x8f, 0xee, 0x47, 0x06, 0x2f, 0xf8, 0x14, - 0xd2, 0x03, 0xea, 0x6e, 0x51, 0x69, 0x38, 0x17, 0xb1, 0x16, 0x04, 0x8f, 0x77, 0x80, 0xb8, 0x40, - 0xdd, 0xf0, 0x75, 0x32, 0x52, 0xaa, 0xe5, 0xea, 0x8d, 0x15, 0xc9, 0x0a, 0xc2, 0x01, 0x6b, 0x15, - 0x6f, 0x64, 0xb7, 0x7d, 0xa2, 0x21, 0x74, 0x8b, 0xba, 0x53, 0x42, 0xd7, 0xf7, 0x9c, 0x91, 0xdb, - 0x2c, 0xe7, 0x12, 0x02, 0x25, 0x7c, 0x40, 0x30, 0xa9, 0x97, 0xe5, 0x4b, 0x56, 0xf7, 0x1c, 0x27, - 0x38, 0xf0, 0xc5, 0x32, 0x15, 0x60, 0x8d, 0x42, 0xd1, 0x35, 0x38, 0xe5, 0x8f, 0x5c, 0x77, 0x80, - 0x87, 0xd8, 0x0e, 0x8c, 0x01, 0xeb, 0x88, 0xcc, 0x59, 0xf1, 0xb5, 0xa2, 0x86, 0xe2, 0x4d, 0x94, - 0xb1, 0x8f, 0xce, 0x03, 0xb8, 0x9e, 0xf5, 0xcc, 0x1a, 0xe0, 0x3e, 0x36, 0x9b, 0x73, 0x94, 0x69, - 0x0c, 0x82, 0xde, 0x26, 0x9e, 0xb7, 0xd7, 0x73, 0x86, 0x6e, 0xb3, 0x92, 0xd6, 0xb7, 0x98, 0xa7, - 0x8e, 0xe7, 0x1c, 0x58, 0x03, 0xac, 0x09, 0x5c, 0xf4, 0x65, 0x28, 0x1b, 0xae, 0x6b, 0x78, 0x43, - 0xc7, 0x6b, 0xc2, 0x64, 0xba, 0x10, 0x19, 0xdd, 0x84, 0x65, 0xce, 0x43, 0x77, 0x59, 0x23, 0x73, - 0x6a, 0xf3, 0xc4, 0x2e, 0xef, 0x17, 0x9a, 0x8a, 0x86, 0x78, 0x3b, 0xa7, 0x25, 0x2e, 0x4e, 0xfd, - 0x27, 0x05, 0x16, 0x13, 0x3c, 0xd1, 0x47, 0xb0, 0x20, 0x38, 0x04, 0x47, 0xae, 0x70, 0x03, 0xaf, - 0xe6, 0x88, 0xb1, 0xce, 0x7f, 0xf7, 0x8e, 0x5c, 0x4c, 0xbd, 0x97, 0x78, 0x40, 0x97, 0xa0, 0x36, - 0x70, 0x7a, 0xc6, 0x80, 0x7a, 0x2d, 0x0f, 0x1f, 0x70, 0x1f, 0xbb, 0x10, 0x02, 0x35, 0x7c, 0xa0, - 0xde, 0x83, 0x6a, 0x8c, 0x01, 0x42, 0x50, 0xd7, 0x58, 0x57, 0x9b, 0xf8, 0xc0, 0x18, 0x0d, 0x82, - 0xc6, 0x0c, 0xaa, 0x03, 0xec, 0xdb, 0x3d, 0xb2, 0xa7, 0xd9, 0xd8, 0x6c, 0x28, 0xa8, 0x06, 0x95, - 0x87, 0x82, 0x45, 0xa3, 0xa0, 0xfe, 0xb8, 0x08, 0xa7, 0xa9, 0xe1, 0x75, 0x1c, 0x93, 0xaf, 0x04, - 0xbe, 0x01, 0x5e, 0x82, 0x5a, 0x8f, 0xce, 0xa5, 0xee, 0x1a, 0x1e, 0xb6, 0x03, 0xbe, 0x0d, 0x2c, - 0x30, 0x60, 0x87, 0xc2, 0x90, 0x06, 0x0d, 0x9f, 0x8f, 0x48, 0xef, 0xb1, 0x95, 0xc3, 0x8d, 0x5b, - 0x1a, 0x75, 0xce, 0x42, 0xd3, 0x16, 0xfd, 0xd4, 0xca, 0x9b, 0xf7, 0x8f, 0xfc, 0x5e, 0x30, 0x10, - 0xde, 0x6e, 0x3d, 0xc5, 0x2a, 0x29, 0xec, 0x7a, 0x97, 0x11, 0x6c, 0xd9, 0x81, 0x77, 0xa4, 0x09, - 0x72, 0xf4, 0x3e, 0x94, 0x9d, 0x67, 0xd8, 0x3b, 0xc4, 0x06, 0xf3, 0x32, 0xd5, 0x1b, 0x97, 0x52, - 0xac, 0x36, 0x84, 0xa3, 0xd7, 0xb0, 0xef, 0x8c, 0xbc, 0x1e, 0xf6, 0xb5, 0x90, 0x08, 0xb5, 0xa1, - 0xe2, 0x09, 0x30, 0xf7, 0x42, 0x53, 0x71, 0x88, 0xa8, 0x5a, 0x77, 0x60, 0x21, 0x2e, 0x1c, 0x6a, - 0x40, 0xf1, 0x29, 0x3e, 0xe2, 0xca, 0x24, 0x7f, 0x23, 0xff, 0xc4, 0x66, 0x98, 0x3d, 0xdc, 0x29, - 0xdc, 0x52, 0x54, 0x0f, 0x50, 0x34, 0xd2, 0x47, 0x38, 0x30, 0x4c, 0x23, 0x30, 0x10, 0x82, 0x12, - 0x0d, 0x8d, 0x18, 0x0b, 0xfa, 0x9f, 0x70, 0x1d, 0x71, 0x57, 0x5d, 0xd1, 0xc8, 0x5f, 0x74, 0x16, - 0x2a, 0xa1, 0x27, 0xe2, 0xf1, 0x51, 0x04, 0x20, 0x71, 0x8a, 0x11, 0x04, 0x78, 0xe8, 0x06, 0x54, - 0x31, 0x35, 0x4d, 0x3c, 0xaa, 0x7f, 0x30, 0x0b, 0x8d, 0x94, 0x2d, 0xdc, 0x81, 0xf2, 0x90, 0x77, - 0xcf, 0x7d, 0xe0, 0x79, 0x29, 0x58, 0x49, 0x09, 0xa9, 0x85, 0xf8, 0x24, 0x16, 0x20, 0xb6, 0x16, - 0x8b, 0xe6, 0xc2, 0x67, 0x66, 0xe4, 0x7d, 0xdd, 0xb4, 0x3c, 0xdc, 0x0b, 0x1c, 0xef, 0x88, 0x0b, - 0xba, 0x30, 0x70, 0xfa, 0x9b, 0x02, 0x86, 0x6e, 0x02, 0x98, 0xb6, 0xaf, 0x53, 0x1b, 0xee, 0xf3, - 0x79, 0x94, 0x36, 0xc0, 0x30, 0x68, 0xd3, 0x2a, 0xa6, 0xed, 0x73, 0x91, 0xef, 0x42, 0x8d, 0x44, - 0x40, 0xfa, 0x90, 0xed, 0x8d, 0xcc, 0x21, 0x55, 0x6f, 0xac, 0xca, 0x72, 0x87, 0xf1, 0x98, 0xb6, - 0xe0, 0x46, 0x0f, 0x3e, 0xba, 0x07, 0x73, 0x34, 0x08, 0xf1, 0x9b, 0x73, 0x94, 0xec, 0xb5, 0xec, - 0xe1, 0x72, 0xeb, 0x7b, 0x48, 0x51, 0x99, 0xf1, 0x71, 0x3a, 0xb4, 0x0b, 0x55, 0xc3, 0xb6, 0x9d, - 0xc0, 0x60, 0x1e, 0x7f, 0x9e, 0xb2, 0x79, 0x23, 0x97, 0x4d, 0x3b, 0xc2, 0x67, 0xbc, 0xe2, 0x1c, - 0xd0, 0x97, 0x61, 0x96, 0x6e, 0x09, 0xdc, 0x87, 0x5f, 0x9c, 0xb8, 0x28, 0x34, 0x86, 0x8f, 0xde, - 0x85, 0xf9, 0xe7, 0x96, 0x6d, 0x3a, 0xcf, 0x7d, 0xee, 0x4f, 0x25, 0x13, 0xfe, 0x3a, 0x6b, 0x4a, - 0x11, 0x0b, 0x9a, 0xd6, 0x6d, 0xa8, 0xc6, 0xc6, 0x77, 0x1c, 0xfb, 0x6d, 0xbd, 0x07, 0x8d, 0xe4, - 0x98, 0x8e, 0x65, 0xff, 0x23, 0x58, 0xd6, 0x46, 0x76, 0x24, 0x9a, 0x38, 0x6c, 0xdc, 0x84, 0x39, - 0x6e, 0x0d, 0xcc, 0x18, 0xcf, 0xe6, 0xa9, 0x55, 0xe3, 0xb8, 0xf1, 0x73, 0xc3, 0xa1, 0x61, 0x9b, - 0x03, 0xec, 0xf1, 0x1e, 0xc5, 0xb9, 0xe1, 0x43, 0x06, 0x55, 0xdf, 0x85, 0xd3, 0x89, 0x6e, 0xf9, - 0xb1, 0xe5, 0x4b, 0x50, 0x77, 0x1d, 0x53, 0xf7, 0x19, 0x58, 0xc4, 0x92, 0x15, 0x62, 0x3b, 0x02, - 0x77, 0xdb, 0x24, 0xe4, 0xdd, 0xc0, 0x71, 0xd3, 0x62, 0x4f, 0x47, 0xde, 0x84, 0x95, 0x24, 0x39, - 0xeb, 0x5e, 0x7d, 0x1f, 0x56, 0x35, 0x3c, 0x74, 0x9e, 0xe1, 0x93, 0xb2, 0x6e, 0x41, 0x33, 0xcd, - 0x80, 0x33, 0xff, 0x26, 0xac, 0x46, 0xd0, 0x6e, 0x60, 0x04, 0x23, 0xff, 0x58, 0xcc, 0xf9, 0x99, - 0xee, 0x89, 0xe3, 0xb3, 0x89, 0x2c, 0x6b, 0xe2, 0x51, 0x5d, 0x85, 0xd9, 0x8e, 0x63, 0x6e, 0x77, - 0x50, 0x1d, 0x0a, 0x96, 0xcb, 0x89, 0x0b, 0x96, 0xab, 0xf6, 0xe2, 0x7d, 0xee, 0xb0, 0xa8, 0x93, - 0x75, 0x9d, 0x44, 0x45, 0xb7, 0xa0, 0x6e, 0x98, 0xa6, 0x45, 0x0c, 0xc9, 0x18, 0xe8, 0x96, 0x2b, - 0x82, 0xe6, 0xa5, 0xc4, 0xd4, 0x6f, 0x77, 0xb4, 0x5a, 0x84, 0xb8, 0xed, 0xfa, 0xea, 0x7d, 0xa8, - 0x44, 0x01, 0xfa, 0xdb, 0xd1, 0xf9, 0xac, 0x30, 0x39, 0x96, 0x0b, 0x0f, 0x6f, 0x3b, 0xa9, 0x4d, - 0x92, 0x8b, 0xf9, 0x36, 0x40, 0xe8, 0x54, 0x45, 0x78, 0x78, 0x3a, 0x93, 0xa5, 0x16, 0x43, 0x54, - 0xff, 0xbd, 0x14, 0x77, 0xb2, 0xb1, 0x21, 0x9b, 0xe1, 0x90, 0x4d, 0xc9, 0xe9, 0x16, 0x8e, 0xe9, - 0x74, 0xdf, 0x84, 0x59, 0x3f, 0x30, 0x02, 0xcc, 0xe3, 0xf1, 0xb5, 0x6c, 0x42, 0xd2, 0x31, 0xd6, - 0x18, 0x26, 0x3a, 0x07, 0xd0, 0xf3, 0xb0, 0x11, 0x60, 0x53, 0x37, 0xd8, 0xae, 0x50, 0xd4, 0x2a, - 0x1c, 0xd2, 0x0e, 0x88, 0x17, 0x11, 0x27, 0x88, 0x8c, 0x8d, 0x70, 0xcc, 0x34, 0x46, 0x67, 0x89, - 0xd0, 0x7b, 0xcd, 0x4d, 0xf4, 0x5e, 0x9c, 0x94, 0x7b, 0xaf, 0xc8, 0x13, 0xcf, 0xe7, 0x79, 0x62, - 0x46, 0x34, 0x8d, 0x27, 0x2e, 0xe7, 0x79, 0x62, 0xce, 0x26, 0xdf, 0x13, 0x67, 0x38, 0x92, 0x4a, - 0x96, 0x23, 0xf9, 0x3c, 0x5d, 0xe7, 0xcf, 0x15, 0x68, 0xa6, 0xd7, 0x33, 0xf7, 0x63, 0x37, 0x61, - 0xce, 0xa7, 0x90, 0x7c, 0xff, 0xc9, 0xa9, 0x38, 0x2e, 0xba, 0x0f, 0x25, 0xcb, 0x3e, 0x70, 0xf8, - 0xc2, 0x5b, 0xcf, 0xa5, 0xe1, 0x3d, 0xad, 0x6f, 0xdb, 0x07, 0x0e, 0xd3, 0x20, 0xa5, 0x6d, 0x7d, - 0x19, 0x2a, 0x21, 0xe8, 0x58, 0xe3, 0xd9, 0x86, 0xe5, 0x84, 0xdd, 0xb2, 0xc3, 0x5d, 0x68, 0xe8, - 0xca, 0xb4, 0x86, 0xae, 0xfe, 0x46, 0x89, 0x2f, 0xbe, 0x0f, 0xac, 0x41, 0x80, 0xbd, 0xd4, 0xe2, - 0x7b, 0x47, 0xf0, 0x65, 0x2b, 0xef, 0x42, 0x0e, 0x5f, 0x76, 0x76, 0xe2, 0xab, 0xe8, 0x31, 0xd4, - 0xa9, 0xd9, 0xe9, 0x3e, 0x1e, 0xd0, 0xf8, 0x85, 0xc7, 0xb0, 0xd7, 0xb2, 0x19, 0xb0, 0xde, 0x99, - 0xd9, 0x76, 0x39, 0x05, 0xd3, 0x57, 0x6d, 0x10, 0x87, 0xb5, 0xee, 0x01, 0x4a, 0x23, 0x1d, 0x4b, - 0x83, 0x8f, 0x88, 0x0f, 0xf3, 0x83, 0xcc, 0xdd, 0xf4, 0x80, 0x8a, 0x91, 0x6f, 0x0d, 0x4c, 0x54, - 0x8d, 0xe3, 0xaa, 0xff, 0x5a, 0x04, 0x88, 0x1a, 0xbf, 0xe0, 0xce, 0xeb, 0x4e, 0xe8, 0x44, 0x58, - 0x14, 0xa8, 0x66, 0xb3, 0xcc, 0x74, 0x1f, 0xdb, 0xb2, 0xfb, 0x60, 0xf1, 0xe0, 0xab, 0x63, 0x18, - 0x1c, 0xdb, 0x71, 0xcc, 0x7f, 0xd1, 0x1c, 0xc7, 0x07, 0xb0, 0x92, 0x34, 0x13, 0xee, 0x35, 0x5e, - 0x87, 0x59, 0x2b, 0xc0, 0x43, 0x76, 0x1f, 0x9a, 0xb8, 0x44, 0x88, 0xa1, 0x33, 0x24, 0xf5, 0x3d, - 0x58, 0x91, 0xe7, 0xea, 0x78, 0xe1, 0x84, 0xfa, 0x30, 0x19, 0x8f, 0x44, 0xee, 0x8b, 0xdb, 0x47, - 0xe6, 0x75, 0x4c, 0x92, 0x86, 0x61, 0xaa, 0x3f, 0x55, 0xe0, 0x74, 0xa2, 0x69, 0xcc, 0xc2, 0xff, - 0x76, 0x6a, 0x01, 0x33, 0x7f, 0x77, 0x33, 0xa7, 0x97, 0xdf, 0xe3, 0x2a, 0xfe, 0x3a, 0xb4, 0xe4, - 0xe9, 0x91, 0x54, 0x7b, 0x3b, 0xb1, 0x94, 0x2f, 0x4e, 0x14, 0x3a, 0x5c, 0xcf, 0x1d, 0x58, 0xcb, - 0x64, 0x9c, 0xd6, 0x79, 0x71, 0x4a, 0x9d, 0xff, 0x77, 0x21, 0xee, 0xb3, 0xdb, 0x41, 0xe0, 0x59, - 0x4f, 0x46, 0x01, 0xfe, 0x6c, 0x03, 0x9d, 0xcd, 0x70, 0x65, 0x33, 0x3f, 0xfb, 0x7a, 0x36, 0x65, - 0xd4, 0x7b, 0xe6, 0x1a, 0xef, 0xca, 0x6b, 0xbc, 0x44, 0x59, 0xbd, 0x39, 0x91, 0x55, 0xee, 0x6a, - 0xff, 0x3c, 0x17, 0xf1, 0x3f, 0x2b, 0xb0, 0x98, 0x98, 0x15, 0x74, 0x0f, 0xc0, 0x08, 0x45, 0xe7, - 0xf6, 0x71, 0x61, 0xd2, 0x10, 0xb5, 0x18, 0x0d, 0xd9, 0x13, 0x59, 0x0c, 0x97, 0xb1, 0x27, 0x66, - 0xc4, 0x70, 0x61, 0x08, 0x77, 0x37, 0x3a, 0x80, 0xb2, 0x8b, 0x4b, 0x35, 0xf7, 0x00, 0xca, 0x68, - 0x05, 0x89, 0xfa, 0x83, 0x02, 0x2c, 0x67, 0x71, 0x47, 0xaf, 0x40, 0xb1, 0xe7, 0x8e, 0xf8, 0x48, - 0xa4, 0xe4, 0xc9, 0x86, 0x3b, 0xda, 0xf7, 0x8d, 0x3e, 0xd6, 0x08, 0x02, 0xba, 0x06, 0x73, 0x43, - 0x3c, 0x74, 0xbc, 0x23, 0x2e, 0xb7, 0x74, 0x05, 0xf0, 0x88, 0xb6, 0x30, 0x6c, 0x8e, 0x86, 0x6e, - 0x44, 0xa1, 0x2e, 0x93, 0xb7, 0x29, 0x45, 0xf4, 0xac, 0x89, 0x91, 0x84, 0xf1, 0xed, 0x0d, 0x98, - 0x77, 0x3d, 0xa7, 0x87, 0x7d, 0x9f, 0xdf, 0x50, 0x34, 0x13, 0xd9, 0x1c, 0xd2, 0xc4, 0x69, 0x38, - 0x22, 0xba, 0x03, 0x10, 0xa6, 0x19, 0xc4, 0xce, 0xd4, 0x92, 0xc6, 0x21, 0x5a, 0x99, 0x4a, 0x62, - 0xd8, 0xe4, 0x94, 0x98, 0xad, 0x38, 0xf5, 0x1f, 0x15, 0x58, 0x88, 0xcb, 0x88, 0xce, 0x42, 0x85, - 0x30, 0xf4, 0x03, 0x63, 0xe8, 0xf2, 0x3b, 0xf0, 0x08, 0x80, 0x76, 0x60, 0xc9, 0x64, 0x97, 0x85, - 0xba, 0x65, 0x07, 0xd8, 0x3b, 0x30, 0x7a, 0x22, 0xe8, 0xb9, 0x98, 0x31, 0xec, 0x6d, 0x81, 0xc3, - 0xc6, 0xd2, 0xe0, 0xb4, 0x21, 0x18, 0xb5, 0x01, 0x42, 0x3e, 0x62, 0x51, 0x4e, 0xc1, 0x28, 0x46, - 0xa4, 0xfe, 0x56, 0x81, 0xd3, 0x99, 0x58, 0x99, 0x57, 0x5f, 0x37, 0xa0, 0xec, 0xbd, 0xd0, 0x9f, - 0x1c, 0x05, 0xd8, 0xcf, 0x9a, 0xe0, 0xfd, 0xd8, 0xfd, 0xf6, 0xbc, 0xf7, 0xe2, 0x3e, 0xc1, 0x43, - 0x37, 0xa1, 0xe2, 0xbd, 0xd0, 0xb1, 0xe7, 0x39, 0x9e, 0xb0, 0xc9, 0xb1, 0x44, 0x65, 0xef, 0xc5, - 0x16, 0x45, 0x24, 0x3d, 0x05, 0xa2, 0xa7, 0xd2, 0x84, 0x9e, 0x82, 0xa8, 0xa7, 0x20, 0xec, 0x69, - 0x76, 0x42, 0x4f, 0x01, 0xef, 0x49, 0xfd, 0x18, 0x16, 0xe2, 0x26, 0x33, 0x61, 0x0a, 0xef, 0x42, - 0x8d, 0x9b, 0x94, 0xde, 0x73, 0x46, 0x76, 0x30, 0x49, 0x0d, 0x0b, 0x1c, 0x7b, 0x83, 0x20, 0xab, - 0x7f, 0xa9, 0x40, 0x65, 0x7b, 0x68, 0xf4, 0x71, 0xd7, 0xc5, 0x3d, 0xe2, 0x53, 0x2c, 0xf2, 0xc0, - 0x55, 0xcc, 0x1e, 0xd0, 0x87, 0xb2, 0x7f, 0x64, 0x3b, 0xe2, 0x2b, 0x52, 0x16, 0x41, 0x70, 0x98, - 0xe0, 0x14, 0x3f, 0xad, 0x67, 0xbb, 0x01, 0xe5, 0xaf, 0xe2, 0x23, 0x16, 0xfb, 0x4f, 0x49, 0xa7, - 0xfe, 0xb0, 0x04, 0xab, 0x63, 0x6e, 0x6a, 0x69, 0xe0, 0xe8, 0x8e, 0x74, 0x17, 0x7b, 0x96, 0x63, - 0x0a, 0xd5, 0xf6, 0xdc, 0x51, 0x87, 0x02, 0xd0, 0x1a, 0x90, 0x07, 0xfd, 0xbb, 0x23, 0x87, 0xef, - 0x4d, 0x45, 0xad, 0xdc, 0x73, 0x47, 0x5f, 0x23, 0xcf, 0x82, 0xd6, 0x3f, 0x34, 0x3c, 0xcc, 0xcc, - 0x88, 0xd1, 0x76, 0x29, 0x00, 0xbd, 0x09, 0xa7, 0x99, 0x43, 0xd1, 0x07, 0xd6, 0xd0, 0x22, 0xcb, - 0x2b, 0x66, 0x3b, 0x45, 0x0d, 0xb1, 0xc6, 0x87, 0xa4, 0x6d, 0xdb, 0x66, 0xd6, 0xa2, 0x42, 0xcd, - 0x71, 0x86, 0xba, 0xdf, 0x73, 0x3c, 0xac, 0x1b, 0xe6, 0xc7, 0xd4, 0x62, 0x8a, 0x5a, 0xd5, 0x71, - 0x86, 0x5d, 0x02, 0x6b, 0x9b, 0x1f, 0xa3, 0x97, 0xa0, 0xda, 0x73, 0x47, 0x3e, 0x0e, 0x74, 0xf2, - 0x43, 0xcf, 0xd3, 0x15, 0x0d, 0x18, 0x68, 0xc3, 0x1d, 0xf9, 0x31, 0x84, 0x21, 0x89, 0xd6, 0xe6, - 0xe3, 0x08, 0x8f, 0xf0, 0x90, 0x26, 0xa4, 0x0e, 0x47, 0x7d, 0xec, 0x1a, 0x7d, 0xcc, 0x44, 0x13, - 0x87, 0x62, 0x29, 0x21, 0xf5, 0x21, 0x47, 0xa1, 0x02, 0x6a, 0xf5, 0xc3, 0xf8, 0xa3, 0x8f, 0x3e, - 0x82, 0xf9, 0x91, 0x6d, 0x1d, 0x58, 0xd8, 0x6c, 0x56, 0x28, 0xed, 0xf5, 0x29, 0xee, 0xc5, 0xd7, - 0xf7, 0x19, 0x09, 0xbf, 0xa6, 0xe7, 0x0c, 0xd0, 0x1d, 0x68, 0x71, 0x45, 0xf9, 0xcf, 0x0d, 0x37, - 0xa9, 0x2d, 0xa0, 0x2a, 0x58, 0x61, 0x18, 0xdd, 0xe7, 0x86, 0x1b, 0xd7, 0x58, 0xeb, 0x0e, 0x2c, - 0xc4, 0x99, 0x1e, 0xcb, 0x96, 0xee, 0x43, 0x4d, 0x1a, 0x24, 0x99, 0x6d, 0xaa, 0x14, 0xdf, 0xfa, - 0x9e, 0x58, 0x00, 0x65, 0x02, 0xe8, 0x5a, 0xdf, 0xa3, 0x69, 0x44, 0x2a, 0x19, 0xe5, 0x53, 0xd2, - 0xd8, 0x83, 0x6a, 0x40, 0x4d, 0xca, 0xdc, 0x11, 0x17, 0x45, 0x53, 0x74, 0xdc, 0x45, 0x91, 0xff, - 0x04, 0xe6, 0x39, 0x03, 0x21, 0x01, 0xfd, 0x4f, 0x60, 0x34, 0x47, 0xc4, 0x6e, 0xbc, 0xe9, 0x7f, - 0xda, 0x05, 0x7e, 0xc6, 0x13, 0xe2, 0x15, 0x8d, 0x3d, 0xa8, 0x7f, 0xaa, 0x00, 0x6c, 0x18, 0xae, - 0xf1, 0xc4, 0x1a, 0x58, 0xc1, 0x11, 0xba, 0x0c, 0x0d, 0xc3, 0x34, 0xf5, 0x9e, 0x80, 0x58, 0x58, - 0x54, 0x28, 0x2c, 0x1a, 0xa6, 0xb9, 0x11, 0x03, 0xa3, 0xab, 0xb0, 0x64, 0x7a, 0x8e, 0x2b, 0xe3, - 0xb2, 0x92, 0x85, 0x06, 0x69, 0x90, 0x90, 0x6f, 0x41, 0x93, 0xf0, 0x35, 0x86, 0x4f, 0x2c, 0x6c, - 0x07, 0x32, 0x0d, 0xab, 0x65, 0x58, 0x31, 0x4c, 0xb3, 0xcd, 0x9a, 0xe3, 0x94, 0xea, 0x3f, 0xcc, - 0xc1, 0x39, 0x79, 0xc6, 0x93, 0xc9, 0xd4, 0x3b, 0xb0, 0x90, 0x90, 0x37, 0x95, 0x86, 0x8c, 0x46, - 0xa8, 0x49, 0xb8, 0x89, 0x74, 0x61, 0x21, 0x95, 0x2e, 0xcc, 0x4c, 0xd4, 0x16, 0x3f, 0xa3, 0x44, - 0x6d, 0xe9, 0x53, 0x26, 0x6a, 0x67, 0x4f, 0x9a, 0xa8, 0x5d, 0x98, 0x3a, 0x51, 0xfb, 0x0a, 0x3d, - 0x54, 0x8a, 0x1e, 0xe9, 0xf6, 0xc8, 0x7c, 0x42, 0x2d, 0xe4, 0x6e, 0x8b, 0xb2, 0x99, 0x44, 0x42, - 0x77, 0xfe, 0x38, 0x09, 0xdd, 0xf2, 0xd8, 0x84, 0xee, 0x05, 0x58, 0xb0, 0x1d, 0xdd, 0xc6, 0xcf, - 0x75, 0x32, 0x2d, 0x7e, 0xb3, 0xca, 0xe6, 0xc8, 0x76, 0x76, 0xf0, 0xf3, 0x0e, 0x81, 0xa0, 0x8b, - 0xb0, 0x30, 0x34, 0xfc, 0xa7, 0xd8, 0xa4, 0x99, 0x55, 0xbf, 0x59, 0xa3, 0xf6, 0x54, 0x65, 0xb0, - 0x0e, 0x01, 0xa1, 0x97, 0x21, 0x94, 0x83, 0x23, 0xd5, 0x29, 0x52, 0x4d, 0x40, 0x19, 0x5a, 0x2c, - 0x39, 0xbc, 0x78, 0xc2, 0xe4, 0x70, 0xe3, 0x38, 0xc9, 0xe1, 0x37, 0xa0, 0x21, 0xfe, 0x8b, 0xec, - 0x30, 0xbb, 0xec, 0xa3, 0x89, 0xe1, 0x45, 0xd1, 0x26, 0x32, 0xc0, 0xe3, 0x72, 0xc9, 0x90, 0x9b, - 0x4b, 0xfe, 0x89, 0xc2, 0x43, 0xdc, 0x70, 0x01, 0xf1, 0x24, 0x96, 0x94, 0x7f, 0x54, 0x4e, 0x92, - 0x7f, 0x44, 0x7b, 0x63, 0x33, 0xb4, 0x97, 0xc7, 0x73, 0x9a, 0x94, 0xa3, 0x55, 0x7f, 0xa0, 0xc0, - 0x39, 0x1e, 0x7f, 0x8e, 0xa9, 0x9f, 0xc8, 0x30, 0x4b, 0x65, 0x8c, 0x59, 0xf6, 0x3c, 0x6c, 0x62, - 0x3b, 0xb0, 0x8c, 0x81, 0xee, 0xbb, 0xb8, 0x27, 0xb2, 0x32, 0x11, 0x98, 0x46, 0x26, 0x17, 0x61, - 0x81, 0x15, 0x1c, 0xf1, 0x30, 0x9b, 0xd5, 0x15, 0x55, 0x69, 0xcd, 0x11, 0x03, 0xa9, 0x0e, 0xac, - 0x8e, 0x49, 0x67, 0x65, 0xaa, 0x41, 0x49, 0xab, 0x21, 0x77, 0x4c, 0x69, 0x35, 0xfc, 0x50, 0x81, - 0x97, 0x38, 0xc9, 0x58, 0xdf, 0xf7, 0x79, 0x28, 0xe2, 0xaf, 0x95, 0xf0, 0x78, 0x90, 0x34, 0xa9, - 0x8d, 0xb4, 0x49, 0xbd, 0x9c, 0xa1, 0x81, 0x7c, 0xa3, 0x7a, 0x3c, 0xd6, 0xa8, 0xae, 0xe6, 0xf1, - 0x9a, 0xa8, 0xcf, 0x7f, 0x53, 0xe0, 0xcc, 0x58, 0x01, 0x12, 0xf1, 0x96, 0x92, 0x8c, 0xb7, 0x78, - 0xac, 0x16, 0x85, 0xc0, 0x2c, 0x56, 0xa3, 0x51, 0x2e, 0x0f, 0x8a, 0xf4, 0xa1, 0xf1, 0xc2, 0x1a, - 0x8e, 0x86, 0x3c, 0x58, 0x23, 0xec, 0x1e, 0x31, 0xc8, 0x49, 0xa2, 0xb5, 0x6b, 0xb0, 0xcc, 0x1c, - 0x29, 0x0d, 0x18, 0x22, 0x0a, 0x16, 0xb4, 0x2d, 0xb1, 0x36, 0x12, 0x3b, 0x70, 0x02, 0xb5, 0x0d, - 0x4b, 0xe1, 0xb0, 0x72, 0xd3, 0xf9, 0xb1, 0xf4, 0x7c, 0x41, 0x4e, 0xcf, 0xdb, 0x30, 0xb7, 0x89, - 0x9f, 0x59, 0x3d, 0xfc, 0x99, 0xd4, 0xe9, 0x5d, 0x80, 0xaa, 0x8b, 0xbd, 0xa1, 0xe5, 0xfb, 0xe1, - 0xae, 0x59, 0xd1, 0xe2, 0x20, 0xf5, 0x27, 0x73, 0xb0, 0x98, 0x34, 0xa1, 0xdb, 0xa9, 0x6a, 0x80, - 0x73, 0x99, 0xa7, 0xd6, 0x8c, 0xeb, 0x9a, 0xab, 0xe2, 0x78, 0x51, 0x48, 0xa7, 0xca, 0xc2, 0x23, - 0x84, 0x38, 0x75, 0x34, 0x61, 0xbe, 0xe7, 0x0c, 0x87, 0x86, 0x6d, 0x8a, 0x62, 0x4a, 0xfe, 0x48, - 0x74, 0x66, 0x78, 0x7d, 0x76, 0x51, 0x53, 0xd1, 0xe8, 0x7f, 0x32, 0xc3, 0xe4, 0xc4, 0x68, 0xd9, - 0xb4, 0x9e, 0x80, 0x4e, 0x42, 0x45, 0x03, 0x0e, 0xda, 0xb4, 0x3c, 0xf4, 0x1a, 0x94, 0xb0, 0xfd, - 0x4c, 0xdc, 0xe0, 0x4a, 0x17, 0x06, 0xe2, 0x48, 0xa1, 0x51, 0x0c, 0x74, 0x19, 0xe6, 0x86, 0xc4, - 0x6a, 0x44, 0xce, 0x69, 0x29, 0x55, 0x74, 0xa8, 0x71, 0x04, 0xf4, 0x3a, 0xcc, 0x9b, 0x74, 0x3e, - 0x44, 0x0c, 0x8d, 0xa4, 0xca, 0x04, 0xda, 0xa4, 0x09, 0x14, 0xf4, 0x7e, 0x78, 0x5b, 0x55, 0x49, - 0x5f, 0x23, 0x27, 0xd4, 0x9c, 0x79, 0x51, 0xb5, 0x23, 0x1f, 0xc4, 0x20, 0x7d, 0xe7, 0x95, 0xe4, - 0x92, 0x7f, 0x23, 0x7d, 0x06, 0xca, 0x03, 0xa7, 0xcf, 0x8c, 0xa3, 0xca, 0x2a, 0x71, 0x07, 0x4e, - 0x9f, 0xda, 0xc6, 0x32, 0xcc, 0xfa, 0x81, 0x69, 0xd9, 0x34, 0x14, 0x29, 0x6b, 0xec, 0x81, 0xac, - 0x41, 0xfa, 0x47, 0x77, 0xec, 0x1e, 0x6e, 0xd6, 0x68, 0x53, 0x85, 0x42, 0x76, 0xed, 0x1e, 0x3d, - 0x92, 0x05, 0xc1, 0x51, 0xb3, 0x4e, 0xe1, 0xe4, 0x6f, 0x74, 0x69, 0xb4, 0x38, 0xe6, 0xd2, 0x28, - 0x21, 0x70, 0xc6, 0xa5, 0x51, 0x63, 0xec, 0xa5, 0x51, 0x92, 0xf6, 0x8b, 0x50, 0xb4, 0xf0, 0xb7, - 0x0a, 0xac, 0x6c, 0xd0, 0xcc, 0x43, 0xcc, 0x85, 0x1d, 0x27, 0x91, 0xfe, 0x56, 0x58, 0xdd, 0x90, - 0x91, 0xa2, 0x4e, 0x8e, 0x58, 0x14, 0x37, 0x6c, 0x40, 0x5d, 0xb0, 0xe5, 0xc4, 0xc5, 0x29, 0x4a, - 0x23, 0x6a, 0x7e, 0xfc, 0x51, 0xbd, 0x0b, 0xab, 0x29, 0xc9, 0xf9, 0xfd, 0x6f, 0xb2, 0x4c, 0x96, - 0x09, 0x1e, 0x2f, 0x93, 0x55, 0xef, 0xc0, 0xe9, 0x6e, 0x60, 0x78, 0x41, 0x6a, 0xd8, 0x53, 0xd0, - 0xd2, 0xa2, 0x07, 0x99, 0x96, 0xd7, 0x25, 0x74, 0x61, 0xb9, 0x1b, 0x38, 0xee, 0x09, 0x98, 0x12, - 0xff, 0x41, 0x46, 0xee, 0x8c, 0xc4, 0x76, 0x20, 0x1e, 0xd5, 0x55, 0x56, 0xa2, 0x91, 0xee, 0xed, - 0x2b, 0xb0, 0xc2, 0x2a, 0x24, 0x4e, 0x32, 0x88, 0x33, 0xa2, 0x3e, 0x23, 0xcd, 0xf7, 0x01, 0x9c, - 0x92, 0x2e, 0xf3, 0x78, 0xf6, 0xf2, 0xba, 0x9c, 0xbd, 0x1c, 0x7f, 0xf9, 0x17, 0x26, 0x2f, 0x7f, - 0x54, 0x88, 0xf9, 0xe3, 0x31, 0x29, 0x8c, 0xb7, 0xe5, 0xdc, 0xe5, 0x4b, 0xe3, 0xb9, 0x4a, 0xa9, - 0xcb, 0xb4, 0x75, 0x16, 0x33, 0xac, 0x73, 0x3f, 0x95, 0x1f, 0x29, 0xa5, 0xf3, 0xc1, 0x09, 0x09, - 0x7f, 0x2f, 0x99, 0x91, 0x87, 0x2c, 0xbf, 0x19, 0x76, 0x1d, 0x26, 0x45, 0xde, 0x4a, 0x24, 0x45, - 0xd6, 0x72, 0x24, 0x0d, 0xd3, 0x21, 0x3f, 0x2a, 0x41, 0x25, 0x6c, 0x4b, 0x69, 0x38, 0xad, 0xaa, - 0x42, 0x86, 0xaa, 0xe2, 0xfb, 0x64, 0xf1, 0x84, 0xfb, 0x64, 0x69, 0x8a, 0x7d, 0x72, 0x0d, 0x2a, - 0xf4, 0x0f, 0x2d, 0x13, 0x65, 0xfb, 0x5e, 0x99, 0x02, 0x34, 0x7c, 0x10, 0x99, 0xd8, 0xdc, 0x94, - 0x26, 0x96, 0xc8, 0xa5, 0xce, 0x27, 0x73, 0xa9, 0xb7, 0xc3, 0x3d, 0xac, 0x9c, 0xbe, 0xdc, 0x0d, - 0x39, 0x66, 0xee, 0x5e, 0x89, 0x6b, 0xc4, 0x4a, 0xfa, 0x1a, 0x31, 0xa2, 0xff, 0xc2, 0xe6, 0x56, - 0x76, 0x59, 0x82, 0x34, 0x6e, 0x67, 0xdc, 0x47, 0xbe, 0x2d, 0xdd, 0xe7, 0x2b, 0xe9, 0x4a, 0xfd, - 0xc8, 0x2f, 0xc4, 0xaf, 0xf2, 0xf7, 0x61, 0x45, 0x9a, 0x88, 0xa8, 0xf0, 0x6a, 0x3a, 0x1f, 0x37, - 0xa6, 0xea, 0xea, 0x8f, 0xe3, 0x91, 0xdb, 0x98, 0x12, 0xa3, 0xdb, 0xa9, 0xcc, 0xdb, 0xd4, 0x16, - 0x7a, 0x5d, 0x4e, 0xd2, 0x1f, 0xdb, 0xae, 0x52, 0x39, 0x7a, 0x1a, 0x59, 0x18, 0x1e, 0x6f, 0x66, - 0x31, 0x74, 0x85, 0x43, 0xda, 0x34, 0x80, 0x3f, 0xb0, 0x6c, 0xcb, 0x3f, 0x64, 0xed, 0x73, 0x2c, - 0x80, 0x17, 0xa0, 0x36, 0xbd, 0xbc, 0xc3, 0x2f, 0xac, 0x40, 0xef, 0x39, 0x26, 0xa6, 0x56, 0x3b, - 0xab, 0x95, 0x09, 0x60, 0xc3, 0x31, 0x71, 0xb4, 0x9e, 0xca, 0xc7, 0x5d, 0x4f, 0x95, 0xc4, 0x7a, - 0x5a, 0x81, 0x39, 0x0f, 0x1b, 0xbe, 0x63, 0xb3, 0x33, 0xbd, 0xc6, 0x9f, 0xc8, 0x44, 0x0c, 0xb1, - 0xef, 0x93, 0x3e, 0x78, 0x20, 0xc5, 0x1f, 0x63, 0x41, 0xdf, 0x42, 0x4e, 0xd0, 0x97, 0x53, 0xc0, - 0x94, 0x08, 0xfa, 0x6a, 0x39, 0x41, 0xdf, 0x54, 0xf5, 0x4b, 0x51, 0x78, 0x5b, 0x9f, 0x14, 0xde, - 0xc6, 0xe3, 0xc3, 0x45, 0x39, 0x3e, 0xbc, 0x1b, 0x3f, 0x48, 0x36, 0xd2, 0x69, 0xdb, 0xfc, 0xb2, - 0xe8, 0xcf, 0x71, 0x01, 0xff, 0x8b, 0x02, 0xab, 0xa9, 0x05, 0xc7, 0x97, 0xf0, 0x5b, 0x89, 0xca, - 0xa8, 0xb5, 0x1c, 0x2d, 0x87, 0x85, 0x51, 0x6d, 0xa9, 0x30, 0xea, 0x8d, 0x3c, 0x92, 0xcf, 0xbc, - 0x2e, 0xea, 0xfb, 0x0a, 0xa0, 0x8c, 0xa3, 0xf2, 0x6d, 0x11, 0x75, 0x1f, 0xe3, 0xd2, 0x88, 0x07, - 0xde, 0xef, 0x47, 0x81, 0x77, 0xe1, 0x38, 0xd7, 0x03, 0x61, 0xc2, 0xf6, 0x57, 0x05, 0x78, 0x69, - 0xdf, 0x35, 0x13, 0x61, 0x24, 0xc7, 0x9a, 0xde, 0xb3, 0xdd, 0x96, 0xb3, 0xcd, 0x27, 0x1c, 0x42, - 0xf1, 0x24, 0x43, 0x40, 0xdf, 0xc9, 0xaa, 0x07, 0xb8, 0x2b, 0xe5, 0xd3, 0xf2, 0x07, 0xf8, 0x3b, - 0xce, 0x82, 0xa9, 0x70, 0x61, 0xbc, 0x00, 0x3c, 0xe4, 0xfc, 0xbf, 0xb0, 0xb8, 0xf5, 0x02, 0xf7, - 0xba, 0x47, 0x76, 0xef, 0x18, 0x5a, 0x6f, 0x40, 0xb1, 0x37, 0x34, 0x79, 0x92, 0x80, 0xfc, 0x8d, - 0x47, 0xd1, 0x45, 0x39, 0x8a, 0xd6, 0xa1, 0x11, 0xf5, 0xc0, 0x17, 0xd0, 0x0a, 0x59, 0x40, 0x26, - 0x41, 0x26, 0xcc, 0x17, 0x34, 0xfe, 0xc4, 0xe1, 0xd8, 0x63, 0x35, 0xd7, 0x0c, 0x8e, 0x3d, 0x4f, - 0xf6, 0xda, 0x45, 0xd9, 0x6b, 0xab, 0x3f, 0x56, 0xa0, 0x4a, 0x7a, 0xf8, 0x54, 0xf2, 0xf3, 0x23, - 0x69, 0x31, 0x3a, 0x92, 0x86, 0x27, 0xdb, 0x52, 0xfc, 0x64, 0x1b, 0x49, 0x3e, 0x4b, 0xc1, 0x69, - 0xc9, 0xe7, 0x42, 0x38, 0xf6, 0x3c, 0xf5, 0x02, 0x2c, 0x30, 0xd9, 0xf8, 0xc8, 0x1b, 0x50, 0x1c, - 0x79, 0x03, 0x31, 0x7f, 0x23, 0x6f, 0xa0, 0xfe, 0xa1, 0x02, 0xb5, 0x76, 0x10, 0x18, 0xbd, 0xc3, - 0x63, 0x0c, 0x20, 0x14, 0xae, 0x10, 0x17, 0x2e, 0x3d, 0x88, 0x48, 0xdc, 0xd2, 0x18, 0x71, 0x67, - 0x25, 0x71, 0x55, 0xa8, 0x0b, 0x59, 0xc6, 0x0a, 0xbc, 0x03, 0xa8, 0xe3, 0x78, 0xc1, 0x07, 0x8e, - 0xf7, 0xdc, 0xf0, 0xcc, 0xe3, 0x9d, 0x5a, 0x11, 0x94, 0xf8, 0x3b, 0xa9, 0xc5, 0xd7, 0x66, 0x35, - 0xfa, 0x5f, 0x7d, 0x15, 0x4e, 0x49, 0xfc, 0xc6, 0x76, 0x7c, 0x07, 0xaa, 0x74, 0x17, 0xe6, 0x07, - 0x9a, 0xab, 0xf1, 0x24, 0xf4, 0x84, 0xdd, 0x5a, 0xdd, 0x84, 0x25, 0x12, 0x8f, 0x51, 0x78, 0xe8, - 0x5f, 0xae, 0x25, 0x62, 0xfe, 0xd5, 0x14, 0x8b, 0x44, 0xbc, 0xff, 0x1b, 0x05, 0x66, 0x29, 0x3c, - 0x15, 0x23, 0xad, 0x91, 0x7d, 0xce, 0x75, 0xf4, 0xc0, 0xe8, 0x87, 0xef, 0xfb, 0x12, 0xc0, 0x9e, - 0xd1, 0xa7, 0x89, 0x0d, 0xda, 0x68, 0x5a, 0x7d, 0xec, 0x07, 0x22, 0x51, 0x56, 0x25, 0xb0, 0x4d, - 0x06, 0x22, 0x8a, 0xa1, 0xf9, 0xc4, 0x12, 0x4d, 0x1b, 0xd2, 0xff, 0xe8, 0x35, 0xf6, 0xba, 0x4e, - 0x7e, 0x76, 0x88, 0xbe, 0xc6, 0xd3, 0x82, 0x72, 0x22, 0xad, 0x13, 0x3e, 0xa3, 0xcb, 0x50, 0xa2, - 0xd7, 0xc4, 0xf3, 0x79, 0x5a, 0xa2, 0x28, 0xc4, 0x2a, 0x5c, 0xcb, 0xb6, 0xb1, 0x49, 0x03, 0xa0, - 0xb2, 0xc6, 0x9f, 0xd4, 0xf7, 0x01, 0xc5, 0x95, 0xc7, 0x27, 0xe8, 0x32, 0xcc, 0x51, 0xdd, 0x8a, - 0x20, 0x76, 0x29, 0xc5, 0x5a, 0xe3, 0x08, 0xea, 0xb7, 0x01, 0xb1, 0xbe, 0xa4, 0xc0, 0xf5, 0x38, - 0x13, 0x98, 0x13, 0xc2, 0xfe, 0x8d, 0x02, 0xa7, 0x24, 0xee, 0x5c, 0xbe, 0x57, 0x65, 0xf6, 0x19, - 0xe2, 0x71, 0xd6, 0xef, 0x4a, 0x3b, 0xf3, 0xe5, 0xb4, 0x18, 0xbf, 0xa3, 0x5d, 0xf9, 0xe7, 0x0a, - 0x40, 0x7b, 0x14, 0x1c, 0xf2, 0x0b, 0xd3, 0xf8, 0x24, 0x2a, 0x89, 0x49, 0x6c, 0x41, 0xd9, 0x35, - 0x7c, 0xff, 0xb9, 0xe3, 0x89, 0x43, 0x64, 0xf8, 0x4c, 0xaf, 0x39, 0x47, 0xfc, 0xb5, 0xe3, 0x8a, - 0x46, 0xff, 0xa3, 0x97, 0xa1, 0xce, 0x5e, 0x44, 0xd7, 0x0d, 0xd3, 0xf4, 0x44, 0xbd, 0x51, 0x45, - 0xab, 0x31, 0x68, 0x9b, 0x01, 0x09, 0x9a, 0x45, 0x93, 0x06, 0xc1, 0x91, 0x1e, 0x38, 0x4f, 0xb1, - 0xcd, 0x0f, 0x86, 0x35, 0x01, 0xdd, 0x23, 0x40, 0x96, 0x75, 0xeb, 0x5b, 0x7e, 0xe0, 0x09, 0x34, - 0x91, 0x3b, 0xe4, 0x50, 0x8a, 0xa6, 0xfe, 0x95, 0x02, 0x8d, 0xce, 0x68, 0x30, 0x60, 0xca, 0x3d, - 0xc9, 0x24, 0x5f, 0xe1, 0x43, 0x29, 0xa4, 0x4d, 0x3e, 0x52, 0x14, 0x1f, 0xe2, 0x67, 0x72, 0x97, - 0x75, 0x1d, 0x96, 0x62, 0x12, 0x73, 0xc3, 0x91, 0x22, 0x7b, 0x45, 0x8e, 0xec, 0xd5, 0x36, 0x20, - 0x76, 0x7d, 0x73, 0xe2, 0x51, 0xaa, 0xa7, 0xe1, 0x94, 0xc4, 0x82, 0x6f, 0xc5, 0x57, 0xa0, 0xc6, - 0xeb, 0x99, 0xb8, 0x41, 0x9c, 0x81, 0x32, 0x71, 0xa9, 0x3d, 0xcb, 0x14, 0x85, 0x02, 0xf3, 0xae, - 0x63, 0x6e, 0x58, 0xa6, 0xa7, 0x7e, 0x0d, 0x6a, 0xfc, 0x1d, 0x4e, 0x8e, 0x7b, 0x0f, 0xea, 0xbc, - 0xc8, 0x4c, 0x97, 0x5e, 0x7a, 0x3a, 0x93, 0x51, 0x54, 0x25, 0x54, 0x61, 0xc7, 0x1f, 0xd5, 0xef, - 0x40, 0x8b, 0x45, 0x0b, 0x12, 0x63, 0x31, 0xc0, 0x7b, 0x20, 0xaa, 0x8f, 0x73, 0xf8, 0xcb, 0x94, - 0x35, 0x2f, 0xfe, 0xa8, 0x9e, 0x83, 0xb5, 0x4c, 0xfe, 0x7c, 0xf4, 0x2e, 0x34, 0xa2, 0x06, 0xf6, - 0x66, 0x4e, 0x58, 0xfd, 0xa0, 0xc4, 0xaa, 0x1f, 0x56, 0xc2, 0xd8, 0xbb, 0x20, 0x76, 0x2e, 0x1a, - 0x5e, 0x47, 0x27, 0xae, 0xe2, 0xb8, 0x13, 0x57, 0x49, 0x3a, 0x71, 0xa9, 0x8f, 0x42, 0x1d, 0xf2, - 0x73, 0xef, 0x5d, 0x7a, 0x32, 0x67, 0x7d, 0x0b, 0xa7, 0x76, 0x36, 0x7b, 0x7c, 0x0c, 0x49, 0x8b, - 0xe1, 0xab, 0x97, 0xa1, 0x26, 0xbb, 0xb7, 0x98, 0xc7, 0x52, 0x52, 0x1e, 0xab, 0x9e, 0x70, 0x56, - 0x6f, 0x26, 0x8e, 0x14, 0x59, 0x7a, 0x4d, 0x1c, 0x28, 0x6e, 0x49, 0x6e, 0xeb, 0x4b, 0x52, 0xa6, - 0xfa, 0x77, 0xe4, 0xb1, 0x96, 0xb9, 0x1f, 0xff, 0xc0, 0x27, 0xf4, 0x7c, 0xa0, 0xea, 0x25, 0xa8, - 0xee, 0x8f, 0x7b, 0x93, 0xbe, 0x24, 0xca, 0xab, 0xde, 0x81, 0xe5, 0x0f, 0xac, 0x01, 0xf6, 0x8f, - 0xfc, 0x00, 0x0f, 0xb7, 0xa9, 0x7b, 0x39, 0xb0, 0xb0, 0x87, 0xce, 0x03, 0xd0, 0x53, 0xa4, 0xeb, - 0x58, 0xe1, 0xdb, 0xc3, 0x31, 0x88, 0xfa, 0x4b, 0x05, 0x16, 0x23, 0xc2, 0x69, 0x0a, 0xdd, 0xde, - 0x86, 0xd9, 0x03, 0x5f, 0xdc, 0xb6, 0x25, 0x72, 0x09, 0x59, 0x22, 0x68, 0xa5, 0x03, 0x7f, 0xdb, - 0x44, 0xef, 0x00, 0x8c, 0x7c, 0x6c, 0xf2, 0xec, 0xdc, 0x84, 0x72, 0xbf, 0x0a, 0x41, 0x65, 0xf9, - 0xbd, 0x5b, 0x50, 0xb5, 0x6c, 0xc7, 0xc4, 0x34, 0x73, 0x6b, 0x4e, 0x2a, 0xf9, 0x03, 0x86, 0xbb, - 0xef, 0x63, 0x53, 0xd5, 0xf9, 0xbe, 0x25, 0xb4, 0xc9, 0x4d, 0xe1, 0x43, 0x58, 0x62, 0xee, 0xe7, - 0x20, 0x14, 0x36, 0xb3, 0xa0, 0x3a, 0xa1, 0x15, 0xad, 0x61, 0xf1, 0x88, 0x45, 0x10, 0xa9, 0x77, - 0xe0, 0x74, 0xa2, 0x38, 0x74, 0xfa, 0x6b, 0xea, 0x8f, 0x12, 0xf7, 0x4d, 0x91, 0xa9, 0x5e, 0x97, - 0x0b, 0xeb, 0xf3, 0x6a, 0x51, 0x79, 0x8d, 0xf7, 0x3e, 0x9c, 0x91, 0x2e, 0xc3, 0x24, 0x59, 0x6e, - 0x25, 0x82, 0xb0, 0x0b, 0xe3, 0xf9, 0x25, 0xa2, 0xb1, 0xff, 0x54, 0x60, 0x39, 0x0b, 0xe1, 0x84, - 0x17, 0xb1, 0xdf, 0x1a, 0xf3, 0x52, 0xce, 0x5b, 0x93, 0x04, 0xfa, 0xbd, 0x5c, 0x5c, 0xef, 0xb0, - 0x92, 0xfe, 0xc9, 0x73, 0x52, 0x9c, 0x6e, 0x4e, 0x7e, 0x53, 0x88, 0x25, 0x1b, 0x72, 0xca, 0xee, - 0x3f, 0xc5, 0xe5, 0xdf, 0x46, 0xa2, 0xea, 0xfe, 0x6a, 0x26, 0xe1, 0x84, 0xa2, 0x7b, 0x2d, 0xeb, - 0x90, 0x7d, 0x7d, 0x12, 0xa7, 0x2f, 0xec, 0xbd, 0xf0, 0x7f, 0x29, 0x50, 0x97, 0x27, 0x04, 0xbd, - 0x9f, 0x51, 0x72, 0xff, 0xd2, 0x84, 0x01, 0x4a, 0x15, 0xf7, 0xbc, 0xc4, 0xbd, 0x30, 0x7d, 0x89, - 0x7b, 0x71, 0xba, 0x12, 0xf7, 0xfb, 0x50, 0x7f, 0xee, 0x59, 0x81, 0xf1, 0x64, 0x80, 0xf5, 0x81, - 0x71, 0x84, 0x3d, 0xee, 0xdd, 0x72, 0xdd, 0x50, 0x4d, 0x90, 0x3c, 0x24, 0x14, 0xea, 0xdf, 0x29, - 0x50, 0x16, 0x62, 0x4c, 0x2c, 0x32, 0x5f, 0x1d, 0x11, 0x34, 0x9d, 0x16, 0xb6, 0xda, 0x86, 0xed, - 0xe8, 0x3e, 0x26, 0x3b, 0xec, 0xc4, 0x92, 0xed, 0x65, 0x4a, 0xb7, 0xe1, 0x78, 0x78, 0xc7, 0xb0, - 0x9d, 0x2e, 0x23, 0x42, 0x6d, 0x68, 0x30, 0x7e, 0x94, 0x15, 0x61, 0x3a, 0xd1, 0xaf, 0xd7, 0x29, - 0x01, 0x61, 0x42, 0x98, 0xf9, 0xea, 0x9f, 0x17, 0xa1, 0x1a, 0xd3, 0xcc, 0x84, 0x01, 0x6c, 0xc0, - 0x92, 0x28, 0x2e, 0xf0, 0x71, 0x30, 0x5d, 0xb5, 0xf9, 0x22, 0xa7, 0xe8, 0xe2, 0x80, 0xed, 0x27, - 0xf7, 0x60, 0xd1, 0x78, 0x66, 0x58, 0x03, 0xaa, 0xf5, 0xa9, 0x36, 0xa3, 0x7a, 0x88, 0x1f, 0xee, - 0x48, 0x6c, 0xdc, 0x53, 0x15, 0xa1, 0x03, 0xc5, 0x8d, 0x2a, 0xde, 0x7d, 0x3f, 0x56, 0xa0, 0x92, - 0x5b, 0xf1, 0xee, 0xfb, 0x61, 0x7f, 0xb4, 0x20, 0x96, 0xd6, 0xf8, 0xfb, 0xfc, 0xdd, 0xdd, 0xf1, - 0xfd, 0x11, 0xdc, 0x0f, 0x28, 0x2a, 0x51, 0xd8, 0xd0, 0xf8, 0xd8, 0xf1, 0xf4, 0x38, 0xfd, 0xfc, - 0x04, 0x85, 0x51, 0x8a, 0x4e, 0xc8, 0x44, 0x7d, 0x0f, 0xce, 0x68, 0xd8, 0x71, 0xb1, 0x1d, 0xae, - 0x93, 0x87, 0x4e, 0xff, 0x18, 0x3b, 0xdd, 0x59, 0x68, 0x65, 0xd1, 0xf3, 0xb8, 0x74, 0x04, 0xad, - 0x8d, 0x43, 0xdc, 0x7b, 0x4a, 0xa3, 0x91, 0x93, 0xe4, 0x97, 0x5b, 0x50, 0x1e, 0x38, 0x3d, 0xf6, - 0x75, 0x2a, 0x7e, 0x74, 0x13, 0xcf, 0x39, 0xb7, 0x66, 0xe7, 0x60, 0x2d, 0xb3, 0x5b, 0x2e, 0x15, - 0x82, 0xc6, 0x03, 0x1c, 0x6c, 0x3d, 0xc3, 0x76, 0xb8, 0x91, 0xaa, 0xff, 0xa3, 0xc4, 0xb6, 0x6c, - 0xda, 0x74, 0x8c, 0xbc, 0x3c, 0xea, 0xc0, 0x72, 0x84, 0x82, 0x09, 0x35, 0xfb, 0x3a, 0x0d, 0xfb, - 0xae, 0x53, 0xf6, 0x9d, 0x3d, 0xed, 0x84, 0x7e, 0x94, 0x06, 0xf5, 0x52, 0xb0, 0x44, 0x26, 0xa7, - 0x98, 0xcc, 0xe4, 0x74, 0x60, 0x39, 0xbe, 0x29, 0x87, 0x9b, 0x4c, 0x69, 0xaa, 0x77, 0xbb, 0x90, - 0x9b, 0x82, 0x5d, 0x79, 0x05, 0xca, 0xe2, 0x83, 0x68, 0x68, 0x1e, 0x8a, 0x7b, 0x1b, 0x9d, 0xc6, - 0x0c, 0xf9, 0xb3, 0xbf, 0xd9, 0x69, 0x28, 0xa8, 0x0c, 0xa5, 0xee, 0xc6, 0x5e, 0xa7, 0x51, 0xb8, - 0x32, 0x84, 0x46, 0xf2, 0x9b, 0x60, 0x68, 0x15, 0x4e, 0x75, 0xb4, 0xdd, 0x4e, 0xfb, 0x41, 0x7b, - 0x6f, 0x7b, 0x77, 0x47, 0xef, 0x68, 0xdb, 0x8f, 0xdb, 0x7b, 0x5b, 0x8d, 0x19, 0x74, 0x11, 0xce, - 0xc5, 0x1b, 0x3e, 0xdc, 0xed, 0xee, 0xe9, 0x7b, 0xbb, 0xfa, 0xc6, 0xee, 0xce, 0x5e, 0x7b, 0x7b, - 0x67, 0x4b, 0x6b, 0x28, 0xe8, 0x1c, 0x9c, 0x89, 0xa3, 0xdc, 0xdf, 0xde, 0xdc, 0xd6, 0xb6, 0x36, - 0xc8, 0xff, 0xf6, 0xc3, 0x46, 0xe1, 0xca, 0xbb, 0x50, 0x93, 0x3e, 0x6e, 0x45, 0x44, 0xea, 0xec, - 0x6e, 0x36, 0x66, 0x50, 0x0d, 0x2a, 0x71, 0x3e, 0x65, 0x28, 0xed, 0xec, 0x6e, 0x6e, 0x35, 0x0a, - 0x08, 0x60, 0x6e, 0xaf, 0xad, 0x3d, 0xd8, 0xda, 0x6b, 0x14, 0xaf, 0xdc, 0x49, 0xbe, 0xa4, 0x85, - 0xd1, 0x12, 0xd4, 0xba, 0xed, 0x9d, 0xcd, 0xfb, 0xbb, 0xdf, 0xd0, 0xb5, 0xad, 0xf6, 0xe6, 0x37, - 0x1b, 0x33, 0x68, 0x19, 0x1a, 0x02, 0xb4, 0xb3, 0xbb, 0xc7, 0xa0, 0xca, 0x95, 0xa7, 0x89, 0xcd, - 0x06, 0xa3, 0xd3, 0xb0, 0x14, 0x76, 0xa9, 0x6f, 0x68, 0x5b, 0xed, 0xbd, 0x2d, 0x22, 0x89, 0x04, - 0xd6, 0xf6, 0x77, 0x76, 0xb6, 0x77, 0x1e, 0x34, 0x14, 0xc2, 0x35, 0x02, 0x6f, 0x7d, 0x63, 0x9b, - 0x20, 0x17, 0x64, 0xe4, 0xfd, 0x9d, 0xaf, 0xee, 0xec, 0x7e, 0x7d, 0xa7, 0x51, 0xbc, 0xf2, 0xff, - 0xe3, 0x49, 0x86, 0xc8, 0x0c, 0xd6, 0x60, 0x35, 0xd5, 0xa3, 0xbe, 0xf5, 0x78, 0x6b, 0x67, 0xaf, - 0x31, 0x23, 0x37, 0x76, 0xf7, 0xda, 0x5a, 0xd4, 0xa8, 0x24, 0x1b, 0x77, 0x3b, 0x9d, 0xb0, 0xb1, - 0x20, 0x37, 0x6e, 0x6e, 0x3d, 0xdc, 0x8a, 0x28, 0x8b, 0x37, 0x7e, 0x1a, 0x7d, 0xe3, 0xa8, 0x8b, - 0x3d, 0x5a, 0x08, 0xb7, 0x09, 0xf3, 0xe2, 0x8b, 0x7f, 0x52, 0x74, 0x24, 0x7f, 0xa1, 0xb0, 0xb5, - 0x96, 0xd9, 0xc6, 0x57, 0xdd, 0x0c, 0x7a, 0x4c, 0xcf, 0x8c, 0xb1, 0x37, 0x9a, 0x2f, 0x24, 0xce, - 0x69, 0xa9, 0x17, 0xa7, 0x5b, 0x17, 0x73, 0x30, 0x42, 0xbe, 0xdf, 0x24, 0x07, 0xc2, 0xf8, 0xe7, - 0x3c, 0xd0, 0x45, 0xf9, 0x3c, 0x97, 0xf1, 0xa5, 0x90, 0x96, 0x9a, 0x87, 0x12, 0xb2, 0xd6, 0xa1, - 0x91, 0xfc, 0x9c, 0x07, 0x92, 0xd2, 0x24, 0x63, 0xbe, 0x16, 0xd2, 0xfa, 0x52, 0x3e, 0x52, 0xbc, - 0x83, 0xd4, 0x57, 0x2a, 0x2e, 0xe5, 0xbf, 0xf7, 0x9f, 0xd1, 0xc1, 0xb8, 0x8f, 0x03, 0x30, 0xe5, - 0xc8, 0x2f, 0x9d, 0xa2, 0xc4, 0x87, 0x21, 0x32, 0xde, 0x57, 0x97, 0x95, 0x93, 0xfd, 0xae, 0xb2, - 0x3a, 0x83, 0xfe, 0x0f, 0x2c, 0x26, 0x6a, 0x99, 0x90, 0x44, 0x98, 0x5d, 0xa2, 0xd5, 0xba, 0x94, - 0x8b, 0x23, 0xcf, 0x6a, 0xbc, 0x5e, 0x29, 0x39, 0xab, 0x19, 0x75, 0x50, 0xc9, 0x59, 0xcd, 0x2c, - 0x77, 0xa2, 0x86, 0x28, 0xd5, 0x26, 0xc9, 0x86, 0x98, 0x55, 0x0b, 0xd5, 0xba, 0x98, 0x83, 0x11, - 0x57, 0x48, 0xa2, 0x3a, 0x49, 0x56, 0x48, 0x76, 0xdd, 0x53, 0xeb, 0x52, 0x2e, 0x4e, 0x72, 0x26, - 0xa3, 0xaa, 0x88, 0xf4, 0x4c, 0xa6, 0x2a, 0x73, 0xd2, 0x33, 0x99, 0x2e, 0xaa, 0xe0, 0x33, 0x99, - 0xa8, 0x63, 0x50, 0x73, 0x73, 0xac, 0x59, 0x33, 0x99, 0x9d, 0x87, 0x55, 0x67, 0xd0, 0x73, 0x68, - 0x8e, 0x4b, 0xa5, 0xa1, 0xab, 0xc7, 0xc8, 0xf8, 0xb5, 0x5e, 0x9f, 0x0e, 0x39, 0xec, 0x18, 0x03, - 0x4a, 0x07, 0x27, 0xe8, 0x65, 0x59, 0xdd, 0x63, 0x82, 0x9f, 0xd6, 0x2b, 0x93, 0xd0, 0xc2, 0x6e, - 0x1e, 0x40, 0x59, 0x24, 0xe9, 0x90, 0xe4, 0x02, 0x13, 0xc9, 0xc1, 0xd6, 0xd9, 0xec, 0xc6, 0x90, - 0xd1, 0x57, 0xa0, 0x44, 0xa0, 0x68, 0x35, 0x89, 0x27, 0x18, 0x34, 0xd3, 0x0d, 0x21, 0x71, 0x1b, - 0xe6, 0x58, 0xf6, 0x09, 0x49, 0xd7, 0x5f, 0x52, 0x76, 0xac, 0xd5, 0xca, 0x6a, 0x0a, 0x59, 0x74, - 0xd8, 0xf7, 0x53, 0x79, 0x32, 0x09, 0x9d, 0x4f, 0x7e, 0xc8, 0x4b, 0xce, 0x5a, 0xb5, 0x5e, 0x1a, - 0xdb, 0x1e, 0xb7, 0xd9, 0xc4, 0x81, 0xed, 0x62, 0xce, 0xe9, 0x3a, 0xcb, 0x66, 0xb3, 0xcf, 0xec, - 0x6c, 0x72, 0xd3, 0x67, 0x7a, 0x79, 0x72, 0xc7, 0xde, 0x9b, 0xc8, 0x93, 0x3b, 0xfe, 0x6a, 0x80, - 0x2d, 0x8d, 0xe4, 0x5b, 0xd1, 0x6a, 0xde, 0x9b, 0xf9, 0x59, 0x4b, 0x63, 0xcc, 0x1b, 0xff, 0xea, - 0x0c, 0x3a, 0x84, 0x53, 0x19, 0x9f, 0x04, 0x40, 0xaf, 0x8c, 0xf7, 0xbf, 0x52, 0x2f, 0xaf, 0x4e, - 0xc4, 0x8b, 0xf7, 0x94, 0x71, 0x83, 0x2c, 0xf7, 0x34, 0xfe, 0x0a, 0x5b, 0xee, 0x29, 0xef, 0x2a, - 0x9a, 0x1a, 0x22, 0xf7, 0x21, 0x67, 0xb2, 0xae, 0x55, 0x33, 0x0c, 0x31, 0xe5, 0x31, 0x0e, 0xe1, - 0x54, 0x46, 0x00, 0x2f, 0x0b, 0x3b, 0xfe, 0x60, 0x21, 0x0b, 0x9b, 0x77, 0x12, 0x98, 0x41, 0xdf, - 0x02, 0xf4, 0x00, 0x07, 0x72, 0xe4, 0xe5, 0x23, 0x69, 0xa1, 0x26, 0xcf, 0x0a, 0x63, 0xec, 0x53, - 0x3a, 0x34, 0xa8, 0x33, 0xd7, 0x95, 0x1b, 0x7f, 0x56, 0x84, 0x05, 0x96, 0xbf, 0xe0, 0x61, 0xd4, - 0x23, 0x80, 0x28, 0x15, 0x88, 0xce, 0x25, 0x27, 0x4f, 0xca, 0xaf, 0xb6, 0xce, 0x8f, 0x6b, 0x8e, - 0x2f, 0xd7, 0x58, 0x8a, 0x4d, 0x5e, 0xae, 0xe9, 0x8c, 0xa1, 0xbc, 0x5c, 0x33, 0x72, 0x73, 0xea, - 0x0c, 0xfa, 0x08, 0x2a, 0x61, 0x46, 0x47, 0x56, 0x42, 0x32, 0x35, 0xd5, 0x3a, 0x37, 0xa6, 0x35, - 0x2e, 0x5d, 0x2c, 0x51, 0x23, 0x4b, 0x97, 0x4e, 0x02, 0xc9, 0xd2, 0x65, 0x65, 0x78, 0xa2, 0xf1, - 0xb2, 0x2b, 0xdf, 0x8c, 0xf1, 0x4a, 0x37, 0xeb, 0x19, 0xe3, 0x95, 0xef, 0x8a, 0xd5, 0x99, 0xfb, - 0xf7, 0x7e, 0xf6, 0xeb, 0xf3, 0xca, 0x2f, 0x7f, 0x7d, 0x7e, 0xe6, 0xff, 0x7d, 0x72, 0x5e, 0xf9, - 0xd9, 0x27, 0xe7, 0x95, 0x5f, 0x7c, 0x72, 0x5e, 0xf9, 0xd5, 0x27, 0xe7, 0x95, 0xef, 0xff, 0xc7, - 0xf9, 0x99, 0x6f, 0xa9, 0x4f, 0x6f, 0xf9, 0xeb, 0x96, 0x73, 0xad, 0xe7, 0x59, 0x6f, 0x18, 0xae, - 0x75, 0xcd, 0x7d, 0xda, 0xbf, 0x66, 0xb8, 0x96, 0x7f, 0x8d, 0xf3, 0xbd, 0xf6, 0xec, 0xcd, 0x27, - 0x73, 0xf4, 0xdb, 0xd1, 0x6f, 0xfd, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x94, 0xf5, 0x05, 0x82, - 0xf5, 0x5b, 0x00, 0x00, + // 6196 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x7d, 0x4d, 0x6c, 0x1c, 0xc9, + 0x75, 0x30, 0x7b, 0x66, 0x48, 0xce, 0x3c, 0x72, 0x86, 0xc3, 0x12, 0x45, 0x8e, 0x86, 0xfa, 0x6d, + 0x79, 0x77, 0xf5, 0xb3, 0xa2, 0xb4, 0x5a, 0xed, 0x5a, 0x92, 0xb5, 0xbb, 0x1a, 0x91, 0x5c, 0x89, + 0x6b, 0x89, 0x1c, 0x37, 0x49, 0xf9, 0xef, 0x83, 0xfb, 0x6b, 0x4d, 0x17, 0x87, 0xbd, 0x9a, 0xe9, + 0x6e, 0x77, 0xf7, 0x48, 0xa2, 0x4f, 0x39, 0x26, 0x3e, 0x19, 0x70, 0x1c, 0x03, 0x46, 0x90, 0x20, + 0x87, 0x20, 0x01, 0x72, 0x70, 0x2e, 0x09, 0x0c, 0x04, 0x49, 0x80, 0x20, 0x30, 0x9c, 0x00, 0x06, + 0x7c, 0x48, 0x00, 0x1f, 0x02, 0xc4, 0xde, 0xdc, 0x72, 0xc8, 0x25, 0x3e, 0xe4, 0x14, 0x07, 0xf5, + 0xd7, 0xdd, 0xd5, 0xdd, 0xd3, 0x33, 0xe4, 0xae, 0x77, 0xe5, 0x13, 0xa7, 0x5f, 0xbd, 0xf7, 0xea, + 0xd5, 0xab, 0x57, 0xaf, 0x5f, 0xd5, 0x7b, 0xd5, 0x84, 0x8a, 0xe1, 0x5a, 0x2b, 0xae, 0xe7, 0x04, + 0x0e, 0x02, 0x6f, 0x60, 0x07, 0x56, 0x1f, 0xaf, 0x3c, 0x7b, 0xa3, 0x79, 0xa5, 0x6b, 0x05, 0xfb, + 0x83, 0x27, 0x2b, 0x1d, 0xa7, 0x7f, 0xb5, 0xeb, 0x74, 0x9d, 0xab, 0x14, 0xe5, 0xc9, 0x60, 0x8f, + 0x3e, 0xd1, 0x07, 0xfa, 0x8b, 0x91, 0xaa, 0x97, 0xa0, 0xf6, 0x18, 0x7b, 0xbe, 0xe5, 0xd8, 0x1a, + 0xfe, 0xe6, 0x00, 0xfb, 0x01, 0x6a, 0xc0, 0xf4, 0x33, 0x06, 0x69, 0x28, 0x67, 0x95, 0x0b, 0x15, + 0x4d, 0x3c, 0xaa, 0x7f, 0xa6, 0xc0, 0x5c, 0x88, 0xec, 0xbb, 0x8e, 0xed, 0xe3, 0xe1, 0xd8, 0xe8, + 0x1c, 0xcc, 0x72, 0xb1, 0x74, 0xdb, 0xe8, 0xe3, 0x46, 0x81, 0x36, 0xcf, 0x70, 0xd8, 0xa6, 0xd1, + 0xc7, 0xe8, 0x35, 0x98, 0x13, 0x28, 0x82, 0x49, 0x91, 0x62, 0xd5, 0x38, 0x98, 0xf7, 0x86, 0x56, + 0xe0, 0x98, 0x40, 0x34, 0x5c, 0x2b, 0x44, 0x2e, 0x51, 0xe4, 0x79, 0xde, 0xd4, 0x72, 0x2d, 0x8e, + 0xaf, 0x7e, 0x1d, 0x2a, 0x6b, 0x9b, 0xdb, 0xab, 0x8e, 0xbd, 0x67, 0x75, 0x89, 0x88, 0x3e, 0xf6, + 0x08, 0x4d, 0x43, 0x39, 0x5b, 0x24, 0x22, 0xf2, 0x47, 0xd4, 0x84, 0xb2, 0x8f, 0x0d, 0xaf, 0xb3, + 0x8f, 0xfd, 0x46, 0x81, 0x36, 0x85, 0xcf, 0x84, 0xca, 0x71, 0x03, 0xcb, 0xb1, 0xfd, 0x46, 0x91, + 0x51, 0xf1, 0x47, 0xf5, 0x0f, 0x15, 0x98, 0x69, 0x3b, 0x5e, 0xf0, 0xc8, 0x70, 0x5d, 0xcb, 0xee, + 0xa2, 0x6b, 0x50, 0xa6, 0xba, 0xec, 0x38, 0x3d, 0xaa, 0x83, 0xda, 0xf5, 0x85, 0x95, 0x68, 0x42, + 0x56, 0xda, 0xbc, 0x4d, 0x0b, 0xb1, 0xd0, 0x2b, 0x50, 0xeb, 0x38, 0x76, 0x60, 0x58, 0x36, 0xf6, + 0x74, 0xd7, 0xf1, 0x02, 0xaa, 0x9c, 0x49, 0xad, 0x1a, 0x42, 0x09, 0x7f, 0xb4, 0x0c, 0x95, 0x7d, + 0xc7, 0x0f, 0x18, 0x46, 0x91, 0x62, 0x94, 0x09, 0x80, 0x36, 0x2e, 0xc1, 0x34, 0x6d, 0xb4, 0x5c, + 0xae, 0x86, 0x29, 0xf2, 0xb8, 0xe1, 0xaa, 0x3f, 0x53, 0x60, 0xf2, 0x91, 0x33, 0xb0, 0x83, 0x44, + 0x37, 0x46, 0xb0, 0xcf, 0xa7, 0x28, 0xd6, 0x8d, 0x11, 0xec, 0x47, 0xdd, 0x10, 0x0c, 0x36, 0x4b, + 0xac, 0x1b, 0xd2, 0xd8, 0x84, 0xb2, 0x87, 0x0d, 0xd3, 0xb1, 0x7b, 0x07, 0x54, 0x84, 0xb2, 0x16, + 0x3e, 0x93, 0xe9, 0xf3, 0x71, 0xcf, 0xb2, 0x07, 0x2f, 0x74, 0x0f, 0xf7, 0x8c, 0x27, 0xb8, 0x47, + 0x45, 0x29, 0x6b, 0x35, 0x0e, 0xd6, 0x18, 0x14, 0xbd, 0x0b, 0x33, 0xae, 0xe7, 0xb8, 0x46, 0xd7, + 0x20, 0x1a, 0x6c, 0x4c, 0x52, 0x25, 0x9d, 0x8c, 0x2b, 0x89, 0x0a, 0xdc, 0x8e, 0x70, 0xb4, 0x38, + 0x81, 0xaa, 0x43, 0x65, 0x63, 0x4d, 0xa8, 0x3b, 0x1c, 0xb8, 0x49, 0x87, 0x53, 0xe5, 0x03, 0x37, + 0x89, 0xc1, 0x45, 0xc3, 0xb5, 0x4c, 0x3a, 0x94, 0xaa, 0x36, 0x13, 0xc2, 0x36, 0x4c, 0xb4, 0x08, + 0x53, 0x3d, 0x6c, 0x77, 0x83, 0x7d, 0x3a, 0x96, 0xaa, 0xc6, 0x9f, 0xd4, 0xdf, 0x57, 0xa0, 0xba, + 0xeb, 0x63, 0x8f, 0x58, 0xa5, 0xef, 0x1a, 0x1d, 0x8c, 0xae, 0x40, 0xa9, 0xef, 0x98, 0x98, 0x4f, + 0xe8, 0x89, 0xb8, 0xac, 0x21, 0xd2, 0x23, 0xc7, 0xc4, 0x1a, 0x45, 0x43, 0x17, 0xa1, 0x34, 0xb0, + 0x4c, 0x66, 0x45, 0x33, 0xd7, 0x8f, 0xc7, 0xd1, 0x43, 0xc9, 0x35, 0x8a, 0x42, 0x50, 0xbb, 0x04, + 0xb5, 0x98, 0x8b, 0x4a, 0x50, 0xd4, 0x5f, 0x2b, 0x30, 0x17, 0xf6, 0xb6, 0x45, 0xcd, 0x0f, 0xbd, + 0x09, 0xd3, 0x36, 0x0e, 0x9e, 0x3b, 0xde, 0xd3, 0xd1, 0xb2, 0x09, 0x4c, 0x74, 0x19, 0x8a, 0x2e, + 0xd7, 0x48, 0x2e, 0x01, 0xc1, 0x22, 0xc8, 0x96, 0xdb, 0xa1, 0x1a, 0xca, 0x47, 0xb6, 0xdc, 0x0e, + 0x31, 0x9e, 0xc0, 0xf0, 0xba, 0x98, 0xce, 0x07, 0x33, 0xc4, 0x32, 0x03, 0x6c, 0x98, 0xe8, 0x2e, + 0xd4, 0x06, 0x3e, 0xf6, 0x6c, 0x5f, 0x17, 0x4b, 0x89, 0x4c, 0xfd, 0x8c, 0xcc, 0x54, 0xd2, 0xbb, + 0x56, 0x65, 0x04, 0x5b, 0x7c, 0xad, 0xa9, 0x00, 0x1b, 0x76, 0xf0, 0xf6, 0x8d, 0xc7, 0x46, 0x6f, + 0x80, 0xd1, 0x02, 0x4c, 0x3e, 0x23, 0x3f, 0xe8, 0xc8, 0x8b, 0x1a, 0x7b, 0x50, 0xff, 0xb6, 0x04, + 0xcb, 0x0f, 0x89, 0xb9, 0x6d, 0x1b, 0xb6, 0xf9, 0xc4, 0x79, 0xb1, 0x8d, 0x3b, 0x03, 0xcf, 0x0a, + 0x0e, 0x56, 0x1d, 0x3b, 0xc0, 0x2f, 0x02, 0xf4, 0x00, 0xe6, 0x6d, 0xc1, 0x3f, 0x14, 0x44, 0xa1, + 0x82, 0x2c, 0x67, 0x8e, 0x8e, 0x75, 0xae, 0xd5, 0x6d, 0x19, 0xe0, 0xa3, 0x7b, 0x91, 0xc1, 0x0b, + 0x3e, 0x85, 0xf4, 0x80, 0xb6, 0xd7, 0xa9, 0x34, 0x9c, 0x8b, 0x58, 0x0b, 0x82, 0xc7, 0xdb, 0x40, + 0x5c, 0xa0, 0x6e, 0xf8, 0x3a, 0x19, 0x29, 0xd5, 0xf2, 0xcc, 0xf5, 0x45, 0xc9, 0x0a, 0xc2, 0x01, + 0x6b, 0x15, 0x6f, 0x60, 0xb7, 0x7c, 0xa2, 0x21, 0x74, 0x93, 0xba, 0x53, 0x42, 0xd7, 0xf5, 0x9c, + 0x81, 0xdb, 0x28, 0xe7, 0x12, 0x02, 0x25, 0xbc, 0x4f, 0x30, 0xa9, 0x97, 0xe5, 0x4b, 0x56, 0xf7, + 0x1c, 0x27, 0xd8, 0xf3, 0xc5, 0x32, 0x15, 0x60, 0x8d, 0x42, 0xd1, 0x55, 0x38, 0xe6, 0x0f, 0x5c, + 0xb7, 0x87, 0xfb, 0xd8, 0x0e, 0x8c, 0x1e, 0xeb, 0x88, 0xcc, 0x59, 0xf1, 0x42, 0x51, 0x43, 0xf1, + 0x26, 0xca, 0xd8, 0x47, 0xa7, 0x01, 0x5c, 0xcf, 0x7a, 0x66, 0xf5, 0x70, 0x17, 0x9b, 0x8d, 0x29, + 0xca, 0x34, 0x06, 0x41, 0x6f, 0x11, 0xcf, 0xdb, 0xe9, 0x38, 0x7d, 0xb7, 0x51, 0x49, 0xeb, 0x5b, + 0xcc, 0x53, 0xdb, 0x73, 0xf6, 0xac, 0x1e, 0xd6, 0x04, 0x2e, 0xfa, 0x3c, 0x94, 0x0d, 0xd7, 0x35, + 0xbc, 0xbe, 0xe3, 0x35, 0x60, 0x34, 0x5d, 0x88, 0x8c, 0x6e, 0xc0, 0x02, 0xe7, 0xa1, 0xbb, 0xac, + 0x91, 0x39, 0xb5, 0x69, 0x62, 0x97, 0xf7, 0x0a, 0x0d, 0x45, 0x43, 0xbc, 0x9d, 0xd3, 0x12, 0x17, + 0xa7, 0xfe, 0xa3, 0x02, 0x73, 0x09, 0x9e, 0xe8, 0x03, 0x98, 0x15, 0x1c, 0x82, 0x03, 0x57, 0xb8, + 0x81, 0xd7, 0x72, 0xc4, 0x58, 0xe1, 0x7f, 0x77, 0x0e, 0x5c, 0x4c, 0xbd, 0x97, 0x78, 0x40, 0xe7, + 0xa1, 0xda, 0x73, 0x3a, 0x46, 0x8f, 0x7a, 0x2d, 0x0f, 0xef, 0x71, 0x1f, 0x3b, 0x1b, 0x02, 0x35, + 0xbc, 0xa7, 0xde, 0x85, 0x99, 0x18, 0x03, 0x84, 0xa0, 0xa6, 0xb1, 0xae, 0xd6, 0xf0, 0x9e, 0x31, + 0xe8, 0x05, 0xf5, 0x09, 0x54, 0x03, 0xd8, 0xb5, 0x3b, 0xe4, 0x9d, 0x66, 0x63, 0xb3, 0xae, 0xa0, + 0x2a, 0x54, 0x1e, 0x0a, 0x16, 0xf5, 0x82, 0xfa, 0x83, 0x22, 0x1c, 0xa7, 0x86, 0xd7, 0x76, 0x4c, + 0xbe, 0x12, 0xf8, 0x0b, 0xf0, 0x3c, 0x54, 0x3b, 0x74, 0x2e, 0x75, 0xd7, 0xf0, 0xb0, 0x1d, 0xf0, + 0xd7, 0xc0, 0x2c, 0x03, 0xb6, 0x29, 0x0c, 0x69, 0x50, 0xf7, 0xf9, 0x88, 0xf4, 0x0e, 0x5b, 0x39, + 0xdc, 0xb8, 0xa5, 0x51, 0xe7, 0x2c, 0x34, 0x6d, 0xce, 0x4f, 0xad, 0xbc, 0x69, 0xff, 0xc0, 0xef, + 0x04, 0x3d, 0xe1, 0xed, 0x56, 0x52, 0xac, 0x92, 0xc2, 0xae, 0x6c, 0x33, 0x82, 0x75, 0x3b, 0xf0, + 0x0e, 0x34, 0x41, 0x8e, 0xde, 0x83, 0xb2, 0xf3, 0x0c, 0x7b, 0xfb, 0xd8, 0x60, 0x5e, 0x66, 0xe6, + 0xfa, 0xf9, 0x14, 0xab, 0x55, 0xe1, 0xe8, 0x35, 0xec, 0x3b, 0x03, 0xaf, 0x83, 0x7d, 0x2d, 0x24, + 0x42, 0x2d, 0xa8, 0x78, 0x02, 0xcc, 0xbd, 0xd0, 0x58, 0x1c, 0x22, 0xaa, 0xe6, 0x6d, 0x98, 0x8d, + 0x0b, 0x87, 0xea, 0x50, 0x7c, 0x8a, 0x0f, 0xb8, 0x32, 0xc9, 0xcf, 0xc8, 0x3f, 0xb1, 0x19, 0x66, + 0x0f, 0xb7, 0x0b, 0x37, 0x15, 0xd5, 0x03, 0x14, 0x8d, 0xf4, 0x11, 0x0e, 0x0c, 0xd3, 0x08, 0x0c, + 0x84, 0xa0, 0x44, 0x43, 0x23, 0xc6, 0x82, 0xfe, 0x26, 0x5c, 0x07, 0xdc, 0x55, 0x57, 0x34, 0xf2, + 0x13, 0x9d, 0x84, 0x4a, 0xe8, 0x89, 0x78, 0x7c, 0x14, 0x01, 0x48, 0x9c, 0x62, 0x04, 0x01, 0xee, + 0xbb, 0x01, 0x55, 0x4c, 0x55, 0x13, 0x8f, 0xea, 0xef, 0x4d, 0x42, 0x3d, 0x65, 0x0b, 0xb7, 0xa1, + 0xdc, 0xe7, 0xdd, 0x73, 0x1f, 0x78, 0x5a, 0x0a, 0x56, 0x52, 0x42, 0x6a, 0x21, 0x3e, 0x89, 0x05, + 0x88, 0xad, 0xc5, 0xa2, 0xb9, 0xf0, 0x99, 0x19, 0x79, 0x57, 0x37, 0x2d, 0x0f, 0x77, 0x02, 0xc7, + 0x3b, 0xe0, 0x82, 0xce, 0xf6, 0x9c, 0xee, 0x9a, 0x80, 0xa1, 0x1b, 0x00, 0xa6, 0xed, 0xeb, 0xd4, + 0x86, 0xbb, 0x7c, 0x1e, 0xa5, 0x17, 0x60, 0x18, 0xb4, 0x69, 0x15, 0xd3, 0xf6, 0xb9, 0xc8, 0x77, + 0xa0, 0x4a, 0x22, 0x20, 0xbd, 0xcf, 0xde, 0x8d, 0xcc, 0x21, 0xcd, 0x5c, 0x5f, 0x92, 0xe5, 0x0e, + 0xe3, 0x31, 0x6d, 0xd6, 0x8d, 0x1e, 0x7c, 0x74, 0x17, 0xa6, 0x68, 0x10, 0xe2, 0x37, 0xa6, 0x28, + 0xd9, 0x85, 0xec, 0xe1, 0x72, 0xeb, 0x7b, 0x48, 0x51, 0x99, 0xf1, 0x71, 0x3a, 0xb4, 0x05, 0x33, + 0x86, 0x6d, 0x3b, 0x81, 0xc1, 0x3c, 0xfe, 0x34, 0x65, 0x73, 0x25, 0x97, 0x4d, 0x2b, 0xc2, 0x67, + 0xbc, 0xe2, 0x1c, 0xd0, 0xe7, 0x61, 0x92, 0xbe, 0x12, 0xb8, 0x0f, 0x3f, 0x37, 0x72, 0x51, 0x68, + 0x0c, 0x1f, 0xbd, 0x03, 0xd3, 0xcf, 0x2d, 0xdb, 0x74, 0x9e, 0xfb, 0xdc, 0x9f, 0x4a, 0x26, 0xfc, + 0x65, 0xd6, 0x94, 0x22, 0x16, 0x34, 0xcd, 0x5b, 0x30, 0x13, 0x1b, 0xdf, 0x61, 0xec, 0xb7, 0xf9, + 0x2e, 0xd4, 0x93, 0x63, 0x3a, 0x94, 0xfd, 0x0f, 0x60, 0x41, 0x1b, 0xd8, 0x91, 0x68, 0x62, 0xb3, + 0x71, 0x03, 0xa6, 0xb8, 0x35, 0x30, 0x63, 0x3c, 0x99, 0xa7, 0x56, 0x8d, 0xe3, 0xc6, 0xf7, 0x0d, + 0xfb, 0x86, 0x6d, 0xf6, 0xb0, 0xc7, 0x7b, 0x14, 0xfb, 0x86, 0x07, 0x0c, 0xaa, 0xbe, 0x03, 0xc7, + 0x13, 0xdd, 0xf2, 0x6d, 0xcb, 0xe7, 0xa0, 0xe6, 0x3a, 0xa6, 0xee, 0x33, 0xb0, 0x88, 0x25, 0x2b, + 0xc4, 0x76, 0x04, 0xee, 0x86, 0x49, 0xc8, 0xb7, 0x03, 0xc7, 0x4d, 0x8b, 0x3d, 0x1e, 0x79, 0x03, + 0x16, 0x93, 0xe4, 0xac, 0x7b, 0xf5, 0x3d, 0x58, 0xd2, 0x70, 0xdf, 0x79, 0x86, 0x8f, 0xca, 0xba, + 0x09, 0x8d, 0x34, 0x03, 0xce, 0xfc, 0xab, 0xb0, 0x14, 0x41, 0xb7, 0x03, 0x23, 0x18, 0xf8, 0x87, + 0x62, 0xce, 0xf7, 0x74, 0x4f, 0x1c, 0x9f, 0x4d, 0x64, 0x59, 0x13, 0x8f, 0xea, 0x12, 0x4c, 0xb6, + 0x1d, 0x73, 0xa3, 0x8d, 0x6a, 0x50, 0xb0, 0x5c, 0x4e, 0x5c, 0xb0, 0x5c, 0xb5, 0x13, 0xef, 0x73, + 0x93, 0x45, 0x9d, 0xac, 0xeb, 0x24, 0x2a, 0xba, 0x09, 0x35, 0xc3, 0x34, 0x2d, 0x62, 0x48, 0x46, + 0x4f, 0xb7, 0x5c, 0x11, 0x34, 0xcf, 0x27, 0xa6, 0x7e, 0xa3, 0xad, 0x55, 0x23, 0xc4, 0x0d, 0xd7, + 0x57, 0xef, 0x41, 0x25, 0x0a, 0xd0, 0xdf, 0x8a, 0xf6, 0x67, 0x85, 0xd1, 0xb1, 0x5c, 0xb8, 0x79, + 0xdb, 0x4c, 0xbd, 0x24, 0xb9, 0x98, 0x6f, 0x01, 0x84, 0x4e, 0x55, 0x84, 0x87, 0xc7, 0x33, 0x59, + 0x6a, 0x31, 0x44, 0xf5, 0xdf, 0x4b, 0x71, 0x27, 0x1b, 0x1b, 0xb2, 0x19, 0x0e, 0xd9, 0x94, 0x9c, + 0x6e, 0xe1, 0x90, 0x4e, 0xf7, 0x0d, 0x98, 0xf4, 0x03, 0x23, 0xc0, 0x3c, 0x1e, 0x5f, 0xce, 0x26, + 0x24, 0x1d, 0x63, 0x8d, 0x61, 0xa2, 0x53, 0x00, 0x1d, 0x0f, 0x1b, 0x01, 0x36, 0x75, 0x83, 0xbd, + 0x15, 0x8a, 0x5a, 0x85, 0x43, 0x5a, 0x01, 0xf1, 0x22, 0x62, 0x07, 0x91, 0xf1, 0x22, 0x1c, 0x32, + 0x8d, 0xd1, 0x5e, 0x22, 0xf4, 0x5e, 0x53, 0x23, 0xbd, 0x17, 0x27, 0xe5, 0xde, 0x2b, 0xf2, 0xc4, + 0xd3, 0x79, 0x9e, 0x98, 0x11, 0x8d, 0xe3, 0x89, 0xcb, 0x79, 0x9e, 0x98, 0xb3, 0xc9, 0xf7, 0xc4, + 0x19, 0x8e, 0xa4, 0x92, 0xe5, 0x48, 0x3e, 0x4b, 0xd7, 0xf9, 0x53, 0x05, 0x1a, 0xe9, 0xf5, 0xcc, + 0xfd, 0xd8, 0x0d, 0x98, 0xf2, 0x29, 0x24, 0xdf, 0x7f, 0x72, 0x2a, 0x8e, 0x8b, 0xee, 0x41, 0xc9, + 0xb2, 0xf7, 0x1c, 0xbe, 0xf0, 0x56, 0x72, 0x69, 0x78, 0x4f, 0x2b, 0x1b, 0xf6, 0x9e, 0xc3, 0x34, + 0x48, 0x69, 0x9b, 0x9f, 0x87, 0x4a, 0x08, 0x3a, 0xd4, 0x78, 0x36, 0x60, 0x21, 0x61, 0xb7, 0x6c, + 0x73, 0x17, 0x1a, 0xba, 0x32, 0xae, 0xa1, 0xab, 0xbf, 0x52, 0xe2, 0x8b, 0xef, 0x7d, 0xab, 0x17, + 0x60, 0x2f, 0xb5, 0xf8, 0xde, 0x16, 0x7c, 0xd9, 0xca, 0x3b, 0x9b, 0xc3, 0x97, 0xed, 0x9d, 0xf8, + 0x2a, 0x7a, 0x0c, 0x35, 0x6a, 0x76, 0xba, 0x8f, 0x7b, 0x34, 0x7e, 0xe1, 0x31, 0xec, 0xd5, 0x6c, + 0x06, 0xac, 0x77, 0x66, 0xb6, 0xdb, 0x9c, 0x82, 0xe9, 0xab, 0xda, 0x8b, 0xc3, 0x9a, 0x77, 0x01, + 0xa5, 0x91, 0x0e, 0xa5, 0xc1, 0x47, 0xc4, 0x87, 0xf9, 0x41, 0xe6, 0xdb, 0x74, 0x8f, 0x8a, 0x91, + 0x6f, 0x0d, 0x4c, 0x54, 0x8d, 0xe3, 0xaa, 0xff, 0x5a, 0x04, 0x88, 0x1a, 0x5f, 0x72, 0xe7, 0x75, + 0x3b, 0x74, 0x22, 0x2c, 0x0a, 0x54, 0xb3, 0x59, 0x66, 0xba, 0x8f, 0x0d, 0xd9, 0x7d, 0xb0, 0x78, + 0xf0, 0xb5, 0x21, 0x0c, 0x0e, 0xed, 0x38, 0xa6, 0x5f, 0x36, 0xc7, 0xf1, 0x3e, 0x2c, 0x26, 0xcd, + 0x84, 0x7b, 0x8d, 0xd7, 0x61, 0xd2, 0x0a, 0x70, 0x9f, 0x9d, 0x87, 0x26, 0x0e, 0x11, 0x62, 0xe8, + 0x0c, 0x49, 0x7d, 0x17, 0x16, 0xe5, 0xb9, 0x3a, 0x5c, 0x38, 0xa1, 0x3e, 0x4c, 0xc6, 0x23, 0x91, + 0xfb, 0xe2, 0xf6, 0x91, 0x79, 0x1c, 0x93, 0xa4, 0x61, 0x98, 0xea, 0x8f, 0x15, 0x38, 0x9e, 0x68, + 0x1a, 0xb2, 0xf0, 0xbf, 0x9e, 0x5a, 0xc0, 0xcc, 0xdf, 0xdd, 0xc8, 0xe9, 0xe5, 0x53, 0x5c, 0xc5, + 0x5f, 0x86, 0xa6, 0x3c, 0x3d, 0x92, 0x6a, 0x6f, 0x25, 0x96, 0xf2, 0xb9, 0x91, 0x42, 0x87, 0xeb, + 0xb9, 0x0d, 0xcb, 0x99, 0x8c, 0xd3, 0x3a, 0x2f, 0x8e, 0xa9, 0xf3, 0xff, 0x29, 0xc4, 0x7d, 0x76, + 0x2b, 0x08, 0x3c, 0xeb, 0xc9, 0x20, 0xc0, 0x9f, 0x6c, 0xa0, 0xb3, 0x16, 0xae, 0x6c, 0xe6, 0x67, + 0x5f, 0xcf, 0xa6, 0x8c, 0x7a, 0xcf, 0x5c, 0xe3, 0xdb, 0xf2, 0x1a, 0x2f, 0x51, 0x56, 0x6f, 0x8c, + 0x64, 0x95, 0xbb, 0xda, 0x3f, 0xcb, 0x45, 0xfc, 0x4f, 0x0a, 0xcc, 0x25, 0x66, 0x05, 0xdd, 0x05, + 0x30, 0x42, 0xd1, 0xb9, 0x7d, 0x9c, 0x1d, 0x35, 0x44, 0x2d, 0x46, 0x43, 0xde, 0x89, 0x2c, 0x86, + 0xcb, 0x78, 0x27, 0x66, 0xc4, 0x70, 0x61, 0x08, 0x77, 0x27, 0xda, 0x80, 0xb2, 0x83, 0x4b, 0x35, + 0x77, 0x03, 0xca, 0x68, 0x05, 0x89, 0xfa, 0xdd, 0x02, 0x2c, 0x64, 0x71, 0x47, 0xaf, 0x42, 0xb1, + 0xe3, 0x0e, 0xf8, 0x48, 0xa4, 0xe4, 0xc9, 0xaa, 0x3b, 0xd8, 0xf5, 0x8d, 0x2e, 0xd6, 0x08, 0x02, + 0xba, 0x0a, 0x53, 0x7d, 0xdc, 0x77, 0xbc, 0x03, 0x2e, 0xb7, 0x74, 0x04, 0xf0, 0x88, 0xb6, 0x30, + 0x6c, 0x8e, 0x86, 0xae, 0x47, 0xa1, 0x2e, 0x93, 0xb7, 0x21, 0x45, 0xf4, 0xac, 0x89, 0x91, 0x84, + 0xf1, 0xed, 0x75, 0x98, 0x76, 0x3d, 0xa7, 0x83, 0x7d, 0x9f, 0x9f, 0x50, 0x34, 0x12, 0xd9, 0x1c, + 0xd2, 0xc4, 0x69, 0x38, 0x22, 0xba, 0x0d, 0x10, 0xa6, 0x19, 0xc4, 0x9b, 0xa9, 0x29, 0x8d, 0x43, + 0xb4, 0x32, 0x95, 0xc4, 0xb0, 0xd5, 0x1f, 0x15, 0x60, 0x31, 0x5b, 0x73, 0xe8, 0x4a, 0x5c, 0x2f, + 0xcb, 0x19, 0xaa, 0x96, 0xd5, 0xf3, 0x76, 0x42, 0x3d, 0xa7, 0x33, 0x28, 0xb2, 0xb4, 0x74, 0x2b, + 0xa9, 0xa5, 0x33, 0x19, 0x84, 0xd9, 0xca, 0xba, 0x95, 0x54, 0x56, 0x16, 0x69, 0xb6, 0xce, 0x5a, + 0x19, 0x3a, 0x3b, 0x97, 0x35, 0xc6, 0xe1, 0xaa, 0xfb, 0x7b, 0x05, 0x66, 0xe3, 0x72, 0xa1, 0x93, + 0x50, 0x21, 0xd4, 0x7e, 0x60, 0xf4, 0x5d, 0x9e, 0x24, 0x88, 0x00, 0x68, 0x13, 0xe6, 0x4d, 0x76, + 0x9a, 0xaa, 0x5b, 0x76, 0x80, 0xbd, 0x3d, 0xa3, 0x23, 0xa2, 0xc2, 0x73, 0x19, 0x76, 0xb1, 0x21, + 0x70, 0x98, 0xe0, 0x75, 0x4e, 0x1b, 0x82, 0xc9, 0x08, 0x42, 0x3e, 0xc2, 0x6b, 0x8d, 0xc1, 0x28, + 0x46, 0xa4, 0xfe, 0x8b, 0x02, 0xc7, 0x32, 0x14, 0x3c, 0x62, 0x20, 0xbb, 0xc3, 0x07, 0x72, 0x61, + 0xf8, 0xd4, 0x8d, 0x1c, 0xcf, 0x83, 0x8c, 0xf1, 0x8c, 0xcf, 0x2f, 0x3e, 0xac, 0x5f, 0x2b, 0x70, + 0x3c, 0x13, 0x2b, 0xf3, 0xc8, 0xf3, 0x3a, 0x94, 0xbd, 0x17, 0xfa, 0x93, 0x83, 0x00, 0xfb, 0x59, + 0x0b, 0x7b, 0x37, 0x96, 0xd7, 0x98, 0xf6, 0x5e, 0xdc, 0x23, 0x78, 0xe8, 0x06, 0x54, 0xbc, 0x17, + 0x3a, 0xf6, 0x3c, 0xc7, 0x13, 0xbe, 0x68, 0x28, 0x51, 0xd9, 0x7b, 0xb1, 0x4e, 0x11, 0x49, 0x4f, + 0x81, 0xe8, 0xa9, 0x34, 0xa2, 0xa7, 0x20, 0xea, 0x29, 0x08, 0x7b, 0x9a, 0x1c, 0xd1, 0x53, 0xc0, + 0x7b, 0x52, 0xff, 0xbc, 0x00, 0x27, 0xf3, 0xd4, 0xf5, 0x89, 0x29, 0x62, 0x1d, 0x90, 0xf7, 0x42, + 0x77, 0x8d, 0xce, 0x53, 0x1c, 0xf8, 0xba, 0xe9, 0x39, 0xae, 0x8b, 0xcd, 0x51, 0x1a, 0xa9, 0x7b, + 0x2f, 0xda, 0x8c, 0x62, 0x8d, 0x11, 0x1c, 0x49, 0x33, 0xeb, 0x80, 0x82, 0x74, 0xd7, 0x23, 0x54, + 0x54, 0x0f, 0x12, 0x5d, 0xab, 0x1f, 0xc2, 0x6c, 0xdc, 0x43, 0x8c, 0xb0, 0xfd, 0x3b, 0x50, 0xe5, + 0x1e, 0x44, 0xef, 0x38, 0x03, 0x3b, 0x18, 0xa5, 0xa8, 0x59, 0x8e, 0xbd, 0x4a, 0x90, 0xd5, 0x6f, + 0x86, 0xcb, 0xed, 0x53, 0xeb, 0xf2, 0x2f, 0x14, 0xa8, 0x6c, 0xf4, 0x8d, 0x2e, 0xde, 0x76, 0x71, + 0x87, 0xbc, 0xe9, 0x2d, 0xf2, 0xc0, 0xe7, 0x9d, 0x3d, 0xa0, 0x07, 0x72, 0xd4, 0xc2, 0xe2, 0xd4, + 0x57, 0xa5, 0xdc, 0x9e, 0xe0, 0x30, 0x22, 0x54, 0xf9, 0xb8, 0xf1, 0xc6, 0x75, 0x28, 0x7f, 0x11, + 0x1f, 0xb0, 0x1d, 0xf9, 0x98, 0x74, 0xea, 0xf7, 0x4a, 0xb0, 0x34, 0x24, 0x7f, 0x42, 0xb7, 0x73, + 0xee, 0x40, 0x77, 0xb1, 0x67, 0x39, 0xa6, 0x50, 0x6d, 0xc7, 0x1d, 0xb4, 0x29, 0x00, 0x2d, 0x03, + 0x79, 0xd0, 0xbf, 0x39, 0x70, 0x78, 0xc4, 0x58, 0xd4, 0xca, 0x1d, 0x77, 0xf0, 0x25, 0xf2, 0x2c, + 0x68, 0xfd, 0x7d, 0xc3, 0xc3, 0x6c, 0x91, 0x33, 0xda, 0x6d, 0x0a, 0x40, 0x6f, 0xc0, 0x71, 0xf6, + 0x02, 0xd3, 0x7b, 0x56, 0xdf, 0x22, 0xae, 0x30, 0x66, 0xbf, 0x45, 0x0d, 0xb1, 0xc6, 0x87, 0xa4, + 0x6d, 0xc3, 0x66, 0x16, 0xab, 0x42, 0xd5, 0x71, 0xfa, 0xba, 0xdf, 0x71, 0x3c, 0xac, 0x1b, 0xe6, + 0x87, 0xd4, 0x58, 0x8b, 0xda, 0x8c, 0xe3, 0xf4, 0xb7, 0x09, 0xac, 0x65, 0x7e, 0x88, 0xce, 0xc0, + 0x4c, 0xc7, 0x1d, 0xf8, 0x38, 0xd0, 0xc9, 0x1f, 0x7a, 0xca, 0x55, 0xd1, 0x80, 0x81, 0x56, 0xdd, + 0x81, 0x1f, 0x43, 0xe8, 0x93, 0x3d, 0xd4, 0x74, 0x1c, 0xe1, 0x11, 0xee, 0xd3, 0x34, 0xf1, 0xfe, + 0xa0, 0x8b, 0x5d, 0xa3, 0x8b, 0x99, 0x68, 0xe2, 0xa8, 0x4a, 0x4a, 0x13, 0x3f, 0xe0, 0x28, 0x54, + 0x40, 0xad, 0xb6, 0x1f, 0x7f, 0xf4, 0xd1, 0x07, 0x30, 0x3d, 0xb0, 0xad, 0x3d, 0x0b, 0x9b, 0x8d, + 0x0a, 0xa5, 0xbd, 0x36, 0x46, 0xb6, 0x6a, 0x65, 0x97, 0x91, 0xf0, 0xe4, 0x19, 0x67, 0x80, 0x6e, + 0x43, 0x93, 0x2b, 0xca, 0x7f, 0x6e, 0xb8, 0x49, 0x6d, 0x01, 0x55, 0xc1, 0x22, 0xc3, 0xd8, 0x7e, + 0x6e, 0xb8, 0x71, 0x8d, 0x35, 0x6f, 0xc3, 0x6c, 0x9c, 0xe9, 0xa1, 0x6c, 0xe9, 0x1e, 0x54, 0xa5, + 0x41, 0x92, 0xd9, 0xa6, 0x4a, 0xf1, 0xad, 0x6f, 0x89, 0x05, 0x50, 0x26, 0x80, 0x6d, 0xeb, 0x5b, + 0x34, 0xb9, 0x4f, 0x25, 0xa3, 0x7c, 0x4a, 0x1a, 0x7b, 0x50, 0x0d, 0xa8, 0x4a, 0xf9, 0x74, 0xe2, + 0x37, 0x69, 0xe2, 0x9c, 0xfb, 0x4d, 0xf2, 0x9b, 0xc0, 0x3c, 0xa7, 0x27, 0x24, 0xa0, 0xbf, 0x09, + 0x8c, 0x66, 0x6e, 0x59, 0x1e, 0x8a, 0xfe, 0xa6, 0x5d, 0xe0, 0x67, 0xbc, 0x4c, 0xa5, 0xa2, 0xb1, + 0x07, 0xf5, 0x8f, 0x14, 0x80, 0x55, 0xc3, 0x35, 0x9e, 0x58, 0x3d, 0x2b, 0x38, 0x40, 0x17, 0xa1, + 0x6e, 0x98, 0xa6, 0xde, 0x11, 0x10, 0x0b, 0x8b, 0xba, 0xa1, 0x39, 0xc3, 0x34, 0x57, 0x63, 0x60, + 0x74, 0x19, 0xe6, 0x89, 0xd7, 0x93, 0x71, 0x59, 0x21, 0x51, 0x9d, 0x34, 0x48, 0xc8, 0x37, 0xa1, + 0x41, 0xf8, 0x1a, 0xfd, 0x27, 0x16, 0xb6, 0x03, 0x99, 0x86, 0x55, 0x18, 0x2d, 0x1a, 0xa6, 0xd9, + 0x62, 0xcd, 0x71, 0x4a, 0xf5, 0xef, 0xa6, 0xe0, 0x94, 0x3c, 0xe3, 0xc9, 0x12, 0x87, 0xdb, 0x30, + 0x9b, 0x90, 0x37, 0x55, 0x1c, 0x10, 0x8d, 0x50, 0x93, 0x70, 0x13, 0x49, 0xfc, 0x42, 0x2a, 0x89, + 0x9f, 0x59, 0x3e, 0x51, 0xfc, 0x84, 0xca, 0x27, 0x4a, 0x1f, 0xb3, 0x7c, 0x62, 0xf2, 0xa8, 0xe5, + 0x13, 0xb3, 0x63, 0x97, 0x4f, 0xbc, 0x4a, 0x8f, 0x7a, 0x44, 0x8f, 0xf4, 0x9d, 0xcd, 0x7c, 0x42, + 0x35, 0xe4, 0x6e, 0x8b, 0x62, 0xb6, 0x44, 0x99, 0xc5, 0xf4, 0x61, 0xca, 0x2c, 0xca, 0x43, 0xcb, + 0x2c, 0xce, 0xc2, 0xac, 0xed, 0xe8, 0x36, 0x7e, 0xae, 0x93, 0x69, 0xf1, 0x1b, 0x33, 0x6c, 0x8e, + 0x6c, 0x67, 0x13, 0x3f, 0x6f, 0x13, 0x08, 0x3a, 0x07, 0xb3, 0x7d, 0xc3, 0x7f, 0x8a, 0x4d, 0x5a, + 0xef, 0xe0, 0x37, 0xaa, 0xd4, 0x9e, 0x66, 0x18, 0xac, 0x4d, 0x40, 0xe8, 0x15, 0x08, 0xe5, 0xe0, + 0x48, 0x35, 0x8a, 0x54, 0x15, 0x50, 0x86, 0x16, 0x2b, 0xd9, 0x98, 0x3b, 0x62, 0xc9, 0x46, 0xfd, + 0x30, 0x25, 0x1b, 0x57, 0xa0, 0x2e, 0x7e, 0x8b, 0x9a, 0x0d, 0x76, 0x04, 0x4f, 0xcb, 0x35, 0xe6, + 0x44, 0x9b, 0xa8, 0xcb, 0x18, 0x56, 0xe1, 0x01, 0xb9, 0x15, 0x1e, 0x3f, 0x54, 0xf8, 0xc6, 0x33, + 0x5c, 0x40, 0x3c, 0xb5, 0x2c, 0x55, 0x05, 0x28, 0x47, 0xa9, 0x0a, 0x40, 0x3b, 0x43, 0xeb, 0x26, + 0x2e, 0x0e, 0xe7, 0x34, 0xaa, 0x72, 0x42, 0xfd, 0xae, 0x02, 0xa7, 0x78, 0xa0, 0x32, 0xa4, 0xaa, + 0x29, 0xc3, 0x2c, 0x95, 0x21, 0x66, 0xd9, 0xf1, 0xb0, 0x89, 0xed, 0xc0, 0x32, 0x7a, 0xba, 0xef, + 0xe2, 0x8e, 0xc8, 0x95, 0x46, 0x60, 0x1a, 0x99, 0x9c, 0x83, 0x59, 0x56, 0x06, 0xc8, 0xf7, 0x73, + 0xac, 0xda, 0x6f, 0x86, 0x56, 0x02, 0x32, 0x90, 0xea, 0xc0, 0xd2, 0x90, 0x24, 0x73, 0xa6, 0x1a, + 0x94, 0xb4, 0x1a, 0x72, 0xc7, 0x94, 0x56, 0xc3, 0xf7, 0x14, 0x38, 0x93, 0xda, 0x06, 0xbe, 0x04, + 0x8a, 0xf8, 0x2b, 0x25, 0xdc, 0xb3, 0x27, 0x4d, 0x6a, 0x35, 0x6d, 0x52, 0xaf, 0xe4, 0xed, 0x6a, + 0x33, 0x8d, 0xea, 0xf1, 0x50, 0xa3, 0xba, 0x9c, 0xbb, 0x43, 0x1e, 0xa5, 0xcf, 0x7f, 0x53, 0xe0, + 0xc4, 0x50, 0x01, 0x12, 0xf1, 0x96, 0x92, 0x8c, 0xb7, 0x78, 0xac, 0x16, 0x85, 0xc0, 0x2c, 0x56, + 0xa3, 0x51, 0x2e, 0x0f, 0x8a, 0xf4, 0xbe, 0xf1, 0xc2, 0xea, 0x0f, 0xfa, 0x3c, 0x58, 0x23, 0xec, + 0x1e, 0x31, 0xc8, 0x51, 0xa2, 0xb5, 0xab, 0xb0, 0xc0, 0x1c, 0x29, 0x0d, 0x18, 0x22, 0x0a, 0x16, + 0xb4, 0xcd, 0xb3, 0x36, 0x12, 0x3b, 0x70, 0x02, 0xb5, 0x05, 0xf3, 0xe1, 0xb0, 0x72, 0x8b, 0x6c, + 0x62, 0x45, 0x33, 0x05, 0xb9, 0x68, 0xc6, 0x86, 0xa9, 0x35, 0xfc, 0xcc, 0xea, 0xe0, 0x4f, 0xa4, + 0x7a, 0xf6, 0x2c, 0xcc, 0xb8, 0xd8, 0xeb, 0x5b, 0xbe, 0x1f, 0xbe, 0x35, 0x2b, 0x5a, 0x1c, 0xa4, + 0xfe, 0x70, 0x0a, 0xe6, 0x92, 0x26, 0x74, 0x2b, 0x55, 0xa3, 0x73, 0x2a, 0xf3, 0x2c, 0x29, 0xe3, + 0x10, 0xf5, 0xb2, 0xd8, 0x5e, 0x14, 0xd2, 0x09, 0xec, 0x70, 0x0b, 0x21, 0x76, 0x1d, 0x0d, 0x98, + 0xee, 0x38, 0xfd, 0xbe, 0x61, 0x9b, 0xa2, 0xc4, 0x99, 0x3f, 0x12, 0x9d, 0x19, 0x5e, 0x97, 0x1d, + 0x9f, 0x56, 0x34, 0xfa, 0x9b, 0xcc, 0x30, 0xd9, 0xc6, 0x5a, 0x36, 0xad, 0xf2, 0xa1, 0x93, 0x50, + 0xd1, 0x80, 0x83, 0xd6, 0x2c, 0x0f, 0x5d, 0x80, 0x12, 0xb6, 0x9f, 0x89, 0xbc, 0x8a, 0x74, 0x8c, + 0x27, 0xb6, 0x14, 0x1a, 0xc5, 0x40, 0x17, 0x61, 0xaa, 0x4f, 0xac, 0x46, 0x64, 0x82, 0xe7, 0x53, + 0xa5, 0xc0, 0x1a, 0x47, 0x40, 0xaf, 0xc3, 0xb4, 0x49, 0xe7, 0x43, 0xc4, 0xd0, 0x48, 0xaa, 0x17, + 0xa2, 0x4d, 0x9a, 0x40, 0x41, 0xef, 0x85, 0x67, 0xc8, 0x95, 0x74, 0x72, 0x27, 0xa1, 0xe6, 0xcc, + 0xe3, 0xe3, 0x4d, 0x79, 0x23, 0x06, 0xe9, 0x93, 0xe8, 0x24, 0x97, 0xfc, 0x3c, 0xd1, 0x09, 0x28, + 0xf7, 0x9c, 0x2e, 0x33, 0x8e, 0x19, 0x56, 0x1f, 0xdf, 0x73, 0xba, 0xd4, 0x36, 0x16, 0x60, 0xd2, + 0x0f, 0x4c, 0xcb, 0xa6, 0xa1, 0x48, 0x59, 0x63, 0x0f, 0x64, 0x0d, 0xd2, 0x1f, 0xba, 0x63, 0x77, + 0x70, 0xa3, 0x4a, 0x9b, 0x2a, 0x14, 0xb2, 0x65, 0x77, 0xe8, 0x96, 0x2c, 0x08, 0x0e, 0x1a, 0x35, + 0x0a, 0x27, 0x3f, 0xa3, 0xa3, 0xdc, 0xb9, 0x21, 0x47, 0xb9, 0x09, 0x81, 0x33, 0x8e, 0x72, 0xeb, + 0x43, 0x8f, 0x72, 0x93, 0xb4, 0x2f, 0x43, 0x29, 0xd1, 0x8f, 0x14, 0x58, 0x5c, 0xa5, 0xf9, 0xc0, + 0x98, 0x0b, 0x3b, 0x4c, 0x79, 0xcb, 0x9b, 0x61, 0xcd, 0x51, 0x46, 0xe1, 0x48, 0x72, 0xc4, 0xa2, + 0xe4, 0x68, 0x15, 0x6a, 0x82, 0x2d, 0x27, 0x2e, 0x8e, 0x51, 0xb0, 0x54, 0xf5, 0xe3, 0x8f, 0xea, + 0x1d, 0x58, 0x4a, 0x49, 0xce, 0xb3, 0x32, 0xc9, 0xe2, 0x75, 0x26, 0x78, 0xbc, 0x78, 0x5d, 0xbd, + 0x0d, 0xc7, 0xb7, 0x03, 0xc3, 0x0b, 0x52, 0xc3, 0x1e, 0x83, 0x96, 0x96, 0x22, 0xc9, 0xb4, 0xbc, + 0x5a, 0x68, 0x1b, 0x16, 0xb6, 0x03, 0xc7, 0x3d, 0x02, 0x53, 0xe2, 0x3f, 0xc8, 0xc8, 0x9d, 0x81, + 0x78, 0x1d, 0x88, 0x47, 0x75, 0x89, 0x15, 0x4e, 0xa5, 0x7b, 0xfb, 0x02, 0x2c, 0xb2, 0xba, 0xa5, + 0xa3, 0x0c, 0xe2, 0x84, 0xa8, 0x9a, 0x4a, 0xf3, 0xbd, 0x0f, 0xc7, 0xa4, 0x73, 0x62, 0x5e, 0x53, + 0x70, 0x4d, 0xae, 0x29, 0x18, 0x7e, 0x24, 0x1f, 0x96, 0x14, 0x7c, 0xbf, 0x10, 0xf3, 0xc7, 0x43, + 0x12, 0x8b, 0x6f, 0xc9, 0x15, 0x05, 0x67, 0x86, 0x73, 0x95, 0x0a, 0x0a, 0xd2, 0xd6, 0x59, 0xcc, + 0xb0, 0xce, 0xdd, 0x54, 0xd6, 0xb2, 0x94, 0xae, 0xd2, 0x48, 0x48, 0xf8, 0xa9, 0xe4, 0x2b, 0x1f, + 0xb2, 0xaa, 0x83, 0xb0, 0xeb, 0x30, 0x55, 0xf9, 0x66, 0x22, 0x55, 0xb9, 0x9c, 0x23, 0x69, 0x98, + 0xa4, 0xfc, 0x7e, 0x09, 0x2a, 0x61, 0x5b, 0x4a, 0xc3, 0x69, 0x55, 0x15, 0x32, 0x54, 0x15, 0x7f, + 0x4f, 0x16, 0x8f, 0xf8, 0x9e, 0x2c, 0x8d, 0xf1, 0x9e, 0x5c, 0x86, 0x0a, 0xfd, 0x41, 0x8b, 0xb7, + 0xd9, 0x7b, 0xaf, 0x4c, 0x01, 0x1a, 0xde, 0x8b, 0x4c, 0x6c, 0x6a, 0x4c, 0x13, 0x4b, 0x54, 0x38, + 0x4c, 0x27, 0x2b, 0x1c, 0x6e, 0x85, 0xef, 0xb0, 0x72, 0x3a, 0xa3, 0x10, 0x72, 0xcc, 0x7c, 0x7b, + 0x25, 0x8e, 0x11, 0x2b, 0xe9, 0x63, 0xc4, 0x88, 0xfe, 0xa5, 0xcd, 0x78, 0x6e, 0xb1, 0xb2, 0x85, + 0xb8, 0x9d, 0x71, 0x1f, 0xf9, 0x96, 0x94, 0x31, 0x52, 0xd2, 0xf7, 0x67, 0x22, 0xbf, 0x10, 0xcf, + 0x12, 0xed, 0xc2, 0xa2, 0x34, 0x11, 0x51, 0x39, 0xe4, 0x78, 0x3e, 0x6e, 0x48, 0x2d, 0xe4, 0x1f, + 0xc4, 0x23, 0xb7, 0x21, 0x85, 0x7f, 0xb7, 0x52, 0xf9, 0xf0, 0xb1, 0x2d, 0xf4, 0x9a, 0x5c, 0x3a, + 0x73, 0x68, 0xbb, 0x4a, 0x55, 0xce, 0xd0, 0xc8, 0xc2, 0xf0, 0x78, 0x33, 0x8b, 0xa1, 0x2b, 0x1c, + 0xd2, 0xa2, 0x01, 0xfc, 0x9e, 0x65, 0x5b, 0xfe, 0x3e, 0x6b, 0x9f, 0x62, 0x01, 0xbc, 0x00, 0xb5, + 0xe8, 0xe1, 0x1d, 0x7e, 0x61, 0x05, 0x7a, 0xc7, 0x31, 0x31, 0xb5, 0xda, 0x49, 0xad, 0x4c, 0x00, + 0xab, 0x8e, 0x89, 0xa3, 0xf5, 0x54, 0x3e, 0xec, 0x7a, 0xaa, 0x24, 0xd6, 0xd3, 0x22, 0x4c, 0x79, + 0xd8, 0xf0, 0x1d, 0x9b, 0xed, 0xe9, 0x35, 0xfe, 0x44, 0x26, 0xa2, 0x8f, 0x7d, 0x9f, 0xf4, 0xc1, + 0x03, 0x29, 0xfe, 0x18, 0x0b, 0xfa, 0x66, 0x73, 0x82, 0xbe, 0x9c, 0xb2, 0xc2, 0x44, 0xd0, 0x57, + 0xcd, 0x09, 0xfa, 0xc6, 0xaa, 0x2a, 0x8c, 0xc2, 0xdb, 0xda, 0xa8, 0xf0, 0x36, 0x1e, 0x1f, 0xce, + 0xc9, 0xf1, 0xe1, 0x9d, 0xf8, 0x46, 0xb2, 0x9e, 0x4e, 0xe8, 0xe6, 0x5f, 0x56, 0xf8, 0x0c, 0x17, + 0xf0, 0x3f, 0x2b, 0xb0, 0x94, 0x5a, 0x70, 0x7c, 0x09, 0xbf, 0x99, 0xa8, 0x57, 0x5c, 0xce, 0xd1, + 0x72, 0x58, 0xae, 0xd8, 0x92, 0xca, 0x15, 0xaf, 0xe4, 0x91, 0x7c, 0xe2, 0xd5, 0x8a, 0xdf, 0x51, + 0x00, 0x65, 0x6c, 0x95, 0x6f, 0x89, 0xa8, 0xfb, 0x10, 0x87, 0x46, 0x3c, 0xf0, 0x7e, 0x2f, 0x0a, + 0xbc, 0x0b, 0x87, 0x39, 0x1e, 0x08, 0xcb, 0x28, 0x7e, 0x51, 0x80, 0x33, 0xbb, 0xae, 0x99, 0x08, + 0x23, 0x39, 0xd6, 0xf8, 0x9e, 0xed, 0x96, 0x5c, 0x03, 0x72, 0xc4, 0x21, 0x14, 0x8f, 0x32, 0x04, + 0xf4, 0x8d, 0xac, 0x2a, 0x9d, 0x3b, 0x52, 0x3e, 0x2d, 0x7f, 0x80, 0xbf, 0xe1, 0x2c, 0x98, 0x0a, + 0x67, 0x87, 0x0b, 0xc0, 0x43, 0xce, 0xff, 0x0f, 0x73, 0xeb, 0x2f, 0x70, 0x67, 0xfb, 0xc0, 0xee, + 0x1c, 0x42, 0xeb, 0x75, 0x28, 0x76, 0xfa, 0x26, 0x4f, 0x12, 0x90, 0x9f, 0xf1, 0x28, 0xba, 0x28, + 0x47, 0xd1, 0x3a, 0xd4, 0xa3, 0x1e, 0xf8, 0x02, 0x5a, 0x24, 0x0b, 0xc8, 0x24, 0xc8, 0x84, 0xf9, + 0xac, 0xc6, 0x9f, 0x38, 0x1c, 0x7b, 0xec, 0x26, 0x04, 0x83, 0x63, 0xcf, 0x93, 0xbd, 0x76, 0x51, + 0xf6, 0xda, 0xea, 0x0f, 0x14, 0x98, 0x21, 0x3d, 0x7c, 0x2c, 0xf9, 0xf9, 0x96, 0xb4, 0x18, 0x6d, + 0x49, 0xc3, 0x9d, 0x6d, 0x29, 0xbe, 0xb3, 0x8d, 0x24, 0x9f, 0xa4, 0xe0, 0xb4, 0xe4, 0x53, 0x21, + 0x1c, 0x7b, 0x9e, 0x7a, 0x16, 0x66, 0x99, 0x6c, 0x7c, 0xe4, 0x75, 0x28, 0x0e, 0xbc, 0x9e, 0x98, + 0xbf, 0x81, 0xd7, 0x53, 0xbf, 0xad, 0x40, 0xb5, 0x15, 0x04, 0x46, 0x67, 0xff, 0x10, 0x03, 0x08, + 0x85, 0x2b, 0xc4, 0x85, 0x4b, 0x0f, 0x22, 0x12, 0xb7, 0x34, 0x44, 0xdc, 0x49, 0x49, 0x5c, 0x15, + 0x6a, 0x42, 0x96, 0xa1, 0x02, 0x6f, 0x02, 0x6a, 0x3b, 0x5e, 0xf0, 0xbe, 0xe3, 0x3d, 0x37, 0x3c, + 0xf3, 0x70, 0xbb, 0x56, 0x04, 0x25, 0x7e, 0x53, 0xbc, 0x78, 0x61, 0x52, 0xa3, 0xbf, 0xd5, 0xd7, + 0xe0, 0x98, 0xc4, 0x6f, 0x68, 0xc7, 0xb7, 0x61, 0x86, 0xbe, 0x85, 0xf9, 0x86, 0xe6, 0x72, 0x3c, + 0x09, 0x3d, 0xe2, 0x6d, 0xad, 0xae, 0xc1, 0x3c, 0x89, 0xc7, 0x28, 0x3c, 0xf4, 0x2f, 0x57, 0x13, + 0x31, 0xff, 0x52, 0x8a, 0x45, 0x22, 0xde, 0xff, 0x95, 0x02, 0x93, 0x14, 0x9e, 0x8a, 0x91, 0x96, + 0xc9, 0x7b, 0xce, 0x75, 0xf4, 0xc0, 0xe8, 0x86, 0xb7, 0xf0, 0x09, 0x60, 0xc7, 0xe8, 0xd2, 0xc4, + 0x06, 0x6d, 0x34, 0xad, 0x2e, 0xf6, 0x03, 0x91, 0x28, 0x9b, 0x21, 0xb0, 0x35, 0x06, 0x22, 0x8a, + 0xa1, 0xf9, 0xc4, 0x12, 0x4d, 0x1b, 0xd2, 0xdf, 0xe8, 0x02, 0xbb, 0x44, 0x97, 0x9f, 0x1d, 0xa2, + 0x97, 0xeb, 0x9a, 0x50, 0x4e, 0xa4, 0x75, 0xc2, 0x67, 0x74, 0x11, 0x4a, 0xf4, 0x98, 0x78, 0x3a, + 0x4f, 0x4b, 0x14, 0x85, 0x58, 0x85, 0x6b, 0xd9, 0x36, 0x36, 0x69, 0x00, 0x54, 0xd6, 0xf8, 0x93, + 0xfa, 0x1e, 0xa0, 0xb8, 0xf2, 0xf8, 0x04, 0x5d, 0x84, 0x29, 0xaa, 0x5b, 0x11, 0xc4, 0xce, 0xa7, + 0x58, 0x6b, 0x1c, 0x41, 0xfd, 0x3a, 0x20, 0xd6, 0x97, 0x14, 0xb8, 0x1e, 0x66, 0x02, 0x73, 0x42, + 0xd8, 0xbf, 0x56, 0xe0, 0x98, 0xc4, 0x9d, 0xcb, 0xf7, 0x9a, 0xcc, 0x3e, 0x43, 0x3c, 0xce, 0xfa, + 0x1d, 0xe9, 0xcd, 0x7c, 0x31, 0x2d, 0xc6, 0x6f, 0xe8, 0xad, 0xfc, 0x53, 0x05, 0xa0, 0x35, 0x08, + 0xf6, 0xf9, 0x81, 0x69, 0x7c, 0x12, 0x95, 0xc4, 0x24, 0x36, 0xa1, 0xec, 0x1a, 0xbe, 0xff, 0xdc, + 0xf1, 0xc4, 0x26, 0x32, 0x7c, 0xa6, 0xc7, 0x9c, 0x03, 0xfe, 0x31, 0x80, 0x8a, 0x46, 0x7f, 0xa3, + 0x57, 0xa0, 0xc6, 0x3e, 0x0f, 0xa1, 0x1b, 0xa6, 0xe9, 0x89, 0xc2, 0xb6, 0x8a, 0x56, 0x65, 0xd0, + 0x16, 0x03, 0x12, 0x34, 0x8b, 0x26, 0x0d, 0x82, 0x03, 0x3d, 0x70, 0x9e, 0x62, 0x9b, 0x6f, 0x0c, + 0xab, 0x02, 0xba, 0x43, 0x80, 0x2c, 0xeb, 0xd6, 0xb5, 0xfc, 0xc0, 0x13, 0x68, 0x22, 0x77, 0xc8, + 0xa1, 0x14, 0x4d, 0xfd, 0x4b, 0x05, 0xea, 0xed, 0x41, 0xaf, 0xc7, 0x94, 0x7b, 0x94, 0x49, 0xbe, + 0xc4, 0x87, 0x52, 0x48, 0x9b, 0x7c, 0xa4, 0x28, 0x3e, 0xc4, 0x4f, 0xe4, 0x2c, 0xeb, 0x1a, 0xcc, + 0xc7, 0x24, 0xe6, 0x86, 0x23, 0x45, 0xf6, 0x8a, 0x1c, 0xd9, 0xab, 0x2d, 0x40, 0xec, 0xf8, 0xe6, + 0xc8, 0xa3, 0x54, 0x8f, 0xc3, 0x31, 0x89, 0x05, 0x7f, 0x15, 0x5f, 0x82, 0x2a, 0x2f, 0xb2, 0xe2, + 0x06, 0x71, 0x02, 0xca, 0xc4, 0xa5, 0x76, 0x2c, 0x53, 0x14, 0x0a, 0x4c, 0xbb, 0x8e, 0xb9, 0x6a, + 0x99, 0x9e, 0xfa, 0x25, 0xa8, 0xf2, 0x9b, 0xd5, 0x1c, 0xf7, 0x2e, 0xd4, 0x78, 0x35, 0xa3, 0x2e, + 0x5d, 0x45, 0x3c, 0x91, 0x51, 0xc9, 0x27, 0x54, 0x61, 0xc7, 0x1f, 0xd5, 0x6f, 0x40, 0x93, 0x45, + 0x0b, 0x12, 0x63, 0x31, 0xc0, 0xbb, 0x20, 0xee, 0x04, 0xe4, 0xf0, 0x97, 0x29, 0xab, 0x5e, 0xfc, + 0x51, 0x3d, 0x05, 0xcb, 0x99, 0xfc, 0xf9, 0xe8, 0x5d, 0xa8, 0x47, 0x0d, 0xec, 0xbe, 0x5c, 0x58, + 0xfd, 0xa0, 0xc4, 0xaa, 0x1f, 0x16, 0xc3, 0xd8, 0xbb, 0x20, 0xde, 0x5c, 0x34, 0xbc, 0x8e, 0x76, + 0x5c, 0xc5, 0x61, 0x3b, 0xae, 0x92, 0xb4, 0xe3, 0x52, 0x1f, 0x85, 0x3a, 0xe4, 0xfb, 0xde, 0x3b, + 0x74, 0x67, 0xce, 0xfa, 0x16, 0x4e, 0xed, 0x64, 0xf6, 0xf8, 0x18, 0x92, 0x16, 0xc3, 0x57, 0x2f, + 0x42, 0x55, 0x76, 0x6f, 0x31, 0x8f, 0xa5, 0xa4, 0x3c, 0x56, 0x2d, 0xe1, 0xac, 0xde, 0x48, 0x6c, + 0x29, 0xb2, 0xf4, 0x9a, 0xd8, 0x50, 0xdc, 0x94, 0xdc, 0xd6, 0xe7, 0xa4, 0x4c, 0xf5, 0x6f, 0xc8, + 0x63, 0x2d, 0x70, 0x3f, 0xfe, 0xbe, 0x4f, 0xe8, 0xf9, 0x40, 0xd5, 0xf3, 0x30, 0xb3, 0x3b, 0xec, + 0xfb, 0x16, 0x25, 0x51, 0x5e, 0xf5, 0x36, 0x2c, 0xbc, 0x6f, 0xf5, 0xb0, 0x7f, 0xe0, 0x07, 0xb8, + 0xbf, 0x41, 0xdd, 0xcb, 0x9e, 0x85, 0x3d, 0x74, 0x1a, 0x80, 0xee, 0x22, 0x5d, 0xc7, 0x0a, 0xef, + 0xf4, 0xc7, 0x20, 0xea, 0xcf, 0x15, 0x98, 0x8b, 0x08, 0xc7, 0x29, 0x74, 0x7b, 0x0b, 0x26, 0xf7, + 0x7c, 0x71, 0xda, 0x96, 0xc8, 0x25, 0x64, 0x89, 0xa0, 0x95, 0xf6, 0xfc, 0x0d, 0x13, 0xbd, 0x0d, + 0x30, 0xf0, 0xb1, 0xc9, 0xb3, 0x73, 0x23, 0x4a, 0x0f, 0x2b, 0x04, 0x95, 0xe5, 0xf7, 0x6e, 0xc2, + 0x8c, 0x65, 0x3b, 0x26, 0xa6, 0x99, 0x5b, 0x73, 0x54, 0xd9, 0x21, 0x30, 0xdc, 0x5d, 0x1f, 0x9b, + 0xea, 0x9f, 0x46, 0xf9, 0xd7, 0x97, 0x79, 0x84, 0xaa, 0xce, 0xdf, 0xaf, 0x62, 0xd6, 0xb9, 0xc9, + 0x3e, 0x80, 0x79, 0xe6, 0x26, 0xf7, 0xc2, 0x2e, 0x33, 0xaf, 0x63, 0x24, 0xc6, 0xa6, 0xd5, 0x2d, + 0x1e, 0x59, 0x09, 0x22, 0xf5, 0x36, 0x1c, 0x4f, 0xd4, 0x47, 0x8f, 0x7f, 0x9c, 0xfe, 0x41, 0xe2, + 0x5c, 0x2c, 0x5a, 0x52, 0xd7, 0xe4, 0x6b, 0x39, 0x79, 0x95, 0xec, 0xfc, 0x86, 0xc8, 0x2e, 0x9c, + 0x90, 0x0e, 0xed, 0x24, 0x59, 0x6e, 0x26, 0x82, 0xc5, 0xb3, 0xc3, 0xf9, 0x25, 0xa2, 0xc6, 0xff, + 0x54, 0x60, 0x21, 0x0b, 0xe1, 0x88, 0x07, 0xc6, 0x5f, 0x1b, 0x72, 0xa5, 0xef, 0xcd, 0x51, 0x02, + 0x7d, 0x2a, 0x07, 0xec, 0x9b, 0xec, 0x42, 0xd0, 0xe8, 0x39, 0x29, 0x8e, 0x37, 0x27, 0xbf, 0x2a, + 0xc4, 0x92, 0x22, 0x39, 0x97, 0x76, 0x3e, 0xc6, 0x21, 0xe5, 0x6a, 0xe2, 0xce, 0xce, 0xe5, 0x4c, + 0xc2, 0x11, 0x57, 0x76, 0xb4, 0xac, 0xc3, 0x80, 0x6b, 0xa3, 0x38, 0xbd, 0xb4, 0xe7, 0xd7, 0xff, + 0xa5, 0x40, 0x4d, 0x9e, 0x10, 0xf4, 0x5e, 0xc6, 0x85, 0x9d, 0x33, 0x23, 0x06, 0x28, 0xdd, 0xd7, + 0xe1, 0x17, 0x64, 0x0a, 0xe3, 0x5f, 0x90, 0x29, 0x8e, 0x77, 0x41, 0xe6, 0x1e, 0xd4, 0x9e, 0x7b, + 0x56, 0x60, 0x3c, 0xe9, 0x61, 0xbd, 0x67, 0x1c, 0x60, 0x8f, 0x7b, 0xe1, 0x5c, 0x37, 0x54, 0x15, + 0x24, 0x0f, 0x09, 0x85, 0xfa, 0xed, 0x02, 0x1c, 0xcf, 0xbc, 0xab, 0xf1, 0xf1, 0xc7, 0x7d, 0x25, + 0x3e, 0xee, 0xc3, 0x5c, 0x80, 0x29, 0x1e, 0xea, 0x02, 0xcc, 0xc6, 0x10, 0x2d, 0x64, 0xa5, 0xc4, + 0x47, 0x28, 0xe3, 0x6f, 0x14, 0x28, 0x0b, 0xa1, 0x46, 0x5e, 0x47, 0x59, 0x1a, 0x10, 0x34, 0x9d, + 0x56, 0x23, 0xdb, 0x86, 0xed, 0xe8, 0x3e, 0x26, 0x61, 0xd1, 0xc8, 0xe2, 0xff, 0x05, 0x4a, 0xb7, + 0xea, 0x78, 0x78, 0xd3, 0xb0, 0x9d, 0x6d, 0x46, 0x84, 0x5a, 0x50, 0x67, 0xfc, 0x28, 0x2b, 0xc2, + 0x74, 0xe4, 0xab, 0xaa, 0x46, 0x09, 0x08, 0x13, 0xc2, 0xcc, 0x57, 0xff, 0x41, 0x81, 0xb9, 0x84, + 0x66, 0x7f, 0xfb, 0x06, 0xf1, 0x27, 0x45, 0x98, 0x89, 0xcd, 0xf2, 0x88, 0x01, 0xac, 0xc2, 0xbc, + 0x28, 0x6b, 0xf1, 0x71, 0x30, 0xde, 0xe5, 0x8b, 0x39, 0x4e, 0xb1, 0x8d, 0x03, 0x16, 0xc9, 0xdc, + 0x85, 0x39, 0xe3, 0x99, 0x61, 0xf5, 0xa8, 0x05, 0x8d, 0x15, 0x24, 0xd4, 0x42, 0xfc, 0x30, 0x16, + 0x62, 0xe3, 0x1e, 0xeb, 0x0a, 0x06, 0x50, 0xdc, 0xe8, 0x26, 0x8c, 0xef, 0xc7, 0x4a, 0xa3, 0x72, + 0x6f, 0xc2, 0xf8, 0x7e, 0xd8, 0x1f, 0x2d, 0xc5, 0xa6, 0x57, 0x80, 0x7c, 0xfe, 0x2d, 0x87, 0xe1, + 0xfd, 0x11, 0xdc, 0xf7, 0x29, 0x2a, 0x51, 0x58, 0xdf, 0xf8, 0xd0, 0xf1, 0xf4, 0x38, 0xfd, 0xf4, + 0x08, 0x85, 0x51, 0x8a, 0x76, 0xc8, 0x44, 0xfd, 0x6f, 0x05, 0x50, 0x7a, 0x41, 0xfe, 0xd6, 0x4c, + 0x55, 0x7c, 0xe8, 0xa5, 0xb1, 0x55, 0xa7, 0xbe, 0x0b, 0x27, 0x34, 0xec, 0xb8, 0xd8, 0x0e, 0xfd, + 0xde, 0x43, 0xa7, 0x7b, 0x88, 0x88, 0xed, 0x24, 0x34, 0xb3, 0xe8, 0xf9, 0x3e, 0x70, 0x00, 0xcd, + 0xd5, 0x7d, 0xdc, 0x79, 0x4a, 0xa3, 0xff, 0xa3, 0xd4, 0x73, 0x34, 0xa1, 0xdc, 0x73, 0x3a, 0xec, + 0x1b, 0x8d, 0xfc, 0xa8, 0x44, 0x3c, 0xe7, 0x9c, 0x52, 0x9f, 0x82, 0xe5, 0xcc, 0x6e, 0xb9, 0x54, + 0x08, 0xea, 0xf7, 0x71, 0xb0, 0xfe, 0x0c, 0xdb, 0x61, 0x40, 0xa8, 0xfe, 0xaf, 0x12, 0x0b, 0x3d, + 0x69, 0xd3, 0x21, 0xea, 0x60, 0x50, 0x1b, 0x16, 0x22, 0x14, 0x4c, 0xa8, 0xd9, 0x37, 0xda, 0xd8, + 0xd7, 0x0d, 0xb3, 0x73, 0x64, 0xb4, 0x13, 0xfa, 0x69, 0x36, 0xd4, 0x49, 0xc1, 0x12, 0x99, 0xd3, + 0x62, 0x32, 0x73, 0xda, 0x86, 0x85, 0x78, 0x70, 0x19, 0x06, 0x4b, 0xa5, 0xb1, 0x6e, 0x38, 0x23, + 0x37, 0x05, 0xbb, 0xf4, 0x2a, 0x94, 0xc5, 0x67, 0x41, 0xd1, 0x34, 0x14, 0x77, 0x56, 0xdb, 0xf5, + 0x09, 0xf2, 0x63, 0x77, 0xad, 0x5d, 0x57, 0x50, 0x19, 0x4a, 0xdb, 0xab, 0x3b, 0xed, 0x7a, 0xe1, + 0x52, 0x1f, 0xea, 0xc9, 0x2f, 0x63, 0xa2, 0x25, 0x38, 0xd6, 0xd6, 0xb6, 0xda, 0xad, 0xfb, 0xad, + 0x9d, 0x8d, 0xad, 0x4d, 0xbd, 0xad, 0x6d, 0x3c, 0x6e, 0xed, 0xac, 0xd7, 0x27, 0xd0, 0x39, 0x38, + 0x15, 0x6f, 0x78, 0xb0, 0xb5, 0xbd, 0xa3, 0xef, 0x6c, 0xe9, 0xab, 0x5b, 0x9b, 0x3b, 0xad, 0x8d, + 0xcd, 0x75, 0xad, 0xae, 0xa0, 0x53, 0x70, 0x22, 0x8e, 0x72, 0x6f, 0x63, 0x6d, 0x43, 0x5b, 0x5f, + 0x25, 0xbf, 0x5b, 0x0f, 0xeb, 0x85, 0x4b, 0xef, 0x40, 0x55, 0xfa, 0xc4, 0x23, 0x11, 0xa9, 0xbd, + 0xb5, 0x56, 0x9f, 0x40, 0x55, 0xa8, 0xc4, 0xf9, 0x94, 0xa1, 0xb4, 0xb9, 0xb5, 0xb6, 0x5e, 0x2f, + 0x20, 0x80, 0xa9, 0x9d, 0x96, 0x76, 0x7f, 0x7d, 0xa7, 0x5e, 0xbc, 0x74, 0x3b, 0x79, 0x55, 0x19, + 0xa3, 0x79, 0xa8, 0x6e, 0xb7, 0x36, 0xd7, 0xee, 0x6d, 0x7d, 0x45, 0xd7, 0xd6, 0x5b, 0x6b, 0x5f, + 0xad, 0x4f, 0xa0, 0x05, 0xa8, 0x0b, 0xd0, 0xe6, 0xd6, 0x0e, 0x83, 0x2a, 0x97, 0x9e, 0x26, 0x82, + 0x26, 0x8c, 0x8e, 0xc3, 0x7c, 0xd8, 0xa5, 0xbe, 0xaa, 0xad, 0xb7, 0x76, 0xd6, 0x89, 0x24, 0x12, + 0x58, 0xdb, 0xdd, 0xdc, 0xdc, 0xd8, 0xbc, 0x5f, 0x57, 0x08, 0xd7, 0x08, 0xbc, 0xfe, 0x95, 0x0d, + 0x82, 0x5c, 0x90, 0x91, 0x77, 0x37, 0xbf, 0xb8, 0xb9, 0xf5, 0xe5, 0xcd, 0x7a, 0xf1, 0xd2, 0xef, + 0xc6, 0x93, 0x7a, 0x91, 0x19, 0x2c, 0xc3, 0x52, 0xaa, 0x47, 0x7d, 0xfd, 0xf1, 0xfa, 0xe6, 0x4e, + 0x7d, 0x42, 0x6e, 0xdc, 0xde, 0x69, 0x69, 0x51, 0xa3, 0x92, 0x6c, 0xdc, 0x6a, 0xb7, 0xc3, 0xc6, + 0x82, 0xdc, 0xb8, 0xb6, 0xfe, 0x70, 0x3d, 0xa2, 0x2c, 0x5e, 0xff, 0x71, 0xf4, 0xa5, 0xbf, 0x6d, + 0xec, 0xd1, 0xc2, 0xd3, 0x35, 0x98, 0x16, 0xdf, 0xbd, 0x95, 0xa2, 0x7c, 0xf9, 0x3b, 0xbd, 0xcd, + 0xe5, 0xcc, 0x36, 0xbe, 0xea, 0x26, 0xd0, 0x63, 0x7a, 0x46, 0x13, 0xfb, 0xae, 0xc7, 0xd9, 0xc4, + 0xb9, 0x48, 0xea, 0xf3, 0x21, 0xcd, 0x73, 0x39, 0x18, 0x21, 0xdf, 0xaf, 0x42, 0x4d, 0xfe, 0xa8, + 0x15, 0x3a, 0x27, 0x9f, 0x9f, 0x64, 0x7c, 0x2f, 0xab, 0xa9, 0xe6, 0xa1, 0x84, 0xac, 0x75, 0xa8, + 0x27, 0x3f, 0x6a, 0x85, 0xa4, 0xb4, 0xe4, 0x90, 0x6f, 0x66, 0x35, 0x3f, 0x97, 0x8f, 0x14, 0xef, + 0x20, 0xf5, 0xad, 0xa6, 0xf3, 0xf9, 0x5f, 0xbf, 0xc9, 0xe8, 0x60, 0xd8, 0x27, 0x72, 0x98, 0x72, + 0xe4, 0x4f, 0x2f, 0xa0, 0xc4, 0xe7, 0x91, 0x32, 0xbe, 0xda, 0x22, 0x2b, 0x27, 0xfb, 0x8b, 0x1d, + 0xea, 0x04, 0xfa, 0x7f, 0x30, 0x97, 0xa8, 0x1d, 0x44, 0x12, 0x61, 0x76, 0x49, 0x64, 0xf3, 0x7c, + 0x2e, 0x8e, 0x3c, 0xab, 0xf1, 0xfa, 0xc0, 0xe4, 0xac, 0x66, 0xd4, 0x1d, 0x26, 0x67, 0x35, 0xb3, + 0xbc, 0x90, 0x1a, 0xa2, 0x54, 0x0b, 0x28, 0x1b, 0x62, 0x56, 0xed, 0x61, 0xf3, 0x5c, 0x0e, 0x46, + 0x5c, 0x21, 0x89, 0x6a, 0x40, 0x59, 0x21, 0xd9, 0x75, 0x86, 0xcd, 0xf3, 0xb9, 0x38, 0xc9, 0x99, + 0x8c, 0xaa, 0x90, 0xd2, 0x33, 0x99, 0xaa, 0x84, 0x4b, 0xcf, 0x64, 0xba, 0x88, 0x89, 0xcf, 0x64, + 0xa2, 0x6e, 0x48, 0xcd, 0xad, 0x69, 0xc8, 0x9a, 0xc9, 0xec, 0xba, 0x07, 0x75, 0x02, 0x3d, 0x87, + 0xc6, 0xb0, 0xd4, 0x35, 0xba, 0x7c, 0x88, 0x0c, 0x7b, 0xf3, 0xf5, 0xf1, 0x90, 0xc3, 0x8e, 0x31, + 0xa0, 0x74, 0x70, 0x82, 0x5e, 0x91, 0xd5, 0x3d, 0x24, 0xf8, 0x69, 0xbe, 0x3a, 0x0a, 0x2d, 0xec, + 0xe6, 0x3e, 0x94, 0x45, 0x52, 0x1c, 0x49, 0x2e, 0x30, 0x91, 0x8c, 0x6f, 0x9e, 0xcc, 0x6e, 0x0c, + 0x19, 0x7d, 0x01, 0x4a, 0x04, 0x8a, 0x96, 0x92, 0x78, 0x82, 0x41, 0x23, 0xdd, 0x10, 0x12, 0xb7, + 0x60, 0x8a, 0x65, 0x7b, 0x91, 0x74, 0xdc, 0x2c, 0x65, 0xa3, 0x9b, 0xcd, 0xac, 0xa6, 0x90, 0x45, + 0x9b, 0x7d, 0x45, 0x9c, 0x27, 0x6f, 0xd1, 0xe9, 0xe4, 0xe7, 0x2c, 0xe5, 0x2c, 0x71, 0xf3, 0xcc, + 0xd0, 0xf6, 0xb8, 0xcd, 0x26, 0x36, 0xe0, 0xe7, 0x72, 0x4e, 0x89, 0xb2, 0x6c, 0x36, 0xfb, 0xec, + 0x89, 0x4d, 0x6e, 0xfa, 0x6c, 0x4a, 0x9e, 0xdc, 0xa1, 0xe7, 0x7f, 0xf2, 0xe4, 0x0e, 0x3f, 0xe2, + 0x62, 0x4b, 0x23, 0xf9, 0x0d, 0x0c, 0x35, 0xef, 0xfb, 0x34, 0x59, 0x4b, 0x63, 0xc8, 0x77, 0x6f, + 0xd4, 0x09, 0xb4, 0x0f, 0xc7, 0x32, 0x3e, 0x8c, 0x83, 0x5e, 0x1d, 0xee, 0x7f, 0xa5, 0x5e, 0x5e, + 0x1b, 0x89, 0x17, 0xef, 0x29, 0x23, 0x63, 0x23, 0xf7, 0x34, 0x3c, 0x65, 0x24, 0xf7, 0x94, 0x97, + 0xfa, 0xa1, 0x86, 0xc8, 0x7d, 0xc8, 0x89, 0xac, 0x34, 0x46, 0x86, 0x21, 0xa6, 0x3c, 0xc6, 0x3e, + 0x1c, 0xcb, 0x08, 0xe0, 0x65, 0x61, 0x87, 0x6f, 0x2c, 0x64, 0x61, 0xf3, 0x76, 0x02, 0x13, 0xe8, + 0x6b, 0x80, 0xee, 0xe3, 0x40, 0x8e, 0xbc, 0x7c, 0x24, 0x2d, 0xd4, 0xe4, 0x5e, 0x61, 0x88, 0x7d, + 0x4a, 0x9b, 0x06, 0x75, 0xe2, 0x9a, 0x72, 0xfd, 0x8f, 0x8b, 0x30, 0xcb, 0xf2, 0x85, 0x3c, 0x8c, + 0x7a, 0x04, 0x10, 0xa5, 0xde, 0xd1, 0xa9, 0xe4, 0xe4, 0x49, 0xf5, 0x0c, 0xcd, 0xd3, 0xc3, 0x9a, + 0xe3, 0xcb, 0x35, 0x96, 0xd2, 0x96, 0x97, 0x6b, 0x3a, 0x43, 0x2f, 0x2f, 0xd7, 0x8c, 0x5c, 0xb8, + 0x3a, 0x81, 0x3e, 0x80, 0x4a, 0x98, 0x41, 0x95, 0x95, 0x90, 0x4c, 0x05, 0x37, 0x4f, 0x0d, 0x69, + 0x8d, 0x4b, 0x17, 0x4b, 0x8c, 0xca, 0xd2, 0xa5, 0x93, 0xae, 0xb2, 0x74, 0x59, 0x19, 0xd5, 0x68, + 0xbc, 0x2c, 0x75, 0x91, 0x31, 0x5e, 0x29, 0x93, 0x95, 0x31, 0x5e, 0x39, 0xe7, 0xa1, 0x4e, 0xdc, + 0xbb, 0xfb, 0x93, 0x5f, 0x9e, 0x56, 0x7e, 0xfe, 0xcb, 0xd3, 0x13, 0xbf, 0xf3, 0xd1, 0x69, 0xe5, + 0x27, 0x1f, 0x9d, 0x56, 0x7e, 0xf6, 0xd1, 0x69, 0xe5, 0x17, 0x1f, 0x9d, 0x56, 0xbe, 0xf3, 0x1f, + 0xa7, 0x27, 0xbe, 0xa6, 0x3e, 0xbd, 0xe9, 0xaf, 0x58, 0xce, 0xd5, 0x8e, 0x67, 0x5d, 0x31, 0x5c, + 0xeb, 0xaa, 0xfb, 0xb4, 0x7b, 0xd5, 0x70, 0x2d, 0xff, 0x2a, 0xe7, 0x7b, 0xf5, 0xd9, 0x1b, 0x4f, + 0xa6, 0xe8, 0x7f, 0x50, 0x78, 0xf3, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x42, 0x20, 0xbd, 0xc5, + 0xfb, 0x62, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -12377,6 +12927,68 @@ func (m *WindowsPodSandboxStats) MarshalToSizedBuffer(dAtA []byte) (int, error) _ = i var l int _ = l + if len(m.Containers) > 0 { + for iNdEx := len(m.Containers) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Containers[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x2a + } + } + if m.Process != nil { + { + size, err := m.Process.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + } + if m.Network != nil { + { + size, err := m.Network.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + if m.Memory != nil { + { + size, err := m.Memory.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + if m.Cpu != nil { + { + size, err := m.Cpu.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } return len(dAtA) - i, nil } @@ -12434,6 +13046,60 @@ func (m *NetworkUsage) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *WindowsNetworkUsage) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *WindowsNetworkUsage) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *WindowsNetworkUsage) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Interfaces) > 0 { + for iNdEx := len(m.Interfaces) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Interfaces[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + } + if m.DefaultInterface != nil { + { + size, err := m.DefaultInterface.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + if m.Timestamp != 0 { + i = encodeVarintApi(dAtA, i, uint64(m.Timestamp)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + func (m *NetworkInterfaceUsage) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -12512,6 +13178,84 @@ func (m *NetworkInterfaceUsage) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *WindowsNetworkInterfaceUsage) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *WindowsNetworkInterfaceUsage) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *WindowsNetworkInterfaceUsage) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.TxPacketsDropped != nil { + { + size, err := m.TxPacketsDropped.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x2a + } + if m.TxBytes != nil { + { + size, err := m.TxBytes.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + } + if m.RxPacketsDropped != nil { + { + size, err := m.RxPacketsDropped.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + if m.RxBytes != nil { + { + size, err := m.RxBytes.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + if len(m.Name) > 0 { + i -= len(m.Name) + copy(dAtA[i:], m.Name) + i = encodeVarintApi(dAtA, i, uint64(len(m.Name))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + func (m *ProcessUsage) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -12552,6 +13296,46 @@ func (m *ProcessUsage) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *WindowsProcessUsage) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *WindowsProcessUsage) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *WindowsProcessUsage) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.ProcessCount != nil { + { + size, err := m.ProcessCount.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + if m.Timestamp != 0 { + i = encodeVarintApi(dAtA, i, uint64(m.Timestamp)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + func (m *ImageSpec) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -12975,21 +13759,21 @@ func (m *LinuxContainerSecurityContext) MarshalToSizedBuffer(dAtA []byte) (int, dAtA[i] = 0x4a } if len(m.SupplementalGroups) > 0 { - dAtA47 := make([]byte, len(m.SupplementalGroups)*10) - var j46 int + dAtA57 := make([]byte, len(m.SupplementalGroups)*10) + var j56 int for _, num1 := range m.SupplementalGroups { num := uint64(num1) for num >= 1<<7 { - dAtA47[j46] = uint8(uint64(num)&0x7f | 0x80) + dAtA57[j56] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j46++ + j56++ } - dAtA47[j46] = uint8(num) - j46++ + dAtA57[j56] = uint8(num) + j56++ } - i -= j46 - copy(dAtA[i:], dAtA47[:j46]) - i = encodeVarintApi(dAtA, i, uint64(j46)) + i -= j56 + copy(dAtA[i:], dAtA57[:j56]) + i = encodeVarintApi(dAtA, i, uint64(j56)) i-- dAtA[i] = 0x42 } @@ -14894,21 +15678,21 @@ func (m *PortForwardRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { var l int _ = l if len(m.Port) > 0 { - dAtA76 := make([]byte, len(m.Port)*10) - var j75 int + dAtA86 := make([]byte, len(m.Port)*10) + var j85 int for _, num1 := range m.Port { num := uint64(num1) for num >= 1<<7 { - dAtA76[j75] = uint8(uint64(num)&0x7f | 0x80) + dAtA86[j85] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j75++ + j85++ } - dAtA76[j75] = uint8(num) - j75++ + dAtA86[j85] = uint8(num) + j85++ } - i -= j75 - copy(dAtA[i:], dAtA76[:j75]) - i = encodeVarintApi(dAtA, i, uint64(j75)) + i -= j85 + copy(dAtA[i:], dAtA86[:j85]) + i = encodeVarintApi(dAtA, i, uint64(j85)) i-- dAtA[i] = 0x12 } @@ -15910,6 +16694,58 @@ func (m *FilesystemUsage) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *WindowsFilesystemUsage) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *WindowsFilesystemUsage) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *WindowsFilesystemUsage) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.UsedBytes != nil { + { + size, err := m.UsedBytes.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + if m.FsId != nil { + { + size, err := m.FsId.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + if m.Timestamp != 0 { + i = encodeVarintApi(dAtA, i, uint64(m.Timestamp)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + func (m *ImageFsInfoResponse) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -16291,6 +17127,77 @@ func (m *ContainerStats) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *WindowsContainerStats) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *WindowsContainerStats) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *WindowsContainerStats) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.WritableLayer != nil { + { + size, err := m.WritableLayer.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + } + if m.Memory != nil { + { + size, err := m.Memory.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + if m.Cpu != nil { + { + size, err := m.Cpu.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + if m.Attributes != nil { + { + size, err := m.Attributes.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + func (m *CpuUsage) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -16343,6 +17250,58 @@ func (m *CpuUsage) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *WindowsCpuUsage) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *WindowsCpuUsage) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *WindowsCpuUsage) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.UsageNanoCores != nil { + { + size, err := m.UsageNanoCores.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + if m.UsageCoreNanoSeconds != nil { + { + size, err := m.UsageCoreNanoSeconds.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + if m.Timestamp != 0 { + i = encodeVarintApi(dAtA, i, uint64(m.Timestamp)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + func (m *MemoryUsage) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -16443,6 +17402,70 @@ func (m *MemoryUsage) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *WindowsMemoryUsage) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *WindowsMemoryUsage) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *WindowsMemoryUsage) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.PageFaults != nil { + { + size, err := m.PageFaults.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + } + if m.AvailableBytes != nil { + { + size, err := m.AvailableBytes.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + if m.WorkingSetBytes != nil { + { + size, err := m.WorkingSetBytes.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + if m.Timestamp != 0 { + i = encodeVarintApi(dAtA, i, uint64(m.Timestamp)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + func (m *ReopenContainerLogRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -17512,6 +18535,28 @@ func (m *WindowsPodSandboxStats) Size() (n int) { } var l int _ = l + if m.Cpu != nil { + l = m.Cpu.Size() + n += 1 + l + sovApi(uint64(l)) + } + if m.Memory != nil { + l = m.Memory.Size() + n += 1 + l + sovApi(uint64(l)) + } + if m.Network != nil { + l = m.Network.Size() + n += 1 + l + sovApi(uint64(l)) + } + if m.Process != nil { + l = m.Process.Size() + n += 1 + l + sovApi(uint64(l)) + } + if len(m.Containers) > 0 { + for _, e := range m.Containers { + l = e.Size() + n += 1 + l + sovApi(uint64(l)) + } + } return n } @@ -17537,6 +18582,28 @@ func (m *NetworkUsage) Size() (n int) { return n } +func (m *WindowsNetworkUsage) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Timestamp != 0 { + n += 1 + sovApi(uint64(m.Timestamp)) + } + if m.DefaultInterface != nil { + l = m.DefaultInterface.Size() + n += 1 + l + sovApi(uint64(l)) + } + if len(m.Interfaces) > 0 { + for _, e := range m.Interfaces { + l = e.Size() + n += 1 + l + sovApi(uint64(l)) + } + } + return n +} + func (m *NetworkInterfaceUsage) Size() (n int) { if m == nil { return 0 @@ -17566,6 +18633,35 @@ func (m *NetworkInterfaceUsage) Size() (n int) { return n } +func (m *WindowsNetworkInterfaceUsage) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Name) + if l > 0 { + n += 1 + l + sovApi(uint64(l)) + } + if m.RxBytes != nil { + l = m.RxBytes.Size() + n += 1 + l + sovApi(uint64(l)) + } + if m.RxPacketsDropped != nil { + l = m.RxPacketsDropped.Size() + n += 1 + l + sovApi(uint64(l)) + } + if m.TxBytes != nil { + l = m.TxBytes.Size() + n += 1 + l + sovApi(uint64(l)) + } + if m.TxPacketsDropped != nil { + l = m.TxPacketsDropped.Size() + n += 1 + l + sovApi(uint64(l)) + } + return n +} + func (m *ProcessUsage) Size() (n int) { if m == nil { return 0 @@ -17582,6 +18678,22 @@ func (m *ProcessUsage) Size() (n int) { return n } +func (m *WindowsProcessUsage) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Timestamp != 0 { + n += 1 + sovApi(uint64(m.Timestamp)) + } + if m.ProcessCount != nil { + l = m.ProcessCount.Size() + n += 1 + l + sovApi(uint64(l)) + } + return n +} + func (m *ImageSpec) Size() (n int) { if m == nil { return 0 @@ -18988,6 +20100,26 @@ func (m *FilesystemUsage) Size() (n int) { return n } +func (m *WindowsFilesystemUsage) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Timestamp != 0 { + n += 1 + sovApi(uint64(m.Timestamp)) + } + if m.FsId != nil { + l = m.FsId.Size() + n += 1 + l + sovApi(uint64(l)) + } + if m.UsedBytes != nil { + l = m.UsedBytes.Size() + n += 1 + l + sovApi(uint64(l)) + } + return n +} + func (m *ImageFsInfoResponse) Size() (n int) { if m == nil { return 0 @@ -19140,6 +20272,31 @@ func (m *ContainerStats) Size() (n int) { return n } +func (m *WindowsContainerStats) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Attributes != nil { + l = m.Attributes.Size() + n += 1 + l + sovApi(uint64(l)) + } + if m.Cpu != nil { + l = m.Cpu.Size() + n += 1 + l + sovApi(uint64(l)) + } + if m.Memory != nil { + l = m.Memory.Size() + n += 1 + l + sovApi(uint64(l)) + } + if m.WritableLayer != nil { + l = m.WritableLayer.Size() + n += 1 + l + sovApi(uint64(l)) + } + return n +} + func (m *CpuUsage) Size() (n int) { if m == nil { return 0 @@ -19160,6 +20317,26 @@ func (m *CpuUsage) Size() (n int) { return n } +func (m *WindowsCpuUsage) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Timestamp != 0 { + n += 1 + sovApi(uint64(m.Timestamp)) + } + if m.UsageCoreNanoSeconds != nil { + l = m.UsageCoreNanoSeconds.Size() + n += 1 + l + sovApi(uint64(l)) + } + if m.UsageNanoCores != nil { + l = m.UsageNanoCores.Size() + n += 1 + l + sovApi(uint64(l)) + } + return n +} + func (m *MemoryUsage) Size() (n int) { if m == nil { return 0 @@ -19196,6 +20373,30 @@ func (m *MemoryUsage) Size() (n int) { return n } +func (m *WindowsMemoryUsage) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Timestamp != 0 { + n += 1 + sovApi(uint64(m.Timestamp)) + } + if m.WorkingSetBytes != nil { + l = m.WorkingSetBytes.Size() + n += 1 + l + sovApi(uint64(l)) + } + if m.AvailableBytes != nil { + l = m.AvailableBytes.Size() + n += 1 + l + sovApi(uint64(l)) + } + if m.PageFaults != nil { + l = m.PageFaults.Size() + n += 1 + l + sovApi(uint64(l)) + } + return n +} + func (m *ReopenContainerLogRequest) Size() (n int) { if m == nil { return 0 @@ -19917,7 +21118,17 @@ func (this *WindowsPodSandboxStats) String() string { if this == nil { return "nil" } + repeatedStringForContainers := "[]*WindowsContainerStats{" + for _, f := range this.Containers { + repeatedStringForContainers += strings.Replace(f.String(), "WindowsContainerStats", "WindowsContainerStats", 1) + "," + } + repeatedStringForContainers += "}" s := strings.Join([]string{`&WindowsPodSandboxStats{`, + `Cpu:` + strings.Replace(this.Cpu.String(), "WindowsCpuUsage", "WindowsCpuUsage", 1) + `,`, + `Memory:` + strings.Replace(this.Memory.String(), "WindowsMemoryUsage", "WindowsMemoryUsage", 1) + `,`, + `Network:` + strings.Replace(this.Network.String(), "WindowsNetworkUsage", "WindowsNetworkUsage", 1) + `,`, + `Process:` + strings.Replace(this.Process.String(), "WindowsProcessUsage", "WindowsProcessUsage", 1) + `,`, + `Containers:` + repeatedStringForContainers + `,`, `}`, }, "") return s @@ -19939,6 +21150,23 @@ func (this *NetworkUsage) String() string { }, "") return s } +func (this *WindowsNetworkUsage) String() string { + if this == nil { + return "nil" + } + repeatedStringForInterfaces := "[]*WindowsNetworkInterfaceUsage{" + for _, f := range this.Interfaces { + repeatedStringForInterfaces += strings.Replace(f.String(), "WindowsNetworkInterfaceUsage", "WindowsNetworkInterfaceUsage", 1) + "," + } + repeatedStringForInterfaces += "}" + s := strings.Join([]string{`&WindowsNetworkUsage{`, + `Timestamp:` + fmt.Sprintf("%v", this.Timestamp) + `,`, + `DefaultInterface:` + strings.Replace(this.DefaultInterface.String(), "WindowsNetworkInterfaceUsage", "WindowsNetworkInterfaceUsage", 1) + `,`, + `Interfaces:` + repeatedStringForInterfaces + `,`, + `}`, + }, "") + return s +} func (this *NetworkInterfaceUsage) String() string { if this == nil { return "nil" @@ -19953,6 +21181,20 @@ func (this *NetworkInterfaceUsage) String() string { }, "") return s } +func (this *WindowsNetworkInterfaceUsage) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&WindowsNetworkInterfaceUsage{`, + `Name:` + fmt.Sprintf("%v", this.Name) + `,`, + `RxBytes:` + strings.Replace(this.RxBytes.String(), "UInt64Value", "UInt64Value", 1) + `,`, + `RxPacketsDropped:` + strings.Replace(this.RxPacketsDropped.String(), "UInt64Value", "UInt64Value", 1) + `,`, + `TxBytes:` + strings.Replace(this.TxBytes.String(), "UInt64Value", "UInt64Value", 1) + `,`, + `TxPacketsDropped:` + strings.Replace(this.TxPacketsDropped.String(), "UInt64Value", "UInt64Value", 1) + `,`, + `}`, + }, "") + return s +} func (this *ProcessUsage) String() string { if this == nil { return "nil" @@ -19964,6 +21206,17 @@ func (this *ProcessUsage) String() string { }, "") return s } +func (this *WindowsProcessUsage) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&WindowsProcessUsage{`, + `Timestamp:` + fmt.Sprintf("%v", this.Timestamp) + `,`, + `ProcessCount:` + strings.Replace(this.ProcessCount.String(), "UInt64Value", "UInt64Value", 1) + `,`, + `}`, + }, "") + return s +} func (this *ImageSpec) String() string { if this == nil { return "nil" @@ -20919,6 +22172,18 @@ func (this *FilesystemUsage) String() string { }, "") return s } +func (this *WindowsFilesystemUsage) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&WindowsFilesystemUsage{`, + `Timestamp:` + fmt.Sprintf("%v", this.Timestamp) + `,`, + `FsId:` + strings.Replace(this.FsId.String(), "FilesystemIdentifier", "FilesystemIdentifier", 1) + `,`, + `UsedBytes:` + strings.Replace(this.UsedBytes.String(), "UInt64Value", "UInt64Value", 1) + `,`, + `}`, + }, "") + return s +} func (this *ImageFsInfoResponse) String() string { if this == nil { return "nil" @@ -21047,6 +22312,19 @@ func (this *ContainerStats) String() string { }, "") return s } +func (this *WindowsContainerStats) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&WindowsContainerStats{`, + `Attributes:` + strings.Replace(this.Attributes.String(), "ContainerAttributes", "ContainerAttributes", 1) + `,`, + `Cpu:` + strings.Replace(this.Cpu.String(), "WindowsCpuUsage", "WindowsCpuUsage", 1) + `,`, + `Memory:` + strings.Replace(this.Memory.String(), "WindowsMemoryUsage", "WindowsMemoryUsage", 1) + `,`, + `WritableLayer:` + strings.Replace(this.WritableLayer.String(), "WindowsFilesystemUsage", "WindowsFilesystemUsage", 1) + `,`, + `}`, + }, "") + return s +} func (this *CpuUsage) String() string { if this == nil { return "nil" @@ -21059,6 +22337,18 @@ func (this *CpuUsage) String() string { }, "") return s } +func (this *WindowsCpuUsage) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&WindowsCpuUsage{`, + `Timestamp:` + fmt.Sprintf("%v", this.Timestamp) + `,`, + `UsageCoreNanoSeconds:` + strings.Replace(this.UsageCoreNanoSeconds.String(), "UInt64Value", "UInt64Value", 1) + `,`, + `UsageNanoCores:` + strings.Replace(this.UsageNanoCores.String(), "UInt64Value", "UInt64Value", 1) + `,`, + `}`, + }, "") + return s +} func (this *MemoryUsage) String() string { if this == nil { return "nil" @@ -21075,6 +22365,19 @@ func (this *MemoryUsage) String() string { }, "") return s } +func (this *WindowsMemoryUsage) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&WindowsMemoryUsage{`, + `Timestamp:` + fmt.Sprintf("%v", this.Timestamp) + `,`, + `WorkingSetBytes:` + strings.Replace(this.WorkingSetBytes.String(), "UInt64Value", "UInt64Value", 1) + `,`, + `AvailableBytes:` + strings.Replace(this.AvailableBytes.String(), "UInt64Value", "UInt64Value", 1) + `,`, + `PageFaults:` + strings.Replace(this.PageFaults.String(), "UInt64Value", "UInt64Value", 1) + `,`, + `}`, + }, "") + return s +} func (this *ReopenContainerLogRequest) String() string { if this == nil { return "nil" @@ -27817,6 +29120,184 @@ func (m *WindowsPodSandboxStats) Unmarshal(dAtA []byte) error { return fmt.Errorf("proto: WindowsPodSandboxStats: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Cpu", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Cpu == nil { + m.Cpu = &WindowsCpuUsage{} + } + if err := m.Cpu.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Memory", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Memory == nil { + m.Memory = &WindowsMemoryUsage{} + } + if err := m.Memory.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Network", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Network == nil { + m.Network = &WindowsNetworkUsage{} + } + if err := m.Network.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Process", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Process == nil { + m.Process = &WindowsProcessUsage{} + } + if err := m.Process.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Containers", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Containers = append(m.Containers, &WindowsContainerStats{}) + if err := m.Containers[len(m.Containers)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipApi(dAtA[iNdEx:]) @@ -27977,6 +29458,145 @@ func (m *NetworkUsage) Unmarshal(dAtA []byte) error { } return nil } +func (m *WindowsNetworkUsage) 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: WindowsNetworkUsage: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: WindowsNetworkUsage: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Timestamp", wireType) + } + m.Timestamp = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Timestamp |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field DefaultInterface", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.DefaultInterface == nil { + m.DefaultInterface = &WindowsNetworkInterfaceUsage{} + } + if err := m.DefaultInterface.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Interfaces", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Interfaces = append(m.Interfaces, &WindowsNetworkInterfaceUsage{}) + if err := m.Interfaces[len(m.Interfaces)-1].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) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *NetworkInterfaceUsage) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -28203,6 +29823,232 @@ func (m *NetworkInterfaceUsage) Unmarshal(dAtA []byte) error { } return nil } +func (m *WindowsNetworkInterfaceUsage) 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: WindowsNetworkInterfaceUsage: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: WindowsNetworkInterfaceUsage: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Name = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field RxBytes", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.RxBytes == nil { + m.RxBytes = &UInt64Value{} + } + if err := m.RxBytes.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field RxPacketsDropped", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.RxPacketsDropped == nil { + m.RxPacketsDropped = &UInt64Value{} + } + if err := m.RxPacketsDropped.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field TxBytes", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.TxBytes == nil { + m.TxBytes = &UInt64Value{} + } + if err := m.TxBytes.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field TxPacketsDropped", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.TxPacketsDropped == nil { + m.TxPacketsDropped = &UInt64Value{} + } + if err := m.TxPacketsDropped.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) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *ProcessUsage) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -28308,6 +30154,111 @@ func (m *ProcessUsage) Unmarshal(dAtA []byte) error { } return nil } +func (m *WindowsProcessUsage) 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: WindowsProcessUsage: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: WindowsProcessUsage: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Timestamp", wireType) + } + m.Timestamp = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Timestamp |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ProcessCount", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.ProcessCount == nil { + m.ProcessCount = &UInt64Value{} + } + if err := m.ProcessCount.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) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *ImageSpec) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -38644,6 +40595,147 @@ func (m *FilesystemUsage) Unmarshal(dAtA []byte) error { } return nil } +func (m *WindowsFilesystemUsage) 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: WindowsFilesystemUsage: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: WindowsFilesystemUsage: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Timestamp", wireType) + } + m.Timestamp = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Timestamp |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field FsId", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.FsId == nil { + m.FsId = &FilesystemIdentifier{} + } + if err := m.FsId.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field UsedBytes", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.UsedBytes == nil { + m.UsedBytes = &UInt64Value{} + } + if err := m.UsedBytes.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) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *ImageFsInfoResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -39873,6 +41965,200 @@ func (m *ContainerStats) Unmarshal(dAtA []byte) error { } return nil } +func (m *WindowsContainerStats) 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: WindowsContainerStats: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: WindowsContainerStats: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Attributes", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Attributes == nil { + m.Attributes = &ContainerAttributes{} + } + if err := m.Attributes.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Cpu", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Cpu == nil { + m.Cpu = &WindowsCpuUsage{} + } + if err := m.Cpu.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Memory", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Memory == nil { + m.Memory = &WindowsMemoryUsage{} + } + if err := m.Memory.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field WritableLayer", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.WritableLayer == nil { + m.WritableLayer = &WindowsFilesystemUsage{} + } + if err := m.WritableLayer.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) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *CpuUsage) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -40014,6 +42300,147 @@ func (m *CpuUsage) Unmarshal(dAtA []byte) error { } return nil } +func (m *WindowsCpuUsage) 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: WindowsCpuUsage: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: WindowsCpuUsage: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Timestamp", wireType) + } + m.Timestamp = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Timestamp |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field UsageCoreNanoSeconds", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.UsageCoreNanoSeconds == nil { + m.UsageCoreNanoSeconds = &UInt64Value{} + } + if err := m.UsageCoreNanoSeconds.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field UsageNanoCores", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.UsageNanoCores == nil { + m.UsageNanoCores = &UInt64Value{} + } + if err := m.UsageNanoCores.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) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *MemoryUsage) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -40299,6 +42726,183 @@ func (m *MemoryUsage) Unmarshal(dAtA []byte) error { } return nil } +func (m *WindowsMemoryUsage) 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: WindowsMemoryUsage: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: WindowsMemoryUsage: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Timestamp", wireType) + } + m.Timestamp = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Timestamp |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field WorkingSetBytes", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.WorkingSetBytes == nil { + m.WorkingSetBytes = &UInt64Value{} + } + if err := m.WorkingSetBytes.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field AvailableBytes", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.AvailableBytes == nil { + m.AvailableBytes = &UInt64Value{} + } + if err := m.AvailableBytes.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field PageFaults", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.PageFaults == nil { + m.PageFaults = &UInt64Value{} + } + if err := m.PageFaults.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) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *ReopenContainerLogRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 diff --git a/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto b/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto index 9feb4b245f4..9a2172bcdf9 100644 --- a/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto +++ b/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto @@ -665,12 +665,21 @@ message LinuxPodSandboxStats { // WindowsPodSandboxStats provides the resource usage statistics for a pod sandbox on windows message WindowsPodSandboxStats { - // TODO: Add stats relevant to windows. + // CPU usage gathered for the pod sandbox. + WindowsCpuUsage cpu = 1; + // Memory usage gathered for the pod sandbox. + WindowsMemoryUsage memory = 2; + // Network usage gathered for the pod sandbox + WindowsNetworkUsage network = 3; + // Stats pertaining to processes in the pod sandbox. + WindowsProcessUsage process = 4; + // Stats of containers in the measured pod sandbox. + repeated WindowsContainerStats containers = 5; } // NetworkUsage contains data about network resources. message NetworkUsage { - // The time at which these stats were updated. + // Timestamp in nanoseconds at which the information were collected. Must be > 0. int64 timestamp = 1; // Stats for the default network interface. NetworkInterfaceUsage default_interface = 2; @@ -678,6 +687,16 @@ message NetworkUsage { repeated NetworkInterfaceUsage interfaces = 3; } +// WindowsNetworkUsage contains data about network resources specific to Windows. +message WindowsNetworkUsage { + // Timestamp in nanoseconds at which the information were collected. Must be > 0. + int64 timestamp = 1; + // Stats for the default network interface. + WindowsNetworkInterfaceUsage default_interface = 2; + // Stats for all found network interfaces, excluding the default. + repeated WindowsNetworkInterfaceUsage interfaces = 3; +} + // NetworkInterfaceUsage contains resource value data about a network interface. message NetworkInterfaceUsage { // The name of the network interface. @@ -692,9 +711,31 @@ message NetworkInterfaceUsage { UInt64Value tx_errors = 5; } +// WindowsNetworkInterfaceUsage contains resource value data about a network interface specific for Windows. +message WindowsNetworkInterfaceUsage { + // The name of the network interface. + string name = 1; + // Cumulative count of bytes received. + UInt64Value rx_bytes = 2; + // Cumulative count of receive errors encountered. + UInt64Value rx_packets_dropped = 3; + // Cumulative count of bytes transmitted. + UInt64Value tx_bytes = 4; + // Cumulative count of transmit errors encountered. + UInt64Value tx_packets_dropped = 5; +} + // ProcessUsage are stats pertaining to processes. message ProcessUsage { - // The time at which these stats were updated. + // Timestamp in nanoseconds at which the information were collected. Must be > 0. + int64 timestamp = 1; + // Number of processes. + UInt64Value process_count = 2; +} + +// WindowsProcessUsage are stats pertaining to processes specific to Windows. +message WindowsProcessUsage { + // Timestamp in nanoseconds at which the information were collected. Must be > 0. int64 timestamp = 1; // Number of processes. UInt64Value process_count = 2; @@ -1460,6 +1501,18 @@ message FilesystemUsage { UInt64Value inodes_used = 4; } +// WindowsFilesystemUsage provides the filesystem usage information specific to Windows. +message WindowsFilesystemUsage { + // Timestamp in nanoseconds at which the information were collected. Must be > 0. + int64 timestamp = 1; + // The unique identifier of the filesystem. + FilesystemIdentifier fs_id = 2; + // UsedBytes represents the bytes used for images on the filesystem. + // This may differ from the total bytes used on the filesystem and may not + // equal CapacityBytes - AvailableBytes. + UInt64Value used_bytes = 3; +} + message ImageFsInfoResponse { // Information of image filesystem(s). repeated FilesystemUsage image_filesystems = 1; @@ -1525,6 +1578,18 @@ message ContainerStats { FilesystemUsage writable_layer = 4; } +// WindowsContainerStats provides the resource usage statistics for a container specific for Windows +message WindowsContainerStats { + // Information of the container. + ContainerAttributes attributes = 1; + // CPU usage gathered from the container. + WindowsCpuUsage cpu = 2; + // Memory usage gathered from the container. + WindowsMemoryUsage memory = 3; + // Usage of the writable layer. + WindowsFilesystemUsage writable_layer = 4; +} + // CpuUsage provides the CPU usage information. message CpuUsage { // Timestamp in nanoseconds at which the information were collected. Must be > 0. @@ -1536,6 +1601,17 @@ message CpuUsage { UInt64Value usage_nano_cores = 3; } +// WindowsCpuUsage provides the CPU usage information specific to Windows +message WindowsCpuUsage { + // Timestamp in nanoseconds at which the information were collected. Must be > 0. + int64 timestamp = 1; + // Cumulative CPU usage (sum across all cores) since object creation. + UInt64Value usage_core_nano_seconds = 2; + // Total CPU usage (sum of all cores) averaged over the sample window. + // The "core" unit can be interpreted as CPU core-nanoseconds per second. + UInt64Value usage_nano_cores = 3; +} + // MemoryUsage provides the memory usage information. message MemoryUsage { // Timestamp in nanoseconds at which the information were collected. Must be > 0. @@ -1554,6 +1630,18 @@ message MemoryUsage { UInt64Value major_page_faults = 7; } +// WindowsMemoryUsage provides the memory usage information specific to Windows +message WindowsMemoryUsage { + // Timestamp in nanoseconds at which the information were collected. Must be > 0. + int64 timestamp = 1; + // The amount of working set memory in bytes. + UInt64Value working_set_bytes = 2; + // Available memory for use. This is defined as the memory limit - workingSetBytes. + UInt64Value available_bytes = 3; + // Cumulative number of page faults. + UInt64Value page_faults = 4; +} + message ReopenContainerLogRequest { // ID of the container for which to reopen the log. string container_id = 1;