From 015cba92a712f6f8413919fe25ac885f56adbaa4 Mon Sep 17 00:00:00 2001 From: Felix Abecassis Date: Wed, 17 Oct 2018 11:22:08 -0700 Subject: [PATCH] vendor: Update kata agent and runtime-spec We need https://github.com/kata-containers/agent/pull/393 in order for #720 to be carried forward Signed-off-by: Felix Abecassis --- Gopkg.lock | 8 +- Gopkg.toml | 4 +- .../agent/protocols/client/client.go | 24 + .../agent/protocols/grpc/agent.pb.go | 770 ++++++++++++++---- .../runtime-spec/specs-go/config.go | 80 +- .../runtime-spec/specs-go/version.go | 2 +- 6 files changed, 714 insertions(+), 174 deletions(-) diff --git a/Gopkg.lock b/Gopkg.lock index c396dcd6e7..d2da3ef9c4 100644 --- a/Gopkg.lock +++ b/Gopkg.lock @@ -130,14 +130,14 @@ revision = "f03df80fc3dc52f65ed6c7d12806279b44185d32" [[projects]] - digest = "1:672470f31bc4e50f9ba09a1af7ab6035bf8b1452db64dfd79b1a22614bb30710" + digest = "1:b762cee977a9ee8f7a1b28c6084abf673cb68ed391baf1303d8acc048dfbc69d" name = "github.com/kata-containers/agent" packages = [ "protocols/client", "protocols/grpc", ] pruneopts = "NUT" - revision = "7e8e20b10b71fe3044a24175b8a686421e9d2c24" + revision = "03f040f14dceb858f6411db275fcac77f9f42a8d" [[projects]] digest = "1:04054595e5c5a35d1553a7f3464d18577caf597445d643992998643df56d4afd" @@ -173,11 +173,11 @@ revision = "0351df1c5a66838d0c392b4ac4cf9450de844e2d" [[projects]] - digest = "1:57234a321bf1f8f98a8a9a5122a2404cc60d0800516f4ab7a7b2375e4b2d19ea" + digest = "1:0d447d4961f4f9270457fbc20d0261bba8d3056f395efd2e2480e2dfa4487a60" name = "github.com/opencontainers/runtime-spec" packages = ["specs-go"] pruneopts = "NUT" - revision = "4e3b9264a330d094b0386c3703c5f379119711e8" + revision = "5806c35637336642129d03657419829569abc5aa" [[projects]] digest = "1:7da29c22bcc5c2ffb308324377dc00b5084650348c2799e573ed226d8cc9faf0" diff --git a/Gopkg.toml b/Gopkg.toml index 9329c02b20..90e16f0437 100644 --- a/Gopkg.toml +++ b/Gopkg.toml @@ -24,7 +24,7 @@ [[constraint]] name = "github.com/opencontainers/runtime-spec" - revision = "4e3b9264a330d094b0386c3703c5f379119711e8" + revision = "5806c35637336642129d03657419829569abc5aa" [[constraint]] name = "github.com/stretchr/testify" @@ -56,7 +56,7 @@ [[constraint]] name = "github.com/kata-containers/agent" - revision = "7e8e20b10b71fe3044a24175b8a686421e9d2c24" + revision = "03f040f14dceb858f6411db275fcac77f9f42a8d" [[constraint]] name = "github.com/containerd/cri-containerd" diff --git a/vendor/github.com/kata-containers/agent/protocols/client/client.go b/vendor/github.com/kata-containers/agent/protocols/client/client.go index 451beab07f..a0431301dc 100644 --- a/vendor/github.com/kata-containers/agent/protocols/client/client.go +++ b/vendor/github.com/kata-containers/agent/protocols/client/client.go @@ -165,6 +165,26 @@ func parse(sock string) (string, *url.URL, error) { return grpcAddr, addr, nil } +// This function is meant to run in a go routine since it will send ping +// commands every second. It behaves as a heartbeat to maintain a proper +// communication state with the Yamux server in the agent. +func heartBeat(session *yamux.Session) { + if session == nil { + return + } + + for { + if session.IsClosed() { + break + } + + session.Ping() + + // 1 Hz heartbeat + time.Sleep(time.Second) + } +} + func agentDialer(addr *url.URL, enableYamux bool) dialer { var d dialer switch addr.Scheme { @@ -196,11 +216,15 @@ func agentDialer(addr *url.URL, enableYamux bool) dialer { sessionConfig := yamux.DefaultConfig() // Disable keepAlive since we don't know how much time a container can be paused sessionConfig.EnableKeepAlive = false + sessionConfig.ConnectionWriteTimeout = time.Second session, err = yamux.Client(conn, sessionConfig) if err != nil { return nil, err } + // Start the heartbeat in a separate go routine + go heartBeat(session) + var stream net.Conn stream, err = session.Open() if err != nil { diff --git a/vendor/github.com/kata-containers/agent/protocols/grpc/agent.pb.go b/vendor/github.com/kata-containers/agent/protocols/grpc/agent.pb.go index ea680f03d9..c1b49bf577 100644 --- a/vendor/github.com/kata-containers/agent/protocols/grpc/agent.pb.go +++ b/vendor/github.com/kata-containers/agent/protocols/grpc/agent.pb.go @@ -55,6 +55,7 @@ ListRoutesRequest OnlineCPUMemRequest ReseedRandomDevRequest + AgentDetails GuestDetailsRequest GuestDetailsResponse Storage @@ -1087,6 +1088,9 @@ type CreateSandboxRequest struct { // one sandbox per agent and implicitly require that CreateSandbox is // called before other sandbox/network calls. SandboxId string `protobuf:"bytes,5,opt,name=sandbox_id,json=sandboxId,proto3" json:"sandbox_id,omitempty"` + // This field, if non-empty, designates an absolute path to a directory + // that the agent will search for OCI hooks to run within the guest. + GuestHookPath string `protobuf:"bytes,6,opt,name=guest_hook_path,json=guestHookPath,proto3" json:"guest_hook_path,omitempty"` } func (m *CreateSandboxRequest) Reset() { *m = CreateSandboxRequest{} } @@ -1129,6 +1133,13 @@ func (m *CreateSandboxRequest) GetSandboxId() string { return "" } +func (m *CreateSandboxRequest) GetGuestHookPath() string { + if m != nil { + return m.GuestHookPath + } + return "" +} + type DestroySandboxRequest struct { } @@ -1442,6 +1453,61 @@ func (m *ReseedRandomDevRequest) GetData() []byte { return nil } +// AgentDetails provides information to the client about the running agent. +type AgentDetails struct { + // Semantic version of agent (see https://semver.org). + Version string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"` + // Set if the agent is running as PID 1. + InitDaemon bool `protobuf:"varint,2,opt,name=init_daemon,json=initDaemon,proto3" json:"init_daemon,omitempty"` + // List of available device handlers. + DeviceHandlers []string `protobuf:"bytes,3,rep,name=device_handlers,json=deviceHandlers" json:"device_handlers,omitempty"` + // List of available storage handlers. + StorageHandlers []string `protobuf:"bytes,4,rep,name=storage_handlers,json=storageHandlers" json:"storage_handlers,omitempty"` + // Set only if the agent is built with seccomp support and the guest + // environment supports seccomp. + SupportsSeccomp bool `protobuf:"varint,5,opt,name=supports_seccomp,json=supportsSeccomp,proto3" json:"supports_seccomp,omitempty"` +} + +func (m *AgentDetails) Reset() { *m = AgentDetails{} } +func (m *AgentDetails) String() string { return proto.CompactTextString(m) } +func (*AgentDetails) ProtoMessage() {} +func (*AgentDetails) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{45} } + +func (m *AgentDetails) GetVersion() string { + if m != nil { + return m.Version + } + return "" +} + +func (m *AgentDetails) GetInitDaemon() bool { + if m != nil { + return m.InitDaemon + } + return false +} + +func (m *AgentDetails) GetDeviceHandlers() []string { + if m != nil { + return m.DeviceHandlers + } + return nil +} + +func (m *AgentDetails) GetStorageHandlers() []string { + if m != nil { + return m.StorageHandlers + } + return nil +} + +func (m *AgentDetails) GetSupportsSeccomp() bool { + if m != nil { + return m.SupportsSeccomp + } + return false +} + type GuestDetailsRequest struct { // MemBlockSize asks server to return the system memory block size that can be used // for memory hotplug alignment. Typically the server returns what's in @@ -1452,7 +1518,7 @@ type GuestDetailsRequest struct { func (m *GuestDetailsRequest) Reset() { *m = GuestDetailsRequest{} } func (m *GuestDetailsRequest) String() string { return proto.CompactTextString(m) } func (*GuestDetailsRequest) ProtoMessage() {} -func (*GuestDetailsRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{45} } +func (*GuestDetailsRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{46} } func (m *GuestDetailsRequest) GetMemBlockSize() bool { if m != nil { @@ -1463,13 +1529,14 @@ func (m *GuestDetailsRequest) GetMemBlockSize() bool { type GuestDetailsResponse struct { // MemBlockSizeBytes returns the system memory block size in bytes. - MemBlockSizeBytes uint64 `protobuf:"varint,1,opt,name=mem_block_size_bytes,json=memBlockSizeBytes,proto3" json:"mem_block_size_bytes,omitempty"` + MemBlockSizeBytes uint64 `protobuf:"varint,1,opt,name=mem_block_size_bytes,json=memBlockSizeBytes,proto3" json:"mem_block_size_bytes,omitempty"` + AgentDetails *AgentDetails `protobuf:"bytes,2,opt,name=agent_details,json=agentDetails" json:"agent_details,omitempty"` } func (m *GuestDetailsResponse) Reset() { *m = GuestDetailsResponse{} } func (m *GuestDetailsResponse) String() string { return proto.CompactTextString(m) } func (*GuestDetailsResponse) ProtoMessage() {} -func (*GuestDetailsResponse) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{46} } +func (*GuestDetailsResponse) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{47} } func (m *GuestDetailsResponse) GetMemBlockSizeBytes() uint64 { if m != nil { @@ -1478,6 +1545,13 @@ func (m *GuestDetailsResponse) GetMemBlockSizeBytes() uint64 { return 0 } +func (m *GuestDetailsResponse) GetAgentDetails() *AgentDetails { + if m != nil { + return m.AgentDetails + } + return nil +} + // Storage represents both the rootfs of the container, and any volume that // could have been defined through the Mount list of the OCI specification. type Storage struct { @@ -1511,7 +1585,7 @@ type Storage struct { func (m *Storage) Reset() { *m = Storage{} } func (m *Storage) String() string { return proto.CompactTextString(m) } func (*Storage) ProtoMessage() {} -func (*Storage) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{47} } +func (*Storage) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{48} } func (m *Storage) GetDriver() string { if m != nil { @@ -1594,7 +1668,7 @@ type Device struct { func (m *Device) Reset() { *m = Device{} } func (m *Device) String() string { return proto.CompactTextString(m) } func (*Device) ProtoMessage() {} -func (*Device) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{48} } +func (*Device) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{49} } func (m *Device) GetId() string { if m != nil { @@ -1640,7 +1714,7 @@ type StringUser struct { func (m *StringUser) Reset() { *m = StringUser{} } func (m *StringUser) String() string { return proto.CompactTextString(m) } func (*StringUser) ProtoMessage() {} -func (*StringUser) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{49} } +func (*StringUser) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{50} } func (m *StringUser) GetUid() string { if m != nil { @@ -1709,6 +1783,7 @@ func init() { proto.RegisterType((*ListRoutesRequest)(nil), "grpc.ListRoutesRequest") proto.RegisterType((*OnlineCPUMemRequest)(nil), "grpc.OnlineCPUMemRequest") proto.RegisterType((*ReseedRandomDevRequest)(nil), "grpc.ReseedRandomDevRequest") + proto.RegisterType((*AgentDetails)(nil), "grpc.AgentDetails") proto.RegisterType((*GuestDetailsRequest)(nil), "grpc.GuestDetailsRequest") proto.RegisterType((*GuestDetailsResponse)(nil), "grpc.GuestDetailsResponse") proto.RegisterType((*Storage)(nil), "grpc.Storage") @@ -3935,6 +4010,12 @@ func (m *CreateSandboxRequest) MarshalTo(dAtA []byte) (int, error) { i = encodeVarintAgent(dAtA, i, uint64(len(m.SandboxId))) i += copy(dAtA[i:], m.SandboxId) } + if len(m.GuestHookPath) > 0 { + dAtA[i] = 0x32 + i++ + i = encodeVarintAgent(dAtA, i, uint64(len(m.GuestHookPath))) + i += copy(dAtA[i:], m.GuestHookPath) + } return i, nil } @@ -4372,6 +4453,80 @@ func (m *ReseedRandomDevRequest) MarshalTo(dAtA []byte) (int, error) { return i, nil } +func (m *AgentDetails) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalTo(dAtA) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *AgentDetails) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + if len(m.Version) > 0 { + dAtA[i] = 0xa + i++ + i = encodeVarintAgent(dAtA, i, uint64(len(m.Version))) + i += copy(dAtA[i:], m.Version) + } + if m.InitDaemon { + dAtA[i] = 0x10 + i++ + if m.InitDaemon { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i++ + } + if len(m.DeviceHandlers) > 0 { + for _, s := range m.DeviceHandlers { + dAtA[i] = 0x1a + i++ + l = len(s) + for l >= 1<<7 { + dAtA[i] = uint8(uint64(l)&0x7f | 0x80) + l >>= 7 + i++ + } + dAtA[i] = uint8(l) + i++ + i += copy(dAtA[i:], s) + } + } + if len(m.StorageHandlers) > 0 { + for _, s := range m.StorageHandlers { + dAtA[i] = 0x22 + i++ + l = len(s) + for l >= 1<<7 { + dAtA[i] = uint8(uint64(l)&0x7f | 0x80) + l >>= 7 + i++ + } + dAtA[i] = uint8(l) + i++ + i += copy(dAtA[i:], s) + } + } + if m.SupportsSeccomp { + dAtA[i] = 0x28 + i++ + if m.SupportsSeccomp { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i++ + } + return i, nil +} + func (m *GuestDetailsRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -4420,6 +4575,16 @@ func (m *GuestDetailsResponse) MarshalTo(dAtA []byte) (int, error) { i++ i = encodeVarintAgent(dAtA, i, uint64(m.MemBlockSizeBytes)) } + if m.AgentDetails != nil { + dAtA[i] = 0x12 + i++ + i = encodeVarintAgent(dAtA, i, uint64(m.AgentDetails.Size())) + n23, err := m.AgentDetails.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err + } + i += n23 + } return i, nil } @@ -5162,6 +5327,10 @@ func (m *CreateSandboxRequest) Size() (n int) { if l > 0 { n += 1 + l + sovAgent(uint64(l)) } + l = len(m.GuestHookPath) + if l > 0 { + n += 1 + l + sovAgent(uint64(l)) + } return n } @@ -5345,6 +5514,34 @@ func (m *ReseedRandomDevRequest) Size() (n int) { return n } +func (m *AgentDetails) Size() (n int) { + var l int + _ = l + l = len(m.Version) + if l > 0 { + n += 1 + l + sovAgent(uint64(l)) + } + if m.InitDaemon { + n += 2 + } + if len(m.DeviceHandlers) > 0 { + for _, s := range m.DeviceHandlers { + l = len(s) + n += 1 + l + sovAgent(uint64(l)) + } + } + if len(m.StorageHandlers) > 0 { + for _, s := range m.StorageHandlers { + l = len(s) + n += 1 + l + sovAgent(uint64(l)) + } + } + if m.SupportsSeccomp { + n += 2 + } + return n +} + func (m *GuestDetailsRequest) Size() (n int) { var l int _ = l @@ -5360,6 +5557,10 @@ func (m *GuestDetailsResponse) Size() (n int) { if m.MemBlockSizeBytes != 0 { n += 1 + sovAgent(uint64(m.MemBlockSizeBytes)) } + if m.AgentDetails != nil { + l = m.AgentDetails.Size() + n += 1 + l + sovAgent(uint64(l)) + } return n } @@ -9603,6 +9804,35 @@ func (m *CreateSandboxRequest) Unmarshal(dAtA []byte) error { } m.SandboxId = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field GuestHookPath", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAgent + } + 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 ErrInvalidLengthAgent + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.GuestHookPath = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipAgent(dAtA[iNdEx:]) @@ -10986,6 +11216,183 @@ func (m *ReseedRandomDevRequest) Unmarshal(dAtA []byte) error { } return nil } +func (m *AgentDetails) 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 ErrIntOverflowAgent + } + 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: AgentDetails: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: AgentDetails: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Version", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAgent + } + 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 ErrInvalidLengthAgent + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Version = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field InitDaemon", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAgent + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.InitDaemon = bool(v != 0) + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field DeviceHandlers", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAgent + } + 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 ErrInvalidLengthAgent + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.DeviceHandlers = append(m.DeviceHandlers, string(dAtA[iNdEx:postIndex])) + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field StorageHandlers", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAgent + } + 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 ErrInvalidLengthAgent + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.StorageHandlers = append(m.StorageHandlers, string(dAtA[iNdEx:postIndex])) + iNdEx = postIndex + case 5: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field SupportsSeccomp", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAgent + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.SupportsSeccomp = bool(v != 0) + default: + iNdEx = preIndex + skippy, err := skipAgent(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthAgent + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *GuestDetailsRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -11104,6 +11511,39 @@ func (m *GuestDetailsResponse) Unmarshal(dAtA []byte) error { break } } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field AgentDetails", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAgent + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthAgent + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.AgentDetails == nil { + m.AgentDetails = &AgentDetails{} + } + if err := m.AgentDetails.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipAgent(dAtA[iNdEx:]) @@ -11789,159 +12229,167 @@ var ( func init() { proto.RegisterFile("agent.proto", fileDescriptorAgent) } var fileDescriptorAgent = []byte{ - // 2454 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x58, 0xcd, 0x6e, 0x1b, 0xc9, - 0x11, 0x0e, 0x7f, 0x44, 0x89, 0xc5, 0x1f, 0x89, 0x2d, 0x59, 0xe6, 0xd2, 0x8e, 0x57, 0x3b, 0x4e, - 0xbc, 0xca, 0x6e, 0x2c, 0x63, 0x65, 0x23, 0x59, 0xd8, 0x30, 0x1c, 0xeb, 0x27, 0xb2, 0xb2, 0xeb, - 0x98, 0x19, 0x59, 0x70, 0x80, 0x20, 0x20, 0x46, 0x33, 0x2d, 0xaa, 0xd7, 0x9c, 0xe9, 0xd9, 0xee, - 0x1e, 0x49, 0xdc, 0x05, 0x72, 0xcc, 0x5b, 0xe4, 0x05, 0x82, 0x20, 0x97, 0x9c, 0x72, 0xcf, 0x21, - 0xc7, 0x3c, 0x41, 0x10, 0xf8, 0x11, 0xf2, 0x04, 0x41, 0xff, 0xcd, 0x0f, 0x49, 0xc9, 0x89, 0x56, - 0x40, 0x2e, 0x64, 0x57, 0x75, 0x75, 0xd5, 0x57, 0xd5, 0xdd, 0x35, 0xd5, 0x05, 0x0d, 0x6f, 0x88, - 0x23, 0xb1, 0x11, 0x33, 0x2a, 0x28, 0xaa, 0x0e, 0x59, 0xec, 0xf7, 0xea, 0xd4, 0x27, 0x9a, 0xd1, - 0xbb, 0x35, 0xa4, 0x74, 0x38, 0xc2, 0x0f, 0x14, 0x75, 0x94, 0x1c, 0x3f, 0xc0, 0x61, 0x2c, 0xc6, - 0x7a, 0xd2, 0xf9, 0x43, 0x19, 0x56, 0xb7, 0x19, 0xf6, 0x04, 0xde, 0xa6, 0x91, 0xf0, 0x48, 0x84, - 0x99, 0x8b, 0xbf, 0x4e, 0x30, 0x17, 0xe8, 0x23, 0x68, 0xfa, 0x96, 0x37, 0x20, 0x41, 0xb7, 0xb4, - 0x56, 0x5a, 0xaf, 0xbb, 0x8d, 0x94, 0xb7, 0x1f, 0xa0, 0x9b, 0x30, 0x8f, 0xcf, 0xb1, 0x2f, 0x67, - 0xcb, 0x6a, 0xb6, 0x26, 0xc9, 0xfd, 0x00, 0x7d, 0x06, 0x0d, 0x2e, 0x18, 0x89, 0x86, 0x83, 0x84, - 0x63, 0xd6, 0xad, 0xac, 0x95, 0xd6, 0x1b, 0x9b, 0x4b, 0x1b, 0x12, 0xda, 0xc6, 0x81, 0x9a, 0x38, - 0xe4, 0x98, 0xb9, 0xc0, 0xd3, 0x31, 0xba, 0x07, 0xf3, 0x01, 0x3e, 0x25, 0x3e, 0xe6, 0xdd, 0xea, - 0x5a, 0x65, 0xbd, 0xb1, 0xd9, 0xd4, 0xe2, 0x3b, 0x8a, 0xe9, 0xda, 0x49, 0xf4, 0x23, 0x58, 0xe0, - 0x82, 0x32, 0x6f, 0x88, 0x79, 0x77, 0x4e, 0x09, 0xb6, 0xac, 0x5e, 0xc5, 0x75, 0xd3, 0x69, 0x74, - 0x1b, 0x2a, 0xaf, 0xb6, 0xf7, 0xbb, 0x35, 0x65, 0x1d, 0x8c, 0x54, 0x8c, 0x7d, 0x57, 0xb2, 0xd1, - 0x5d, 0x68, 0x71, 0x2f, 0x0a, 0x8e, 0xe8, 0xf9, 0x20, 0x26, 0x41, 0xc4, 0xbb, 0xf3, 0x6b, 0xa5, - 0xf5, 0x05, 0xb7, 0x69, 0x98, 0x7d, 0xc9, 0x73, 0x1e, 0xc3, 0x8d, 0x03, 0xe1, 0x31, 0x71, 0x85, - 0xe8, 0x38, 0x87, 0xb0, 0xea, 0xe2, 0x90, 0x9e, 0x5e, 0x29, 0xb4, 0x5d, 0x98, 0x17, 0x24, 0xc4, - 0x34, 0x11, 0x2a, 0xb4, 0x2d, 0xd7, 0x92, 0xce, 0x9f, 0x4a, 0x80, 0x76, 0xcf, 0xb1, 0xdf, 0x67, - 0xd4, 0xc7, 0x9c, 0xff, 0x9f, 0xb6, 0xeb, 0x63, 0x98, 0x8f, 0x35, 0x80, 0x6e, 0x55, 0x89, 0x9b, - 0x5d, 0xb0, 0xa8, 0xec, 0xac, 0xf3, 0x15, 0xac, 0x1c, 0x90, 0x61, 0xe4, 0x8d, 0xae, 0x11, 0xef, - 0x2a, 0xd4, 0xb8, 0xd2, 0xa9, 0xa0, 0xb6, 0x5c, 0x43, 0x39, 0x7d, 0x40, 0x6f, 0x3c, 0x22, 0xae, - 0xcf, 0x92, 0x73, 0x1f, 0x96, 0x0b, 0x1a, 0x79, 0x4c, 0x23, 0x8e, 0x15, 0x00, 0xe1, 0x89, 0x84, - 0x2b, 0x65, 0x73, 0xae, 0xa1, 0x1c, 0x0c, 0x2b, 0x5f, 0x12, 0x6e, 0xc5, 0xf1, 0xff, 0x02, 0x61, - 0x15, 0x6a, 0xc7, 0x94, 0x85, 0x9e, 0xb0, 0x08, 0x34, 0x85, 0x10, 0x54, 0x3d, 0x36, 0xe4, 0xdd, - 0xca, 0x5a, 0x65, 0xbd, 0xee, 0xaa, 0xb1, 0x3c, 0x95, 0x13, 0x66, 0x0c, 0xae, 0x8f, 0xa0, 0x69, - 0xe2, 0x3e, 0x18, 0x11, 0x2e, 0x94, 0x9d, 0xa6, 0xdb, 0x30, 0x3c, 0xb9, 0xc6, 0xa1, 0xb0, 0x7a, - 0x18, 0x07, 0x57, 0xbc, 0xf0, 0x9b, 0x50, 0x67, 0x98, 0xd3, 0x84, 0xc9, 0x6b, 0x5a, 0x56, 0xfb, - 0xbe, 0xa2, 0xf7, 0xfd, 0x4b, 0x12, 0x25, 0xe7, 0xae, 0x9d, 0x73, 0x33, 0x31, 0x73, 0x85, 0x04, - 0xbf, 0xca, 0x15, 0x7a, 0x0c, 0x37, 0xfa, 0x5e, 0xc2, 0xaf, 0x82, 0xd5, 0x79, 0x22, 0xaf, 0x1f, - 0x4f, 0xc2, 0x2b, 0x2d, 0xfe, 0x63, 0x09, 0x16, 0xb6, 0xe3, 0xe4, 0x90, 0x7b, 0x43, 0x8c, 0x3e, - 0x84, 0x86, 0xa0, 0xc2, 0x1b, 0x0d, 0x12, 0x49, 0x2a, 0xf1, 0xaa, 0x0b, 0x8a, 0xa5, 0x05, 0x64, - 0xd8, 0x31, 0xf3, 0xe3, 0xc4, 0x48, 0x94, 0xd7, 0x2a, 0xeb, 0x55, 0xb7, 0xa1, 0x79, 0x5a, 0x64, - 0x03, 0x96, 0xd5, 0xdc, 0x80, 0x44, 0x83, 0xb7, 0x98, 0x45, 0x78, 0x14, 0xd2, 0x00, 0xab, 0xf3, - 0x5b, 0x75, 0x3b, 0x6a, 0x6a, 0x3f, 0xfa, 0x22, 0x9d, 0x40, 0x9f, 0x40, 0x27, 0x95, 0x97, 0x97, - 0x52, 0x49, 0x57, 0x95, 0xf4, 0xa2, 0x91, 0x3e, 0x34, 0x6c, 0xe7, 0x77, 0xd0, 0x7e, 0x7d, 0xc2, - 0xa8, 0x10, 0x23, 0x12, 0x0d, 0x77, 0x3c, 0xe1, 0xc9, 0xec, 0x11, 0x63, 0x46, 0x68, 0xc0, 0x0d, - 0x5a, 0x4b, 0xa2, 0x4f, 0xa1, 0x23, 0xb4, 0x2c, 0x0e, 0x06, 0x56, 0xa6, 0xac, 0x64, 0x96, 0xd2, - 0x89, 0xbe, 0x11, 0xfe, 0x21, 0xb4, 0x33, 0x61, 0x99, 0x7f, 0x0c, 0xde, 0x56, 0xca, 0x7d, 0x4d, - 0x42, 0xec, 0x9c, 0xaa, 0x58, 0xa9, 0x4d, 0x46, 0x9f, 0x42, 0x3d, 0x8b, 0x43, 0x49, 0x9d, 0x90, - 0xb6, 0x3e, 0x21, 0x36, 0x9c, 0xee, 0x42, 0x1a, 0x94, 0xa7, 0xb0, 0x28, 0x52, 0xe0, 0x83, 0xc0, - 0x13, 0x5e, 0xf1, 0x50, 0x15, 0xbd, 0x72, 0xdb, 0xa2, 0x40, 0x3b, 0x4f, 0xa0, 0xde, 0x27, 0x01, - 0xd7, 0x86, 0xbb, 0x30, 0xef, 0x27, 0x8c, 0xe1, 0x48, 0x58, 0x97, 0x0d, 0x89, 0x56, 0x60, 0x6e, - 0x44, 0x42, 0x22, 0x8c, 0x9b, 0x9a, 0x70, 0x28, 0xc0, 0x4b, 0x1c, 0x52, 0x36, 0x56, 0x01, 0x5b, - 0x81, 0xb9, 0xfc, 0xe6, 0x6a, 0x02, 0xdd, 0x82, 0x7a, 0xe8, 0x9d, 0xa7, 0x9b, 0x2a, 0x67, 0x16, - 0x42, 0xef, 0x5c, 0x83, 0xef, 0xc2, 0xfc, 0xb1, 0x47, 0x46, 0x7e, 0x24, 0x4c, 0x54, 0x2c, 0x99, - 0x19, 0xac, 0xe6, 0x0d, 0xfe, 0xad, 0x0c, 0x0d, 0x6d, 0x51, 0x03, 0x5e, 0x81, 0x39, 0xdf, 0xf3, - 0x4f, 0x52, 0x93, 0x8a, 0x40, 0xf7, 0x2c, 0x90, 0x72, 0x3e, 0x09, 0x67, 0x48, 0x2d, 0xb4, 0x07, - 0x00, 0xfc, 0xcc, 0x8b, 0x0d, 0xb6, 0xca, 0x05, 0xc2, 0x75, 0x29, 0xa3, 0xe1, 0x3e, 0x84, 0xa6, - 0x3e, 0x77, 0x66, 0x49, 0xf5, 0x82, 0x25, 0x0d, 0x2d, 0xa5, 0x17, 0xdd, 0x85, 0x56, 0xc2, 0xf1, - 0xe0, 0x84, 0x60, 0xe6, 0x31, 0xff, 0x64, 0xdc, 0x9d, 0xd3, 0xdf, 0xc8, 0x84, 0xe3, 0x17, 0x96, - 0x87, 0x36, 0x61, 0x4e, 0xa6, 0x3f, 0xde, 0xad, 0xa9, 0xcf, 0xf1, 0xed, 0xbc, 0x4a, 0xe5, 0xea, - 0x86, 0xfa, 0xdd, 0x8d, 0x04, 0x1b, 0xbb, 0x5a, 0xb4, 0xf7, 0x39, 0x40, 0xc6, 0x44, 0x4b, 0x50, - 0x79, 0x8b, 0xc7, 0xe6, 0x1e, 0xca, 0xa1, 0x0c, 0xce, 0xa9, 0x37, 0x4a, 0x6c, 0xd4, 0x35, 0xf1, - 0xb8, 0xfc, 0x79, 0xc9, 0xf1, 0x61, 0x71, 0x6b, 0xf4, 0x96, 0xd0, 0xdc, 0xf2, 0x15, 0x98, 0x0b, - 0xbd, 0xaf, 0x28, 0xb3, 0x91, 0x54, 0x84, 0xe2, 0x92, 0x88, 0x32, 0xab, 0x42, 0x11, 0xa8, 0x0d, - 0x65, 0x1a, 0xab, 0x78, 0xd5, 0xdd, 0x32, 0x8d, 0x33, 0x43, 0xd5, 0x9c, 0x21, 0xe7, 0x9f, 0x55, - 0x80, 0xcc, 0x0a, 0x72, 0xa1, 0x47, 0xe8, 0x80, 0x63, 0x26, 0x4b, 0x90, 0xc1, 0xd1, 0x58, 0x60, - 0x3e, 0x60, 0xd8, 0x4f, 0x18, 0x27, 0xa7, 0x72, 0xff, 0xa4, 0xdb, 0x37, 0xb4, 0xdb, 0x13, 0xd8, - 0xdc, 0x9b, 0x84, 0x1e, 0xe8, 0x75, 0x5b, 0x72, 0x99, 0x6b, 0x57, 0xa1, 0x7d, 0xb8, 0x91, 0xe9, - 0x0c, 0x72, 0xea, 0xca, 0x97, 0xa9, 0x5b, 0x4e, 0xd5, 0x05, 0x99, 0xaa, 0x5d, 0x58, 0x26, 0x74, - 0xf0, 0x75, 0x82, 0x93, 0x82, 0xa2, 0xca, 0x65, 0x8a, 0x3a, 0x84, 0xfe, 0x4a, 0x2d, 0xc8, 0xd4, - 0xf4, 0xe1, 0x83, 0x9c, 0x97, 0xf2, 0xba, 0xe7, 0x94, 0x55, 0x2f, 0x53, 0xb6, 0x9a, 0xa2, 0x92, - 0xf9, 0x20, 0xd3, 0xf8, 0x0b, 0x58, 0x25, 0x74, 0x70, 0xe6, 0x11, 0x31, 0xa9, 0x6e, 0xee, 0x3d, - 0x4e, 0xca, 0x8f, 0x6e, 0x51, 0x97, 0x76, 0x32, 0xc4, 0x6c, 0x58, 0x70, 0xb2, 0xf6, 0x1e, 0x27, - 0x5f, 0xaa, 0x05, 0x99, 0x9a, 0xe7, 0xd0, 0x21, 0x74, 0x12, 0xcd, 0xfc, 0x65, 0x4a, 0x16, 0x09, - 0x2d, 0x22, 0xd9, 0x82, 0x0e, 0xc7, 0xbe, 0xa0, 0x2c, 0x7f, 0x08, 0x16, 0x2e, 0x53, 0xb1, 0x64, - 0xe4, 0x53, 0x1d, 0xce, 0x6f, 0xa0, 0xf9, 0x22, 0x19, 0x62, 0x31, 0x3a, 0x4a, 0x93, 0xc1, 0xb5, - 0xe5, 0x1f, 0xe7, 0xdf, 0x65, 0x68, 0x6c, 0x0f, 0x19, 0x4d, 0xe2, 0x42, 0x4e, 0xd6, 0x97, 0x74, - 0x32, 0x27, 0x2b, 0x11, 0x95, 0x93, 0xb5, 0xf0, 0x23, 0x68, 0x86, 0xea, 0xea, 0x1a, 0x79, 0x9d, - 0x87, 0x3a, 0x53, 0x97, 0xda, 0x6d, 0x84, 0xb9, 0x64, 0xb6, 0x01, 0x10, 0x93, 0x80, 0x9b, 0x35, - 0x3a, 0x1d, 0x2d, 0x9a, 0x8a, 0xd0, 0xa6, 0x68, 0xb7, 0x1e, 0xa7, 0xd9, 0xfa, 0x33, 0x68, 0x1c, - 0xc9, 0x20, 0x99, 0x05, 0x85, 0x64, 0x94, 0x45, 0xcf, 0x85, 0xa3, 0xec, 0x12, 0xbe, 0x80, 0xd6, - 0x89, 0x0e, 0x99, 0x59, 0xa4, 0xcf, 0xd0, 0x5d, 0xe3, 0x49, 0xe6, 0xef, 0x46, 0x3e, 0xb2, 0x7a, - 0x03, 0x9a, 0x27, 0x39, 0x56, 0xef, 0x00, 0x3a, 0x53, 0x22, 0x33, 0x72, 0xd0, 0x7a, 0x3e, 0x07, - 0x35, 0x36, 0x91, 0x36, 0x94, 0x5f, 0x99, 0xcf, 0x4b, 0xbf, 0x84, 0xd5, 0xc9, 0x32, 0xc7, 0x14, - 0x65, 0x8f, 0xa0, 0xe9, 0x2b, 0x74, 0x85, 0x1d, 0xe8, 0x4c, 0xe1, 0x76, 0x1b, 0x7e, 0x46, 0x38, - 0x01, 0xa0, 0x37, 0x8c, 0x08, 0x7c, 0x20, 0x18, 0xf6, 0xc2, 0xeb, 0xa8, 0x9a, 0x11, 0x54, 0xd5, - 0x27, 0xb6, 0xa2, 0x8a, 0x42, 0x35, 0x76, 0x3e, 0x86, 0xe5, 0x82, 0x15, 0x03, 0x79, 0x09, 0x2a, - 0x23, 0x1c, 0x29, 0xed, 0x2d, 0x57, 0x0e, 0x1d, 0x0f, 0x3a, 0x2e, 0xf6, 0x82, 0xeb, 0x43, 0x63, - 0x4c, 0x54, 0x32, 0x13, 0xeb, 0x80, 0xf2, 0x26, 0x0c, 0x14, 0x8b, 0xba, 0x94, 0x43, 0xfd, 0x0a, - 0x3a, 0xdb, 0x23, 0xca, 0xf1, 0x81, 0x08, 0x48, 0x74, 0x1d, 0x65, 0xfe, 0xb7, 0xb0, 0xfc, 0x5a, - 0x8c, 0xdf, 0x48, 0x65, 0x9c, 0x7c, 0x83, 0xaf, 0xc9, 0x3f, 0x46, 0xcf, 0xac, 0x7f, 0x8c, 0x9e, - 0xc9, 0x0a, 0xdf, 0xa7, 0xa3, 0x24, 0x8c, 0xd4, 0x71, 0x6f, 0xb9, 0x86, 0x72, 0xfe, 0x52, 0x82, - 0x15, 0xfd, 0x06, 0x3f, 0xd0, 0x4f, 0x4f, 0x6b, 0xbe, 0x07, 0x0b, 0x27, 0x94, 0x8b, 0xc8, 0x0b, - 0xb1, 0x31, 0x9d, 0xd2, 0x52, 0xbd, 0x7c, 0xb3, 0x96, 0xd5, 0xab, 0x40, 0x0e, 0x0b, 0x0f, 0xe3, - 0xca, 0xe5, 0x0f, 0xe3, 0xa9, 0xa7, 0x6f, 0x75, 0xfa, 0xe9, 0x8b, 0xbe, 0x0f, 0x60, 0x85, 0x48, - 0xa0, 0x3e, 0xfc, 0x75, 0xb7, 0x6e, 0x38, 0xfb, 0x81, 0x73, 0x13, 0x6e, 0xec, 0x60, 0x2e, 0x18, - 0x1d, 0x17, 0x51, 0x3b, 0x1e, 0xd4, 0xf7, 0xfb, 0xcf, 0x83, 0x80, 0x61, 0xce, 0xd1, 0x3d, 0xa8, - 0x1d, 0x7b, 0x21, 0x19, 0xe9, 0x8b, 0xd5, 0xb6, 0x79, 0x67, 0xbf, 0xff, 0x73, 0xc5, 0x75, 0xcd, - 0xac, 0x4c, 0x66, 0x9e, 0x5e, 0x62, 0xc2, 0x68, 0x49, 0xb9, 0xff, 0xa1, 0xc7, 0xdf, 0x9a, 0x4f, - 0xb6, 0x1a, 0x3b, 0x7f, 0x2e, 0x41, 0x7d, 0x3f, 0x12, 0x98, 0x1d, 0x7b, 0xbe, 0x7a, 0x8c, 0xe9, - 0xe6, 0x80, 0x09, 0x92, 0xa1, 0xe4, 0x4a, 0x15, 0x3a, 0xad, 0x50, 0x8d, 0x65, 0xde, 0x49, 0xc1, - 0xa5, 0x71, 0x5a, 0xb4, 0xa0, 0xcc, 0x84, 0x9b, 0x97, 0x91, 0x91, 0x0e, 0x45, 0x62, 0xea, 0x03, - 0x39, 0x94, 0x06, 0x4f, 0xce, 0xa4, 0x80, 0x89, 0x8a, 0xa1, 0x54, 0xd5, 0xed, 0x13, 0x35, 0x51, - 0xd3, 0x4e, 0x18, 0xd2, 0x79, 0x0a, 0x90, 0xe2, 0xe5, 0xb2, 0x76, 0xcb, 0x28, 0x53, 0x3e, 0x58, - 0x0c, 0x96, 0xef, 0xe6, 0x44, 0x9c, 0x6f, 0x61, 0xce, 0xa5, 0x89, 0xd0, 0x97, 0x01, 0x9b, 0x77, - 0x5d, 0xdd, 0x55, 0x63, 0x69, 0x75, 0xe8, 0x09, 0x7c, 0xe6, 0x8d, 0x6d, 0xe8, 0x0c, 0x99, 0x0b, - 0x4c, 0xa5, 0x10, 0x18, 0xf9, 0x7a, 0x55, 0x8f, 0x33, 0xe5, 0x54, 0xdd, 0x35, 0x94, 0xfc, 0x08, - 0x71, 0x9f, 0xc6, 0x58, 0xb9, 0xd5, 0x72, 0x35, 0xe1, 0xdc, 0x87, 0x9a, 0x32, 0x2e, 0x8f, 0x8d, - 0x19, 0x19, 0xcc, 0x0d, 0x8d, 0x59, 0xf1, 0x5c, 0x33, 0xe5, 0xec, 0xd9, 0xf7, 0x65, 0xe6, 0x8a, - 0x39, 0xce, 0xf7, 0xa1, 0x4e, 0x2c, 0xcf, 0x24, 0xc1, 0x29, 0xaf, 0x33, 0x09, 0x67, 0x07, 0x96, - 0x9f, 0x07, 0xc1, 0x77, 0xd5, 0xb2, 0x67, 0x9b, 0x30, 0xdf, 0x55, 0xd1, 0x13, 0x58, 0xd6, 0x7e, - 0x69, 0x3f, 0xad, 0x96, 0x1f, 0x40, 0x8d, 0xd9, 0x98, 0x94, 0xb2, 0xae, 0x95, 0x11, 0x32, 0x73, - 0xf2, 0xb2, 0xc8, 0xc7, 0x77, 0xb6, 0xa5, 0xf6, 0xb2, 0x2c, 0x43, 0x47, 0x4e, 0x14, 0x74, 0x3a, - 0xbf, 0x85, 0xe5, 0x57, 0xd1, 0x88, 0x44, 0x78, 0xbb, 0x7f, 0xf8, 0x12, 0xa7, 0xd9, 0x16, 0x41, - 0x55, 0x96, 0x52, 0xca, 0xd0, 0x82, 0xab, 0xc6, 0x32, 0xfd, 0x44, 0x47, 0x03, 0x3f, 0x4e, 0xb8, - 0x69, 0x13, 0xd5, 0xa2, 0xa3, 0xed, 0x38, 0xe1, 0xe8, 0x03, 0x90, 0x9f, 0xf4, 0x01, 0x8d, 0x46, - 0x63, 0xb5, 0xfb, 0x0b, 0xee, 0xbc, 0x1f, 0x27, 0xaf, 0xa2, 0xd1, 0xd8, 0xf9, 0xb1, 0x7a, 0x18, - 0x63, 0x1c, 0xb8, 0x5e, 0x14, 0xd0, 0x70, 0x07, 0x9f, 0xe6, 0x2c, 0xa4, 0x8f, 0x30, 0x9b, 0x6b, - 0x9f, 0xc0, 0xf2, 0x9e, 0x9c, 0xdc, 0xc1, 0xc2, 0x23, 0xa3, 0x9c, 0xdf, 0xed, 0x10, 0x87, 0x83, - 0xa3, 0x11, 0xf5, 0xdf, 0x0e, 0x64, 0xce, 0x34, 0xb0, 0x64, 0xf1, 0xb0, 0x25, 0x99, 0x07, 0xe4, - 0x1b, 0x19, 0xfd, 0x95, 0xe2, 0x62, 0x93, 0xd4, 0x1f, 0xc0, 0x4a, 0x71, 0xb5, 0x2e, 0xaa, 0x4d, - 0xf5, 0xd3, 0xc9, 0xeb, 0x50, 0x65, 0xb3, 0xcc, 0x91, 0xf3, 0x26, 0x8f, 0xa9, 0x63, 0xcd, 0xc8, - 0x29, 0x66, 0xe9, 0x7d, 0x57, 0x94, 0x7c, 0xad, 0xea, 0xd1, 0x80, 0xc6, 0x82, 0xd0, 0x34, 0x3b, - 0xb6, 0x34, 0xf7, 0x95, 0x66, 0xe6, 0x4e, 0x7f, 0xa5, 0x70, 0xfa, 0x57, 0xa1, 0x76, 0xcc, 0xc5, - 0x38, 0x4e, 0x6f, 0x85, 0xa6, 0xe4, 0xfd, 0xb2, 0xfa, 0xe6, 0x94, 0x3e, 0x4b, 0xa2, 0x0f, 0xa1, - 0x11, 0xd2, 0x24, 0x12, 0x83, 0x98, 0x92, 0x48, 0x98, 0x3b, 0x0f, 0x8a, 0xd5, 0x97, 0x1c, 0xe7, - 0xf7, 0x25, 0xa8, 0xe9, 0xfe, 0xa5, 0x7c, 0x77, 0xa4, 0x1f, 0x90, 0x32, 0x51, 0x1f, 0x63, 0x65, - 0xcb, 0x24, 0x27, 0x65, 0xe9, 0x26, 0xcc, 0x9f, 0x86, 0x83, 0xd8, 0x13, 0x27, 0x16, 0xda, 0x69, - 0xd8, 0xf7, 0xc4, 0x89, 0xf4, 0x2c, 0xfb, 0x0e, 0xa9, 0x79, 0x0d, 0xb1, 0x95, 0x72, 0x95, 0xd8, - 0x85, 0x48, 0x9d, 0x5f, 0xcb, 0xe7, 0x56, 0xda, 0xbb, 0x5b, 0x82, 0x4a, 0x92, 0x82, 0x91, 0x43, - 0xc9, 0x19, 0xa6, 0x5f, 0x30, 0x39, 0x44, 0xf7, 0xa0, 0xed, 0x05, 0x01, 0x91, 0xcb, 0xbd, 0xd1, - 0x1e, 0x09, 0x6c, 0x03, 0x6a, 0x82, 0xfb, 0x49, 0x0f, 0x16, 0x6c, 0x32, 0x47, 0x35, 0x28, 0x9f, - 0x3e, 0x5a, 0xfa, 0x9e, 0xfa, 0xff, 0xc9, 0x52, 0x69, 0xf3, 0xaf, 0x6d, 0x68, 0x3e, 0x1f, 0xe2, - 0x48, 0x98, 0xc7, 0x01, 0xda, 0x83, 0xc5, 0x89, 0x66, 0x33, 0x32, 0xaf, 0xc5, 0xd9, 0x3d, 0xe8, - 0xde, 0xea, 0x86, 0x6e, 0x5e, 0x6f, 0xd8, 0xe6, 0xf5, 0xc6, 0x6e, 0x18, 0x8b, 0x31, 0xda, 0x85, - 0x76, 0xb1, 0x2d, 0x8b, 0x6e, 0xd9, 0x6f, 0xdd, 0x8c, 0x66, 0xed, 0x85, 0x6a, 0xf6, 0x60, 0x71, - 0xa2, 0x43, 0x6b, 0xf1, 0xcc, 0x6e, 0xdc, 0x5e, 0xa8, 0xe8, 0x19, 0x34, 0x72, 0x2d, 0x59, 0xd4, - 0xd5, 0x4a, 0xa6, 0xbb, 0xb4, 0x17, 0x2a, 0xd8, 0x86, 0x56, 0xa1, 0x4b, 0x8a, 0x7a, 0xc6, 0x9f, - 0x19, 0xad, 0xd3, 0x0b, 0x95, 0x6c, 0x41, 0x23, 0xd7, 0xac, 0xb4, 0x28, 0xa6, 0x3b, 0xa2, 0xbd, - 0x0f, 0x66, 0xcc, 0x98, 0x9b, 0xf9, 0x02, 0x5a, 0x85, 0xd6, 0xa2, 0x05, 0x32, 0xab, 0xad, 0xd9, - 0xbb, 0x35, 0x73, 0xce, 0x68, 0xda, 0x83, 0xc5, 0x89, 0x46, 0xa3, 0x0d, 0xee, 0xec, 0xfe, 0xe3, - 0x85, 0x6e, 0x7d, 0xa1, 0x36, 0x3b, 0x57, 0x59, 0xe7, 0x36, 0x7b, 0xba, 0xad, 0xd8, 0xbb, 0x3d, - 0x7b, 0xd2, 0xa0, 0xda, 0x85, 0x76, 0xb1, 0xa3, 0x68, 0x95, 0xcd, 0xec, 0x33, 0x5e, 0x7e, 0x72, - 0x0a, 0xcd, 0xc5, 0xec, 0xe4, 0xcc, 0xea, 0x39, 0x5e, 0xa8, 0xe8, 0x39, 0x80, 0x29, 0xc0, 0x03, - 0x12, 0xa5, 0x5b, 0x36, 0x55, 0xf8, 0xa7, 0x5b, 0x36, 0xa3, 0x58, 0x7f, 0x06, 0xa0, 0xeb, 0xe6, - 0x80, 0x26, 0x02, 0xdd, 0xb4, 0x30, 0x26, 0x8a, 0xf5, 0x5e, 0x77, 0x7a, 0x62, 0x4a, 0x01, 0x66, - 0xec, 0x2a, 0x0a, 0x9e, 0x02, 0x64, 0xf5, 0xb8, 0x55, 0x30, 0x55, 0xa1, 0x5f, 0x12, 0x83, 0x66, - 0xbe, 0xfa, 0x46, 0xc6, 0xd7, 0x19, 0x15, 0xf9, 0x85, 0x2a, 0x1e, 0x43, 0x33, 0x5f, 0x2c, 0x58, - 0x15, 0x33, 0x0a, 0x88, 0xde, 0xe4, 0x47, 0x1e, 0xfd, 0xcc, 0x1e, 0xd4, 0x8c, 0x55, 0x38, 0xa8, - 0xff, 0x95, 0x86, 0x89, 0x22, 0xa3, 0x98, 0x47, 0xde, 0xaf, 0xe1, 0xa7, 0xd0, 0xcc, 0x57, 0x17, - 0x16, 0xff, 0x8c, 0x8a, 0xa3, 0x57, 0xa8, 0x30, 0xd0, 0x33, 0x68, 0x17, 0x2b, 0x0b, 0x94, 0xbb, - 0x94, 0x53, 0xf5, 0x46, 0x6f, 0x69, 0xc2, 0x30, 0x47, 0x0f, 0x01, 0xb2, 0x0a, 0xc4, 0xee, 0xdd, - 0x54, 0x4d, 0x32, 0x61, 0x75, 0x1b, 0x5a, 0x85, 0x17, 0x8b, 0xcd, 0x12, 0xb3, 0x9e, 0x31, 0x97, - 0x25, 0xf1, 0xe2, 0x0b, 0xc2, 0x42, 0x9f, 0xf9, 0xae, 0xb8, 0xec, 0xf4, 0xe4, 0xab, 0x25, 0x1b, - 0xba, 0x19, 0x15, 0xd4, 0x7b, 0x6e, 0x73, 0xbe, 0x22, 0xca, 0xdd, 0xe6, 0x19, 0x85, 0xd2, 0x85, - 0x8a, 0x5e, 0xc0, 0xe2, 0x1e, 0x16, 0xf9, 0x92, 0xc7, 0xc2, 0x99, 0x51, 0x43, 0xf5, 0x7a, 0xb3, - 0xa6, 0xf4, 0x95, 0xda, 0x6a, 0xfe, 0xfd, 0xdd, 0x9d, 0xd2, 0x3f, 0xde, 0xdd, 0x29, 0xfd, 0xeb, - 0xdd, 0x9d, 0xd2, 0x51, 0x4d, 0xd9, 0x79, 0xf8, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x40, 0x35, - 0xb4, 0xc7, 0xea, 0x1d, 0x00, 0x00, + // 2582 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x18, 0xdb, 0x6e, 0x24, 0x47, + 0x95, 0xb9, 0x78, 0xec, 0x39, 0x73, 0xf3, 0x94, 0xbd, 0xde, 0xc9, 0x6c, 0x08, 0x4e, 0x07, 0x36, + 0x4e, 0x42, 0xbc, 0x8a, 0x13, 0x91, 0x68, 0x57, 0xab, 0x65, 0x7d, 0xc1, 0x36, 0xc9, 0xb2, 0x43, + 0x7b, 0xad, 0x45, 0x42, 0xa8, 0xd5, 0xee, 0x2e, 0xcf, 0x54, 0x3c, 0xdd, 0xd5, 0xe9, 0xaa, 0xb6, + 0x3d, 0x89, 0x84, 0x78, 0xe2, 0x2f, 0xf8, 0x01, 0x84, 0x78, 0xe1, 0x89, 0x77, 0x1e, 0xf2, 0xc8, + 0x3b, 0x12, 0x42, 0xfb, 0x09, 0x7c, 0x01, 0xaa, 0x5b, 0x5f, 0x66, 0xc6, 0x5e, 0x70, 0x2c, 0xf1, + 0x32, 0xd3, 0xe7, 0x52, 0xe7, 0x56, 0x55, 0xa7, 0xce, 0x39, 0xd0, 0x70, 0x87, 0x38, 0xe4, 0x9b, + 0x51, 0x4c, 0x39, 0x45, 0xd5, 0x61, 0x1c, 0x79, 0xfd, 0x3a, 0xf5, 0x88, 0x42, 0xf4, 0xef, 0x0d, + 0x29, 0x1d, 0x8e, 0xf1, 0x03, 0x09, 0x9d, 0x24, 0xa7, 0x0f, 0x70, 0x10, 0xf1, 0x89, 0x22, 0x5a, + 0x7f, 0x28, 0xc3, 0xda, 0x4e, 0x8c, 0x5d, 0x8e, 0x77, 0x68, 0xc8, 0x5d, 0x12, 0xe2, 0xd8, 0xc6, + 0x5f, 0x25, 0x98, 0x71, 0xf4, 0x36, 0x34, 0x3d, 0x83, 0x73, 0x88, 0xdf, 0x2b, 0xad, 0x97, 0x36, + 0xea, 0x76, 0x23, 0xc5, 0x1d, 0xfa, 0xe8, 0x2e, 0x2c, 0xe2, 0x4b, 0xec, 0x09, 0x6a, 0x59, 0x52, + 0x6b, 0x02, 0x3c, 0xf4, 0xd1, 0x47, 0xd0, 0x60, 0x3c, 0x26, 0xe1, 0xd0, 0x49, 0x18, 0x8e, 0x7b, + 0x95, 0xf5, 0xd2, 0x46, 0x63, 0x6b, 0x79, 0x53, 0x98, 0xb6, 0x79, 0x24, 0x09, 0xc7, 0x0c, 0xc7, + 0x36, 0xb0, 0xf4, 0x1b, 0xdd, 0x87, 0x45, 0x1f, 0x9f, 0x13, 0x0f, 0xb3, 0x5e, 0x75, 0xbd, 0xb2, + 0xd1, 0xd8, 0x6a, 0x2a, 0xf6, 0x5d, 0x89, 0xb4, 0x0d, 0x11, 0xbd, 0x07, 0x4b, 0x8c, 0xd3, 0xd8, + 0x1d, 0x62, 0xd6, 0x5b, 0x90, 0x8c, 0x2d, 0x23, 0x57, 0x62, 0xed, 0x94, 0x8c, 0xde, 0x84, 0xca, + 0xf3, 0x9d, 0xc3, 0x5e, 0x4d, 0x6a, 0x07, 0xcd, 0x15, 0x61, 0xcf, 0x16, 0x68, 0xf4, 0x0e, 0xb4, + 0x98, 0x1b, 0xfa, 0x27, 0xf4, 0xd2, 0x89, 0x88, 0x1f, 0xb2, 0xde, 0xe2, 0x7a, 0x69, 0x63, 0xc9, + 0x6e, 0x6a, 0xe4, 0x40, 0xe0, 0xac, 0x87, 0x70, 0xe7, 0x88, 0xbb, 0x31, 0xbf, 0x41, 0x74, 0xac, + 0x63, 0x58, 0xb3, 0x71, 0x40, 0xcf, 0x6f, 0x14, 0xda, 0x1e, 0x2c, 0x72, 0x12, 0x60, 0x9a, 0x70, + 0x19, 0xda, 0x96, 0x6d, 0x40, 0xeb, 0x4f, 0x25, 0x40, 0x7b, 0x97, 0xd8, 0x1b, 0xc4, 0xd4, 0xc3, + 0x8c, 0xfd, 0x9f, 0xb6, 0xeb, 0x5d, 0x58, 0x8c, 0x94, 0x01, 0xbd, 0xaa, 0x64, 0xd7, 0xbb, 0x60, + 0xac, 0x32, 0x54, 0xeb, 0x4b, 0x58, 0x3d, 0x22, 0xc3, 0xd0, 0x1d, 0xdf, 0xa2, 0xbd, 0x6b, 0x50, + 0x63, 0x52, 0xa6, 0x34, 0xb5, 0x65, 0x6b, 0xc8, 0x1a, 0x00, 0x7a, 0xe9, 0x12, 0x7e, 0x7b, 0x9a, + 0xac, 0x0f, 0x61, 0xa5, 0x20, 0x91, 0x45, 0x34, 0x64, 0x58, 0x1a, 0xc0, 0x5d, 0x9e, 0x30, 0x29, + 0x6c, 0xc1, 0xd6, 0x90, 0x85, 0x61, 0xf5, 0x0b, 0xc2, 0x0c, 0x3b, 0xfe, 0x5f, 0x4c, 0x58, 0x83, + 0xda, 0x29, 0x8d, 0x03, 0x97, 0x1b, 0x0b, 0x14, 0x84, 0x10, 0x54, 0xdd, 0x78, 0xc8, 0x7a, 0x95, + 0xf5, 0xca, 0x46, 0xdd, 0x96, 0xdf, 0xe2, 0x54, 0x4e, 0xa9, 0xd1, 0x76, 0xbd, 0x0d, 0x4d, 0x1d, + 0x77, 0x67, 0x4c, 0x18, 0x97, 0x7a, 0x9a, 0x76, 0x43, 0xe3, 0xc4, 0x1a, 0x8b, 0xc2, 0xda, 0x71, + 0xe4, 0xdf, 0xf0, 0xc2, 0x6f, 0x41, 0x3d, 0xc6, 0x8c, 0x26, 0xb1, 0xb8, 0xa6, 0x65, 0xb9, 0xef, + 0xab, 0x6a, 0xdf, 0xbf, 0x20, 0x61, 0x72, 0x69, 0x1b, 0x9a, 0x9d, 0xb1, 0xe9, 0x2b, 0xc4, 0xd9, + 0x4d, 0xae, 0xd0, 0x43, 0xb8, 0x33, 0x70, 0x13, 0x76, 0x13, 0x5b, 0xad, 0x47, 0xe2, 0xfa, 0xb1, + 0x24, 0xb8, 0xd1, 0xe2, 0x3f, 0x96, 0x60, 0x69, 0x27, 0x4a, 0x8e, 0x99, 0x3b, 0xc4, 0xe8, 0x07, + 0xd0, 0xe0, 0x94, 0xbb, 0x63, 0x27, 0x11, 0xa0, 0x64, 0xaf, 0xda, 0x20, 0x51, 0x8a, 0x41, 0x84, + 0x1d, 0xc7, 0x5e, 0x94, 0x68, 0x8e, 0xf2, 0x7a, 0x65, 0xa3, 0x6a, 0x37, 0x14, 0x4e, 0xb1, 0x6c, + 0xc2, 0x8a, 0xa4, 0x39, 0x24, 0x74, 0xce, 0x70, 0x1c, 0xe2, 0x71, 0x40, 0x7d, 0x2c, 0xcf, 0x6f, + 0xd5, 0xee, 0x4a, 0xd2, 0x61, 0xf8, 0x79, 0x4a, 0x40, 0xef, 0x43, 0x37, 0xe5, 0x17, 0x97, 0x52, + 0x72, 0x57, 0x25, 0x77, 0x47, 0x73, 0x1f, 0x6b, 0xb4, 0xf5, 0x5b, 0x68, 0xbf, 0x18, 0xc5, 0x94, + 0xf3, 0x31, 0x09, 0x87, 0xbb, 0x2e, 0x77, 0x45, 0xf6, 0x88, 0x70, 0x4c, 0xa8, 0xcf, 0xb4, 0xb5, + 0x06, 0x44, 0x1f, 0x40, 0x97, 0x2b, 0x5e, 0xec, 0x3b, 0x86, 0xa7, 0x2c, 0x79, 0x96, 0x53, 0xc2, + 0x40, 0x33, 0xff, 0x08, 0xda, 0x19, 0xb3, 0xc8, 0x3f, 0xda, 0xde, 0x56, 0x8a, 0x7d, 0x41, 0x02, + 0x6c, 0x9d, 0xcb, 0x58, 0xc9, 0x4d, 0x46, 0x1f, 0x40, 0x3d, 0x8b, 0x43, 0x49, 0x9e, 0x90, 0xb6, + 0x3a, 0x21, 0x26, 0x9c, 0xf6, 0x52, 0x1a, 0x94, 0xc7, 0xd0, 0xe1, 0xa9, 0xe1, 0x8e, 0xef, 0x72, + 0xb7, 0x78, 0xa8, 0x8a, 0x5e, 0xd9, 0x6d, 0x5e, 0x80, 0xad, 0x47, 0x50, 0x1f, 0x10, 0x9f, 0x29, + 0xc5, 0x3d, 0x58, 0xf4, 0x92, 0x38, 0xc6, 0x21, 0x37, 0x2e, 0x6b, 0x10, 0xad, 0xc2, 0xc2, 0x98, + 0x04, 0x84, 0x6b, 0x37, 0x15, 0x60, 0x51, 0x80, 0x67, 0x38, 0xa0, 0xf1, 0x44, 0x06, 0x6c, 0x15, + 0x16, 0xf2, 0x9b, 0xab, 0x00, 0x74, 0x0f, 0xea, 0x81, 0x7b, 0x99, 0x6e, 0xaa, 0xa0, 0x2c, 0x05, + 0xee, 0xa5, 0x32, 0xbe, 0x07, 0x8b, 0xa7, 0x2e, 0x19, 0x7b, 0x21, 0xd7, 0x51, 0x31, 0x60, 0xa6, + 0xb0, 0x9a, 0x57, 0xf8, 0xb7, 0x32, 0x34, 0x94, 0x46, 0x65, 0xf0, 0x2a, 0x2c, 0x78, 0xae, 0x37, + 0x4a, 0x55, 0x4a, 0x00, 0xdd, 0x37, 0x86, 0x94, 0xf3, 0x49, 0x38, 0xb3, 0xd4, 0x98, 0xf6, 0x00, + 0x80, 0x5d, 0xb8, 0x91, 0xb6, 0xad, 0x72, 0x05, 0x73, 0x5d, 0xf0, 0x28, 0x73, 0x3f, 0x86, 0xa6, + 0x3a, 0x77, 0x7a, 0x49, 0xf5, 0x8a, 0x25, 0x0d, 0xc5, 0xa5, 0x16, 0xbd, 0x03, 0xad, 0x84, 0x61, + 0x67, 0x44, 0x70, 0xec, 0xc6, 0xde, 0x68, 0xd2, 0x5b, 0x50, 0x6f, 0x64, 0xc2, 0xf0, 0x81, 0xc1, + 0xa1, 0x2d, 0x58, 0x10, 0xe9, 0x8f, 0xf5, 0x6a, 0xf2, 0x39, 0x7e, 0x33, 0x2f, 0x52, 0xba, 0xba, + 0x29, 0x7f, 0xf7, 0x42, 0x1e, 0x4f, 0x6c, 0xc5, 0xda, 0xff, 0x0c, 0x20, 0x43, 0xa2, 0x65, 0xa8, + 0x9c, 0xe1, 0x89, 0xbe, 0x87, 0xe2, 0x53, 0x04, 0xe7, 0xdc, 0x1d, 0x27, 0x26, 0xea, 0x0a, 0x78, + 0x58, 0xfe, 0xac, 0x64, 0x79, 0xd0, 0xd9, 0x1e, 0x9f, 0x11, 0x9a, 0x5b, 0xbe, 0x0a, 0x0b, 0x81, + 0xfb, 0x25, 0x8d, 0x4d, 0x24, 0x25, 0x20, 0xb1, 0x24, 0xa4, 0xb1, 0x11, 0x21, 0x01, 0xd4, 0x86, + 0x32, 0x8d, 0x64, 0xbc, 0xea, 0x76, 0x99, 0x46, 0x99, 0xa2, 0x6a, 0x4e, 0x91, 0xf5, 0xcf, 0x2a, + 0x40, 0xa6, 0x05, 0xd9, 0xd0, 0x27, 0xd4, 0x61, 0x38, 0x16, 0x25, 0x88, 0x73, 0x32, 0xe1, 0x98, + 0x39, 0x31, 0xf6, 0x92, 0x98, 0x91, 0x73, 0xb1, 0x7f, 0xc2, 0xed, 0x3b, 0xca, 0xed, 0x29, 0xdb, + 0xec, 0xbb, 0x84, 0x1e, 0xa9, 0x75, 0xdb, 0x62, 0x99, 0x6d, 0x56, 0xa1, 0x43, 0xb8, 0x93, 0xc9, + 0xf4, 0x73, 0xe2, 0xca, 0xd7, 0x89, 0x5b, 0x49, 0xc5, 0xf9, 0x99, 0xa8, 0x3d, 0x58, 0x21, 0xd4, + 0xf9, 0x2a, 0xc1, 0x49, 0x41, 0x50, 0xe5, 0x3a, 0x41, 0x5d, 0x42, 0x7f, 0x29, 0x17, 0x64, 0x62, + 0x06, 0xf0, 0x46, 0xce, 0x4b, 0x71, 0xdd, 0x73, 0xc2, 0xaa, 0xd7, 0x09, 0x5b, 0x4b, 0xad, 0x12, + 0xf9, 0x20, 0x93, 0xf8, 0x73, 0x58, 0x23, 0xd4, 0xb9, 0x70, 0x09, 0x9f, 0x16, 0xb7, 0xf0, 0x1a, + 0x27, 0xc5, 0xa3, 0x5b, 0x94, 0xa5, 0x9c, 0x0c, 0x70, 0x3c, 0x2c, 0x38, 0x59, 0x7b, 0x8d, 0x93, + 0xcf, 0xe4, 0x82, 0x4c, 0xcc, 0x53, 0xe8, 0x12, 0x3a, 0x6d, 0xcd, 0xe2, 0x75, 0x42, 0x3a, 0x84, + 0x16, 0x2d, 0xd9, 0x86, 0x2e, 0xc3, 0x1e, 0xa7, 0x71, 0xfe, 0x10, 0x2c, 0x5d, 0x27, 0x62, 0x59, + 0xf3, 0xa7, 0x32, 0xac, 0x5f, 0x43, 0xf3, 0x20, 0x19, 0x62, 0x3e, 0x3e, 0x49, 0x93, 0xc1, 0xad, + 0xe5, 0x1f, 0xeb, 0xdf, 0x65, 0x68, 0xec, 0x0c, 0x63, 0x9a, 0x44, 0x85, 0x9c, 0xac, 0x2e, 0xe9, + 0x74, 0x4e, 0x96, 0x2c, 0x32, 0x27, 0x2b, 0xe6, 0x4f, 0xa0, 0x19, 0xc8, 0xab, 0xab, 0xf9, 0x55, + 0x1e, 0xea, 0xce, 0x5c, 0x6a, 0xbb, 0x11, 0xe4, 0x92, 0xd9, 0x26, 0x40, 0x44, 0x7c, 0xa6, 0xd7, + 0xa8, 0x74, 0xd4, 0xd1, 0x15, 0xa1, 0x49, 0xd1, 0x76, 0x3d, 0x4a, 0xb3, 0xf5, 0x47, 0xd0, 0x38, + 0x11, 0x41, 0xd2, 0x0b, 0x0a, 0xc9, 0x28, 0x8b, 0x9e, 0x0d, 0x27, 0xd9, 0x25, 0x3c, 0x80, 0xd6, + 0x48, 0x85, 0x4c, 0x2f, 0x52, 0x67, 0xe8, 0x1d, 0xed, 0x49, 0xe6, 0xef, 0x66, 0x3e, 0xb2, 0x6a, + 0x03, 0x9a, 0xa3, 0x1c, 0xaa, 0x7f, 0x04, 0xdd, 0x19, 0x96, 0x39, 0x39, 0x68, 0x23, 0x9f, 0x83, + 0x1a, 0x5b, 0x48, 0x29, 0xca, 0xaf, 0xcc, 0xe7, 0xa5, 0x5f, 0xc0, 0xda, 0x74, 0x99, 0xa3, 0x8b, + 0xb2, 0x4f, 0xa0, 0xe9, 0x49, 0xeb, 0x0a, 0x3b, 0xd0, 0x9d, 0xb1, 0xdb, 0x6e, 0x78, 0x19, 0x60, + 0xf9, 0x80, 0x5e, 0xc6, 0x84, 0xe3, 0x23, 0x1e, 0x63, 0x37, 0xb8, 0x8d, 0xaa, 0x19, 0x41, 0x55, + 0x3e, 0xb1, 0x15, 0x59, 0x14, 0xca, 0x6f, 0xeb, 0x5d, 0x58, 0x29, 0x68, 0xd1, 0x26, 0x2f, 0x43, + 0x65, 0x8c, 0x43, 0x29, 0xbd, 0x65, 0x8b, 0x4f, 0xcb, 0x85, 0xae, 0x8d, 0x5d, 0xff, 0xf6, 0xac, + 0xd1, 0x2a, 0x2a, 0x99, 0x8a, 0x0d, 0x40, 0x79, 0x15, 0xda, 0x14, 0x63, 0x75, 0x29, 0x67, 0xf5, + 0x73, 0xe8, 0xee, 0x8c, 0x29, 0xc3, 0x47, 0xdc, 0x27, 0xe1, 0x6d, 0x94, 0xf9, 0xdf, 0xc0, 0xca, + 0x0b, 0x3e, 0x79, 0x29, 0x84, 0x31, 0xf2, 0x35, 0xbe, 0x25, 0xff, 0x62, 0x7a, 0x61, 0xfc, 0x8b, + 0xe9, 0x85, 0xa8, 0xf0, 0x3d, 0x3a, 0x4e, 0x82, 0x50, 0x1e, 0xf7, 0x96, 0xad, 0x21, 0xeb, 0x1f, + 0x25, 0x58, 0x55, 0x3d, 0xf8, 0x91, 0x6a, 0x3d, 0x8d, 0xfa, 0x3e, 0x2c, 0x8d, 0x28, 0xe3, 0xa1, + 0x1b, 0x60, 0xad, 0x3a, 0x85, 0x85, 0x78, 0xd1, 0xb3, 0x96, 0x65, 0x57, 0x20, 0x3e, 0x0b, 0x8d, + 0x71, 0xe5, 0xfa, 0xc6, 0x78, 0xa6, 0xf5, 0xad, 0xce, 0xb6, 0xbe, 0xe8, 0xfb, 0x00, 0x86, 0x89, + 0xf8, 0xf2, 0xe1, 0xaf, 0xdb, 0x75, 0x8d, 0x39, 0xf4, 0xd1, 0x7d, 0xe8, 0x0c, 0x85, 0x95, 0xce, + 0x88, 0xd2, 0x33, 0x27, 0x72, 0xf9, 0x48, 0x36, 0xda, 0x75, 0xbb, 0x25, 0xd1, 0x07, 0x94, 0x9e, + 0x0d, 0x5c, 0x3e, 0xb2, 0xee, 0xc2, 0x9d, 0x5d, 0xcc, 0x78, 0x4c, 0x27, 0x45, 0xef, 0x2c, 0x17, + 0xea, 0x87, 0x83, 0xa7, 0xbe, 0x1f, 0x63, 0xc6, 0xd0, 0x7d, 0xa8, 0x9d, 0xba, 0x01, 0x19, 0xab, + 0x0b, 0xd8, 0x36, 0xf9, 0xe9, 0x70, 0xf0, 0x33, 0x89, 0xb5, 0x35, 0x55, 0x24, 0x3d, 0x57, 0x2d, + 0xd1, 0xe1, 0x36, 0xa0, 0x38, 0x27, 0x81, 0xcb, 0xce, 0xf4, 0xd3, 0x2e, 0xbf, 0xad, 0x3f, 0x97, + 0xa0, 0x7e, 0x18, 0x72, 0x1c, 0x9f, 0xba, 0x9e, 0x6c, 0xda, 0xd4, 0x10, 0x41, 0x07, 0x53, 0x43, + 0x62, 0xa5, 0x0c, 0xb1, 0x12, 0x28, 0xbf, 0x45, 0x7e, 0x4a, 0x8d, 0x4b, 0xe3, 0xd9, 0x31, 0x46, + 0x69, 0x82, 0x9d, 0xe7, 0x11, 0x3b, 0x12, 0xf0, 0x44, 0xd7, 0x11, 0xe2, 0x53, 0x28, 0x1c, 0x5d, + 0x08, 0x06, 0x1d, 0x3d, 0x0d, 0xc9, 0xea, 0xdc, 0x23, 0x92, 0xa0, 0x42, 0x66, 0x40, 0xeb, 0x31, + 0x40, 0x6a, 0x2f, 0x13, 0x35, 0x5e, 0x06, 0xe9, 0x32, 0xc3, 0xd8, 0x60, 0xf0, 0x76, 0x8e, 0xc5, + 0xfa, 0x06, 0x16, 0x6c, 0x9a, 0x70, 0x75, 0x69, 0xb0, 0xee, 0xff, 0xea, 0xb6, 0xfc, 0x16, 0x5a, + 0x87, 0x2e, 0xc7, 0x17, 0xee, 0xc4, 0x84, 0x4e, 0x83, 0xb9, 0xc0, 0x54, 0x0a, 0x81, 0x11, 0x5d, + 0xae, 0x6c, 0xe2, 0xa4, 0x53, 0x75, 0x5b, 0x43, 0xe2, 0xb1, 0x62, 0x1e, 0x8d, 0xb0, 0x74, 0xab, + 0x65, 0x2b, 0xc0, 0xfa, 0x10, 0x6a, 0x52, 0xb9, 0x38, 0x5e, 0xfa, 0x4b, 0xdb, 0xdc, 0x50, 0x36, + 0x4b, 0x9c, 0xad, 0x49, 0xd6, 0xbe, 0xe9, 0x43, 0x33, 0x57, 0xf4, 0xb1, 0xff, 0x10, 0xea, 0xc4, + 0xe0, 0x74, 0xb2, 0x9c, 0xf1, 0x3a, 0xe3, 0xb0, 0x76, 0x61, 0xe5, 0xa9, 0xef, 0x7f, 0x57, 0x29, + 0xfb, 0x66, 0x58, 0xf3, 0x5d, 0x05, 0x3d, 0x82, 0x15, 0xe5, 0x97, 0xf2, 0xd3, 0x48, 0xf9, 0x21, + 0xd4, 0x62, 0x13, 0x93, 0x52, 0x36, 0xdd, 0xd2, 0x4c, 0x9a, 0x26, 0x2e, 0x8b, 0x68, 0xd2, 0xb3, + 0x2d, 0x35, 0x97, 0x65, 0x05, 0xba, 0x82, 0x50, 0x90, 0x69, 0xfd, 0x06, 0x56, 0x9e, 0x87, 0x63, + 0x12, 0xe2, 0x9d, 0xc1, 0xf1, 0x33, 0x9c, 0x66, 0x65, 0x04, 0x55, 0x51, 0x72, 0x49, 0x45, 0x4b, + 0xb6, 0xfc, 0x16, 0x69, 0x2a, 0x3c, 0x71, 0xbc, 0x28, 0x61, 0x7a, 0x9c, 0x54, 0x0b, 0x4f, 0x76, + 0xa2, 0x84, 0xa1, 0x37, 0x40, 0x3c, 0xfd, 0x0e, 0x0d, 0xc7, 0x13, 0xb9, 0xfb, 0x4b, 0xf6, 0xa2, + 0x17, 0x25, 0xcf, 0xc3, 0xf1, 0xc4, 0xfa, 0xb1, 0x6c, 0xa0, 0x31, 0xf6, 0x6d, 0x37, 0xf4, 0x69, + 0xb0, 0x8b, 0xcf, 0x73, 0x1a, 0xd2, 0x66, 0xcd, 0xe4, 0xe4, 0x6f, 0x4b, 0xd0, 0x7c, 0x3a, 0xc4, + 0x21, 0xdf, 0xc5, 0xdc, 0x25, 0x63, 0xd9, 0x90, 0x9d, 0xe3, 0x98, 0x11, 0x1a, 0xea, 0x63, 0x68, + 0x40, 0xd1, 0x4f, 0x93, 0x90, 0x70, 0xc7, 0x77, 0x71, 0x40, 0x43, 0x29, 0x65, 0xc9, 0x06, 0x81, + 0xda, 0x95, 0x18, 0xf4, 0x2e, 0x74, 0xd4, 0x11, 0x74, 0x46, 0x6e, 0xe8, 0x8f, 0x71, 0x6c, 0xc6, + 0x1f, 0x6d, 0x85, 0x3e, 0xd0, 0x58, 0xf4, 0x1e, 0x2c, 0xeb, 0xa4, 0x96, 0x71, 0x56, 0x25, 0x67, + 0x47, 0xe3, 0x0b, 0xac, 0x49, 0x14, 0xd1, 0x98, 0x33, 0x87, 0x61, 0xcf, 0xa3, 0x41, 0xa4, 0xbb, + 0x99, 0x8e, 0xc1, 0x1f, 0x29, 0xb4, 0xd8, 0xc2, 0x7d, 0xe1, 0xa7, 0xf6, 0x24, 0xdb, 0xc2, 0x76, + 0x80, 0x03, 0xe7, 0x64, 0x4c, 0xbd, 0x33, 0x47, 0x3c, 0x13, 0x3a, 0xc2, 0xa2, 0x5e, 0xda, 0x16, + 0xc8, 0x23, 0xf2, 0x35, 0xb6, 0x7e, 0x57, 0x82, 0xd5, 0xe2, 0x6a, 0xfd, 0x90, 0x3d, 0x80, 0xd5, + 0xe2, 0x72, 0xd5, 0x48, 0xe8, 0x8a, 0xaf, 0x9b, 0x17, 0x22, 0x5b, 0x05, 0xf4, 0x29, 0xb4, 0xe4, + 0x60, 0xd7, 0xf1, 0x95, 0xa4, 0x62, 0x1d, 0x92, 0x8f, 0xb5, 0xdd, 0x74, 0x73, 0x90, 0xf5, 0x97, + 0x12, 0x2c, 0xea, 0xa4, 0x2f, 0xef, 0x76, 0x4c, 0xce, 0x71, 0x9c, 0x26, 0x3d, 0x09, 0x89, 0xd6, + 0x5e, 0x7d, 0x39, 0x34, 0xe2, 0x84, 0xa6, 0x4f, 0x49, 0x4b, 0x61, 0x9f, 0x2b, 0x64, 0x2e, 0x05, + 0x54, 0x0a, 0x29, 0x60, 0x0d, 0x6a, 0xa7, 0x8c, 0x4f, 0xa2, 0x34, 0x35, 0x28, 0x48, 0x6c, 0xba, + 0x91, 0xb7, 0x20, 0xe5, 0x19, 0x50, 0x6c, 0x7a, 0x40, 0x93, 0x90, 0x3b, 0x11, 0x25, 0x21, 0xd7, + 0x89, 0x0f, 0x24, 0x6a, 0x20, 0x30, 0xd6, 0xef, 0x4b, 0x50, 0x53, 0xc3, 0x5e, 0xd1, 0xa4, 0xa5, + 0xaf, 0x6d, 0x99, 0xc8, 0xca, 0x45, 0xea, 0xd2, 0x19, 0x5a, 0x6a, 0xba, 0x0b, 0x8b, 0xe7, 0x81, + 0x7a, 0x77, 0xb4, 0x69, 0xe7, 0x81, 0x78, 0x70, 0x84, 0x67, 0xd9, 0xa3, 0x2d, 0xe9, 0xca, 0xc4, + 0x56, 0x8a, 0x95, 0x6c, 0x57, 0x5a, 0x6a, 0xfd, 0x4a, 0xf4, 0xa6, 0xe9, 0xa0, 0x73, 0x19, 0x2a, + 0x49, 0x6a, 0x8c, 0xf8, 0x14, 0x98, 0x61, 0xfa, 0xdc, 0x8b, 0x4f, 0x74, 0x1f, 0xda, 0xae, 0xef, + 0x13, 0xb1, 0xdc, 0x1d, 0xef, 0x13, 0x3f, 0x3d, 0xae, 0x45, 0xec, 0xfb, 0x7d, 0x58, 0x32, 0x2f, + 0x1a, 0xaa, 0x41, 0xf9, 0xfc, 0x93, 0xe5, 0xef, 0xc9, 0xff, 0x9f, 0x2c, 0x97, 0xb6, 0xfe, 0xda, + 0xd6, 0xf7, 0x47, 0x77, 0x52, 0x68, 0x1f, 0x3a, 0x53, 0x93, 0x79, 0xa4, 0x5b, 0xeb, 0xf9, 0x03, + 0xfb, 0xfe, 0xda, 0xa6, 0x9a, 0xf4, 0x6f, 0x9a, 0x49, 0xff, 0xe6, 0x5e, 0x10, 0xf1, 0x09, 0xda, + 0x83, 0x76, 0x71, 0x86, 0x8d, 0xee, 0x99, 0xc2, 0x60, 0xce, 0x64, 0xfb, 0x4a, 0x31, 0xfb, 0xd0, + 0x99, 0x1a, 0x67, 0x1b, 0x7b, 0xe6, 0x4f, 0xb9, 0xaf, 0x14, 0xf4, 0x04, 0x1a, 0xb9, 0xf9, 0x35, + 0xea, 0x29, 0x21, 0xb3, 0x23, 0xed, 0x2b, 0x05, 0xec, 0x40, 0xab, 0x30, 0x52, 0x46, 0x7d, 0xed, + 0xcf, 0x9c, 0x39, 0xf3, 0x95, 0x42, 0xb6, 0xa1, 0x91, 0x9b, 0xec, 0x1a, 0x2b, 0x66, 0xc7, 0xc7, + 0xfd, 0x37, 0xe6, 0x50, 0xf4, 0x95, 0x3e, 0x80, 0x56, 0x61, 0x0e, 0x6b, 0x0c, 0x99, 0x37, 0x03, + 0xee, 0xdf, 0x9b, 0x4b, 0xd3, 0x92, 0xf6, 0xa1, 0x33, 0x35, 0x95, 0x35, 0xc1, 0x9d, 0x3f, 0xac, + 0xbd, 0xd2, 0xad, 0xcf, 0xe5, 0x66, 0xe7, 0xda, 0x90, 0xdc, 0x66, 0xcf, 0xce, 0x60, 0xfb, 0x6f, + 0xce, 0x27, 0x6a, 0xab, 0xf6, 0xa0, 0x5d, 0x1c, 0xbf, 0x1a, 0x61, 0x73, 0x87, 0xb2, 0xd7, 0x9f, + 0x9c, 0xc2, 0x24, 0x36, 0x3b, 0x39, 0xf3, 0x06, 0xb4, 0x57, 0x0a, 0x7a, 0x0a, 0xa0, 0xbb, 0x15, + 0x9f, 0x84, 0xe9, 0x96, 0xcd, 0x74, 0x49, 0xe9, 0x96, 0xcd, 0xe9, 0x6c, 0x9e, 0x00, 0xa8, 0x26, + 0xc3, 0xa7, 0x09, 0x47, 0x77, 0x8d, 0x19, 0x53, 0x9d, 0x4d, 0xbf, 0x37, 0x4b, 0x98, 0x11, 0x80, + 0xe3, 0xf8, 0x26, 0x02, 0x1e, 0x03, 0x64, 0xcd, 0x8b, 0x11, 0x30, 0xd3, 0xce, 0x5c, 0x13, 0x83, + 0x66, 0xbe, 0x55, 0x41, 0xda, 0xd7, 0x39, 0xed, 0xcb, 0x95, 0x22, 0x1e, 0x42, 0x33, 0x5f, 0x31, + 0x19, 0x11, 0x73, 0xaa, 0xa8, 0xfe, 0x74, 0xa5, 0x83, 0x7e, 0x6a, 0x0e, 0x6a, 0x86, 0x2a, 0x1c, + 0xd4, 0xff, 0x4a, 0xc2, 0x54, 0xa5, 0x55, 0xcc, 0x23, 0xaf, 0x97, 0xf0, 0x29, 0x34, 0xf3, 0x25, + 0x96, 0xb1, 0x7f, 0x4e, 0xd9, 0xd5, 0x2f, 0x94, 0x59, 0xe8, 0x09, 0xb4, 0x8b, 0xe5, 0x15, 0xca, + 0x5d, 0xca, 0x99, 0xa2, 0xab, 0xbf, 0x3c, 0xa5, 0x98, 0xa1, 0x8f, 0x01, 0xb2, 0x32, 0xcc, 0xec, + 0xdd, 0x4c, 0x61, 0x36, 0xa5, 0x75, 0x07, 0x5a, 0x85, 0xf6, 0xce, 0x64, 0x89, 0x79, 0x3d, 0xdf, + 0x75, 0x49, 0xbc, 0xd8, 0x46, 0x19, 0xd3, 0xe7, 0x36, 0x57, 0xd7, 0x9d, 0x9e, 0x7c, 0xc9, 0x68, + 0x42, 0x37, 0xa7, 0x8c, 0x7c, 0xcd, 0x6d, 0xce, 0x97, 0x85, 0xb9, 0xdb, 0x3c, 0xa7, 0x5a, 0xbc, + 0x52, 0xd0, 0x01, 0x74, 0xf6, 0x31, 0xcf, 0xd7, 0x4a, 0xc6, 0x9c, 0x39, 0xd5, 0x57, 0xbf, 0x3f, + 0x8f, 0xa4, 0xae, 0xd4, 0x76, 0xf3, 0xdb, 0x57, 0x6f, 0x95, 0xfe, 0xfe, 0xea, 0xad, 0xd2, 0xbf, + 0x5e, 0xbd, 0x55, 0x3a, 0xa9, 0x49, 0x3d, 0x1f, 0xff, 0x27, 0x00, 0x00, 0xff, 0xff, 0x3d, 0xd4, + 0x0e, 0x85, 0x17, 0x1f, 0x00, 0x00, } diff --git a/vendor/github.com/opencontainers/runtime-spec/specs-go/config.go b/vendor/github.com/opencontainers/runtime-spec/specs-go/config.go index 71c9fa7731..9984bbce30 100644 --- a/vendor/github.com/opencontainers/runtime-spec/specs-go/config.go +++ b/vendor/github.com/opencontainers/runtime-spec/specs-go/config.go @@ -25,6 +25,8 @@ type Spec struct { Solaris *Solaris `json:"solaris,omitempty" platform:"solaris"` // Windows is platform-specific configuration for Windows based containers. Windows *Windows `json:"windows,omitempty" platform:"windows"` + // VM specifies configuration for virtual-machine-based containers. + VM *VM `json:"vm,omitempty" platform:"vm"` } // Process contains information to start a specific application inside the container. @@ -158,8 +160,8 @@ type Linux struct { ReadonlyPaths []string `json:"readonlyPaths,omitempty"` // MountLabel specifies the selinux context for the mounts in the container. MountLabel string `json:"mountLabel,omitempty"` - // IntelRdt contains Intel Resource Director Technology (RDT) information - // for handling resource constraints (e.g., L3 cache) for the container + // IntelRdt contains Intel Resource Director Technology (RDT) information for + // handling resource constraints (e.g., L3 cache, memory bandwidth) for the container IntelRdt *LinuxIntelRdt `json:"intelRdt,omitempty"` } @@ -194,10 +196,10 @@ const ( // LinuxIDMapping specifies UID/GID mappings type LinuxIDMapping struct { - // HostID is the starting UID/GID on the host to be mapped to 'ContainerID' - HostID uint32 `json:"hostID"` // ContainerID is the starting UID/GID in the container ContainerID uint32 `json:"containerID"` + // HostID is the starting UID/GID on the host to be mapped to 'ContainerID' + HostID uint32 `json:"hostID"` // Size is the number of IDs to be mapped Size uint32 `json:"size"` } @@ -320,6 +322,14 @@ type LinuxNetwork struct { Priorities []LinuxInterfacePriority `json:"priorities,omitempty"` } +// LinuxRdma for Linux cgroup 'rdma' resource management (Linux 4.11) +type LinuxRdma struct { + // Maximum number of HCA handles that can be opened. Default is "no limit". + HcaHandles *uint32 `json:"hcaHandles,omitempty"` + // Maximum number of HCA objects that can be created. Default is "no limit". + HcaObjects *uint32 `json:"hcaObjects,omitempty"` +} + // LinuxResources has container runtime resource constraints type LinuxResources struct { // Devices configures the device whitelist. @@ -336,6 +346,10 @@ type LinuxResources struct { HugepageLimits []LinuxHugepageLimit `json:"hugepageLimits,omitempty"` // Network restriction configuration Network *LinuxNetwork `json:"network,omitempty"` + // Rdma resource restriction configuration. + // Limits are a set of key value pairs that define RDMA resource limits, + // where the key is device name and value is resource limits. + Rdma map[string]LinuxRdma `json:"rdma,omitempty"` } // LinuxDevice represents the mknod information for a Linux special device file @@ -419,6 +433,8 @@ type SolarisAnet struct { type Windows struct { // LayerFolders contains a list of absolute paths to directories containing image layers. LayerFolders []string `json:"layerFolders"` + // Devices are the list of devices to be mapped into the container. + Devices []WindowsDevice `json:"devices,omitempty"` // Resources contains information for handling resource constraints for the container. Resources *WindowsResources `json:"resources,omitempty"` // CredentialSpec contains a JSON object describing a group Managed Service Account (gMSA) specification. @@ -433,6 +449,14 @@ type Windows struct { Network *WindowsNetwork `json:"network,omitempty"` } +// WindowsDevice represents information about a host device to be mapped into the container. +type WindowsDevice struct { + // Device identifier: interface class GUID, etc. + ID string `json:"id"` + // Device identifier type: "class", etc. + IDType string `json:"idType"` +} + // WindowsResources has container runtime resource constraints for containers running on Windows. type WindowsResources struct { // Memory restriction configuration. @@ -479,6 +503,8 @@ type WindowsNetwork struct { DNSSearchList []string `json:"DNSSearchList,omitempty"` // Name (ID) of the container that we will share with the network stack. NetworkSharedContainerName string `json:"networkSharedContainerName,omitempty"` + // name (ID) of the network namespace that will be used for the container. + NetworkNamespace string `json:"networkNamespace,omitempty"` } // WindowsHyperV contains information for configuring a container to run with Hyper-V isolation. @@ -487,6 +513,42 @@ type WindowsHyperV struct { UtilityVMPath string `json:"utilityVMPath,omitempty"` } +// VM contains information for virtual-machine-based containers. +type VM struct { + // Hypervisor specifies hypervisor-related configuration for virtual-machine-based containers. + Hypervisor VMHypervisor `json:"hypervisor,omitempty"` + // Kernel specifies kernel-related configuration for virtual-machine-based containers. + Kernel VMKernel `json:"kernel"` + // Image specifies guest image related configuration for virtual-machine-based containers. + Image VMImage `json:"image,omitempty"` +} + +// VMHypervisor contains information about the hypervisor to use for a virtual machine. +type VMHypervisor struct { + // Path is the host path to the hypervisor used to manage the virtual machine. + Path string `json:"path"` + // Parameters specifies parameters to pass to the hypervisor. + Parameters string `json:"parameters,omitempty"` +} + +// VMKernel contains information about the kernel to use for a virtual machine. +type VMKernel struct { + // Path is the host path to the kernel used to boot the virtual machine. + Path string `json:"path"` + // Parameters specifies parameters to pass to the kernel. + Parameters string `json:"parameters,omitempty"` + // InitRD is the host path to an initial ramdisk to be used by the kernel. + InitRD string `json:"initrd,omitempty"` +} + +// VMImage contains information about the virtual machine root image. +type VMImage struct { + // Path is the host path to the root image that the VM kernel would boot into. + Path string `json:"path"` + // Format is the root image format type (e.g. "qcow2", "raw", "vhd", etc). + Format string `json:"format"` +} + // LinuxSeccomp represents syscall restrictions type LinuxSeccomp struct { DefaultAction LinuxSeccompAction `json:"defaultAction"` @@ -561,10 +623,16 @@ type LinuxSyscall struct { Args []LinuxSeccompArg `json:"args,omitempty"` } -// LinuxIntelRdt has container runtime resource constraints -// for Intel RDT/CAT which introduced in Linux 4.10 kernel +// LinuxIntelRdt has container runtime resource constraints for Intel RDT +// CAT and MBA features which introduced in Linux 4.10 and 4.12 kernel type LinuxIntelRdt struct { + // The identity for RDT Class of Service + ClosID string `json:"closID,omitempty"` // The schema for L3 cache id and capacity bitmask (CBM) // Format: "L3:=;=;..." L3CacheSchema string `json:"l3CacheSchema,omitempty"` + + // The schema of memory bandwidth percentage per L3 cache id + // Format: "MB:=bandwidth0;=bandwidth1;..." + MemBwSchema string `json:"memBwSchema,omitempty"` } diff --git a/vendor/github.com/opencontainers/runtime-spec/specs-go/version.go b/vendor/github.com/opencontainers/runtime-spec/specs-go/version.go index ff0cb6a80e..b920fc1b39 100644 --- a/vendor/github.com/opencontainers/runtime-spec/specs-go/version.go +++ b/vendor/github.com/opencontainers/runtime-spec/specs-go/version.go @@ -11,7 +11,7 @@ const ( VersionPatch = 1 // VersionDev indicates development branch. Releases will be empty string. - VersionDev = "" + VersionDev = "-dev" ) // Version is the specification version that the package types support.