Merge branch 'main' into user/gmohana/notify_id

This commit is contained in:
ganeshamohana 2024-03-20 15:42:31 -07:00 коммит произвёл GitHub
Родитель 201bba6036 4977ccd6a5
Коммит e964d25e21
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
5 изменённых файлов: 275 добавлений и 165 удалений

Просмотреть файл

@ -32,6 +32,7 @@ type VmSize struct {
GpuName string
MemoryMB int
GpuAssignMode GpuAssignType
GpuList []*pb.Gpu
}
// innerMap is captured in the closure returned below

Просмотреть файл

@ -521,6 +521,31 @@ func (SecurityType) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_7d1a061f6c82445b, []int{10}
}
type Gpu_AssignmentType int32
const (
Gpu_GpuDDA Gpu_AssignmentType = 0
Gpu_GpuP Gpu_AssignmentType = 1
)
var Gpu_AssignmentType_name = map[int32]string{
0: "GpuDDA",
1: "GpuP",
}
var Gpu_AssignmentType_value = map[string]int32{
"GpuDDA": 0,
"GpuP": 1,
}
func (x Gpu_AssignmentType) String() string {
return proto.EnumName(Gpu_AssignmentType_name, int32(x))
}
func (Gpu_AssignmentType) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_7d1a061f6c82445b, []int{2, 0}
}
type InstanceViewStatus_StatusLevelType int32
const (
@ -549,7 +574,7 @@ func (x InstanceViewStatus_StatusLevelType) String() string {
}
func (InstanceViewStatus_StatusLevelType) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_7d1a061f6c82445b, []int{8, 0}
return fileDescriptor_7d1a061f6c82445b, []int{9, 0}
}
type WinRMListener struct {
@ -630,10 +655,58 @@ func (m *WinRMConfiguration) GetListeners() []*WinRMListener {
return nil
}
type Gpu struct {
Assignment Gpu_AssignmentType `protobuf:"varint,1,opt,name=assignment,proto3,enum=moc.Gpu_AssignmentType" json:"assignment,omitempty"`
PartitionSizeGB int32 `protobuf:"varint,2,opt,name=partitionSizeGB,proto3" json:"partitionSizeGB,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Gpu) Reset() { *m = Gpu{} }
func (m *Gpu) String() string { return proto.CompactTextString(m) }
func (*Gpu) ProtoMessage() {}
func (*Gpu) Descriptor() ([]byte, []int) {
return fileDescriptor_7d1a061f6c82445b, []int{2}
}
func (m *Gpu) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Gpu.Unmarshal(m, b)
}
func (m *Gpu) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Gpu.Marshal(b, m, deterministic)
}
func (m *Gpu) XXX_Merge(src proto.Message) {
xxx_messageInfo_Gpu.Merge(m, src)
}
func (m *Gpu) XXX_Size() int {
return xxx_messageInfo_Gpu.Size(m)
}
func (m *Gpu) XXX_DiscardUnknown() {
xxx_messageInfo_Gpu.DiscardUnknown(m)
}
var xxx_messageInfo_Gpu proto.InternalMessageInfo
func (m *Gpu) GetAssignment() Gpu_AssignmentType {
if m != nil {
return m.Assignment
}
return Gpu_GpuDDA
}
func (m *Gpu) GetPartitionSizeGB() int32 {
if m != nil {
return m.PartitionSizeGB
}
return 0
}
type VirtualMachineCustomSize struct {
CpuCount int32 `protobuf:"varint,1,opt,name=cpuCount,proto3" json:"cpuCount,omitempty"`
MemoryMB int32 `protobuf:"varint,2,opt,name=memoryMB,proto3" json:"memoryMB,omitempty"`
GpuCount int32 `protobuf:"varint,3,opt,name=gpuCount,proto3" json:"gpuCount,omitempty"`
GpuList []*Gpu `protobuf:"bytes,4,rep,name=gpuList,proto3" json:"gpuList,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@ -643,7 +716,7 @@ func (m *VirtualMachineCustomSize) Reset() { *m = VirtualMachineCustomSi
func (m *VirtualMachineCustomSize) String() string { return proto.CompactTextString(m) }
func (*VirtualMachineCustomSize) ProtoMessage() {}
func (*VirtualMachineCustomSize) Descriptor() ([]byte, []int) {
return fileDescriptor_7d1a061f6c82445b, []int{2}
return fileDescriptor_7d1a061f6c82445b, []int{3}
}
func (m *VirtualMachineCustomSize) XXX_Unmarshal(b []byte) error {
@ -685,6 +758,13 @@ func (m *VirtualMachineCustomSize) GetGpuCount() int32 {
return 0
}
func (m *VirtualMachineCustomSize) GetGpuList() []*Gpu {
if m != nil {
return m.GpuList
}
return nil
}
type DynamicMemoryConfiguration struct {
MaximumMemoryMB uint64 `protobuf:"varint,1,opt,name=maximumMemoryMB,proto3" json:"maximumMemoryMB,omitempty"`
MinimumMemoryMB uint64 `protobuf:"varint,2,opt,name=minimumMemoryMB,proto3" json:"minimumMemoryMB,omitempty"`
@ -698,7 +778,7 @@ func (m *DynamicMemoryConfiguration) Reset() { *m = DynamicMemoryConfigu
func (m *DynamicMemoryConfiguration) String() string { return proto.CompactTextString(m) }
func (*DynamicMemoryConfiguration) ProtoMessage() {}
func (*DynamicMemoryConfiguration) Descriptor() ([]byte, []int) {
return fileDescriptor_7d1a061f6c82445b, []int{3}
return fileDescriptor_7d1a061f6c82445b, []int{4}
}
func (m *DynamicMemoryConfiguration) XXX_Unmarshal(b []byte) error {
@ -754,7 +834,7 @@ func (m *VirtualMachineRunCommandInputParameter) Reset() {
func (m *VirtualMachineRunCommandInputParameter) String() string { return proto.CompactTextString(m) }
func (*VirtualMachineRunCommandInputParameter) ProtoMessage() {}
func (*VirtualMachineRunCommandInputParameter) Descriptor() ([]byte, []int) {
return fileDescriptor_7d1a061f6c82445b, []int{4}
return fileDescriptor_7d1a061f6c82445b, []int{5}
}
func (m *VirtualMachineRunCommandInputParameter) XXX_Unmarshal(b []byte) error {
@ -802,7 +882,7 @@ func (m *VirtualMachineRunCommandScriptSource) Reset() { *m = VirtualMac
func (m *VirtualMachineRunCommandScriptSource) String() string { return proto.CompactTextString(m) }
func (*VirtualMachineRunCommandScriptSource) ProtoMessage() {}
func (*VirtualMachineRunCommandScriptSource) Descriptor() ([]byte, []int) {
return fileDescriptor_7d1a061f6c82445b, []int{5}
return fileDescriptor_7d1a061f6c82445b, []int{6}
}
func (m *VirtualMachineRunCommandScriptSource) XXX_Unmarshal(b []byte) error {
@ -858,7 +938,7 @@ func (m *VirtualMachineRunCommandInstanceView) Reset() { *m = VirtualMac
func (m *VirtualMachineRunCommandInstanceView) String() string { return proto.CompactTextString(m) }
func (*VirtualMachineRunCommandInstanceView) ProtoMessage() {}
func (*VirtualMachineRunCommandInstanceView) Descriptor() ([]byte, []int) {
return fileDescriptor_7d1a061f6c82445b, []int{6}
return fileDescriptor_7d1a061f6c82445b, []int{7}
}
func (m *VirtualMachineRunCommandInstanceView) XXX_Unmarshal(b []byte) error {
@ -920,7 +1000,7 @@ func (m *VirtualMachineCapabilities) Reset() { *m = VirtualMachineCapabi
func (m *VirtualMachineCapabilities) String() string { return proto.CompactTextString(m) }
func (*VirtualMachineCapabilities) ProtoMessage() {}
func (*VirtualMachineCapabilities) Descriptor() ([]byte, []int) {
return fileDescriptor_7d1a061f6c82445b, []int{7}
return fileDescriptor_7d1a061f6c82445b, []int{8}
}
func (m *VirtualMachineCapabilities) XXX_Unmarshal(b []byte) error {
@ -963,7 +1043,7 @@ func (m *InstanceViewStatus) Reset() { *m = InstanceViewStatus{} }
func (m *InstanceViewStatus) String() string { return proto.CompactTextString(m) }
func (*InstanceViewStatus) ProtoMessage() {}
func (*InstanceViewStatus) Descriptor() ([]byte, []int) {
return fileDescriptor_7d1a061f6c82445b, []int{8}
return fileDescriptor_7d1a061f6c82445b, []int{9}
}
func (m *InstanceViewStatus) XXX_Unmarshal(b []byte) error {
@ -1031,7 +1111,7 @@ func (m *VirtualMachineAgentInstanceView) Reset() { *m = VirtualMachineA
func (m *VirtualMachineAgentInstanceView) String() string { return proto.CompactTextString(m) }
func (*VirtualMachineAgentInstanceView) ProtoMessage() {}
func (*VirtualMachineAgentInstanceView) Descriptor() ([]byte, []int) {
return fileDescriptor_7d1a061f6c82445b, []int{9}
return fileDescriptor_7d1a061f6c82445b, []int{10}
}
func (m *VirtualMachineAgentInstanceView) XXX_Unmarshal(b []byte) error {
@ -1077,7 +1157,7 @@ func (m *GuestAgentConfiguration) Reset() { *m = GuestAgentConfiguration
func (m *GuestAgentConfiguration) String() string { return proto.CompactTextString(m) }
func (*GuestAgentConfiguration) ProtoMessage() {}
func (*GuestAgentConfiguration) Descriptor() ([]byte, []int) {
return fileDescriptor_7d1a061f6c82445b, []int{10}
return fileDescriptor_7d1a061f6c82445b, []int{11}
}
func (m *GuestAgentConfiguration) XXX_Unmarshal(b []byte) error {
@ -1119,7 +1199,7 @@ func (m *ProxyConfiguration) Reset() { *m = ProxyConfiguration{} }
func (m *ProxyConfiguration) String() string { return proto.CompactTextString(m) }
func (*ProxyConfiguration) ProtoMessage() {}
func (*ProxyConfiguration) Descriptor() ([]byte, []int) {
return fileDescriptor_7d1a061f6c82445b, []int{11}
return fileDescriptor_7d1a061f6c82445b, []int{12}
}
func (m *ProxyConfiguration) XXX_Unmarshal(b []byte) error {
@ -1198,9 +1278,11 @@ func init() {
proto.RegisterEnum("moc.VirtualMachineRunCommandExecutionState", VirtualMachineRunCommandExecutionState_name, VirtualMachineRunCommandExecutionState_value)
proto.RegisterEnum("moc.Architecture", Architecture_name, Architecture_value)
proto.RegisterEnum("moc.SecurityType", SecurityType_name, SecurityType_value)
proto.RegisterEnum("moc.Gpu_AssignmentType", Gpu_AssignmentType_name, Gpu_AssignmentType_value)
proto.RegisterEnum("moc.InstanceViewStatus_StatusLevelType", InstanceViewStatus_StatusLevelType_name, InstanceViewStatus_StatusLevelType_value)
proto.RegisterType((*WinRMListener)(nil), "moc.WinRMListener")
proto.RegisterType((*WinRMConfiguration)(nil), "moc.WinRMConfiguration")
proto.RegisterType((*Gpu)(nil), "moc.Gpu")
proto.RegisterType((*VirtualMachineCustomSize)(nil), "moc.VirtualMachineCustomSize")
proto.RegisterType((*DynamicMemoryConfiguration)(nil), "moc.DynamicMemoryConfiguration")
proto.RegisterType((*VirtualMachineRunCommandInputParameter)(nil), "moc.VirtualMachineRunCommandInputParameter")
@ -1218,114 +1300,119 @@ func init() {
func init() { proto.RegisterFile("moc_common_computecommon.proto", fileDescriptor_7d1a061f6c82445b) }
var fileDescriptor_7d1a061f6c82445b = []byte{
// 1735 bytes of a gzipped FileDescriptorProto
// 1821 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x97, 0xcd, 0x72, 0xe3, 0xc6,
0x11, 0x80, 0xc5, 0x3f, 0x49, 0x6c, 0xfd, 0xec, 0x68, 0x76, 0x57, 0xa2, 0x95, 0xf5, 0x5a, 0xa1,
0xd7, 0x6b, 0x85, 0xb6, 0x29, 0xfe, 0x99, 0xc5, 0x72, 0x55, 0xaa, 0x42, 0x91, 0x90, 0x96, 0x96,
0x08, 0xb2, 0x00, 0x92, 0x72, 0x72, 0x61, 0x20, 0x70, 0x48, 0x21, 0x21, 0x66, 0x50, 0xc0, 0x40,
0x2b, 0xf9, 0x90, 0xca, 0x29, 0xe7, 0x1c, 0x73, 0xc8, 0x21, 0xc7, 0xbc, 0x40, 0x2a, 0x4f, 0x90,
0x17, 0x48, 0x9e, 0x27, 0x55, 0xa9, 0x19, 0x00, 0x92, 0x00, 0x49, 0xf1, 0x89, 0xe8, 0xaf, 0x7b,
0xba, 0x1b, 0xdd, 0xcd, 0x99, 0x01, 0xbc, 0xb5, 0x99, 0x39, 0x35, 0x99, 0x6d, 0x33, 0x2a, 0x7e,
0x1c, 0x9f, 0x93, 0x40, 0x2a, 0x3b, 0x2e, 0xe3, 0x0c, 0x67, 0x6c, 0x66, 0xee, 0x1f, 0x2c, 0x18,
0x5b, 0x2c, 0xc9, 0x91, 0x44, 0x97, 0xfe, 0xfc, 0x68, 0x46, 0x3c, 0xd3, 0xb5, 0x1c, 0xce, 0xdc,
0xc0, 0xac, 0xd8, 0x81, 0xad, 0x0b, 0x8b, 0x6a, 0xfd, 0x73, 0xcb, 0xe3, 0x84, 0x12, 0x17, 0xd7,
0x60, 0x7d, 0x28, 0x34, 0x26, 0x5b, 0x16, 0x52, 0x07, 0xa9, 0xc3, 0xed, 0xda, 0x6e, 0xd9, 0x66,
0x66, 0x59, 0x5a, 0x45, 0x9a, 0xd1, 0xad, 0x43, 0xb4, 0x3b, 0xbb, 0xe2, 0x09, 0x60, 0xa9, 0xee,
0x30, 0x3a, 0xb7, 0x16, 0xbe, 0x6b, 0x70, 0x8b, 0x51, 0x5c, 0x81, 0x7c, 0xe4, 0xd5, 0x2b, 0xa4,
0x0e, 0x32, 0x87, 0x1b, 0x35, 0x7c, 0xef, 0x2a, 0x52, 0x69, 0xf7, 0x46, 0x45, 0x0a, 0x85, 0x89,
0xe5, 0x72, 0xdf, 0x58, 0xf6, 0x0d, 0xf3, 0xca, 0xa2, 0xa4, 0xe3, 0x7b, 0x9c, 0xd9, 0xba, 0xf5,
0x23, 0xc1, 0xfb, 0xb0, 0x6e, 0x3a, 0x7e, 0x87, 0xf9, 0x94, 0xcb, 0xbc, 0x72, 0xda, 0x9d, 0x2c,
0x74, 0x36, 0xb1, 0x99, 0x7b, 0xdb, 0x3f, 0x2e, 0xa4, 0x03, 0x5d, 0x24, 0x0b, 0xdd, 0x22, 0x5a,
0x97, 0x09, 0x74, 0x91, 0x5c, 0xfc, 0x5b, 0x0a, 0xf6, 0xbb, 0xb7, 0xd4, 0xb0, 0x2d, 0xb3, 0x2f,
0xed, 0xe3, 0x2f, 0x70, 0x08, 0x2f, 0x6c, 0xe3, 0xc6, 0xb2, 0x7d, 0xbb, 0x1f, 0x79, 0x17, 0x91,
0xb3, 0x5a, 0x12, 0x4b, 0x4b, 0x8b, 0xc6, 0x2c, 0xd3, 0xa1, 0x65, 0x1c, 0xe3, 0x32, 0x60, 0x6e,
0xb8, 0x0b, 0xc2, 0x03, 0x72, 0xec, 0xcf, 0xe7, 0xc4, 0x95, 0x89, 0x6d, 0x69, 0x4f, 0x68, 0x8a,
0x3f, 0xc0, 0xfb, 0x78, 0x49, 0x34, 0x9f, 0x76, 0x98, 0x6d, 0x1b, 0x74, 0xd6, 0xa3, 0x8e, 0xcf,
0x87, 0x86, 0x6b, 0xd8, 0x84, 0x13, 0x17, 0x63, 0xc8, 0xaa, 0x86, 0x4d, 0x64, 0x8a, 0x79, 0x4d,
0x3e, 0xe3, 0x7d, 0xc8, 0x4d, 0x8c, 0xa5, 0x4f, 0x64, 0x36, 0xf9, 0xe3, 0xec, 0x5f, 0xfe, 0x51,
0x48, 0x69, 0x01, 0x2a, 0xfe, 0x31, 0x05, 0xef, 0x9e, 0x73, 0xad, 0xcb, 0x21, 0xd1, 0x99, 0xef,
0x9a, 0x04, 0xbf, 0x81, 0xd5, 0x40, 0x0e, 0x5c, 0x1f, 0x67, 0xff, 0x2c, 0xbc, 0x84, 0x0c, 0xbf,
0x81, 0x7c, 0xf0, 0x34, 0xd6, 0x7a, 0x41, 0x18, 0xed, 0x1e, 0x08, 0x6d, 0x94, 0x6d, 0x57, 0xbe,
0x65, 0x5e, 0xbb, 0x07, 0xc5, 0x7f, 0xfd, 0x9f, 0x14, 0x7a, 0xd4, 0xe3, 0x06, 0x35, 0xc9, 0xc4,
0x22, 0x1f, 0xb1, 0x0e, 0xdb, 0xca, 0x0d, 0x31, 0x7d, 0xd1, 0x16, 0x9d, 0x1b, 0x9c, 0x84, 0xa3,
0xf9, 0x95, 0x9c, 0xa7, 0xe7, 0x5c, 0xc4, 0x97, 0x68, 0x09, 0x17, 0x62, 0x32, 0x94, 0x1b, 0x8b,
0x77, 0xd8, 0x8c, 0x44, 0x53, 0x13, 0xc9, 0x78, 0x17, 0x56, 0x07, 0x3e, 0x77, 0x7c, 0x1e, 0x26,
0x1d, 0x4a, 0xf8, 0x15, 0xe4, 0x14, 0xd7, 0x65, 0x6e, 0x21, 0x2b, 0x71, 0x20, 0x14, 0xbf, 0x87,
0xfd, 0xc4, 0xdc, 0x1a, 0x8e, 0x71, 0x69, 0x2d, 0x2d, 0x6e, 0x11, 0x0f, 0x7f, 0x0d, 0x3b, 0x3d,
0x8f, 0x2d, 0x0d, 0x4e, 0x66, 0x13, 0x5b, 0x6a, 0x96, 0x41, 0xfe, 0xeb, 0xda, 0x63, 0x45, 0xf1,
0xbf, 0x29, 0xc0, 0x0f, 0xdf, 0x5d, 0xe4, 0xea, 0x7b, 0xa2, 0xbb, 0xa6, 0x48, 0x34, 0xec, 0xae,
0x78, 0xc6, 0xbf, 0x84, 0xdc, 0x92, 0x5c, 0x93, 0xa5, 0xcc, 0x7e, 0xbb, 0xf6, 0xa5, 0x2c, 0xc6,
0xe3, 0xb5, 0xe5, 0xe0, 0xe7, 0x5c, 0x98, 0xca, 0x3f, 0x6e, 0xb0, 0x0a, 0xbf, 0x83, 0xad, 0x99,
0xe5, 0x39, 0x4b, 0xe3, 0x36, 0x30, 0x08, 0x5f, 0x35, 0x0e, 0x71, 0x01, 0xd6, 0x6c, 0xe2, 0x79,
0xc6, 0x82, 0x84, 0xef, 0x1c, 0x89, 0x22, 0x25, 0x6e, 0xd9, 0xa4, 0x90, 0x0b, 0x52, 0x12, 0xcf,
0xc5, 0x5f, 0xc1, 0x8b, 0x44, 0x34, 0xbc, 0x01, 0x6b, 0x63, 0xfa, 0x7b, 0xca, 0x3e, 0x52, 0xb4,
0x82, 0xd7, 0x21, 0xdb, 0xa3, 0x73, 0x86, 0x52, 0x02, 0x5f, 0x18, 0x2e, 0xb5, 0xe8, 0x02, 0xa5,
0x71, 0x3e, 0x2c, 0x2b, 0xca, 0x14, 0xff, 0x00, 0x9f, 0xc5, 0x6b, 0xd9, 0x5e, 0x10, 0xca, 0x63,
0xd3, 0xf0, 0x1e, 0xb6, 0xaf, 0x6d, 0x89, 0x27, 0xc4, 0xf5, 0x2c, 0x46, 0xc3, 0xaa, 0x24, 0x28,
0xae, 0xc3, 0xba, 0x27, 0x93, 0x21, 0x5e, 0x21, 0x2d, 0xf7, 0x9f, 0xbd, 0x67, 0x4a, 0xa4, 0xdd,
0x19, 0x16, 0xeb, 0xb0, 0x77, 0xea, 0x13, 0x8f, 0x4b, 0x4f, 0xf1, 0xfd, 0xa0, 0x00, 0x6b, 0x84,
0x8a, 0x26, 0xcd, 0xc2, 0xf6, 0x45, 0x62, 0xf1, 0xaf, 0x29, 0xc0, 0x43, 0x97, 0xdd, 0x24, 0x36,
0x90, 0x22, 0xe4, 0xaf, 0x38, 0x77, 0xa4, 0x26, 0xf6, 0xe7, 0xb9, 0xc7, 0xf8, 0x1d, 0x80, 0x10,
0xbc, 0xc0, 0x28, 0xfd, 0xc0, 0xe8, 0x01, 0x17, 0xa1, 0x29, 0x0b, 0x4c, 0x32, 0x07, 0x19, 0xd1,
0x85, 0x50, 0x14, 0x31, 0xb8, 0xeb, 0x7b, 0x9c, 0xcc, 0x3a, 0x46, 0xd0, 0xa1, 0x28, 0xc6, 0x1d,
0x2e, 0xbd, 0x85, 0xf5, 0xb1, 0x47, 0x5c, 0xd9, 0x8e, 0x75, 0xc8, 0x6a, 0x83, 0xc1, 0x28, 0xe8,
0xc5, 0x58, 0x57, 0x34, 0x94, 0x2a, 0xfd, 0x1a, 0xb6, 0x86, 0x2e, 0x33, 0x89, 0xe7, 0xb1, 0x3b,
0x23, 0x95, 0x51, 0x82, 0x56, 0x44, 0x67, 0x7a, 0x94, 0x93, 0x65, 0xd0, 0x31, 0xf9, 0xd8, 0x6c,
0xa0, 0x34, 0x5e, 0x83, 0x4c, 0xbb, 0xdf, 0x45, 0x19, 0x61, 0xd0, 0xee, 0x77, 0x9b, 0x0d, 0x94,
0x95, 0x4c, 0xeb, 0xa3, 0x9c, 0x64, 0x5a, 0xbf, 0xd9, 0x40, 0xab, 0xa5, 0xef, 0xe1, 0xed, 0xc0,
0x21, 0xa2, 0x1e, 0x74, 0xa1, 0xdf, 0x7a, 0x9c, 0xd8, 0xc7, 0x8c, 0x71, 0x8f, 0xbb, 0x86, 0xa3,
0xd0, 0x85, 0x45, 0x09, 0xde, 0x06, 0xe8, 0x9c, 0x0f, 0xc6, 0xdd, 0x69, 0x4f, 0xed, 0x89, 0xb4,
0x0a, 0xf0, 0xea, 0xa2, 0xa7, 0x76, 0x07, 0x17, 0xfa, 0xb4, 0xad, 0xea, 0x17, 0x8a, 0x36, 0x3d,
0xe9, 0x9d, 0x2b, 0x3a, 0x4a, 0x95, 0xbe, 0x81, 0x97, 0x09, 0x5f, 0xd1, 0x80, 0x85, 0x0b, 0x82,
0x7c, 0xcf, 0x7b, 0xea, 0xf8, 0x07, 0x94, 0x2a, 0xfd, 0x3d, 0x0f, 0xbb, 0xf1, 0x51, 0x12, 0x07,
0x49, 0xb4, 0xa4, 0x4b, 0xe6, 0x86, 0xbf, 0xe4, 0x68, 0x05, 0x63, 0xd8, 0xd6, 0xb9, 0x41, 0x67,
0x86, 0x3b, 0x9b, 0xb6, 0x6b, 0xd3, 0xeb, 0x1a, 0x4a, 0xc7, 0x59, 0x43, 0xb0, 0x0c, 0x7e, 0x29,
0x67, 0x3b, 0x60, 0xdd, 0x9a, 0x37, 0xbd, 0xae, 0xa3, 0x6c, 0x1c, 0x36, 0x24, 0xcc, 0xc5, 0x61,
0x4b, 0xc2, 0x55, 0xfc, 0x0a, 0xd0, 0x3d, 0xac, 0x36, 0x25, 0x5d, 0x8b, 0xd3, 0x7a, 0xe0, 0x75,
0x3d, 0xee, 0x40, 0x97, 0x39, 0xe5, 0x13, 0xb0, 0x2e, 0x20, 0x24, 0xa0, 0xcc, 0x74, 0x23, 0x01,
0xbf, 0x15, 0x70, 0x33, 0x1e, 0x49, 0xaf, 0xca, 0xf5, 0x5b, 0x31, 0xd3, 0xb3, 0x96, 0x3e, 0xbd,
0xae, 0xa2, 0xed, 0x98, 0xe9, 0x59, 0x4b, 0xc4, 0xaf, 0xa2, 0x17, 0x49, 0x5a, 0x17, 0x14, 0x25,
0x69, 0x43, 0xd0, 0x1d, 0x8c, 0x60, 0xf3, 0x8e, 0xaa, 0x67, 0x4d, 0x84, 0xf1, 0x0e, 0x6c, 0x3d,
0x20, 0xd5, 0x1a, 0x7a, 0x19, 0x37, 0x9a, 0x34, 0xd1, 0xab, 0xb8, 0xd1, 0xa4, 0x5a, 0x43, 0xaf,
0x93, 0xfe, 0xbf, 0x15, 0xfe, 0x77, 0xf1, 0x1e, 0xbc, 0x4c, 0x14, 0x68, 0xfa, 0x61, 0xa8, 0xa2,
0xbd, 0x84, 0xa2, 0x1e, 0x29, 0x0a, 0x09, 0x45, 0x23, 0x52, 0x7c, 0x12, 0x0b, 0x70, 0x52, 0xf3,
0x24, 0xdd, 0x8f, 0xd3, 0x46, 0x40, 0x7f, 0x16, 0xa7, 0xad, 0x80, 0xbe, 0xc1, 0xaf, 0x61, 0xe7,
0x9e, 0x8a, 0xce, 0x0a, 0xfc, 0x69, 0xac, 0xb4, 0x6a, 0xa7, 0x31, 0x6d, 0xd7, 0xd0, 0xdb, 0x04,
0x6c, 0x09, 0xf8, 0x59, 0xcc, 0xad, 0xda, 0xa9, 0x36, 0x05, 0x3d, 0x48, 0xd0, 0x7a, 0x4d, 0xd0,
0x9f, 0x27, 0x68, 0x63, 0xda, 0xae, 0x57, 0x50, 0x31, 0x41, 0x5b, 0x92, 0x7e, 0x1e, 0x4b, 0x2c,
0xf0, 0x5b, 0xaf, 0xa0, 0x77, 0x09, 0x2c, 0x1c, 0xd7, 0x2b, 0xe8, 0x0b, 0xf1, 0xc7, 0x8b, 0x7b,
0xae, 0x56, 0x2a, 0xd3, 0x46, 0x05, 0xbd, 0x4f, 0x68, 0x5a, 0x77, 0x9a, 0x2f, 0xf1, 0x27, 0xf0,
0x3a, 0x11, 0x21, 0x54, 0x1d, 0x26, 0x54, 0x22, 0x4a, 0xa8, 0xfa, 0xc5, 0xd3, 0x91, 0x5a, 0x15,
0x54, 0x7a, 0x3a, 0x52, 0xab, 0x82, 0xbe, 0x7a, 0x26, 0x52, 0xab, 0x82, 0xbe, 0x7e, 0x26, 0x52,
0xab, 0x82, 0xbe, 0x79, 0x5c, 0xad, 0x6a, 0x13, 0x95, 0x1f, 0x57, 0xab, 0xda, 0x44, 0x47, 0x4f,
0x54, 0xab, 0xda, 0x44, 0x95, 0x27, 0xaa, 0x55, 0x6d, 0xa2, 0x2a, 0xde, 0x82, 0x7c, 0x70, 0x3b,
0x15, 0x6d, 0x99, 0x3e, 0x10, 0xd5, 0x33, 0xf4, 0x5b, 0x31, 0xda, 0xa1, 0x78, 0xea, 0xf8, 0xce,
0x35, 0x32, 0x30, 0xc0, 0x6a, 0x40, 0xd0, 0x25, 0x7e, 0x01, 0x1b, 0x63, 0xea, 0xf9, 0x8e, 0xc3,
0x5c, 0x4e, 0x66, 0xc8, 0x2c, 0x1d, 0xc2, 0xce, 0xa3, 0xfb, 0xb5, 0xd8, 0x84, 0x3f, 0x8c, 0x46,
0xc3, 0x60, 0x53, 0x13, 0x4f, 0x62, 0x0f, 0x1c, 0x01, 0x0c, 0xd9, 0x47, 0xe2, 0x06, 0x57, 0x98,
0xd8, 0xd9, 0xba, 0x01, 0x6b, 0x9a, 0x4f, 0xe5, 0x89, 0x9a, 0x12, 0x7b, 0xf1, 0x60, 0x3e, 0x47,
0x69, 0x11, 0x77, 0x68, 0xf8, 0x1e, 0x99, 0xa1, 0x0c, 0xde, 0x84, 0xf5, 0x8e, 0x6b, 0x71, 0xcb,
0x34, 0x96, 0x28, 0x2b, 0xbc, 0xea, 0xc6, 0x35, 0x99, 0xa1, 0x5c, 0x69, 0x0e, 0x7b, 0xf1, 0x9d,
0x32, 0xdc, 0x67, 0x19, 0x95, 0x56, 0xa3, 0xb6, 0x16, 0x1e, 0x18, 0xfa, 0x68, 0x30, 0x44, 0x29,
0x01, 0x35, 0x45, 0x57, 0x46, 0x28, 0x8d, 0x77, 0x01, 0x6b, 0xca, 0xb0, 0xdd, 0xd3, 0xa6, 0xa7,
0x63, 0x45, 0x1f, 0x4d, 0xdb, 0xa7, 0x8a, 0x3a, 0x0a, 0xce, 0x85, 0x61, 0x7b, 0xac, 0x2b, 0x28,
0x2b, 0xd7, 0xb5, 0x27, 0x0a, 0xca, 0x95, 0xfe, 0x99, 0x7a, 0xfe, 0x3a, 0xfb, 0xe8, 0x76, 0xb6,
0x1b, 0x27, 0xd3, 0xb1, 0x7a, 0xa6, 0x0e, 0x2e, 0x54, 0xb4, 0x22, 0x1a, 0x9e, 0xd0, 0x9d, 0xb4,
0x7b, 0xe7, 0x4a, 0x17, 0xa5, 0xf0, 0x1b, 0x28, 0x24, 0x54, 0xfa, 0xb8, 0xd3, 0x51, 0x94, 0xae,
0xd2, 0x45, 0xe9, 0x27, 0x9c, 0x0e, 0x15, 0xb5, 0xdb, 0x53, 0x4f, 0x51, 0xe6, 0x89, 0x95, 0x9a,
0x72, 0x3c, 0x18, 0x8c, 0x84, 0x36, 0x5b, 0xfa, 0x11, 0x36, 0xdb, 0xae, 0x79, 0x65, 0x71, 0x62,
0x72, 0xdf, 0x25, 0xa2, 0xbe, 0x37, 0xad, 0x66, 0x50, 0x94, 0x7e, 0x4f, 0xb4, 0x46, 0x9e, 0x7a,
0x4b, 0xe7, 0xca, 0x40, 0x69, 0xd1, 0x0a, 0xd9, 0xa5, 0x61, 0x07, 0x65, 0xc4, 0xb4, 0xb5, 0xb5,
0xfe, 0xf4, 0xe1, 0x72, 0x94, 0x13, 0xeb, 0x2c, 0x43, 0x1c, 0x91, 0xd2, 0x55, 0xb3, 0x81, 0xf2,
0xa2, 0x94, 0xf2, 0xd8, 0x8c, 0x9b, 0x6e, 0x96, 0x3e, 0xc0, 0xa6, 0x4e, 0x4c, 0xdf, 0xb5, 0xf8,
0xad, 0x1c, 0x8c, 0x1d, 0xd8, 0x52, 0x07, 0xa3, 0xce, 0x40, 0x3d, 0xe9, 0x9d, 0x8e, 0x35, 0xa5,
0x8b, 0x56, 0x04, 0x1a, 0x69, 0x63, 0x7d, 0xa4, 0x74, 0xcf, 0xdb, 0x63, 0xb5, 0xf3, 0x01, 0xa5,
0xc4, 0x11, 0x26, 0x4d, 0xba, 0x8a, 0x3a, 0xea, 0xb5, 0xcf, 0x27, 0x7d, 0x94, 0xfe, 0xee, 0x0c,
0x90, 0x47, 0xa8, 0x67, 0x71, 0xeb, 0x9a, 0x84, 0x1f, 0x8d, 0xf8, 0xd3, 0x72, 0xf0, 0x91, 0x58,
0x8e, 0x3e, 0x12, 0xcb, 0x27, 0x16, 0x59, 0xce, 0x06, 0x8e, 0x28, 0x84, 0x57, 0xf8, 0xf7, 0x9f,
0x32, 0xf2, 0xae, 0xf3, 0x68, 0xe1, 0x77, 0x0a, 0x6c, 0xdd, 0xb1, 0xdf, 0x79, 0x8c, 0xfe, 0x94,
0xa7, 0xff, 0x84, 0x9e, 0xe2, 0xab, 0x8e, 0xbf, 0xf8, 0xcd, 0xe7, 0x0b, 0x8b, 0x5f, 0xf9, 0x97,
0x65, 0x93, 0xd9, 0x47, 0xb6, 0x65, 0xba, 0xcc, 0x63, 0x73, 0x7e, 0x64, 0x33, 0xf3, 0xc8, 0x75,
0xcc, 0xa3, 0xe0, 0xab, 0xf6, 0x72, 0x55, 0x3a, 0xad, 0xff, 0x2f, 0x00, 0x00, 0xff, 0xff, 0xfb,
0xf4, 0x5c, 0x58, 0xf8, 0x0e, 0x00, 0x00,
0x11, 0x80, 0x17, 0xfc, 0x91, 0xc8, 0xd6, 0xdf, 0x68, 0x76, 0x2d, 0xd1, 0xca, 0x7a, 0xad, 0xd0,
0xeb, 0xb5, 0x42, 0xdb, 0x14, 0xff, 0xcc, 0xb0, 0x5c, 0x95, 0xaa, 0x50, 0x24, 0xc4, 0xa5, 0x25,
0x82, 0x2c, 0x80, 0x94, 0x9c, 0x5c, 0x18, 0x08, 0x1c, 0x52, 0x48, 0x08, 0x0c, 0x0a, 0x18, 0x68,
0x25, 0x1f, 0x52, 0x39, 0xe5, 0xec, 0xca, 0x29, 0x87, 0x1c, 0x72, 0xcc, 0x0b, 0xa4, 0xf2, 0x04,
0x79, 0x81, 0xe4, 0x79, 0x52, 0x95, 0x9a, 0x01, 0x40, 0x09, 0x90, 0x94, 0x9c, 0x88, 0xfe, 0xfa,
0x17, 0xdd, 0xc3, 0x99, 0x01, 0xbc, 0xb1, 0xa8, 0x31, 0x35, 0xa8, 0x65, 0x51, 0x9b, 0xff, 0x38,
0x3e, 0x23, 0x81, 0x54, 0x76, 0x5c, 0xca, 0x28, 0x4e, 0x5b, 0xd4, 0x38, 0x38, 0x5c, 0x50, 0xba,
0x58, 0x92, 0x63, 0x81, 0xae, 0xfc, 0xf9, 0xf1, 0x8c, 0x78, 0x86, 0x6b, 0x3a, 0x8c, 0xba, 0x81,
0x59, 0xb1, 0x03, 0x5b, 0x97, 0xa6, 0xad, 0x0e, 0xce, 0x4d, 0x8f, 0x11, 0x9b, 0xb8, 0xb8, 0x06,
0xb9, 0x11, 0xd7, 0x18, 0x74, 0x59, 0x90, 0x0e, 0xa5, 0xa3, 0xed, 0xda, 0x5e, 0xd9, 0xa2, 0x46,
0x59, 0x58, 0x45, 0x9a, 0xf1, 0x9d, 0x43, 0xd4, 0x95, 0x5d, 0xf1, 0x14, 0xb0, 0x50, 0x77, 0xa8,
0x3d, 0x37, 0x17, 0xbe, 0xab, 0x33, 0x93, 0xda, 0xb8, 0x02, 0xf9, 0x28, 0xaa, 0x57, 0x90, 0x0e,
0xd3, 0x47, 0x1b, 0x35, 0x7c, 0x1f, 0x2a, 0x52, 0xa9, 0xf7, 0x46, 0xc5, 0x1f, 0x25, 0x48, 0xf7,
0x1c, 0x1f, 0xff, 0x1c, 0x40, 0xf7, 0x3c, 0x73, 0x61, 0x5b, 0xc4, 0x66, 0x61, 0x15, 0xfb, 0xc2,
0xb5, 0xe7, 0xf8, 0xe5, 0xf6, 0x4a, 0x25, 0xca, 0x78, 0x60, 0x8a, 0x8f, 0x60, 0xc7, 0xd1, 0x5d,
0x66, 0xf2, 0xfc, 0x9a, 0xf9, 0x03, 0xe9, 0x9d, 0x14, 0x52, 0x87, 0xd2, 0x51, 0x56, 0x4d, 0xe2,
0xe2, 0x3b, 0xd8, 0x8e, 0xc7, 0xc1, 0x00, 0x6b, 0x3d, 0xc7, 0xef, 0x76, 0xdb, 0xe8, 0x05, 0xce,
0x41, 0xa6, 0xe7, 0xf8, 0x23, 0x24, 0x15, 0xff, 0x24, 0x41, 0xe1, 0xc2, 0x74, 0x99, 0xaf, 0x2f,
0x07, 0xba, 0x71, 0x6d, 0xda, 0xa4, 0xe3, 0x7b, 0x8c, 0x5a, 0x3c, 0x0c, 0x3e, 0x80, 0x9c, 0xe1,
0xf8, 0x1d, 0xea, 0x87, 0x55, 0x66, 0xd5, 0x95, 0xcc, 0x75, 0x16, 0xb1, 0xa8, 0x7b, 0x37, 0x88,
0x6a, 0x58, 0xc9, 0x5c, 0xb7, 0x88, 0xfc, 0xd2, 0x81, 0x2e, 0x92, 0x71, 0x11, 0xd6, 0x17, 0x8e,
0xcf, 0x7b, 0x52, 0xc8, 0x88, 0x9e, 0xe5, 0xa2, 0x17, 0x57, 0x23, 0x45, 0xf1, 0xaf, 0x12, 0x1c,
0x74, 0xef, 0x6c, 0xdd, 0x32, 0x8d, 0x81, 0x88, 0x19, 0x6f, 0xfc, 0x11, 0xec, 0x58, 0xfa, 0xad,
0x69, 0xf9, 0xd6, 0x20, 0xaa, 0x80, 0x57, 0x97, 0x51, 0x93, 0x58, 0x58, 0x9a, 0x76, 0xcc, 0x32,
0x15, 0x5a, 0xc6, 0x31, 0x2e, 0x03, 0x66, 0xba, 0xbb, 0x20, 0x2c, 0x20, 0x27, 0xfe, 0x7c, 0x4e,
0x5c, 0x51, 0xfc, 0x96, 0xfa, 0x84, 0xa6, 0xf8, 0x3d, 0xbc, 0x8b, 0xb7, 0x4d, 0xf5, 0xed, 0x0e,
0xb5, 0x2c, 0xdd, 0x9e, 0xf5, 0x6d, 0xc7, 0x67, 0x23, 0xdd, 0xd5, 0x2d, 0xc2, 0x88, 0x8b, 0x31,
0x64, 0x14, 0xdd, 0x22, 0xa2, 0xc4, 0xbc, 0x2a, 0x9e, 0xf1, 0x01, 0x64, 0x2f, 0xf4, 0xa5, 0x4f,
0x44, 0x35, 0xf9, 0x93, 0xcc, 0x9f, 0xff, 0x5e, 0x90, 0xd4, 0x00, 0x15, 0xff, 0x20, 0xc1, 0xdb,
0xe7, 0x42, 0x6b, 0x62, 0x71, 0x6b, 0xd4, 0x77, 0x0d, 0x82, 0x5f, 0xc3, 0x5a, 0x20, 0x07, 0xa1,
0x4f, 0x32, 0x3f, 0xf2, 0x28, 0x21, 0xc3, 0xaf, 0x21, 0x1f, 0x3c, 0x4d, 0xd4, 0x7e, 0x90, 0x46,
0xbd, 0x07, 0x5c, 0x1b, 0x55, 0xdb, 0x15, 0x6f, 0x99, 0x57, 0xef, 0x41, 0xf1, 0x9f, 0xff, 0xa3,
0x84, 0xbe, 0xed, 0x31, 0xdd, 0x36, 0xc8, 0x85, 0x49, 0x3e, 0x60, 0x0d, 0xb6, 0xe5, 0x5b, 0x62,
0xf8, 0x62, 0xe1, 0x31, 0x9d, 0x91, 0x70, 0x31, 0x7f, 0x29, 0x66, 0xfa, 0x5c, 0x88, 0xb8, 0x8b,
0x9a, 0x08, 0xc1, 0x57, 0x8f, 0x7c, 0x6b, 0xb2, 0x0e, 0x9d, 0x91, 0x68, 0x65, 0x45, 0x32, 0xde,
0x83, 0xb5, 0xa1, 0xcf, 0x1c, 0x9f, 0x85, 0x45, 0x87, 0x12, 0x7e, 0x05, 0x59, 0xd9, 0x75, 0xa9,
0x5b, 0xc8, 0x08, 0x1c, 0x08, 0xc5, 0xef, 0xe0, 0x20, 0xb1, 0xb6, 0x75, 0x47, 0xbf, 0x32, 0x97,
0x26, 0x33, 0x89, 0x87, 0xbf, 0x82, 0xdd, 0xbe, 0x47, 0x97, 0x3a, 0x23, 0xb3, 0x0b, 0x4b, 0x68,
0x96, 0x41, 0xfd, 0x39, 0xf5, 0xb1, 0xa2, 0xf8, 0x1f, 0x09, 0xf0, 0xc3, 0x77, 0xe7, 0xb5, 0xfa,
0x1e, 0x9f, 0xae, 0xc1, 0x0b, 0x0d, 0xa7, 0xcb, 0x9f, 0xf1, 0x2f, 0x20, 0xbb, 0x24, 0x37, 0x64,
0x29, 0xaa, 0xdf, 0xae, 0x7d, 0x21, 0x9a, 0xf1, 0xd8, 0xb7, 0x1c, 0xfc, 0x9c, 0x73, 0x53, 0xf1,
0x4f, 0x0f, 0xbc, 0xf0, 0x5b, 0xd8, 0x9a, 0x99, 0x9e, 0xb3, 0xd4, 0xef, 0x02, 0x83, 0xf0, 0x55,
0xe3, 0x10, 0x17, 0x60, 0xdd, 0x22, 0x9e, 0xa7, 0x2f, 0x48, 0xf8, 0xce, 0x91, 0xc8, 0x4b, 0x62,
0xa6, 0x45, 0x0a, 0xd9, 0xa0, 0x24, 0xfe, 0x5c, 0xfc, 0x25, 0xec, 0x24, 0xb2, 0xe1, 0x0d, 0x58,
0x9f, 0xd8, 0xbf, 0xb3, 0xe9, 0x07, 0x3b, 0xd8, 0x10, 0xfa, 0xf6, 0x9c, 0x22, 0x89, 0xe3, 0x4b,
0xdd, 0xb5, 0x4d, 0x7b, 0x81, 0x52, 0x38, 0x1f, 0xb6, 0x15, 0xa5, 0x8b, 0xbf, 0x87, 0x4f, 0xe3,
0xbd, 0x6c, 0x2f, 0x88, 0xcd, 0x62, 0xab, 0xe1, 0x1d, 0x6c, 0xdf, 0x58, 0x02, 0x5f, 0x10, 0xd7,
0x33, 0xa9, 0x1d, 0x76, 0x25, 0x41, 0x71, 0x1d, 0x72, 0x9e, 0x28, 0x86, 0x78, 0x85, 0x94, 0xd8,
0x03, 0xf6, 0x9f, 0x69, 0x91, 0xba, 0x32, 0x2c, 0xd6, 0x61, 0xbf, 0xe7, 0x13, 0x8f, 0x89, 0x48,
0xf1, 0xfd, 0xa0, 0x00, 0xeb, 0xc4, 0xe6, 0x43, 0x9a, 0x85, 0xe3, 0x8b, 0xc4, 0xe2, 0x5f, 0x24,
0xc0, 0x23, 0x97, 0xde, 0x26, 0x36, 0x90, 0x22, 0xe4, 0xaf, 0x19, 0x73, 0x84, 0x26, 0xf6, 0xe7,
0xb9, 0xc7, 0xf8, 0x2d, 0x00, 0x17, 0xbc, 0xc0, 0x28, 0xf5, 0xc0, 0xe8, 0x01, 0xe7, 0xa9, 0x6d,
0x1a, 0x98, 0xa4, 0x0f, 0xd3, 0x7c, 0x0a, 0xa1, 0xc8, 0x73, 0x30, 0xd7, 0xf7, 0x18, 0x99, 0x75,
0xf4, 0x60, 0x42, 0x51, 0x8e, 0x15, 0x2e, 0xbd, 0x81, 0xdc, 0xc4, 0x23, 0xae, 0x18, 0x47, 0x0e,
0x32, 0xea, 0x70, 0x38, 0x0e, 0x66, 0x31, 0xd1, 0x64, 0x15, 0x49, 0xa5, 0x5f, 0xc1, 0xd6, 0xc8,
0xa5, 0x06, 0xf1, 0x3c, 0xba, 0x32, 0x52, 0xa8, 0x4d, 0xd0, 0x0b, 0x3e, 0x99, 0xbe, 0xcd, 0xc8,
0x32, 0x98, 0x98, 0x78, 0x6c, 0x36, 0x50, 0x0a, 0xaf, 0x43, 0xba, 0x3d, 0xe8, 0xa2, 0x34, 0x37,
0x68, 0x0f, 0xba, 0xcd, 0x06, 0xca, 0x08, 0xa6, 0x0e, 0x50, 0x56, 0x30, 0x75, 0xd0, 0x6c, 0xa0,
0xb5, 0xd2, 0x77, 0xf0, 0x66, 0xe8, 0x10, 0xde, 0x0f, 0x7b, 0xa1, 0xdd, 0x79, 0x8c, 0x58, 0x27,
0x94, 0x32, 0x8f, 0xb9, 0xba, 0x23, 0xdb, 0x0b, 0xd3, 0x26, 0x78, 0x1b, 0xa0, 0x73, 0x3e, 0x9c,
0x74, 0xa7, 0x7d, 0xa5, 0xcf, 0xcb, 0x2a, 0xc0, 0xab, 0xcb, 0xbe, 0xd2, 0x1d, 0x5e, 0x6a, 0xd3,
0xb6, 0xa2, 0x5d, 0xca, 0xea, 0xf4, 0xb4, 0x7f, 0x2e, 0x6b, 0x48, 0x2a, 0x7d, 0x0d, 0x2f, 0x13,
0xb1, 0xa2, 0x05, 0x16, 0x3a, 0x04, 0xf5, 0x9e, 0xf7, 0x95, 0xc9, 0xf7, 0x48, 0x2a, 0xfd, 0x2d,
0x0f, 0x7b, 0xf1, 0xa5, 0xc4, 0x0f, 0x9b, 0xc8, 0xa5, 0x4b, 0xe6, 0xba, 0xbf, 0x64, 0xe8, 0x05,
0xc6, 0xb0, 0xad, 0x31, 0xdd, 0x9e, 0xe9, 0xee, 0x6c, 0xda, 0xae, 0x4d, 0x6f, 0x6a, 0x28, 0x15,
0x67, 0x0d, 0xce, 0xd2, 0xf8, 0xa5, 0x58, 0xdb, 0x01, 0xeb, 0xd6, 0xbc, 0xe9, 0x4d, 0x1d, 0x65,
0xe2, 0xb0, 0x21, 0x60, 0x36, 0x0e, 0x5b, 0x02, 0xae, 0xe1, 0x57, 0x80, 0xee, 0x61, 0xb5, 0x29,
0xe8, 0x7a, 0x9c, 0xd6, 0x83, 0xa8, 0xb9, 0x78, 0x00, 0x4d, 0xd4, 0x94, 0x4f, 0xc0, 0x3a, 0x87,
0x90, 0x80, 0xa2, 0xd2, 0x8d, 0x04, 0xfc, 0x86, 0xc3, 0xcd, 0x78, 0x26, 0xad, 0x2a, 0xfc, 0xb7,
0x62, 0xa6, 0x67, 0x2d, 0x6d, 0x7a, 0x53, 0x45, 0xdb, 0x31, 0xd3, 0xb3, 0x16, 0xcf, 0x5f, 0x45,
0x3b, 0x49, 0x5a, 0xe7, 0x14, 0x25, 0x69, 0x83, 0xd3, 0x5d, 0x8c, 0x60, 0x73, 0x45, 0x95, 0xb3,
0x26, 0xc2, 0x78, 0x17, 0xb6, 0x1e, 0x90, 0x6a, 0x0d, 0xbd, 0x8c, 0x1b, 0x5d, 0x34, 0xd1, 0xab,
0xb8, 0xd1, 0x45, 0xb5, 0x86, 0x3e, 0x4a, 0xc6, 0xff, 0x86, 0xc7, 0xdf, 0xc3, 0xfb, 0xf0, 0x32,
0xd1, 0xa0, 0xe9, 0xfb, 0x91, 0x82, 0xf6, 0x13, 0x8a, 0x7a, 0xa4, 0x28, 0x24, 0x14, 0x8d, 0x48,
0xf1, 0x71, 0x2c, 0xc1, 0x69, 0xcd, 0x13, 0xf4, 0x20, 0x4e, 0x1b, 0x01, 0xfd, 0x49, 0x9c, 0xb6,
0x02, 0xfa, 0x1a, 0x7f, 0x04, 0xbb, 0xf7, 0x94, 0x4f, 0x96, 0xe3, 0x4f, 0x62, 0xad, 0x55, 0x3a,
0x8d, 0x69, 0xbb, 0x86, 0xde, 0x24, 0x60, 0x8b, 0xc3, 0x4f, 0x63, 0x61, 0x95, 0x4e, 0xb5, 0xc9,
0xe9, 0x61, 0x82, 0xd6, 0x6b, 0x9c, 0xfe, 0x34, 0x41, 0x1b, 0xd3, 0x76, 0xbd, 0x82, 0x8a, 0x09,
0xda, 0x12, 0xf4, 0xb3, 0x58, 0x61, 0x41, 0xdc, 0x7a, 0x05, 0xbd, 0x4d, 0x60, 0x1e, 0xb8, 0x5e,
0x41, 0x9f, 0xf3, 0x3f, 0x5e, 0x3c, 0x72, 0xb5, 0x52, 0x99, 0x36, 0x2a, 0xe8, 0x5d, 0x42, 0xd3,
0x5a, 0x69, 0xbe, 0xc0, 0x1f, 0xc3, 0x47, 0x89, 0x0c, 0xa1, 0xea, 0x28, 0xa1, 0xe2, 0x59, 0x42,
0xd5, 0xcf, 0x9e, 0xce, 0xd4, 0xaa, 0xa0, 0xd2, 0xd3, 0x99, 0x5a, 0x15, 0xf4, 0xe5, 0x33, 0x99,
0x5a, 0x15, 0xf4, 0xd5, 0x33, 0x99, 0x5a, 0x15, 0xf4, 0xf5, 0xe3, 0x6e, 0x55, 0x9b, 0xa8, 0xfc,
0xb8, 0x5b, 0xd5, 0x26, 0x3a, 0x7e, 0xa2, 0x5b, 0xd5, 0x26, 0xaa, 0x3c, 0xd1, 0xad, 0x6a, 0x13,
0x55, 0xf1, 0x16, 0xe4, 0x83, 0x1b, 0x2c, 0x1f, 0xcb, 0xf4, 0x81, 0xa8, 0x9c, 0xa1, 0xdf, 0xf0,
0xa5, 0x1d, 0x8a, 0x3d, 0xc7, 0x77, 0x6e, 0x90, 0xce, 0xaf, 0xc5, 0x01, 0x41, 0x57, 0x78, 0x07,
0x36, 0x26, 0xb6, 0xe7, 0x3b, 0x0e, 0x75, 0x19, 0x99, 0x21, 0xa3, 0x74, 0x04, 0xbb, 0x8f, 0xbe,
0x0b, 0xf8, 0x26, 0xfc, 0x7e, 0x3c, 0x1e, 0x05, 0x9b, 0x1a, 0x7f, 0xe2, 0x7b, 0xe0, 0x18, 0x60,
0x44, 0x3f, 0x10, 0x37, 0xb8, 0xc2, 0xc4, 0xce, 0xd6, 0x0d, 0x58, 0x57, 0x7d, 0x5b, 0x9c, 0xa8,
0x12, 0xdf, 0x8b, 0x87, 0xf3, 0x39, 0x4a, 0xf1, 0xbc, 0x23, 0xdd, 0xf7, 0xc8, 0x0c, 0xa5, 0xf1,
0x26, 0xe4, 0x3a, 0xae, 0xc9, 0x4c, 0x43, 0x5f, 0xa2, 0x0c, 0x8f, 0xaa, 0xe9, 0x37, 0x64, 0x86,
0xb2, 0xa5, 0x39, 0xec, 0xc7, 0x77, 0xca, 0x70, 0x9f, 0xa5, 0xb6, 0xb0, 0x1a, 0xb7, 0xd5, 0xf0,
0xc0, 0xd0, 0xc6, 0xc3, 0x11, 0x92, 0x38, 0x54, 0x65, 0x4d, 0x1e, 0xa3, 0x14, 0xde, 0x03, 0xac,
0xca, 0xa3, 0x76, 0x5f, 0x9d, 0xf6, 0x26, 0xb2, 0x36, 0x9e, 0xb6, 0x7b, 0xb2, 0x32, 0x0e, 0xce,
0x85, 0x51, 0x7b, 0xa2, 0xc9, 0x28, 0x23, 0xfc, 0xda, 0x17, 0x32, 0xca, 0x96, 0xfe, 0x21, 0x3d,
0x7f, 0x9d, 0x7d, 0x74, 0x3b, 0xdb, 0x8b, 0x93, 0xe9, 0x44, 0x39, 0x53, 0x86, 0x97, 0x0a, 0x7a,
0xc1, 0x07, 0x9e, 0xd0, 0x9d, 0xb6, 0xfb, 0xe7, 0x72, 0x17, 0x49, 0xf8, 0x35, 0x14, 0x12, 0x2a,
0x6d, 0xd2, 0xe9, 0xc8, 0x72, 0x57, 0xee, 0xa2, 0xd4, 0x13, 0x41, 0x47, 0xb2, 0xd2, 0xed, 0x2b,
0x3d, 0x94, 0x7e, 0xc2, 0x53, 0x95, 0x4f, 0x86, 0xc3, 0x31, 0xd7, 0x66, 0x4a, 0x3f, 0xc0, 0x66,
0xdb, 0x35, 0xae, 0x4d, 0x46, 0x0c, 0xe6, 0xbb, 0x84, 0xf7, 0xf7, 0xb6, 0xd5, 0x0c, 0x9a, 0x32,
0xe8, 0xf3, 0xd1, 0x88, 0x53, 0x6f, 0xe9, 0x5c, 0xeb, 0x28, 0xc5, 0x47, 0x21, 0xa6, 0x34, 0xea,
0xa0, 0x34, 0x5f, 0x6d, 0x6d, 0x75, 0x30, 0x7d, 0xe8, 0x8e, 0xb2, 0xdc, 0xcf, 0xd4, 0xf9, 0x11,
0x29, 0x42, 0x35, 0x1b, 0x28, 0xcf, 0x5b, 0x29, 0x8e, 0xcd, 0xb8, 0xe9, 0x66, 0xe9, 0x3d, 0x6c,
0x6a, 0xc4, 0xf0, 0x5d, 0x93, 0xdd, 0x89, 0x85, 0xb1, 0x0b, 0x5b, 0xca, 0x70, 0xdc, 0x19, 0x2a,
0xa7, 0xfd, 0xde, 0x44, 0x95, 0xbb, 0xe8, 0x05, 0x47, 0x63, 0x75, 0xa2, 0x8d, 0xe5, 0xee, 0x79,
0x7b, 0xa2, 0x74, 0xde, 0x23, 0x89, 0x1f, 0x61, 0xc2, 0xa4, 0x2b, 0x2b, 0xe3, 0x7e, 0xfb, 0xfc,
0x62, 0x80, 0x52, 0xdf, 0x9e, 0x01, 0xf2, 0x88, 0xed, 0x99, 0xcc, 0xbc, 0x21, 0xe1, 0xc7, 0x2e,
0xfe, 0xa4, 0x1c, 0x7c, 0xdc, 0x96, 0xa3, 0x8f, 0xdb, 0xf2, 0xa9, 0x49, 0x96, 0xb3, 0xa1, 0xc3,
0x1b, 0xe1, 0x15, 0xfe, 0xf5, 0xc7, 0xb4, 0xb8, 0xeb, 0x3c, 0x72, 0xfc, 0x56, 0x86, 0xad, 0x15,
0xfb, 0xad, 0x47, 0xed, 0xff, 0x17, 0xe9, 0xdf, 0x61, 0xa4, 0xb8, 0xd7, 0xc9, 0xe7, 0xbf, 0xfe,
0x6c, 0x61, 0xb2, 0x6b, 0xff, 0xaa, 0x6c, 0x50, 0xeb, 0xd8, 0x32, 0x0d, 0x97, 0x7a, 0x74, 0xce,
0x8e, 0x2d, 0x6a, 0x1c, 0xbb, 0x8e, 0x71, 0x1c, 0x7c, 0x8d, 0x5f, 0xad, 0x89, 0xa0, 0xf5, 0xff,
0x06, 0x00, 0x00, 0xff, 0xff, 0x9b, 0x1f, 0xa7, 0x82, 0xb0, 0x0f, 0x00, 0x00,
}

Просмотреть файл

@ -102,10 +102,21 @@ message WinRMConfiguration {
repeated WinRMListener Listeners = 1;
}
message Gpu {
enum AssignmentType {
GpuDDA = 0;
GpuP = 1;
}
AssignmentType assignment = 1;
int32 partitionSizeGB = 2;
}
message VirtualMachineCustomSize {
int32 cpuCount = 1;
int32 memoryMB = 2;
int32 gpuCount = 3;
repeated Gpu gpuList = 4;
}
message DynamicMemoryConfiguration {

Просмотреть файл

@ -444,6 +444,7 @@ type Resources struct {
Memory *PhysicalMemory `protobuf:"bytes,2,opt,name=memory,proto3" json:"memory,omitempty"`
Gpu *GPU `protobuf:"bytes,3,opt,name=gpu,proto3" json:"gpu,omitempty"`
VmCapabilities *VirtualMachineCapabilities `protobuf:"bytes,5,opt,name=vmCapabilities,proto3" json:"vmCapabilities,omitempty"`
GpuList []*Gpu `protobuf:"bytes,6,rep,name=gpuList,proto3" json:"gpuList,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@ -502,6 +503,13 @@ func (m *Resources) GetVmCapabilities() *VirtualMachineCapabilities {
return nil
}
func (m *Resources) GetGpuList() []*Gpu {
if m != nil {
return m.GpuList
}
return nil
}
func init() {
proto.RegisterEnum("moc.common.OsRegistrationState", OsRegistrationState_name, OsRegistrationState_value)
proto.RegisterType((*OsRegistrationStatus)(nil), "moc.common.OsRegistrationStatus")
@ -516,49 +524,51 @@ func init() {
func init() { proto.RegisterFile("moc_common_nodeinfo.proto", fileDescriptor_7c83f03f7e6831a3) }
var fileDescriptor_7c83f03f7e6831a3 = []byte{
// 702 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x54, 0xdd, 0x6e, 0xd3, 0x30,
0x14, 0xa6, 0x3f, 0xeb, 0xda, 0xd3, 0xad, 0xdb, 0xcc, 0x80, 0x30, 0x10, 0x94, 0x4c, 0x4c, 0x13,
0x42, 0x2d, 0xea, 0x34, 0x01, 0x97, 0x8c, 0x8b, 0x09, 0xa4, 0xb1, 0xca, 0xdb, 0xb8, 0xe0, 0x66,
0xca, 0xdc, 0xd3, 0xd6, 0xa2, 0x89, 0x23, 0xdb, 0xa9, 0x94, 0x3d, 0x1f, 0x4f, 0xc0, 0x43, 0xc0,
0x6b, 0xa0, 0x9c, 0xa4, 0x6d, 0xd2, 0x55, 0x13, 0x57, 0x89, 0xcf, 0xf7, 0x1d, 0xfb, 0x3b, 0xe7,
0x3b, 0x36, 0x3c, 0xf5, 0x95, 0xb8, 0x16, 0xca, 0xf7, 0x55, 0x70, 0x1d, 0xa8, 0x01, 0xca, 0x60,
0xa8, 0x3a, 0xa1, 0x56, 0x56, 0x31, 0xf0, 0x95, 0xe8, 0xa4, 0xd0, 0xde, 0x93, 0x1c, 0x2d, 0xfd,
0xa4, 0xa4, 0xbd, 0x17, 0x45, 0x20, 0x8c, 0x2c, 0xe6, 0x71, 0xf7, 0x1c, 0x76, 0xcf, 0x0d, 0xc7,
0x91, 0x34, 0x56, 0x7b, 0x56, 0xaa, 0xe0, 0xc2, 0x7a, 0x36, 0x32, 0xec, 0x3d, 0xd4, 0x0c, 0xfd,
0x39, 0xa5, 0x76, 0xe9, 0xb0, 0xd5, 0x7b, 0xd9, 0x59, 0x9c, 0xd6, 0xb9, 0x9b, 0x81, 0x3c, 0xa3,
0xbb, 0xbf, 0xcb, 0xd0, 0xe8, 0x6b, 0x25, 0xd0, 0x18, 0xa5, 0x19, 0x83, 0x6a, 0xe0, 0xf9, 0x48,
0x9b, 0x34, 0x38, 0xfd, 0xb3, 0x5d, 0x58, 0x13, 0x4a, 0xa3, 0x71, 0xca, 0xed, 0xd2, 0xe1, 0x26,
0x4f, 0x17, 0x49, 0xd4, 0x84, 0x88, 0x03, 0xa7, 0x42, 0xd4, 0x74, 0xc1, 0x0e, 0xa0, 0x6a, 0xe3,
0x10, 0x9d, 0x2a, 0x89, 0x60, 0x24, 0x62, 0xbe, 0xfb, 0x65, 0x1c, 0x22, 0x27, 0x9c, 0x1d, 0x40,
0x6b, 0x2a, 0xb5, 0x8d, 0xbc, 0x89, 0xbc, 0x25, 0x51, 0xce, 0x5a, 0xbb, 0x74, 0x58, 0xe7, 0x4b,
0x51, 0xf6, 0x16, 0x76, 0x26, 0x6a, 0x24, 0x85, 0x37, 0x09, 0x67, 0xbb, 0x18, 0xa7, 0x46, 0x3a,
0xee, 0x02, 0x09, 0x7b, 0x1c, 0x87, 0xa8, 0xa7, 0xd2, 0x28, 0x1d, 0x6a, 0x34, 0x18, 0x58, 0x67,
0x9d, 0x36, 0xbe, 0x0b, 0x30, 0x17, 0x36, 0x7c, 0x2f, 0x88, 0x86, 0x9e, 0xb0, 0x91, 0x46, 0xed,
0xd4, 0xa9, 0x90, 0x42, 0x8c, 0x1d, 0xc3, 0x86, 0xa7, 0xc5, 0x58, 0x5a, 0xa4, 0x80, 0xd3, 0xa0,
0xba, 0x76, 0xa8, 0xae, 0x4f, 0x39, 0x80, 0x17, 0x68, 0x6e, 0x07, 0x5a, 0xfd, 0x71, 0x6c, 0x12,
0x79, 0x67, 0xe8, 0x2b, 0x1d, 0xb3, 0xe7, 0xd0, 0x30, 0xf2, 0x16, 0x4f, 0x62, 0x8b, 0xa9, 0x45,
0x55, 0xbe, 0x08, 0xb8, 0x67, 0x50, 0x39, 0xed, 0x5f, 0xad, 0xec, 0x7e, 0x21, 0x31, 0x75, 0x60,
0x11, 0x48, 0xbd, 0x89, 0x02, 0x4b, 0x2e, 0x90, 0x37, 0x51, 0x60, 0xdd, 0xbf, 0x25, 0xd8, 0x3a,
0x0f, 0x31, 0xb1, 0x3b, 0x18, 0x5d, 0xc4, 0xc6, 0xa2, 0xcf, 0x3a, 0xc0, 0xd4, 0x2c, 0x64, 0x28,
0x64, 0x7e, 0x46, 0x99, 0x92, 0x15, 0x08, 0x7b, 0x07, 0x35, 0x65, 0xc8, 0xcb, 0x32, 0xd5, 0xec,
0x50, 0xcd, 0x4b, 0xbb, 0x92, 0xa3, 0x19, 0x2f, 0x51, 0xaa, 0xcc, 0x14, 0xb5, 0x49, 0xec, 0x4c,
0xa7, 0x62, 0x11, 0x60, 0x97, 0xb0, 0xab, 0x56, 0x0c, 0x2e, 0x4d, 0x4a, 0xb3, 0xd7, 0xbe, 0x7f,
0x5c, 0x23, 0xc3, 0x57, 0x66, 0xbb, 0xbf, 0xca, 0x50, 0xff, 0xa6, 0x06, 0xf8, 0x25, 0x18, 0xaa,
0x95, 0xed, 0x6b, 0x41, 0x59, 0x0e, 0xa8, 0x84, 0x06, 0x2f, 0xcb, 0x01, 0x3b, 0x06, 0x10, 0x5e,
0xe8, 0xdd, 0xc8, 0x89, 0xb4, 0x31, 0xa9, 0x6c, 0xf6, 0x1e, 0xe5, 0x0f, 0xe7, 0x68, 0x54, 0xa4,
0x05, 0x1a, 0x9e, 0x23, 0xb2, 0x8f, 0xb0, 0xe1, 0x4d, 0x3d, 0x39, 0x99, 0x25, 0x56, 0xef, 0x4b,
0x2c, 0x50, 0x73, 0x8d, 0xac, 0xfd, 0x67, 0x23, 0xf7, 0xe7, 0x77, 0x79, 0x9d, 0x8e, 0x69, 0x52,
0x46, 0xd6, 0x87, 0x0c, 0x62, 0x8f, 0xa1, 0x16, 0x85, 0x56, 0xfa, 0x48, 0x73, 0x5b, 0xe1, 0xd9,
0x8a, 0x1d, 0x25, 0xc7, 0x25, 0xed, 0xa0, 0x59, 0x6d, 0xf6, 0x9e, 0x15, 0x3a, 0x5b, 0x3c, 0x95,
0x67, 0x54, 0xf7, 0x4f, 0x09, 0x1a, 0x73, 0xfd, 0xec, 0x08, 0x1a, 0xf3, 0x4b, 0x45, 0xcd, 0x5c,
0xaa, 0x74, 0x7e, 0xa1, 0xf9, 0x82, 0xc7, 0x7a, 0x50, 0xf3, 0x69, 0xd4, 0xa9, 0xd9, 0xcd, 0xde,
0x5e, 0x21, 0xa3, 0x70, 0x19, 0x78, 0xc6, 0x64, 0xaf, 0xa0, 0x32, 0x0a, 0xa3, 0xcc, 0x85, 0xad,
0x7c, 0xc2, 0x69, 0xff, 0x8a, 0x27, 0x18, 0x3b, 0x85, 0xd6, 0xd4, 0xff, 0x3c, 0x33, 0x42, 0xa2,
0xa1, 0x87, 0xa2, 0x99, 0xbd, 0x6f, 0xdf, 0xd3, 0xd7, 0xe2, 0xcc, 0x13, 0x63, 0x19, 0x60, 0x9e,
0xc6, 0x97, 0xd2, 0xbe, 0x56, 0xeb, 0xd5, 0xed, 0xb5, 0x37, 0x1f, 0xe0, 0xe1, 0x8a, 0xc7, 0x90,
0xed, 0xc0, 0x66, 0xa0, 0x6c, 0x1a, 0x47, 0x8d, 0x83, 0xed, 0x07, 0xac, 0x05, 0xa0, 0x17, 0xeb,
0xd2, 0xc9, 0xeb, 0x1f, 0xfb, 0x23, 0x69, 0xc7, 0xd1, 0x4d, 0x22, 0xb1, 0xeb, 0x4b, 0xa1, 0x95,
0x51, 0x43, 0xdb, 0xf5, 0x95, 0xe8, 0xea, 0x50, 0x74, 0x53, 0xe1, 0x37, 0x35, 0x7a, 0xa6, 0x8f,
0xfe, 0x05, 0x00, 0x00, 0xff, 0xff, 0xbb, 0xf8, 0x3e, 0xea, 0x08, 0x06, 0x00, 0x00,
// 726 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x54, 0xdd, 0x6e, 0xd3, 0x4c,
0x10, 0xfd, 0xf2, 0x53, 0x37, 0x99, 0xb4, 0x69, 0xbb, 0x5f, 0x01, 0x53, 0x10, 0x04, 0x57, 0x54,
0x11, 0x42, 0x09, 0x4a, 0x55, 0x01, 0x97, 0x94, 0x8b, 0x08, 0x44, 0x69, 0xb4, 0x6d, 0xb9, 0xe0,
0xa6, 0x72, 0x9d, 0x49, 0xb2, 0x22, 0xf6, 0x5a, 0xbb, 0xeb, 0x48, 0xee, 0x23, 0xf0, 0x5c, 0x3c,
0x01, 0x2f, 0xc1, 0x6b, 0x20, 0x8f, 0x9d, 0xc4, 0x4e, 0xa3, 0x8a, 0x2b, 0x7b, 0xe7, 0x9c, 0x99,
0x9d, 0x99, 0x33, 0x3b, 0xf0, 0xd8, 0x97, 0xde, 0xb5, 0x27, 0x7d, 0x5f, 0x06, 0xd7, 0x81, 0x1c,
0xa2, 0x08, 0x46, 0xb2, 0x13, 0x2a, 0x69, 0x24, 0x03, 0x5f, 0x7a, 0x9d, 0x14, 0x3a, 0x78, 0x94,
0xa3, 0xa5, 0x9f, 0x94, 0x74, 0xf0, 0xac, 0x08, 0x84, 0x91, 0xc1, 0x3c, 0xee, 0x9c, 0xc3, 0xfe,
0xb9, 0xe6, 0x38, 0x16, 0xda, 0x28, 0xd7, 0x08, 0x19, 0x5c, 0x18, 0xd7, 0x44, 0x9a, 0xbd, 0x05,
0x4b, 0xd3, 0x9f, 0x5d, 0x6a, 0x95, 0xda, 0xcd, 0xde, 0xf3, 0xce, 0xf2, 0xb6, 0xce, 0x5d, 0x0f,
0xe4, 0x19, 0xdd, 0xf9, 0x5d, 0x86, 0xfa, 0x40, 0x49, 0x0f, 0xb5, 0x96, 0x8a, 0x31, 0xa8, 0x06,
0xae, 0x8f, 0x14, 0xa4, 0xce, 0xe9, 0x9f, 0xed, 0xc3, 0x86, 0x27, 0x15, 0x6a, 0xbb, 0xdc, 0x2a,
0xb5, 0xb7, 0x79, 0x7a, 0x48, 0xac, 0x3a, 0x44, 0x1c, 0xda, 0x15, 0xa2, 0xa6, 0x07, 0x76, 0x04,
0x55, 0x13, 0x87, 0x68, 0x57, 0x29, 0x09, 0x46, 0x49, 0x2c, 0xa2, 0x5f, 0xc6, 0x21, 0x72, 0xc2,
0xd9, 0x11, 0x34, 0x67, 0x42, 0x99, 0xc8, 0x9d, 0x8a, 0x5b, 0x4a, 0xca, 0xde, 0x68, 0x95, 0xda,
0x35, 0xbe, 0x62, 0x65, 0xaf, 0x61, 0x6f, 0x2a, 0xc7, 0xc2, 0x73, 0xa7, 0xe1, 0x3c, 0x8a, 0xb6,
0x2d, 0xca, 0xe3, 0x2e, 0x90, 0xb0, 0x27, 0x71, 0x88, 0x6a, 0x26, 0xb4, 0x54, 0xa1, 0x42, 0x8d,
0x81, 0xb1, 0x37, 0x29, 0xf0, 0x5d, 0x80, 0x39, 0xb0, 0xe5, 0xbb, 0x41, 0x34, 0x72, 0x3d, 0x13,
0x29, 0x54, 0x76, 0x8d, 0x0a, 0x29, 0xd8, 0xd8, 0x09, 0x6c, 0xb9, 0xca, 0x9b, 0x08, 0x83, 0x64,
0xb0, 0xeb, 0x54, 0xd7, 0x1e, 0xd5, 0xf5, 0x21, 0x07, 0xf0, 0x02, 0xcd, 0xe9, 0x40, 0x73, 0x30,
0x89, 0x75, 0x92, 0xde, 0x19, 0xfa, 0x52, 0xc5, 0xec, 0x29, 0xd4, 0xb5, 0xb8, 0xc5, 0xd3, 0xd8,
0x60, 0x2a, 0x51, 0x95, 0x2f, 0x0d, 0xce, 0x19, 0x54, 0xfa, 0x83, 0xab, 0xb5, 0xdd, 0x2f, 0x38,
0xa6, 0x0a, 0x2c, 0x0d, 0xa9, 0x36, 0x51, 0x60, 0x48, 0x05, 0xd2, 0x26, 0x0a, 0x8c, 0xf3, 0xa7,
0x04, 0x3b, 0xe7, 0x21, 0x26, 0x72, 0x07, 0xe3, 0x8b, 0x58, 0x1b, 0xf4, 0x59, 0x07, 0x98, 0x9c,
0x9b, 0x34, 0x99, 0xf4, 0x8f, 0x28, 0xcb, 0x64, 0x0d, 0xc2, 0xde, 0x80, 0x25, 0x35, 0x69, 0x59,
0xa6, 0x9a, 0x6d, 0xaa, 0x79, 0x25, 0x2a, 0x29, 0x9a, 0xf1, 0x92, 0x4c, 0xa5, 0x9e, 0xa1, 0xd2,
0x89, 0x9c, 0xe9, 0x54, 0x2c, 0x0d, 0xec, 0x12, 0xf6, 0xe5, 0x9a, 0xc1, 0xa5, 0x49, 0x69, 0xf4,
0x5a, 0xf7, 0x8f, 0x6b, 0xa4, 0xf9, 0x5a, 0x6f, 0xe7, 0x57, 0x19, 0x6a, 0x5f, 0xe5, 0x10, 0x3f,
0x05, 0x23, 0xb9, 0xb6, 0x7d, 0x4d, 0x28, 0x8b, 0x21, 0x95, 0x50, 0xe7, 0x65, 0x31, 0x64, 0x27,
0x00, 0x9e, 0x1b, 0xba, 0x37, 0x62, 0x2a, 0x4c, 0x4c, 0x59, 0x36, 0x7a, 0x0f, 0xf2, 0x97, 0x73,
0xd4, 0x32, 0x52, 0x1e, 0x6a, 0x9e, 0x23, 0xb2, 0xf7, 0xb0, 0xe5, 0xce, 0x5c, 0x31, 0x9d, 0x3b,
0x56, 0xef, 0x73, 0x2c, 0x50, 0x73, 0x8d, 0xb4, 0xfe, 0xb1, 0x91, 0x87, 0x8b, 0xb7, 0xbc, 0x49,
0xd7, 0x34, 0xc8, 0x23, 0xeb, 0x43, 0x06, 0xb1, 0x87, 0x60, 0x45, 0xa1, 0x11, 0x3e, 0xd2, 0xdc,
0x56, 0x78, 0x76, 0x62, 0xc7, 0xc9, 0x75, 0x49, 0x3b, 0x68, 0x56, 0x1b, 0xbd, 0x27, 0x85, 0xce,
0x16, 0x6f, 0xe5, 0x19, 0xd5, 0xf9, 0x59, 0x86, 0xfa, 0x22, 0x7f, 0x76, 0x0c, 0xf5, 0xc5, 0xa3,
0xa2, 0x66, 0xae, 0x54, 0xba, 0x78, 0xd0, 0x7c, 0xc9, 0x63, 0x3d, 0xb0, 0x7c, 0x1a, 0x75, 0x6a,
0x76, 0xa3, 0x77, 0x50, 0xf0, 0x28, 0x3c, 0x06, 0x9e, 0x31, 0xd9, 0x0b, 0xa8, 0x8c, 0xc3, 0x28,
0x53, 0x61, 0x27, 0xef, 0xd0, 0x1f, 0x5c, 0xf1, 0x04, 0x63, 0x7d, 0x68, 0xce, 0xfc, 0x8f, 0x73,
0x21, 0x04, 0x6a, 0x5a, 0x14, 0x8d, 0x6c, 0xbf, 0x7d, 0x4b, 0xb7, 0xc5, 0x99, 0xeb, 0x4d, 0x44,
0x80, 0x79, 0x1a, 0x5f, 0x71, 0x63, 0x0e, 0x6c, 0x8e, 0xc3, 0xe8, 0x8b, 0xd0, 0xc6, 0xb6, 0x5a,
0x95, 0x76, 0xa3, 0x57, 0xa3, 0x08, 0xfd, 0x30, 0xe2, 0x73, 0xe0, 0x73, 0xb5, 0x56, 0xdd, 0xdd,
0x78, 0xf5, 0x0e, 0xfe, 0x5f, 0xb3, 0x30, 0xd9, 0x1e, 0x6c, 0x07, 0xd2, 0xa4, 0x76, 0x54, 0x38,
0xdc, 0xfd, 0x8f, 0x35, 0x01, 0xd4, 0xf2, 0x5c, 0x3a, 0x7d, 0xf9, 0xfd, 0x70, 0x2c, 0xcc, 0x24,
0xba, 0x49, 0xca, 0xe8, 0xfa, 0xc2, 0x53, 0x52, 0xcb, 0x91, 0xe9, 0xfa, 0xd2, 0xeb, 0xaa, 0xd0,
0xeb, 0xa6, 0xc5, 0xdd, 0x58, 0xb4, 0xca, 0x8f, 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0xa1, 0x4d,
0x9b, 0x90, 0x2c, 0x06, 0x00, 0x00,
}

Просмотреть файл

@ -63,4 +63,5 @@ message Resources {
PhysicalMemory memory = 2;
GPU gpu = 3;
VirtualMachineCapabilities vmCapabilities = 5;
repeated Gpu gpuList = 6;
}